[automerger skipped] Don't test unspecified behavior am: 51aceed13b -s ours

am skip reason: Merged-In I384360b0d19013b12da338af95cbc5ae104fa983 with SHA-1 9a7b007cbd is already in history

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Virtualization/+/2953089

Change-Id: Id09c3e3d3e8321f9048c4f5fd05d75cf45145d4a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/Android.bp b/Android.bp
index b655551..696a963 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,16 +14,56 @@
 // limitations under the License.
 
 package {
-    default_applicable_licenses: ["packages_modules_Virtualization_license"],
+    default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
-// Added automatically by a large-scale-change
-// See: http://go/android-license-faq
-license {
-    name: "packages_modules_Virtualization_license",
-    visibility: [":__subpackages__"],
-    license_kinds: [
-        "legacy_unencumbered",
+soong_config_module_type {
+    name: "avf_flag_aware_rust_defaults",
+    module_type: "rust_defaults",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_device_assignment",
+        "release_avf_enable_dice_changes",
+        "release_avf_enable_llpvm_changes",
+        "release_avf_enable_multi_tenant_microdroid_vm",
+        "release_avf_enable_remote_attestation",
+        "release_avf_enable_vendor_modules",
+        "release_avf_enable_virt_cpufreq",
     ],
-    // large-scale-change unable to identify any license_text files
+    properties: [
+        "cfgs",
+    ],
+}
+
+avf_flag_aware_rust_defaults {
+    name: "avf_build_flags_rust",
+    soong_config_variables: {
+        release_avf_enable_device_assignment: {
+            cfgs: ["device_assignment"],
+        },
+        release_avf_enable_dice_changes: {
+            cfgs: ["dice_changes"],
+        },
+        release_avf_enable_llpvm_changes: {
+            cfgs: ["llpvm_changes"],
+        },
+        release_avf_enable_multi_tenant_microdroid_vm: {
+            cfgs: ["multi_tenant"],
+        },
+        release_avf_enable_remote_attestation: {
+            cfgs: ["remote_attestation"],
+        },
+        release_avf_enable_vendor_modules: {
+            cfgs: ["vendor_modules"],
+        },
+        release_avf_enable_virt_cpufreq: {
+            cfgs: ["virt_cpufreq"],
+        },
+    },
+}
+
+genrule_defaults {
+    name: "dts_to_dtb",
+    tools: ["dtc"],
+    cmd: "FILES=($(in)) && $(location dtc) -I dts -O dtb $${FILES[-1]} -o $(out)",
 }
diff --git a/OWNERS b/OWNERS
index 310add7..e560cec 100644
--- a/OWNERS
+++ b/OWNERS
@@ -12,16 +12,19 @@
 # Other owners
 alanstokes@google.com
 aliceywang@google.com
-ardb@google.com
-ascull@google.com
 inseob@google.com
+jaewan@google.com
+jakobvukalovic@google.com
 jeffv@google.com
 jooyung@google.com
-mzyngier@google.com
+keirf@google.com
 ptosi@google.com
 qperret@google.com
 qwandor@google.com
-serbanc@google.com
+sebastianene@google.com
+seungjaeyoo@google.com
 shikhapanwar@google.com
+smostafa@google.com
 tabba@google.com
+vdonnefort@google.com
 victorhsieh@google.com
diff --git a/README.md b/README.md
index eb28e94..3935f93 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,31 @@
-# Virtualization
+# Android Virtualization Framework (AVF)
 
-This repository contains userspace services related to running virtual machines on Android,
-especially protected virtual machines. See the
-[getting started documentation](docs/getting_started/index.md) and
-[Microdroid README](microdroid/README.md) for more information.
+Android Virtualization Framework (AVF) provides secure and private execution environments for
+executing code. AVF is ideal for security-oriented use cases that require stronger isolation
+assurances over those offered by Android’s app sandbox.
+
+Visit [our public doc site](https://source.android.com/docs/core/virtualization) to learn more about
+what AVF is, what it is for, and how it is structured. This repository contains source code for
+userspace components of AVF.
+
+If you want a quick start, see the [getting started guideline](docs/getting_started.md)
+and follow the steps there.
+
+For in-depth explanations about individual topics and components, visit the following links.
+
+AVF components:
+* [pVM firmware](pvmfw/README.md)
+* [Microdroid](microdroid/README.md)
+* [Microdroid kernel](microdroid/kernel/README.md)
+* [Microdroid payload](microdroid/payload/README.md)
+* [vmbase](vmbase/README.md)
+
+AVF APIs:
+* [Java API](javalib/README.md)
+* [VM Payload API](vm_payload/README.md)
+
+How-Tos:
+* [Building and running a demo app in Java](demo/README.md)
+* [Building and running a demo app in C++](demo_native/README.md)
+* [Debugging](docs/debug)
+* [Using custom VM](docs/custom_vm.md)
diff --git a/TEST_MAPPING b/TEST_MAPPING
index d17b434..4da96c8 100644
--- a/TEST_MAPPING
+++ b/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
@@ -10,6 +12,9 @@
       "name": "MicrodroidTestApp"
     },
     {
+      "name": "CustomPvmfwHostTestCases"
+    },
+    {
       "name": "art_standalone_dexpreopt_tests"
     },
     {
@@ -23,6 +28,15 @@
     },
     {
       "name": "initrd_bootconfig.test"
+    },
+    {
+      "name": "libdice_policy.test"
+    },
+    {
+      "name": "libapkzip.test"
+    },
+    {
+      "name": "libsecretkeeper_comm.test"
     }
   ],
   "avf-postsubmit": [
@@ -64,12 +78,21 @@
       "path": "packages/modules/Virtualization/libs/avb"
     },
     {
+      "path": "packages/modules/Virtualization/libs/bssl"
+    },
+    {
       "path": "packages/modules/Virtualization/libs/capabilities"
     },
     {
       "path": "packages/modules/Virtualization/libs/devicemapper"
     },
     {
+      "path": "packages/modules/Virtualization/libs/dice"
+    },
+    {
+      "path": "packages/modules/Virtualization/libs/libfdt"
+    },
+    {
       "path": "packages/modules/Virtualization/libs/vbmeta"
     },
     {
@@ -85,6 +108,18 @@
       "path": "packages/modules/Virtualization/rialto"
     },
     {
+      "path": "packages/modules/Virtualization/service_vm/client_vm_csr"
+    },
+    {
+      "path": "packages/modules/Virtualization/service_vm/comm"
+    },
+    {
+      "path": "packages/modules/Virtualization/service_vm/requests"
+    },
+    {
+      "path": "packages/modules/Virtualization/virtualizationservice"
+    },
+    {
       "path": "packages/modules/Virtualization/vm"
     },
     {
@@ -95,3 +130,5 @@
     }
   ]
 }
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
diff --git a/apex/Android.bp b/apex/Android.bp
index e39b459..ba42c88 100644
--- a/apex/Android.bp
+++ b/apex/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -11,8 +12,13 @@
     name: "virt_apex",
     module_type: "apex",
     config_namespace: "ANDROID",
-    bool_variables: ["avf_enabled"],
-    properties: ["defaults"],
+    bool_variables: [
+        "avf_enabled",
+    ],
+    properties: [
+        "defaults",
+        "prebuilts",
+    ],
 }
 
 virt_apex {
@@ -27,7 +33,26 @@
     },
 }
 
-apex_defaults {
+soong_config_module_type {
+    name: "avf_flag_aware_apex_defaults",
+    module_type: "apex_defaults",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_device_assignment",
+        "release_avf_enable_llpvm_changes",
+        "release_avf_enable_remote_attestation",
+        "release_avf_enable_vendor_modules",
+    ],
+    properties: [
+        "androidManifest",
+        "arch",
+        "prebuilts",
+        "systemserverclasspath_fragments",
+        "vintf_fragments",
+    ],
+}
+
+avf_flag_aware_apex_defaults {
     name: "com.android.virt_common",
     // TODO(jiyong): make it updatable
     updatable: false,
@@ -53,9 +78,23 @@
         "libvirtualizationservice_jni",
         "libvirtualmachine_jni",
     ],
+    // TODO(b/295593640) Unfortunately these are added to the apex even though they are unused.
+    // Once the build system is fixed, remove this.
+    unwanted_transitive_deps: [
+        "libdrm",
+        "libsso",
+        "libutils",
+    ],
+    soong_config_variables: {
+        release_avf_enable_llpvm_changes: {
+            systemserverclasspath_fragments: [
+                "com.android.virt-systemserver-fragment",
+            ],
+        },
+    },
 }
 
-apex_defaults {
+avf_flag_aware_apex_defaults {
     name: "com.android.virt_avf_enabled",
 
     defaults: ["com.android.virt_common"],
@@ -71,6 +110,9 @@
                 "virtualizationservice",
             ],
             filesystems: microdroid_filesystem_images,
+            prebuilts: [
+                "rialto_bin",
+            ],
         },
         x86_64: {
             binaries: [
@@ -86,7 +128,6 @@
         "vm",
     ],
     prebuilts: [
-        "com.android.virt.init.rc",
         "features_com.android.virt.xml",
         "microdroid_initrd_debuggable",
         "microdroid_initrd_normal",
@@ -99,6 +140,41 @@
     apps: [
         "EmptyPayloadApp",
     ],
+    soong_config_variables: {
+        release_avf_enable_device_assignment: {
+            prebuilts: [
+                "com.android.virt.vfio_handler.rc",
+            ],
+            arch: {
+                arm64: {
+                    binaries: ["vfio_handler"],
+                },
+                x86_64: {
+                    binaries: ["vfio_handler"],
+                },
+            },
+        },
+        release_avf_enable_llpvm_changes: {
+            androidManifest: "AndroidManifest.xml",
+        },
+        release_avf_enable_vendor_modules: {
+            prebuilts: [
+                "microdroid_gki-android14-6.1_initrd_debuggable",
+                "microdroid_gki-android14-6.1_initrd_normal",
+                "microdroid_gki-android14-6.1_kernel",
+                "microdroid_gki-android14-6.1.json",
+            ],
+        },
+        release_avf_enable_remote_attestation: {
+            prebuilts: ["com.android.virt.init_attestation_enabled.rc"],
+            vintf_fragments: [
+                "virtualizationservice.xml",
+            ],
+            conditions_default: {
+                prebuilts: ["com.android.virt.init.rc"],
+            },
+        },
+    },
 }
 
 apex_defaults {
@@ -121,7 +197,21 @@
 prebuilt_etc {
     name: "com.android.virt.init.rc",
     src: "virtualizationservice.rc",
-    filename: "init.rc",
+    filename: "virtualizationservice.rc",
+    installable: false,
+}
+
+prebuilt_etc {
+    name: "com.android.virt.init_attestation_enabled.rc",
+    src: "virtualizationservice_attestation_enabled.rc",
+    filename: "virtualizationservice.rc",
+    installable: false,
+}
+
+prebuilt_etc {
+    name: "com.android.virt.vfio_handler.rc",
+    src: "vfio_handler.rc",
+    filename: "vfio_handler.rc",
     installable: false,
 }
 
@@ -155,7 +245,6 @@
         // deapexer
         "deapexer",
         "debugfs_static",
-        "blkid",
         "fsck.erofs",
 
         // sign_virt_apex
@@ -247,3 +336,29 @@
         ],
     },
 }
+
+soong_config_module_type {
+    name: "avf_flag_aware_systemserverclasspath_fragment",
+    module_type: "systemserverclasspath_fragment",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_llpvm_changes",
+    ],
+    properties: [
+        "enabled",
+    ],
+}
+
+avf_flag_aware_systemserverclasspath_fragment {
+    name: "com.android.virt-systemserver-fragment",
+    contents: [
+        "service-virtualization",
+    ],
+    apex_available: ["com.android.virt"],
+    enabled: false,
+    soong_config_variables: {
+        release_avf_enable_llpvm_changes: {
+            enabled: true,
+        },
+    },
+}
diff --git a/apex/AndroidManifest.xml b/apex/AndroidManifest.xml
new file mode 100644
index 0000000..be52f42
--- /dev/null
+++ b/apex/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ -->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+          package="com.android.virt">
+    <!-- APEX does not have classes.dex -->
+    <application android:hasCode="false">
+        <apex-system-service
+            android:name="com.android.system.virtualmachine.VirtualizationSystemService"
+        />
+    </application>
+</manifest>
diff --git a/apex/canned_fs_config b/apex/canned_fs_config
index 5afd9d6..a990901 100644
--- a/apex/canned_fs_config
+++ b/apex/canned_fs_config
@@ -1 +1,3 @@
 /bin/virtualizationservice 0 2000 0755 capabilities=0x1000001  # CAP_CHOWN, CAP_SYS_RESOURCE
+/bin/crosvm 0 3013 0755 capabilities=0x800000 # CAP_SYS_NICE
+/bin/virtmgr 0 3013 0755 capabilities=0x800000 # CAP_SYS_NICE
diff --git a/apex/empty-payload-apk/Android.bp b/apex/empty-payload-apk/Android.bp
index 70e6754..e78daec 100644
--- a/apex/empty-payload-apk/Android.bp
+++ b/apex/empty-payload-apk/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -9,8 +10,8 @@
     apex_available: ["com.android.virt"],
     sdk_version: "system_current",
     jni_uses_platform_apis: true,
-    min_sdk_version: "UpsideDownCake",
-    target_sdk_version: "UpsideDownCake",
+    min_sdk_version: "34",
+    target_sdk_version: "34",
     compile_multilib: "first",
     stl: "none",
 }
diff --git a/apex/permissions/Android.bp b/apex/permissions/Android.bp
index 0c925ce..38fd9a1 100644
--- a/apex/permissions/Android.bp
+++ b/apex/permissions/Android.bp
@@ -14,6 +14,7 @@
 // limitations under the License.
 
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/apex/product_packages.mk b/apex/product_packages.mk
index ef84551..a318817 100644
--- a/apex/product_packages.mk
+++ b/apex/product_packages.mk
@@ -37,3 +37,22 @@
 PRODUCT_FSVERITY_GENERATE_METADATA := true
 
 PRODUCT_AVF_ENABLED := true
+
+# The cheap build flags dependency management system until there is a proper one.
+ifdef RELEASE_AVF_ENABLE_DEVICE_ASSIGNMENT
+  ifndef RELEASE_AVF_ENABLE_VENDOR_MODULES
+    $(error RELEASE_AVF_ENABLE_VENDOR_MODULES must also be enabled)
+  endif
+endif
+
+ifdef RELEASE_AVF_ENABLE_LLPVM_CHANGES
+  ifndef RELEASE_AVF_ENABLE_DICE_CHANGES
+    $(error RELEASE_AVF_ENABLE_DICE_CHANGES must also be enabled)
+  endif
+endif
+
+ifdef RELEASE_AVF_ENABLE_REMOTE_ATTESTATION
+  ifndef RELEASE_AVF_ENABLE_DICE_CHANGES
+    $(error RELEASE_AVF_ENABLE_DICE_CHANGES must also be enabled)
+  endif
+endif
diff --git a/apex/sign_virt_apex.py b/apex/sign_virt_apex.py
index 7c2cfea..0b6137b 100644
--- a/apex/sign_virt_apex.py
+++ b/apex/sign_virt_apex.py
@@ -27,6 +27,8 @@
 - lpmake, lpunpack, simg2img, img2simg, initrd_bootconfig
 """
 import argparse
+import binascii
+import builtins
 import hashlib
 import os
 import re
@@ -206,45 +208,116 @@
     return info, descriptors
 
 
-# Look up a list of (key, value) with a key. Returns the list of value(s) with the matching key.
-# The order of those values is maintained.
-def LookUp(pairs, key):
+def find_all_values_by_key(pairs, key):
+    """Find all the values of the key in the pairs."""
     return [v for (k, v) in pairs if k == key]
 
+# Extract properties from the descriptors of original vbmeta image,
+# append to command as parameter.
+def AppendPropArgument(cmd, descriptors):
+    for prop in find_all_values_by_key(descriptors, 'Prop'):
+        cmd.append('--prop')
+        result = re.match(r"(.+) -> '(.+)'", prop)
+        cmd.append(result.group(1) + ":" + result.group(2))
 
-def AddHashFooter(args, key, image_path, partition_name, additional_descriptors=None):
+
+def check_resigned_image_avb_info(image_path, original_info, original_descriptors, args):
+    updated_info, updated_descriptors = AvbInfo(args, image_path)
+    assert original_info is not None, f'no avbinfo on original image: {image_path}'
+    assert updated_info is not None, f'no avbinfo on resigned image: {image_path}'
+    assert_different_value(original_info, updated_info, "Public key (sha1)", image_path)
+    updated_public_key = updated_info.pop("Public key (sha1)")
+    if not hasattr(check_resigned_image_avb_info, "new_public_key"):
+        check_resigned_image_avb_info.new_public_key = updated_public_key
+    else:
+        assert check_resigned_image_avb_info.new_public_key == updated_public_key, \
+            "All images should be resigned with the same public key. Expected public key (sha1):" \
+            f" {check_resigned_image_avb_info.new_public_key}, actual public key (sha1): " \
+            f"{updated_public_key}, Path: {image_path}"
+    original_info.pop("Public key (sha1)")
+    assert original_info == updated_info, \
+        f"Original info and updated info should be the same for {image_path}. " \
+        f"Original info: {original_info}, updated info: {updated_info}"
+
+    # Verify the descriptors of the original and updated images.
+    assert len(original_descriptors) == len(updated_descriptors), \
+        f"Number of descriptors should be the same for {image_path}. " \
+        f"Original descriptors: {original_descriptors}, updated descriptors: {updated_descriptors}"
+    original_prop_descriptors = sorted(find_all_values_by_key(original_descriptors, "Prop"))
+    updated_prop_descriptors = sorted(find_all_values_by_key(updated_descriptors, "Prop"))
+    assert original_prop_descriptors == updated_prop_descriptors, \
+        f"Prop descriptors should be the same for {image_path}. " \
+        f"Original prop descriptors: {original_prop_descriptors}, " \
+        f"updated prop descriptors: {updated_prop_descriptors}"
+
+    # Remove digest from hash descriptors before comparing, since some digests should change.
+    original_hash_descriptors = extract_hash_descriptors(original_descriptors, drop_digest)
+    updated_hash_descriptors = extract_hash_descriptors(updated_descriptors, drop_digest)
+    assert original_hash_descriptors == updated_hash_descriptors, \
+        f"Hash descriptors' parameters should be the same for {image_path}. " \
+        f"Original hash descriptors: {original_hash_descriptors}, " \
+        f"updated hash descriptors: {updated_hash_descriptors}"
+
+def drop_digest(descriptor):
+    return {k: v for k, v in descriptor.items() if k != "Digest"}
+
+def AddHashFooter(args, key, image_path, additional_images=()):
     if os.path.basename(image_path) in args.key_overrides:
         key = args.key_overrides[os.path.basename(image_path)]
-    info, _ = AvbInfo(args, image_path)
-    if info:
-        image_size = ReadBytesSize(info['Image size'])
-        algorithm = info['Algorithm']
-        partition_size = str(image_size)
+    info, descriptors = AvbInfo(args, image_path)
+    assert info is not None, f'no avbinfo: {image_path}'
 
-        cmd = ['avbtool', 'add_hash_footer',
-               '--key', key,
-               '--algorithm', algorithm,
-               '--partition_name', partition_name,
-               '--partition_size', partition_size,
-               '--image', image_path]
-        if args.signing_args:
-            cmd.extend(shlex.split(args.signing_args))
-        if additional_descriptors:
-            for image in additional_descriptors:
-                cmd.extend(['--include_descriptors_from_image', image])
-        RunCommand(args, cmd)
+    # Extract hash descriptor of original image.
+    hash_descriptors_original = extract_hash_descriptors(descriptors, drop_digest)
+    for additional_image in additional_images:
+        _, additional_desc = AvbInfo(args, additional_image)
+        hash_descriptors = extract_hash_descriptors(additional_desc, drop_digest)
+        for k, v in hash_descriptors.items():
+            assert v == hash_descriptors_original[k], \
+                f"Hash descriptor of {k} in {additional_image} and {image_path} should be " \
+                f"the same. {additional_image}: {v}, {image_path}: {hash_descriptors_original[k]}"
+            del hash_descriptors_original[k]
+    assert len(hash_descriptors_original) == 1, \
+        f"Only one hash descriptor is expected for {image_path} after removing " \
+        f"additional images. Hash descriptors: {hash_descriptors_original}"
+    [(original_image_partition_name, original_image_descriptor)] = hash_descriptors_original.items()
+    assert info["Original image size"] == original_image_descriptor["Image Size"], \
+        f"Original image size should be the same as the image size in the hash descriptor " \
+        f"for {image_path}. Original image size: {info['Original image size']}, " \
+        f"image size in the hash descriptor: {original_image_descriptor['Image Size']}"
 
+    partition_size = str(ReadBytesSize(info['Image size']))
+    algorithm = info['Algorithm']
+    original_image_salt = original_image_descriptor['Salt']
+
+    cmd = ['avbtool', 'add_hash_footer',
+           '--key', key,
+           '--algorithm', algorithm,
+           '--partition_name', original_image_partition_name,
+           '--salt', original_image_salt,
+           '--partition_size', partition_size,
+           '--image', image_path]
+    AppendPropArgument(cmd, descriptors)
+    if args.signing_args:
+        cmd.extend(shlex.split(args.signing_args))
+    for additional_image in additional_images:
+        cmd.extend(['--include_descriptors_from_image', additional_image])
+    cmd.extend(['--rollback_index', info['Rollback Index']])
+
+    RunCommand(args, cmd)
+    check_resigned_image_avb_info(image_path, info, descriptors, args)
 
 def AddHashTreeFooter(args, key, image_path):
     if os.path.basename(image_path) in args.key_overrides:
         key = args.key_overrides[os.path.basename(image_path)]
     info, descriptors = AvbInfo(args, image_path)
     if info:
-        descriptor = LookUp(descriptors, 'Hashtree descriptor')[0]
+        descriptor = find_all_values_by_key(descriptors, 'Hashtree descriptor')[0]
         image_size = ReadBytesSize(info['Image size'])
         algorithm = info['Algorithm']
         partition_name = descriptor['Partition Name']
         hash_algorithm = descriptor['Hash Algorithm']
+        salt = descriptor['Salt']
         partition_size = str(image_size)
         cmd = ['avbtool', 'add_hashtree_footer',
                '--key', key,
@@ -253,10 +326,13 @@
                '--partition_size', partition_size,
                '--do_not_generate_fec',
                '--hash_algorithm', hash_algorithm,
+               '--salt', salt,
                '--image', image_path]
+        AppendPropArgument(cmd, descriptors)
         if args.signing_args:
             cmd.extend(shlex.split(args.signing_args))
         RunCommand(args, cmd)
+        check_resigned_image_avb_info(image_path, info, descriptors, args)
 
 
 def UpdateVbmetaBootconfig(args, initrds, vbmeta_img):
@@ -280,7 +356,7 @@
         avb_version_bc = re.search(
             r"androidboot.vbmeta.avb_version = \"([^\"]*)\"", bootconfigs).group(1)
         if avb_version_curr != avb_version_bc:
-            raise Exception(f'AVB version mismatch between current & one & \
+            raise builtins.Exception(f'AVB version mismatch between current & one & \
                 used to build bootconfigs:{avb_version_curr}&{avb_version_bc}')
 
     def calc_vbmeta_digest():
@@ -372,6 +448,7 @@
             cmd.extend(shlex.split(args.signing_args))
 
         RunCommand(args, cmd)
+        check_resigned_image_avb_info(vbmeta_img, info, descriptors, args)
         # libavb expects to be able to read the maximum vbmeta size, so we must provide a partition
         # which matches this or the read will fail.
         with open(vbmeta_img, 'a', encoding='utf8') as f:
@@ -400,26 +477,45 @@
         RunCommand(args, cmd)
 
 
-def GenVbmetaImage(args, image, output, partition_name):
+def GenVbmetaImage(args, image, output, partition_name, salt):
     cmd = ['avbtool', 'add_hash_footer', '--dynamic_partition_size',
            '--do_not_append_vbmeta_image',
            '--partition_name', partition_name,
+           '--salt', salt,
            '--image', image,
            '--output_vbmeta_image', output]
     RunCommand(args, cmd)
 
+
+gki_versions = ['android14-6.1']
+
 # dict of (key, file) for re-sign/verification. keys are un-versioned for readability.
-virt_apex_files = {
+virt_apex_non_gki_files = {
     'kernel': 'etc/fs/microdroid_kernel',
     'vbmeta.img': 'etc/fs/microdroid_vbmeta.img',
     'super.img': 'etc/fs/microdroid_super.img',
     'initrd_normal.img': 'etc/microdroid_initrd_normal.img',
     'initrd_debuggable.img': 'etc/microdroid_initrd_debuggable.img',
+    'rialto': 'etc/rialto.bin',
 }
 
-
 def TargetFiles(input_dir):
-    return {k: os.path.join(input_dir, v) for k, v in virt_apex_files.items()}
+    ret = {k: os.path.join(input_dir, v) for k, v in virt_apex_non_gki_files.items()}
+
+    for ver in gki_versions:
+        kernel        = os.path.join(input_dir, f'etc/fs/microdroid_gki-{ver}_kernel')
+        initrd_normal = os.path.join(input_dir, f'etc/microdroid_gki-{ver}_initrd_normal.img')
+        initrd_debug  = os.path.join(input_dir, f'etc/microdroid_gki-{ver}_initrd_debuggable.img')
+
+        if os.path.isfile(kernel):
+            ret[f'gki-{ver}_kernel']                = kernel
+            ret[f'gki-{ver}_initrd_normal.img']     = initrd_normal
+            ret[f'gki-{ver}_initrd_debuggable.img'] = initrd_debug
+
+    return ret
+
+def IsInitrdImage(path):
+    return path.endswith('initrd_normal.img') or path.endswith('initrd_debuggable.img')
 
 
 def SignVirtApex(args):
@@ -433,41 +529,154 @@
 
     # re-sign super.img
     # 1. unpack super.img
-    # 2. resign system and vendor
-    # 3. repack super.img out of resigned system and vendor
+    # 2. resign system and vendor (if exists)
+    # 3. repack super.img out of resigned system and vendor (if exists)
     UnpackSuperImg(args, files['super.img'], unpack_dir.name)
     system_a_f = Async(AddHashTreeFooter, args, key, system_a_img)
-    vendor_a_f = Async(AddHashTreeFooter, args, key, vendor_a_img)
-    partitions = {"system_a": system_a_img, "vendor_a": vendor_a_img}
-    Async(MakeSuperImage, args, partitions,
-          files['super.img'], wait=[system_a_f, vendor_a_f])
+    partitions = {"system_a": system_a_img}
+    images = [system_a_img]
+    images_f = [system_a_f]
 
-    # re-generate vbmeta from re-signed {system_a, vendor_a}.img
+    # if vendor_a.img exists, resign it
+    if os.path.exists(vendor_a_img):
+        partitions.update({'vendor_a': vendor_a_img})
+        images.append(vendor_a_img)
+        vendor_a_f = Async(AddHashTreeFooter, args, key, vendor_a_img)
+        images_f.append(vendor_a_f)
+
+    Async(MakeSuperImage, args, partitions,
+          files['super.img'], wait=images_f)
+
+    # re-generate vbmeta from re-signed system_a.img
     vbmeta_f = Async(MakeVbmetaImage, args, key, files['vbmeta.img'],
-                     images=[system_a_img, vendor_a_img],
-                     wait=[system_a_f, vendor_a_f])
+                     images=images,
+                     wait=images_f)
 
     vbmeta_bc_f = None
     if not args.do_not_update_bootconfigs:
-        vbmeta_bc_f = Async(UpdateVbmetaBootconfig, args,
-                            [files['initrd_normal.img'],
-                                files['initrd_debuggable.img']], files['vbmeta.img'],
+        initrd_files = [v for k, v in files.items() if IsInitrdImage(k)]
+        vbmeta_bc_f = Async(UpdateVbmetaBootconfig, args, initrd_files,
+                            files['vbmeta.img'],
                             wait=[vbmeta_f])
 
     # Re-sign kernel. Note kernel's vbmeta contain addition descriptor from ramdisk(s)
-    initrd_normal_hashdesc = tempfile.NamedTemporaryFile(delete=False).name
-    initrd_debug_hashdesc = tempfile.NamedTemporaryFile(delete=False).name
-    initrd_n_f = Async(GenVbmetaImage, args, files['initrd_normal.img'],
-                       initrd_normal_hashdesc, "initrd_normal",
-                       wait=[vbmeta_bc_f] if vbmeta_bc_f is not None else [])
-    initrd_d_f = Async(GenVbmetaImage, args, files['initrd_debuggable.img'],
-                       initrd_debug_hashdesc, "initrd_debug",
-                       wait=[vbmeta_bc_f] if vbmeta_bc_f is not None else [])
-    Async(AddHashFooter, args, key, files['kernel'], partition_name="boot",
-          additional_descriptors=[
-              initrd_normal_hashdesc, initrd_debug_hashdesc],
-          wait=[initrd_n_f, initrd_d_f])
+    def resign_kernel(kernel, initrd_normal, initrd_debug):
+        kernel_file = files[kernel]
+        initrd_normal_file = files[initrd_normal]
+        initrd_debug_file = files[initrd_debug]
 
+        _, kernel_image_descriptors = AvbInfo(args, kernel_file)
+        salts = extract_hash_descriptors(
+            kernel_image_descriptors, lambda descriptor: descriptor['Salt'])
+        initrd_normal_hashdesc = tempfile.NamedTemporaryFile(delete=False).name
+        initrd_debug_hashdesc = tempfile.NamedTemporaryFile(delete=False).name
+        initrd_n_f = Async(GenVbmetaImage, args, initrd_normal_file,
+                           initrd_normal_hashdesc, "initrd_normal", salts["initrd_normal"],
+                           wait=[vbmeta_bc_f] if vbmeta_bc_f is not None else [])
+        initrd_d_f = Async(GenVbmetaImage, args, initrd_debug_file,
+                           initrd_debug_hashdesc, "initrd_debug", salts["initrd_debug"],
+                           wait=[vbmeta_bc_f] if vbmeta_bc_f is not None else [])
+        return Async(AddHashFooter, args, key, kernel_file,
+              additional_images=[initrd_normal_hashdesc, initrd_debug_hashdesc],
+              wait=[initrd_n_f, initrd_d_f])
+
+    _, original_kernel_descriptors = AvbInfo(args, files['kernel'])
+    resign_kernel_task = resign_kernel('kernel', 'initrd_normal.img', 'initrd_debuggable.img')
+
+    for ver in gki_versions:
+        if f'gki-{ver}_kernel' in files:
+            resign_kernel(
+                f'gki-{ver}_kernel',
+                f'gki-{ver}_initrd_normal.img',
+                f'gki-{ver}_initrd_debuggable.img')
+
+    # Re-sign rialto if it exists. Rialto only exists in arm64 environment.
+    if os.path.exists(files['rialto']):
+        update_initrd_digests_task = Async(
+            update_initrd_digests_in_rialto, original_kernel_descriptors, args,
+            files, wait=[resign_kernel_task])
+        Async(resign_rialto, args, key, files['rialto'], wait=[update_initrd_digests_task])
+
+def resign_rialto(args, key, rialto_path):
+    _, original_descriptors = AvbInfo(args, rialto_path)
+    AddHashFooter(args, key, rialto_path)
+
+    # Verify the new AVB footer.
+    updated_info, updated_descriptors = AvbInfo(args, rialto_path)
+    assert len(updated_descriptors) == 2, \
+        f"There should be two descriptors for rialto. Updated descriptors: {updated_descriptors}"
+    updated_prop = find_all_values_by_key(updated_descriptors, "Prop")
+    assert len(updated_prop) == 1, "There should be only one Prop descriptor for rialto. " \
+        f"Updated descriptors: {updated_descriptors}"
+    assert updated_info["Rollback Index"] != "0", "Rollback index should not be zero for rialto."
+
+    # Verify the only hash descriptor of rialto.
+    updated_hash_descriptors = extract_hash_descriptors(updated_descriptors)
+    assert len(updated_hash_descriptors) == 1, \
+        f"There should be only one hash descriptor for rialto. " \
+        f"Updated hash descriptors: {updated_hash_descriptors}"
+    # Since salt is not updated, the change of digest reflects the change of content of rialto
+    # kernel.
+    if not args.do_not_update_bootconfigs:
+        [(_, original_descriptor)] = extract_hash_descriptors(original_descriptors).items()
+        [(_, updated_descriptor)] = updated_hash_descriptors.items()
+        assert_different_value(original_descriptor, updated_descriptor, "Digest",
+                               "rialto_hash_descriptor")
+
+def assert_different_value(original, updated, key, context):
+    assert original[key] != updated[key], \
+        f"Value of '{key}' should change for '{context}'" \
+        f"Original value: {original[key]}, updated value: {updated[key]}"
+
+def update_initrd_digests_in_rialto(original_descriptors, args, files):
+    _, updated_descriptors = AvbInfo(args, files['kernel'])
+
+    original_digests = extract_hash_descriptors(
+        original_descriptors, lambda x: binascii.unhexlify(x['Digest']))
+    updated_digests = extract_hash_descriptors(
+        updated_descriptors, lambda x: binascii.unhexlify(x['Digest']))
+    assert original_digests.pop("boot") == updated_digests.pop("boot"), \
+        "Hash descriptor of boot should not change for kernel. " \
+        f"Original descriptors: {original_descriptors}, " \
+        f"updated descriptors: {updated_descriptors}"
+
+    # Update the hashes of initrd_normal and initrd_debug in rialto if the
+    # bootconfigs in them are updated.
+    if args.do_not_update_bootconfigs:
+        return
+
+    with open(files['rialto'], "rb") as file:
+        content = file.read()
+
+    # Check that the original and updated digests are different before updating rialto.
+    partition_names = {'initrd_normal', 'initrd_debug'}
+    assert set(original_digests.keys()) == set(updated_digests.keys()) == partition_names, \
+        f"Original digests' partitions should be {partition_names}. " \
+        f"Original digests: {original_digests}. Updated digests: {updated_digests}"
+    assert set(original_digests.values()).isdisjoint(updated_digests.values()), \
+        "Digests of initrd_normal and initrd_debug should change. " \
+        f"Original descriptors: {original_descriptors}, " \
+        f"updated descriptors: {updated_descriptors}"
+
+    for partition_name, original_digest in original_digests.items():
+        updated_digest = updated_digests[partition_name]
+        assert len(original_digest) == len(updated_digest), \
+            f"Length of original_digest and updated_digest must be the same for {partition_name}." \
+            f" Original digest: {original_digest}, updated digest: {updated_digest}"
+
+        new_content = content.replace(original_digest, updated_digest)
+        assert len(new_content) == len(content), \
+            "Length of new_content and content must be the same."
+        assert new_content != content, \
+            f"original digest of the partition {partition_name} not found."
+        content = new_content
+
+    with open(files['rialto'], "wb") as file:
+        file.write(content)
+
+def extract_hash_descriptors(descriptors, f=lambda x: x):
+    return {desc["Partition Name"]: f(desc) for desc in
+            find_all_values_by_key(descriptors, "Hash descriptor")}
 
 def VerifyVirtApex(args):
     key = args.key
@@ -477,7 +686,6 @@
     # unpacked files
     UnpackSuperImg(args, files['super.img'], unpack_dir.name)
     system_a_img = os.path.join(unpack_dir.name, 'system_a.img')
-    vendor_a_img = os.path.join(unpack_dir.name, 'vendor_a.img')
 
     # Read pubkey digest from the input key
     with tempfile.NamedTemporaryFile() as pubkey_file:
@@ -491,13 +699,15 @@
         assert info is not None, f'no avbinfo: {file}'
         assert info['Public key (sha1)'] == pubkey_digest, f'pubkey mismatch: {file}'
 
-    for f in files.values():
-        if f in (files['initrd_normal.img'], files['initrd_debuggable.img']):
+    for k, f in files.items():
+        if IsInitrdImage(k):
             # TODO(b/245277660): Verify that ramdisks contain the correct vbmeta digest
             continue
-        if f == files['super.img']:
+        if k == 'rialto' and not os.path.exists(f):
+            # Rialto only exists in arm64 environment.
+            continue
+        if k == 'super.img':
             Async(check_avb_pubkey, system_a_img)
-            Async(check_avb_pubkey, vendor_a_img)
         else:
             # Check pubkey for other files using avbtool
             Async(check_avb_pubkey, f)
diff --git a/apex/sign_virt_apex_test.sh b/apex/sign_virt_apex_test.sh
index 03a56ca..e6a892b 100644
--- a/apex/sign_virt_apex_test.sh
+++ b/apex/sign_virt_apex_test.sh
@@ -23,10 +23,9 @@
 # To access host tools
 PATH=$TEST_DIR:$PATH
 DEBUGFS=$TEST_DIR/debugfs_static
-BLKID=$TEST_DIR/blkid
 FSCKEROFS=$TEST_DIR/fsck.erofs
 
-deapexer --debugfs_path $DEBUGFS --blkid_path $BLKID --fsckerofs_path $FSCKEROFS \
+deapexer --debugfs_path $DEBUGFS --fsckerofs_path $FSCKEROFS \
   extract $TEST_DIR/com.android.virt.apex $TMP_ROOT
 
 if [ "$(ls -A $TMP_ROOT/etc/fs/)" ]; then
diff --git a/apex/vfio_handler.rc b/apex/vfio_handler.rc
new file mode 100644
index 0000000..419acef
--- /dev/null
+++ b/apex/vfio_handler.rc
@@ -0,0 +1,20 @@
+# Copyright (C) 2023 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+service vfio_handler /apex/com.android.virt/bin/vfio_handler
+    user root
+    group system
+    interface aidl android.system.virtualizationservice_internal.IVfioHandler
+    disabled
+    oneshot
diff --git a/apex/virtualizationservice.xml b/apex/virtualizationservice.xml
new file mode 100644
index 0000000..60f466f
--- /dev/null
+++ b/apex/virtualizationservice.xml
@@ -0,0 +1,7 @@
+<manifest version="1.0" type="framework">
+    <hal format="aidl">
+        <name>android.hardware.security.keymint</name>
+        <version>3</version>
+        <fqname>IRemotelyProvisionedComponent/avf</fqname>
+    </hal>
+</manifest>
diff --git a/apex/virtualizationservice_attestation_enabled.rc b/apex/virtualizationservice_attestation_enabled.rc
new file mode 100644
index 0000000..8eaccae
--- /dev/null
+++ b/apex/virtualizationservice_attestation_enabled.rc
@@ -0,0 +1,22 @@
+# Copyright (C) 2021 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+service virtualizationservice /apex/com.android.virt/bin/virtualizationservice
+    class main
+    user system
+    group system
+    interface aidl android.system.virtualizationservice
+    interface aidl android.hardware.security.keymint.IRemotelyProvisionedComponent/avf
+    disabled
+    oneshot
diff --git a/apkdmverity/Android.bp b/apkdmverity/Android.bp
index 92b23a7..40c5f72 100644
--- a/apkdmverity/Android.bp
+++ b/apkdmverity/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "apkdmverity.defaults",
     crate_name: "apkdmverity",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     edition: "2021",
     prefer_rlib: true,
@@ -13,14 +15,15 @@
         "libapkverify",
         "libbitflags",
         "libclap",
-        "libdata_model",
         "libdm_rust",
+        "libhex",
         "libitertools",
         "liblibc",
         "libnix",
         "libnum_traits",
         "libscopeguard",
         "libuuid",
+        "libzerocopy",
     ],
     proc_macros: ["libnum_derive"],
     multilib: {
@@ -38,7 +41,10 @@
 
 rust_test {
     name: "apkdmverity.test",
-    defaults: ["apkdmverity.defaults"],
+    defaults: [
+        "apkdmverity.defaults",
+        "rdroidtest.defaults",
+    ],
     test_suites: ["general-tests"],
     compile_multilib: "first",
     rustlibs: [
diff --git a/apkdmverity/TEST_MAPPING b/apkdmverity/TEST_MAPPING
index 89750a8..e2e1a64 100644
--- a/apkdmverity/TEST_MAPPING
+++ b/apkdmverity/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-postsubmit" : [
     {
diff --git a/apkdmverity/src/main.rs b/apkdmverity/src/main.rs
index b9b88d4..d2f88ae 100644
--- a/apkdmverity/src/main.rs
+++ b/apkdmverity/src/main.rs
@@ -21,6 +21,8 @@
 //! system managed by the host Android which is assumed to be compromisable, it is important to
 //! keep the integrity of the file "inside" Microdroid.
 
+#![cfg_attr(test, allow(unused))]
+
 use anyhow::{bail, Context, Result};
 use apkverify::{HashAlgorithm, V4Signature};
 use clap::{arg, Arg, ArgAction, Command};
@@ -33,6 +35,7 @@
 use std::os::unix::fs::FileTypeExt;
 use std::path::{Path, PathBuf};
 
+#[cfg(not(test))]
 fn main() -> Result<()> {
     let matches = clap_command().get_matches();
 
@@ -43,7 +46,7 @@
 
     for (apk, idsig, name, roothash) in apks.tuples() {
         let roothash = if roothash != "none" {
-            Some(util::parse_hexstring(roothash).expect("failed to parse roothash"))
+            Some(hex::decode(roothash).expect("failed to parse roothash"))
         } else {
             None
         };
@@ -105,8 +108,10 @@
             bail!("The size of {:?} is not multiple of {}.", &apk, BLOCK_SIZE)
         }
         (
-            loopdevice::attach(&apk, 0, apk_size, /*direct_io*/ true, /*writable*/ false)
-                .context("Failed to attach APK to a loop device")?,
+            loopdevice::attach(
+                &apk, 0, apk_size, /* direct_io */ true, /* writable */ false,
+            )
+            .context("Failed to attach APK to a loop device")?,
             apk_size,
         )
     };
@@ -120,9 +125,10 @@
     // Due to unknown reason(b/191344832), we can't enable "direct IO" for the IDSIG file (backing
     // the hash). For now we don't use "direct IO" but it seems OK since the IDSIG file is very
     // small and the benefit of direct-IO would be negliable.
-    let hash_device =
-        loopdevice::attach(&idsig, offset, size, /*direct_io*/ false, /*writable*/ false)
-            .context("Failed to attach idsig to a loop device")?;
+    let hash_device = loopdevice::attach(
+        &idsig, offset, size, /* direct_io */ false, /* writable */ false,
+    )
+    .context("Failed to attach idsig to a loop device")?;
 
     // Build a dm-verity target spec from the information from the idsig file. The apk and the
     // idsig files are used as the data device and the hash device, respectively.
@@ -150,10 +156,15 @@
 }
 
 #[cfg(test)]
+rdroidtest::test_main!();
+
+#[cfg(test)]
 mod tests {
     use crate::*;
+    use rdroidtest::{ignore_if, rdroidtest};
     use std::fs::{File, OpenOptions};
     use std::io::Write;
+    use std::ops::Deref;
     use std::os::unix::fs::FileExt;
 
     struct TestContext<'a> {
@@ -202,9 +213,6 @@
         roothash: Option<&[u8]>,
         check: fn(TestContext),
     ) {
-        if should_skip() {
-            return;
-        }
         let test_dir = tempfile::TempDir::new().unwrap();
         let (apk_path, idsig_path) = prepare_inputs(test_dir.path(), apk, idsig);
 
@@ -224,7 +232,8 @@
         });
     }
 
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn correct_inputs() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -237,7 +246,8 @@
     }
 
     // A single byte change in the APK file causes an IO error
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn incorrect_apk() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -254,7 +264,8 @@
     }
 
     // A single byte change in the merkle tree also causes an IO error
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn incorrect_merkle_tree() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -278,7 +289,8 @@
     // APK is not altered when the verity device is created, but later modified. IO error should
     // occur when trying to read the data around the modified location. This is the main scenario
     // that we'd like to protect.
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn tampered_apk() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -299,7 +311,8 @@
 
     // idsig file is not alread when the verity device is created, but later modified. Unlike to
     // the APK case, this doesn't occur IO error because the merkle tree is already cached.
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn tampered_idsig() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -316,13 +329,9 @@
     }
 
     // test if both files are already block devices
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn inputs_are_block_devices() {
-        if should_skip() {
-            return;
-        }
-
-        use std::ops::Deref;
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
 
@@ -338,7 +347,7 @@
         // of the data device is done in the scopeguard for the return value of `enable_verity`
         // below. Only the idsig_loop_device needs detatching.
         let apk_loop_device = loopdevice::attach(
-            &apk_path, 0, apk_size, /*direct_io*/ true, /*writable*/ false,
+            &apk_path, 0, apk_size, /* direct_io */ true, /* writable */ false,
         )
         .unwrap();
         let idsig_loop_device = scopeguard::guard(
@@ -346,8 +355,8 @@
                 &idsig_path,
                 0,
                 idsig_size,
-                /*direct_io*/ false,
-                /*writable*/ false,
+                /* direct_io */ false,
+                /* writable */ false,
             )
             .unwrap(),
             |dev| loopdevice::detach(dev).unwrap(),
@@ -371,7 +380,8 @@
     }
 
     // test with custom roothash
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(should_skip())]
     fn correct_custom_roothash() {
         let apk = include_bytes!("../testdata/test.apk");
         let idsig = include_bytes!("../testdata/test.apk.idsig");
@@ -393,7 +403,7 @@
         );
     }
 
-    #[test]
+    #[rdroidtest]
     fn verify_command() {
         // Check that the command parsing has been configured in a valid way.
         clap_command().debug_assert();
diff --git a/authfs/Android.bp b/authfs/Android.bp
index 2532026..8dc6d86 100644
--- a/authfs/Android.bp
+++ b/authfs/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -19,11 +20,12 @@
         "libclap",
         "libfsverity_digests_proto_rust",
         "libfuse_rust",
+        "libhex",
         "liblibc",
         "liblog_rust",
         "libnix",
         "libopenssl",
-        "libprotobuf_deprecated",
+        "libprotobuf",
         "librpcbinder_rs",
         "libthiserror",
     ],
@@ -33,7 +35,10 @@
             enabled: false,
         },
     },
-    defaults: ["crosvm_defaults"],
+    defaults: [
+        "crosvm_defaults",
+        "avf_build_flags_rust",
+    ],
 }
 
 rust_binary {
diff --git a/authfs/TEST_MAPPING b/authfs/TEST_MAPPING
index 450f133..62bc18f 100644
--- a/authfs/TEST_MAPPING
+++ b/authfs/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/authfs/aidl/Android.bp b/authfs/aidl/Android.bp
index 9504037..277a964 100644
--- a/authfs/aidl/Android.bp
+++ b/authfs/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/authfs/fd_server/Android.bp b/authfs/fd_server/Android.bp
index db1fd44..9a16d04 100644
--- a/authfs/fd_server/Android.bp
+++ b/authfs/fd_server/Android.bp
@@ -1,9 +1,11 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_binary {
     name: "fd_server",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     rustlibs: [
         "authfs_aidl_interface-rust",
@@ -24,6 +26,7 @@
 
 rust_test {
     name: "fd_server.test",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     rustlibs: [
         "authfs_aidl_interface-rust",
diff --git a/authfs/fd_server/src/main.rs b/authfs/fd_server/src/main.rs
index 47983cb..26315bf 100644
--- a/authfs/fd_server/src/main.rs
+++ b/authfs/fd_server/src/main.rs
@@ -123,7 +123,9 @@
 
 fn main() -> Result<()> {
     android_logger::init_once(
-        android_logger::Config::default().with_tag("fd_server").with_min_level(log::Level::Debug),
+        android_logger::Config::default()
+            .with_tag("fd_server")
+            .with_max_level(log::LevelFilter::Debug),
     );
 
     let args = Args::parse();
diff --git a/authfs/service/Android.bp b/authfs/service/Android.bp
index de6326d..b4d3b09 100644
--- a/authfs/service/Android.bp
+++ b/authfs/service/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -17,6 +18,7 @@
         "liblog_rust",
         "libnix",
         "librpcbinder_rs",
+        "librustutils",
         "libshared_child",
     ],
     prefer_rlib: true,
diff --git a/authfs/service/src/authfs.rs b/authfs/service/src/authfs.rs
index 3e8e0e0..cfd5766 100644
--- a/authfs/service/src/authfs.rs
+++ b/authfs/service/src/authfs.rs
@@ -176,7 +176,7 @@
             bail!("Child has exited: {}", exit_status);
         }
         if start_time.elapsed() > AUTHFS_SETUP_TIMEOUT_SEC {
-            let _ = child.kill();
+            let _ignored = child.kill();
             bail!("Time out mounting authfs");
         }
         sleep(AUTHFS_SETUP_POLL_INTERVAL_MS);
diff --git a/authfs/service/src/main.rs b/authfs/service/src/main.rs
index e710f07..97e684d 100644
--- a/authfs/service/src/main.rs
+++ b/authfs/service/src/main.rs
@@ -25,8 +25,10 @@
 use anyhow::{bail, Result};
 use log::*;
 use rpcbinder::RpcServer;
+use rustutils::sockets::android_get_control_socket;
 use std::ffi::OsString;
 use std::fs::{create_dir, read_dir, remove_dir_all, remove_file};
+use std::os::unix::io::{FromRawFd, OwnedFd};
 use std::sync::atomic::{AtomicUsize, Ordering};
 
 use authfs_aidl_interface::aidl::com::android::virt::fs::AuthFsConfig::AuthFsConfig;
@@ -106,18 +108,40 @@
     Ok(())
 }
 
+/// Prepares a socket file descriptor for the authfs service.
+///
+/// # Safety requirement
+///
+/// The caller must ensure that this function is the only place that claims ownership
+/// of the file descriptor and it is called only once.
+unsafe fn prepare_authfs_service_socket() -> Result<OwnedFd> {
+    let raw_fd = android_get_control_socket(AUTHFS_SERVICE_SOCKET_NAME)?;
+
+    // Creating OwnedFd for stdio FDs is not safe.
+    if [libc::STDIN_FILENO, libc::STDOUT_FILENO, libc::STDERR_FILENO].contains(&raw_fd) {
+        bail!("File descriptor {raw_fd} is standard I/O descriptor");
+    }
+    // SAFETY: Initializing OwnedFd for a RawFd created by the init.
+    // We checked that the integer value corresponds to a valid FD and that the caller
+    // ensures that this is the only place to claim its ownership.
+    Ok(unsafe { OwnedFd::from_raw_fd(raw_fd) })
+}
+
+#[allow(clippy::eq_op)]
 fn try_main() -> Result<()> {
     let debuggable = env!("TARGET_BUILD_VARIANT") != "user";
-    let log_level = if debuggable { log::Level::Trace } else { log::Level::Info };
+    let log_level = if debuggable { log::LevelFilter::Trace } else { log::LevelFilter::Info };
     android_logger::init_once(
-        android_logger::Config::default().with_tag("authfs_service").with_min_level(log_level),
+        android_logger::Config::default().with_tag("authfs_service").with_max_level(log_level),
     );
 
     clean_up_working_directory()?;
 
+    // SAFETY: This is the only place we take the ownership of the fd of the authfs service.
+    let socket_fd = unsafe { prepare_authfs_service_socket()? };
     let service = AuthFsService::new_binder(debuggable).as_binder();
     debug!("{} is starting as a rpc service.", AUTHFS_SERVICE_SOCKET_NAME);
-    let server = RpcServer::new_init_unix_domain(service, AUTHFS_SERVICE_SOCKET_NAME)?;
+    let server = RpcServer::new_bound_socket(service, socket_fd)?;
     info!("The RPC server '{}' is running.", AUTHFS_SERVICE_SOCKET_NAME);
     server.join();
     info!("The RPC server at '{}' has shut down gracefully.", AUTHFS_SERVICE_SOCKET_NAME);
diff --git a/authfs/src/fsverity/builder.rs b/authfs/src/fsverity/builder.rs
index 8585fdf..6d724ca 100644
--- a/authfs/src/fsverity/builder.rs
+++ b/authfs/src/fsverity/builder.rs
@@ -159,7 +159,7 @@
     #[test]
     fn merkle_tree_empty_file() -> Result<()> {
         assert_eq!(
-            to_u8_vec("3d248ca542a24fc62d1c43b916eae5016878e2533c88238480b26128a1f1af95"),
+            hex::decode("3d248ca542a24fc62d1c43b916eae5016878e2533c88238480b26128a1f1af95")?,
             generate_fsverity_digest_sequentially(&Vec::new())?
         );
         Ok(())
@@ -169,7 +169,7 @@
     fn merkle_tree_file_size_less_than_or_equal_to_4k() -> Result<()> {
         // Test a file that contains 4096 '\01's.
         assert_eq!(
-            to_u8_vec("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af"),
+            hex::decode("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af")?,
             generate_fsverity_digest_sequentially(&vec![1; 4096])?
         );
         Ok(())
@@ -180,24 +180,24 @@
         // Test files that contains >4096 '\01's.
 
         assert_eq!(
-            to_u8_vec("2901b849fda2d91e3929524561c4a47e77bb64734319759507b2029f18b9cc52"),
+            hex::decode("2901b849fda2d91e3929524561c4a47e77bb64734319759507b2029f18b9cc52")?,
             generate_fsverity_digest_sequentially(&vec![1; 4097])?
         );
 
         assert_eq!(
-            to_u8_vec("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d"),
+            hex::decode("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d")?,
             generate_fsverity_digest_sequentially(&vec![1; 8192])?
         );
 
         // Test with max size that still fits in 2 levels.
         assert_eq!(
-            to_u8_vec("26b7c190a34e19f420808ee7ec233b09fa6c34543b5a9d2950530114c205d14f"),
+            hex::decode("26b7c190a34e19f420808ee7ec233b09fa6c34543b5a9d2950530114c205d14f")?,
             generate_fsverity_digest_sequentially(&vec![1; 524288])?
         );
 
         // Test with data that requires 3 levels.
         assert_eq!(
-            to_u8_vec("316835d9be1c95b5cd55d07ae7965d651689efad186e26cbf680e40b683a3262"),
+            hex::decode("316835d9be1c95b5cd55d07ae7965d651689efad186e26cbf680e40b683a3262")?,
             generate_fsverity_digest_sequentially(&vec![1; 524289])?
         );
         Ok(())
@@ -215,7 +215,7 @@
         tree.update_hash(2, &hash, CHUNK_SIZE * 3);
 
         assert_eq!(
-            to_u8_vec("7d3c0d2e1dc54230b20ed875f5f3a4bd3f9873df601936b3ca8127d4db3548f3"),
+            hex::decode("7d3c0d2e1dc54230b20ed875f5f3a4bd3f9873df601936b3ca8127d4db3548f3")?,
             tree.calculate_fsverity_digest()?
         );
         Ok(())
@@ -268,12 +268,4 @@
         }
         Ok(tree.calculate_fsverity_digest()?)
     }
-
-    fn to_u8_vec(hex_str: &str) -> Vec<u8> {
-        assert!(hex_str.len() % 2 == 0);
-        (0..hex_str.len())
-            .step_by(2)
-            .map(|i| u8::from_str_radix(&hex_str[i..i + 2], 16).unwrap())
-            .collect()
-    }
 }
diff --git a/authfs/src/fsverity/editor.rs b/authfs/src/fsverity/editor.rs
index 4af6e80..c84500b 100644
--- a/authfs/src/fsverity/editor.rs
+++ b/authfs/src/fsverity/editor.rs
@@ -373,7 +373,7 @@
         let file = VerifiedFileEditor::new(InMemoryEditor::new());
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("3d248ca542a24fc62d1c43b916eae5016878e2533c88238480b26128a1f1af95")
+            hex::decode("3d248ca542a24fc62d1c43b916eae5016878e2533c88238480b26128a1f1af95")?
                 .as_slice()
         );
         Ok(())
@@ -386,7 +386,7 @@
         assert_eq!(file.write_at(&[1; 4096], 0)?, 4096);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af")
+            hex::decode("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af")?
                 .as_slice()
         );
 
@@ -395,7 +395,7 @@
         assert_eq!(file.write_at(&[1; 4097], 0)?, 4097);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("2901b849fda2d91e3929524561c4a47e77bb64734319759507b2029f18b9cc52")
+            hex::decode("2901b849fda2d91e3929524561c4a47e77bb64734319759507b2029f18b9cc52")?
                 .as_slice()
         );
 
@@ -404,7 +404,7 @@
         assert_eq!(file.write_at(&[1; 10000], 0)?, 10000);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("7545409b556071554d18973a29b96409588c7cda4edd00d5586b27a11e1a523b")
+            hex::decode("7545409b556071554d18973a29b96409588c7cda4edd00d5586b27a11e1a523b")?
                 .as_slice()
         );
         Ok(())
@@ -417,7 +417,7 @@
         assert_eq!(file.write_at(&[1; 5], 3)?, 5);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("a23fc5130d3d7b3323fc4b4a5e79d5d3e9ddf3a3f5872639e867713512c6702f")
+            hex::decode("a23fc5130d3d7b3323fc4b4a5e79d5d3e9ddf3a3f5872639e867713512c6702f")?
                 .as_slice()
         );
 
@@ -426,7 +426,7 @@
         assert_eq!(file.write_at(&[1; 6000], 4000)?, 6000);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("d16d4c1c186d757e646f76208b21254f50d7f07ea07b1505ff48b2a6f603f989")
+            hex::decode("d16d4c1c186d757e646f76208b21254f50d7f07ea07b1505ff48b2a6f603f989")?
                 .as_slice()
         );
         Ok(())
@@ -439,7 +439,7 @@
         assert_eq!(file.write_at(&[1; 4096], 4096)?, 4096);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("4df2aefd8c2a9101d1d8770dca3ede418232eabce766bb8e020395eae2e97103")
+            hex::decode("4df2aefd8c2a9101d1d8770dca3ede418232eabce766bb8e020395eae2e97103")?
                 .as_slice()
         );
 
@@ -448,7 +448,7 @@
         assert_eq!(file.write_at(&[1; 5000], 6000)?, 5000);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("47d5da26f6934484e260630a69eb2eebb21b48f69bc8fbf8486d1694b7dba94f")
+            hex::decode("47d5da26f6934484e260630a69eb2eebb21b48f69bc8fbf8486d1694b7dba94f")?
                 .as_slice()
         );
 
@@ -457,7 +457,7 @@
         assert_eq!(file.write_at(&[1; 5], 16381)?, 5);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("8bd118821fb4aff26bb4b51d485cc481a093c68131b7f4f112e9546198449752")
+            hex::decode("8bd118821fb4aff26bb4b51d485cc481a093c68131b7f4f112e9546198449752")?
                 .as_slice()
         );
         Ok(())
@@ -470,34 +470,34 @@
         assert_eq!(file.write_at(&[1; 2048], 4096 + 2048)?, 2048);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("4c433d8640c888b629dc673d318cbb8d93b1eebcc784d9353e07f09f0dcfe707")
+            hex::decode("4c433d8640c888b629dc673d318cbb8d93b1eebcc784d9353e07f09f0dcfe707")?
                 .as_slice()
         );
         assert_eq!(file.write_at(&[1; 2048], 2048)?, 2048);
         assert_eq!(file.write_at(&[1; 2048], 4096)?, 2048);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d")
+            hex::decode("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d")?
                 .as_slice()
         );
         assert_eq!(file.write_at(&[0; 2048], 2048)?, 2048);
         assert_eq!(file.write_at(&[0; 2048], 4096)?, 2048);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("4c433d8640c888b629dc673d318cbb8d93b1eebcc784d9353e07f09f0dcfe707")
+            hex::decode("4c433d8640c888b629dc673d318cbb8d93b1eebcc784d9353e07f09f0dcfe707")?
                 .as_slice()
         );
         assert_eq!(file.write_at(&[1; 4096], 2048)?, 4096);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d")
+            hex::decode("2a476d58eb80394052a3a783111e1458ac3ecf68a7878183fed86ca0ff47ec0d")?
                 .as_slice()
         );
         assert_eq!(file.write_at(&[1; 2048], 8192)?, 2048);
         assert_eq!(file.write_at(&[1; 2048], 8192 + 2048)?, 2048);
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("23cbac08371e6ee838ebcc7ae6512b939d2226e802337be7b383c3e046047d24")
+            hex::decode("23cbac08371e6ee838ebcc7ae6512b939d2226e802337be7b383c3e046047d24")?
                 .as_slice()
         );
         Ok(())
@@ -555,7 +555,7 @@
 
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("fef1b4f19bb7a2cd944d7cdee44d1accb12726389ca5b0f61ac0f548ae40876f")
+            hex::decode("fef1b4f19bb7a2cd944d7cdee44d1accb12726389ca5b0f61ac0f548ae40876f")?
                 .as_slice()
         );
         Ok(())
@@ -572,7 +572,7 @@
 
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("9e0e2745c21e4e74065240936d2047340d96a466680c3c9d177b82433e7a0bb1")
+            hex::decode("9e0e2745c21e4e74065240936d2047340d96a466680c3c9d177b82433e7a0bb1")?
                 .as_slice()
         );
         Ok(())
@@ -589,7 +589,7 @@
 
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("fef1b4f19bb7a2cd944d7cdee44d1accb12726389ca5b0f61ac0f548ae40876f")
+            hex::decode("fef1b4f19bb7a2cd944d7cdee44d1accb12726389ca5b0f61ac0f548ae40876f")?
                 .as_slice()
         );
         Ok(())
@@ -621,17 +621,9 @@
 
         assert_eq!(
             file.calculate_fsverity_digest()?,
-            to_u8_vec("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af")
+            hex::decode("cd0875ca59c7d37e962c5e8f5acd3770750ac80225e2df652ce5672fd34500af")?
                 .as_slice()
         );
         Ok(())
     }
-
-    fn to_u8_vec(hex_str: &str) -> Vec<u8> {
-        assert!(hex_str.len() % 2 == 0);
-        (0..hex_str.len())
-            .step_by(2)
-            .map(|i| u8::from_str_radix(&hex_str[i..i + 2], 16).unwrap())
-            .collect()
-    }
 }
diff --git a/authfs/src/fsverity/metadata/Android.bp b/authfs/src/fsverity/metadata/Android.bp
index 3df7519..c468b7d 100644
--- a/authfs/src/fsverity/metadata/Android.bp
+++ b/authfs/src/fsverity/metadata/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_bindgen {
     name: "libauthfs_fsverity_metadata_bindgen",
     wrapper_src: "metadata.hpp",
+    defaults: ["avf_build_flags_rust"],
     crate_name: "authfs_fsverity_metadata_bindgen",
     source_stem: "metadata_bindings",
     apex_available: ["com.android.virt"],
@@ -13,6 +15,7 @@
 rust_library {
     name: "libauthfs_fsverity_metadata",
     crate_name: "authfs_fsverity_metadata",
+    defaults: ["avf_build_flags_rust"],
     srcs: [
         "metadata.rs",
     ],
diff --git a/authfs/src/fusefs.rs b/authfs/src/fusefs.rs
index 544a94e..ab75dac 100644
--- a/authfs/src/fusefs.rs
+++ b/authfs/src/fusefs.rs
@@ -386,7 +386,8 @@
 }
 
 cfg_if::cfg_if! {
-    if #[cfg(all(target_arch = "aarch64", target_pointer_width = "64"))] {
+    if #[cfg(all(any(target_arch = "aarch64", target_arch = "riscv64"),
+                 target_pointer_width = "64"))] {
         fn blk_size() -> libc::c_int { CHUNK_SIZE as libc::c_int }
     } else {
         fn blk_size() -> libc::c_long { CHUNK_SIZE as libc::c_long }
@@ -587,7 +588,7 @@
 
         match delete_now {
             Ok(true) => {
-                let _ = inode_table.remove(&inode).expect("Removed an existing entry");
+                let _ignored = inode_table.remove(&inode).expect("Removed an existing entry");
             }
             Ok(false) => { /* Let the inode stay */ }
             Err(e) => {
@@ -668,6 +669,7 @@
         mode: u32,
         _flags: u32,
         umask: u32,
+        _security_ctx: Option<&CStr>,
     ) -> io::Result<(Entry, Option<Self::Handle>, FuseOpenOptions)> {
         let new_inode = self.create_new_entry_with_ref_count(
             parent,
@@ -851,6 +853,7 @@
         name: &CStr,
         mode: u32,
         umask: u32,
+        _security_ctx: Option<&CStr>,
     ) -> io::Result<Entry> {
         let new_inode = self.create_new_entry_with_ref_count(
             parent,
@@ -992,8 +995,8 @@
     fn statfs(&self, _ctx: Context, _inode: Self::Inode) -> io::Result<libc::statvfs64> {
         let remote_stat = self.remote_fs_stats_reader.statfs()?;
 
-        // Safe because we are zero-initializing a struct with only POD fields. Not all fields
-        // matter to FUSE. See also:
+        // SAFETY: We are zero-initializing a struct with only POD fields. Not all fields matter to
+        // FUSE. See also:
         // https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/fuse/inode.c?h=v5.15#n460
         let mut st: libc::statvfs64 = unsafe { zeroed() };
 
diff --git a/authfs/src/main.rs b/authfs/src/main.rs
index 9ff0ae3..e46b197 100644
--- a/authfs/src/main.rs
+++ b/authfs/src/main.rs
@@ -169,21 +169,6 @@
     })
 }
 
-fn from_hex_string(s: &str) -> Result<Vec<u8>> {
-    if s.len() % 2 == 1 {
-        bail!("Incomplete hex string: {}", s);
-    } else {
-        let results = (0..s.len())
-            .step_by(2)
-            .map(|i| {
-                u8::from_str_radix(&s[i..i + 2], 16)
-                    .map_err(|e| anyhow!("Cannot parse hex {}: {}", &s[i..i + 2], e))
-            })
-            .collect::<Result<Vec<_>>>();
-        Ok(results?)
-    }
-}
-
 fn new_remote_verified_file_entry(
     service: file::VirtFdService,
     remote_fd: i32,
@@ -193,7 +178,7 @@
         reader: LazyVerifiedReadonlyFile::prepare_by_fd(
             service,
             remote_fd,
-            from_hex_string(expected_digest)?,
+            hex::decode(expected_digest)?,
         ),
     })
 }
@@ -308,9 +293,9 @@
 fn try_main() -> Result<()> {
     let args = Args::parse();
 
-    let log_level = if args.debug { log::Level::Debug } else { log::Level::Info };
+    let log_level = if args.debug { log::LevelFilter::Debug } else { log::LevelFilter::Info };
     android_logger::init_once(
-        android_logger::Config::default().with_tag("authfs").with_min_level(log_level),
+        android_logger::Config::default().with_tag("authfs").with_max_level(log_level),
     );
 
     let service = file::get_rpc_binder_service(args.cid)?;
@@ -332,18 +317,3 @@
         std::process::exit(1);
     }
 }
-
-#[cfg(test)]
-mod tests {
-    use super::*;
-
-    #[test]
-    fn parse_hex_string() {
-        assert_eq!(from_hex_string("deadbeef").unwrap(), vec![0xde, 0xad, 0xbe, 0xef]);
-        assert_eq!(from_hex_string("DEADBEEF").unwrap(), vec![0xde, 0xad, 0xbe, 0xef]);
-        assert_eq!(from_hex_string("").unwrap(), Vec::<u8>::new());
-
-        assert!(from_hex_string("deadbee").is_err());
-        assert!(from_hex_string("X").is_err());
-    }
-}
diff --git a/authfs/tests/benchmarks/Android.bp b/authfs/tests/benchmarks/Android.bp
index 110d000..5ef01cc 100644
--- a/authfs/tests/benchmarks/Android.bp
+++ b/authfs/tests/benchmarks/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -17,12 +18,10 @@
     test_suites: ["general-tests"],
     data_device_bins_first: [
         "open_then_run",
-        "fsverity",
     ],
     per_testcase_directory: true,
     data: [
         ":authfs_test_files",
-        ":CtsApkVerityTestPrebuiltFiles",
         ":MicrodroidTestApp",
     ],
     required: ["MicrodroidTestPreparer"],
diff --git a/authfs/tests/benchmarks/AndroidTest.xml b/authfs/tests/benchmarks/AndroidTest.xml
index 9216006..715f352 100644
--- a/authfs/tests/benchmarks/AndroidTest.xml
+++ b/authfs/tests/benchmarks/AndroidTest.xml
@@ -34,32 +34,16 @@
 
         <!-- Test executable -->
         <option name="push-file" key="open_then_run" value="/data/local/tmp/open_then_run" />
-        <option name="push-file" key="fsverity" value="/data/local/tmp/fsverity" />
 
         <!-- Test data files -->
         <option name="push-file" key="cert.der" value="/data/local/tmp/authfs/cert.der" />
         <option name="push-file" key="input.4m" value="/data/local/tmp/authfs/input.4m" />
         <option name="push-file" key="input.4m.fsv_meta"
             value="/data/local/tmp/authfs/input.4m.fsv_meta" />
-
-        <!-- Just pick a file with signature that can be trused on the device. -->
-        <option name="push-file" key="CtsApkVerityTestAppPrebuilt.apk"
-            value="/data/local/tmp/authfs/input.apk" />
-        <option name="push-file" key="CtsApkVerityTestAppPrebuilt.apk.fsv_sig"
-            value="/data/local/tmp/authfs/input.apk.fsv_sig" />
     </target_preparer>
 
     <target_preparer class="com.android.microdroid.test.preparer.DisableMicrodroidDebugPolicyPreparer" />
 
-    <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
-        <option name="throw-if-cmd-fail" value="true" />
-        <!-- Now that the files are pushed to the device, enable fs-verity for the targeting file.
-             It works because the signature is trusted on all CTS compatible devices. -->
-        <option name="run-command"
-            value="cd /data/local/tmp/authfs;
-                   ../fsverity enable input.apk --signature=input.apk.fsv_sig" />
-    </target_preparer>
-
     <test class="com.android.compatibility.common.tradefed.testtype.JarHostTest" >
         <option name="jar" value="AuthFsBenchmarks.jar" />
     </test>
diff --git a/authfs/tests/common/Android.bp b/authfs/tests/common/Android.bp
index 01ebcfd..60d2df3 100644
--- a/authfs/tests/common/Android.bp
+++ b/authfs/tests/common/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -18,6 +19,7 @@
 rust_test {
     name: "open_then_run",
     crate_name: "open_then_run",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/open_then_run.rs"],
     edition: "2021",
     rustlibs: [
@@ -35,6 +37,7 @@
 rust_test {
     name: "open_then_run.test",
     crate_name: "open_then_run",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/open_then_run.rs"],
     edition: "2021",
     rustlibs: [
diff --git a/authfs/tests/common/src/java/com/android/fs/common/AuthFsTestRule.java b/authfs/tests/common/src/java/com/android/fs/common/AuthFsTestRule.java
index 7c85797..9c0fd72 100644
--- a/authfs/tests/common/src/java/com/android/fs/common/AuthFsTestRule.java
+++ b/authfs/tests/common/src/java/com/android/fs/common/AuthFsTestRule.java
@@ -52,7 +52,7 @@
     public static final String FUSE_SUPER_MAGIC_HEX = "65735546";
 
     /** VM config entry path in the test APK */
-    private static final String VM_CONFIG_PATH_IN_APK = "assets/vm_config.json";
+    private static final String VM_CONFIG_PATH_IN_APK = "assets/microdroid/vm_config.json";
 
     /** Test directory on Android where data are located */
     public static final String TEST_DIR = "/data/local/tmp/authfs";
diff --git a/authfs/tests/common/src/open_then_run.rs b/authfs/tests/common/src/open_then_run.rs
index 6d828e4..a976784 100644
--- a/authfs/tests/common/src/open_then_run.rs
+++ b/authfs/tests/common/src/open_then_run.rs
@@ -161,7 +161,7 @@
     android_logger::init_once(
         android_logger::Config::default()
             .with_tag("open_then_run")
-            .with_min_level(log::Level::Debug),
+            .with_max_level(log::LevelFilter::Debug),
     );
 
     if let Err(e) = try_main() {
diff --git a/authfs/tests/hosttests/Android.bp b/authfs/tests/hosttests/Android.bp
index 4b8151d..1e95e10 100644
--- a/authfs/tests/hosttests/Android.bp
+++ b/authfs/tests/hosttests/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -20,7 +21,6 @@
     per_testcase_directory: true,
     data: [
         ":authfs_test_files",
-        ":CtsApkVerityTestPrebuiltFiles",
         ":MicrodroidTestApp",
     ],
 }
diff --git a/authfs/tests/hosttests/AndroidTest.xml b/authfs/tests/hosttests/AndroidTest.xml
index 2ccc45f..5920630 100644
--- a/authfs/tests/hosttests/AndroidTest.xml
+++ b/authfs/tests/hosttests/AndroidTest.xml
@@ -50,18 +50,13 @@
         <option name="push-file" key="input.4m.fsv_meta.bad_merkle"
             value="/data/local/tmp/authfs/input.4m.fsv_meta.bad_merkle" />
 
-        <!-- Just pick a file with signature that can be trused on the device. -->
-        <option name="push-file" key="CtsApkVerityTestAppPrebuilt.apk"
-            value="/data/local/tmp/authfs/input.apk" />
-        <option name="push-file" key="CtsApkVerityTestAppPrebuilt.apk.fsv_sig"
-            value="/data/local/tmp/authfs/input.apk.fsv_sig" />
+        <option name="push-file" key="input.4m" value="/data/local/tmp/authfs/input.file" />
     </target_preparer>
 
     <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
         <option name="throw-if-cmd-fail" value="true" />
-        <!-- Now that the files are pushed to the device, enable fs-verity for the targeting file.
-             It works because the signature is trusted on all CTS compatible devices. -->
-        <option name="run-command" value="cd /data/local/tmp/authfs; ../fsverity enable input.apk --signature=input.apk.fsv_sig" />
+        <!-- Now that the files are pushed to the device, enable fs-verity for the targeting file. -->
+        <option name="run-command" value="cd /data/local/tmp/authfs; ../fsverity enable input.file" />
     </target_preparer>
 
     <test class="com.android.compatibility.common.tradefed.testtype.JarHostTest" >
diff --git a/authfs/tests/hosttests/java/src/com/android/fs/AuthFsHostTest.java b/authfs/tests/hosttests/java/src/com/android/fs/AuthFsHostTest.java
index 440f5ca..d0a7c66 100644
--- a/authfs/tests/hosttests/java/src/com/android/fs/AuthFsHostTest.java
+++ b/authfs/tests/hosttests/java/src/com/android/fs/AuthFsHostTest.java
@@ -145,17 +145,17 @@
 
     @Test
     public void testReadWithFsverityVerification_FdServerUsesRealFsverityData() throws Exception {
-        // Setup (fs-verity is enabled for input.apk in AndroidTest.xml)
-        runFdServerOnAndroid("--open-ro 3:input.apk", "--ro-fds 3");
-        String expectedDigest = sAndroid.run(
-                FSVERITY_BIN + " digest --compact " + TEST_DIR + "/input.apk");
+        // Setup (fs-verity is enabled for input.file in AndroidTest.xml)
+        runFdServerOnAndroid("--open-ro 3:input.file", "--ro-fds 3");
+        String expectedDigest =
+                sAndroid.run(FSVERITY_BIN + " digest --compact " + TEST_DIR + "/input.file");
         runAuthFsOnMicrodroid("--remote-ro-file 3:sha256-" + expectedDigest);
 
         // Action
         String actualHash = computeFileHash(sMicrodroid, MOUNT_DIR + "/3");
 
         // Verify
-        String expectedHash = computeFileHash(sAndroid, TEST_DIR + "/input.apk");
+        String expectedHash = computeFileHash(sAndroid, TEST_DIR + "/input.file");
         assertEquals("Inconsistent hash from /authfs/3: ", expectedHash, actualHash);
     }
 
diff --git a/compos/Android.bp b/compos/Android.bp
index c120b0f..bf57e27 100644
--- a/compos/Android.bp
+++ b/compos/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "compsvc_defaults",
     edition: "2021",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/compsvc_main.rs"],
     rustlibs: [
         "authfs_aidl_interface-rust",
@@ -13,12 +15,13 @@
         "libanyhow",
         "libbinder_rs",
         "libcompos_common",
+        "libhex",
         "liblibc",
         "liblog_rust",
         "libminijail_rust",
         "libnix",
         "libodsign_proto_rust",
-        "libprotobuf_deprecated",
+        "libprotobuf",
         "libregex",
         "librpcbinder_rs",
         "librustutils",
diff --git a/compos/aidl/Android.bp b/compos/aidl/Android.bp
index 7036511..1660837 100644
--- a/compos/aidl/Android.bp
+++ b/compos/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/apex/Android.bp b/compos/apex/Android.bp
index 55cc446..8b1ba27 100644
--- a/compos/apex/Android.bp
+++ b/compos/apex/Android.bp
@@ -12,6 +12,7 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/apex/composd.rc b/compos/apex/composd.rc
index df04642..aa4b575 100644
--- a/compos/apex/composd.rc
+++ b/compos/apex/composd.rc
@@ -25,4 +25,4 @@
     # inheriting all the capabilities from init is not a security issue.
     # However, for defense-in-depth and just for the sake of bookkeeping it's
     # better to explicitly state that composd doesn't need any capabilities.
-    capabilities
+    capabilities SYS_NICE
diff --git a/compos/apk/Android.bp b/compos/apk/Android.bp
index c6192b9..a06a5a4 100644
--- a/compos/apk/Android.bp
+++ b/compos/apk/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/benchmark/Android.bp b/compos/benchmark/Android.bp
index dc0c01c..96d35b4 100644
--- a/compos/benchmark/Android.bp
+++ b/compos/benchmark/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -13,7 +14,7 @@
         "androidx.test.ext.junit",
         "MicrodroidDeviceTestHelper",
         "MicrodroidTestHelper",
-        "truth-prebuilt",
+        "truth",
     ],
     sdk_version: "test_current",
     use_embedded_native_libs: true,
diff --git a/compos/common/Android.bp b/compos/common/Android.bp
index 05bc093..32bdf8a 100644
--- a/compos/common/Android.bp
+++ b/compos/common/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_library {
     name: "libcompos_common",
     crate_name: "compos_common",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["lib.rs"],
     edition: "2021",
     rustlibs: [
diff --git a/compos/common/binder.rs b/compos/common/binder.rs
index d3550f7..aea0072 100644
--- a/compos/common/binder.rs
+++ b/compos/common/binder.rs
@@ -16,7 +16,7 @@
 
 //! Helper for converting Error types to what Binder expects
 
-use binder::{Result as BinderResult, Status};
+use binder::{IntoBinderResult, Result as BinderResult};
 use log::warn;
 use std::fmt::Debug;
 
@@ -24,9 +24,9 @@
 /// preserving the content as far as possible.
 /// Also log the error if there is one.
 pub fn to_binder_result<T, E: Debug>(result: Result<T, E>) -> BinderResult<T> {
-    result.map_err(|e| {
+    result.or_service_specific_exception_with(-1, |e| {
         let message = format!("{:?}", e);
-        warn!("Returning binder error: {}", &message);
-        Status::new_service_specific_error_str(-1, Some(message))
+        warn!("Returning binder error: {message}");
+        message
     })
 }
diff --git a/compos/common/compos_client.rs b/compos/common/compos_client.rs
index bc6ab25..a8a176a 100644
--- a/compos/common/compos_client.rs
+++ b/compos/common/compos_client.rs
@@ -24,7 +24,10 @@
 use android_system_virtualizationservice::aidl::android::system::virtualizationservice::{
     CpuTopology::CpuTopology,
     IVirtualizationService::IVirtualizationService,
-    VirtualMachineAppConfig::{DebugLevel::DebugLevel, Payload::Payload, VirtualMachineAppConfig},
+    VirtualMachineAppConfig::{
+        CustomConfig::CustomConfig, DebugLevel::DebugLevel, Payload::Payload,
+        VirtualMachineAppConfig,
+    },
     VirtualMachineConfig::VirtualMachineConfig,
 };
 use anyhow::{anyhow, bail, Context, Result};
@@ -128,15 +131,24 @@
             protectedVm: protected_vm,
             memoryMib: parameters.memory_mib.unwrap_or(0), // 0 means use the default
             cpuTopology: cpu_topology,
-            taskProfiles: parameters.task_profiles.clone(),
-            gdbPort: 0, // Don't start gdb-server
+            customConfig: Some(CustomConfig {
+                taskProfiles: parameters.task_profiles.clone(),
+                ..Default::default()
+            }),
         });
 
         // Let logs go to logcat.
         let (console_fd, log_fd) = (None, None);
         let callback = Box::new(Callback {});
-        let instance = VmInstance::create(service, &config, console_fd, log_fd, Some(callback))
-            .context("Failed to create VM")?;
+        let instance = VmInstance::create(
+            service,
+            &config,
+            console_fd,
+            /*console_in_fd */ None,
+            log_fd,
+            Some(callback),
+        )
+        .context("Failed to create VM")?;
 
         instance.start()?;
 
@@ -164,7 +176,7 @@
     /// relevant logs to be written.
     pub fn shutdown(self, service: Strong<dyn ICompOsService>) {
         info!("Requesting CompOS VM to shutdown");
-        let _ = service.quit(); // If this fails, the VM is probably dying anyway
+        let _ignored = service.quit(); // If this fails, the VM is probably dying anyway
         self.wait_for_shutdown();
     }
 
diff --git a/compos/compos_key_helper/Android.bp b/compos/compos_key_helper/Android.bp
index f8dc783..6b4b61e 100644
--- a/compos/compos_key_helper/Android.bp
+++ b/compos/compos_key_helper/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/composd/Android.bp b/compos/composd/Android.bp
index f66de32..96d4da7 100644
--- a/compos/composd/Android.bp
+++ b/compos/composd/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -22,7 +23,7 @@
         "liblibc",
         "liblog_rust",
         "libodsign_proto_rust",
-        "libprotobuf_deprecated",
+        "libprotobuf",
         "librustutils",
         "libshared_child",
         "libvmclient",
diff --git a/compos/composd/aidl/Android.bp b/compos/composd/aidl/Android.bp
index 56b0b60..20e3679 100644
--- a/compos/composd/aidl/Android.bp
+++ b/compos/composd/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/composd/native/Android.bp b/compos/composd/native/Android.bp
index ccd8651..a0923ef 100644
--- a/compos/composd/native/Android.bp
+++ b/compos/composd/native/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_library {
     name: "libcomposd_native_rust",
     crate_name: "composd_native",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["lib.rs"],
     rustlibs: [
         "libanyhow",
diff --git a/compos/composd/src/composd_main.rs b/compos/composd/src/composd_main.rs
index b558f06..e5d6c75 100644
--- a/compos/composd/src/composd_main.rs
+++ b/compos/composd/src/composd_main.rs
@@ -31,11 +31,12 @@
 use std::panic;
 use std::sync::Arc;
 
+#[allow(clippy::eq_op)]
 fn try_main() -> Result<()> {
     let debuggable = env!("TARGET_BUILD_VARIANT") != "user";
-    let log_level = if debuggable { log::Level::Debug } else { log::Level::Info };
+    let log_level = if debuggable { log::LevelFilter::Debug } else { log::LevelFilter::Info };
     android_logger::init_once(
-        android_logger::Config::default().with_tag("composd").with_min_level(log_level),
+        android_logger::Config::default().with_tag("composd").with_max_level(log_level),
     );
 
     // Redirect panic messages to logcat.
diff --git a/compos/composd/src/fd_server_helper.rs b/compos/composd/src/fd_server_helper.rs
index 777ec27..24371b5 100644
--- a/compos/composd/src/fd_server_helper.rs
+++ b/compos/composd/src/fd_server_helper.rs
@@ -107,8 +107,9 @@
 
 fn create_pipe() -> Result<(File, File)> {
     let (raw_read, raw_write) = pipe2(OFlag::O_CLOEXEC)?;
-    // SAFETY: We are the sole owners of these fds as they were just created.
+    // SAFETY: We are the sole owner of raw_read and it is valid as it was just created.
     let read_fd = unsafe { File::from_raw_fd(raw_read) };
+    // SAFETY: We are the sole owner of raw_write and it is valid as it was just created.
     let write_fd = unsafe { File::from_raw_fd(raw_write) };
     Ok((read_fd, write_fd))
 }
diff --git a/compos/composd/src/instance_manager.rs b/compos/composd/src/instance_manager.rs
index d7c0f9a..510ad11 100644
--- a/compos/composd/src/instance_manager.rs
+++ b/compos/composd/src/instance_manager.rs
@@ -90,7 +90,7 @@
 fn compos_memory_mib() -> Result<i32> {
     // Enough memory to complete odrefresh in the VM, for older versions of ART that don't set the
     // property explicitly.
-    const DEFAULT_MEMORY_MIB: u32 = 400;
+    const DEFAULT_MEMORY_MIB: u32 = 600;
 
     let art_requested_mib =
         read_property("composd.vm.art.memory_mib.config")?.unwrap_or(DEFAULT_MEMORY_MIB);
diff --git a/compos/composd/src/instance_starter.rs b/compos/composd/src/instance_starter.rs
index fc4c58b..457520f 100644
--- a/compos/composd/src/instance_starter.rs
+++ b/compos/composd/src/instance_starter.rs
@@ -98,17 +98,16 @@
     ) -> Result<CompOsInstance> {
         info!("Creating {} CompOs instance", self.instance_name);
 
-        // Ignore failure here - the directory may already exist.
-        let _ = fs::create_dir(&self.instance_root);
+        fs::create_dir_all(&self.instance_root)?;
 
         // Overwrite any existing instance - it's unlikely to be valid with the current set
         // of APEXes, and finding out it isn't is much more expensive than creating a new one.
         self.create_instance_image(virtualization_service)?;
 
         // Delete existing idsig files. Ignore error in case idsig doesn't exist.
-        let _ = fs::remove_file(&self.idsig);
-        let _ = fs::remove_file(&self.idsig_manifest_apk);
-        let _ = fs::remove_file(&self.idsig_manifest_ext_apk);
+        let _ignored1 = fs::remove_file(&self.idsig);
+        let _ignored2 = fs::remove_file(&self.idsig_manifest_apk);
+        let _ignored3 = fs::remove_file(&self.idsig_manifest_ext_apk);
 
         let instance = self.start_vm(virtualization_service)?;
 
diff --git a/compos/composd/src/odrefresh_task.rs b/compos/composd/src/odrefresh_task.rs
index a98f50d..b3fe846 100644
--- a/compos/composd/src/odrefresh_task.rs
+++ b/compos/composd/src/odrefresh_task.rs
@@ -228,7 +228,7 @@
     let odrefresh_current_dir = Path::new(ODREFRESH_OUTPUT_ROOT_DIR).join(CURRENT_ARTIFACTS_SUBDIR);
     let pending_dir = Path::new(ODREFRESH_OUTPUT_ROOT_DIR).join(PENDING_ARTIFACTS_SUBDIR);
     let mut reader =
-        File::open(&pending_dir.join("compos.info")).context("Failed to open compos.info")?;
+        File::open(pending_dir.join("compos.info")).context("Failed to open compos.info")?;
     let compos_info = OdsignInfo::parse_from_reader(&mut reader).context("Failed to parse")?;
 
     for path_str in compos_info.file_hashes.keys() {
diff --git a/compos/composd_cmd/Android.bp b/compos/composd_cmd/Android.bp
index 77caad8..8b7a909 100644
--- a/compos/composd_cmd/Android.bp
+++ b/compos/composd_cmd/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "composd_cmd_defaults",
     srcs: ["composd_cmd.rs"],
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     rustlibs: [
         "android.system.composd-rust",
diff --git a/compos/service/Android.bp b/compos/service/Android.bp
index 3dcf8be..478ea3b 100644
--- a/compos/service/Android.bp
+++ b/compos/service/Android.bp
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/src/artifact_signer.rs b/compos/src/artifact_signer.rs
index d3843fc..bfd886e 100644
--- a/compos/src/artifact_signer.rs
+++ b/compos/src/artifact_signer.rs
@@ -53,7 +53,7 @@
 
         let file = File::open(path).with_context(|| format!("Opening {}", path.display()))?;
         let digest = fsverity::measure(file.as_fd())?;
-        let digest = to_hex_string(&digest);
+        let digest = hex::encode(digest);
 
         self.file_digests.push((target_path.to_owned(), digest));
         Ok(())
@@ -63,7 +63,7 @@
     /// with accompanying sigature file.
     pub fn write_info_and_signature(self, info_path: &Path) -> Result<()> {
         let mut info = OdsignInfo::new();
-        info.mut_file_hashes().extend(self.file_digests.into_iter());
+        info.file_hashes.extend(self.file_digests);
         let bytes = info.write_to_bytes()?;
 
         let signature = compos_key::sign(&bytes)?;
@@ -82,7 +82,3 @@
         Ok(())
     }
 }
-
-fn to_hex_string(buf: &[u8]) -> String {
-    buf.iter().map(|b| format!("{:02x}", b)).collect()
-}
diff --git a/compos/src/compsvc.rs b/compos/src/compsvc.rs
index 8febd52..fe83ba2 100644
--- a/compos/src/compsvc.rs
+++ b/compos/src/compsvc.rs
@@ -33,7 +33,9 @@
 use authfs_aidl_interface::aidl::com::android::virt::fs::IAuthFsService::{
     IAuthFsService, AUTHFS_SERVICE_SOCKET_NAME,
 };
-use binder::{BinderFeatures, ExceptionCode, Interface, Result as BinderResult, Status, Strong};
+use binder::{
+    BinderFeatures, ExceptionCode, Interface, IntoBinderResult, Result as BinderResult, Strong,
+};
 use compos_aidl_interface::aidl::com::android::compos::ICompOsService::{
     BnCompOsService, ICompOsService, OdrefreshArgs::OdrefreshArgs,
 };
@@ -66,29 +68,23 @@
     fn initializeSystemProperties(&self, names: &[String], values: &[String]) -> BinderResult<()> {
         let mut initialized = self.initialized.write().unwrap();
         if initialized.is_some() {
-            return Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_STATE,
-                Some(format!("Already initialized: {:?}", initialized)),
-            ));
+            return Err(format!("Already initialized: {initialized:?}"))
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE);
         }
         *initialized = Some(false);
 
         if names.len() != values.len() {
-            return Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_ARGUMENT,
-                Some(format!(
-                    "Received inconsistent number of keys ({}) and values ({})",
-                    names.len(),
-                    values.len()
-                )),
-            ));
+            return Err(format!(
+                "Received inconsistent number of keys ({}) and values ({})",
+                names.len(),
+                values.len()
+            ))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
         }
         for (name, value) in zip(names, values) {
             if !is_system_property_interesting(name) {
-                return Err(Status::new_exception_str(
-                    ExceptionCode::ILLEGAL_ARGUMENT,
-                    Some(format!("Received invalid system property {}", &name)),
-                ));
+                return Err(format!("Received invalid system property {name}"))
+                    .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
             }
             let result = system_properties::write(name, value);
             if result.is_err() {
@@ -103,10 +99,8 @@
     fn odrefresh(&self, args: &OdrefreshArgs) -> BinderResult<i8> {
         let initialized = *self.initialized.read().unwrap();
         if !initialized.unwrap_or(false) {
-            return Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_STATE,
-                Some("Service has not been initialized"),
-            ));
+            return Err("Service has not been initialized")
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE);
         }
 
         to_binder_result(self.do_odrefresh(args))
diff --git a/compos/src/compsvc_main.rs b/compos/src/compsvc_main.rs
index 77e2daa..06cc599 100644
--- a/compos/src/compsvc_main.rs
+++ b/compos/src/compsvc_main.rs
@@ -40,7 +40,9 @@
 
 fn try_main() -> Result<()> {
     android_logger::init_once(
-        android_logger::Config::default().with_tag("compsvc").with_min_level(log::Level::Debug),
+        android_logger::Config::default()
+            .with_tag("compsvc")
+            .with_max_level(log::LevelFilter::Debug),
     );
     // Redirect panic messages to logcat.
     panic::set_hook(Box::new(|panic_info| {
@@ -50,14 +52,11 @@
     debug!("compsvc is starting as a rpc service.");
     let param = ptr::null_mut();
     let mut service = compsvc::new_binder()?.as_binder();
-    unsafe {
-        // SAFETY: We hold a strong pointer, so the raw pointer remains valid. The bindgen AIBinder
-        // is the same type as sys::AIBinder.
-        let service = service.as_native_mut() as *mut AIBinder;
-        // SAFETY: It is safe for on_ready to be invoked at any time, with any parameter.
-        AVmPayload_runVsockRpcServer(service, COMPOS_VSOCK_PORT, Some(on_ready), param);
-    }
-    Ok(())
+    let service = service.as_native_mut() as *mut AIBinder;
+    // SAFETY: We hold a strong pointer, so the raw pointer remains valid. The bindgen AIBinder
+    // is the same type as sys::AIBinder. It is safe for on_ready to be invoked at any time, with
+    // any parameter.
+    unsafe { AVmPayload_runVsockRpcServer(service, COMPOS_VSOCK_PORT, Some(on_ready), param) }
 }
 
 extern "C" fn on_ready(_param: *mut c_void) {
diff --git a/compos/tests/Android.bp b/compos/tests/Android.bp
index 511ecd0..1213a16 100644
--- a/compos/tests/Android.bp
+++ b/compos/tests/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/compos/tests/AndroidTest.xml b/compos/tests/AndroidTest.xml
index 4b414f1..e35b874 100644
--- a/compos/tests/AndroidTest.xml
+++ b/compos/tests/AndroidTest.xml
@@ -15,6 +15,7 @@
 -->
 <configuration description="Tests for CompOS">
     <option name="config-descriptor:metadata" key="mainline-param" value="com.google.android.art.apex" />
+    <option name="config-descriptor:metadata" key="mainline-param" value="com.android.art.apex" />
 
     <!-- Only run tests if the device under test is SDK version 33 (Android 13) or above. -->
     <object type="module_controller"
diff --git a/compos/tests/java/android/compos/test/ComposTestCase.java b/compos/tests/java/android/compos/test/ComposTestCase.java
index 8c7aeeb..bd011fa 100644
--- a/compos/tests/java/android/compos/test/ComposTestCase.java
+++ b/compos/tests/java/android/compos/test/ComposTestCase.java
@@ -83,7 +83,7 @@
     @Before
     public void setUp() throws Exception {
         assumeDeviceIsCapable(getDevice());
-        // We get a very high level of (apparently bogus) OOM errors on Cuttlefish (b/264496291).
+        // Test takes too long to run on Cuttlefish (b/292824951).
         assumeFalse("Skipping test on Cuttlefish", isCuttlefish());
 
         String value = getDevice().getProperty(SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME);
@@ -116,13 +116,13 @@
 
     @Test
     public void testOdrefreshSpeed() throws Exception {
-        getDevice().setProperty(SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME, "speed");
+        setPropertyOrThrow(getDevice(), SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME, "speed");
         testOdrefresh();
     }
 
     @Test
     public void testOdrefreshSpeedProfile() throws Exception {
-        getDevice().setProperty(SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME, "speed-profile");
+        setPropertyOrThrow(getDevice(), SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME, "speed-profile");
         testOdrefresh();
     }
 
@@ -192,7 +192,7 @@
                         .runTimedCmd(
                                 10000,
                                 validator.getAbsolutePath(),
-                                "verify-dice-chain",
+                                "dice-chain",
                                 bcc_file.getAbsolutePath());
         assertWithMessage("hwtrust failed").about(command_results()).that(result).isSuccess();
     }
@@ -221,8 +221,11 @@
         // compos.info.signature since it's only generated by CompOS.
         // TODO(b/211458160): Remove cache-info.xml once we can plumb timestamp and isFactory of
         // APEXes to the VM.
-        return runner.run("cd " + path + "; find -type f -exec sha256sum {} \\;"
-                + "| grep -v cache-info.xml | grep -v compos.info"
-                + "| sort -k2");
+        return runner.run(
+                "cd "
+                        + path
+                        + " && find -type f -exec sha256sum {} \\;"
+                        + "| grep -v cache-info.xml | grep -v compos.info"
+                        + "| sort -k2");
     }
 }
diff --git a/compos/verify/Android.bp b/compos/verify/Android.bp
index 9e30b0d..6fba1fd 100644
--- a/compos/verify/Android.bp
+++ b/compos/verify/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_binary {
     name: "compos_verify",
     srcs: ["verify.rs"],
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     rustlibs: [
         "compos_aidl_interface-rust",
@@ -26,6 +28,7 @@
 rust_test {
     name: "compos_verify.test",
     srcs: ["verify.rs"],
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     rustlibs: [
         "compos_aidl_interface-rust",
diff --git a/compos/verify/native/Android.bp b/compos/verify/native/Android.bp
index 969c9f4..70cb2ab 100644
--- a/compos/verify/native/Android.bp
+++ b/compos/verify/native/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_library {
     name: "libcompos_verify_native_rust",
     crate_name: "compos_verify_native",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["lib.rs"],
     rustlibs: [
         "libanyhow",
diff --git a/compos/verify/verify.rs b/compos/verify/verify.rs
index 952e9c7..567083d 100644
--- a/compos/verify/verify.rs
+++ b/compos/verify/verify.rs
@@ -60,8 +60,8 @@
     android_logger::init_once(
         android_logger::Config::default()
             .with_tag("compos_verify")
-            .with_min_level(log::Level::Info)
-            .with_log_id(LogId::System), // Needed to log successfully early in boot
+            .with_max_level(log::LevelFilter::Info)
+            .with_log_buffer(LogId::System), // Needed to log successfully early in boot
     );
 
     // Redirect panic messages to logcat.
diff --git a/demo/Android.bp b/demo/Android.bp
index a291ee1..90e302a 100644
--- a/demo/Android.bp
+++ b/demo/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/demo/java/com/android/microdroid/demo/MainActivity.java b/demo/java/com/android/microdroid/demo/MainActivity.java
index aab4148..f27b23b 100644
--- a/demo/java/com/android/microdroid/demo/MainActivity.java
+++ b/demo/java/com/android/microdroid/demo/MainActivity.java
@@ -184,7 +184,7 @@
                         private void testVmService(VirtualMachine vm) {
                             IBinder binder;
                             try {
-                                binder = vm.connectToVsockServer(ITestService.SERVICE_PORT);
+                                binder = vm.connectToVsockServer(ITestService.PORT);
                             } catch (Exception e) {
                                 if (!Thread.interrupted()) {
                                     mPayloadOutput.postValue(
diff --git a/demo_native/Android.bp b/demo_native/Android.bp
new file mode 100644
index 0000000..7b6967e
--- /dev/null
+++ b/demo_native/Android.bp
@@ -0,0 +1,19 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+cc_binary {
+    name: "vm_demo_native",
+    srcs: ["main.cpp"],
+    static_libs: [
+        "libbase",
+        "android.system.virtualizationservice-ndk",
+        "com.android.microdroid.testservice-ndk",
+    ],
+    shared_libs: [
+        "libbinder_ndk",
+        "libbinder_rpc_unstable",
+        "liblog",
+    ],
+}
diff --git a/demo_native/README.md b/demo_native/README.md
new file mode 100644
index 0000000..700ca83
--- /dev/null
+++ b/demo_native/README.md
@@ -0,0 +1,61 @@
+# Microdroid Demo app in C++
+
+This app is a demonstration of how to create a VM and run payload in it, in C++.
+
+## Restriction
+
+This is for VMs that are part of the platform itself. Specifically, this C++ example is for cases
+like creating and using a VM from a HAL process.
+
+For non-system-level VMs, you must use the Java APIs from an Android app. See the [Java demo
+app](../demo/README.md).
+
+## Building
+
+```sh
+source build/envsetup.sh
+choosecombo 1 aosp_arm64 userdebug
+m MicrodroidTestApp
+m vm_demo_native
+```
+
+`MicrodroidTestApp` is the application what will be running in the VM. Actually, we will run a
+native shared library `MicrodroidTestNativeLib.so` from the APK.
+
+`vm_demo_native` runs on the host (i.e. Android). Its job is to start the VM and connect to the
+native shared lib and do some work using the lib. Specifically, we will call an AIDL method
+`addInteger` which adds two integers and returns the sum. The computation will be done in the VM.
+
+## Installing
+
+```sh
+adb push out/target/product/generic_arm64/testcases/MicrodroidTestApp/arm64/MicrodroidTestApp.apk \
+  /data/local/tmp/
+adb push out/target/product/generic_arm64/system/bin/vm_demo_native /data/local/tmp/
+```
+
+## Running
+
+```sh
+adb root
+adb shell setenforce 0
+adb shell /data/local/tmp/vm_demo_native
+```
+
+Rooting and selinux disabling are required just because there's no sepolicy configured for this demo
+application. For production, you need to set the sepolicy up correctly. You may use
+`system/sepolicy/private/composd.te` (specifically, the macro `virtualizationservice_use`) as a
+reference.
+
+## Expected output
+
+```sh
+[2023-05-10T23:45:54.904181191+09:00 INFO  crosvm] crosvm started.
+[2023-05-10T23:45:54.906048663+09:00 INFO  crosvm] CLI arguments parsed.
+...
+The answer from VM is 30
+[    1.996707][   T57] microdroid_manager[57]: task successfully finished
+...
+[2023-05-10T23:45:58.263614461+09:00 INFO  crosvm] exiting with success
+Done
+```
diff --git a/demo_native/main.cpp b/demo_native/main.cpp
new file mode 100644
index 0000000..bc42036
--- /dev/null
+++ b/demo_native/main.cpp
@@ -0,0 +1,402 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include <aidl/android/system/virtualizationcommon/DeathReason.h>
+#include <aidl/android/system/virtualizationcommon/ErrorCode.h>
+#include <aidl/android/system/virtualizationservice/BnVirtualMachineCallback.h>
+#include <aidl/android/system/virtualizationservice/IVirtualMachine.h>
+#include <aidl/android/system/virtualizationservice/IVirtualMachineCallback.h>
+#include <aidl/android/system/virtualizationservice/IVirtualizationService.h>
+#include <aidl/android/system/virtualizationservice/VirtualMachineConfig.h>
+#include <aidl/android/system/virtualizationservice/VirtualMachineState.h>
+#include <aidl/com/android/microdroid/testservice/ITestService.h>
+#include <android-base/errors.h>
+#include <android-base/file.h>
+#include <android-base/result.h>
+#include <android-base/unique_fd.h>
+#include <stdio.h>
+#include <unistd.h>
+
+#include <binder_rpc_unstable.hpp>
+#include <chrono>
+#include <condition_variable>
+#include <cstddef>
+#include <memory>
+#include <mutex>
+#include <thread>
+
+using namespace std::chrono_literals;
+
+using android::base::ErrnoError;
+using android::base::Error;
+using android::base::Pipe;
+using android::base::Result;
+using android::base::Socketpair;
+using android::base::unique_fd;
+
+using ndk::ScopedAStatus;
+using ndk::ScopedFileDescriptor;
+using ndk::SharedRefBase;
+using ndk::SpAIBinder;
+
+using aidl::android::system::virtualizationcommon::DeathReason;
+using aidl::android::system::virtualizationcommon::ErrorCode;
+using aidl::android::system::virtualizationservice::BnVirtualMachineCallback;
+using aidl::android::system::virtualizationservice::IVirtualizationService;
+using aidl::android::system::virtualizationservice::IVirtualMachine;
+using aidl::android::system::virtualizationservice::PartitionType;
+using aidl::android::system::virtualizationservice::toString;
+using aidl::android::system::virtualizationservice::VirtualMachineAppConfig;
+using aidl::android::system::virtualizationservice::VirtualMachineConfig;
+using aidl::android::system::virtualizationservice::VirtualMachinePayloadConfig;
+using aidl::android::system::virtualizationservice::VirtualMachineState;
+
+using aidl::com::android::microdroid::testservice::ITestService;
+
+// This program demonstrates a way to run a VM and do something in the VM using AVF in the C++
+// language. Instructions for building and running this demo can be found in `README.md` in this
+// directory.
+
+//--------------------------------------------------------------------------------------------------
+// Step 1: connect to IVirtualizationService
+//--------------------------------------------------------------------------------------------------
+static constexpr const char VIRTMGR_PATH[] = "/apex/com.android.virt/bin/virtmgr";
+static constexpr size_t VIRTMGR_THREADS = 2;
+
+// Start IVirtualizationService instance and get FD for the unix domain socket that is connected to
+// the service. The returned FD should be kept open until the service is no longer needed.
+Result<unique_fd> get_service_fd() {
+    unique_fd server_fd, client_fd;
+    if (!Socketpair(SOCK_STREAM, &server_fd, &client_fd)) {
+        return ErrnoError() << "Failed to create socketpair";
+    }
+
+    unique_fd wait_fd, ready_fd;
+    if (!Pipe(&wait_fd, &ready_fd, 0)) {
+        return ErrnoError() << "Failed to create pipe";
+    }
+
+    if (fork() == 0) {
+        client_fd.reset();
+        wait_fd.reset();
+
+        auto server_fd_str = std::to_string(server_fd.get());
+        auto ready_fd_str = std::to_string(ready_fd.get());
+
+        if (execl(VIRTMGR_PATH, VIRTMGR_PATH, "--rpc-server-fd", server_fd_str.c_str(),
+                  "--ready-fd", ready_fd_str.c_str(), nullptr) == -1) {
+            return ErrnoError() << "Failed to execute virtmgr";
+        }
+    }
+
+    server_fd.reset();
+    ready_fd.reset();
+
+    char buf;
+    if (read(wait_fd.get(), &buf, sizeof(buf)) < 0) {
+        return ErrnoError() << "Failed to wait for VirtualizationService to be ready";
+    }
+
+    return client_fd;
+}
+
+// Establish a binder communication channel over the unix domain socket and returns the remote
+// IVirtualizationService.
+Result<std::shared_ptr<IVirtualizationService>> connect_service(int fd) {
+    std::unique_ptr<ARpcSession, decltype(&ARpcSession_free)> session(ARpcSession_new(),
+                                                                      &ARpcSession_free);
+    ARpcSession_setFileDescriptorTransportMode(session.get(),
+                                               ARpcSession_FileDescriptorTransportMode::Unix);
+    ARpcSession_setMaxIncomingThreads(session.get(), VIRTMGR_THREADS);
+    ARpcSession_setMaxOutgoingConnections(session.get(), VIRTMGR_THREADS);
+    AIBinder* binder = ARpcSession_setupUnixDomainBootstrapClient(session.get(), fd);
+    if (binder == nullptr) {
+        return Error() << "Failed to connect to VirtualizationService";
+    }
+    return IVirtualizationService::fromBinder(SpAIBinder{binder});
+}
+
+//--------------------------------------------------------------------------------------------------
+// Step 2: construct VirtualMachineAppConfig
+//--------------------------------------------------------------------------------------------------
+
+// Utility function for opening a file at a given path and wrap the resulting FD in
+// ScopedFileDescriptor so that it can be passed to the service.
+Result<ScopedFileDescriptor> open_file(const std::string& path, int flags) {
+    int fd = open(path.c_str(), flags, S_IWUSR);
+    if (fd == -1) {
+        return ErrnoError() << "Failed to open " << path;
+    }
+    return ScopedFileDescriptor(fd);
+}
+
+// Create or update idsig file for the given APK file. The idsig is essentially a hashtree of the
+// APK file's content
+Result<ScopedFileDescriptor> create_or_update_idsig_file(IVirtualizationService& service,
+                                                         const std::string& work_dir,
+                                                         ScopedFileDescriptor& main_apk) {
+    std::string path = work_dir + "/apk.idsig";
+    ScopedFileDescriptor idsig = OR_RETURN(open_file(path, O_CREAT | O_RDWR));
+    ScopedAStatus ret = service.createOrUpdateIdsigFile(main_apk, idsig);
+    if (!ret.isOk()) {
+        return Error() << "Failed to create or update idsig file: " << path;
+    }
+    return idsig;
+}
+
+// Get or create the instance disk image file, if it doesn't exist. The VM will fill this disk with
+// its own identity information in an encrypted form.
+Result<ScopedFileDescriptor> create_instance_image_file_if_needed(IVirtualizationService& service,
+                                                                  const std::string& work_dir) {
+    std::string path = work_dir + "/instance.img";
+
+    // If instance.img already exists, use it.
+    if (access(path.c_str(), F_OK) == 0) {
+        return open_file(path, O_RDWR);
+    }
+
+    // If not, create a new one.
+    ScopedFileDescriptor instance = OR_RETURN(open_file(path, O_CREAT | O_RDWR));
+    long size = 10 * 1024 * 1024; // 10MB, but could be smaller.
+    ScopedAStatus ret =
+            service.initializeWritablePartition(instance, size, PartitionType::ANDROID_VM_INSTANCE);
+    if (!ret.isOk()) {
+        return Error() << "Failed to create instance disk image: " << path;
+    }
+    return instance;
+}
+
+// Construct VirtualMachineAppConfig for a Microdroid-based VM named `vm_name` that executes a
+// shared library named `paylaod_binary_name` in the apk `main_apk_path`.
+Result<VirtualMachineAppConfig> create_vm_config(
+        IVirtualizationService& service, const std::string& work_dir, const std::string& vm_name,
+        const std::string& main_apk_path, const std::string& payload_binary_name, bool debuggable,
+        bool protected_vm, int32_t memory_mib) {
+    ScopedFileDescriptor main_apk = OR_RETURN(open_file(main_apk_path, O_RDONLY));
+    ScopedFileDescriptor idsig =
+            OR_RETURN(create_or_update_idsig_file(service, work_dir, main_apk));
+    ScopedFileDescriptor instance =
+            OR_RETURN(create_instance_image_file_if_needed(service, work_dir));
+
+    // There are two ways to specify the payload. The simpler way is by specifying the name of the
+    // payload binary as shown below. The other way (which is allowed only to system-level VMs) is
+    // by passing the path to the JSON file in the main APK which has detailed specification about
+    // what to load in Microdroid. See packages/modules/Virtualization/compos/apk/assets/*.json as
+    // examples.
+    VirtualMachinePayloadConfig payload;
+    payload.payloadBinaryName = payload_binary_name;
+
+    VirtualMachineAppConfig app_config;
+    app_config.name = vm_name;
+    app_config.apk = std::move(main_apk);
+    app_config.idsig = std::move(idsig);
+    app_config.instanceImage = std::move(instance);
+    app_config.payload = std::move(payload);
+    if (debuggable) {
+        app_config.debugLevel = VirtualMachineAppConfig::DebugLevel::FULL;
+    }
+    app_config.protectedVm = protected_vm;
+    app_config.memoryMib = memory_mib;
+
+    return app_config;
+}
+
+//--------------------------------------------------------------------------------------------------
+// Step 3: create a VM and start it
+//--------------------------------------------------------------------------------------------------
+
+// Create a virtual machine with the config, but doesn't start it yet.
+Result<std::shared_ptr<IVirtualMachine>> create_virtual_machine(
+        IVirtualizationService& service, VirtualMachineAppConfig& app_config) {
+    std::shared_ptr<IVirtualMachine> vm;
+
+    VirtualMachineConfig config = std::move(app_config);
+    ScopedFileDescriptor console_out_fd(fcntl(fileno(stdout), F_DUPFD_CLOEXEC));
+    ScopedFileDescriptor console_in_fd(fcntl(fileno(stdin), F_DUPFD_CLOEXEC));
+    ScopedFileDescriptor log_fd(fcntl(fileno(stdout), F_DUPFD_CLOEXEC));
+
+    ScopedAStatus ret = service.createVm(config, console_out_fd, console_in_fd, log_fd, &vm);
+    if (!ret.isOk()) {
+        return Error() << "Failed to create VM";
+    }
+    return vm;
+}
+
+// When a VM lifecycle changes, a corresponding method in this class is called. This also provides
+// methods for blocking the current thread until the VM reaches a specific state.
+class Callback : public BnVirtualMachineCallback {
+public:
+    Callback(const std::shared_ptr<IVirtualMachine>& vm) : mVm(vm) {}
+
+    ScopedAStatus onPayloadStarted(int32_t) {
+        std::unique_lock lock(mMutex);
+        mCv.notify_all();
+        return ScopedAStatus::ok();
+    }
+
+    ScopedAStatus onPayloadReady(int32_t) {
+        std::unique_lock lock(mMutex);
+        mCv.notify_all();
+        return ScopedAStatus::ok();
+    }
+
+    ScopedAStatus onPayloadFinished(int32_t, int32_t) {
+        std::unique_lock lock(mMutex);
+        mCv.notify_all();
+        return ScopedAStatus::ok();
+    }
+
+    ScopedAStatus onError(int32_t, ErrorCode, const std::string&) {
+        std::unique_lock lock(mMutex);
+        mCv.notify_all();
+        return ScopedAStatus::ok();
+    }
+
+    ScopedAStatus onDied(int32_t, DeathReason) {
+        std::unique_lock lock(mMutex);
+        mCv.notify_all();
+        return ScopedAStatus::ok();
+    }
+
+    Result<void> wait_for_state(VirtualMachineState state) {
+        std::unique_lock lock(mMutex);
+        mCv.wait_for(lock, 5s, [this, &state] {
+            auto cur_state = get_vm_state();
+            return cur_state.ok() && *cur_state == state;
+        });
+        auto cur_state = get_vm_state();
+        if (cur_state.ok()) {
+            if (*cur_state == state) {
+                return {};
+            } else {
+                return Error() << "Timeout waiting for state becomes " << toString(state);
+            }
+        }
+        return cur_state.error();
+    }
+
+private:
+    std::shared_ptr<IVirtualMachine> mVm;
+    std::condition_variable mCv;
+    std::mutex mMutex;
+
+    Result<VirtualMachineState> get_vm_state() {
+        VirtualMachineState state;
+        ScopedAStatus ret = mVm->getState(&state);
+        if (!ret.isOk()) {
+            return Error() << "Failed to get state of virtual machine";
+        }
+        return state;
+    }
+};
+
+// Start (i.e. boot) the virtual machine and return Callback monitoring the lifecycle event of the
+// VM.
+Result<std::shared_ptr<Callback>> start_virtual_machine(std::shared_ptr<IVirtualMachine> vm) {
+    std::shared_ptr<Callback> cb = SharedRefBase::make<Callback>(vm);
+    ScopedAStatus ret = vm->registerCallback(cb);
+    if (!ret.isOk()) {
+        return Error() << "Failed to register callback to virtual machine";
+    }
+    ret = vm->start();
+    if (!ret.isOk()) {
+        return Error() << "Failed to start virtual machine";
+    }
+    return cb;
+}
+
+//--------------------------------------------------------------------------------------------------
+// Step 4: connect to the payload and communicate with it over binder/vsock
+//--------------------------------------------------------------------------------------------------
+
+// Connect to the binder service running in the payload.
+Result<std::shared_ptr<ITestService>> connect_to_vm_payload(std::shared_ptr<IVirtualMachine> vm) {
+    std::unique_ptr<ARpcSession, decltype(&ARpcSession_free)> session(ARpcSession_new(),
+                                                                      &ARpcSession_free);
+    ARpcSession_setMaxIncomingThreads(session.get(), 1);
+
+    AIBinder* binder = ARpcSession_setupPreconnectedClient(
+            session.get(),
+            [](void* param) {
+                std::shared_ptr<IVirtualMachine> vm =
+                        *static_cast<std::shared_ptr<IVirtualMachine>*>(param);
+                ScopedFileDescriptor sock_fd;
+                ScopedAStatus ret = vm->connectVsock(ITestService::PORT, &sock_fd);
+                if (!ret.isOk()) {
+                    return -1;
+                }
+                return sock_fd.release();
+            },
+            &vm);
+    if (binder == nullptr) {
+        return Error() << "Failed to connect to vm payload";
+    }
+    return ITestService::fromBinder(SpAIBinder{binder});
+}
+
+// Do something with the service in the VM
+Result<void> do_something(ITestService& payload) {
+    int32_t result;
+    ScopedAStatus ret = payload.addInteger(10, 20, &result);
+    if (!ret.isOk()) {
+        return Error() << "Failed to call addInteger";
+    }
+    std::cout << "The answer from VM is " << result << std::endl;
+    return {};
+}
+
+// This is the main routine that follows the steps in order
+Result<void> inner_main() {
+    TemporaryDir work_dir;
+    std::string work_dir_path(work_dir.path);
+
+    // Step 1: connect to the virtualizationservice
+    unique_fd fd = OR_RETURN(get_service_fd());
+    std::shared_ptr<IVirtualizationService> service = OR_RETURN(connect_service(fd.get()));
+
+    // Step 2: create vm config
+    VirtualMachineAppConfig app_config = OR_RETURN(
+            create_vm_config(*service, work_dir_path, "my_vm",
+                             "/data/local/tmp/MicrodroidTestApp.apk", "MicrodroidTestNativeLib.so",
+                             /* debuggable = */ true, // should be false for production VMs
+                             /* protected_vm = */ true, 150));
+
+    // Step 3: start vm
+    std::shared_ptr<IVirtualMachine> vm = OR_RETURN(create_virtual_machine(*service, app_config));
+    std::shared_ptr<Callback> cb = OR_RETURN(start_virtual_machine(vm));
+    OR_RETURN(cb->wait_for_state(VirtualMachineState::READY));
+
+    // Step 4: do something in the vm
+    std::shared_ptr<ITestService> payload = OR_RETURN(connect_to_vm_payload(vm));
+    OR_RETURN(do_something(*payload));
+
+    // Step 5: let VM quit by itself, and wait for the graceful shutdown
+    ScopedAStatus ret = payload->quit();
+    if (!ret.isOk()) {
+        return Error() << "Failed to command quit to the VM";
+    }
+    OR_RETURN(cb->wait_for_state(VirtualMachineState::DEAD));
+
+    return {};
+}
+
+int main() {
+    if (auto ret = inner_main(); !ret.ok()) {
+        std::cerr << ret.error() << std::endl;
+        return EXIT_FAILURE;
+    }
+    std::cout << "Done" << std::endl;
+    return EXIT_SUCCESS;
+}
diff --git a/docs/custom_vm.md b/docs/custom_vm.md
new file mode 100644
index 0000000..270ea36
--- /dev/null
+++ b/docs/custom_vm.md
@@ -0,0 +1,23 @@
+# Custom VM
+
+You can spawn your own custom VMs by passing a JSON config file to the
+VirtualizationService via the `vm` tool on a rooted AVF-enabled device. If your
+device is attached over ADB, you can run:
+
+```shell
+cat > vm_config.json <<EOF
+{
+  "kernel": "/data/local/tmp/kernel",
+  "initrd": "/data/local/tmp/ramdisk",
+  "params": "rdinit=/bin/init"
+}
+EOF
+adb root
+adb push <kernel> /data/local/tmp/kernel
+adb push <ramdisk> /data/local/tmp/ramdisk
+adb push vm_config.json /data/local/tmp/vm_config.json
+adb shell "/apex/com.android.virt/bin/vm run /data/local/tmp/vm_config.json"
+```
+
+The `vm` command also has other subcommands for debugging; run
+`/apex/com.android.virt/bin/vm help` for details.
diff --git a/docs/debug/README.md b/docs/debug/README.md
new file mode 100644
index 0000000..1e5f096
--- /dev/null
+++ b/docs/debug/README.md
@@ -0,0 +1,121 @@
+# Debugging protected VMs
+
+AVF is largely about protected VMs. This in turn means that anything that is
+happening inside the VM cannot be observed from outside of the VM. But as a
+developer, you need to be able to look into it when there’s an error in your
+VM. To satisfy such contradictory needs, AVF allows you to start a protected VM
+in a debuggable mode and provides a bunch of debugging mechanisms you can use
+to better understand the behavior of the VM and diagnose issues.
+
+Note: running a protected VM in a debuggable mode introduces many loopholes
+which can be used to nullify the protection provided by the hypervisor.
+Therefore, the debugable mode should never be used in production.
+
+## Enable debugging
+
+The following sections describe the two ways debugging can be enabled.
+
+### Debug level
+
+Debug level is a per-VM property which indicates how debuggable the VM is.
+There currently are two levels defined: NONE and FULL. NONE means that the VM
+is not debuggable at all, and FULL means that [all the debugging
+features](#debugging-features) are supported.
+
+Debug level is by default NONE. You can set it to FULL either via a Java API
+call in your app or via a command line argument `--debug` as follows:
+
+```java
+VirtualMachineConfig.Builder.setDebugLevel(DEBUG_LEVEL_FULL);
+```
+
+or
+
+```shell
+adb shell /apex/com.android.virt/bin/vm run-microdroid --debug full
+```
+
+or
+
+```shell
+m vm_shell
+vm_shell start-microdroid --auto-connect -- --protected --debug full
+```
+
+Note: `--debug full` is the default option when omitted. You need to explicitly
+use `--debug none` to set the debug level to NONE.
+
+### Debug policy
+
+Debug policy is a per-device property which forcibly enables selected debugging
+features, even for the VMs with debug level NONE.
+
+The main purpose of debug policy is in-field debugging by the platform
+developers (device makers, SoC vendors, etc.) To understand it, let’s imagine
+that you have an application of pVM. It’s configured as debug level NONE
+because you finished the development and the team-level testing. However, you
+get a bug report from your QA team or from beta testers. To fix the bug, you
+should be able to look into the pVM but you do not want to change the source
+code to make the VM debuggable and rebuild the entire software, because that
+may hurt the reproducibility of the bug.
+
+Note: Not every devices is guaranteed to support debug policy. It is up to the
+device manufacturer to implement this in their bootloader. Google Pixel
+devices for example support this after Pixel 7 and 7 Pro. Pixel 6 and 6 Pro
+don't support debug policy.
+
+In the Pixel phones supporting debug policy, it is provisioned by installing a
+device tree overlay like below to the Pixel-specific partition `dpm`.
+
+```
+/ {
+    fragment@avf {
+        target-path = "/";
+
+        __overlay__ {
+            avf {
+                guest {
+                    common {
+                        log = <1>; // Enable kernel log and logcat
+                        ramdump = <1>; // Enable ramdump
+                    }
+                    microdroid {
+                        adb = <1>; // Enable ADB connection
+                    }
+                }
+            };
+        };
+    };
+}; /* end of avf */
+```
+
+To not enable a specific debugging feature, set the corresponding property
+value to other than `<1>`, or delete the property.
+
+As a reference, in Pixel phones, debug policy is loaded as below:
+
+1. Bootloader loads it from the `dpm` partition and verifies it.
+1. Bootloader appends the loaded debug policy as the [configuration
+   data](../../pvmfw/README.md#configuration-data) of the pvmfw.
+1. When a pVM is started, pvmfw [overlays][apply_debug_policy] the debug policy to the baseline
+   device tree from crosvm.
+1. OS payload (e.g. Microdroid) [reads][read_debug_policy] the device tree and enables specific
+   debugging feature accordingly.
+
+**Note**: Bootloader MUST NOT load debug policy when the bootloader is in LOCKED state.
+
+[apply_debug_policy]: https://cs.android.com/android/platform/superproject/main/+/main:packages/modules/Virtualization/pvmfw/src/fdt.rs;drc=0d52747770baa14d44c0779b5505095b4251f2e9;l=790
+[read_debug_policy]: https://cs.android.com/android/platform/superproject/main/+/main:packages/modules/Virtualization/microdroid_manager/src/main.rs;drc=65c9f1f0eee4375535f2025584646a0dbb0ea25c;l=834
+
+## Debugging features
+
+AVF currently supports the following debugging features:
+
+* ADB connection (only for Microdroid)
+* Capturing console output
+* Capturing logcat output (only for Microdroid)
+* [Capturing kernel ramdump](ramdump.md) (only for Microdroid)
+* Capturing userspace crash dump (only for Microdroid)
+* [Attaching GDB to the kernel](gdb_kernel.md)
+* [Attaching GDB to the userspace process](gdb_userspace.md) (only for Microdroid)
+* [Tracing hypervisor events](tracing.md)
diff --git a/docs/debug/gdb.md b/docs/debug/gdb_kernel.md
similarity index 100%
rename from docs/debug/gdb.md
rename to docs/debug/gdb_kernel.md
diff --git a/docs/debug/gdb_userspace.md b/docs/debug/gdb_userspace.md
new file mode 100644
index 0000000..c8af702
--- /dev/null
+++ b/docs/debug/gdb_userspace.md
@@ -0,0 +1,18 @@
+# Debugging the payload on microdroid
+
+Like a normal adb device, you can debug native processes running on a
+Microdroid-base VM using [`lldbclient.py`][lldbclient] script, either by
+running a new process, or attaching to an existing process.  Use `vm_shell`
+tool above, and then run `lldbclient.py`.
+
+```sh
+adb -s localhost:8000 shell 'mount -o remount,exec /data'
+development/scripts/lldbclient.py -s localhost:8000 --chroot . --user '' \
+    (-p PID | -n NAME | -r ...)
+```
+
+**Note:** We need to pass `--chroot .` to skip verifying device, because
+microdroid doesn't match with the host's lunch target. We need to also pass
+`--user ''` as there is no `su` binary in microdroid.
+
+[lldbclient]: https://android.googlesource.com/platform/development/+/refs/heads/main/scripts/lldbclient.py
diff --git a/docs/getting_started.md b/docs/getting_started.md
new file mode 100644
index 0000000..74f2012
--- /dev/null
+++ b/docs/getting_started.md
@@ -0,0 +1,156 @@
+# Getting started with Android Virtualization Framework
+
+## Step 1: Prepare a device
+
+We support the following devices:
+
+* aosp\_panther (Pixel 7)
+* aosp\_cheetah (Pixel 7 Pro)
+* aosp\_oriole (Pixel 6)
+* aosp\_raven (Pixel 6 Pro)
+* aosp\_felix (Pixel Fold)
+* aosp\_tangopro (Pixel Tablet)
+* aosp\_cf\_x86\_64\_phone (Cuttlefish a.k.a. Cloud Android). Follow [this
+  instruction](https://source.android.com/docs/setup/create/cuttlefish-use) to
+  use.
+
+### Note on Pixel 6 and 6 Pro
+AVF is shipped in Pixel 6 and 6 Pro, but isn't enabled by default. To enable
+it, follow the instructions below:
+
+1. If the device is running Android 13 or earlier, upgrade to Android 14.
+
+1. Once upgraded to Android 14, execute the following command to enable pKVM.
+   ```shell
+   adb reboot bootloader
+   fastboot flashing unlock
+   fastboot oem pkvm enable
+   fastboot reboot
+   ```
+### Note on Cuttlefish
+Cuttlefish does not support protected VMs. Only non-protected VMs are
+supported.
+
+## Step 2: Build Android image
+
+This step is optional unless you want to build AVF by yourself or try the
+in-development version of AVF.
+
+AVF is implemented as an APEX named `com.android.virt`. However, in order for
+you to install it to your device (be it Pixel or Cuttlefish), you first need to
+re-build the entire Android from AOSP. This is because the official Android
+build you have in your device is release-key signed and therefore you can't
+install your custom-built AVF APEX to it - because it is test-key signed.
+
+### Pixel
+
+1. [Download](https://source.android.com/docs/setup/download/downloading)
+   source code from AOSP. Use the `main` branch.
+
+1. [Download](https://developers.google.com/android/blobs-preview) the preview
+   vendor blob that matches your device.
+
+1. [Build](https://source.android.com/docs/setup/build/building) the `aosp_`
+   variant of your device. For example, if your device is Pixel 7 (`panther`),
+   build `aosp_panther`.
+
+1. [Flash](https://source.android.com/docs/setup/build/running) the built
+   images to the device.
+
+
+### Cuttlefish
+
+1. [Download](https://source.android.com/docs/setup/download/downloading)
+   source code from AOSP. Use the `main` branch.
+
+1. Build Cuttlefish:
+   ```shell
+   source build/envsetup.sh
+   lunch aosp_cf_x86_64_phone-userdebug
+   m
+   ```
+
+1. Run Cuttlefish:
+   ```shell
+   cvd start
+   ```
+
+## Step 3: Build AVF
+
+Then you can repeat building and installing AVF to the device as follows:
+
+1. Build the AVF APEX.
+   ```sh
+   banchan com.android.virt aosp_arm64
+   UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true m apps_only dist
+   ```
+   Replace `aosp_arm64` with `aosp_x86_64` if you are building for Cuttlefish.
+
+1. Install the AVF APEX to the device.
+   ```sh
+   adb install out/dist/com.android.virt.apex
+   adb reboot; adb wait-for-device
+   ```
+
+## Step 4: Run a Microdroid VM
+
+[Microdroid](../../microdroid/README.md) is a lightweight version of Android
+that is intended to run on pVM. You can run a Microdroid-based VM with an empty
+payload using the following command:
+
+```shell
+packages/modules/Virtualization/vm/vm_shell.sh start-microdroid --auto-connect -- --protected
+```
+
+You will see the log messages like the below.
+
+```
+found path /apex/com.android.virt/app/EmptyPayloadAppGoogle@MASTER/EmptyPayloadAppGoogle.apk
+creating work dir /data/local/tmp/microdroid/7CI6QtktSluD3OZgv
+apk.idsig path: /data/local/tmp/microdroid/7CI6QtktSluD3OZgv/apk.idsig
+instance.img path: /data/local/tmp/microdroid/7CI6QtktSluD3OZgv/instance.img
+Created VM from "/apex/com.android.virt/app/EmptyPayloadAppGoogle@MASTER/EmptyPayloadAppGoogle.apk"!PayloadConfig(VirtualMachinePayloadConfig { payloadBinaryName: "MicrodroidEmptyPayloadJniLib.so" }) with CID 2052, state is STARTING.
+[2023-07-07T14:50:43.420766770+09:00 INFO  crosvm] crosvm started.
+[2023-07-07T14:50:43.422545090+09:00 INFO  crosvm] CLI arguments parsed.
+[2023-07-07T14:50:43.440984015+09:00 INFO  crosvm::crosvm::sys::unix::device_helpers] Trying to attach block device: /proc/self/fd/49
+[2023-07-07T14:50:43.441730922+09:00 INFO  crosvm::crosvm::sys::unix::device_helpers] Trying to attach block device: /proc/self/fd/54
+[2023-07-07T14:50:43.462055141+09:00 INFO  crosvm::crosvm::sys::unix::device_helpers] Trying to attach block device: /proc/self/fd/63
+[WARN] Config entry DebugPolicy uses non-zero offset with zero size
+[WARN] Config entry DebugPolicy uses non-zero offset with zero size
+[INFO] pVM firmware
+avb_slot_verify.c:443: ERROR: initrd_normal: Hash of data does not match digest in descriptor.
+[INFO] device features: SEG_MAX | RO | BLK_SIZE | RING_EVENT_IDX | VERSION_1 | ACCESS_PLATFORM
+[INFO] config: 0x201a000
+[INFO] found a block device of size 50816KB
+[INFO] device features: SEG_MAX | BLK_SIZE | FLUSH | DISCARD | WRITE_ZEROES | RING_EVENT_IDX | VERSION_1 | ACCESS_PLATFORM
+[INFO] config: 0x2022000
+[INFO] found a block device of size 10304KB
+[INFO] No debug policy found.
+[INFO] Starting payload...
+<omitted>
+07-07 05:52:01.322    69    69 I vm_payload: vm_payload: Notified host payload ready successfully
+07-07 05:52:01.364    70    70 I adbd    : persist.adb.watchdog set to ''
+07-07 05:52:01.364    70    70 I adbd    : persist.sys.test_harness set to ''
+07-07 05:52:01.365    70    70 I adbd    : adb watchdog timeout set to 600 seconds
+07-07 05:52:01.366    70    70 I adbd    : Setup mdns on port= 5555
+07-07 05:52:01.366    70    70 I adbd    : adbd listening on vsock:5555
+07-07 05:52:01.366    70    70 I adbd    : adbd started
+#
+```
+
+The `--auto-connect` option provides you an adb-shell connection to the VM. The
+shell promot (`#`) at the end of the log is for that.
+
+## Step 5: Run tests
+
+There are various tests that spawn guest VMs and check different aspects of the
+architecture. They all can run via `atest`.
+
+```shell
+atest MicrodroidHostTestCases
+atest MicrodroidTestApp
+```
+
+If you run into problems, inspect the logs produced by `atest`. Their location
+is printed at the end. The `host_log_*.zip` file should contain the output of
+individual commands as well as VM logs.
diff --git a/docs/getting_started/index.md b/docs/getting_started/index.md
deleted file mode 100644
index 25eb909..0000000
--- a/docs/getting_started/index.md
+++ /dev/null
@@ -1,174 +0,0 @@
-# Getting started with Protected Virtual Machines
-
-## Prepare a device
-
-First you will need a device that is capable of running virtual machines. On arm64, this means a
-device which boots the kernel in EL2 and the kernel was built with KVM enabled. Unfortunately at the
-moment, we don't have an arm64 device in AOSP which does that. Instead, use cuttlefish which
-provides the same functionalities except that the virtual machines are not protected from the host
-(i.e. Android). This however should be enough for functional testing.
-
-We support the following device:
-
-* aosp_cf_x86_64_phone (Cuttlefish a.k.a. Cloud Android)
-* oriole (Pixel 6)
-* raven (Pixel 6 Pro)
-
-### Cuttlefish
-
-Building Cuttlefish
-
-```shell
-source build/envsetup.sh
-lunch aosp_cf_x86_64_phone-userdebug
-m
-```
-
-Run Cuttlefish locally by
-
-```shell
-acloud create --local-instance --local-image
-```
-
-### Pixel 6 and 6 Pro
-
-If the device is running Android 12, join the [Android Beta
-Program](https://www.google.com/android/beta) to upgrade to Android 13 Beta.
-
-Once upgraded to Android 13, execute the following command to enable pKVM.
-
-```shell
-adb reboot bootloader
-fastboot flashing unlock
-fastboot oem pkvm enable
-fastboot reboot
-```
-
-Due to a bug in Android 13 for these devices, pKVM may stop working after an
-[OTA update](https://source.android.com/devices/tech/ota). To prevent this, it
-is necessary to manually replicate the `pvmfw` partition to the other slot:
-
-```shell
-git -C <android_root>/packages/modules/Virtualization
-show de6b0b2ecf6225a0a7b43241de27e74fc3e6ceb2:pvmfw/pvmfw.img > /tmp/pvmfw.img
-adb reboot bootloader
-fastboot --slot other flash pvmfw /tmp/pvmfw.img
-fastboot reboot
-```
-
-Otherwise, if an OTA has already made pKVM unusable, the working partition
-should be copied to the "current" slot:
-
-```shell
-adb reboot bootloader
-fastboot flash pvmfw /tmp/pvmfw.img
-fastboot reboot
-```
-
-Finally, if the `pvmfw` partition has been corrupted, both slots may be flashed
-using the [`pvmfw.img` pre-built](https://android.googlesource.com/platform/packages/modules/Virtualization/+/08deac98acefd62e222edfa374d5292458cf97eb%5E/pvmfw/pvmfw.img)
-as long as the bootloader remains unlocked. Otherwise, a fresh install of
-Android 13 followed by the manual steps above for flashing the `other` slot
-should be used as a last resort.
-
-Starting in Android 14, `pvmfw.img` can be built using the Android Build system:
-```
-lunch <target>  # where PRODUCT_BUILD_PVMFW_IMAGE=true
-m pvmfwimage    # partition image under ${ANDROID_PRODUCT_OUT}/pvmfw.img
-```
-Note that the result is not intended to be used in Android 13 as not
-backward-compatibility is guaranteed.
-
-## Running demo app
-
-The instruction is [here](../../demo/README.md).
-
-## Running tests
-
-There are various tests that spawn guest VMs and check different aspects of the architecture. They
-all can run via `atest`.
-
-```shell
-atest VirtualizationTestCases.64
-atest MicrodroidHostTestCases
-atest MicrodroidTestApp
-```
-
-If you run into problems, inspect the logs produced by `atest`. Their location is printed at the
-end. The `host_log_*.zip` file should contain the output of individual commands as well as VM logs.
-
-## Spawning your own VMs with custom kernel
-
-You can spawn your own VMs by passing a JSON config file to the VirtualizationService via the `vm`
-tool on a rooted KVM-enabled device. If your device is attached over ADB, you can run:
-
-```shell
-cat > vm_config.json
-{
-  "kernel": "/data/local/tmp/kernel",
-  "initrd": "/data/local/tmp/ramdisk",
-  "params": "rdinit=/bin/init"
-}
-adb root
-adb push <kernel> /data/local/tmp/kernel
-adb push <ramdisk> /data/local/tmp/ramdisk
-adb push vm_config.json /data/local/tmp/vm_config.json
-adb shell "start virtualizationservice"
-adb shell "/apex/com.android.virt/bin/vm run /data/local/tmp/vm_config.json"
-```
-
-The `vm` command also has other subcommands for debugging; run `/apex/com.android.virt/bin/vm help`
-for details.
-
-## Spawning your own VMs with custom pvmfw
-
-Set system property `hypervisor.pvmfw.path` to custom `pvmfw` on the device before using `vm` tool.
-`virtualizationservice` will pass the specified `pvmfw` to `crosvm` for protected VMs.
-
-```shell
-adb push pvmfw.img /data/local/tmp/pvmfw.img
-adb root  # required for setprop
-adb shell setprop hypervisor.pvmfw.path /data/local/tmp/pvmfw.img
-```
-
-## Spawning your own VMs with Microdroid
-
-[Microdroid](../../microdroid/README.md) is a lightweight version of Android that is intended to run
-on pVM. You can run a Microdroid with empty payload using the following command:
-
-```shell
-adb shell /apex/com.android.virt/bin/vm run-microdroid --debug full
-```
-
-The `instance.img` and `apk.idsig` files will be stored in a subdirectory under
-`/data/local/tmp/microdroid`, that `vm` will create.
-
-Atlernatively, you can manually run the demo app on top of Microdroid as follows:
-
-```shell
-UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true TARGET_BUILD_APPS=MicrodroidDemoApp m apps_only dist
-adb shell mkdir -p /data/local/tmp/virt
-adb push out/dist/MicrodroidDemoApp.apk /data/local/tmp/virt/
-adb shell /apex/com.android.virt/bin/vm run-app \
-  --debug full \
-  /data/local/tmp/virt/MicrodroidDemoApp.apk \
-  /data/local/tmp/virt/MicrodroidDemoApp.apk.idsig \
-  /data/local/tmp/virt/instance.img \
-  --payload-path MicrodroidTestNativeLib.so
-```
-
-## Building and updating CrosVM and VirtualizationService {#building-and-updating}
-
-You can update CrosVM and the VirtualizationService by updating the `com.android.virt` APEX instead
-of rebuilding the entire image.
-
-```shell
-banchan com.android.virt aosp_arm64   // or aosp_x86_64 if the device is cuttlefish
-UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true m apps_only dist
-adb install out/dist/com.android.virt.apex
-adb reboot
-```
-
-## Building and updating kernel inside Microdroid
-
-The instruction is [here](../../microdroid/kernel/README.md).
diff --git a/docs/getting_started/pixel6.md b/docs/getting_started/pixel6.md
deleted file mode 100644
index 82391c4..0000000
--- a/docs/getting_started/pixel6.md
+++ /dev/null
@@ -1,129 +0,0 @@
-# Instructions for building custom AVF on Pixel 6 or 6 Pro
-
-This document provides steps for building AVF from AOSP, and then install it to
-Pixel 6 series to better understand AVF and do some experiments.
-
-**WARNING**: Unless Android 13 is released to AOSP (expected to be at Summer
-2022, exact date TBD) by the time when you read this documentation, or you or
-your company have early access to Android Tiramisu source tree, you **CANNOT**
-follow this instruction. In that case, you can only **USE** the AVF that is
-shipped in the Android 13 Beta Image.
-
-This is because AVF in the beta image is signed by Google and therefore it can't
-be updated to a new AVF built in AOSP which can't be signed by the Google key
-that is not shared with AOSP.
-
-## Upgrade to Android 13 Beta Image
-
-First, upgrade your Pixel 6 or Pixel 6 Pro to the Android 13 Beta Image. This
-can be done in two ways:
-
-* Join [Android Beta Program](https://www.google.com/android/beta) and then OTA
-  to Android 13.
-* Manually flash [Android 13 Beta Images](https://developer.android.com/about/versions/13/download#factory-images).
-
-Then enable ADB debugging in "Settings" -> "System" -> "Developer options".
-Finally, enable PKVM.
-
-```shell
-adb reboot bootloader
-fastboot flashing unlock
-fastboot oem pkvm enable
-fastboot reboot
-```
-
-## Building GSI and flashing it
-
-Prepare your Android 13 (Tiramisu) source tree.
-
-```shell
-mkdir tm
-cd tm
-repo init -u <URL> -m <your_tm_branch>
-repo sync -c --no-tags -j 10
-```
-
-Patch GSI so that it includes AVF. Edit
-`build/make/target/product/gsi_release.mk` and add the following line to the
-end (or anywhere in the file that makes sense):
-
-```
-PRODUCT_PACKAGES += com.android.virt
-```
-
-Build GSI.
-
-```shell
-source build/envsetup.sh
-choosecombo 1 aosp_arm64 userdebug
-m
-```
-
-Flash GSI to the Pixel device.
-
-```shell
-adb reboot bootloader
-fastboot reboot fastboot
-fastboot delete-logical-partition product_a
-fastboot flash system out/target/product/generic_arm64/system.img
-fastboot --disable-verification flash vbmeta out/target/product/generic_arm64/vbmeta.img
-fastboot -w reboot
-```
-
-Deleting the logical partition `product_a` is needed because the GSI image is
-bigger than the logical partition `system_a` of the beta image.
-`--disable-verification` when flashing the `vbmeta` partition is critical. Don't
-miss it.
-
-Lastly, check if you are running GSI.
-
-```shell
-adb shell getprop ro.build.product
-adb shell ls /dev/kvm
-adb shell ls /apex/com.android.virt/bin/vm
-```
-
-The result should be as follows.
-
-```
-generic_arm64
-/dev/kvm
-/apex/com.android.virt/bin/vm
-```
-
-## Building and installing AVF from AOSP
-
-Checkout AOSP master branch.
-
-```shell
-mkdir aosp
-cd aosp
-repo init -u https://android.googlesource.com/platform/manifest -b master
-repo sync -c --no-tags -j 10
-```
-
-Then build the `com.android.virt` APEX.
-
-```shell
-source build/envsetup.sh
-banchan com.android.virt aosp_arm64
-UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true m apps_only dist
-```
-
-Install the newly built AVF to the device
-
-```shell
-adb install out/dist/com.android.virt.apex
-adb reboot
-```
-
-If this doesn't work for some reason, try this:
-
-```
-adb root
-adb shell setenforce 0
-adb push out/dist/com.android.virt.apex /data/local/
-adb shell cmd -w apexservice deactivatePackage /system/system_ext/apex/com.android.virt.apex
-adb shell cmd -w apexservice activatePackage /data/local/com.android.virt.apex
-// Don't adb reboot
-```
diff --git a/encryptedstore/Android.bp b/encryptedstore/Android.bp
index 94ebcfc..225eedd 100644
--- a/encryptedstore/Android.bp
+++ b/encryptedstore/Android.bp
@@ -1,9 +1,11 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "encryptedstore.defaults",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     edition: "2021",
     prefer_rlib: true,
@@ -14,6 +16,7 @@
         "libclap",
         "libhex",
         "liblog_rust",
+        "libmicrodroid_uids",
         "libnix",
         "libdm_rust",
     ],
diff --git a/encryptedstore/TEST_MAPPING b/encryptedstore/TEST_MAPPING
index a9e1d87..cc1d0c8 100644
--- a/encryptedstore/TEST_MAPPING
+++ b/encryptedstore/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/encryptedstore/src/main.rs b/encryptedstore/src/main.rs
index 86fa6da..983e3e9 100644
--- a/encryptedstore/src/main.rs
+++ b/encryptedstore/src/main.rs
@@ -21,24 +21,32 @@
 use anyhow::{ensure, Context, Result};
 use clap::arg;
 use dm::{crypt::CipherType, util};
-use log::info;
+use log::{error, info};
 use std::ffi::CString;
 use std::fs::{create_dir_all, OpenOptions};
 use std::io::{Error, Read, Write};
 use std::os::unix::ffi::OsStrExt;
-use std::os::unix::fs::FileTypeExt;
+use std::os::unix::fs::{FileTypeExt, PermissionsExt};
 use std::path::{Path, PathBuf};
 use std::process::Command;
 
 const MK2FS_BIN: &str = "/system/bin/mke2fs";
 const UNFORMATTED_STORAGE_MAGIC: &str = "UNFORMATTED-STORAGE";
 
-fn main() -> Result<()> {
+fn main() {
     android_logger::init_once(
         android_logger::Config::default()
             .with_tag("encryptedstore")
-            .with_min_level(log::Level::Info),
+            .with_max_level(log::LevelFilter::Info),
     );
+
+    if let Err(e) = try_main() {
+        error!("{:?}", e);
+        std::process::exit(1)
+    }
+}
+
+fn try_main() -> Result<()> {
     info!("Starting encryptedstore binary");
 
     let matches = clap_command().get_matches();
@@ -47,10 +55,12 @@
     let key = matches.get_one::<String>("key").unwrap();
     let mountpoint = Path::new(matches.get_one::<String>("mountpoint").unwrap());
     // Note this error context is used in MicrodroidTests.
-    encryptedstore_init(blkdevice, key, mountpoint).context(format!(
-        "Unable to initialize encryptedstore on {:?} & mount at {:?}",
-        blkdevice, mountpoint
-    ))?;
+    encryptedstore_init(blkdevice, key, mountpoint).with_context(|| {
+        format!(
+            "Unable to initialize encryptedstore on {:?} & mount at {:?}",
+            blkdevice, mountpoint
+        )
+    })?;
     Ok(())
 }
 
@@ -65,7 +75,7 @@
 fn encryptedstore_init(blkdevice: &Path, key: &str, mountpoint: &Path) -> Result<()> {
     ensure!(
         std::fs::metadata(blkdevice)
-            .context(format!("Failed to get metadata of {:?}", blkdevice))?
+            .with_context(|| format!("Failed to get metadata of {:?}", blkdevice))?
             .file_type()
             .is_block_device(),
         "The path:{:?} is not of a block device",
@@ -82,10 +92,23 @@
         info!("Freshly formatting the crypt device");
         format_ext4(&crypt_device)?;
     }
-    mount(&crypt_device, mountpoint).context(format!("Unable to mount {:?}", crypt_device))?;
+    mount(&crypt_device, mountpoint)
+        .with_context(|| format!("Unable to mount {:?}", crypt_device))?;
+    if cfg!(multi_tenant) && needs_formatting {
+        set_root_dir_permissions(mountpoint)?;
+    }
     Ok(())
 }
 
+fn set_root_dir_permissions(mountpoint: &Path) -> Result<()> {
+    // mke2fs hardwires the root dir permissions as 0o755 which doesn't match what we want.
+    // We want to allow full access by both root and the payload group, and no access by anything
+    // else. And we want the sticky bit set, so different payload UIDs can create sub-directories
+    // that other payloads can't delete.
+    let permissions = PermissionsExt::from_mode(0o770 | libc::S_ISVTX);
+    std::fs::set_permissions(mountpoint, permissions).context("Failed to chmod root directory")
+}
+
 fn enable_crypt(data_device: &Path, key: &str, name: &str) -> Result<PathBuf> {
     let dev_size = util::blkgetsize64(data_device)?;
     let key = hex::decode(key).context("Unable to decode hex key")?;
@@ -124,6 +147,11 @@
 }
 
 fn format_ext4(device: &Path) -> Result<()> {
+    let root_dir_uid_gid = format!(
+        "root_owner={}:{}",
+        microdroid_uids::ROOT_UID,
+        microdroid_uids::MICRODROID_PAYLOAD_GID
+    );
     let mkfs_options = [
         "-j", // Create appropriate sized journal
         /* metadata_csum: enabled for filesystem integrity
@@ -131,20 +159,22 @@
          * 64bit: larger fields afforded by this feature enable full-strength checksumming.
          */
         "-O metadata_csum, extents, 64bit",
-        "-b 4096", // block size in the filesystem
+        "-b 4096", // block size in the filesystem,
+        "-E",
+        &root_dir_uid_gid,
     ];
     let mut cmd = Command::new(MK2FS_BIN);
     let status = cmd
         .args(mkfs_options)
         .arg(device)
         .status()
-        .context(format!("failed to execute {}", MK2FS_BIN))?;
+        .with_context(|| format!("failed to execute {}", MK2FS_BIN))?;
     ensure!(status.success(), "mkfs failed with {:?}", status);
     Ok(())
 }
 
 fn mount(source: &Path, mountpoint: &Path) -> Result<()> {
-    create_dir_all(mountpoint).context(format!("Failed to create {:?}", &mountpoint))?;
+    create_dir_all(mountpoint).with_context(|| format!("Failed to create {:?}", &mountpoint))?;
     let mount_options = CString::new(
         "fscontext=u:object_r:encryptedstore_fs:s0,context=u:object_r:encryptedstore_file:s0",
     )
@@ -153,6 +183,9 @@
     let mountpoint = CString::new(mountpoint.as_os_str().as_bytes())?;
     let fstype = CString::new("ext4").unwrap();
 
+    // SAFETY: The source, target and filesystemtype are valid C strings. For ext4, data is expected
+    // to be a C string as well, which it is. None of these pointers are retained after mount
+    // returns.
     let ret = unsafe {
         libc::mount(
             source.as_ptr(),
diff --git a/javalib/Android.bp b/javalib/Android.bp
index a124af7..680d59b 100644
--- a/javalib/Android.bp
+++ b/javalib/Android.bp
@@ -1,13 +1,27 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
+soong_config_module_type {
+    name: "avf_flag_aware_android_app",
+    module_type: "android_app",
+    config_namespace: "ANDROID",
+    bool_variables: ["release_avf_allow_preinstalled_apps"],
+    properties: ["manifest"],
+}
+
 // Defines our permissions
-android_app {
+avf_flag_aware_android_app {
     name: "android.system.virtualmachine.res",
     installable: true,
     apex_available: ["com.android.virt"],
     platform_apis: true,
+    soong_config_variables: {
+        release_avf_allow_preinstalled_apps: {
+            manifest: "AndroidManifestNext.xml",
+        },
+    },
 }
 
 java_sdk_library {
@@ -51,39 +65,3 @@
         "//packages/modules/Virtualization:__subpackages__",
     ],
 }
-
-java_api_contribution {
-    name: "framework-virtualization-public-stubs",
-    api_surface: "public",
-    api_file: "api/current.txt",
-    visibility: [
-        "//build/orchestrator/apis",
-    ],
-}
-
-java_api_contribution {
-    name: "framework-virtualization-system-stubs",
-    api_surface: "system",
-    api_file: "api/system-current.txt",
-    visibility: [
-        "//build/orchestrator/apis",
-    ],
-}
-
-java_api_contribution {
-    name: "framework-virtualization-test-stubs",
-    api_surface: "test",
-    api_file: "api/test-current.txt",
-    visibility: [
-        "//build/orchestrator/apis",
-    ],
-}
-
-java_api_contribution {
-    name: "framework-virtualization-module-lib-stubs",
-    api_surface: "module-lib",
-    api_file: "api/module-lib-current.txt",
-    visibility: [
-        "//build/orchestrator/apis",
-    ],
-}
diff --git a/javalib/AndroidManifestNext.xml b/javalib/AndroidManifestNext.xml
new file mode 100644
index 0000000..ebcb8ba
--- /dev/null
+++ b/javalib/AndroidManifestNext.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright (C) 2021 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+  package="com.android.virtualmachine.res">
+
+  <!-- @SystemApi Allows an application to create and run a Virtual Machine
+       using the Virtualization Framework APIs
+       (android.system.virtualmachine.*).
+       <p>Protection level: signature|preinstalled|development
+       @hide
+  -->
+  <permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE"
+      android:protectionLevel="signature|preinstalled|development" />
+
+  <!-- @hide Allows an application to run a Virtual Machine with a custom
+       kernel or a Microdroid configuration file.
+       <p>Not for use by third-party applications.
+  -->
+  <permission android:name="android.permission.USE_CUSTOM_VIRTUAL_MACHINE"
+      android:protectionLevel="signature|development" />
+
+  <!-- @hide Allows an application to access various Virtual Machine debug
+       facilities, e.g. list all running VMs.
+       <p>Not for use by third-party applications.
+  -->
+  <permission android:name="android.permission.DEBUG_VIRTUAL_MACHINE"
+      android:protectionLevel="signature" />
+
+  <application android:hasCode="false" />
+</manifest>
diff --git a/javalib/README.md b/javalib/README.md
new file mode 100644
index 0000000..cf7a6cb
--- /dev/null
+++ b/javalib/README.md
@@ -0,0 +1,371 @@
+# Android Virtualization Framework API
+
+These Java APIs allow an app to configure and run a Virtual Machine running
+[Microdroid](../microdroid/README.md) and execute native code from the app (the
+payload) within it.
+
+There is more information on AVF [here](../README.md). To see how to package the
+payload code that is to run inside a VM, and the native API available to it, see
+the [VM Payload API](../vm_payload/README.md)
+
+The API classes are all in the
+[`android.system.virtualmachine`](src/android/system/virtualmachine) package.
+
+Note that these APIs are all `@SystemApi` and require the restricted
+`android.permission.MANAGE_VIRTUAL_MACHINE` permission, so they are not
+available to third party apps.
+
+All of these APIs were introduced in API level 34 (Android 14). The classes may
+not exist in devices running an earlier version.
+
+## Detecting AVF Support
+
+The simplest way to detect whether a device has support for AVF is to retrieve
+an instance of the
+[`VirtualMachineManager`](src/android/system/virtualmachine/VirtualMachineManager.java)
+class; if the result is not `null` then the device has support. You can then
+find out whether protected, non-protected VMs, or both are supported using the
+`getCapabilities()` method. Note that this code requires API level 34 or higher:
+
+```Java
+VirtualMachineManager vmm = context.getSystemService(VirtualMachineManager.class);
+if (vmm == null) {
+    // AVF is not supported.
+} else {
+    // AVF is supported.
+    int capabilities = vmm.getCapabilities();
+    if ((capabilties & CAPABILITY_PROTECTED_VM) != 0) {
+        // Protected VMs supported.
+    }
+    if ((capabilties & CAPABILITY_NON_PROTECTED_VM) != 0) {
+        // Non-Protected VMs supported.
+    }
+}
+```
+
+An alternative for detecting AVF support is to query support for the
+`android.software.virtualization_framework` system feature. This method will
+work on any API level, and return false if it is below 34:
+
+```Java
+if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_VIRTUALIZATION_FRAMEWORK)) {
+    // AVF is supported.
+}
+```
+
+You can also express a dependency on this system feature in your app's manifest
+with a
+[`<uses-feature>`](https://developer.android.com/guide/topics/manifest/uses-feature-element)
+element.
+
+
+## Starting a VM
+
+Once you have an instance of the
+[`VirtualMachineManager`](src/android/system/virtualmachine/VirtualMachineManager.java),
+a VM can be started by:
+- Specifying the desired VM configuration, using a
+  [`VirtualMachineConfig`](src/android/system/virtualmachine/VirtualMachineConfig.java)
+  builder;
+- Creating a new
+  [`VirtualMachine`](src/android/system/virtualmachine/VirtualMachine.java)
+  instance (or retrieving an existing one);
+- Registering to retrieve events from the VM by providing a
+  [`VirtualMachineCallback`](src/android/system/virtualmachine/VirtualMachineCallback.java)
+  (optional, but recommended);
+- Running the VM.
+
+A minimal example might look like this:
+
+```Java
+VirtualMachineConfig config =
+        new VirtualMachineConfig.Builder(this)
+            .setProtectedVm(true)
+            .setPayloadBinaryName("my_payload.so")
+            .build();
+
+VirtualMachine vm = vmm.getOrCreate("my vm", config);
+
+vm.setCallback(executor, new VirtualMachineCallback() {...});
+
+vm.run();
+```
+
+Here we are running a protected VM, which will execute the code in the
+`my_payload.so` file included in your APK.
+
+Information about the VM, including its configuration, is stored in files in
+your app's private data directory. The file names are based on the VM name you
+supply. So once an instance of a VM has been created it can be retrieved by name
+even if the app is restarted or the device is rebooted. Directly inspecting or
+modifying these files is not recommended.
+
+The `getOrCreate()` call will retrieve an existing VM instance if it exists (in
+which case the `config` parameter is ignored), or create a new one
+otherwise. There are also separate `get()` and `create()` methods.
+
+The `run()` method is asynchronous; it returns successfully once the VM is
+starting. You can find out when the VM is ready, or if it fails, via your
+`VirtualMachineCallback` implementation.
+
+## VM Configuration
+
+There are other things that you can specify as part of the
+[`VirtualMachineConfig`](src/android/system/virtualmachine/VirtualMachineConfig.java):
+- Whether the VM should be debuggable. A debuggable VM is not secure, but it
+  does allow access to logs from inside the VM, which can be useful for
+  troubleshooting.
+- How much memory should be available to the VM. (This is an upper bound;
+  typically memory is allocated to the VM as it is needed until the limit is
+  reached - but there is some overhead proportional to the maximum size.)
+- How many virtual CPUs the VM has.
+- How much encrypted storage the VM has.
+- The path to the installed APK containing the code to run as the VM
+  payload. (Normally you don't need this; the APK path is determined from the
+  context passed to the config builder.)
+
+## VM Life-cycle
+
+To find out the progress of the Virtual Machine once it is started you should
+implement the methods defined by
+[`VirtualMachineCallback`](src/android/system/virtualmachine/VirtualMachineCallback.java). These
+are called when the following events happen:
+- `onPayloadStarted()`: The VM payload is about to be run.
+- `onPayloadReady()`: The VM payload is running and ready to accept
+  connections. (This notification is triggered by the payload code, using the
+  [`AVmPayload_notifyPayloadReady()`](../vm_payload/include/vm_payload.h)
+  function.)
+- `onPayloadFinished()`: The VM payload has exited normally. The exit code of
+  the VM (the value returned by [`AVmPayload_main()`](../vm_payload/README.md))
+  is supplied as a parameter.
+- `onError()`: The VM failed; something went wrong. An error code and
+  human-readable message are provided which may help diagnosing the problem.
+- `onStopped()`: The VM is no longer running. This is the final notification
+  from any VM run, whether or not it was successful. You can run the VM again
+  when you want to. A reason code indicating why the VM stopped is supplied as a
+  parameter.
+
+You can also query the status of a VM at any point by calling `getStatus()` on
+the `VirtualMachine` object. This will return one of the following values:
+- `STATUS_STOPPED`: The VM is not running - either it has not yet been started,
+  or it stopped after running.
+- `STATUS_RUNNING`: The VM is running. Your payload inside the VM may not be
+  running, since the VM may be in the process of starting or stopping.
+- `STATUS_DELETED`: The VM has been deleted, e.g. by calling the `delete()`
+  method on
+  [`VirtualMachineManager`](src/android/system/virtualmachine/VirtualMachineManager.java). This
+  is irreversible - once a VM is in this state it will never leave it.
+
+Some methods on
+[`VirtualMachine`](src/android/system/virtualmachine/VirtualMachine.java) can
+only be called when the VM status is `STATUS_RUNNING` (e.g. `stop()`), and some
+can only be called when the it is `STATUS_STOPPED` (e.g. `run()`).
+
+## VM Identity and Secrets
+
+Every VM has a 32-byte secret unique to it, which is not available to the
+host. We refer to this as the VM identity.  The secret, and thus the identity,
+doesn’t normally change if the same VM is stopped and started, even after a
+reboot.
+
+In Android 14 the secret is derived, using the [Open Profile for
+DICE](https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/android.md),
+from:
+- A device-specific randomly generated value;
+- The complete system image;
+- A per-instance salt;
+- The code running in the VM, including the bootloader, kernel, Microdroid and
+  payload;
+- Significant VM configuration options, e.g.  whether the VM is debuggable.
+
+Any change to any of these will mean a different secret is generated.  So while
+an attacker could start a similar VM with maliciously altered code, that VM will
+not have access to the same secret. An attempt to start an existing VM instance
+which doesn't derive the same secret will fail.
+
+However, this also means that if the payload code changes - for example, your
+app is updated - then this also changes the identity. An existing VM instance
+will no longer be runnable, and you will have to delete it and create a new
+instance with a new secret.
+
+The payload code is not given direct access to the VM secret, but an API is
+provided to allow deterministically deriving further secrets from it,
+e.g. encryption or signing keys. See
+[`AVmPayload_getVmInstanceSecret()`](../vm_payload/include/vm_payload.h).
+
+Some VM configuration changes are allowed that don’t affect the identity -
+e.g. changing the number of CPUs or the amount of memory allocated to the
+VM. This can be done using the `setConfig()` method on
+[`VirtualMachine`](src/android/system/virtualmachine/VirtualMachine.java).
+
+Deleting a VM (using the `delete()` method on
+[`VirtualMachineManager`](src/android/system/virtualmachine/VirtualMachineManager.java))
+and recreating it will generate a new salt, so the new VM will have a different
+secret, even if it is otherwise identical.
+
+## Communicating with a VM
+
+Once the VM payload has successfully started you will probably want to establish
+communication between it and your app.
+
+Only the app that started a VM can connect to it. The VM can accept connections
+from the app, but cannot initiate connections to other VMs or other processes in
+the host Android.
+
+### Vsock
+
+The simplest form of communication is using a socket running over the
+[vsock](https://man7.org/linux/man-pages/man7/vsock.7.html) protocol.
+
+We suggest that the VM payload should create a listening socket (using the
+standard socket API) and then trigger the `onPayloadReady()` callback; the app
+can then connect to the socket. This helps to avoid a race condition where the
+app tries to connect before the VM is listening, necessitating a retry
+mechanism.
+
+In the payload this might look like this:
+
+```C++
+#include "vm_payload.h"
+
+extern "C" int AVmPayload_main() {
+  int fd = socket(AF_VSOCK, SOCK_STREAM, 0);
+  // bind, listen
+  AVmPayload_notifyPayloadReady();
+  // accept, read/write, ...
+}
+```
+
+And, in the app, like this:
+
+```Java
+void onPayloadReady(VirtualMachine vm) {
+  ParcelFileDescriptor pfd = vm.connectVsock(port);
+  // ...
+}
+```
+
+Vsock is useful for simple communication, or transferring of bulk data. For a
+richer RPC style of communication we suggest using Binder.
+
+### Binder
+
+The use of AIDL interfaces between the VM and app is supported via Binder RPC,
+which transmits messages over an underlying vsock socket.
+
+Note that Binder RPC has some limitations compared to the kernel Binder used in
+Android - for example file descriptors can't be sent. It also isn't possible to
+send a kernel Binder interface over Binder RPC, or vice versa.
+
+There is a payload API to allow an AIDL interface to be served over a specific
+vsock port, and the VirtualMachine class provides a way to connect to the VM and
+retrieve an instance of the interface.
+
+The payload code to serve a hypothetical `IPayload` interface might look like
+this:
+
+```C++
+class PayloadImpl : public BnPayload { ... };
+
+
+extern "C" int AVmPayload_main() {
+  auto service = ndk::SharedRefBase::make<PayloadImpl>();
+  auto callback = [](void*) {
+    AVmPayload_notifyPayloadReady();
+  };
+  AVmPayload_runVsockRpcServer(service->asBinder().get(),
+    port, callback, nullptr);
+}
+
+```
+
+And then the app code to connect to it could look like this:
+
+```Java
+void onPayloadReady(VirtualMachine vm) {
+  IPayload payload =
+    Payload.Stub.asInterface(vm.connectToVsockServer(port));
+  // ...
+}
+```
+
+## Stopping a VM
+
+You can stop a VM abruptly by calling the `stop()` method on the
+[`VirtualMachine`](src/android/system/virtualmachine/VirtualMachine.java)
+instance. This is equivalent to turning off the power; the VM gets no
+opportunity to clean up at all. Any unwritten data might be lost.
+
+A better strategy might be to wait for the VM to exit cleanly (e.g. waiting for
+the `onStopped()` callback).
+
+Then you can arrange for your VM payload code to exit when it has finished its
+task (by returning from [`AVmPayload_main()`](../vm_payload/README.md), or
+calling `exit()`). Alternatively you could exit when you receive a request to do
+so from the app, e.g. via binder.
+
+When the VM payload does this you will receive an `onPayloadFinished()`
+callback, if you have installed a
+[`VirtualMachineCallback`](src/android/system/virtualmachine/VirtualMachineCallback.java),
+which includes the payload's exit code.
+
+Use of `stop()` should be reserved as a recovery mechanism - for example if the
+VM has not stopped within a reasonable time (a few seconds, say) after being
+requested to.
+
+The status of a VM will be `STATUS_STOPPED` if your `onStopped()` callback is
+invoked, or after a successful call to `stop()`. Note that your `onStopped()`
+will be called on the VM even if it ended as a result of a call to `stop()`.
+
+# Encrypted Storage
+
+When configuring a VM you can specify that it should have access to an encrypted
+storage filesystem of up to a specified size, using the
+`setEncryptedStorageBytes()` method on a
+[`VirtualMachineConfig`](src/android/system/virtualmachine/VirtualMachineConfig.java)
+builder.
+
+Inside the VM this storage is mounted at a path that can be retrieved via the
+[`AVmPayload_getEncryptedStoragePath()`](../vm_payload/include/vm_payload.h)
+function. The VM can create sub-directories and read and write files here. Any
+data written is persisted and should be available next time the VM is run. (An
+automatic sync is done when the payload exits normally.)
+
+Outside the VM the storage is persisted as a file in the app’s private data
+directory. The data is encrypted using a key derived from the VM secret, which
+is not made available outside the VM.
+
+So an attacker should not be able to decrypt the data; however, a sufficiently
+powerful attacker could delete it, wholly or partially roll it back to an
+earlier version, or modify it, corrupting the data.
+
+# Transferring a VM
+
+It is possible to make a copy of a VM instance. This can be used to transfer a
+VM from one app to another, which can be useful in some circumstances.
+
+This should only be done while the VM is stopped. The first step is to call
+`toDescriptor()` on the
+[`VirtualMachine`](src/android/system/virtualmachine/VirtualMachine.java)
+instance, which returns a
+[`VirtualMachineDescriptor`](src/android/system/virtualmachine/VirtualMachineDescriptor.java)
+object. This object internally contains open file descriptors to the files that
+hold the VM's state (its instance data, configuration, and encrypted storage).
+
+A `VirtualMachineDescriptor` is
+[`Parcelable`](https://developer.android.com/reference/android/os/Parcelable),
+so it can be passed to another app via a Binder call.  Any app with a
+`VirtualMachineDescriptor` can pass it, along with a new VM name, to the
+`importFromDescriptor()` method on
+[`VirtualMachineManager`](src/android/system/virtualmachine/VirtualMachineManager.java). This
+is equivalent to calling `create()` with the same name and configuration, except
+that the new VM is the same instance as the original, with the same VM secret,
+and has access to a copy of the original's encrypted storage.
+
+Once the transfer has been completed it would be reasonable to delete the
+original VM, using the `delete()` method on `VirtualMachineManager`.
+
+
+
+
+
diff --git a/javalib/api/test-current.txt b/javalib/api/test-current.txt
index 8b7ec11..958005f 100644
--- a/javalib/api/test-current.txt
+++ b/javalib/api/test-current.txt
@@ -2,15 +2,29 @@
 package android.system.virtualmachine {
 
   public class VirtualMachine implements java.lang.AutoCloseable {
+    method @NonNull @WorkerThread public java.io.OutputStream getConsoleInput() throws android.system.virtualmachine.VirtualMachineException;
     method @NonNull public java.io.File getRootDir();
   }
 
   public final class VirtualMachineConfig {
+    method @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES") @Nullable public String getOs();
     method @Nullable public String getPayloadConfigPath();
+    method public boolean isVmConsoleInputSupported();
   }
 
   public static final class VirtualMachineConfig.Builder {
+    method @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES") @NonNull public android.system.virtualmachine.VirtualMachineConfig.Builder setOs(@NonNull String);
     method @NonNull @RequiresPermission(android.system.virtualmachine.VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION) public android.system.virtualmachine.VirtualMachineConfig.Builder setPayloadConfigPath(@NonNull String);
+    method @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES") @NonNull @RequiresPermission(android.system.virtualmachine.VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION) public android.system.virtualmachine.VirtualMachineConfig.Builder setVendorDiskImage(@NonNull java.io.File);
+    method @NonNull public android.system.virtualmachine.VirtualMachineConfig.Builder setVmConsoleInputSupported(boolean);
+  }
+
+  public class VirtualMachineManager {
+    method @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES") @NonNull public java.util.List<java.lang.String> getSupportedOSList() throws android.system.virtualmachine.VirtualMachineException;
+    method @RequiresPermission(android.system.virtualmachine.VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION) public boolean isFeatureEnabled(String) throws android.system.virtualmachine.VirtualMachineException;
+    field public static final String FEATURE_DICE_CHANGES = "com.android.kvm.DICE_CHANGES";
+    field public static final String FEATURE_MULTI_TENANT = "com.android.kvm.MULTI_TENANT";
+    field public static final String FEATURE_VENDOR_MODULES = "com.android.kvm.VENDOR_MODULES";
   }
 
 }
diff --git a/javalib/jni/Android.bp b/javalib/jni/Android.bp
index e82b2ce..6e2a129 100644
--- a/javalib/jni/Android.bp
+++ b/javalib/jni/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/javalib/service/Android.bp b/javalib/service/Android.bp
new file mode 100644
index 0000000..9c1fa01
--- /dev/null
+++ b/javalib/service/Android.bp
@@ -0,0 +1,30 @@
+// Copyright (C) 2024 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+java_library {
+    name: "service-virtualization",
+    srcs: [
+        "src/**/*.java",
+    ],
+    defaults: [
+        "framework-system-server-module-defaults",
+    ],
+    sdk_version: "system_server_current",
+    apex_available: ["com.android.virt"],
+    installable: true,
+}
diff --git a/javalib/service/src/com/android/system/virtualmachine/VirtualizationSystemService.java b/javalib/service/src/com/android/system/virtualmachine/VirtualizationSystemService.java
new file mode 100644
index 0000000..2905acd
--- /dev/null
+++ b/javalib/service/src/com/android/system/virtualmachine/VirtualizationSystemService.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2024 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.system.virtualmachine;
+
+import android.content.Context;
+import com.android.server.SystemService;
+
+/** TODO */
+public class VirtualizationSystemService extends SystemService {
+
+    public VirtualizationSystemService(Context context) {
+        super(context);
+    }
+
+    @Override
+    public void onStart() {}
+}
diff --git a/javalib/src/android/system/virtualmachine/VirtualMachine.java b/javalib/src/android/system/virtualmachine/VirtualMachine.java
index f96effa..16f9631 100644
--- a/javalib/src/android/system/virtualmachine/VirtualMachine.java
+++ b/javalib/src/android/system/virtualmachine/VirtualMachine.java
@@ -76,11 +76,13 @@
 
 import java.io.File;
 import java.io.FileInputStream;
+import java.io.FileOutputStream;
 import java.io.FileNotFoundException;
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
+import java.io.OutputStream;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.nio.channels.FileChannel;
@@ -294,6 +296,8 @@
 
     private final boolean mVmOutputCaptured;
 
+    private final boolean mVmConsoleInputSupported;
+
     /** The configuration that is currently associated with this VM. */
     @GuardedBy("mLock")
     @NonNull
@@ -306,11 +310,19 @@
 
     @GuardedBy("mLock")
     @Nullable
-    private ParcelFileDescriptor mConsoleReader;
+    private ParcelFileDescriptor mConsoleOutReader;
 
     @GuardedBy("mLock")
     @Nullable
-    private ParcelFileDescriptor mConsoleWriter;
+    private ParcelFileDescriptor mConsoleOutWriter;
+
+    @GuardedBy("mLock")
+    @Nullable
+    private ParcelFileDescriptor mConsoleInReader;
+
+    @GuardedBy("mLock")
+    @Nullable
+    private ParcelFileDescriptor mConsoleInWriter;
 
     @GuardedBy("mLock")
     @Nullable
@@ -372,6 +384,7 @@
                         : null;
 
         mVmOutputCaptured = config.isVmOutputCaptured();
+        mVmConsoleInputSupported = config.isVmConsoleInputSupported();
     }
 
     /**
@@ -787,7 +800,11 @@
 
             try {
                 if (mVmOutputCaptured) {
-                    createVmPipes();
+                    createVmOutputPipes();
+                }
+
+                if (mVmConsoleInputSupported) {
+                    createVmInputPipes();
                 }
 
                 VirtualMachineAppConfig appConfig =
@@ -804,7 +821,9 @@
                         android.system.virtualizationservice.VirtualMachineConfig.appConfig(
                                 appConfig);
 
-                mVirtualMachine = service.createVm(vmConfigParcel, mConsoleWriter, mLogWriter);
+                mVirtualMachine =
+                        service.createVm(
+                                vmConfigParcel, mConsoleOutWriter, mConsoleInReader, mLogWriter);
                 mVirtualMachine.registerCallback(new CallbackTranslator(service));
                 mContext.registerComponentCallbacks(mMemoryManagementCallbacks);
                 mVirtualMachine.start();
@@ -843,12 +862,12 @@
     }
 
     @GuardedBy("mLock")
-    private void createVmPipes() throws VirtualMachineException {
+    private void createVmOutputPipes() throws VirtualMachineException {
         try {
-            if (mConsoleReader == null || mConsoleWriter == null) {
+            if (mConsoleOutReader == null || mConsoleOutWriter == null) {
                 ParcelFileDescriptor[] pipe = ParcelFileDescriptor.createPipe();
-                mConsoleReader = pipe[0];
-                mConsoleWriter = pipe[1];
+                mConsoleOutReader = pipe[0];
+                mConsoleOutWriter = pipe[1];
             }
 
             if (mLogReader == null || mLogWriter == null) {
@@ -857,7 +876,20 @@
                 mLogWriter = pipe[1];
             }
         } catch (IOException e) {
-            throw new VirtualMachineException("Failed to create stream for VM", e);
+            throw new VirtualMachineException("Failed to create output stream for VM", e);
+        }
+    }
+
+    @GuardedBy("mLock")
+    private void createVmInputPipes() throws VirtualMachineException {
+        try {
+            if (mConsoleInReader == null || mConsoleInWriter == null) {
+                ParcelFileDescriptor[] pipe = ParcelFileDescriptor.createPipe();
+                mConsoleInReader = pipe[0];
+                mConsoleInWriter = pipe[1];
+            }
+        } catch (IOException e) {
+            throw new VirtualMachineException("Failed to create input stream for VM", e);
         }
     }
 
@@ -883,12 +915,37 @@
             throw new VirtualMachineException("Capturing vm outputs is turned off");
         }
         synchronized (mLock) {
-            createVmPipes();
-            return new FileInputStream(mConsoleReader.getFileDescriptor());
+            createVmOutputPipes();
+            return new FileInputStream(mConsoleOutReader.getFileDescriptor());
         }
     }
 
     /**
+     * Returns the stream object representing the console input to the virtual machine. The console
+     * input is only available if the {@link VirtualMachineConfig} specifies that it should be
+     * {@linkplain VirtualMachineConfig#isVmConsoleInputSupported supported}.
+     *
+     * <p>NOTE: This method may block and should not be called on the main thread.
+     *
+     * @throws VirtualMachineException if the stream could not be created, or console input is not
+     *     supported.
+     * @hide
+     */
+    @TestApi
+    @WorkerThread
+    @NonNull
+    public OutputStream getConsoleInput() throws VirtualMachineException {
+        if (!mVmConsoleInputSupported) {
+            throw new VirtualMachineException("VM console input is not supported");
+        }
+        synchronized (mLock) {
+            createVmInputPipes();
+            return new FileOutputStream(mConsoleInWriter.getFileDescriptor());
+        }
+    }
+
+
+    /**
      * Returns the stream object representing the log output from the virtual machine. The log
      * output is only available if the VirtualMachineConfig specifies that it should be {@linkplain
      * VirtualMachineConfig#isVmOutputCaptured captured}.
@@ -910,7 +967,7 @@
             throw new VirtualMachineException("Capturing vm outputs is turned off");
         }
         synchronized (mLock) {
-            createVmPipes();
+            createVmOutputPipes();
             return new FileInputStream(mLogReader.getFileDescriptor());
         }
     }
@@ -1325,7 +1382,7 @@
                     return ERROR_PAYLOAD_VERIFICATION_FAILED;
                 case ErrorCode.PAYLOAD_CHANGED:
                     return ERROR_PAYLOAD_CHANGED;
-                case ErrorCode.PAYLOAD_CONFIG_INVALID:
+                case ErrorCode.PAYLOAD_INVALID_CONFIG:
                     return ERROR_PAYLOAD_INVALID_CONFIG;
                 default:
                     return ERROR_UNKNOWN;
diff --git a/javalib/src/android/system/virtualmachine/VirtualMachineConfig.java b/javalib/src/android/system/virtualmachine/VirtualMachineConfig.java
index 93e65db..e8ef195 100644
--- a/javalib/src/android/system/virtualmachine/VirtualMachineConfig.java
+++ b/javalib/src/android/system/virtualmachine/VirtualMachineConfig.java
@@ -21,6 +21,7 @@
 
 import static java.util.Objects.requireNonNull;
 
+import android.annotation.FlaggedApi;
 import android.annotation.IntDef;
 import android.annotation.IntRange;
 import android.annotation.NonNull;
@@ -48,6 +49,7 @@
 import java.io.OutputStream;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
+import java.util.Collections;
 import java.util.Objects;
 import java.util.zip.ZipFile;
 
@@ -61,10 +63,11 @@
 @SystemApi
 public final class VirtualMachineConfig {
     private static final String TAG = "VirtualMachineConfig";
-    private static final String[] EMPTY_STRING_ARRAY = {};
+
+    private static String[] EMPTY_STRING_ARRAY = {};
 
     // These define the schema of the config file persisted on disk.
-    private static final int VERSION = 6;
+    private static final int VERSION = 7;
     private static final String KEY_VERSION = "version";
     private static final String KEY_PACKAGENAME = "packageName";
     private static final String KEY_APKPATH = "apkPath";
@@ -76,6 +79,9 @@
     private static final String KEY_CPU_TOPOLOGY = "cpuTopology";
     private static final String KEY_ENCRYPTED_STORAGE_BYTES = "encryptedStorageBytes";
     private static final String KEY_VM_OUTPUT_CAPTURED = "vmOutputCaptured";
+    private static final String KEY_VM_CONSOLE_INPUT_SUPPORTED = "vmConsoleInputSupported";
+    private static final String KEY_VENDOR_DISK_IMAGE_PATH = "vendorDiskImagePath";
+    private static final String KEY_OS = "os";
 
     /** @hide */
     @Retention(RetentionPolicy.SOURCE)
@@ -121,7 +127,7 @@
 
     /**
      * Run VM with vCPU topology matching the physical CPU topology of the host. Usually takes
-     * longer to boot and cosumes more resources compared to a single vCPU. Typically a good option
+     * longer to boot and consumes more resources compared to a single vCPU. Typically a good option
      * for long-running workloads that benefit from parallel execution.
      *
      * @hide
@@ -164,6 +170,14 @@
     /** Whether the app can read console and log output. */
     private final boolean mVmOutputCaptured;
 
+    /** Whether the app can write console input to the VM */
+    private final boolean mVmConsoleInputSupported;
+
+    @Nullable private final File mVendorDiskImage;
+
+    /** OS name of the VM using payload binaries. null if the VM uses a payload config file. */
+    @Nullable private final String mOs;
+
     private VirtualMachineConfig(
             @Nullable String packageName,
             @Nullable String apkPath,
@@ -174,7 +188,10 @@
             long memoryBytes,
             @CpuTopology int cpuTopology,
             long encryptedStorageBytes,
-            boolean vmOutputCaptured) {
+            boolean vmOutputCaptured,
+            boolean vmConsoleInputSupported,
+            @Nullable File vendorDiskImage,
+            @Nullable String os) {
         // This is only called from Builder.build(); the builder handles parameter validation.
         mPackageName = packageName;
         mApkPath = apkPath;
@@ -186,6 +203,9 @@
         mCpuTopology = cpuTopology;
         mEncryptedStorageBytes = encryptedStorageBytes;
         mVmOutputCaptured = vmOutputCaptured;
+        mVmConsoleInputSupported = vmConsoleInputSupported;
+        mVendorDiskImage = vendorDiskImage;
+        mOs = os;
     }
 
     /** Loads a config from a file. */
@@ -260,6 +280,17 @@
             builder.setEncryptedStorageBytes(encryptedStorageBytes);
         }
         builder.setVmOutputCaptured(b.getBoolean(KEY_VM_OUTPUT_CAPTURED));
+        builder.setVmConsoleInputSupported(b.getBoolean(KEY_VM_CONSOLE_INPUT_SUPPORTED));
+
+        String vendorDiskImagePath = b.getString(KEY_VENDOR_DISK_IMAGE_PATH);
+        if (vendorDiskImagePath != null) {
+            builder.setVendorDiskImage(new File(vendorDiskImagePath));
+        }
+
+        String os = b.getString(KEY_OS);
+        if (os != null) {
+            builder.setOs(os);
+        }
 
         return builder.build();
     }
@@ -295,6 +326,11 @@
             b.putLong(KEY_ENCRYPTED_STORAGE_BYTES, mEncryptedStorageBytes);
         }
         b.putBoolean(KEY_VM_OUTPUT_CAPTURED, mVmOutputCaptured);
+        b.putBoolean(KEY_VM_CONSOLE_INPUT_SUPPORTED, mVmConsoleInputSupported);
+        if (mVendorDiskImage != null) {
+            b.putString(KEY_VENDOR_DISK_IMAGE_PATH, mVendorDiskImage.getAbsolutePath());
+        }
+        b.putString(KEY_OS, mOs);
         b.writeToStream(output);
     }
 
@@ -413,6 +449,30 @@
     }
 
     /**
+     * Returns whether the app can write to the VM console.
+     *
+     * @see Builder#setVmConsoleInputSupported
+     * @hide
+     */
+    @TestApi
+    public boolean isVmConsoleInputSupported() {
+        return mVmConsoleInputSupported;
+    }
+
+    /**
+     * Returns the OS of the VM using a payload binary. Returns null if the VM uses payload config.
+     *
+     * @see Builder#setOs
+     * @hide
+     */
+    @TestApi
+    @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES")
+    @Nullable
+    public String getOs() {
+        return mOs;
+    }
+
+    /**
      * Tests if this config is compatible with other config. Being compatible means that the configs
      * can be interchangeably used for the same virtual machine; they do not change the VM identity
      * or secrets. Such changes include varying the number of CPUs or the size of the RAM. Changes
@@ -431,10 +491,11 @@
                 && this.mProtectedVm == other.mProtectedVm
                 && this.mEncryptedStorageBytes == other.mEncryptedStorageBytes
                 && this.mVmOutputCaptured == other.mVmOutputCaptured
+                && this.mVmConsoleInputSupported == other.mVmConsoleInputSupported
                 && Objects.equals(this.mPayloadConfigPath, other.mPayloadConfigPath)
                 && Objects.equals(this.mPayloadBinaryName, other.mPayloadBinaryName)
                 && Objects.equals(this.mPackageName, other.mPackageName)
-                && Objects.equals(this.mApkPath, other.mApkPath);
+                && Objects.equals(this.mOs, other.mOs);
     }
 
     /**
@@ -458,6 +519,8 @@
         if (mPayloadBinaryName != null) {
             VirtualMachinePayloadConfig payloadConfig = new VirtualMachinePayloadConfig();
             payloadConfig.payloadBinaryName = mPayloadBinaryName;
+            payloadConfig.osName = mOs;
+            payloadConfig.extraApks = Collections.emptyList();
             vsConfig.payload =
                     VirtualMachineAppConfig.Payload.payloadConfig(payloadConfig);
         } else {
@@ -482,8 +545,21 @@
                 vsConfig.cpuTopology = android.system.virtualizationservice.CpuTopology.ONE_CPU;
                 break;
         }
-        // Don't allow apps to set task profiles ... at least for now.
-        vsConfig.taskProfiles = EMPTY_STRING_ARRAY;
+        if (mVendorDiskImage != null) {
+            VirtualMachineAppConfig.CustomConfig customConfig =
+                    new VirtualMachineAppConfig.CustomConfig();
+            customConfig.taskProfiles = EMPTY_STRING_ARRAY;
+            customConfig.devices = EMPTY_STRING_ARRAY;
+            try {
+                customConfig.vendorImage =
+                        ParcelFileDescriptor.open(mVendorDiskImage, MODE_READ_ONLY);
+            } catch (FileNotFoundException e) {
+                throw new VirtualMachineException(
+                        "Failed to open vendor disk image " + mVendorDiskImage.getAbsolutePath(),
+                        e);
+            }
+            vsConfig.customConfig = customConfig;
+        }
         return vsConfig;
     }
 
@@ -543,6 +619,8 @@
      */
     @SystemApi
     public static final class Builder {
+        private final String DEFAULT_OS = "microdroid";
+
         @Nullable private final String mPackageName;
         @Nullable private String mApkPath;
         @Nullable private String mPayloadConfigPath;
@@ -554,6 +632,9 @@
         @CpuTopology private int mCpuTopology = CPU_TOPOLOGY_ONE_CPU;
         private long mEncryptedStorageBytes;
         private boolean mVmOutputCaptured = false;
+        private boolean mVmConsoleInputSupported = false;
+        @Nullable private File mVendorDiskImage;
+        @Nullable private String mOs;
 
         /**
          * Creates a builder for the given context.
@@ -593,15 +674,25 @@
                 throw new IllegalStateException("apkPath or packageName must be specified");
             }
 
+            String os = null;
             if (mPayloadBinaryName == null) {
                 if (mPayloadConfigPath == null) {
                     throw new IllegalStateException("setPayloadBinaryName must be called");
                 }
+                if (mOs != null) {
+                    throw new IllegalStateException(
+                            "setPayloadConfigPath and setOs may not both be called");
+                }
             } else {
                 if (mPayloadConfigPath != null) {
                     throw new IllegalStateException(
                             "setPayloadBinaryName and setPayloadConfigPath may not both be called");
                 }
+                if (mOs != null) {
+                    os = mOs;
+                } else {
+                    os = DEFAULT_OS;
+                }
             }
 
             if (!mProtectedVmSet) {
@@ -612,6 +703,10 @@
                 throw new IllegalStateException("debug level must be FULL to capture output");
             }
 
+            if (mVmConsoleInputSupported && mDebugLevel != DEBUG_LEVEL_FULL) {
+                throw new IllegalStateException("debug level must be FULL to use console input");
+            }
+
             return new VirtualMachineConfig(
                     packageName,
                     apkPath,
@@ -622,7 +717,10 @@
                     mMemoryBytes,
                     mCpuTopology,
                     mEncryptedStorageBytes,
-                    mVmOutputCaptured);
+                    mVmOutputCaptured,
+                    mVmConsoleInputSupported,
+                    mVendorDiskImage,
+                    os);
         }
 
         /**
@@ -822,5 +920,53 @@
             mVmOutputCaptured = captured;
             return this;
         }
+
+        /**
+         * Sets whether to allow the app to write to the VM console. Default is {@code false}.
+         *
+         * <p>Setting this as {@code true} will allow the app to directly write into {@linkplain
+         * VirtualMachine#getConsoleInput console input}.
+         *
+         * <p>The {@linkplain #setDebugLevel debug level} must be {@link #DEBUG_LEVEL_FULL} to be
+         * set as true.
+         *
+         * @hide
+         */
+        @TestApi
+        @NonNull
+        public Builder setVmConsoleInputSupported(boolean supported) {
+            mVmConsoleInputSupported = supported;
+            return this;
+        }
+
+        /**
+         * Sets the path to the disk image with vendor-specific modules.
+         *
+         * @hide
+         */
+        @TestApi
+        @RequiresPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION)
+        @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES")
+        @NonNull
+        public Builder setVendorDiskImage(@NonNull File vendorDiskImage) {
+            mVendorDiskImage =
+                    requireNonNull(vendorDiskImage, "vendor disk image must not be null");
+            return this;
+        }
+
+        /**
+         * Sets an OS for the VM. Defaults to {@code "microdroid"}.
+         *
+         * <p>See {@link VirtualMachineManager#getSupportedOSList} for available OS names.
+         *
+         * @hide
+         */
+        @TestApi
+        @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES")
+        @NonNull
+        public Builder setOs(@NonNull String os) {
+            mOs = requireNonNull(os, "os must not be null");
+            return this;
+        }
     }
 }
diff --git a/javalib/src/android/system/virtualmachine/VirtualMachineManager.java b/javalib/src/android/system/virtualmachine/VirtualMachineManager.java
index b7ea22c..2802659 100644
--- a/javalib/src/android/system/virtualmachine/VirtualMachineManager.java
+++ b/javalib/src/android/system/virtualmachine/VirtualMachineManager.java
@@ -18,16 +18,21 @@
 
 import static java.util.Objects.requireNonNull;
 
+import android.annotation.FlaggedApi;
 import android.annotation.IntDef;
 import android.annotation.NonNull;
 import android.annotation.Nullable;
 import android.annotation.RequiresFeature;
 import android.annotation.RequiresPermission;
+import android.annotation.StringDef;
 import android.annotation.SystemApi;
+import android.annotation.TestApi;
 import android.annotation.WorkerThread;
 import android.content.Context;
 import android.content.pm.PackageManager;
+import android.os.RemoteException;
 import android.sysprop.HypervisorProperties;
+import android.system.virtualizationservice.IVirtualizationService;
 import android.util.ArrayMap;
 
 import com.android.internal.annotations.GuardedBy;
@@ -35,6 +40,8 @@
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.ref.WeakReference;
+import java.util.Arrays;
+import java.util.List;
 import java.util.Map;
 
 /**
@@ -96,6 +103,41 @@
     public static final int CAPABILITY_NON_PROTECTED_VM = 2;
 
     /**
+     * Features provided by {@link VirtualMachineManager}.
+     *
+     * @hide
+     */
+    @Retention(RetentionPolicy.SOURCE)
+    @StringDef(
+            prefix = "FEATURE_",
+            value = {FEATURE_DICE_CHANGES, FEATURE_MULTI_TENANT, FEATURE_VENDOR_MODULES})
+    public @interface Features {}
+
+    /**
+     * Feature to include new data in the VM DICE chain.
+     *
+     * @hide
+     */
+    @TestApi
+    public static final String FEATURE_DICE_CHANGES = IVirtualizationService.FEATURE_DICE_CHANGES;
+    /**
+     * Feature to run payload as non-root user.
+     *
+     * @hide
+     */
+    @TestApi
+    public static final String FEATURE_MULTI_TENANT = IVirtualizationService.FEATURE_MULTI_TENANT;
+
+    /**
+     * Feature to allow vendor modules in Microdroid.
+     *
+     * @hide
+     */
+    @TestApi
+    public static final String FEATURE_VENDOR_MODULES =
+            IVirtualizationService.FEATURE_VENDOR_MODULES;
+
+    /**
      * Returns a set of flags indicating what this implementation of virtualization is capable of.
      *
      * @see #CAPABILITY_PROTECTED_VM
@@ -277,4 +319,41 @@
         }
         return null;
     }
+
+    /**
+     * Returns a list of supported OS names.
+     *
+     * @hide
+     */
+    @TestApi
+    @FlaggedApi("RELEASE_AVF_ENABLE_VENDOR_MODULES")
+    @NonNull
+    public List<String> getSupportedOSList() throws VirtualMachineException {
+        synchronized (sCreateLock) {
+            VirtualizationService service = VirtualizationService.getInstance();
+            try {
+                return Arrays.asList(service.getBinder().getSupportedOSList());
+            } catch (RemoteException e) {
+                throw e.rethrowAsRuntimeException();
+            }
+        }
+    }
+
+    /**
+     * Returns {@code true} if given {@code featureName} is enabled.
+     *
+     * @hide
+     */
+    @TestApi
+    @RequiresPermission(VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION)
+    public boolean isFeatureEnabled(@Features String featureName) throws VirtualMachineException {
+        synchronized (sCreateLock) {
+            VirtualizationService service = VirtualizationService.getInstance();
+            try {
+                return service.getBinder().isFeatureEnabled(featureName);
+            } catch (RemoteException e) {
+                throw e.rethrowAsRuntimeException();
+            }
+        }
+    }
 }
diff --git a/javalib/src/android/system/virtualmachine/VirtualizationService.java b/javalib/src/android/system/virtualmachine/VirtualizationService.java
index 1cf97b5..57990a9 100644
--- a/javalib/src/android/system/virtualmachine/VirtualizationService.java
+++ b/javalib/src/android/system/virtualmachine/VirtualizationService.java
@@ -57,13 +57,13 @@
     private VirtualizationService() throws VirtualMachineException {
         int clientFd = nativeSpawn();
         if (clientFd < 0) {
-            throw new VirtualMachineException("Could not spawn VirtualizationService");
+            throw new VirtualMachineException("Could not spawn Virtualization Manager");
         }
         mClientFd = ParcelFileDescriptor.adoptFd(clientFd);
 
         IBinder binder = nativeConnect(mClientFd.getFd());
         if (binder == null) {
-            throw new VirtualMachineException("Could not connect to VirtualizationService");
+            throw new VirtualMachineException("Could not connect to Virtualization Manager");
         }
         mBinder = IVirtualizationService.Stub.asInterface(binder);
     }
diff --git a/launcher/Android.bp b/launcher/Android.bp
index 6c6417f..c6873ce 100644
--- a/launcher/Android.bp
+++ b/launcher/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/launcher/main.cpp b/launcher/main.cpp
index c3f9988..5ae9956 100644
--- a/launcher/main.cpp
+++ b/launcher/main.cpp
@@ -61,7 +61,7 @@
         return EXIT_FAILURE;
     }
 
-    android::base::InitLogging(argv, &android::base::KernelLogger);
+    android::base::InitLogging(argv);
 
     const char* libname = argv[1];
     auto handle = load(libname);
diff --git a/libs/apexutil/Android.bp b/libs/apexutil/Android.bp
index 4a4a673..410c3cf 100644
--- a/libs/apexutil/Android.bp
+++ b/libs/apexutil/Android.bp
@@ -1,15 +1,18 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "libapexutil_rust.defaults",
     crate_name: "apexutil",
-    host_supported: true,
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     edition: "2021",
     rustlibs: [
+        "libapex_manifest_rs",
         "liblog_rust",
+        "libprotobuf",
         "libthiserror",
         "libvbmeta_rust",
         "libzip",
@@ -26,18 +29,13 @@
     defaults: ["libapexutil_rust.defaults"],
     prefer_rlib: true,
     test_suites: ["general-tests"],
-    data: ["tests/data/*"],
+    // We're reusing test APEXes from system/apex/apexd
+    data: [
+        ":apex.apexd_test",
+        ":apex.apexd_test_v2_no_pb",
+        ":gen_key_mismatch_with_image_apex",
+    ],
     rustlibs: [
         "libhex",
     ],
-    target: {
-        host: {
-            // TODO(b/204562227): remove once the build does this automatically
-            data_libs: [
-                "libc++",
-                "libcrypto",
-                "libz",
-            ],
-        },
-    },
 }
diff --git a/libs/apexutil/TEST_MAPPING b/libs/apexutil/TEST_MAPPING
index f66a400..73848d3 100644
--- a/libs/apexutil/TEST_MAPPING
+++ b/libs/apexutil/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/libs/apexutil/src/lib.rs b/libs/apexutil/src/lib.rs
index 8a934e2..639135f 100644
--- a/libs/apexutil/src/lib.rs
+++ b/libs/apexutil/src/lib.rs
@@ -14,6 +14,8 @@
 
 //! Routines for handling APEX payload
 
+use apex_manifest::apex_manifest::ApexManifest;
+use protobuf::Message;
 use std::fs::File;
 use std::io::{self, Read};
 use thiserror::Error;
@@ -23,28 +25,32 @@
 
 const APEX_PUBKEY_ENTRY: &str = "apex_pubkey";
 const APEX_PAYLOAD_ENTRY: &str = "apex_payload.img";
+const APEX_MANIFEST_ENTRY: &str = "apex_manifest.pb";
 
 /// Errors from parsing an APEX.
 #[derive(Debug, Error)]
 pub enum ApexParseError {
     /// There was an IO error.
-    #[error("IO error")]
+    #[error("IO error: {0}")]
     Io(#[from] io::Error),
     /// The Zip archive was invalid.
-    #[error("Cannot read zip archive")]
+    #[error("Cannot read zip archive: {0}")]
     InvalidZip(&'static str),
-    /// The apex_pubkey file was missing from the APEX.
-    #[error("APEX doesn't contain apex_pubkey")]
-    PubkeyMissing,
-    /// The apex_payload.img file was missing from the APEX.
-    #[error("APEX doesn't contain apex_payload.img")]
-    PayloadMissing,
+    /// An expected file was missing from the APEX.
+    #[error("APEX doesn't contain {0}")]
+    MissingFile(&'static str),
     /// There was no hashtree descriptor in the APEX payload's VBMeta image.
     #[error("Non-hashtree descriptor found in payload's VBMeta image")]
     DescriptorNotHashtree,
     /// There was an error parsing the APEX payload's VBMeta image.
-    #[error("Could not parse payload's VBMeta image")]
+    #[error("Could not parse payload's VBMeta image: {0}")]
     PayloadVbmetaError(#[from] vbmeta::VbMetaImageParseError),
+    /// Data was missing from the VBMeta
+    #[error("Data missing from VBMeta: {0}")]
+    VbmetaMissingData(&'static str),
+    /// An error occurred parsing the APEX manifest as a protobuf
+    #[error("Error parsing manifest protobuf: {0}")]
+    ManifestProtobufError(#[from] protobuf::Error),
 }
 
 /// Errors from verifying an APEX.
@@ -58,29 +64,44 @@
     PayloadVbmetaError(#[from] vbmeta::VbMetaImageVerificationError),
     /// The APEX payload was not verified with the apex_pubkey.
     #[error("APEX pubkey mismatch")]
-    ApexPubkeyMistmatch,
+    ApexPubkeyMismatch,
 }
 
-/// Verification result holds public key and root digest of apex_payload.img
+/// Information extracted from the APEX during AVB verification.
+#[derive(Debug)]
 pub struct ApexVerificationResult {
+    /// The name of the APEX, from its manifest.
+    pub name: Option<String>,
+    /// The version of the APEX, from its manifest.
+    pub version: Option<i64>,
     /// The public key that verifies the payload signature.
     pub public_key: Vec<u8>,
     /// The root digest of the payload hashtree.
     pub root_digest: Vec<u8>,
 }
 
-/// Verify APEX payload by AVB verification and return public key and root digest
+/// Verify APEX payload by AVB verification and return information about the APEX.
+/// This verifies that the VBMeta is correctly signed by the public key specified in the APEX.
+/// It doesn't verify that that is the correct key, nor does it verify that the payload matches
+/// the signed root hash - that is handled by dm-verity once apexd has mounted the APEX.
 pub fn verify(path: &str) -> Result<ApexVerificationResult, ApexVerificationError> {
     let apex_file = File::open(path).map_err(ApexParseError::Io)?;
-    let (public_key, image_offset, image_size) = get_public_key_and_image_info(&apex_file)?;
+    let ApexZipInfo { public_key, image_offset, image_size, manifest } =
+        get_apex_zip_info(&apex_file)?;
     let vbmeta = VbMetaImage::verify_reader_region(apex_file, image_offset, image_size)?;
     let root_digest = find_root_digest(&vbmeta)?;
-    match vbmeta.public_key() {
-        Some(payload_public_key) if public_key == payload_public_key => {
-            Ok(ApexVerificationResult { public_key, root_digest })
-        }
-        _ => Err(ApexVerificationError::ApexPubkeyMistmatch),
+    let vbmeta_public_key =
+        vbmeta.public_key().ok_or(ApexParseError::VbmetaMissingData("public key"))?;
+    if vbmeta_public_key != public_key {
+        return Err(ApexVerificationError::ApexPubkeyMismatch);
     }
+    let (name, version) = if cfg!(dice_changes) {
+        let ApexManifestInfo { name, version } = decode_manifest(&manifest)?;
+        (Some(name), Some(version))
+    } else {
+        (None, None)
+    };
+    Ok(ApexVerificationResult { name, version, public_key, root_digest })
 }
 
 fn find_root_digest(vbmeta: &VbMetaImage) -> Result<Vec<u8>, ApexParseError> {
@@ -93,46 +114,52 @@
     Err(ApexParseError::DescriptorNotHashtree)
 }
 
-/// Gets the hash of the payload's verified VBMeta image data.
-pub fn get_payload_vbmeta_image_hash(path: &str) -> Result<Vec<u8>, ApexVerificationError> {
-    let apex_file = File::open(path).map_err(ApexParseError::Io)?;
-    let (_, offset, size) = get_public_key_and_image_info(&apex_file)?;
-    let vbmeta = VbMetaImage::verify_reader_region(apex_file, offset, size)?;
-    Ok(vbmeta.hash().ok_or(ApexVerificationError::ApexPubkeyMistmatch)?.to_vec())
+struct ApexZipInfo {
+    public_key: Vec<u8>,
+    image_offset: u64,
+    image_size: u64,
+    manifest: Vec<u8>,
 }
 
-fn get_public_key_and_image_info(apex_file: &File) -> Result<(Vec<u8>, u64, u64), ApexParseError> {
-    let mut z = ZipArchive::new(apex_file).map_err(|err| match err {
-        ZipError::Io(err) => ApexParseError::Io(err),
-        ZipError::InvalidArchive(s) | ZipError::UnsupportedArchive(s) => {
-            ApexParseError::InvalidZip(s)
-        }
-        ZipError::FileNotFound => unreachable!(),
-    })?;
+fn get_apex_zip_info(apex_file: &File) -> Result<ApexZipInfo, ApexParseError> {
+    let mut z = ZipArchive::new(apex_file).map_err(|err| from_zip_error(err, "?"))?;
 
     let mut public_key = Vec::new();
     z.by_name(APEX_PUBKEY_ENTRY)
-        .map_err(|err| match err {
-            ZipError::Io(err) => ApexParseError::Io(err),
-            ZipError::FileNotFound => ApexParseError::PubkeyMissing,
-            ZipError::InvalidArchive(s) | ZipError::UnsupportedArchive(s) => {
-                ApexParseError::InvalidZip(s)
-            }
-        })?
+        .map_err(|err| from_zip_error(err, APEX_PUBKEY_ENTRY))?
         .read_to_end(&mut public_key)?;
 
     let (image_offset, image_size) = z
         .by_name(APEX_PAYLOAD_ENTRY)
         .map(|f| (f.data_start(), f.size()))
-        .map_err(|err| match err {
-            ZipError::Io(err) => ApexParseError::Io(err),
-            ZipError::FileNotFound => ApexParseError::PayloadMissing,
-            ZipError::InvalidArchive(s) | ZipError::UnsupportedArchive(s) => {
-                ApexParseError::InvalidZip(s)
-            }
-        })?;
+        .map_err(|err| from_zip_error(err, APEX_PAYLOAD_ENTRY))?;
 
-    Ok((public_key, image_offset, image_size))
+    let mut manifest = Vec::new();
+    z.by_name(APEX_MANIFEST_ENTRY)
+        .map_err(|err| from_zip_error(err, APEX_MANIFEST_ENTRY))?
+        .read_to_end(&mut manifest)?;
+
+    Ok(ApexZipInfo { public_key, image_offset, image_size, manifest })
+}
+
+struct ApexManifestInfo {
+    name: String,
+    version: i64,
+}
+
+fn decode_manifest(mut manifest: &[u8]) -> Result<ApexManifestInfo, ApexParseError> {
+    let manifest = ApexManifest::parse_from_reader(&mut manifest)?;
+    Ok(ApexManifestInfo { name: manifest.name, version: manifest.version })
+}
+
+fn from_zip_error(err: ZipError, name: &'static str) -> ApexParseError {
+    match err {
+        ZipError::Io(err) => ApexParseError::Io(err),
+        ZipError::InvalidArchive(s) | ZipError::UnsupportedArchive(s) => {
+            ApexParseError::InvalidZip(s)
+        }
+        ZipError::FileNotFound => ApexParseError::MissingFile(name),
+    }
 }
 
 #[cfg(test)]
@@ -141,20 +168,68 @@
 
     #[test]
     fn apex_verification_returns_valid_result() {
-        let res = verify("tests/data/test.apex").unwrap();
-        // The expected hex is generated when we ran the method the first time.
+        let res = verify("apex.apexd_test.apex").unwrap();
+        let (expected_name, expected_version) = if cfg!(dice_changes) {
+            (Some("com.android.apex.test_package"), Some(1))
+        } else {
+            (None, None)
+        };
+        assert_eq!(res.name.as_deref(), expected_name);
+        assert_eq!(res.version, expected_version);
+        // The expected hex values were generated when we ran the method the first time.
         assert_eq!(
             hex::encode(res.root_digest),
-            "fe11ab17da0a3a738b54bdc3a13f6139cbdf91ec32f001f8d4bbbf8938e04e39"
+            "54265da77ae1fd619e39809ad99fedc576bb20c0c7a8002190fa64438436299f"
+        );
+        assert_eq!(
+            hex::encode(res.public_key),
+            "\
+            00001000963a5527aaf0145b3bb5f899a05034ccc76dafdd671dbf4e42c04df2eeba15\
+            6c884816d7d08ef8d834d4adc27979afed9eaf406694d0d600f0b6d31e3ab85da47d27\
+            9c223a1630e02332d920587617ea766a136057a3a3232a7c42f83fb3763e853be4026c\
+            067524a95fcbfcc6caadfb553210bb5385f5adc5caeb0e3f6a9aa56af88d8899d962eb\
+            807864feabeeacdd868697935fb4cc4843957e0d90ee4293c715c4e5b970e6545a17d1\
+            735f814c7d4dbdeaac97275a84f292e3715c158d38eb00eebd010dd2fa56595c0e5627\
+            06c7a94e566912f993e5e35c04b2a314d1bce1ceb10de6c50f8101ddb6ee993fc79959\
+            2e79ee73b77741ee5c076c89343684344a6d080e5529a046d506d104bf32903e39c363\
+            b020fee9d87e7c6ffdad120b630386e958416ac156bc2d7301836c79e926e8f185a640\
+            be05135e17018c88dde02cd7bd49655e9e9dff7f965fb8e68217236c18d23b6d7e7632\
+            184acb95b088598601c809d5e66c19f5e06b5e5ff1bbae7e3142959d9380db2d4a25c8\
+            757975232ea311016e830703a6023b0986e885f2eda066517fce09f33f359b6ef7cc5a\
+            2fdaced74257661bad184a653ea2d80d1af68de5821c06a472635f0276dc42d699f588\
+            ea6c46189ca1ad544bbd4951a766bc4119b0ea671cb16556762721723bf1db47c83c76\
+            a7cc2fd3b6029efec9908d9d4640294f6ea46f6e1a3195e9252c393e35698911a7c496\
+            138dc2dd8d9dcb470ae1c6d2224d13b160fb3ae4bc235f6133c2ff5f9232fb89adfdba\
+            48dcc47cf29a22cd47dcec0b1a179f352c9848a8e04ac37f35777a24312c821febc591\
+            84c8cdefc88e50b4d6bc9530ca743f4284c9773677d38527e6e8020fe367f0f16a6c49\
+            9a7f2da95ec6471f7382e5c0da98b531702cb55a560de7cafc7b6111aae0f896fb1fed\
+            d4997a954c6c083ef1fd3bb13fef3f95022523fb1fbe7f4a49e12e54a5206f95daa316\
+            ac009b7bee4039f769fd28033db6013df841c86d8345d44418fbc9f669e4ee3294b2ff\
+            29d048f53d768c0a41f9a280f0229d9912e8b2fb734617a9947be973ed1dc7bdeac9e2\
+            6028d59317098a44bacdb3b10ccde6ef02f7c94124461032a033701ce523b13142658c\
+            265385198903ccf227ad5ae88ec31e586cd8f855641fd2646dba8053d0d0924f132505\
+            8141f1c7433aa9686f48e3f3a972b56776eaf8bf22a740d1aea2ef473184d697de1dab\
+            9b62a227611c7500b11dea2e5eb8051807c0d1f2fe032acfd7701c017e629f99c74de5\
+            da4c2a542f17b9833beb14442aa7c2990b828473376ea03fdb4a650b88e821fe5026e8\
+            ffb7002d095c9877ee3a98a4488ed3287e9be4942a223f4e32bc26c2ebd02eec20dc82\
+            7493b44f4efaf9b2e175d4de2b07c32d6d359e234c9e50ef905ffa7f6907c313a3c9f4\
+            40d1efd5ec7cbeef06dcfd649f4c8219ad"
         );
     }
 
     #[test]
-    fn payload_vbmeta_has_valid_image_hash() {
-        let result = get_payload_vbmeta_image_hash("tests/data/test.apex").unwrap();
-        assert_eq!(
-            hex::encode(result),
-            "296e32a76544de9da01713e471403ab4667705ad527bb4f1fac0cf61e7ce122d"
-        );
+    fn apex_no_manifest_fails_verification() {
+        match verify("apex.apexd_test_v2_no_pb.apex").unwrap_err() {
+            ApexVerificationError::ParseError(ApexParseError::MissingFile(_)) => (),
+            e => panic!("Unexpected error {e}"),
+        }
+    }
+
+    #[test]
+    fn apex_signature_mismatch_fails_verification() {
+        match verify("apex.apexd_test_wrong_public_key.apex").unwrap_err() {
+            ApexVerificationError::ApexPubkeyMismatch => (),
+            e => panic!("Unexpected error {e}"),
+        }
     }
 }
diff --git a/libs/apexutil/tests/data/README.md b/libs/apexutil/tests/data/README.md
deleted file mode 100644
index 82ebec6..0000000
--- a/libs/apexutil/tests/data/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Test data
-
-- test.apex: copied from system/apexshim/prebuilts/x86/com.android.apex.cts.shim.v1.apex
\ No newline at end of file
diff --git a/libs/apexutil/tests/data/test.apex b/libs/apexutil/tests/data/test.apex
deleted file mode 100644
index fd79365..0000000
--- a/libs/apexutil/tests/data/test.apex
+++ /dev/null
Binary files differ
diff --git a/libs/apkmanifest/Android.bp b/libs/apkmanifest/Android.bp
new file mode 100644
index 0000000..e6fcbef
--- /dev/null
+++ b/libs/apkmanifest/Android.bp
@@ -0,0 +1,46 @@
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+cc_library_shared {
+    name: "libapkmanifest_native",
+    srcs: ["native/*.cpp"],
+    shared_libs: [
+        "libandroidfw",
+        "libbase",
+        "liblog",
+        "libutils",
+    ],
+}
+
+rust_bindgen {
+    name: "libapkmanifest_bindgen",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    wrapper_src: "native/apkmanifest.hpp",
+    crate_name: "apkmanifest_bindgen",
+    source_stem: "bindings",
+    bindgen_flags: [
+        "--default-enum-style rust",
+    ],
+}
+
+rust_library {
+    name: "libapkmanifest",
+    crate_name: "apkmanifest",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    srcs: ["src/apkmanifest.rs"],
+    rustlibs: [
+        "libanyhow",
+        "libapkzip",
+        "libapkmanifest_bindgen",
+        "libscopeguard",
+    ],
+    shared_libs: ["libapkmanifest_native"],
+    multilib: {
+        lib32: {
+            enabled: false,
+        },
+    },
+}
diff --git a/libs/apkmanifest/native/apkmanifest.cpp b/libs/apkmanifest/native/apkmanifest.cpp
new file mode 100644
index 0000000..ab0ba72
--- /dev/null
+++ b/libs/apkmanifest/native/apkmanifest.cpp
@@ -0,0 +1,207 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "apkmanifest.hpp"
+
+#include <android-base/logging.h>
+#include <android-base/result.h>
+#include <androidfw/AssetsProvider.h>
+#include <androidfw/ResourceTypes.h>
+#include <androidfw/StringPiece.h>
+#include <androidfw/Util.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <utils/Errors.h>
+
+#include <cstdlib>
+#include <limits>
+#include <string>
+#include <string_view>
+
+using android::Asset;
+using android::AssetsProvider;
+using android::OK;
+using android::Res_value;
+using android::ResXMLParser;
+using android::ResXMLTree;
+using android::statusToString;
+using android::StringPiece16;
+using android::base::Error;
+using android::base::Result;
+using android::util::Utf16ToUtf8;
+using std::u16string_view;
+using std::unique_ptr;
+
+struct ApkManifestInfo {
+    std::string package;
+    uint32_t version_code;
+    uint32_t version_code_major;
+};
+
+namespace {
+// See https://developer.android.com/guide/topics/manifest/manifest-element
+constexpr u16string_view MANIFEST_TAG_NAME{u"manifest"};
+constexpr u16string_view ANDROID_NAMESPACE_URL{u"http://schemas.android.com/apk/res/android"};
+constexpr u16string_view PACKAGE_ATTRIBUTE_NAME{u"package"};
+constexpr u16string_view VERSION_CODE_ATTRIBUTE_NAME{u"versionCode"};
+constexpr u16string_view VERSION_CODE_MAJOR_ATTRIBUTE_NAME{u"versionCodeMajor"};
+
+// Read through the XML parse tree up to the <manifest> element.
+Result<void> findManifestElement(ResXMLTree& tree) {
+    for (;;) {
+        ResXMLParser::event_code_t event = tree.next();
+        switch (event) {
+            case ResXMLParser::END_DOCUMENT:
+            case ResXMLParser::END_TAG:
+            case ResXMLParser::TEXT:
+            default:
+                return Error() << "Unexpected XML parsing event: " << event;
+            case ResXMLParser::BAD_DOCUMENT:
+                return Error() << "Failed to parse XML: " << statusToString(tree.getError());
+            case ResXMLParser::START_NAMESPACE:
+            case ResXMLParser::END_NAMESPACE:
+                // Not of interest, keep going.
+                break;
+            case ResXMLParser::START_TAG:
+                // The first tag in an AndroidManifest.xml should be <manifest> (no namespace).
+                // And that's actually the only tag we care about.
+                if (tree.getElementNamespaceID() >= 0) {
+                    return Error() << "Root element has unexpected namespace.";
+                }
+                size_t nameLength = 0;
+                const char16_t* nameChars = tree.getElementName(&nameLength);
+                if (!nameChars) {
+                    return Error() << "Missing tag name";
+                }
+                if (u16string_view(nameChars, nameLength) != MANIFEST_TAG_NAME) {
+                    return Error() << "Expected <manifest> as root element";
+                }
+                return {};
+        }
+    }
+}
+
+// Return an attribute encoded as a string, converted to UTF-8. Note that all
+// attributes are strings in the original XML, but the binary format encodes
+// some as binary numbers etc. This function does not handle converting those
+// encodings back to strings, so should only be used when it is known that a
+// numeric value is not allowed.
+Result<std::string> getStringOnlyAttribute(const ResXMLTree& tree, size_t index) {
+    size_t len;
+    const char16_t* value = tree.getAttributeStringValue(index, &len);
+    if (!value) {
+        return Error() << "Expected attribute to have string value";
+    }
+    return Utf16ToUtf8(StringPiece16(value, len));
+}
+
+// Return the u32 value of an attribute.
+Result<uint32_t> getU32Attribute(const ResXMLTree& tree, size_t index) {
+    auto type = tree.getAttributeDataType(index);
+    switch (type) {
+        case Res_value::TYPE_INT_DEC:
+        case Res_value::TYPE_INT_HEX:
+            // This is how we'd expect the version to be encoded - and we don't
+            // care what base it was originally in.
+            return tree.getAttributeData(index);
+        case Res_value::TYPE_STRING: {
+            // If the original string is encoded, then we need to convert it.
+            auto str = OR_RETURN(getStringOnlyAttribute(tree, index));
+            char* str_end = nullptr;
+            // Note that by specifying base 0 we allow for octal, hex, or
+            // decimal representations here.
+            unsigned long value = std::strtoul(str.c_str(), &str_end, 0);
+            if (str_end != str.c_str() + str.size() ||
+                value > std::numeric_limits<uint32_t>::max()) {
+                return Error() << "Invalid numeric value";
+            }
+            return static_cast<uint32_t>(value);
+        }
+        default:
+            return Error() << "Expected numeric value, got type " << type;
+    }
+}
+
+// Parse the binary manifest and extract the information we care about.
+// Everything we're interested in should be an attribute on the <manifest> tag.
+// We don't care what order they come in, absent attributes will be treated as
+// the default value, and any unknown attributes (including ones not in the
+// expected namespace) will be ignored.
+Result<unique_ptr<ApkManifestInfo>> parseManifest(const void* manifest, size_t size) {
+    ResXMLTree tree;
+    auto status = tree.setTo(manifest, size);
+    if (status != OK) {
+        return Error() << "Failed to create XML Tree: " << statusToString(status);
+    }
+
+    OR_RETURN(findManifestElement(tree));
+
+    unique_ptr<ApkManifestInfo> info{new ApkManifestInfo{}};
+
+    size_t count = tree.getAttributeCount();
+    for (size_t i = 0; i < count; ++i) {
+        size_t len;
+        const char16_t* chars;
+
+        chars = tree.getAttributeNamespace(i, &len);
+        auto namespaceUrl = chars ? u16string_view(chars, len) : u16string_view();
+
+        chars = tree.getAttributeName(i, &len);
+        auto attributeName = chars ? u16string_view(chars, len) : u16string_view();
+
+        if (namespaceUrl.empty()) {
+            if (attributeName == PACKAGE_ATTRIBUTE_NAME) {
+                auto result = getStringOnlyAttribute(tree, i);
+                if (!result.ok()) return Error() << "Package name: " << result.error();
+                info->package = *result;
+            }
+        } else if (namespaceUrl == ANDROID_NAMESPACE_URL) {
+            if (attributeName == VERSION_CODE_ATTRIBUTE_NAME) {
+                auto result = getU32Attribute(tree, i);
+                if (!result.ok()) return Error() << "Version code: " << result.error();
+                info->version_code = *result;
+            } else if (attributeName == VERSION_CODE_MAJOR_ATTRIBUTE_NAME) {
+                auto result = getU32Attribute(tree, i);
+                if (!result.ok()) return Error() << "Version code major: " << result.error();
+                info->version_code_major = *result;
+            }
+        }
+    }
+
+    return info;
+}
+} // namespace
+
+const ApkManifestInfo* extractManifestInfo(const void* manifest, size_t size) {
+    auto result = parseManifest(manifest, size);
+    if (!result.ok()) {
+        LOG(ERROR) << "Failed to parse APK manifest:" << result.error().message();
+        return nullptr;
+    }
+    return result->release();
+}
+
+void freeManifestInfo(const ApkManifestInfo* info) {
+    delete info;
+}
+
+const char* getPackageName(const ApkManifestInfo* info) {
+    return info->package.c_str();
+}
+
+uint64_t getVersionCode(const ApkManifestInfo* info) {
+    return info->version_code | (static_cast<uint64_t>(info->version_code_major) << 32);
+}
diff --git a/libs/apkmanifest/native/apkmanifest.hpp b/libs/apkmanifest/native/apkmanifest.hpp
new file mode 100644
index 0000000..352912e
--- /dev/null
+++ b/libs/apkmanifest/native/apkmanifest.hpp
@@ -0,0 +1,44 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+#include <stddef.h>
+#include <stdint.h>
+
+// Opaque structure holding information extracted from an APK manifest.
+struct ApkManifestInfo;
+
+extern "C" {
+
+// Parse a binary XML encoded APK manifest and extract relevant information.
+// The caller must free the returned pointer using freeManifestInfo.  Returns
+// null if any error occurs. Does not retain any pointer to the manifest
+// provided.
+const ApkManifestInfo* extractManifestInfo(const void* manifest, size_t size);
+
+// Frees an ApkManifestInfo allocated by extractManifestInfo; this invalidates
+// the pointer and it must not be used again.
+void freeManifestInfo(const ApkManifestInfo* info);
+
+// Given a valid ApkManifestInfo pointer, return the package name of the APK, as
+// a nul-terminated UTF-8 string. The pointer remains valid until the
+// ApkManifestInfo is freed.
+const char* getPackageName(const ApkManifestInfo* info);
+
+// Given a valid ApkManifestInfo pointer, return the version code of the APK.
+uint64_t getVersionCode(const ApkManifestInfo* info);
+}
diff --git a/libs/apkmanifest/src/apkmanifest.rs b/libs/apkmanifest/src/apkmanifest.rs
new file mode 100644
index 0000000..b92aa74
--- /dev/null
+++ b/libs/apkmanifest/src/apkmanifest.rs
@@ -0,0 +1,70 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//! Handle parsing of APK manifest files.
+//! The manifest file is written as XML text, but is stored in the APK
+//! as Android binary compressed XML. This library is a wrapper around
+//! a thin C++ wrapper around libandroidfw, which contains the same
+//! parsing code as used by package manager and aapt2 (amongst other
+//! things).
+
+use anyhow::{bail, Context, Result};
+use apkmanifest_bindgen::{extractManifestInfo, freeManifestInfo, getPackageName, getVersionCode};
+use std::ffi::CStr;
+use std::fs::File;
+use std::path::Path;
+
+/// Information extracted from the Android manifest inside an APK.
+#[derive(Debug, Default, Eq, PartialEq)]
+pub struct ApkManifestInfo {
+    /// The package name of the app.
+    pub package: String,
+    /// The version code of the app.
+    pub version_code: u64,
+}
+
+const ANDROID_MANIFEST: &str = "AndroidManifest.xml";
+
+/// Find the manifest inside the given APK and return information from it.
+pub fn get_manifest_info<P: AsRef<Path>>(apk_path: P) -> Result<ApkManifestInfo> {
+    let apk = File::open(apk_path.as_ref())?;
+    let manifest = apkzip::read_file(apk, ANDROID_MANIFEST)?;
+
+    // Safety: The function only reads the memory range we specify and does not hold
+    // any reference to it.
+    let native_info = unsafe { extractManifestInfo(manifest.as_ptr() as _, manifest.len()) };
+    if native_info.is_null() {
+        bail!("Failed to parse manifest")
+    };
+
+    scopeguard::defer! {
+        // Safety: The value we pass is the result of calling extractManifestInfo as required.
+        // We must call this exactly once, after we have finished using it, which the scopeguard
+        // ensures.
+        unsafe { freeManifestInfo(native_info); }
+    }
+
+    // Safety: It is always safe to call this with a valid native_info, which we have,
+    // and it always returns a valid nul-terminated C string with the same lifetime as native_info.
+    // We immediately make a copy.
+    let package = unsafe { CStr::from_ptr(getPackageName(native_info)) };
+    let package = package.to_str().context("Invalid package name")?.to_string();
+
+    // Safety: It is always safe to call this with a valid native_info, which we have.
+    let version_code = unsafe { getVersionCode(native_info) };
+
+    Ok(ApkManifestInfo { package, version_code })
+}
diff --git a/libs/apkverify/Android.bp b/libs/apkverify/Android.bp
index 83dbff6..e39c46d 100644
--- a/libs/apkverify/Android.bp
+++ b/libs/apkverify/Android.bp
@@ -1,15 +1,17 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "libapkverify.defaults",
     crate_name: "apkverify",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
-    prefer_rlib: true,
     edition: "2021",
     rustlibs: [
         "libanyhow",
+        "libapkzip",
         "libbyteorder",
         "libbytes",
         "libhex",
@@ -17,7 +19,6 @@
         "libnum_traits",
         "libopenssl",
         "libserde",
-        "libzip",
     ],
     proc_macros: ["libnum_derive"],
 }
@@ -33,6 +34,7 @@
 rust_test {
     name: "libapkverify.test",
     defaults: ["libapkverify.defaults"],
+    prefer_rlib: true,
     test_suites: ["general-tests"],
     data: ["tests/data/*"],
 }
@@ -40,14 +42,19 @@
 rust_test {
     name: "libapkverify.integration_test",
     crate_name: "apkverify_test",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["tests/*_test.rs"],
     prefer_rlib: true,
     edition: "2021",
     test_suites: ["general-tests"],
     rustlibs: [
         "libandroid_logger",
+        "libanyhow",
         "libapkverify",
+        "libapkzip",
+        "libbyteorder",
         "liblog_rust",
+        "libopenssl",
         "libzip",
     ],
     data: ["tests/data/*"],
diff --git a/libs/apkverify/TEST_MAPPING b/libs/apkverify/TEST_MAPPING
index 7224fc7..6bbc624 100644
--- a/libs/apkverify/TEST_MAPPING
+++ b/libs/apkverify/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/libs/apkverify/src/lib.rs b/libs/apkverify/src/lib.rs
index f7cbb7e..1f3c74f 100644
--- a/libs/apkverify/src/lib.rs
+++ b/libs/apkverify/src/lib.rs
@@ -24,8 +24,7 @@
 pub mod testing;
 mod v3;
 mod v4;
-mod ziputil;
 
 pub use algorithms::{HashAlgorithm, SignatureAlgorithmID};
-pub use v3::{get_public_key_der, verify};
+pub use v3::{extract_signed_data, verify, SignedData};
 pub use v4::{get_apk_digest, V4Signature};
diff --git a/libs/apkverify/src/sigutil.rs b/libs/apkverify/src/sigutil.rs
index 395b493..7d03bb2 100644
--- a/libs/apkverify/src/sigutil.rs
+++ b/libs/apkverify/src/sigutil.rs
@@ -17,6 +17,7 @@
 //! Utilities for Signature Verification
 
 use anyhow::{anyhow, ensure, Error, Result};
+use apkzip::{set_central_directory_offset, zip_sections};
 use byteorder::{LittleEndian, ReadBytesExt};
 use bytes::{Buf, BufMut, Bytes, BytesMut};
 use openssl::hash::{DigestBytes, Hasher, MessageDigest};
@@ -24,7 +25,6 @@
 use std::io::{self, Cursor, ErrorKind, Read, Seek, SeekFrom, Take};
 
 use crate::algorithms::SignatureAlgorithmID;
-use crate::ziputil::{set_central_directory_offset, zip_sections};
 
 const APK_SIG_BLOCK_MIN_SIZE: u32 = 32;
 const APK_SIG_BLOCK_MAGIC: u128 = 0x3234206b636f6c4220676953204b5041;
@@ -51,8 +51,8 @@
 }
 
 impl<R: Read + Seek> ApkSections<R> {
-    pub fn new(reader: R) -> Result<ApkSections<R>> {
-        let (mut reader, zip_sections) = zip_sections(reader)?;
+    pub fn new(mut reader: R) -> Result<ApkSections<R>> {
+        let zip_sections = zip_sections(&mut reader)?;
         let (signing_block_offset, signing_block_size) =
             find_signing_block(&mut reader, zip_sections.central_directory_offset)?;
         Ok(ApkSections {
diff --git a/libs/apkverify/src/v3.rs b/libs/apkverify/src/v3.rs
index 6082422..88644c7 100644
--- a/libs/apkverify/src/v3.rs
+++ b/libs/apkverify/src/v3.rs
@@ -29,7 +29,7 @@
 
 use crate::algorithms::SignatureAlgorithmID;
 use crate::bytes_ext::{BytesExt, LengthPrefixed, ReadFromBytes};
-use crate::sigutil::*;
+use crate::sigutil::ApkSections;
 
 pub const APK_SIGNATURE_SCHEME_V3_BLOCK_ID: u32 = 0xf05368c0;
 
@@ -44,13 +44,9 @@
     public_key: PKey<pkey::Public>,
 }
 
-impl Signer {
-    fn sdk_range(&self) -> RangeInclusive<u32> {
-        self.min_sdk..=self.max_sdk
-    }
-}
-
-struct SignedData {
+/// Contains the signed data part of an APK v3 signature.
+#[derive(Debug)]
+pub struct SignedData {
     digests: LengthPrefixed<Vec<LengthPrefixed<Digest>>>,
     certificates: LengthPrefixed<Vec<LengthPrefixed<X509Certificate>>>,
     min_sdk: u32,
@@ -59,20 +55,6 @@
     additional_attributes: LengthPrefixed<Vec<LengthPrefixed<AdditionalAttributes>>>,
 }
 
-impl SignedData {
-    fn sdk_range(&self) -> RangeInclusive<u32> {
-        self.min_sdk..=self.max_sdk
-    }
-
-    fn find_digest_by_algorithm(&self, algorithm_id: SignatureAlgorithmID) -> Result<&Digest> {
-        Ok(self
-            .digests
-            .iter()
-            .find(|&dig| dig.signature_algorithm_id == Some(algorithm_id))
-            .context(format!("Digest not found for algorithm: {:?}", algorithm_id))?)
-    }
-}
-
 #[derive(Debug)]
 pub(crate) struct Signature {
     /// Option is used here to allow us to ignore unsupported algorithm.
@@ -80,6 +62,7 @@
     signature: LengthPrefixed<Bytes>,
 }
 
+#[derive(Debug)]
 struct Digest {
     signature_algorithm_id: Option<SignatureAlgorithmID>,
     digest: LengthPrefixed<Bytes>,
@@ -88,19 +71,19 @@
 type X509Certificate = Bytes;
 type AdditionalAttributes = Bytes;
 
-/// Verifies APK Signature Scheme v3 signatures of the provided APK and returns the public key
-/// associated with the signer in DER format.
-pub fn verify<P: AsRef<Path>>(apk_path: P, current_sdk: u32) -> Result<Box<[u8]>> {
+/// Verifies APK Signature Scheme v3 signatures of the provided APK and returns the SignedData from
+/// the signature.
+pub fn verify<P: AsRef<Path>>(apk_path: P, current_sdk: u32) -> Result<SignedData> {
     let apk = File::open(apk_path.as_ref())?;
     let (signer, mut sections) = extract_signer_and_apk_sections(apk, current_sdk)?;
     signer.verify(&mut sections)
 }
 
-/// Gets the public key (in DER format) that was used to sign the given APK/APEX file
-pub fn get_public_key_der<P: AsRef<Path>>(apk_path: P, current_sdk: u32) -> Result<Box<[u8]>> {
+/// Extracts the SignedData from the signature of the given APK. (The signature is not verified.)
+pub fn extract_signed_data<P: AsRef<Path>>(apk_path: P, current_sdk: u32) -> Result<SignedData> {
     let apk = File::open(apk_path.as_ref())?;
     let (signer, _) = extract_signer_and_apk_sections(apk, current_sdk)?;
-    Ok(signer.public_key.public_key_to_der()?.into_boxed_slice())
+    signer.parse_signed_data()
 }
 
 pub(crate) fn extract_signer_and_apk_sections<R: Read + Seek>(
@@ -123,6 +106,10 @@
 }
 
 impl Signer {
+    fn sdk_range(&self) -> RangeInclusive<u32> {
+        self.min_sdk..=self.max_sdk
+    }
+
     /// Selects the signature that has the strongest supported `SignatureAlgorithmID`.
     /// The strongest signature is used in both v3 verification and v4 apk digest computation.
     pub(crate) fn strongest_signature(&self) -> Result<&Signature> {
@@ -143,26 +130,33 @@
         Ok(digest.digest.as_ref().to_vec().into_boxed_slice())
     }
 
-    /// Verifies the strongest signature from signatures against signed data using public key.
-    /// Returns the verified signed data.
-    fn verify_signature(&self, strongest: &Signature) -> Result<SignedData> {
-        let mut verifier = strongest
+    /// Verifies a signature over the signed data using the public key.
+    fn verify_signature(&self, signature: &Signature) -> Result<()> {
+        let mut verifier = signature
             .signature_algorithm_id
             .context("Unsupported algorithm")?
             .new_verifier(&self.public_key)?;
         verifier.update(&self.signed_data)?;
-        ensure!(verifier.verify(&strongest.signature)?, "Signature is invalid.");
-        // It is now safe to parse signed data.
+        ensure!(verifier.verify(&signature.signature)?, "Signature is invalid.");
+        Ok(())
+    }
+
+    /// Returns the signed data, converted from bytes.
+    fn parse_signed_data(&self) -> Result<SignedData> {
         self.signed_data.slice(..).read()
     }
 
     /// The steps in this method implements APK Signature Scheme v3 verification step 3.
-    fn verify<R: Read + Seek>(&self, sections: &mut ApkSections<R>) -> Result<Box<[u8]>> {
+    fn verify<R: Read + Seek>(&self, sections: &mut ApkSections<R>) -> Result<SignedData> {
         // 1. Choose the strongest supported signature algorithm ID from signatures.
         let strongest = self.strongest_signature()?;
 
-        // 2. Verify the corresponding signature from signatures against signed data using public key.
-        let verified_signed_data = self.verify_signature(strongest)?;
+        // 2. Verify the corresponding signature from signatures against signed data using public
+        // key.
+        self.verify_signature(strongest)?;
+
+        // It is now safe to parse signed data.
+        let verified_signed_data = self.parse_signed_data()?;
 
         // 3. Verify the min and max SDK versions in the signed data match those specified for the
         //    signer.
@@ -196,10 +190,9 @@
             hex::encode(digest.digest.as_ref()),
         );
 
-        // 7. Verify that public key of the first certificate of certificates is identical
-        //    to public key.
-        let cert = verified_signed_data.certificates.first().context("No certificates listed")?;
-        let cert = X509::from_der(cert.as_ref())?;
+        // 7. Verify that public key of the first certificate of certificates is identical to public
+        //    key.
+        let cert = X509::from_der(verified_signed_data.first_certificate_der()?)?;
         ensure!(
             cert.public_key()?.public_eq(&self.public_key),
             "Public key mismatch between certificate and signature record"
@@ -208,7 +201,29 @@
         // TODO(b/245914104)
         // 8. If the proof-of-rotation attribute exists for the signer verify that the
         // struct is valid and this signer is the last certificate in the list.
-        Ok(self.public_key.public_key_to_der()?.into_boxed_slice())
+
+        Ok(verified_signed_data)
+    }
+}
+
+impl SignedData {
+    /// Returns the first X.509 certificate in the signed data, encoded in DER form. (All other
+    /// certificates are ignored for v3; this certificate describes the public key that was actually
+    /// used to sign the APK.)
+    pub fn first_certificate_der(&self) -> Result<&[u8]> {
+        Ok(self.certificates.first().context("No certificates listed")?)
+    }
+
+    fn sdk_range(&self) -> RangeInclusive<u32> {
+        self.min_sdk..=self.max_sdk
+    }
+
+    fn find_digest_by_algorithm(&self, algorithm_id: SignatureAlgorithmID) -> Result<&Digest> {
+        Ok(self
+            .digests
+            .iter()
+            .find(|&dig| dig.signature_algorithm_id == Some(algorithm_id))
+            .context(format!("Digest not found for algorithm: {:?}", algorithm_id))?)
     }
 }
 
diff --git a/libs/apkverify/tests/apkverify_test.rs b/libs/apkverify/tests/apkverify_test.rs
index 52e1da4..96fad5f 100644
--- a/libs/apkverify/tests/apkverify_test.rs
+++ b/libs/apkverify/tests/apkverify_test.rs
@@ -14,10 +14,16 @@
  * limitations under the License.
  */
 
+use anyhow::Result;
 use apkverify::{
-    get_apk_digest, get_public_key_der, testing::assert_contains, verify, SignatureAlgorithmID,
+    extract_signed_data, get_apk_digest, testing::assert_contains, verify, SignatureAlgorithmID,
 };
+use apkzip::zip_sections;
+use byteorder::{LittleEndian, ReadBytesExt};
 use log::info;
+use openssl::x509::X509;
+use std::fmt::Write;
+use std::io::{Seek, SeekFrom};
 use std::{fs, matches, path::Path};
 
 const KEY_NAMES_DSA: &[&str] = &["1024", "2048", "3072"];
@@ -31,12 +37,34 @@
     android_logger::init_once(
         android_logger::Config::default()
             .with_tag("apkverify_test")
-            .with_min_level(log::Level::Info),
+            .with_max_level(log::LevelFilter::Info),
     );
     info!("Test starting");
 }
 
 #[test]
+fn test_zip_sections_with_apk() {
+    let mut reader = fs::File::open("tests/data/v3-only-with-stamp.apk").unwrap();
+    let sections = zip_sections(&mut reader).unwrap();
+
+    // Checks Central directory.
+    assert_eq!(
+        sections.central_directory_offset + sections.central_directory_size,
+        sections.eocd_offset
+    );
+
+    // Checks EOCD.
+    const EOCD_SIGNATURE: u32 = 0x06054b50;
+
+    reader.seek(SeekFrom::Start(sections.eocd_offset as u64)).unwrap();
+    assert_eq!(reader.read_u32::<LittleEndian>().unwrap(), EOCD_SIGNATURE);
+    assert_eq!(
+        reader.metadata().unwrap().len(),
+        (sections.eocd_offset + sections.eocd_size) as u64
+    );
+}
+
+#[test]
 fn test_verify_truncated_cd() {
     setup();
     use zip::result::ZipError;
@@ -260,22 +288,30 @@
 /// * public key extracted from apk without verification
 /// * expected public key from the corresponding .der file
 fn validate_apk_public_key<P: AsRef<Path>>(apk_path: P) {
-    let public_key_from_verification = verify(&apk_path, SDK_INT);
-    let public_key_from_verification =
-        public_key_from_verification.expect("Error in verification result");
+    let signed_data_from_verification =
+        verify(&apk_path, SDK_INT).expect("Error in verification result");
+    let cert_from_verification = signed_data_from_verification.first_certificate_der().unwrap();
+    let public_key_from_verification = public_key_der_from_cert(cert_from_verification).unwrap();
 
     let expected_public_key_path = format!("{}.der", apk_path.as_ref().to_str().unwrap());
     assert_bytes_eq_to_data_in_file(&public_key_from_verification, expected_public_key_path);
 
-    let public_key_from_apk = get_public_key_der(&apk_path, SDK_INT);
-    let public_key_from_apk =
-        public_key_from_apk.expect("Error when extracting public key from apk");
+    let signed_data_from_apk = extract_signed_data(&apk_path, SDK_INT)
+        .expect("Error when extracting signed data from apk");
+    let cert_from_apk = signed_data_from_apk.first_certificate_der().unwrap();
+    // If the two certficiates are byte for byte identical (which they should be), then so are
+    // the public keys embedded in them.
     assert_eq!(
-        public_key_from_verification, public_key_from_apk,
-        "Public key extracted directly from apk does not match the public key from verification."
+        cert_from_verification, cert_from_apk,
+        "Certificate extracted directly from apk does not match the certificate from verification."
     );
 }
 
+fn public_key_der_from_cert(cert_der: &[u8]) -> Result<Vec<u8>> {
+    let cert = X509::from_der(cert_der)?;
+    Ok(cert.public_key()?.public_key_to_der()?)
+}
+
 /// Validates that the following apk_digest are equal:
 /// * apk_digest directly extracted from apk without computation
 /// * computed apk_digest
@@ -284,7 +320,7 @@
     let apk = fs::File::open(&apk_path).expect("Unabled to open apk file");
 
     let (verified_algorithm_id, verified_digest) =
-        get_apk_digest(&apk, SDK_INT, /*verify=*/ true)
+        get_apk_digest(&apk, SDK_INT, /* verify= */ true)
             .expect("Error when extracting apk digest with verification.");
 
     assert_eq!(expected_algorithm_id, verified_algorithm_id);
@@ -292,7 +328,7 @@
     assert_bytes_eq_to_data_in_file(&verified_digest, expected_digest_path);
 
     let (unverified_algorithm_id, unverified_digest) =
-        get_apk_digest(&apk, SDK_INT, /*verify=*/ false)
+        get_apk_digest(&apk, SDK_INT, /* verify= */ false)
             .expect("Error when extracting apk digest without verification.");
     assert_eq!(expected_algorithm_id, unverified_algorithm_id);
     assert_eq!(verified_digest, unverified_digest);
@@ -305,7 +341,10 @@
     assert!(
         fs::metadata(&expected_data_path).is_ok(),
         "File does not exist. You can re-create it with:\n$ echo -en {} > {}\n",
-        bytes_data.iter().map(|b| format!("\\\\x{:02x}", b)).collect::<String>(),
+        bytes_data.iter().fold(String::new(), |mut output, b| {
+            let _ = write!(output, "\\\\x{:02x}", b);
+            output
+        }),
         expected_data_path
     );
     let expected_data = fs::read(&expected_data_path).unwrap();
diff --git a/libs/apkzip/Android.bp b/libs/apkzip/Android.bp
new file mode 100644
index 0000000..f3622b1
--- /dev/null
+++ b/libs/apkzip/Android.bp
@@ -0,0 +1,36 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libapkzip.defaults",
+    crate_name: "apkzip",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    srcs: ["src/ziputil.rs"],
+    rustlibs: [
+        "libanyhow",
+        "libbytes",
+        "liblog_rust",
+        "libanyhow",
+        "libzip",
+    ],
+}
+
+rust_library {
+    name: "libapkzip",
+    defaults: ["libapkzip.defaults"],
+    host_supported: true,
+    apex_available: ["com.android.virt"],
+}
+
+rust_test {
+    name: "libapkzip.test",
+    defaults: ["libapkzip.defaults"],
+    prefer_rlib: true,
+    test_suites: ["general-tests"],
+    rustlibs: [
+        "libbyteorder",
+    ],
+}
diff --git a/libs/apkverify/src/ziputil.rs b/libs/apkzip/src/ziputil.rs
similarity index 74%
rename from libs/apkverify/src/ziputil.rs
rename to libs/apkzip/src/ziputil.rs
index 5e513a7..708bbcc 100644
--- a/libs/apkverify/src/ziputil.rs
+++ b/libs/apkzip/src/ziputil.rs
@@ -21,9 +21,6 @@
 use std::io::{Read, Seek};
 use zip::ZipArchive;
 
-#[cfg(test)]
-use std::io::SeekFrom;
-
 const EOCD_SIZE_WITHOUT_COMMENT: usize = 22;
 const EOCD_CENTRAL_DIRECTORY_SIZE_FIELD_OFFSET: usize = 12;
 const EOCD_CENTRAL_DIRECTORY_OFFSET_FIELD_OFFSET: usize = 16;
@@ -31,16 +28,21 @@
 const EOCD_SIGNATURE: u32 = 0x06054b50;
 const ZIP64_MARK: u32 = 0xffffffff;
 
+/// Information about the layout of a zip file.
 #[derive(Debug, PartialEq, Eq)]
 pub struct ZipSections {
+    /// Offset within the file of the central directory.
     pub central_directory_offset: u32,
+    /// Size of the central directory.
     pub central_directory_size: u32,
+    /// Offset within the file of end of central directory marker.
     pub eocd_offset: u32,
+    /// Size of the end of central directory marker.
     pub eocd_size: u32,
 }
 
 /// Discover the layout of a zip file.
-pub fn zip_sections<R: Read + Seek>(mut reader: R) -> Result<(R, ZipSections)> {
+pub fn zip_sections<R: Read + Seek>(mut reader: R) -> Result<ZipSections> {
     // open a zip to parse EOCD
     let archive = ZipArchive::new(reader)?;
     let eocd_size = archive.comment().len() + EOCD_SIZE_WITHOUT_COMMENT;
@@ -65,15 +67,12 @@
         "Invalid ZIP: EOCD should follow CD with no extra data or overlap."
     );
 
-    Ok((
-        reader,
-        ZipSections {
-            central_directory_offset,
-            central_directory_size,
-            eocd_offset,
-            eocd_size: eocd_size as u32,
-        },
-    ))
+    Ok(ZipSections {
+        central_directory_offset,
+        central_directory_size,
+        eocd_offset,
+        eocd_size: eocd_size as u32,
+    })
 }
 
 fn get_central_directory(buf: &[u8]) -> Result<(u32, u32)> {
@@ -91,25 +90,39 @@
     Ok(())
 }
 
+/// Read an entire file from a .zip file into memory and return it.
+pub fn read_file<R: Read + Seek>(reader: R, file_name: &str) -> Result<Vec<u8>> {
+    let mut archive = ZipArchive::new(reader)?;
+    let mut file = archive.by_name(file_name)?;
+    let mut bytes = Vec::with_capacity(file.size() as usize);
+    file.read_to_end(&mut bytes)?;
+    Ok(bytes)
+}
+
 #[cfg(test)]
 mod tests {
     use super::*;
-    use crate::testing::assert_contains;
-    use byteorder::{LittleEndian, ReadBytesExt};
-    use std::fs::File;
     use std::io::{Cursor, Write};
     use zip::{write::FileOptions, ZipWriter};
 
+    const FILE_CONTENT: &[u8] = b"testcontent";
+    const FILE_NAME: &str = "testfile";
+
     fn create_test_zip() -> Cursor<Vec<u8>> {
         let mut writer = ZipWriter::new(Cursor::new(Vec::new()));
-        writer.start_file("testfile", FileOptions::default()).unwrap();
-        writer.write_all(b"testcontent").unwrap();
+        writer.start_file(FILE_NAME, FileOptions::default()).unwrap();
+        writer.write_all(FILE_CONTENT).unwrap();
         writer.finish().unwrap()
     }
 
+    fn assert_contains(haystack: &str, needle: &str) {
+        assert!(haystack.contains(needle), "{} is not found in {}", needle, haystack);
+    }
+
     #[test]
     fn test_zip_sections() {
-        let (cursor, sections) = zip_sections(create_test_zip()).unwrap();
+        let mut cursor = create_test_zip();
+        let sections = zip_sections(&mut cursor).unwrap();
         assert_eq!(
             sections.eocd_offset,
             (cursor.get_ref().len() - EOCD_SIZE_WITHOUT_COMMENT) as u32
@@ -117,6 +130,12 @@
     }
 
     #[test]
+    fn test_read_file() {
+        let file = read_file(create_test_zip(), FILE_NAME).unwrap();
+        assert_eq!(file.as_slice(), FILE_CONTENT);
+    }
+
+    #[test]
     fn test_reject_if_extra_data_between_cd_and_eocd() {
         // prepare normal zip
         let buf = create_test_zip().into_inner();
@@ -133,24 +152,4 @@
         assert!(res.is_err());
         assert_contains(&res.err().unwrap().to_string(), "Invalid ZIP: offset should be 0");
     }
-
-    #[test]
-    fn test_zip_sections_with_apk() {
-        let apk = File::open("tests/data/v3-only-with-stamp.apk").unwrap();
-        let (mut reader, sections) = zip_sections(apk).unwrap();
-
-        // Checks Central directory.
-        assert_eq!(
-            sections.central_directory_offset + sections.central_directory_size,
-            sections.eocd_offset
-        );
-
-        // Checks EOCD.
-        reader.seek(SeekFrom::Start(sections.eocd_offset as u64)).unwrap();
-        assert_eq!(reader.read_u32::<LittleEndian>().unwrap(), EOCD_SIGNATURE);
-        assert_eq!(
-            reader.metadata().unwrap().len(),
-            (sections.eocd_offset + sections.eocd_size) as u64
-        );
-    }
 }
diff --git a/libs/avb/Android.bp b/libs/avb/Android.bp
deleted file mode 100644
index 7bfea3f..0000000
--- a/libs/avb/Android.bp
+++ /dev/null
@@ -1,54 +0,0 @@
-package {
-    default_applicable_licenses: ["Android-Apache-2.0"],
-}
-
-rust_defaults {
-    name: "libavb_bindgen.defaults",
-    wrapper_src: "bindgen/avb.h",
-    crate_name: "avb_bindgen",
-    edition: "2021",
-    visibility: ["//packages/modules/Virtualization:__subpackages__"],
-    source_stem: "bindings",
-    bindgen_flags: [
-        "--size_t-is-usize",
-        "--default-enum-style rust",
-        "--allowlist-function=.*",
-        "--allowlist-var=AVB.*",
-        "--use-core",
-        "--raw-line=#![no_std]",
-        "--ctypes-prefix=core::ffi",
-    ],
-    cflags: ["-DBORINGSSL_NO_CXX"],
-}
-
-rust_bindgen {
-    name: "libavb_bindgen",
-    defaults: ["libavb_bindgen.defaults"],
-    host_supported: true,
-    static_libs: [
-        "libavb",
-    ],
-    shared_libs: [
-        "libcrypto",
-    ],
-}
-
-rust_bindgen {
-    name: "libavb_bindgen_nostd",
-    defaults: ["libavb_bindgen.defaults"],
-    static_libs: [
-        "libavb_baremetal",
-        "libcrypto_baremetal",
-    ],
-}
-
-rust_test {
-    name: "libavb_bindgen_test",
-    srcs: [":libavb_bindgen"],
-    crate_name: "avb_bindgen_test",
-    edition: "2021",
-    test_suites: ["general-tests"],
-    auto_gen_config: true,
-    clippy_lints: "none",
-    lints: "none",
-}
diff --git a/libs/avb/TEST_MAPPING b/libs/avb/TEST_MAPPING
deleted file mode 100644
index 2f4bccc..0000000
--- a/libs/avb/TEST_MAPPING
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "avf-presubmit" : [
-    {
-      "name" : "libavb_bindgen_test"
-    }
-  ]
-}
diff --git a/libs/avflog/Android.bp b/libs/avflog/Android.bp
new file mode 100644
index 0000000..7e8daef
--- /dev/null
+++ b/libs/avflog/Android.bp
@@ -0,0 +1,32 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libavflog.defaults",
+    crate_name: "avflog",
+    defaults: ["avf_build_flags_rust"],
+    host_supported: true,
+    srcs: ["src/lib.rs"],
+    edition: "2021",
+    rustlibs: [
+        "liblog_rust",
+    ],
+}
+
+rust_library {
+    name: "libavflog",
+    defaults: ["libavflog.defaults"],
+    apex_available: [
+        "//apex_available:platform",
+        "//apex_available:anyapex",
+    ],
+}
+
+rust_test {
+    name: "libavflog.test",
+    defaults: ["libavflog.defaults"],
+    prefer_rlib: true,
+    test_suites: ["general-tests"],
+}
diff --git a/libs/avflog/TEST_MAPPING b/libs/avflog/TEST_MAPPING
new file mode 100644
index 0000000..921c4d8
--- /dev/null
+++ b/libs/avflog/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "libavflog.test"
+    }
+  ]
+}
diff --git a/libs/avflog/src/lib.rs b/libs/avflog/src/lib.rs
new file mode 100644
index 0000000..27c8628
--- /dev/null
+++ b/libs/avflog/src/lib.rs
@@ -0,0 +1,71 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Provides random utilities for components in AVF
+
+use log::error;
+use std::fmt::Debug;
+
+/// Convenient trait for logging an error while returning it
+pub trait LogResult<T, E> {
+    /// If this is `Err`, the error is debug-formatted and is logged via `error!`.
+    fn with_log(self) -> Result<T, E>;
+}
+
+impl<T, E: Debug> LogResult<T, E> for Result<T, E> {
+    fn with_log(self) -> Result<T, E> {
+        self.map_err(|e| {
+            error!("{e:?}");
+            e
+        })
+    }
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use log::{LevelFilter, Log, Metadata, Record};
+    use std::cell::RefCell;
+    use std::io::{Error, ErrorKind};
+
+    struct TestLogger {
+        last_log: RefCell<String>,
+    }
+    static TEST_LOGGER: TestLogger = TestLogger { last_log: RefCell::new(String::new()) };
+
+    // SAFETY: TestLogger is used only inside the test which is single-treaded.
+    unsafe impl Sync for TestLogger {}
+
+    impl Log for TestLogger {
+        fn enabled(&self, _metadata: &Metadata) -> bool {
+            true
+        }
+        fn log(&self, record: &Record) {
+            *self.last_log.borrow_mut() = format!("{}", record.args());
+        }
+        fn flush(&self) {}
+    }
+
+    #[test]
+    fn test_logresult_emits_error_log() {
+        log::set_logger(&TEST_LOGGER).unwrap();
+        log::set_max_level(LevelFilter::Info);
+
+        let e = Error::from(ErrorKind::NotFound);
+        let res: Result<(), Error> = Err(e).with_log();
+
+        assert!(res.is_err());
+        assert_eq!(TEST_LOGGER.last_log.borrow().as_str(), "Kind(NotFound)");
+    }
+}
diff --git a/libs/bssl/Android.bp b/libs/bssl/Android.bp
new file mode 100644
index 0000000..b023e87
--- /dev/null
+++ b/libs/bssl/Android.bp
@@ -0,0 +1,53 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libbssl_avf_defaults",
+    crate_name: "bssl_avf",
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+}
+
+rust_library_rlib {
+    name: "libbssl_avf_nostd",
+    defaults: ["libbssl_avf_defaults"],
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
+    rustlibs: [
+        "libbssl_avf_error_nostd",
+        "libbssl_sys_nostd",
+        "libcbor_util_nostd",
+        "libciborium_nostd",
+        "libcoset_nostd",
+        "liblog_rust_nostd",
+        "libzeroize_nostd",
+    ],
+}
+
+rust_defaults {
+    name: "libbssl_avf_test_defaults",
+    crate_name: "bssl_avf_test",
+    srcs: ["tests/tests.rs"],
+    test_suites: ["general-tests"],
+    static_libs: [
+        "libcrypto_baremetal",
+    ],
+}
+
+rust_test {
+    name: "libbssl_avf_nostd.test",
+    defaults: ["libbssl_avf_test_defaults"],
+    rustlibs: [
+        "libbssl_avf_nostd",
+        "libcoset_nostd",
+        "libspki_nostd",
+    ],
+}
diff --git a/libs/bssl/TEST_MAPPING b/libs/bssl/TEST_MAPPING
new file mode 100644
index 0000000..a91e8c5
--- /dev/null
+++ b/libs/bssl/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "libbssl_avf_nostd.test"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/libs/bssl/error/Android.bp b/libs/bssl/error/Android.bp
new file mode 100644
index 0000000..ebdbc0a
--- /dev/null
+++ b/libs/bssl/error/Android.bp
@@ -0,0 +1,42 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libbssl_avf_error_defaults",
+    crate_name: "bssl_avf_error",
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+}
+
+rust_library_rlib {
+    name: "libbssl_avf_error_nostd",
+    defaults: ["libbssl_avf_error_defaults"],
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
+    rustlibs: [
+        "libcoset_nostd",
+        "liblog_rust_nostd",
+        "libserde_nostd",
+    ],
+}
+
+rust_library {
+    name: "libbssl_avf_error",
+    defaults: ["libbssl_avf_error_defaults"],
+    features: [
+        "std",
+    ],
+    rustlibs: [
+        "libcoset",
+        "liblog_rust",
+        "libserde",
+    ],
+}
diff --git a/libs/bssl/error/src/code.rs b/libs/bssl/error/src/code.rs
new file mode 100644
index 0000000..a318a07
--- /dev/null
+++ b/libs/bssl/error/src/code.rs
@@ -0,0 +1,189 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+use core::fmt;
+use serde::{Deserialize, Serialize};
+
+type BsslReasonCode = i32;
+type BsslLibraryCode = i32;
+
+/// BoringSSL reason code.
+#[allow(missing_docs)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum ReasonCode {
+    NoError,
+    Global(GlobalError),
+    Cipher(CipherError),
+    Ec(EcError),
+    Ecdsa(EcdsaError),
+    Unknown(BsslReasonCode, BsslLibraryCode),
+}
+
+impl fmt::Display for ReasonCode {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::NoError => write!(f, "No error in the BoringSSL error queue."),
+            Self::Unknown(code, lib) => {
+                write!(f, "Unknown reason code '{code}' from the library '{lib}'")
+            }
+            other => write!(f, "{other:?}"),
+        }
+    }
+}
+
+/// Global errors may occur in any library.
+///
+/// The values are from:
+/// boringssl/src/include/openssl/err.h
+#[allow(missing_docs)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum GlobalError {
+    Fatal,
+    MallocFailure,
+    ShouldNotHaveBeenCalled,
+    PassedNullParameter,
+    InternalError,
+    Overflow,
+}
+
+impl fmt::Display for GlobalError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "A global error occurred: {self:?}")
+    }
+}
+
+/// Errors occurred in the Cipher functions.
+///
+/// The values are from:
+/// boringssl/src/include/openssl/cipher.h
+#[allow(missing_docs)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum CipherError {
+    AesKeySetupFailed,
+    BadDecrypt,
+    BadKeyLength,
+    BufferTooSmall,
+    CtrlNotImplemented,
+    CtrlOperationNotImplemented,
+    DataNotMultipleOfBlockLength,
+    InitializationError,
+    InputNotInitialized,
+    InvalidAdSize,
+    InvalidKeyLength,
+    InvalidNonceSize,
+    InvalidOperation,
+    IvTooLarge,
+    NoCipherSet,
+    OutputAliasesInput,
+    TagTooLarge,
+    TooLarge,
+    WrongFinalBlockLength,
+    NoDirectionSet,
+    InvalidNonce,
+}
+
+impl From<CipherError> for ReasonCode {
+    fn from(e: CipherError) -> ReasonCode {
+        ReasonCode::Cipher(e)
+    }
+}
+
+impl fmt::Display for CipherError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "An error occurred in a Cipher function: {self:?}")
+    }
+}
+
+/// Errors occurred in the EC functions.
+///
+/// The values are from:
+/// boringssl/src/include/openssl/ec.h
+#[allow(missing_docs)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum EcError {
+    BufferTooSmall,
+    CoordinatesOutOfRange,
+    D2IEcpkparametersFailure,
+    EcGroupNewByNameFailure,
+    Group2PkparametersFailure,
+    I2DEcpkparametersFailure,
+    IncompatibleObjects,
+    InvalidCompressedPoint,
+    InvalidCompressionBit,
+    InvalidEncoding,
+    InvalidField,
+    InvalidForm,
+    InvalidGroupOrder,
+    InvalidPrivateKey,
+    MissingParameters,
+    MissingPrivateKey,
+    NonNamedCurve,
+    NotInitialized,
+    Pkparameters2GroupFailure,
+    PointAtInfinity,
+    PointIsNotOnCurve,
+    SlotFull,
+    UndefinedGenerator,
+    UnknownGroup,
+    UnknownOrder,
+    WrongOrder,
+    BignumOutOfRange,
+    WrongCurveParameters,
+    DecodeError,
+    EncodeError,
+    GroupMismatch,
+    InvalidCofactor,
+    PublicKeyValidationFailed,
+    InvalidScalar,
+}
+
+impl From<EcError> for ReasonCode {
+    fn from(e: EcError) -> ReasonCode {
+        ReasonCode::Ec(e)
+    }
+}
+
+impl fmt::Display for EcError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "An error occurred in an EC function: {self:?}")
+    }
+}
+
+/// Errors occurred in the ECDSA functions.
+///
+/// The values are from:
+/// boringssl/src/include/openssl/ecdsa.h
+#[allow(missing_docs)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum EcdsaError {
+    BadSignature,
+    MissingParameters,
+    NeedNewSetupValues,
+    NotImplemented,
+    RandomNumberGenerationFailed,
+    EncodeError,
+    TooManyIterations,
+}
+
+impl From<EcdsaError> for ReasonCode {
+    fn from(e: EcdsaError) -> ReasonCode {
+        ReasonCode::Ecdsa(e)
+    }
+}
+
+impl fmt::Display for EcdsaError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "An error occurred in an ECDSA function: {self:?}")
+    }
+}
diff --git a/libs/bssl/error/src/lib.rs b/libs/bssl/error/src/lib.rs
new file mode 100644
index 0000000..82a2d5e
--- /dev/null
+++ b/libs/bssl/error/src/lib.rs
@@ -0,0 +1,110 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Errors and relating structs thrown by the BoringSSL wrapper library.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+mod code;
+
+use core::{fmt, result};
+use serde::{Deserialize, Serialize};
+
+pub use crate::code::{CipherError, EcError, EcdsaError, GlobalError, ReasonCode};
+
+/// libbssl_avf result type.
+pub type Result<T> = result::Result<T, Error>;
+
+/// Error type used by libbssl_avf.
+#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum Error {
+    /// Failed to invoke a BoringSSL API.
+    CallFailed(ApiName, ReasonCode),
+
+    /// An unexpected internal error occurred.
+    InternalError,
+
+    /// Failed to decode the COSE_Key.
+    CoseKeyDecodingFailed,
+
+    /// An error occurred when interacting with the coset crate.
+    CosetError,
+
+    /// Unimplemented operation.
+    Unimplemented,
+}
+
+impl fmt::Display for Error {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::CallFailed(api_name, reason) => {
+                write!(f, "Failed to invoke the BoringSSL API: {api_name:?}. Reason: {reason}")
+            }
+            Self::InternalError => write!(f, "An unexpected internal error occurred"),
+            Self::CoseKeyDecodingFailed => write!(f, "Failed to decode the COSE_Key"),
+            Self::CosetError => {
+                write!(f, "An error occurred when interacting with the coset crate")
+            }
+            Self::Unimplemented => write!(f, "Unimplemented operation"),
+        }
+    }
+}
+
+impl From<coset::CoseError> for Error {
+    fn from(e: coset::CoseError) -> Self {
+        log::error!("Coset error: {e}");
+        Self::CosetError
+    }
+}
+
+/// BoringSSL API names.
+#[allow(missing_docs)]
+#[allow(non_camel_case_types)]
+#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum ApiName {
+    BN_new,
+    BN_bin2bn,
+    BN_bn2bin_padded,
+    CBB_flush,
+    CBB_len,
+    EC_GROUP_new_by_curve_name,
+    EC_KEY_check_key,
+    EC_KEY_generate_key,
+    EC_KEY_get0_group,
+    EC_KEY_get0_public_key,
+    EC_KEY_marshal_private_key,
+    EC_KEY_parse_private_key,
+    EC_KEY_new_by_curve_name,
+    EC_KEY_set_public_key_affine_coordinates,
+    EC_POINT_get_affine_coordinates,
+    ECDSA_sign,
+    ECDSA_size,
+    ECDSA_verify,
+    ED25519_verify,
+    EVP_AEAD_CTX_new,
+    EVP_AEAD_CTX_open,
+    EVP_AEAD_CTX_seal,
+    EVP_Digest,
+    EVP_MD_CTX_new,
+    EVP_PKEY_new,
+    EVP_PKEY_new_raw_public_key,
+    EVP_PKEY_set1_EC_KEY,
+    EVP_marshal_public_key,
+    EVP_DigestVerify,
+    EVP_DigestVerifyInit,
+    HKDF,
+    HMAC,
+    RAND_bytes,
+    SHA256,
+}
diff --git a/libs/bssl/src/aead.rs b/libs/bssl/src/aead.rs
new file mode 100644
index 0000000..9aa1885
--- /dev/null
+++ b/libs/bssl/src/aead.rs
@@ -0,0 +1,176 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the AEAD functions in BoringSSL aead.h.
+
+use crate::util::{check_int_result, to_call_failed_error};
+use bssl_avf_error::{ApiName, Result};
+use bssl_sys::{
+    EVP_AEAD_CTX_free, EVP_AEAD_CTX_new, EVP_AEAD_CTX_open, EVP_AEAD_CTX_seal,
+    EVP_AEAD_max_overhead, EVP_AEAD_nonce_length, EVP_aead_aes_256_gcm,
+    EVP_aead_aes_256_gcm_randnonce, EVP_AEAD, EVP_AEAD_CTX, EVP_AEAD_DEFAULT_TAG_LENGTH,
+};
+use core::ptr::NonNull;
+
+/// BoringSSL spec recommends to use 12-byte nonces.
+///
+/// https://commondatastorage.googleapis.com/chromium-boringssl-docs/aead.h.html#EVP_aead_aes_256_gcm
+pub const AES_GCM_NONCE_LENGTH: usize = 12;
+
+/// Magic value indicating that the default tag length for an AEAD should be used to
+/// initialize `AeadContext`.
+const AEAD_DEFAULT_TAG_LENGTH: usize = EVP_AEAD_DEFAULT_TAG_LENGTH as usize;
+
+/// Represents an AEAD algorithm.
+#[derive(Clone, Copy, Debug)]
+pub struct Aead(&'static EVP_AEAD);
+
+impl Aead {
+    /// This is AES-256 in Galois Counter Mode.
+    /// AES-GCM should only be used with 12-byte (96-bit) nonces as suggested in the
+    /// BoringSSL spec:
+    ///
+    /// https://commondatastorage.googleapis.com/chromium-boringssl-docs/aead.h.html
+    pub fn aes_256_gcm() -> Self {
+        // SAFETY: This function does not access any Rust variables and simply returns
+        // a pointer to the static variable in BoringSSL.
+        let p = unsafe { EVP_aead_aes_256_gcm() };
+        // SAFETY: The returned pointer should always be valid and points to a static
+        // `EVP_AEAD`.
+        Self(unsafe { &*p })
+    }
+
+    /// AES-256 in Galois Counter Mode with internal nonce generation.
+    /// The 12-byte nonce is appended to the tag and is generated internally.
+    pub fn aes_256_gcm_randnonce() -> Self {
+        // SAFETY: This function does not access any Rust variables and simply returns
+        // a pointer to the static variable in BoringSSL.
+        let p = unsafe { EVP_aead_aes_256_gcm_randnonce() };
+        // SAFETY: The returned pointer should always be valid and points to a static
+        // `EVP_AEAD`.
+        Self(unsafe { &*p })
+    }
+
+    /// Returns the maximum number of additional bytes added by the act of sealing data.
+    pub fn max_overhead(&self) -> usize {
+        // SAFETY: This function only reads from self.
+        unsafe { EVP_AEAD_max_overhead(self.0) }
+    }
+
+    /// Returns the length, in bytes, of the per-message nonce.
+    pub fn nonce_length(&self) -> usize {
+        // SAFETY: This function only reads from self.
+        unsafe { EVP_AEAD_nonce_length(self.0) }
+    }
+}
+
+/// Represents an AEAD algorithm configuration.
+pub struct AeadContext {
+    ctx: NonNull<EVP_AEAD_CTX>,
+    aead: Aead,
+}
+
+impl Drop for AeadContext {
+    fn drop(&mut self) {
+        // SAFETY: It is safe because the pointer has been created with `EVP_AEAD_CTX_new`
+        // and isn't used after this.
+        unsafe { EVP_AEAD_CTX_free(self.ctx.as_ptr()) }
+    }
+}
+
+impl AeadContext {
+    /// Creates a new `AeadContext` with the given `Aead` algorithm, `key` and `tag_len`.
+    ///
+    /// The default tag length will be used if `tag_len` is None.
+    pub fn new(aead: Aead, key: &[u8], tag_len: Option<usize>) -> Result<Self> {
+        let tag_len = tag_len.unwrap_or(AEAD_DEFAULT_TAG_LENGTH);
+        // SAFETY: This function only reads the given data and the returned pointer is
+        // checked below.
+        let ctx = unsafe { EVP_AEAD_CTX_new(aead.0, key.as_ptr(), key.len(), tag_len) };
+        let ctx = NonNull::new(ctx).ok_or(to_call_failed_error(ApiName::EVP_AEAD_CTX_new))?;
+        Ok(Self { ctx, aead })
+    }
+
+    /// Encrypts and authenticates `data` and writes the result to `out`.
+    /// The `out` length should be at least the `data` length plus the `max_overhead` of the
+    /// `aead` and the length of `nonce` should match the `nonce_length` of the `aead`.
+    ///  Otherwise, an error will be returned.
+    ///
+    /// The output is returned as a subslice of `out`.
+    pub fn seal<'b>(
+        &self,
+        data: &[u8],
+        nonce: &[u8],
+        ad: &[u8],
+        out: &'b mut [u8],
+    ) -> Result<&'b [u8]> {
+        let mut out_len = 0;
+        // SAFETY: Only reads from/writes to the provided slices.
+        let ret = unsafe {
+            EVP_AEAD_CTX_seal(
+                self.ctx.as_ptr(),
+                out.as_mut_ptr(),
+                &mut out_len,
+                out.len(),
+                nonce.as_ptr(),
+                nonce.len(),
+                data.as_ptr(),
+                data.len(),
+                ad.as_ptr(),
+                ad.len(),
+            )
+        };
+        check_int_result(ret, ApiName::EVP_AEAD_CTX_seal)?;
+        out.get(0..out_len).ok_or(to_call_failed_error(ApiName::EVP_AEAD_CTX_seal))
+    }
+
+    /// Authenticates `data` and decrypts it to `out`.
+    /// The `out` length should be at least the `data` length, and the length of `nonce` should
+    /// match the `nonce_length` of the `aead`.
+    /// Otherwise, an error will be returned.
+    ///
+    /// The output is returned as a subslice of `out`.
+    pub fn open<'b>(
+        &self,
+        data: &[u8],
+        nonce: &[u8],
+        ad: &[u8],
+        out: &'b mut [u8],
+    ) -> Result<&'b [u8]> {
+        let mut out_len = 0;
+        // SAFETY: Only reads from/writes to the provided slices.
+        // `data` and `out` are checked to be non-alias internally.
+        let ret = unsafe {
+            EVP_AEAD_CTX_open(
+                self.ctx.as_ptr(),
+                out.as_mut_ptr(),
+                &mut out_len,
+                out.len(),
+                nonce.as_ptr(),
+                nonce.len(),
+                data.as_ptr(),
+                data.len(),
+                ad.as_ptr(),
+                ad.len(),
+            )
+        };
+        check_int_result(ret, ApiName::EVP_AEAD_CTX_open)?;
+        out.get(0..out_len).ok_or(to_call_failed_error(ApiName::EVP_AEAD_CTX_open))
+    }
+
+    /// Returns the `Aead` represented by this `AeadContext`.
+    pub fn aead(&self) -> Aead {
+        self.aead
+    }
+}
diff --git a/libs/bssl/src/cbb.rs b/libs/bssl/src/cbb.rs
new file mode 100644
index 0000000..a48c714
--- /dev/null
+++ b/libs/bssl/src/cbb.rs
@@ -0,0 +1,53 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Helpers for using BoringSSL CBB (crypto byte builder) objects.
+
+use bssl_sys::{CBB_init_fixed, CBB};
+use core::marker::PhantomData;
+use core::mem::MaybeUninit;
+
+/// Wraps a CBB that references a existing fixed-sized buffer; no memory is allocated, but the
+/// buffer cannot grow.
+pub struct CbbFixed<'a> {
+    cbb: CBB,
+    /// The CBB contains a mutable reference to the buffer, disguised as a pointer.
+    /// Make sure the borrow checker knows that.
+    _buffer: PhantomData<&'a mut [u8]>,
+}
+
+impl<'a> CbbFixed<'a> {
+    /// Create a new CBB that writes to the given buffer.
+    pub fn new(buffer: &'a mut [u8]) -> Self {
+        let mut cbb = MaybeUninit::uninit();
+        // SAFETY: `CBB_init_fixed()` is infallible and always returns one.
+        // The buffer remains valid during the lifetime of `cbb`.
+        unsafe { CBB_init_fixed(cbb.as_mut_ptr(), buffer.as_mut_ptr(), buffer.len()) };
+        // SAFETY: `cbb` has just been initialized by `CBB_init_fixed()`.
+        let cbb = unsafe { cbb.assume_init() };
+        Self { cbb, _buffer: PhantomData }
+    }
+}
+
+impl<'a> AsRef<CBB> for CbbFixed<'a> {
+    fn as_ref(&self) -> &CBB {
+        &self.cbb
+    }
+}
+
+impl<'a> AsMut<CBB> for CbbFixed<'a> {
+    fn as_mut(&mut self) -> &mut CBB {
+        &mut self.cbb
+    }
+}
diff --git a/libs/bssl/src/cbs.rs b/libs/bssl/src/cbs.rs
new file mode 100644
index 0000000..12671cf
--- /dev/null
+++ b/libs/bssl/src/cbs.rs
@@ -0,0 +1,55 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Helpers for using BoringSSL CBS (crypto byte string) objects.
+
+use bssl_sys::{CBS_init, CBS};
+use core::marker::PhantomData;
+use core::mem::MaybeUninit;
+
+/// CRYPTO ByteString.
+///
+/// Wraps a `CBS` that references an existing fixed-sized buffer; no memory is allocated, but the
+/// buffer cannot grow.
+pub struct Cbs<'a> {
+    cbs: CBS,
+    /// The CBS contains a mutable reference to the buffer, disguised as a pointer.
+    /// Make sure the borrow checker knows that.
+    _buffer: PhantomData<&'a [u8]>,
+}
+
+impl<'a> Cbs<'a> {
+    /// Creates a new CBS that points to the given buffer.
+    pub fn new(buffer: &'a [u8]) -> Self {
+        let mut cbs = MaybeUninit::uninit();
+        // SAFETY: `CBS_init()` only sets `cbs` to point to `buffer`. It doesn't take ownership
+        // of data.
+        unsafe { CBS_init(cbs.as_mut_ptr(), buffer.as_ptr(), buffer.len()) };
+        // SAFETY: `cbs` has just been initialized by `CBS_init()`.
+        let cbs = unsafe { cbs.assume_init() };
+        Self { cbs, _buffer: PhantomData }
+    }
+}
+
+impl<'a> AsRef<CBS> for Cbs<'a> {
+    fn as_ref(&self) -> &CBS {
+        &self.cbs
+    }
+}
+
+impl<'a> AsMut<CBS> for Cbs<'a> {
+    fn as_mut(&mut self) -> &mut CBS {
+        &mut self.cbs
+    }
+}
diff --git a/libs/bssl/src/curve25519.rs b/libs/bssl/src/curve25519.rs
new file mode 100644
index 0000000..4c1c398
--- /dev/null
+++ b/libs/bssl/src/curve25519.rs
@@ -0,0 +1,39 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the Curve25519 related functions in BoringSSL curve25519.h.
+
+use crate::util::check_int_result;
+use bssl_avf_error::{ApiName, Result};
+
+const ED25519_PUBLIC_KEY_LEN: usize = bssl_sys::ED25519_PUBLIC_KEY_LEN as usize;
+const ED25519_SIGNATURE_LEN: usize = bssl_sys::ED25519_SIGNATURE_LEN as usize;
+
+/// Verifies the signature of a message with the given ED25519 public key.
+pub fn ed25519_verify(
+    message: &[u8],
+    signature: &[u8; ED25519_SIGNATURE_LEN],
+    public_key: &[u8; ED25519_PUBLIC_KEY_LEN],
+) -> Result<()> {
+    // SAFETY: The function only reads the parameters within their bounds.
+    let ret = unsafe {
+        bssl_sys::ED25519_verify(
+            message.as_ptr(),
+            message.len(),
+            signature.as_ptr(),
+            public_key.as_ptr(),
+        )
+    };
+    check_int_result(ret, ApiName::ED25519_verify)
+}
diff --git a/libs/bssl/src/digest.rs b/libs/bssl/src/digest.rs
new file mode 100644
index 0000000..8a51b11
--- /dev/null
+++ b/libs/bssl/src/digest.rs
@@ -0,0 +1,130 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the digest functions in BoringSSL digest.h.
+
+use crate::util::{check_int_result, to_call_failed_error};
+use alloc::vec;
+use alloc::vec::Vec;
+use bssl_avf_error::{ApiName, Error, Result};
+use bssl_sys::{
+    EVP_Digest, EVP_MD_CTX_free, EVP_MD_CTX_new, EVP_MD_size, EVP_sha256, EVP_sha384, EVP_sha512,
+    EVP_MAX_MD_SIZE, EVP_MD, EVP_MD_CTX,
+};
+use core::ptr::{self, NonNull};
+use log::error;
+
+const MAX_DIGEST_SIZE: usize = EVP_MAX_MD_SIZE as usize;
+
+/// Message digester wrapping `EVP_MD`.
+#[derive(Clone, Debug)]
+pub struct Digester(pub(crate) &'static EVP_MD);
+
+impl Digester {
+    /// Returns a `Digester` implementing `SHA-256` algorithm.
+    pub fn sha256() -> Self {
+        // SAFETY: This function does not access any Rust variables and simply returns
+        // a pointer to the static variable in BoringSSL.
+        let p = unsafe { EVP_sha256() };
+        // SAFETY: The returned pointer should always be valid and points to a static
+        // `EVP_MD`.
+        Self(unsafe { p.as_ref().unwrap() })
+    }
+
+    /// Returns a `Digester` implementing `SHA-384` algorithm.
+    pub fn sha384() -> Self {
+        // SAFETY: This function does not access any Rust variables and simply returns
+        // a pointer to the static variable in BoringSSL.
+        let p = unsafe { EVP_sha384() };
+        // SAFETY: The returned pointer should always be valid and points to a static
+        // `EVP_MD`.
+        Self(unsafe { p.as_ref().unwrap() })
+    }
+
+    /// Returns a `Digester` implementing `SHA-512` algorithm.
+    pub fn sha512() -> Self {
+        // SAFETY: This function does not access any Rust variables and simply returns
+        // a pointer to the static variable in BoringSSL.
+        let p = unsafe { EVP_sha512() };
+        // SAFETY: The returned pointer should always be valid and points to a static
+        // `EVP_MD`.
+        Self(unsafe { p.as_ref().unwrap() })
+    }
+
+    /// Returns the digest size in bytes.
+    pub fn size(&self) -> usize {
+        // SAFETY: The inner pointer is fetched from EVP_* hash functions in BoringSSL digest.h
+        unsafe { EVP_MD_size(self.0) }
+    }
+
+    /// Computes the digest of the provided `data`.
+    pub fn digest(&self, data: &[u8]) -> Result<Vec<u8>> {
+        let mut out = vec![0u8; MAX_DIGEST_SIZE];
+        let mut out_size = 0;
+        let engine = ptr::null_mut(); // Use the default engine.
+        let ret =
+            // SAFETY: This function reads `data` and writes to `out` within its bounds.
+            // `out` has `MAX_DIGEST_SIZE` bytes of space for write as required in the
+            // BoringSSL spec.
+            // The digester is a valid pointer to a static `EVP_MD` as it is returned by
+            // BoringSSL API during the construction of this struct.
+            unsafe {
+                EVP_Digest(
+                    data.as_ptr() as *const _,
+                    data.len(),
+                    out.as_mut_ptr(),
+                    &mut out_size,
+                    self.0,
+                    engine,
+                )
+            };
+        check_int_result(ret, ApiName::EVP_Digest)?;
+        let out_size = usize::try_from(out_size).map_err(|e| {
+            error!("Failed to convert digest size to usize: {:?}", e);
+            Error::InternalError
+        })?;
+        if self.size() != out_size {
+            return Err(to_call_failed_error(ApiName::EVP_Digest));
+        }
+        out.truncate(out_size);
+        Ok(out)
+    }
+}
+
+/// Message digester context wrapping `EVP_MD_CTX`.
+#[derive(Clone, Debug)]
+pub struct DigesterContext(NonNull<EVP_MD_CTX>);
+
+impl Drop for DigesterContext {
+    fn drop(&mut self) {
+        // SAFETY: This function frees any resources owned by `EVP_MD_CTX` and resets it to a
+        // freshly initialised state and then frees the context.
+        // It is safe because `EVP_MD_CTX` has been allocated by BoringSSL and isn't used after
+        // this.
+        unsafe { EVP_MD_CTX_free(self.0.as_ptr()) }
+    }
+}
+
+impl DigesterContext {
+    /// Creates a new `DigesterContext` wrapping a freshly allocated and initialised `EVP_MD_CTX`.
+    pub fn new() -> Result<Self> {
+        // SAFETY: The returned pointer is checked below.
+        let ctx = unsafe { EVP_MD_CTX_new() };
+        NonNull::new(ctx).map(Self).ok_or(to_call_failed_error(ApiName::EVP_MD_CTX_new))
+    }
+
+    pub(crate) fn as_mut_ptr(&mut self) -> *mut EVP_MD_CTX {
+        self.0.as_ptr()
+    }
+}
diff --git a/libs/bssl/src/ec_key.rs b/libs/bssl/src/ec_key.rs
new file mode 100644
index 0000000..6c9910c
--- /dev/null
+++ b/libs/bssl/src/ec_key.rs
@@ -0,0 +1,444 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Contains struct and functions that wraps the API related to EC_KEY in
+//! BoringSSL.
+
+use crate::cbb::CbbFixed;
+use crate::cbs::Cbs;
+use crate::util::{check_int_result, to_call_failed_error};
+use alloc::vec;
+use alloc::vec::Vec;
+use bssl_avf_error::{ApiName, Error, Result};
+use bssl_sys::{
+    BN_bin2bn, BN_bn2bin_padded, BN_clear_free, BN_new, CBB_flush, CBB_len, ECDSA_sign, ECDSA_size,
+    ECDSA_verify, EC_GROUP_get_curve_name, EC_GROUP_new_by_curve_name, EC_KEY_check_key,
+    EC_KEY_free, EC_KEY_generate_key, EC_KEY_get0_group, EC_KEY_get0_public_key,
+    EC_KEY_marshal_private_key, EC_KEY_new_by_curve_name, EC_KEY_parse_private_key,
+    EC_KEY_set_public_key_affine_coordinates, EC_POINT_get_affine_coordinates,
+    NID_X9_62_prime256v1, NID_secp384r1, BIGNUM, EC_GROUP, EC_KEY, EC_POINT,
+};
+use cbor_util::{get_label_value, get_label_value_as_bytes};
+use ciborium::Value;
+use core::ptr::{self, NonNull};
+use coset::{
+    iana::{self, EnumI64},
+    CborSerializable, CoseKey, CoseKeyBuilder, KeyType, Label,
+};
+use log::error;
+use zeroize::{Zeroize, ZeroizeOnDrop, Zeroizing};
+
+const ES256_ALGO: iana::Algorithm = iana::Algorithm::ES256;
+const P256_CURVE: iana::EllipticCurve = iana::EllipticCurve::P_256;
+const P384_CURVE: iana::EllipticCurve = iana::EllipticCurve::P_384;
+const P256_AFFINE_COORDINATE_SIZE: usize = 32;
+const P384_AFFINE_COORDINATE_SIZE: usize = 48;
+
+/// Wrapper of an `EC_KEY` object, representing a public or private EC key.
+pub struct EcKey(pub(crate) NonNull<EC_KEY>);
+
+impl Drop for EcKey {
+    fn drop(&mut self) {
+        // SAFETY: It is safe because the key has been allocated by BoringSSL and isn't
+        // used after this.
+        unsafe { EC_KEY_free(self.0.as_ptr()) }
+    }
+}
+
+impl EcKey {
+    /// Creates a new EC P-256 key pair.
+    pub fn new_p256() -> Result<Self> {
+        // SAFETY: The returned pointer is checked below.
+        let ec_key = unsafe {
+            EC_KEY_new_by_curve_name(NID_X9_62_prime256v1) // EC P-256 CURVE Nid
+        };
+        NonNull::new(ec_key)
+            .map(Self)
+            .ok_or(to_call_failed_error(ApiName::EC_KEY_new_by_curve_name))
+    }
+
+    /// Creates a new EC P-384 key pair.
+    pub fn new_p384() -> Result<Self> {
+        // SAFETY: The returned pointer is checked below.
+        let ec_key = unsafe {
+            EC_KEY_new_by_curve_name(NID_secp384r1) // EC P-384 CURVE Nid
+        };
+        NonNull::new(ec_key)
+            .map(Self)
+            .ok_or(to_call_failed_error(ApiName::EC_KEY_new_by_curve_name))
+    }
+
+    /// Constructs an `EcKey` instance from the provided COSE_Key encoded public key slice.
+    pub fn from_cose_public_key_slice(cose_key: &[u8]) -> Result<Self> {
+        let cose_key = CoseKey::from_slice(cose_key).map_err(|e| {
+            error!("Failed to deserialize COSE_Key: {e:?}");
+            Error::CoseKeyDecodingFailed
+        })?;
+        Self::from_cose_public_key(&cose_key)
+    }
+
+    /// Constructs an `EcKey` instance from the provided `COSE_Key`.
+    ///
+    /// The lifetime of the returned `EcKey` is not tied to the lifetime of the `cose_key`,
+    /// because the affine coordinates stored in the `cose_key` are copied into the `EcKey`.
+    ///
+    /// Currently, only the EC P-256 and P-384 curves are supported.
+    pub fn from_cose_public_key(cose_key: &CoseKey) -> Result<Self> {
+        if cose_key.kty != KeyType::Assigned(iana::KeyType::EC2) {
+            error!("Only EC2 keys are supported. Key type in the COSE Key: {:?}", cose_key.kty);
+            return Err(Error::Unimplemented);
+        }
+        let ec_key =
+            match get_label_value(cose_key, Label::Int(iana::Ec2KeyParameter::Crv.to_i64()))? {
+                crv if crv == &Value::from(P256_CURVE.to_i64()) => EcKey::new_p256()?,
+                crv if crv == &Value::from(P384_CURVE.to_i64()) => EcKey::new_p384()?,
+                crv => {
+                    error!(
+                        "Only EC P-256 and P-384 curves are supported. \
+                         Curve type in the COSE Key: {crv:?}"
+                    );
+                    return Err(Error::Unimplemented);
+                }
+            };
+        let x = get_label_value_as_bytes(cose_key, Label::Int(iana::Ec2KeyParameter::X.to_i64()))?;
+        let y = get_label_value_as_bytes(cose_key, Label::Int(iana::Ec2KeyParameter::Y.to_i64()))?;
+
+        let group = ec_key.ec_group()?;
+        group.check_affine_coordinate_size(x)?;
+        group.check_affine_coordinate_size(y)?;
+
+        let x = BigNum::from_slice(x)?;
+        let y = BigNum::from_slice(y)?;
+
+        // SAFETY: All the parameters are checked non-null and initialized.
+        // The function only reads the coordinates x and y within their bounds.
+        let ret = unsafe {
+            EC_KEY_set_public_key_affine_coordinates(ec_key.0.as_ptr(), x.as_ref(), y.as_ref())
+        };
+        check_int_result(ret, ApiName::EC_KEY_set_public_key_affine_coordinates)?;
+        ec_key.check_key()?;
+        Ok(ec_key)
+    }
+
+    /// Performs several checks on the key. See BoringSSL doc for more details:
+    ///
+    /// https://commondatastorage.googleapis.com/chromium-boringssl-docs/ec_key.h.html#EC_KEY_check_key
+    pub fn check_key(&self) -> Result<()> {
+        // SAFETY: This function only reads the `EC_KEY` pointer, the non-null check is performed
+        // within the function.
+        let ret = unsafe { EC_KEY_check_key(self.0.as_ptr()) };
+        check_int_result(ret, ApiName::EC_KEY_check_key)
+    }
+
+    /// Verifies the DER-encoded ECDSA `signature` of the `digest` with the current `EcKey`.
+    ///
+    /// Returns Ok(()) if the verification succeeds, otherwise an error will be returned.
+    pub fn ecdsa_verify(&self, signature: &[u8], digest: &[u8]) -> Result<()> {
+        // The `type` argument should be 0 as required in the BoringSSL spec.
+        const TYPE: i32 = 0;
+
+        // SAFETY: This function only reads the given data within its bounds.
+        // The `EC_KEY` passed to this function has been initialized and checked non-null.
+        let ret = unsafe {
+            ECDSA_verify(
+                TYPE,
+                digest.as_ptr(),
+                digest.len(),
+                signature.as_ptr(),
+                signature.len(),
+                self.0.as_ptr(),
+            )
+        };
+        check_int_result(ret, ApiName::ECDSA_verify)
+    }
+
+    /// Signs the `digest` with the current `EcKey` using ECDSA.
+    ///
+    /// Returns the DER-encoded ECDSA signature.
+    pub fn ecdsa_sign(&self, digest: &[u8]) -> Result<Vec<u8>> {
+        // The `type` argument should be 0 as required in the BoringSSL spec.
+        const TYPE: i32 = 0;
+
+        let mut signature = vec![0u8; self.ecdsa_size()?];
+        let mut signature_len = 0;
+        // SAFETY: This function only reads the given data within its bounds.
+        // The `EC_KEY` passed to this function has been initialized and checked non-null.
+        let ret = unsafe {
+            ECDSA_sign(
+                TYPE,
+                digest.as_ptr(),
+                digest.len(),
+                signature.as_mut_ptr(),
+                &mut signature_len,
+                self.0.as_ptr(),
+            )
+        };
+        check_int_result(ret, ApiName::ECDSA_sign)?;
+        if signature.len() < (signature_len as usize) {
+            Err(to_call_failed_error(ApiName::ECDSA_sign))
+        } else {
+            signature.truncate(signature_len as usize);
+            Ok(signature)
+        }
+    }
+
+    /// Returns the maximum size of an ECDSA signature using the current `EcKey`.
+    fn ecdsa_size(&self) -> Result<usize> {
+        // SAFETY: This function only reads the `EC_KEY` that has been initialized
+        // and checked non-null when this instance is created.
+        let size = unsafe { ECDSA_size(self.0.as_ptr()) };
+        if size == 0 {
+            Err(to_call_failed_error(ApiName::ECDSA_size))
+        } else {
+            Ok(size)
+        }
+    }
+
+    /// Generates a random, private key, calculates the corresponding public key and stores both
+    /// in the `EC_KEY`.
+    pub fn generate_key(&mut self) -> Result<()> {
+        // SAFETY: The non-null pointer is created with `EC_KEY_new_by_curve_name` and should
+        // point to a valid `EC_KEY`.
+        // The randomness is provided by `getentropy()` in `vmbase`.
+        let ret = unsafe { EC_KEY_generate_key(self.0.as_ptr()) };
+        check_int_result(ret, ApiName::EC_KEY_generate_key)
+    }
+
+    /// Returns the `CoseKey` for the public key.
+    pub fn cose_public_key(&self) -> Result<CoseKey> {
+        let (x, y) = self.public_key_coordinates()?;
+        let curve = self.ec_group()?.coset_curve()?;
+        let key = CoseKeyBuilder::new_ec2_pub_key(curve, x, y).algorithm(ES256_ALGO).build();
+        Ok(key)
+    }
+
+    /// Returns the x and y coordinates of the public key.
+    fn public_key_coordinates(&self) -> Result<(Vec<u8>, Vec<u8>)> {
+        let ec_group = self.ec_group()?;
+        let ec_point = self.public_key_ec_point()?;
+        let mut x = BigNum::new()?;
+        let mut y = BigNum::new()?;
+        let ctx = ptr::null_mut();
+        // SAFETY: All the parameters are checked non-null and initialized when needed.
+        // The last parameter `ctx` is generated when needed inside the function.
+        let ret = unsafe {
+            EC_POINT_get_affine_coordinates(
+                ec_group.as_ref(),
+                ec_point,
+                x.as_mut_ptr(),
+                y.as_mut_ptr(),
+                ctx,
+            )
+        };
+        check_int_result(ret, ApiName::EC_POINT_get_affine_coordinates)?;
+        let len = ec_group.affine_coordinate_size()?;
+        Ok((x.to_padded_vec(len)?, y.to_padded_vec(len)?))
+    }
+
+    /// Returns a pointer to the public key point inside `EC_KEY`. The memory region pointed
+    /// by the pointer is owned by the `EC_KEY`.
+    fn public_key_ec_point(&self) -> Result<*const EC_POINT> {
+        let ec_point =
+           // SAFETY: It is safe since the key pair has been generated and stored in the
+           // `EC_KEY` pointer.
+           unsafe { EC_KEY_get0_public_key(self.0.as_ptr()) };
+        if ec_point.is_null() {
+            Err(to_call_failed_error(ApiName::EC_KEY_get0_public_key))
+        } else {
+            Ok(ec_point)
+        }
+    }
+
+    /// Returns a pointer to the `EC_GROUP` object inside `EC_KEY`. The memory region pointed
+    /// by the pointer is owned by the `EC_KEY`.
+    fn ec_group(&self) -> Result<EcGroup<'_>> {
+        let group =
+           // SAFETY: It is safe since the key pair has been generated and stored in the
+           // `EC_KEY` pointer.
+           unsafe { EC_KEY_get0_group(self.0.as_ptr()) };
+        if group.is_null() {
+            Err(to_call_failed_error(ApiName::EC_KEY_get0_group))
+        } else {
+            // SAFETY: The pointer should be valid and points to an initialized `EC_GROUP`
+            // since it is read from a valid `EC_KEY`.
+            Ok(EcGroup(unsafe { &*group }))
+        }
+    }
+
+    /// Constructs an `EcKey` instance from the provided DER-encoded ECPrivateKey slice.
+    ///
+    /// Currently, only the EC P-256 curve is supported.
+    pub fn from_ec_private_key(der_encoded_ec_private_key: &[u8]) -> Result<Self> {
+        // SAFETY: This function only returns a pointer to a static object, and the
+        // return is checked below.
+        let ec_group = unsafe {
+            EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1) // EC P-256 CURVE Nid
+        };
+        if ec_group.is_null() {
+            return Err(to_call_failed_error(ApiName::EC_GROUP_new_by_curve_name));
+        }
+        let mut cbs = Cbs::new(der_encoded_ec_private_key);
+        // SAFETY: The function only reads bytes from the buffer managed by the valid `CBS`
+        // object, and the returned EC_KEY is checked.
+        let ec_key = unsafe { EC_KEY_parse_private_key(cbs.as_mut(), ec_group) };
+
+        let ec_key = NonNull::new(ec_key)
+            .map(Self)
+            .ok_or(to_call_failed_error(ApiName::EC_KEY_parse_private_key))?;
+        ec_key.check_key()?;
+        Ok(ec_key)
+    }
+
+    /// Returns the DER-encoded ECPrivateKey structure described in RFC 5915 Section 3:
+    ///
+    /// https://datatracker.ietf.org/doc/html/rfc5915#section-3
+    pub fn ec_private_key(&self) -> Result<ZVec> {
+        const CAPACITY: usize = 256;
+        let mut buf = Zeroizing::new([0u8; CAPACITY]);
+        let mut cbb = CbbFixed::new(buf.as_mut());
+        let enc_flags = 0;
+        let ret =
+            // SAFETY: The function only write bytes to the buffer managed by the valid `CBB`
+            // object, and the key has been allocated by BoringSSL.
+            unsafe { EC_KEY_marshal_private_key(cbb.as_mut(), self.0.as_ptr(), enc_flags) };
+
+        check_int_result(ret, ApiName::EC_KEY_marshal_private_key)?;
+        // SAFETY: This is safe because the CBB pointer is a valid pointer initialized with
+        // `CBB_init_fixed()`.
+        check_int_result(unsafe { CBB_flush(cbb.as_mut()) }, ApiName::CBB_flush)?;
+        // SAFETY: This is safe because the CBB pointer is initialized with `CBB_init_fixed()`,
+        // and it has been flushed, thus it has no active children.
+        let len = unsafe { CBB_len(cbb.as_ref()) };
+        Ok(buf.get(0..len).ok_or(to_call_failed_error(ApiName::CBB_len))?.to_vec().into())
+    }
+}
+
+/// Wrapper of an `EC_GROUP` reference.
+struct EcGroup<'a>(&'a EC_GROUP);
+
+impl<'a> EcGroup<'a> {
+    /// Returns the NID that identifies the EC group of the key.
+    fn curve_nid(&self) -> i32 {
+        // SAFETY: It is safe since the inner pointer is valid and points to an initialized
+        // instance of `EC_GROUP`.
+        unsafe { EC_GROUP_get_curve_name(self.as_ref()) }
+    }
+
+    fn coset_curve(&self) -> Result<iana::EllipticCurve> {
+        #[allow(non_upper_case_globals)]
+        match self.curve_nid() {
+            NID_X9_62_prime256v1 => Ok(P256_CURVE),
+            NID_secp384r1 => Ok(P384_CURVE),
+            name => {
+                error!("Unsupported curve NID: {}", name);
+                Err(Error::Unimplemented)
+            }
+        }
+    }
+
+    fn affine_coordinate_size(&self) -> Result<usize> {
+        #[allow(non_upper_case_globals)]
+        match self.curve_nid() {
+            NID_X9_62_prime256v1 => Ok(P256_AFFINE_COORDINATE_SIZE),
+            NID_secp384r1 => Ok(P384_AFFINE_COORDINATE_SIZE),
+            name => {
+                error!("Unsupported curve NID: {}", name);
+                Err(Error::Unimplemented)
+            }
+        }
+    }
+
+    fn check_affine_coordinate_size(&self, coordinate: &[u8]) -> Result<()> {
+        let expected_len = self.affine_coordinate_size()?;
+        if expected_len == coordinate.len() {
+            Ok(())
+        } else {
+            error!(
+                "The size of the affine coordinate '{}' does not match the expected size '{}'",
+                coordinate.len(),
+                expected_len
+            );
+            Err(Error::CoseKeyDecodingFailed)
+        }
+    }
+}
+
+impl<'a> AsRef<EC_GROUP> for EcGroup<'a> {
+    fn as_ref(&self) -> &EC_GROUP {
+        self.0
+    }
+}
+
+/// A u8 vector that is zeroed when dropped.
+#[derive(Zeroize, ZeroizeOnDrop)]
+pub struct ZVec(Vec<u8>);
+
+impl ZVec {
+    /// Extracts a slice containing the entire vector.
+    pub fn as_slice(&self) -> &[u8] {
+        &self.0[..]
+    }
+}
+
+impl From<Vec<u8>> for ZVec {
+    fn from(v: Vec<u8>) -> Self {
+        Self(v)
+    }
+}
+
+struct BigNum(NonNull<BIGNUM>);
+
+impl Drop for BigNum {
+    fn drop(&mut self) {
+        // SAFETY: The pointer has been created with `BN_new`.
+        unsafe { BN_clear_free(self.as_mut_ptr()) }
+    }
+}
+
+impl BigNum {
+    fn from_slice(x: &[u8]) -> Result<Self> {
+        // SAFETY: The function reads `x` within its bounds, and the returned
+        // pointer is checked below.
+        let bn = unsafe { BN_bin2bn(x.as_ptr(), x.len(), ptr::null_mut()) };
+        NonNull::new(bn).map(Self).ok_or(to_call_failed_error(ApiName::BN_bin2bn))
+    }
+
+    fn new() -> Result<Self> {
+        // SAFETY: The returned pointer is checked below.
+        let bn = unsafe { BN_new() };
+        NonNull::new(bn).map(Self).ok_or(to_call_failed_error(ApiName::BN_new))
+    }
+
+    /// Converts the `BigNum` to a big-endian integer. The integer is padded with leading zeros up
+    /// to size `len`. The conversion fails if `len` is smaller than the size of the integer.
+    fn to_padded_vec(&self, len: usize) -> Result<Vec<u8>> {
+        let mut num = vec![0u8; len];
+        // SAFETY: The `BIGNUM` pointer has been created with `BN_new`.
+        let ret = unsafe { BN_bn2bin_padded(num.as_mut_ptr(), num.len(), self.0.as_ptr()) };
+        check_int_result(ret, ApiName::BN_bn2bin_padded)?;
+        Ok(num)
+    }
+
+    fn as_mut_ptr(&mut self) -> *mut BIGNUM {
+        self.0.as_ptr()
+    }
+}
+
+impl AsRef<BIGNUM> for BigNum {
+    fn as_ref(&self) -> &BIGNUM {
+        // SAFETY: The pointer is valid and points to an initialized instance of `BIGNUM`
+        // when the instance was created.
+        unsafe { self.0.as_ref() }
+    }
+}
diff --git a/libs/bssl/src/err.rs b/libs/bssl/src/err.rs
new file mode 100644
index 0000000..a53ac8c
--- /dev/null
+++ b/libs/bssl/src/err.rs
@@ -0,0 +1,234 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the error handling functions in BoringSSL err.h.
+
+use alloc::string::{String, ToString};
+use bssl_avf_error::{CipherError, EcError, EcdsaError, GlobalError, ReasonCode};
+use bssl_sys::{
+    self, ERR_get_error_line, ERR_lib_error_string, ERR_reason_error_string, ERR_GET_LIB_RUST,
+    ERR_GET_REASON_RUST,
+};
+use core::ffi::{c_char, CStr};
+use core::ptr;
+use log::{error, info};
+
+const NO_ERROR_REASON_CODE: i32 = 0;
+
+/// Processes the error queue till it is empty, logs the information for all the errors in
+/// the queue from the least recent to the most recent, and returns the reason code for the
+/// most recent error.
+pub(crate) fn process_error_queue() -> ReasonCode {
+    let mut reason_code = ReasonCode::NoError;
+    loop {
+        let code = process_least_recent_error();
+        if code == ReasonCode::NoError {
+            break;
+        }
+        reason_code = code;
+    }
+    reason_code
+}
+
+/// Removes the least recent error in the error queue and logs the error information.
+///
+/// Returns the reason code for the least recent error.
+fn process_least_recent_error() -> ReasonCode {
+    let mut file = ptr::null();
+    let mut line = 0;
+    // SAFETY: This function only reads the error queue and writes to the given
+    // pointers. It doesn't retain any references to the pointers.
+    let packed_error = unsafe { ERR_get_error_line(&mut file, &mut line) };
+    let reason = get_reason(packed_error);
+    if reason == NO_ERROR_REASON_CODE {
+        info!("No error in the BoringSSL error queue");
+        return ReasonCode::NoError;
+    }
+
+    // SAFETY: Any non-null result is expected to point to a global const C string.
+    let file = unsafe { cstr_to_string(file, "<unknown file>") };
+    error!(
+        "BoringSSL error: {}:{}: lib = {}, reason = {}",
+        file,
+        line,
+        lib_error_string(packed_error),
+        reason_error_string(packed_error),
+    );
+
+    let lib = get_lib(packed_error);
+    map_to_reason_code(reason, lib)
+}
+
+fn lib_error_string(packed_error: u32) -> String {
+    // SAFETY: This function only reads the given error code and returns a
+    // pointer to a static string.
+    let p = unsafe { ERR_lib_error_string(packed_error) };
+    // SAFETY: Any non-null result is expected to point to a global const C string.
+    unsafe { cstr_to_string(p, "<unknown library>") }
+}
+
+fn reason_error_string(packed_error: u32) -> String {
+    // SAFETY: This function only reads the given error code and returns a
+    // pointer to a static string.
+    let p = unsafe { ERR_reason_error_string(packed_error) };
+    // SAFETY: Any non-null result is expected to point to a global const C string.
+    unsafe { cstr_to_string(p, "<unknown reason>") }
+}
+
+/// Converts a C string pointer to a Rust string.
+///
+/// # Safety
+///
+/// The caller needs to ensure that the pointer is null or points to a valid C string.
+unsafe fn cstr_to_string(p: *const c_char, default: &str) -> String {
+    if p.is_null() {
+        return default.to_string();
+    }
+    // Safety: Safe given the requirements of this function.
+    let s = unsafe { CStr::from_ptr(p) };
+    s.to_str().unwrap_or(default).to_string()
+}
+
+fn get_reason(packed_error: u32) -> i32 {
+    // SAFETY: This function only reads the given error code.
+    unsafe { ERR_GET_REASON_RUST(packed_error) }
+}
+
+/// Returns the library code for the error.
+fn get_lib(packed_error: u32) -> i32 {
+    // SAFETY: This function only reads the given error code.
+    unsafe { ERR_GET_LIB_RUST(packed_error) }
+}
+
+fn map_to_reason_code(reason: i32, lib: i32) -> ReasonCode {
+    if reason == NO_ERROR_REASON_CODE {
+        return ReasonCode::NoError;
+    }
+    map_global_reason_code(reason)
+        .map(ReasonCode::Global)
+        .or_else(|| map_library_reason_code(reason, lib))
+        .unwrap_or(ReasonCode::Unknown(reason, lib))
+}
+
+/// Global errors may occur in any library.
+fn map_global_reason_code(reason: i32) -> Option<GlobalError> {
+    let reason = match reason {
+        bssl_sys::ERR_R_FATAL => GlobalError::Fatal,
+        bssl_sys::ERR_R_MALLOC_FAILURE => GlobalError::MallocFailure,
+        bssl_sys::ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED => GlobalError::ShouldNotHaveBeenCalled,
+        bssl_sys::ERR_R_PASSED_NULL_PARAMETER => GlobalError::PassedNullParameter,
+        bssl_sys::ERR_R_INTERNAL_ERROR => GlobalError::InternalError,
+        bssl_sys::ERR_R_OVERFLOW => GlobalError::Overflow,
+        _ => return None,
+    };
+    Some(reason)
+}
+
+fn map_library_reason_code(reason: i32, lib: i32) -> Option<ReasonCode> {
+    u32::try_from(lib).ok().and_then(|x| match x {
+        bssl_sys::ERR_LIB_CIPHER => map_cipher_reason_code(reason).map(ReasonCode::Cipher),
+        bssl_sys::ERR_LIB_EC => map_ec_reason_code(reason).map(ReasonCode::Ec),
+        bssl_sys::ERR_LIB_ECDSA => map_ecdsa_reason_code(reason).map(ReasonCode::Ecdsa),
+        _ => None,
+    })
+}
+
+fn map_cipher_reason_code(reason: i32) -> Option<CipherError> {
+    let error = match reason {
+        bssl_sys::CIPHER_R_AES_KEY_SETUP_FAILED => CipherError::AesKeySetupFailed,
+        bssl_sys::CIPHER_R_BAD_DECRYPT => CipherError::BadDecrypt,
+        bssl_sys::CIPHER_R_BAD_KEY_LENGTH => CipherError::BadKeyLength,
+        bssl_sys::CIPHER_R_BUFFER_TOO_SMALL => CipherError::BufferTooSmall,
+        bssl_sys::CIPHER_R_CTRL_NOT_IMPLEMENTED => CipherError::CtrlNotImplemented,
+        bssl_sys::CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED => {
+            CipherError::CtrlOperationNotImplemented
+        }
+        bssl_sys::CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH => {
+            CipherError::DataNotMultipleOfBlockLength
+        }
+        bssl_sys::CIPHER_R_INITIALIZATION_ERROR => CipherError::InitializationError,
+        bssl_sys::CIPHER_R_INPUT_NOT_INITIALIZED => CipherError::InputNotInitialized,
+        bssl_sys::CIPHER_R_INVALID_AD_SIZE => CipherError::InvalidAdSize,
+        bssl_sys::CIPHER_R_INVALID_KEY_LENGTH => CipherError::InvalidKeyLength,
+        bssl_sys::CIPHER_R_INVALID_NONCE_SIZE => CipherError::InvalidNonceSize,
+        bssl_sys::CIPHER_R_INVALID_OPERATION => CipherError::InvalidOperation,
+        bssl_sys::CIPHER_R_IV_TOO_LARGE => CipherError::IvTooLarge,
+        bssl_sys::CIPHER_R_NO_CIPHER_SET => CipherError::NoCipherSet,
+        bssl_sys::CIPHER_R_OUTPUT_ALIASES_INPUT => CipherError::OutputAliasesInput,
+        bssl_sys::CIPHER_R_TAG_TOO_LARGE => CipherError::TagTooLarge,
+        bssl_sys::CIPHER_R_TOO_LARGE => CipherError::TooLarge,
+        bssl_sys::CIPHER_R_WRONG_FINAL_BLOCK_LENGTH => CipherError::WrongFinalBlockLength,
+        bssl_sys::CIPHER_R_NO_DIRECTION_SET => CipherError::NoDirectionSet,
+        bssl_sys::CIPHER_R_INVALID_NONCE => CipherError::InvalidNonce,
+        _ => return None,
+    };
+    Some(error)
+}
+
+fn map_ec_reason_code(reason: i32) -> Option<EcError> {
+    let error = match reason {
+        bssl_sys::EC_R_BUFFER_TOO_SMALL => EcError::BufferTooSmall,
+        bssl_sys::EC_R_COORDINATES_OUT_OF_RANGE => EcError::CoordinatesOutOfRange,
+        bssl_sys::EC_R_D2I_ECPKPARAMETERS_FAILURE => EcError::D2IEcpkparametersFailure,
+        bssl_sys::EC_R_EC_GROUP_NEW_BY_NAME_FAILURE => EcError::EcGroupNewByNameFailure,
+        bssl_sys::EC_R_GROUP2PKPARAMETERS_FAILURE => EcError::Group2PkparametersFailure,
+        bssl_sys::EC_R_I2D_ECPKPARAMETERS_FAILURE => EcError::I2DEcpkparametersFailure,
+        bssl_sys::EC_R_INCOMPATIBLE_OBJECTS => EcError::IncompatibleObjects,
+        bssl_sys::EC_R_INVALID_COMPRESSED_POINT => EcError::InvalidCompressedPoint,
+        bssl_sys::EC_R_INVALID_COMPRESSION_BIT => EcError::InvalidCompressionBit,
+        bssl_sys::EC_R_INVALID_ENCODING => EcError::InvalidEncoding,
+        bssl_sys::EC_R_INVALID_FIELD => EcError::InvalidField,
+        bssl_sys::EC_R_INVALID_FORM => EcError::InvalidForm,
+        bssl_sys::EC_R_INVALID_GROUP_ORDER => EcError::InvalidGroupOrder,
+        bssl_sys::EC_R_INVALID_PRIVATE_KEY => EcError::InvalidPrivateKey,
+        bssl_sys::EC_R_MISSING_PARAMETERS => EcError::MissingParameters,
+        bssl_sys::EC_R_MISSING_PRIVATE_KEY => EcError::MissingPrivateKey,
+        bssl_sys::EC_R_NON_NAMED_CURVE => EcError::NonNamedCurve,
+        bssl_sys::EC_R_NOT_INITIALIZED => EcError::NotInitialized,
+        bssl_sys::EC_R_PKPARAMETERS2GROUP_FAILURE => EcError::Pkparameters2GroupFailure,
+        bssl_sys::EC_R_POINT_AT_INFINITY => EcError::PointAtInfinity,
+        bssl_sys::EC_R_POINT_IS_NOT_ON_CURVE => EcError::PointIsNotOnCurve,
+        bssl_sys::EC_R_SLOT_FULL => EcError::SlotFull,
+        bssl_sys::EC_R_UNDEFINED_GENERATOR => EcError::UndefinedGenerator,
+        bssl_sys::EC_R_UNKNOWN_GROUP => EcError::UnknownGroup,
+        bssl_sys::EC_R_UNKNOWN_ORDER => EcError::UnknownOrder,
+        bssl_sys::EC_R_WRONG_ORDER => EcError::WrongOrder,
+        bssl_sys::EC_R_BIGNUM_OUT_OF_RANGE => EcError::BignumOutOfRange,
+        bssl_sys::EC_R_WRONG_CURVE_PARAMETERS => EcError::WrongCurveParameters,
+        bssl_sys::EC_R_DECODE_ERROR => EcError::DecodeError,
+        bssl_sys::EC_R_ENCODE_ERROR => EcError::EncodeError,
+        bssl_sys::EC_R_GROUP_MISMATCH => EcError::GroupMismatch,
+        bssl_sys::EC_R_INVALID_COFACTOR => EcError::InvalidCofactor,
+        bssl_sys::EC_R_PUBLIC_KEY_VALIDATION_FAILED => EcError::PublicKeyValidationFailed,
+        bssl_sys::EC_R_INVALID_SCALAR => EcError::InvalidScalar,
+        _ => return None,
+    };
+    Some(error)
+}
+
+fn map_ecdsa_reason_code(reason: i32) -> Option<EcdsaError> {
+    let error = match reason {
+        bssl_sys::ECDSA_R_BAD_SIGNATURE => EcdsaError::BadSignature,
+        bssl_sys::ECDSA_R_MISSING_PARAMETERS => EcdsaError::MissingParameters,
+        bssl_sys::ECDSA_R_NEED_NEW_SETUP_VALUES => EcdsaError::NeedNewSetupValues,
+        bssl_sys::ECDSA_R_NOT_IMPLEMENTED => EcdsaError::NotImplemented,
+        bssl_sys::ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED => {
+            EcdsaError::RandomNumberGenerationFailed
+        }
+        bssl_sys::ECDSA_R_ENCODE_ERROR => EcdsaError::EncodeError,
+        bssl_sys::ECDSA_R_TOO_MANY_ITERATIONS => EcdsaError::TooManyIterations,
+        _ => return None,
+    };
+    Some(error)
+}
diff --git a/libs/bssl/src/evp.rs b/libs/bssl/src/evp.rs
new file mode 100644
index 0000000..fca189c
--- /dev/null
+++ b/libs/bssl/src/evp.rs
@@ -0,0 +1,221 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the EVP functions in BoringSSL evp.h.
+
+use crate::cbb::CbbFixed;
+use crate::digest::{Digester, DigesterContext};
+use crate::ec_key::EcKey;
+use crate::util::{check_int_result, to_call_failed_error};
+use alloc::vec::Vec;
+use bssl_avf_error::{ApiName, Error, Result};
+use bssl_sys::{
+    CBB_flush, CBB_len, EVP_DigestVerify, EVP_DigestVerifyInit, EVP_PKEY_free, EVP_PKEY_new,
+    EVP_PKEY_new_raw_public_key, EVP_PKEY_set1_EC_KEY, EVP_marshal_public_key, EVP_PKEY,
+    EVP_PKEY_ED25519, EVP_PKEY_X25519,
+};
+use cbor_util::{get_label_value, get_label_value_as_bytes};
+use ciborium::Value;
+use core::ptr::{self, NonNull};
+use coset::{
+    iana::{self, EnumI64},
+    CoseKey, KeyType, Label,
+};
+use log::error;
+
+/// Wrapper of an `EVP_PKEY` object, representing a public or private key.
+pub struct PKey {
+    pkey: NonNull<EVP_PKEY>,
+    /// If this struct owns the inner EC key, the inner EC key should remain valid as
+    /// long as the pointer to `EVP_PKEY` is valid.
+    _inner_ec_key: Option<EcKey>,
+}
+
+impl Drop for PKey {
+    fn drop(&mut self) {
+        // SAFETY: It is safe because `EVP_PKEY` has been allocated by BoringSSL and isn't
+        // used after this.
+        unsafe { EVP_PKEY_free(self.pkey.as_ptr()) }
+    }
+}
+
+/// Creates a new empty `EVP_PKEY`.
+fn new_pkey() -> Result<NonNull<EVP_PKEY>> {
+    // SAFETY: The returned pointer is checked below.
+    let key = unsafe { EVP_PKEY_new() };
+    NonNull::new(key).ok_or(to_call_failed_error(ApiName::EVP_PKEY_new))
+}
+
+impl TryFrom<EcKey> for PKey {
+    type Error = bssl_avf_error::Error;
+
+    fn try_from(key: EcKey) -> Result<Self> {
+        let pkey = new_pkey()?;
+        // SAFETY: The function only sets the inner EC key of the initialized and
+        // non-null `EVP_PKEY` to point to the given `EC_KEY`. It only reads from
+        // and writes to the initialized `EVP_PKEY`.
+        // Since this struct owns the inner key, the inner key remains valid as
+        // long as `EVP_PKEY` is valid.
+        let ret = unsafe { EVP_PKEY_set1_EC_KEY(pkey.as_ptr(), key.0.as_ptr()) };
+        check_int_result(ret, ApiName::EVP_PKEY_set1_EC_KEY)?;
+        Ok(Self { pkey, _inner_ec_key: Some(key) })
+    }
+}
+
+impl PKey {
+    /// Returns a DER-encoded SubjectPublicKeyInfo structure as specified
+    /// in RFC 5280 s4.1.2.7:
+    ///
+    /// https://www.rfc-editor.org/rfc/rfc5280.html#section-4.1.2.7
+    pub fn subject_public_key_info(&self) -> Result<Vec<u8>> {
+        const CAPACITY: usize = 256;
+        let mut buf = [0u8; CAPACITY];
+        let mut cbb = CbbFixed::new(buf.as_mut());
+        // SAFETY: The function only write bytes to the buffer managed by the valid `CBB`.
+        // The inner key in `EVP_PKEY` was set to a valid key when the object was created.
+        // As this struct owns the inner key, the inner key is guaranteed to be valid
+        // throughout the execution of the function.
+        let ret = unsafe { EVP_marshal_public_key(cbb.as_mut(), self.pkey.as_ptr()) };
+        check_int_result(ret, ApiName::EVP_marshal_public_key)?;
+        // SAFETY: This is safe because the CBB pointer is a valid pointer initialized with
+        // `CBB_init_fixed()`.
+        check_int_result(unsafe { CBB_flush(cbb.as_mut()) }, ApiName::CBB_flush)?;
+        // SAFETY: This is safe because the CBB pointer is initialized with `CBB_init_fixed()`,
+        // and it has been flushed, thus it has no active children.
+        let len = unsafe { CBB_len(cbb.as_ref()) };
+        Ok(buf.get(0..len).ok_or(to_call_failed_error(ApiName::CBB_len))?.to_vec())
+    }
+
+    /// This function takes a raw public key data slice and creates a `PKey` instance wrapping
+    /// a freshly allocated `EVP_PKEY` object from it.
+    ///
+    /// The lifetime of the returned instance is not tied to the lifetime of the raw public
+    /// key slice because the raw data is copied into the `EVP_PKEY` object.
+    ///
+    /// Currently the only supported raw formats are X25519 and Ed25519, where the formats
+    /// are specified in RFC 7748 and RFC 8032 respectively.
+    pub fn new_raw_public_key(raw_public_key: &[u8], type_: PKeyType) -> Result<Self> {
+        let engine = ptr::null_mut(); // Engine is not used.
+        let pkey =
+            // SAFETY: The function only reads from the given raw public key within its bounds.
+            // The returned pointer is checked below.
+            unsafe {
+                EVP_PKEY_new_raw_public_key(
+                    type_.0,
+                    engine,
+                    raw_public_key.as_ptr(),
+                    raw_public_key.len(),
+                )
+            };
+        let pkey =
+            NonNull::new(pkey).ok_or(to_call_failed_error(ApiName::EVP_PKEY_new_raw_public_key))?;
+        Ok(Self { pkey, _inner_ec_key: None })
+    }
+
+    /// Creates a `PKey` from the given `cose_key`.
+    ///
+    /// The lifetime of the returned instance is not tied to the lifetime of the `cose_key` as the
+    /// data of `cose_key` is copied into the `EVP_PKEY` or `EC_KEY` object.
+    pub fn from_cose_public_key(cose_key: &CoseKey) -> Result<Self> {
+        match &cose_key.kty {
+            KeyType::Assigned(iana::KeyType::EC2) => {
+                EcKey::from_cose_public_key(cose_key)?.try_into()
+            }
+            KeyType::Assigned(iana::KeyType::OKP) => {
+                let curve_type =
+                    get_label_value(cose_key, Label::Int(iana::OkpKeyParameter::Crv.to_i64()))?;
+                let curve_type = match curve_type {
+                    crv if crv == &Value::from(iana::EllipticCurve::Ed25519.to_i64()) => {
+                        PKeyType::ED25519
+                    }
+                    crv if crv == &Value::from(iana::EllipticCurve::X25519.to_i64()) => {
+                        PKeyType::X25519
+                    }
+                    crv => {
+                        error!("Unsupported curve type in OKP COSE key: {:?}", crv);
+                        return Err(Error::Unimplemented);
+                    }
+                };
+                let x = get_label_value_as_bytes(
+                    cose_key,
+                    Label::Int(iana::OkpKeyParameter::X.to_i64()),
+                )?;
+                Self::new_raw_public_key(x, curve_type)
+            }
+            kty => {
+                error!("Unsupported key type in COSE key: {:?}", kty);
+                Err(Error::Unimplemented)
+            }
+        }
+    }
+
+    /// Verifies the given `signature` of the `message` using the current public key.
+    ///
+    /// The `message` will be hashed using the given `digester` before verification.
+    ///
+    /// For algorithms like Ed25519 that do not use pre-hashed inputs, the `digester` should
+    /// be `None`.
+    pub fn verify(
+        &self,
+        signature: &[u8],
+        message: &[u8],
+        digester: Option<Digester>,
+    ) -> Result<()> {
+        let mut digester_context = DigesterContext::new()?;
+        // The `EVP_PKEY_CTX` is set to null as this function does not collect the context
+        // during the verification.
+        let pkey_context = ptr::null_mut();
+        let engine = ptr::null_mut(); // Use the default engine.
+        let ret =
+            // SAFETY: All the non-null parameters passed to this function have been properly
+            // initialized as required in the BoringSSL spec.
+            unsafe {
+                EVP_DigestVerifyInit(
+                    digester_context.as_mut_ptr(),
+                    pkey_context,
+                    digester.map_or(ptr::null(), |d| d.0),
+                    engine,
+                    self.pkey.as_ptr(),
+                )
+            };
+        check_int_result(ret, ApiName::EVP_DigestVerifyInit)?;
+
+        // SAFETY: The function only reads from the given slices within their bounds.
+        // The `EVP_MD_CTX` is successfully initialized before this call.
+        let ret = unsafe {
+            EVP_DigestVerify(
+                digester_context.as_mut_ptr(),
+                signature.as_ptr(),
+                signature.len(),
+                message.as_ptr(),
+                message.len(),
+            )
+        };
+        check_int_result(ret, ApiName::EVP_DigestVerify)
+    }
+}
+
+/// Type of the keys supported by `PKey`.
+///
+/// It is a wrapper of the `EVP_PKEY_*` macros defined BoringSSL evp.h, which are the
+/// NID values of the corresponding keys.
+#[derive(Debug, Copy, Clone, PartialEq, Eq)]
+pub struct PKeyType(i32);
+
+impl PKeyType {
+    /// EVP_PKEY_X25519 / NID_X25519
+    pub const X25519: PKeyType = PKeyType(EVP_PKEY_X25519);
+    /// EVP_PKEY_ED25519 / NID_ED25519
+    pub const ED25519: PKeyType = PKeyType(EVP_PKEY_ED25519);
+}
diff --git a/libs/bssl/src/hkdf.rs b/libs/bssl/src/hkdf.rs
new file mode 100644
index 0000000..d5aeb76
--- /dev/null
+++ b/libs/bssl/src/hkdf.rs
@@ -0,0 +1,50 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the HKDF functions in BoringSSL hkdf.h.
+
+use crate::digest::Digester;
+use crate::util::check_int_result;
+use bssl_avf_error::{ApiName, Result};
+use bssl_sys::HKDF;
+use zeroize::Zeroizing;
+
+/// Computes HKDF (as specified by [RFC 5869]) of initial keying material `secret` with
+/// `salt` and `info` using the given `digester`.
+///
+/// [RFC 5869]: https://www.rfc-editor.org/rfc/rfc5869.html
+pub fn hkdf<const N: usize>(
+    secret: &[u8],
+    salt: &[u8],
+    info: &[u8],
+    digester: Digester,
+) -> Result<Zeroizing<[u8; N]>> {
+    let mut key = Zeroizing::new([0u8; N]);
+    // SAFETY: Only reads from/writes to the provided slices and the digester was non-null.
+    let ret = unsafe {
+        HKDF(
+            key.as_mut_ptr(),
+            key.len(),
+            digester.0,
+            secret.as_ptr(),
+            secret.len(),
+            salt.as_ptr(),
+            salt.len(),
+            info.as_ptr(),
+            info.len(),
+        )
+    };
+    check_int_result(ret, ApiName::HKDF)?;
+    Ok(key)
+}
diff --git a/libs/bssl/src/hmac.rs b/libs/bssl/src/hmac.rs
new file mode 100644
index 0000000..f820285
--- /dev/null
+++ b/libs/bssl/src/hmac.rs
@@ -0,0 +1,58 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the HMAC functions in BoringSSL hmac.h.
+
+use crate::digest::Digester;
+use crate::sha::SHA256_DIGEST_LENGTH;
+use crate::util::to_call_failed_error;
+use bssl_avf_error::{ApiName, Result};
+use bssl_sys::HMAC;
+
+/// Computes the HMAC using SHA-256 for the given `data` with the given `key`.
+pub fn hmac_sha256(key: &[u8], data: &[u8]) -> Result<[u8; SHA256_DIGEST_LENGTH]> {
+    hmac::<SHA256_DIGEST_LENGTH>(key, data, Digester::sha256())
+}
+
+/// Computes the HMAC for the given `data` with the given `key` and `digester`.
+///
+/// The output size `HASH_LEN` should correspond to the length of the hash function's
+/// digest size in bytes.
+fn hmac<const HASH_LEN: usize>(
+    key: &[u8],
+    data: &[u8],
+    digester: Digester,
+) -> Result<[u8; HASH_LEN]> {
+    assert_eq!(digester.size(), HASH_LEN);
+
+    let mut out = [0u8; HASH_LEN];
+    let mut out_len = 0;
+    // SAFETY: Only reads from/writes to the provided slices and the digester was non-null.
+    let ret = unsafe {
+        HMAC(
+            digester.0,
+            key.as_ptr() as *const _,
+            key.len(),
+            data.as_ptr(),
+            data.len(),
+            out.as_mut_ptr(),
+            &mut out_len,
+        )
+    };
+    if !ret.is_null() && out_len == (out.len() as u32) {
+        Ok(out)
+    } else {
+        Err(to_call_failed_error(ApiName::HMAC))
+    }
+}
diff --git a/libs/bssl/src/lib.rs b/libs/bssl/src/lib.rs
new file mode 100644
index 0000000..ad51b61
--- /dev/null
+++ b/libs/bssl/src/lib.rs
@@ -0,0 +1,47 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Safe wrappers around the BoringSSL API.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+extern crate alloc;
+
+mod aead;
+mod cbb;
+mod cbs;
+mod curve25519;
+mod digest;
+mod ec_key;
+mod err;
+mod evp;
+mod hkdf;
+mod hmac;
+mod rand;
+mod sha;
+mod util;
+
+pub use bssl_avf_error::{ApiName, CipherError, EcError, EcdsaError, Error, ReasonCode, Result};
+
+pub use aead::{Aead, AeadContext, AES_GCM_NONCE_LENGTH};
+pub use cbb::CbbFixed;
+pub use cbs::Cbs;
+pub use curve25519::ed25519_verify;
+pub use digest::Digester;
+pub use ec_key::{EcKey, ZVec};
+pub use evp::{PKey, PKeyType};
+pub use hkdf::hkdf;
+pub use hmac::hmac_sha256;
+pub use rand::rand_bytes;
+pub use sha::sha256;
diff --git a/libs/bssl/src/rand.rs b/libs/bssl/src/rand.rs
new file mode 100644
index 0000000..e1b3ebe
--- /dev/null
+++ b/libs/bssl/src/rand.rs
@@ -0,0 +1,26 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the randon number generations functions in BoringSSL rand.h.
+
+use crate::util::check_int_result;
+use bssl_avf_error::{ApiName, Result};
+use bssl_sys::RAND_bytes;
+
+/// Fills the given `dest` with random data.
+pub fn rand_bytes(dest: &mut [u8]) -> Result<()> {
+    // SAFETY: This function only writes to the given buffer within its bounds.
+    let ret = unsafe { RAND_bytes(dest.as_mut_ptr(), dest.len()) };
+    check_int_result(ret, ApiName::RAND_bytes)
+}
diff --git a/libs/bssl/src/sha.rs b/libs/bssl/src/sha.rs
new file mode 100644
index 0000000..66b4a7c
--- /dev/null
+++ b/libs/bssl/src/sha.rs
@@ -0,0 +1,35 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of the SHA functions in BoringSSL sha.h.
+
+use crate::util::to_call_failed_error;
+use bssl_avf_error::{ApiName, Result};
+use bssl_sys::SHA256;
+
+/// The length of a SHA256 digest.
+pub(crate) const SHA256_DIGEST_LENGTH: usize = bssl_sys::SHA256_DIGEST_LENGTH as usize;
+
+/// Computes the SHA256 digest of the provided `data``.
+pub fn sha256(data: &[u8]) -> Result<[u8; SHA256_DIGEST_LENGTH]> {
+    let mut out = [0u8; SHA256_DIGEST_LENGTH];
+    // SAFETY: This function reads `data` and writes to `out` within its bounds.
+    // `out` has `SHA256_DIGEST_LENGTH` bytes of space for write.
+    let ret = unsafe { SHA256(data.as_ptr(), data.len(), out.as_mut_ptr()) };
+    if ret.is_null() {
+        Err(to_call_failed_error(ApiName::SHA256))
+    } else {
+        Ok(out)
+    }
+}
diff --git a/libs/bssl/src/util.rs b/libs/bssl/src/util.rs
new file mode 100644
index 0000000..ddb6c6b
--- /dev/null
+++ b/libs/bssl/src/util.rs
@@ -0,0 +1,37 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Utility functions.
+
+use crate::err::process_error_queue;
+use bssl_avf_error::{ApiName, Error, Result};
+use log::error;
+
+pub(crate) fn check_int_result(ret: i32, api_name: ApiName) -> Result<()> {
+    match ret {
+        1 => Ok(()),
+        0 => Err(Error::CallFailed(api_name, process_error_queue())),
+        _ => {
+            error!(
+                "Received a return value ({}) other than 0 or 1 from the BoringSSL API: {:?}",
+                ret, api_name
+            );
+            Err(Error::InternalError)
+        }
+    }
+}
+
+pub(crate) fn to_call_failed_error(api_name: ApiName) -> Error {
+    Error::CallFailed(api_name, process_error_queue())
+}
diff --git a/libs/bssl/tests/aead_test.rs b/libs/bssl/tests/aead_test.rs
new file mode 100644
index 0000000..8bdb0e7
--- /dev/null
+++ b/libs/bssl/tests/aead_test.rs
@@ -0,0 +1,148 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+use bssl_avf::{Aead, AeadContext, ApiName, CipherError, Error, ReasonCode, Result};
+
+/// The following vectors are generated randomly with:
+/// `hexdump -vn32 -e'32/1 "0x%02x, " 1 "\n"' /dev/urandom`
+const KEY1: [u8; 32] = [
+    0xdb, 0x16, 0xcc, 0xbf, 0xf0, 0xc4, 0xbc, 0x93, 0xc3, 0x5f, 0x11, 0xc5, 0xfa, 0xae, 0x03, 0x6c,
+    0x75, 0x40, 0x1f, 0x60, 0xb6, 0x3e, 0xb9, 0x2a, 0x6c, 0x84, 0x06, 0x4b, 0x36, 0x7f, 0xed, 0xdb,
+];
+const KEY2: [u8; 32] = [
+    0xaa, 0x57, 0x7a, 0x1a, 0x8b, 0xa2, 0x59, 0x3b, 0xad, 0x5f, 0x4d, 0x29, 0xe1, 0x0c, 0xaa, 0x85,
+    0xde, 0xf9, 0xad, 0xad, 0x8c, 0x11, 0x0c, 0x2e, 0x13, 0x43, 0xd7, 0xdf, 0x2a, 0x43, 0xb9, 0xdd,
+];
+/// The following vectors are generated randomly with:
+/// Generated with `hexdump -vn12 -e'12/1 "0x%02x, " 1 "\n"' /dev/urandom`
+const AES_256_GCM_NONCE1: [u8; 12] =
+    [0x56, 0x96, 0x73, 0xe1, 0xc6, 0x3d, 0xca, 0x9a, 0x2f, 0xad, 0x3b, 0xeb];
+const AES_256_GCM_NONCE2: [u8; 12] =
+    [0xa0, 0x27, 0xea, 0x3a, 0x29, 0xfa, 0x8a, 0x49, 0x35, 0x07, 0x32, 0xec];
+const MESSAGE: &[u8] = b"aead_aes_256_gcm test message";
+
+#[test]
+fn aes_256_gcm_encrypts_and_decrypts_successfully() -> Result<()> {
+    let ciphertext = aes_256_gcm_encrypt(MESSAGE)?;
+    let tag_len = None;
+
+    let ad = &[];
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let mut out = vec![0u8; ciphertext.len()];
+
+    let plaintext = aead_ctx.open(&ciphertext, &AES_256_GCM_NONCE1, ad, &mut out)?;
+
+    assert_eq!(MESSAGE, plaintext);
+    Ok(())
+}
+
+#[test]
+fn aes_256_gcm_fails_to_encrypt_with_invalid_nonce() -> Result<()> {
+    let tag_len = None;
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let nonce = &[];
+    let ad = &[];
+    let mut out = vec![0u8; MESSAGE.len() + aead_ctx.aead().max_overhead()];
+
+    let err = aead_ctx.seal(MESSAGE, nonce, ad, &mut out).unwrap_err();
+
+    let expected_err = Error::CallFailed(
+        ApiName::EVP_AEAD_CTX_seal,
+        ReasonCode::Cipher(CipherError::InvalidNonceSize),
+    );
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+#[test]
+fn aes_256_gcm_fails_to_decrypt_with_wrong_key() -> Result<()> {
+    let ciphertext = aes_256_gcm_encrypt(MESSAGE)?;
+    let tag_len = None;
+
+    let ad = &[];
+    let aead_ctx2 = AeadContext::new(Aead::aes_256_gcm(), &KEY2, tag_len)?;
+    let mut plaintext = vec![0u8; ciphertext.len()];
+
+    let err = aead_ctx2.open(&ciphertext, &AES_256_GCM_NONCE1, ad, &mut plaintext).unwrap_err();
+
+    let expected_err =
+        Error::CallFailed(ApiName::EVP_AEAD_CTX_open, ReasonCode::Cipher(CipherError::BadDecrypt));
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+#[test]
+fn aes_256_gcm_fails_to_decrypt_with_different_ad() -> Result<()> {
+    let ciphertext = aes_256_gcm_encrypt(MESSAGE)?;
+    let tag_len = None;
+
+    let ad2 = &[1];
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let mut plaintext = vec![0u8; ciphertext.len()];
+
+    let err = aead_ctx.open(&ciphertext, &AES_256_GCM_NONCE1, ad2, &mut plaintext).unwrap_err();
+
+    let expected_err =
+        Error::CallFailed(ApiName::EVP_AEAD_CTX_open, ReasonCode::Cipher(CipherError::BadDecrypt));
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+#[test]
+fn aes_256_gcm_fails_to_decrypt_with_different_nonce() -> Result<()> {
+    let ciphertext = aes_256_gcm_encrypt(MESSAGE)?;
+    let tag_len = None;
+
+    let ad = &[];
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let mut plaintext = vec![0u8; ciphertext.len()];
+
+    let err = aead_ctx.open(&ciphertext, &AES_256_GCM_NONCE2, ad, &mut plaintext).unwrap_err();
+
+    let expected_err =
+        Error::CallFailed(ApiName::EVP_AEAD_CTX_open, ReasonCode::Cipher(CipherError::BadDecrypt));
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+#[test]
+fn aes_256_gcm_fails_to_decrypt_corrupted_ciphertext() -> Result<()> {
+    let mut ciphertext = aes_256_gcm_encrypt(MESSAGE)?;
+    ciphertext[1] = !ciphertext[1];
+    let tag_len = None;
+
+    let ad = &[];
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let mut plaintext = vec![0u8; ciphertext.len()];
+
+    let err = aead_ctx.open(&ciphertext, &AES_256_GCM_NONCE1, ad, &mut plaintext).unwrap_err();
+
+    let expected_err =
+        Error::CallFailed(ApiName::EVP_AEAD_CTX_open, ReasonCode::Cipher(CipherError::BadDecrypt));
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+fn aes_256_gcm_encrypt(message: &[u8]) -> Result<Vec<u8>> {
+    let tag_len = None;
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), &KEY1, tag_len)?;
+    let mut out = vec![0u8; message.len() + aead_ctx.aead().max_overhead()];
+
+    assert_eq!(aead_ctx.aead().nonce_length(), AES_256_GCM_NONCE1.len());
+    let ad = &[];
+
+    let ciphertext = aead_ctx.seal(message, &AES_256_GCM_NONCE1, ad, &mut out)?;
+    assert_ne!(message, ciphertext);
+    Ok(ciphertext.to_vec())
+}
diff --git a/libs/bssl/tests/eckey_test.rs b/libs/bssl/tests/eckey_test.rs
new file mode 100644
index 0000000..3c0e45d
--- /dev/null
+++ b/libs/bssl/tests/eckey_test.rs
@@ -0,0 +1,144 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+use bssl_avf::{sha256, ApiName, Digester, EcKey, EcdsaError, Error, PKey, Result};
+use coset::CborSerializable;
+use spki::{
+    der::{AnyRef, Decode, Encode},
+    AlgorithmIdentifier, ObjectIdentifier, SubjectPublicKeyInfoRef,
+};
+
+/// OID value for general-use NIST EC keys held in PKCS#8 and X.509; see RFC 5480 s2.1.1.
+const X509_NIST_OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("1.2.840.10045.2.1");
+
+/// OID value in `AlgorithmIdentifier.parameters` for P-256; see RFC 5480 s2.1.1.1.
+const ALGO_PARAM_P256_OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("1.2.840.10045.3.1.7");
+
+const MESSAGE1: &[u8] = b"test message 1";
+const MESSAGE2: &[u8] = b"test message 2";
+
+#[test]
+fn ec_private_key_serialization() -> Result<()> {
+    let mut ec_key = EcKey::new_p256()?;
+    ec_key.generate_key()?;
+    let der_encoded_ec_private_key = ec_key.ec_private_key()?;
+    let deserialized_ec_key = EcKey::from_ec_private_key(der_encoded_ec_private_key.as_slice())?;
+
+    assert_eq!(ec_key.cose_public_key()?, deserialized_ec_key.cose_public_key()?);
+    Ok(())
+}
+
+#[test]
+fn subject_public_key_info_serialization() -> Result<()> {
+    let mut ec_key = EcKey::new_p256()?;
+    ec_key.generate_key()?;
+    let pkey: PKey = ec_key.try_into()?;
+    let subject_public_key_info = pkey.subject_public_key_info()?;
+
+    let subject_public_key_info =
+        SubjectPublicKeyInfoRef::from_der(&subject_public_key_info).unwrap();
+    let expected_algorithm = AlgorithmIdentifier {
+        oid: X509_NIST_OID,
+        parameters: Some(AnyRef::from(&ALGO_PARAM_P256_OID)),
+    };
+    assert_eq!(expected_algorithm, subject_public_key_info.algorithm);
+    assert!(!subject_public_key_info.subject_public_key.to_der().unwrap().is_empty());
+    Ok(())
+}
+
+#[test]
+fn p256_cose_public_key_serialization() -> Result<()> {
+    let mut ec_key = EcKey::new_p256()?;
+    check_cose_public_key_serialization(&mut ec_key)
+}
+
+#[test]
+fn p384_cose_public_key_serialization() -> Result<()> {
+    let mut ec_key = EcKey::new_p384()?;
+    check_cose_public_key_serialization(&mut ec_key)
+}
+
+fn check_cose_public_key_serialization(ec_key: &mut EcKey) -> Result<()> {
+    ec_key.generate_key()?;
+    let cose_key = ec_key.cose_public_key()?;
+    let cose_key_data = cose_key.clone().to_vec().unwrap();
+    let deserialized_ec_key = EcKey::from_cose_public_key_slice(&cose_key_data)?;
+
+    assert_eq!(cose_key, deserialized_ec_key.cose_public_key()?);
+    Ok(())
+}
+
+#[test]
+fn ecdsa_p256_signing_and_verification_succeed() -> Result<()> {
+    let mut ec_key = EcKey::new_p256()?;
+    ec_key.generate_key()?;
+    let digester = Digester::sha256();
+    let digest = digester.digest(MESSAGE1)?;
+    assert_eq!(digest, sha256(MESSAGE1)?);
+
+    let signature = ec_key.ecdsa_sign(&digest)?;
+    ec_key.ecdsa_verify(&signature, &digest)?;
+    // Building a `PKey` from a temporary `CoseKey` should work as the lifetime
+    // of the `PKey` is not tied to the lifetime of the `CoseKey`.
+    let pkey = PKey::from_cose_public_key(&ec_key.cose_public_key()?)?;
+    pkey.verify(&signature, MESSAGE1, Some(digester))
+}
+
+#[test]
+fn ecdsa_p384_signing_and_verification_succeed() -> Result<()> {
+    let mut ec_key = EcKey::new_p384()?;
+    ec_key.generate_key()?;
+    let digester = Digester::sha384();
+    let digest = digester.digest(MESSAGE1)?;
+
+    let signature = ec_key.ecdsa_sign(&digest)?;
+    ec_key.ecdsa_verify(&signature, &digest)?;
+    let pkey = PKey::from_cose_public_key(&ec_key.cose_public_key()?)?;
+    pkey.verify(&signature, MESSAGE1, Some(digester))
+}
+
+#[test]
+fn verifying_ecdsa_p256_signed_with_a_different_key_fails() -> Result<()> {
+    let mut ec_key1 = EcKey::new_p256()?;
+    ec_key1.generate_key()?;
+    let digest = sha256(MESSAGE1)?;
+    let signature = ec_key1.ecdsa_sign(&digest)?;
+
+    let mut ec_key2 = EcKey::new_p256()?;
+    ec_key2.generate_key()?;
+    let err = ec_key2.ecdsa_verify(&signature, &digest).unwrap_err();
+    let expected_err = Error::CallFailed(ApiName::ECDSA_verify, EcdsaError::BadSignature.into());
+    assert_eq!(expected_err, err);
+
+    let pkey: PKey = ec_key2.try_into()?;
+    let err = pkey.verify(&signature, MESSAGE1, Some(Digester::sha256())).unwrap_err();
+    let expected_err =
+        Error::CallFailed(ApiName::EVP_DigestVerify, EcdsaError::BadSignature.into());
+    assert_eq!(expected_err, err);
+    Ok(())
+}
+
+#[test]
+fn verifying_ecdsa_p256_signed_with_a_different_message_fails() -> Result<()> {
+    let mut ec_key = EcKey::new_p256()?;
+    ec_key.generate_key()?;
+    let digest1 = sha256(MESSAGE1)?;
+    let signature = ec_key.ecdsa_sign(&digest1)?;
+    let digest2 = sha256(MESSAGE2)?;
+
+    let err = ec_key.ecdsa_verify(&signature, &digest2).unwrap_err();
+    let expected_err = Error::CallFailed(ApiName::ECDSA_verify, EcdsaError::BadSignature.into());
+    assert_eq!(expected_err, err);
+    Ok(())
+}
diff --git a/libs/bssl/tests/hkdf_test.rs b/libs/bssl/tests/hkdf_test.rs
new file mode 100644
index 0000000..2e10314
--- /dev/null
+++ b/libs/bssl/tests/hkdf_test.rs
@@ -0,0 +1,95 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Test HKDF with the test cases in [RFC 5869] Appendix A
+//!
+//! [RFC 5869]: https://datatracker.ietf.org/doc/html/rfc5869
+
+use bssl_avf::{hkdf, Digester, Result};
+
+#[test]
+fn rfc5869_test_case_1() -> Result<()> {
+    const IKM: [u8; 22] = [
+        0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
+        0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
+    ];
+    const SALT: [u8; 13] =
+        [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c];
+    const INFO: [u8; 10] = [0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9];
+    const L: usize = 42;
+    const OKM: [u8; L] = [
+        0x3c, 0xb2, 0x5f, 0x25, 0xfa, 0xac, 0xd5, 0x7a, 0x90, 0x43, 0x4f, 0x64, 0xd0, 0x36, 0x2f,
+        0x2a, 0x2d, 0x2d, 0x0a, 0x90, 0xcf, 0x1a, 0x5a, 0x4c, 0x5d, 0xb0, 0x2d, 0x56, 0xec, 0xc4,
+        0xc5, 0xbf, 0x34, 0x00, 0x72, 0x08, 0xd5, 0xb8, 0x87, 0x18, 0x58, 0x65,
+    ];
+    assert_eq!(OKM, hkdf::<L>(&IKM, &SALT, &INFO, Digester::sha256())?.as_slice());
+    Ok(())
+}
+
+#[test]
+fn rfc5869_test_case_2() -> Result<()> {
+    const IKM: [u8; 80] = [
+        0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
+        0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
+        0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,
+        0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
+        0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
+        0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
+    ];
+    const SALT: [u8; 80] = [
+        0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,
+        0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d,
+        0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c,
+        0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b,
+        0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa,
+        0xab, 0xac, 0xad, 0xae, 0xaf,
+    ];
+    const INFO: [u8; 80] = [
+        0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe,
+        0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd,
+        0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc,
+        0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
+        0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa,
+        0xfb, 0xfc, 0xfd, 0xfe, 0xff,
+    ];
+    const L: usize = 82;
+    const OKM: [u8; L] = [
+        0xb1, 0x1e, 0x39, 0x8d, 0xc8, 0x03, 0x27, 0xa1, 0xc8, 0xe7, 0xf7, 0x8c, 0x59, 0x6a, 0x49,
+        0x34, 0x4f, 0x01, 0x2e, 0xda, 0x2d, 0x4e, 0xfa, 0xd8, 0xa0, 0x50, 0xcc, 0x4c, 0x19, 0xaf,
+        0xa9, 0x7c, 0x59, 0x04, 0x5a, 0x99, 0xca, 0xc7, 0x82, 0x72, 0x71, 0xcb, 0x41, 0xc6, 0x5e,
+        0x59, 0x0e, 0x09, 0xda, 0x32, 0x75, 0x60, 0x0c, 0x2f, 0x09, 0xb8, 0x36, 0x77, 0x93, 0xa9,
+        0xac, 0xa3, 0xdb, 0x71, 0xcc, 0x30, 0xc5, 0x81, 0x79, 0xec, 0x3e, 0x87, 0xc1, 0x4c, 0x01,
+        0xd5, 0xc1, 0xf3, 0x43, 0x4f, 0x1d, 0x87,
+    ];
+    assert_eq!(OKM, hkdf::<L>(&IKM, &SALT, &INFO, Digester::sha256())?.as_slice());
+    Ok(())
+}
+
+#[test]
+fn rfc5869_test_case_3() -> Result<()> {
+    const IKM: [u8; 22] = [
+        0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
+        0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b, 0x0b,
+    ];
+    const SALT: [u8; 0] = [];
+    const INFO: [u8; 0] = [];
+    const L: usize = 42;
+    const OKM: [u8; L] = [
+        0x8d, 0xa4, 0xe7, 0x75, 0xa5, 0x63, 0xc1, 0x8f, 0x71, 0x5f, 0x80, 0x2a, 0x06, 0x3c, 0x5a,
+        0x31, 0xb8, 0xa1, 0x1f, 0x5c, 0x5e, 0xe1, 0x87, 0x9e, 0xc3, 0x45, 0x4e, 0x5f, 0x3c, 0x73,
+        0x8d, 0x2d, 0x9d, 0x20, 0x13, 0x95, 0xfa, 0xa4, 0xb6, 0x1a, 0x96, 0xc8,
+    ];
+    assert_eq!(OKM, hkdf::<L>(&IKM, &SALT, &INFO, Digester::sha256())?.as_slice());
+    Ok(())
+}
diff --git a/libs/bssl/tests/hmac_test.rs b/libs/bssl/tests/hmac_test.rs
new file mode 100644
index 0000000..c09a863
--- /dev/null
+++ b/libs/bssl/tests/hmac_test.rs
@@ -0,0 +1,115 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Tests HMAC with the test cases in [RFC 4231] Section 4
+//!
+//! [RFC 4231]: https://datatracker.ietf.org/doc/html/rfc4231
+
+use bssl_avf::{hmac_sha256, Result};
+
+#[test]
+fn rfc4231_test_case_1() -> Result<()> {
+    const KEY: &[u8; 20] = &[0x0b; 20];
+    const DATA: &[u8] = b"Hi There";
+    const HMAC_SHA256: [u8; 32] = [
+        0xb0, 0x34, 0x4c, 0x61, 0xd8, 0xdb, 0x38, 0x53, 0x5c, 0xa8, 0xaf, 0xce, 0xaf, 0x0b, 0xf1,
+        0x2b, 0x88, 0x1d, 0xc2, 0x00, 0xc9, 0x83, 0x3d, 0xa7, 0x26, 0xe9, 0x37, 0x6c, 0x2e, 0x32,
+        0xcf, 0xf7,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA)?);
+    Ok(())
+}
+
+#[test]
+fn rfc4231_test_case_2() -> Result<()> {
+    const KEY: &[u8] = b"Jefe";
+    const DATA: &[u8] = b"what do ya want for nothing?";
+    const HMAC_SHA256: [u8; 32] = [
+        0x5b, 0xdc, 0xc1, 0x46, 0xbf, 0x60, 0x75, 0x4e, 0x6a, 0x04, 0x24, 0x26, 0x08, 0x95, 0x75,
+        0xc7, 0x5a, 0x00, 0x3f, 0x08, 0x9d, 0x27, 0x39, 0x83, 0x9d, 0xec, 0x58, 0xb9, 0x64, 0xec,
+        0x38, 0x43,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA)?);
+    Ok(())
+}
+
+#[test]
+fn rfc4231_test_case_3() -> Result<()> {
+    const KEY: &[u8; 20] = &[0xaa; 20];
+    const DATA: &[u8; 50] = &[0xdd; 50];
+    const HMAC_SHA256: [u8; 32] = [
+        0x77, 0x3e, 0xa9, 0x1e, 0x36, 0x80, 0x0e, 0x46, 0x85, 0x4d, 0xb8, 0xeb, 0xd0, 0x91, 0x81,
+        0xa7, 0x29, 0x59, 0x09, 0x8b, 0x3e, 0xf8, 0xc1, 0x22, 0xd9, 0x63, 0x55, 0x14, 0xce, 0xd5,
+        0x65, 0xfe,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA)?);
+    Ok(())
+}
+
+#[test]
+fn rfc4231_test_case_4() -> Result<()> {
+    const KEY: &[u8; 25] = &[
+        0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
+        0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,
+    ];
+    const DATA: &[u8; 50] = &[0xcd; 50];
+    const HMAC_SHA256: [u8; 32] = [
+        0x82, 0x55, 0x8a, 0x38, 0x9a, 0x44, 0x3c, 0x0e, 0xa4, 0xcc, 0x81, 0x98, 0x99, 0xf2, 0x08,
+        0x3a, 0x85, 0xf0, 0xfa, 0xa3, 0xe5, 0x78, 0xf8, 0x07, 0x7a, 0x2e, 0x3f, 0xf4, 0x67, 0x29,
+        0x66, 0x5b,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA)?);
+    Ok(())
+}
+
+/// Test with a truncation of output to 128 bits.
+#[test]
+fn rfc4231_test_case_5() -> Result<()> {
+    const KEY: &[u8; 20] = &[0x0c; 20];
+    const DATA: &[u8] = b"Test With Truncation";
+    const HMAC_SHA256: [u8; 16] = [
+        0xa3, 0xb6, 0x16, 0x74, 0x73, 0x10, 0x0e, 0xe0, 0x6e, 0x0c, 0x79, 0x6c, 0x29, 0x55, 0x55,
+        0x2b,
+    ];
+    let res = hmac_sha256(KEY, DATA)?;
+    assert_eq!(HMAC_SHA256, res[..16]);
+    Ok(())
+}
+
+#[test]
+fn rfc4231_test_case_6() -> Result<()> {
+    const KEY: &[u8; 131] = &[0xaa; 131];
+    const DATA: &[u8] = b"Test Using Larger Than Block-Size Key - Hash Key First";
+    const HMAC_SHA256: [u8; 32] = [
+        0x60, 0xe4, 0x31, 0x59, 0x1e, 0xe0, 0xb6, 0x7f, 0x0d, 0x8a, 0x26, 0xaa, 0xcb, 0xf5, 0xb7,
+        0x7f, 0x8e, 0x0b, 0xc6, 0x21, 0x37, 0x28, 0xc5, 0x14, 0x05, 0x46, 0x04, 0x0f, 0x0e, 0xe3,
+        0x7f, 0x54,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA)?);
+    Ok(())
+}
+
+#[test]
+fn rfc4231_test_case_7() -> Result<()> {
+    const KEY: &[u8; 131] = &[0xaa; 131];
+    const DATA: &str = "This is a test using a larger than block-size key and a larger than \
+           block-size data. The key needs to be hashed before being used by the HMAC algorithm.";
+    const HMAC_SHA256: [u8; 32] = [
+        0x9b, 0x09, 0xff, 0xa7, 0x1b, 0x94, 0x2f, 0xcb, 0x27, 0x63, 0x5f, 0xbc, 0xd5, 0xb0, 0xe9,
+        0x44, 0xbf, 0xdc, 0x63, 0x64, 0x4f, 0x07, 0x13, 0x93, 0x8a, 0x7f, 0x51, 0x53, 0x5c, 0x3a,
+        0x35, 0xe2,
+    ];
+    assert_eq!(HMAC_SHA256, hmac_sha256(KEY, DATA.as_bytes())?);
+    Ok(())
+}
diff --git a/pvmfw/src/virtio.rs b/libs/bssl/tests/tests.rs
similarity index 78%
copy from pvmfw/src/virtio.rs
copy to libs/bssl/tests/tests.rs
index df916bc..02666d8 100644
--- a/pvmfw/src/virtio.rs
+++ b/libs/bssl/tests/tests.rs
@@ -1,4 +1,4 @@
-// Copyright 2022, The Android Open Source Project
+// Copyright 2023, The Android Open Source Project
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -12,7 +12,9 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//! Modules for working with VirtIO devices.
+//! API tests of the crate `bssl_avf`.
 
-mod hal;
-pub mod pci;
+mod aead_test;
+mod eckey_test;
+mod hkdf_test;
+mod hmac_test;
diff --git a/libs/capabilities/Android.bp b/libs/capabilities/Android.bp
index db3f4d4..2799926 100644
--- a/libs/capabilities/Android.bp
+++ b/libs/capabilities/Android.bp
@@ -1,9 +1,11 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_bindgen {
     name: "libcap_bindgen",
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     wrapper_src: "bindgen/libcap.h",
     crate_name: "cap_bindgen",
@@ -20,6 +22,7 @@
 rust_test {
     name: "libcap_bindgen_test",
     srcs: [":libcap_bindgen"],
+    defaults: ["avf_build_flags_rust"],
     crate_name: "cap_bindgen_test",
     test_suites: ["general-tests"],
     auto_gen_config: true,
@@ -30,6 +33,7 @@
 rust_defaults {
     name: "libcap_rust.defaults",
     crate_name: "cap",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/caps.rs"],
     rustlibs: [
         "libanyhow",
diff --git a/libs/capabilities/TEST_MAPPING b/libs/capabilities/TEST_MAPPING
index 568a771..902c6e5 100644
--- a/libs/capabilities/TEST_MAPPING
+++ b/libs/capabilities/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/libs/capabilities/src/caps.rs b/libs/capabilities/src/caps.rs
index 1f44a34..bc17fa8 100644
--- a/libs/capabilities/src/caps.rs
+++ b/libs/capabilities/src/caps.rs
@@ -26,8 +26,8 @@
 /// Removes inheritable capabilities set for this process.
 /// See: https://man7.org/linux/man-pages/man7/capabilities.7.html
 pub fn drop_inheritable_caps() -> Result<()> {
+    // SAFETY: we do not manipulate memory handled by libcap.
     unsafe {
-        // SAFETY: we do not manipulate memory handled by libcap.
         let caps = cap_get_proc();
         scopeguard::defer! {
             cap_free(caps as *mut std::os::raw::c_void);
@@ -49,8 +49,8 @@
 pub fn drop_bounding_set() -> Result<()> {
     let mut cap_id: cap_value_t = 0;
     while cap_id <= CAP_LAST_CAP.try_into().unwrap() {
+        // SAFETY: we do not manipulate memory handled by libcap.
         unsafe {
-            // SAFETY: we do not manipulate memory handled by libcap.
             if cap_drop_bound(cap_id) == -1 {
                 let e = Errno::last();
                 bail!("cap_drop_bound failed for {}: {:?}", cap_id, e);
diff --git a/libs/cborutil/Android.bp b/libs/cborutil/Android.bp
new file mode 100644
index 0000000..96dbf09
--- /dev/null
+++ b/libs/cborutil/Android.bp
@@ -0,0 +1,44 @@
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libcbor_util_defaults",
+    crate_name: "cbor_util",
+    srcs: ["src/lib.rs"],
+    defaults: ["avf_build_flags_rust"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+}
+
+rust_library_rlib {
+    name: "libcbor_util_nostd",
+    defaults: ["libcbor_util_defaults"],
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
+    rustlibs: [
+        "libciborium_nostd",
+        "libcoset_nostd",
+        "liblog_rust_nostd",
+        "libserde_nostd",
+    ],
+}
+
+rust_library {
+    name: "libcbor_util",
+    defaults: ["libcbor_util_defaults"],
+    features: [
+        "std",
+    ],
+    rustlibs: [
+        "libciborium",
+        "libcoset",
+        "liblog_rust",
+        "libserde",
+    ],
+}
diff --git a/libs/cborutil/src/lib.rs b/libs/cborutil/src/lib.rs
new file mode 100644
index 0000000..4d308c1
--- /dev/null
+++ b/libs/cborutil/src/lib.rs
@@ -0,0 +1,134 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Utility functions for CBOR serialization/deserialization.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+extern crate alloc;
+
+use alloc::string::String;
+use alloc::vec::Vec;
+use ciborium::value::{Integer, Value};
+use coset::{CborSerializable, CoseError, CoseKey, Label, Result};
+use log::error;
+use serde::{de::DeserializeOwned, Serialize};
+
+/// Serializes the given data to a CBOR-encoded byte vector.
+pub fn serialize<T: ?Sized + Serialize>(v: &T) -> Result<Vec<u8>> {
+    let mut data = Vec::new();
+    ciborium::into_writer(v, &mut data)?;
+    Ok(data)
+}
+
+/// Deserializes the given type from a CBOR-encoded byte slice, failing if any extra
+/// data remains after the type has been read.
+pub fn deserialize<T: DeserializeOwned>(mut data: &[u8]) -> Result<T> {
+    let res = ciborium::from_reader(&mut data)?;
+    if data.is_empty() {
+        Ok(res)
+    } else {
+        Err(CoseError::ExtraneousData)
+    }
+}
+
+/// Parses the given CBOR-encoded byte slice as a value array.
+pub fn parse_value_array(data: &[u8], context: &'static str) -> Result<Vec<Value>> {
+    value_to_array(Value::from_slice(data)?, context)
+}
+
+/// Converts the provided value `v` to a value array.
+pub fn value_to_array(v: Value, context: &'static str) -> Result<Vec<Value>> {
+    v.into_array().map_err(|e| to_unexpected_item_error(&e, "array", context))
+}
+
+/// Converts the provided value `v` to a text string.
+pub fn value_to_text(v: Value, context: &'static str) -> Result<String> {
+    v.into_text().map_err(|e| to_unexpected_item_error(&e, "tstr", context))
+}
+
+/// Converts the provided value `v` to a map.
+pub fn value_to_map(v: Value, context: &'static str) -> Result<Vec<(Value, Value)>> {
+    v.into_map().map_err(|e| to_unexpected_item_error(&e, "map", context))
+}
+
+/// Converts the provided value `v` to a number.
+pub fn value_to_num<T: TryFrom<Integer>>(v: Value, context: &'static str) -> Result<T> {
+    let num = v.into_integer().map_err(|e| to_unexpected_item_error(&e, "int", context))?;
+    num.try_into().map_err(|_| {
+        error!("The provided value '{num:?}' is not a valid number: {context}");
+        CoseError::OutOfRangeIntegerValue
+    })
+}
+
+/// Converts the provided value `v` to a byte array of length `N`.
+pub fn value_to_byte_array<const N: usize>(v: Value, context: &'static str) -> Result<[u8; N]> {
+    let arr = value_to_bytes(v, context)?;
+    arr.try_into().map_err(|e| {
+        error!("The provided value '{context}' is not an array of length {N}: {e:?}");
+        CoseError::UnexpectedItem("bstr", "array of length {N}")
+    })
+}
+
+/// Converts the provided value `v` to bytes array.
+pub fn value_to_bytes(v: Value, context: &'static str) -> Result<Vec<u8>> {
+    v.into_bytes().map_err(|e| to_unexpected_item_error(&e, "bstr", context))
+}
+
+/// Builds a `CoseError::UnexpectedItem` error when the provided value `v` is not of the expected
+/// type `expected_type` and logs the error message with the provided `context`.
+pub fn to_unexpected_item_error(
+    v: &Value,
+    expected_type: &'static str,
+    context: &'static str,
+) -> CoseError {
+    let v_type = cbor_value_type(v);
+    assert!(v_type != expected_type);
+    error!("The provided value type '{v_type}' is not of type '{expected_type}': {context}");
+    CoseError::UnexpectedItem(v_type, expected_type)
+}
+
+/// Reads the type of the provided value `v`.
+pub fn cbor_value_type(v: &Value) -> &'static str {
+    match v {
+        Value::Integer(_) => "int",
+        Value::Bytes(_) => "bstr",
+        Value::Float(_) => "float",
+        Value::Text(_) => "tstr",
+        Value::Bool(_) => "bool",
+        Value::Null => "nul",
+        Value::Tag(_, _) => "tag",
+        Value::Array(_) => "array",
+        Value::Map(_) => "map",
+        _ => "other",
+    }
+}
+
+/// Returns the value of the given label in the given COSE key as bytes.
+pub fn get_label_value_as_bytes(key: &CoseKey, label: Label) -> Result<&[u8]> {
+    let v = get_label_value(key, label)?;
+    Ok(v.as_bytes().ok_or_else(|| {
+        to_unexpected_item_error(v, "bstr", "Get label value in CoseKey as bytes")
+    })?)
+}
+
+/// Returns the value of the given label in the given COSE key.
+pub fn get_label_value(key: &CoseKey, label: Label) -> Result<&Value> {
+    Ok(&key
+        .params
+        .iter()
+        .find(|(k, _)| k == &label)
+        .ok_or(CoseError::UnexpectedItem("", "Label not found in CoseKey"))?
+        .1)
+}
diff --git a/libs/cstr/Android.bp b/libs/cstr/Android.bp
new file mode 100644
index 0000000..88f43a0
--- /dev/null
+++ b/libs/cstr/Android.bp
@@ -0,0 +1,37 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_library_rlib {
+    name: "libcstr",
+    crate_name: "cstr",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    edition: "2021",
+    host_supported: true,
+    prefer_rlib: true,
+    target: {
+        android: {
+            no_stdlibs: true,
+            stdlibs: [
+                "libcompiler_builtins.rust_sysroot",
+                "libcore.rust_sysroot",
+            ],
+        },
+    },
+    apex_available: [
+        "//apex_available:platform",
+        "//apex_available:anyapex",
+    ],
+}
+
+rust_test {
+    name: "libcstr.tests",
+    crate_name: "libcstr_test",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    test_suites: ["general-tests"],
+    prefer_rlib: true,
+    rustlibs: ["libcstr"],
+}
diff --git a/libs/cstr/src/lib.rs b/libs/cstr/src/lib.rs
new file mode 100644
index 0000000..ddf20fc
--- /dev/null
+++ b/libs/cstr/src/lib.rs
@@ -0,0 +1,50 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Provide a safe const-compatible no_std macro for readable &'static CStr.
+
+#![no_std]
+
+/// Create &CStr out of &str literal
+#[macro_export]
+macro_rules! cstr {
+    ($str:literal) => {{
+        const S: &str = concat!($str, "\0");
+        const C: &::core::ffi::CStr = match ::core::ffi::CStr::from_bytes_with_nul(S.as_bytes()) {
+            Ok(v) => v,
+            Err(_) => panic!("string contains interior NUL"),
+        };
+        C
+    }};
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use std::ffi::CString;
+
+    #[test]
+    fn valid_input_string() {
+        let expected = CString::new("aaa").unwrap();
+        assert_eq!(cstr!("aaa"), expected.as_c_str());
+    }
+
+    #[test]
+    fn valid_empty_string() {
+        let expected = CString::new("").unwrap();
+        assert_eq!(cstr!(""), expected.as_c_str());
+    }
+
+    // As cstr!() panics at compile time, tests covering invalid inputs fail to compile!
+}
diff --git a/libs/devicemapper/Android.bp b/libs/devicemapper/Android.bp
index 9fa010c..5c74162 100644
--- a/libs/devicemapper/Android.bp
+++ b/libs/devicemapper/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "libdm_rust.defaults",
     crate_name: "dm",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     edition: "2021",
     prefer_rlib: true,
@@ -12,10 +14,10 @@
         "libanyhow",
         "libbitflags",
         "liblibc",
-        "libdata_model",
         "libhex",
         "libnix",
         "libuuid",
+        "libzerocopy",
     ],
     multilib: {
         lib32: {
@@ -31,7 +33,10 @@
 
 rust_test {
     name: "libdm_rust.test",
-    defaults: ["libdm_rust.defaults"],
+    defaults: [
+        "libdm_rust.defaults",
+        "rdroidtest.defaults",
+    ],
     test_suites: ["general-tests"],
     rustlibs: [
         "librustutils",
diff --git a/libs/devicemapper/TEST_MAPPING b/libs/devicemapper/TEST_MAPPING
index 23d10c4..cbe7442 100644
--- a/libs/devicemapper/TEST_MAPPING
+++ b/libs/devicemapper/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/libs/devicemapper/src/crypt.rs b/libs/devicemapper/src/crypt.rs
index 8281b34..36c45c7 100644
--- a/libs/devicemapper/src/crypt.rs
+++ b/libs/devicemapper/src/crypt.rs
@@ -20,10 +20,10 @@
 use crate::DmTargetSpec;
 
 use anyhow::{ensure, Context, Result};
-use data_model::DataInit;
 use std::io::Write;
 use std::mem::size_of;
 use std::path::Path;
+use zerocopy::AsBytes;
 
 const SECTOR_SIZE: u64 = 512;
 
@@ -174,7 +174,7 @@
         header.next = aligned_size as u32;
 
         let mut buf = Vec::with_capacity(aligned_size);
-        buf.write_all(header.as_slice())?;
+        buf.write_all(header.as_bytes())?;
         buf.write_all(body.as_bytes())?;
         buf.write_all(vec![0; padding].as_slice())?;
 
diff --git a/libs/devicemapper/src/lib.rs b/libs/devicemapper/src/lib.rs
index fec0114..5656743 100644
--- a/libs/devicemapper/src/lib.rs
+++ b/libs/devicemapper/src/lib.rs
@@ -29,14 +29,16 @@
 //! A library to create device mapper spec & issue ioctls.
 
 #![allow(missing_docs)]
+#![cfg_attr(test, allow(unused))]
 
 use anyhow::{Context, Result};
-use data_model::DataInit;
 use std::fs::{File, OpenOptions};
 use std::io::Write;
 use std::mem::size_of;
 use std::os::unix::io::AsRawFd;
 use std::path::{Path, PathBuf};
+use zerocopy::AsBytes;
+use zerocopy::FromZeroes;
 
 /// Exposes DmCryptTarget & related builder
 pub mod crypt;
@@ -86,7 +88,7 @@
 // `DmTargetSpec` is the header of the data structure for a device-mapper target. When doing the
 // ioctl, one of more `DmTargetSpec` (and its body) are appened to the `DmIoctl` struct.
 #[repr(C)]
-#[derive(Copy, Clone)]
+#[derive(Copy, Clone, AsBytes, FromZeroes)]
 struct DmTargetSpec {
     sector_start: u64,
     length: u64, // number of 512 sectors
@@ -95,13 +97,9 @@
     target_type: [u8; DM_MAX_TYPE_NAME],
 }
 
-// SAFETY: C struct is safe to be initialized from raw data
-unsafe impl DataInit for DmTargetSpec {}
-
 impl DmTargetSpec {
     fn new(target_type: &str) -> Result<Self> {
-        // safe because the size of the array is the same as the size of the struct
-        let mut spec: Self = *DataInit::from_mut_slice(&mut [0; size_of::<Self>()]).unwrap();
+        let mut spec = Self::new_zeroed();
         spec.target_type.as_mut().write_all(target_type.as_bytes())?;
         Ok(spec)
     }
@@ -109,8 +107,7 @@
 
 impl DmIoctl {
     fn new(name: &str) -> Result<DmIoctl> {
-        // safe because the size of the array is the same as the size of the struct
-        let mut data: Self = *DataInit::from_mut_slice(&mut [0; size_of::<Self>()]).unwrap();
+        let mut data: Self = Self::new_zeroed();
         data.version[0] = DM_VERSION_MAJOR;
         data.version[1] = DM_VERSION_MINOR;
         data.version[2] = DM_VERSION_PATCHLEVEL;
@@ -201,7 +198,7 @@
         }
 
         let mut payload = Vec::with_capacity(payload_size);
-        payload.extend_from_slice(data.as_slice());
+        payload.extend_from_slice(data.as_bytes());
         payload.extend_from_slice(target);
         dm_table_load(self, payload.as_mut_ptr() as *mut DmIoctl)
             .context("failed to load table")?;
@@ -232,9 +229,13 @@
 }
 
 #[cfg(test)]
+rdroidtest::test_main!();
+
+#[cfg(test)]
 mod tests {
     use super::*;
     use crypt::{CipherType, DmCryptTargetBuilder};
+    use rdroidtest::{ignore_if, rdroidtest};
     use rustutils::system_properties;
     use std::fs::{read, File, OpenOptions};
     use std::io::Write;
@@ -279,7 +280,6 @@
         Ok(())
     }
 
-    // TODO(b/260692911): Find a better way to skip a test instead of silently passing it.
     fn is_hctr2_supported() -> bool {
         // hctr2 is NOT enabled in kernel 5.10 or lower. We run Microdroid tests on kernel versions
         // 5.10 or above & therefore,  we don't really care to skip test on other versions.
@@ -292,28 +292,25 @@
         }
     }
 
-    #[test]
+    #[rdroidtest]
     fn mapping_again_keeps_data_xts() {
         mapping_again_keeps_data(&KEY_SET_XTS, "name1");
     }
 
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(!is_hctr2_supported())]
     fn mapping_again_keeps_data_hctr2() {
-        if !is_hctr2_supported() {
-            return;
-        }
         mapping_again_keeps_data(&KEY_SET_HCTR2, "name2");
     }
-    #[test]
+
+    #[rdroidtest]
     fn data_inaccessible_with_diff_key_xts() {
         data_inaccessible_with_diff_key(&KEY_SET_XTS, "name3");
     }
 
-    #[test]
+    #[rdroidtest]
+    #[ignore_if(!is_hctr2_supported())]
     fn data_inaccessible_with_diff_key_hctr2() {
-        if !is_hctr2_supported() {
-            return;
-        }
         data_inaccessible_with_diff_key(&KEY_SET_HCTR2, "name4");
     }
 
@@ -330,16 +327,16 @@
             backing_file,
             0,
             sz,
-            /*direct_io*/ true,
-            /*writable*/ true,
+            /* direct_io */ true,
+            /* writable */ true,
         )
         .unwrap();
         let device_diff = device.to_owned() + "_diff";
 
         scopeguard::defer! {
             loopdevice::detach(&data_device).unwrap();
-            _ = delete_device(&dm, device);
-            _ = delete_device(&dm, &device_diff);
+            let _ignored1 = delete_device(&dm, device);
+            let _ignored2 = delete_device(&dm, &device_diff);
         }
 
         let target = DmCryptTargetBuilder::default()
@@ -362,7 +359,8 @@
 
     fn data_inaccessible_with_diff_key(keyset: &KeySet, device: &str) {
         // This test creates 2 different crypt devices using different keys backed
-        // by same data_device -> Write data on dev1 -> Check the data is visible but not the same on dev2
+        // by same data_device -> Write data on dev1 -> Check the data is visible but not the same
+        // on dev2
         let dm = DeviceMapper::new().unwrap();
         let inputimg = include_bytes!("../testdata/rand8k");
         let sz = inputimg.len() as u64;
@@ -373,15 +371,15 @@
             backing_file,
             0,
             sz,
-            /*direct_io*/ true,
-            /*writable*/ true,
+            /* direct_io */ true,
+            /* writable */ true,
         )
         .unwrap();
         let device_diff = device.to_owned() + "_diff";
         scopeguard::defer! {
             loopdevice::detach(&data_device).unwrap();
-            _ = delete_device(&dm, device);
-            _ = delete_device(&dm, &device_diff);
+            let _ignored1 = delete_device(&dm, device);
+            let _ignored2 = delete_device(&dm, &device_diff);
         }
 
         let target = DmCryptTargetBuilder::default()
diff --git a/libs/devicemapper/src/loopdevice.rs b/libs/devicemapper/src/loopdevice.rs
index 16b5b65..9dc722b 100644
--- a/libs/devicemapper/src/loopdevice.rs
+++ b/libs/devicemapper/src/loopdevice.rs
@@ -25,15 +25,14 @@
 
 use crate::util::*;
 use anyhow::{Context, Result};
-use data_model::DataInit;
 use libc::O_DIRECT;
 use std::fs::{File, OpenOptions};
-use std::mem::size_of;
 use std::os::unix::fs::OpenOptionsExt;
 use std::os::unix::io::AsRawFd;
 use std::path::{Path, PathBuf};
 use std::thread;
 use std::time::{Duration, Instant};
+use zerocopy::FromZeroes;
 
 use crate::loopdevice::sys::*;
 
@@ -122,9 +121,7 @@
         .custom_flags(if direct_io { O_DIRECT } else { 0 })
         .open(&path)
         .context(format!("failed to open {:?}", path.as_ref()))?;
-    // safe because the size of the array is the same as the size of the struct
-    let mut config: loop_config =
-        *DataInit::from_mut_slice(&mut [0; size_of::<loop_config>()]).unwrap();
+    let mut config = loop_config::new_zeroed();
     config.fd = backing_file.as_raw_fd() as u32;
     config.block_size = 4096;
     config.info.lo_offset = offset;
diff --git a/libs/devicemapper/src/loopdevice/sys.rs b/libs/devicemapper/src/loopdevice/sys.rs
index 98b5085..ce4ef61 100644
--- a/libs/devicemapper/src/loopdevice/sys.rs
+++ b/libs/devicemapper/src/loopdevice/sys.rs
@@ -15,7 +15,7 @@
  */
 
 use bitflags::bitflags;
-use data_model::DataInit;
+use zerocopy::FromZeroes;
 
 // This UAPI is copied and converted from include/uapi/linux/loop.h Note that this module doesn't
 // implement all the features introduced in loop(4). Only the features that are required to support
@@ -28,7 +28,7 @@
 pub const LOOP_CLR_FD: libc::c_ulong = 0x4C01;
 
 #[repr(C)]
-#[derive(Copy, Clone)]
+#[derive(Copy, Clone, FromZeroes)]
 pub struct loop_config {
     pub fd: u32,
     pub block_size: u32,
@@ -36,11 +36,8 @@
     pub reserved: [u64; 8],
 }
 
-// SAFETY: C struct is safe to be initialized from raw data
-unsafe impl DataInit for loop_config {}
-
 #[repr(C)]
-#[derive(Copy, Clone)]
+#[derive(Copy, Clone, FromZeroes)]
 pub struct loop_info64 {
     pub lo_device: u64,
     pub lo_inode: u64,
@@ -57,11 +54,12 @@
     pub lo_init: [u64; 2],
 }
 
-// SAFETY: C struct is safe to be initialized from raw data
-unsafe impl DataInit for loop_info64 {}
+#[repr(transparent)]
+#[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, FromZeroes)]
+pub struct Flag(u32);
 
 bitflags! {
-    pub struct Flag: u32 {
+    impl Flag: u32 {
         const LO_FLAGS_READ_ONLY = 1 << 0;
         const LO_FLAGS_AUTOCLEAR = 1 << 2;
         const LO_FLAGS_PARTSCAN = 1 << 3;
diff --git a/libs/devicemapper/src/sys.rs b/libs/devicemapper/src/sys.rs
index e709bf0..bd1e165 100644
--- a/libs/devicemapper/src/sys.rs
+++ b/libs/devicemapper/src/sys.rs
@@ -15,7 +15,8 @@
  */
 
 use bitflags::bitflags;
-use data_model::DataInit;
+use zerocopy::AsBytes;
+use zerocopy::FromZeroes;
 
 // UAPI for device mapper can be found at include/uapi/linux/dm-ioctl.h
 
@@ -44,7 +45,7 @@
 }
 
 #[repr(C)]
-#[derive(Copy, Clone)]
+#[derive(Copy, Clone, AsBytes, FromZeroes)]
 pub struct DmIoctl {
     pub version: [u32; 3],
     pub data_size: u32,
@@ -60,9 +61,6 @@
     pub data: [u8; 7],
 }
 
-// SAFETY: C struct is safe to be initialized from raw data
-unsafe impl DataInit for DmIoctl {}
-
 pub const DM_VERSION_MAJOR: u32 = 4;
 pub const DM_VERSION_MINOR: u32 = 0;
 pub const DM_VERSION_PATCHLEVEL: u32 = 0;
@@ -71,8 +69,12 @@
 pub const DM_UUID_LEN: usize = 129;
 pub const DM_MAX_TYPE_NAME: usize = 16;
 
+#[repr(transparent)]
+#[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, AsBytes, FromZeroes)]
+pub struct Flag(u32);
+
 bitflags! {
-    pub struct Flag: u32 {
+    impl Flag: u32 {
         const DM_READONLY_FLAG = 1 << 0;
         const DM_SUSPEND_FLAG = 1 << 1;
         const DM_PERSISTENT_DEV_FLAG = 1 << 3;
diff --git a/libs/devicemapper/src/util.rs b/libs/devicemapper/src/util.rs
index e8df424..cc071e4 100644
--- a/libs/devicemapper/src/util.rs
+++ b/libs/devicemapper/src/util.rs
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-use anyhow::{anyhow, bail, Result};
+use anyhow::{bail, Result};
 use nix::sys::stat::FileStat;
 use std::fs::File;
 use std::os::unix::fs::FileTypeExt;
@@ -52,24 +52,6 @@
     Ok(())
 }
 
-/// Returns hexadecimal reprentation of a given byte array.
-pub fn hexstring_from(s: &[u8]) -> String {
-    s.iter().map(|byte| format!("{:02x}", byte)).reduce(|i, j| i + &j).unwrap_or_default()
-}
-
-/// Parses a hexadecimal string into a byte array
-pub fn parse_hexstring(s: &str) -> Result<Vec<u8>> {
-    let len = s.len();
-    if len % 2 != 0 {
-        bail!("length {} is not even", len)
-    } else {
-        (0..len)
-            .step_by(2)
-            .map(|i| u8::from_str_radix(&s[i..i + 2], 16).map_err(|e| anyhow!(e)))
-            .collect()
-    }
-}
-
 /// fstat that accepts a path rather than FD
 pub fn fstat(p: &Path) -> Result<FileStat> {
     let f = File::open(p)?;
diff --git a/libs/devicemapper/src/verity.rs b/libs/devicemapper/src/verity.rs
index e0c5e52..bbd9d38 100644
--- a/libs/devicemapper/src/verity.rs
+++ b/libs/devicemapper/src/verity.rs
@@ -19,10 +19,10 @@
 // which is then given to `DeviceMapper` to create a mapper device.
 
 use anyhow::{bail, Context, Result};
-use data_model::DataInit;
 use std::io::Write;
 use std::mem::size_of;
 use std::path::Path;
+use zerocopy::AsBytes;
 
 use crate::util::*;
 use crate::DmTargetSpec;
@@ -151,7 +151,7 @@
         };
 
         let root_digest = if let Some(root_digest) = self.root_digest {
-            hexstring_from(root_digest)
+            hex::encode(root_digest)
         } else {
             bail!("root digest is not set")
         };
@@ -159,7 +159,7 @@
         let salt = if self.salt.is_none() || self.salt.unwrap().is_empty() {
             "-".to_string() // Note. It's not an empty string!
         } else {
-            hexstring_from(self.salt.unwrap())
+            hex::encode(self.salt.unwrap())
         };
 
         // Step2: serialize the information according to the spec, which is ...
@@ -195,7 +195,7 @@
         header.next = aligned_size as u32;
 
         let mut buf = Vec::with_capacity(aligned_size);
-        buf.write_all(header.as_slice())?;
+        buf.write_all(header.as_bytes())?;
         buf.write_all(body.as_bytes())?;
         buf.write_all(vec![0; padding].as_slice())?;
         Ok(DmVerityTarget(buf.into_boxed_slice()))
diff --git a/libs/dice/OWNERS b/libs/dice/OWNERS
new file mode 100644
index 0000000..fbc501d
--- /dev/null
+++ b/libs/dice/OWNERS
@@ -0,0 +1 @@
+ascull@google.com
diff --git a/libs/dice/TEST_MAPPING b/libs/dice/TEST_MAPPING
new file mode 100644
index 0000000..2045ba5
--- /dev/null
+++ b/libs/dice/TEST_MAPPING
@@ -0,0 +1,22 @@
+{
+  "postsubmit": [
+    {
+      "name": "libdiced_open_dice.integration_test"
+    },
+    {
+      "name": "libdiced_open_dice_nostd.integration_test"
+    },
+    {
+      "name": "libopen_dice_cbor_bindgen_test"
+    },
+    {
+      "name": "libopen_dice_android_bindgen_test"
+    },
+    {
+      "name": "libdiced_sample_inputs.integration_test"
+    },
+    {
+      "name": "libdiced_sample_inputs_nostd.integration_test"
+    }
+  ]
+}
diff --git a/libs/dice/open_dice/Android.bp b/libs/dice/open_dice/Android.bp
new file mode 100644
index 0000000..9481f5d
--- /dev/null
+++ b/libs/dice/open_dice/Android.bp
@@ -0,0 +1,264 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_visibility: [":__subpackages__"],
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libdiced_open_dice_defaults",
+    crate_name: "diced_open_dice",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+}
+
+rust_library_rlib {
+    name: "libdiced_open_dice_nostd",
+    defaults: ["libdiced_open_dice_defaults"],
+    rustlibs: [
+        "libopen_dice_android_bindgen_nostd",
+        "libopen_dice_cbor_bindgen_nostd",
+        "libzeroize_nostd",
+    ],
+    features: [
+        "alloc",
+    ],
+    whole_static_libs: [
+        "libopen_dice_cbor",
+        "libcrypto_baremetal",
+    ],
+    visibility: [
+        "//packages/modules/Virtualization:__subpackages__",
+        "//system/authgraph/tests:__subpackages__",
+    ],
+}
+
+rust_library {
+    name: "libdiced_open_dice",
+    defaults: ["libdiced_open_dice_defaults"],
+    host_supported: true,
+    vendor_available: true,
+    rustlibs: [
+        "libopen_dice_android_bindgen",
+        "libopen_dice_cbor_bindgen",
+        "libzeroize",
+    ],
+    features: [
+        "alloc",
+        "std",
+    ],
+    shared_libs: [
+        "libcrypto",
+    ],
+    static_libs: [
+        "libopen_dice_cbor",
+    ],
+    whole_static_libs: [
+        "libopen_dice_android",
+    ],
+    visibility: [
+        "//hardware/interfaces/security/secretkeeper/aidl/vts",
+        "//packages/modules/Virtualization:__subpackages__",
+        "//system/authgraph/tests:__subpackages__",
+        "//system/secretkeeper/client:__subpackages__",
+    ],
+    apex_available: [
+        "//apex_available:platform",
+        "com.android.virt",
+    ],
+}
+
+rust_defaults {
+    name: "libdiced_open_dice_test_defaults",
+    crate_name: "diced_open_dice_test",
+    srcs: ["tests/*.rs"],
+    test_suites: ["general-tests"],
+}
+
+rust_test {
+    name: "libdiced_open_dice.integration_test",
+    defaults: ["libdiced_open_dice_test_defaults"],
+    rustlibs: [
+        "libdiced_open_dice",
+    ],
+}
+
+rust_test {
+    name: "libdiced_open_dice_nostd.integration_test",
+    defaults: ["libdiced_open_dice_test_defaults"],
+    rustlibs: [
+        "libdiced_open_dice_nostd",
+    ],
+}
+
+rust_defaults {
+    name: "libopen_dice_bindgen_nostd.rust_defaults",
+    bindgen_flags: [
+        "--use-core",
+        "--ctypes-prefix=core::ffi",
+        "--raw-line=#![no_std]",
+    ],
+    no_stdlibs: true,
+    prefer_rlib: true,
+    stdlibs: [
+        "libcore.rust_sysroot",
+        "libcompiler_builtins.rust_sysroot",
+    ],
+    target: {
+        musl: {
+            enabled: false,
+        },
+        glibc: {
+            enabled: false,
+        },
+        darwin: {
+            enabled: false,
+        },
+    },
+}
+
+rust_defaults {
+    name: "libopen_dice.rust_defaults",
+    host_supported: true,
+    vendor_available: true,
+    apex_available: [
+        "//apex_available:platform",
+        "com.android.compos",
+        "com.android.virt",
+    ],
+}
+
+rust_defaults {
+    name: "libopen_dice_cbor_bindgen.rust_defaults",
+    wrapper_src: "bindgen/dice.h",
+    crate_name: "open_dice_cbor_bindgen",
+    source_stem: "bindings",
+    bindgen_flags: [
+        "--rustified-enum DiceConfigType",
+        "--rustified-enum DiceMode",
+        "--rustified-enum DiceResult",
+
+        // By generating only essential functions, we can make bindings concise and
+        // optimize compilation time.
+        "--allowlist-function=DiceDeriveCdiPrivateKeySeed",
+        "--allowlist-function=DiceDeriveCdiCertificateId",
+        "--allowlist-function=DiceMainFlow",
+        "--allowlist-function=DiceHash",
+        "--allowlist-function=DiceKdf",
+        "--allowlist-function=DiceKeypairFromSeed",
+        "--allowlist-function=DiceSign",
+        "--allowlist-function=DiceVerify",
+        "--allowlist-function=DiceGenerateCertificate",
+
+        // We also need some constants in addition to the functions.
+        "--allowlist-var=DICE_CDI_SIZE",
+        "--allowlist-var=DICE_HASH_SIZE",
+        "--allowlist-var=DICE_HIDDEN_SIZE",
+        "--allowlist-var=DICE_INLINE_CONFIG_SIZE",
+        "--allowlist-var=DICE_PRIVATE_KEY_SEED_SIZE",
+        "--allowlist-var=DICE_ID_SIZE",
+        "--allowlist-var=DICE_PUBLIC_KEY_SIZE",
+        "--allowlist-var=DICE_PRIVATE_KEY_SIZE",
+        "--allowlist-var=DICE_SIGNATURE_SIZE",
+    ],
+}
+
+rust_bindgen {
+    name: "libopen_dice_cbor_bindgen",
+    defaults: [
+        "libopen_dice.rust_defaults",
+        "libopen_dice_cbor_bindgen.rust_defaults",
+    ],
+    whole_static_libs: ["libopen_dice_cbor"],
+}
+
+rust_bindgen {
+    name: "libopen_dice_cbor_bindgen_nostd",
+    defaults: [
+        "libopen_dice_cbor_bindgen.rust_defaults",
+        "libopen_dice_bindgen_nostd.rust_defaults",
+    ],
+    whole_static_libs: ["libopen_dice_cbor_baremetal"],
+}
+
+rust_defaults {
+    name: "libopen_dice_android_bindgen.rust_defaults",
+    wrapper_src: "bindgen/android.h",
+    crate_name: "open_dice_android_bindgen",
+    source_stem: "bindings",
+    bindgen_flags: [
+        // By generating only essential functions, we can make bindings concise and
+        // optimize compilation time.
+        "--allowlist-function=DiceAndroidFormatConfigDescriptor",
+        "--allowlist-function=DiceAndroidMainFlow",
+        "--allowlist-function=DiceAndroidHandoverMainFlow",
+        "--allowlist-function=DiceAndroidHandoverParse",
+
+        // We also need some constants in addition to the functions.
+        "--allowlist-var=DICE_ANDROID_CONFIG_.*",
+
+        // Prevent DiceInputValues from being generated a second time and
+        // import it instead from open_dice_cbor_bindgen.
+        "--blocklist-type=DiceInputValues_",
+        "--blocklist-type=DiceInputValues",
+        "--raw-line",
+        "pub use open_dice_cbor_bindgen::DiceInputValues;",
+
+        // Prevent DiceResult from being generated a second time and
+        // import it instead from open_dice_cbor_bindgen.
+        "--blocklist-type=DiceResult",
+        "--raw-line",
+        "pub use open_dice_cbor_bindgen::DiceResult;",
+    ],
+
+}
+
+rust_bindgen {
+    name: "libopen_dice_android_bindgen",
+    defaults: [
+        "libopen_dice.rust_defaults",
+        "libopen_dice_android_bindgen.rust_defaults",
+    ],
+    rustlibs: [
+        "libopen_dice_cbor_bindgen",
+    ],
+    whole_static_libs: ["libopen_dice_android"],
+}
+
+rust_bindgen {
+    name: "libopen_dice_android_bindgen_nostd",
+    defaults: [
+        "libopen_dice_android_bindgen.rust_defaults",
+        "libopen_dice_bindgen_nostd.rust_defaults",
+    ],
+    rustlibs: [
+        "libopen_dice_cbor_bindgen_nostd",
+    ],
+    whole_static_libs: ["libopen_dice_android_baremetal"],
+}
+
+rust_test {
+    name: "libopen_dice_cbor_bindgen_test",
+    srcs: [
+        ":libopen_dice_cbor_bindgen",
+    ],
+    crate_name: "open_dice_cbor_bindgen_test",
+    test_suites: ["general-tests"],
+    auto_gen_config: true,
+    clippy_lints: "none",
+    lints: "none",
+}
+
+rust_test {
+    name: "libopen_dice_android_bindgen_test",
+    srcs: [
+        ":libopen_dice_android_bindgen",
+    ],
+    crate_name: "open_dice_android_bindgen_test",
+    rustlibs: [
+        "libopen_dice_cbor_bindgen",
+    ],
+    test_suites: ["general-tests"],
+    auto_gen_config: true,
+    clippy_lints: "none",
+    lints: "none",
+}
diff --git a/libs/dice/open_dice/bindgen/android.h b/libs/dice/open_dice/bindgen/android.h
new file mode 100644
index 0000000..18f6476
--- /dev/null
+++ b/libs/dice/open_dice/bindgen/android.h
@@ -0,0 +1,17 @@
+// Copyright 2021 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy of
+// the License at
+//
+//     https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+
+#pragma once
+
+#include <dice/android.h>
diff --git a/libs/dice/open_dice/bindgen/dice.h b/libs/dice/open_dice/bindgen/dice.h
new file mode 100644
index 0000000..47fe911
--- /dev/null
+++ b/libs/dice/open_dice/bindgen/dice.h
@@ -0,0 +1,18 @@
+// Copyright 2021 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy of
+// the License at
+//
+//     https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+
+#pragma once
+
+#include <dice/dice.h>
+#include <dice/ops.h>
diff --git a/libs/dice/open_dice/src/bcc.rs b/libs/dice/open_dice/src/bcc.rs
new file mode 100644
index 0000000..9c9545b
--- /dev/null
+++ b/libs/dice/open_dice/src/bcc.rs
@@ -0,0 +1,228 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module mirrors the content in open-dice/include/dice/android.h
+
+use crate::dice::{Cdi, CdiValues, DiceArtifacts, InputValues, CDI_SIZE};
+use crate::error::{check_result, DiceError, Result};
+use open_dice_android_bindgen::{
+    DiceAndroidConfigValues, DiceAndroidFormatConfigDescriptor, DiceAndroidHandoverMainFlow,
+    DiceAndroidHandoverParse, DiceAndroidMainFlow, DICE_ANDROID_CONFIG_COMPONENT_NAME,
+    DICE_ANDROID_CONFIG_COMPONENT_VERSION, DICE_ANDROID_CONFIG_RESETTABLE,
+    DICE_ANDROID_CONFIG_RKP_VM_MARKER, DICE_ANDROID_CONFIG_SECURITY_VERSION,
+};
+use std::{ffi::CStr, ptr};
+
+/// Contains the input values used to construct the Android Profile for DICE
+/// configuration descriptor.
+#[derive(Default, Debug)]
+pub struct DiceConfigValues<'a> {
+    /// Name of the component.
+    pub component_name: Option<&'a CStr>,
+    /// Version of the component.
+    pub component_version: Option<u64>,
+    /// Whether the key changes on factory reset.
+    pub resettable: bool,
+    /// Monotonically increasing version of the component.
+    pub security_version: Option<u64>,
+    /// Whether the component can take part in running the RKP VM.
+    pub rkp_vm_marker: bool,
+}
+
+/// Formats a configuration descriptor following the Android Profile for DICE specification.
+/// See https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/android.md.
+pub fn bcc_format_config_descriptor(values: &DiceConfigValues, buffer: &mut [u8]) -> Result<usize> {
+    let mut configs = 0;
+
+    let component_name = values.component_name.map_or(ptr::null(), |name| {
+        configs |= DICE_ANDROID_CONFIG_COMPONENT_NAME;
+        name.as_ptr()
+    });
+    let component_version = values.component_version.map_or(0, |version| {
+        configs |= DICE_ANDROID_CONFIG_COMPONENT_VERSION;
+        version
+    });
+    if values.resettable {
+        configs |= DICE_ANDROID_CONFIG_RESETTABLE;
+    }
+    let security_version = values.security_version.map_or(0, |version| {
+        configs |= DICE_ANDROID_CONFIG_SECURITY_VERSION;
+        version
+    });
+    if values.rkp_vm_marker {
+        configs |= DICE_ANDROID_CONFIG_RKP_VM_MARKER;
+    }
+
+    let values =
+        DiceAndroidConfigValues { configs, component_name, component_version, security_version };
+
+    let mut buffer_size = 0;
+    check_result(
+        // SAFETY: The function writes to the buffer, within the given bounds, and only reads the
+        // input values. It writes its result to buffer_size.
+        unsafe {
+            DiceAndroidFormatConfigDescriptor(
+                &values,
+                buffer.len(),
+                buffer.as_mut_ptr(),
+                &mut buffer_size,
+            )
+        },
+        buffer_size,
+    )?;
+    Ok(buffer_size)
+}
+
+/// Executes the main Android DICE flow.
+///
+/// Given a full set of input values along with the current DICE chain and CDI values,
+/// computes the next CDI values and matching updated DICE chain.
+pub fn bcc_main_flow(
+    current_cdi_attest: &Cdi,
+    current_cdi_seal: &Cdi,
+    current_chain: &[u8],
+    input_values: &InputValues,
+    next_cdi_values: &mut CdiValues,
+    next_chain: &mut [u8],
+) -> Result<usize> {
+    let mut next_chain_size = 0;
+    check_result(
+        // SAFETY: `DiceAndroidMainFlow` only reads the `current_chain` and CDI values and writes
+        // to `next_chain` and next CDI values within its bounds. It also reads `input_values` as a
+        // constant input and doesn't store any pointer.
+        // The first argument can be null and is not used in the current implementation.
+        unsafe {
+            DiceAndroidMainFlow(
+                ptr::null_mut(), // context
+                current_cdi_attest.as_ptr(),
+                current_cdi_seal.as_ptr(),
+                current_chain.as_ptr(),
+                current_chain.len(),
+                input_values.as_ptr(),
+                next_chain.len(),
+                next_chain.as_mut_ptr(),
+                &mut next_chain_size,
+                next_cdi_values.cdi_attest.as_mut_ptr(),
+                next_cdi_values.cdi_seal.as_mut_ptr(),
+            )
+        },
+        next_chain_size,
+    )?;
+    Ok(next_chain_size)
+}
+
+/// Executes the main Android DICE handover flow.
+///
+/// A handover combines the DICE chain and CDIs in a single CBOR object.
+/// This function takes the current boot stage's handover bundle and produces a
+/// bundle for the next stage.
+pub fn bcc_handover_main_flow(
+    current_handover: &[u8],
+    input_values: &InputValues,
+    next_handover: &mut [u8],
+) -> Result<usize> {
+    let mut next_handover_size = 0;
+    check_result(
+        // SAFETY: The function only reads `current_handover` and writes to `next_handover`
+        // within its bounds,
+        // It also reads `input_values` as a constant input and doesn't store any pointer.
+        // The first argument can be null and is not used in the current implementation.
+        unsafe {
+            DiceAndroidHandoverMainFlow(
+                ptr::null_mut(), // context
+                current_handover.as_ptr(),
+                current_handover.len(),
+                input_values.as_ptr(),
+                next_handover.len(),
+                next_handover.as_mut_ptr(),
+                &mut next_handover_size,
+            )
+        },
+        next_handover_size,
+    )?;
+
+    Ok(next_handover_size)
+}
+
+/// An Android DICE handover object combines the DICE chain and CDIs in a single CBOR object.
+/// This struct is used as return of the function `android_dice_handover_parse`, its lifetime is
+/// tied to the lifetime of the raw handover slice.
+#[derive(Debug)]
+pub struct BccHandover<'a> {
+    /// Attestation CDI.
+    cdi_attest: &'a [u8; CDI_SIZE],
+    /// Sealing CDI.
+    cdi_seal: &'a [u8; CDI_SIZE],
+    /// DICE chain.
+    bcc: Option<&'a [u8]>,
+}
+
+impl<'a> DiceArtifacts for BccHandover<'a> {
+    fn cdi_attest(&self) -> &[u8; CDI_SIZE] {
+        self.cdi_attest
+    }
+
+    fn cdi_seal(&self) -> &[u8; CDI_SIZE] {
+        self.cdi_seal
+    }
+
+    fn bcc(&self) -> Option<&[u8]> {
+        self.bcc
+    }
+}
+
+/// This function parses the `handover` to extracts the DICE chain and CDIs.
+/// The lifetime of the returned `DiceAndroidHandover` is tied to the given `handover` slice.
+pub fn bcc_handover_parse(handover: &[u8]) -> Result<BccHandover> {
+    let mut cdi_attest: *const u8 = ptr::null();
+    let mut cdi_seal: *const u8 = ptr::null();
+    let mut chain: *const u8 = ptr::null();
+    let mut chain_size = 0;
+    check_result(
+        // SAFETY: The `handover` is only read and never stored and the returned pointers should
+        // all point within the address range of the `handover` or be NULL.
+        unsafe {
+            DiceAndroidHandoverParse(
+                handover.as_ptr(),
+                handover.len(),
+                &mut cdi_attest,
+                &mut cdi_seal,
+                &mut chain,
+                &mut chain_size,
+            )
+        },
+        chain_size,
+    )?;
+    let cdi_attest = sub_slice(handover, cdi_attest, CDI_SIZE)?;
+    let cdi_seal = sub_slice(handover, cdi_seal, CDI_SIZE)?;
+    let bcc = sub_slice(handover, chain, chain_size).ok();
+    Ok(BccHandover {
+        cdi_attest: cdi_attest.try_into().map_err(|_| DiceError::PlatformError)?,
+        cdi_seal: cdi_seal.try_into().map_err(|_| DiceError::PlatformError)?,
+        bcc,
+    })
+}
+
+/// Gets a slice the `addr` points to and of length `len`.
+/// The slice should be contained in the buffer.
+fn sub_slice(buffer: &[u8], addr: *const u8, len: usize) -> Result<&[u8]> {
+    if addr.is_null() || !buffer.as_ptr_range().contains(&addr) {
+        return Err(DiceError::PlatformError);
+    }
+    // SAFETY: This is safe because addr is not null and is within the range of the buffer.
+    let start: usize = unsafe {
+        addr.offset_from(buffer.as_ptr()).try_into().map_err(|_| DiceError::PlatformError)?
+    };
+    start.checked_add(len).and_then(|end| buffer.get(start..end)).ok_or(DiceError::PlatformError)
+}
diff --git a/libs/dice/open_dice/src/dice.rs b/libs/dice/open_dice/src/dice.rs
new file mode 100644
index 0000000..e42e373
--- /dev/null
+++ b/libs/dice/open_dice/src/dice.rs
@@ -0,0 +1,287 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Structs and functions about the types used in DICE.
+//! This module mirrors the content in open-dice/include/dice/dice.h
+
+use crate::error::{check_result, Result};
+pub use open_dice_cbor_bindgen::DiceMode;
+use open_dice_cbor_bindgen::{
+    DiceConfigType, DiceDeriveCdiCertificateId, DiceDeriveCdiPrivateKeySeed, DiceInputValues,
+    DiceMainFlow, DICE_CDI_SIZE, DICE_HASH_SIZE, DICE_HIDDEN_SIZE, DICE_ID_SIZE,
+    DICE_INLINE_CONFIG_SIZE, DICE_PRIVATE_KEY_SEED_SIZE, DICE_PRIVATE_KEY_SIZE,
+    DICE_PUBLIC_KEY_SIZE, DICE_SIGNATURE_SIZE,
+};
+use std::{marker::PhantomData, ptr};
+use zeroize::{Zeroize, ZeroizeOnDrop};
+
+/// The size of a DICE hash.
+pub const HASH_SIZE: usize = DICE_HASH_SIZE as usize;
+/// The size of the DICE hidden value.
+pub const HIDDEN_SIZE: usize = DICE_HIDDEN_SIZE as usize;
+/// The size of a DICE inline config.
+const INLINE_CONFIG_SIZE: usize = DICE_INLINE_CONFIG_SIZE as usize;
+/// The size of a CDI.
+pub const CDI_SIZE: usize = DICE_CDI_SIZE as usize;
+/// The size of a private key seed.
+pub const PRIVATE_KEY_SEED_SIZE: usize = DICE_PRIVATE_KEY_SEED_SIZE as usize;
+/// The size of a private key.
+pub const PRIVATE_KEY_SIZE: usize = DICE_PRIVATE_KEY_SIZE as usize;
+/// The size of a public key.
+pub const PUBLIC_KEY_SIZE: usize = DICE_PUBLIC_KEY_SIZE as usize;
+/// The size of a signature.
+pub const SIGNATURE_SIZE: usize = DICE_SIGNATURE_SIZE as usize;
+/// The size of an ID.
+pub const ID_SIZE: usize = DICE_ID_SIZE as usize;
+
+/// Array type of hashes used by DICE.
+pub type Hash = [u8; HASH_SIZE];
+/// Array type of additional input.
+pub type Hidden = [u8; HIDDEN_SIZE];
+/// Array type of inline configuration values.
+pub type InlineConfig = [u8; INLINE_CONFIG_SIZE];
+/// Array type of CDIs.
+pub type Cdi = [u8; CDI_SIZE];
+/// Array type of the public key.
+pub type PublicKey = [u8; PUBLIC_KEY_SIZE];
+/// Array type of the signature.
+pub type Signature = [u8; SIGNATURE_SIZE];
+/// Array type of DICE ID.
+pub type DiceId = [u8; ID_SIZE];
+
+/// A trait for types that represent Dice artifacts, which include:
+///
+/// - Attestation CDI
+/// - Sealing CDI
+/// - Boot Certificate Chain
+///
+/// Types that implement this trait provide an access these artifacts.
+pub trait DiceArtifacts {
+    /// Returns a reference to the attestation CDI.
+    fn cdi_attest(&self) -> &[u8; CDI_SIZE];
+
+    /// Returns a reference to the sealing CDI.
+    fn cdi_seal(&self) -> &[u8; CDI_SIZE];
+
+    /// Returns a reference to the Boot Certificate Chain, if present.
+    fn bcc(&self) -> Option<&[u8]>;
+}
+
+/// TODO(b/268587826): Clean up the memory cache after zeroing out the memory
+/// for sensitive data like CDI values and private key.
+/// CDI Values.
+#[derive(Debug, Zeroize, ZeroizeOnDrop, Default)]
+pub struct CdiValues {
+    /// Attestation CDI.
+    pub cdi_attest: [u8; CDI_SIZE],
+    /// Sealing CDI.
+    pub cdi_seal: [u8; CDI_SIZE],
+}
+
+/// Private key seed. The data is zeroed out when the struct is dropped.
+#[derive(Zeroize, ZeroizeOnDrop, Default)]
+pub struct PrivateKeySeed([u8; PRIVATE_KEY_SEED_SIZE]);
+
+impl PrivateKeySeed {
+    /// Returns an array reference of the private key seed.
+    pub fn as_array(&self) -> &[u8; PRIVATE_KEY_SEED_SIZE] {
+        &self.0
+    }
+
+    /// Returns a mutable pointer to the slice buffer of the private key seed.
+    pub fn as_mut_ptr(&mut self) -> *mut u8 {
+        self.0.as_mut_ptr()
+    }
+}
+
+/// Private key. The data is zeroed out when the struct is dropped.
+#[derive(Zeroize, ZeroizeOnDrop)]
+pub struct PrivateKey([u8; PRIVATE_KEY_SIZE]);
+
+impl Default for PrivateKey {
+    /// Creates a new `PrivateKey` instance with all bytes set to 0.
+    ///
+    /// Since the size of the private key array is too large to be initialized
+    /// with a default value, this implementation sets all the bytes in the array
+    /// to 0 using the `[0u8; PRIVATE_KEY_SIZE]` syntax.
+    fn default() -> Self {
+        Self([0u8; PRIVATE_KEY_SIZE])
+    }
+}
+
+impl PrivateKey {
+    /// Returns an array reference of the private key.
+    pub fn as_array(&self) -> &[u8; PRIVATE_KEY_SIZE] {
+        &self.0
+    }
+
+    /// Returns a mutable pointer to the slice buffer of the private key.
+    pub fn as_mut_ptr(&mut self) -> *mut u8 {
+        self.0.as_mut_ptr()
+    }
+}
+
+/// Configuration descriptor for DICE input values.
+#[derive(Debug, Clone, PartialEq, Eq)]
+pub enum Config<'a> {
+    /// Reference to an inline descriptor.
+    Inline(&'a InlineConfig),
+    /// Reference to a free form descriptor that will be hashed by the implementation.
+    Descriptor(&'a [u8]),
+}
+
+impl Config<'_> {
+    fn dice_config_type(&self) -> DiceConfigType {
+        match self {
+            Self::Inline(_) => DiceConfigType::kDiceConfigTypeInline,
+            Self::Descriptor(_) => DiceConfigType::kDiceConfigTypeDescriptor,
+        }
+    }
+
+    fn inline_config(&self) -> InlineConfig {
+        match self {
+            Self::Inline(inline) => **inline,
+            Self::Descriptor(_) => [0u8; INLINE_CONFIG_SIZE],
+        }
+    }
+
+    fn descriptor_ptr(&self) -> *const u8 {
+        match self {
+            Self::Descriptor(descriptor) => descriptor.as_ptr(),
+            _ => ptr::null(),
+        }
+    }
+
+    fn descriptor_size(&self) -> usize {
+        match self {
+            Self::Descriptor(descriptor) => descriptor.len(),
+            _ => 0,
+        }
+    }
+}
+
+/// Wrap of `DiceInputValues`.
+#[derive(Clone, Debug)]
+pub struct InputValues<'a> {
+    dice_inputs: DiceInputValues,
+    // DiceInputValues contains a pointer to the separate config descriptor, which must therefore
+    // outlive it. Make sure the borrow checker can enforce that.
+    config_descriptor: PhantomData<&'a [u8]>,
+}
+
+impl<'a> InputValues<'a> {
+    /// Creates a new `InputValues`.
+    pub fn new(
+        code_hash: Hash,
+        config: Config<'a>,
+        authority_hash: Hash,
+        mode: DiceMode,
+        hidden: Hidden,
+    ) -> Self {
+        Self {
+            dice_inputs: DiceInputValues {
+                code_hash,
+                code_descriptor: ptr::null(),
+                code_descriptor_size: 0,
+                config_type: config.dice_config_type(),
+                config_value: config.inline_config(),
+                config_descriptor: config.descriptor_ptr(),
+                config_descriptor_size: config.descriptor_size(),
+                authority_hash,
+                authority_descriptor: ptr::null(),
+                authority_descriptor_size: 0,
+                mode,
+                hidden,
+            },
+            config_descriptor: PhantomData,
+        }
+    }
+
+    /// Returns a raw pointer to the wrapped `DiceInputValues`.
+    pub fn as_ptr(&self) -> *const DiceInputValues {
+        &self.dice_inputs as *const DiceInputValues
+    }
+}
+
+/// Derives a CDI private key seed from a `cdi_attest` value.
+pub fn derive_cdi_private_key_seed(cdi_attest: &Cdi) -> Result<PrivateKeySeed> {
+    let mut seed = PrivateKeySeed::default();
+    check_result(
+        // SAFETY: The function writes to the buffer within the given bounds, and only reads the
+        // input values. The first argument context is not used in this function.
+        unsafe {
+            DiceDeriveCdiPrivateKeySeed(
+                ptr::null_mut(), // context
+                cdi_attest.as_ptr(),
+                seed.as_mut_ptr(),
+            )
+        },
+        seed.0.len(),
+    )?;
+    Ok(seed)
+}
+
+/// Derives an ID from the given `cdi_public_key` value.
+pub fn derive_cdi_certificate_id(cdi_public_key: &[u8]) -> Result<DiceId> {
+    let mut id = [0u8; ID_SIZE];
+    check_result(
+        // SAFETY: The function writes to the buffer within the given bounds, and only reads the
+        // input values. The first argument context is not used in this function.
+        unsafe {
+            DiceDeriveCdiCertificateId(
+                ptr::null_mut(), // context
+                cdi_public_key.as_ptr(),
+                cdi_public_key.len(),
+                id.as_mut_ptr(),
+            )
+        },
+        id.len(),
+    )?;
+    Ok(id)
+}
+
+/// Executes the main DICE flow.
+///
+/// Given a full set of input values and the current CDI values, computes the
+/// next CDI values and a matching certificate.
+/// Returns the actual size of the next CDI certificate.
+pub fn dice_main_flow(
+    current_cdi_attest: &Cdi,
+    current_cdi_seal: &Cdi,
+    input_values: &InputValues,
+    next_cdi_certificate: &mut [u8],
+    next_cdi_values: &mut CdiValues,
+) -> Result<usize> {
+    let mut next_cdi_certificate_actual_size = 0;
+    check_result(
+        // SAFETY: The function only reads the current CDI values and inputs and writes
+        // to `next_cdi_certificate` and next CDI values within its bounds.
+        // The first argument can be null and is not used in the current implementation.
+        unsafe {
+            DiceMainFlow(
+                ptr::null_mut(), // context
+                current_cdi_attest.as_ptr(),
+                current_cdi_seal.as_ptr(),
+                input_values.as_ptr(),
+                next_cdi_certificate.len(),
+                next_cdi_certificate.as_mut_ptr(),
+                &mut next_cdi_certificate_actual_size,
+                next_cdi_values.cdi_attest.as_mut_ptr(),
+                next_cdi_values.cdi_seal.as_mut_ptr(),
+            )
+        },
+        next_cdi_certificate_actual_size,
+    )?;
+    Ok(next_cdi_certificate_actual_size)
+}
diff --git a/libs/dice/open_dice/src/error.rs b/libs/dice/open_dice/src/error.rs
new file mode 100644
index 0000000..bef9a9c
--- /dev/null
+++ b/libs/dice/open_dice/src/error.rs
@@ -0,0 +1,63 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Errors and relating functions thrown in this library.
+
+use open_dice_cbor_bindgen::DiceResult;
+use std::{fmt, result};
+
+#[cfg(feature = "std")]
+use std::error::Error;
+
+/// Error type used by DICE.
+#[derive(Debug)]
+pub enum DiceError {
+    /// Provided input was invalid.
+    InvalidInput,
+    /// Provided buffer was too small.
+    BufferTooSmall(usize),
+    /// Platform error.
+    PlatformError,
+}
+
+/// This makes `DiceError` accepted by anyhow.
+#[cfg(feature = "std")]
+impl Error for DiceError {}
+
+impl fmt::Display for DiceError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::InvalidInput => write!(f, "Invalid input"),
+            Self::BufferTooSmall(buffer_required_size) => {
+                write!(f, "Buffer too small; need {buffer_required_size} bytes")
+            }
+            Self::PlatformError => write!(f, "Platform error"),
+        }
+    }
+}
+
+/// DICE result type.
+pub type Result<T> = result::Result<T, DiceError>;
+
+/// Checks the given `DiceResult`. Returns an error if it's not OK.
+pub(crate) fn check_result(result: DiceResult, buffer_required_size: usize) -> Result<()> {
+    match result {
+        DiceResult::kDiceResultOk => Ok(()),
+        DiceResult::kDiceResultInvalidInput => Err(DiceError::InvalidInput),
+        DiceResult::kDiceResultBufferTooSmall => {
+            Err(DiceError::BufferTooSmall(buffer_required_size))
+        }
+        DiceResult::kDiceResultPlatformError => Err(DiceError::PlatformError),
+    }
+}
diff --git a/libs/dice/open_dice/src/lib.rs b/libs/dice/open_dice/src/lib.rs
new file mode 100644
index 0000000..d0004b1
--- /dev/null
+++ b/libs/dice/open_dice/src/lib.rs
@@ -0,0 +1,50 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Implements safe wrappers around the public API of libopen-dice for
+//! both std and nostd usages.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+#[cfg(feature = "alloc")]
+extern crate alloc;
+
+#[cfg(not(feature = "std"))]
+extern crate core as std;
+
+mod bcc;
+mod dice;
+mod error;
+mod ops;
+#[cfg(feature = "alloc")]
+mod retry;
+
+pub use bcc::{
+    bcc_format_config_descriptor, bcc_handover_main_flow, bcc_handover_parse, bcc_main_flow,
+    BccHandover, DiceConfigValues,
+};
+pub use dice::{
+    derive_cdi_certificate_id, derive_cdi_private_key_seed, dice_main_flow, Cdi, CdiValues, Config,
+    DiceArtifacts, DiceMode, Hash, Hidden, InlineConfig, InputValues, PrivateKey, PrivateKeySeed,
+    PublicKey, Signature, CDI_SIZE, HASH_SIZE, HIDDEN_SIZE, ID_SIZE, PRIVATE_KEY_SEED_SIZE,
+};
+pub use error::{DiceError, Result};
+pub use ops::{
+    derive_cdi_leaf_priv, generate_certificate, hash, kdf, keypair_from_seed, sign, verify,
+};
+#[cfg(feature = "alloc")]
+pub use retry::{
+    retry_bcc_format_config_descriptor, retry_bcc_main_flow, retry_dice_main_flow,
+    retry_generate_certificate, OwnedDiceArtifacts,
+};
diff --git a/libs/dice/open_dice/src/ops.rs b/libs/dice/open_dice/src/ops.rs
new file mode 100644
index 0000000..47b5244
--- /dev/null
+++ b/libs/dice/open_dice/src/ops.rs
@@ -0,0 +1,177 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module mirrors the content in open-dice/include/dice/ops.h
+//! It contains the set of functions that implement various operations that the
+//! main DICE functions depend on.
+
+use crate::dice::{
+    derive_cdi_private_key_seed, DiceArtifacts, Hash, InputValues, PrivateKey, PublicKey,
+    Signature, HASH_SIZE, PRIVATE_KEY_SEED_SIZE, PRIVATE_KEY_SIZE, PUBLIC_KEY_SIZE, SIGNATURE_SIZE,
+};
+use crate::error::{check_result, Result};
+use open_dice_cbor_bindgen::{
+    DiceGenerateCertificate, DiceHash, DiceKdf, DiceKeypairFromSeed, DiceSign, DiceVerify,
+};
+use std::ptr;
+
+/// Hashes the provided input using DICE's hash function `DiceHash`.
+pub fn hash(input: &[u8]) -> Result<Hash> {
+    let mut output: Hash = [0; HASH_SIZE];
+    check_result(
+        // SAFETY: DiceHash takes a sized input buffer and writes to a constant-sized output
+        // buffer. The first argument context is not used in this function.
+        unsafe {
+            DiceHash(
+                ptr::null_mut(), // context
+                input.as_ptr(),
+                input.len(),
+                output.as_mut_ptr(),
+            )
+        },
+        output.len(),
+    )?;
+    Ok(output)
+}
+
+/// An implementation of HKDF-SHA512. Derives a key of `derived_key.len()` bytes from `ikm`, `salt`,
+/// and `info`. The derived key is written to the `derived_key`.
+pub fn kdf(ikm: &[u8], salt: &[u8], info: &[u8], derived_key: &mut [u8]) -> Result<()> {
+    check_result(
+        // SAFETY: The function writes to the `derived_key`, within the given bounds, and only
+        // reads the input values. The first argument context is not used in this function.
+        unsafe {
+            DiceKdf(
+                ptr::null_mut(), // context
+                derived_key.len(),
+                ikm.as_ptr(),
+                ikm.len(),
+                salt.as_ptr(),
+                salt.len(),
+                info.as_ptr(),
+                info.len(),
+                derived_key.as_mut_ptr(),
+            )
+        },
+        derived_key.len(),
+    )
+}
+
+/// Deterministically generates a public and private key pair from `seed`.
+/// Since this is deterministic, `seed` is as sensitive as a private key and can
+/// be used directly as the private key.
+pub fn keypair_from_seed(seed: &[u8; PRIVATE_KEY_SEED_SIZE]) -> Result<(PublicKey, PrivateKey)> {
+    let mut public_key = [0u8; PUBLIC_KEY_SIZE];
+    let mut private_key = PrivateKey::default();
+    check_result(
+        // SAFETY: The function writes to the `public_key` and `private_key` within the given
+        // bounds, and only reads the `seed`. The first argument context is not used in this
+        // function.
+        unsafe {
+            DiceKeypairFromSeed(
+                ptr::null_mut(), // context
+                seed.as_ptr(),
+                public_key.as_mut_ptr(),
+                private_key.as_mut_ptr(),
+            )
+        },
+        public_key.len(),
+    )?;
+    Ok((public_key, private_key))
+}
+
+/// Derives the CDI_Leaf_Priv from the provided `dice_artifacts`.
+///
+/// The corresponding public key is included in the leaf certificate of the DICE chain
+/// contained in `dice_artifacts`.
+///
+/// Refer to the following documentation for more information about CDI_Leaf_Priv:
+///
+/// security/rkp/aidl/android/hardware/security/keymint/IRemotelyProvisionedComponent.aidl
+pub fn derive_cdi_leaf_priv(dice_artifacts: &dyn DiceArtifacts) -> Result<PrivateKey> {
+    let cdi_priv_key_seed = derive_cdi_private_key_seed(dice_artifacts.cdi_attest())?;
+    let (_, private_key) = keypair_from_seed(cdi_priv_key_seed.as_array())?;
+    Ok(private_key)
+}
+
+/// Signs the `message` with the give `private_key` using `DiceSign`.
+pub fn sign(message: &[u8], private_key: &[u8; PRIVATE_KEY_SIZE]) -> Result<Signature> {
+    let mut signature = [0u8; SIGNATURE_SIZE];
+    check_result(
+        // SAFETY: The function writes to the `signature` within the given bounds, and only reads
+        // the message and the private key. The first argument context is not used in this
+        // function.
+        unsafe {
+            DiceSign(
+                ptr::null_mut(), // context
+                message.as_ptr(),
+                message.len(),
+                private_key.as_ptr(),
+                signature.as_mut_ptr(),
+            )
+        },
+        signature.len(),
+    )?;
+    Ok(signature)
+}
+
+/// Verifies the `signature` of the `message` with the given `public_key` using `DiceVerify`.
+pub fn verify(message: &[u8], signature: &Signature, public_key: &PublicKey) -> Result<()> {
+    check_result(
+        // SAFETY: only reads the messages, signature and public key as constant values.
+        // The first argument context is not used in this function.
+        unsafe {
+            DiceVerify(
+                ptr::null_mut(), // context
+                message.as_ptr(),
+                message.len(),
+                signature.as_ptr(),
+                public_key.as_ptr(),
+            )
+        },
+        0,
+    )
+}
+
+/// Generates an X.509 certificate from the given `subject_private_key_seed` and
+/// `input_values`, and signed by `authority_private_key_seed`.
+/// The subject private key seed is supplied here so the implementation can choose
+/// between asymmetric mechanisms, for example ECDSA vs Ed25519.
+/// Returns the actual size of the generated certificate.
+pub fn generate_certificate(
+    subject_private_key_seed: &[u8; PRIVATE_KEY_SEED_SIZE],
+    authority_private_key_seed: &[u8; PRIVATE_KEY_SEED_SIZE],
+    input_values: &InputValues,
+    certificate: &mut [u8],
+) -> Result<usize> {
+    let mut certificate_actual_size = 0;
+    check_result(
+        // SAFETY: The function writes to the `certificate` within the given bounds, and only reads
+        // the input values and the key seeds. The first argument context is not used in this
+        // function.
+        unsafe {
+            DiceGenerateCertificate(
+                ptr::null_mut(), // context
+                subject_private_key_seed.as_ptr(),
+                authority_private_key_seed.as_ptr(),
+                input_values.as_ptr(),
+                certificate.len(),
+                certificate.as_mut_ptr(),
+                &mut certificate_actual_size,
+            )
+        },
+        certificate_actual_size,
+    )?;
+    Ok(certificate_actual_size)
+}
diff --git a/libs/dice/open_dice/src/retry.rs b/libs/dice/open_dice/src/retry.rs
new file mode 100644
index 0000000..a6303bd
--- /dev/null
+++ b/libs/dice/open_dice/src/retry.rs
@@ -0,0 +1,141 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module implements a retry version for multiple DICE functions that
+//! require preallocated output buffer. As the retry functions require
+//! memory allocation on heap, currently we only expose these functions in
+//! std environment.
+
+use crate::bcc::{bcc_format_config_descriptor, bcc_main_flow, DiceConfigValues};
+use crate::dice::{
+    dice_main_flow, Cdi, CdiValues, DiceArtifacts, InputValues, CDI_SIZE, PRIVATE_KEY_SEED_SIZE,
+};
+use crate::error::{DiceError, Result};
+use crate::ops::generate_certificate;
+#[cfg(feature = "alloc")]
+use alloc::vec::Vec;
+
+/// Artifacts stores a set of dice artifacts comprising CDI_ATTEST, CDI_SEAL,
+/// and the BCC formatted attestation certificate chain.
+/// As we align with the DICE standards today, this is the certificate chain
+/// is also called DICE certificate chain.
+#[derive(Debug)]
+pub struct OwnedDiceArtifacts {
+    /// CDI Values.
+    cdi_values: CdiValues,
+    /// Boot Certificate Chain.
+    bcc: Vec<u8>,
+}
+
+impl DiceArtifacts for OwnedDiceArtifacts {
+    fn cdi_attest(&self) -> &[u8; CDI_SIZE] {
+        &self.cdi_values.cdi_attest
+    }
+
+    fn cdi_seal(&self) -> &[u8; CDI_SIZE] {
+        &self.cdi_values.cdi_seal
+    }
+
+    fn bcc(&self) -> Option<&[u8]> {
+        Some(&self.bcc)
+    }
+}
+
+/// Retries the given function with bigger measured buffer size.
+fn retry_with_measured_buffer<F>(mut f: F) -> Result<Vec<u8>>
+where
+    F: FnMut(&mut Vec<u8>) -> Result<usize>,
+{
+    let mut buffer = Vec::new();
+    match f(&mut buffer) {
+        Err(DiceError::BufferTooSmall(actual_size)) => {
+            buffer.resize(actual_size, 0);
+            f(&mut buffer)?;
+        }
+        Err(e) => return Err(e),
+        Ok(_) => {}
+    };
+    Ok(buffer)
+}
+
+/// Formats a configuration descriptor following the BCC's specification.
+pub fn retry_bcc_format_config_descriptor(values: &DiceConfigValues) -> Result<Vec<u8>> {
+    retry_with_measured_buffer(|buffer| bcc_format_config_descriptor(values, buffer))
+}
+
+/// Executes the main BCC flow.
+///
+/// Given a full set of input values along with the current BCC and CDI values,
+/// computes the next CDI values and matching updated BCC.
+pub fn retry_bcc_main_flow(
+    current_cdi_attest: &Cdi,
+    current_cdi_seal: &Cdi,
+    bcc: &[u8],
+    input_values: &InputValues,
+) -> Result<OwnedDiceArtifacts> {
+    let mut next_cdi_values = CdiValues::default();
+    let next_bcc = retry_with_measured_buffer(|next_bcc| {
+        bcc_main_flow(
+            current_cdi_attest,
+            current_cdi_seal,
+            bcc,
+            input_values,
+            &mut next_cdi_values,
+            next_bcc,
+        )
+    })?;
+    Ok(OwnedDiceArtifacts { cdi_values: next_cdi_values, bcc: next_bcc })
+}
+
+/// Executes the main DICE flow.
+///
+/// Given a full set of input values and the current CDI values, computes the
+/// next CDI values and a matching certificate.
+pub fn retry_dice_main_flow(
+    current_cdi_attest: &Cdi,
+    current_cdi_seal: &Cdi,
+    input_values: &InputValues,
+) -> Result<(CdiValues, Vec<u8>)> {
+    let mut next_cdi_values = CdiValues::default();
+    let next_cdi_certificate = retry_with_measured_buffer(|next_cdi_certificate| {
+        dice_main_flow(
+            current_cdi_attest,
+            current_cdi_seal,
+            input_values,
+            next_cdi_certificate,
+            &mut next_cdi_values,
+        )
+    })?;
+    Ok((next_cdi_values, next_cdi_certificate))
+}
+
+/// Generates an X.509 certificate from the given `subject_private_key_seed` and
+/// `input_values`, and signed by `authority_private_key_seed`.
+/// The subject private key seed is supplied here so the implementation can choose
+/// between asymmetric mechanisms, for example ECDSA vs Ed25519.
+/// Returns the generated certificate.
+pub fn retry_generate_certificate(
+    subject_private_key_seed: &[u8; PRIVATE_KEY_SEED_SIZE],
+    authority_private_key_seed: &[u8; PRIVATE_KEY_SEED_SIZE],
+    input_values: &InputValues,
+) -> Result<Vec<u8>> {
+    retry_with_measured_buffer(|certificate| {
+        generate_certificate(
+            subject_private_key_seed,
+            authority_private_key_seed,
+            input_values,
+            certificate,
+        )
+    })
+}
diff --git a/libs/dice/open_dice/tests/api_test.rs b/libs/dice/open_dice/tests/api_test.rs
new file mode 100644
index 0000000..a47265b
--- /dev/null
+++ b/libs/dice/open_dice/tests/api_test.rs
@@ -0,0 +1,107 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+use diced_open_dice::{
+    derive_cdi_certificate_id, derive_cdi_private_key_seed, hash, kdf, keypair_from_seed, sign,
+    verify, CDI_SIZE, HASH_SIZE, ID_SIZE, PRIVATE_KEY_SEED_SIZE,
+};
+
+#[test]
+fn hash_succeeds() {
+    const EXPECTED_HASH: [u8; HASH_SIZE] = [
+        0x30, 0x9e, 0xcc, 0x48, 0x9c, 0x12, 0xd6, 0xeb, 0x4c, 0xc4, 0x0f, 0x50, 0xc9, 0x02, 0xf2,
+        0xb4, 0xd0, 0xed, 0x77, 0xee, 0x51, 0x1a, 0x7c, 0x7a, 0x9b, 0xcd, 0x3c, 0xa8, 0x6d, 0x4c,
+        0xd8, 0x6f, 0x98, 0x9d, 0xd3, 0x5b, 0xc5, 0xff, 0x49, 0x96, 0x70, 0xda, 0x34, 0x25, 0x5b,
+        0x45, 0xb0, 0xcf, 0xd8, 0x30, 0xe8, 0x1f, 0x60, 0x5d, 0xcf, 0x7d, 0xc5, 0x54, 0x2e, 0x93,
+        0xae, 0x9c, 0xd7, 0x6f,
+    ];
+    assert_eq!(EXPECTED_HASH, hash(b"hello world").expect("hash failed"));
+}
+
+#[test]
+fn kdf_succeeds() {
+    let mut derived_key = [0u8; PRIVATE_KEY_SEED_SIZE];
+    kdf(b"myInitialKeyMaterial", b"mySalt", b"myInfo", &mut derived_key).unwrap();
+    const EXPECTED_DERIVED_KEY: [u8; PRIVATE_KEY_SEED_SIZE] = [
+        0x91, 0x9b, 0x8d, 0x29, 0xc4, 0x1b, 0x93, 0xd7, 0xeb, 0x09, 0xfa, 0xd7, 0xc9, 0x87, 0xb0,
+        0xd1, 0xcc, 0x26, 0xef, 0x07, 0x83, 0x42, 0xcf, 0xa3, 0x45, 0x0a, 0x57, 0xe9, 0x19, 0x86,
+        0xef, 0x48,
+    ];
+    assert_eq!(EXPECTED_DERIVED_KEY, derived_key);
+}
+
+#[test]
+fn derive_cdi_certificate_id_succeeds() {
+    const EXPECTED_ID: [u8; ID_SIZE] = [
+        0x7a, 0x36, 0x45, 0x2c, 0x02, 0xf6, 0x2b, 0xec, 0xf9, 0x80, 0x06, 0x75, 0x87, 0xa5, 0xc1,
+        0x44, 0x0c, 0xd3, 0xc0, 0x6d,
+    ];
+    assert_eq!(EXPECTED_ID, derive_cdi_certificate_id(b"MyPubKey").unwrap());
+}
+
+const EXPECTED_SEED: &[u8] = &[
+    0xfa, 0x3c, 0x2f, 0x58, 0x37, 0xf5, 0x8e, 0x96, 0x16, 0x09, 0xf5, 0x22, 0xa1, 0xf1, 0xba, 0xaa,
+    0x19, 0x95, 0x01, 0x79, 0x2e, 0x60, 0x56, 0xaf, 0xf6, 0x41, 0xe7, 0xff, 0x48, 0xf5, 0x3a, 0x08,
+    0x84, 0x8a, 0x98, 0x85, 0x6d, 0xf5, 0x69, 0x21, 0x03, 0xcd, 0x09, 0xc3, 0x28, 0xd6, 0x06, 0xa7,
+    0x57, 0xbd, 0x48, 0x4b, 0x0f, 0x79, 0x0f, 0xf8, 0x2f, 0xf0, 0x0a, 0x41, 0x94, 0xd8, 0x8c, 0xa8,
+];
+
+const EXPECTED_CDI_ATTEST: &[u8] = &[
+    0xfa, 0x3c, 0x2f, 0x58, 0x37, 0xf5, 0x8e, 0x96, 0x16, 0x09, 0xf5, 0x22, 0xa1, 0xf1, 0xba, 0xaa,
+    0x19, 0x95, 0x01, 0x79, 0x2e, 0x60, 0x56, 0xaf, 0xf6, 0x41, 0xe7, 0xff, 0x48, 0xf5, 0x3a, 0x08,
+];
+
+const EXPECTED_CDI_PRIVATE_KEY_SEED: &[u8] = &[
+    0x5f, 0xcc, 0x8e, 0x1a, 0xd1, 0xc2, 0xb3, 0xe9, 0xfb, 0xe1, 0x68, 0xf0, 0xf6, 0x98, 0xfe, 0x0d,
+    0xee, 0xd4, 0xb5, 0x18, 0xcb, 0x59, 0x70, 0x2d, 0xee, 0x06, 0xe5, 0x70, 0xf1, 0x72, 0x02, 0x6e,
+];
+
+const EXPECTED_PUB_KEY: &[u8] = &[
+    0x47, 0x42, 0x4b, 0xbd, 0xd7, 0x23, 0xb4, 0xcd, 0xca, 0xe2, 0x8e, 0xdc, 0x6b, 0xfc, 0x23, 0xc9,
+    0x21, 0x5c, 0x48, 0x21, 0x47, 0xee, 0x5b, 0xfa, 0xaf, 0x88, 0x9a, 0x52, 0xf1, 0x61, 0x06, 0x37,
+];
+const EXPECTED_PRIV_KEY: &[u8] = &[
+    0x5f, 0xcc, 0x8e, 0x1a, 0xd1, 0xc2, 0xb3, 0xe9, 0xfb, 0xe1, 0x68, 0xf0, 0xf6, 0x98, 0xfe, 0x0d,
+    0xee, 0xd4, 0xb5, 0x18, 0xcb, 0x59, 0x70, 0x2d, 0xee, 0x06, 0xe5, 0x70, 0xf1, 0x72, 0x02, 0x6e,
+    0x47, 0x42, 0x4b, 0xbd, 0xd7, 0x23, 0xb4, 0xcd, 0xca, 0xe2, 0x8e, 0xdc, 0x6b, 0xfc, 0x23, 0xc9,
+    0x21, 0x5c, 0x48, 0x21, 0x47, 0xee, 0x5b, 0xfa, 0xaf, 0x88, 0x9a, 0x52, 0xf1, 0x61, 0x06, 0x37,
+];
+
+const EXPECTED_SIGNATURE: &[u8] = &[
+    0x44, 0xae, 0xcc, 0xe2, 0xb9, 0x96, 0x18, 0x39, 0x0e, 0x61, 0x0f, 0x53, 0x07, 0xbf, 0xf2, 0x32,
+    0x3d, 0x44, 0xd4, 0xf2, 0x07, 0x23, 0x30, 0x85, 0x32, 0x18, 0xd2, 0x69, 0xb8, 0x29, 0x3c, 0x26,
+    0xe6, 0x0d, 0x9c, 0xa5, 0xc2, 0x73, 0xcd, 0x8c, 0xb8, 0x3c, 0x3e, 0x5b, 0xfd, 0x62, 0x8d, 0xf6,
+    0xc4, 0x27, 0xa6, 0xe9, 0x11, 0x06, 0x5a, 0xb2, 0x2b, 0x64, 0xf7, 0xfc, 0xbb, 0xab, 0x4a, 0x0e,
+];
+
+#[test]
+fn hash_derive_sign_verify() {
+    let seed = hash(b"MySeedString").unwrap();
+    assert_eq!(seed, EXPECTED_SEED);
+    let cdi_attest = &seed[..CDI_SIZE];
+    assert_eq!(cdi_attest, EXPECTED_CDI_ATTEST);
+    let cdi_private_key_seed = derive_cdi_private_key_seed(cdi_attest.try_into().unwrap()).unwrap();
+    assert_eq!(cdi_private_key_seed.as_array(), EXPECTED_CDI_PRIVATE_KEY_SEED);
+    let (pub_key, priv_key) = keypair_from_seed(cdi_private_key_seed.as_array()).unwrap();
+    assert_eq!(&pub_key, EXPECTED_PUB_KEY);
+    assert_eq!(priv_key.as_array(), EXPECTED_PRIV_KEY);
+    let mut signature = sign(b"MyMessage", priv_key.as_array()).unwrap();
+    assert_eq!(&signature, EXPECTED_SIGNATURE);
+    assert!(verify(b"MyMessage", &signature, &pub_key).is_ok());
+    assert!(verify(b"MyMessage_fail", &signature, &pub_key).is_err());
+    signature[0] += 1;
+    assert!(verify(b"MyMessage", &signature, &pub_key).is_err());
+}
diff --git a/libs/dice/sample_inputs/Android.bp b/libs/dice/sample_inputs/Android.bp
new file mode 100644
index 0000000..e5d35a7
--- /dev/null
+++ b/libs/dice/sample_inputs/Android.bp
@@ -0,0 +1,82 @@
+// Copyright 2021, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libdiced_sample_inputs_defaults",
+    crate_name: "diced_sample_inputs",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+}
+
+rust_library {
+    name: "libdiced_sample_inputs",
+    defaults: ["libdiced_sample_inputs_defaults"],
+    features: [
+        "std",
+    ],
+    rustlibs: [
+        "libciborium",
+        "libcoset",
+        "libdiced_open_dice",
+        "liblog_rust",
+    ],
+}
+
+rust_library_rlib {
+    name: "libdiced_sample_inputs_nostd",
+    defaults: ["libdiced_sample_inputs_defaults"],
+    rustlibs: [
+        "libciborium_nostd",
+        "libcoset_nostd",
+        "libdiced_open_dice_nostd",
+        "liblog_rust_nostd",
+    ],
+    visibility: [
+        "//packages/modules/Virtualization:__subpackages__",
+    ],
+}
+
+rust_defaults {
+    name: "libdiced_sample_inputs_test_defaults",
+    crate_name: "diced_sample_inputs_test",
+    srcs: ["tests/*.rs"],
+    test_suites: ["general-tests"],
+    rustlibs: [
+        "libanyhow",
+        "libhwtrust",
+    ],
+}
+
+rust_test {
+    name: "libdiced_sample_inputs.integration_test",
+    defaults: ["libdiced_sample_inputs_test_defaults"],
+    rustlibs: [
+        "libdiced_open_dice",
+        "libdiced_sample_inputs",
+    ],
+}
+
+rust_test {
+    name: "libdiced_sample_inputs_nostd.integration_test",
+    defaults: ["libdiced_sample_inputs_test_defaults"],
+    rustlibs: [
+        "libdiced_open_dice_nostd",
+        "libdiced_sample_inputs_nostd",
+    ],
+}
diff --git a/libs/avb/bindgen/avb.h b/libs/dice/sample_inputs/src/lib.rs
similarity index 60%
rename from libs/avb/bindgen/avb.h
rename to libs/dice/sample_inputs/src/lib.rs
index b3d5385..9d6deca 100644
--- a/libs/avb/bindgen/avb.h
+++ b/libs/dice/sample_inputs/src/lib.rs
@@ -1,11 +1,11 @@
 /*
- * Copyright (C) 2021 The Android Open Source Project
+ * Copyright (C) 2023 The Android Open Source Project
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *     http://www.apache.org/licenses/LICENSE-2.0
+ *      http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -14,6 +14,13 @@
  * limitations under the License.
  */
 
-#pragma once
+//! Provides a set of sample inputs for a DICE chain and CDI values derived
+//! from it.
 
-#include <libavb/libavb.h>
+#![cfg_attr(not(feature = "std"), no_std)]
+
+extern crate alloc;
+
+mod sample_inputs;
+
+pub use sample_inputs::make_sample_bcc_and_cdis;
diff --git a/libs/dice/sample_inputs/src/sample_inputs.rs b/libs/dice/sample_inputs/src/sample_inputs.rs
new file mode 100644
index 0000000..54f551b
--- /dev/null
+++ b/libs/dice/sample_inputs/src/sample_inputs.rs
@@ -0,0 +1,200 @@
+// Copyright 2021, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module provides a set of sample input values for a DICE chain, a sample UDS,
+//! as well as tuple of CDIs and BCC derived thereof.
+
+use alloc::vec;
+use alloc::vec::Vec;
+use ciborium::{de, ser, value::Value};
+use core::ffi::CStr;
+use coset::{iana, Algorithm, AsCborValue, CoseKey, KeyOperation, KeyType, Label};
+use diced_open_dice::{
+    derive_cdi_private_key_seed, keypair_from_seed, retry_bcc_format_config_descriptor,
+    retry_bcc_main_flow, retry_dice_main_flow, Config, DiceArtifacts, DiceConfigValues, DiceError,
+    DiceMode, InputValues, OwnedDiceArtifacts, Result, CDI_SIZE, HASH_SIZE, HIDDEN_SIZE,
+};
+use log::error;
+
+/// Sample UDS used to perform the root dice flow by `make_sample_bcc_and_cdis`.
+const UDS: &[u8; CDI_SIZE] = &[
+    0x65, 0x4f, 0xab, 0xa9, 0xa5, 0xad, 0x0f, 0x5e, 0x15, 0xc3, 0x12, 0xf7, 0x77, 0x45, 0xfa, 0x55,
+    0x18, 0x6a, 0xa6, 0x34, 0xb6, 0x7c, 0x82, 0x7b, 0x89, 0x4c, 0xc5, 0x52, 0xd3, 0x27, 0x35, 0x8e,
+];
+
+const CODE_HASH_ABL: [u8; HASH_SIZE] = [
+    0x16, 0x48, 0xf2, 0x55, 0x53, 0x23, 0xdd, 0x15, 0x2e, 0x83, 0x38, 0xc3, 0x64, 0x38, 0x63, 0x26,
+    0x0f, 0xcf, 0x5b, 0xd1, 0x3a, 0xd3, 0x40, 0x3e, 0x23, 0xf8, 0x34, 0x4c, 0x6d, 0xa2, 0xbe, 0x25,
+    0x1c, 0xb0, 0x29, 0xe8, 0xc3, 0xfb, 0xb8, 0x80, 0xdc, 0xb1, 0xd2, 0xb3, 0x91, 0x4d, 0xd3, 0xfb,
+    0x01, 0x0f, 0xe4, 0xe9, 0x46, 0xa2, 0xc0, 0x26, 0x57, 0x5a, 0xba, 0x30, 0xf7, 0x15, 0x98, 0x14,
+];
+const AUTHORITY_HASH_ABL: [u8; HASH_SIZE] = [
+    0xf9, 0x00, 0x9d, 0xc2, 0x59, 0x09, 0xe0, 0xb6, 0x98, 0xbd, 0xe3, 0x97, 0x4a, 0xcb, 0x3c, 0xe7,
+    0x6b, 0x24, 0xc3, 0xe4, 0x98, 0xdd, 0xa9, 0x6a, 0x41, 0x59, 0x15, 0xb1, 0x23, 0xe6, 0xc8, 0xdf,
+    0xfb, 0x52, 0xb4, 0x52, 0xc1, 0xb9, 0x61, 0xdd, 0xbc, 0x5b, 0x37, 0x0e, 0x12, 0x12, 0xb2, 0xfd,
+    0xc1, 0x09, 0xb0, 0xcf, 0x33, 0x81, 0x4c, 0xc6, 0x29, 0x1b, 0x99, 0xea, 0xae, 0xfd, 0xaa, 0x0d,
+];
+const HIDDEN_ABL: [u8; HIDDEN_SIZE] = [
+    0xa2, 0x01, 0xd0, 0xc0, 0xaa, 0x75, 0x3c, 0x06, 0x43, 0x98, 0x6c, 0xc3, 0x5a, 0xb5, 0x5f, 0x1f,
+    0x0f, 0x92, 0x44, 0x3b, 0x0e, 0xd4, 0x29, 0x75, 0xe3, 0xdb, 0x36, 0xda, 0xc8, 0x07, 0x97, 0x4d,
+    0xff, 0xbc, 0x6a, 0xa4, 0x8a, 0xef, 0xc4, 0x7f, 0xf8, 0x61, 0x7d, 0x51, 0x4d, 0x2f, 0xdf, 0x7e,
+    0x8c, 0x3d, 0xa3, 0xfc, 0x63, 0xd4, 0xd4, 0x74, 0x8a, 0xc4, 0x14, 0x45, 0x83, 0x6b, 0x12, 0x7e,
+];
+const CODE_HASH_AVB: [u8; HASH_SIZE] = [
+    0xa4, 0x0c, 0xcb, 0xc1, 0xbf, 0xfa, 0xcc, 0xfd, 0xeb, 0xf4, 0xfc, 0x43, 0x83, 0x7f, 0x46, 0x8d,
+    0xd8, 0xd8, 0x14, 0xc1, 0x96, 0x14, 0x1f, 0x6e, 0xb3, 0xa0, 0xd9, 0x56, 0xb3, 0xbf, 0x2f, 0xfa,
+    0x88, 0x70, 0x11, 0x07, 0x39, 0xa4, 0xd2, 0xa9, 0x6b, 0x18, 0x28, 0xe8, 0x29, 0x20, 0x49, 0x0f,
+    0xbb, 0x8d, 0x08, 0x8c, 0xc6, 0x54, 0xe9, 0x71, 0xd2, 0x7e, 0xa4, 0xfe, 0x58, 0x7f, 0xd3, 0xc7,
+];
+const AUTHORITY_HASH_AVB: [u8; HASH_SIZE] = [
+    0xb2, 0x69, 0x05, 0x48, 0x56, 0xb5, 0xfa, 0x55, 0x6f, 0xac, 0x56, 0xd9, 0x02, 0x35, 0x2b, 0xaa,
+    0x4c, 0xba, 0x28, 0xdd, 0x82, 0x3a, 0x86, 0xf5, 0xd4, 0xc2, 0xf1, 0xf9, 0x35, 0x7d, 0xe4, 0x43,
+    0x13, 0xbf, 0xfe, 0xd3, 0x36, 0xd8, 0x1c, 0x12, 0x78, 0x5c, 0x9c, 0x3e, 0xf6, 0x66, 0xef, 0xab,
+    0x3d, 0x0f, 0x89, 0xa4, 0x6f, 0xc9, 0x72, 0xee, 0x73, 0x43, 0x02, 0x8a, 0xef, 0xbc, 0x05, 0x98,
+];
+const HIDDEN_AVB: [u8; HIDDEN_SIZE] = [
+    0x5b, 0x3f, 0xc9, 0x6b, 0xe3, 0x95, 0x59, 0x40, 0x5e, 0x64, 0xe5, 0x64, 0x3f, 0xfd, 0x21, 0x09,
+    0x9d, 0xf3, 0xcd, 0xc7, 0xa4, 0x2a, 0xe2, 0x97, 0xdd, 0xe2, 0x4f, 0xb0, 0x7d, 0x7e, 0xf5, 0x8e,
+    0xd6, 0x4d, 0x84, 0x25, 0x54, 0x41, 0x3f, 0x8f, 0x78, 0x64, 0x1a, 0x51, 0x27, 0x9d, 0x55, 0x8a,
+    0xe9, 0x90, 0x35, 0xab, 0x39, 0x80, 0x4b, 0x94, 0x40, 0x84, 0xa2, 0xfd, 0x73, 0xeb, 0x35, 0x7a,
+];
+const AUTHORITY_HASH_ANDROID: [u8; HASH_SIZE] = [
+    0x04, 0x25, 0x5d, 0x60, 0x5f, 0x5c, 0x45, 0x0d, 0xf2, 0x9a, 0x6e, 0x99, 0x30, 0x03, 0xb8, 0xd6,
+    0xe1, 0x99, 0x71, 0x1b, 0xf8, 0x44, 0xfa, 0xb5, 0x31, 0x79, 0x1c, 0x37, 0x68, 0x4e, 0x1d, 0xc0,
+    0x24, 0x74, 0x68, 0xf8, 0x80, 0x20, 0x3e, 0x44, 0xb1, 0x43, 0xd2, 0x9c, 0xfc, 0x12, 0x9e, 0x77,
+    0x0a, 0xde, 0x29, 0x24, 0xff, 0x2e, 0xfa, 0xc7, 0x10, 0xd5, 0x73, 0xd4, 0xc6, 0xdf, 0x62, 0x9f,
+];
+
+fn ed25519_public_key_to_cbor_value(public_key: &[u8]) -> Result<Value> {
+    let key = CoseKey {
+        kty: KeyType::Assigned(iana::KeyType::OKP),
+        alg: Some(Algorithm::Assigned(iana::Algorithm::EdDSA)),
+        key_ops: vec![KeyOperation::Assigned(iana::KeyOperation::Verify)].into_iter().collect(),
+        params: vec![
+            (
+                Label::Int(iana::Ec2KeyParameter::Crv as i64),
+                Value::from(iana::EllipticCurve::Ed25519 as u64),
+            ),
+            (Label::Int(iana::Ec2KeyParameter::X as i64), Value::Bytes(public_key.to_vec())),
+        ],
+        ..Default::default()
+    };
+    key.to_cbor_value().map_err(|e| {
+        error!("Failed to serialize the key to CBOR data: {e}");
+        DiceError::InvalidInput
+    })
+}
+
+/// Makes a DICE chain (BCC) from the sample input.
+///
+/// The DICE chain is of the following format:
+/// public key derived from UDS -> ABL certificate -> AVB certificate -> Android certificate
+pub fn make_sample_bcc_and_cdis() -> Result<OwnedDiceArtifacts> {
+    let private_key_seed = derive_cdi_private_key_seed(UDS).map_err(|e| {
+        error!("In make_sample_bcc_and_cdis: Trying to derive private key seed. Error: {e}");
+        e
+    })?;
+
+    // Gets the root public key in DICE chain (BCC).
+    let (public_key, _) = keypair_from_seed(private_key_seed.as_array()).map_err(|e| {
+        error!("In make_sample_bcc_and_cids: Failed to generate key pair. Error: {e}");
+        e
+    })?;
+    let ed25519_public_key_value = ed25519_public_key_to_cbor_value(&public_key)?;
+
+    // Gets the ABL certificate to as the root certificate of DICE chain.
+    let config_values = DiceConfigValues {
+        component_name: Some(CStr::from_bytes_with_nul(b"ABL\0").unwrap()),
+        component_version: Some(1),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    let input_values = InputValues::new(
+        CODE_HASH_ABL,
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_ABL,
+        DiceMode::kDiceModeNormal,
+        HIDDEN_ABL,
+    );
+    let (cdi_values, cert) = retry_dice_main_flow(UDS, UDS, &input_values).map_err(|e| {
+        error!("In make_sample_bcc_and_cdis: Trying to run first main flow. Error: {e}");
+        e
+    })?;
+    let bcc_value = Value::Array(vec![
+        ed25519_public_key_value,
+        de::from_reader(&cert[..]).map_err(|e| {
+            error!("Deserialize root DICE certificate failed: {e}");
+            DiceError::InvalidInput
+        })?,
+    ]);
+    let mut bcc: Vec<u8> = vec![];
+    ser::into_writer(&bcc_value, &mut bcc).map_err(|e| {
+        error!("Serialize BCC failed: {e}");
+        DiceError::InvalidInput
+    })?;
+
+    // Appends AVB certificate to DICE chain.
+    let config_values = DiceConfigValues {
+        component_name: Some(CStr::from_bytes_with_nul(b"AVB\0").unwrap()),
+        component_version: Some(1),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    let input_values = InputValues::new(
+        CODE_HASH_AVB,
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_AVB,
+        DiceMode::kDiceModeNormal,
+        HIDDEN_AVB,
+    );
+    let dice_artifacts =
+        retry_bcc_main_flow(&cdi_values.cdi_attest, &cdi_values.cdi_seal, &bcc, &input_values)
+            .map_err(|e| {
+                error!(
+                    "In make_sample_bcc_and_cdis: Trying to run first bcc main flow. Error: {e}"
+                );
+                e
+            })?;
+
+    // Appends Android certificate to DICE chain.
+    let config_values = DiceConfigValues {
+        component_name: Some(CStr::from_bytes_with_nul(b"Android\0").unwrap()),
+        component_version: Some(12),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    let input_values = InputValues::new(
+        [0u8; HASH_SIZE], // code_hash
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_ANDROID,
+        DiceMode::kDiceModeNormal,
+        [0u8; HIDDEN_SIZE], // hidden
+    );
+    retry_bcc_main_flow(
+        dice_artifacts.cdi_attest(),
+        dice_artifacts.cdi_seal(),
+        dice_artifacts.bcc().ok_or_else(|| {
+            error!("bcc is none");
+            DiceError::InvalidInput
+        })?,
+        &input_values,
+    )
+    .map_err(|e| {
+        error!("In make_sample_bcc_and_cdis: Trying to run second bcc main flow. Error: {e}");
+        e
+    })
+}
diff --git a/libs/dice/sample_inputs/tests/api_test.rs b/libs/dice/sample_inputs/tests/api_test.rs
new file mode 100644
index 0000000..0823f16
--- /dev/null
+++ b/libs/dice/sample_inputs/tests/api_test.rs
@@ -0,0 +1,146 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+use anyhow::Result;
+use diced_open_dice::{derive_cdi_leaf_priv, sign, DiceArtifacts};
+use diced_sample_inputs::make_sample_bcc_and_cdis;
+use hwtrust::{dice, session::Session};
+
+const EXPECTED_SAMPLE_CDI_ATTEST: &[u8] = &[
+    0x3e, 0x57, 0x65, 0x5d, 0x48, 0x02, 0xbd, 0x5c, 0x66, 0xcc, 0x1f, 0x0f, 0xbe, 0x5e, 0x32, 0xb6,
+    0x9e, 0x3d, 0x04, 0xaf, 0x00, 0x15, 0xbc, 0xdd, 0x1f, 0xbc, 0x59, 0xe4, 0xc3, 0x87, 0x95, 0x5e,
+];
+
+const EXPECTED_SAMPLE_CDI_SEAL: &[u8] = &[
+    0x36, 0x1b, 0xd2, 0xb3, 0xc4, 0xda, 0x77, 0xb2, 0x9c, 0xba, 0x39, 0x53, 0x82, 0x93, 0xd9, 0xb8,
+    0x9f, 0x73, 0x2d, 0x27, 0x06, 0x15, 0xa8, 0xcb, 0x6d, 0x1d, 0xf2, 0xb1, 0x54, 0xbb, 0x62, 0xf1,
+];
+
+const EXPECTED_SAMPLE_BCC: &[u8] = &[
+    0x84, 0xa5, 0x01, 0x01, 0x03, 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0x3e, 0x85,
+    0xe5, 0x72, 0x75, 0x55, 0xe5, 0x1e, 0xe7, 0xf3, 0x35, 0x94, 0x8e, 0xbb, 0xbd, 0x74, 0x1e, 0x1d,
+    0xca, 0x49, 0x9c, 0x97, 0x39, 0x77, 0x06, 0xd3, 0xc8, 0x6e, 0x8b, 0xd7, 0x33, 0xf9, 0x84, 0x43,
+    0xa1, 0x01, 0x27, 0xa0, 0x59, 0x01, 0x8a, 0xa9, 0x01, 0x78, 0x28, 0x34, 0x32, 0x64, 0x38, 0x38,
+    0x36, 0x34, 0x66, 0x39, 0x37, 0x62, 0x36, 0x35, 0x34, 0x37, 0x61, 0x35, 0x30, 0x63, 0x31, 0x65,
+    0x30, 0x61, 0x37, 0x34, 0x39, 0x66, 0x38, 0x65, 0x66, 0x38, 0x62, 0x38, 0x31, 0x65, 0x63, 0x36,
+    0x32, 0x61, 0x66, 0x02, 0x78, 0x28, 0x31, 0x66, 0x36, 0x39, 0x36, 0x66, 0x30, 0x37, 0x32, 0x35,
+    0x32, 0x66, 0x32, 0x39, 0x65, 0x39, 0x33, 0x66, 0x65, 0x34, 0x64, 0x65, 0x31, 0x39, 0x65, 0x65,
+    0x33, 0x32, 0x63, 0x64, 0x38, 0x31, 0x64, 0x63, 0x34, 0x30, 0x34, 0x65, 0x37, 0x36, 0x3a, 0x00,
+    0x47, 0x44, 0x50, 0x58, 0x40, 0x16, 0x48, 0xf2, 0x55, 0x53, 0x23, 0xdd, 0x15, 0x2e, 0x83, 0x38,
+    0xc3, 0x64, 0x38, 0x63, 0x26, 0x0f, 0xcf, 0x5b, 0xd1, 0x3a, 0xd3, 0x40, 0x3e, 0x23, 0xf8, 0x34,
+    0x4c, 0x6d, 0xa2, 0xbe, 0x25, 0x1c, 0xb0, 0x29, 0xe8, 0xc3, 0xfb, 0xb8, 0x80, 0xdc, 0xb1, 0xd2,
+    0xb3, 0x91, 0x4d, 0xd3, 0xfb, 0x01, 0x0f, 0xe4, 0xe9, 0x46, 0xa2, 0xc0, 0x26, 0x57, 0x5a, 0xba,
+    0x30, 0xf7, 0x15, 0x98, 0x14, 0x3a, 0x00, 0x47, 0x44, 0x53, 0x56, 0xa3, 0x3a, 0x00, 0x01, 0x11,
+    0x71, 0x63, 0x41, 0x42, 0x4c, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x01, 0x3a, 0x00, 0x01, 0x11, 0x73,
+    0xf6, 0x3a, 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x47, 0xae, 0x42, 0x27, 0x4c, 0xcb, 0x65, 0x4d,
+    0xee, 0x74, 0x2d, 0x05, 0x78, 0x2a, 0x08, 0x2a, 0xa5, 0xf0, 0xcf, 0xea, 0x3e, 0x60, 0xee, 0x97,
+    0x11, 0x4b, 0x5b, 0xe6, 0x05, 0x0c, 0xe8, 0x90, 0xf5, 0x22, 0xc4, 0xc6, 0x67, 0x7a, 0x22, 0x27,
+    0x17, 0xb3, 0x79, 0xcc, 0x37, 0x64, 0x5e, 0x19, 0x4f, 0x96, 0x37, 0x67, 0x3c, 0xd0, 0xc5, 0xed,
+    0x0f, 0xdd, 0xe7, 0x2e, 0x4f, 0x70, 0x97, 0x30, 0x3a, 0x00, 0x47, 0x44, 0x54, 0x58, 0x40, 0xf9,
+    0x00, 0x9d, 0xc2, 0x59, 0x09, 0xe0, 0xb6, 0x98, 0xbd, 0xe3, 0x97, 0x4a, 0xcb, 0x3c, 0xe7, 0x6b,
+    0x24, 0xc3, 0xe4, 0x98, 0xdd, 0xa9, 0x6a, 0x41, 0x59, 0x15, 0xb1, 0x23, 0xe6, 0xc8, 0xdf, 0xfb,
+    0x52, 0xb4, 0x52, 0xc1, 0xb9, 0x61, 0xdd, 0xbc, 0x5b, 0x37, 0x0e, 0x12, 0x12, 0xb2, 0xfd, 0xc1,
+    0x09, 0xb0, 0xcf, 0x33, 0x81, 0x4c, 0xc6, 0x29, 0x1b, 0x99, 0xea, 0xae, 0xfd, 0xaa, 0x0d, 0x3a,
+    0x00, 0x47, 0x44, 0x56, 0x41, 0x01, 0x3a, 0x00, 0x47, 0x44, 0x57, 0x58, 0x2d, 0xa5, 0x01, 0x01,
+    0x03, 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0xb1, 0x02, 0xcc, 0x2c, 0xb2, 0x6a,
+    0x3b, 0xe9, 0xc1, 0xd3, 0x95, 0x10, 0xa0, 0xe1, 0xff, 0x51, 0xde, 0x57, 0xd5, 0x65, 0x28, 0xfd,
+    0x7f, 0xeb, 0xd4, 0xca, 0x15, 0xf3, 0xca, 0xdf, 0x37, 0x88, 0x3a, 0x00, 0x47, 0x44, 0x58, 0x41,
+    0x20, 0x58, 0x40, 0x58, 0xd8, 0x03, 0x24, 0x53, 0x60, 0x57, 0xa9, 0x09, 0xfa, 0xab, 0xdc, 0x57,
+    0x1e, 0xf0, 0xe5, 0x1e, 0x51, 0x6f, 0x9e, 0xa3, 0x42, 0xe6, 0x6a, 0x8c, 0xaa, 0xad, 0x08, 0x48,
+    0xde, 0x7f, 0x4f, 0x6e, 0x2f, 0x7f, 0x39, 0x6c, 0xa1, 0xf8, 0x42, 0x71, 0xfe, 0x17, 0x3d, 0xca,
+    0x31, 0x83, 0x92, 0xed, 0xbb, 0x40, 0xb8, 0x10, 0xe0, 0xf2, 0x5a, 0x99, 0x53, 0x38, 0x46, 0x33,
+    0x97, 0x78, 0x05, 0x84, 0x43, 0xa1, 0x01, 0x27, 0xa0, 0x59, 0x01, 0x8a, 0xa9, 0x01, 0x78, 0x28,
+    0x31, 0x66, 0x36, 0x39, 0x36, 0x66, 0x30, 0x37, 0x32, 0x35, 0x32, 0x66, 0x32, 0x39, 0x65, 0x39,
+    0x33, 0x66, 0x65, 0x34, 0x64, 0x65, 0x31, 0x39, 0x65, 0x65, 0x33, 0x32, 0x63, 0x64, 0x38, 0x31,
+    0x64, 0x63, 0x34, 0x30, 0x34, 0x65, 0x37, 0x36, 0x02, 0x78, 0x28, 0x32, 0x35, 0x39, 0x34, 0x38,
+    0x39, 0x65, 0x36, 0x39, 0x37, 0x34, 0x38, 0x37, 0x30, 0x35, 0x64, 0x65, 0x33, 0x65, 0x32, 0x66,
+    0x34, 0x34, 0x32, 0x36, 0x37, 0x65, 0x61, 0x34, 0x39, 0x33, 0x38, 0x66, 0x66, 0x36, 0x61, 0x35,
+    0x37, 0x32, 0x35, 0x3a, 0x00, 0x47, 0x44, 0x50, 0x58, 0x40, 0xa4, 0x0c, 0xcb, 0xc1, 0xbf, 0xfa,
+    0xcc, 0xfd, 0xeb, 0xf4, 0xfc, 0x43, 0x83, 0x7f, 0x46, 0x8d, 0xd8, 0xd8, 0x14, 0xc1, 0x96, 0x14,
+    0x1f, 0x6e, 0xb3, 0xa0, 0xd9, 0x56, 0xb3, 0xbf, 0x2f, 0xfa, 0x88, 0x70, 0x11, 0x07, 0x39, 0xa4,
+    0xd2, 0xa9, 0x6b, 0x18, 0x28, 0xe8, 0x29, 0x20, 0x49, 0x0f, 0xbb, 0x8d, 0x08, 0x8c, 0xc6, 0x54,
+    0xe9, 0x71, 0xd2, 0x7e, 0xa4, 0xfe, 0x58, 0x7f, 0xd3, 0xc7, 0x3a, 0x00, 0x47, 0x44, 0x53, 0x56,
+    0xa3, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x63, 0x41, 0x56, 0x42, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x01,
+    0x3a, 0x00, 0x01, 0x11, 0x73, 0xf6, 0x3a, 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x93, 0x17, 0xe1,
+    0x11, 0x27, 0x59, 0xd0, 0xef, 0x75, 0x0b, 0x2b, 0x1c, 0x0f, 0x5f, 0x52, 0xc3, 0x29, 0x23, 0xb5,
+    0x2a, 0xe6, 0x12, 0x72, 0x6f, 0x39, 0x86, 0x65, 0x2d, 0xf2, 0xe4, 0xe7, 0xd0, 0xaf, 0x0e, 0xa7,
+    0x99, 0x16, 0x89, 0x97, 0x21, 0xf7, 0xdc, 0x89, 0xdc, 0xde, 0xbb, 0x94, 0x88, 0x1f, 0xda, 0xe2,
+    0xf3, 0xe0, 0x54, 0xf9, 0x0e, 0x29, 0xb1, 0xbd, 0xe1, 0x0c, 0x0b, 0xd7, 0xf6, 0x3a, 0x00, 0x47,
+    0x44, 0x54, 0x58, 0x40, 0xb2, 0x69, 0x05, 0x48, 0x56, 0xb5, 0xfa, 0x55, 0x6f, 0xac, 0x56, 0xd9,
+    0x02, 0x35, 0x2b, 0xaa, 0x4c, 0xba, 0x28, 0xdd, 0x82, 0x3a, 0x86, 0xf5, 0xd4, 0xc2, 0xf1, 0xf9,
+    0x35, 0x7d, 0xe4, 0x43, 0x13, 0xbf, 0xfe, 0xd3, 0x36, 0xd8, 0x1c, 0x12, 0x78, 0x5c, 0x9c, 0x3e,
+    0xf6, 0x66, 0xef, 0xab, 0x3d, 0x0f, 0x89, 0xa4, 0x6f, 0xc9, 0x72, 0xee, 0x73, 0x43, 0x02, 0x8a,
+    0xef, 0xbc, 0x05, 0x98, 0x3a, 0x00, 0x47, 0x44, 0x56, 0x41, 0x01, 0x3a, 0x00, 0x47, 0x44, 0x57,
+    0x58, 0x2d, 0xa5, 0x01, 0x01, 0x03, 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0x96,
+    0x6d, 0x96, 0x42, 0xda, 0x64, 0x51, 0xad, 0xfa, 0x00, 0xbc, 0xbc, 0x95, 0x8a, 0xb0, 0xb9, 0x76,
+    0x01, 0xe6, 0xbd, 0xc0, 0x26, 0x79, 0x26, 0xfc, 0x0f, 0x1d, 0x87, 0x65, 0xf1, 0xf3, 0x99, 0x3a,
+    0x00, 0x47, 0x44, 0x58, 0x41, 0x20, 0x58, 0x40, 0x10, 0x7f, 0x77, 0xad, 0x70, 0xbd, 0x52, 0x81,
+    0x28, 0x8d, 0x24, 0x81, 0xb4, 0x3f, 0x21, 0x68, 0x9f, 0xc3, 0x80, 0x68, 0x86, 0x55, 0xfb, 0x2e,
+    0x6d, 0x96, 0xe1, 0xe1, 0xb7, 0x28, 0x8d, 0x63, 0x85, 0xba, 0x2a, 0x01, 0x33, 0x87, 0x60, 0x63,
+    0xbb, 0x16, 0x3f, 0x2f, 0x3d, 0xf4, 0x2d, 0x48, 0x5b, 0x87, 0xed, 0xda, 0x34, 0xeb, 0x9c, 0x4d,
+    0x14, 0xac, 0x65, 0xf4, 0xfa, 0xef, 0x45, 0x0b, 0x84, 0x43, 0xa1, 0x01, 0x27, 0xa0, 0x59, 0x01,
+    0x8f, 0xa9, 0x01, 0x78, 0x28, 0x32, 0x35, 0x39, 0x34, 0x38, 0x39, 0x65, 0x36, 0x39, 0x37, 0x34,
+    0x38, 0x37, 0x30, 0x35, 0x64, 0x65, 0x33, 0x65, 0x32, 0x66, 0x34, 0x34, 0x32, 0x36, 0x37, 0x65,
+    0x61, 0x34, 0x39, 0x33, 0x38, 0x66, 0x66, 0x36, 0x61, 0x35, 0x37, 0x32, 0x35, 0x02, 0x78, 0x28,
+    0x35, 0x64, 0x34, 0x65, 0x64, 0x37, 0x66, 0x34, 0x31, 0x37, 0x61, 0x39, 0x35, 0x34, 0x61, 0x31,
+    0x38, 0x31, 0x34, 0x30, 0x37, 0x62, 0x35, 0x38, 0x38, 0x35, 0x61, 0x66, 0x64, 0x37, 0x32, 0x61,
+    0x35, 0x62, 0x66, 0x34, 0x30, 0x64, 0x61, 0x36, 0x3a, 0x00, 0x47, 0x44, 0x50, 0x58, 0x40, 0x00,
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a,
+    0x00, 0x47, 0x44, 0x53, 0x58, 0x1a, 0xa3, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x67, 0x41, 0x6e, 0x64,
+    0x72, 0x6f, 0x69, 0x64, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x0c, 0x3a, 0x00, 0x01, 0x11, 0x73, 0xf6,
+    0x3a, 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x26, 0x1a, 0xbd, 0x26, 0xd8, 0x37, 0x8f, 0x4a, 0xf2,
+    0x9e, 0x49, 0x4d, 0x93, 0x23, 0xc4, 0x6e, 0x02, 0xda, 0xe0, 0x00, 0x02, 0xe7, 0xed, 0x29, 0xdf,
+    0x2b, 0xb3, 0x69, 0xf3, 0x55, 0x0e, 0x4c, 0x22, 0xdc, 0xcf, 0xf5, 0x92, 0xc9, 0xfa, 0x78, 0x98,
+    0xf1, 0x0e, 0x55, 0x5f, 0xf4, 0x45, 0xed, 0xc0, 0x0a, 0x72, 0x2a, 0x7a, 0x3a, 0xd2, 0xb1, 0xf7,
+    0x76, 0xfe, 0x2a, 0x6b, 0x7b, 0x2a, 0x53, 0x3a, 0x00, 0x47, 0x44, 0x54, 0x58, 0x40, 0x04, 0x25,
+    0x5d, 0x60, 0x5f, 0x5c, 0x45, 0x0d, 0xf2, 0x9a, 0x6e, 0x99, 0x30, 0x03, 0xb8, 0xd6, 0xe1, 0x99,
+    0x71, 0x1b, 0xf8, 0x44, 0xfa, 0xb5, 0x31, 0x79, 0x1c, 0x37, 0x68, 0x4e, 0x1d, 0xc0, 0x24, 0x74,
+    0x68, 0xf8, 0x80, 0x20, 0x3e, 0x44, 0xb1, 0x43, 0xd2, 0x9c, 0xfc, 0x12, 0x9e, 0x77, 0x0a, 0xde,
+    0x29, 0x24, 0xff, 0x2e, 0xfa, 0xc7, 0x10, 0xd5, 0x73, 0xd4, 0xc6, 0xdf, 0x62, 0x9f, 0x3a, 0x00,
+    0x47, 0x44, 0x56, 0x41, 0x01, 0x3a, 0x00, 0x47, 0x44, 0x57, 0x58, 0x2d, 0xa5, 0x01, 0x01, 0x03,
+    0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0xdb, 0xe7, 0x5b, 0x3f, 0xa3, 0x42, 0xb0,
+    0x9c, 0xf8, 0x40, 0x8c, 0xb0, 0x9c, 0xf0, 0x0a, 0xaf, 0xdf, 0x6f, 0xe5, 0x09, 0x21, 0x11, 0x92,
+    0xe1, 0xf8, 0xc5, 0x09, 0x02, 0x3d, 0x1f, 0xb7, 0xc5, 0x3a, 0x00, 0x47, 0x44, 0x58, 0x41, 0x20,
+    0x58, 0x40, 0xc4, 0xc1, 0xd7, 0x1c, 0x2d, 0x26, 0x89, 0x22, 0xcf, 0xa6, 0x99, 0x77, 0x30, 0x84,
+    0x86, 0x27, 0x59, 0x8f, 0xd8, 0x08, 0x75, 0xe0, 0xb2, 0xef, 0xf9, 0xfa, 0xa5, 0x40, 0x8c, 0xd3,
+    0xeb, 0xbb, 0xda, 0xf2, 0xc8, 0xae, 0x41, 0x22, 0x50, 0x9c, 0xe8, 0xb2, 0x9c, 0x9b, 0x3f, 0x8a,
+    0x78, 0x76, 0xab, 0xd0, 0xbe, 0xfc, 0xe4, 0x79, 0xcb, 0x1b, 0x2b, 0xaa, 0x4d, 0xdd, 0x15, 0x61,
+    0x42, 0x06,
+];
+const MESSAGE: &[u8] = b"Message for testing";
+
+#[test]
+fn sample_bcc_and_cdis_are_as_expected() {
+    let dice_artifacts = make_sample_bcc_and_cdis().unwrap();
+    assert_eq!(dice_artifacts.cdi_attest(), EXPECTED_SAMPLE_CDI_ATTEST);
+    assert_eq!(dice_artifacts.cdi_seal(), EXPECTED_SAMPLE_CDI_SEAL);
+    assert_eq!(dice_artifacts.bcc(), Some(EXPECTED_SAMPLE_BCC));
+}
+
+#[test]
+fn cdi_leaf_priv_corresponds_to_leaf_public_key_in_dice_chain() -> Result<()> {
+    let dice_artifacts = make_sample_bcc_and_cdis().unwrap();
+    let private_key = derive_cdi_leaf_priv(&dice_artifacts).unwrap();
+    let signature = sign(MESSAGE, private_key.as_array()).unwrap();
+
+    let session = Session::default();
+    let chain = dice::Chain::from_cbor(&session, dice_artifacts.bcc().unwrap())?;
+    let public_key = chain.leaf().subject_public_key();
+    public_key.verify(&signature, MESSAGE)
+}
diff --git a/libs/fdtpci/Android.bp b/libs/fdtpci/Android.bp
index f368b08..e12c24f 100644
--- a/libs/fdtpci/Android.bp
+++ b/libs/fdtpci/Android.bp
@@ -8,6 +8,7 @@
     no_stdlibs: true,
     host_supported: false,
     crate_name: "fdtpci",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     rustlibs: [
         "liblibfdt",
diff --git a/libs/fdtpci/TEST_MAPPING b/libs/fdtpci/TEST_MAPPING
index c315b4a..192a7c6 100644
--- a/libs/fdtpci/TEST_MAPPING
+++ b/libs/fdtpci/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/libs/fdtpci/src/lib.rs b/libs/fdtpci/src/lib.rs
index 96d98d6..602f736 100644
--- a/libs/fdtpci/src/lib.rs
+++ b/libs/fdtpci/src/lib.rs
@@ -119,7 +119,9 @@
     /// method must only be called once, and there must be no other `PciRoot` constructed using the
     /// same CAM.
     pub unsafe fn make_pci_root(&self) -> PciRoot {
-        PciRoot::new(self.cam_range.start as *mut u8, Cam::MmioCam)
+        // SAFETY: We trust that the FDT gave us a valid MMIO base address for the CAM. The caller
+        // guarantees to only call us once, so there are no other references to it.
+        unsafe { PciRoot::new(self.cam_range.start as *mut u8, Cam::MmioCam) }
     }
 }
 
diff --git a/libs/hyp/Android.bp b/libs/hyp/Android.bp
index 1d572e5..404269a 100644
--- a/libs/hyp/Android.bp
+++ b/libs/hyp/Android.bp
@@ -5,17 +5,23 @@
 rust_library_rlib {
     name: "libhyp",
     crate_name: "hyp",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     prefer_rlib: true,
     rustlibs: [
-        "libbitflags",
         "libonce_cell_nostd",
-        "libpsci",
+        "libsmccc",
         "libuuid_nostd",
     ],
     no_stdlibs: true,
     stdlibs: [
         "libcore.rust_sysroot",
     ],
+    enabled: false,
+    target: {
+        android_arm64: {
+            enabled: true,
+        },
+    },
     apex_available: ["com.android.virt"],
 }
diff --git a/libs/hyp/src/error.rs b/libs/hyp/src/error.rs
index 408150e..3fdad70 100644
--- a/libs/hyp/src/error.rs
+++ b/libs/hyp/src/error.rs
@@ -14,6 +14,7 @@
 
 //! Error and Result types for hypervisor.
 
+use crate::GeniezoneError;
 use crate::KvmError;
 use core::{fmt, result};
 use uuid::Uuid;
@@ -25,10 +26,12 @@
 #[derive(Debug, Clone)]
 pub enum Error {
     /// MMIO guard is not supported.
-    MmioGuardNotsupported,
+    MmioGuardNotSupported,
     /// Failed to invoke a certain KVM HVC function.
     KvmError(KvmError, u32),
-    /// Unsupported Hypervisor.
+    /// Failed to invoke GenieZone HVC function.
+    GeniezoneError(GeniezoneError, u32),
+    /// Unsupported Hypervisor
     UnsupportedHypervisorUuid(Uuid),
     /// The MMIO_GUARD granule used by the hypervisor is not supported.
     UnsupportedMmioGuardGranule(usize),
@@ -37,10 +40,16 @@
 impl fmt::Display for Error {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         match self {
-            Self::MmioGuardNotsupported => write!(f, "MMIO guard is not supported"),
+            Self::MmioGuardNotSupported => write!(f, "MMIO guard is not supported"),
             Self::KvmError(e, function_id) => {
                 write!(f, "Failed to invoke the HVC function with function ID {function_id}: {e}")
             }
+            Self::GeniezoneError(e, function_id) => {
+                write!(
+                    f,
+                    "Failed to invoke GenieZone HVC function with function ID {function_id}: {e}"
+                )
+            }
             Self::UnsupportedHypervisorUuid(u) => {
                 write!(f, "Unsupported Hypervisor UUID {u}")
             }
diff --git a/libs/hyp/src/hypervisor.rs b/libs/hyp/src/hypervisor.rs
new file mode 100644
index 0000000..c53b886
--- /dev/null
+++ b/libs/hyp/src/hypervisor.rs
@@ -0,0 +1,131 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers around hypervisor back-ends.
+
+extern crate alloc;
+
+mod common;
+mod geniezone;
+mod gunyah;
+mod kvm;
+
+use crate::error::{Error, Result};
+use alloc::boxed::Box;
+use common::Hypervisor;
+pub use common::{
+    DeviceAssigningHypervisor, MemSharingHypervisor, MmioGuardedHypervisor, MMIO_GUARD_GRANULE_SIZE,
+};
+pub use geniezone::GeniezoneError;
+use geniezone::GeniezoneHypervisor;
+use gunyah::GunyahHypervisor;
+pub use kvm::KvmError;
+use kvm::{ProtectedKvmHypervisor, RegularKvmHypervisor};
+use once_cell::race::OnceBox;
+use smccc::hvc64;
+use uuid::Uuid;
+
+enum HypervisorBackend {
+    RegularKvm,
+    Gunyah,
+    Geniezone,
+    ProtectedKvm,
+}
+
+impl HypervisorBackend {
+    fn get_hypervisor(&self) -> &'static dyn Hypervisor {
+        match self {
+            Self::RegularKvm => &RegularKvmHypervisor,
+            Self::Gunyah => &GunyahHypervisor,
+            Self::Geniezone => &GeniezoneHypervisor,
+            Self::ProtectedKvm => &ProtectedKvmHypervisor,
+        }
+    }
+}
+
+impl TryFrom<Uuid> for HypervisorBackend {
+    type Error = Error;
+
+    fn try_from(uuid: Uuid) -> Result<HypervisorBackend> {
+        match uuid {
+            GeniezoneHypervisor::UUID => Ok(HypervisorBackend::Geniezone),
+            GunyahHypervisor::UUID => Ok(HypervisorBackend::Gunyah),
+            RegularKvmHypervisor::UUID => {
+                // Protected KVM has the same UUID as "regular" KVM so issue an HVC that is assumed
+                // to only be supported by pKVM: if it returns SUCCESS, deduce that this is pKVM
+                // and if it returns NOT_SUPPORTED assume that it is "regular" KVM.
+                match ProtectedKvmHypervisor.as_mmio_guard().unwrap().granule() {
+                    Ok(_) => Ok(HypervisorBackend::ProtectedKvm),
+                    Err(Error::KvmError(KvmError::NotSupported, _)) => {
+                        Ok(HypervisorBackend::RegularKvm)
+                    }
+                    Err(e) => Err(e),
+                }
+            }
+            u => Err(Error::UnsupportedHypervisorUuid(u)),
+        }
+    }
+}
+
+const ARM_SMCCC_VENDOR_HYP_CALL_UID_FUNC_ID: u32 = 0x8600ff01;
+
+fn query_vendor_hyp_call_uid() -> Uuid {
+    let args = [0u64; 17];
+    let res = hvc64(ARM_SMCCC_VENDOR_HYP_CALL_UID_FUNC_ID, args);
+
+    // KVM's UUID of "28b46fb6-2ec5-11e9-a9ca-4b564d003a74" is generated by
+    // Uuid::from_u128() from an input value of
+    // 0x28b46fb6_2ec511e9_a9ca4b56_4d003a74. ARM's SMC calling convention
+    // (Document number ARM DEN 0028E) describes the UUID register mapping such
+    // that W0 contains bytes 0..3 of UUID, with byte 0 in lower order bits. In
+    // the KVM example, byte 0 of KVM's UUID (0x28) will be returned in the low
+    // 8-bits of W0, while byte 15 (0x74) will be returned in bits 31-24 of W3.
+    //
+    // `uuid` value derived below thus need to be byte-reversed before
+    // being used in Uuid::from_u128(). Alternately use Uuid::from_u128_le()
+    // to achieve the same.
+
+    let uuid = ((res[3] as u32 as u128) << 96)
+        | ((res[2] as u32 as u128) << 64)
+        | ((res[1] as u32 as u128) << 32)
+        | (res[0] as u32 as u128);
+
+    Uuid::from_u128_le(uuid)
+}
+
+fn detect_hypervisor() -> HypervisorBackend {
+    query_vendor_hyp_call_uid().try_into().expect("Failed to detect hypervisor")
+}
+
+/// Gets the hypervisor singleton.
+fn get_hypervisor() -> &'static dyn Hypervisor {
+    static HYPERVISOR: OnceBox<HypervisorBackend> = OnceBox::new();
+
+    HYPERVISOR.get_or_init(|| Box::new(detect_hypervisor())).get_hypervisor()
+}
+
+/// Gets the MMIO_GUARD hypervisor singleton, if any.
+pub fn get_mmio_guard() -> Option<&'static dyn MmioGuardedHypervisor> {
+    get_hypervisor().as_mmio_guard()
+}
+
+/// Gets the dynamic memory sharing hypervisor singleton, if any.
+pub fn get_mem_sharer() -> Option<&'static dyn MemSharingHypervisor> {
+    get_hypervisor().as_mem_sharer()
+}
+
+/// Gets the device assigning hypervisor singleton, if any.
+pub fn get_device_assigner() -> Option<&'static dyn DeviceAssigningHypervisor> {
+    get_hypervisor().as_device_assigner()
+}
diff --git a/libs/hyp/src/hypervisor/common.rs b/libs/hyp/src/hypervisor/common.rs
index accef72..eaac652 100644
--- a/libs/hyp/src/hypervisor/common.rs
+++ b/libs/hyp/src/hypervisor/common.rs
@@ -14,45 +14,76 @@
 
 //! This module regroups some common traits shared by all the hypervisors.
 
-use crate::error::Result;
-use bitflags::bitflags;
+use crate::error::{Error, Result};
+use crate::util::SIZE_4KB;
 
-bitflags! {
-    /// Capabilities that Hypervisor backends can declare support for.
-    pub struct HypervisorCap: u32 {
-        /// Capability for guest to share its memory with host at runtime.
-        const DYNAMIC_MEM_SHARE = 0b1;
-    }
-}
+/// Expected MMIO guard granule size, validated during MMIO guard initialization.
+pub const MMIO_GUARD_GRANULE_SIZE: usize = SIZE_4KB;
 
 /// Trait for the hypervisor.
 pub trait Hypervisor {
-    /// Initializes the hypervisor by enrolling a MMIO guard and checking the memory granule size.
-    /// By enrolling, all MMIO will be blocked unless allow-listed with `mmio_guard_map`.
-    /// Protected VMs are auto-enrolled.
-    fn mmio_guard_init(&self) -> Result<()>;
+    /// Returns the hypervisor's MMIO_GUARD implementation, if any.
+    fn as_mmio_guard(&self) -> Option<&dyn MmioGuardedHypervisor> {
+        None
+    }
+
+    /// Returns the hypervisor's dynamic memory sharing implementation, if any.
+    fn as_mem_sharer(&self) -> Option<&dyn MemSharingHypervisor> {
+        None
+    }
+
+    /// Returns the hypervisor's device assigning implementation, if any.
+    fn as_device_assigner(&self) -> Option<&dyn DeviceAssigningHypervisor> {
+        None
+    }
+}
+
+pub trait MmioGuardedHypervisor {
+    /// Enrolls with the MMIO guard so that all MMIO will be blocked unless allow-listed with
+    /// `MmioGuardedHypervisor::map`.
+    fn enroll(&self) -> Result<()>;
 
     /// Maps a page containing the given memory address to the hypervisor MMIO guard.
     /// The page size corresponds to the MMIO guard granule size.
-    fn mmio_guard_map(&self, addr: usize) -> Result<()>;
+    fn map(&self, addr: usize) -> Result<()>;
 
     /// Unmaps a page containing the given memory address from the hypervisor MMIO guard.
     /// The page size corresponds to the MMIO guard granule size.
-    fn mmio_guard_unmap(&self, addr: usize) -> Result<()>;
+    fn unmap(&self, addr: usize) -> Result<()>;
 
+    /// Returns the MMIO guard granule size in bytes.
+    fn granule(&self) -> Result<usize>;
+
+    // TODO(ptosi): Fully move granule validation to client code.
+    /// Validates the MMIO guard granule size.
+    fn validate_granule(&self) -> Result<()> {
+        match self.granule()? {
+            MMIO_GUARD_GRANULE_SIZE => Ok(()),
+            granule => Err(Error::UnsupportedMmioGuardGranule(granule)),
+        }
+    }
+}
+
+pub trait MemSharingHypervisor {
     /// Shares a region of memory with host, granting it read, write and execute permissions.
     /// The size of the region is equal to the memory protection granule returned by
     /// [`hyp_meminfo`].
-    fn mem_share(&self, base_ipa: u64) -> Result<()>;
+    fn share(&self, base_ipa: u64) -> Result<()>;
 
     /// Revokes access permission from host to a memory region previously shared with
     /// [`mem_share`]. The size of the region is equal to the memory protection granule returned by
     /// [`hyp_meminfo`].
-    fn mem_unshare(&self, base_ipa: u64) -> Result<()>;
+    fn unshare(&self, base_ipa: u64) -> Result<()>;
 
     /// Returns the memory protection granule size in bytes.
-    fn memory_protection_granule(&self) -> Result<usize>;
+    fn granule(&self) -> Result<usize>;
+}
 
-    /// Check if required capabilities are supported.
-    fn has_cap(&self, cap: HypervisorCap) -> bool;
+/// Device assigning hypervisor
+pub trait DeviceAssigningHypervisor {
+    /// Returns MMIO token.
+    fn get_phys_mmio_token(&self, base_ipa: u64, size: u64) -> Result<u64>;
+
+    /// Returns DMA token as a tuple of (phys_iommu_id, phys_sid).
+    fn get_phys_iommu_token(&self, pviommu_id: u64, vsid: u64) -> Result<(u64, u64)>;
 }
diff --git a/libs/hyp/src/hypervisor/geniezone.rs b/libs/hyp/src/hypervisor/geniezone.rs
new file mode 100644
index 0000000..ad18e17
--- /dev/null
+++ b/libs/hyp/src/hypervisor/geniezone.rs
@@ -0,0 +1,157 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers around calls to the GenieZone hypervisor.
+
+use super::common::{Hypervisor, MemSharingHypervisor, MmioGuardedHypervisor};
+use crate::error::{Error, Result};
+use crate::util::page_address;
+use core::fmt::{self, Display, Formatter};
+use smccc::{
+    error::{positive_or_error_64, success_or_error_64},
+    hvc64,
+};
+use uuid::{uuid, Uuid};
+
+pub(super) struct GeniezoneHypervisor;
+
+const ARM_SMCCC_GZVM_FUNC_HYP_MEMINFO: u32 = 0xc6000002;
+const ARM_SMCCC_GZVM_FUNC_MEM_SHARE: u32 = 0xc6000003;
+const ARM_SMCCC_GZVM_FUNC_MEM_UNSHARE: u32 = 0xc6000004;
+
+const VENDOR_HYP_GZVM_MMIO_GUARD_INFO_FUNC_ID: u32 = 0xc6000005;
+const VENDOR_HYP_GZVM_MMIO_GUARD_ENROLL_FUNC_ID: u32 = 0xc6000006;
+const VENDOR_HYP_GZVM_MMIO_GUARD_MAP_FUNC_ID: u32 = 0xc6000007;
+const VENDOR_HYP_GZVM_MMIO_GUARD_UNMAP_FUNC_ID: u32 = 0xc6000008;
+
+impl GeniezoneHypervisor {
+    // We generate this uuid by ourselves to identify GenieZone hypervisor
+    // and share the same identification along with guest VMs.
+    // The previous uuid was removed due to duplication elsewhere.
+    pub const UUID: Uuid = uuid!("7e134ed0-3b82-488d-8cee-69c19211dbe7");
+}
+
+/// Error from a GenieZone HVC call.
+#[derive(Copy, Clone, Debug, Eq, PartialEq)]
+pub enum GeniezoneError {
+    /// The call is not supported by the implementation.
+    NotSupported,
+    /// The call is not required to implement.
+    NotRequired,
+    /// One of the call parameters has a invalid value.
+    InvalidParameter,
+    /// There was an unexpected return value.
+    Unknown(i64),
+}
+
+impl From<i64> for GeniezoneError {
+    fn from(value: i64) -> Self {
+        match value {
+            -1 => GeniezoneError::NotSupported,
+            -2 => GeniezoneError::NotRequired,
+            -3 => GeniezoneError::InvalidParameter,
+            _ => GeniezoneError::Unknown(value),
+        }
+    }
+}
+
+impl From<i32> for GeniezoneError {
+    fn from(value: i32) -> Self {
+        i64::from(value).into()
+    }
+}
+
+impl Display for GeniezoneError {
+    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
+        match self {
+            Self::NotSupported => write!(f, "GenieZone call not supported"),
+            Self::NotRequired => write!(f, "GenieZone call not required"),
+            Self::InvalidParameter => write!(f, "GenieZone call received invalid value"),
+            Self::Unknown(e) => write!(f, "Unknown return value from GenieZone {} ({0:#x})", e),
+        }
+    }
+}
+
+impl Hypervisor for GeniezoneHypervisor {
+    fn as_mmio_guard(&self) -> Option<&dyn MmioGuardedHypervisor> {
+        Some(self)
+    }
+
+    fn as_mem_sharer(&self) -> Option<&dyn MemSharingHypervisor> {
+        Some(self)
+    }
+}
+
+impl MmioGuardedHypervisor for GeniezoneHypervisor {
+    fn enroll(&self) -> Result<()> {
+        let args = [0u64; 17];
+        match success_or_error_64(hvc64(VENDOR_HYP_GZVM_MMIO_GUARD_ENROLL_FUNC_ID, args)[0]) {
+            Ok(()) => Ok(()),
+            Err(GeniezoneError::NotSupported) | Err(GeniezoneError::NotRequired) => {
+                Err(Error::MmioGuardNotSupported)
+            }
+            Err(e) => Err(Error::GeniezoneError(e, VENDOR_HYP_GZVM_MMIO_GUARD_ENROLL_FUNC_ID)),
+        }
+    }
+
+    fn map(&self, addr: usize) -> Result<()> {
+        let mut args = [0u64; 17];
+        args[0] = page_address(addr);
+
+        checked_hvc64_expect_zero(VENDOR_HYP_GZVM_MMIO_GUARD_MAP_FUNC_ID, args)
+    }
+
+    fn unmap(&self, addr: usize) -> Result<()> {
+        let mut args = [0u64; 17];
+        args[0] = page_address(addr);
+
+        checked_hvc64_expect_zero(VENDOR_HYP_GZVM_MMIO_GUARD_UNMAP_FUNC_ID, args)
+    }
+
+    fn granule(&self) -> Result<usize> {
+        let args = [0u64; 17];
+        let granule = checked_hvc64(VENDOR_HYP_GZVM_MMIO_GUARD_INFO_FUNC_ID, args)?;
+        Ok(granule.try_into().unwrap())
+    }
+}
+
+impl MemSharingHypervisor for GeniezoneHypervisor {
+    fn share(&self, base_ipa: u64) -> Result<()> {
+        let mut args = [0u64; 17];
+        args[0] = base_ipa;
+
+        checked_hvc64_expect_zero(ARM_SMCCC_GZVM_FUNC_MEM_SHARE, args)
+    }
+
+    fn unshare(&self, base_ipa: u64) -> Result<()> {
+        let mut args = [0u64; 17];
+        args[0] = base_ipa;
+
+        checked_hvc64_expect_zero(ARM_SMCCC_GZVM_FUNC_MEM_UNSHARE, args)
+    }
+
+    fn granule(&self) -> Result<usize> {
+        let args = [0u64; 17];
+        let granule = checked_hvc64(ARM_SMCCC_GZVM_FUNC_HYP_MEMINFO, args)?;
+        Ok(granule.try_into().unwrap())
+    }
+}
+
+fn checked_hvc64_expect_zero(function: u32, args: [u64; 17]) -> Result<()> {
+    success_or_error_64(hvc64(function, args)[0]).map_err(|e| Error::GeniezoneError(e, function))
+}
+
+fn checked_hvc64(function: u32, args: [u64; 17]) -> Result<u64> {
+    positive_or_error_64(hvc64(function, args)[0]).map_err(|e| Error::GeniezoneError(e, function))
+}
diff --git a/libs/hyp/src/hypervisor/gunyah.rs b/libs/hyp/src/hypervisor/gunyah.rs
index b335c87..45c01bf 100644
--- a/libs/hyp/src/hypervisor/gunyah.rs
+++ b/libs/hyp/src/hypervisor/gunyah.rs
@@ -1,6 +1,4 @@
-use super::common::{Hypervisor, HypervisorCap};
-use crate::error::Result;
-use crate::util::SIZE_4KB;
+use super::common::Hypervisor;
 use uuid::{uuid, Uuid};
 
 pub(super) struct GunyahHypervisor;
@@ -9,32 +7,4 @@
     pub const UUID: Uuid = uuid!("c1d58fcd-a453-5fdb-9265-ce36673d5f14");
 }
 
-impl Hypervisor for GunyahHypervisor {
-    fn mmio_guard_init(&self) -> Result<()> {
-        Ok(())
-    }
-
-    fn mmio_guard_map(&self, _addr: usize) -> Result<()> {
-        Ok(())
-    }
-
-    fn mmio_guard_unmap(&self, _addr: usize) -> Result<()> {
-        Ok(())
-    }
-
-    fn mem_share(&self, _base_ipa: u64) -> Result<()> {
-        unimplemented!();
-    }
-
-    fn mem_unshare(&self, _base_ipa: u64) -> Result<()> {
-        unimplemented!();
-    }
-
-    fn memory_protection_granule(&self) -> Result<usize> {
-        Ok(SIZE_4KB)
-    }
-
-    fn has_cap(&self, _cap: HypervisorCap) -> bool {
-        false
-    }
-}
+impl Hypervisor for GunyahHypervisor {}
diff --git a/libs/hyp/src/hypervisor/kvm.rs b/libs/hyp/src/hypervisor/kvm.rs
index 772160e..720318e 100644
--- a/libs/hyp/src/hypervisor/kvm.rs
+++ b/libs/hyp/src/hypervisor/kvm.rs
@@ -14,11 +14,13 @@
 
 //! Wrappers around calls to the KVM hypervisor.
 
-use super::common::{Hypervisor, HypervisorCap};
+use super::common::{
+    DeviceAssigningHypervisor, Hypervisor, MemSharingHypervisor, MmioGuardedHypervisor,
+};
 use crate::error::{Error, Result};
-use crate::util::{page_address, SIZE_4KB};
+use crate::util::page_address;
 use core::fmt::{self, Display, Formatter};
-use psci::smccc::{
+use smccc::{
     error::{positive_or_error_64, success_or_error_32, success_or_error_64},
     hvc64,
 };
@@ -70,26 +72,46 @@
 const VENDOR_HYP_KVM_MMIO_GUARD_MAP_FUNC_ID: u32 = 0xc6000007;
 const VENDOR_HYP_KVM_MMIO_GUARD_UNMAP_FUNC_ID: u32 = 0xc6000008;
 
-pub(super) struct KvmHypervisor;
+const VENDOR_HYP_KVM_DEV_REQ_MMIO_FUNC_ID: u32 = 0xc6000012;
+const VENDOR_HYP_KVM_DEV_REQ_DMA_FUNC_ID: u32 = 0xc6000013;
 
-impl KvmHypervisor {
+pub(super) struct RegularKvmHypervisor;
+
+impl RegularKvmHypervisor {
     // Based on ARM_SMCCC_VENDOR_HYP_UID_KVM_REG values listed in Linux kernel source:
     // https://github.com/torvalds/linux/blob/master/include/linux/arm-smccc.h
     pub(super) const UUID: Uuid = uuid!("28b46fb6-2ec5-11e9-a9ca-4b564d003a74");
-    const CAPABILITIES: HypervisorCap = HypervisorCap::DYNAMIC_MEM_SHARE;
 }
 
-impl Hypervisor for KvmHypervisor {
-    fn mmio_guard_init(&self) -> Result<()> {
-        mmio_guard_enroll()?;
-        let mmio_granule = mmio_guard_granule()?;
-        if mmio_granule != SIZE_4KB {
-            return Err(Error::UnsupportedMmioGuardGranule(mmio_granule));
-        }
-        Ok(())
+impl Hypervisor for RegularKvmHypervisor {}
+
+pub(super) struct ProtectedKvmHypervisor;
+
+impl Hypervisor for ProtectedKvmHypervisor {
+    fn as_mmio_guard(&self) -> Option<&dyn MmioGuardedHypervisor> {
+        Some(self)
     }
 
-    fn mmio_guard_map(&self, addr: usize) -> Result<()> {
+    fn as_mem_sharer(&self) -> Option<&dyn MemSharingHypervisor> {
+        Some(self)
+    }
+
+    fn as_device_assigner(&self) -> Option<&dyn DeviceAssigningHypervisor> {
+        Some(self)
+    }
+}
+
+impl MmioGuardedHypervisor for ProtectedKvmHypervisor {
+    fn enroll(&self) -> Result<()> {
+        let args = [0u64; 17];
+        match success_or_error_64(hvc64(VENDOR_HYP_KVM_MMIO_GUARD_ENROLL_FUNC_ID, args)[0]) {
+            Ok(()) => Ok(()),
+            Err(KvmError::NotSupported) => Err(Error::MmioGuardNotSupported),
+            Err(e) => Err(Error::KvmError(e, VENDOR_HYP_KVM_MMIO_GUARD_ENROLL_FUNC_ID)),
+        }
+    }
+
+    fn map(&self, addr: usize) -> Result<()> {
         let mut args = [0u64; 17];
         args[0] = page_address(addr);
 
@@ -99,7 +121,7 @@
             .map_err(|e| Error::KvmError(e, VENDOR_HYP_KVM_MMIO_GUARD_MAP_FUNC_ID))
     }
 
-    fn mmio_guard_unmap(&self, addr: usize) -> Result<()> {
+    fn unmap(&self, addr: usize) -> Result<()> {
         let mut args = [0u64; 17];
         args[0] = page_address(addr);
 
@@ -111,44 +133,52 @@
         }
     }
 
-    fn mem_share(&self, base_ipa: u64) -> Result<()> {
+    fn granule(&self) -> Result<usize> {
+        let args = [0u64; 17];
+        let granule = checked_hvc64(VENDOR_HYP_KVM_MMIO_GUARD_INFO_FUNC_ID, args)?;
+        Ok(granule.try_into().unwrap())
+    }
+}
+
+impl MemSharingHypervisor for ProtectedKvmHypervisor {
+    fn share(&self, base_ipa: u64) -> Result<()> {
         let mut args = [0u64; 17];
         args[0] = base_ipa;
 
         checked_hvc64_expect_zero(ARM_SMCCC_KVM_FUNC_MEM_SHARE, args)
     }
 
-    fn mem_unshare(&self, base_ipa: u64) -> Result<()> {
+    fn unshare(&self, base_ipa: u64) -> Result<()> {
         let mut args = [0u64; 17];
         args[0] = base_ipa;
 
         checked_hvc64_expect_zero(ARM_SMCCC_KVM_FUNC_MEM_UNSHARE, args)
     }
 
-    fn memory_protection_granule(&self) -> Result<usize> {
+    fn granule(&self) -> Result<usize> {
         let args = [0u64; 17];
         let granule = checked_hvc64(ARM_SMCCC_KVM_FUNC_HYP_MEMINFO, args)?;
         Ok(granule.try_into().unwrap())
     }
+}
 
-    fn has_cap(&self, cap: HypervisorCap) -> bool {
-        Self::CAPABILITIES.contains(cap)
+impl DeviceAssigningHypervisor for ProtectedKvmHypervisor {
+    fn get_phys_mmio_token(&self, base_ipa: u64, size: u64) -> Result<u64> {
+        let mut args = [0u64; 17];
+        args[0] = base_ipa;
+        args[1] = size;
+
+        let ret = checked_hvc64_expect_results(VENDOR_HYP_KVM_DEV_REQ_MMIO_FUNC_ID, args)?;
+        Ok(ret[0])
     }
-}
 
-fn mmio_guard_granule() -> Result<usize> {
-    let args = [0u64; 17];
+    fn get_phys_iommu_token(&self, pviommu_id: u64, vsid: u64) -> Result<(u64, u64)> {
+        let mut args = [0u64; 17];
+        args[0] = pviommu_id;
+        args[1] = vsid;
 
-    let granule = checked_hvc64(VENDOR_HYP_KVM_MMIO_GUARD_INFO_FUNC_ID, args)?;
-    Ok(granule.try_into().unwrap())
-}
-
-fn mmio_guard_enroll() -> Result<()> {
-    let args = [0u64; 17];
-    match success_or_error_64(hvc64(VENDOR_HYP_KVM_MMIO_GUARD_ENROLL_FUNC_ID, args)[0]) {
-        Ok(_) => Ok(()),
-        Err(KvmError::NotSupported) => Err(Error::MmioGuardNotsupported),
-        Err(e) => Err(Error::KvmError(e, VENDOR_HYP_KVM_MMIO_GUARD_ENROLL_FUNC_ID)),
+        let ret = checked_hvc64_expect_results(VENDOR_HYP_KVM_DEV_REQ_DMA_FUNC_ID, args)?;
+        Ok((ret[0], ret[1]))
     }
 }
 
@@ -159,3 +189,9 @@
 fn checked_hvc64(function: u32, args: [u64; 17]) -> Result<u64> {
     positive_or_error_64(hvc64(function, args)[0]).map_err(|e| Error::KvmError(e, function))
 }
+
+fn checked_hvc64_expect_results(function: u32, args: [u64; 17]) -> Result<[u64; 17]> {
+    let [ret, results @ ..] = hvc64(function, args);
+    success_or_error_64(ret).map_err(|e| Error::KvmError(e, function))?;
+    Ok(results)
+}
diff --git a/libs/hyp/src/hypervisor/mod.rs b/libs/hyp/src/hypervisor/mod.rs
deleted file mode 100644
index 05c82dc..0000000
--- a/libs/hyp/src/hypervisor/mod.rs
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2023, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Wrappers around hypervisor back-ends.
-
-extern crate alloc;
-
-mod common;
-mod gunyah;
-mod kvm;
-
-use crate::error::{Error, Result};
-use alloc::boxed::Box;
-pub use common::Hypervisor;
-pub use common::HypervisorCap;
-use gunyah::GunyahHypervisor;
-pub use kvm::KvmError;
-use kvm::KvmHypervisor;
-use once_cell::race::OnceBox;
-use psci::smccc::hvc64;
-use uuid::Uuid;
-
-enum HypervisorBackend {
-    Kvm,
-    Gunyah,
-}
-
-impl HypervisorBackend {
-    fn get_hypervisor(&self) -> &'static dyn Hypervisor {
-        match self {
-            Self::Kvm => &KvmHypervisor,
-            Self::Gunyah => &GunyahHypervisor,
-        }
-    }
-}
-
-impl TryFrom<Uuid> for HypervisorBackend {
-    type Error = Error;
-
-    fn try_from(uuid: Uuid) -> Result<HypervisorBackend> {
-        match uuid {
-            GunyahHypervisor::UUID => Ok(HypervisorBackend::Gunyah),
-            KvmHypervisor::UUID => Ok(HypervisorBackend::Kvm),
-            u => Err(Error::UnsupportedHypervisorUuid(u)),
-        }
-    }
-}
-
-const ARM_SMCCC_VENDOR_HYP_CALL_UID_FUNC_ID: u32 = 0x8600ff01;
-
-fn query_vendor_hyp_call_uid() -> Uuid {
-    let args = [0u64; 17];
-    let res = hvc64(ARM_SMCCC_VENDOR_HYP_CALL_UID_FUNC_ID, args);
-
-    // KVM's UUID of "28b46fb6-2ec5-11e9-a9ca-4b564d003a74" is generated by
-    // Uuid::from_u128() from an input value of
-    // 0x28b46fb6_2ec511e9_a9ca4b56_4d003a74. ARM's SMC calling convention
-    // (Document number ARM DEN 0028E) describes the UUID register mapping such
-    // that W0 contains bytes 0..3 of UUID, with byte 0 in lower order bits. In
-    // the KVM example, byte 0 of KVM's UUID (0x28) will be returned in the low
-    // 8-bits of W0, while byte 15 (0x74) will be returned in bits 31-24 of W3.
-    //
-    // `uuid` value derived below thus need to be byte-reversed before
-    // being used in Uuid::from_u128(). Alternately use Uuid::from_u128_le()
-    // to achieve the same.
-
-    let uuid = ((res[3] as u32 as u128) << 96)
-        | ((res[2] as u32 as u128) << 64)
-        | ((res[1] as u32 as u128) << 32)
-        | (res[0] as u32 as u128);
-
-    Uuid::from_u128_le(uuid)
-}
-
-fn detect_hypervisor() -> HypervisorBackend {
-    query_vendor_hyp_call_uid().try_into().expect("Unknown hypervisor")
-}
-
-/// Gets the hypervisor singleton.
-pub fn get_hypervisor() -> &'static dyn Hypervisor {
-    static HYPERVISOR: OnceBox<HypervisorBackend> = OnceBox::new();
-
-    HYPERVISOR.get_or_init(|| Box::new(detect_hypervisor())).get_hypervisor()
-}
diff --git a/libs/hyp/src/lib.rs b/libs/hyp/src/lib.rs
index 694f957..6a23585 100644
--- a/libs/hyp/src/lib.rs
+++ b/libs/hyp/src/lib.rs
@@ -20,5 +20,10 @@
 mod hypervisor;
 mod util;
 
+pub use crate::hypervisor::DeviceAssigningHypervisor;
 pub use error::{Error, Result};
-pub use hypervisor::{get_hypervisor, Hypervisor, HypervisorCap, KvmError};
+pub use hypervisor::{
+    get_device_assigner, get_mem_sharer, get_mmio_guard, KvmError, MMIO_GUARD_GRANULE_SIZE,
+};
+
+use hypervisor::GeniezoneError;
diff --git a/libs/libfdt/Android.bp b/libs/libfdt/Android.bp
index 72399b0..7231904 100644
--- a/libs/libfdt/Android.bp
+++ b/libs/libfdt/Android.bp
@@ -1,14 +1,15 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_bindgen {
     name: "liblibfdt_bindgen",
     crate_name: "libfdt_bindgen",
+    defaults: ["avf_build_flags_rust"],
     wrapper_src: "bindgen/fdt.h",
     source_stem: "bindings",
     bindgen_flags: [
-        "--size_t-is-usize",
         "--allowlist-type=fdt_.*",
         "--allowlist-function=fdt_.*",
         "--allowlist-var=FDT_.*",
@@ -25,6 +26,7 @@
 rust_library_rlib {
     name: "liblibfdt",
     crate_name: "libfdt",
+    defaults: ["avf_build_flags_rust"],
     srcs: [
         "src/lib.rs",
         ":liblibfdt_bindgen",
@@ -36,10 +38,79 @@
         "libcore.rust_sysroot",
     ],
     rustlibs: [
+        "libcstr",
         "liblibfdt_bindgen",
+        "libzerocopy_nostd",
     ],
     whole_static_libs: [
         "libfdt",
     ],
     apex_available: ["com.android.virt"],
 }
+
+rust_test {
+    name: "liblibfdt.integration_test",
+    crate_name: "libfdt_test",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["tests/*.rs"],
+    test_suites: ["general-tests"],
+    data: [
+        ":fdt_test_tree_one_memory_range_dtb",
+        ":fdt_test_tree_multiple_memory_ranges_dtb",
+        ":fdt_test_tree_empty_memory_range_dtb",
+        ":fdt_test_tree_no_memory_node_dtb",
+        ":fdt_test_tree_phandle_dtb",
+    ],
+    prefer_rlib: true,
+    rustlibs: [
+        "libcstr",
+        "liblibfdt",
+    ],
+}
+
+genrule {
+    name: "fdt_test_tree_one_memory_range_dtb",
+    tools: ["dtc"],
+    srcs: [
+        "tests/data/test_tree_one_memory_range.dts",
+        "tests/data/test_tree_no_memory_node.dts",
+    ],
+    cmd: "$(location dtc) -I dts -O dtb $(location tests/data/test_tree_one_memory_range.dts) -o $(out)",
+    out: ["data/test_tree_one_memory_range.dtb"],
+}
+
+genrule {
+    name: "fdt_test_tree_multiple_memory_ranges_dtb",
+    tools: ["dtc"],
+    srcs: [
+        "tests/data/test_tree_multiple_memory_ranges.dts",
+        "tests/data/test_tree_no_memory_node.dts",
+    ],
+    cmd: "$(location dtc) -I dts -O dtb $(location tests/data/test_tree_multiple_memory_ranges.dts) -o $(out)",
+    out: ["data/test_tree_multiple_memory_ranges.dtb"],
+}
+
+genrule {
+    name: "fdt_test_tree_empty_memory_range_dtb",
+    tools: ["dtc"],
+    srcs: [
+        "tests/data/test_tree_empty_memory_range.dts",
+        "tests/data/test_tree_no_memory_node.dts",
+    ],
+    cmd: "$(location dtc) -I dts -O dtb $(location tests/data/test_tree_empty_memory_range.dts) -o $(out)",
+    out: ["data/test_tree_empty_memory_range.dtb"],
+}
+
+genrule {
+    name: "fdt_test_tree_no_memory_node_dtb",
+    defaults: ["dts_to_dtb"],
+    srcs: ["tests/data/test_tree_no_memory_node.dts"],
+    out: ["data/test_tree_no_memory_node.dtb"],
+}
+
+genrule {
+    name: "fdt_test_tree_phandle_dtb",
+    defaults: ["dts_to_dtb"],
+    srcs: ["tests/data/test_tree_phandle.dts"],
+    out: ["data/test_tree_phandle.dtb"],
+}
diff --git a/libs/libfdt/TEST_MAPPING b/libs/libfdt/TEST_MAPPING
new file mode 100644
index 0000000..e2f8dbb
--- /dev/null
+++ b/libs/libfdt/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit": [
+    {
+      "name": "liblibfdt.integration_test"
+    }
+  ]
+}
diff --git a/libs/libfdt/src/iterators.rs b/libs/libfdt/src/iterators.rs
index 05fdb4a..e818c68 100644
--- a/libs/libfdt/src/iterators.rs
+++ b/libs/libfdt/src/iterators.rs
@@ -14,10 +14,42 @@
 
 //! Iterators over cells, and various layers on top of them.
 
+use crate::Fdt;
+use crate::FdtError;
+use crate::FdtNode;
+use crate::FdtProperty;
 use crate::{AddrCells, SizeCells};
+use core::ffi::CStr;
 use core::marker::PhantomData;
 use core::{mem::size_of, ops::Range, slice::ChunksExact};
 
+/// Iterator over nodes sharing a same compatible string.
+pub struct CompatibleIterator<'a> {
+    node: FdtNode<'a>,
+    compatible: &'a CStr,
+}
+
+impl<'a> CompatibleIterator<'a> {
+    pub(crate) fn new(fdt: &'a Fdt, compatible: &'a CStr) -> Result<Self, FdtError> {
+        let node = fdt.root()?;
+        Ok(Self { node, compatible })
+    }
+}
+
+impl<'a> Iterator for CompatibleIterator<'a> {
+    type Item = FdtNode<'a>;
+
+    fn next(&mut self) -> Option<Self::Item> {
+        let next = self.node.next_compatible(self.compatible).ok()?;
+
+        if let Some(node) = next {
+            self.node = node;
+        }
+
+        next
+    }
+}
+
 /// Iterator over cells of a DT property.
 #[derive(Debug)]
 pub struct CellIterator<'a> {
@@ -59,6 +91,21 @@
     pub size: Option<T>,
 }
 
+impl<T: TryInto<usize>> TryFrom<Reg<T>> for Range<usize> {
+    type Error = FdtError;
+
+    fn try_from(reg: Reg<T>) -> Result<Self, Self::Error> {
+        let addr = to_usize(reg.addr)?;
+        let size = to_usize(reg.size.ok_or(FdtError::NotFound)?)?;
+        let end = addr.checked_add(size).ok_or(FdtError::BadValue)?;
+        Ok(addr..end)
+    }
+}
+
+fn to_usize<T: TryInto<usize>>(num: T) -> Result<usize, FdtError> {
+    num.try_into().map_err(|_| FdtError::BadValue)
+}
+
 impl<'a> RegIterator<'a> {
     pub(crate) fn new(
         cells: CellIterator<'a>,
@@ -249,3 +296,78 @@
         }
     }
 }
+
+/// Iterator over subnodes
+#[derive(Debug)]
+pub struct SubnodeIterator<'a> {
+    subnode: Option<FdtNode<'a>>,
+}
+
+impl<'a> SubnodeIterator<'a> {
+    pub(crate) fn new(node: &FdtNode<'a>) -> Result<Self, FdtError> {
+        let subnode = node.first_subnode()?;
+
+        Ok(Self { subnode })
+    }
+}
+
+impl<'a> Iterator for SubnodeIterator<'a> {
+    type Item = FdtNode<'a>;
+
+    fn next(&mut self) -> Option<Self::Item> {
+        let res = self.subnode;
+
+        self.subnode = self.subnode.and_then(|node| node.next_subnode().ok()?);
+
+        res
+    }
+}
+
+/// Iterator over descendants
+#[derive(Debug)]
+pub struct DescendantsIterator<'a> {
+    node: Option<(FdtNode<'a>, usize)>,
+}
+
+impl<'a> DescendantsIterator<'a> {
+    pub(crate) fn new(node: &FdtNode<'a>) -> Self {
+        Self { node: Some((*node, 0)) }
+    }
+}
+
+impl<'a> Iterator for DescendantsIterator<'a> {
+    type Item = (FdtNode<'a>, usize);
+
+    fn next(&mut self) -> Option<Self::Item> {
+        let (node, depth) = self.node?;
+        self.node = node.next_node(depth).ok().flatten().filter(|(_, depth)| *depth > 0);
+
+        self.node
+    }
+}
+
+/// Iterator over properties
+#[derive(Debug)]
+pub struct PropertyIterator<'a> {
+    prop: Option<FdtProperty<'a>>,
+}
+
+impl<'a> PropertyIterator<'a> {
+    pub(crate) fn new(node: &'a FdtNode) -> Result<Self, FdtError> {
+        let prop = node.first_property()?;
+
+        Ok(Self { prop })
+    }
+}
+
+impl<'a> Iterator for PropertyIterator<'a> {
+    type Item = FdtProperty<'a>;
+
+    fn next(&mut self) -> Option<Self::Item> {
+        let res = self.prop;
+
+        self.prop = res?.next_property().ok()?;
+
+        res
+    }
+}
diff --git a/libs/libfdt/src/lib.rs b/libs/libfdt/src/lib.rs
index 9785941..8a4e251 100644
--- a/libs/libfdt/src/lib.rs
+++ b/libs/libfdt/src/lib.rs
@@ -19,13 +19,20 @@
 
 mod iterators;
 
-pub use iterators::{AddressRange, CellIterator, MemRegIterator, RangesIterator, Reg, RegIterator};
+pub use iterators::{
+    AddressRange, CellIterator, CompatibleIterator, DescendantsIterator, MemRegIterator,
+    PropertyIterator, RangesIterator, Reg, RegIterator, SubnodeIterator,
+};
 
 use core::cmp::max;
 use core::ffi::{c_int, c_void, CStr};
 use core::fmt;
 use core::mem;
+use core::ops::Range;
+use core::ptr;
 use core::result;
+use cstr::cstr;
+use zerocopy::AsBytes as _;
 
 /// Error type corresponding to libfdt error codes.
 #[derive(Clone, Copy, Debug, Eq, PartialEq)]
@@ -189,34 +196,114 @@
     }
 }
 
+/// DT property wrapper to abstract endianess changes
+#[repr(transparent)]
+#[derive(Debug)]
+struct FdtPropertyStruct(libfdt_bindgen::fdt_property);
+
+impl FdtPropertyStruct {
+    fn from_offset(fdt: &Fdt, offset: c_int) -> Result<&Self> {
+        let mut len = 0;
+        let prop =
+            // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+            unsafe { libfdt_bindgen::fdt_get_property_by_offset(fdt.as_ptr(), offset, &mut len) };
+        if prop.is_null() {
+            fdt_err(len)?;
+            return Err(FdtError::Internal); // shouldn't happen.
+        }
+        // SAFETY: prop is only returned when it points to valid libfdt_bindgen.
+        Ok(unsafe { &*prop.cast::<FdtPropertyStruct>() })
+    }
+
+    fn name_offset(&self) -> c_int {
+        u32::from_be(self.0.nameoff).try_into().unwrap()
+    }
+
+    fn data_len(&self) -> usize {
+        u32::from_be(self.0.len).try_into().unwrap()
+    }
+
+    fn data_ptr(&self) -> *const c_void {
+        self.0.data.as_ptr().cast::<_>()
+    }
+}
+
+/// DT property.
+#[derive(Clone, Copy, Debug)]
+pub struct FdtProperty<'a> {
+    fdt: &'a Fdt,
+    offset: c_int,
+    property: &'a FdtPropertyStruct,
+}
+
+impl<'a> FdtProperty<'a> {
+    fn new(fdt: &'a Fdt, offset: c_int) -> Result<Self> {
+        let property = FdtPropertyStruct::from_offset(fdt, offset)?;
+        Ok(Self { fdt, offset, property })
+    }
+
+    /// Returns the property name
+    pub fn name(&self) -> Result<&'a CStr> {
+        self.fdt.string(self.property.name_offset())
+    }
+
+    /// Returns the property value
+    pub fn value(&self) -> Result<&'a [u8]> {
+        self.fdt.get_from_ptr(self.property.data_ptr(), self.property.data_len())
+    }
+
+    fn next_property(&self) -> Result<Option<Self>> {
+        let ret =
+            // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+            unsafe { libfdt_bindgen::fdt_next_property_offset(self.fdt.as_ptr(), self.offset) };
+
+        fdt_err_or_option(ret)?.map(|offset| Self::new(self.fdt, offset)).transpose()
+    }
+}
+
 /// DT node.
-#[derive(Clone, Copy)]
+#[derive(Clone, Copy, Debug)]
 pub struct FdtNode<'a> {
     fdt: &'a Fdt,
     offset: c_int,
 }
 
 impl<'a> FdtNode<'a> {
-    /// Create immutable node from a mutable node at the same offset
+    /// Creates immutable node from a mutable node at the same offset.
     pub fn from_mut(other: &'a FdtNodeMut) -> Self {
         FdtNode { fdt: other.fdt, offset: other.offset }
     }
-    /// Find parent node.
+    /// Returns parent node.
     pub fn parent(&self) -> Result<Self> {
-        // SAFETY - Accesses (read-only) are constrained to the DT totalsize.
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
         let ret = unsafe { libfdt_bindgen::fdt_parent_offset(self.fdt.as_ptr(), self.offset) };
 
         Ok(Self { fdt: self.fdt, offset: fdt_err(ret)? })
     }
 
-    /// Retrieve the standard (deprecated) device_type <string> property.
-    pub fn device_type(&self) -> Result<Option<&CStr>> {
-        self.getprop_str(CStr::from_bytes_with_nul(b"device_type\0").unwrap())
+    /// Returns supernode with depth. Note that root is at depth 0.
+    pub fn supernode_at_depth(&self, depth: usize) -> Result<Self> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe {
+            libfdt_bindgen::fdt_supernode_atdepth_offset(
+                self.fdt.as_ptr(),
+                self.offset,
+                depth.try_into().unwrap(),
+                ptr::null_mut(),
+            )
+        };
+
+        Ok(Self { fdt: self.fdt, offset: fdt_err(ret)? })
     }
 
-    /// Retrieve the standard reg <prop-encoded-array> property.
+    /// Returns the standard (deprecated) device_type <string> property.
+    pub fn device_type(&self) -> Result<Option<&CStr>> {
+        self.getprop_str(cstr!("device_type"))
+    }
+
+    /// Returns the standard reg <prop-encoded-array> property.
     pub fn reg(&self) -> Result<Option<RegIterator<'a>>> {
-        let reg = CStr::from_bytes_with_nul(b"reg\0").unwrap();
+        let reg = cstr!("reg");
 
         if let Some(cells) = self.getprop_cells(reg)? {
             let parent = self.parent()?;
@@ -230,9 +317,9 @@
         }
     }
 
-    /// Retrieves the standard ranges property.
+    /// Returns the standard ranges property.
     pub fn ranges<A, P, S>(&self) -> Result<Option<RangesIterator<'a, A, P, S>>> {
-        let ranges = CStr::from_bytes_with_nul(b"ranges\0").unwrap();
+        let ranges = cstr!("ranges");
         if let Some(cells) = self.getprop_cells(ranges)? {
             let parent = self.parent()?;
             let addr_cells = self.address_cells()?;
@@ -249,7 +336,19 @@
         }
     }
 
-    /// Retrieve the value of a given <string> property.
+    /// Returns the node name.
+    pub fn name(&self) -> Result<&'a CStr> {
+        let mut len: c_int = 0;
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor). On success, the
+        // function returns valid null terminating string and otherwise returned values are dropped.
+        let name = unsafe { libfdt_bindgen::fdt_get_name(self.fdt.as_ptr(), self.offset, &mut len) }
+            as *const c_void;
+        let len = usize::try_from(fdt_err(len)?).unwrap();
+        let name = self.fdt.get_from_ptr(name, len + 1)?;
+        CStr::from_bytes_with_nul(name).map_err(|_| FdtError::Internal)
+    }
+
+    /// Returns the value of a given <string> property.
     pub fn getprop_str(&self, name: &CStr) -> Result<Option<&CStr>> {
         let value = if let Some(bytes) = self.getprop(name)? {
             Some(CStr::from_bytes_with_nul(bytes).map_err(|_| FdtError::BadValue)?)
@@ -259,7 +358,7 @@
         Ok(value)
     }
 
-    /// Retrieve the value of a given property as an array of cells.
+    /// Returns the value of a given property as an array of cells.
     pub fn getprop_cells(&self, name: &CStr) -> Result<Option<CellIterator<'a>>> {
         if let Some(cells) = self.getprop(name)? {
             Ok(Some(CellIterator::new(cells)))
@@ -268,7 +367,7 @@
         }
     }
 
-    /// Retrieve the value of a given <u32> property.
+    /// Returns the value of a given <u32> property.
     pub fn getprop_u32(&self, name: &CStr) -> Result<Option<u32>> {
         let value = if let Some(bytes) = self.getprop(name)? {
             Some(u32::from_be_bytes(bytes.try_into().map_err(|_| FdtError::BadValue)?))
@@ -278,7 +377,7 @@
         Ok(value)
     }
 
-    /// Retrieve the value of a given <u64> property.
+    /// Returns the value of a given <u64> property.
     pub fn getprop_u64(&self, name: &CStr) -> Result<Option<u64>> {
         let value = if let Some(bytes) = self.getprop(name)? {
             Some(u64::from_be_bytes(bytes.try_into().map_err(|_| FdtError::BadValue)?))
@@ -288,20 +387,16 @@
         Ok(value)
     }
 
-    /// Retrieve the value of a given property.
+    /// Returns the value of a given property.
     pub fn getprop(&self, name: &CStr) -> Result<Option<&'a [u8]>> {
         if let Some((prop, len)) = Self::getprop_internal(self.fdt, self.offset, name)? {
-            let offset = (prop as usize)
-                .checked_sub(self.fdt.as_ptr() as usize)
-                .ok_or(FdtError::Internal)?;
-
-            Ok(Some(self.fdt.buffer.get(offset..(offset + len)).ok_or(FdtError::Internal)?))
+            Ok(Some(self.fdt.get_from_ptr(prop, len)?))
         } else {
             Ok(None) // property was not found
         }
     }
 
-    /// Return the pointer and size of the property named `name`, in a node at offset `offset`, in
+    /// Returns the pointer and size of the property named `name`, in a node at offset `offset`, in
     /// a device tree `fdt`. The pointer is guaranteed to be non-null, in which case error returns.
     fn getprop_internal(
         fdt: &'a Fdt,
@@ -309,7 +404,7 @@
         name: &CStr,
     ) -> Result<Option<(*const c_void, usize)>> {
         let mut len: i32 = 0;
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor) and the
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor) and the
         // function respects the passed number of characters.
         let prop = unsafe {
             libfdt_bindgen::fdt_getprop_namelen(
@@ -325,7 +420,7 @@
         let Some(len) = fdt_err_or_option(len)? else {
             return Ok(None); // Property was not found.
         };
-        let len = usize::try_from(len).map_err(|_| FdtError::Internal)?;
+        let len = usize::try_from(len).unwrap();
 
         if prop.is_null() {
             // We expected an error code in len but still received a valid value?!
@@ -334,13 +429,14 @@
         Ok(Some((prop.cast::<c_void>(), len)))
     }
 
-    /// Get reference to the containing device tree.
+    /// Returns reference to the containing device tree.
     pub fn fdt(&self) -> &Fdt {
         self.fdt
     }
 
-    fn next_compatible(self, compatible: &CStr) -> Result<Option<Self>> {
-        // SAFETY - Accesses (read-only) are constrained to the DT totalsize.
+    /// Returns the compatible node of the given name that is next after this node.
+    pub fn next_compatible(self, compatible: &CStr) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
         let ret = unsafe {
             libfdt_bindgen::fdt_node_offset_by_compatible(
                 self.fdt.as_ptr(),
@@ -352,31 +448,165 @@
         Ok(fdt_err_or_option(ret)?.map(|offset| Self { fdt: self.fdt, offset }))
     }
 
+    /// Returns the first range of `reg` in this node.
+    pub fn first_reg(&self) -> Result<Reg<u64>> {
+        self.reg()?.ok_or(FdtError::NotFound)?.next().ok_or(FdtError::NotFound)
+    }
+
     fn address_cells(&self) -> Result<AddrCells> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor).
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
         unsafe { libfdt_bindgen::fdt_address_cells(self.fdt.as_ptr(), self.offset) }
             .try_into()
             .map_err(|_| FdtError::Internal)
     }
 
     fn size_cells(&self) -> Result<SizeCells> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor).
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
         unsafe { libfdt_bindgen::fdt_size_cells(self.fdt.as_ptr(), self.offset) }
             .try_into()
             .map_err(|_| FdtError::Internal)
     }
+
+    /// Returns an iterator of subnodes
+    pub fn subnodes(&self) -> Result<SubnodeIterator<'a>> {
+        SubnodeIterator::new(self)
+    }
+
+    fn first_subnode(&self) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_first_subnode(self.fdt.as_ptr(), self.offset) };
+
+        Ok(fdt_err_or_option(ret)?.map(|offset| FdtNode { fdt: self.fdt, offset }))
+    }
+
+    fn next_subnode(&self) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_next_subnode(self.fdt.as_ptr(), self.offset) };
+
+        Ok(fdt_err_or_option(ret)?.map(|offset| FdtNode { fdt: self.fdt, offset }))
+    }
+
+    /// Returns an iterator of descendants
+    pub fn descendants(&self) -> DescendantsIterator<'a> {
+        DescendantsIterator::new(self)
+    }
+
+    fn next_node(&self, depth: usize) -> Result<Option<(Self, usize)>> {
+        let mut next_depth: c_int = depth.try_into().unwrap();
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe {
+            libfdt_bindgen::fdt_next_node(self.fdt.as_ptr(), self.offset, &mut next_depth)
+        };
+        let Ok(next_depth) = usize::try_from(next_depth) else {
+            return Ok(None);
+        };
+        Ok(fdt_err_or_option(ret)?.map(|offset| (FdtNode { fdt: self.fdt, offset }, next_depth)))
+    }
+
+    /// Returns an iterator of properties
+    pub fn properties(&'a self) -> Result<PropertyIterator<'a>> {
+        PropertyIterator::new(self)
+    }
+
+    fn first_property(&self) -> Result<Option<FdtProperty<'a>>> {
+        let ret =
+            // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+            unsafe { libfdt_bindgen::fdt_first_property_offset(self.fdt.as_ptr(), self.offset) };
+
+        fdt_err_or_option(ret)?.map(|offset| FdtProperty::new(self.fdt, offset)).transpose()
+    }
+
+    /// Returns the phandle
+    pub fn get_phandle(&self) -> Result<Option<Phandle>> {
+        // This rewrites the fdt_get_phandle() because it doesn't return error code.
+        if let Some(prop) = self.getprop_u32(cstr!("phandle"))? {
+            Ok(Some(prop.try_into()?))
+        } else if let Some(prop) = self.getprop_u32(cstr!("linux,phandle"))? {
+            Ok(Some(prop.try_into()?))
+        } else {
+            Ok(None)
+        }
+    }
+
+    /// Returns the subnode of the given name. The name doesn't need to be nul-terminated.
+    pub fn subnode(&self, name: &CStr) -> Result<Option<Self>> {
+        let offset = self.subnode_offset(name.to_bytes())?;
+        Ok(offset.map(|offset| Self { fdt: self.fdt, offset }))
+    }
+
+    /// Returns the subnode of the given name bytes
+    pub fn subnode_with_name_bytes(&self, name: &[u8]) -> Result<Option<Self>> {
+        let offset = self.subnode_offset(name)?;
+        Ok(offset.map(|offset| Self { fdt: self.fdt, offset }))
+    }
+
+    fn subnode_offset(&self, name: &[u8]) -> Result<Option<c_int>> {
+        let namelen = name.len().try_into().unwrap();
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
+        let ret = unsafe {
+            libfdt_bindgen::fdt_subnode_offset_namelen(
+                self.fdt.as_ptr(),
+                self.offset,
+                name.as_ptr().cast::<_>(),
+                namelen,
+            )
+        };
+        fdt_err_or_option(ret)
+    }
+}
+
+impl<'a> PartialEq for FdtNode<'a> {
+    fn eq(&self, other: &Self) -> bool {
+        self.fdt.as_ptr() == other.fdt.as_ptr() && self.offset == other.offset
+    }
+}
+
+/// Phandle of a FDT node
+#[repr(transparent)]
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+pub struct Phandle(u32);
+
+impl Phandle {
+    /// Minimum valid value for device tree phandles.
+    pub const MIN: Self = Self(1);
+    /// Maximum valid value for device tree phandles.
+    pub const MAX: Self = Self(libfdt_bindgen::FDT_MAX_PHANDLE);
+
+    /// Creates a new Phandle
+    pub const fn new(value: u32) -> Option<Self> {
+        if Self::MIN.0 <= value && value <= Self::MAX.0 {
+            Some(Self(value))
+        } else {
+            None
+        }
+    }
+}
+
+impl From<Phandle> for u32 {
+    fn from(phandle: Phandle) -> u32 {
+        phandle.0
+    }
+}
+
+impl TryFrom<u32> for Phandle {
+    type Error = FdtError;
+
+    fn try_from(value: u32) -> Result<Self> {
+        Self::new(value).ok_or(FdtError::BadPhandle)
+    }
 }
 
 /// Mutable FDT node.
+#[derive(Debug)]
 pub struct FdtNodeMut<'a> {
     fdt: &'a mut Fdt,
     offset: c_int,
 }
 
 impl<'a> FdtNodeMut<'a> {
-    /// Append a property name-value (possibly empty) pair to the given node.
+    /// Appends a property name-value (possibly empty) pair to the given node.
     pub fn appendprop<T: AsRef<[u8]>>(&mut self, name: &CStr, value: &T) -> Result<()> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor).
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
         let ret = unsafe {
             libfdt_bindgen::fdt_appendprop(
                 self.fdt.as_mut_ptr(),
@@ -390,9 +620,9 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Append a (address, size) pair property to the given node.
+    /// Appends a (address, size) pair property to the given node.
     pub fn appendprop_addrrange(&mut self, name: &CStr, addr: u64, size: u64) -> Result<()> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor).
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
         let ret = unsafe {
             libfdt_bindgen::fdt_appendprop_addrrange(
                 self.fdt.as_mut_ptr(),
@@ -407,9 +637,11 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Create or change a property name-value pair to the given node.
+    /// Sets a property name-value pair to the given node.
+    ///
+    /// This may create a new prop or replace existing value.
     pub fn setprop(&mut self, name: &CStr, value: &[u8]) -> Result<()> {
-        // SAFETY - New value size is constrained to the DT totalsize
+        // SAFETY: New value size is constrained to the DT totalsize
         //          (validated by underlying libfdt).
         let ret = unsafe {
             libfdt_bindgen::fdt_setprop(
@@ -424,10 +656,12 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Replace the value of the given property with the given value, and ensure that the given
-    /// value has the same length as the current value length
+    /// Sets the value of the given property with the given value, and ensure that the given
+    /// value has the same length as the current value length.
+    ///
+    /// This can only be used to replace existing value.
     pub fn setprop_inplace(&mut self, name: &CStr, value: &[u8]) -> Result<()> {
-        // SAFETY - fdt size is not altered
+        // SAFETY: fdt size is not altered
         let ret = unsafe {
             libfdt_bindgen::fdt_setprop_inplace(
                 self.fdt.as_mut_ptr(),
@@ -441,14 +675,25 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Create or change a flag-like empty property.
+    /// Sets the value of the given (address, size) pair property with the given value, and
+    /// ensure that the given value has the same length as the current value length.
+    ///
+    /// This can only be used to replace existing value.
+    pub fn setprop_addrrange_inplace(&mut self, name: &CStr, addr: u64, size: u64) -> Result<()> {
+        let pair = [addr.to_be(), size.to_be()];
+        self.setprop_inplace(name, pair.as_bytes())
+    }
+
+    /// Sets a flag-like empty property.
+    ///
+    /// This may create a new prop or replace existing value.
     pub fn setprop_empty(&mut self, name: &CStr) -> Result<()> {
         self.setprop(name, &[])
     }
 
-    /// Delete the given property.
+    /// Deletes the given property.
     pub fn delprop(&mut self, name: &CStr) -> Result<()> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor) when the
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor) when the
         // library locates the node's property. Removing the property may shift the offsets of
         // other nodes and properties but the borrow checker should prevent this function from
         // being called when FdtNode instances are in use.
@@ -459,7 +704,18 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Reduce the size of the given property to new_size
+    /// Deletes the given property effectively from DT, by setting it with FDT_NOP.
+    pub fn nop_property(&mut self, name: &CStr) -> Result<()> {
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor) when the
+        // library locates the node's property.
+        let ret = unsafe {
+            libfdt_bindgen::fdt_nop_property(self.fdt.as_mut_ptr(), self.offset, name.as_ptr())
+        };
+
+        fdt_err_expect_zero(ret)
+    }
+
+    /// Trims the size of the given property to new_size.
     pub fn trimprop(&mut self, name: &CStr, new_size: usize) -> Result<()> {
         let (prop, len) =
             FdtNode::getprop_internal(self.fdt, self.offset, name)?.ok_or(FdtError::NotFound)?;
@@ -470,7 +726,7 @@
             return Err(FdtError::NoSpace);
         }
 
-        // SAFETY - new_size is smaller than the old size
+        // SAFETY: new_size is smaller than the old size
         let ret = unsafe {
             libfdt_bindgen::fdt_setprop(
                 self.fdt.as_mut_ptr(),
@@ -484,31 +740,130 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Get reference to the containing device tree.
+    /// Returns reference to the containing device tree.
     pub fn fdt(&mut self) -> &mut Fdt {
         self.fdt
     }
 
-    /// Add a new subnode to the given node and return it as a FdtNodeMut on success.
-    pub fn add_subnode(&'a mut self, name: &CStr) -> Result<Self> {
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor).
-        let ret = unsafe {
-            libfdt_bindgen::fdt_add_subnode(self.fdt.as_mut_ptr(), self.offset, name.as_ptr())
-        };
+    /// Returns immutable FdtNode of this node.
+    pub fn as_node(&self) -> FdtNode {
+        FdtNode { fdt: self.fdt, offset: self.offset }
+    }
 
-        Ok(Self { fdt: self.fdt, offset: fdt_err(ret)? })
+    /// Adds new subnodes to the given node.
+    pub fn add_subnodes(&mut self, names: &[&CStr]) -> Result<()> {
+        for name in names {
+            self.add_subnode_offset(name.to_bytes())?;
+        }
+        Ok(())
+    }
+
+    /// Adds a new subnode to the given node and return it as a FdtNodeMut on success.
+    pub fn add_subnode(&'a mut self, name: &CStr) -> Result<Self> {
+        let offset = self.add_subnode_offset(name.to_bytes())?;
+        Ok(Self { fdt: self.fdt, offset })
+    }
+
+    /// Adds a new subnode to the given node with name and namelen, and returns it as a FdtNodeMut
+    /// on success.
+    pub fn add_subnode_with_namelen(&'a mut self, name: &CStr, namelen: usize) -> Result<Self> {
+        let offset = { self.add_subnode_offset(&name.to_bytes()[..namelen])? };
+        Ok(Self { fdt: self.fdt, offset })
+    }
+
+    fn add_subnode_offset(&mut self, name: &[u8]) -> Result<c_int> {
+        let namelen = name.len().try_into().unwrap();
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
+        let ret = unsafe {
+            libfdt_bindgen::fdt_add_subnode_namelen(
+                self.fdt.as_mut_ptr(),
+                self.offset,
+                name.as_ptr().cast::<_>(),
+                namelen,
+            )
+        };
+        fdt_err(ret)
+    }
+
+    /// Returns the first subnode of this
+    pub fn first_subnode(&'a mut self) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_first_subnode(self.fdt.as_ptr(), self.offset) };
+
+        Ok(fdt_err_or_option(ret)?.map(|offset| Self { fdt: self.fdt, offset }))
+    }
+
+    /// Returns the next subnode that shares the same parent with this
+    pub fn next_subnode(self) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_next_subnode(self.fdt.as_ptr(), self.offset) };
+
+        Ok(fdt_err_or_option(ret)?.map(|offset| Self { fdt: self.fdt, offset }))
+    }
+
+    /// Deletes the current node and returns the next subnode
+    pub fn delete_and_next_subnode(mut self) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_next_subnode(self.fdt.as_ptr(), self.offset) };
+
+        let next_offset = fdt_err_or_option(ret)?;
+
+        if Some(self.offset) == next_offset {
+            return Err(FdtError::Internal);
+        }
+
+        // SAFETY: nop_self() only touches bytes of the self and its properties and subnodes, and
+        // doesn't alter any other blob in the tree. self.fdt and next_offset would remain valid.
+        unsafe { self.nop_self()? };
+
+        Ok(next_offset.map(|offset| Self { fdt: self.fdt, offset }))
+    }
+
+    fn next_node_offset(&self, depth: usize) -> Result<Option<(c_int, usize)>> {
+        let mut next_depth: c_int = depth.try_into().or(Err(FdtError::BadValue))?;
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe {
+            libfdt_bindgen::fdt_next_node(self.fdt.as_ptr(), self.offset, &mut next_depth)
+        };
+        let Ok(next_depth) = usize::try_from(next_depth) else {
+            return Ok(None);
+        };
+        Ok(fdt_err_or_option(ret)?.map(|offset| (offset, next_depth)))
+    }
+
+    /// Returns the next node
+    pub fn next_node(self, depth: usize) -> Result<Option<(Self, usize)>> {
+        Ok(self
+            .next_node_offset(depth)?
+            .map(|(offset, next_depth)| (FdtNodeMut { fdt: self.fdt, offset }, next_depth)))
+    }
+
+    /// Deletes this and returns the next node
+    pub fn delete_and_next_node(mut self, depth: usize) -> Result<Option<(Self, usize)>> {
+        // Skip all would-be-removed descendants.
+        let mut iter = self.next_node_offset(depth)?;
+        while let Some((descendant_offset, descendant_depth)) = iter {
+            if descendant_depth <= depth {
+                break;
+            }
+            let descendant = FdtNodeMut { fdt: self.fdt, offset: descendant_offset };
+            iter = descendant.next_node_offset(descendant_depth)?;
+        }
+        // SAFETY: This consumes self, so invalid node wouldn't be used any further
+        unsafe { self.nop_self()? };
+        Ok(iter.map(|(offset, next_depth)| (FdtNodeMut { fdt: self.fdt, offset }, next_depth)))
     }
 
     fn parent(&'a self) -> Result<FdtNode<'a>> {
-        // SAFETY - Accesses (read-only) are constrained to the DT totalsize.
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
         let ret = unsafe { libfdt_bindgen::fdt_parent_offset(self.fdt.as_ptr(), self.offset) };
 
         Ok(FdtNode { fdt: &*self.fdt, offset: fdt_err(ret)? })
     }
 
-    /// Return the compatible node of the given name that is next to this node
+    /// Returns the compatible node of the given name that is next after this node.
     pub fn next_compatible(self, compatible: &CStr) -> Result<Option<Self>> {
-        // SAFETY - Accesses (read-only) are constrained to the DT totalsize.
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
         let ret = unsafe {
             libfdt_bindgen::fdt_node_offset_by_compatible(
                 self.fdt.as_ptr(),
@@ -520,8 +875,8 @@
         Ok(fdt_err_or_option(ret)?.map(|offset| Self { fdt: self.fdt, offset }))
     }
 
-    /// Replace this node and its subtree with nop tags, effectively removing it from the tree, and
-    /// then return the next compatible node of the given name.
+    /// Deletes the node effectively by overwriting this node and its subtree with nop tags.
+    /// Returns the next compatible node of the given name.
     // Side note: without this, filterint out excessive compatible nodes from the DT is impossible.
     // The reason is that libfdt ensures that the node from where the search for the next
     // compatible node is started is always a valid one -- except for the special case of offset =
@@ -532,8 +887,8 @@
     // node, and delete the current node, the Rust borrow checker kicks in. The next node has a
     // mutable reference to DT, so we can't use current node (which also has a mutable reference to
     // DT).
-    pub fn delete_and_next_compatible(self, compatible: &CStr) -> Result<Option<Self>> {
-        // SAFETY - Accesses (read-only) are constrained to the DT totalsize.
+    pub fn delete_and_next_compatible(mut self, compatible: &CStr) -> Result<Option<Self>> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
         let ret = unsafe {
             libfdt_bindgen::fdt_node_offset_by_compatible(
                 self.fdt.as_ptr(),
@@ -543,43 +898,37 @@
         };
         let next_offset = fdt_err_or_option(ret)?;
 
-        // SAFETY - fdt_nop_node alter only the bytes in the blob which contain the node and its
-        // properties and subnodes, and will not alter or move any other part of the tree.
-        let ret = unsafe { libfdt_bindgen::fdt_nop_node(self.fdt.as_mut_ptr(), self.offset) };
-        fdt_err_expect_zero(ret)?;
+        if Some(self.offset) == next_offset {
+            return Err(FdtError::Internal);
+        }
+
+        // SAFETY: nop_self() only touches bytes of the self and its properties and subnodes, and
+        // doesn't alter any other blob in the tree. self.fdt and next_offset would remain valid.
+        unsafe { self.nop_self()? };
 
         Ok(next_offset.map(|offset| Self { fdt: self.fdt, offset }))
     }
-}
 
-/// Iterator over nodes sharing a same compatible string.
-pub struct CompatibleIterator<'a> {
-    node: FdtNode<'a>,
-    compatible: &'a CStr,
-}
-
-impl<'a> CompatibleIterator<'a> {
-    fn new(fdt: &'a Fdt, compatible: &'a CStr) -> Result<Self> {
-        let node = fdt.root()?;
-        Ok(Self { node, compatible })
+    /// Deletes this node effectively from DT, by setting it with FDT_NOP
+    pub fn nop(mut self) -> Result<()> {
+        // SAFETY: This consumes self, so invalid node wouldn't be used any further
+        unsafe { self.nop_self() }
     }
-}
 
-impl<'a> Iterator for CompatibleIterator<'a> {
-    type Item = FdtNode<'a>;
+    /// Deletes this node effectively from DT, by setting it with FDT_NOP.
+    /// This only changes bytes of the node and its properties and subnodes, and doesn't alter or
+    /// move any other part of the tree.
+    /// SAFETY: This node is no longer valid.
+    unsafe fn nop_self(&mut self) -> Result<()> {
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor).
+        let ret = unsafe { libfdt_bindgen::fdt_nop_node(self.fdt.as_mut_ptr(), self.offset) };
 
-    fn next(&mut self) -> Option<Self::Item> {
-        let next = self.node.next_compatible(self.compatible).ok()?;
-
-        if let Some(node) = next {
-            self.node = node;
-        }
-
-        next
+        fdt_err_expect_zero(ret)
     }
 }
 
 /// Wrapper around low-level libfdt functions.
+#[derive(Debug)]
 #[repr(transparent)]
 pub struct Fdt {
     buffer: [u8],
@@ -590,7 +939,7 @@
     ///
     /// Fails if the FDT does not pass validation.
     pub fn from_slice(fdt: &[u8]) -> Result<&Self> {
-        // SAFETY - The FDT will be validated before it is returned.
+        // SAFETY: The FDT will be validated before it is returned.
         let fdt = unsafe { Self::unchecked_from_slice(fdt) };
         fdt.check_full()?;
         Ok(fdt)
@@ -600,7 +949,7 @@
     ///
     /// Fails if the FDT does not pass validation.
     pub fn from_mut_slice(fdt: &mut [u8]) -> Result<&mut Self> {
-        // SAFETY - The FDT will be validated before it is returned.
+        // SAFETY: The FDT will be validated before it is returned.
         let fdt = unsafe { Self::unchecked_from_mut_slice(fdt) };
         fdt.check_full()?;
         Ok(fdt)
@@ -608,7 +957,7 @@
 
     /// Creates an empty Flattened Device Tree with a mutable slice.
     pub fn create_empty_tree(fdt: &mut [u8]) -> Result<&mut Self> {
-        // SAFETY - fdt_create_empty_tree() only write within the specified length,
+        // SAFETY: fdt_create_empty_tree() only write within the specified length,
         //          and returns error if buffer was insufficient.
         //          There will be no memory write outside of the given fdt.
         let ret = unsafe {
@@ -619,7 +968,7 @@
         };
         fdt_err_expect_zero(ret)?;
 
-        // SAFETY - The FDT will be validated before it is returned.
+        // SAFETY: The FDT will be validated before it is returned.
         let fdt = unsafe { Self::unchecked_from_mut_slice(fdt) };
         fdt.check_full()?;
 
@@ -632,7 +981,9 @@
     ///
     /// The returned FDT might be invalid, only use on slices containing a valid DT.
     pub unsafe fn unchecked_from_slice(fdt: &[u8]) -> &Self {
-        mem::transmute::<&[u8], &Self>(fdt)
+        // SAFETY: Fdt is a wrapper around a [u8], so the transmute is valid. The caller is
+        // responsible for ensuring that it is actually a valid FDT.
+        unsafe { mem::transmute::<&[u8], &Self>(fdt) }
     }
 
     /// Wraps a mutable slice containing a Flattened Device Tree.
@@ -641,10 +992,12 @@
     ///
     /// The returned FDT might be invalid, only use on slices containing a valid DT.
     pub unsafe fn unchecked_from_mut_slice(fdt: &mut [u8]) -> &mut Self {
-        mem::transmute::<&mut [u8], &mut Self>(fdt)
+        // SAFETY: Fdt is a wrapper around a [u8], so the transmute is valid. The caller is
+        // responsible for ensuring that it is actually a valid FDT.
+        unsafe { mem::transmute::<&mut [u8], &mut Self>(fdt) }
     }
 
-    /// Update this FDT from a slice containing another FDT
+    /// Updates this FDT from a slice containing another FDT.
     pub fn copy_from_slice(&mut self, new_fdt: &[u8]) -> Result<()> {
         if self.buffer.len() < new_fdt.len() {
             Err(FdtError::NoSpace)
@@ -659,9 +1012,9 @@
         }
     }
 
-    /// Make the whole slice containing the DT available to libfdt.
+    /// Unpacks the DT to cover the whole slice it is contained in.
     pub fn unpack(&mut self) -> Result<()> {
-        // SAFETY - "Opens" the DT in-place (supported use-case) by updating its header and
+        // SAFETY: "Opens" the DT in-place (supported use-case) by updating its header and
         // internal structures to make use of the whole self.fdt slice but performs no accesses
         // outside of it and leaves the DT in a state that will be detected by other functions.
         let ret = unsafe {
@@ -674,11 +1027,11 @@
         fdt_err_expect_zero(ret)
     }
 
-    /// Pack the DT to take a minimum amount of memory.
+    /// Packs the DT to take a minimum amount of memory.
     ///
     /// Doesn't shrink the underlying memory slice.
     pub fn pack(&mut self) -> Result<()> {
-        // SAFETY - "Closes" the DT in-place by updating its header and relocating its structs.
+        // SAFETY: "Closes" the DT in-place by updating its header and relocating its structs.
         let ret = unsafe { libfdt_bindgen::fdt_pack(self.as_mut_ptr()) };
         fdt_err_expect_zero(ret)
     }
@@ -689,50 +1042,63 @@
     ///
     /// On failure, the library corrupts the DT and overlay so both must be discarded.
     pub unsafe fn apply_overlay<'a>(&'a mut self, overlay: &'a mut Fdt) -> Result<&'a mut Self> {
-        fdt_err_expect_zero(libfdt_bindgen::fdt_overlay_apply(
-            self.as_mut_ptr(),
-            overlay.as_mut_ptr(),
-        ))?;
+        let ret =
+        // SAFETY: Both pointers are valid because they come from references, and fdt_overlay_apply
+        // doesn't keep them after it returns. It may corrupt their contents if there is an error,
+        // but that's our caller's responsibility.
+            unsafe { libfdt_bindgen::fdt_overlay_apply(self.as_mut_ptr(), overlay.as_mut_ptr()) };
+        fdt_err_expect_zero(ret)?;
         Ok(self)
     }
 
-    /// Return an iterator of memory banks specified the "/memory" node.
+    /// Returns an iterator of memory banks specified the "/memory" node.
+    /// Throws an error when the "/memory" is not found in the device tree.
     ///
     /// NOTE: This does not support individual "/memory@XXXX" banks.
-    pub fn memory(&self) -> Result<Option<MemRegIterator>> {
-        let memory = CStr::from_bytes_with_nul(b"/memory\0").unwrap();
-        let device_type = CStr::from_bytes_with_nul(b"memory\0").unwrap();
+    pub fn memory(&self) -> Result<MemRegIterator> {
+        let memory_node_name = cstr!("/memory");
+        let memory_device_type = cstr!("memory");
 
-        if let Some(node) = self.node(memory)? {
-            if node.device_type()? != Some(device_type) {
-                return Err(FdtError::BadValue);
-            }
-            let reg = node.reg()?.ok_or(FdtError::BadValue)?;
-
-            Ok(Some(MemRegIterator::new(reg)))
-        } else {
-            Ok(None)
+        let node = self.node(memory_node_name)?.ok_or(FdtError::NotFound)?;
+        if node.device_type()? != Some(memory_device_type) {
+            return Err(FdtError::BadValue);
         }
+        node.reg()?.ok_or(FdtError::BadValue).map(MemRegIterator::new)
     }
 
-    /// Retrieve the standard /chosen node.
+    /// Returns the first memory range in the `/memory` node.
+    pub fn first_memory_range(&self) -> Result<Range<usize>> {
+        self.memory()?.next().ok_or(FdtError::NotFound)
+    }
+
+    /// Returns the standard /chosen node.
     pub fn chosen(&self) -> Result<Option<FdtNode>> {
-        self.node(CStr::from_bytes_with_nul(b"/chosen\0").unwrap())
+        self.node(cstr!("/chosen"))
     }
 
-    /// Retrieve the standard /chosen node as mutable.
+    /// Returns the standard /chosen node as mutable.
     pub fn chosen_mut(&mut self) -> Result<Option<FdtNodeMut>> {
-        self.node_mut(CStr::from_bytes_with_nul(b"/chosen\0").unwrap())
+        self.node_mut(cstr!("/chosen"))
     }
 
-    /// Get the root node of the tree.
+    /// Returns the root node of the tree.
     pub fn root(&self) -> Result<FdtNode> {
-        self.node(CStr::from_bytes_with_nul(b"/\0").unwrap())?.ok_or(FdtError::Internal)
+        self.node(cstr!("/"))?.ok_or(FdtError::Internal)
     }
 
-    /// Find a tree node by its full path.
+    /// Returns the standard /__symbols__ node.
+    pub fn symbols(&self) -> Result<Option<FdtNode>> {
+        self.node(cstr!("/__symbols__"))
+    }
+
+    /// Returns the standard /__symbols__ node as mutable
+    pub fn symbols_mut(&mut self) -> Result<Option<FdtNodeMut>> {
+        self.node_mut(cstr!("/__symbols__"))
+    }
+
+    /// Returns a tree node by its full path.
     pub fn node(&self, path: &CStr) -> Result<Option<FdtNode>> {
-        Ok(self.path_offset(path)?.map(|offset| FdtNode { fdt: self, offset }))
+        Ok(self.path_offset(path.to_bytes())?.map(|offset| FdtNode { fdt: self, offset }))
     }
 
     /// Iterate over nodes with a given compatible string.
@@ -740,45 +1106,89 @@
         CompatibleIterator::new(self, compatible)
     }
 
-    /// Get the mutable root node of the tree.
+    /// Returns max phandle in the tree.
+    pub fn max_phandle(&self) -> Result<Phandle> {
+        let mut phandle: u32 = 0;
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_find_max_phandle(self.as_ptr(), &mut phandle) };
+
+        fdt_err_expect_zero(ret)?;
+        phandle.try_into()
+    }
+
+    /// Returns a node with the phandle
+    pub fn node_with_phandle(&self, phandle: Phandle) -> Result<Option<FdtNode>> {
+        let offset = self.node_offset_with_phandle(phandle)?;
+        Ok(offset.map(|offset| FdtNode { fdt: self, offset }))
+    }
+
+    /// Returns a mutable node with the phandle
+    pub fn node_mut_with_phandle(&mut self, phandle: Phandle) -> Result<Option<FdtNodeMut>> {
+        let offset = self.node_offset_with_phandle(phandle)?;
+        Ok(offset.map(|offset| FdtNodeMut { fdt: self, offset }))
+    }
+
+    fn node_offset_with_phandle(&self, phandle: Phandle) -> Result<Option<c_int>> {
+        // SAFETY: Accesses are constrained to the DT totalsize.
+        let ret = unsafe { libfdt_bindgen::fdt_node_offset_by_phandle(self.as_ptr(), phandle.0) };
+        fdt_err_or_option(ret)
+    }
+
+    /// Returns the mutable root node of the tree.
     pub fn root_mut(&mut self) -> Result<FdtNodeMut> {
-        self.node_mut(CStr::from_bytes_with_nul(b"/\0").unwrap())?.ok_or(FdtError::Internal)
+        self.node_mut(cstr!("/"))?.ok_or(FdtError::Internal)
     }
 
-    /// Find a mutable tree node by its full path.
+    /// Returns a mutable tree node by its full path.
     pub fn node_mut(&mut self, path: &CStr) -> Result<Option<FdtNodeMut>> {
-        Ok(self.path_offset(path)?.map(|offset| FdtNodeMut { fdt: self, offset }))
+        Ok(self.path_offset(path.to_bytes())?.map(|offset| FdtNodeMut { fdt: self, offset }))
     }
 
-    /// Return the device tree as a slice (may be smaller than the containing buffer).
+    /// Returns the device tree as a slice (may be smaller than the containing buffer).
     pub fn as_slice(&self) -> &[u8] {
         &self.buffer[..self.totalsize()]
     }
 
-    fn path_offset(&self, path: &CStr) -> Result<Option<c_int>> {
-        let len = path.to_bytes().len().try_into().map_err(|_| FdtError::BadPath)?;
-        // SAFETY - Accesses are constrained to the DT totalsize (validated by ctor) and the
+    fn path_offset(&self, path: &[u8]) -> Result<Option<c_int>> {
+        let len = path.len().try_into().map_err(|_| FdtError::BadPath)?;
+        // SAFETY: Accesses are constrained to the DT totalsize (validated by ctor) and the
         // function respects the passed number of characters.
         let ret = unsafe {
             // *_namelen functions don't include the trailing nul terminator in 'len'.
-            libfdt_bindgen::fdt_path_offset_namelen(self.as_ptr(), path.as_ptr(), len)
+            libfdt_bindgen::fdt_path_offset_namelen(self.as_ptr(), path.as_ptr().cast::<_>(), len)
         };
 
         fdt_err_or_option(ret)
     }
 
     fn check_full(&self) -> Result<()> {
-        let len = self.buffer.len();
-        // SAFETY - Only performs read accesses within the limits of the slice. If successful, this
+        // SAFETY: Only performs read accesses within the limits of the slice. If successful, this
         // call guarantees to other unsafe calls that the header contains a valid totalsize (w.r.t.
         // 'len' i.e. the self.fdt slice) that those C functions can use to perform bounds
         // checking. The library doesn't maintain an internal state (such as pointers) between
         // calls as it expects the client code to keep track of the objects (DT, nodes, ...).
-        let ret = unsafe { libfdt_bindgen::fdt_check_full(self.as_ptr(), len) };
+        let ret = unsafe { libfdt_bindgen::fdt_check_full(self.as_ptr(), self.capacity()) };
         fdt_err_expect_zero(ret)
     }
 
-    /// Return a shared pointer to the device tree.
+    fn get_from_ptr(&self, ptr: *const c_void, len: usize) -> Result<&[u8]> {
+        let ptr = ptr as usize;
+        let offset = ptr.checked_sub(self.as_ptr() as usize).ok_or(FdtError::Internal)?;
+        self.buffer.get(offset..(offset + len)).ok_or(FdtError::Internal)
+    }
+
+    fn string(&self, offset: c_int) -> Result<&CStr> {
+        // SAFETY: Accesses (read-only) are constrained to the DT totalsize.
+        let res = unsafe { libfdt_bindgen::fdt_string(self.as_ptr(), offset) };
+        if res.is_null() {
+            return Err(FdtError::Internal);
+        }
+
+        // SAFETY: Non-null return from fdt_string() is valid null-terminating string within FDT.
+        Ok(unsafe { CStr::from_ptr(res) })
+    }
+
+    /// Returns a shared pointer to the device tree.
     pub fn as_ptr(&self) -> *const c_void {
         self.buffer.as_ptr().cast::<_>()
     }
@@ -793,7 +1203,7 @@
 
     fn header(&self) -> &libfdt_bindgen::fdt_header {
         let p = self.as_ptr().cast::<_>();
-        // SAFETY - A valid FDT (verified by constructor) must contain a valid fdt_header.
+        // SAFETY: A valid FDT (verified by constructor) must contain a valid fdt_header.
         unsafe { &*p }
     }
 
diff --git a/libs/libfdt/tests/api_test.rs b/libs/libfdt/tests/api_test.rs
new file mode 100644
index 0000000..cafbf97
--- /dev/null
+++ b/libs/libfdt/tests/api_test.rs
@@ -0,0 +1,531 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//! Integration tests of the library libfdt.
+
+use core::ffi::CStr;
+use cstr::cstr;
+use libfdt::{Fdt, FdtError, FdtNodeMut, Phandle};
+use std::collections::HashSet;
+use std::ffi::CString;
+use std::fs;
+use std::ops::Range;
+
+const TEST_TREE_WITH_ONE_MEMORY_RANGE_PATH: &str = "data/test_tree_one_memory_range.dtb";
+const TEST_TREE_WITH_MULTIPLE_MEMORY_RANGES_PATH: &str =
+    "data/test_tree_multiple_memory_ranges.dtb";
+const TEST_TREE_WITH_EMPTY_MEMORY_RANGE_PATH: &str = "data/test_tree_empty_memory_range.dtb";
+const TEST_TREE_WITH_NO_MEMORY_NODE_PATH: &str = "data/test_tree_no_memory_node.dtb";
+const TEST_TREE_PHANDLE_PATH: &str = "data/test_tree_phandle.dtb";
+
+#[test]
+fn retrieving_memory_from_fdt_with_one_memory_range_succeeds() {
+    let data = fs::read(TEST_TREE_WITH_ONE_MEMORY_RANGE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    const EXPECTED_FIRST_MEMORY_RANGE: Range<usize> = 0..256;
+    let mut memory = fdt.memory().unwrap();
+    assert_eq!(memory.next(), Some(EXPECTED_FIRST_MEMORY_RANGE));
+    assert_eq!(memory.next(), None);
+    assert_eq!(fdt.first_memory_range(), Ok(EXPECTED_FIRST_MEMORY_RANGE));
+}
+
+#[test]
+fn retrieving_memory_from_fdt_with_multiple_memory_ranges_succeeds() {
+    let data = fs::read(TEST_TREE_WITH_MULTIPLE_MEMORY_RANGES_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    const EXPECTED_FIRST_MEMORY_RANGE: Range<usize> = 0..256;
+    const EXPECTED_SECOND_MEMORY_RANGE: Range<usize> = 512..1024;
+    let mut memory = fdt.memory().unwrap();
+    assert_eq!(memory.next(), Some(EXPECTED_FIRST_MEMORY_RANGE));
+    assert_eq!(memory.next(), Some(EXPECTED_SECOND_MEMORY_RANGE));
+    assert_eq!(memory.next(), None);
+    assert_eq!(fdt.first_memory_range(), Ok(EXPECTED_FIRST_MEMORY_RANGE));
+}
+
+#[test]
+fn retrieving_first_memory_from_fdt_with_empty_memory_range_fails() {
+    let data = fs::read(TEST_TREE_WITH_EMPTY_MEMORY_RANGE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let mut memory = fdt.memory().unwrap();
+    assert_eq!(memory.next(), None);
+    assert_eq!(fdt.first_memory_range(), Err(FdtError::NotFound));
+}
+
+#[test]
+fn retrieving_memory_from_fdt_with_no_memory_node_fails() {
+    let data = fs::read(TEST_TREE_WITH_NO_MEMORY_NODE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    assert_eq!(fdt.memory().unwrap_err(), FdtError::NotFound);
+    assert_eq!(fdt.first_memory_range(), Err(FdtError::NotFound));
+}
+
+#[test]
+fn node_name() {
+    let data = fs::read(TEST_TREE_WITH_NO_MEMORY_NODE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let root = fdt.root().unwrap();
+    assert_eq!(root.name(), Ok(cstr!("")));
+
+    let chosen = fdt.chosen().unwrap().unwrap();
+    assert_eq!(chosen.name(), Ok(cstr!("chosen")));
+
+    let nested_node_path = cstr!("/cpus/PowerPC,970@0");
+    let nested_node = fdt.node(nested_node_path).unwrap().unwrap();
+    assert_eq!(nested_node.name(), Ok(cstr!("PowerPC,970@0")));
+}
+
+#[test]
+fn node_subnodes() {
+    let data = fs::read(TEST_TREE_WITH_NO_MEMORY_NODE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+    let root = fdt.root().unwrap();
+    let expected = [Ok(cstr!("cpus")), Ok(cstr!("randomnode")), Ok(cstr!("chosen"))];
+
+    let root_subnodes = root.subnodes().unwrap();
+    let subnode_names: Vec<_> = root_subnodes.map(|node| node.name()).collect();
+    assert_eq!(subnode_names, expected);
+}
+
+#[test]
+fn node_properties() {
+    let data = fs::read(TEST_TREE_WITH_NO_MEMORY_NODE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+    let root = fdt.root().unwrap();
+    let one_be = 0x1_u32.to_be_bytes();
+    type Result<T> = core::result::Result<T, FdtError>;
+    let expected: Vec<(Result<&CStr>, Result<&[u8]>)> = vec![
+        (Ok(cstr!("model")), Ok(b"MyBoardName\0".as_ref())),
+        (Ok(cstr!("compatible")), Ok(b"MyBoardName\0MyBoardFamilyName\0".as_ref())),
+        (Ok(cstr!("#address-cells")), Ok(&one_be)),
+        (Ok(cstr!("#size-cells")), Ok(&one_be)),
+        (Ok(cstr!("empty_prop")), Ok(&[])),
+    ];
+
+    let properties = root.properties().unwrap();
+    let subnode_properties: Vec<_> = properties.map(|prop| (prop.name(), prop.value())).collect();
+
+    assert_eq!(subnode_properties, expected);
+}
+
+#[test]
+fn node_supernode_at_depth() {
+    let data = fs::read(TEST_TREE_WITH_NO_MEMORY_NODE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+    let node = fdt.node(cstr!("/cpus/PowerPC,970@1")).unwrap().unwrap();
+    let expected = vec![Ok(cstr!("")), Ok(cstr!("cpus")), Ok(cstr!("PowerPC,970@1"))];
+
+    let mut supernode_names = vec![];
+    let mut depth = 0;
+    while let Ok(supernode) = node.supernode_at_depth(depth) {
+        supernode_names.push(supernode.name());
+        depth += 1;
+    }
+
+    assert_eq!(supernode_names, expected);
+}
+
+#[test]
+fn phandle_new() {
+    let valid_phandles = [
+        u32::from(Phandle::MIN),
+        u32::from(Phandle::MIN).checked_add(1).unwrap(),
+        0x55,
+        u32::from(Phandle::MAX).checked_sub(1).unwrap(),
+        u32::from(Phandle::MAX),
+    ];
+
+    for value in valid_phandles {
+        let phandle = Phandle::new(value).unwrap();
+
+        assert_eq!(value.try_into(), Ok(phandle));
+        assert_eq!(u32::from(phandle), value);
+    }
+
+    let bad_phandles = [
+        u32::from(Phandle::MIN).checked_sub(1).unwrap(),
+        u32::from(Phandle::MAX).checked_add(1).unwrap(),
+    ];
+
+    for value in bad_phandles {
+        assert_eq!(Phandle::new(value), None);
+        assert_eq!(Phandle::try_from(value), Err(FdtError::BadPhandle));
+    }
+}
+
+#[test]
+fn max_phandle() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+    let phandle = Phandle::new(0xFF).unwrap();
+
+    assert_eq!(fdt.max_phandle(), Ok(phandle));
+}
+
+#[test]
+fn node_with_phandle() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    // Test linux,phandle
+    let phandle = Phandle::new(0xFF).unwrap();
+    let node = fdt.node_with_phandle(phandle).unwrap().unwrap();
+    assert_eq!(node.name(), Ok(cstr!("node_zz")));
+
+    // Test phandle
+    let phandle = Phandle::new(0x22).unwrap();
+    let node = fdt.node_with_phandle(phandle).unwrap().unwrap();
+    assert_eq!(node.name(), Ok(cstr!("node_abc")));
+}
+
+#[test]
+fn node_mut_with_phandle() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    // Test linux,phandle
+    let phandle = Phandle::new(0xFF).unwrap();
+    let node: FdtNodeMut = fdt.node_mut_with_phandle(phandle).unwrap().unwrap();
+    assert_eq!(node.as_node().name(), Ok(cstr!("node_zz")));
+
+    // Test phandle
+    let phandle = Phandle::new(0x22).unwrap();
+    let node: FdtNodeMut = fdt.node_mut_with_phandle(phandle).unwrap().unwrap();
+    assert_eq!(node.as_node().name(), Ok(cstr!("node_abc")));
+}
+
+#[test]
+fn node_get_phandle() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    // Test linux,phandle
+    let node = fdt.node(cstr!("/node_z/node_zz")).unwrap().unwrap();
+    assert_eq!(node.get_phandle(), Ok(Phandle::new(0xFF)));
+
+    // Test phandle
+    let node = fdt.node(cstr!("/node_a/node_ab/node_abc")).unwrap().unwrap();
+    assert_eq!(node.get_phandle(), Ok(Phandle::new(0x22)));
+
+    // Test no phandle
+    let node = fdt.node(cstr!("/node_b")).unwrap().unwrap();
+    assert_eq!(node.get_phandle(), Ok(None));
+}
+
+#[test]
+fn node_nop() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+    let phandle = Phandle::new(0xFF).unwrap();
+    let path = cstr!("/node_z/node_zz");
+
+    fdt.node_with_phandle(phandle).unwrap().unwrap();
+    let node = fdt.node_mut(path).unwrap().unwrap();
+
+    node.nop().unwrap();
+
+    assert_eq!(fdt.node_with_phandle(phandle), Ok(None));
+    assert_eq!(fdt.node(path), Ok(None));
+
+    fdt.unpack().unwrap();
+    fdt.pack().unwrap();
+
+    assert_eq!(fdt.node_with_phandle(phandle), Ok(None));
+    assert_eq!(fdt.node(path), Ok(None));
+}
+
+#[test]
+fn node_add_subnode_with_namelen() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    data.resize(data.len() * 2, 0_u8);
+
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+    fdt.unpack().unwrap();
+
+    let node_path = cstr!("/node_z/node_zz");
+    let subnode_name = cstr!("123456789");
+
+    for len in 0..subnode_name.to_bytes().len() {
+        let name = &subnode_name.to_bytes()[0..len];
+        let node = fdt.node(node_path).unwrap().unwrap();
+        assert_eq!(Ok(None), node.subnode_with_name_bytes(name));
+
+        let mut node = fdt.node_mut(node_path).unwrap().unwrap();
+        node.add_subnode_with_namelen(subnode_name, len).unwrap();
+
+        let node = fdt.node(node_path).unwrap().unwrap();
+        assert_ne!(Ok(None), node.subnode_with_name_bytes(name));
+    }
+
+    let node_path = node_path.to_str().unwrap();
+    for len in 1..subnode_name.to_bytes().len() {
+        let name = String::from_utf8(subnode_name.to_bytes()[..len].to_vec()).unwrap();
+        let path = CString::new(format!("{node_path}/{name}")).unwrap();
+        let name = CString::new(name).unwrap();
+        let subnode = fdt.node(&path).unwrap().unwrap();
+        assert_eq!(subnode.name(), Ok(name.as_c_str()));
+    }
+}
+
+#[test]
+fn node_subnode() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let name = cstr!("node_a");
+    let root = fdt.root().unwrap();
+    let node = root.subnode(name).unwrap();
+    assert_ne!(None, node);
+    let node = node.unwrap();
+
+    assert_eq!(Ok(name), node.name());
+}
+
+#[test]
+fn node_subnode_with_name_bytes() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let name = b"node_aaaaa";
+    let root = fdt.root().unwrap();
+    let node = root.subnode_with_name_bytes(&name[0..6]).unwrap();
+    assert_ne!(None, node);
+    let node = node.unwrap();
+
+    assert_eq!(Ok(cstr!("node_a")), node.name());
+}
+
+#[test]
+fn node_subnode_borrow_checker() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let name = cstr!("node_a");
+    let node = {
+        let root = fdt.root().unwrap();
+        root.subnode(name).unwrap().unwrap()
+    };
+
+    assert_eq!(Ok(name), node.name());
+}
+
+#[test]
+fn fdt_symbols() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    let symbols = fdt.symbols().unwrap().unwrap();
+    assert_eq!(symbols.name(), Ok(cstr!("__symbols__")));
+
+    // Validates type.
+    let _symbols: FdtNodeMut = fdt.symbols_mut().unwrap().unwrap();
+}
+
+#[test]
+fn node_mut_as_node() {
+    let mut data = fs::read(TEST_TREE_WITH_ONE_MEMORY_RANGE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    let mut memory = fdt.node_mut(cstr!("/memory")).unwrap().unwrap();
+    {
+        let memory = memory.as_node();
+        assert_eq!(memory.name(), Ok(cstr!("memory")));
+    }
+
+    // Just check whether borrow checker doesn't complain this.
+    memory.setprop_inplace(cstr!("device_type"), b"MEMORY\0").unwrap();
+}
+
+#[test]
+fn node_descendants() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    let node_z = fdt.node(cstr!("/node_z")).unwrap().unwrap();
+    let descendants: Vec<_> =
+        node_z.descendants().map(|(node, depth)| (node.name().unwrap(), depth)).collect();
+
+    assert_eq!(
+        descendants,
+        vec![
+            (cstr!("node_za"), 1),
+            (cstr!("node_zb"), 1),
+            (cstr!("node_zz"), 1),
+            (cstr!("node_zzz"), 2)
+        ]
+    );
+}
+
+#[test]
+fn node_mut_delete_and_next_subnode() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    let mut root = fdt.root_mut().unwrap();
+    let mut subnode_iter = root.first_subnode().unwrap();
+
+    while let Some(subnode) = subnode_iter {
+        if subnode.as_node().name() == Ok(cstr!("node_z")) {
+            subnode_iter = subnode.delete_and_next_subnode().unwrap();
+        } else {
+            subnode_iter = subnode.next_subnode().unwrap();
+        }
+    }
+
+    let root = fdt.root().unwrap();
+    let expected_names = vec![
+        Ok(cstr!("node_a")),
+        Ok(cstr!("node_b")),
+        Ok(cstr!("node_c")),
+        Ok(cstr!("__symbols__")),
+    ];
+    let subnode_names: Vec<_> = root.subnodes().unwrap().map(|node| node.name()).collect();
+
+    assert_eq!(expected_names, subnode_names);
+}
+
+#[test]
+fn node_mut_delete_and_next_node() {
+    let mut data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_mut_slice(&mut data).unwrap();
+
+    let expected_nodes = vec![
+        (Ok(cstr!("node_b")), 1),
+        (Ok(cstr!("node_c")), 1),
+        (Ok(cstr!("node_z")), 1),
+        (Ok(cstr!("node_za")), 2),
+        (Ok(cstr!("node_zb")), 2),
+        (Ok(cstr!("__symbols__")), 1),
+    ];
+
+    let mut expected_nodes_iter = expected_nodes.iter();
+    let mut iter = fdt.root_mut().unwrap().next_node(0).unwrap();
+    while let Some((node, depth)) = iter {
+        let node_name = node.as_node().name();
+        if node_name == Ok(cstr!("node_a")) || node_name == Ok(cstr!("node_zz")) {
+            iter = node.delete_and_next_node(depth).unwrap();
+        } else {
+            // Note: Checking name here is easier than collecting names and assert_eq!(),
+            //       because we can't keep name references while iterating with FdtNodeMut.
+            let expected_node = expected_nodes_iter.next();
+            assert_eq!(expected_node, Some(&(node_name, depth)));
+            iter = node.next_node(depth).unwrap();
+        }
+    }
+    assert_eq!(None, expected_nodes_iter.next());
+
+    let root = fdt.root().unwrap();
+    let all_descendants: Vec<_> =
+        root.descendants().map(|(node, depth)| (node.name(), depth)).collect();
+    assert_eq!(expected_nodes, all_descendants);
+}
+
+#[test]
+#[ignore] // Borrow checker test. Compilation success is sufficient.
+fn node_name_lifetime() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let name = {
+        let root = fdt.root().unwrap();
+        root.name()
+        // Make root to be dropped
+    };
+    assert_eq!(Ok(cstr!("")), name);
+}
+
+#[test]
+fn node_mut_add_subnodes() {
+    let mut data = vec![0_u8; 1000];
+    let fdt = Fdt::create_empty_tree(&mut data).unwrap();
+
+    let mut root = fdt.root_mut().unwrap();
+    let names = [cstr!("a"), cstr!("b")];
+    root.add_subnodes(&names).unwrap();
+
+    let expected: HashSet<_> = names.into_iter().collect();
+    let subnodes = fdt.root().unwrap().subnodes().unwrap();
+    let names: HashSet<_> = subnodes.map(|node| node.name().unwrap()).collect();
+
+    assert_eq!(expected, names);
+}
+
+#[test]
+#[ignore] // Borrow checker test. Compilation success is sufficient.
+fn node_subnode_lifetime() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let name = {
+        let node_a = {
+            let root = fdt.root().unwrap();
+            root.subnode(cstr!("node_a")).unwrap()
+            // Make root to be dropped
+        };
+        assert_ne!(None, node_a);
+        node_a.unwrap().name()
+        // Make node_a to be dropped
+    };
+    assert_eq!(Ok(cstr!("node_a")), name);
+}
+
+#[test]
+#[ignore] // Borrow checker test. Compilation success is sufficient.
+fn node_subnodess_lifetime() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let first_subnode_name = {
+        let first_subnode = {
+            let mut subnodes_iter = {
+                let root = fdt.root().unwrap();
+                root.subnodes().unwrap()
+                // Make root to be dropped
+            };
+            subnodes_iter.next().unwrap()
+            // Make subnodess_iter to be dropped
+        };
+        first_subnode.name()
+        // Make first_subnode to be dropped
+    };
+    assert_eq!(Ok(cstr!("node_a")), first_subnode_name);
+}
+
+#[test]
+#[ignore] // Borrow checker test. Compilation success is sufficient.
+fn node_descendants_lifetime() {
+    let data = fs::read(TEST_TREE_PHANDLE_PATH).unwrap();
+    let fdt = Fdt::from_slice(&data).unwrap();
+
+    let first_descendant_name = {
+        let (first_descendant, _) = {
+            let mut descendants_iter = {
+                let root = fdt.root().unwrap();
+                root.descendants()
+                // Make root to be dropped
+            };
+            descendants_iter.next().unwrap()
+            // Make descendants_iter to be dropped
+        };
+        first_descendant.name()
+        // Make first_descendant to be dropped
+    };
+    assert_eq!(Ok(cstr!("node_a")), first_descendant_name);
+}
diff --git a/libs/libfdt/tests/data/test_tree_empty_memory_range.dts b/libs/libfdt/tests/data/test_tree_empty_memory_range.dts
new file mode 100644
index 0000000..c263ff3
--- /dev/null
+++ b/libs/libfdt/tests/data/test_tree_empty_memory_range.dts
@@ -0,0 +1,8 @@
+/include/ "test_tree_no_memory_node.dts"
+
+/ {
+	memory {
+		device_type = "memory";
+		reg = <>;
+	};
+};
diff --git a/libs/libfdt/tests/data/test_tree_multiple_memory_ranges.dts b/libs/libfdt/tests/data/test_tree_multiple_memory_ranges.dts
new file mode 100644
index 0000000..b2ded7f
--- /dev/null
+++ b/libs/libfdt/tests/data/test_tree_multiple_memory_ranges.dts
@@ -0,0 +1,8 @@
+/include/ "test_tree_no_memory_node.dts"
+
+/ {
+	memory {
+		device_type = "memory";
+		reg = <0x0 0x100 0x200 0x200>;
+	};
+};
diff --git a/libs/libfdt/tests/data/test_tree_no_memory_node.dts b/libs/libfdt/tests/data/test_tree_no_memory_node.dts
new file mode 100644
index 0000000..73451d7
--- /dev/null
+++ b/libs/libfdt/tests/data/test_tree_no_memory_node.dts
@@ -0,0 +1,39 @@
+/dts-v1/;
+
+/memreserve/	0x0000000000000000 0x000000000000000e;
+/ {
+	model = "MyBoardName";
+	compatible = "MyBoardName", "MyBoardFamilyName";
+	#address-cells = <0x1>;
+	#size-cells = <0x1>;
+	empty_prop;
+
+	cpus {
+		linux,phandle = <0x1>;
+		#address-cells = <0x1>;
+		#size-cells = <0x0>;
+
+		PowerPC,970@0 {
+			device_type = "cpu";
+			reg = <0x0>;
+			linux,boot-cpu;
+		};
+
+		PowerPC,970@1 {
+			device_type = "cpu";
+			reg = <0x1>;
+		};
+	};
+
+	randomnode {
+		string = "foo", "stuff";
+		bytes = [61 62 63 64 65];
+		nbytes = [80 ff];
+
+		child {
+		};
+	};
+
+	chosen {
+	};
+};
diff --git a/libs/libfdt/tests/data/test_tree_one_memory_range.dts b/libs/libfdt/tests/data/test_tree_one_memory_range.dts
new file mode 100644
index 0000000..7f863b3
--- /dev/null
+++ b/libs/libfdt/tests/data/test_tree_one_memory_range.dts
@@ -0,0 +1,8 @@
+/include/ "test_tree_no_memory_node.dts"
+
+/ {
+	memory {
+		device_type = "memory";
+		reg = <0x0 0x100>;
+	};
+};
diff --git a/libs/libfdt/tests/data/test_tree_phandle.dts b/libs/libfdt/tests/data/test_tree_phandle.dts
new file mode 100644
index 0000000..97d9028
--- /dev/null
+++ b/libs/libfdt/tests/data/test_tree_phandle.dts
@@ -0,0 +1,39 @@
+/dts-v1/;
+/plugin/;
+
+/ {
+    node_a {
+        phandle = <0x1>;
+        node_ab {
+            node_abc {
+                linux,phandle = <0x22>;
+            };
+        };
+    };
+
+    node_b {
+    };
+
+    node_c {
+    };
+
+    node_z {
+        node_za {
+        };
+
+        node_zb {
+
+        };
+
+        node_zz {
+            phandle = <0xFF>;
+
+            node_zzz {
+            };
+        };
+    };
+
+    __symbols__ {
+        symbol_a = "/node_a";
+    };
+};
\ No newline at end of file
diff --git a/libs/microdroid_uids/Android.bp b/libs/microdroid_uids/Android.bp
new file mode 100644
index 0000000..ce62217
--- /dev/null
+++ b/libs/microdroid_uids/Android.bp
@@ -0,0 +1,14 @@
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_library {
+    name: "libmicrodroid_uids",
+    crate_name: "microdroid_uids",
+    srcs: ["src/lib.rs"],
+    edition: "2021",
+    defaults: ["avf_build_flags_rust"],
+    apex_available: [
+        "com.android.virt",
+    ],
+}
diff --git a/libs/microdroid_uids/src/lib.rs b/libs/microdroid_uids/src/lib.rs
new file mode 100644
index 0000000..0248c61
--- /dev/null
+++ b/libs/microdroid_uids/src/lib.rs
@@ -0,0 +1,35 @@
+// Copyright 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! User and group IDs within Microdroid
+
+/// Always the user ID of Root.
+pub const ROOT_UID: u32 = 0;
+
+// Android reserves UID/GIDs 6000-6499 for use by the system partition -
+// see AID_SYSTEM_RESERVED_START.
+// Within Microdroid we own the system partition, so they are free for our
+// use. The Microdroid system image includes /system/ext/passwd and
+// /system/ext/group files that allocate names to the IDs that we are
+// using, so that tools like `ps` handle them correctly - see build targets
+// microdroid_etc_passwd and microdroid_etc_group.
+// (Our UIDs are entirely separate from Android's, but we use the same
+// Bionic, and it uses the Android definitions - so using a reserved range
+// helps avoid confusion.)
+
+/// Group ID shared by all payload users.
+pub const MICRODROID_PAYLOAD_GID: u32 = if cfg!(multi_tenant) { 6000 } else { 0 };
+
+/// User ID for the initial payload user.
+pub const MICRODROID_PAYLOAD_UID: u32 = if cfg!(multi_tenant) { 6000 } else { 0 };
diff --git a/libs/nested_virt/Android.bp b/libs/nested_virt/Android.bp
index 72393ea..74dd38f 100644
--- a/libs/nested_virt/Android.bp
+++ b/libs/nested_virt/Android.bp
@@ -5,6 +5,7 @@
 rust_library {
     name: "libnested_virt",
     crate_name: "nested_virt",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     edition: "2021",
     rustlibs: [
diff --git a/libs/statslog_virtualization/Android.bp b/libs/statslog_virtualization/Android.bp
index a702ea1..2860e6c 100644
--- a/libs/statslog_virtualization/Android.bp
+++ b/libs/statslog_virtualization/Android.bp
@@ -29,6 +29,7 @@
 
 rust_defaults {
     name: "libstatslog_virtualization_rust_defaults",
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     rustlibs: [
         "libstatspull_bindgen",
diff --git a/libs/statslog_virtualization/statslog_wrapper.rs b/libs/statslog_virtualization/statslog_wrapper.rs
index 4d1a0fa..b069d7c 100644
--- a/libs/statslog_virtualization/statslog_wrapper.rs
+++ b/libs/statslog_virtualization/statslog_wrapper.rs
@@ -1,4 +1,5 @@
 #![allow(clippy::too_many_arguments)]
+#![allow(clippy::undocumented_unsafe_blocks)]
 #![allow(missing_docs)]
 #![allow(unused)]
 
diff --git a/libs/vbmeta/Android.bp b/libs/vbmeta/Android.bp
index a487097..48f9e51 100644
--- a/libs/vbmeta/Android.bp
+++ b/libs/vbmeta/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "libvbmeta_rust.defaults",
     crate_name: "vbmeta",
+    defaults: ["avf_build_flags_rust"],
     host_supported: true,
     srcs: ["src/lib.rs"],
     edition: "2021",
@@ -17,6 +19,9 @@
 rust_library {
     name: "libvbmeta_rust",
     defaults: ["libvbmeta_rust.defaults"],
+    apex_available: [
+        "com.android.virt",
+    ],
 }
 
 rust_test_host {
diff --git a/libs/vbmeta/TEST_MAPPING b/libs/vbmeta/TEST_MAPPING
index e42aea0..92016c7 100644
--- a/libs/vbmeta/TEST_MAPPING
+++ b/libs/vbmeta/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/libs/vbmeta/src/descriptor.rs b/libs/vbmeta/src/descriptor.rs
index 10484ff..caf1356 100644
--- a/libs/vbmeta/src/descriptor.rs
+++ b/libs/vbmeta/src/descriptor.rs
@@ -14,7 +14,8 @@
 
 use avb_bindgen::{
     avb_descriptor_foreach, avb_descriptor_validate_and_byteswap,
-    avb_hashtree_descriptor_validate_and_byteswap, AvbDescriptor, AvbHashtreeDescriptor,
+    avb_hashtree_descriptor_validate_and_byteswap, AvbDescriptor, AvbDescriptorTag,
+    AvbHashtreeDescriptor,
 };
 use std::ffi::c_void;
 use std::mem::{size_of, MaybeUninit};
@@ -22,13 +23,6 @@
 
 use super::VbMetaImageParseError;
 
-// TODO: import these with bindgen
-const AVB_DESCRIPTOR_TAG_PROPERTY: u64 = 0;
-const AVB_DESCRIPTOR_TAG_HASHTREE: u64 = 1;
-const AVB_DESCRIPTOR_TAG_HASH: u64 = 2;
-const AVB_DESCRIPTOR_TAG_KERNEL_CMDLINE: u64 = 3;
-const AVB_DESCRIPTOR_TAG_CHAIN_PARTITION: u64 = 4;
-
 /// The descriptors from a VBMeta image.
 pub struct Descriptors<'a> {
     descriptors: Vec<Descriptor<'a>>,
@@ -72,12 +66,16 @@
             };
             // SAFETY: this cast gets a reference to the Vec passed as the user_data below.
             let descriptors = unsafe { &mut *(user_data as *mut Vec<Descriptor>) };
-            descriptors.push(match desc.tag {
-                AVB_DESCRIPTOR_TAG_PROPERTY => Descriptor::Property(data),
-                AVB_DESCRIPTOR_TAG_HASHTREE => Descriptor::Hashtree(data),
-                AVB_DESCRIPTOR_TAG_HASH => Descriptor::Hash(data),
-                AVB_DESCRIPTOR_TAG_KERNEL_CMDLINE => Descriptor::KernelCmdline(data),
-                AVB_DESCRIPTOR_TAG_CHAIN_PARTITION => Descriptor::ChainPartition(data),
+            descriptors.push(match desc.tag.try_into() {
+                Ok(AvbDescriptorTag::AVB_DESCRIPTOR_TAG_PROPERTY) => Descriptor::Property(data),
+                Ok(AvbDescriptorTag::AVB_DESCRIPTOR_TAG_HASHTREE) => Descriptor::Hashtree(data),
+                Ok(AvbDescriptorTag::AVB_DESCRIPTOR_TAG_HASH) => Descriptor::Hash(data),
+                Ok(AvbDescriptorTag::AVB_DESCRIPTOR_TAG_KERNEL_CMDLINE) => {
+                    Descriptor::KernelCmdline(data)
+                }
+                Ok(AvbDescriptorTag::AVB_DESCRIPTOR_TAG_CHAIN_PARTITION) => {
+                    Descriptor::ChainPartition(data)
+                }
                 _ => Descriptor::Unknown,
             });
             true
diff --git a/libs/vmconfig/Android.bp b/libs/vmconfig/Android.bp
index fe541d3..728033c 100644
--- a/libs/vmconfig/Android.bp
+++ b/libs/vmconfig/Android.bp
@@ -5,6 +5,7 @@
 rust_library {
     name: "libvmconfig",
     crate_name: "vmconfig",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     edition: "2021",
     rustlibs: [
diff --git a/libs/vmconfig/src/lib.rs b/libs/vmconfig/src/lib.rs
index 7ca8272..50f3c8e 100644
--- a/libs/vmconfig/src/lib.rs
+++ b/libs/vmconfig/src/lib.rs
@@ -21,7 +21,7 @@
     binder::ParcelFileDescriptor,
 };
 
-use anyhow::{bail, Context, Error, Result};
+use anyhow::{anyhow, bail, Context, Error, Result};
 use semver::VersionReq;
 use serde::{Deserialize, Serialize};
 use std::convert::TryInto;
@@ -57,6 +57,9 @@
     /// Version or range of versions of the virtual platform that this config is compatible with.
     /// The format follows SemVer (https://semver.org).
     pub platform_version: VersionReq,
+    /// SysFS paths of devices assigned to the VM.
+    #[serde(default)]
+    pub devices: Vec<PathBuf>,
 }
 
 impl VmConfig {
@@ -103,6 +106,13 @@
             protectedVm: self.protected,
             memoryMib: memory_mib,
             platformVersion: self.platform_version.to_string(),
+            devices: self
+                .devices
+                .iter()
+                .map(|x| {
+                    x.to_str().map(String::from).ok_or(anyhow!("Failed to convert {x:?} to String"))
+                })
+                .collect::<Result<_>>()?,
             ..Default::default()
         })
     }
diff --git a/microdroid/Android.bp b/microdroid/Android.bp
index 1092476..e2d7af4 100644
--- a/microdroid/Android.bp
+++ b/microdroid/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -16,7 +17,6 @@
     "sys",
 
     "system",
-    "vendor",
     "debug_ramdisk",
     "mnt",
     "data",
@@ -24,6 +24,10 @@
     "apex",
     "linkerconfig",
     "second_stage_resources",
+
+    // Ideally we should only create the /vendor for Microdroid VMs that will mount /vendor, but
+    // for the time being we will just create it unconditionally.
+    "vendor",
 ]
 
 microdroid_symlinks = [
@@ -41,7 +45,19 @@
     },
 ]
 
-android_system_image {
+soong_config_module_type {
+    name: "flag_aware_microdroid_system_image",
+    module_type: "android_system_image",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_multi_tenant_microdroid_vm",
+    ],
+    properties: [
+        "deps",
+    ],
+}
+
+flag_aware_microdroid_system_image {
     name: "microdroid",
     use_avb: true,
     avb_private_key: ":microdroid_sign_key",
@@ -49,17 +65,15 @@
     avb_hash_algorithm: "sha256",
     partition_name: "system",
     deps: [
-        "init_second_stage",
+        "init_second_stage.microdroid",
         "microdroid_build_prop",
         "microdroid_init_debug_policy",
         "microdroid_init_rc",
         "microdroid_ueventd_rc",
         "microdroid_launcher",
 
-        "libbinder",
         "libbinder_ndk",
         "libstdc++",
-        "secilc",
 
         // "com.android.adbd" requires these,
         "libadbd_auth",
@@ -79,9 +93,9 @@
         "microdroid_event-log-tags",
         "microdroid_file_contexts",
         "microdroid_manifest",
-        "microdroid_plat_sepolicy_and_mapping.sha256",
         "microdroid_property_contexts",
         "mke2fs.microdroid",
+        "microdroid_fstab",
 
         "libvm_payload", // used by payload to interact with microdroid manager
 
@@ -99,9 +113,8 @@
                 // non-updatable & mandatory apexes
                 "com.android.runtime",
 
-                "microdroid_plat_sepolicy.cil",
-                "microdroid_plat_mapping_file",
                 "microdroid_crashdump_initrd",
+                "microdroid_precompiled_sepolicy",
             ],
         },
         lib64: {
@@ -139,6 +152,16 @@
     fake_timestamp: "1611569676",
     // python -c "import uuid; print(uuid.uuid5(uuid.NAMESPACE_URL, 'www.android.com/avf/microdroid/system'))"
     uuid: "5fe079c6-f01a-52be-87d3-d415231a72ad",
+
+    // Below are dependencies that are conditionally enabled depending on value of build flags.
+    soong_config_variables: {
+        release_avf_enable_multi_tenant_microdroid_vm: {
+            deps: [
+                "microdroid_etc_passwd",
+                "microdroid_etc_group",
+            ],
+        },
+    },
 }
 
 prebuilt_etc {
@@ -156,6 +179,20 @@
     installable: false, // avoid collision with system partition's ueventd.rc
 }
 
+prebuilt_etc {
+    name: "microdroid_etc_passwd",
+    src: "microdroid_passwd",
+    filename: "passwd",
+    installable: false,
+}
+
+prebuilt_etc {
+    name: "microdroid_etc_group",
+    src: "microdroid_group",
+    filename: "group",
+    installable: false,
+}
+
 prebuilt_root {
     name: "microdroid_build_prop",
     filename: "build.prop",
@@ -207,26 +244,12 @@
         "echo ro.product.cpu.abi=arm64-v8a) > $(out)",
 }
 
+// Need to keep microdroid_vendor for the release configurations that don't
+// have RELEASE_AVF_ENABLE_VENDOR_MODULES build flag enabled.
 android_filesystem {
     name: "microdroid_vendor",
     partition_name: "vendor",
     use_avb: true,
-    deps: [
-        "microdroid_fstab",
-        "microdroid_precompiled_sepolicy.plat_sepolicy_and_mapping.sha256",
-        "microdroid_vendor_manifest",
-        "microdroid_vendor_compatibility_matrix",
-    ],
-    multilib: {
-        common: {
-            deps: [
-                "microdroid_vendor_sepolicy.cil",
-                "microdroid_plat_pub_versioned.cil",
-                "microdroid_plat_sepolicy_vers.txt",
-                "microdroid_precompiled_sepolicy",
-            ],
-        },
-    },
     avb_private_key: ":microdroid_sign_key",
     avb_algorithm: "SHA256_RSA4096",
     avb_hash_algorithm: "sha256",
@@ -237,7 +260,19 @@
     uuid: "156d40d7-8d8e-5c99-8913-ec82de549a70",
 }
 
-logical_partition {
+soong_config_module_type {
+    name: "flag_aware_microdroid_super_partition",
+    module_type: "logical_partition",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_vendor_modules",
+    ],
+    properties: [
+        "default_group",
+    ],
+}
+
+flag_aware_microdroid_super_partition {
     name: "microdroid_super",
     sparse: true,
     size: "auto",
@@ -246,17 +281,25 @@
             name: "system_a",
             filesystem: ":microdroid",
         },
-        {
-            name: "vendor_a",
-            filesystem: ":microdroid_vendor",
-        },
     ],
+    soong_config_variables: {
+        release_avf_enable_vendor_modules: {
+            conditions_default: {
+                default_group: [
+                    {
+                        name: "vendor_a",
+                        filesystem: ":microdroid_vendor",
+                    },
+                ],
+            },
+        },
+    },
 }
 
 android_filesystem {
     name: "microdroid_ramdisk",
     deps: [
-        "init_first_stage",
+        "init_first_stage.microdroid",
     ],
     dirs: [
         "dev",
@@ -272,7 +315,7 @@
 }
 
 android_filesystem {
-    name: "microdroid_vendor_ramdisk",
+    name: "microdroid_fstab_ramdisk",
     deps: [
         "microdroid_fstab",
     ],
@@ -328,14 +371,32 @@
     srcs: [":avb_testkey_rsa4096"],
 }
 
-vbmeta {
+soong_config_module_type {
+    name: "flag_aware_microdroid_vbmeta",
+    module_type: "vbmeta",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_vendor_modules",
+    ],
+    properties: [
+        "partitions",
+    ],
+}
+
+flag_aware_microdroid_vbmeta {
     name: "microdroid_vbmeta",
     partition_name: "vbmeta",
     private_key: ":microdroid_sign_key",
     partitions: [
-        "microdroid_vendor",
         "microdroid",
     ],
+    soong_config_variables: {
+        release_avf_enable_vendor_modules: {
+            conditions_default: {
+                partitions: ["microdroid_vendor"],
+            },
+        },
+    },
 }
 
 prebuilt_etc {
@@ -344,22 +405,6 @@
 }
 
 prebuilt_etc {
-    name: "microdroid_vendor_manifest",
-    src: "microdroid_vendor_manifest.xml",
-    filename: "manifest.xml",
-    relative_install_path: "vintf",
-    installable: false,
-}
-
-prebuilt_etc {
-    name: "microdroid_vendor_compatibility_matrix",
-    src: "microdroid_vendor_compatibility_matrix.xml",
-    filename: "compatibility_matrix.xml",
-    relative_install_path: "vintf",
-    installable: false,
-}
-
-prebuilt_etc {
     name: "microdroid_manifest",
     src: "microdroid_manifest.xml",
     filename: "manifest.xml",
@@ -387,11 +432,8 @@
 // python -c "import hashlib; print(hashlib.sha256(b'initrd_normal').hexdigest())"
 initrd_normal_salt = "8041a07d54ac82290f6d90bac1fa8d7fdbc4db974d101d60faf294749d1ebaf8"
 
-avb_gen_vbmeta_image {
-    name: "microdroid_initrd_normal_hashdesc",
-    src: ":microdroid_initrd_normal",
-    partition_name: "initrd_normal",
-    salt: initrd_normal_salt,
+avb_gen_vbmeta_image_defaults {
+    name: "microdroid_initrd_defaults",
     enabled: false,
     arch: {
         // Microdroid kernel is only available in these architectures.
@@ -404,44 +446,89 @@
     },
 }
 
+avb_gen_vbmeta_image_defaults {
+    name: "microdroid_initrd_normal_defaults",
+    defaults: ["microdroid_initrd_defaults"],
+    partition_name: "initrd_normal",
+    salt: initrd_normal_salt,
+}
+
+avb_gen_vbmeta_image {
+    name: "microdroid_initrd_normal_hashdesc",
+    defaults: ["microdroid_initrd_normal_defaults"],
+    src: ":microdroid_initrd_normal",
+}
+
 // python -c "import hashlib; print(hashlib.sha256(b'initrd_debug').hexdigest())"
 initrd_debug_salt = "8ab9dc9cb7e6456700ff6ef18c6b4c3acc24c5fa5381b829563f8d7a415d869a"
 
-avb_gen_vbmeta_image {
-    name: "microdroid_initrd_debug_hashdesc",
-    src: ":microdroid_initrd_debuggable",
+avb_gen_vbmeta_image_defaults {
+    name: "microdroid_initrd_debug_defaults",
+    defaults: ["microdroid_initrd_defaults"],
     partition_name: "initrd_debug",
     salt: initrd_debug_salt,
-    enabled: false,
-    arch: {
-        // Microdroid kernel is only available in these architectures.
-        arm64: {
-            enabled: true,
-        },
-        x86_64: {
-            enabled: true,
-        },
-    },
 }
 
-avb_add_hash_footer {
-    name: "microdroid_kernel_signed",
+avb_gen_vbmeta_image {
+    name: "microdroid_initrd_debug_hashdesc",
+    defaults: ["microdroid_initrd_debug_defaults"],
+    src: ":microdroid_initrd_debuggable",
+}
+
+soong_config_module_type {
+    name: "flag_aware_avb_add_hash_footer_defaults",
+    module_type: "avb_add_hash_footer_defaults",
+    config_namespace: "ANDROID",
+    bool_variables: [
+        "release_avf_enable_llpvm_changes",
+    ],
+    properties: [
+        "rollback_index",
+        "props",
+    ],
+}
+
+flag_aware_avb_add_hash_footer_defaults {
+    name: "microdroid_kernel_signed_defaults",
     src: ":empty_file",
-    filename: "microdroid_kernel",
     partition_name: "boot",
     private_key: ":microdroid_sign_key",
     salt: bootloader_salt,
     enabled: false,
     arch: {
         arm64: {
-            src: ":microdroid_kernel_prebuilts-6.1-arm64",
             enabled: true,
         },
         x86_64: {
-            src: ":microdroid_kernel_prebuilts-6.1-x86_64",
             enabled: true,
         },
     },
+    // Below are properties that are conditionally set depending on value of build flags.
+    soong_config_variables: {
+        release_avf_enable_llpvm_changes: {
+            rollback_index: 1,
+            props: [
+                {
+                    name: "com.android.virt.cap",
+                    value: "secretkeeper_protection",
+                },
+            ],
+        },
+    },
+}
+
+avb_add_hash_footer {
+    name: "microdroid_kernel_signed",
+    defaults: ["microdroid_kernel_signed_defaults"],
+    filename: "microdroid_kernel",
+    arch: {
+        arm64: {
+            src: ":microdroid_kernel_prebuilts-6.1-arm64",
+        },
+        x86_64: {
+            src: ":microdroid_kernel_prebuilts-6.1-x86_64",
+        },
+    },
     include_descriptors_from_images: [
         ":microdroid_initrd_normal_hashdesc",
         ":microdroid_initrd_debug_hashdesc",
@@ -461,3 +548,55 @@
         },
     },
 }
+
+///////////////////////////////////////
+// GKI-android14-6.1 modules
+///////////////////////////////////////
+prebuilt_etc {
+    name: "microdroid_gki-android14-6.1.json",
+    src: "microdroid_gki-android14-6.1.json",
+}
+
+avb_add_hash_footer {
+    name: "microdroid_gki-android14-6.1_kernel_signed",
+    defaults: ["microdroid_kernel_signed_defaults"],
+    filename: "microdroid_gki-android14-6.1_kernel",
+    arch: {
+        arm64: {
+            src: ":microdroid_gki_kernel_prebuilts-6.1-arm64",
+        },
+        x86_64: {
+            src: ":microdroid_gki_kernel_prebuilts-6.1-x86_64",
+        },
+    },
+    include_descriptors_from_images: [
+        ":microdroid_gki-android14-6.1_initrd_normal_hashdesc",
+        ":microdroid_gki-android14-6.1_initrd_debug_hashdesc",
+    ],
+}
+
+prebuilt_etc {
+    name: "microdroid_gki-android14-6.1_kernel",
+    src: ":empty_file",
+    relative_install_path: "fs",
+    arch: {
+        arm64: {
+            src: ":microdroid_gki-android14-6.1_kernel_signed",
+        },
+        x86_64: {
+            src: ":microdroid_gki-android14-6.1_kernel_signed",
+        },
+    },
+}
+
+avb_gen_vbmeta_image {
+    name: "microdroid_gki-android14-6.1_initrd_normal_hashdesc",
+    defaults: ["microdroid_initrd_normal_defaults"],
+    src: ":microdroid_gki-android14-6.1_initrd_normal",
+}
+
+avb_gen_vbmeta_image {
+    name: "microdroid_gki-android14-6.1_initrd_debug_hashdesc",
+    defaults: ["microdroid_initrd_debug_defaults"],
+    src: ":microdroid_gki-android14-6.1_initrd_debuggable",
+}
diff --git a/microdroid/README.md b/microdroid/README.md
index 71be7d0..c82ef0b 100644
--- a/microdroid/README.md
+++ b/microdroid/README.md
@@ -8,8 +8,7 @@
 ## Prerequisites
 
 Any 64-bit target (either x86\_64 or arm64) is supported. 32-bit target is not
-supported. Note that we currently don't support user builds; only userdebug
-builds are supported.
+supported.
 
 The only remaining requirement is that `com.android.virt` APEX has to be
 pre-installed. To do this, add the following line in your product makefile.
@@ -18,10 +17,10 @@
 $(call inherit-product, packages/modules/Virtualization/apex/product_packages.mk)
 ```
 
-Build the target after adding the line, and flash it. This step needs to be done
-only once for the target.
+Build the target product after adding the line, and flash it. This step needs
+to be done only once for the target.
 
-If you are using `aosp_oriole` (Pixel 6) or `aosp_cf_x86_64_phone` (Cuttlefish),
+If you are using Pixel 6 and beyond or Cuttlefish (`aosp_cf_x86_64_phone`)
 adding above line is not necessary as it's already done.
 
 ## Building and installing microdroid
@@ -41,8 +40,11 @@
 
 ## Building an app
 
-An app in microdroid is a shared library file embedded in an APK. The shared
-library should have an entry point `AVmPayload_main` as shown below:
+A [vm
+payload](https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/master/vm_payload/)
+is a shared library file that gets executed in microdroid. It is packaged as
+part of an Android application.  The library should have an entry point
+`AVmPayload_main` as shown below:
 
 ```C++
 extern "C" int AVmPayload_main() {
@@ -54,53 +56,22 @@
 
 ```
 cc_library_shared {
-  name: "MyMicrodroidApp",
+  name: "MyMicrodroidPayload",
   srcs: ["**/*.cpp"],
   sdk_version: "current",
 }
 ```
 
-Then you need a configuration file in JSON format that defines what to load and
-execute in microdroid. The name of the file can be anything and you may have
-multiple configuration files if needed.
-
-```json
-{
-  "os": { "name": "microdroid" },
-  "task": {
-    "type": "microdroid_launcher",
-    "command": "MyMicrodroidApp.so"
-  }
-}
-```
-
-The value of `task.command` should match with the name of the shared library
-defined above. If your app requires APEXes to be imported, you can declare the
-list in `apexes` key like following.
-
-```json
-{
-  "os": ...,
-  "task": ...,
-  "apexes": [
-    {"name": "com.android.awesome_apex"}
-  ]
-}
-```
-
-Embed the shared library and the VM configuration file in an APK:
+Embed the shared library file in an APK:
 
 ```
 android_app {
   name: "MyApp",
-  srcs: ["**/*.java"], // if there is any java code
-  jni_libs: ["MyMicrodroidApp"],
+  srcs: ["**/*.java"],
+  jni_libs: ["MyMicrodroidPayload"],
   use_embedded_native_libs: true,
   sdk_version: "current",
 }
-
-// The VM configuration file can be embedded by simply placing it at `./assets`
-// directory.
 ```
 
 Finally, you build the APK.
@@ -109,7 +80,7 @@
 TARGET_BUILD_APPS=MyApp m apps_only dist
 ```
 
-## Running the app on microdroid
+## Running the VM payload on microdroid
 
 First of all, install the APK to the target device.
 
@@ -117,22 +88,16 @@
 adb install out/dist/MyApp.apk
 ```
 
-`ALL_CAP`s below are placeholders. They need to be replaced with correct
-values:
+There are two ways start a VM and run the payload in it.
 
-* `VM_CONFIG_FILE`: the name of the VM config file that you embedded in the APK.
-  (e.g. `vm_config.json`)
-* `PACKAGE_NAME_OF_YOUR_APP`: package name of your app (e.g. `com.acme.app`).
-* `PATH_TO_YOUR_APP`: path to the installed APK on the device. Can be obtained
-  via the following command.
-  ```sh
-  adb shell pm path PACKAGE_NAME_OF_YOUR_APP
-  ```
-  It shall report a cryptic path similar to `/data/app/~~OgZq==/com.acme.app-HudMahQ==/base.apk`.
+* By manually invoking the `vm` tool via `adb shell`.
+* Calling APIs programmatically in the Java app.
+
+### Using `vm` tool
 
 Execute the following commands to launch a VM. The VM will boot to microdroid
-and then automatically execute your app (the shared library
-`MyMicrodroidApp.so`).
+and then automatically execute your payload (the shared library
+`MyMicrodroidPayload.so`).
 
 ```sh
 TEST_ROOT=/data/local/tmp/virt
@@ -142,91 +107,84 @@
 PATH_TO_YOUR_APP \
 $TEST_ROOT/MyApp.apk.idsig \
 $TEST_ROOT/instance.img \
---config-path assets/VM_CONFIG_FILE
+--payload-binary-name MyMicrodroidPayload.so
 ```
 
-The last command lets you know the CID assigned to the VM. The console output
-from the VM is stored to `$TEST_ROOT/console.txt` and logcat is stored to
-`$TEST_ROOT/log.txt` file for debugging purpose. If you omit `--log` or
-`--console` option, they will be emitted to the current console.
+`ALL_CAP`s below are placeholders. They need to be replaced with correct
+values:
 
-Stopping the VM can be done as follows:
+* `PACKAGE_NAME_OF_YOUR_APP`: package name of your app (e.g. `com.acme.app`).
+* `PATH_TO_YOUR_APP`: path to the installed APK on the device. Can be obtained
+  via the following command.
+  ```sh
+  adb shell pm path PACKAGE_NAME_OF_YOUR_APP
+  ```
+  It shall report a cryptic path similar to `/data/app/~~OgZq==/com.acme.app-HudMahQ==/base.apk`.
+
+The console output from the VM is stored to `$TEST_ROOT/console.txt` and logcat
+is stored to `$TEST_ROOT/log.txt` file for debugging purpose. If you omit
+`--log` or `--console` option, the console output will be emitted to the
+current console and the logcat logs are sent to the main logcat in Android.
+
+Stopping the VM can be done by pressing `Ctrl+C`.
+
+### Using the APIs
+
+Use the [Android Virtualization Framework Java
+APIs](https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/master/javalib/api/system-current.txt)
+in your app to create a microdroid VM and run payload in it. The APIs currently
+are @SystemApi, thus available only to privileged apps.
+
+If you are looking for an example usage of the APIs, you may refer to the [demo
+app](https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/master/demo/).
+
+
+## Running Microdroid with vendor image
+
+With using `vm` tool, execute the following commands to launch a VM with vendor
+partition.
 
 ```sh
-adb shell /apex/com.android.virt/bin/vm stop $CID
+adb shell /apex/com.android.virt/bin/vm run-microdroid \
+--vendor $VENDOR_IMAGE
 ```
 
-, where `$CID` is the reported CID value. This works only when the `vm` was
-invoked with the `--daemonize` flag. If the flag was not used, press Ctrl+C on
-the console where the `vm run-app` command was invoked.
+### Verification of vendor image
 
-## Debuggable microdroid
+Since vendor image of Microdroid is not part of `com.android.virt` APEX, the
+verification process of vendor partition is different from others.
 
-### Debugging features
-Microdroid supports following debugging features:
-
-- VM log
-- console output
-- kernel output
-- logcat output
-- [ramdump](../docs/debug/ramdump.md)
-- crashdump
-- [adb](#adb)
-- [gdb](#debugging-the-payload-on-microdroid)
-
-### Enabling debugging features
-There's two ways to enable the debugging features:
-
-#### Option 1) Running microdroid on AVF debug policy configured device
-
-microdroid can be started with debugging features by debug policies from the
-host. Host bootloader may provide debug policies to host OS's device tree for
-VMs. Host bootloader MUST NOT provide debug policies for locked devices for
-security reasons.
-
-For protected VM, such device tree will be available in microdroid. microdroid
-can check which debuging features is enabled.
-
-Here are list of device tree properties for debugging features.
-
-- `/avf/guest/common/log`: `<1>` to enable kernel log and logcat. Ignored
-  otherwise.
-- `/avf/guest/common/ramdump`: `<1>` to enable ramdump. Ignored otherwise.
-- `/avf/guest/microdroid/adb`: `<1>` to enable `adb`. Ignored otherwise.
-
-#### Option 2) Lauching microdroid with debug level.
-
-microdroid can be started with debugging features. To do so, first, delete
-`$TEST_ROOT/instance.img`; this is because changing debug settings requires a
-new instance. Then add the `--debug=full` flag to the
-`/apex/com.android.virt/bin/vm run-app` command. This will enable all debugging
-features.
-
-### ADB
-
-If `adb` connection is enabled, launch following command.
+Vendor image uses its hashtree digest for the verifying its data, generated
+by `add_hashtree_footer` in `avbtool`. The value could be seen with following
+command:
 
 ```sh
-vm_shell
+avbtool info_image --image $VENDOR_IMAGE
 ```
 
-Done. Now you are logged into Microdroid. Have fun!
+Fixed path in VM for vendor hashtree digest is written in [fstab.microdroid].
+During first stage init of VM, [dm-verity] is set up based on vendor hashtree
+digest by reading [fstab.microdroid].
 
-Once you have an adb connection with `vm_shell`, `localhost:8000` will be the
-serial of microdroid.
+For non-pVM, virtualizationmanager creates [DTBO] containing vendor hashtree
+digest, and passes to the VM via crosvm option. The vendor hashtree digest is
+obtained by virtualizationmanager from the host Android DT under
+`/avf/reference/`, which may be populated by the [bootloader].
 
-### Debugging the payload on microdroid
+For pVM, VM reference DT included in [pvmfw config data] is additionally used
+for validating vendor hashtree digest. [Bootloader][bootloader] should append
+vendor hashtree digest into VM reference DT based on [fstab.microdroid]. Vendor
+hashtree digest could be appended as property into descriptors in host Android's
+vendor image by [Makefile] when Microdroid vendor image module is defined, so
+that a [bootloader] can extract the value and populate into VM reference DT.
 
-Like a normal adb device, you can debug native processes using `lldbclient.py`
-script, either by running a new process, or attaching to an existing process.
-Use `vm_shell` tool above, and then run `lldbclient.py`.
+[fstab.microdroid]: fstab.microdroid
+[dm-verity]: https://source.android.com/docs/security/features/verifiedboot/dm-verity
+[DTBO]: https://android.googlesource.com/platform/external/dtc/+/refs/heads/main/Documentation/dt-object-internal.txt
+[pvmfw config data]: ../pvmfw/README.md#configuration-data-format
+[bootloader]: https://source.android.com/docs/core/architecture/bootloader
+[Makefile]: https://cs.android.com/android/platform/superproject/main/+/main:build/make/core/Makefile
 
-```sh
-adb -s localhost:8000 shell 'mount -o remount,exec /data'
-development/scripts/lldbclient.py -s localhost:8000 --chroot . --user '' \
-    (-p PID | -n NAME | -r ...)
-```
+## Debugging Microdroid
 
-**Note:** We need to pass `--chroot .` to skip verifying device, because
-microdroid doesn't match with the host's lunch target. We need to also pass
-`--user ''` as there is no `su` binary in microdroid.
+Refer to [Debugging protected VMs](../docs/debug/README.md).
diff --git a/microdroid/bootconfig.x86_64 b/microdroid/bootconfig.x86_64
index 6076889..eed9212 100644
--- a/microdroid/bootconfig.x86_64
+++ b/microdroid/bootconfig.x86_64
@@ -1 +1 @@
-androidboot.boot_devices = pci0000:00/0000:00:04.0,pci0000:00/0000:00:05.0,pci0000:00/0000:00:06.0
+androidboot.boot_devices = pci0000:00/0000:00:04.0,pci0000:00/0000:00:05.0,pci0000:00/0000:00:06.0,pci0000:00/0000:00:07.0
diff --git a/microdroid/fstab.microdroid b/microdroid/fstab.microdroid
index 25d82cc..3209442 100644
--- a/microdroid/fstab.microdroid
+++ b/microdroid/fstab.microdroid
@@ -1,2 +1,5 @@
 system /system ext4 noatime,ro,errors=panic wait,slotselect,avb=vbmeta,first_stage_mount,logical
-vendor /vendor ext4 noatime,ro,errors=panic wait,slotselect,avb=vbmeta,first_stage_mount,logical
+# This is a temporary solution to unblock other devs that depend on /vendor partition in Microdroid
+# The /vendor partition will only be mounted if the kernel cmdline contains
+# androidboot.microdroid.mount_vendor=1.
+/dev/block/by-name/microdroid-vendor /vendor ext4 noatime,ro,errors=panic wait,first_stage_mount,avb_hashtree_digest=/proc/device-tree/avf/vendor_hashtree_descriptor_root_digest
diff --git a/microdroid/init.rc b/microdroid/init.rc
index 2298821..672f47d 100644
--- a/microdroid/init.rc
+++ b/microdroid/init.rc
@@ -12,6 +12,11 @@
 
 # Cgroups are mounted right before early-init using list from /etc/cgroups.json
 on early-init
+    # Android doesn't need kernel module autoloading, and it causes SELinux
+    # denials.  So disable it by setting modprobe to the empty string.  Note: to
+    # explicitly set a sysctl to an empty string, a trailing newline is needed.
+    write /proc/sys/kernel/modprobe \n
+
     # set RLIMIT_NICE to allow priorities from 19 to -20
     setrlimit nice 40 40
 
@@ -25,15 +30,21 @@
     # We don't directly exec the binary to specify stdio_to_kmsg.
     exec_start init_debug_policy
 
+    # Wait for ueventd to have finished cold boot.
+    # This is needed by prng-seeder (at least).
+    # (In Android this happens inside apexd-bootstrap.)
+    wait_for_prop ro.cold_boot_done true
+
 on init
-    mkdir /mnt/apk 0755 system system
+    mkdir /mnt/apk 0755 root root
     mkdir /mnt/extra-apk 0755 root root
+
+    # Allow the payload access to the console (default is 0600)
+    chmod 0666 /dev/console
+
     # Microdroid_manager starts apkdmverity/zipfuse/apexd
     start microdroid_manager
 
-    # restorecon so microdroid_manager can create subdirectories
-    restorecon /mnt/extra-apk
-
     # Wait for apexd to finish activating APEXes before starting more processes.
     # Microdroid starts apexd in VM mode in which apexd doesn't wait for init after setting
     # apexd.status to activated, but immediately transitions to ready. Therefore, it's not safe to
@@ -83,9 +94,6 @@
 
     trigger post-fs-data
 
-    # Load persist properties and override properties (if enabled) from /data.
-    trigger load_persist_props_action
-
     trigger early-boot
     trigger boot
 
@@ -163,6 +171,7 @@
     setenv HOSTNAME console
 
 service init_debug_policy /system/bin/init_debug_policy
+    user root
     oneshot
     disabled
     stdio_to_kmsg
diff --git a/microdroid/init_debug_policy/Android.bp b/microdroid/init_debug_policy/Android.bp
index afc2e73..320417d 100644
--- a/microdroid/init_debug_policy/Android.bp
+++ b/microdroid/init_debug_policy/Android.bp
@@ -1,15 +1,16 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_binary {
     name: "microdroid_init_debug_policy",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/init_debug_policy.rs"],
     stem: "init_debug_policy",
     rustlibs: [
         "librustutils",
     ],
-    installable: false, // match with microdroid_init_rc.
     bootstrap: true,
     prefer_rlib: true,
 }
diff --git a/microdroid/init_debug_policy/src/init_debug_policy.rs b/microdroid/init_debug_policy/src/init_debug_policy.rs
index 6c80926..90d04ac 100644
--- a/microdroid/init_debug_policy/src/init_debug_policy.rs
+++ b/microdroid/init_debug_policy/src/init_debug_policy.rs
@@ -29,11 +29,10 @@
 }
 
 fn main() -> Result<(), PropertyWatcherError> {
-    // If VM is debuggable or debug policy says so, send logs to outside ot the VM via the serial console.
-    // Otherwise logs are internally consumed at /dev/null
+    // If VM is debuggable or debug policy says so, send logs to outside ot the VM via the serial
+    // console. Otherwise logs are internally consumed at /dev/null
     let log_path = if system_properties::read_bool("ro.boot.microdroid.debuggable", false)?
-        || get_debug_policy_bool("/sys/firmware/devicetree/base/avf/guest/common/log")
-            .unwrap_or_default()
+        || get_debug_policy_bool("/proc/device-tree/avf/guest/common/log").unwrap_or_default()
     {
         "/dev/hvc2"
     } else {
@@ -42,8 +41,7 @@
     system_properties::write("ro.log.file_logger.path", log_path)?;
 
     let (adbd_enabled, debuggable) = if system_properties::read_bool("ro.boot.adb.enabled", false)?
-        || get_debug_policy_bool("/sys/firmware/devicetree/base/avf/guest/microdroid/adb")
-            .unwrap_or_default()
+        || get_debug_policy_bool("/proc/device-tree/avf/guest/microdroid/adb").unwrap_or_default()
     {
         // debuggable is required for adb root and bypassing adb authorization.
         ("1", "1")
diff --git a/microdroid/initrd/Android.bp b/microdroid/initrd/Android.bp
index 22a06e1..6f1c9a1 100644
--- a/microdroid/initrd/Android.bp
+++ b/microdroid/initrd/Android.bp
@@ -1,9 +1,11 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_binary_host {
     name: "initrd_bootconfig",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     rustlibs: [
         "libanyhow",
@@ -14,6 +16,7 @@
 
 rust_test_host {
     name: "initrd_bootconfig.test",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     rustlibs: [
         "libanyhow",
@@ -32,7 +35,29 @@
     name: "microdroid_initrd_gen",
     srcs: [
         ":microdroid_ramdisk",
-        ":microdroid_vendor_ramdisk",
+        ":microdroid_fstab_ramdisk",
+    ],
+    out: ["microdroid_initrd.img"],
+    cmd: "cat $(in) > $(out)",
+}
+
+genrule {
+    name: "microdroid_gki-android14-6.1_initrd_gen_arm64",
+    srcs: [
+        ":microdroid_ramdisk",
+        ":microdroid_fstab_ramdisk",
+        ":microdroid_gki_modules-6.1-arm64",
+    ],
+    out: ["microdroid_initrd.img"],
+    cmd: "cat $(in) > $(out)",
+}
+
+genrule {
+    name: "microdroid_gki-android14-6.1_initrd_gen_x86_64",
+    srcs: [
+        ":microdroid_ramdisk",
+        ":microdroid_fstab_ramdisk",
+        ":microdroid_gki_modules-6.1-x86_64",
     ],
     out: ["microdroid_initrd.img"],
     cmd: "cat $(in) > $(out)",
@@ -72,6 +97,17 @@
 }
 
 genrule {
+    name: "microdroid_gki-android14-6.1_initrd_debuggable_arm64",
+    tools: ["initrd_bootconfig"],
+    srcs: [
+        ":microdroid_gki-android14-6.1_initrd_gen_arm64",
+        ":microdroid_bootconfig_debuggable_src",
+    ] + bootconfigs_arm64,
+    out: ["microdroid_gki-android14-6.1_initrd_debuggable_arm64"],
+    cmd: "$(location initrd_bootconfig) attach --output $(out) $(in)",
+}
+
+genrule {
     name: "microdroid_initrd_debuggable_x86_64",
     tools: ["initrd_bootconfig"],
     srcs: [
@@ -83,6 +119,17 @@
 }
 
 genrule {
+    name: "microdroid_gki-android14-6.1_initrd_debuggable_x86_64",
+    tools: ["initrd_bootconfig"],
+    srcs: [
+        ":microdroid_gki-android14-6.1_initrd_gen_x86_64",
+        ":microdroid_bootconfig_debuggable_src",
+    ] + bootconfigs_x86_64,
+    out: ["microdroid_gki-android14-6.1_initrd_debuggable_x86_64"],
+    cmd: "$(location initrd_bootconfig) attach --output $(out) $(in)",
+}
+
+genrule {
     name: "microdroid_initrd_normal_arm64",
     tools: ["initrd_bootconfig"],
     srcs: [
@@ -94,6 +141,17 @@
 }
 
 genrule {
+    name: "microdroid_gki-android14-6.1_initrd_normal_arm64",
+    tools: ["initrd_bootconfig"],
+    srcs: [
+        ":microdroid_gki-android14-6.1_initrd_gen_arm64",
+        ":microdroid_bootconfig_normal_src",
+    ] + bootconfigs_arm64,
+    out: ["microdroid_gki-android14-6.1_initrd_normal_arm64"],
+    cmd: "$(location initrd_bootconfig) attach --output $(out) $(in)",
+}
+
+genrule {
     name: "microdroid_initrd_normal_x86_64",
     tools: ["initrd_bootconfig"],
     srcs: [
@@ -104,6 +162,17 @@
     cmd: "$(location initrd_bootconfig) attach --output $(out) $(in)",
 }
 
+genrule {
+    name: "microdroid_gki-android14-6.1_initrd_normal_x86_64",
+    tools: ["initrd_bootconfig"],
+    srcs: [
+        ":microdroid_gki-android14-6.1_initrd_gen_x86_64",
+        ":microdroid_bootconfig_normal_src",
+    ] + bootconfigs_x86_64,
+    out: ["microdroid_gki-android14-6.1_initrd_normal_x86_64"],
+    cmd: "$(location initrd_bootconfig) attach --output $(out) $(in)",
+}
+
 prebuilt_etc {
     name: "microdroid_initrd_debuggable",
     // We don't have ramdisk for architectures other than x86_64 & arm64
@@ -120,6 +189,21 @@
 }
 
 prebuilt_etc {
+    name: "microdroid_gki-android14-6.1_initrd_debuggable",
+    // We don't have ramdisk for architectures other than x86_64 & arm64
+    src: ":empty_file",
+    arch: {
+        x86_64: {
+            src: ":microdroid_gki-android14-6.1_initrd_debuggable_x86_64",
+        },
+        arm64: {
+            src: ":microdroid_gki-android14-6.1_initrd_debuggable_arm64",
+        },
+    },
+    filename: "microdroid_gki-android14-6.1_initrd_debuggable.img",
+}
+
+prebuilt_etc {
     name: "microdroid_initrd_normal",
     // We don't have ramdisk for architectures other than x86_64 & arm64
     src: ":empty_file",
@@ -133,3 +217,18 @@
     },
     filename: "microdroid_initrd_normal.img",
 }
+
+prebuilt_etc {
+    name: "microdroid_gki-android14-6.1_initrd_normal",
+    // We don't have ramdisk for architectures other than x86_64 & arm64
+    src: ":empty_file",
+    arch: {
+        x86_64: {
+            src: ":microdroid_gki-android14-6.1_initrd_normal_x86_64",
+        },
+        arm64: {
+            src: ":microdroid_gki-android14-6.1_initrd_normal_arm64",
+        },
+    },
+    filename: "microdroid_gki-android14-6.1_initrd_normal.img",
+}
diff --git a/microdroid/kdump/Android.bp b/microdroid/kdump/Android.bp
index cc681a7..ff73fdb 100644
--- a/microdroid/kdump/Android.bp
+++ b/microdroid/kdump/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -18,6 +19,9 @@
     static_executable: true,
     installable: false,
     compile_multilib: "64",
+    sanitize: {
+        hwaddress: false, // HWASAN setup fails when run as init process
+    },
 }
 
 android_filesystem {
diff --git a/microdroid/kdump/kernel/Android.bp b/microdroid/kdump/kernel/Android.bp
index 0705875..9d241b4 100644
--- a/microdroid/kdump/kernel/Android.bp
+++ b/microdroid/kdump/kernel/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["microdroid_crashdump_kernel_license"],
 }
 
diff --git a/microdroid/kernel/README.md b/microdroid/kernel/README.md
index 78ac81b..92b7cfe 100644
--- a/microdroid/kernel/README.md
+++ b/microdroid/kernel/README.md
@@ -19,13 +19,13 @@
 For ARM64
 ```bash
 tools/bazel clean
-tools/bazel run --config=fast --lto=thin //common-modules/virtual-device:microdroid_aarch64_dist -- --dist_dir=out/dist
+tooln/bazel run --config=fast //common:kernel_aarch64_microdroid_dist -- --dist_dir=out/dist
 ```
 
 For x86\_64,
 ```bash
 tools/bazel clean
-tools/bazel run --config=fast --lto=thin //common-modules/virtual-device:microdroid_x86_64_dist -- --dist_dir=out/dist
+tools/bazel run --config=fast //common:kernel_x86_64_microdroid_dist -- --dist_dir=out/dist
 ```
 
 Note that
@@ -39,12 +39,12 @@
 
 For ARM64
 ```bash
-tools/bazel run //common-modules/virtual-device:microdroid_aarch64_config -- menuconfig
+tools/bazel run //common:kernel_aarch64_microdroid_config -- menuconfig
 ```
 
 For x86\_64
 ```bash
-tools/bazel run //common-modules/virtual-device:microdroid_x86_64_config -- menuconfig
+tools/bazel run //common:kernel_x86_64_microdroid_config -- menuconfig
 ```
 
 ## How to update Microdroid kernel prebuilts
diff --git a/microdroid/kernel/arm64/Android.bp b/microdroid/kernel/arm64/Android.bp
index 0975993..e014509 100644
--- a/microdroid/kernel/arm64/Android.bp
+++ b/microdroid/kernel/arm64/Android.bp
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["microdroid_kernel_prebuilts_6.1_arm64_license"],
 }
 
diff --git a/microdroid/kernel/arm64/System.map b/microdroid/kernel/arm64/System.map
index e47dab1..da905ae 100644
--- a/microdroid/kernel/arm64/System.map
+++ b/microdroid/kernel/arm64/System.map
@@ -6,10 +6,12 @@
 0000000000000013 n __pi_$d.9
 0000000000000200 A PECOFF_FILE_ALIGNMENT
 0000000000050794 W __kcfi_typeid_suspend_valid_only_mem
-0000000000166008 A __pecoff_data_rawsize
+0000000000169808 A __pecoff_data_rawsize
 00000000001d0000 A __pecoff_data_size
-0000000000d20000 A _kernel_size_le_lo32
+0000000000d40000 A _kernel_size_le_lo32
+0000000001fd98ea W __kcfi_typeid_jbd2_journal_begin_ordered_truncate
 000000000259e934 W __kcfi_typeid_fsnotify_fasync
+0000000003a7dfe7 W __kcfi_typeid_get_wchan
 0000000003e49e0a W __kcfi_typeid_sock_no_mmap
 0000000003e49e0a W __kcfi_typeid_tcp_mmap
 000000000446658f W __kcfi_typeid_block_dirty_folio
@@ -37,6 +39,8 @@
 000000000fc0ce0e W __kcfi_typeid_ipv6_chk_addr
 000000001023d6f5 W __kcfi_typeid_vp_set_vq_affinity
 00000000103cf9a6 W __kcfi_typeid_virtio_transport_stream_is_active
+0000000010d4bcd4 W __kcfi_typeid_jbd2_journal_inode_ranged_wait
+0000000010d4bcd4 W __kcfi_typeid_jbd2_journal_inode_ranged_write
 0000000011381db9 W __kcfi_typeid_dyn_event_seq_start
 0000000011381db9 W __kcfi_typeid_raw_seq_start
 0000000011381db9 W __kcfi_typeid_tcp_seq_start
@@ -46,7 +50,9 @@
 000000001319d866 W __kcfi_typeid_virtio_transport_release
 0000000013f5dc51 W __kcfi_typeid_cpu_soft_restart
 00000000164ecb41 W __kcfi_typeid_gen_pool_first_fit_order_align
+0000000016c516ce W __kcfi_typeid_cmp_name
 0000000019166a11 W __kcfi_typeid_irq_chip_set_type_parent
+00000000192357e3 W __kcfi_typeid_jbd2_journal_extend
 00000000197bda7d W __kcfi_typeid_shash_free_singlespawn_instance
 00000000199d7b56 W __kcfi_typeid_clk_unprepare
 000000001a69492f W __kcfi_typeid_selinux_audit_rule_known
@@ -127,6 +133,8 @@
 0000000036b1c5a6 W __kcfi_typeid_dm_stripe_init
 0000000036b1c5a6 W __kcfi_typeid_dm_target_init
 0000000036b1c5a6 W __kcfi_typeid_syscall_regfunc
+0000000036b1c5a6 W __kcfi_typeid_zlib_deflate_dfltcc_enabled
+0000000036b1c5a6 W __kcfi_typeid_zlib_inflate_workspacesize
 000000003842060f W __kcfi_typeid_inet6_hash
 000000003842060f W __kcfi_typeid_inet6_sk_rebuild_header
 000000003842060f W __kcfi_typeid_inet_hash
@@ -151,6 +159,9 @@
 000000003cb003d2 W __kcfi_typeid_filemap_map_pages
 000000003cbe5c40 W __kcfi_typeid_simple_rmdir
 000000003cbe5c40 W __kcfi_typeid_simple_unlink
+000000003d81ce61 W __kcfi_typeid_zlib_deflate
+000000003d81ce61 W __kcfi_typeid_zlib_inflate
+000000003d81ce61 W __kcfi_typeid_zlib_inflateInit2
 000000003e7ff605 W __kcfi_typeid_idmap_cpu_replace_ttbr1
 000000003f45655f W __kcfi_typeid_pcie_port_device_resume
 000000003f45655f W __kcfi_typeid_pcie_port_device_resume_noirq
@@ -192,6 +203,11 @@
 000000004aa8d226 W __kcfi_typeid_inet_csk_accept
 000000004b24802b W __kcfi_typeid_fib6_update_sernum_stub
 000000004b9a87fc W __kcfi_typeid_virtio_transport_notify_buffer_size
+000000004bfcd6c9 W __kcfi_typeid_jbd2_journal_dirty_metadata
+000000004bfcd6c9 W __kcfi_typeid_jbd2_journal_forget
+000000004bfcd6c9 W __kcfi_typeid_jbd2_journal_get_create_access
+000000004bfcd6c9 W __kcfi_typeid_jbd2_journal_get_undo_access
+000000004bfcd6c9 W __kcfi_typeid_jbd2_journal_get_write_access
 000000004c4af168 W __kcfi_typeid_irq_chip_eoi_parent
 000000004c4af168 W __kcfi_typeid_irq_chip_mask_parent
 000000004c4af168 W __kcfi_typeid_irq_chip_unmask_parent
@@ -231,6 +247,7 @@
 000000004d6f256d W __kcfi_typeid_vmstat_refresh
 000000004d6f256d W __kcfi_typeid_watermark_scale_factor_sysctl_handler
 000000004ef06be5 W __kcfi_typeid_block_invalidate_folio
+000000005012fea2 W __kcfi_typeid_jbd2_journal_set_triggers
 0000000050ad483a W __kcfi_typeid___sock_wfree
 0000000050ad483a W __kcfi_typeid_sock_edemux
 0000000050ad483a W __kcfi_typeid_sock_efree
@@ -264,6 +281,7 @@
 00000000553af81d W __kcfi_typeid_simple_rename
 0000000055502bc6 W __kcfi_typeid_dm_attr_rq_based_seq_io_merge_deadline_store
 0000000056127c22 W __kcfi_typeid_alloc_migration_target
+0000000056e5b5a5 W __kcfi_typeid_zlib_deflate_workspacesize
 000000005745d56a W __kcfi_typeid_pci_configure_extended_tags
 0000000057538c6c W __kcfi_typeid_inet6_release
 0000000057538c6c W __kcfi_typeid_tcp_peek_len
@@ -336,6 +354,8 @@
 0000000072c1bba1 W __kcfi_typeid_it_real_fn
 0000000072c1bba1 W __kcfi_typeid_rtc_pie_update_irq
 0000000072c1bba1 W __kcfi_typeid_tcp_pace_kick
+0000000074420706 W __kcfi_typeid_jbd2_journal_finish_inode_data_buffers
+0000000074420706 W __kcfi_typeid_jbd2_journal_submit_inode_data_buffers
 00000000766118e0 W __kcfi_typeid_dst_blackhole_redirect
 00000000770f2419 W __kcfi_typeid_dma_common_free_pages
 000000007803447f W __kcfi_typeid_common_timer_get
@@ -350,6 +370,8 @@
 000000007a328bc0 W __kcfi_typeid_tracing_map_cmp_string
 000000007a7092a4 W __kcfi_typeid_bit_wait
 000000007a7092a4 W __kcfi_typeid_bit_wait_io
+000000007b3ee230 W __kcfi_typeid_jbd2_journal_stop
+000000007b6583b8 W __kcfi_typeid_zlib_inflate_blob
 000000007c2a8460 W __kcfi_typeid_virtio_transport_dgram_dequeue
 000000007c4aa698 W __kcfi_typeid_dm_kobject_release
 000000007c5d920d W __kcfi_typeid_simple_link
@@ -398,6 +420,8 @@
 000000008a8e9d6c W __kcfi_typeid_event_enable_register_trigger
 000000008a8e9d6c W __kcfi_typeid_set_trigger_filter
 000000008b89284a W __kcfi_typeid_do_ipv6_getsockopt
+000000008bdcf322 W __kcfi_typeid_zlib_deflateInit2
+000000008d7e8a6b W __kcfi_typeid_jbd2_journal_revoke
 000000008db9d2a6 W __kcfi_typeid_inet6_csk_addr2sockaddr
 000000008db9d2a6 W __kcfi_typeid_inet_csk_addr2sockaddr
 000000008eb82f57 W __kcfi_typeid___ip6_local_out
@@ -534,6 +558,7 @@
 000000009a660ea0 W __kcfi_typeid_proc_simple_write
 000000009a660ea0 W __kcfi_typeid_slabinfo_write
 000000009c0134f1 W __kcfi_typeid_dev_get_tstats64
+000000009c4f1b4c W __kcfi_typeid_jbd2_journal_try_to_free_buffers
 000000009cef13a9 W __kcfi_typeid_dst_blackhole_check
 000000009ded0bf0 W __kcfi_typeid_ping_close
 000000009ded0bf0 W __kcfi_typeid_tcp_close
@@ -549,6 +574,9 @@
 000000009ebc42ce W __kcfi_typeid_inet6_ioctl
 000000009ebc42ce W __kcfi_typeid_sock_no_ioctl
 000000009fae117b W __kcfi_typeid_call_rcu
+00000000a04ad637 W __kcfi_typeid_set_memory_nx
+00000000a04ad637 W __kcfi_typeid_set_memory_ro
+00000000a04ad637 W __kcfi_typeid_set_memory_x
 00000000a04edb59 W __kcfi_typeid_ext4_sync_file
 00000000a04edb59 W __kcfi_typeid_noop_fsync
 00000000a07d4f1e W __kcfi_typeid_inet_dgram_connect
@@ -559,6 +587,7 @@
 00000000a15c027e W __kcfi_typeid_io_req_task_complete
 00000000a1612edd W __kcfi_typeid_dm_internal_resume_fast
 00000000a1612edd W __kcfi_typeid_dm_internal_suspend_fast
+00000000a270647a W __kcfi_typeid_caches_clean_inval_pou
 00000000a3a28adc W __kcfi_typeid_idmap_kpti_install_ng_mappings
 00000000a3cde346 W __kcfi_typeid_unlz4
 00000000a3e70c3b W __kcfi_typeid_event_enable_trigger_parse
@@ -949,6 +978,7 @@
 00000000b02b34d9 W __kcfi_typeid___arm64_sys_write
 00000000b02b34d9 W __kcfi_typeid___arm64_sys_writev
 00000000b034558b W __kcfi_typeid_ipv6_dev_find
+00000000b2136db5 W __kcfi_typeid_task_user_regset_view
 00000000b339b1b5 W __kcfi_typeid_io_schedule_timeout
 00000000b339b1b5 W __kcfi_typeid_schedule_timeout
 00000000b3fbeaf4 W __kcfi_typeid_datagram_poll
@@ -991,6 +1021,7 @@
 00000000c15ec74b W __kcfi_typeid_ethtool_op_get_ts_info
 00000000c1f4053a W __kcfi_typeid_fib6_get_table
 00000000c27a9a83 W __kcfi_typeid_ip6_fragment
+00000000c293ca02 W __kcfi_typeid_jbd2_journal_invalidate_folio
 00000000c318512c W __kcfi_typeid_ipcomp_input
 00000000c318512c W __kcfi_typeid_ipcomp_output
 00000000c3ac8a65 W __kcfi_typeid_io_accept
@@ -1075,6 +1106,8 @@
 00000000d2b5dd1f W __kcfi_typeid_mempool_kfree
 00000000d37a14b5 W __kcfi_typeid_vp_notify
 00000000d3e3248c W __kcfi_typeid_ethnl_tunnel_info_start
+00000000d3ef1dbe W __kcfi_typeid_jbd2_journal_lock_updates
+00000000d3ef1dbe W __kcfi_typeid_jbd2_journal_unlock_updates
 00000000d44152ef W __kcfi_typeid_workingset_update_node
 00000000d46b5a14 W __kcfi_typeid___modver_version_show
 00000000d4fb1d84 W __kcfi_typeid_msg_zerocopy_callback
@@ -1101,6 +1134,7 @@
 00000000db1e52f7 W __kcfi_typeid_mq_change_real_num_tx
 00000000dcc93292 W __kcfi_typeid_event_enable_trigger_free
 00000000ddc090cb W __kcfi_typeid_crypto_req_done
+00000000dde9934b W __kcfi_typeid_xz_dec_run
 00000000de8d38d6 W __kcfi_typeid_kill_anon_super
 00000000de8d38d6 W __kcfi_typeid_kill_block_super
 00000000de8d38d6 W __kcfi_typeid_kill_litter_super
@@ -1156,10 +1190,12 @@
 00000000e9ce0689 W __kcfi_typeid_udp_v6_get_port
 00000000e9d9cfd3 W __kcfi_typeid_udp4_lib_lookup_skb
 00000000e9d9cfd3 W __kcfi_typeid_udp6_lib_lookup_skb
+00000000eb007fb5 W __kcfi_typeid_xz_dec_init
 00000000eb9c9dc6 W __kcfi_typeid_vt_ioctl
 00000000ebdb479f W __kcfi_typeid_virtio_transport_notify_send_init
 00000000ebdb479f W __kcfi_typeid_virtio_transport_notify_send_pre_block
 00000000ebdb479f W __kcfi_typeid_virtio_transport_notify_send_pre_enqueue
+00000000ec7bd331 W __kcfi_typeid___traceiter_sched_stat_runtime
 00000000ecc9d4c0 W __kcfi_typeid_ping_recvmsg
 00000000ecc9d4c0 W __kcfi_typeid_tcp_recvmsg
 00000000ecc9d4c0 W __kcfi_typeid_udp_recvmsg
@@ -1167,6 +1203,11 @@
 00000000ee238383 W __kcfi_typeid_virtio_transport_notify_poll_in
 00000000ee238383 W __kcfi_typeid_virtio_transport_notify_poll_out
 00000000eeb05c58 W __kcfi_typeid_event_enable_trigger_print
+00000000ef3264c0 W __kcfi_typeid_zlib_deflateEnd
+00000000ef3264c0 W __kcfi_typeid_zlib_deflateReset
+00000000ef3264c0 W __kcfi_typeid_zlib_inflateEnd
+00000000ef3264c0 W __kcfi_typeid_zlib_inflateIncomp
+00000000ef3264c0 W __kcfi_typeid_zlib_inflateReset
 00000000f01b0818 W __kcfi_typeid_has_spectre_v2
 00000000f01b0818 W __kcfi_typeid_has_spectre_v3a
 00000000f01b0818 W __kcfi_typeid_has_spectre_v4
@@ -1179,6 +1220,8 @@
 00000000f1549c70 W __kcfi_typeid_simple_getattr
 00000000f1d5aed5 W __kcfi_typeid_tcp_read_skb
 00000000f1d5aed5 W __kcfi_typeid_udp_read_skb
+00000000f1e98efe W __kcfi_typeid_xz_dec_end
+00000000f1e98efe W __kcfi_typeid_xz_dec_reset
 00000000f382f7c9 W __kcfi_typeid_ip_getsockopt
 00000000f382f7c9 W __kcfi_typeid_ipv6_getsockopt
 00000000f382f7c9 W __kcfi_typeid_tcp_getsockopt
@@ -1337,46374 +1380,54301 @@
 ffffffc008017474 W strnlen
 ffffffc008017538 t __pi_strrchr
 ffffffc008017538 W strrchr
-ffffffc008017568 T __traceiter_initcall_level
-ffffffc0080175e8 T __traceiter_initcall_start
-ffffffc008017668 T __traceiter_initcall_finish
-ffffffc0080176f8 t trace_event_raw_event_initcall_level
-ffffffc0080177f0 t perf_trace_initcall_level
-ffffffc00801794c t trace_event_raw_event_initcall_start
-ffffffc008017a04 t perf_trace_initcall_start
-ffffffc008017b10 t trace_event_raw_event_initcall_finish
-ffffffc008017bd0 t perf_trace_initcall_finish
-ffffffc008017ce8 t rcu_read_unlock
-ffffffc008017d10 t rcu_read_unlock
-ffffffc008017d38 t rcu_read_unlock
-ffffffc008017d64 t trace_raw_output_initcall_level
-ffffffc008017ddc t trace_raw_output_initcall_start
-ffffffc008017e50 t trace_raw_output_initcall_finish
-ffffffc008017ec4 t run_init_process
-ffffffc008017f9c T name_to_dev_t
-ffffffc0080187d4 t rootfs_init_fs_context
-ffffffc008018818 t match_dev_by_uuid
-ffffffc008018868 t match_dev_by_label
-ffffffc0080188b8 T wait_for_initramfs
-ffffffc008018920 t panic_show_mem
-ffffffc00801898c t show_mem
-ffffffc0080189c4 W calibrate_delay_is_known
-ffffffc0080189d8 W calibration_delay_done
-ffffffc0080189e8 T calibrate_delay
-ffffffc008018c5c T debug_monitors_arch
-ffffffc008018c94 T enable_debug_monitors
-ffffffc008018e30 T disable_debug_monitors
-ffffffc008018fc4 T register_user_step_hook
-ffffffc008019044 T unregister_user_step_hook
-ffffffc0080190b8 T register_kernel_step_hook
-ffffffc008019138 T unregister_kernel_step_hook
-ffffffc0080191ac T register_user_break_hook
-ffffffc00801922c T unregister_user_break_hook
-ffffffc0080192a0 T register_kernel_break_hook
-ffffffc008019320 T unregister_kernel_break_hook
-ffffffc008019394 T aarch32_break_handler
-ffffffc008019568 t single_step_handler.llvm.17769982197508891136
-ffffffc0080196ac t brk_handler.llvm.17769982197508891136
-ffffffc0080197d8 T user_rewind_single_step
-ffffffc008019800 T user_fastforward_single_step
-ffffffc008019828 T user_regs_reset_single_step
-ffffffc00801984c T kernel_enable_single_step
-ffffffc0080198c0 T kernel_disable_single_step
-ffffffc008019924 T kernel_active_single_step
-ffffffc008019958 T user_enable_single_step
-ffffffc0080199ac T user_disable_single_step
-ffffffc0080199ec t clear_os_lock
-ffffffc008019a10 T do_softirq_own_stack
-ffffffc008019a48 t ____do_softirq.llvm.346396218081532748
-ffffffc008019a74 t default_handle_irq
-ffffffc008019a98 t default_handle_fiq
-ffffffc008019abc T task_get_vl
-ffffffc008019ae4 T task_set_vl
-ffffffc008019b0c T task_get_vl_onexec
-ffffffc008019b34 T task_set_vl_onexec
-ffffffc008019b5c T sve_state_size
-ffffffc008019bdc T sve_alloc
-ffffffc008019d14 T fpsimd_force_sync_to_sve
-ffffffc008019db8 T fpsimd_sync_to_sve
-ffffffc008019e94 T sve_sync_to_fpsimd
-ffffffc008019f70 T sve_sync_from_fpsimd_zeropad
-ffffffc00801a03c T vec_set_vector_length
-ffffffc00801a3e8 t find_supported_vector_length
-ffffffc00801a518 t get_cpu_fpsimd_context
-ffffffc00801a568 t fpsimd_save
-ffffffc00801a730 T fpsimd_flush_task_state
-ffffffc00801a790 t put_cpu_fpsimd_context
-ffffffc00801a7e0 T sve_set_current_vl
-ffffffc00801a880 T sve_get_current_vl
-ffffffc00801a8d4 T sme_set_current_vl
-ffffffc00801a974 T sme_get_current_vl
-ffffffc00801a9c4 t vec_probe_vqs
-ffffffc00801aae0 T vec_update_vq_map
-ffffffc00801ab9c T vec_verify_vq_map
-ffffffc00801acb4 T sve_kernel_enable
-ffffffc00801acd4 T read_zcr_features
-ffffffc00801ad34 T fpsimd_release_task
-ffffffc00801ad80 T sme_alloc
-ffffffc00801ade4 T sme_kernel_enable
-ffffffc00801ae20 T fa64_kernel_enable
-ffffffc00801ae3c T read_smcr_features
-ffffffc00801aec4 T do_sve_acc
-ffffffc00801b0b4 T do_sme_acc
-ffffffc00801b2a4 t fpsimd_bind_task_to_cpu
-ffffffc00801b3f0 T do_fpsimd_acc
-ffffffc00801b404 T do_fpsimd_exc
-ffffffc00801b48c T fpsimd_thread_switch
-ffffffc00801b5bc T fpsimd_flush_thread
-ffffffc00801b9cc T fpsimd_preserve_current_state
-ffffffc00801ba84 T fpsimd_signal_preserve_current_state
-ffffffc00801bbdc T fpsimd_bind_state_to_cpu
-ffffffc00801bc68 T fpsimd_restore_current_state
-ffffffc00801bd88 t task_fpsimd_load
-ffffffc00801bfb8 T fpsimd_update_current_state
-ffffffc00801c158 T fpsimd_save_and_flush_cpu_state
-ffffffc00801c2b0 T kernel_neon_begin
-ffffffc00801c47c T kernel_neon_end
-ffffffc00801c4ec t local_bh_enable
-ffffffc00801c524 t local_bh_enable
-ffffffc00801c55c t local_bh_enable
-ffffffc00801c594 t local_bh_enable
-ffffffc00801c5cc t local_bh_enable
-ffffffc00801c604 t local_bh_enable
-ffffffc00801c63c t local_bh_enable
-ffffffc00801c674 t local_bh_enable
-ffffffc00801c6ac t local_bh_enable
-ffffffc00801c6e4 t local_bh_enable
-ffffffc00801c71c t local_bh_enable
-ffffffc00801c754 t local_bh_enable
-ffffffc00801c78c t local_bh_enable
-ffffffc00801c7c4 t local_bh_enable
-ffffffc00801c7fc t local_bh_enable
-ffffffc00801c834 t local_bh_enable
-ffffffc00801c86c t local_bh_enable
-ffffffc00801c8a4 t local_bh_enable
-ffffffc00801c8dc t local_bh_enable
-ffffffc00801c914 t local_bh_enable
-ffffffc00801c94c t local_bh_enable
-ffffffc00801c984 t local_bh_enable
-ffffffc00801c9bc t local_bh_enable
-ffffffc00801c9f4 t local_bh_enable
-ffffffc00801ca2c t local_bh_enable
-ffffffc00801ca64 t local_bh_enable
-ffffffc00801ca9c t local_bh_enable
-ffffffc00801cad4 t local_bh_enable
-ffffffc00801cb0c t local_bh_enable
-ffffffc00801cb44 t local_bh_enable
-ffffffc00801cb7c t local_bh_enable
-ffffffc00801cbb4 t local_bh_enable
-ffffffc00801cbec t local_bh_enable
-ffffffc00801cc24 t local_bh_enable
-ffffffc00801cc5c t local_bh_enable
-ffffffc00801cc94 t local_bh_enable
-ffffffc00801cccc t local_bh_enable
-ffffffc00801cd04 t local_bh_enable
-ffffffc00801cd3c t local_bh_enable
-ffffffc00801cd78 t fpsimd_cpu_pm_notifier
-ffffffc00801cdbc t fpsimd_cpu_dead
-ffffffc00801cdf8 t vec_proc_do_default_vl
-ffffffc00801cf14 t local_daif_restore
-ffffffc00801cf24 t mte_check_tfsr_exit
-ffffffc00801cf78 t local_daif_mask
-ffffffc00801cf88 t __kern_my_cpu_offset
-ffffffc00801cf9c t __kern_my_cpu_offset
-ffffffc00801cfb0 t local_daif_inherit
-ffffffc00801cfc8 t mte_check_tfsr_entry
-ffffffc00801d014 t mte_disable_tco_entry
-ffffffc00801d064 t do_interrupt_handler
-ffffffc00801d0fc t is_kernel_in_hyp_mode
-ffffffc00801d114 t preempt_count
-ffffffc00801d130 t preempt_count
-ffffffc00801d14c t preempt_count
-ffffffc00801d168 t __preempt_count_add
-ffffffc00801d18c t __preempt_count_sub
-ffffffc00801d1b0 t cortex_a76_erratum_1463225_svc_handler
-ffffffc00801d238 t instruction_pointer
-ffffffc00801d24c T arch_cpu_idle_dead
-ffffffc00801d278 T machine_shutdown
-ffffffc00801d2ac T machine_halt
-ffffffc00801d2e8 T machine_power_off
-ffffffc00801d334 T machine_restart
-ffffffc00801d39c T __show_regs
-ffffffc00801d724 T show_regs
-ffffffc00801d770 T flush_thread
-ffffffc00801d810 T arch_release_task_struct
-ffffffc00801d83c T arch_dup_task_struct
-ffffffc00801d9b8 T copy_thread
-ffffffc00801db64 T tls_preserve_current_state
-ffffffc00801dbb0 T update_sctlr_el1
-ffffffc00801dbec T __get_wchan
-ffffffc00801dd14 t get_wchan_cb
-ffffffc00801dd74 T arch_align_stack
-ffffffc00801ddd0 T arch_setup_new_exec
-ffffffc00801dfc0 T set_tagged_addr_ctrl
-ffffffc00801e0bc T get_tagged_addr_ctrl
-ffffffc00801e0fc T arch_elf_adjust_prot
-ffffffc00801e12c T __traceiter_sys_enter
-ffffffc00801e1bc T __traceiter_sys_exit
-ffffffc00801e24c t trace_event_raw_event_sys_enter
-ffffffc00801e328 t perf_trace_sys_enter
-ffffffc00801e460 t trace_event_raw_event_sys_exit
-ffffffc00801e520 t perf_trace_sys_exit
-ffffffc00801e63c T regs_query_register_offset
-ffffffc00801e6a0 T regs_get_kernel_stack_nth
-ffffffc00801e710 T ptrace_disable
-ffffffc00801e73c T flush_ptrace_hw_breakpoint
-ffffffc00801e970 T ptrace_hw_copy_thread
-ffffffc00801e9a8 T task_user_regset_view
-ffffffc00801e9c0 T arch_ptrace
-ffffffc00801ea04 T syscall_trace_enter
-ffffffc00801ebd0 T syscall_trace_exit
-ffffffc00801edc8 T valid_user_regs
-ffffffc00801ee28 t trace_raw_output_sys_enter
-ffffffc00801eeb4 t trace_raw_output_sys_exit
-ffffffc00801ef28 t gpr_get.llvm.18413658566053092058
-ffffffc00801ef90 t gpr_set.llvm.18413658566053092058
-ffffffc00801f08c t fpr_get.llvm.18413658566053092058
-ffffffc00801f13c t fpr_set.llvm.18413658566053092058
-ffffffc00801f23c t fpr_active.llvm.18413658566053092058
-ffffffc00801f27c t tls_get.llvm.18413658566053092058
-ffffffc00801f3c4 t tls_set.llvm.18413658566053092058
-ffffffc00801f4b8 t hw_break_get.llvm.18413658566053092058
-ffffffc00801f7c4 t hw_break_set.llvm.18413658566053092058
-ffffffc00801fb34 t system_call_get.llvm.18413658566053092058
-ffffffc00801fbd8 t system_call_set.llvm.18413658566053092058
-ffffffc00801fc7c t sve_get.llvm.18413658566053092058
-ffffffc00801fcdc t sve_set.llvm.18413658566053092058
-ffffffc00801fd44 t ssve_get.llvm.18413658566053092058
-ffffffc00801fda4 t ssve_set.llvm.18413658566053092058
-ffffffc00801fe0c t za_get.llvm.18413658566053092058
-ffffffc008020014 t za_set.llvm.18413658566053092058
-ffffffc008020208 t pac_mask_get.llvm.18413658566053092058
-ffffffc0080202c8 t pac_enabled_keys_get.llvm.18413658566053092058
-ffffffc008020374 t pac_enabled_keys_set.llvm.18413658566053092058
-ffffffc008020424 t tagged_addr_ctrl_get.llvm.18413658566053092058
-ffffffc0080204cc t tagged_addr_ctrl_set.llvm.18413658566053092058
-ffffffc008020564 t user_regset_copyin
-ffffffc008020764 t ptrace_hbp_get_initialised_bp
-ffffffc008020900 t ptrace_hbptriggered
-ffffffc00802093c t sve_get_common
-ffffffc008020c24 t sve_set_common
-ffffffc008020f9c T arch_match_cpu_phys_id
-ffffffc008020fd0 T cpu_logical_map
-ffffffc008020ffc T kvm_arm_init_hyp_services
-ffffffc008021030 t arm64_panic_block_dump
-ffffffc0080210c4 T __arm64_sys_rt_sigreturn
-ffffffc0080231fc T do_notify_resume
-ffffffc008023568 t setup_sigframe_layout
-ffffffc008023910 t setup_rt_frame
-ffffffc008026aa4 T __arm64_sys_mmap
-ffffffc008026af4 T __arm64_sys_arm64_personality
-ffffffc008026b88 T __arm64_sys_ni_syscall
-ffffffc008026b9c T dump_backtrace
-ffffffc008026cc8 t dump_backtrace_entry
-ffffffc008026d08 T show_stack
-ffffffc008026d38 t stackinfo_get_task
-ffffffc008026d4c t arch_local_save_flags
-ffffffc008026d60 t arch_irqs_disabled_flags
-ffffffc008026d78 t stackinfo_get_irq
-ffffffc008026d9c t stackinfo_get_overflow
-ffffffc008026dc0 t unwind
-ffffffc008026f30 T profile_pc
-ffffffc008026fa4 t profile_pc_cb
-ffffffc008026fe0 t __check_eq.llvm.2517853960844119861
-ffffffc008026ff4 t __check_ne.llvm.2517853960844119861
-ffffffc00802700c t __check_cs.llvm.2517853960844119861
-ffffffc008027020 t __check_cc.llvm.2517853960844119861
-ffffffc008027038 t __check_mi.llvm.2517853960844119861
-ffffffc00802704c t __check_pl.llvm.2517853960844119861
-ffffffc008027064 t __check_vs.llvm.2517853960844119861
-ffffffc008027078 t __check_vc.llvm.2517853960844119861
-ffffffc008027090 t __check_hi.llvm.2517853960844119861
-ffffffc0080270a8 t __check_ls.llvm.2517853960844119861
-ffffffc0080270c4 t __check_ge.llvm.2517853960844119861
-ffffffc0080270dc t __check_lt.llvm.2517853960844119861
-ffffffc0080270f4 t __check_gt.llvm.2517853960844119861
-ffffffc008027114 t __check_le.llvm.2517853960844119861
-ffffffc008027130 t __check_al.llvm.2517853960844119861
-ffffffc008027144 T die
-ffffffc00802745c T arm64_force_sig_fault
-ffffffc0080274c8 t arm64_show_signal.llvm.2517853960844119861
-ffffffc0080275c4 T arm64_force_sig_mceerr
-ffffffc008027624 T arm64_force_sig_ptrace_errno_trap
-ffffffc008027674 T arm64_notify_die
-ffffffc008027730 T arm64_skip_faulting_instruction
-ffffffc008027798 T register_undef_hook
-ffffffc008027824 T unregister_undef_hook
-ffffffc0080278a4 T force_signal_inject
-ffffffc0080279e0 T arm64_notify_segfault
-ffffffc008027abc T do_undefinstr
-ffffffc008027d74 T do_el0_bti
-ffffffc008027db0 T do_el1_bti
-ffffffc008027dec T do_el0_fpac
-ffffffc008027e28 T do_el1_fpac
-ffffffc008027e64 T do_sysinstr
-ffffffc008027f9c T esr_get_class_string
-ffffffc008027fbc T bad_el0_sync
-ffffffc00802801c T panic_bad_stack
-ffffffc008028160 T arm64_serror_panic
-ffffffc0080281e4 T arm64_is_fatal_ras_serror
-ffffffc0080282b4 T do_serror
-ffffffc0080283b8 T is_valid_bugaddr
-ffffffc0080283cc t cfi_handler
-ffffffc0080284e4 t bug_handler
-ffffffc008028594 t user_cache_maint_handler
-ffffffc008028ce4 t ctr_read_handler
-ffffffc008028da8 t cntvct_read_handler
-ffffffc008028e44 t cntfrq_read_handler
-ffffffc008028ec4 t mrs_handler
-ffffffc008028f40 t wfi_handler
-ffffffc008028fa8 t reserved_fault_handler
-ffffffc008028fec T __memcpy_fromio
-ffffffc008029180 T __memcpy_toio
-ffffffc008029300 T __memset_io
-ffffffc00802944c T arch_setup_additional_pages
-ffffffc0080295fc t vvar_fault
-ffffffc008029660 t vdso_mremap
-ffffffc008029684 t cpu_psci_cpu_boot
-ffffffc008029724 t cpu_psci_cpu_can_disable
-ffffffc008029744 t cpu_psci_cpu_disable
-ffffffc008029778 t cpu_psci_cpu_die
-ffffffc0080297c8 t cpu_psci_cpu_kill
-ffffffc0080298bc T get_cpu_ops
-ffffffc0080298e8 T return_address
-ffffffc008029970 t save_return_addr
-ffffffc0080299a0 t c_start.llvm.9083400901323950983
-ffffffc0080299bc t c_stop.llvm.9083400901323950983
-ffffffc0080299cc t c_next.llvm.9083400901323950983
-ffffffc0080299ec t c_show.llvm.9083400901323950983
-ffffffc008029c88 T cpuinfo_store_cpu
-ffffffc008029cf4 t __cpuinfo_store_cpu
-ffffffc008029f74 t cpuid_cpu_online
-ffffffc00802a058 t cpuid_cpu_offline
-ffffffc00802a0e4 t midr_el1_show
-ffffffc00802a134 t revidr_el1_show
-ffffffc00802a188 t smidr_el1_show
-ffffffc00802a1dc t is_affected_midr_range_list.llvm.4989201762658955791
-ffffffc00802a270 t cpu_enable_cache_maint_trap.llvm.4989201762658955791
-ffffffc00802a294 t is_affected_midr_range.llvm.4989201762658955791
-ffffffc00802a354 t cpucap_multi_entry_cap_matches.llvm.4989201762658955791
-ffffffc00802a3d4 t has_mismatched_cache_type.llvm.4989201762658955791
-ffffffc00802a46c t cpu_enable_trap_ctr_access.llvm.4989201762658955791
-ffffffc00802a4c8 t has_cortex_a76_erratum_1463225.llvm.4989201762658955791
-ffffffc00802a56c t needs_tx2_tvm_workaround.llvm.4989201762658955791
-ffffffc00802a698 t has_neoverse_n1_erratum_1542419.llvm.4989201762658955791
-ffffffc00802a700 t cpu_clear_bf16_from_user_emulation.llvm.4989201762658955791
-ffffffc00802a770 t is_kryo_midr.llvm.4989201762658955791
-ffffffc00802a7cc T dump_cpu_features
-ffffffc00802a80c T get_arm64_ftr_reg
-ffffffc00802a864 t init_cpu_ftr_reg
-ffffffc00802ab24 t init_32bit_cpu_features
-ffffffc00802ac78 T read_sanitised_ftr_reg
-ffffffc00802acdc T update_cpu_features
-ffffffc00802b764 t check_update_ftr_reg
-ffffffc00802b920 T __read_sysreg_by_encoding
-ffffffc00802bde4 T system_32bit_el0_cpumask
-ffffffc00802be88 T kaslr_requires_kpti
-ffffffc00802bf08 T cpu_has_amu_feat
-ffffffc00802bf38 T get_cpu_with_amu_feat
-ffffffc00802bf74 T check_local_cpu_capabilities
-ffffffc00802c1c0 t update_cpu_capabilities
-ffffffc00802c348 T this_cpu_has_cap
-ffffffc00802c3ec T cpu_set_feature
-ffffffc00802c44c T cpu_have_feature
-ffffffc00802c47c T cpu_get_elf_hwcap
-ffffffc00802c494 T cpu_get_elf_hwcap2
-ffffffc00802c4a8 t setup_elf_hwcaps
-ffffffc00802c5c0 T do_emulate_mrs
-ffffffc00802c6fc T arm64_get_meltdown_state
-ffffffc00802c758 T cpu_show_meltdown
-ffffffc00802c7fc t search_cmp_ftr_reg
-ffffffc00802c814 t has_always
-ffffffc00802c828 t has_useable_gicv3_cpuif
-ffffffc00802c8b8 t has_cpuid_feature
-ffffffc00802c9c0 t cpu_enable_pan
-ffffffc00802ca28 t has_no_hw_prefetch
-ffffffc00802ca60 t runs_at_el2
-ffffffc00802ca7c t cpu_copy_el2regs
-ffffffc00802cab8 t has_32bit_el0
-ffffffc00802cb1c t unmap_kernel_at_el0
-ffffffc00802cdfc t kpti_install_ng_mappings
-ffffffc00802d184 t has_no_fpsimd
-ffffffc00802d1f0 t cpu_clear_disr
-ffffffc00802d208 t has_amu
-ffffffc00802d21c t cpu_amu_enable
-ffffffc00802d3b0 t has_cache_idc
-ffffffc00802d408 t cpu_emulate_effective_ctr
-ffffffc00802d434 t has_cache_dic
-ffffffc00802d46c t has_hw_dbm
-ffffffc00802d594 t cpu_enable_hw_dbm
-ffffffc00802d6c4 t has_useable_cnp
-ffffffc00802d724 t cpu_enable_cnp
-ffffffc00802d9bc t has_address_auth_cpucap
-ffffffc00802dab8 t has_address_auth_metacap
-ffffffc00802db30 t has_generic_auth
-ffffffc00802dc14 t cpu_enable_e0pd
-ffffffc00802dcb4 t bti_enable
-ffffffc00802dce0 t cpu_enable_mte
-ffffffc00802ddcc t cpu_trap_el0_impdef
-ffffffc00802ddf0 t kpti_ng_pgd_alloc
-ffffffc00802de10 t aarch32_el0_show
-ffffffc00802ded8 t verify_local_cpu_caps
-ffffffc00802e040 t cpu_enable_non_boot_scope_capabilities
-ffffffc00802e12c t has_user_cpuid_feature
-ffffffc00802e298 t cpucap_multi_entry_cap_matches
-ffffffc00802e318 t enable_mismatched_32bit_el0
-ffffffc00802e490 t emulate_mrs
-ffffffc00802e4f8 T alternative_is_applied
-ffffffc00802e540 T apply_alternatives_vdso
-ffffffc00802e62c t __apply_alternatives
-ffffffc00802e814 t __apply_alternatives_multi_stop.llvm.16734558914947919650
-ffffffc00802e8ec T cache_line_size
-ffffffc00802e92c T init_cache_level
-ffffffc00802ea80 T populate_cache_leaves
-ffffffc00802eb58 T __traceiter_ipi_raise
-ffffffc00802ebe8 T __traceiter_ipi_entry
-ffffffc00802ec68 T __traceiter_ipi_exit
-ffffffc00802ece8 t trace_event_raw_event_ipi_raise
-ffffffc00802edfc t perf_trace_ipi_raise
-ffffffc00802ef80 t trace_event_raw_event_ipi_handler
-ffffffc00802f038 t perf_trace_ipi_handler
-ffffffc00802f144 T __cpu_up
-ffffffc00802f350 T secondary_start_kernel
-ffffffc00802f4c8 t ipi_setup
-ffffffc00802f548 T __cpu_disable
-ffffffc00802f63c T __cpu_die
-ffffffc00802f6dc T cpu_die
-ffffffc00802f74c T cpu_die_early
-ffffffc00802f838 T arch_show_interrupts
-ffffffc00802f9b4 T arch_send_call_function_ipi_mask
-ffffffc00802f9e0 t smp_cross_call.llvm.97297090495087882
-ffffffc00802fb34 T arch_send_call_function_single_ipi
-ffffffc00802fb80 T arch_irq_work_raise
-ffffffc00802fbe4 T panic_smp_self_stop
-ffffffc00802fc28 t ipi_handler
-ffffffc00802ff80 T smp_send_reschedule
-ffffffc00802ffcc T tick_broadcast
-ffffffc00802fffc T smp_send_stop
-ffffffc0080301f0 T crash_smp_send_stop
-ffffffc0080303e8 T smp_crash_stop_failed
-ffffffc008030410 T cpus_are_stuck_in_kernel
-ffffffc0080304bc T nr_ipi_get
-ffffffc0080304d4 T ipi_desc_get
-ffffffc0080304ec t trace_raw_output_ipi_raise
-ffffffc008030578 t trace_raw_output_ipi_handler
-ffffffc0080305e8 t ipi_cpu_crash_stop
-ffffffc0080306ac t smp_spin_table_cpu_init.llvm.13974181396667108116
-ffffffc008030734 t smp_spin_table_cpu_prepare.llvm.13974181396667108116
-ffffffc008030818 t smp_spin_table_cpu_boot.llvm.13974181396667108116
-ffffffc008030860 t writeq_relaxed
-ffffffc0080308f0 t writeq_relaxed
-ffffffc008030980 t writeq_relaxed
-ffffffc008030a10 t writeq_relaxed
-ffffffc008030aa4 T update_freq_counters_refs
-ffffffc008030b80 T do_el0_svc
-ffffffc008030cf4 t invoke_syscall
-ffffffc008030df4 T cpu_show_spectre_v1
-ffffffc008030e30 T cpu_show_spectre_v2
-ffffffc008030f10 T arm64_get_spectre_bhb_state
-ffffffc008030f28 T has_spectre_v2
-ffffffc008031098 T arm64_get_spectre_v2_state
-ffffffc0080310b0 T spectre_v2_enable_mitigation
-ffffffc00803139c T has_spectre_v3a
-ffffffc008031400 T spectre_v3a_enable_mitigation
-ffffffc008031458 T cpu_show_spec_store_bypass
-ffffffc0080314fc T arm64_get_spectre_v4_state
-ffffffc008031514 T has_spectre_v4
-ffffffc00803165c T spectre_v4_enable_mitigation
-ffffffc008031a2c T spectre_v4_enable_task_mitigation
-ffffffc008031b30 T arch_prctl_spec_ctrl_set
-ffffffc008031ee8 T arch_prctl_spec_ctrl_get
-ffffffc008032004 T spectre_bhb_loop_affected
-ffffffc008032170 T is_spectre_bhb_affected
-ffffffc008032448 t is_spectre_bhb_fw_affected
-ffffffc008032510 T spectre_bhb_enable_mitigation
-ffffffc0080327fc t this_cpu_set_vectors
-ffffffc008032898 t spectre_bhb_get_cpu_fw_mitigation_state
-ffffffc008032924 t ssbs_emulation_handler
-ffffffc00803297c t arch_local_irq_enable
-ffffffc008032998 T aarch64_insn_read
-ffffffc008032a18 T aarch64_insn_write
-ffffffc008032a78 t __aarch64_text_write
-ffffffc008032bbc T aarch64_addr_write
-ffffffc008032c20 T aarch64_insn_patch_text_nosync
-ffffffc008032cb4 T aarch64_insn_patch_text
-ffffffc008032d38 t aarch64_insn_patch_text_cb
-ffffffc008032ee0 T perf_reg_value
-ffffffc008032ffc T perf_reg_validate
-ffffffc00803304c T perf_reg_abi
-ffffffc008033060 T perf_get_regs_user
-ffffffc008033088 T perf_callchain_user
-ffffffc008033334 T perf_callchain_kernel
-ffffffc008033374 t callchain_trace
-ffffffc0080333cc T perf_instruction_pointer
-ffffffc0080333e0 T perf_misc_flags
-ffffffc008033400 W arch_perf_update_userpage
-ffffffc008033570 t armv8_pmu_device_probe
-ffffffc0080335a8 t armv8_pmuv3_pmu_init
-ffffffc0080335e4 t armv8_cortex_a34_pmu_init
-ffffffc008033620 t armv8_a35_pmu_init
-ffffffc00803365c t armv8_a53_pmu_init
-ffffffc008033698 t armv8_cortex_a55_pmu_init
-ffffffc0080336d4 t armv8_a57_pmu_init
-ffffffc008033710 t armv8_cortex_a65_pmu_init
-ffffffc00803374c t armv8_a72_pmu_init
-ffffffc008033788 t armv8_a73_pmu_init
-ffffffc0080337c4 t armv8_cortex_a75_pmu_init
-ffffffc008033800 t armv8_cortex_a76_pmu_init
-ffffffc00803383c t armv8_cortex_a77_pmu_init
-ffffffc008033878 t armv8_cortex_a78_pmu_init
-ffffffc0080338b4 t armv9_cortex_a510_pmu_init
-ffffffc0080338f0 t armv9_cortex_a710_pmu_init
-ffffffc00803392c t armv8_cortex_x1_pmu_init
-ffffffc008033968 t armv9_cortex_x2_pmu_init
-ffffffc0080339a4 t armv8_neoverse_e1_pmu_init
-ffffffc0080339e0 t armv8_neoverse_n1_pmu_init
-ffffffc008033a1c t armv9_neoverse_n2_pmu_init
-ffffffc008033a58 t armv8_neoverse_v1_pmu_init
-ffffffc008033a94 t armv8_thunder_pmu_init
-ffffffc008033ad0 t armv8_vulcan_pmu_init
-ffffffc008033b0c t armv8_nvidia_carmel_pmu_init
-ffffffc008033b48 t armv8_nvidia_denver_pmu_init
-ffffffc008033b80 t armv8_pmu_init_nogroups
-ffffffc008033d50 t armv8_pmuv3_map_event
-ffffffc008033e30 t armv8pmu_handle_irq
-ffffffc008033fe8 t armv8pmu_enable_event
-ffffffc008034180 t armv8pmu_disable_event
-ffffffc00803422c t armv8pmu_read_counter
-ffffffc0080342e8 t armv8pmu_write_counter
-ffffffc008034394 t armv8pmu_get_event_idx
-ffffffc0080345a8 t armv8pmu_clear_event_idx
-ffffffc008034670 t armv8pmu_start
-ffffffc008034764 t armv8pmu_stop
-ffffffc008034784 t armv8pmu_reset
-ffffffc0080347cc t armv8pmu_set_event_filter
-ffffffc008034840 t armv8pmu_filter_match
-ffffffc00803485c t armv8pmu_user_event_idx
-ffffffc00803489c t __armv8pmu_probe_pmu
-ffffffc008034980 t armv8pmu_write_evtype
-ffffffc008034b58 t armv8pmu_read_evcntr
-ffffffc008034d2c t armv8pmu_write_evcntr
-ffffffc008034f00 t armv8pmu_event_attr_is_visible
-ffffffc008034f5c t armv8pmu_events_sysfs_show
-ffffffc008034f9c t event_show
-ffffffc008034fc8 t event_show
-ffffffc008035018 t long_show
-ffffffc008035048 t rdpmc_show
-ffffffc008035078 t slots_show
-ffffffc0080350c0 t bus_slots_show
-ffffffc008035108 t bus_width_show
-ffffffc00803516c t armv8pmu_proc_user_access_handler
-ffffffc0080351e0 t armv8pmu_disable_user_access_ipi
-ffffffc0080351f8 t armv8_a53_map_event
-ffffffc0080352dc t armv8_a57_map_event
-ffffffc0080353c0 t armv8_a73_map_event
-ffffffc0080354a4 t armv8_thunder_map_event
-ffffffc008035588 t armv8_vulcan_map_event
-ffffffc00803566c T hw_breakpoint_slots
-ffffffc0080356e0 T arch_install_hw_breakpoint
-ffffffc00803570c t hw_breakpoint_control.llvm.2495263093307510447
-ffffffc00803596c T arch_uninstall_hw_breakpoint
-ffffffc00803599c T arch_check_bp_in_kernelspace
-ffffffc008035a70 T arch_bp_generic_fields
-ffffffc008035b54 T hw_breakpoint_arch_parse
-ffffffc008035ddc T reinstall_suspended_bps
-ffffffc008036178 T hw_breakpoint_thread_switch
-ffffffc008036318 T hw_breakpoint_pmu_read
-ffffffc008036328 T hw_breakpoint_exceptions_notify
-ffffffc008036338 t write_wb_reg
-ffffffc008036690 t read_wb_reg
-ffffffc0080369ec t breakpoint_handler
-ffffffc008036ca0 t watchpoint_handler
-ffffffc008037064 t hw_breakpoint_reset
-ffffffc008037180 T __cpu_suspend_exit
-ffffffc008037638 T cpu_suspend
-ffffffc008037734 T arch_jump_label_transform
-ffffffc0080377a0 T raw_pci_read
-ffffffc00803782c T raw_pci_write
-ffffffc0080378b8 t native_steal_clock
-ffffffc0080378cc t para_steal_clock
-ffffffc00803794c t stolen_time_cpu_online
-ffffffc008037a60 t stolen_time_cpu_down_prepare
-ffffffc008037ac8 T elf_core_extra_phdrs
-ffffffc008037ba4 T elf_core_write_extra_phdrs
-ffffffc008037ce4 T elf_core_extra_data_size
-ffffffc008037d64 T elf_core_write_extra_data
-ffffffc008038030 T machine_kexec_cleanup
-ffffffc008038040 T machine_kexec_prepare
-ffffffc008038090 T machine_kexec_post_load
-ffffffc008038324 t kexec_page_alloc
-ffffffc00803839c T machine_kexec
-ffffffc00803863c T machine_crash_shutdown
-ffffffc0080387cc T arch_kexec_protect_crashkres
-ffffffc008038864 T arch_kexec_unprotect_crashkres
-ffffffc0080388fc T arch_kimage_file_post_load_cleanup
-ffffffc008038954 T load_other_segments
-ffffffc008038d14 t image_probe.llvm.11809640792308574669
-ffffffc008038d54 t image_load.llvm.11809640792308574669
-ffffffc008038f34 T arch_crash_save_vmcoreinfo
-ffffffc008039070 T ptrauth_prctl_reset_keys
-ffffffc0080393bc T ptrauth_set_enabled_keys
-ffffffc0080394f0 T ptrauth_get_enabled_keys
-ffffffc008039554 T mte_sync_tags
-ffffffc00803971c T memcmp_pages
-ffffffc008039808 T mte_enable_kernel_sync
-ffffffc0080398a8 T mte_enable_kernel_async
-ffffffc008039934 T mte_enable_kernel_asymm
-ffffffc008039a40 T mte_check_tfsr_el1
-ffffffc008039a80 T mte_thread_init_user
-ffffffc008039b10 T set_mte_ctrl
-ffffffc008039c64 T mte_thread_switch
-ffffffc008039d70 T mte_cpu_setup
-ffffffc008039e00 T mte_suspend_enter
-ffffffc008039e68 T mte_suspend_exit
-ffffffc008039f1c T get_mte_ctrl
-ffffffc008039f70 T mte_ptrace_copy_tags
-ffffffc00803a5d0 t uaccess_ttbr0_enable
-ffffffc00803a664 t uaccess_ttbr0_enable
-ffffffc00803a6f8 t uaccess_ttbr0_enable
-ffffffc00803a78c t uaccess_ttbr0_enable
-ffffffc00803a820 t uaccess_ttbr0_enable
-ffffffc00803a8b4 t uaccess_ttbr0_enable
-ffffffc00803a948 t uaccess_ttbr0_enable
-ffffffc00803a9dc t uaccess_ttbr0_enable
-ffffffc00803aa70 t uaccess_ttbr0_enable
-ffffffc00803ab04 t uaccess_ttbr0_enable
-ffffffc00803ab98 t uaccess_ttbr0_enable
-ffffffc00803ac2c t uaccess_ttbr0_enable
-ffffffc00803acc0 t uaccess_ttbr0_enable
-ffffffc00803ad54 t uaccess_ttbr0_enable
-ffffffc00803ade8 t uaccess_ttbr0_enable
-ffffffc00803ae7c t uaccess_ttbr0_enable
-ffffffc00803af10 t uaccess_ttbr0_disable
-ffffffc00803af94 t uaccess_ttbr0_disable
-ffffffc00803b018 t uaccess_ttbr0_disable
-ffffffc00803b09c t uaccess_ttbr0_disable
-ffffffc00803b120 t uaccess_ttbr0_disable
-ffffffc00803b1a4 t uaccess_ttbr0_disable
-ffffffc00803b228 t uaccess_ttbr0_disable
-ffffffc00803b2ac t uaccess_ttbr0_disable
-ffffffc00803b330 t uaccess_ttbr0_disable
-ffffffc00803b3b4 t uaccess_ttbr0_disable
-ffffffc00803b438 t uaccess_ttbr0_disable
-ffffffc00803b4bc t uaccess_ttbr0_disable
-ffffffc00803b540 t uaccess_ttbr0_disable
-ffffffc00803b5c4 t uaccess_ttbr0_disable
-ffffffc00803b648 t uaccess_ttbr0_disable
-ffffffc00803b6cc t uaccess_ttbr0_disable
-ffffffc00803b754 T mte_probe_user_range
-ffffffc00803b9b0 t mte_tcf_preferred_show
-ffffffc00803ba50 t mte_tcf_preferred_store
-ffffffc00803bb38 T arch_uprobe_copy_ixol
-ffffffc00803bc14 T uprobe_get_swbp_addr
-ffffffc00803bc28 T arch_uprobe_analyze_insn
-ffffffc00803bca0 T arch_uprobe_pre_xol
-ffffffc00803bce8 T arch_uprobe_post_xol
-ffffffc00803bd44 T arch_uprobe_xol_was_trapped
-ffffffc00803bd64 T arch_uprobe_skip_sstep
-ffffffc00803bdd4 T arch_uprobe_abort_xol
-ffffffc00803be10 T arch_uretprobe_is_alive
-ffffffc00803be3c T arch_uretprobe_hijack_return_addr
-ffffffc00803be5c T arch_uprobe_exception_notify
-ffffffc00803be70 t uprobe_breakpoint_handler
-ffffffc00803bea4 t uprobe_single_step_handler
-ffffffc00803bf00 T arm_probe_decode_insn
-ffffffc00803c110 T simulate_adr_adrp
-ffffffc00803c160 T simulate_b_bl
-ffffffc00803c188 T simulate_b_cond
-ffffffc00803c21c T simulate_br_blr_ret
-ffffffc00803c25c T simulate_cbz_cbnz
-ffffffc00803c2d4 T simulate_tbz_tbnz
-ffffffc00803c350 T simulate_ldr_literal
-ffffffc00803c39c T simulate_ldrsw_literal
-ffffffc00803c3d8 T arch_sync_dma_for_device
-ffffffc00803c418 T arch_sync_dma_for_cpu
-ffffffc00803c460 T arch_dma_prep_coherent
-ffffffc00803c4b0 T arch_teardown_dma_ops
-ffffffc00803c4c4 T arch_setup_dma_ops
-ffffffc00803c57c T fixup_exception
-ffffffc00803c68c T ptep_set_access_flags
-ffffffc00803c79c T do_mem_abort
-ffffffc00803c8b0 T do_sp_pc_abort
-ffffffc00803c8f8 T do_debug_exception
-ffffffc00803ca50 T alloc_zeroed_user_highpage_movable
-ffffffc00803caa8 T tag_clear_highpage
-ffffffc00803cb2c t do_bad
-ffffffc00803cb40 t do_translation_fault
-ffffffc00803cb88 t do_page_fault
-ffffffc00803d048 t do_sea
-ffffffc00803d0b4 t do_tag_check_fault
-ffffffc00803d0f0 t do_alignment_fault
-ffffffc00803d11c t do_bad_area
-ffffffc00803d1f0 t set_thread_esr
-ffffffc00803d278 t __do_kernel_fault
-ffffffc00803d4dc t mem_abort_decode
-ffffffc00803d62c t show_pte
-ffffffc00803d808 T pfn_is_map_memory
-ffffffc00803d84c T free_initmem
-ffffffc00803d8cc T dump_mem_limit
-ffffffc00803d924 T copy_highpage
-ffffffc00803da7c T copy_user_highpage
-ffffffc00803dabc T sync_icache_aliases
-ffffffc00803db28 T copy_to_user_page
-ffffffc00803dbd0 T __sync_icache_dcache
-ffffffc00803dcec T flush_dcache_page
-ffffffc00803dd3c T kvm_init_ioremap_services
-ffffffc00803df00 T ioremap_phys_range_hook
-ffffffc00803e174 T iounmap_phys_range_hook
-ffffffc00803e33c T ioremap_allowed
-ffffffc00803e398 T arch_memremap_can_ram_remap
-ffffffc00803e3d0 T mem_encrypt_active
-ffffffc00803e3f0 T kvm_init_memshare_services
-ffffffc00803e4c8 T set_memory_encrypted
-ffffffc00803e5fc T set_memory_decrypted
-ffffffc00803e730 T valid_phys_addr_range
-ffffffc00803e780 T valid_mmap_phys_addr_range
-ffffffc00803e7a0 T vm_get_page_prot
-ffffffc00803e7d4 T pgd_alloc
-ffffffc00803e80c T pgd_free
-ffffffc00803e840 T set_swapper_pgd
-ffffffc00803e970 T __set_fixmap
-ffffffc00803eaa4 T phys_mem_access_prot
-ffffffc00803eb28 t __create_pgd_mapping_locked
-ffffffc00803eb28 T create_kpti_ng_temp_pgd
-ffffffc00803f3e4 t pgd_pgtable_alloc
-ffffffc00803f4d4 T mark_rodata_ro
-ffffffc00803f654 T kern_addr_valid
-ffffffc00803f7ec T pmd_set_huge
-ffffffc00803f884 T vmemmap_free
-ffffffc00803f900 t unmap_hotplug_range
-ffffffc00803fe60 t free_empty_tables
-ffffffc0080402d0 T __get_fixmap_pte
-ffffffc008040314 T pud_set_huge
-ffffffc0080404dc T pud_clear_huge
-ffffffc00804065c T pmd_clear_huge
-ffffffc0080406ac T pmd_free_pte_page
-ffffffc00804075c T pud_free_pmd_page
-ffffffc008040a20 T arch_get_mappable_range
-ffffffc008040a4c T arch_add_memory
-ffffffc008040bd0 t __pgd_pgtable_alloc
-ffffffc008040c40 T arch_remove_memory
-ffffffc008040cf4 t prevent_bootmem_remove_notifier
-ffffffc008040de8 T verify_cpu_asid_bits
-ffffffc008040e9c T check_and_switch_context
-ffffffc008041204 t new_context
-ffffffc0080415a0 T arm64_mm_context_get
-ffffffc00804179c T arm64_mm_context_put
-ffffffc0080418b0 T post_ttbr_update_workaround
-ffffffc0080418d8 T cpu_do_switch_mm
-ffffffc008041968 T can_set_direct_map
-ffffffc008041994 T set_memory_ro
-ffffffc0080419c4 t change_memory_common.llvm.15664910709716262238
-ffffffc008041c2c T set_memory_rw
-ffffffc008041c60 T set_memory_nx
-ffffffc008041cbc T set_memory_x
-ffffffc008041d18 T set_memory_valid
-ffffffc008041eb0 T arch_set_direct_map_range_uncached
-ffffffc008041fd4 T set_direct_map_invalid_noflush
-ffffffc008042094 t change_page_range
-ffffffc0080420f0 T set_direct_map_default_noflush
-ffffffc0080421b4 T kernel_page_present
-ffffffc00804229c T kvm_init_memrelinquish_services
-ffffffc008042368 T kvm_has_memrelinquish_services
-ffffffc008042388 T page_relinquish
-ffffffc008042474 T trans_pgd_create_copy
-ffffffc008042844 T trans_pgd_idmap_page
-ffffffc008042a9c T trans_pgd_copy_el2_vectors
-ffffffc008042b64 T mte_allocate_tag_storage
-ffffffc008042ba0 T mte_free_tag_storage
-ffffffc008042bcc T mte_save_tags
-ffffffc008042cdc T mte_restore_tags
-ffffffc008042d8c T mte_invalidate_tags
-ffffffc008042dc8 T mte_invalidate_tags_area
-ffffffc008042f3c T __traceiter_task_newtask
-ffffffc008042fcc T __traceiter_task_rename
-ffffffc00804305c t trace_event_raw_event_task_newtask
-ffffffc00804313c t perf_trace_task_newtask
-ffffffc008043278 t trace_event_raw_event_task_rename
-ffffffc008043370 t perf_trace_task_rename
-ffffffc0080434c0 T nr_processes
-ffffffc008043564 T vm_area_alloc
-ffffffc0080435f0 T vm_area_dup
-ffffffc0080436e0 T vm_area_free
-ffffffc00804378c T exit_task_stack_account
-ffffffc008043814 T put_task_stack
-ffffffc0080438e8 T free_task
-ffffffc008043980 T __mmdrop
-ffffffc008043ae8 T __put_task_struct
-ffffffc008043cdc t free_vm_stack_cache
-ffffffc008043d5c T set_task_stack_end_magic
-ffffffc008043d7c T mm_alloc
-ffffffc008043dd4 t mm_init
-ffffffc008043f38 T mmput
-ffffffc008043fa4 t __mmput
-ffffffc008044100 T mmput_async
-ffffffc0080441a0 t mmput_async_fn
-ffffffc0080441d0 T set_mm_exe_file
-ffffffc008044300 T replace_mm_exe_file
-ffffffc008044634 T get_mm_exe_file
-ffffffc0080446e4 T get_task_exe_file
-ffffffc0080447c8 T get_task_mm
-ffffffc008044864 T mm_access
-ffffffc0080449a0 T exit_mm_release
-ffffffc0080449e4 t mm_release.llvm.16222659853239902927
-ffffffc008044bc4 T exec_mm_release
-ffffffc008044c0c T __cleanup_sighand
-ffffffc008044cb0 T __arm64_sys_set_tid_address
-ffffffc008044cf4 T pidfd_pid
-ffffffc008044d28 t pidfd_poll.llvm.16222659853239902927
-ffffffc008044da8 t pidfd_release.llvm.16222659853239902927
-ffffffc008044de0 t pidfd_show_fdinfo.llvm.16222659853239902927
-ffffffc008044e6c t idle_dummy
-ffffffc008044e7c t copy_process
-ffffffc008045a78 T copy_init_mm
-ffffffc008045aa8 t dup_mm
-ffffffc00804623c T create_io_thread
-ffffffc0080462d0 T kernel_clone
-ffffffc008046774 t ptrace_event_pid
-ffffffc008046810 T kernel_thread
-ffffffc0080468ac T user_mode_thread
-ffffffc008046940 T __arm64_sys_clone
-ffffffc0080469d8 T __arm64_sys_clone3
-ffffffc008046b30 T walk_process_tree
-ffffffc008046c44 t sighand_ctor
-ffffffc008046c84 T unshare_fd
-ffffffc008046d38 T ksys_unshare
-ffffffc008046fb4 T __arm64_sys_unshare
-ffffffc008046fe8 T unshare_files
-ffffffc0080470b8 T sysctl_max_threads
-ffffffc008047178 t trace_raw_output_task_newtask
-ffffffc0080471f8 t trace_raw_output_task_rename
-ffffffc008047274 t refcount_inc
-ffffffc0080472e4 t refcount_inc
-ffffffc008047354 t refcount_inc
-ffffffc0080473c4 t refcount_inc
-ffffffc008047434 t refcount_inc
-ffffffc0080474a4 t refcount_inc
-ffffffc008047514 t refcount_inc
-ffffffc008047584 t refcount_inc
-ffffffc0080475f4 t try_release_thread_stack_to_cache
-ffffffc008047770 t thread_stack_free_rcu
-ffffffc0080477b4 t free_signal_struct
-ffffffc008047878 t mmdrop_async_fn
-ffffffc0080478a4 t dup_task_struct
-ffffffc008047c98 t copy_files
-ffffffc008047d6c t copy_fs
-ffffffc008047e04 t copy_sighand
-ffffffc008047f0c t copy_signal
-ffffffc008048090 t copy_mm
-ffffffc00804814c t get_pid
-ffffffc0080481d4 t get_pid
-ffffffc008048258 t get_pid
-ffffffc0080482e0 t copy_seccomp
-ffffffc0080483b4 t ptrace_init_task
-ffffffc00804845c t tty_kref_get
-ffffffc0080484e4 t list_add_tail_rcu
-ffffffc008048540 t list_add_tail_rcu
-ffffffc00804859c t list_add_tail_rcu
-ffffffc0080485f8 t syscall_tracepoint_update
-ffffffc008048674 t trace_task_newtask
-ffffffc008048780 t copy_oom_score_adj
-ffffffc00804883c t copy_clone_args_from_user
-ffffffc008048cb8 T __arm64_sys_personality
-ffffffc008048ce0 t execdomains_proc_show
-ffffffc008048d18 W nmi_panic_self_stop
-ffffffc008048d44 T nmi_panic
-ffffffc008048e00 T panic
-ffffffc0080491c8 T check_panic_on_warn
-ffffffc008049274 T test_taint
-ffffffc0080492a0 t panic_print_sys_info
-ffffffc008049328 t no_blink
-ffffffc00804933c T print_tainted
-ffffffc0080493e8 T get_taint
-ffffffc008049400 T add_taint
-ffffffc0080494f8 T oops_may_print
-ffffffc008049518 T oops_enter
-ffffffc008049548 t do_oops_enter_exit.llvm.13610761371895458860
-ffffffc008049658 T oops_exit
-ffffffc00804969c T __warn
-ffffffc0080499c4 T __warn_printk
-ffffffc008049ba4 t warn_count_show
-ffffffc008049bf4 t clear_warn_once_fops_open
-ffffffc008049c34 t clear_warn_once_set
-ffffffc008049c80 T __traceiter_cpuhp_enter
-ffffffc008049d28 T __traceiter_cpuhp_multi_enter
-ffffffc008049dd8 T __traceiter_cpuhp_exit
-ffffffc008049e80 t trace_event_raw_event_cpuhp_enter
-ffffffc008049f58 t perf_trace_cpuhp_enter
-ffffffc00804a088 t trace_event_raw_event_cpuhp_multi_enter
-ffffffc00804a160 t perf_trace_cpuhp_multi_enter
-ffffffc00804a290 t trace_event_raw_event_cpuhp_exit
-ffffffc00804a364 t perf_trace_cpuhp_exit
-ffffffc00804a490 T cpu_maps_update_begin
-ffffffc00804a4c4 T cpu_maps_update_done
-ffffffc00804a4f8 T cpus_read_lock
-ffffffc00804a610 T cpus_read_trylock
-ffffffc00804a73c T cpus_read_unlock
-ffffffc00804a8c0 T cpus_write_lock
-ffffffc00804a8f4 T cpus_write_unlock
-ffffffc00804a928 T lockdep_assert_cpus_held
-ffffffc00804a938 T cpu_hotplug_disable
-ffffffc00804a990 T cpu_hotplug_enable
-ffffffc00804aa10 W arch_smt_update
-ffffffc00804aa20 T clear_tasks_mm_cpumask
-ffffffc00804ab04 T cpuhp_report_idle_dead
-ffffffc00804aba0 t cpuhp_complete_idle_dead
-ffffffc00804abd0 T cpu_device_down
-ffffffc00804ac44 t cpu_down
-ffffffc00804acc0 T remove_cpu
-ffffffc00804ad20 T smp_shutdown_nonboot_cpus
-ffffffc00804ae60 T notify_cpu_starting
-ffffffc00804afe8 T cpuhp_online_idle
-ffffffc00804b054 T cpu_device_up
-ffffffc00804b110 T add_cpu
-ffffffc00804b170 T bringup_hibernate_cpu
-ffffffc00804b28c T bringup_nonboot_cpus
-ffffffc00804b3c0 T freeze_secondary_cpus
-ffffffc00804b6f8 W arch_thaw_secondary_cpus_begin
-ffffffc00804b708 W arch_thaw_secondary_cpus_end
-ffffffc00804b718 T thaw_secondary_cpus
-ffffffc00804b9c8 t _cpu_up
-ffffffc00804bd3c T __cpuhp_state_add_instance_cpuslocked
-ffffffc00804bf88 t cpuhp_issue_call
-ffffffc00804c154 T __cpuhp_state_add_instance
-ffffffc00804c1b8 T __cpuhp_setup_state_cpuslocked
-ffffffc00804c56c T __cpuhp_setup_state
-ffffffc00804c5f0 T __cpuhp_state_remove_instance
-ffffffc00804c78c T __cpuhp_remove_state_cpuslocked
-ffffffc00804c98c T __cpuhp_remove_state
-ffffffc00804c9d8 T init_cpu_present
-ffffffc00804ca24 T init_cpu_possible
-ffffffc00804ca70 T init_cpu_online
-ffffffc00804cabc T set_cpu_online
-ffffffc00804cc08 T cpu_mitigations_off
-ffffffc00804cc28 T cpu_mitigations_auto_nosmt
-ffffffc00804cc48 t trace_raw_output_cpuhp_enter
-ffffffc00804ccc4 t trace_raw_output_cpuhp_multi_enter
-ffffffc00804cd40 t trace_raw_output_cpuhp_exit
-ffffffc00804cdb8 t cpuhp_should_run
-ffffffc00804cde0 t cpuhp_thread_fun
-ffffffc00804cfbc t cpuhp_invoke_callback
-ffffffc00804d9b4 t cpuhp_kick_ap_work
-ffffffc00804dbf0 t cpuhp_kick_ap
-ffffffc00804de48 t cpu_hotplug_pm_callback
-ffffffc00804df1c t bringup_cpu
-ffffffc00804e00c t finish_cpu
-ffffffc00804e0a0 t takedown_cpu
-ffffffc00804e1b4 t take_cpu_down
-ffffffc00804e33c t control_show
-ffffffc00804e384 t control_show
-ffffffc00804e3e0 t control_store
-ffffffc00804e3f4 t control_store
-ffffffc00804e494 t active_show
-ffffffc00804e4d8 t states_show
-ffffffc00804e58c t state_show
-ffffffc00804e5f4 t state_show
-ffffffc00804e69c t state_show
-ffffffc00804e72c t target_show
-ffffffc00804e798 t target_store
-ffffffc00804e9f8 t fail_show
-ffffffc00804ea64 t fail_show
-ffffffc00804eaa8 t fail_store
-ffffffc00804ec2c T put_task_struct_rcu_user
-ffffffc00804ecb8 t delayed_put_task_struct
-ffffffc00804ede4 W release_thread
-ffffffc00804edf4 T release_task
-ffffffc00804f3b8 T rcuwait_wake_up
-ffffffc00804f420 T is_current_pgrp_orphaned
-ffffffc00804f514 T do_exit
-ffffffc008050094 T make_task_dead
-ffffffc008050218 T __arm64_sys_exit
-ffffffc00805023c T do_group_exit
-ffffffc0080502e0 T __arm64_sys_exit_group
-ffffffc008050304 T __wake_up_parent
-ffffffc008050340 T __arm64_sys_waitid
-ffffffc008050e54 T kernel_wait4
-ffffffc0080510dc t do_wait
-ffffffc0080513a4 T kernel_wait
-ffffffc008051458 T __arm64_sys_wait4
-ffffffc008051654 T thread_group_exited
-ffffffc0080516d8 W abort
-ffffffc0080516e4 t oops_count_show
-ffffffc008051730 t put_task_struct
-ffffffc0080517b8 t put_task_struct
-ffffffc008051840 t kill_orphaned_pgrp
-ffffffc008051994 t child_wait_callback
-ffffffc008051a1c t wait_consider_task
-ffffffc008052240 t get_task_struct
-ffffffc0080522c4 t get_task_struct
-ffffffc008052348 t get_task_struct
-ffffffc0080523d0 T __traceiter_irq_handler_entry
-ffffffc008052460 T __traceiter_irq_handler_exit
-ffffffc0080524f8 T __traceiter_softirq_entry
-ffffffc008052578 T __traceiter_softirq_exit
-ffffffc0080525f8 T __traceiter_softirq_raise
-ffffffc008052678 T __traceiter_tasklet_entry
-ffffffc0080526f8 T __traceiter_tasklet_exit
-ffffffc008052778 t trace_event_raw_event_irq_handler_entry
-ffffffc00805287c t perf_trace_irq_handler_entry
-ffffffc0080529f4 t trace_event_raw_event_irq_handler_exit
-ffffffc008052ab0 t perf_trace_irq_handler_exit
-ffffffc008052bc8 t trace_event_raw_event_softirq
-ffffffc008052c80 t perf_trace_softirq
-ffffffc008052d8c t trace_event_raw_event_tasklet
-ffffffc008052e44 t perf_trace_tasklet
-ffffffc008052f50 T _local_bh_enable
-ffffffc008052fa0 T __local_bh_enable_ip
-ffffffc008053080 T do_softirq
-ffffffc00805317c T irq_enter_rcu
-ffffffc008053218 T irq_enter
-ffffffc0080532b8 T irq_exit_rcu
-ffffffc0080532e0 t __irq_exit_rcu.llvm.1874434192752900502
-ffffffc008053424 T irq_exit
-ffffffc008053454 T raise_softirq_irqoff
-ffffffc0080534dc T __raise_softirq_irqoff
-ffffffc008053608 T raise_softirq
-ffffffc0080536d0 T open_softirq
-ffffffc0080536fc T __tasklet_schedule
-ffffffc008053730 t __tasklet_schedule_common
-ffffffc008053818 T __tasklet_hi_schedule
-ffffffc008053850 T tasklet_setup
-ffffffc008053874 T tasklet_init
-ffffffc008053894 T tasklet_unlock_spin_wait
-ffffffc0080538b8 T tasklet_kill
-ffffffc008053afc T tasklet_unlock_wait
-ffffffc008053bcc T tasklet_unlock
-ffffffc008053c30 t tasklet_action
-ffffffc008053c74 t tasklet_hi_action
-ffffffc008053cb8 W arch_dynirq_lower_bound
-ffffffc008053cc8 t trace_raw_output_irq_handler_entry
-ffffffc008053d44 t trace_raw_output_irq_handler_exit
-ffffffc008053dc8 t trace_raw_output_softirq
-ffffffc008053e58 t trace_raw_output_tasklet
-ffffffc008053ec8 t tasklet_action_common
-ffffffc008054498 t takeover_tasklets
-ffffffc00805469c t ksoftirqd_should_run
-ffffffc0080546c0 t run_ksoftirqd
-ffffffc00805473c T release_child_resources
-ffffffc00805478c t __release_child_resources.llvm.4601101039909387224
-ffffffc008054808 T request_resource_conflict
-ffffffc0080548cc T request_resource
-ffffffc008054998 T release_resource
-ffffffc008054a2c T walk_iomem_res_desc
-ffffffc008054a6c t __walk_iomem_res_desc
-ffffffc008054c2c T walk_system_ram_res
-ffffffc008054c6c T walk_mem_res
-ffffffc008054cac T walk_system_ram_range
-ffffffc008054e10 W page_is_ram
-ffffffc008054f10 T region_intersects
-ffffffc008055000 W arch_remove_reservations
-ffffffc008055010 T allocate_resource
-ffffffc0080552f8 t simple_align_resource
-ffffffc00805530c T lookup_resource
-ffffffc00805537c T insert_resource_conflict
-ffffffc0080553e4 t __insert_resource
-ffffffc008055530 T insert_resource
-ffffffc0080555a4 T insert_resource_expand_to_fit
-ffffffc008055674 T remove_resource
-ffffffc008055734 T adjust_resource
-ffffffc00805582c t __adjust_resource
-ffffffc0080558dc T resource_alignment
-ffffffc008055928 T iomem_get_mapping
-ffffffc008055948 T __request_region
-ffffffc008055be0 t free_resource
-ffffffc008055c70 T __release_region
-ffffffc008055de4 T release_mem_region_adjustable
-ffffffc008056098 T merge_system_ram_resource
-ffffffc0080562d4 T devm_request_resource
-ffffffc008056424 t devm_resource_release
-ffffffc0080564a8 T devm_release_resource
-ffffffc0080564f4 t devm_resource_match
-ffffffc008056510 T __devm_request_region
-ffffffc0080565d8 t devm_region_release
-ffffffc008056610 T __devm_release_region
-ffffffc0080566b0 t devm_region_match
-ffffffc0080566fc T iomem_map_sanity_check
-ffffffc0080567e8 t r_next
-ffffffc00805682c T iomem_is_exclusive
-ffffffc008056934 T resource_list_create_entry
-ffffffc008056990 T resource_list_free
-ffffffc008056a20 t r_start
-ffffffc008056ac8 t r_stop
-ffffffc008056afc t r_show
-ffffffc008056c24 t __find_resource
-ffffffc008056e54 t iomem_fs_init_fs_context
-ffffffc008056e94 T proc_dostring
-ffffffc00805707c T do_proc_douintvec
-ffffffc00805732c T proc_dobool
-ffffffc008057380 t do_proc_dobool_conv
-ffffffc0080573b8 T proc_dointvec
-ffffffc008057408 T proc_douintvec
-ffffffc008057440 t do_proc_douintvec_conv.llvm.11239895258556977041
-ffffffc008057488 T proc_dointvec_minmax
-ffffffc008057510 t do_proc_dointvec_minmax_conv
-ffffffc008057618 T proc_douintvec_minmax
-ffffffc008057684 t do_proc_douintvec_minmax_conv
-ffffffc008057764 T proc_dou8vec_minmax
-ffffffc008057894 T proc_doulongvec_minmax
-ffffffc0080578c4 t do_proc_doulongvec_minmax.llvm.11239895258556977041
-ffffffc008057d08 T proc_doulongvec_ms_jiffies_minmax
-ffffffc008057d3c T proc_dointvec_jiffies
-ffffffc008057d90 t do_proc_dointvec_jiffies_conv.llvm.11239895258556977041
-ffffffc008057e18 T proc_dointvec_ms_jiffies_minmax
-ffffffc008057ea0 t do_proc_dointvec_ms_jiffies_minmax_conv
-ffffffc008057fb4 T proc_dointvec_userhz_jiffies
-ffffffc008058008 t do_proc_dointvec_userhz_jiffies_conv.llvm.11239895258556977041
-ffffffc0080580c0 T proc_dointvec_ms_jiffies
-ffffffc008058114 t do_proc_dointvec_ms_jiffies_conv.llvm.11239895258556977041
-ffffffc0080581a0 T proc_do_large_bitmap
-ffffffc008058770 t proc_get_long
-ffffffc00805890c T proc_do_static_key
-ffffffc008058a64 t __do_proc_dointvec.llvm.11239895258556977041
-ffffffc008058e20 t do_proc_dointvec_conv
-ffffffc008058ea0 t proc_taint
-ffffffc008058fec t sysrq_sysctl_handler
-ffffffc0080590b0 t proc_do_cad_pid
-ffffffc0080591bc t proc_dointvec_minmax_warn_RT_change
-ffffffc008059244 T __arm64_sys_capget
-ffffffc008059648 T __arm64_sys_capset
-ffffffc008059a88 T has_ns_capability
-ffffffc008059afc T has_capability
-ffffffc008059b68 T has_ns_capability_noaudit
-ffffffc008059bdc T has_capability_noaudit
-ffffffc008059c48 T ns_capable
-ffffffc008059cc4 T ns_capable_noaudit
-ffffffc008059d40 T ns_capable_setid
-ffffffc008059dbc T capable
-ffffffc008059e3c T file_ns_capable
-ffffffc008059e8c T privileged_wrt_inode_uidgid
-ffffffc008059ec0 T capable_wrt_inode_uidgid
-ffffffc008059f60 T ptracer_capable
-ffffffc008059fd0 t cap_validate_magic
-ffffffc00805a374 T ptrace_access_vm
-ffffffc00805a444 T __ptrace_link
-ffffffc00805a50c T __ptrace_unlink
-ffffffc00805a6c4 T ptrace_may_access
-ffffffc00805a72c t __ptrace_may_access
-ffffffc00805a8ac T exit_ptrace
-ffffffc00805a970 t __ptrace_detach
-ffffffc00805aa64 T ptrace_readdata
-ffffffc00805ad50 T ptrace_writedata
-ffffffc00805b014 T ptrace_request
-ffffffc00805c1f0 T generic_ptrace_peekdata
-ffffffc00805c42c T generic_ptrace_pokedata
-ffffffc00805c51c t ptrace_setsiginfo
-ffffffc00805c5d8 t ptrace_regset
-ffffffc00805c7c4 T __arm64_sys_ptrace
-ffffffc00805cd40 T find_user
-ffffffc00805ce48 T free_uid
-ffffffc00805cf0c T alloc_uid
-ffffffc00805d148 T __traceiter_signal_generate
-ffffffc00805d1f8 T __traceiter_signal_deliver
-ffffffc00805d290 t trace_event_raw_event_signal_generate
-ffffffc00805d3bc t perf_trace_signal_generate
-ffffffc00805d538 t trace_event_raw_event_signal_deliver
-ffffffc00805d648 t perf_trace_signal_deliver
-ffffffc00805d7a8 T recalc_sigpending_and_wake
-ffffffc00805d87c T recalc_sigpending
-ffffffc00805d95c T calculate_sigpending
-ffffffc00805da6c T next_signal
-ffffffc00805dab4 T task_set_jobctl_pending
-ffffffc00805db30 T task_clear_jobctl_trapping
-ffffffc00805db7c T task_clear_jobctl_pending
-ffffffc00805dbfc T task_join_group_stop
-ffffffc00805dc74 T flush_sigqueue
-ffffffc00805dd30 T flush_signals
-ffffffc00805deb0 T flush_itimer_signals
-ffffffc00805e080 T ignore_signals
-ffffffc00805e0c8 T flush_signal_handlers
-ffffffc00805e118 T unhandled_signal
-ffffffc00805e174 T dequeue_signal
-ffffffc00805e3b4 t __dequeue_signal
-ffffffc00805e53c T signal_wake_up_state
-ffffffc00805e5b4 T send_signal_locked
-ffffffc00805e7a4 t __send_signal_locked
-ffffffc00805eb54 T do_send_sig_info
-ffffffc00805ec30 T force_sig_info
-ffffffc00805ec60 t force_sig_info_to_task
-ffffffc00805ed74 T zap_other_threads
-ffffffc00805eeac T __lock_task_sighand
-ffffffc00805ef40 T group_send_sig_info
-ffffffc00805efcc t check_kill_permission
-ffffffc00805f0f4 T __kill_pgrp_info
-ffffffc00805f1d4 T kill_pid_info
-ffffffc00805f290 T kill_pid_usb_asyncio
-ffffffc00805f434 T send_sig_info
-ffffffc00805f474 T send_sig
-ffffffc00805f4c4 T force_sig
-ffffffc00805f540 T force_fatal_sig
-ffffffc00805f5bc T force_exit_sig
-ffffffc00805f638 T force_sigsegv
-ffffffc00805f6e0 T force_sig_fault_to_task
-ffffffc00805f758 T force_sig_fault
-ffffffc00805f7d0 T send_sig_fault
-ffffffc00805f858 T force_sig_mceerr
-ffffffc00805f8e8 T send_sig_mceerr
-ffffffc00805f97c T force_sig_bnderr
-ffffffc00805f9f8 T force_sig_pkuerr
-ffffffc00805fa7c T send_sig_perf
-ffffffc00805fb0c T force_sig_seccomp
-ffffffc00805fbb4 T force_sig_ptrace_errno_trap
-ffffffc00805fc38 T force_sig_fault_trapno
-ffffffc00805fcb4 T send_sig_fault_trapno
-ffffffc00805fd40 T kill_pgrp
-ffffffc00805fdb8 T kill_pid
-ffffffc00805fdfc T sigqueue_alloc
-ffffffc00805fe38 t __sigqueue_alloc
-ffffffc00805ff28 T sigqueue_free
-ffffffc00805ffdc T send_sigqueue
-ffffffc0080602b0 t prepare_signal
-ffffffc008060598 t complete_signal
-ffffffc008060888 T do_notify_parent
-ffffffc008060b48 T ptrace_notify
-ffffffc008060c54 T get_signal
-ffffffc00806152c t do_notify_parent_cldstop
-ffffffc0080616e4 t do_signal_stop
-ffffffc0080619ec t do_jobctl_trap
-ffffffc008061af4 t do_freezer_trap
-ffffffc008061b7c t ptrace_signal
-ffffffc008061c94 T signal_setup_done
-ffffffc008061e10 T exit_signals
-ffffffc008061f24 t retarget_shared_pending
-ffffffc00806201c t task_participate_group_stop
-ffffffc0080620fc T __arm64_sys_restart_syscall
-ffffffc00806214c T do_no_restart_syscall
-ffffffc008062160 T set_current_blocked
-ffffffc0080621d4 T __set_current_blocked
-ffffffc008062234 t __set_task_blocked
-ffffffc008062384 T sigprocmask
-ffffffc008062460 T set_user_sigmask
-ffffffc008062684 T __arm64_sys_rt_sigprocmask
-ffffffc008062a04 T __arm64_sys_rt_sigpending
-ffffffc008062c08 T siginfo_layout
-ffffffc008062d18 T copy_siginfo_to_user
-ffffffc008062fd4 T copy_siginfo_from_user
-ffffffc008063174 t post_copy_siginfo_from_user
-ffffffc0080633cc T __arm64_sys_rt_sigtimedwait
-ffffffc0080637b8 T __arm64_sys_kill
-ffffffc0080639d0 T __arm64_sys_pidfd_send_signal
-ffffffc008063ba4 T __arm64_sys_tgkill
-ffffffc008063c90 T __arm64_sys_tkill
-ffffffc008063dbc T __arm64_sys_rt_sigqueueinfo
-ffffffc008063ea8 T __arm64_sys_rt_tgsigqueueinfo
-ffffffc008063f94 T kernel_sigaction
-ffffffc0080640f8 t flush_sigqueue_mask
-ffffffc0080641e0 W sigaction_compat_abi
-ffffffc0080641f0 T do_sigaction
-ffffffc0080643c8 T __arm64_sys_sigaltstack
-ffffffc0080647e0 T restore_altstack
-ffffffc008064a3c T __save_altstack
-ffffffc008064e08 T __arm64_sys_rt_sigaction
-ffffffc008065148 T __arm64_sys_rt_sigsuspend
-ffffffc008065390 W arch_vma_name
-ffffffc0080653a4 t trace_raw_output_signal_generate
-ffffffc008065434 t trace_raw_output_signal_deliver
-ffffffc0080654ac t print_dropped_signal
-ffffffc008065520 t ptrace_trap_notify
-ffffffc0080655e8 t ptrace_stop
-ffffffc0080658fc t do_send_specific
-ffffffc0080659b8 t __copy_siginfo_from_user
-ffffffc008065b6c T __arm64_sys_setpriority
-ffffffc008065df8 T __arm64_sys_getpriority
-ffffffc008066090 T __sys_setregid
-ffffffc0080661d0 T __arm64_sys_setregid
-ffffffc008066208 T __sys_setgid
-ffffffc0080662f8 T __arm64_sys_setgid
-ffffffc008066328 T __sys_setreuid
-ffffffc008066504 T __arm64_sys_setreuid
-ffffffc00806653c T __sys_setuid
-ffffffc0080666bc T __arm64_sys_setuid
-ffffffc0080666ec T __sys_setresuid
-ffffffc008066970 T __arm64_sys_setresuid
-ffffffc0080669ac T __arm64_sys_getresuid
-ffffffc008066dac T __sys_setresgid
-ffffffc008066f98 T __arm64_sys_setresgid
-ffffffc008066fd4 T __arm64_sys_getresgid
-ffffffc0080673c4 T __sys_setfsuid
-ffffffc0080674b0 T __arm64_sys_setfsuid
-ffffffc0080674e0 T __sys_setfsgid
-ffffffc0080675cc T __arm64_sys_setfsgid
-ffffffc0080675fc T __arm64_sys_getpid
-ffffffc008067638 T __arm64_sys_gettid
-ffffffc008067674 T __arm64_sys_getppid
-ffffffc0080676d0 T __arm64_sys_getuid
-ffffffc0080676fc T __arm64_sys_geteuid
-ffffffc008067728 T __arm64_sys_getgid
-ffffffc008067754 T __arm64_sys_getegid
-ffffffc008067780 T __arm64_sys_times
-ffffffc008067988 T __arm64_sys_setpgid
-ffffffc008067b10 T __arm64_sys_getpgid
-ffffffc008067b9c T __arm64_sys_getsid
-ffffffc008067c28 T ksys_setsid
-ffffffc008067d10 T __arm64_sys_setsid
-ffffffc008067d40 T __arm64_sys_newuname
-ffffffc00806812c T __arm64_sys_sethostname
-ffffffc008068394 T __arm64_sys_setdomainname
-ffffffc0080685fc T __arm64_sys_getrlimit
-ffffffc008068804 T __arm64_sys_prlimit64
-ffffffc008068cfc T __arm64_sys_setrlimit
-ffffffc008068ec0 T getrusage
-ffffffc0080691ec T __arm64_sys_getrusage
-ffffffc0080693e4 T __arm64_sys_umask
-ffffffc008069434 T __arm64_sys_prctl
-ffffffc00806a50c T __arm64_sys_getcpu
-ffffffc00806a7c0 T __arm64_sys_sysinfo
-ffffffc00806aa5c t set_one_prio
-ffffffc00806ab38 t do_prlimit
-ffffffc00806ac98 t propagate_has_child_subreaper
-ffffffc00806ace4 T usermodehelper_read_trylock
-ffffffc00806ae24 T usermodehelper_read_lock_wait
-ffffffc00806af18 T usermodehelper_read_unlock
-ffffffc00806af4c T __usermodehelper_set_disable_depth
-ffffffc00806afb8 T __usermodehelper_disable
-ffffffc00806b150 T call_usermodehelper_setup
-ffffffc00806b218 t call_usermodehelper_exec_work
-ffffffc00806b350 T call_usermodehelper_exec
-ffffffc00806b5ac T call_usermodehelper
-ffffffc00806b65c t proc_cap_handler
-ffffffc00806b808 t call_usermodehelper_exec_async
-ffffffc00806b9b8 T __traceiter_workqueue_queue_work
-ffffffc00806ba50 T __traceiter_workqueue_activate_work
-ffffffc00806bad0 T __traceiter_workqueue_execute_start
-ffffffc00806bb50 T __traceiter_workqueue_execute_end
-ffffffc00806bbe0 t trace_event_raw_event_workqueue_queue_work
-ffffffc00806bd04 t perf_trace_workqueue_queue_work
-ffffffc00806be98 t trace_event_raw_event_workqueue_activate_work
-ffffffc00806bf50 t perf_trace_workqueue_activate_work
-ffffffc00806c05c t trace_event_raw_event_workqueue_execute_start
-ffffffc00806c11c t perf_trace_workqueue_execute_start
-ffffffc00806c230 t trace_event_raw_event_workqueue_execute_end
-ffffffc00806c2ec t perf_trace_workqueue_execute_end
-ffffffc00806c404 T wq_worker_running
-ffffffc00806c4ac T wq_worker_sleeping
-ffffffc00806c580 T wq_worker_last_func
-ffffffc00806c5b0 T queue_work_on
-ffffffc00806c654 t __queue_work
-ffffffc00806cc34 T queue_work_node
-ffffffc00806ccf0 T delayed_work_timer_fn
-ffffffc00806cd2c T queue_delayed_work_on
-ffffffc00806ce74 T mod_delayed_work_on
-ffffffc00806cfcc t try_to_grab_pending
-ffffffc00806d1c0 T queue_rcu_work
-ffffffc00806d244 t rcu_work_rcufn
-ffffffc00806d2a4 T __flush_workqueue
-ffffffc00806d784 t flush_workqueue_prep_pwqs
-ffffffc00806d938 t check_flush_dependency
-ffffffc00806da8c T drain_workqueue
-ffffffc00806dc1c T flush_work
-ffffffc00806dc48 t __flush_work.llvm.17059044928360693038
-ffffffc00806df30 T cancel_work_sync
-ffffffc00806df60 t __cancel_work_timer.llvm.17059044928360693038
-ffffffc00806e138 T flush_delayed_work
-ffffffc00806e1bc T flush_rcu_work
-ffffffc00806e218 T cancel_work
-ffffffc00806e2f4 T cancel_delayed_work
-ffffffc00806e3d0 T cancel_delayed_work_sync
-ffffffc00806e404 T schedule_on_each_cpu
-ffffffc00806e5c8 T execute_in_process_context
-ffffffc00806e6f4 t schedule_work
-ffffffc00806e7a4 T free_workqueue_attrs
-ffffffc00806e7d4 T alloc_workqueue_attrs
-ffffffc00806e848 T apply_workqueue_attrs
-ffffffc00806e8b0 t apply_workqueue_attrs_locked
-ffffffc00806e968 T alloc_workqueue
-ffffffc00806eeec t init_rescuer
-ffffffc00806efec T workqueue_sysfs_register
-ffffffc00806f138 t pwq_adjust_max_active
-ffffffc00806f268 T destroy_workqueue
-ffffffc00806f4b4 t show_pwq
-ffffffc00806f860 T show_one_workqueue
-ffffffc00806f958 t rcu_free_wq
-ffffffc00806f9b0 t put_pwq_unlocked
-ffffffc00806faa0 T workqueue_set_max_active
-ffffffc00806fba4 T current_work
-ffffffc00806fc20 T current_is_workqueue_rescuer
-ffffffc00806fca4 T workqueue_congested
-ffffffc00806fd94 T work_busy
-ffffffc00806fe94 T set_worker_desc
-ffffffc00806ff90 T print_worker_info
-ffffffc0080700cc T show_all_workqueues
-ffffffc00807031c T wq_worker_comm
-ffffffc0080703f8 T workqueue_prepare_cpu
-ffffffc0080704a0 t create_worker
-ffffffc008070680 T workqueue_online_cpu
-ffffffc0080708a8 T workqueue_offline_cpu
-ffffffc008070ab4 T work_on_cpu
-ffffffc008070bc8 t work_for_cpu_fn
-ffffffc008070c20 T work_on_cpu_safe
-ffffffc008070d80 T freeze_workqueues_begin
-ffffffc008070e5c T freeze_workqueues_busy
-ffffffc008070f40 T thaw_workqueues
-ffffffc008071010 T workqueue_set_unbound_cpumask
-ffffffc008071234 t wq_device_release
-ffffffc008071264 T wq_watchdog_touch
-ffffffc0080712ac t init_worker_pool
-ffffffc0080713e0 T __warn_flushing_systemwide_wq
-ffffffc0080713f0 t trace_raw_output_workqueue_queue_work
-ffffffc008071470 t trace_raw_output_workqueue_activate_work
-ffffffc0080714e4 t trace_raw_output_workqueue_execute_start
-ffffffc008071558 t trace_raw_output_workqueue_execute_end
-ffffffc0080715c8 t is_chained_work
-ffffffc00807165c t pwq_activate_inactive_work
-ffffffc008071830 t pwq_dec_nr_in_flight
-ffffffc008071954 t wq_barrier_func
-ffffffc008071984 t cwt_wakefn
-ffffffc0080719c0 t apply_wqattrs_prepare
-ffffffc0080720b0 t apply_wqattrs_commit
-ffffffc00807220c t put_unbound_pool
-ffffffc0080724a0 t rcu_free_pool
-ffffffc0080724f0 t pwq_unbound_release_workfn
-ffffffc008072614 t rcu_free_pwq
-ffffffc00807264c t rescuer_thread
-ffffffc008072ad0 t worker_attach_to_pool
-ffffffc008072ba0 t worker_detach_from_pool
-ffffffc008072c64 t process_one_work
-ffffffc008073140 t worker_clr_flags
-ffffffc0080731a0 t worker_thread
-ffffffc00807362c t worker_enter_idle
-ffffffc00807376c t wq_unbound_cpumask_show
-ffffffc0080737e4 t wq_unbound_cpumask_store
-ffffffc0080738a0 t per_cpu_show
-ffffffc0080738f4 t max_active_show
-ffffffc008073940 t max_active_store
-ffffffc0080739e8 t wq_pool_ids_show
-ffffffc008073a94 t wq_nice_show
-ffffffc008073b0c t wq_nice_store
-ffffffc008073c50 t wq_cpumask_show
-ffffffc008073cd0 t wq_cpumask_store
-ffffffc008073dfc t wq_numa_show
-ffffffc008073e7c t wq_numa_store
-ffffffc008073fcc t wq_watchdog_param_set_thresh
-ffffffc00807411c t idle_worker_timeout
-ffffffc00807427c t pool_mayday_timeout
-ffffffc0080743e4 t wq_watchdog_timer_fn
-ffffffc008074660 T put_pid
-ffffffc0080746fc T free_pid
-ffffffc0080747f4 t delayed_put_pid
-ffffffc008074890 T alloc_pid
-ffffffc008074be4 T disable_pid_allocation
-ffffffc008074c3c T find_pid_ns
-ffffffc008074c74 T find_vpid
-ffffffc008074cc0 T task_active_pid_ns
-ffffffc008074cf0 T attach_pid
-ffffffc008074d54 T detach_pid
-ffffffc008074e1c T change_pid
-ffffffc008074f3c T exchange_tids
-ffffffc008074f9c T transfer_pid
-ffffffc008075004 T pid_task
-ffffffc008075048 T find_task_by_pid_ns
-ffffffc00807509c T find_task_by_vpid
-ffffffc008075104 T find_get_task_by_vpid
-ffffffc0080751e4 T get_task_pid
-ffffffc0080752b4 T get_pid_task
-ffffffc008075380 T find_get_pid
-ffffffc008075440 T pid_nr_ns
-ffffffc008075484 T pid_vnr
-ffffffc0080754e0 T __task_pid_nr_ns
-ffffffc0080755c4 T find_ge_pid
-ffffffc00807562c T pidfd_get_pid
-ffffffc008075700 T pidfd_get_task
-ffffffc00807589c T pidfd_create
-ffffffc0080759f8 T __arm64_sys_pidfd_open
-ffffffc008075ae0 T __arm64_sys_pidfd_getfd
-ffffffc008075cec T task_work_add
-ffffffc008075eb8 T task_work_cancel_match
-ffffffc008075fd4 T task_work_cancel
-ffffffc0080760c8 T task_work_run
-ffffffc0080761d0 T search_kernel_exception_table
-ffffffc008076260 T search_exception_tables
-ffffffc0080762f0 T core_kernel_text
-ffffffc008076358 T __kernel_text_address
-ffffffc008076400 T kernel_text_address
-ffffffc00807648c T func_ptr_is_kernel_text
-ffffffc008076500 T parameqn
-ffffffc00807658c T parameq
-ffffffc008076650 T parse_args
-ffffffc0080769e4 T param_set_byte
-ffffffc008076a18 T param_get_byte
-ffffffc008076a58 T param_set_short
-ffffffc008076a8c T param_get_short
-ffffffc008076acc T param_set_ushort
-ffffffc008076b00 T param_get_ushort
-ffffffc008076b40 T param_set_int
-ffffffc008076b74 T param_get_int
-ffffffc008076bb4 T param_set_uint
-ffffffc008076be8 T param_get_uint
-ffffffc008076c28 T param_set_long
-ffffffc008076c5c T param_get_long
-ffffffc008076c9c T param_set_ulong
-ffffffc008076cd0 T param_get_ulong
-ffffffc008076d10 T param_set_ullong
-ffffffc008076d44 T param_get_ullong
-ffffffc008076d84 T param_set_hexint
-ffffffc008076db8 T param_get_hexint
-ffffffc008076df8 T param_set_uint_minmax
-ffffffc008076eac T param_set_charp
-ffffffc008077040 T param_get_charp
-ffffffc008077080 T param_free_charp
-ffffffc008077124 T param_set_bool
-ffffffc008077164 T param_get_bool
-ffffffc0080771b0 T param_set_bool_enable_only
-ffffffc008077268 T param_set_invbool
-ffffffc0080772f8 T param_get_invbool
-ffffffc008077344 T param_set_bint
-ffffffc0080773d0 t param_array_set
-ffffffc00807757c t param_array_get
-ffffffc00807771c t param_array_free
-ffffffc0080777c0 T param_set_copystring
-ffffffc008077844 T param_get_string
-ffffffc008077884 T kernel_param_lock
-ffffffc0080778b8 T kernel_param_unlock
-ffffffc0080778ec T destroy_params
-ffffffc008077968 T __modver_version_show
-ffffffc0080779b0 t module_kobj_release
-ffffffc0080779e0 t module_attr_show
-ffffffc008077a44 t module_attr_store
-ffffffc008077aa8 t uevent_filter
-ffffffc008077acc t param_attr_show
-ffffffc008077b70 t param_attr_store
-ffffffc008077c6c T get_kthread_comm
-ffffffc008077cd0 T set_kthread_struct
-ffffffc008077da0 T free_kthread_struct
-ffffffc008077e04 T kthread_should_stop
-ffffffc008077e34 T __kthread_should_park
-ffffffc008077e60 T kthread_should_park
-ffffffc008077e90 T kthread_freezable_should_stop
-ffffffc008077f28 T kthread_func
-ffffffc008077f58 T kthread_data
-ffffffc008077f80 T kthread_probe_data
-ffffffc008078004 T kthread_parkme
-ffffffc008078044 t __kthread_parkme
-ffffffc008078104 T kthread_exit
-ffffffc008078140 T kthread_complete_and_exit
-ffffffc008078170 T tsk_fork_get_node
-ffffffc008078184 T kthread_create_on_node
-ffffffc008078204 t __kthread_create_on_node
-ffffffc008078414 T kthread_bind_mask
-ffffffc00807849c T kthread_bind
-ffffffc008078540 T kthread_create_on_cpu
-ffffffc008078624 T kthread_set_per_cpu
-ffffffc0080786d4 T kthread_is_per_cpu
-ffffffc008078708 T kthread_unpark
-ffffffc008078810 T kthread_park
-ffffffc0080788f4 T kthread_stop
-ffffffc008078b7c T kthreadd
-ffffffc008078cf8 T __kthread_init_worker
-ffffffc008078d38 T kthread_worker_fn
-ffffffc008078fc8 T kthread_create_worker
-ffffffc008079118 T kthread_create_worker_on_cpu
-ffffffc0080792e0 T kthread_queue_work
-ffffffc008079370 t kthread_insert_work
-ffffffc0080794c0 T kthread_delayed_work_timer_fn
-ffffffc008079598 T kthread_queue_delayed_work
-ffffffc0080796dc T kthread_flush_work
-ffffffc0080797f8 t kthread_flush_work_fn
-ffffffc008079828 T kthread_mod_delayed_work
-ffffffc0080799f8 T kthread_cancel_work_sync
-ffffffc008079a28 t __kthread_cancel_work_sync.llvm.7324210556044857102
-ffffffc008079b74 T kthread_cancel_delayed_work_sync
-ffffffc008079ba8 T kthread_flush_worker
-ffffffc008079c98 T kthread_destroy_worker
-ffffffc008079d0c T kthread_use_mm
-ffffffc008079fcc T kthread_unuse_mm
-ffffffc00807a0c0 t kthread
-ffffffc00807a210 W compat_sys_epoll_pwait
-ffffffc00807a210 W compat_sys_epoll_pwait2
-ffffffc00807a210 W compat_sys_fadvise64_64
-ffffffc00807a210 W compat_sys_fanotify_mark
-ffffffc00807a210 W compat_sys_get_robust_list
-ffffffc00807a210 W compat_sys_getsockopt
-ffffffc00807a210 W compat_sys_io_pgetevents
-ffffffc00807a210 W compat_sys_io_pgetevents_time32
-ffffffc00807a210 W compat_sys_io_setup
-ffffffc00807a210 W compat_sys_io_submit
-ffffffc00807a210 W compat_sys_ipc
-ffffffc00807a210 W compat_sys_kexec_load
-ffffffc00807a210 W compat_sys_keyctl
-ffffffc00807a210 W compat_sys_lookup_dcookie
-ffffffc00807a210 W compat_sys_mq_getsetattr
-ffffffc00807a210 W compat_sys_mq_notify
-ffffffc00807a210 W compat_sys_mq_open
-ffffffc00807a210 W compat_sys_msgctl
-ffffffc00807a210 W compat_sys_msgrcv
-ffffffc00807a210 W compat_sys_msgsnd
-ffffffc00807a210 W compat_sys_old_msgctl
-ffffffc00807a210 W compat_sys_old_semctl
-ffffffc00807a210 W compat_sys_old_shmctl
-ffffffc00807a210 W compat_sys_open_by_handle_at
-ffffffc00807a210 W compat_sys_ppoll_time32
-ffffffc00807a210 W compat_sys_process_vm_readv
-ffffffc00807a210 W compat_sys_process_vm_writev
-ffffffc00807a210 W compat_sys_pselect6_time32
-ffffffc00807a210 W compat_sys_recv
-ffffffc00807a210 W compat_sys_recvfrom
-ffffffc00807a210 W compat_sys_recvmmsg_time32
-ffffffc00807a210 W compat_sys_recvmmsg_time64
-ffffffc00807a210 W compat_sys_recvmsg
-ffffffc00807a210 W compat_sys_rt_sigtimedwait_time32
-ffffffc00807a210 W compat_sys_s390_ipc
-ffffffc00807a210 W compat_sys_semctl
-ffffffc00807a210 W compat_sys_sendmmsg
-ffffffc00807a210 W compat_sys_sendmsg
-ffffffc00807a210 W compat_sys_set_robust_list
-ffffffc00807a210 W compat_sys_setsockopt
-ffffffc00807a210 W compat_sys_shmat
-ffffffc00807a210 W compat_sys_shmctl
-ffffffc00807a210 W compat_sys_signalfd
-ffffffc00807a210 W compat_sys_signalfd4
-ffffffc00807a210 W compat_sys_socketcall
-ffffffc00807a210 T sys_ni_syscall
-ffffffc00807a224 W __arm64_sys_io_getevents_time32
-ffffffc00807a238 W __arm64_sys_io_pgetevents_time32
-ffffffc00807a24c W __arm64_sys_lookup_dcookie
-ffffffc00807a260 W __arm64_sys_quotactl
-ffffffc00807a274 W __arm64_sys_quotactl_fd
-ffffffc00807a288 W __arm64_sys_timerfd_settime32
-ffffffc00807a29c W __arm64_sys_timerfd_gettime32
-ffffffc00807a2b0 W __arm64_sys_acct
-ffffffc00807a2c4 W __arm64_sys_futex_time32
-ffffffc00807a2d8 W __arm64_sys_kexec_load
-ffffffc00807a2ec W __arm64_sys_init_module
-ffffffc00807a300 W __arm64_sys_delete_module
-ffffffc00807a314 W __arm64_sys_mq_open
-ffffffc00807a328 W __arm64_sys_mq_unlink
-ffffffc00807a33c W __arm64_sys_mq_timedsend
-ffffffc00807a350 W __arm64_sys_mq_timedsend_time32
-ffffffc00807a364 W __arm64_sys_mq_timedreceive
-ffffffc00807a378 W __arm64_sys_mq_timedreceive_time32
-ffffffc00807a38c W __arm64_sys_mq_notify
-ffffffc00807a3a0 W __arm64_sys_mq_getsetattr
-ffffffc00807a3b4 W __arm64_sys_msgget
-ffffffc00807a3c8 W __arm64_sys_old_msgctl
-ffffffc00807a3dc W __arm64_sys_msgctl
-ffffffc00807a3f0 W __arm64_sys_msgrcv
-ffffffc00807a404 W __arm64_sys_msgsnd
-ffffffc00807a418 W __arm64_sys_semget
-ffffffc00807a42c W __arm64_sys_old_semctl
-ffffffc00807a440 W __arm64_sys_semctl
-ffffffc00807a454 W __arm64_sys_semtimedop
-ffffffc00807a468 W __arm64_sys_semtimedop_time32
-ffffffc00807a47c W __arm64_sys_semop
-ffffffc00807a490 W __arm64_sys_shmget
-ffffffc00807a4a4 W __arm64_sys_old_shmctl
-ffffffc00807a4b8 W __arm64_sys_shmctl
-ffffffc00807a4cc W __arm64_sys_shmat
-ffffffc00807a4e0 W __arm64_sys_shmdt
-ffffffc00807a4f4 W __arm64_sys_add_key
-ffffffc00807a508 W __arm64_sys_request_key
-ffffffc00807a51c W __arm64_sys_keyctl
-ffffffc00807a530 W __arm64_sys_landlock_create_ruleset
-ffffffc00807a544 W __arm64_sys_landlock_add_rule
-ffffffc00807a558 W __arm64_sys_landlock_restrict_self
-ffffffc00807a56c W __arm64_sys_mbind
-ffffffc00807a580 W __arm64_sys_get_mempolicy
-ffffffc00807a594 W __arm64_sys_set_mempolicy
-ffffffc00807a5a8 W __arm64_sys_migrate_pages
-ffffffc00807a5bc W __arm64_sys_move_pages
-ffffffc00807a5d0 W __arm64_sys_set_mempolicy_home_node
-ffffffc00807a5e4 W __arm64_sys_recvmmsg_time32
-ffffffc00807a5f8 W __arm64_sys_fanotify_init
-ffffffc00807a60c W __arm64_sys_fanotify_mark
-ffffffc00807a620 W __arm64_sys_kcmp
-ffffffc00807a634 W __arm64_sys_finit_module
-ffffffc00807a648 W __arm64_sys_bpf
-ffffffc00807a65c W __arm64_sys_pkey_mprotect
-ffffffc00807a670 W __arm64_sys_pkey_alloc
-ffffffc00807a684 W __arm64_sys_pkey_free
-ffffffc00807a698 W __arm64_sys_pciconfig_iobase
-ffffffc00807a6ac W __arm64_sys_socketcall
-ffffffc00807a6c0 W __arm64_sys_vm86old
-ffffffc00807a6d4 W __arm64_sys_modify_ldt
-ffffffc00807a6e8 W __arm64_sys_vm86
-ffffffc00807a6fc W __arm64_sys_s390_pci_mmio_read
-ffffffc00807a710 W __arm64_sys_s390_pci_mmio_write
-ffffffc00807a724 W __arm64_sys_s390_ipc
-ffffffc00807a738 W __arm64_sys_rtas
-ffffffc00807a74c W __arm64_sys_spu_run
-ffffffc00807a760 W __arm64_sys_spu_create
-ffffffc00807a774 W __arm64_sys_subpage_prot
-ffffffc00807a788 W __arm64_sys_fadvise64
-ffffffc00807a79c W __arm64_sys_uselib
-ffffffc00807a7b0 W __arm64_sys_time32
-ffffffc00807a7c4 W __arm64_sys_stime32
-ffffffc00807a7d8 W __arm64_sys_utime32
-ffffffc00807a7ec W __arm64_sys_adjtimex_time32
-ffffffc00807a800 W __arm64_sys_sched_rr_get_interval_time32
-ffffffc00807a814 W __arm64_sys_nanosleep_time32
-ffffffc00807a828 W __arm64_sys_rt_sigtimedwait_time32
-ffffffc00807a83c W __arm64_sys_timer_settime32
-ffffffc00807a850 W __arm64_sys_timer_gettime32
-ffffffc00807a864 W __arm64_sys_clock_settime32
-ffffffc00807a878 W __arm64_sys_clock_gettime32
-ffffffc00807a88c W __arm64_sys_clock_getres_time32
-ffffffc00807a8a0 W __arm64_sys_clock_nanosleep_time32
-ffffffc00807a8b4 W __arm64_sys_utimes_time32
-ffffffc00807a8c8 W __arm64_sys_futimesat_time32
-ffffffc00807a8dc W __arm64_sys_pselect6_time32
-ffffffc00807a8f0 W __arm64_sys_ppoll_time32
-ffffffc00807a904 W __arm64_sys_utimensat_time32
-ffffffc00807a918 W __arm64_sys_clock_adjtime32
-ffffffc00807a92c W __arm64_sys_sgetmask
-ffffffc00807a940 W __arm64_sys_ssetmask
-ffffffc00807a954 W __arm64_sys_ipc
-ffffffc00807a968 W __arm64_sys_chown16
-ffffffc00807a97c W __arm64_sys_fchown16
-ffffffc00807a990 W __arm64_sys_getegid16
-ffffffc00807a9a4 W __arm64_sys_geteuid16
-ffffffc00807a9b8 W __arm64_sys_getgid16
-ffffffc00807a9cc W __arm64_sys_getgroups16
-ffffffc00807a9e0 W __arm64_sys_getresgid16
-ffffffc00807a9f4 W __arm64_sys_getresuid16
-ffffffc00807aa08 W __arm64_sys_getuid16
-ffffffc00807aa1c W __arm64_sys_lchown16
-ffffffc00807aa30 W __arm64_sys_setfsgid16
-ffffffc00807aa44 W __arm64_sys_setfsuid16
-ffffffc00807aa58 W __arm64_sys_setgid16
-ffffffc00807aa6c W __arm64_sys_setgroups16
-ffffffc00807aa80 W __arm64_sys_setregid16
-ffffffc00807aa94 W __arm64_sys_setresgid16
-ffffffc00807aaa8 W __arm64_sys_setresuid16
-ffffffc00807aabc W __arm64_sys_setreuid16
-ffffffc00807aad0 W __arm64_sys_setuid16
-ffffffc00807aae4 T copy_namespaces
-ffffffc00807abd8 t create_new_namespaces
-ffffffc00807ad48 T free_nsproxy
-ffffffc00807adf4 t put_cgroup_ns
-ffffffc00807ae78 T unshare_nsproxy_namespaces
-ffffffc00807af24 T switch_task_namespaces
-ffffffc00807b03c T exit_task_namespaces
-ffffffc00807b06c T __arm64_sys_setns
-ffffffc00807b520 T atomic_notifier_chain_register
-ffffffc00807b5d0 t notifier_chain_register
-ffffffc00807b650 T atomic_notifier_chain_register_unique_prio
-ffffffc00807b710 T atomic_notifier_chain_unregister
-ffffffc00807b7a0 T atomic_notifier_call_chain
-ffffffc00807b868 T atomic_notifier_call_chain_is_empty
-ffffffc00807b88c T blocking_notifier_chain_register
-ffffffc00807b99c T blocking_notifier_chain_register_unique_prio
-ffffffc00807bac4 T blocking_notifier_chain_unregister
-ffffffc00807bb9c T blocking_notifier_call_chain_robust
-ffffffc00807bcf4 T blocking_notifier_call_chain
-ffffffc00807bdd4 T raw_notifier_chain_register
-ffffffc00807be54 T raw_notifier_chain_unregister
-ffffffc00807bea4 T raw_notifier_call_chain_robust
-ffffffc00807bfd4 T raw_notifier_call_chain
-ffffffc00807c084 T srcu_notifier_chain_register
-ffffffc00807c14c T srcu_notifier_chain_unregister
-ffffffc00807c238 T srcu_notifier_call_chain
-ffffffc00807c330 T srcu_init_notifier_head
-ffffffc00807c394 T notify_die
-ffffffc00807c48c T register_die_notifier
-ffffffc00807c550 T unregister_die_notifier
-ffffffc00807c5f4 t fscaps_show
-ffffffc00807c638 t uevent_seqnum_show
-ffffffc00807c67c t profiling_show
-ffffffc00807c6c0 t profiling_store
-ffffffc00807c730 t kexec_loaded_show
-ffffffc00807c77c t kexec_crash_loaded_show
-ffffffc00807c7c8 t kexec_crash_size_show
-ffffffc00807c820 t kexec_crash_size_store
-ffffffc00807c8b4 t vmcoreinfo_show
-ffffffc00807c938 t rcu_expedited_show
-ffffffc00807c988 t rcu_expedited_store
-ffffffc00807c9dc t rcu_normal_show
-ffffffc00807ca2c t rcu_normal_store
-ffffffc00807ca80 t notes_read
-ffffffc00807cad0 T __put_cred
-ffffffc00807cb48 t put_cred_rcu
-ffffffc00807cc1c T exit_creds
-ffffffc00807cd80 T get_task_cred
-ffffffc00807ce48 T cred_alloc_blank
-ffffffc00807cf5c T abort_creds
-ffffffc00807d028 T prepare_creds
-ffffffc00807d1f4 T prepare_exec_creds
-ffffffc00807d230 T copy_creds
-ffffffc00807d408 T set_cred_ucounts
-ffffffc00807d488 T commit_creds
-ffffffc00807d76c T override_creds
-ffffffc00807d7b8 T revert_creds
-ffffffc00807d880 T cred_fscmp
-ffffffc00807d948 T prepare_kernel_cred
-ffffffc00807dd08 T set_security_override
-ffffffc00807dd34 T set_security_override_from_ctx
-ffffffc00807ddc4 T set_create_files_as
-ffffffc00807de1c T emergency_restart
-ffffffc00807de54 T kernel_restart_prepare
-ffffffc00807dea8 T register_reboot_notifier
-ffffffc00807dee0 T unregister_reboot_notifier
-ffffffc00807df18 T devm_register_reboot_notifier
-ffffffc00807dfc0 t devm_unregister_reboot_notifier
-ffffffc00807e004 T register_restart_handler
-ffffffc00807e03c T unregister_restart_handler
-ffffffc00807e074 T do_kernel_restart
-ffffffc00807e0b4 T migrate_to_reboot_cpu
-ffffffc00807e154 T kernel_restart
-ffffffc00807e270 T kernel_halt
-ffffffc00807e358 T register_sys_off_handler
-ffffffc00807e550 t sys_off_notify
-ffffffc00807e5d4 T unregister_sys_off_handler
-ffffffc00807e668 T devm_register_sys_off_handler
-ffffffc00807e73c t devm_unregister_sys_off_handler
-ffffffc00807e7d0 T devm_register_power_off_handler
-ffffffc00807e80c T devm_register_restart_handler
-ffffffc00807e848 T register_platform_power_off
-ffffffc00807e928 t platform_power_off_notify
-ffffffc00807e974 T unregister_platform_power_off
-ffffffc00807ea1c T do_kernel_power_off
-ffffffc00807eaf0 t legacy_pm_power_off
-ffffffc00807eb44 T kernel_can_power_off
-ffffffc00807eb78 T kernel_power_off
-ffffffc00807ec74 T __arm64_sys_reboot
-ffffffc00807eef4 T ctrl_alt_del
-ffffffc00807ef58 t deferred_cad
-ffffffc00807ef88 T orderly_poweroff
-ffffffc00807efd8 T orderly_reboot
-ffffffc00807f018 T hw_protection_shutdown
-ffffffc00807f0f4 t poweroff_work_func
-ffffffc00807f1b0 t reboot_work_func
-ffffffc00807f248 t hw_failure_emergency_poweroff_func
-ffffffc00807f29c t mode_show
-ffffffc00807f300 t mode_store
-ffffffc00807f400 t cpu_show
-ffffffc00807f444 t cpu_store
-ffffffc00807f51c T async_schedule_node_domain
-ffffffc00807f720 t async_run_entry_fn
-ffffffc00807f848 T async_schedule_node
-ffffffc00807f87c T async_synchronize_full
-ffffffc00807f8b0 T async_synchronize_full_domain
-ffffffc00807f8e4 T async_synchronize_cookie_domain
-ffffffc00807faa8 T async_synchronize_cookie
-ffffffc00807fadc T current_is_async
-ffffffc00807fb68 T add_range
-ffffffc00807fb9c T add_range_with_merge
-ffffffc00807fc98 T subtract_range
-ffffffc00807fdc4 T clean_sort_range
-ffffffc00807fedc t cmp_range
-ffffffc00807ff00 T sort_range
-ffffffc00807ff40 T idle_thread_get
-ffffffc00807ff84 T smpboot_create_threads
-ffffffc00808000c t __smpboot_create_thread
-ffffffc0080801a0 T smpboot_unpark_threads
-ffffffc008080250 T smpboot_park_threads
-ffffffc008080304 T smpboot_register_percpu_thread
-ffffffc008080424 t smpboot_destroy_threads
-ffffffc008080550 T smpboot_unregister_percpu_thread
-ffffffc0080805d8 T cpu_report_state
-ffffffc008080618 T cpu_check_up_prepare
-ffffffc0080806d0 T cpu_set_state_online
-ffffffc008080734 T cpu_wait_death
-ffffffc0080808cc T cpu_report_death
-ffffffc00808098c t smpboot_thread_fn
-ffffffc008080cd0 T setup_userns_sysctls
-ffffffc008080dd8 t set_is_seen
-ffffffc008080df8 T retire_userns_sysctls
-ffffffc008080e48 T get_ucounts
-ffffffc008080f38 T put_ucounts
-ffffffc008080fe8 T alloc_ucounts
-ffffffc008081204 T inc_ucount
-ffffffc0080813c4 T dec_ucount
-ffffffc0080814f8 T inc_rlimit_ucounts
-ffffffc008081590 T dec_rlimit_ucounts
-ffffffc008081618 T dec_rlimit_put_ucounts
-ffffffc008081648 t do_dec_rlimit_put_ucounts.llvm.11360932764133422130
-ffffffc008081790 T inc_rlimit_get_ucounts
-ffffffc008081968 T is_rlimit_overlimit
-ffffffc0080819d8 t set_lookup
-ffffffc0080819f0 t set_permissions
-ffffffc008081a50 T regset_get
-ffffffc008081b28 T regset_get_alloc
-ffffffc008081c04 T copy_regset_to_user
-ffffffc008081e64 T groups_alloc
-ffffffc008081ecc T groups_free
-ffffffc008081ef8 T groups_sort
-ffffffc008081f40 t gid_cmp
-ffffffc008081f68 T groups_search
-ffffffc008081fc8 T set_groups
-ffffffc008082074 T set_current_groups
-ffffffc008082170 T __arm64_sys_getgroups
-ffffffc00808232c T may_setgroups
-ffffffc008082368 T __arm64_sys_setgroups
-ffffffc008082648 T in_group_p
-ffffffc0080826c4 T in_egroup_p
-ffffffc008082740 T __traceiter_sched_kthread_stop
-ffffffc0080827c0 T __traceiter_sched_kthread_stop_ret
-ffffffc008082840 T __traceiter_sched_kthread_work_queue_work
-ffffffc0080828d0 T __traceiter_sched_kthread_work_execute_start
-ffffffc008082950 T __traceiter_sched_kthread_work_execute_end
-ffffffc0080829e0 T __traceiter_sched_waking
-ffffffc008082a60 T __traceiter_sched_wakeup
-ffffffc008082ae0 T __traceiter_sched_wakeup_new
-ffffffc008082b60 T __traceiter_sched_switch
-ffffffc008082c08 T __traceiter_sched_migrate_task
-ffffffc008082c98 T __traceiter_sched_process_free
-ffffffc008082d18 T __traceiter_sched_process_exit
-ffffffc008082d98 T __traceiter_sched_wait_task
-ffffffc008082e18 T __traceiter_sched_process_wait
-ffffffc008082e98 T __traceiter_sched_process_fork
-ffffffc008082f28 T __traceiter_sched_process_exec
-ffffffc008082fc0 T __traceiter_sched_stat_wait
-ffffffc008083050 T __traceiter_sched_stat_sleep
-ffffffc0080830e0 T __traceiter_sched_stat_iowait
-ffffffc008083170 T __traceiter_sched_stat_blocked
-ffffffc008083200 T __traceiter_sched_blocked_reason
-ffffffc008083280 T __traceiter_sched_stat_runtime
-ffffffc008083318 T __traceiter_sched_pi_setprio
-ffffffc0080833a8 T __traceiter_sched_process_hang
-ffffffc008083428 T __traceiter_sched_move_numa
-ffffffc0080834c0 T __traceiter_sched_stick_numa
-ffffffc008083568 T __traceiter_sched_swap_numa
-ffffffc008083610 T __traceiter_sched_wake_idle_without_ipi
-ffffffc008083690 T __traceiter_pelt_cfs_tp
-ffffffc008083710 T __traceiter_pelt_rt_tp
-ffffffc008083790 T __traceiter_pelt_dl_tp
-ffffffc008083810 T __traceiter_pelt_thermal_tp
-ffffffc008083890 T __traceiter_pelt_irq_tp
-ffffffc008083910 T __traceiter_pelt_se_tp
-ffffffc008083990 T __traceiter_sched_cpu_capacity_tp
-ffffffc008083a10 T __traceiter_sched_overutilized_tp
-ffffffc008083aa0 T __traceiter_sched_util_est_cfs_tp
-ffffffc008083b20 T __traceiter_sched_util_est_se_tp
-ffffffc008083ba0 T __traceiter_sched_update_nr_running_tp
-ffffffc008083c30 t trace_event_raw_event_sched_kthread_stop
-ffffffc008083cf8 t perf_trace_sched_kthread_stop
-ffffffc008083e14 t trace_event_raw_event_sched_kthread_stop_ret
-ffffffc008083ecc t perf_trace_sched_kthread_stop_ret
-ffffffc008083fd8 t trace_event_raw_event_sched_kthread_work_queue_work
-ffffffc00808409c t perf_trace_sched_kthread_work_queue_work
-ffffffc0080841bc t trace_event_raw_event_sched_kthread_work_execute_start
-ffffffc00808427c t perf_trace_sched_kthread_work_execute_start
-ffffffc008084390 t trace_event_raw_event_sched_kthread_work_execute_end
-ffffffc00808444c t perf_trace_sched_kthread_work_execute_end
-ffffffc008084564 t trace_event_raw_event_sched_wakeup_template
-ffffffc008084644 t perf_trace_sched_wakeup_template
-ffffffc00808476c t trace_event_raw_event_sched_switch
-ffffffc0080848dc t perf_trace_sched_switch
-ffffffc008084aa4 t trace_event_raw_event_sched_migrate_task
-ffffffc008084b88 t perf_trace_sched_migrate_task
-ffffffc008084cc8 t trace_event_raw_event_sched_process_template
-ffffffc008084d98 t perf_trace_sched_process_template
-ffffffc008084ebc t trace_event_raw_event_sched_process_wait
-ffffffc008084f9c t perf_trace_sched_process_wait
-ffffffc0080850d0 t trace_event_raw_event_sched_process_fork
-ffffffc0080851b4 t perf_trace_sched_process_fork
-ffffffc0080852f4 t trace_event_raw_event_sched_process_exec
-ffffffc008085408 t perf_trace_sched_process_exec
-ffffffc008085588 t trace_event_raw_event_sched_stat_template
-ffffffc008085658 t perf_trace_sched_stat_template
-ffffffc008085770 t trace_event_raw_event_sched_blocked_reason
-ffffffc008085848 t perf_trace_sched_blocked_reason
-ffffffc008085980 t trace_event_raw_event_sched_stat_runtime
-ffffffc008085a60 t perf_trace_sched_stat_runtime
-ffffffc008085b90 t trace_event_raw_event_sched_pi_setprio
-ffffffc008085c7c t perf_trace_sched_pi_setprio
-ffffffc008085dc4 t trace_event_raw_event_sched_process_hang
-ffffffc008085e8c t perf_trace_sched_process_hang
-ffffffc008085fa8 t trace_event_raw_event_sched_move_numa
-ffffffc008086088 t perf_trace_sched_move_numa
-ffffffc0080861b8 t trace_event_raw_event_sched_numa_pair_template
-ffffffc0080862c0 t perf_trace_sched_numa_pair_template
-ffffffc008086420 t trace_event_raw_event_sched_wake_idle_without_ipi
-ffffffc0080864d8 t perf_trace_sched_wake_idle_without_ipi
-ffffffc0080865e4 T raw_spin_rq_lock_nested
-ffffffc008086640 T raw_spin_rq_trylock
-ffffffc0080866c8 T raw_spin_rq_unlock
-ffffffc0080866f4 T double_rq_lock
-ffffffc0080867b4 t raw_spin_rq_lock
-ffffffc008086810 T __task_rq_lock
-ffffffc008086990 T task_rq_lock
-ffffffc008086b38 T update_rq_clock
-ffffffc008086dd8 T hrtick_start
-ffffffc008086e80 T wake_q_add
-ffffffc008086f6c T wake_q_add_safe
-ffffffc008087064 T wake_up_q
-ffffffc00808714c T wake_up_process
-ffffffc008087180 T resched_curr
-ffffffc008087234 T resched_cpu
-ffffffc0080873c4 t _raw_spin_rq_lock_irqsave
-ffffffc00808745c T get_nohz_timer_target
-ffffffc008087600 T idle_cpu
-ffffffc008087668 T wake_up_nohz_cpu
-ffffffc008087720 T sched_task_on_rq
-ffffffc00808773c T get_wchan
-ffffffc0080877d4 T activate_task
-ffffffc008087924 T deactivate_task
-ffffffc008087a4c T task_curr
-ffffffc008087a98 T check_preempt_curr
-ffffffc008087bb8 T migrate_disable
-ffffffc008087c5c T migrate_enable
-ffffffc008087d84 T __migrate_task
-ffffffc008087e94 t move_queued_task
-ffffffc0080880bc T push_cpu_stop
-ffffffc008088348 T set_task_cpu
-ffffffc00808859c T set_cpus_allowed_common
-ffffffc00808861c T do_set_cpus_allowed
-ffffffc0080887b8 t __do_set_cpus_allowed
-ffffffc008088990 T dup_user_cpus_ptr
-ffffffc008088a70 T release_user_cpus_ptr
-ffffffc008088aa8 T set_cpus_allowed_ptr
-ffffffc008088b30 T force_compatible_cpus_allowed_ptr
-ffffffc008088d18 T relax_compatible_cpus_allowed_ptr
-ffffffc008088d88 t __sched_setaffinity
-ffffffc008088f6c T migrate_swap
-ffffffc00808913c t migrate_swap_stop
-ffffffc00808937c T wait_task_inactive
-ffffffc0080895d0 t task_rq_unlock
-ffffffc00808962c T kick_process
-ffffffc008089708 T select_fallback_rq
-ffffffc008089ab4 T sched_set_stop_task
-ffffffc008089bb8 T sched_setscheduler_nocheck
-ffffffc008089c5c T sched_ttwu_pending
-ffffffc008089e5c t ttwu_do_activate
-ffffffc008089f60 T send_call_function_single_ipi
-ffffffc008089f98 T wake_up_if_idle
-ffffffc00808a160 T cpus_share_cache
-ffffffc00808a1bc T task_call_func
-ffffffc00808a31c T cpu_curr_snapshot
-ffffffc00808a360 t try_to_wake_up.llvm.7345523102028634210
-ffffffc00808ac4c T wake_up_state
-ffffffc00808ac7c T force_schedstat_enabled
-ffffffc00808accc T sched_fork
-ffffffc00808af14 t set_load_weight
-ffffffc00808af80 T sched_cgroup_fork
-ffffffc00808b060 T sched_post_fork
-ffffffc00808b070 T to_ratio
-ffffffc00808b0a0 T wake_up_new_task
-ffffffc00808b454 t balance_push
-ffffffc00808b5dc T __balance_callbacks
-ffffffc00808b650 T schedule_tail
-ffffffc00808b804 t finish_task_switch
-ffffffc00808ba74 T nr_running
-ffffffc00808bb20 T single_task_running
-ffffffc00808bb50 T nr_context_switches
-ffffffc00808bbf8 T nr_iowait_cpu
-ffffffc00808bc3c T nr_iowait
-ffffffc00808bcec T sched_exec
-ffffffc00808be1c t migration_cpu_stop
-ffffffc00808c100 T task_sched_runtime
-ffffffc00808c23c T scheduler_tick
-ffffffc00808c518 T do_task_dead
-ffffffc00808c570 T default_wake_function
-ffffffc00808c5b4 T rt_mutex_setprio
-ffffffc00808cb38 T set_user_nice
-ffffffc00808ce00 T can_nice
-ffffffc00808ce60 T task_prio
-ffffffc00808ce78 T available_idle_cpu
-ffffffc00808cee0 T idle_task
-ffffffc00808cf1c T effective_cpu_util
-ffffffc00808cfd8 T sched_cpu_util
-ffffffc00808d0a8 T sched_setscheduler
-ffffffc00808d14c T sched_setattr
-ffffffc00808d17c t __sched_setscheduler
-ffffffc00808da2c T sched_setattr_nocheck
-ffffffc00808da60 T sched_set_fifo
-ffffffc00808daf8 T sched_set_fifo_low
-ffffffc00808db8c T sched_set_normal
-ffffffc00808dc10 T __arm64_sys_sched_setscheduler
-ffffffc00808dc58 T __arm64_sys_sched_setparam
-ffffffc00808dc98 T __arm64_sys_sched_setattr
-ffffffc00808e32c T __arm64_sys_sched_getscheduler
-ffffffc00808e3bc T __arm64_sys_sched_getparam
-ffffffc00808e5e0 T __arm64_sys_sched_getattr
-ffffffc00808e8d0 T dl_task_check_affinity
-ffffffc00808e98c T sched_setaffinity
-ffffffc00808eb5c T __arm64_sys_sched_setaffinity
-ffffffc00808ed98 T sched_getaffinity
-ffffffc00808ee54 T __arm64_sys_sched_getaffinity
-ffffffc00808f0b4 T __arm64_sys_sched_yield
-ffffffc00808f0e0 t do_sched_yield
-ffffffc00808f240 T __cond_resched_lock
-ffffffc00808f2b4 T __cond_resched_rwlock_read
-ffffffc00808f32c T __cond_resched_rwlock_write
-ffffffc00808f3a4 T io_schedule_prepare
-ffffffc00808f3f8 T io_schedule_finish
-ffffffc00808f420 T __arm64_sys_sched_get_priority_max
-ffffffc00808f458 T __arm64_sys_sched_get_priority_min
-ffffffc00808f490 T __arm64_sys_sched_rr_get_interval
-ffffffc00808f5d0 T sched_show_task
-ffffffc00808f7c8 T show_state_filter
-ffffffc00808f8a4 T cpuset_cpumask_can_shrink
-ffffffc00808f910 T task_can_attach
-ffffffc00808f9e0 T idle_task_exit
-ffffffc00808faac T pick_migrate_task
-ffffffc00808fb74 T set_rq_online
-ffffffc00808fc60 T set_rq_offline
-ffffffc00808fd48 T sched_cpu_activate
-ffffffc00808fff4 t balance_push_set
-ffffffc008090148 T sched_cpu_deactivate
-ffffffc008090448 T sched_cpu_starting
-ffffffc0080904a8 T sched_cpu_wait_empty
-ffffffc008090534 T sched_cpu_dying
-ffffffc0080907b4 T in_sched_functions
-ffffffc0080907fc t nohz_csd_func
-ffffffc0080908ec T normalize_rt_tasks
-ffffffc008090a60 T dump_cpu_task
-ffffffc008090b3c T call_trace_sched_update_nr_running
-ffffffc008090ca0 t trace_raw_output_sched_kthread_stop
-ffffffc008090d18 t trace_raw_output_sched_kthread_stop_ret
-ffffffc008090d8c t trace_raw_output_sched_kthread_work_queue_work
-ffffffc008090e04 t trace_raw_output_sched_kthread_work_execute_start
-ffffffc008090e78 t trace_raw_output_sched_kthread_work_execute_end
-ffffffc008090eec t trace_raw_output_sched_wakeup_template
-ffffffc008090f68 t trace_raw_output_sched_switch
-ffffffc00809105c t trace_raw_output_sched_migrate_task
-ffffffc0080910d8 t trace_raw_output_sched_process_template
-ffffffc008091150 t trace_raw_output_sched_process_wait
-ffffffc0080911c8 t trace_raw_output_sched_process_fork
-ffffffc008091248 t trace_raw_output_sched_process_exec
-ffffffc0080912c4 t trace_raw_output_sched_stat_template
-ffffffc008091340 t trace_raw_output_sched_blocked_reason
-ffffffc0080913bc t trace_raw_output_sched_stat_runtime
-ffffffc008091438 t trace_raw_output_sched_pi_setprio
-ffffffc0080914b4 t trace_raw_output_sched_process_hang
-ffffffc00809152c t trace_raw_output_sched_move_numa
-ffffffc0080915b8 t trace_raw_output_sched_numa_pair_template
-ffffffc008091654 t trace_raw_output_sched_wake_idle_without_ipi
-ffffffc0080916c4 t __set_cpus_allowed_ptr_locked
-ffffffc008091ca4 t __migrate_swap_task
-ffffffc008091e00 t ttwu_do_wakeup
-ffffffc008092050 t ttwu_queue_wakelist
-ffffffc008092194 t sysctl_schedstats
-ffffffc0080922b8 t __schedule_bug
-ffffffc008092344 t do_sched_setscheduler
-ffffffc008092584 t __balance_push_cpu_stop
-ffffffc00809276c t __hrtick_start
-ffffffc00809283c t hrtick
-ffffffc008092974 W arch_asym_cpu_priority
-ffffffc008092984 t update_sysctl.llvm.8981560334674512027
-ffffffc008092a1c T __pick_first_entity
-ffffffc008092a3c T __pick_last_entity
-ffffffc008092a78 T sched_update_scaling
-ffffffc008092b28 T init_entity_runnable_average
-ffffffc008092b64 T post_init_entity_util_avg
-ffffffc008092c90 T reweight_task
-ffffffc008092e5c T set_next_entity
-ffffffc0080930c4 T init_cfs_bandwidth
-ffffffc0080930d4 T pick_next_task_fair
-ffffffc008093418 t pick_next_entity
-ffffffc008093744 t hrtick_start_fair
-ffffffc008093844 t newidle_balance
-ffffffc008093c68 T update_group_capacity
-ffffffc008093f08 T update_max_interval
-ffffffc008093f48 T nohz_balance_exit_idle
-ffffffc008094060 t set_cpu_sd_state_busy
-ffffffc00809410c T nohz_balance_enter_idle
-ffffffc008094308 T nohz_run_idle_balance
-ffffffc0080943b8 t _nohz_idle_balance
-ffffffc008094734 T trigger_load_balance
-ffffffc008094b08 T init_cfs_rq
-ffffffc008094b28 T free_fair_sched_group
-ffffffc008094b38 T alloc_fair_sched_group
-ffffffc008094b4c T online_fair_sched_group
-ffffffc008094b5c T unregister_fair_sched_group
-ffffffc008094b6c t enqueue_task_fair.llvm.8981560334674512027
-ffffffc0080951b4 t dequeue_task_fair.llvm.8981560334674512027
-ffffffc0080958a0 t yield_task_fair.llvm.8981560334674512027
-ffffffc008095a38 t yield_to_task_fair.llvm.8981560334674512027
-ffffffc008095b08 t check_preempt_wakeup.llvm.8981560334674512027
-ffffffc008095e4c t __pick_next_task_fair.llvm.8981560334674512027
-ffffffc008095e80 t put_prev_task_fair.llvm.8981560334674512027
-ffffffc008096044 t set_next_task_fair.llvm.8981560334674512027
-ffffffc00809611c t balance_fair.llvm.8981560334674512027
-ffffffc008096164 t select_task_rq_fair.llvm.8981560334674512027
-ffffffc008096cd8 t pick_task_fair.llvm.8981560334674512027
-ffffffc008096d4c t migrate_task_rq_fair.llvm.8981560334674512027
-ffffffc008096eec t rq_online_fair.llvm.8981560334674512027
-ffffffc008096f84 t rq_offline_fair.llvm.8981560334674512027
-ffffffc00809701c t task_tick_fair.llvm.8981560334674512027
-ffffffc008097314 t task_fork_fair.llvm.8981560334674512027
-ffffffc0080975c4 t task_dead_fair.llvm.8981560334674512027
-ffffffc0080975f4 t switched_from_fair.llvm.8981560334674512027
-ffffffc0080977f8 t switched_to_fair.llvm.8981560334674512027
-ffffffc0080979a0 t prio_changed_fair.llvm.8981560334674512027
-ffffffc008097a08 t get_rr_interval_fair.llvm.8981560334674512027
-ffffffc008097a94 t update_curr_fair.llvm.8981560334674512027
-ffffffc008097af8 T print_cfs_stats
-ffffffc008097b70 t run_rebalance_domains
-ffffffc008097bec t update_curr
-ffffffc008097ec0 t update_cfs_rq_load_avg
-ffffffc00809802c t attach_entity_load_avg
-ffffffc0080981bc t detach_entity_load_avg
-ffffffc008098378 t sched_slice
-ffffffc008098560 t rebalance_domains
-ffffffc008098848 t update_blocked_averages
-ffffffc008098abc t load_balance
-ffffffc00809a460 t need_active_balance
-ffffffc00809a598 t active_load_balance_cpu_stop
-ffffffc00809a970 t can_migrate_task
-ffffffc00809ac48 t update_overutilized_status
-ffffffc00809ad98 t find_idlest_cpu
-ffffffc00809b704 t remove_entity_load_avg
-ffffffc00809b7e4 T sched_idle_set_state
-ffffffc00809b7fc T cpu_idle_poll_ctrl
-ffffffc00809b840 W arch_cpu_idle_prepare
-ffffffc00809b850 W arch_cpu_idle_enter
-ffffffc00809b860 W arch_cpu_idle_exit
-ffffffc00809b870 T cpu_in_idle
-ffffffc00809b89c T play_idle_precise
-ffffffc00809ba44 t idle_inject_timer_fn
-ffffffc00809ba88 t do_idle.llvm.8670909280109898872
-ffffffc00809bbd4 T cpu_startup_entry
-ffffffc00809bc08 T pick_next_task_idle
-ffffffc00809bc3c t set_next_task_idle.llvm.8670909280109898872
-ffffffc00809bc68 t dequeue_task_idle.llvm.8670909280109898872
-ffffffc00809bcec t check_preempt_curr_idle.llvm.8670909280109898872
-ffffffc00809bd18 t put_prev_task_idle.llvm.8670909280109898872
-ffffffc00809bd28 t balance_idle.llvm.8670909280109898872
-ffffffc00809bd40 t select_task_rq_idle.llvm.8670909280109898872
-ffffffc00809bd5c t pick_task_idle.llvm.8670909280109898872
-ffffffc00809bd70 t task_tick_idle.llvm.8670909280109898872
-ffffffc00809bd80 t switched_to_idle.llvm.8670909280109898872
-ffffffc00809bd8c t prio_changed_idle.llvm.8670909280109898872
-ffffffc00809bd98 t update_curr_idle.llvm.8670909280109898872
-ffffffc00809bda8 T init_rt_bandwidth
-ffffffc00809be00 t sched_rt_period_timer
-ffffffc00809c1bc T init_rt_rq
-ffffffc00809c244 T unregister_rt_sched_group
-ffffffc00809c254 T free_rt_sched_group
-ffffffc00809c264 T alloc_rt_sched_group
-ffffffc00809c278 T sched_rt_bandwidth_account
-ffffffc00809c2d8 T pick_highest_pushable_task
-ffffffc00809c354 T rto_push_irq_work_func
-ffffffc00809c47c t push_rt_task
-ffffffc00809c838 t enqueue_task_rt.llvm.8670909280109898872
-ffffffc00809ccb8 t dequeue_task_rt.llvm.8670909280109898872
-ffffffc00809ced8 t yield_task_rt.llvm.8670909280109898872
-ffffffc00809cfa4 t check_preempt_curr_rt.llvm.8670909280109898872
-ffffffc00809d0e4 t pick_next_task_rt.llvm.8670909280109898872
-ffffffc00809d1c8 t put_prev_task_rt.llvm.8670909280109898872
-ffffffc00809d2ec t set_next_task_rt.llvm.8670909280109898872
-ffffffc00809d4a4 t balance_rt.llvm.8670909280109898872
-ffffffc00809d55c t select_task_rq_rt.llvm.8670909280109898872
-ffffffc00809d6d8 t pick_task_rt.llvm.8670909280109898872
-ffffffc00809d7a0 t task_woken_rt.llvm.8670909280109898872
-ffffffc00809d828 t rq_online_rt.llvm.8670909280109898872
-ffffffc00809d94c t rq_offline_rt.llvm.8670909280109898872
-ffffffc00809dc1c t find_lock_lowest_rq.llvm.8670909280109898872
-ffffffc00809dd78 t task_tick_rt.llvm.8670909280109898872
-ffffffc00809df58 t switched_from_rt.llvm.8670909280109898872
-ffffffc00809dfe0 t switched_to_rt.llvm.8670909280109898872
-ffffffc00809e13c t prio_changed_rt.llvm.8670909280109898872
-ffffffc00809e208 t get_rr_interval_rt.llvm.8670909280109898872
-ffffffc00809e22c t update_curr_rt.llvm.8670909280109898872
-ffffffc00809e5d0 T print_rt_stats
-ffffffc00809e648 T cpudl_find
-ffffffc00809e8bc T cpudl_clear
-ffffffc00809e9e8 t cpudl_heapify
-ffffffc00809eba0 T cpudl_set
-ffffffc00809ed68 T cpudl_set_freecpu
-ffffffc00809edbc T cpudl_clear_freecpu
-ffffffc00809ee10 T cpudl_init
-ffffffc00809eee4 T cpudl_cleanup
-ffffffc00809ef14 T __update_load_avg_blocked_se
-ffffffc00809f13c T __update_load_avg_se
-ffffffc00809f44c T __update_load_avg_cfs_rq
-ffffffc00809f74c T update_rt_rq_load_avg
-ffffffc00809fa28 T update_dl_rq_load_avg
-ffffffc00809fd04 T update_irq_load_avg
-ffffffc0080a0154 T sched_pelt_multiplier
-ffffffc0080a0248 T enable_sched_clock_irqtime
-ffffffc0080a0264 T disable_sched_clock_irqtime
-ffffffc0080a027c T irqtime_account_irq
-ffffffc0080a0400 T account_user_time
-ffffffc0080a0494 T account_guest_time
-ffffffc0080a0558 T account_system_index_time
-ffffffc0080a05dc T account_system_time
-ffffffc0080a0790 T account_steal_time
-ffffffc0080a07c0 T account_idle_time
-ffffffc0080a0818 T thread_group_cputime
-ffffffc0080a094c T account_process_tick
-ffffffc0080a0b98 t irqtime_account_process_tick
-ffffffc0080a0f9c T account_idle_ticks
-ffffffc0080a10f0 T cputime_adjust
-ffffffc0080a11cc T task_cputime_adjusted
-ffffffc0080a12bc T thread_group_cputime_adjusted
-ffffffc0080a13cc T init_dl_bandwidth
-ffffffc0080a13e4 T init_dl_bw
-ffffffc0080a144c T init_dl_rq
-ffffffc0080a14f8 T init_dl_task_timer
-ffffffc0080a1548 t dl_task_timer.llvm.8670909280109898872
-ffffffc0080a172c T init_dl_inactive_task_timer
-ffffffc0080a177c t inactive_task_timer.llvm.8670909280109898872
-ffffffc0080a1bd8 T dl_add_task_root_domain
-ffffffc0080a1d60 T dl_clear_root_domain
-ffffffc0080a1db0 t enqueue_task_dl.llvm.8670909280109898872
-ffffffc0080a2664 t dequeue_task_dl.llvm.8670909280109898872
-ffffffc0080a27bc t yield_task_dl.llvm.8670909280109898872
-ffffffc0080a2818 t check_preempt_curr_dl.llvm.8670909280109898872
-ffffffc0080a294c t pick_next_task_dl.llvm.8670909280109898872
-ffffffc0080a29bc t put_prev_task_dl.llvm.8670909280109898872
-ffffffc0080a2b28 t set_next_task_dl.llvm.8670909280109898872
-ffffffc0080a2d58 t balance_dl.llvm.8670909280109898872
-ffffffc0080a2e0c t select_task_rq_dl.llvm.8670909280109898872
-ffffffc0080a2f3c t pick_task_dl.llvm.8670909280109898872
-ffffffc0080a2f74 t migrate_task_rq_dl.llvm.8670909280109898872
-ffffffc0080a31d0 t task_woken_dl.llvm.8670909280109898872
-ffffffc0080a3254 t set_cpus_allowed_dl.llvm.8670909280109898872
-ffffffc0080a3454 t rq_online_dl.llvm.8670909280109898872
-ffffffc0080a3574 t rq_offline_dl.llvm.8670909280109898872
-ffffffc0080a3688 t find_lock_later_rq.llvm.8670909280109898872
-ffffffc0080a37f4 t task_tick_dl.llvm.8670909280109898872
-ffffffc0080a38ec t task_fork_dl.llvm.8670909280109898872
-ffffffc0080a38fc t switched_from_dl.llvm.8670909280109898872
-ffffffc0080a3ad4 t switched_to_dl.llvm.8670909280109898872
-ffffffc0080a3cc8 t prio_changed_dl.llvm.8670909280109898872
-ffffffc0080a3d80 t update_curr_dl.llvm.8670909280109898872
-ffffffc0080a40c4 T sched_dl_global_validate
-ffffffc0080a42e8 T sched_dl_do_global
-ffffffc0080a4538 T sched_dl_overflow
-ffffffc0080a4af8 t dl_bw_capacity
-ffffffc0080a4c6c T __setparam_dl
-ffffffc0080a4cec T __getparam_dl
-ffffffc0080a4d3c T __checkparam_dl
-ffffffc0080a4de8 T __dl_clear_params
-ffffffc0080a4e1c T dl_param_changed
-ffffffc0080a4e80 T dl_cpuset_cpumask_can_shrink
-ffffffc0080a4fe0 T dl_cpu_busy
-ffffffc0080a5220 T print_dl_stats
-ffffffc0080a5274 t sched_rt_handler
-ffffffc0080a5470 t sched_rr_handler
-ffffffc0080a5530 t balance_runtime
-ffffffc0080a56d4 t find_lowest_rq
-ffffffc0080a58f8 t get_push_task
-ffffffc0080a59b8 t rt_task_fits_cpu
-ffffffc0080a59c8 t dequeue_rt_stack
-ffffffc0080a5c60 t update_rt_migration
-ffffffc0080a5db8 t push_rt_tasks
-ffffffc0080a5dfc t pull_rt_task
-ffffffc0080a605c t tell_cpu_to_push
-ffffffc0080a61d0 t replenish_dl_entity
-ffffffc0080a63c8 t dl_task_offline_migration
-ffffffc0080a6870 t push_dl_task
-ffffffc0080a6bcc t task_contending
-ffffffc0080a6d74 t start_dl_timer
-ffffffc0080a6ee4 t update_dl_revised_wakeup
-ffffffc0080a6fcc t update_dl_migration
-ffffffc0080a7120 t __dequeue_task_dl
-ffffffc0080a7398 t task_non_contending
-ffffffc0080a7798 t push_dl_tasks
-ffffffc0080a77d8 t pull_dl_task
-ffffffc0080a7a24 t pick_earliest_pushable_dl_task
-ffffffc0080a7aac t find_later_rq
-ffffffc0080a7c6c T sched_clock_cpu
-ffffffc0080a7ca4 W running_clock
-ffffffc0080a7cd0 T update_sched_domain_debugfs
-ffffffc0080a7f7c T dirty_sched_domain_sysctl
-ffffffc0080a7fcc T print_cfs_rq
-ffffffc0080a86ac T print_rt_rq
-ffffffc0080a88e8 T print_dl_rq
-ffffffc0080a8a8c T sysrq_sched_debug_show
-ffffffc0080a8b14 t sched_debug_header
-ffffffc0080a9054 t print_cpu
-ffffffc0080a9a30 T proc_sched_show_task
-ffffffc0080aac58 T proc_sched_set_task
-ffffffc0080aace8 T resched_latency_warn
-ffffffc0080aad7c T __update_stats_wait_start
-ffffffc0080aae10 T __update_stats_wait_end
-ffffffc0080aaf68 T __update_stats_enqueue_sleeper
-ffffffc0080ab280 T get_avenrun
-ffffffc0080ab2c8 T calc_load_fold_active
-ffffffc0080ab2fc T calc_load_n
-ffffffc0080ab37c T calc_load_nohz_start
-ffffffc0080ab43c T calc_load_nohz_remote
-ffffffc0080ab4e8 T calc_load_nohz_stop
-ffffffc0080ab550 T calc_global_load
-ffffffc0080ab8a8 T calc_global_load_tick
-ffffffc0080ab928 T complete
-ffffffc0080ab9dc T swake_up_locked
-ffffffc0080aba54 T complete_all
-ffffffc0080abb18 T swake_up_all_locked
-ffffffc0080abbb0 T try_wait_for_completion
-ffffffc0080abc34 T completion_done
-ffffffc0080abc90 T __init_swait_queue_head
-ffffffc0080abcb0 T swake_up_one
-ffffffc0080abd48 T swake_up_all
-ffffffc0080abe70 T __prepare_to_swait
-ffffffc0080abefc T prepare_to_swait_exclusive
-ffffffc0080abfb0 T prepare_to_swait_event
-ffffffc0080ac0c0 T __finish_swait
-ffffffc0080ac134 T finish_swait
-ffffffc0080ac1dc T bit_waitqueue
-ffffffc0080ac21c T wake_bit_function
-ffffffc0080ac2cc T autoremove_wake_function
-ffffffc0080ac33c T prepare_to_wait
-ffffffc0080ac418 T finish_wait
-ffffffc0080ac4c0 T prepare_to_wait_exclusive
-ffffffc0080ac598 T __wake_up_bit
-ffffffc0080ac67c T __wake_up
-ffffffc0080ac758 T wake_up_bit
-ffffffc0080ac868 T __var_waitqueue
-ffffffc0080ac8a0 T init_wait_var_entry
-ffffffc0080ac8dc t var_wake_function
-ffffffc0080ac978 T wake_up_var
-ffffffc0080aca80 T __init_waitqueue_head
-ffffffc0080acaa0 T add_wait_queue
-ffffffc0080acb54 T add_wait_queue_exclusive
-ffffffc0080acbe8 T add_wait_queue_priority
-ffffffc0080acca0 T remove_wait_queue
-ffffffc0080acd20 T __wake_up_locked
-ffffffc0080acdd4 t __wake_up_common.llvm.17644312806107487156
-ffffffc0080acf40 T __wake_up_locked_key
-ffffffc0080acff8 T __wake_up_locked_key_bookmark
-ffffffc0080ad034 T __wake_up_sync_key
-ffffffc0080ad10c T __wake_up_locked_sync_key
-ffffffc0080ad1c4 T __wake_up_sync
-ffffffc0080ad290 T __wake_up_pollfree
-ffffffc0080ad370 T init_wait_entry
-ffffffc0080ad3a0 T prepare_to_wait_event
-ffffffc0080ad504 T do_wait_intr
-ffffffc0080ad5c8 T do_wait_intr_irq
-ffffffc0080ad68c T wait_woken
-ffffffc0080ad714 T woken_wake_function
-ffffffc0080ad750 T cpupri_find
-ffffffc0080ad84c T cpupri_find_fitness
-ffffffc0080ada34 T cpupri_set
-ffffffc0080adba4 T cpupri_init
-ffffffc0080adc78 T cpupri_cleanup
-ffffffc0080adca8 t enqueue_task_stop.llvm.17644312806107487156
-ffffffc0080add44 t dequeue_task_stop.llvm.17644312806107487156
-ffffffc0080add8c t yield_task_stop.llvm.17644312806107487156
-ffffffc0080add98 t check_preempt_curr_stop.llvm.17644312806107487156
-ffffffc0080adda8 t pick_next_task_stop.llvm.17644312806107487156
-ffffffc0080ade38 t put_prev_task_stop.llvm.17644312806107487156
-ffffffc0080adf28 t set_next_task_stop.llvm.17644312806107487156
-ffffffc0080adf9c t balance_stop.llvm.17644312806107487156
-ffffffc0080adfcc t select_task_rq_stop.llvm.17644312806107487156
-ffffffc0080adfe8 t pick_task_stop.llvm.17644312806107487156
-ffffffc0080ae018 t task_tick_stop.llvm.17644312806107487156
-ffffffc0080ae028 t switched_to_stop.llvm.17644312806107487156
-ffffffc0080ae034 t prio_changed_stop.llvm.17644312806107487156
-ffffffc0080ae040 t update_curr_stop.llvm.17644312806107487156
-ffffffc0080ae050 T rq_attach_root
-ffffffc0080ae230 t free_rootdomain
-ffffffc0080ae280 T sched_get_rd
-ffffffc0080ae2bc T sched_put_rd
-ffffffc0080ae330 T init_defrootdomain
-ffffffc0080ae374 t init_rootdomain.llvm.17644312806107487156
-ffffffc0080ae4e0 T group_balance_cpu
-ffffffc0080ae51c T set_sched_topology
-ffffffc0080ae54c T alloc_sched_domains
-ffffffc0080ae580 T free_sched_domains
-ffffffc0080ae5ac T sched_init_domains
-ffffffc0080ae6b0 t asym_cpu_capacity_scan
-ffffffc0080ae930 T housekeeping_cpumask
-ffffffc0080ae980 t build_sched_domains
-ffffffc0080aff78 T partition_sched_domains_locked
-ffffffc0080b03a0 T partition_sched_domains
-ffffffc0080b040c T psi_task_change
-ffffffc0080b0508 t psi_group_change
-ffffffc0080b091c T psi_task_switch
-ffffffc0080b0b9c t psi_avgs_work
-ffffffc0080b0c98 T psi_account_irqtime
-ffffffc0080b0e5c t record_times
-ffffffc0080b0eec T psi_memstall_enter
-ffffffc0080b1098 T psi_memstall_leave
-ffffffc0080b1238 T psi_show
-ffffffc0080b140c t collect_percpu_times
-ffffffc0080b16e0 t update_averages
-ffffffc0080b197c T psi_trigger_create
-ffffffc0080b1c38 t psi_poll_worker
-ffffffc0080b2208 T psi_trigger_destroy
-ffffffc0080b2428 T psi_trigger_poll
-ffffffc0080b2500 T membarrier_exec_mmap
-ffffffc0080b2588 T membarrier_update_current_mm
-ffffffc0080b25dc T __arm64_sys_membarrier
-ffffffc0080b2a98 T housekeeping_enabled
-ffffffc0080b2ab8 T housekeeping_any_cpu
-ffffffc0080b2b48 T housekeeping_affine
-ffffffc0080b2bac T housekeeping_test_cpu
-ffffffc0080b2c14 t sched_feat_write
-ffffffc0080b2ef8 t sched_feat_open
-ffffffc0080b2f34 t sched_feat_show
-ffffffc0080b2fe8 t sched_scaling_write
-ffffffc0080b3214 t sched_scaling_open
-ffffffc0080b3250 t sched_scaling_show
-ffffffc0080b3290 t sched_debug_open
-ffffffc0080b32c8 t sched_debug_start
-ffffffc0080b3368 t sched_debug_stop
-ffffffc0080b3378 t sched_debug_next
-ffffffc0080b3420 t sched_debug_show
-ffffffc0080b3464 t sd_flags_open
-ffffffc0080b34a4 t sd_flags_show
-ffffffc0080b3584 t schedstat_start
-ffffffc0080b3624 t schedstat_stop
-ffffffc0080b3634 t schedstat_next
-ffffffc0080b36dc t show_schedstat
-ffffffc0080b3920 t cpu_core_flags
-ffffffc0080b3934 t cpu_cpu_mask
-ffffffc0080b3948 t cpu_attach_domain
-ffffffc0080b4114 t destroy_sched_domain
-ffffffc0080b425c t destroy_sched_domains_rcu
-ffffffc0080b42a4 t poll_timer_fn
-ffffffc0080b436c t psi_io_open
-ffffffc0080b43a8 t psi_io_write
-ffffffc0080b43d8 t psi_fop_release
-ffffffc0080b4428 t psi_fop_poll
-ffffffc0080b4500 t psi_io_show
-ffffffc0080b4534 t psi_write
-ffffffc0080b47b0 t psi_memory_open
-ffffffc0080b47ec t psi_memory_write
-ffffffc0080b481c t psi_memory_show
-ffffffc0080b4854 t psi_cpu_open
-ffffffc0080b4890 t psi_cpu_write
-ffffffc0080b48c0 t psi_cpu_show
-ffffffc0080b48f8 t psi_irq_open
-ffffffc0080b4934 t psi_irq_write
-ffffffc0080b4964 t psi_irq_show
-ffffffc0080b4998 t membarrier_private_expedited
-ffffffc0080b4ca4 t ipi_mb
-ffffffc0080b4cb4 t sync_runqueues_membarrier_state
-ffffffc0080b4e98 t ipi_sync_rq_state
-ffffffc0080b4f34 t ipi_sync_core
-ffffffc0080b4f48 t ipi_rseq
-ffffffc0080b4fa0 T __traceiter_contention_begin
-ffffffc0080b5030 T __traceiter_contention_end
-ffffffc0080b50c0 t trace_event_raw_event_contention_begin
-ffffffc0080b5180 t perf_trace_contention_begin
-ffffffc0080b529c t trace_event_raw_event_contention_end
-ffffffc0080b535c t perf_trace_contention_end
-ffffffc0080b5478 T __mutex_init
-ffffffc0080b54a0 T mutex_is_locked
-ffffffc0080b54c0 T ww_mutex_trylock
-ffffffc0080b5648 T atomic_dec_and_mutex_lock
-ffffffc0080b57e0 t trace_raw_output_contention_begin
-ffffffc0080b5878 t trace_raw_output_contention_end
-ffffffc0080b58ec t __ww_mutex_check_waiters
-ffffffc0080b59bc t trace_contention_begin
-ffffffc0080b5abc t mutex_spin_on_owner
-ffffffc0080b5b6c T __init_rwsem
-ffffffc0080b5b98 T down_read_trylock
-ffffffc0080b5c9c T down_write_trylock
-ffffffc0080b5d78 T up_read
-ffffffc0080b5f04 T up_write
-ffffffc0080b6040 T downgrade_write
-ffffffc0080b6148 t rwsem_set_nonspinnable
-ffffffc0080b61b8 t rwsem_mark_wake
-ffffffc0080b64a0 t rwsem_spin_on_owner
-ffffffc0080b657c T _trace_android_vh_record_pcpu_rwsem_starttime
-ffffffc0080b658c T __percpu_init_rwsem
-ffffffc0080b6630 T percpu_free_rwsem
-ffffffc0080b6678 t __percpu_down_read_trylock
-ffffffc0080b67b8 t percpu_rwsem_wait
-ffffffc0080b6978 T percpu_is_read_locked
-ffffffc0080b6a38 T percpu_up_write
-ffffffc0080b6a94 t percpu_rwsem_wake_function
-ffffffc0080b6c7c T in_lock_functions
-ffffffc0080b6ca8 T osq_lock
-ffffffc0080b6ee4 t osq_wait_next
-ffffffc0080b6fb4 T osq_unlock
-ffffffc0080b709c T rt_mutex_base_init
-ffffffc0080b70b8 T pm_qos_read_value
-ffffffc0080b70d4 T pm_qos_update_target
-ffffffc0080b732c T pm_qos_update_flags
-ffffffc0080b7584 T freq_constraints_init
-ffffffc0080b762c T freq_qos_read_value
-ffffffc0080b76a0 T freq_qos_apply
-ffffffc0080b7708 T freq_qos_add_request
-ffffffc0080b77b8 T freq_qos_update_request
-ffffffc0080b7864 T freq_qos_remove_request
-ffffffc0080b790c T freq_qos_add_notifier
-ffffffc0080b7978 T freq_qos_remove_notifier
-ffffffc0080b79e4 T lock_system_sleep
-ffffffc0080b7a34 T unlock_system_sleep
-ffffffc0080b7a7c T ksys_sync_helper
-ffffffc0080b7b28 T register_pm_notifier
-ffffffc0080b7b60 T unregister_pm_notifier
-ffffffc0080b7b98 T pm_notifier_call_chain_robust
-ffffffc0080b7bec T pm_notifier_call_chain
-ffffffc0080b7c28 t suspend_stats_open
-ffffffc0080b7c68 t suspend_stats_show
-ffffffc0080b7ea0 t state_store
-ffffffc0080b7fec t state_store
-ffffffc0080b8114 t pm_async_show
-ffffffc0080b8158 t pm_async_store
-ffffffc0080b81f0 t wakeup_count_show
-ffffffc0080b8284 t wakeup_count_show
-ffffffc0080b8318 t wakeup_count_show
-ffffffc0080b8360 t wakeup_count_store
-ffffffc0080b83fc t mem_sleep_show
-ffffffc0080b84d4 t mem_sleep_store
-ffffffc0080b85ec t sync_on_suspend_show
-ffffffc0080b8630 t sync_on_suspend_store
-ffffffc0080b86d0 t wake_lock_show
-ffffffc0080b8704 t wake_lock_store
-ffffffc0080b874c t wake_unlock_show
-ffffffc0080b8780 t wake_unlock_store
-ffffffc0080b87c8 t pm_freeze_timeout_show
-ffffffc0080b880c t pm_freeze_timeout_store
-ffffffc0080b889c t success_show
-ffffffc0080b88e0 t failed_freeze_show
-ffffffc0080b8924 t failed_prepare_show
-ffffffc0080b8968 t failed_suspend_show
-ffffffc0080b89ac t failed_suspend_late_show
-ffffffc0080b89f0 t failed_suspend_noirq_show
-ffffffc0080b8a34 t failed_resume_show
-ffffffc0080b8a78 t failed_resume_early_show
-ffffffc0080b8abc t failed_resume_noirq_show
-ffffffc0080b8b00 t last_failed_dev_show
-ffffffc0080b8b78 t last_failed_errno_show
-ffffffc0080b8bec t last_failed_step_show
-ffffffc0080b8c70 T pm_vt_switch_required
-ffffffc0080b8d40 T pm_vt_switch_unregister
-ffffffc0080b8de4 T pm_prepare_console
-ffffffc0080b8e98 T pm_restore_console
-ffffffc0080b8f48 T freeze_processes
-ffffffc0080b9060 t try_to_freeze_tasks
-ffffffc0080b9330 T thaw_processes
-ffffffc0080b95f4 T freeze_kernel_threads
-ffffffc0080b9660 T thaw_kernel_threads
-ffffffc0080b9748 T pm_suspend_default_s2idle
-ffffffc0080b9768 T s2idle_set_ops
-ffffffc0080b97ac T s2idle_wake
-ffffffc0080b981c T suspend_set_ops
-ffffffc0080b9950 T suspend_valid_only_mem
-ffffffc0080b9968 W arch_suspend_disable_irqs
-ffffffc0080b9994 W arch_suspend_enable_irqs
-ffffffc0080b99b0 T suspend_devices_and_enter
-ffffffc0080ba454 T pm_suspend
-ffffffc0080baa50 T pm_show_wakelocks
-ffffffc0080bab3c T pm_wake_lock
-ffffffc0080bad68 T pm_wake_unlock
-ffffffc0080bae6c t handle_poweroff
-ffffffc0080baebc t do_poweroff
-ffffffc0080baee8 T log_irq_wakeup_reason
-ffffffc0080baf9c t add_sibling_node_sorted
-ffffffc0080bb0a8 T log_threaded_irq_wakeup_reason
-ffffffc0080bb1fc T log_suspend_abort_reason
-ffffffc0080bb2e8 T log_abnormal_wakeup_reason
-ffffffc0080bb3d4 T clear_wakeup_reasons
-ffffffc0080bb51c t wakeup_reason_pm_event
-ffffffc0080bb670 t last_resume_reason_show
-ffffffc0080bb798 t last_suspend_time_show
-ffffffc0080bb87c T __traceiter_console
-ffffffc0080bb90c t trace_event_raw_event_console
-ffffffc0080bba0c t perf_trace_console
-ffffffc0080bbb74 T devkmsg_sysctl_set_loglvl
-ffffffc0080bbd04 T printk_percpu_data_ready
-ffffffc0080bbd1c T log_buf_addr_get
-ffffffc0080bbd34 T log_buf_len_get
-ffffffc0080bbd4c t devkmsg_llseek
-ffffffc0080bbe10 t devkmsg_read
-ffffffc0080bc27c t devkmsg_write
-ffffffc0080bc3ec t devkmsg_poll
-ffffffc0080bc4e8 t devkmsg_open
-ffffffc0080bc638 t devkmsg_release
-ffffffc0080bc6a8 T log_buf_vmcoreinfo_setup
-ffffffc0080bcaa0 T _printk
-ffffffc0080bcb2c T do_syslog
-ffffffc0080bcf3c t access_ok
-ffffffc0080bcf74 t syslog_print
-ffffffc0080bd4b4 t syslog_print_all
-ffffffc0080bd980 T __arm64_sys_syslog
-ffffffc0080bd9c4 T printk_parse_prefix
-ffffffc0080bda60 T vprintk_store
-ffffffc0080bdf60 t printk_sprint
-ffffffc0080be194 T vprintk_emit
-ffffffc0080be418 T console_unlock
-ffffffc0080be678 T wake_up_klogd
-ffffffc0080be6a8 T vprintk_default
-ffffffc0080be724 T add_preferred_console
-ffffffc0080be754 t __add_preferred_console.llvm.7470064045475957992
-ffffffc0080be9f0 T console_verbose
-ffffffc0080bea24 T suspend_console
-ffffffc0080beaf0 T console_lock
-ffffffc0080beb3c T resume_console
-ffffffc0080beb90 T console_trylock
-ffffffc0080bec8c T is_console_locked
-ffffffc0080beca4 T console_unblank
-ffffffc0080bedb0 T console_flush_on_panic
-ffffffc0080bee18 T console_device
-ffffffc0080beed0 T console_stop
-ffffffc0080bef38 t __pr_flush
-ffffffc0080bf0a4 T console_start
-ffffffc0080bf114 T register_console
-ffffffc0080bf404 t try_enable_preferred_console
-ffffffc0080bf5a0 T unregister_console
-ffffffc0080bf6d8 t __wake_up_klogd.llvm.7470064045475957992
-ffffffc0080bf804 T defer_console_output
-ffffffc0080bf834 T printk_trigger_flush
-ffffffc0080bf864 T vprintk_deferred
-ffffffc0080bf98c T _printk_deferred
-ffffffc0080bfa18 T __printk_ratelimit
-ffffffc0080bfa50 T printk_timed_ratelimit
-ffffffc0080bfac4 T kmsg_dump_register
-ffffffc0080bfb84 T kmsg_dump_unregister
-ffffffc0080bfc24 T kmsg_dump_reason_str
-ffffffc0080bfc5c T kmsg_dump
-ffffffc0080bfd2c T kmsg_dump_get_line
-ffffffc0080bffa0 T kmsg_dump_get_buffer
-ffffffc0080c02cc t find_first_fitting_seq
-ffffffc0080c0498 T kmsg_dump_rewind
-ffffffc0080c0510 T __printk_cpu_sync_wait
-ffffffc0080c053c T __printk_cpu_sync_try_get
-ffffffc0080c060c T __printk_cpu_sync_put
-ffffffc0080c0688 t trace_raw_output_console
-ffffffc0080c06fc t msg_print_ext_body
-ffffffc0080c080c t msg_add_dict_text
-ffffffc0080c0990 t devkmsg_emit
-ffffffc0080c0a20 t info_print_prefix
-ffffffc0080c0b70 t console_emit_next_record
-ffffffc0080c1004 t console_cpu_notify
-ffffffc0080c1048 t wake_up_klogd_work_func
-ffffffc0080c1120 T __printk_safe_enter
-ffffffc0080c11c0 T __printk_safe_exit
-ffffffc0080c1260 T vprintk
-ffffffc0080c13a0 T prb_reserve_in_last
-ffffffc0080c194c t data_alloc
-ffffffc0080c1aa0 T prb_commit
-ffffffc0080c1bac T prb_reserve
-ffffffc0080c2198 T prb_final_commit
-ffffffc0080c2238 T prb_read_valid
-ffffffc0080c229c t _prb_read_valid.llvm.8306583127250161621
-ffffffc0080c2748 T prb_read_valid_info
-ffffffc0080c27b8 T prb_first_valid_seq
-ffffffc0080c282c T prb_next_seq
-ffffffc0080c2960 T prb_init
-ffffffc0080c2a54 T prb_record_text_space
-ffffffc0080c2a64 t data_push_tail
-ffffffc0080c2c84 t proc_dointvec_minmax_sysadmin
-ffffffc0080c2d08 T irq_to_desc
-ffffffc0080c2d40 T irq_lock_sparse
-ffffffc0080c2d74 T irq_unlock_sparse
-ffffffc0080c2da4 t alloc_desc
-ffffffc0080c2fa0 T handle_irq_desc
-ffffffc0080c3008 T generic_handle_irq
-ffffffc0080c3080 T generic_handle_irq_safe
-ffffffc0080c3138 T generic_handle_domain_irq
-ffffffc0080c31ac T generic_handle_domain_irq_safe
-ffffffc0080c3260 T generic_handle_domain_nmi
-ffffffc0080c32f8 T irq_free_descs
-ffffffc0080c3408 T irq_get_next_irq
-ffffffc0080c3448 T __irq_get_desc_lock
-ffffffc0080c3504 T __irq_put_desc_unlock
-ffffffc0080c3578 T irq_set_percpu_devid_partition
-ffffffc0080c3630 T irq_set_percpu_devid
-ffffffc0080c36d4 T irq_get_percpu_devid_partition
-ffffffc0080c3754 T kstat_incr_irq_this_cpu
-ffffffc0080c37cc T kstat_irqs_cpu
-ffffffc0080c3840 T kstat_irqs_usr
-ffffffc0080c3934 t irq_kobj_release
-ffffffc0080c3978 t per_cpu_count_show
-ffffffc0080c3adc t chip_name_show
-ffffffc0080c3b64 t hwirq_show
-ffffffc0080c3be4 t type_show
-ffffffc0080c3c70 t type_show
-ffffffc0080c3cbc t type_show
-ffffffc0080c3d3c t type_show
-ffffffc0080c3dc4 t type_show
-ffffffc0080c3e08 t type_show
-ffffffc0080c3e8c t wakeup_show
-ffffffc0080c3f18 t wakeup_show
-ffffffc0080c3f88 t name_show
-ffffffc0080c4008 t name_show
-ffffffc0080c4050 t name_show
-ffffffc0080c40e4 t name_show
-ffffffc0080c414c t actions_show
-ffffffc0080c424c t delayed_free_desc
-ffffffc0080c427c T handle_bad_irq
-ffffffc0080c44e0 T no_action
-ffffffc0080c44f4 T __irq_wake_thread
-ffffffc0080c45b4 T __handle_irq_event_percpu
-ffffffc0080c4890 t warn_no_thread
-ffffffc0080c490c T handle_irq_event_percpu
-ffffffc0080c4968 T handle_irq_event
-ffffffc0080c4a10 T synchronize_hardirq
-ffffffc0080c4ab0 t __synchronize_hardirq
-ffffffc0080c4bc0 T synchronize_irq
-ffffffc0080c4cb8 T irq_can_set_affinity
-ffffffc0080c4d20 T irq_can_set_affinity_usr
-ffffffc0080c4d8c T irq_set_thread_affinity
-ffffffc0080c4de8 T irq_do_set_affinity
-ffffffc0080c5040 T irq_set_affinity_locked
-ffffffc0080c5240 T irq_update_affinity_desc
-ffffffc0080c5364 T irq_set_affinity
-ffffffc0080c53f4 T irq_force_affinity
-ffffffc0080c5484 T __irq_apply_affinity_hint
-ffffffc0080c5578 T irq_set_affinity_notifier
-ffffffc0080c5738 t irq_affinity_notify
-ffffffc0080c58a4 T irq_setup_affinity
-ffffffc0080c5a30 T irq_set_vcpu_affinity
-ffffffc0080c5b18 T __disable_irq
-ffffffc0080c5b54 T disable_irq_nosync
-ffffffc0080c5bf4 T disable_irq
-ffffffc0080c5ca0 T disable_hardirq
-ffffffc0080c5db8 T disable_nmi_nosync
-ffffffc0080c5e58 T __enable_irq
-ffffffc0080c5ed0 T enable_irq
-ffffffc0080c5fd0 T enable_nmi
-ffffffc0080c5ffc T irq_set_irq_wake
-ffffffc0080c61e0 T can_request_irq
-ffffffc0080c6298 T __irq_set_trigger
-ffffffc0080c6420 T irq_set_parent
-ffffffc0080c64b4 T irq_wake_thread
-ffffffc0080c6564 T free_irq
-ffffffc0080c69b8 T free_nmi
-ffffffc0080c6aa0 t __cleanup_nmi
-ffffffc0080c6b60 T request_threaded_irq
-ffffffc0080c6ce4 t irq_default_primary_handler
-ffffffc0080c6cf4 t __setup_irq
-ffffffc0080c7634 T request_any_context_irq
-ffffffc0080c7704 T request_nmi
-ffffffc0080c78e8 T enable_percpu_irq
-ffffffc0080c79e0 T enable_percpu_nmi
-ffffffc0080c7a0c T irq_percpu_is_enabled
-ffffffc0080c7ac4 T disable_percpu_irq
-ffffffc0080c7b68 T disable_percpu_nmi
-ffffffc0080c7c0c T remove_percpu_irq
-ffffffc0080c7c68 t __free_percpu_irq
-ffffffc0080c7de4 T free_percpu_irq
-ffffffc0080c7eb4 T free_percpu_nmi
-ffffffc0080c7f28 T setup_percpu_irq
-ffffffc0080c7fd4 T __request_percpu_irq
-ffffffc0080c80fc T request_percpu_nmi
-ffffffc0080c8260 T prepare_percpu_nmi
-ffffffc0080c83a4 T teardown_percpu_nmi
-ffffffc0080c8498 T __irq_get_irqchip_state
-ffffffc0080c8510 T irq_get_irqchip_state
-ffffffc0080c8614 T irq_set_irqchip_state
-ffffffc0080c8718 T irq_has_action
-ffffffc0080c8780 T irq_check_status_bit
-ffffffc0080c87ec t irq_nested_primary_handler
-ffffffc0080c8828 t wake_up_and_wait_for_irq_thread_ready
-ffffffc0080c88f4 t irq_forced_secondary_handler
-ffffffc0080c8934 t irq_thread
-ffffffc0080c8cb0 t irq_forced_thread_fn
-ffffffc0080c8da8 t irq_thread_fn
-ffffffc0080c8e5c t irq_thread_dtor
-ffffffc0080c8f78 t irq_finalize_oneshot
-ffffffc0080c90cc T irq_wait_for_poll
-ffffffc0080c91c0 T note_interrupt
-ffffffc0080c93d8 t misrouted_irq
-ffffffc0080c953c t __report_bad_irq
-ffffffc0080c9634 T noirqdebug_setup
-ffffffc0080c9674 t try_one_irq
-ffffffc0080c9764 t poll_spurious_irqs
-ffffffc0080c98e8 T check_irq_resend
-ffffffc0080c9a60 t resend_irqs
-ffffffc0080c9b6c t bad_chained_irq
-ffffffc0080c9bc4 T irq_set_chip
-ffffffc0080c9c68 T irq_set_irq_type
-ffffffc0080c9d0c T irq_set_handler_data
-ffffffc0080c9da0 T irq_set_msi_desc_off
-ffffffc0080c9e54 T irq_set_msi_desc
-ffffffc0080c9ef4 T irq_set_chip_data
-ffffffc0080c9f88 T irq_get_irq_data
-ffffffc0080c9fcc T irq_startup
-ffffffc0080ca338 T irq_enable
-ffffffc0080ca3e8 T irq_activate
-ffffffc0080ca430 T irq_activate_and_startup
-ffffffc0080ca4a0 T irq_shutdown
-ffffffc0080ca5a4 T irq_shutdown_and_deactivate
-ffffffc0080ca6b8 T unmask_irq
-ffffffc0080ca734 T irq_disable
-ffffffc0080ca7ec T irq_percpu_enable
-ffffffc0080ca894 T irq_percpu_disable
-ffffffc0080ca93c T mask_irq
-ffffffc0080ca9b8 T unmask_threaded_irq
-ffffffc0080caa64 T handle_nested_irq
-ffffffc0080cabc4 T handle_simple_irq
-ffffffc0080cacf0 T handle_untracked_irq
-ffffffc0080cae14 T handle_level_irq
-ffffffc0080cb058 T handle_fasteoi_irq
-ffffffc0080cb2f0 T handle_fasteoi_nmi
-ffffffc0080cb4d4 T handle_edge_irq
-ffffffc0080cb7d8 T handle_percpu_irq
-ffffffc0080cb89c T handle_percpu_devid_irq
-ffffffc0080cbb40 T handle_percpu_devid_fasteoi_nmi
-ffffffc0080cbd34 T __irq_set_handler
-ffffffc0080cbddc t __irq_do_set_handler
-ffffffc0080cc08c T irq_set_chained_handler_and_data
-ffffffc0080cc138 T irq_set_chip_and_handler_name
-ffffffc0080cc334 T irq_modify_status
-ffffffc0080cc49c T irq_chip_set_parent_state
-ffffffc0080cc500 T irq_chip_get_parent_state
-ffffffc0080cc560 T irq_chip_enable_parent
-ffffffc0080cc5b8 T irq_chip_disable_parent
-ffffffc0080cc610 T irq_chip_ack_parent
-ffffffc0080cc660 T irq_chip_mask_parent
-ffffffc0080cc6b0 T irq_chip_mask_ack_parent
-ffffffc0080cc700 T irq_chip_unmask_parent
-ffffffc0080cc750 T irq_chip_eoi_parent
-ffffffc0080cc7a0 T irq_chip_set_affinity_parent
-ffffffc0080cc800 T irq_chip_set_type_parent
-ffffffc0080cc85c T irq_chip_retrigger_hierarchy
-ffffffc0080cc8b8 T irq_chip_set_vcpu_affinity_parent
-ffffffc0080cc914 T irq_chip_set_wake_parent
-ffffffc0080cc980 T irq_chip_request_resources_parent
-ffffffc0080cc9dc T irq_chip_release_resources_parent
-ffffffc0080cca30 T irq_chip_compose_msi_msg
-ffffffc0080ccab4 T irq_chip_pm_get
-ffffffc0080ccb74 T irq_chip_pm_put
-ffffffc0080ccbc4 t noop_ret
-ffffffc0080ccbd8 t noop
-ffffffc0080ccbe8 t ack_bad
-ffffffc0080cce0c T devm_request_threaded_irq
-ffffffc0080ccef8 t devm_irq_release
-ffffffc0080ccf2c T devm_request_any_context_irq
-ffffffc0080cd010 T devm_free_irq
-ffffffc0080cd0ac t devm_irq_match
-ffffffc0080cd0e8 T __devm_irq_alloc_descs
-ffffffc0080cd1c0 t devm_irq_desc_release
-ffffffc0080cd1f0 T probe_irq_on
-ffffffc0080cd468 T probe_irq_mask
-ffffffc0080cd56c T probe_irq_off
-ffffffc0080cd688 t irqchip_fwnode_get_name.llvm.10853053493424334119
-ffffffc0080cd69c T __irq_domain_alloc_fwnode
-ffffffc0080cd7b4 T irq_domain_free_fwnode
-ffffffc0080cd818 T __irq_domain_add
-ffffffc0080cd8a4 t __irq_domain_create
-ffffffc0080cdad0 T irq_domain_remove
-ffffffc0080cdbac T irq_set_default_host
-ffffffc0080cdbc4 T irq_domain_update_bus_token
-ffffffc0080cdc64 T irq_domain_create_simple
-ffffffc0080cdda0 T irq_domain_associate_many
-ffffffc0080cde30 T irq_domain_add_legacy
-ffffffc0080cde68 T irq_domain_create_legacy
-ffffffc0080cdf64 T irq_find_matching_fwspec
-ffffffc0080ce0c8 T irq_domain_check_msi_remap
-ffffffc0080ce15c T irq_domain_hierarchical_is_msi_remap
-ffffffc0080ce190 T irq_get_default_host
-ffffffc0080ce1a8 T irq_domain_associate
-ffffffc0080ce218 t irq_domain_associate_locked
-ffffffc0080ce3e0 T irq_create_mapping_affinity
-ffffffc0080ce564 T of_phandle_args_to_fwspec
-ffffffc0080ce5ac T irq_create_fwspec_mapping
-ffffffc0080ceaf4 t irq_domain_alloc_irqs_locked
-ffffffc0080cef08 T irq_create_of_mapping
-ffffffc0080cf0a8 T irq_dispose_mapping
-ffffffc0080cf250 T irq_domain_free_irqs
-ffffffc0080cf4d4 T __irq_resolve_mapping
-ffffffc0080cf584 T irq_domain_get_irq_data
-ffffffc0080cf5fc T irq_domain_xlate_onecell
-ffffffc0080cf630 T irq_domain_xlate_twocell
-ffffffc0080cf680 T irq_domain_translate_twocell
-ffffffc0080cf6c4 T irq_domain_xlate_onetwocell
-ffffffc0080cf710 T irq_domain_translate_onecell
-ffffffc0080cf74c T irq_domain_alloc_descs
-ffffffc0080cf7f8 T irq_domain_reset_irq_data
-ffffffc0080cf81c T irq_domain_create_hierarchy
-ffffffc0080cf8ec T irq_domain_disconnect_hierarchy
-ffffffc0080cf96c T irq_domain_set_hwirq_and_chip
-ffffffc0080cfa14 T irq_domain_set_info
-ffffffc0080cfaec T irq_domain_free_irqs_common
-ffffffc0080cfc4c T irq_domain_free_irqs_parent
-ffffffc0080cfd30 T irq_domain_free_irqs_top
-ffffffc0080cfdc4 T irq_domain_alloc_irqs_hierarchy
-ffffffc0080cfe1c T __irq_domain_alloc_irqs
-ffffffc0080cfee8 T irq_domain_push_irq
-ffffffc0080d0138 T irq_domain_pop_irq
-ffffffc0080d03a4 T irq_domain_alloc_irqs_parent
-ffffffc0080d0404 T irq_domain_activate_irq
-ffffffc0080d0460 t __irq_domain_activate_irq
-ffffffc0080d0518 T irq_domain_deactivate_irq
-ffffffc0080d0568 t __irq_domain_deactivate_irq
-ffffffc0080d05e0 T register_handler_proc
-ffffffc0080d0734 T register_irq_proc
-ffffffc0080d08f4 t irq_affinity_hint_proc_show
-ffffffc0080d09ec t irq_node_proc_show
-ffffffc0080d0a48 t irq_effective_aff_proc_show
-ffffffc0080d0ab0 t irq_effective_aff_list_proc_show
-ffffffc0080d0b18 t irq_spurious_proc_show
-ffffffc0080d0b7c T unregister_irq_proc
-ffffffc0080d0c90 T unregister_handler_proc
-ffffffc0080d0cc0 T init_irq_proc
-ffffffc0080d0d90 T show_interrupts
-ffffffc0080d11d4 t irq_affinity_proc_open
-ffffffc0080d1214 t irq_affinity_proc_write
-ffffffc0080d1250 t irq_affinity_proc_show
-ffffffc0080d12b0 t write_irq_affinity
-ffffffc0080d13d4 t irq_affinity_list_proc_open
-ffffffc0080d1414 t irq_affinity_list_proc_write
-ffffffc0080d1450 t irq_affinity_list_proc_show
-ffffffc0080d14b4 t default_affinity_open
-ffffffc0080d14f4 t default_affinity_write
-ffffffc0080d15e4 t default_affinity_show
-ffffffc0080d162c T irq_migrate_all_off_this_cpu
-ffffffc0080d1884 T irq_affinity_online_cpu
-ffffffc0080d1a00 T irq_pm_check_wakeup
-ffffffc0080d1a6c T irq_pm_install_action
-ffffffc0080d1b04 T irq_pm_remove_action
-ffffffc0080d1b60 T suspend_device_irqs
-ffffffc0080d1cc0 T rearm_wake_irq
-ffffffc0080d1d78 T resume_device_irqs
-ffffffc0080d1da4 t resume_irqs.llvm.1919348490090480414
-ffffffc0080d1f0c t irq_pm_syscore_resume
-ffffffc0080d1f3c T msi_add_msi_desc
-ffffffc0080d2040 T msi_free_msi_descs_range
-ffffffc0080d2144 T __get_cached_msi_msg
-ffffffc0080d2164 T get_cached_msi_msg
-ffffffc0080d21d0 T msi_setup_device_data
-ffffffc0080d22a0 t msi_device_data_release
-ffffffc0080d22f0 T msi_lock_descs
-ffffffc0080d2324 T msi_unlock_descs
-ffffffc0080d2364 T msi_first_desc
-ffffffc0080d242c T msi_next_desc
-ffffffc0080d2514 T msi_get_virq
-ffffffc0080d2614 T msi_domain_set_affinity
-ffffffc0080d2730 T msi_create_irq_domain
-ffffffc0080d28cc T msi_domain_prepare_irqs
-ffffffc0080d297c T msi_domain_populate_irqs
-ffffffc0080d2b6c t msi_add_simple_msi_descs
-ffffffc0080d2d08 T __msi_domain_alloc_irqs
-ffffffc0080d32e4 T msi_domain_alloc_irqs_descs_locked
-ffffffc0080d339c T msi_domain_free_irqs_descs_locked
-ffffffc0080d348c T msi_domain_alloc_irqs
-ffffffc0080d3568 T __msi_domain_free_irqs
-ffffffc0080d376c T msi_domain_free_irqs
-ffffffc0080d37d4 T msi_get_domain_info
-ffffffc0080d37e8 t msi_domain_ops_get_hwirq
-ffffffc0080d37fc t msi_domain_ops_init
-ffffffc0080d3878 t msi_domain_ops_check
-ffffffc0080d388c t msi_domain_ops_prepare
-ffffffc0080d38ac t msi_domain_ops_set_desc
-ffffffc0080d38c0 t msi_domain_alloc
-ffffffc0080d3a88 t msi_domain_free
-ffffffc0080d3b3c t msi_domain_activate
-ffffffc0080d3c20 t msi_domain_deactivate
-ffffffc0080d3ca8 t msi_mode_show
-ffffffc0080d3d24 T irq_reserve_ipi
-ffffffc0080d3f44 T irq_destroy_ipi
-ffffffc0080d405c T ipi_get_hwirq
-ffffffc0080d412c T __ipi_send_single
-ffffffc0080d421c T __ipi_send_mask
-ffffffc0080d438c T ipi_send_single
-ffffffc0080d44dc T ipi_send_mask
-ffffffc0080d4590 T irq_create_affinity_masks
-ffffffc0080d4a1c t default_calc_sets
-ffffffc0080d4a34 T irq_calc_affinity_vectors
-ffffffc0080d4ac8 t __irq_build_affinity_masks
-ffffffc0080d4f3c t ncpus_cmp_func
-ffffffc0080d4f58 T __traceiter_rcu_utilization
-ffffffc0080d4fd8 T __traceiter_rcu_grace_period
-ffffffc0080d5070 T __traceiter_rcu_future_grace_period
-ffffffc0080d5138 T __traceiter_rcu_grace_period_init
-ffffffc0080d51f8 T __traceiter_rcu_exp_grace_period
-ffffffc0080d5290 T __traceiter_rcu_exp_funnel_lock
-ffffffc0080d5340 T __traceiter_rcu_nocb_wake
-ffffffc0080d53d8 T __traceiter_rcu_preempt_task
-ffffffc0080d5470 T __traceiter_rcu_unlock_preempted_task
-ffffffc0080d5508 T __traceiter_rcu_quiescent_state_report
-ffffffc0080d55e8 T __traceiter_rcu_fqs
-ffffffc0080d5690 T __traceiter_rcu_stall_warning
-ffffffc0080d5720 T __traceiter_rcu_dyntick
-ffffffc0080d57c8 T __traceiter_rcu_callback
-ffffffc0080d5860 T __traceiter_rcu_segcb_stats
-ffffffc0080d58f0 T __traceiter_rcu_kvfree_callback
-ffffffc0080d5998 T __traceiter_rcu_batch_start
-ffffffc0080d5a30 T __traceiter_rcu_invoke_callback
-ffffffc0080d5ac0 T __traceiter_rcu_invoke_kvfree_callback
-ffffffc0080d5b58 T __traceiter_rcu_invoke_kfree_bulk_callback
-ffffffc0080d5bf0 T __traceiter_rcu_batch_end
-ffffffc0080d5cb0 T __traceiter_rcu_torture_read
-ffffffc0080d5d60 T __traceiter_rcu_barrier
-ffffffc0080d5e10 t trace_event_raw_event_rcu_utilization
-ffffffc0080d5ec8 t perf_trace_rcu_utilization
-ffffffc0080d5fd4 t trace_event_raw_event_rcu_grace_period
-ffffffc0080d60a4 t perf_trace_rcu_grace_period
-ffffffc0080d61c4 t trace_event_raw_event_rcu_future_grace_period
-ffffffc0080d62c0 t perf_trace_rcu_future_grace_period
-ffffffc0080d640c t trace_event_raw_event_rcu_grace_period_init
-ffffffc0080d64f8 t perf_trace_rcu_grace_period_init
-ffffffc0080d663c t trace_event_raw_event_rcu_exp_grace_period
-ffffffc0080d670c t perf_trace_rcu_exp_grace_period
-ffffffc0080d682c t trace_event_raw_event_rcu_exp_funnel_lock
-ffffffc0080d6914 t perf_trace_rcu_exp_funnel_lock
-ffffffc0080d6a4c t trace_event_raw_event_rcu_nocb_wake
-ffffffc0080d6b20 t perf_trace_rcu_nocb_wake
-ffffffc0080d6c44 t trace_event_raw_event_rcu_preempt_task
-ffffffc0080d6d14 t perf_trace_rcu_preempt_task
-ffffffc0080d6e34 t trace_event_raw_event_rcu_unlock_preempted_task
-ffffffc0080d6f04 t perf_trace_rcu_unlock_preempted_task
-ffffffc0080d7024 t trace_event_raw_event_rcu_quiescent_state_report
-ffffffc0080d7124 t perf_trace_rcu_quiescent_state_report
-ffffffc0080d7278 t trace_event_raw_event_rcu_fqs
-ffffffc0080d7350 t perf_trace_rcu_fqs
-ffffffc0080d7480 t trace_event_raw_event_rcu_stall_warning
-ffffffc0080d753c t perf_trace_rcu_stall_warning
-ffffffc0080d7654 t trace_event_raw_event_rcu_dyntick
-ffffffc0080d772c t perf_trace_rcu_dyntick
-ffffffc0080d785c t trace_event_raw_event_rcu_callback
-ffffffc0080d7930 t perf_trace_rcu_callback
-ffffffc0080d7a54 t trace_event_raw_event_rcu_segcb_stats
-ffffffc0080d7b30 t perf_trace_rcu_segcb_stats
-ffffffc0080d7c68 t trace_event_raw_event_rcu_kvfree_callback
-ffffffc0080d7d3c t perf_trace_rcu_kvfree_callback
-ffffffc0080d7e68 t trace_event_raw_event_rcu_batch_start
-ffffffc0080d7f38 t perf_trace_rcu_batch_start
-ffffffc0080d8058 t trace_event_raw_event_rcu_invoke_callback
-ffffffc0080d811c t perf_trace_rcu_invoke_callback
-ffffffc0080d823c t trace_event_raw_event_rcu_invoke_kvfree_callback
-ffffffc0080d830c t perf_trace_rcu_invoke_kvfree_callback
-ffffffc0080d842c t trace_event_raw_event_rcu_invoke_kfree_bulk_callback
-ffffffc0080d84fc t perf_trace_rcu_invoke_kfree_bulk_callback
-ffffffc0080d861c t trace_event_raw_event_rcu_batch_end
-ffffffc0080d8710 t perf_trace_rcu_batch_end
-ffffffc0080d885c t trace_event_raw_event_rcu_torture_read
-ffffffc0080d8954 t perf_trace_rcu_torture_read
-ffffffc0080d8aa8 t trace_event_raw_event_rcu_barrier
-ffffffc0080d8b8c t perf_trace_rcu_barrier
-ffffffc0080d8cc0 T rcu_gp_is_normal
-ffffffc0080d8cf4 T rcu_gp_is_expedited
-ffffffc0080d8d34 T rcu_expedite_gp
-ffffffc0080d8d80 T rcu_unexpedite_gp
-ffffffc0080d8dd0 T rcu_end_inkernel_boot
-ffffffc0080d8e40 T rcu_inkernel_boot_has_ended
-ffffffc0080d8e58 T rcu_test_sync_prims
-ffffffc0080d8e68 T wakeme_after_rcu
-ffffffc0080d8e98 T __wait_rcu_gp
-ffffffc0080d9044 T finish_rcuwait
-ffffffc0080d9060 T do_trace_rcu_torture_read
-ffffffc0080d9184 T get_completed_synchronize_rcu
-ffffffc0080d9198 T rcu_early_boot_tests
-ffffffc0080d91a8 T call_rcu_tasks
-ffffffc0080d93e0 T synchronize_rcu_tasks
-ffffffc0080d94c8 T rcu_barrier_tasks
-ffffffc0080d9730 T show_rcu_tasks_classic_gp_kthread
-ffffffc0080d98a4 T exit_tasks_rcu_start
-ffffffc0080d98e0 T exit_tasks_rcu_stop
-ffffffc0080d991c T exit_tasks_rcu_finish
-ffffffc0080d9958 T show_rcu_tasks_gp_kthreads
-ffffffc0080d9984 t trace_raw_output_rcu_utilization
-ffffffc0080d99f8 t trace_raw_output_rcu_grace_period
-ffffffc0080d9a70 t trace_raw_output_rcu_future_grace_period
-ffffffc0080d9b00 t trace_raw_output_rcu_grace_period_init
-ffffffc0080d9b80 t trace_raw_output_rcu_exp_grace_period
-ffffffc0080d9bf8 t trace_raw_output_rcu_exp_funnel_lock
-ffffffc0080d9c78 t trace_raw_output_rcu_nocb_wake
-ffffffc0080d9cf4 t trace_raw_output_rcu_preempt_task
-ffffffc0080d9d6c t trace_raw_output_rcu_unlock_preempted_task
-ffffffc0080d9de4 t trace_raw_output_rcu_quiescent_state_report
-ffffffc0080d9e78 t trace_raw_output_rcu_fqs
-ffffffc0080d9ef4 t trace_raw_output_rcu_stall_warning
-ffffffc0080d9f68 t trace_raw_output_rcu_dyntick
-ffffffc0080d9fe8 t trace_raw_output_rcu_callback
-ffffffc0080da060 t trace_raw_output_rcu_segcb_stats
-ffffffc0080da0f4 t trace_raw_output_rcu_kvfree_callback
-ffffffc0080da16c t trace_raw_output_rcu_batch_start
-ffffffc0080da1e4 t trace_raw_output_rcu_invoke_callback
-ffffffc0080da25c t trace_raw_output_rcu_invoke_kvfree_callback
-ffffffc0080da2d4 t trace_raw_output_rcu_invoke_kfree_bulk_callback
-ffffffc0080da34c t trace_raw_output_rcu_batch_end
-ffffffc0080da408 t trace_raw_output_rcu_torture_read
-ffffffc0080da484 t trace_raw_output_rcu_barrier
-ffffffc0080da4fc t cblist_init_generic
-ffffffc0080da704 t rcu_tasks_invoke_cbs_wq
-ffffffc0080da734 t rcu_tasks_invoke_cbs
-ffffffc0080da938 t rcu_tasks_wait_gp
-ffffffc0080dac58 t call_rcu_tasks_iw_wakeup
-ffffffc0080dac84 t rcu_tasks_one_gp
-ffffffc0080db070 t rcu_barrier_tasks_generic_cb
-ffffffc0080db0e8 t rcu_tasks_pregp_step
-ffffffc0080db114 t rcu_tasks_pertask
-ffffffc0080db20c t rcu_tasks_postscan
-ffffffc0080db240 t check_all_holdout_tasks
-ffffffc0080db40c t rcu_tasks_postgp
-ffffffc0080db438 t rcu_tasks_kthread
-ffffffc0080db484 T rcu_sync_init
-ffffffc0080db4d0 T rcu_sync_enter_start
-ffffffc0080db4f0 T rcu_sync_enter
-ffffffc0080db6c0 t rcu_sync_func
-ffffffc0080db798 T rcu_sync_exit
-ffffffc0080db858 T rcu_sync_dtor
-ffffffc0080db910 T init_srcu_struct
-ffffffc0080db940 t init_srcu_struct_fields.llvm.14867165458604491578
-ffffffc0080dbba4 T cleanup_srcu_struct
-ffffffc0080dbec0 T __srcu_read_lock
-ffffffc0080dbf80 T __srcu_read_unlock
-ffffffc0080dc038 T call_srcu
-ffffffc0080dc06c T synchronize_srcu_expedited
-ffffffc0080dc0ac t __synchronize_srcu
-ffffffc0080dc1c0 T synchronize_srcu
-ffffffc0080dc304 T get_state_synchronize_srcu
-ffffffc0080dc330 T start_poll_synchronize_srcu
-ffffffc0080dc360 t srcu_gp_start_if_needed.llvm.14867165458604491578
-ffffffc0080dca78 T poll_state_synchronize_srcu
-ffffffc0080dcaa8 T srcu_barrier
-ffffffc0080dcf08 T srcu_batches_completed
-ffffffc0080dcf28 T srcutorture_get_gp_data
-ffffffc0080dcf58 T srcu_torture_stats_print
-ffffffc0080dd144 t process_srcu
-ffffffc0080dd824 t init_srcu_struct_nodes
-ffffffc0080ddb44 t srcu_gp_start
-ffffffc0080ddc74 t try_check_zero
-ffffffc0080dde5c t srcu_invoke_callbacks
-ffffffc0080de00c t srcu_delay_timer
-ffffffc0080de044 t srcu_funnel_exp_start
-ffffffc0080de1d0 t srcu_barrier_cb
-ffffffc0080de248 T rcu_get_gp_kthreads_prio
-ffffffc0080de260 T rcu_softirq_qs
-ffffffc0080de320 t rcu_qs
-ffffffc0080de428 T rcu_preempt_deferred_qs
-ffffffc0080de4c4 T rcu_is_idle_cpu
-ffffffc0080de508 T rcu_dynticks_zero_in_eqs
-ffffffc0080de58c T rcu_momentary_dyntick_idle
-ffffffc0080de694 T rcu_get_gp_seq
-ffffffc0080de6b4 T rcu_exp_batches_completed
-ffffffc0080de6cc T rcutorture_get_gp_data
-ffffffc0080de710 T rcu_needs_cpu
-ffffffc0080de770 T rcu_is_watching
-ffffffc0080de800 T rcu_request_urgent_qs_task
-ffffffc0080de874 T rcu_gp_slow_register
-ffffffc0080de89c T rcu_gp_slow_unregister
-ffffffc0080de8cc T rcu_gp_set_torture_wait
-ffffffc0080de8dc T rcutree_dying_cpu
-ffffffc0080de9ec T rcutree_dead_cpu
-ffffffc0080dea54 t rcu_boost_kthread_setaffinity
-ffffffc0080dec80 T rcu_sched_clock_irq
-ffffffc0080dfe8c t invoke_rcu_core
-ffffffc0080dff9c T rcu_force_quiescent_state
-ffffffc0080e0124 T call_rcu
-ffffffc0080e0b00 t __call_rcu_nocb_wake
-ffffffc0080e0fc4 T kvfree_call_rcu
-ffffffc0080e12d8 T synchronize_rcu
-ffffffc0080e152c T synchronize_rcu_expedited
-ffffffc0080e1c80 T get_completed_synchronize_rcu_full
-ffffffc0080e1c98 T get_state_synchronize_rcu
-ffffffc0080e1cc8 T get_state_synchronize_rcu_full
-ffffffc0080e1d18 T start_poll_synchronize_rcu
-ffffffc0080e1d6c t start_poll_synchronize_rcu_common
-ffffffc0080e1ea8 T start_poll_synchronize_rcu_full
-ffffffc0080e1f14 T poll_state_synchronize_rcu
-ffffffc0080e1f60 T poll_state_synchronize_rcu_full
-ffffffc0080e1fe0 T cond_synchronize_rcu
-ffffffc0080e203c T cond_synchronize_rcu_full
-ffffffc0080e20cc T rcu_barrier
-ffffffc0080e2848 t rcu_barrier_entrain
-ffffffc0080e2ab8 t rcu_barrier_handler
-ffffffc0080e2b64 T rcutree_prepare_cpu
-ffffffc0080e2d40 t rcu_iw_handler
-ffffffc0080e2da4 t rcu_spawn_one_boost_kthread
-ffffffc0080e2ec4 t rcu_spawn_cpu_nocb_kthread
-ffffffc0080e3124 T rcutree_online_cpu
-ffffffc0080e31dc T rcutree_offline_cpu
-ffffffc0080e3288 T rcu_cpu_starting
-ffffffc0080e3520 t rcu_report_qs_rnp
-ffffffc0080e37d8 T rcu_report_dead
-ffffffc0080e3a1c T rcutree_migrate_callbacks
-ffffffc0080e3dd8 t rcu_nocb_flush_bypass
-ffffffc0080e3f98 T rcu_scheduler_starting
-ffffffc0080e40cc T rcu_init_geometry
-ffffffc0080e42f0 t rcu_core_si
-ffffffc0080e431c t rcu_pm_notify
-ffffffc0080e4380 T start_poll_synchronize_rcu_expedited
-ffffffc0080e449c T rcu_exp_jiffies_till_stall_check
-ffffffc0080e4550 T rcu_jiffies_till_stall_check
-ffffffc0080e459c T rcu_gp_might_be_stalled
-ffffffc0080e464c T rcu_sysrq_start
-ffffffc0080e4678 T rcu_sysrq_end
-ffffffc0080e469c T rcu_cpu_stall_reset
-ffffffc0080e46fc T rcu_check_boost_fail
-ffffffc0080e48b8 T show_rcu_gp_kthreads
-ffffffc0080e533c T rcu_fwd_progress_check
-ffffffc0080e5520 t rcu_exp_sel_wait_wake
-ffffffc0080e65bc t sync_exp_work_done
-ffffffc0080e66b8 T start_poll_synchronize_rcu_expedited_full
-ffffffc0080e6724 T cond_synchronize_rcu_expedited
-ffffffc0080e6780 T cond_synchronize_rcu_expedited_full
-ffffffc0080e6810 T rcu_nocb_flush_deferred_wakeup
-ffffffc0080e688c T rcu_nocb_cpu_deoffload
-ffffffc0080e69a8 t rcu_nocb_rdp_deoffload
-ffffffc0080e6d54 T rcu_nocb_cpu_offload
-ffffffc0080e6e70 t rcu_nocb_rdp_offload
-ffffffc0080e705c T rcu_bind_current_to_nocb
-ffffffc0080e70cc T rcu_note_context_switch
-ffffffc0080e7634 T __rcu_read_lock
-ffffffc0080e765c T __rcu_read_unlock
-ffffffc0080e76b4 t rcu_read_unlock_special
-ffffffc0080e7888 t rcu_preempt_deferred_qs_irqrestore
-ffffffc0080e7d58 T exit_rcu
-ffffffc0080e7dd8 t param_set_first_fqs_jiffies
-ffffffc0080e7ed4 t param_set_next_fqs_jiffies
-ffffffc0080e7fd4 t note_gp_changes
-ffffffc0080e8120 t rcu_accelerate_cbs_unlocked
-ffffffc0080e8248 t __note_gp_changes
-ffffffc0080e8590 t rcu_accelerate_cbs
-ffffffc0080e88b4 t rcu_start_this_gp
-ffffffc0080e8b04 t trace_rcu_this_gp
-ffffffc0080e8bd8 t schedule_page_work_fn
-ffffffc0080e8c18 t rcu_stall_kick_kthreads
-ffffffc0080e8d80 t print_cpu_stall_info
-ffffffc0080e9068 t rcu_check_gp_kthread_expired_fqs_timer
-ffffffc0080e9174 t rcu_check_gp_kthread_starvation
-ffffffc0080e930c t rcu_dump_cpu_stacks
-ffffffc0080e946c t check_slow_task
-ffffffc0080e94dc t rcu_barrier_callback
-ffffffc0080e96ac t rcu_gp_kthread
-ffffffc0080e9918 t rcu_gp_init
-ffffffc0080ea210 t rcu_gp_fqs_loop
-ffffffc0080ea9e0 t rcu_gp_cleanup
-ffffffc0080eaff8 t dump_blkd_tasks
-ffffffc0080eb2b0 t dyntick_save_progress_counter
-ffffffc0080eb424 t rcu_implicit_dynticks_qs
-ffffffc0080eb76c t rcu_initiate_boost
-ffffffc0080eb84c t rcu_cpu_kthread_should_run
-ffffffc0080eb874 t rcu_cpu_kthread
-ffffffc0080ebba8 t rcu_cpu_kthread_setup
-ffffffc0080ebc50 t rcu_cpu_kthread_park
-ffffffc0080ebc8c t rcu_core
-ffffffc0080ec25c t rcu_do_batch
-ffffffc0080eca50 t kfree_rcu_work
-ffffffc0080ece28 t kfree_rcu_monitor
-ffffffc0080ed000 t fill_page_cache_func
-ffffffc0080ed100 t kfree_rcu_shrink_count
-ffffffc0080ed1d0 t kfree_rcu_shrink_scan
-ffffffc0080ed32c t sync_rcu_do_polled_gp
-ffffffc0080ed490 t strict_work_handler
-ffffffc0080ed4fc t do_nocb_deferred_wakeup_timer
-ffffffc0080ed608 t trace_rcu_nocb_wake
-ffffffc0080ed6c0 t do_nocb_deferred_wakeup_common
-ffffffc0080ed7b8 t __wake_nocb_gp
-ffffffc0080ed9a8 t rcu_panic
-ffffffc0080ed9c8 t sysrq_show_rcu
-ffffffc0080ed9f0 t rcu_report_exp_cpu_mult
-ffffffc0080edae4 t __rcu_report_exp_rnp
-ffffffc0080edbe4 t sync_rcu_exp_select_node_cpus
-ffffffc0080ee090 t rcu_exp_handler
-ffffffc0080ee1e0 t wait_rcu_exp_gp
-ffffffc0080ee20c t rcu_advance_cbs_nowake
-ffffffc0080ee2cc t wake_nocb_gp_defer
-ffffffc0080ee424 t rdp_offload_toggle
-ffffffc0080ee4e4 t rcu_nocb_gp_kthread
-ffffffc0080eefb8 t rcu_nocb_cb_kthread
-ffffffc0080ef4a0 t nocb_gp_sleep
-ffffffc0080ef6c0 t rcu_preempt_deferred_qs_handler
-ffffffc0080ef6d4 t rcu_boost_kthread
-ffffffc0080efae0 T rcu_cblist_init
-ffffffc0080efaf8 T rcu_cblist_enqueue
-ffffffc0080efb20 T rcu_cblist_flush_enqueue
-ffffffc0080efb74 T rcu_cblist_dequeue
-ffffffc0080efbb4 T rcu_segcblist_n_segment_cbs
-ffffffc0080efc00 T rcu_segcblist_add_len
-ffffffc0080efc44 T rcu_segcblist_inc_len
-ffffffc0080efc8c T rcu_segcblist_init
-ffffffc0080efcc8 T rcu_segcblist_disable
-ffffffc0080efd10 T rcu_segcblist_offload
-ffffffc0080efd3c T rcu_segcblist_ready_cbs
-ffffffc0080efd7c T rcu_segcblist_pend_cbs
-ffffffc0080efdc4 T rcu_segcblist_first_cb
-ffffffc0080efdf4 T rcu_segcblist_first_pend_cb
-ffffffc0080efe28 T rcu_segcblist_nextgp
-ffffffc0080efe78 T rcu_segcblist_enqueue
-ffffffc0080efedc T rcu_segcblist_entrain
-ffffffc0080effdc T rcu_segcblist_extract_done_cbs
-ffffffc0080f0080 T rcu_segcblist_extract_pend_cbs
-ffffffc0080f0148 T rcu_segcblist_insert_count
-ffffffc0080f0190 T rcu_segcblist_insert_done_cbs
-ffffffc0080f0220 T rcu_segcblist_insert_pend_cbs
-ffffffc0080f025c T rcu_segcblist_advance
-ffffffc0080f035c T rcu_segcblist_accelerate
-ffffffc0080f04a8 T rcu_segcblist_merge
-ffffffc0080f0790 T dmam_free_coherent
-ffffffc0080f08e4 t dmam_release
-ffffffc0080f09dc t dmam_match
-ffffffc0080f0a3c T dmam_alloc_attrs
-ffffffc0080f0bb4 T dma_alloc_attrs
-ffffffc0080f0cc8 T dma_map_page_attrs
-ffffffc0080f0ef4 T dma_unmap_page_attrs
-ffffffc0080f10c8 T dma_map_sg_attrs
-ffffffc0080f1190 T dma_map_sgtable
-ffffffc0080f1274 T dma_unmap_sg_attrs
-ffffffc0080f12dc T dma_map_resource
-ffffffc0080f1360 T dma_unmap_resource
-ffffffc0080f13c0 T dma_sync_single_for_cpu
-ffffffc0080f14ec T dma_sync_single_for_device
-ffffffc0080f15fc T dma_sync_sg_for_cpu
-ffffffc0080f1664 T dma_sync_sg_for_device
-ffffffc0080f16cc T dma_get_sgtable_attrs
-ffffffc0080f1730 T dma_pgprot
-ffffffc0080f1770 T dma_can_mmap
-ffffffc0080f17a0 T dma_mmap_attrs
-ffffffc0080f1804 T dma_get_required_mask
-ffffffc0080f1868 T dma_free_attrs
-ffffffc0080f1964 T dma_alloc_pages
-ffffffc0080f19f8 T dma_free_pages
-ffffffc0080f1a5c T dma_mmap_pages
-ffffffc0080f1ae0 T dma_alloc_noncontiguous
-ffffffc0080f1cbc T dma_free_noncontiguous
-ffffffc0080f1d98 T dma_vmap_noncontiguous
-ffffffc0080f1e30 T dma_vunmap_noncontiguous
-ffffffc0080f1e70 T dma_mmap_noncontiguous
-ffffffc0080f1f48 T dma_pci_p2pdma_supported
-ffffffc0080f1f74 T dma_set_mask
-ffffffc0080f2010 T dma_set_coherent_mask
-ffffffc0080f20a0 T dma_max_mapping_size
-ffffffc0080f2104 T dma_opt_mapping_size
-ffffffc0080f21c4 T dma_need_sync
-ffffffc0080f221c T dma_get_merge_boundary
-ffffffc0080f2278 T dma_direct_get_required_mask
-ffffffc0080f2300 T dma_direct_alloc
-ffffffc0080f26c8 t __dma_direct_alloc_pages
-ffffffc0080f29dc T dma_direct_free
-ffffffc0080f2af8 T dma_direct_alloc_pages
-ffffffc0080f2bd4 T dma_direct_free_pages
-ffffffc0080f2c80 T dma_direct_sync_sg_for_device
-ffffffc0080f2d98 T dma_direct_sync_sg_for_cpu
-ffffffc0080f2eac T dma_direct_unmap_sg
-ffffffc0080f3078 T dma_direct_map_sg
-ffffffc0080f32cc T dma_direct_map_resource
-ffffffc0080f33a8 T dma_direct_get_sgtable
-ffffffc0080f347c T dma_direct_can_mmap
-ffffffc0080f3490 T dma_direct_mmap
-ffffffc0080f35e0 T dma_direct_supported
-ffffffc0080f367c T dma_direct_max_mapping_size
-ffffffc0080f3710 T dma_direct_need_sync
-ffffffc0080f37a8 T dma_direct_set_offset
-ffffffc0080f3858 t dma_coherent_ok
-ffffffc0080f38e4 T dma_common_get_sgtable
-ffffffc0080f399c T dma_common_mmap
-ffffffc0080f3b00 T dma_common_alloc_pages
-ffffffc0080f3c2c T dma_common_free_pages
-ffffffc0080f3cc0 t dma_dummy_mmap
-ffffffc0080f3cd4 t dma_dummy_map_page
-ffffffc0080f3ce8 t dma_dummy_map_sg
-ffffffc0080f3cfc t dma_dummy_supported
-ffffffc0080f3d10 T dma_declare_coherent_memory
-ffffffc0080f3dc8 t dma_init_coherent_memory
-ffffffc0080f3efc T dma_release_coherent_memory
-ffffffc0080f3f60 T dma_alloc_from_dev_coherent
-ffffffc0080f40b0 T dma_release_from_dev_coherent
-ffffffc0080f415c T dma_mmap_from_dev_coherent
-ffffffc0080f4234 t rmem_dma_device_init
-ffffffc0080f42ac t rmem_dma_device_release
-ffffffc0080f42c8 T __traceiter_swiotlb_bounced
-ffffffc0080f4360 t trace_event_raw_event_swiotlb_bounced
-ffffffc0080f44b0 t perf_trace_swiotlb_bounced
-ffffffc0080f4670 T swiotlb_max_segment
-ffffffc0080f4698 T swiotlb_size_or_default
-ffffffc0080f46b4 T swiotlb_print_info
-ffffffc0080f4710 t swiotlb_adjust_nareas
-ffffffc0080f4814 T swiotlb_init_late
-ffffffc0080f4ccc T swiotlb_tbl_map_single
-ffffffc0080f4eec t swiotlb_find_slots
-ffffffc0080f5294 t swiotlb_bounce
-ffffffc0080f5478 T swiotlb_tbl_unmap_single
-ffffffc0080f54d4 t swiotlb_release_slots
-ffffffc0080f5664 T swiotlb_sync_single_for_device
-ffffffc0080f56ac T swiotlb_sync_single_for_cpu
-ffffffc0080f56f4 T swiotlb_map
-ffffffc0080f59c4 T swiotlb_max_mapping_size
-ffffffc0080f5a0c T is_swiotlb_active
-ffffffc0080f5a3c T swiotlb_alloc
-ffffffc0080f5ac0 T swiotlb_free
-ffffffc0080f5b30 t trace_raw_output_swiotlb_bounced
-ffffffc0080f5bcc t fops_io_tlb_used_open
-ffffffc0080f5c0c t io_tlb_used_get
-ffffffc0080f5ca8 t rmem_swiotlb_device_init
-ffffffc0080f5ee0 t rmem_swiotlb_device_release
-ffffffc0080f5efc T dma_alloc_from_pool
-ffffffc0080f60f8 T dma_free_from_pool
-ffffffc0080f61c8 t atomic_pool_work_fn
-ffffffc0080f62b4 t atomic_pool_expand
-ffffffc0080f64cc T dma_common_find_pages
-ffffffc0080f6514 T dma_common_pages_remap
-ffffffc0080f6574 T dma_common_contiguous_remap
-ffffffc0080f6674 T dma_common_free_remap
-ffffffc0080f66dc T freezing_slow_path
-ffffffc0080f6738 T frozen
-ffffffc0080f6758 T __refrigerator
-ffffffc0080f68f4 T freeze_task
-ffffffc0080f6a40 T __thaw_task
-ffffffc0080f6b54 t __set_task_special
-ffffffc0080f6b8c T set_freezable
-ffffffc0080f6c34 t __set_task_frozen
-ffffffc0080f6ce0 T profile_setup
-ffffffc0080f6e98 T profile_task_exit
-ffffffc0080f6ed4 T profile_munmap
-ffffffc0080f6f10 T profile_event_register
-ffffffc0080f6f64 T profile_event_unregister
-ffffffc0080f6fb8 T profile_hits
-ffffffc0080f72ec T profile_tick
-ffffffc0080f7394 T create_prof_cpu_mask
-ffffffc0080f73d8 W setup_profiling_timer
-ffffffc0080f73ec t profile_prepare_cpu
-ffffffc0080f7528 t profile_dead_cpu
-ffffffc0080f7638 t profile_online_cpu
-ffffffc0080f7698 t prof_cpu_mask_proc_open
-ffffffc0080f76d4 t prof_cpu_mask_proc_write
-ffffffc0080f77a4 t prof_cpu_mask_proc_show
-ffffffc0080f77ec t read_profile
-ffffffc0080f7d3c t write_profile
-ffffffc0080f8054 t __profile_flip_buffers
-ffffffc0080f80a8 T stack_trace_print
-ffffffc0080f8120 T stack_trace_snprint
-ffffffc0080f81f8 T stack_trace_save
-ffffffc0080f8278 t stack_trace_consume_entry
-ffffffc0080f82dc T stack_trace_save_tsk
-ffffffc0080f8418 t stack_trace_consume_entry_nosched
-ffffffc0080f84b4 T stack_trace_save_regs
-ffffffc0080f8534 T filter_irq_stacks
-ffffffc0080f85b4 T __arm64_sys_gettimeofday
-ffffffc0080f8a0c T do_sys_settimeofday64
-ffffffc0080f8af0 T __arm64_sys_settimeofday
-ffffffc0080f9020 T __arm64_sys_adjtimex
-ffffffc0080f9354 T jiffies_to_msecs
-ffffffc0080f9368 T jiffies_to_usecs
-ffffffc0080f9380 T mktime64
-ffffffc0080f9420 T ns_to_kernel_old_timeval
-ffffffc0080f94c8 T ns_to_timespec64
-ffffffc0080f9564 T set_normalized_timespec64
-ffffffc0080f9608 T __msecs_to_jiffies
-ffffffc0080f9630 T __usecs_to_jiffies
-ffffffc0080f966c T timespec64_to_jiffies
-ffffffc0080f96c0 T jiffies_to_timespec64
-ffffffc0080f9708 T jiffies_to_clock_t
-ffffffc0080f973c T clock_t_to_jiffies
-ffffffc0080f978c T jiffies_64_to_clock_t
-ffffffc0080f97c0 T nsec_to_clock_t
-ffffffc0080f97e8 T jiffies64_to_nsecs
-ffffffc0080f9804 T jiffies64_to_msecs
-ffffffc0080f9818 T nsecs_to_jiffies64
-ffffffc0080f9840 T nsecs_to_jiffies
-ffffffc0080f9868 T timespec64_add_safe
-ffffffc0080f992c T get_timespec64
-ffffffc0080f9b00 T put_timespec64
-ffffffc0080f9ca8 T get_old_timespec32
-ffffffc0080f9cd0 t __get_old_timespec32.llvm.2059515144062001503
-ffffffc0080f9ea4 T put_old_timespec32
-ffffffc0080f9ecc t __put_old_timespec32.llvm.2059515144062001503
-ffffffc0080fa074 T get_itimerspec64
-ffffffc0080fa0c0 T put_itimerspec64
-ffffffc0080fa10c T get_old_itimerspec32
-ffffffc0080fa170 T put_old_itimerspec32
-ffffffc0080fa1d4 T __traceiter_timer_init
-ffffffc0080fa254 T __traceiter_timer_start
-ffffffc0080fa2ec T __traceiter_timer_expire_entry
-ffffffc0080fa37c T __traceiter_timer_expire_exit
-ffffffc0080fa3fc T __traceiter_timer_cancel
-ffffffc0080fa47c T __traceiter_hrtimer_init
-ffffffc0080fa514 T __traceiter_hrtimer_start
-ffffffc0080fa5a4 T __traceiter_hrtimer_expire_entry
-ffffffc0080fa634 T __traceiter_hrtimer_expire_exit
-ffffffc0080fa6b4 T __traceiter_hrtimer_cancel
-ffffffc0080fa734 T __traceiter_itimer_state
-ffffffc0080fa7cc T __traceiter_itimer_expire
-ffffffc0080fa864 T __traceiter_tick_stop
-ffffffc0080fa8f4 t trace_event_raw_event_timer_class
-ffffffc0080fa9ac t perf_trace_timer_class
-ffffffc0080faab8 t trace_event_raw_event_timer_start
-ffffffc0080fab9c t perf_trace_timer_start
-ffffffc0080facd0 t trace_event_raw_event_timer_expire_entry
-ffffffc0080fad9c t perf_trace_timer_expire_entry
-ffffffc0080faec4 t trace_event_raw_event_hrtimer_init
-ffffffc0080faf94 t perf_trace_hrtimer_init
-ffffffc0080fb0b4 t trace_event_raw_event_hrtimer_start
-ffffffc0080fb18c t perf_trace_hrtimer_start
-ffffffc0080fb2c0 t trace_event_raw_event_hrtimer_expire_entry
-ffffffc0080fb38c t perf_trace_hrtimer_expire_entry
-ffffffc0080fb4b4 t trace_event_raw_event_hrtimer_class
-ffffffc0080fb56c t perf_trace_hrtimer_class
-ffffffc0080fb678 t trace_event_raw_event_itimer_state
-ffffffc0080fb768 t perf_trace_itimer_state
-ffffffc0080fb8a8 t trace_event_raw_event_itimer_expire
-ffffffc0080fb98c t perf_trace_itimer_expire
-ffffffc0080fbac0 t trace_event_raw_event_tick_stop
-ffffffc0080fbb7c t perf_trace_tick_stop
-ffffffc0080fbc94 T timers_update_nohz
-ffffffc0080fbcd4 T __round_jiffies
-ffffffc0080fbd3c T __round_jiffies_relative
-ffffffc0080fbdb0 T round_jiffies
-ffffffc0080fbe2c T round_jiffies_relative
-ffffffc0080fbeb4 T __round_jiffies_up
-ffffffc0080fbf10 T __round_jiffies_up_relative
-ffffffc0080fbf78 T round_jiffies_up
-ffffffc0080fbfe8 T round_jiffies_up_relative
-ffffffc0080fc064 T init_timer_key
-ffffffc0080fc1c4 T mod_timer_pending
-ffffffc0080fc1f0 t __mod_timer.llvm.2351303816454466117
-ffffffc0080fc604 T mod_timer
-ffffffc0080fc634 T timer_reduce
-ffffffc0080fc664 T add_timer
-ffffffc0080fc6ac T add_timer_on
-ffffffc0080fc890 T del_timer
-ffffffc0080fc98c t detach_if_pending
-ffffffc0080fcb34 T try_to_del_timer_sync
-ffffffc0080fcc30 T del_timer_sync
-ffffffc0080fcc9c T get_next_timer_interrupt
-ffffffc0080fce08 t __next_timer_interrupt
-ffffffc0080fcf50 T timer_clear_idle
-ffffffc0080fcf78 T update_process_times
-ffffffc0080fd030 t process_timeout
-ffffffc0080fd068 T timers_prepare_cpu
-ffffffc0080fd0ec T timers_dead_cpu
-ffffffc0080fd404 t run_timer_softirq
-ffffffc0080fd464 T msleep
-ffffffc0080fd4b4 T msleep_interruptible
-ffffffc0080fd520 t trace_raw_output_timer_class
-ffffffc0080fd594 t trace_raw_output_timer_start
-ffffffc0080fd670 t trace_raw_output_timer_expire_entry
-ffffffc0080fd6e8 t trace_raw_output_hrtimer_init
-ffffffc0080fd7a0 t trace_raw_output_hrtimer_start
-ffffffc0080fd850 t trace_raw_output_hrtimer_expire_entry
-ffffffc0080fd8c8 t trace_raw_output_hrtimer_class
-ffffffc0080fd93c t trace_raw_output_itimer_state
-ffffffc0080fd9e4 t trace_raw_output_itimer_expire
-ffffffc0080fda5c t trace_raw_output_tick_stop
-ffffffc0080fdaec t timer_migration_handler
-ffffffc0080fdbbc t timer_update_keys
-ffffffc0080fdc50 t calc_wheel_index
-ffffffc0080fdd94 t enqueue_timer
-ffffffc0080fdf50 t __run_timers
-ffffffc0080fe2ac t call_timer_fn
-ffffffc0080fe508 t ktime_get_real
-ffffffc0080fe538 t ktime_get_real
-ffffffc0080fe568 t ktime_get_boottime
-ffffffc0080fe598 t ktime_get_boottime
-ffffffc0080fe5c8 t ktime_get_clocktai
-ffffffc0080fe5f8 T ktime_add_safe
-ffffffc0080fe620 T clock_was_set
-ffffffc0080fe8b4 t retrigger_next_event.llvm.12745106318145583229
-ffffffc0080fe978 T clock_was_set_delayed
-ffffffc0080fe9b8 T hrtimers_resume_local
-ffffffc0080fe9e4 T hrtimer_forward
-ffffffc0080fea98 T hrtimer_start_range_ns
-ffffffc0080fee20 T hrtimer_try_to_cancel
-ffffffc0080fef5c T hrtimer_active
-ffffffc0080fefec t remove_hrtimer
-ffffffc0080ff19c T hrtimer_cancel
-ffffffc0080ff1e8 T __hrtimer_get_remaining
-ffffffc0080ff2a8 T hrtimer_get_next_event
-ffffffc0080ff46c T hrtimer_next_event_without
-ffffffc0080ff638 T hrtimer_init
-ffffffc0080ff7bc T hrtimer_interrupt
-ffffffc0080ffb68 t __hrtimer_run_queues
-ffffffc0080fff14 t hrtimer_update_next_event
-ffffffc0081000b0 T hrtimer_run_queues
-ffffffc0081001f4 T hrtimer_sleeper_start_expires
-ffffffc00810022c T hrtimer_init_sleeper
-ffffffc0081003c0 T nanosleep_copyout
-ffffffc008100418 T hrtimer_nanosleep
-ffffffc00810052c T __arm64_sys_nanosleep
-ffffffc00810069c T hrtimers_prepare_cpu
-ffffffc008100760 T hrtimers_dead_cpu
-ffffffc008100a00 t hrtimer_update_softirq_timer
-ffffffc008100bac t hrtimer_run_softirq
-ffffffc008100c60 t clock_was_set_work
-ffffffc008100c8c t enqueue_hrtimer
-ffffffc008100d88 t hrtimer_wakeup
-ffffffc008100dd0 T ktime_get_mono_fast_ns
-ffffffc008100e90 T ktime_get_raw_fast_ns
-ffffffc008100f50 T ktime_get_boot_fast_ns
-ffffffc00810101c T ktime_get_tai_fast_ns
-ffffffc0081010e8 T ktime_get_real_fast_ns
-ffffffc0081011a8 T ktime_get_fast_timestamps
-ffffffc008101298 T pvclock_gtod_register_notifier
-ffffffc008101324 T pvclock_gtod_unregister_notifier
-ffffffc008101398 T ktime_get_real_ts64
-ffffffc0081014f4 T ktime_get
-ffffffc0081015d4 T ktime_get_resolution_ns
-ffffffc008101644 T ktime_get_with_offset
-ffffffc00810174c T ktime_get_coarse_with_offset
-ffffffc0081017e8 T ktime_mono_to_any
-ffffffc008101860 T ktime_get_raw
-ffffffc00810192c T ktime_get_ts64
-ffffffc008101a98 T ktime_get_seconds
-ffffffc008101ac4 T ktime_get_real_seconds
-ffffffc008101adc T ktime_get_snapshot
-ffffffc008101c10 T get_device_system_crosststamp
-ffffffc008101f94 T do_settimeofday64
-ffffffc008102300 t timespec64_sub
-ffffffc00810236c t tk_set_wall_to_mono
-ffffffc008102468 t timekeeping_update
-ffffffc008102654 T timekeeping_warp_clock
-ffffffc0081026d4 t timekeeping_inject_offset
-ffffffc008102a74 T timekeeping_notify
-ffffffc008102aec t change_clocksource
-ffffffc008102ce0 T ktime_get_raw_ts64
-ffffffc008102e28 T timekeeping_valid_for_hres
-ffffffc008102e88 T timekeeping_max_deferment
-ffffffc008102ee4 W read_persistent_clock64
-ffffffc008102ef4 t tk_setup_internals
-ffffffc008103060 T timekeeping_rtc_skipresume
-ffffffc008103080 T timekeeping_rtc_skipsuspend
-ffffffc008103098 T timekeeping_inject_sleeptime64
-ffffffc008103214 t __timekeeping_inject_sleeptime
-ffffffc008103434 T timekeeping_resume
-ffffffc0081035f4 T timekeeping_suspend
-ffffffc008103a18 T update_wall_time
-ffffffc008103a60 t timekeeping_advance.llvm.3066161404414456893
-ffffffc0081040e0 T getboottime64
-ffffffc00810412c T ktime_get_coarse_real_ts64
-ffffffc008104194 T ktime_get_coarse_ts64
-ffffffc008104220 T do_timer
-ffffffc00810425c T ktime_get_update_offsets_now
-ffffffc0081043b0 T random_get_entropy_fallback
-ffffffc008104424 T do_adjtimex
-ffffffc008104804 t dummy_clock_read
-ffffffc008104848 T ntp_clear
-ffffffc0081048fc T ntp_tick_length
-ffffffc008104914 T ntp_get_next_leap
-ffffffc008104978 T second_overflow
-ffffffc008104c04 T ntp_notify_cmos_timer
-ffffffc008104c64 T __do_adjtimex
-ffffffc00810526c t sync_hw_clock
-ffffffc00810546c t sync_timer_callback
-ffffffc0081054b0 T clocks_calc_mult_shift
-ffffffc00810551c T clocksource_mark_unstable
-ffffffc00810552c T clocksource_start_suspend_timing
-ffffffc0081055fc T clocksource_stop_suspend_timing
-ffffffc0081056fc T clocksource_suspend
-ffffffc008105774 T clocksource_resume
-ffffffc0081057ec T clocksource_touch_watchdog
-ffffffc0081057fc T clocks_calc_max_nsecs
-ffffffc00810583c T __clocksource_update_freq_scale
-ffffffc008105a54 T __clocksource_register_scale
-ffffffc008105bb4 T clocksource_change_rating
-ffffffc008105d14 T clocksource_unregister
-ffffffc008105d88 t clocksource_unbind
-ffffffc008105ec0 T sysfs_get_uname
-ffffffc008105f3c t __clocksource_select
-ffffffc0081060c8 t current_clocksource_show
-ffffffc00810613c t current_clocksource_store
-ffffffc0081061e8 t unbind_clocksource_store
-ffffffc008106304 t available_clocksource_show
-ffffffc0081063f0 T register_refined_jiffies
-ffffffc0081064bc t jiffies_read
-ffffffc0081064d4 T sysrq_timer_list_show
-ffffffc008106a80 t print_tickdevice
-ffffffc008106cb8 t SEQ_printf
-ffffffc008106d74 t timer_list_start
-ffffffc008106e48 t timer_list_stop
-ffffffc008106e58 t timer_list_next
-ffffffc008106eec t timer_list_show
-ffffffc008107460 T time64_to_tm
-ffffffc008107698 T timecounter_init
-ffffffc00810771c T timecounter_read
-ffffffc0081077b0 T timecounter_cyc2time
-ffffffc008107814 T __traceiter_alarmtimer_suspend
-ffffffc0081078a4 T __traceiter_alarmtimer_fired
-ffffffc008107934 T __traceiter_alarmtimer_start
-ffffffc0081079c4 T __traceiter_alarmtimer_cancel
-ffffffc008107a54 t trace_event_raw_event_alarmtimer_suspend
-ffffffc008107b14 t perf_trace_alarmtimer_suspend
-ffffffc008107c30 t trace_event_raw_event_alarm_class
-ffffffc008107cfc t perf_trace_alarm_class
-ffffffc008107e24 T alarmtimer_get_rtcdev
-ffffffc008107e7c T alarm_expires_remaining
-ffffffc008107f08 T alarm_init
-ffffffc008107f90 T alarm_start
-ffffffc008108168 T alarm_start_relative
-ffffffc00810820c T alarm_restart
-ffffffc0081082dc T alarm_try_to_cancel
-ffffffc00810849c T alarm_cancel
-ffffffc0081084e8 T alarm_forward
-ffffffc008108578 T alarm_forward_now
-ffffffc00810866c t alarm_clock_getres
-ffffffc0081086ec t alarm_clock_get_timespec
-ffffffc0081087c8 t alarm_clock_get_ktime
-ffffffc008108898 t alarm_timer_create
-ffffffc00810899c t alarm_timer_nsleep
-ffffffc008108bb8 t alarm_timer_rearm
-ffffffc008108cc0 t alarm_timer_forward
-ffffffc008108d50 t alarm_timer_remaining
-ffffffc008108d68 t alarm_timer_try_to_cancel
-ffffffc008108d98 t alarm_timer_arm
-ffffffc008108e5c t alarm_timer_wait_running
-ffffffc008108e70 t trace_raw_output_alarmtimer_suspend
-ffffffc008108f10 t trace_raw_output_alarm_class
-ffffffc008108fb8 t alarmtimer_fired
-ffffffc00810925c t alarm_handle_timer
-ffffffc0081093e4 t alarmtimer_nsleep_wakeup
-ffffffc008109428 t alarmtimer_do_nsleep
-ffffffc008109650 t get_boottime_timespec
-ffffffc008109694 t alarmtimer_rtc_add_device
-ffffffc0081097e4 t alarmtimer_suspend
-ffffffc008109af8 t alarmtimer_resume
-ffffffc008109b64 T posixtimer_rearm
-ffffffc008109c5c t __lock_timer
-ffffffc008109d54 T posix_timer_event
-ffffffc008109da4 T __arm64_sys_timer_create
-ffffffc008109f80 T common_timer_get
-ffffffc00810a0d4 T __arm64_sys_timer_gettime
-ffffffc00810a1c8 T __arm64_sys_timer_getoverrun
-ffffffc00810a260 T common_timer_set
-ffffffc00810a398 T __arm64_sys_timer_settime
-ffffffc00810a654 T common_timer_del
-ffffffc00810a6c4 T __arm64_sys_timer_delete
-ffffffc00810a89c T exit_itimers
-ffffffc00810aa64 T __arm64_sys_clock_settime
-ffffffc00810ab80 T __arm64_sys_clock_gettime
-ffffffc00810ac98 T do_clock_adjtime
-ffffffc00810ad4c T __arm64_sys_clock_adjtime
-ffffffc00810b114 T __arm64_sys_clock_getres
-ffffffc00810b230 T __arm64_sys_clock_nanosleep
-ffffffc00810b3a4 t do_timer_create
-ffffffc00810ba08 t k_itimer_rcu_free
-ffffffc00810ba40 t posix_get_hrtimer_res
-ffffffc00810ba64 t posix_clock_realtime_set
-ffffffc00810ba98 t posix_get_realtime_timespec
-ffffffc00810bacc t posix_get_realtime_ktime
-ffffffc00810bafc t posix_clock_realtime_adj
-ffffffc00810bb2c t common_timer_create
-ffffffc00810bb6c t common_nsleep
-ffffffc00810bbd0 t common_hrtimer_rearm
-ffffffc00810bc5c t common_hrtimer_forward
-ffffffc00810bc94 t common_hrtimer_remaining
-ffffffc00810bcac t common_hrtimer_try_to_cancel
-ffffffc00810bcdc t common_hrtimer_arm
-ffffffc00810bdc4 t common_timer_wait_running
-ffffffc00810bdd8 t posix_timer_fn
-ffffffc00810bee4 t posix_get_monotonic_timespec
-ffffffc00810bf18 t posix_get_monotonic_ktime
-ffffffc00810bf44 t common_nsleep_timens
-ffffffc00810bfa8 t posix_get_monotonic_raw
-ffffffc00810bfdc t posix_get_coarse_res
-ffffffc00810c028 t posix_get_realtime_coarse
-ffffffc00810c05c t posix_get_monotonic_coarse
-ffffffc00810c090 t posix_get_boottime_timespec
-ffffffc00810c0dc t posix_get_boottime_ktime
-ffffffc00810c10c t posix_get_tai_timespec
-ffffffc00810c158 t posix_get_tai_ktime
-ffffffc00810c188 T posix_cputimers_group_init
-ffffffc00810c1d0 T update_rlimit_cpu
-ffffffc00810c290 T set_process_cpu_timer
-ffffffc00810c348 T thread_group_sample_cputime
-ffffffc00810c39c T posix_cpu_timers_exit
-ffffffc00810c444 T posix_cpu_timers_exit_group
-ffffffc00810c4ec T clear_posix_cputimers_work
-ffffffc00810c510 t posix_cpu_timers_work
-ffffffc00810c950 T run_posix_cpu_timers
-ffffffc00810ca6c t cpu_clock_sample_group
-ffffffc00810ccac t posix_cpu_clock_getres.llvm.11643594789868319558
-ffffffc00810cd9c t posix_cpu_clock_set.llvm.11643594789868319558
-ffffffc00810ce70 t posix_cpu_clock_get.llvm.11643594789868319558
-ffffffc00810d068 t posix_cpu_timer_create.llvm.11643594789868319558
-ffffffc00810d1b8 t posix_cpu_nsleep.llvm.11643594789868319558
-ffffffc00810d274 t posix_cpu_timer_set.llvm.11643594789868319558
-ffffffc00810d5f8 t posix_cpu_timer_del.llvm.11643594789868319558
-ffffffc00810d754 t posix_cpu_timer_get.llvm.11643594789868319558
-ffffffc00810d8f4 t posix_cpu_timer_rearm.llvm.11643594789868319558
-ffffffc00810dac4 t process_cpu_clock_getres
-ffffffc00810db24 t process_cpu_clock_get
-ffffffc00810db54 t process_cpu_timer_create
-ffffffc00810db88 t process_cpu_nsleep
-ffffffc00810dbf4 t thread_cpu_clock_getres
-ffffffc00810dc50 t thread_cpu_clock_get
-ffffffc00810dcc8 t thread_cpu_timer_create
-ffffffc00810dcf8 t cpu_timer_fire
-ffffffc00810dd9c t collect_posix_cputimers
-ffffffc00810df74 t check_cpu_itimer
-ffffffc00810e0b8 t do_cpu_nanosleep
-ffffffc00810e2bc t posix_cpu_nsleep_restart
-ffffffc00810e33c T posix_clock_register
-ffffffc00810e3f4 T posix_clock_unregister
-ffffffc00810e45c t pc_clock_getres.llvm.9853857229493515433
-ffffffc00810e544 t pc_clock_settime.llvm.9853857229493515433
-ffffffc00810e63c t pc_clock_gettime.llvm.9853857229493515433
-ffffffc00810e724 t pc_clock_adjtime.llvm.9853857229493515433
-ffffffc00810e81c t posix_clock_read
-ffffffc00810e8e0 t posix_clock_poll
-ffffffc00810e994 t posix_clock_ioctl
-ffffffc00810ea48 t posix_clock_open
-ffffffc00810eb00 t posix_clock_release
-ffffffc00810eb90 T __arm64_sys_getitimer
-ffffffc00810ed30 T it_real_fn
-ffffffc00810ee10 T clear_itimer
-ffffffc00810eeac t do_setitimer
-ffffffc00810f0a0 T __arm64_sys_setitimer
-ffffffc00810f320 t put_itimerval
-ffffffc00810f4f8 t set_cpu_itimer
-ffffffc00810f72c T clockevent_delta2ns
-ffffffc00810f794 T clockevents_switch_state
-ffffffc00810f8dc T clockevents_shutdown
-ffffffc00810f960 T clockevents_tick_resume
-ffffffc00810f9b4 T clockevents_program_event
-ffffffc00810fbdc T clockevents_unbind_device
-ffffffc00810fc88 T clockevents_register_device
-ffffffc00810fe48 T clockevents_config_and_register
-ffffffc00810fe88 t clockevents_config
-ffffffc00810ffb0 T __clockevents_update_freq
-ffffffc0081100e8 T clockevents_update_freq
-ffffffc008110180 T clockevents_handle_noop
-ffffffc008110190 T clockevents_exchange_device
-ffffffc0081102b8 T clockevents_suspend
-ffffffc008110338 T clockevents_resume
-ffffffc0081103b8 T tick_offline_cpu
-ffffffc00811040c T tick_cleanup_dead_cpu
-ffffffc008110564 t __clockevents_unbind
-ffffffc0081106a0 t current_device_show
-ffffffc00811076c t unbind_device_store
-ffffffc008110918 T tick_get_device
-ffffffc008110950 T tick_is_oneshot_available
-ffffffc0081109b4 T tick_handle_periodic
-ffffffc008110a80 t tick_periodic
-ffffffc008110b74 T tick_setup_periodic
-ffffffc008110c7c T tick_install_replacement
-ffffffc008110d1c t tick_setup_device
-ffffffc008110e28 T tick_check_replacement
-ffffffc008110f58 T tick_check_new_device
-ffffffc008111040 T tick_broadcast_oneshot_control
-ffffffc008111090 T tick_handover_do_timer
-ffffffc0081110fc T tick_shutdown
-ffffffc00811117c T tick_suspend_local
-ffffffc0081111bc T tick_resume_local
-ffffffc008111234 T tick_suspend
-ffffffc008111278 T tick_resume
-ffffffc0081112f4 T tick_freeze
-ffffffc00811142c T tick_unfreeze
-ffffffc0081115a4 T tick_get_broadcast_device
-ffffffc0081115bc T tick_get_broadcast_mask
-ffffffc0081115d4 T tick_get_wakeup_device
-ffffffc00811160c T tick_install_broadcast_device
-ffffffc0081117ec T tick_broadcast_oneshot_active
-ffffffc00811180c T tick_broadcast_switch_to_oneshot
-ffffffc00811187c T tick_is_broadcast_device
-ffffffc0081118a0 T tick_broadcast_update_freq
-ffffffc008111924 T tick_device_uses_broadcast
-ffffffc008111be4 t tick_broadcast_setup_oneshot
-ffffffc008111e38 T tick_receive_broadcast
-ffffffc008111eb0 T tick_broadcast_control
-ffffffc00811215c T tick_set_periodic_handler
-ffffffc008112188 t tick_handle_periodic_broadcast.llvm.11202321255406620967
-ffffffc008112288 T tick_broadcast_offline
-ffffffc00811249c T tick_suspend_broadcast
-ffffffc008112500 T tick_resume_check_broadcast
-ffffffc00811255c T tick_resume_broadcast
-ffffffc008112638 T tick_get_broadcast_oneshot_mask
-ffffffc008112650 T tick_check_broadcast_expired
-ffffffc008112690 T tick_check_oneshot_broadcast_this_cpu
-ffffffc008112714 T __tick_broadcast_oneshot_control
-ffffffc008112b0c T hotplug_cpu__broadcast_tick_pull
-ffffffc008112b9c T tick_broadcast_oneshot_available
-ffffffc008112bcc t tick_oneshot_wakeup_handler
-ffffffc008112c2c t tick_do_broadcast
-ffffffc008112d5c t tick_broadcast_set_event
-ffffffc008112e14 t tick_handle_oneshot_broadcast
-ffffffc0081130c8 T tick_setup_hrtimer_broadcast
-ffffffc008113128 t bc_handler.llvm.9703126556494539923
-ffffffc00811317c t bc_set_next
-ffffffc0081131f4 t bc_shutdown
-ffffffc00811322c T sched_clock_read_begin
-ffffffc008113268 T sched_clock_read_retry
-ffffffc008113294 T sched_clock
-ffffffc00811333c T sched_clock_register
-ffffffc0081135ec t jiffy_sched_clock_read
-ffffffc008113610 t sched_clock_poll
-ffffffc008113720 T sched_clock_suspend
-ffffffc00811380c t suspended_sched_clock_read
-ffffffc00811383c T sched_clock_resume
-ffffffc0081138b8 T tick_program_event
-ffffffc008113960 T tick_resume_oneshot
-ffffffc0081139c4 T tick_setup_oneshot
-ffffffc008113a18 T tick_switch_to_oneshot
-ffffffc008113af0 T tick_oneshot_mode_active
-ffffffc008113b58 T tick_init_highres
-ffffffc008113b8c T tick_get_tick_sched
-ffffffc008113bc4 T tick_nohz_tick_stopped
-ffffffc008113bf0 T tick_nohz_tick_stopped_cpu
-ffffffc008113c30 T get_cpu_idle_time_us
-ffffffc008113d5c T get_cpu_iowait_time_us
-ffffffc008113e88 T tick_nohz_idle_stop_tick
-ffffffc0081141c0 T tick_nohz_idle_retain_tick
-ffffffc008114204 T tick_nohz_idle_enter
-ffffffc0081142a0 T tick_nohz_irq_exit
-ffffffc008114300 T tick_nohz_idle_got_tick
-ffffffc008114338 T tick_nohz_get_next_hrtimer
-ffffffc008114360 T tick_nohz_get_sleep_length
-ffffffc008114490 t tick_nohz_next_event
-ffffffc0081145ec T tick_nohz_get_idle_calls_cpu
-ffffffc008114628 T tick_nohz_get_idle_calls
-ffffffc008114650 T tick_nohz_idle_restart_tick
-ffffffc0081146d0 t tick_nohz_restart_sched_tick
-ffffffc008114780 T tick_nohz_idle_exit
-ffffffc0081148cc T tick_irq_enter
-ffffffc0081149dc T tick_setup_sched_timer
-ffffffc008114b8c t tick_sched_timer
-ffffffc008114d0c T tick_cancel_sched_timer
-ffffffc008114da8 T tick_clock_notify
-ffffffc008114e74 T tick_oneshot_notify
-ffffffc008114ecc T tick_check_oneshot_change
-ffffffc0081150c4 t tick_do_update_jiffies64
-ffffffc0081151f4 t tick_nohz_handler
-ffffffc008115388 T update_vsyscall
-ffffffc0081155e8 T update_vsyscall_tz
-ffffffc008115610 T vdso_update_begin
-ffffffc008115670 T vdso_update_end
-ffffffc0081156cc T tk_debug_account_sleep_time
-ffffffc008115718 t tk_debug_sleep_time_open
-ffffffc008115758 t tk_debug_sleep_time_show
-ffffffc008115810 T futex_hash
-ffffffc008115900 T futex_setup_timer
-ffffffc00811597c T get_futex_key
-ffffffc008115dec t lock_page
-ffffffc008115e80 t lock_page
-ffffffc008115f14 t lock_page
-ffffffc008115fa8 t lock_page
-ffffffc00811603c t put_page
-ffffffc0081160c0 t put_page
-ffffffc008116144 t put_page
-ffffffc0081161c8 t put_page
-ffffffc00811624c t put_page
-ffffffc0081162d0 t put_page
-ffffffc008116354 t put_page
-ffffffc0081163d8 t put_page
-ffffffc00811645c t put_page
-ffffffc0081164e0 t put_page
-ffffffc008116564 t put_page
-ffffffc0081165ec T fault_in_user_writeable
-ffffffc0081166b0 T futex_top_waiter
-ffffffc008116734 T futex_cmpxchg_value_locked
-ffffffc0081168f4 T futex_get_value_locked
-ffffffc008116a70 T wait_for_owner_exiting
-ffffffc008116b38 T __futex_unqueue
-ffffffc008116bd4 T futex_q_lock
-ffffffc008116d28 T futex_q_unlock
-ffffffc008116d90 T __futex_queue
-ffffffc008116e00 T futex_unqueue
-ffffffc008116f00 T futex_unqueue_pi
-ffffffc008116fb8 T futex_exit_recursive
-ffffffc008117008 T futex_exec_release
-ffffffc0081170b0 T futex_exit_release
-ffffffc008117158 t exit_robust_list
-ffffffc008117424 t exit_pi_state_list
-ffffffc00811771c t fetch_robust_entry
-ffffffc008117880 t handle_futex_death
-ffffffc008117afc T __arm64_sys_set_robust_list
-ffffffc008117b34 T __arm64_sys_get_robust_list
-ffffffc008117e3c T do_futex
-ffffffc008118014 T __arm64_sys_futex
-ffffffc008118164 T __arm64_sys_futex_waitv
-ffffffc008118540 T refill_pi_state_cache
-ffffffc0081185cc T get_pi_state
-ffffffc008118694 T put_pi_state
-ffffffc0081187d0 t pi_state_update_owner
-ffffffc0081188c8 T futex_lock_pi_atomic
-ffffffc008118dd0 T fixup_pi_owner
-ffffffc008118e4c t fixup_pi_state_owner
-ffffffc0081190b8 T futex_lock_pi
-ffffffc0081194a0 T futex_unlock_pi
-ffffffc00811992c t handle_exit_race
-ffffffc0081199d0 T futex_requeue
-ffffffc00811a3cc t requeue_futex
-ffffffc00811a4ac t requeue_pi_wake_futex
-ffffffc00811a59c t futex_requeue_pi_complete
-ffffffc00811a65c T futex_wait_requeue_pi
-ffffffc00811aad4 T futex_wake_mark
-ffffffc00811abac T futex_wake
-ffffffc00811ad40 T futex_wake_op
-ffffffc00811b89c T futex_wait_queue
-ffffffc00811b950 T futex_wait_multiple
-ffffffc00811bd60 T futex_wait_setup
-ffffffc00811bfb4 T futex_wait
-ffffffc00811c210 t futex_wait_restart
-ffffffc00811c2a4 T smpcfd_prepare_cpu
-ffffffc00811c354 T smpcfd_dead_cpu
-ffffffc00811c3a8 T smpcfd_dying_cpu
-ffffffc00811c3dc t __flush_smp_call_function_queue.llvm.14916546302915792201
-ffffffc00811c66c T __smp_call_single_queue
-ffffffc00811c6d8 T generic_smp_call_function_single_interrupt
-ffffffc00811c708 T flush_smp_call_function_queue
-ffffffc00811c7bc T smp_call_function_single
-ffffffc00811c9c0 t generic_exec_single
-ffffffc00811cb18 T smp_call_function_single_async
-ffffffc00811cbbc T smp_call_function_any
-ffffffc00811cd08 T smp_call_function_many
-ffffffc00811cd38 t smp_call_function_many_cond.llvm.14916546302915792201
-ffffffc00811d18c T smp_call_function
-ffffffc00811d220 W arch_disable_smp_support
-ffffffc00811d230 T on_each_cpu_cond_mask
-ffffffc00811d2bc T kick_all_cpus_sync
-ffffffc00811d350 t do_nothing
-ffffffc00811d360 T wake_up_all_idle_cpus
-ffffffc00811d460 T smp_call_on_cpu
-ffffffc00811d59c t smp_call_on_cpu_callback
-ffffffc00811d600 T kallsyms_lookup_name
-ffffffc00811d804 T kallsyms_on_each_symbol
-ffffffc00811d9f4 T kallsyms_lookup_size_offset
-ffffffc00811da64 t get_symbol_pos
-ffffffc00811dba0 T kallsyms_lookup
-ffffffc00811dbd0 t kallsyms_lookup_buildid.llvm.7650453838458826956
-ffffffc00811ddd4 T lookup_symbol_name
-ffffffc00811e048 T lookup_symbol_attrs
-ffffffc00811e230 T sprint_symbol
-ffffffc00811e260 t __sprint_symbol.llvm.7650453838458826956
-ffffffc00811e390 T sprint_symbol_build_id
-ffffffc00811e3c4 T sprint_symbol_no_offset
-ffffffc00811e3f8 T sprint_backtrace
-ffffffc00811e42c T sprint_backtrace_build_id
-ffffffc00811e460 W arch_get_kallsym
-ffffffc00811e474 T kallsyms_show_value
-ffffffc00811e4e4 t kallsyms_open
-ffffffc00811e5b0 t s_start
-ffffffc00811e600 t s_start
-ffffffc00811e92c t s_start
-ffffffc00811e9bc t s_start
-ffffffc00811ea18 t s_stop
-ffffffc00811ea28 t s_stop
-ffffffc00811eab0 t s_stop
-ffffffc00811eaf0 t s_next
-ffffffc00811eb40 t s_next
-ffffffc00811ece0 t s_next
-ffffffc00811ed24 t s_next
-ffffffc00811ed5c t s_show
-ffffffc00811ee14 t s_show
-ffffffc00811ef04 t s_show
-ffffffc00811f104 t update_iter
-ffffffc00811f3dc T append_elf_note
-ffffffc00811f488 T final_note
-ffffffc00811f4a0 T crash_update_vmcoreinfo_safecopy
-ffffffc00811f4f8 T crash_save_vmcoreinfo
-ffffffc00811f5c4 T vmcoreinfo_append_str
-ffffffc00811f6c4 W paddr_vmcoreinfo_note
-ffffffc00811f70c T kexec_should_crash
-ffffffc00811f798 T kexec_crash_loaded
-ffffffc00811f7b8 T sanity_check_segment_list
-ffffffc00811f97c T do_kimage_alloc_init
-ffffffc00811f9fc T kimage_is_destination_range
-ffffffc00811fa68 T kimage_free_page_list
-ffffffc00811fb50 T kimage_alloc_control_pages
-ffffffc00811ff08 T kimage_crash_copy_vmcoreinfo
-ffffffc00811ffdc T kimage_terminate
-ffffffc008120008 T kimage_free
-ffffffc008120420 T kimage_load_segment
-ffffffc008120ad8 T __crash_kexec
-ffffffc008120c5c T crash_kexec
-ffffffc008120e5c T crash_get_memory_size
-ffffffc008120ef0 T crash_shrink_memory
-ffffffc00812110c T crash_save_cpu
-ffffffc008121204 T kernel_kexec
-ffffffc008121320 t kimage_alloc_page
-ffffffc0081215f8 T kexec_image_probe_default
-ffffffc008121648 T kexec_image_load_default
-ffffffc0081216bc T kexec_image_post_load_cleanup_default
-ffffffc00812171c T kimage_file_post_load_cleanup
-ffffffc0081217a0 T __arm64_sys_kexec_file_load
-ffffffc008121c80 T kexec_locate_mem_hole
-ffffffc008121df8 t locate_mem_hole_callback
-ffffffc008121f6c T kexec_add_buffer
-ffffffc008122050 T crash_exclude_mem_range
-ffffffc0081221cc T crash_prepare_elf64_headers
-ffffffc0081226bc t ikconfig_read_current
-ffffffc00812270c t ikheaders_read
-ffffffc00812275c T print_stop_info
-ffffffc0081227dc T stop_one_cpu
-ffffffc0081228b0 t cpu_stop_queue_work
-ffffffc008122a58 W stop_machine_yield
-ffffffc008122a6c T stop_two_cpus
-ffffffc008122d84 t multi_cpu_stop
-ffffffc008122f4c T stop_one_cpu_nowait
-ffffffc008122fa0 T stop_machine_park
-ffffffc008122ff8 T stop_machine_unpark
-ffffffc008123054 T stop_machine_cpuslocked
-ffffffc0081231f4 T stop_machine
-ffffffc008123258 T stop_machine_from_inactive_cpu
-ffffffc0081233ec t queue_stop_cpus_work
-ffffffc00812354c t cpu_stop_should_run
-ffffffc0081235d0 t cpu_stopper_thread
-ffffffc0081237a4 t cpu_stop_create
-ffffffc0081237f4 t cpu_stop_park
-ffffffc008123848 T auditd_test_task
-ffffffc0081238b8 T audit_ctl_lock
-ffffffc008123900 T audit_ctl_unlock
-ffffffc008123938 T audit_panic
-ffffffc0081239c0 T audit_log_lost
-ffffffc008123b30 T audit_send_list_thread
-ffffffc008123c10 T audit_make_reply
-ffffffc008123d14 T audit_serial
-ffffffc008123d68 T audit_log_start
-ffffffc008124178 T audit_log_format
-ffffffc00812420c t audit_log_vformat
-ffffffc008124428 T audit_log_n_hex
-ffffffc008124590 T audit_log_n_string
-ffffffc0081246b4 T audit_string_contains_control
-ffffffc008124734 T audit_log_n_untrustedstring
-ffffffc0081247bc T audit_log_untrustedstring
-ffffffc008124870 T audit_log_d_path
-ffffffc0081249cc T audit_log_session_info
-ffffffc008124a0c T audit_log_key
-ffffffc008124ae4 T audit_log_task_context
-ffffffc008124bfc T audit_log_d_path_exe
-ffffffc008124c74 T audit_get_tty
-ffffffc008124d30 T audit_put_tty
-ffffffc008124d5c T audit_log_task_info
-ffffffc008124fe8 T audit_log_path_denied
-ffffffc008125080 T audit_log_end
-ffffffc008125194 T audit_set_loginuid
-ffffffc00812541c T audit_signal_info
-ffffffc0081254f8 T audit_log
-ffffffc0081255ac t kauditd_thread
-ffffffc00812595c t audit_receive
-ffffffc008126e8c t audit_multicast_bind
-ffffffc008126ee8 t audit_multicast_unbind
-ffffffc008126f20 t audit_send_reply
-ffffffc008127084 t audit_log_config_change
-ffffffc008127154 t auditd_reset
-ffffffc00812720c t audit_send_reply_thread
-ffffffc0081272c8 t auditd_conn_free
-ffffffc00812730c t kauditd_hold_skb
-ffffffc008127410 t audit_log_multicast
-ffffffc008127694 t kauditd_send_queue
-ffffffc0081278dc t kauditd_send_multicast_skb
-ffffffc008127984 t kauditd_retry_skb
-ffffffc008127a40 T audit_free_rule_rcu
-ffffffc008127b14 T audit_unpack_string
-ffffffc008127bd4 T audit_match_class
-ffffffc008127c38 T audit_dupe_rule
-ffffffc008127ef8 T audit_del_rule
-ffffffc008128188 T audit_rule_change
-ffffffc0081286bc t audit_data_to_entry
-ffffffc008128fb0 t audit_log_rule_change
-ffffffc008129068 T audit_list_rules_send
-ffffffc0081293f0 T audit_comparator
-ffffffc0081294bc T audit_uid_comparator
-ffffffc00812956c T audit_gid_comparator
-ffffffc00812961c T parent_len
-ffffffc0081296a4 T audit_compare_dname_path
-ffffffc008129780 T audit_filter
-ffffffc008129c40 T audit_update_lsm_rules
-ffffffc008129e58 t audit_compare_rule
-ffffffc00812a038 T audit_filter_inodes
-ffffffc00812a160 T audit_alloc
-ffffffc00812a268 t audit_filter_task
-ffffffc00812a34c t audit_alloc_context
-ffffffc00812a3cc T __audit_free
-ffffffc00812a4f0 t audit_filter_syscall
-ffffffc00812a5e4 t audit_log_exit
-ffffffc00812bb5c t audit_filter_uring
-ffffffc00812bc50 t audit_log_uring
-ffffffc00812bd94 T __audit_uring_entry
-ffffffc00812be18 T __audit_uring_exit
-ffffffc00812bf38 t audit_reset_context
-ffffffc00812c188 T __audit_syscall_entry
-ffffffc00812c2b0 T __audit_syscall_exit
-ffffffc00812c390 T __audit_reusename
-ffffffc00812c3f0 T __audit_getname
-ffffffc00812c45c t audit_alloc_name
-ffffffc00812c58c T __audit_inode
-ffffffc00812c9b4 T __audit_file
-ffffffc00812c9ec T __audit_inode_child
-ffffffc00812ce50 T auditsc_get_stamp
-ffffffc00812ceec T __audit_mq_open
-ffffffc00812cf50 T __audit_mq_sendrecv
-ffffffc00812cf94 T __audit_mq_notify
-ffffffc00812cfcc T __audit_mq_getsetattr
-ffffffc00812d020 T __audit_ipc_obj
-ffffffc00812d084 T __audit_ipc_set_perm
-ffffffc00812d0b4 T __audit_bprm
-ffffffc00812d0dc T __audit_socketcall
-ffffffc00812d144 T __audit_fd_pair
-ffffffc00812d164 T __audit_sockaddr
-ffffffc00812d1f4 T __audit_ptrace
-ffffffc00812d288 T audit_signal_info_syscall
-ffffffc00812d44c T __audit_log_bprm_fcaps
-ffffffc00812d57c T __audit_log_capset
-ffffffc00812d5c8 T __audit_mmap_fd
-ffffffc00812d5f0 T __audit_openat2_how
-ffffffc00812d628 T __audit_log_kern_module
-ffffffc00812d684 T __audit_fanotify
-ffffffc00812d6cc T __audit_tk_injoffset
-ffffffc00812d6fc T __audit_ntp_log
-ffffffc00812d7ac T __audit_log_nfcfg
-ffffffc00812d8e4 T audit_core_dumps
-ffffffc00812d9fc T audit_seccomp
-ffffffc00812db2c T audit_seccomp_actions_logged
-ffffffc00812dbb8 T audit_killed_trees
-ffffffc00812dbe8 t audit_filter_rules
-ffffffc00812eb0c t audit_log_pid_context
-ffffffc00812ec50 t unroll_tree_refs
-ffffffc00812ed44 t grow_tree_refs
-ffffffc00812edc4 T audit_get_watch
-ffffffc00812ee38 T audit_put_watch
-ffffffc00812ef00 T audit_watch_path
-ffffffc00812ef14 T audit_watch_compare
-ffffffc00812ef4c T audit_to_watch
-ffffffc00812f008 t audit_init_watch
-ffffffc00812f080 T audit_add_watch
-ffffffc00812f5a0 T audit_remove_watch_rule
-ffffffc00812f660 t audit_remove_watch
-ffffffc00812f768 T audit_dupe_exe
-ffffffc00812f7fc T audit_exe_compare
-ffffffc00812f864 t audit_watch_handle_event
-ffffffc00812fb00 t audit_watch_free_mark
-ffffffc00812fb44 t audit_update_watch
-ffffffc00812ff84 T audit_mark_path
-ffffffc00812ff98 T audit_mark_compare
-ffffffc00812ffd0 T audit_alloc_mark
-ffffffc008130150 T audit_remove_mark
-ffffffc00813019c T audit_remove_mark_rule
-ffffffc0081301ec t audit_mark_handle_event
-ffffffc008130328 t audit_fsnotify_free_mark
-ffffffc00813036c T audit_tree_path
-ffffffc008130380 T audit_put_chunk
-ffffffc0081304a4 T audit_tree_lookup
-ffffffc00813053c T audit_tree_match
-ffffffc0081305a8 T audit_remove_tree_rule
-ffffffc0081306fc T audit_trim_trees
-ffffffc0081309f0 t compare_root
-ffffffc008130a10 t trim_marked
-ffffffc008130bec T audit_make_tree
-ffffffc008130c88 t alloc_tree
-ffffffc008130d2c T audit_put_tree
-ffffffc008130db8 T audit_add_tree_rule
-ffffffc008131240 t audit_launch_prune
-ffffffc0081312e0 t tag_mount
-ffffffc008131a44 T audit_tag_tree
-ffffffc008132050 T audit_kill_trees
-ffffffc0081321b0 t kill_rules
-ffffffc00813234c t prune_tree_chunks
-ffffffc0081327c4 t replace_chunk
-ffffffc0081329a4 t __put_chunk
-ffffffc0081329d4 t prune_tree_thread
-ffffffc008132b2c t audit_tree_handle_event
-ffffffc008132b40 t audit_tree_freeing_mark
-ffffffc008132e5c t audit_tree_destroy_watch
-ffffffc008132e94 T reset_hung_task_detector
-ffffffc008132eb0 t hungtask_pm_notify
-ffffffc008132ee4 t watchdog
-ffffffc008133470 t hung_task_panic
-ffffffc008133490 t proc_dohung_task_timeout_secs
-ffffffc0081334f4 W watchdog_nmi_enable
-ffffffc008133508 W watchdog_nmi_disable
-ffffffc008133518 W watchdog_nmi_stop
-ffffffc008133528 W watchdog_nmi_start
-ffffffc008133538 T touch_softlockup_watchdog_sched
-ffffffc008133560 T touch_softlockup_watchdog
-ffffffc0081335b8 T touch_all_softlockup_watchdogs
-ffffffc008133660 T touch_softlockup_watchdog_sync
-ffffffc0081336a0 T is_hardlockup
-ffffffc0081336e4 T lockup_detector_online_cpu
-ffffffc008133730 t watchdog_enable
-ffffffc00813384c T lockup_detector_offline_cpu
-ffffffc0081338f4 T lockup_detector_reconfigure
-ffffffc00813393c t __lockup_detector_reconfigure
-ffffffc008133afc T lockup_detector_cleanup
-ffffffc008133b44 T lockup_detector_soft_poweroff
-ffffffc008133b5c T proc_watchdog
-ffffffc008133b9c t proc_watchdog_common
-ffffffc008133cb8 T proc_nmi_watchdog
-ffffffc008133d18 T proc_soft_watchdog
-ffffffc008133d5c T proc_watchdog_thresh
-ffffffc008133e3c T proc_watchdog_cpumask
-ffffffc008133ef4 t watchdog_timer_fn
-ffffffc008134190 t softlockup_fn
-ffffffc008134208 t test_and_set_bit_lock
-ffffffc008134274 t softlockup_stop_fn
-ffffffc0081342ec t softlockup_start_fn
-ffffffc008134330 W arch_seccomp_spec_mitigate
-ffffffc008134340 T seccomp_filter_release
-ffffffc008134384 t __seccomp_filter_release
-ffffffc0081344c4 T get_seccomp_filter
-ffffffc00813459c T __secure_computing
-ffffffc008134654 t __seccomp_filter
-ffffffc008134e28 T prctl_get_seccomp
-ffffffc008134e40 T __arm64_sys_seccomp
-ffffffc008134e7c T prctl_set_seccomp
-ffffffc008134ed4 t do_seccomp
-ffffffc0081356dc t seccomp_log
-ffffffc008135718 t seccomp_assign_mode
-ffffffc00813579c t init_listener
-ffffffc0081358a4 t seccomp_attach_filter
-ffffffc008135df0 t seccomp_notify_detach
-ffffffc008135ea0 t seccomp_check_filter
-ffffffc008135f44 t seccomp_notify_poll
-ffffffc00813603c t seccomp_notify_ioctl
-ffffffc008136ac4 t seccomp_notify_release
-ffffffc008136be8 t seccomp_actions_logged_handler
-ffffffc00813710c T uts_proc_notify
-ffffffc00813716c t proc_do_uts_string
-ffffffc008137330 T tracepoint_probe_register_prio_may_exist
-ffffffc0081373e8 t tracepoint_add_func
-ffffffc0081377c4 T tracepoint_probe_register_prio
-ffffffc008137880 T tracepoint_probe_register
-ffffffc008137930 T tracepoint_probe_unregister
-ffffffc008137d64 T for_each_kernel_tracepoint
-ffffffc008137e04 T syscall_regfunc
-ffffffc008137ef8 T syscall_unregfunc
-ffffffc008137fdc t rcu_free_old_probes
-ffffffc008138024 t srcu_free_old_probes
-ffffffc008138050 t tp_stub_func
-ffffffc008138060 T trace_clock_local
-ffffffc0081380e4 T trace_clock
-ffffffc008138110 T trace_clock_jiffies
-ffffffc00813815c T trace_clock_global
-ffffffc0081382ac T trace_clock_counter
-ffffffc008138300 T ring_buffer_print_entry_header
-ffffffc0081383ec T ring_buffer_event_length
-ffffffc008138474 T ring_buffer_event_data
-ffffffc0081384c8 T ring_buffer_print_page_header
-ffffffc008138580 T ring_buffer_event_time_stamp
-ffffffc008138680 T ring_buffer_nr_pages
-ffffffc00813869c T ring_buffer_nr_dirty_pages
-ffffffc00813872c T ring_buffer_wake_waiters
-ffffffc00813883c t rb_wake_up_waiters
-ffffffc0081388ac T ring_buffer_wait
-ffffffc008138b6c T ring_buffer_empty
-ffffffc008138d28 T ring_buffer_empty_cpu
-ffffffc008138eb4 T ring_buffer_poll_wait
-ffffffc008139090 T ring_buffer_time_stamp
-ffffffc008139130 T ring_buffer_normalize_time_stamp
-ffffffc008139140 T __ring_buffer_alloc
-ffffffc008139388 t rb_allocate_cpu_buffer
-ffffffc008139604 t rb_free_cpu_buffer
-ffffffc00813970c T ring_buffer_alloc_ext
-ffffffc0081397a8 T ring_buffer_free
-ffffffc00813984c T ring_buffer_set_clock
-ffffffc008139860 T ring_buffer_set_time_stamp_abs
-ffffffc008139874 T ring_buffer_time_stamp_abs
-ffffffc008139888 T ring_buffer_resize
-ffffffc008139d0c t __rb_allocate_pages
-ffffffc008139ec0 t rb_update_pages
-ffffffc00813a2a8 t rb_check_pages
-ffffffc00813a444 T ring_buffer_change_overwrite
-ffffffc00813a4b0 T ring_buffer_nest_start
-ffffffc00813a500 T ring_buffer_nest_end
-ffffffc00813a580 T ring_buffer_unlock_commit
-ffffffc00813a740 t rb_commit
-ffffffc00813aa58 T ring_buffer_lock_reserve
-ffffffc00813b47c T ring_buffer_discard_commit
-ffffffc00813bb74 T ring_buffer_write
-ffffffc00813c730 T ring_buffer_record_disable
-ffffffc00813c774 T ring_buffer_record_enable
-ffffffc00813c7c4 T ring_buffer_record_off
-ffffffc00813c834 T ring_buffer_record_on
-ffffffc00813c8ac T ring_buffer_record_is_on
-ffffffc00813c8d0 T ring_buffer_record_is_set_on
-ffffffc00813c8f4 T ring_buffer_record_disable_cpu
-ffffffc00813c95c T ring_buffer_record_enable_cpu
-ffffffc00813c9c8 T ring_buffer_oldest_event_ts
-ffffffc00813ca78 t rb_set_head_page
-ffffffc00813cc00 T ring_buffer_bytes_cpu
-ffffffc00813cc54 T ring_buffer_entries_cpu
-ffffffc00813ccb8 T ring_buffer_overrun_cpu
-ffffffc00813cd04 T ring_buffer_commit_overrun_cpu
-ffffffc00813cd50 T ring_buffer_dropped_events_cpu
-ffffffc00813cd9c T ring_buffer_read_events_cpu
-ffffffc00813cde0 T ring_buffer_entries
-ffffffc00813ce88 T ring_buffer_overruns
-ffffffc00813cf18 T ring_buffer_iter_reset
-ffffffc00813cfbc T ring_buffer_iter_empty
-ffffffc00813d094 T ring_buffer_peek
-ffffffc00813d218 t rb_buffer_peek
-ffffffc00813d430 t rb_advance_reader
-ffffffc00813d5a4 T ring_buffer_iter_dropped
-ffffffc00813d5c8 T ring_buffer_iter_peek
-ffffffc00813d914 T ring_buffer_consume
-ffffffc00813dadc T ring_buffer_poke
-ffffffc00813dc68 t ring_buffer_update_view
-ffffffc00813df3c T ring_buffer_read_prepare
-ffffffc00813e078 T ring_buffer_read_prepare_sync
-ffffffc00813e0a4 T ring_buffer_read_start
-ffffffc00813e1b8 T ring_buffer_read_finish
-ffffffc00813e260 T ring_buffer_iter_advance
-ffffffc00813e2c0 t rb_advance_iter
-ffffffc00813e404 T ring_buffer_size
-ffffffc00813e450 T ring_buffer_reset_cpu
-ffffffc00813e588 t reset_disabled_cpu_buffer
-ffffffc00813e79c T ring_buffer_reset_online_cpus
-ffffffc00813e960 T ring_buffer_reset
-ffffffc00813eb04 T ring_buffer_alloc_read_page
-ffffffc00813ec70 T ring_buffer_free_read_page
-ffffffc00813edbc T ring_buffer_read_page
-ffffffc00813f1b4 t rb_get_reader_page
-ffffffc00813f5b0 T trace_rb_cpu_prepare
-ffffffc00813f6f4 T trace_buffer_pack_size
-ffffffc00813f780 T trace_buffer_pack
-ffffffc00813f96c t update_pages_handler
-ffffffc00813f9ac t rb_move_tail
-ffffffc008140494 t rb_add_timestamp
-ffffffc0081405c8 t rb_check_timestamp
-ffffffc008140634 t rb_iter_head_event
-ffffffc008140788 t rb_swap_reader_page_ext
-ffffffc00814092c T ns2usecs
-ffffffc00814095c T register_ftrace_export
-ffffffc008140a34 T unregister_ftrace_export
-ffffffc008140b08 T trace_array_get
-ffffffc008140b90 T trace_array_put
-ffffffc008140bfc T tracing_check_open_get_tr
-ffffffc008140cb8 T call_filter_check_discard
-ffffffc008140d18 t __trace_event_discard_commit
-ffffffc008140e70 T trace_find_filtered_pid
-ffffffc008140ea0 T trace_ignore_this_task
-ffffffc008140f0c T trace_filter_add_remove_task
-ffffffc008140f78 T trace_pid_next
-ffffffc008140ff0 T trace_pid_start
-ffffffc0081410ac T trace_pid_show
-ffffffc0081410e8 T trace_pid_write
-ffffffc0081412ec T trace_parser_get_init
-ffffffc008141350 T trace_parser_put
-ffffffc008141390 T trace_get_user
-ffffffc0081418b8 T ftrace_now
-ffffffc0081418f8 T tracing_is_enabled
-ffffffc00814191c T tracer_tracing_on
-ffffffc008141964 T tracing_on
-ffffffc0081419a8 T __trace_array_puts
-ffffffc008141d1c T __trace_puts
-ffffffc008141d5c T __trace_bputs
-ffffffc008142054 T tracing_snapshot
-ffffffc0081420a4 T tracing_snapshot_cond
-ffffffc0081420f4 T tracing_alloc_snapshot
-ffffffc008142148 T tracing_snapshot_alloc
-ffffffc008142198 T tracing_cond_snapshot_data
-ffffffc0081421ac T tracing_snapshot_cond_enable
-ffffffc0081421c0 T tracing_snapshot_cond_disable
-ffffffc0081421d4 T tracer_tracing_off
-ffffffc008142220 T tracing_off
-ffffffc008142268 T disable_trace_on_warning
-ffffffc0081422e0 T trace_array_printk_buf
-ffffffc008142388 T tracer_tracing_is_on
-ffffffc0081423bc T tracing_is_on
-ffffffc0081423f8 T nsecs_to_usecs
-ffffffc008142424 T trace_clock_in_ns
-ffffffc008142450 t dummy_set_flag
-ffffffc008142460 t add_tracer_options
-ffffffc0081426c4 T tracing_set_tracer
-ffffffc008142918 T tracing_reset_online_cpus
-ffffffc008142988 T tracing_reset_all_online_cpus_unlocked
-ffffffc008142a24 T tracing_reset_all_online_cpus
-ffffffc008142ad8 T is_tracing_stopped
-ffffffc008142af0 T tracing_start
-ffffffc008142c00 T tracing_stop
-ffffffc008142cec T trace_find_cmdline
-ffffffc008142e78 T trace_find_tgid
-ffffffc008142ec0 T tracing_record_taskinfo
-ffffffc008143078 T tracing_record_taskinfo_sched_switch
-ffffffc008143380 T tracing_record_cmdline
-ffffffc0081433b0 T tracing_record_tgid
-ffffffc00814341c T trace_handle_return
-ffffffc008143450 T tracing_gen_ctx_irq_test
-ffffffc0081434fc T trace_buffer_lock_reserve
-ffffffc008143574 T trace_buffered_event_enable
-ffffffc008143708 T trace_buffered_event_disable
-ffffffc0081438c0 t disable_trace_buffered_event
-ffffffc008143960 t enable_trace_buffered_event
-ffffffc008143a04 T trace_event_buffer_lock_reserve
-ffffffc008143c8c T tracepoint_printk_sysctl
-ffffffc008143d80 T trace_event_buffer_commit
-ffffffc008143f8c t ftrace_exports
-ffffffc00814408c T trace_buffer_unlock_commit_regs
-ffffffc00814425c T trace_buffer_unlock_commit_nostack
-ffffffc0081443dc T trace_function
-ffffffc0081445f8 T __trace_stack
-ffffffc00814468c t __ftrace_trace_stack
-ffffffc008144978 T trace_dump_stack
-ffffffc008144a88 T trace_last_func_repeats
-ffffffc008144c88 T trace_printk_init_buffers
-ffffffc008144de0 T tracing_update_buffers
-ffffffc008144ed8 T trace_printk_start_comm
-ffffffc008144f18 T trace_vbprintk
-ffffffc00814538c T trace_array_vprintk
-ffffffc0081453f8 t __trace_array_vprintk
-ffffffc008145858 T trace_array_printk
-ffffffc00814591c T trace_array_init_printk
-ffffffc0081459d4 T trace_vprintk
-ffffffc008145a54 T trace_check_vprintf
-ffffffc008145ec8 t trace_iter_expand_format
-ffffffc008145f40 t show_buffer
-ffffffc008145f8c T trace_event_format
-ffffffc0081460d8 T trace_find_next_entry
-ffffffc0081461dc t __find_next_entry
-ffffffc008146470 T trace_find_next_entry_inc
-ffffffc008146514 T tracing_iter_reset
-ffffffc008146624 T trace_total_entries_cpu
-ffffffc0081466bc T trace_total_entries
-ffffffc0081467a4 T print_trace_header
-ffffffc008146a54 T trace_empty
-ffffffc008146b40 T print_trace_line
-ffffffc008146d58 t print_hex_fmt
-ffffffc008146ea0 t print_raw_fmt
-ffffffc008146f98 t print_trace_fmt
-ffffffc008147154 T trace_latency_header
-ffffffc0081471d0 T trace_default_header
-ffffffc00814739c T tracing_open_generic
-ffffffc008147404 T tracing_is_disabled
-ffffffc008147424 T tracing_open_generic_tr
-ffffffc0081474ec T tracing_lseek
-ffffffc008147534 T tracing_set_cpumask
-ffffffc008147770 T trace_keep_overwrite
-ffffffc0081477a0 T set_tracer_flag
-ffffffc00814796c T trace_set_options
-ffffffc008147b2c T tracer_init
-ffffffc008147bcc T tracing_resize_ring_buffer
-ffffffc008147d20 T tracing_set_clock
-ffffffc008147ecc T tracing_event_time_stamp
-ffffffc008147f84 T tracing_set_filter_buffering
-ffffffc008148004 t trace_min_max_read
-ffffffc0081480c8 t trace_min_max_write
-ffffffc008148204 T err_pos
-ffffffc008148258 T tracing_log_err
-ffffffc008148414 T trace_create_file
-ffffffc00814846c T trace_array_find
-ffffffc0081484ec T trace_array_find_get
-ffffffc008148590 T trace_array_get_by_name
-ffffffc00814865c t trace_array_create
-ffffffc008148854 T trace_array_destroy
-ffffffc0081488f8 t __remove_instance
-ffffffc008148b00 T tracing_init_dentry
-ffffffc008148ba4 t trace_automount
-ffffffc008148c1c T trace_printk_seq
-ffffffc008148cbc T trace_init_global_iter
-ffffffc008148db4 T ftrace_dump
-ffffffc008149380 T trace_parse_run_command
-ffffffc008149660 t print_event_info
-ffffffc00814978c t trace_options_read
-ffffffc0081497f4 t trace_options_write
-ffffffc008149960 t allocate_trace_buffers
-ffffffc008149a68 t init_trace_flags_index
-ffffffc008149ac4 t trace_array_create_dir
-ffffffc008149b68 t init_tracer_tracefs
-ffffffc00814a3f8 t show_traces_open
-ffffffc00814a52c t show_traces_release
-ffffffc00814a5b4 t t_start
-ffffffc00814a678 t t_start
-ffffffc00814a6e4 t t_start
-ffffffc00814a798 t t_start
-ffffffc00814a7e8 t t_stop
-ffffffc00814a81c t t_stop
-ffffffc00814a82c t t_stop
-ffffffc00814a860 t t_stop
-ffffffc00814a894 t t_next
-ffffffc00814a8e4 t t_next
-ffffffc00814a958 t t_next
-ffffffc00814a9b8 t t_next
-ffffffc00814a9f0 t t_show
-ffffffc00814aa54 t t_show
-ffffffc00814ab7c t t_show
-ffffffc00814ac20 t tracing_set_trace_read
-ffffffc00814ad04 t tracing_set_trace_write
-ffffffc00814af3c t tracing_cpumask_read
-ffffffc00814b030 t tracing_cpumask_write
-ffffffc00814b0f8 t tracing_release_generic_tr
-ffffffc00814b168 t tracing_trace_options_write
-ffffffc00814b38c t tracing_trace_options_open
-ffffffc00814b4a0 t tracing_single_release_tr
-ffffffc00814b528 t tracing_trace_options_show
-ffffffc00814b62c t tracing_write_stub
-ffffffc00814b640 t tracing_open
-ffffffc00814bc4c t tracing_release
-ffffffc00814be54 t tracing_read_pipe
-ffffffc00814c228 t tracing_poll_pipe
-ffffffc00814c294 t tracing_open_pipe
-ffffffc00814c4b0 t tracing_release_pipe
-ffffffc00814c584 t tracing_splice_read_pipe
-ffffffc00814cacc t tracing_wait_pipe
-ffffffc00814cbac t tracing_spd_release_pipe
-ffffffc00814cbe4 t tracing_entries_read
-ffffffc00814cdbc t tracing_entries_write
-ffffffc00814ce98 t tracing_total_entries_read
-ffffffc00814d024 t tracing_free_buffer_write
-ffffffc00814d044 t tracing_free_buffer_release
-ffffffc00814d0e4 t tracing_mark_write
-ffffffc00814d5bc t tracing_mark_open
-ffffffc00814d688 t tracing_mark_raw_write
-ffffffc00814dab8 t tracing_clock_write
-ffffffc00814dce4 t tracing_clock_open
-ffffffc00814ddf8 t tracing_clock_show
-ffffffc00814dfe4 t rb_simple_read
-ffffffc00814e0b4 t rb_simple_write
-ffffffc00814e250 t tracing_time_stamp_mode_open
-ffffffc00814e364 t tracing_time_stamp_mode_show
-ffffffc00814e3e8 t buffer_percent_read
-ffffffc00814e498 t buffer_percent_write
-ffffffc00814e554 t trace_options_core_read
-ffffffc00814e5c0 t trace_options_core_write
-ffffffc00814e6e0 t tracing_err_log_write
-ffffffc00814e6f4 t tracing_err_log_open
-ffffffc00814e8bc t tracing_err_log_release
-ffffffc00814e950 t tracing_err_log_seq_start
-ffffffc00814e9a0 t tracing_err_log_seq_stop
-ffffffc00814e9d4 t tracing_err_log_seq_next
-ffffffc00814ea10 t tracing_err_log_seq_show
-ffffffc00814eb7c t tracing_buffers_read
-ffffffc00814eed4 t tracing_buffers_poll
-ffffffc00814ef40 t tracing_buffers_ioctl
-ffffffc00814efbc t tracing_buffers_open
-ffffffc00814f160 t tracing_buffers_release
-ffffffc00814f220 t tracing_buffers_splice_read
-ffffffc00814f664 t buffer_spd_release
-ffffffc00814f728 t buffer_pipe_buf_release
-ffffffc00814f7d0 t buffer_pipe_buf_get
-ffffffc00814f86c t tracing_stats_read
-ffffffc00814fb20 t tracing_thresh_read
-ffffffc00814fc00 t tracing_thresh_write
-ffffffc00814fd04 t tracing_readme_read
-ffffffc00814fd4c t tracing_saved_cmdlines_open
-ffffffc00814fdb4 t saved_cmdlines_start
-ffffffc00814fedc t saved_cmdlines_stop
-ffffffc00814ff44 t saved_cmdlines_next
-ffffffc00814ffb0 t saved_cmdlines_show
-ffffffc0081500c8 t tracing_saved_cmdlines_size_read
-ffffffc008150250 t tracing_saved_cmdlines_size_write
-ffffffc008150494 t tracing_saved_tgids_open
-ffffffc0081504fc t saved_tgids_start
-ffffffc008150538 t saved_tgids_stop
-ffffffc008150548 t saved_tgids_next
-ffffffc00815058c t saved_tgids_show
-ffffffc0081505e4 t instance_mkdir
-ffffffc0081506a0 t instance_rmdir
-ffffffc008150758 t test_can_verify
-ffffffc0081507b4 t trace_panic_handler
-ffffffc0081507f0 t trace_die_handler
-ffffffc008150830 t test_can_verify_check
-ffffffc008150904 T trace_print_bputs_msg_only
-ffffffc008150968 T trace_print_bprintk_msg_only
-ffffffc0081509d0 T trace_print_printk_msg_only
-ffffffc008150a34 T trace_print_flags_seq
-ffffffc008150b74 T trace_print_symbols_seq
-ffffffc008150c74 T trace_print_bitmask_seq
-ffffffc008150ce0 T trace_print_hex_seq
-ffffffc008150db8 T trace_print_array_seq
-ffffffc008151034 T trace_print_hex_dump_seq
-ffffffc008151100 T trace_raw_output_prep
-ffffffc0081511ac T trace_event_printf
-ffffffc008151254 T trace_output_call
-ffffffc00815133c T trace_seq_print_sym
-ffffffc008151424 T seq_print_ip_sym
-ffffffc00815155c T trace_print_lat_fmt
-ffffffc0081516f0 T trace_find_mark
-ffffffc0081517a4 T trace_print_context
-ffffffc008151968 T trace_print_lat_context
-ffffffc008151c68 T ftrace_find_event
-ffffffc008151ca0 T trace_event_read_lock
-ffffffc008151cd4 T trace_event_read_unlock
-ffffffc008151d08 T register_trace_event
-ffffffc008151f80 T trace_nop_print
-ffffffc008151fd8 T __unregister_trace_event
-ffffffc008152054 T unregister_trace_event
-ffffffc0081520e8 t trace_fn_trace
-ffffffc008152194 t trace_fn_raw
-ffffffc008152200 t trace_fn_hex
-ffffffc008152278 t trace_fn_bin
-ffffffc0081522f0 t trace_ctx_print
-ffffffc008152324 t trace_ctx_raw
-ffffffc0081523c0 t trace_ctx_hex
-ffffffc0081523f0 t trace_ctxwake_bin
-ffffffc0081524a0 t trace_ctxwake_print
-ffffffc008152598 t trace_ctxwake_hex
-ffffffc0081526b8 t trace_wake_print
-ffffffc0081526ec t trace_wake_raw
-ffffffc00815277c t trace_wake_hex
-ffffffc0081527ac t trace_stack_print
-ffffffc0081528bc t trace_user_stack_print
-ffffffc008152adc t trace_bputs_print
-ffffffc008152b64 t trace_bputs_raw
-ffffffc008152bdc t trace_bprint_print
-ffffffc008152c68 t trace_bprint_raw
-ffffffc008152ce4 t trace_print_print
-ffffffc008152d64 t trace_print_raw
-ffffffc008152dd4 t trace_hwlat_print
-ffffffc008152e6c t trace_hwlat_raw
-ffffffc008152ee0 t trace_osnoise_print
-ffffffc008152ffc t trace_osnoise_raw
-ffffffc008153088 t trace_timerlat_print
-ffffffc008153110 t trace_timerlat_raw
-ffffffc008153180 t trace_raw_data
-ffffffc008153250 t trace_func_repeats_print
-ffffffc0081533c0 t trace_func_repeats_raw
-ffffffc00815343c T trace_print_seq
-ffffffc0081534b8 T trace_seq_printf
-ffffffc0081535b0 T trace_seq_bitmask
-ffffffc00815364c T trace_seq_vprintf
-ffffffc00815371c T trace_seq_bprintf
-ffffffc0081537ac T trace_seq_puts
-ffffffc008153850 T trace_seq_putc
-ffffffc0081538d4 T trace_seq_putmem
-ffffffc008153958 T trace_seq_putmem_hex
-ffffffc008153a14 T trace_seq_path
-ffffffc008153ae8 T trace_seq_to_user
-ffffffc008153b3c T trace_seq_hex_dump
-ffffffc008153c0c T register_stat_tracer
-ffffffc008153e10 T unregister_stat_tracer
-ffffffc008153f28 t tracing_stat_open
-ffffffc008154324 t tracing_stat_release
-ffffffc008154400 t dummy_cmp
-ffffffc008154414 t stat_seq_start
-ffffffc0081544a0 t stat_seq_stop
-ffffffc0081544d4 t stat_seq_next
-ffffffc008154528 t stat_seq_show
-ffffffc0081545a8 T trace_printk_control
-ffffffc0081545c0 T __trace_bprintk
-ffffffc008154670 T __ftrace_vbprintk
-ffffffc0081546f8 T __trace_printk
-ffffffc0081547a0 T __ftrace_vprintk
-ffffffc008154820 T trace_is_tracepoint_string
-ffffffc008154880 t ftrace_formats_open
-ffffffc0081548d0 T trace_pid_list_is_set
-ffffffc008154970 T trace_pid_list_set
-ffffffc008154ad8 T trace_pid_list_clear
-ffffffc008154c14 T trace_pid_list_next
-ffffffc008154d48 T trace_pid_list_first
-ffffffc008154d7c T trace_pid_list_alloc
-ffffffc008154fe4 t pid_list_refill_irq
-ffffffc0081551e8 T trace_pid_list_free
-ffffffc0081552b0 T tracing_map_update_sum
-ffffffc0081552f4 T tracing_map_read_sum
-ffffffc008155318 T tracing_map_set_var
-ffffffc008155340 T tracing_map_var_set
-ffffffc008155358 T tracing_map_read_var
-ffffffc008155378 T tracing_map_read_var_once
-ffffffc0081553a0 T tracing_map_cmp_string
-ffffffc0081553cc T tracing_map_cmp_none
-ffffffc0081553e0 T tracing_map_cmp_num
-ffffffc008155484 t tracing_map_cmp_s64
-ffffffc0081554a8 t tracing_map_cmp_u64
-ffffffc0081554cc t tracing_map_cmp_s32
-ffffffc0081554f0 t tracing_map_cmp_u32
-ffffffc008155514 t tracing_map_cmp_s16
-ffffffc008155538 t tracing_map_cmp_u16
-ffffffc00815555c t tracing_map_cmp_s8
-ffffffc008155580 t tracing_map_cmp_u8
-ffffffc0081555a4 T tracing_map_add_sum_field
-ffffffc0081555e8 t tracing_map_cmp_atomic64
-ffffffc008155614 T tracing_map_add_var
-ffffffc008155648 T tracing_map_add_key_field
-ffffffc0081556a8 T tracing_map_insert
-ffffffc0081556d4 t __tracing_map_insert.llvm.1016561924401574638
-ffffffc008155b68 T tracing_map_lookup
-ffffffc008155b98 T tracing_map_destroy
-ffffffc008155c34 t tracing_map_free_elts
-ffffffc008155da0 T tracing_map_clear
-ffffffc008155f24 T tracing_map_create
-ffffffc008155ff8 t tracing_map_array_alloc
-ffffffc00815615c T tracing_map_init
-ffffffc0081565a0 T tracing_map_destroy_sort_entries
-ffffffc008156688 T tracing_map_sort_entries
-ffffffc008156b20 t cmp_entries_key
-ffffffc008156bac t cmp_entries_sum
-ffffffc008156c34 t cmp_entries_dup
-ffffffc008156c80 T tracing_start_cmdline_record
-ffffffc008156cac t tracing_start_sched_switch.llvm.3779742955118682917
-ffffffc008156dfc T tracing_stop_cmdline_record
-ffffffc008156eac T tracing_start_tgid_record
-ffffffc008156edc T tracing_stop_tgid_record
-ffffffc008156f8c t probe_sched_wakeup
-ffffffc008156fe4 t probe_sched_switch
-ffffffc008157044 t nop_trace_init
-ffffffc008157058 t nop_trace_reset
-ffffffc008157068 t nop_set_flag
-ffffffc0081570d4 T blk_fill_rwbs
-ffffffc0081571e4 T trace_find_event_field
-ffffffc0081572d8 T trace_define_field
-ffffffc0081573ec T trace_event_get_offsets
-ffffffc008157450 T trace_event_raw_init
-ffffffc0081579bc T trace_event_ignore_this_pid
-ffffffc008157a18 T trace_event_buffer_reserve
-ffffffc008157afc T trace_event_reg
-ffffffc008157bb8 T trace_event_enable_cmd_record
-ffffffc008157cb0 T trace_event_enable_tgid_record
-ffffffc008157da8 T trace_event_enable_disable
-ffffffc008157dd0 t __ftrace_event_enable_disable.llvm.9291491715625410980
-ffffffc00815825c T trace_event_follow_fork
-ffffffc0081582f8 t event_filter_pid_sched_process_fork
-ffffffc008158364 t event_filter_pid_sched_process_exit
-ffffffc0081583cc T ftrace_set_clr_event
-ffffffc008158510 T trace_set_clr_event
-ffffffc0081585d0 T trace_array_set_clr_event
-ffffffc008158664 T trace_event_eval_update
-ffffffc008158b94 T trace_add_event_call
-ffffffc008158d10 T trace_remove_event_call
-ffffffc008158f70 T __find_event_file
-ffffffc008159030 T find_event_file
-ffffffc008159100 T trace_get_event_file
-ffffffc008159280 T trace_put_event_file
-ffffffc0081592e4 T __trace_early_add_events
-ffffffc0081593a8 T event_trace_add_tracer
-ffffffc0081594c4 t create_event_toplevel_files
-ffffffc00815960c t __trace_early_add_event_dirs
-ffffffc0081596ac T event_trace_del_tracer
-ffffffc0081597b4 t __ftrace_clear_event_pids
-ffffffc0081599e0 t __ftrace_set_clr_event_nolock
-ffffffc008159b18 t remove_event_file_dir
-ffffffc008159c74 t __put_system
-ffffffc008159d18 t trace_create_new_event
-ffffffc008159e10 t event_define_fields
-ffffffc008159ff0 t event_create_dir
-ffffffc00815a430 t subsystem_filter_read
-ffffffc00815a514 t subsystem_filter_write
-ffffffc00815a5bc t subsystem_open
-ffffffc00815a7e4 t subsystem_release
-ffffffc00815a8a4 t system_enable_read
-ffffffc00815aa0c t system_enable_write
-ffffffc00815abb8 t event_enable_read
-ffffffc00815acf4 t event_enable_write
-ffffffc00815ae00 t event_id_read
-ffffffc00815aebc t event_filter_read
-ffffffc00815afd8 t event_filter_write
-ffffffc00815b0b0 t trace_format_open
-ffffffc00815b104 t f_start
-ffffffc00815b250 t f_stop
-ffffffc00815b284 t f_next
-ffffffc00815b364 t f_show
-ffffffc00815b50c t ftrace_event_write
-ffffffc00815b61c t ftrace_event_set_open
-ffffffc00815b71c t ftrace_event_release
-ffffffc00815b768 t system_tr_open
-ffffffc00815b800 t ftrace_event_pid_write
-ffffffc00815b830 t ftrace_event_set_pid_open
-ffffffc00815b904 t event_pid_write
-ffffffc00815bbb4 t ignore_task_cpu
-ffffffc00815bc54 t event_filter_pid_sched_switch_probe_pre
-ffffffc00815bd7c t event_filter_pid_sched_switch_probe_post
-ffffffc00815be30 t event_filter_pid_sched_wakeup_probe_pre
-ffffffc00815bf50 t event_filter_pid_sched_wakeup_probe_post
-ffffffc00815c06c t p_start
-ffffffc00815c0e0 t p_stop
-ffffffc00815c144 t p_next
-ffffffc00815c180 t ftrace_event_npid_write
-ffffffc00815c1b0 t ftrace_event_set_npid_open
-ffffffc00815c288 t np_start
-ffffffc00815c2fc t np_next
-ffffffc00815c338 t show_header
-ffffffc00815c428 t ftrace_event_avail_open
-ffffffc00815c48c T ftrace_event_is_function
-ffffffc00815c4ac t ftrace_event_register
-ffffffc00815c4c0 T perf_trace_init
-ffffffc00815c590 t perf_trace_event_init
-ffffffc00815c8ec T perf_trace_destroy
-ffffffc00815c97c t perf_trace_event_unreg
-ffffffc00815ca5c T perf_uprobe_init
-ffffffc00815cb4c T perf_uprobe_destroy
-ffffffc00815cbe8 T perf_trace_add
-ffffffc00815cca4 T perf_trace_del
-ffffffc00815cd28 T perf_trace_buf_alloc
-ffffffc00815ce1c T perf_trace_buf_update
-ffffffc00815ce8c T filter_parse_regex
-ffffffc00815cfe4 T filter_match_preds
-ffffffc00815d818 T print_event_filter
-ffffffc00815d870 T print_subsystem_event_filter
-ffffffc00815d8f4 T free_event_filter
-ffffffc00815d978 T filter_assign_type
-ffffffc00815da6c T create_event_filter
-ffffffc00815db68 T apply_event_filter
-ffffffc00815dd7c T apply_subsystem_event_filter
-ffffffc00815e398 T ftrace_profile_free_filter
-ffffffc00815e420 T ftrace_profile_set_filter
-ffffffc00815e594 t create_filter_start
-ffffffc00815e6c0 t process_preds
-ffffffc00815f574 t append_filter_err
-ffffffc00815f710 t filter_build_regex
-ffffffc00815f918 t select_comparison_fn
-ffffffc00815fa04 t regex_match_full
-ffffffc00815fa48 t regex_match_front
-ffffffc00815fa98 t regex_match_middle
-ffffffc00815fadc t regex_match_end
-ffffffc00815fb34 t regex_match_glob
-ffffffc00815fb70 T trigger_data_free
-ffffffc00815fbf0 T event_triggers_call
-ffffffc00815fd14 T __trace_trigger_soft_disabled
-ffffffc00815fdec T event_triggers_post_call
-ffffffc00815fea0 T trigger_process_regex
-ffffffc00815ffec t event_trigger_write.llvm.3799506982970393099
-ffffffc0081600e4 t event_trigger_open.llvm.3799506982970393099
-ffffffc008160200 t event_trigger_release.llvm.3799506982970393099
-ffffffc008160268 T event_trigger_init
-ffffffc00816028c T trace_event_trigger_enable_disable
-ffffffc0081603cc T clear_event_triggers
-ffffffc008160544 T update_cond_flag
-ffffffc0081605f4 T event_trigger_check_remove
-ffffffc008160618 T event_trigger_empty_param
-ffffffc008160630 T event_trigger_separate_filter
-ffffffc00816071c T event_trigger_alloc
-ffffffc0081607cc T event_trigger_parse_num
-ffffffc008160860 T event_trigger_set_filter
-ffffffc0081608c8 T event_trigger_reset_filter
-ffffffc00816091c T event_trigger_register
-ffffffc008160974 T event_trigger_unregister
-ffffffc0081609cc T set_trigger_filter
-ffffffc008160b0c T find_named_trigger
-ffffffc008160b9c T is_named_trigger
-ffffffc008160bd4 T save_named_trigger
-ffffffc008160c64 T del_named_trigger
-ffffffc008160cd0 T pause_named_trigger
-ffffffc008160d54 T unpause_named_trigger
-ffffffc008160dd0 T set_named_trigger_data
-ffffffc008160de4 T get_named_trigger_data
-ffffffc008160df8 T event_enable_trigger_print
-ffffffc008160f10 T event_enable_trigger_free
-ffffffc008160fe0 T event_enable_trigger_parse
-ffffffc00816143c t event_trigger_free
-ffffffc0081614dc T event_enable_register_trigger
-ffffffc0081617c0 T event_enable_unregister_trigger
-ffffffc0081619c4 t trigger_start
-ffffffc008161a7c t trigger_stop
-ffffffc008161ab0 t trigger_next
-ffffffc008161b18 t trigger_show
-ffffffc008161c08 t event_trigger_parse
-ffffffc008161f34 t register_trigger
-ffffffc0081621ec t unregister_trigger
-ffffffc0081623c8 t onoff_get_trigger_ops
-ffffffc00816243c t traceon_count_trigger
-ffffffc0081624bc t traceon_trigger_print
-ffffffc008162568 t traceon_trigger
-ffffffc0081625c4 t traceoff_count_trigger
-ffffffc008162644 t traceoff_trigger_print
-ffffffc0081626f0 t traceoff_trigger
-ffffffc00816274c t stacktrace_get_trigger_ops
-ffffffc008162774 t stacktrace_count_trigger
-ffffffc008162800 t stacktrace_trigger_print
-ffffffc0081628ac t stacktrace_trigger
-ffffffc008162920 t event_enable_get_trigger_ops
-ffffffc0081629a8 t event_enable_count_trigger
-ffffffc008162a78 t event_enable_trigger
-ffffffc008162b0c t eprobe_dyn_event_create
-ffffffc008162b40 t eprobe_dyn_event_show
-ffffffc008162c28 t eprobe_dyn_event_is_busy
-ffffffc008162c48 t eprobe_dyn_event_release
-ffffffc008162d18 t eprobe_dyn_event_match
-ffffffc008162e40 t __trace_eprobe_create
-ffffffc008163588 t dyn_event_add
-ffffffc008163618 t dyn_event_add
-ffffffc008163694 t trace_event_probe_cleanup
-ffffffc008163708 t eprobe_register
-ffffffc008163a70 t print_eprobe_event
-ffffffc008163cd0 t eprobe_event_define_fields
-ffffffc008163d10 t disable_eprobe
-ffffffc008163e08 t eprobe_trigger_func
-ffffffc008164b48 t eprobe_trigger_init
-ffffffc008164b5c t eprobe_trigger_free
-ffffffc008164b6c t eprobe_trigger_print
-ffffffc008164b80 t eprobe_trigger_cmd_parse
-ffffffc008164b94 t eprobe_trigger_reg_func
-ffffffc008164ba8 t eprobe_trigger_unreg_func
-ffffffc008164bb8 t eprobe_trigger_get_ops
-ffffffc008164bd0 T find_synth_event
-ffffffc008164c60 T synth_event_add_field
-ffffffc008164d3c t synth_event_check_arg_fn
-ffffffc008164d98 T synth_event_add_field_str
-ffffffc008164e50 T synth_event_add_fields
-ffffffc008164f4c T __synth_event_gen_cmd_start
-ffffffc00816510c T synth_event_gen_cmd_array_start
-ffffffc008165264 T synth_event_create
-ffffffc008165384 T synth_event_cmd_init
-ffffffc0081653bc T synth_event_delete
-ffffffc0081654dc t synth_event_run_command
-ffffffc008165594 T synth_event_trace
-ffffffc0081658bc t trace_string
-ffffffc008165ad4 T synth_event_trace_array
-ffffffc008165d24 T synth_event_trace_start
-ffffffc008165e1c T synth_event_add_next_val
-ffffffc008165e50 t __synth_event_add_val
-ffffffc008165ff4 T synth_event_add_val
-ffffffc008166020 T synth_event_trace_end
-ffffffc008166070 t create_synth_event
-ffffffc008166290 t synth_event_show
-ffffffc0081662e8 t synth_event_is_busy
-ffffffc008166304 t synth_event_release
-ffffffc008166390 t synth_event_match
-ffffffc0081663f8 t synth_err
-ffffffc008166470 t check_command
-ffffffc008166564 t __create_synth_event
-ffffffc00816701c t errpos
-ffffffc008167088 t alloc_synth_event
-ffffffc00816722c t register_synth_event
-ffffffc00816740c t free_synth_event
-ffffffc0081674d8 t synth_field_size
-ffffffc008167694 t synth_field_string_size
-ffffffc0081677b8 t trace_event_raw_event_synth
-ffffffc008167a14 t print_synth_event
-ffffffc008167cc8 t synth_field_fmt
-ffffffc008167ec0 t synth_event_define_fields
-ffffffc008167fa4 t __set_synth_event_print_fmt
-ffffffc008168128 t __synth_event_show
-ffffffc008168218 t create_or_delete_synth_event
-ffffffc0081683d0 t synth_events_write
-ffffffc008168404 t synth_events_open
-ffffffc008168474 t synth_events_seq_show
-ffffffc0081684b8 t event_hist_open.llvm.15070865637894709173
-ffffffc00816850c t hist_show
-ffffffc008168f68 t hist_field_name
-ffffffc008169098 t event_hist_trigger_parse
-ffffffc00816a914 t hist_register_trigger
-ffffffc00816abdc t hist_unregister_trigger
-ffffffc00816ad38 t hist_unreg_all
-ffffffc00816aea4 t event_hist_get_trigger_ops
-ffffffc00816aeb8 t destroy_hist_trigger_attrs
-ffffffc00816b110 t have_hist_trigger_match
-ffffffc00816b1b4 t hist_trigger_check_refs
-ffffffc00816b264 t existing_hist_update_only
-ffffffc00816b390 t has_hist_vars
-ffffffc00816b414 t save_hist_vars
-ffffffc00816b4d4 t create_actions
-ffffffc00816b774 t hist_trigger_enable
-ffffffc00816b834 t destroy_hist_data
-ffffffc00816ba50 t create_tracing_map_fields
-ffffffc00816bb78 t track_data_parse
-ffffffc00816bc70 t action_parse
-ffffffc00816bf84 t onmatch_destroy
-ffffffc00816c02c t parse_action_params
-ffffffc00816c244 t check_track_val_max
-ffffffc00816c25c t check_track_val_changed
-ffffffc00816c274 t save_track_data_vars
-ffffffc00816c368 t ontrack_action
-ffffffc00816c474 t save_track_data_snapshot
-ffffffc00816c484 t action_trace
-ffffffc00816c554 t hist_fn_call
-ffffffc00816c9fc t track_data_destroy
-ffffffc00816caa8 t destroy_hist_field
-ffffffc00816cb10 t __destroy_hist_field
-ffffffc00816cb84 t create_hist_field
-ffffffc00816ce04 t select_value_fn
-ffffffc00816ce80 t __create_val_field
-ffffffc00816cfc8 t parse_expr
-ffffffc00816d79c t parse_atom
-ffffffc00816dfe0 t check_expr_operands
-ffffffc00816e158 t expr_str
-ffffffc00816e304 t find_event_var
-ffffffc00816e548 t create_var_ref
-ffffffc00816e68c t find_var_file
-ffffffc00816e7d4 t init_var_ref
-ffffffc00816e8e4 t expr_field_str
-ffffffc00816ea6c t find_var
-ffffffc00816eb88 t field_has_hist_vars
-ffffffc00816ec08 t hist_trigger_elt_data_alloc
-ffffffc00816edcc t hist_trigger_elt_data_free
-ffffffc00816ee40 t hist_trigger_elt_data_init
-ffffffc00816eec0 t hist_trigger_match
-ffffffc00816f14c t actions_match
-ffffffc00816f2d0 t check_var_refs
-ffffffc00816f3c4 t hist_clear
-ffffffc00816f430 t action_create
-ffffffc00817023c t create_target_field_var
-ffffffc00817049c t find_synthetic_field_var
-ffffffc008170554 t create_var
-ffffffc00817065c t event_hist_trigger
-ffffffc008170e14 t event_hist_trigger_named_init
-ffffffc008170ea0 t event_hist_trigger_named_free
-ffffffc008170f10 t event_hist_trigger_print
-ffffffc008171558 t event_hist_trigger_init
-ffffffc0081715c4 t event_hist_trigger_free
-ffffffc008171738 t hist_field_print
-ffffffc0081718ec t hist_enable_unreg_all
-ffffffc0081719cc t hist_enable_get_trigger_ops
-ffffffc008171a40 t hist_enable_count_trigger
-ffffffc008171ab8 t hist_enable_trigger
-ffffffc008171b18 T __traceiter_error_report_end
-ffffffc008171ba8 t trace_event_raw_event_error_report_template
-ffffffc008171c68 t perf_trace_error_report_template
-ffffffc008171d84 t trace_raw_output_error_report_template
-ffffffc008171e10 T __traceiter_cpu_idle
-ffffffc008171ea0 T __traceiter_cpu_idle_miss
-ffffffc008171f38 T __traceiter_powernv_throttle
-ffffffc008171fd0 T __traceiter_pstate_sample
-ffffffc0081720b8 T __traceiter_cpu_frequency
-ffffffc008172148 T __traceiter_cpu_frequency_limits
-ffffffc0081721c8 T __traceiter_device_pm_callback_start
-ffffffc008172260 T __traceiter_device_pm_callback_end
-ffffffc0081722f0 T __traceiter_suspend_resume
-ffffffc008172388 T __traceiter_wakeup_source_activate
-ffffffc008172418 T __traceiter_wakeup_source_deactivate
-ffffffc0081724a8 T __traceiter_clock_enable
-ffffffc008172540 T __traceiter_clock_disable
-ffffffc0081725d8 T __traceiter_clock_set_rate
-ffffffc008172670 T __traceiter_power_domain_target
-ffffffc008172708 T __traceiter_pm_qos_add_request
-ffffffc008172788 T __traceiter_pm_qos_update_request
-ffffffc008172808 T __traceiter_pm_qos_remove_request
-ffffffc008172888 T __traceiter_pm_qos_update_target
-ffffffc008172920 T __traceiter_pm_qos_update_flags
-ffffffc0081729b8 T __traceiter_dev_pm_qos_add_request
-ffffffc008172a50 T __traceiter_dev_pm_qos_update_request
-ffffffc008172ae8 T __traceiter_dev_pm_qos_remove_request
-ffffffc008172b80 T __traceiter_guest_halt_poll_ns
-ffffffc008172c18 t trace_event_raw_event_cpu
-ffffffc008172cd4 t perf_trace_cpu
-ffffffc008172dec t trace_event_raw_event_cpu_idle_miss
-ffffffc008172ec0 t perf_trace_cpu_idle_miss
-ffffffc008172fe4 t trace_event_raw_event_powernv_throttle
-ffffffc0081730f0 t perf_trace_powernv_throttle
-ffffffc008173260 t trace_event_raw_event_pstate_sample
-ffffffc008173364 t perf_trace_pstate_sample
-ffffffc0081734bc t trace_event_raw_event_cpu_frequency_limits
-ffffffc008173588 t perf_trace_cpu_frequency_limits
-ffffffc0081736a8 t trace_event_raw_event_device_pm_callback_start
-ffffffc008173854 t perf_trace_device_pm_callback_start
-ffffffc008173a64 t trace_event_raw_event_device_pm_callback_end
-ffffffc008173bf8 t perf_trace_device_pm_callback_end
-ffffffc008173df0 t trace_event_raw_event_suspend_resume
-ffffffc008173ec8 t perf_trace_suspend_resume
-ffffffc008173ff0 t trace_event_raw_event_wakeup_source
-ffffffc0081740f4 t perf_trace_wakeup_source
-ffffffc008174260 t trace_event_raw_event_clock
-ffffffc008174374 t perf_trace_clock
-ffffffc0081744f0 t trace_event_raw_event_power_domain
-ffffffc008174604 t perf_trace_power_domain
-ffffffc008174780 t trace_event_raw_event_cpu_latency_qos_request
-ffffffc008174838 t perf_trace_cpu_latency_qos_request
-ffffffc008174944 t trace_event_raw_event_pm_qos_update
-ffffffc008174a14 t perf_trace_pm_qos_update
-ffffffc008174b34 t trace_event_raw_event_dev_pm_qos_request
-ffffffc008174c40 t perf_trace_dev_pm_qos_request
-ffffffc008174db0 t trace_event_raw_event_guest_halt_poll_ns
-ffffffc008174e84 t perf_trace_guest_halt_poll_ns
-ffffffc008174fa8 t trace_raw_output_cpu
-ffffffc00817501c t trace_raw_output_cpu_idle_miss
-ffffffc0081750ac t trace_raw_output_powernv_throttle
-ffffffc00817512c t trace_raw_output_pstate_sample
-ffffffc0081751c0 t trace_raw_output_cpu_frequency_limits
-ffffffc008175234 t trace_event_get_offsets_device_pm_callback_start
-ffffffc00817535c t trace_raw_output_device_pm_callback_start
-ffffffc008175424 t trace_raw_output_device_pm_callback_end
-ffffffc0081754a8 t trace_raw_output_suspend_resume
-ffffffc00817553c t trace_raw_output_wakeup_source
-ffffffc0081755b8 t trace_raw_output_clock
-ffffffc008175634 t trace_raw_output_power_domain
-ffffffc0081756b0 t trace_raw_output_cpu_latency_qos_request
-ffffffc008175724 t trace_raw_output_pm_qos_update
-ffffffc0081757b0 t trace_raw_output_pm_qos_update_flags
-ffffffc008175854 t trace_raw_output_dev_pm_qos_request
-ffffffc0081758ec t trace_raw_output_guest_halt_poll_ns
-ffffffc00817597c T __traceiter_rpm_suspend
-ffffffc008175a0c T __traceiter_rpm_resume
-ffffffc008175a9c T __traceiter_rpm_idle
-ffffffc008175b2c T __traceiter_rpm_usage
-ffffffc008175bbc T __traceiter_rpm_return_int
-ffffffc008175c54 t trace_event_raw_event_rpm_internal
-ffffffc008175dc0 t perf_trace_rpm_internal
-ffffffc008175f9c t trace_event_raw_event_rpm_return_int
-ffffffc0081760c8 t perf_trace_rpm_return_int
-ffffffc008176264 t trace_raw_output_rpm_internal
-ffffffc0081762fc t trace_raw_output_rpm_return_int
-ffffffc00817637c T trace_event_dyn_try_get_ref
-ffffffc008176448 T trace_event_dyn_put_ref
-ffffffc0081764c8 T trace_event_dyn_busy
-ffffffc0081764ec T dyn_event_register
-ffffffc0081765ac T dyn_event_release
-ffffffc0081767a8 T dyn_event_seq_start
-ffffffc0081767f8 T dyn_event_seq_next
-ffffffc008176830 T dyn_event_seq_stop
-ffffffc008176864 T dyn_events_release_all
-ffffffc008176990 T dynevent_arg_add
-ffffffc008176a28 T dynevent_arg_pair_add
-ffffffc008176ac8 T dynevent_str_add
-ffffffc008176b1c T dynevent_cmd_init
-ffffffc008176b44 T dynevent_arg_init
-ffffffc008176b68 T dynevent_arg_pair_init
-ffffffc008176b9c T dynevent_create
-ffffffc008176be4 t dyn_event_write
-ffffffc008176c18 t dyn_event_open
-ffffffc008176d50 t create_dyn_event
-ffffffc008176e3c t dyn_event_seq_show
-ffffffc008176e98 T print_type_u8
-ffffffc008176efc T print_type_u16
-ffffffc008176f60 T print_type_u32
-ffffffc008176fc4 T print_type_u64
-ffffffc008177028 T print_type_s8
-ffffffc00817708c T print_type_s16
-ffffffc0081770f0 T print_type_s32
-ffffffc008177154 T print_type_s64
-ffffffc0081771b8 T print_type_x8
-ffffffc00817721c T print_type_x16
-ffffffc008177280 T print_type_x32
-ffffffc0081772e4 T print_type_x64
-ffffffc008177348 T print_type_symbol
-ffffffc0081773ac T print_type_string
-ffffffc008177438 T trace_probe_log_init
-ffffffc008177458 T trace_probe_log_clear
-ffffffc008177478 T trace_probe_log_set_index
-ffffffc008177490 T __trace_probe_log_err
-ffffffc008177614 T traceprobe_split_symbol_offset
-ffffffc008177684 T traceprobe_parse_event_name
-ffffffc008177884 T traceprobe_parse_probe_arg
-ffffffc008178204 T traceprobe_free_probe_arg
-ffffffc008178290 T traceprobe_update_arg
-ffffffc0081783d4 T traceprobe_set_print_fmt
-ffffffc008178468 t __set_print_fmt
-ffffffc008178788 T traceprobe_define_arg_fields
-ffffffc00817883c T trace_probe_append
-ffffffc00817893c T trace_probe_unlink
-ffffffc0081789cc T trace_probe_cleanup
-ffffffc008178a44 T trace_probe_init
-ffffffc008178b94 T trace_probe_register_event_call
-ffffffc008178cac T trace_probe_add_file
-ffffffc008178d68 T trace_probe_get_file_link
-ffffffc008178dac T trace_probe_remove_file
-ffffffc008178e80 T trace_probe_compare_arg_type
-ffffffc008178f64 T trace_probe_match_command_args
-ffffffc008179054 T trace_probe_create
-ffffffc00817911c t find_fetch_type
-ffffffc0081793d4 t parse_probe_arg
-ffffffc0081799a8 t __parse_bitfield_probe_arg
-ffffffc008179af0 T bpf_get_uprobe_info
-ffffffc008179c58 T create_local_trace_uprobe
-ffffffc008179e7c t alloc_trace_uprobe
-ffffffc008179f54 t free_trace_uprobe
-ffffffc008179fac T destroy_local_trace_uprobe
-ffffffc00817a014 t trace_uprobe_create
-ffffffc00817a048 t trace_uprobe_show
-ffffffc00817a150 t trace_uprobe_is_busy
-ffffffc00817a170 t trace_uprobe_release
-ffffffc00817a254 t trace_uprobe_match
-ffffffc00817a3f4 t __trace_uprobe_create
-ffffffc00817a84c t register_trace_uprobe
-ffffffc00817acac t uprobe_dispatcher
-ffffffc00817aff8 t uretprobe_dispatcher
-ffffffc00817b29c t process_fetch_insn
-ffffffc00817b9ec t probe_mem_read
-ffffffc00817bbb0 t fetch_store_strlen
-ffffffc00817bc00 t fetch_store_strlen_user
-ffffffc00817bc50 t __uprobe_trace_func
-ffffffc00817bdb4 t uprobe_perf_filter
-ffffffc00817be40 t __uprobe_perf_func
-ffffffc00817c04c t trace_uprobe_register
-ffffffc00817c394 t print_uprobe_event
-ffffffc00817c5d4 t uprobe_event_define_fields
-ffffffc00817c6cc t probe_event_enable
-ffffffc00817ca40 t uprobe_perf_close
-ffffffc00817cb74 t uprobe_buffer_disable
-ffffffc00817cc50 t probes_write
-ffffffc00817cc84 t probes_open
-ffffffc00817ccf4 t create_or_delete_trace_uprobe
-ffffffc00817cd50 t probes_seq_show
-ffffffc00817cd94 t profile_open
-ffffffc00817cde4 t probes_profile_seq_show
-ffffffc00817ce5c T irq_work_queue
-ffffffc00817cf70 T irq_work_queue_on
-ffffffc00817d0fc T irq_work_needs_cpu
-ffffffc00817d180 T irq_work_single
-ffffffc00817d230 T irq_work_run
-ffffffc00817d448 T irq_work_tick
-ffffffc00817d58c T irq_work_sync
-ffffffc00817d5c0 T cpu_pm_register_notifier
-ffffffc00817d634 T cpu_pm_unregister_notifier
-ffffffc00817d6a8 T cpu_pm_enter
-ffffffc00817d738 T cpu_pm_exit
-ffffffc00817d7a4 T cpu_cluster_pm_enter
-ffffffc00817d834 T cpu_cluster_pm_exit
-ffffffc00817d8a0 t cpu_pm_suspend
-ffffffc00817d984 t cpu_pm_resume
-ffffffc00817d9fc T bpf_internal_load_pointer_neg_helper
-ffffffc00817da98 T bpf_prog_alloc_no_stats
-ffffffc00817dbf8 T bpf_prog_alloc
-ffffffc00817dcc0 T bpf_prog_alloc_jited_linfo
-ffffffc00817dd40 T bpf_prog_jit_attempt_done
-ffffffc00817ddb0 T bpf_prog_fill_jited_linfo
-ffffffc00817de44 T bpf_prog_realloc
-ffffffc00817df0c T __bpf_prog_free
-ffffffc00817df70 T bpf_prog_calc_tag
-ffffffc00817e1b4 T bpf_patch_insn_single
-ffffffc00817e418 t bpf_adj_branches
-ffffffc00817e618 T bpf_remove_insns
-ffffffc00817e6b4 T bpf_prog_kallsyms_del_all
-ffffffc00817e6c4 T __bpf_call_base
-ffffffc00817e6d8 T bpf_opcode_in_insntable
-ffffffc00817e6f8 W bpf_probe_read_kernel
-ffffffc00817e730 T bpf_patch_call_args
-ffffffc00817e794 T bpf_prog_map_compatible
-ffffffc00817e878 T bpf_prog_select_runtime
-ffffffc00817eaf8 W bpf_int_jit_compile
-ffffffc00817eb08 T bpf_prog_array_alloc
-ffffffc00817eb58 T bpf_prog_array_free
-ffffffc00817eb9c T bpf_prog_array_free_sleepable
-ffffffc00817ebc4 T bpf_prog_array_length
-ffffffc00817ec0c T bpf_prog_array_is_empty
-ffffffc00817ec3c T bpf_prog_array_copy_to_user
-ffffffc00817ee88 T bpf_prog_array_delete_safe
-ffffffc00817eec8 T bpf_prog_array_delete_safe_at
-ffffffc00817ef30 T bpf_prog_array_update_at
-ffffffc00817ef98 T bpf_prog_array_copy
-ffffffc00817f1a8 T bpf_prog_array_copy_info
-ffffffc00817f254 T __bpf_free_used_maps
-ffffffc00817f2e0 T __bpf_free_used_btfs
-ffffffc00817f2f0 T bpf_prog_free
-ffffffc00817f350 t bpf_prog_free_deferred
-ffffffc00817f4c8 T bpf_user_rnd_init_once
-ffffffc00817f568 T bpf_user_rnd_u32
-ffffffc00817f600 T bpf_get_raw_cpu_id
-ffffffc00817f624 W bpf_get_trace_printk_proto
-ffffffc00817f638 W bpf_get_trace_vprintk_proto
-ffffffc00817f64c W bpf_event_output
-ffffffc00817f660 W bpf_jit_compile
-ffffffc00817f670 W bpf_jit_needs_zext
-ffffffc00817f684 W bpf_jit_supports_subprog_tailcalls
-ffffffc00817f698 W bpf_jit_supports_kfunc_call
-ffffffc00817f6ac W bpf_arch_text_poke
-ffffffc00817f6c0 W bpf_arch_text_copy
-ffffffc00817f6d4 W bpf_arch_text_invalidate
-ffffffc00817f6e8 T __traceiter_xdp_exception
-ffffffc00817f780 T __traceiter_xdp_bulk_tx
-ffffffc00817f828 T __traceiter_xdp_redirect
-ffffffc00817f8f0 T __traceiter_xdp_redirect_err
-ffffffc00817f9b8 T __traceiter_xdp_redirect_map
-ffffffc00817fa80 T __traceiter_xdp_redirect_map_err
-ffffffc00817fb48 T __traceiter_xdp_cpumap_kthread
-ffffffc00817fbf8 T __traceiter_xdp_cpumap_enqueue
-ffffffc00817fca0 T __traceiter_xdp_devmap_xmit
-ffffffc00817fd50 T __traceiter_mem_disconnect
-ffffffc00817fdd0 T __traceiter_mem_connect
-ffffffc00817fe60 T __traceiter_mem_return_failed
-ffffffc00817fef0 t trace_event_raw_event_xdp_exception
-ffffffc00817ffcc t perf_trace_xdp_exception
-ffffffc0081800f8 t trace_event_raw_event_xdp_bulk_tx
-ffffffc0081801d8 t perf_trace_xdp_bulk_tx
-ffffffc008180310 t trace_event_raw_event_xdp_redirect_template
-ffffffc008180460 t perf_trace_xdp_redirect_template
-ffffffc008180600 t trace_event_raw_event_xdp_cpumap_kthread
-ffffffc008180714 t perf_trace_xdp_cpumap_kthread
-ffffffc008180878 t trace_event_raw_event_xdp_cpumap_enqueue
-ffffffc008180968 t perf_trace_xdp_cpumap_enqueue
-ffffffc008180ab0 t trace_event_raw_event_xdp_devmap_xmit
-ffffffc008180ba0 t perf_trace_xdp_devmap_xmit
-ffffffc008180ce0 t trace_event_raw_event_mem_disconnect
-ffffffc008180db0 t perf_trace_mem_disconnect
-ffffffc008180ed4 t trace_event_raw_event_mem_connect
-ffffffc008180fb4 t perf_trace_mem_connect
-ffffffc0081810f0 t trace_event_raw_event_mem_return_failed
-ffffffc0081811bc t perf_trace_mem_return_failed
-ffffffc0081812e4 t __bpf_prog_run_args32
-ffffffc00818136c t __bpf_prog_run_args64
-ffffffc0081813fc t __bpf_prog_run_args96
-ffffffc008181494 t __bpf_prog_run_args128
-ffffffc008181534 t __bpf_prog_run_args160
-ffffffc0081815e4 t __bpf_prog_run_args192
-ffffffc00818169c t __bpf_prog_run_args224
-ffffffc00818175c t __bpf_prog_run_args256
-ffffffc008181824 t __bpf_prog_run_args288
-ffffffc0081818ec t __bpf_prog_run_args320
-ffffffc0081819b4 t __bpf_prog_run_args352
-ffffffc008181a7c t __bpf_prog_run_args384
-ffffffc008181b44 t __bpf_prog_run_args416
-ffffffc008181c0c t __bpf_prog_run_args448
-ffffffc008181cd4 t __bpf_prog_run_args480
-ffffffc008181d9c t __bpf_prog_run_args512
-ffffffc008181e60 t ___bpf_prog_run
-ffffffc008184170 t __bpf_prog_run32
-ffffffc0081841f4 t __bpf_prog_run64
-ffffffc008184280 t __bpf_prog_run96
-ffffffc008184314 t __bpf_prog_run128
-ffffffc0081843b0 t __bpf_prog_run160
-ffffffc00818445c t __bpf_prog_run192
-ffffffc008184510 t __bpf_prog_run224
-ffffffc0081845cc t __bpf_prog_run256
-ffffffc008184690 t __bpf_prog_run288
-ffffffc008184738 t __bpf_prog_run320
-ffffffc0081847e0 t __bpf_prog_run352
-ffffffc008184888 t __bpf_prog_run384
-ffffffc008184930 t __bpf_prog_run416
-ffffffc0081849d8 t __bpf_prog_run448
-ffffffc008184a80 t __bpf_prog_run480
-ffffffc008184b28 t __bpf_prog_run512
-ffffffc008184bd0 t __bpf_prog_ret1
-ffffffc008184be4 t trace_raw_output_xdp_exception
-ffffffc008184c74 t trace_raw_output_xdp_bulk_tx
-ffffffc008184d08 t trace_raw_output_xdp_redirect_template
-ffffffc008184dac t trace_raw_output_xdp_cpumap_kthread
-ffffffc008184e68 t trace_raw_output_xdp_cpumap_enqueue
-ffffffc008184f0c t trace_raw_output_xdp_devmap_xmit
-ffffffc008184fb0 t trace_raw_output_mem_disconnect
-ffffffc008185040 t trace_raw_output_mem_connect
-ffffffc0081850d4 t trace_raw_output_mem_return_failed
-ffffffc008185164 T scs_alloc
-ffffffc008185380 T scs_free
-ffffffc008185530 t scs_cleanup.llvm.13873195385027949927
-ffffffc0081855a0 T scs_prepare
-ffffffc0081855f4 T scs_release
-ffffffc008185728 T report_cfi_failure
-ffffffc008185778 T perf_proc_update_handler
-ffffffc008185854 T perf_cpu_time_max_percent_handler
-ffffffc008185900 T perf_sample_event_took
-ffffffc0081859e4 W perf_event_print_debug
-ffffffc0081859f4 T perf_pmu_disable
-ffffffc008185a58 T perf_pmu_enable
-ffffffc008185abc T perf_event_disable_local
-ffffffc008185c30 t __perf_event_disable
-ffffffc008185cd0 T perf_event_disable
-ffffffc008185d58 t _perf_event_disable
-ffffffc008185dc8 T perf_event_disable_inatomic
-ffffffc008185e04 T perf_pmu_resched
-ffffffc008185e9c t ctx_resched
-ffffffc00818600c T perf_event_enable
-ffffffc0081860c8 t _perf_event_enable
-ffffffc008186164 T perf_event_addr_filters_sync
-ffffffc008186204 T perf_event_refresh
-ffffffc00818626c t _perf_event_refresh
-ffffffc00818634c T perf_sched_cb_dec
-ffffffc008186440 T perf_sched_cb_inc
-ffffffc00818654c T __perf_event_task_sched_out
-ffffffc008186b38 T __perf_event_task_sched_in
-ffffffc008186c60 t perf_event_context_sched_in
-ffffffc008186e28 T perf_event_task_tick
-ffffffc00818724c T perf_event_read_local
-ffffffc008187430 T perf_event_release_kernel
-ffffffc00818788c t perf_remove_from_owner
-ffffffc0081879f0 t put_ctx
-ffffffc008187b08 T perf_event_read_value
-ffffffc008187b78 t __perf_event_read_value
-ffffffc008187cbc T perf_event_pause
-ffffffc008187d78 T perf_event_period
-ffffffc008187e80 T perf_event_task_enable
-ffffffc008188070 T perf_event_task_disable
-ffffffc0081881d0 T perf_event_update_userpage
-ffffffc0081883bc T ring_buffer_get
-ffffffc0081884a4 T ring_buffer_put
-ffffffc00818854c t rb_free_rcu
-ffffffc00818857c T perf_event_wakeup
-ffffffc008188638 T perf_event_header__init_id
-ffffffc00818866c t __perf_event_header__init_id
-ffffffc0081887a4 T perf_event__output_id_sample
-ffffffc008188880 T perf_output_sample
-ffffffc008189318 t perf_output_read
-ffffffc008189884 T perf_callchain
-ffffffc008189918 T perf_prepare_sample
-ffffffc008189fec t perf_get_page_size
-ffffffc00818a180 T perf_event_output_forward
-ffffffc00818a254 T perf_event_output_backward
-ffffffc00818a328 T perf_event_output
-ffffffc00818a404 T perf_event_exec
-ffffffc00818a8dc t perf_iterate_ctx
-ffffffc00818aa78 T perf_event_fork
-ffffffc00818ab40 T perf_event_namespaces
-ffffffc00818ac40 T perf_event_comm
-ffffffc00818ad18 t perf_iterate_sb
-ffffffc00818af74 t perf_event_namespaces_output
-ffffffc00818b118 T perf_event_mmap
-ffffffc00818b660 T perf_event_aux_event
-ffffffc00818b78c T perf_log_lost_samples
-ffffffc00818b8b4 T perf_event_ksymbol
-ffffffc00818baf8 t perf_event_ksymbol_output
-ffffffc00818bcb4 T perf_event_bpf_event
-ffffffc00818bdf8 t perf_event_bpf_output
-ffffffc00818bf20 T perf_event_text_poke
-ffffffc00818bfdc t perf_event_text_poke_output
-ffffffc00818c2d0 T perf_event_itrace_started
-ffffffc00818c2ec T perf_report_aux_output_id
-ffffffc00818c41c T perf_event_account_interrupt
-ffffffc00818c448 t __perf_event_account_interrupt
-ffffffc00818c550 T perf_event_overflow
-ffffffc00818c584 t __perf_event_overflow.llvm.5148550252067923913
-ffffffc00818c78c T perf_swevent_set_period
-ffffffc00818c814 T perf_swevent_get_recursion_context
-ffffffc00818c890 T perf_swevent_put_recursion_context
-ffffffc00818c8c4 T ___perf_sw_event
-ffffffc00818ca84 T __perf_sw_event
-ffffffc00818cb78 T perf_trace_run_bpf_submit
-ffffffc00818cc10 T perf_tp_event
-ffffffc00818cea0 t perf_swevent_event
-ffffffc00818d05c T perf_event_set_bpf_prog
-ffffffc00818d14c T perf_event_free_bpf_prog
-ffffffc00818d15c T perf_bp_event
-ffffffc00818d258 t nr_addr_filters_show
-ffffffc00818d2a4 T perf_pmu_register
-ffffffc00818d73c t pmu_dev_alloc
-ffffffc00818d858 t perf_pmu_start_txn
-ffffffc00818d8d8 t perf_pmu_commit_txn
-ffffffc00818d960 t perf_pmu_cancel_txn
-ffffffc00818d9e4 t perf_pmu_nop_txn
-ffffffc00818d9f4 t perf_pmu_nop_int
-ffffffc00818da08 t perf_pmu_nop_void
-ffffffc00818da18 t perf_event_nop_int
-ffffffc00818da2c t perf_event_idx_default
-ffffffc00818da40 T perf_pmu_unregister
-ffffffc00818db34 T __arm64_sys_perf_event_open
-ffffffc00818efb4 T perf_event_create_kernel_counter
-ffffffc00818f1f0 t perf_event_alloc
-ffffffc00818f96c t find_get_context
-ffffffc00818fce0 t perf_install_in_context
-ffffffc00818ff0c T perf_pmu_migrate_context
-ffffffc008190290 T perf_event_exit_task
-ffffffc00819064c T perf_event_free_task
-ffffffc0081909ac T perf_event_delayed_put
-ffffffc0081909e4 T perf_event_get
-ffffffc008190a30 T perf_get_event
-ffffffc008190a64 T perf_event_attrs
-ffffffc008190a84 T perf_event_init_task
-ffffffc008190d5c T perf_event_init_cpu
-ffffffc008190ebc T perf_event_exit_cpu
-ffffffc008190fec T perf_event_sysfs_show
-ffffffc00819103c t __static_call_return0
-ffffffc008191050 t perf_duration_warn
-ffffffc0081910b4 t group_sched_out
-ffffffc0081911c8 t event_sched_out
-ffffffc008191498 t perf_event_set_state
-ffffffc00819156c t local_clock
-ffffffc008191594 t perf_event_update_time
-ffffffc0081915e4 t perf_event_ctx_lock_nested
-ffffffc0081916f8 t event_function_call
-ffffffc008191890 t event_function
-ffffffc0081919a8 t remote_function
-ffffffc008191a40 t ctx_sched_out
-ffffffc008191c24 t ctx_sched_in
-ffffffc008191cec t ctx_pinned_sched_in
-ffffffc008191d70 t ctx_flexible_sched_in
-ffffffc008191df4 t visit_groups_merge
-ffffffc0081925a4 t perf_mux_hrtimer_restart
-ffffffc008192674 t event_sched_in
-ffffffc008192a2c t perf_log_throttle
-ffffffc008192ba8 t __perf_event_enable
-ffffffc008192d9c t __perf_pmu_sched_task
-ffffffc008192ed0 t perf_adjust_period
-ffffffc008193110 t __perf_remove_from_context
-ffffffc008193470 t perf_group_detach
-ffffffc0081939b0 t list_del_event
-ffffffc008193b00 t _free_event
-ffffffc008194164 t ring_buffer_attach
-ffffffc0081943e0 t perf_addr_filters_splice
-ffffffc008194544 t exclusive_event_destroy
-ffffffc0081945e4 t free_event_rcu
-ffffffc008194630 t perf_sched_delayed
-ffffffc0081946d0 t __perf_event_stop
-ffffffc0081947b4 t free_ctx
-ffffffc008194804 t perf_event_read
-ffffffc008194a8c t __perf_event_read
-ffffffc008194cfc t __perf_event_period
-ffffffc008194e50 t perf_event_exit_event
-ffffffc00819502c t perf_lock_task_context
-ffffffc0081951e0 t perf_event_task_output
-ffffffc008195478 t perf_event_comm_output
-ffffffc0081956b0 t perf_event_mmap_output
-ffffffc008195af4 t perf_event_switch_output
-ffffffc008195cdc t perf_tp_event_init
-ffffffc008195d4c t perf_swevent_start
-ffffffc008195d60 t perf_swevent_stop
-ffffffc008195d78 t perf_swevent_read
-ffffffc008195d88 t tp_perf_event_destroy
-ffffffc008195db4 t perf_uprobe_event_init
-ffffffc008195e58 t retprobe_show
-ffffffc008195e84 t ref_ctr_offset_show
-ffffffc008195eb0 t pmu_dev_release
-ffffffc008195edc t perf_event_mux_interval_ms_show
-ffffffc008195f28 t perf_event_mux_interval_ms_store
-ffffffc0081960bc t perf_mux_hrtimer_handler
-ffffffc0081964f0 t perf_copy_attr
-ffffffc008196b1c t perf_allow_kernel
-ffffffc008196b88 t perf_event_set_output
-ffffffc008196d7c t ktime_get_real_ns
-ffffffc008196dac t ktime_get_boottime_ns
-ffffffc008196ddc t ktime_get_clocktai_ns
-ffffffc008196e0c t perf_pending_irq
-ffffffc008196fc8 t perf_pending_task
-ffffffc0081971a0 t account_event
-ffffffc0081976b0 t perf_try_init_event
-ffffffc0081977f8 t alloc_perf_context
-ffffffc00819790c t add_event_to_ctx
-ffffffc008197cec t __perf_install_in_context
-ffffffc008197e50 t perf_read
-ffffffc008198358 t perf_poll
-ffffffc008198460 t perf_ioctl
-ffffffc0081992e0 t perf_mmap
-ffffffc008199894 t perf_release
-ffffffc0081998c8 t perf_fasync
-ffffffc00819994c t __perf_read_group_add
-ffffffc008199b24 t _perf_event_reset
-ffffffc008199b6c t perf_event_addr_filters_apply
-ffffffc008199e90 t perf_event_modify_breakpoint
-ffffffc008199f88 t get_uid
-ffffffc00819a00c t get_uid
-ffffffc00819a090 t get_uid
-ffffffc00819a114 t perf_event_init_userpage
-ffffffc00819a190 t perf_mmap_open
-ffffffc00819a298 t perf_mmap_close
-ffffffc00819a784 t perf_mmap_fault
-ffffffc00819a88c t __perf_pmu_output_stop
-ffffffc00819a940 t __perf_event_output_stop
-ffffffc00819aa18 t inherit_task_group
-ffffffc00819ac3c t inherit_event
-ffffffc00819b09c t __perf_event_exit_context
-ffffffc00819b148 t perf_swevent_init
-ffffffc00819b388 t perf_swevent_add
-ffffffc00819b4b8 t perf_swevent_del
-ffffffc00819b4e4 t sw_perf_event_destroy
-ffffffc00819b5f8 t cpu_clock_event_init
-ffffffc00819b6b4 t cpu_clock_event_add
-ffffffc00819b74c t cpu_clock_event_del
-ffffffc00819b804 t cpu_clock_event_start
-ffffffc00819b88c t cpu_clock_event_stop
-ffffffc00819b944 t cpu_clock_event_read
-ffffffc00819b9d8 t perf_swevent_hrtimer
-ffffffc00819bb8c t task_clock_event_init
-ffffffc00819bc4c t task_clock_event_add
-ffffffc00819bce8 t task_clock_event_del
-ffffffc00819bda4 t task_clock_event_start
-ffffffc00819be28 t task_clock_event_stop
-ffffffc00819bee4 t task_clock_event_read
-ffffffc00819bf88 t perf_reboot
-ffffffc00819c004 T perf_output_begin_forward
-ffffffc00819c388 T perf_output_begin_backward
-ffffffc00819c710 T perf_output_begin
-ffffffc00819cac0 T perf_output_copy
-ffffffc00819cb94 T perf_output_skip
-ffffffc00819cc1c T perf_output_end
-ffffffc00819cc48 t perf_output_put_handle.llvm.16860358907824914780
-ffffffc00819cd5c T perf_aux_output_flag
-ffffffc00819cd88 T perf_aux_output_begin
-ffffffc00819cfe8 T rb_free_aux
-ffffffc00819d074 T perf_aux_output_end
-ffffffc00819d200 T perf_aux_output_skip
-ffffffc00819d2e0 T perf_get_aux
-ffffffc00819d30c T perf_output_copy_aux
-ffffffc00819d468 T rb_alloc_aux
-ffffffc00819d764 t __rb_free_aux
-ffffffc00819d884 T rb_alloc
-ffffffc00819dac8 T rb_free
-ffffffc00819db80 T perf_mmap_to_page
-ffffffc00819dc18 T get_callchain_buffers
-ffffffc00819de28 T put_callchain_buffers
-ffffffc00819de8c T get_callchain_entry
-ffffffc00819df88 T put_callchain_entry
-ffffffc00819dfbc T get_perf_callchain
-ffffffc00819e224 T perf_event_max_stack_handler
-ffffffc00819e310 t release_callchain_buffers_rcu
-ffffffc00819e39c W arch_reserve_bp_slot
-ffffffc00819e3b0 W arch_release_bp_slot
-ffffffc00819e3c0 W arch_unregister_hw_breakpoint
-ffffffc00819e3d0 T reserve_bp_slot
-ffffffc00819e424 t bp_constraints_lock
-ffffffc00819e568 t __reserve_bp_slot
-ffffffc00819e888 t bp_constraints_unlock
-ffffffc00819ea2c T release_bp_slot
-ffffffc00819eaac T dbg_reserve_bp_slot
-ffffffc00819eb38 T dbg_release_bp_slot
-ffffffc00819ebec T register_perf_hw_breakpoint
-ffffffc00819ed2c T register_user_hw_breakpoint
-ffffffc00819ed6c T modify_user_hw_breakpoint_check
-ffffffc00819ef74 T modify_user_hw_breakpoint
-ffffffc00819f014 T unregister_hw_breakpoint
-ffffffc00819f044 T register_wide_hw_breakpoint
-ffffffc00819f1b0 T unregister_wide_hw_breakpoint
-ffffffc00819f260 T hw_breakpoint_is_used
-ffffffc00819f474 t toggle_bp_slot
-ffffffc0081a03f0 t task_bp_pinned
-ffffffc0081a05d8 t hw_breakpoint_event_init
-ffffffc0081a0648 t hw_breakpoint_add
-ffffffc0081a06ac t hw_breakpoint_del
-ffffffc0081a06dc t hw_breakpoint_start
-ffffffc0081a06f0 t hw_breakpoint_stop
-ffffffc0081a0708 t bp_perf_event_destroy
-ffffffc0081a0788 W is_swbp_insn
-ffffffc0081a07ac W is_trap_insn
-ffffffc0081a07dc T uprobe_write_opcode
-ffffffc0081a11c0 t update_ref_ctr
-ffffffc0081a14a0 W set_swbp
-ffffffc0081a14d4 W set_orig_insn
-ffffffc0081a1504 T uprobe_unregister
-ffffffc0081a1578 t find_uprobe
-ffffffc0081a1660 t __uprobe_unregister
-ffffffc0081a1754 t put_uprobe
-ffffffc0081a188c T uprobe_register
-ffffffc0081a18bc t __uprobe_register.llvm.12340522479091171176
-ffffffc0081a1bdc T uprobe_register_refctr
-ffffffc0081a1c08 T uprobe_apply
-ffffffc0081a1cb4 t register_for_each_vma
-ffffffc0081a2168 T uprobe_mmap
-ffffffc0081a2678 t install_breakpoint
-ffffffc0081a29f8 T uprobe_munmap
-ffffffc0081a2b64 T uprobe_clear_state
-ffffffc0081a2cb8 T uprobe_start_dup_mmap
-ffffffc0081a2dd0 T uprobe_end_dup_mmap
-ffffffc0081a2f54 T uprobe_dup_mmap
-ffffffc0081a2fd8 T uprobe_get_trap_addr
-ffffffc0081a300c T uprobe_free_utask
-ffffffc0081a3090 t xol_free_insn_slot
-ffffffc0081a31ac T uprobe_copy_process
-ffffffc0081a3388 t dup_xol_work
-ffffffc0081a3404 T uprobe_deny_signal
-ffffffc0081a3504 W arch_uprobe_ignore
-ffffffc0081a3518 T uprobe_notify_resume
-ffffffc0081a4328 T uprobe_pre_sstep_notifier
-ffffffc0081a4394 T uprobe_post_sstep_notifier
-ffffffc0081a4400 t __update_ref_ctr
-ffffffc0081a45c4 t __create_xol_area
-ffffffc0081a4838 T jump_label_lock
-ffffffc0081a486c T jump_label_unlock
-ffffffc0081a48a0 T static_key_count
-ffffffc0081a48c0 T static_key_slow_inc_cpuslocked
-ffffffc0081a49e8 t jump_label_update
-ffffffc0081a4b24 T static_key_slow_inc
-ffffffc0081a4b68 T static_key_enable_cpuslocked
-ffffffc0081a4c2c T static_key_enable
-ffffffc0081a4cf8 T static_key_disable_cpuslocked
-ffffffc0081a4dec T static_key_disable
-ffffffc0081a4e30 T jump_label_update_timeout
-ffffffc0081a4e74 T static_key_slow_dec
-ffffffc0081a4ee4 T static_key_slow_dec_cpuslocked
-ffffffc0081a4f48 t __static_key_slow_dec_cpuslocked
-ffffffc0081a5058 T __static_key_slow_dec_deferred
-ffffffc0081a5160 T __static_key_deferred_flush
-ffffffc0081a51c8 T jump_label_rate_limit
-ffffffc0081a5268 T jump_label_text_reserved
-ffffffc0081a52ec t jump_label_swap
-ffffffc0081a5340 t jump_label_cmp
-ffffffc0081a53ac t trace_rcu_dyntick
-ffffffc0081a5468 t arch_local_irq_save
-ffffffc0081a54ac t arch_local_irq_restore
-ffffffc0081a54c4 T ct_irq_enter_irqson
-ffffffc0081a5530 T ct_irq_exit_irqson
-ffffffc0081a559c T memremap
-ffffffc0081a57ec T memunmap
-ffffffc0081a5830 T devm_memremap
-ffffffc0081a58ec t devm_memremap_release
-ffffffc0081a5934 T devm_memunmap
-ffffffc0081a5980 t devm_memremap_match
-ffffffc0081a599c T __traceiter_rseq_update
-ffffffc0081a5a1c T __traceiter_rseq_ip_fixup
-ffffffc0081a5ac4 t trace_event_raw_event_rseq_update
-ffffffc0081a5b84 t perf_trace_rseq_update
-ffffffc0081a5ca0 t trace_event_raw_event_rseq_ip_fixup
-ffffffc0081a5d74 t perf_trace_rseq_ip_fixup
-ffffffc0081a5ea0 T __rseq_handle_notify_resume
-ffffffc0081a69a8 T __arm64_sys_rseq
-ffffffc0081a6d6c t trace_raw_output_rseq_update
-ffffffc0081a6de0 t trace_raw_output_rseq_ip_fixup
-ffffffc0081a6e54 t clear_rseq_cs
-ffffffc0081a6fa8 T __traceiter_mm_filemap_delete_from_page_cache
-ffffffc0081a7028 T __traceiter_mm_filemap_add_to_page_cache
-ffffffc0081a70a8 T __traceiter_filemap_set_wb_err
-ffffffc0081a7138 T __traceiter_file_check_and_advance_wb_err
-ffffffc0081a71c8 t trace_event_raw_event_mm_filemap_op_page_cache
-ffffffc0081a72f0 t perf_trace_mm_filemap_op_page_cache
-ffffffc0081a746c t trace_event_raw_event_filemap_set_wb_err
-ffffffc0081a7554 t perf_trace_filemap_set_wb_err
-ffffffc0081a7698 t trace_event_raw_event_file_check_and_advance_wb_err
-ffffffc0081a7790 t perf_trace_file_check_and_advance_wb_err
-ffffffc0081a78e4 T __filemap_remove_folio
-ffffffc0081a7b10 t filemap_unaccount_folio
-ffffffc0081a7d10 T filemap_free_folio
-ffffffc0081a7dd4 T filemap_remove_folio
-ffffffc0081a7f1c T delete_from_page_cache_batch
-ffffffc0081a8338 T filemap_check_errors
-ffffffc0081a83f4 T filemap_fdatawrite_wbc
-ffffffc0081a8458 T __filemap_fdatawrite_range
-ffffffc0081a84f8 T filemap_fdatawrite
-ffffffc0081a8598 T filemap_fdatawrite_range
-ffffffc0081a8638 T filemap_flush
-ffffffc0081a86d4 T filemap_range_has_page
-ffffffc0081a87a8 T filemap_fdatawait_range
-ffffffc0081a8884 t __filemap_fdatawait_range.llvm.15642985342680106969
-ffffffc0081a89f0 T filemap_fdatawait_range_keep_errors
-ffffffc0081a8a48 T file_fdatawait_range
-ffffffc0081a8a8c T file_check_and_advance_wb_err
-ffffffc0081a8c5c T filemap_fdatawait_keep_errors
-ffffffc0081a8cbc T filemap_range_has_writeback
-ffffffc0081a8e44 T filemap_write_and_wait_range
-ffffffc0081a8fd0 T __filemap_set_wb_err
-ffffffc0081a90e8 T file_write_and_wait_range
-ffffffc0081a91f0 T replace_page_cache_page
-ffffffc0081a9424 t folio_put
-ffffffc0081a9490 t folio_put
-ffffffc0081a94fc t folio_put
-ffffffc0081a956c T __filemap_add_folio
-ffffffc0081a99c8 T filemap_add_folio
-ffffffc0081a9a98 T filemap_invalidate_lock_two
-ffffffc0081a9af4 T filemap_invalidate_unlock_two
-ffffffc0081a9b4c T migration_entry_wait_on_locked
-ffffffc0081a9dec t wake_page_function
-ffffffc0081a9f10 T folio_wait_bit
-ffffffc0081a9f40 t folio_wait_bit_common.llvm.15642985342680106969
-ffffffc0081aa2fc T folio_wait_bit_killable
-ffffffc0081aa330 T folio_add_wait_queue
-ffffffc0081aa418 T folio_unlock
-ffffffc0081aa478 t folio_wake_bit
-ffffffc0081aa5d0 T folio_end_private_2
-ffffffc0081aa688 T folio_wait_private_2
-ffffffc0081aa6e0 T folio_wait_private_2_killable
-ffffffc0081aa744 T folio_end_writeback
-ffffffc0081aa87c T page_endio
-ffffffc0081aaa74 T __folio_lock
-ffffffc0081aaaac T __folio_lock_killable
-ffffffc0081aaae4 T __folio_lock_or_retry
-ffffffc0081aabec T page_cache_next_miss
-ffffffc0081aace8 T page_cache_prev_miss
-ffffffc0081aade0 T __filemap_get_folio
-ffffffc0081ab23c T find_get_entries
-ffffffc0081ab30c t find_get_entry
-ffffffc0081ab484 T find_lock_entries
-ffffffc0081ab698 T filemap_get_folios
-ffffffc0081ab794 T filemap_get_folios_contig
-ffffffc0081aba2c T find_get_pages_range_tag
-ffffffc0081abb44 T filemap_read
-ffffffc0081ac710 T generic_file_read_iter
-ffffffc0081ac86c T mapping_seek_hole_data
-ffffffc0081acc60 T filemap_fault
-ffffffc0081ad2c0 t count_vm_event
-ffffffc0081ad360 t count_vm_event
-ffffffc0081ad400 t count_vm_event
-ffffffc0081ad4a0 t do_sync_mmap_readahead
-ffffffc0081ad764 t filemap_read_folio
-ffffffc0081ad8d0 T filemap_map_pages
-ffffffc0081ade74 T filemap_page_mkwrite
-ffffffc0081ae1b0 T generic_file_mmap
-ffffffc0081ae21c T generic_file_readonly_mmap
-ffffffc0081ae2a4 T read_cache_folio
-ffffffc0081ae2d0 t do_read_cache_folio.llvm.15642985342680106969
-ffffffc0081ae600 T read_cache_page
-ffffffc0081ae664 T read_cache_page_gfp
-ffffffc0081ae6d0 T dio_warn_stale_pagecache
-ffffffc0081ae7c4 T generic_file_direct_write
-ffffffc0081aea70 T generic_perform_write
-ffffffc0081aec78 T __generic_file_write_iter
-ffffffc0081aedc8 T generic_file_write_iter
-ffffffc0081aeeb0 T filemap_release_folio
-ffffffc0081aef30 t trace_raw_output_mm_filemap_op_page_cache
-ffffffc0081aefbc t trace_raw_output_filemap_set_wb_err
-ffffffc0081af03c t trace_raw_output_file_check_and_advance_wb_err
-ffffffc0081af0bc t page_mapcount
-ffffffc0081af110 t filemap_get_read_batch
-ffffffc0081af3b8 t next_uptodate_page
-ffffffc0081af6b0 T mempool_exit
-ffffffc0081af7bc t remove_element
-ffffffc0081af874 T mempool_destroy
-ffffffc0081af8b8 T mempool_init_node
-ffffffc0081afa58 T mempool_init
-ffffffc0081afa8c T mempool_create
-ffffffc0081afb30 T mempool_create_node
-ffffffc0081afc08 T mempool_resize
-ffffffc0081aff18 T mempool_alloc
-ffffffc0081b010c T mempool_free
-ffffffc0081b026c T mempool_alloc_slab
-ffffffc0081b02a4 T mempool_free_slab
-ffffffc0081b02dc T mempool_kmalloc
-ffffffc0081b0314 T mempool_kfree
-ffffffc0081b0340 T mempool_alloc_pages
-ffffffc0081b037c T mempool_free_pages
-ffffffc0081b03a8 T __traceiter_oom_score_adj_update
-ffffffc0081b0428 T __traceiter_reclaim_retry_zone
-ffffffc0081b04f0 T __traceiter_mark_victim
-ffffffc0081b0570 T __traceiter_wake_reaper
-ffffffc0081b05f0 T __traceiter_start_task_reaping
-ffffffc0081b0670 T __traceiter_finish_task_reaping
-ffffffc0081b06f0 T __traceiter_skip_task_reaping
-ffffffc0081b0770 T __traceiter_compact_retry
-ffffffc0081b0830 t trace_event_raw_event_oom_score_adj_update
-ffffffc0081b0908 t perf_trace_oom_score_adj_update
-ffffffc0081b0a34 t trace_event_raw_event_reclaim_retry_zone
-ffffffc0081b0b3c t perf_trace_reclaim_retry_zone
-ffffffc0081b0c94 t trace_event_raw_event_mark_victim
-ffffffc0081b0d4c t perf_trace_mark_victim
-ffffffc0081b0e58 t trace_event_raw_event_wake_reaper
-ffffffc0081b0f10 t perf_trace_wake_reaper
-ffffffc0081b101c t trace_event_raw_event_start_task_reaping
-ffffffc0081b10d4 t perf_trace_start_task_reaping
-ffffffc0081b11e0 t trace_event_raw_event_finish_task_reaping
-ffffffc0081b1298 t perf_trace_finish_task_reaping
-ffffffc0081b13a4 t trace_event_raw_event_skip_task_reaping
-ffffffc0081b145c t perf_trace_skip_task_reaping
-ffffffc0081b1568 t trace_event_raw_event_compact_retry
-ffffffc0081b1678 t perf_trace_compact_retry
-ffffffc0081b17e0 T find_lock_task_mm
-ffffffc0081b1894 T oom_badness
-ffffffc0081b1a58 T process_shares_mm
-ffffffc0081b1ac4 T exit_oom_victim
-ffffffc0081b1b80 T oom_killer_enable
-ffffffc0081b1bbc T oom_killer_disable
-ffffffc0081b1d54 T register_oom_notifier
-ffffffc0081b1d8c T unregister_oom_notifier
-ffffffc0081b1dc4 T out_of_memory
-ffffffc0081b2258 t task_will_free_mem
-ffffffc0081b23bc t mark_oom_victim
-ffffffc0081b25d4 t queue_oom_reaper
-ffffffc0081b26d0 t oom_kill_process
-ffffffc0081b2cf0 t dump_header
-ffffffc0081b30a8 T pagefault_out_of_memory
-ffffffc0081b310c T __arm64_sys_process_mrelease
-ffffffc0081b33b0 t trace_raw_output_oom_score_adj_update
-ffffffc0081b342c t trace_raw_output_reclaim_retry_zone
-ffffffc0081b34e0 t trace_raw_output_mark_victim
-ffffffc0081b3554 t trace_raw_output_wake_reaper
-ffffffc0081b35c8 t trace_raw_output_start_task_reaping
-ffffffc0081b363c t trace_raw_output_finish_task_reaping
-ffffffc0081b36b0 t trace_raw_output_skip_task_reaping
-ffffffc0081b3724 t trace_raw_output_compact_retry
-ffffffc0081b37e4 t oom_reaper
-ffffffc0081b3dfc t __oom_reap_task_mm
-ffffffc0081b3f3c t wake_oom_reaper
-ffffffc0081b4104 T generic_fadvise
-ffffffc0081b4380 T vfs_fadvise
-ffffffc0081b43d8 T ksys_fadvise64_64
-ffffffc0081b44a8 T __arm64_sys_fadvise64_64
-ffffffc0081b457c W copy_from_kernel_nofault_allowed
-ffffffc0081b4590 T copy_from_kernel_nofault
-ffffffc0081b474c T copy_to_kernel_nofault
-ffffffc0081b48bc T strncpy_from_kernel_nofault
-ffffffc0081b49ac T copy_from_user_nofault
-ffffffc0081b4b6c T copy_to_user_nofault
-ffffffc0081b4d2c T strncpy_from_user_nofault
-ffffffc0081b4dbc T strnlen_user_nofault
-ffffffc0081b4e10 T __copy_overflow
-ffffffc0081b4e50 T global_dirty_limits
-ffffffc0081b4f3c t domain_dirty_limits
-ffffffc0081b509c T node_dirty_ok
-ffffffc0081b5258 T wb_writeout_inc
-ffffffc0081b533c T wb_domain_init
-ffffffc0081b53d8 t writeout_period
-ffffffc0081b5474 T bdi_set_min_ratio
-ffffffc0081b5518 T bdi_set_max_ratio
-ffffffc0081b55b4 T wb_calc_thresh
-ffffffc0081b56a4 T wb_update_bandwidth
-ffffffc0081b5718 t __wb_update_bandwidth
-ffffffc0081b5a98 T balance_dirty_pages_ratelimited_flags
-ffffffc0081b5be4 t balance_dirty_pages
-ffffffc0081b6520 T balance_dirty_pages_ratelimited
-ffffffc0081b6550 T wb_over_bg_thresh
-ffffffc0081b6744 T laptop_mode_timer_fn
-ffffffc0081b678c T laptop_io_completion
-ffffffc0081b67d4 T laptop_sync_completion
-ffffffc0081b683c T writeback_set_ratelimit
-ffffffc0081b6948 t page_writeback_cpu_online
-ffffffc0081b6a58 T tag_pages_for_writeback
-ffffffc0081b6bc8 T write_cache_pages
-ffffffc0081b7058 T generic_writepages
-ffffffc0081b710c t __writepage
-ffffffc0081b7204 T do_writepages
-ffffffc0081b7428 T folio_write_one
-ffffffc0081b75bc T folio_wait_writeback
-ffffffc0081b76b8 T folio_clear_dirty_for_io
-ffffffc0081b78bc T noop_dirty_folio
-ffffffc0081b7914 T folio_account_cleaned
-ffffffc0081b79d0 T __folio_mark_dirty
-ffffffc0081b7c00 T filemap_dirty_folio
-ffffffc0081b7c98 T folio_account_redirty
-ffffffc0081b7d58 T folio_redirty_for_writepage
-ffffffc0081b7e28 T folio_mark_dirty
-ffffffc0081b7f08 T set_page_dirty_lock
-ffffffc0081b7fc4 T __folio_cancel_dirty
-ffffffc0081b8108 T __folio_end_writeback
-ffffffc0081b83f4 T __folio_start_writeback
-ffffffc0081b8688 T folio_wait_writeback_killable
-ffffffc0081b878c T folio_wait_stable
-ffffffc0081b87c8 t wb_dirty_limits
-ffffffc0081b8958 t dirty_background_ratio_handler
-ffffffc0081b89a0 t dirty_background_bytes_handler
-ffffffc0081b89f0 t dirty_ratio_handler
-ffffffc0081b8b40 t dirty_bytes_handler
-ffffffc0081b8c98 t dirty_writeback_centisecs_handler
-ffffffc0081b8d2c T page_mapping
-ffffffc0081b8d70 T unlock_page
-ffffffc0081b8db4 T end_page_writeback
-ffffffc0081b8df8 T wait_on_page_writeback
-ffffffc0081b8e3c T wait_for_stable_page
-ffffffc0081b8e80 T page_mapped
-ffffffc0081b8ec8 T mark_page_accessed
-ffffffc0081b8f0c T set_page_writeback
-ffffffc0081b8f58 T set_page_dirty
-ffffffc0081b8fa0 T __set_page_dirty_nobuffers
-ffffffc0081b9010 T clear_page_dirty_for_io
-ffffffc0081b9058 T redirty_page_for_writepage
-ffffffc0081b90a0 T lru_cache_add
-ffffffc0081b90e4 T lru_cache_add_inactive_or_unevictable
-ffffffc0081b9128 T add_to_page_cache_lru
-ffffffc0081b9178 T pagecache_get_page
-ffffffc0081b91e0 T grab_cache_page_write_begin
-ffffffc0081b9214 T delete_from_page_cache
-ffffffc0081b9258 T try_to_release_page
-ffffffc0081b92a0 T isolate_lru_page
-ffffffc0081b9314 T putback_lru_page
-ffffffc0081b9358 T file_ra_state_init
-ffffffc0081b93a4 T readahead_gfp_mask
-ffffffc0081b93c4 T page_cache_ra_unbounded
-ffffffc0081b95c0 t read_pages
-ffffffc0081b9930 T force_page_cache_ra
-ffffffc0081b9a0c t do_page_cache_ra
-ffffffc0081b9a68 T page_cache_ra_order
-ffffffc0081b9d38 T page_cache_sync_ra
-ffffffc0081b9e54 t ondemand_readahead
-ffffffc0081ba0dc T page_cache_async_ra
-ffffffc0081ba148 T ksys_readahead
-ffffffc0081ba204 T __arm64_sys_readahead
-ffffffc0081ba2c4 T readahead_expand
-ffffffc0081ba564 T __traceiter_mm_lru_insertion
-ffffffc0081ba5e4 T __traceiter_mm_lru_activate
-ffffffc0081ba664 t trace_event_raw_event_mm_lru_insertion
-ffffffc0081ba7e0 t perf_trace_mm_lru_insertion
-ffffffc0081ba9b8 t trace_event_raw_event_mm_lru_activate
-ffffffc0081baa8c t perf_trace_mm_lru_activate
-ffffffc0081babb4 T __folio_put
-ffffffc0081bac08 T put_pages_list
-ffffffc0081bad30 T get_kernel_pages
-ffffffc0081bae08 T folio_rotate_reclaimable
-ffffffc0081baf28 t lru_move_tail_fn
-ffffffc0081bb230 T lru_note_cost
-ffffffc0081bb320 T lru_note_cost_folio
-ffffffc0081bb434 T folio_activate
-ffffffc0081bb55c t folio_activate_fn
-ffffffc0081bb93c T folio_mark_accessed
-ffffffc0081bbb84 T folio_add_lru
-ffffffc0081bbce0 t lru_add_fn
-ffffffc0081bbfcc T folio_add_lru_vma
-ffffffc0081bc018 T lru_add_drain_cpu
-ffffffc0081bc168 t folio_batch_move_lru
-ffffffc0081bc2e4 t lru_deactivate_file_fn
-ffffffc0081bc768 t lru_deactivate_fn
-ffffffc0081bcac0 t lru_lazyfree_fn
-ffffffc0081bce50 T deactivate_file_folio
-ffffffc0081bcf64 T deactivate_page
-ffffffc0081bd0b8 T mark_page_lazyfree
-ffffffc0081bd218 T lru_add_drain
-ffffffc0081bd2ac T lru_add_drain_cpu_zone
-ffffffc0081bd358 T lru_add_drain_all
-ffffffc0081bd384 t __lru_add_drain_all.llvm.5829476581021755527
-ffffffc0081bd5b8 T lru_cache_disable
-ffffffc0081bd624 T release_pages
-ffffffc0081bdaec t zone_stat_sub_folio
-ffffffc0081bdb50 T __pagevec_release
-ffffffc0081bdc10 T folio_batch_remove_exceptionals
-ffffffc0081bdc64 T pagevec_lookup_range_tag
-ffffffc0081bdcc0 t trace_raw_output_mm_lru_insertion
-ffffffc0081bddbc t trace_raw_output_mm_lru_activate
-ffffffc0081bde2c t __page_cache_release
-ffffffc0081be0ac t count_vm_events
-ffffffc0081be148 t lru_gen_add_folio
-ffffffc0081be3d0 t lru_gen_add_folio
-ffffffc0081be658 t lru_gen_update_size
-ffffffc0081be764 t lru_gen_update_size
-ffffffc0081be918 t lru_gen_update_size
-ffffffc0081bea28 t lru_add_drain_per_cpu
-ffffffc0081beac0 T folio_invalidate
-ffffffc0081beb14 T truncate_inode_folio
-ffffffc0081beb6c t truncate_cleanup_folio
-ffffffc0081bec48 T truncate_inode_partial_folio
-ffffffc0081bee38 T generic_error_remove_page
-ffffffc0081beecc T invalidate_inode_page
-ffffffc0081bef9c T truncate_inode_pages_range
-ffffffc0081bf65c t truncate_folio_batch_exceptionals
-ffffffc0081bf81c T truncate_inode_pages
-ffffffc0081bf84c T truncate_inode_pages_final
-ffffffc0081bf8e4 T invalidate_mapping_pagevec
-ffffffc0081bfb44 T invalidate_mapping_pages
-ffffffc0081bfb74 T invalidate_inode_pages2_range
-ffffffc0081bff20 T invalidate_inode_pages2
-ffffffc0081bff54 T truncate_pagecache
-ffffffc0081bffd8 T truncate_setsize
-ffffffc0081c0080 T pagecache_isize_extended
-ffffffc0081c01c4 T truncate_pagecache_range
-ffffffc0081c0244 t clear_shadow_entry
-ffffffc0081c034c T __traceiter_mm_vmscan_kswapd_sleep
-ffffffc0081c03cc T __traceiter_mm_vmscan_kswapd_wake
-ffffffc0081c0464 T __traceiter_mm_vmscan_wakeup_kswapd
-ffffffc0081c050c T __traceiter_mm_vmscan_direct_reclaim_begin
-ffffffc0081c059c T __traceiter_mm_vmscan_direct_reclaim_end
-ffffffc0081c061c T __traceiter_mm_shrink_slab_start
-ffffffc0081c06e4 T __traceiter_mm_shrink_slab_end
-ffffffc0081c07a4 T __traceiter_mm_vmscan_lru_isolate
-ffffffc0081c0884 T __traceiter_mm_vmscan_write_folio
-ffffffc0081c0904 T __traceiter_mm_vmscan_lru_shrink_inactive
-ffffffc0081c09c4 T __traceiter_mm_vmscan_lru_shrink_active
-ffffffc0081c0a8c T __traceiter_mm_vmscan_node_reclaim_begin
-ffffffc0081c0b24 T __traceiter_mm_vmscan_node_reclaim_end
-ffffffc0081c0ba4 T __traceiter_mm_vmscan_throttled
-ffffffc0081c0c4c t trace_event_raw_event_mm_vmscan_kswapd_sleep
-ffffffc0081c0d04 t perf_trace_mm_vmscan_kswapd_sleep
-ffffffc0081c0e10 t trace_event_raw_event_mm_vmscan_kswapd_wake
-ffffffc0081c0ee0 t perf_trace_mm_vmscan_kswapd_wake
-ffffffc0081c1000 t trace_event_raw_event_mm_vmscan_wakeup_kswapd
-ffffffc0081c10dc t perf_trace_mm_vmscan_wakeup_kswapd
-ffffffc0081c1210 t trace_event_raw_event_mm_vmscan_direct_reclaim_begin_template
-ffffffc0081c12d4 t perf_trace_mm_vmscan_direct_reclaim_begin_template
-ffffffc0081c13f4 t trace_event_raw_event_mm_vmscan_direct_reclaim_end_template
-ffffffc0081c14ac t perf_trace_mm_vmscan_direct_reclaim_end_template
-ffffffc0081c15b8 t trace_event_raw_event_mm_shrink_slab_start
-ffffffc0081c16c8 t perf_trace_mm_shrink_slab_start
-ffffffc0081c1828 t trace_event_raw_event_mm_shrink_slab_end
-ffffffc0081c1920 t perf_trace_mm_shrink_slab_end
-ffffffc0081c1a70 t trace_event_raw_event_mm_vmscan_lru_isolate
-ffffffc0081c1b6c t perf_trace_mm_vmscan_lru_isolate
-ffffffc0081c1cbc t trace_event_raw_event_mm_vmscan_write_folio
-ffffffc0081c1da4 t perf_trace_mm_vmscan_write_folio
-ffffffc0081c1ee0 t trace_event_raw_event_mm_vmscan_lru_shrink_inactive
-ffffffc0081c2014 t perf_trace_mm_vmscan_lru_shrink_inactive
-ffffffc0081c21a0 t trace_event_raw_event_mm_vmscan_lru_shrink_active
-ffffffc0081c22a4 t perf_trace_mm_vmscan_lru_shrink_active
-ffffffc0081c23f8 t trace_event_raw_event_mm_vmscan_node_reclaim_begin
-ffffffc0081c24cc t perf_trace_mm_vmscan_node_reclaim_begin
-ffffffc0081c25f0 t trace_event_raw_event_mm_vmscan_throttled
-ffffffc0081c26cc t perf_trace_mm_vmscan_throttled
-ffffffc0081c2800 T zone_reclaimable_pages
-ffffffc0081c2a04 T prealloc_shrinker
-ffffffc0081c2a84 T free_prealloced_shrinker
-ffffffc0081c2ae8 T register_shrinker_prepared
-ffffffc0081c2b78 T register_shrinker
-ffffffc0081c2c54 T unregister_shrinker
-ffffffc0081c2cf4 T synchronize_shrinkers
-ffffffc0081c2d3c T drop_slab
-ffffffc0081c2dac T reclaim_throttle
-ffffffc0081c3150 T __acct_reclaim_writeback
-ffffffc0081c3200 T remove_mapping
-ffffffc0081c3260 t __remove_mapping
-ffffffc0081c34ac T folio_putback_lru
-ffffffc0081c3530 T reclaim_clean_pages_from_list
-ffffffc0081c3750 t shrink_folio_list
-ffffffc0081c4618 T folio_isolate_lru
-ffffffc0081c4878 T reclaim_pages
-ffffffc0081c4ad8 T lru_gen_add_mm
-ffffffc0081c4b74 T lru_gen_del_mm
-ffffffc0081c4c4c T lru_gen_look_around
-ffffffc0081c5248 T lru_gen_init_lruvec
-ffffffc0081c5458 T try_to_free_pages
-ffffffc0081c5d48 T kswapd
-ffffffc0081c6fd4 T wakeup_kswapd
-ffffffc0081c7208 t pgdat_balanced
-ffffffc0081c73b8 T kswapd_run
-ffffffc0081c7490 T kswapd_stop
-ffffffc0081c74f0 T check_move_unevictable_pages
-ffffffc0081c75e4 T check_move_unevictable_folios
-ffffffc0081c7ab4 t trace_raw_output_mm_vmscan_kswapd_sleep
-ffffffc0081c7b28 t trace_raw_output_mm_vmscan_kswapd_wake
-ffffffc0081c7ba0 t trace_raw_output_mm_vmscan_wakeup_kswapd
-ffffffc0081c7c50 t trace_raw_output_mm_vmscan_direct_reclaim_begin_template
-ffffffc0081c7cf8 t trace_raw_output_mm_vmscan_direct_reclaim_end_template
-ffffffc0081c7d6c t trace_raw_output_mm_shrink_slab_start
-ffffffc0081c7e50 t trace_raw_output_mm_shrink_slab_end
-ffffffc0081c7ee4 t trace_raw_output_mm_vmscan_lru_isolate
-ffffffc0081c7fb8 t trace_raw_output_mm_vmscan_write_folio
-ffffffc0081c8080 t trace_raw_output_mm_vmscan_lru_shrink_inactive
-ffffffc0081c81a8 t trace_raw_output_mm_vmscan_lru_shrink_active
-ffffffc0081c828c t trace_raw_output_mm_vmscan_node_reclaim_begin
-ffffffc0081c8338 t trace_raw_output_mm_vmscan_throttled
-ffffffc0081c83f0 t shrink_slab
-ffffffc0081c8944 t folio_trylock
-ffffffc0081c899c t show_min_ttl
-ffffffc0081c89ec t store_min_ttl
-ffffffc0081c8a80 t show_enabled
-ffffffc0081c8af0 t store_enabled
-ffffffc0081c9158 t lru_gen_seq_write
-ffffffc0081cba38 t lru_gen_seq_open
-ffffffc0081cba6c t try_to_inc_max_seq
-ffffffc0081cc448 t walk_pud_range
-ffffffc0081ccce0 t should_skip_vma
-ffffffc0081ccdb0 t reset_batch_size
-ffffffc0081cd010 t get_next_vma
-ffffffc0081cd1d0 t walk_pmd_range_locked
-ffffffc0081cd674 t reset_ctrl_pos
-ffffffc0081cd7b8 t move_folios_to_lru
-ffffffc0081cdaf4 t lru_gen_seq_start
-ffffffc0081cdb60 t lru_gen_seq_stop
-ffffffc0081cdba0 t lru_gen_seq_next
-ffffffc0081cdbc0 t lru_gen_seq_show
-ffffffc0081ce290 t allow_direct_reclaim
-ffffffc0081ce414 t shrink_node
-ffffffc0081d1334 t shrink_active_list
-ffffffc0081d17c0 t isolate_lru_folios
-ffffffc0081d1d6c t prepare_kswapd_sleep
-ffffffc0081d1ec0 T vma_is_shmem
-ffffffc0081d1ee4 T shmem_charge
-ffffffc0081d2054 t shmem_recalc_inode
-ffffffc0081d20f8 T shmem_uncharge
-ffffffc0081d221c T shmem_is_huge
-ffffffc0081d22d4 T shmem_partial_swap_usage
-ffffffc0081d244c T shmem_swap_usage
-ffffffc0081d24c8 T shmem_unlock_mapping
-ffffffc0081d2590 T shmem_truncate_range
-ffffffc0081d25e4 t shmem_undo_range
-ffffffc0081d2ccc T shmem_unuse
-ffffffc0081d31b8 T shmem_get_folio
-ffffffc0081d31f4 t shmem_get_folio_gfp
-ffffffc0081d3b60 T shmem_get_unmapped_area
-ffffffc0081d3d18 T shmem_lock
-ffffffc0081d3e18 T shmem_mfill_atomic_pte
-ffffffc0081d43f4 t shmem_add_to_page_cache
-ffffffc0081d4754 t shmem_writepage.llvm.5160499398316230129
-ffffffc0081d4c9c t shmem_write_begin.llvm.5160499398316230129
-ffffffc0081d4d90 t shmem_write_end.llvm.5160499398316230129
-ffffffc0081d5044 t shmem_error_remove_page.llvm.5160499398316230129
-ffffffc0081d5058 T shmem_init_fs_context
-ffffffc0081d50e8 t shmem_enabled_show
-ffffffc0081d5258 t shmem_enabled_store
-ffffffc0081d5434 T shmem_kernel_file_setup
-ffffffc0081d5474 t __shmem_file_setup.llvm.5160499398316230129
-ffffffc0081d55b8 T shmem_file_setup
-ffffffc0081d55fc T shmem_file_setup_with_mnt
-ffffffc0081d562c T shmem_zero_setup
-ffffffc0081d56b4 T shmem_read_mapping_page_gfp
-ffffffc0081d5788 T reclaim_shmem_address_space
-ffffffc0081d5964 t shmem_swapin_folio
-ffffffc0081d5ec4 t shmem_replace_folio
-ffffffc0081d61bc t shmem_alloc_and_acct_folio
-ffffffc0081d64b8 t shmem_unused_huge_shrink
-ffffffc0081d6910 t shmem_fault.llvm.5160499398316230129
-ffffffc0081d6ae0 t synchronous_wake_function
-ffffffc0081d6b48 t maybe_unlock_mmap_for_io
-ffffffc0081d6c00 t shmem_free_fc
-ffffffc0081d6c34 t shmem_parse_one
-ffffffc0081d6ea4 t shmem_parse_options
-ffffffc0081d6f88 t shmem_get_tree
-ffffffc0081d6fbc t shmem_reconfigure
-ffffffc0081d7160 t shmem_fill_super
-ffffffc0081d7380 t shmem_get_inode
-ffffffc0081d76e8 t shmem_put_super
-ffffffc0081d773c t shmem_encode_fh
-ffffffc0081d77f4 t shmem_fh_to_dentry
-ffffffc0081d787c t shmem_get_parent
-ffffffc0081d7890 t shmem_match
-ffffffc0081d78cc t shmem_alloc_inode
-ffffffc0081d7914 t shmem_destroy_inode
-ffffffc0081d7924 t shmem_free_in_core_inode
-ffffffc0081d7980 t shmem_evict_inode
-ffffffc0081d7c78 t shmem_statfs
-ffffffc0081d7d24 t shmem_show_options
-ffffffc0081d7ebc t shmem_unused_huge_count
-ffffffc0081d7edc t shmem_unused_huge_scan
-ffffffc0081d7f28 t shmem_getattr
-ffffffc0081d810c t shmem_setattr
-ffffffc0081d82f0 t shmem_file_llseek
-ffffffc0081d83c4 t shmem_file_read_iter
-ffffffc0081d8700 t shmem_mmap
-ffffffc0081d8798 t shmem_fallocate
-ffffffc0081d8bc4 t shmem_create
-ffffffc0081d8bf8 t shmem_link
-ffffffc0081d8cf0 t shmem_unlink
-ffffffc0081d8dc8 t shmem_symlink
-ffffffc0081d906c t shmem_mkdir
-ffffffc0081d90c0 t shmem_rmdir
-ffffffc0081d912c t shmem_mknod
-ffffffc0081d9220 t shmem_rename2
-ffffffc0081d93d0 t shmem_tmpfile
-ffffffc0081d949c t shmem_get_link
-ffffffc0081d95f4 t shmem_put_link
-ffffffc0081d9678 t shmem_init_inode
-ffffffc0081d96a8 T kfree_const
-ffffffc0081d96f8 T kstrdup
-ffffffc0081d9794 T kstrdup_const
-ffffffc0081d9854 T kstrndup
-ffffffc0081d98f4 T kmemdup
-ffffffc0081d9974 T kmemdup_nul
-ffffffc0081d9a04 T memdup_user
-ffffffc0081d9c04 T vmemdup_user
-ffffffc0081d9eb4 T kvfree
-ffffffc0081d9f04 T strndup_user
-ffffffc0081d9f84 T memdup_user_nul
-ffffffc0081da188 T vma_is_stack_for_current
-ffffffc0081da1e0 T vma_set_file
-ffffffc0081da248 T randomize_stack_top
-ffffffc0081da2a4 T randomize_page
-ffffffc0081da314 W arch_randomize_brk
-ffffffc0081da38c T arch_mmap_rnd
-ffffffc0081da3d0 T arch_pick_mmap_layout
-ffffffc0081da4e8 T __account_locked_vm
-ffffffc0081da54c T account_locked_vm
-ffffffc0081da664 T vm_mmap_pgoff
-ffffffc0081da7e0 T vm_mmap
-ffffffc0081da838 T kvmalloc_node
-ffffffc0081da948 T kvfree_sensitive
-ffffffc0081da9b0 T kvrealloc
-ffffffc0081dab20 T __vmalloc_array
-ffffffc0081dab68 T vmalloc_array
-ffffffc0081dabb0 T __vcalloc
-ffffffc0081dabf8 T vcalloc
-ffffffc0081dac40 T page_rmapping
-ffffffc0081dac70 T folio_mapped
-ffffffc0081dad10 T folio_anon_vma
-ffffffc0081dad34 T folio_mapping
-ffffffc0081dada0 T __page_mapcount
-ffffffc0081dae14 T folio_mapcount
-ffffffc0081daec4 T folio_copy
-ffffffc0081daf34 T overcommit_ratio_handler
-ffffffc0081dafa0 T overcommit_policy_handler
-ffffffc0081db074 t sync_overcommit_as
-ffffffc0081db0a8 T overcommit_kbytes_handler
-ffffffc0081db0f8 T vm_commit_limit
-ffffffc0081db158 T vm_memory_committed
-ffffffc0081db194 T __vm_enough_memory
-ffffffc0081db32c T get_cmdline
-ffffffc0081db474 T mem_dump_obj
-ffffffc0081db540 T page_offline_freeze
-ffffffc0081db574 T page_offline_thaw
-ffffffc0081db5a8 T page_offline_begin
-ffffffc0081db5dc T page_offline_end
-ffffffc0081db610 T flush_dcache_folio
-ffffffc0081db670 T first_online_pgdat
-ffffffc0081db688 T next_online_pgdat
-ffffffc0081db69c T next_zone
-ffffffc0081db6c4 T __next_zones_zonelist
-ffffffc0081db700 T lruvec_init
-ffffffc0081db7ac T gfp_zone
-ffffffc0081db7d0 T all_vm_events
-ffffffc0081db8a4 T vm_events_fold_cpu
-ffffffc0081db98c T calculate_pressure_threshold
-ffffffc0081db9d0 T calculate_normal_threshold
-ffffffc0081dba38 T refresh_zone_stat_thresholds
-ffffffc0081dbbfc T set_pgdat_percpu_threshold
-ffffffc0081dbd14 T __mod_zone_page_state
-ffffffc0081dbd9c t zone_page_state_add
-ffffffc0081dbe1c T __mod_node_page_state
-ffffffc0081dbea8 t node_page_state_add
-ffffffc0081dbf3c T __inc_zone_state
-ffffffc0081dbfdc T __inc_node_state
-ffffffc0081dc070 T __inc_zone_page_state
-ffffffc0081dc178 T __inc_node_page_state
-ffffffc0081dc270 T __dec_zone_state
-ffffffc0081dc314 T __dec_node_state
-ffffffc0081dc3ac T __dec_zone_page_state
-ffffffc0081dc4b8 T __dec_node_page_state
-ffffffc0081dc5b4 T mod_zone_page_state
-ffffffc0081dc5e0 t mod_zone_state.llvm.16841096813350120132
-ffffffc0081dc838 T inc_zone_page_state
-ffffffc0081dc884 T dec_zone_page_state
-ffffffc0081dc8d0 T mod_node_page_state
-ffffffc0081dc8fc t mod_node_state.llvm.16841096813350120132
-ffffffc0081dcb90 T inc_node_state
-ffffffc0081dcbc4 T inc_node_page_state
-ffffffc0081dcc00 T dec_node_page_state
-ffffffc0081dcc3c T cpu_vm_stats_fold
-ffffffc0081dcea8 T drain_zonestat
-ffffffc0081dcf40 T extfrag_for_order
-ffffffc0081dd0cc T fragmentation_index
-ffffffc0081dd2d0 T vmstat_refresh
-ffffffc0081dd590 t refresh_vm_stats
-ffffffc0081dd5bc T quiet_vmstat
-ffffffc0081dd6c0 t refresh_cpu_vm_stats
-ffffffc0081dda0c t vmstat_cpu_dead
-ffffffc0081dda50 t vmstat_cpu_online
-ffffffc0081dda80 t vmstat_cpu_down_prep
-ffffffc0081ddad8 t vmstat_update
-ffffffc0081ddb60 t vmstat_shepherd
-ffffffc0081ddce0 t frag_start
-ffffffc0081ddd04 t frag_stop
-ffffffc0081ddd14 t frag_next
-ffffffc0081ddd34 t frag_show
-ffffffc0081ddd68 t walk_zones_in_node
-ffffffc0081ddef8 t frag_show_print
-ffffffc0081de010 t pagetypeinfo_show
-ffffffc0081de32c t pagetypeinfo_showfree_print
-ffffffc0081de470 t pagetypeinfo_showblockcount_print
-ffffffc0081de650 t vmstat_start
-ffffffc0081de8ec t vmstat_stop
-ffffffc0081de92c t vmstat_next
-ffffffc0081de964 t vmstat_show
-ffffffc0081dea18 t zoneinfo_show
-ffffffc0081deb28 t zoneinfo_show_print
-ffffffc0081defb0 t unusable_open
-ffffffc0081df00c t unusable_show
-ffffffc0081df04c t unusable_show_print
-ffffffc0081df24c t extfrag_open
-ffffffc0081df2a8 t extfrag_show
-ffffffc0081df2e0 t extfrag_show_print
-ffffffc0081df524 T wb_wakeup_delayed
-ffffffc0081df5ac T bdi_init
-ffffffc0081df828 T bdi_alloc
-ffffffc0081df8c4 T bdi_get_by_id
-ffffffc0081df9a8 T bdi_register_va
-ffffffc0081dfc68 T bdi_register
-ffffffc0081dfcf0 T bdi_set_owner
-ffffffc0081dfd38 T bdi_unregister
-ffffffc0081dfec4 T bdi_put
-ffffffc0081dffb8 T inode_to_bdi
-ffffffc0081e0004 T bdi_dev_name
-ffffffc0081e0038 t read_ahead_kb_show
-ffffffc0081e0084 t read_ahead_kb_store
-ffffffc0081e011c t min_ratio_show
-ffffffc0081e0164 t min_ratio_store
-ffffffc0081e0204 t max_ratio_show
-ffffffc0081e024c t max_ratio_store
-ffffffc0081e02ec t stable_pages_required_show
-ffffffc0081e035c t wb_update_bandwidth_workfn
-ffffffc0081e038c t bdi_debug_stats_open
-ffffffc0081e03cc t bdi_debug_stats_show
-ffffffc0081e05bc T mm_compute_batch
-ffffffc0081e065c T __traceiter_percpu_alloc_percpu
-ffffffc0081e074c T __traceiter_percpu_free_percpu
-ffffffc0081e07e4 T __traceiter_percpu_alloc_percpu_fail
-ffffffc0081e088c T __traceiter_percpu_create_chunk
-ffffffc0081e090c T __traceiter_percpu_destroy_chunk
-ffffffc0081e098c t trace_event_raw_event_percpu_alloc_percpu
-ffffffc0081e0aac t perf_trace_percpu_alloc_percpu
-ffffffc0081e0c18 t trace_event_raw_event_percpu_free_percpu
-ffffffc0081e0cec t perf_trace_percpu_free_percpu
-ffffffc0081e0e10 t trace_event_raw_event_percpu_alloc_percpu_fail
-ffffffc0081e0ef0 t perf_trace_percpu_alloc_percpu_fail
-ffffffc0081e1028 t trace_event_raw_event_percpu_create_chunk
-ffffffc0081e10e0 t perf_trace_percpu_create_chunk
-ffffffc0081e11ec t trace_event_raw_event_percpu_destroy_chunk
-ffffffc0081e12a4 t perf_trace_percpu_destroy_chunk
-ffffffc0081e13b0 T __alloc_percpu_gfp
-ffffffc0081e13e0 t pcpu_alloc.llvm.3140785734437438926
-ffffffc0081e1cc0 T __alloc_percpu
-ffffffc0081e1cf4 T __alloc_reserved_percpu
-ffffffc0081e1d28 T free_percpu
-ffffffc0081e22f8 t pcpu_free_area
-ffffffc0081e2694 T __is_kernel_percpu_address
-ffffffc0081e278c T is_kernel_percpu_address
-ffffffc0081e2850 T per_cpu_ptr_to_phys
-ffffffc0081e29bc t pcpu_dump_alloc_info
-ffffffc0081e2c98 t pcpu_chunk_relocate
-ffffffc0081e2df8 T pcpu_nr_pages
-ffffffc0081e2e1c t trace_raw_output_percpu_alloc_percpu
-ffffffc0081e2f2c t trace_raw_output_percpu_free_percpu
-ffffffc0081e2fa8 t trace_raw_output_percpu_alloc_percpu_fail
-ffffffc0081e3024 t trace_raw_output_percpu_create_chunk
-ffffffc0081e3098 t trace_raw_output_percpu_destroy_chunk
-ffffffc0081e3108 t pcpu_find_block_fit
-ffffffc0081e329c t pcpu_alloc_area
-ffffffc0081e3560 t pcpu_create_chunk
-ffffffc0081e387c t pcpu_populate_chunk
-ffffffc0081e3cf8 t pcpu_next_fit_region
-ffffffc0081e3e38 t pcpu_block_update_hint_alloc
-ffffffc0081e41ec t pcpu_block_update
-ffffffc0081e4304 t pcpu_block_refresh_hint
-ffffffc0081e43ec t pcpu_chunk_refresh_hint
-ffffffc0081e45a0 t pcpu_balance_workfn
-ffffffc0081e4af0 t pcpu_balance_free
-ffffffc0081e4e40 t pcpu_depopulate_chunk
-ffffffc0081e5084 T __traceiter_kmem_cache_alloc
-ffffffc0081e5134 T __traceiter_kmalloc
-ffffffc0081e51f4 T __traceiter_kfree
-ffffffc0081e5284 T __traceiter_kmem_cache_free
-ffffffc0081e531c T __traceiter_mm_page_free
-ffffffc0081e53ac T __traceiter_mm_page_free_batched
-ffffffc0081e542c T __traceiter_mm_page_alloc
-ffffffc0081e54d4 T __traceiter_mm_page_alloc_zone_locked
-ffffffc0081e557c T __traceiter_mm_page_pcpu_drain
-ffffffc0081e5614 T __traceiter_mm_page_alloc_extfrag
-ffffffc0081e56c4 T __traceiter_rss_stat
-ffffffc0081e575c t trace_event_raw_event_kmem_cache_alloc
-ffffffc0081e5854 t perf_trace_kmem_cache_alloc
-ffffffc0081e599c t trace_event_raw_event_kmalloc
-ffffffc0081e5a8c t perf_trace_kmalloc
-ffffffc0081e5bd4 t trace_event_raw_event_kfree
-ffffffc0081e5c90 t perf_trace_kfree
-ffffffc0081e5da8 t trace_event_raw_event_kmem_cache_free
-ffffffc0081e5eb4 t perf_trace_kmem_cache_free
-ffffffc0081e6034 t trace_event_raw_event_mm_page_free
-ffffffc0081e6110 t perf_trace_mm_page_free
-ffffffc0081e6248 t trace_event_raw_event_mm_page_free_batched
-ffffffc0081e631c t perf_trace_mm_page_free_batched
-ffffffc0081e6444 t trace_event_raw_event_mm_page_alloc
-ffffffc0081e654c t perf_trace_mm_page_alloc
-ffffffc0081e66ac t trace_event_raw_event_mm_page
-ffffffc0081e67ac t perf_trace_mm_page
-ffffffc0081e6904 t trace_event_raw_event_mm_page_pcpu_drain
-ffffffc0081e69fc t perf_trace_mm_page_pcpu_drain
-ffffffc0081e6b44 t trace_event_raw_event_mm_page_alloc_extfrag
-ffffffc0081e6c60 t perf_trace_mm_page_alloc_extfrag
-ffffffc0081e6dd8 t trace_event_raw_event_rss_stat
-ffffffc0081e6ee0 t perf_trace_rss_stat
-ffffffc0081e7044 T kmem_cache_size
-ffffffc0081e7058 T slab_unmergeable
-ffffffc0081e70b0 T find_mergeable
-ffffffc0081e721c T kmem_cache_create_usercopy
-ffffffc0081e74e8 T kmem_cache_create
-ffffffc0081e7520 T slab_kmem_cache_release
-ffffffc0081e7570 T kmem_cache_destroy
-ffffffc0081e7710 T kmem_cache_shrink
-ffffffc0081e775c T slab_is_available
-ffffffc0081e777c T kmem_valid_obj
-ffffffc0081e7828 T kmem_dump_obj
-ffffffc0081e7cbc T kmalloc_slab
-ffffffc0081e7d68 T kmalloc_size_roundup
-ffffffc0081e7e10 T free_large_kmalloc
-ffffffc0081e7ee8 T __kmalloc_node
-ffffffc0081e8164 T __kmalloc
-ffffffc0081e83d4 T __kmalloc_node_track_caller
-ffffffc0081e8634 T kfree
-ffffffc0081e87cc T __ksize
-ffffffc0081e88f8 T kmalloc_trace
-ffffffc0081e8a84 t trace_kmalloc
-ffffffc0081e8ba8 T kmalloc_node_trace
-ffffffc0081e8d2c T kmalloc_fix_flags
-ffffffc0081e8db8 T kmalloc_large
-ffffffc0081e8f2c t __kmalloc_large_node
-ffffffc0081e90a8 T kmalloc_large_node
-ffffffc0081e9220 T cache_random_seq_create
-ffffffc0081e938c T cache_random_seq_destroy
-ffffffc0081e93cc T dump_unreclaimable_slab
-ffffffc0081e94f4 T krealloc
-ffffffc0081e9638 T kfree_sensitive
-ffffffc0081e96d8 T ksize
-ffffffc0081e9768 T should_failslab
-ffffffc0081e977c t trace_raw_output_kmem_cache_alloc
-ffffffc0081e9870 t trace_raw_output_kmalloc
-ffffffc0081e9950 t trace_raw_output_kfree
-ffffffc0081e99c4 t trace_raw_output_kmem_cache_free
-ffffffc0081e9a40 t trace_raw_output_mm_page_free
-ffffffc0081e9ad4 t trace_raw_output_mm_page_free_batched
-ffffffc0081e9b5c t trace_raw_output_mm_page_alloc
-ffffffc0081e9c48 t trace_raw_output_mm_page
-ffffffc0081e9cec t trace_raw_output_mm_page_pcpu_drain
-ffffffc0081e9d80 t trace_raw_output_mm_page_alloc_extfrag
-ffffffc0081e9e3c t trace_raw_output_rss_stat
-ffffffc0081e9edc t slab_caches_to_rcu_destroy_workfn
-ffffffc0081e9fe4 t slabinfo_open
-ffffffc0081ea01c t slab_start
-ffffffc0081ea06c t slab_stop
-ffffffc0081ea0a0 t slab_next
-ffffffc0081ea0d8 t slab_show
-ffffffc0081ea21c T __traceiter_mm_compaction_isolate_migratepages
-ffffffc0081ea2c4 T __traceiter_mm_compaction_isolate_freepages
-ffffffc0081ea36c T __traceiter_mm_compaction_migratepages
-ffffffc0081ea3fc T __traceiter_mm_compaction_begin
-ffffffc0081ea4a4 T __traceiter_mm_compaction_end
-ffffffc0081ea554 T __traceiter_mm_compaction_try_to_compact_pages
-ffffffc0081ea5ec T __traceiter_mm_compaction_finished
-ffffffc0081ea684 T __traceiter_mm_compaction_suitable
-ffffffc0081ea71c T __traceiter_mm_compaction_deferred
-ffffffc0081ea7ac T __traceiter_mm_compaction_defer_compaction
-ffffffc0081ea83c T __traceiter_mm_compaction_defer_reset
-ffffffc0081ea8cc T __traceiter_mm_compaction_kcompactd_sleep
-ffffffc0081ea94c T __traceiter_mm_compaction_wakeup_kcompactd
-ffffffc0081ea9e4 T __traceiter_mm_compaction_kcompactd_wake
-ffffffc0081eaa7c t trace_event_raw_event_mm_compaction_isolate_template
-ffffffc0081eab50 t perf_trace_mm_compaction_isolate_template
-ffffffc0081eac7c t trace_event_raw_event_mm_compaction_migratepages
-ffffffc0081ead48 t perf_trace_mm_compaction_migratepages
-ffffffc0081eae70 t trace_event_raw_event_mm_compaction_begin
-ffffffc0081eaf58 t perf_trace_mm_compaction_begin
-ffffffc0081eb098 t trace_event_raw_event_mm_compaction_end
-ffffffc0081eb190 t perf_trace_mm_compaction_end
-ffffffc0081eb2d8 t trace_event_raw_event_mm_compaction_try_to_compact_pages
-ffffffc0081eb3b0 t perf_trace_mm_compaction_try_to_compact_pages
-ffffffc0081eb4d8 t trace_event_raw_event_mm_compaction_suitable_template
-ffffffc0081eb5c4 t perf_trace_mm_compaction_suitable_template
-ffffffc0081eb700 t trace_event_raw_event_mm_compaction_defer_template
-ffffffc0081eb7f0 t perf_trace_mm_compaction_defer_template
-ffffffc0081eb93c t trace_event_raw_event_mm_compaction_kcompactd_sleep
-ffffffc0081eb9f4 t perf_trace_mm_compaction_kcompactd_sleep
-ffffffc0081ebb00 t trace_event_raw_event_kcompactd_wake_template
-ffffffc0081ebbd0 t perf_trace_kcompactd_wake_template
-ffffffc0081ebcf0 T PageMovable
-ffffffc0081ebd14 T __SetPageMovable
-ffffffc0081ebd2c T __ClearPageMovable
-ffffffc0081ebd44 T compaction_defer_reset
-ffffffc0081ebe70 T reset_isolation_suitable
-ffffffc0081ec004 T isolate_freepages_range
-ffffffc0081ec1b0 t isolate_freepages_block
-ffffffc0081ec6a8 t split_map_pages
-ffffffc0081ec800 T isolate_and_split_free_page
-ffffffc0081ec8b8 T isolate_migratepages_range
-ffffffc0081ec9b4 t isolate_migratepages_block
-ffffffc0081ed9ec T compaction_suitable
-ffffffc0081edbe0 T compaction_zonelist_suitable
-ffffffc0081eddc4 T try_to_compact_pages
-ffffffc0081ee0e0 t compaction_deferred
-ffffffc0081ee234 t defer_compaction
-ffffffc0081ee374 T compaction_proactiveness_sysctl_handler
-ffffffc0081ee3f4 T sysctl_compaction_handler
-ffffffc0081ee52c T wakeup_kcompactd
-ffffffc0081ee7bc T kcompactd_run
-ffffffc0081ee864 t kcompactd
-ffffffc0081ef258 T kcompactd_stop
-ffffffc0081ef29c t trace_raw_output_mm_compaction_isolate_template
-ffffffc0081ef314 t trace_raw_output_mm_compaction_migratepages
-ffffffc0081ef388 t trace_raw_output_mm_compaction_begin
-ffffffc0081ef41c t trace_raw_output_mm_compaction_end
-ffffffc0081ef4ec t trace_raw_output_mm_compaction_try_to_compact_pages
-ffffffc0081ef598 t trace_raw_output_mm_compaction_suitable_template
-ffffffc0081ef65c t trace_raw_output_mm_compaction_defer_template
-ffffffc0081ef6f8 t trace_raw_output_mm_compaction_kcompactd_sleep
-ffffffc0081ef76c t trace_raw_output_kcompactd_wake_template
-ffffffc0081ef804 t __reset_isolation_pfn
-ffffffc0081efa34 t compact_zone
-ffffffc0081f0b94 t compaction_alloc
-ffffffc0081f1480 t compaction_free
-ffffffc0081f14f0 t kcompactd_cpu_online
-ffffffc0081f1560 T vma_interval_tree_insert
-ffffffc0081f1620 T vma_interval_tree_remove
-ffffffc0081f18f8 T vma_interval_tree_iter_first
-ffffffc0081f1990 T vma_interval_tree_iter_next
-ffffffc0081f1a64 T vma_interval_tree_insert_after
-ffffffc0081f1b08 T anon_vma_interval_tree_insert
-ffffffc0081f1bd0 T anon_vma_interval_tree_remove
-ffffffc0081f1eb4 T anon_vma_interval_tree_iter_first
-ffffffc0081f1f48 T anon_vma_interval_tree_iter_next
-ffffffc0081f201c t vma_interval_tree_augment_rotate
-ffffffc0081f2074 t __anon_vma_interval_tree_augment_rotate
-ffffffc0081f20d0 T list_lru_add
-ffffffc0081f218c T list_lru_del
-ffffffc0081f2238 T list_lru_isolate
-ffffffc0081f229c T list_lru_isolate_move
-ffffffc0081f2328 T list_lru_count_one
-ffffffc0081f239c T list_lru_count_node
-ffffffc0081f23bc T list_lru_walk_one
-ffffffc0081f2448 t __list_lru_walk_one
-ffffffc0081f2614 T list_lru_walk_one_irq
-ffffffc0081f26a4 T list_lru_walk_node
-ffffffc0081f2734 T __list_lru_init
-ffffffc0081f27a8 T list_lru_destroy
-ffffffc0081f27ec T workingset_age_nonresident
-ffffffc0081f282c T workingset_eviction
-ffffffc0081f29c4 T workingset_refault
-ffffffc0081f2d00 T workingset_activation
-ffffffc0081f2d84 T workingset_update_node
-ffffffc0081f2e70 t count_shadow_nodes
-ffffffc0081f2ecc t scan_shadow_nodes
-ffffffc0081f2f1c t shadow_lru_isolate
-ffffffc0081f30a8 T dump_page
-ffffffc0081f33a8 T try_grab_folio
-ffffffc0081f366c T try_grab_page
-ffffffc0081f37dc T unpin_user_page
-ffffffc0081f38d0 T unpin_user_pages_dirty_lock
-ffffffc0081f3ab8 T unpin_user_pages
-ffffffc0081f3c34 T unpin_user_page_range_dirty_lock
-ffffffc0081f3e1c T follow_page
-ffffffc0081f3fac t follow_page_mask
-ffffffc0081f42b4 T fixup_user_fault
-ffffffc0081f4520 T populate_vma_page_range
-ffffffc0081f45a0 t __get_user_pages
-ffffffc0081f49f4 T faultin_vma_page_range
-ffffffc0081f4a94 T __mm_populate
-ffffffc0081f4c84 T fault_in_writeable
-ffffffc0081f4fa4 T fault_in_subpage_writeable
-ffffffc0081f5038 T fault_in_safe_writeable
-ffffffc0081f5174 T fault_in_readable
-ffffffc0081f54cc T get_dump_page
-ffffffc0081f57a4 T get_user_pages_remote
-ffffffc0081f57ec t __get_user_pages_remote
-ffffffc0081f5b08 T get_user_pages
-ffffffc0081f5b68 t __gup_longterm_locked
-ffffffc0081f60b4 T get_user_pages_unlocked
-ffffffc0081f63d8 T get_user_pages_fast_only
-ffffffc0081f6418 t internal_get_user_pages_fast.llvm.219434479133917153
-ffffffc0081f7050 T get_user_pages_fast
-ffffffc0081f70a4 T pin_user_pages_fast
-ffffffc0081f70f8 T pin_user_pages_fast_only
-ffffffc0081f7154 T pin_user_pages_remote
-ffffffc0081f71a4 T pin_user_pages
-ffffffc0081f7208 T pin_user_pages_unlocked
-ffffffc0081f7254 t folio_put_refs
-ffffffc0081f72bc t follow_page_pte
-ffffffc0081f7634 t follow_pfn_pte
-ffffffc0081f7754 t undo_dev_pagemap
-ffffffc0081f793c T __traceiter_mmap_lock_start_locking
-ffffffc0081f79d4 T trace_mmap_lock_reg
-ffffffc0081f79e8 T trace_mmap_lock_unreg
-ffffffc0081f79f8 T __traceiter_mmap_lock_released
-ffffffc0081f7a90 T __traceiter_mmap_lock_acquire_returned
-ffffffc0081f7b38 t trace_event_raw_event_mmap_lock
-ffffffc0081f7c4c t perf_trace_mmap_lock
-ffffffc0081f7dc8 t trace_event_raw_event_mmap_lock_acquire_returned
-ffffffc0081f7ee4 t perf_trace_mmap_lock_acquire_returned
-ffffffc0081f806c T __mmap_lock_do_trace_start_locking
-ffffffc0081f8188 T __mmap_lock_do_trace_acquire_returned
-ffffffc0081f82b4 T __mmap_lock_do_trace_released
-ffffffc0081f83d0 t trace_raw_output_mmap_lock
-ffffffc0081f8468 t trace_raw_output_mmap_lock_acquire_returned
-ffffffc0081f850c T mm_trace_rss_stat
-ffffffc0081f85c8 T sync_mm_rss
-ffffffc0081f8738 t add_mm_counter
-ffffffc0081f882c t add_mm_counter
-ffffffc0081f8890 t add_mm_counter
-ffffffc0081f88fc T free_pgd_range
-ffffffc0081f8c5c T free_pgtables
-ffffffc0081f8d74 T pmd_install
-ffffffc0081f8e6c T __pte_alloc
-ffffffc0081f8ff0 T __pte_alloc_kernel
-ffffffc0081f90e0 T vm_normal_page
-ffffffc0081f91b4 t print_bad_pte
-ffffffc0081f938c T vm_normal_page_pmd
-ffffffc0081f9494 t pfn_valid
-ffffffc0081f9508 T copy_page_range
-ffffffc0081fa600 T unmap_page_range
-ffffffc0081fade8 T unmap_vmas
-ffffffc0081faf18 T zap_page_range
-ffffffc0081fb0c4 T zap_page_range_single
-ffffffc0081fb230 T zap_vma_ptes
-ffffffc0081fb288 T __get_locked_pte
-ffffffc0081fb388 T vm_insert_pages
-ffffffc0081fb6f8 T vm_insert_page
-ffffffc0081fb8dc T vm_map_pages
-ffffffc0081fb984 T vm_map_pages_zero
-ffffffc0081fba20 T vmf_insert_pfn_prot
-ffffffc0081fbb0c t insert_pfn
-ffffffc0081fbd34 T vmf_insert_pfn
-ffffffc0081fbd64 T vmf_insert_mixed_prot
-ffffffc0081fbde8 T vmf_insert_mixed
-ffffffc0081fbe70 T vmf_insert_mixed_mkwrite
-ffffffc0081fbef8 T remap_pfn_range_notrack
-ffffffc0081fc194 T remap_pfn_range
-ffffffc0081fc1c0 T vm_iomap_memory
-ffffffc0081fc238 T apply_to_page_range
-ffffffc0081fc264 t __apply_to_page_range.llvm.16014014482611129511
-ffffffc0081fc674 T apply_to_existing_page_range
-ffffffc0081fc6a4 T finish_mkwrite_fault
-ffffffc0081fc824 T unmap_mapping_folio
-ffffffc0081fc8e4 t unmap_mapping_range_tree
-ffffffc0081fc990 T unmap_mapping_pages
-ffffffc0081fca4c T unmap_mapping_range
-ffffffc0081fcb7c T do_swap_page
-ffffffc0081fd58c t do_wp_page
-ffffffc0081fda68 T do_set_pmd
-ffffffc0081fde08 T do_set_pte
-ffffffc0081fe1a8 T finish_fault
-ffffffc0081fe42c T numa_migrate_prep
-ffffffc0081fe4ac T handle_mm_fault
-ffffffc0081ff554 T __pmd_alloc
-ffffffc0081ff764 T follow_pte
-ffffffc0081ff848 T follow_pfn
-ffffffc0081ff944 T follow_phys
-ffffffc0081ffa60 T generic_access_phys
-ffffffc0081ffcd8 T __access_remote_vm
-ffffffc0081fff78 T access_remote_vm
-ffffffc0081fffa4 T access_process_vm
-ffffffc00820002c T print_vma_addr
-ffffffc008200178 T clear_huge_page
-ffffffc008200320 t clear_gigantic_page
-ffffffc0082003a0 T copy_user_huge_page
-ffffffc00820052c T copy_huge_page_from_user
-ffffffc0082007d0 t kmap_atomic
-ffffffc008200820 t __kunmap_atomic
-ffffffc008200880 t __kunmap_atomic
-ffffffc0082008e0 t __kunmap_atomic
-ffffffc008200944 T set_direct_map_range_uncached
-ffffffc00820096c t add_mm_rss_vec
-ffffffc008200ac8 t tlb_flush_mmu_tlbonly
-ffffffc008200fac t tlb_flush_mmu_tlbonly
-ffffffc008201490 t insert_page_into_pte_locked
-ffffffc00820173c t __do_fault
-ffffffc008201834 t fault_dirty_shared_page
-ffffffc008201980 t flush_tlb_page
-ffffffc0082019fc t wp_page_copy
-ffffffc008202304 t wp_page_shared
-ffffffc00820268c t fault_around_bytes_fops_open
-ffffffc0082026d0 t fault_around_bytes_get
-ffffffc0082026f0 t fault_around_bytes_set
-ffffffc008202740 T __arm64_sys_mincore
-ffffffc008202b24 t mincore_pte_range
-ffffffc008202dc4 t mincore_unmapped_range
-ffffffc008202e14 t mincore_hugetlb
-ffffffc008202e1c t __mincore_unmapped_range
-ffffffc008202f84 T can_do_mlock
-ffffffc008202fd8 T mlock_page_drain_local
-ffffffc008203070 t mlock_pagevec
-ffffffc008204844 T mlock_page_drain_remote
-ffffffc0082048c8 T need_mlock_page_drain
-ffffffc008204908 T mlock_folio
-ffffffc008204aac T mlock_new_page
-ffffffc008204c84 T munlock_page
-ffffffc008204da4 T __arm64_sys_mlock
-ffffffc008204de0 T __arm64_sys_mlock2
-ffffffc008204e3c T __arm64_sys_munlock
-ffffffc008204f34 T __arm64_sys_mlockall
-ffffffc0082051b4 T __arm64_sys_munlockall
-ffffffc008205310 T user_shm_lock
-ffffffc0082053e8 T user_shm_unlock
-ffffffc008205458 t do_mlock
-ffffffc0082056c8 t apply_vma_lock_flags
-ffffffc008205814 t mlock_fixup
-ffffffc008205a0c t mlock_pte_range
-ffffffc008205bf4 T __traceiter_vm_unmapped_area
-ffffffc008205c84 T __traceiter_vma_mas_szero
-ffffffc008205d1c T __traceiter_vma_store
-ffffffc008205dac T __traceiter_exit_mmap
-ffffffc008205e2c t trace_event_raw_event_vm_unmapped_area
-ffffffc008205f28 t perf_trace_vm_unmapped_area
-ffffffc008206080 t trace_event_raw_event_vma_mas_szero
-ffffffc008206150 t perf_trace_vma_mas_szero
-ffffffc008206270 t trace_event_raw_event_vma_store
-ffffffc008206340 t perf_trace_vma_store
-ffffffc00820646c t trace_event_raw_event_exit_mmap
-ffffffc008206524 t perf_trace_exit_mmap
-ffffffc008206630 T vma_set_page_prot
-ffffffc008206744 T vma_wants_writenotify
-ffffffc008206850 T unlink_file_vma
-ffffffc0082068f4 T __arm64_sys_brk
-ffffffc008206ca4 T vma_mas_store
-ffffffc008206dec T vma_mas_remove
-ffffffc008206f3c T vma_expand
-ffffffc0082071f0 T __vma_adjust
-ffffffc008207b28 T find_vma
-ffffffc008207b8c T vma_merge
-ffffffc008207e68 t can_vma_merge_after
-ffffffc008207f64 T find_mergeable_anon_vma
-ffffffc008208118 T mlock_future_check
-ffffffc008208180 T do_mmap
-ffffffc0082086b4 T get_unmapped_area
-ffffffc008208794 T find_vma_intersection
-ffffffc0082087f4 t file_mmap_ok
-ffffffc00820885c T mmap_region
-ffffffc0082090b4 T ksys_mmap_pgoff
-ffffffc0082091b4 T __arm64_sys_mmap_pgoff
-ffffffc0082091f0 T vm_unmapped_area
-ffffffc008209404 T generic_get_unmapped_area
-ffffffc00820957c T find_vma_prev
-ffffffc00820962c T arch_get_unmapped_area
-ffffffc008209658 T generic_get_unmapped_area_topdown
-ffffffc0082097fc T arch_get_unmapped_area_topdown
-ffffffc008209828 T expand_downwards
-ffffffc008209b24 T vm_stat_account
-ffffffc008209b8c T expand_stack
-ffffffc008209bb8 T find_extend_vma
-ffffffc008209c84 T __split_vma
-ffffffc008209e70 T split_vma
-ffffffc008209eb8 T do_mas_munmap
-ffffffc008209f6c t do_mas_align_munmap
-ffffffc00820a424 T do_munmap
-ffffffc00820a514 T may_expand_vm
-ffffffc00820a64c t unmap_region
-ffffffc00820a7b0 T vm_munmap
-ffffffc00820a7dc t __vm_munmap.llvm.14341741251261317029
-ffffffc00820a9a0 T __arm64_sys_munmap
-ffffffc00820aa04 T __arm64_sys_remap_file_pages
-ffffffc00820aca8 T vm_brk_flags
-ffffffc00820af48 t do_brk_flags
-ffffffc00820b23c t mmap_write_unlock
-ffffffc00820b28c t mmap_write_unlock
-ffffffc00820b2e0 T vm_brk
-ffffffc00820b310 T exit_mmap
-ffffffc00820b6e8 T insert_vm_struct
-ffffffc00820b7d4 t vma_link
-ffffffc00820b908 T copy_vma
-ffffffc00820bbc8 T vma_is_special_mapping
-ffffffc00820bc10 T _install_special_mapping
-ffffffc00820bc40 t __install_special_mapping.llvm.14341741251261317029
-ffffffc00820bd78 T install_special_mapping
-ffffffc00820bdb4 T mm_take_all_locks
-ffffffc00820bfc0 T mm_drop_all_locks
-ffffffc00820c13c t trace_raw_output_vm_unmapped_area
-ffffffc00820c1dc t trace_raw_output_vma_mas_szero
-ffffffc00820c254 t trace_raw_output_vma_store
-ffffffc00820c2cc t trace_raw_output_exit_mmap
-ffffffc00820c340 t special_mapping_close.llvm.14341741251261317029
-ffffffc00820c350 t special_mapping_split.llvm.14341741251261317029
-ffffffc00820c364 t special_mapping_mremap.llvm.14341741251261317029
-ffffffc00820c3e0 t special_mapping_fault.llvm.14341741251261317029
-ffffffc00820c4e4 t special_mapping_name.llvm.14341741251261317029
-ffffffc00820c4fc t reserve_mem_notifier
-ffffffc00820c690 T __tlb_remove_page_size
-ffffffc00820c748 T tlb_remove_table_sync_one
-ffffffc00820c784 t tlb_remove_table_smp_sync.llvm.5246850256490296139
-ffffffc00820c794 T tlb_remove_table
-ffffffc00820c85c T tlb_flush_mmu
-ffffffc00820c914 T tlb_gather_mmu
-ffffffc00820c988 T tlb_gather_mmu_fullmm
-ffffffc00820ca00 T tlb_finish_mmu
-ffffffc00820cb48 t tlb_remove_table_rcu
-ffffffc00820cbb0 T change_protection
-ffffffc00820d7f8 T mprotect_fixup
-ffffffc00820da90 T __arm64_sys_mprotect
-ffffffc00820def4 t pmd_alloc
-ffffffc00820df6c T move_page_tables
-ffffffc00820e544 t move_pgt_entry
-ffffffc00820e834 T __arm64_sys_mremap
-ffffffc00820ee10 t flush_tlb_range
-ffffffc00820f070 t vma_to_resize
-ffffffc00820f1c4 t move_vma
-ffffffc00820f5a0 T __arm64_sys_msync
-ffffffc00820f860 T page_vma_mapped_walk
-ffffffc00820fcec T page_mapped_in_vma
-ffffffc00820fe34 T walk_page_range
-ffffffc0082100d4 T walk_page_range_novma
-ffffffc00821015c t walk_pgd_range
-ffffffc0082106a4 T walk_page_vma
-ffffffc008210848 T walk_page_mapping
-ffffffc008210a54 T pgd_clear_bad
-ffffffc008210a98 T pmd_clear_bad
-ffffffc008210b00 T ptep_clear_flush
-ffffffc008210bd8 T pmdp_clear_flush_young
-ffffffc008210c90 t __flush_tlb_range.llvm.17832556353692405934
-ffffffc008210f50 T pmdp_huge_clear_flush
-ffffffc008210fb8 T pgtable_trans_huge_deposit
-ffffffc008211074 T pgtable_trans_huge_withdraw
-ffffffc00821112c T pmdp_invalidate
-ffffffc00821119c T pmdp_invalidate_ad
-ffffffc00821120c T pmdp_collapse_flush
-ffffffc008211274 T __traceiter_tlb_flush
-ffffffc008211304 t trace_event_raw_event_tlb_flush
-ffffffc0082113c4 t perf_trace_tlb_flush
-ffffffc0082114e0 T __traceiter_mm_migrate_pages
-ffffffc0082115a8 T __traceiter_mm_migrate_pages_start
-ffffffc008211638 T __traceiter_set_migration_pte
-ffffffc0082116d0 T __traceiter_remove_migration_pte
-ffffffc008211768 t trace_event_raw_event_mm_migrate_pages
-ffffffc008211860 t perf_trace_mm_migrate_pages
-ffffffc0082119a8 t trace_event_raw_event_mm_migrate_pages_start
-ffffffc008211a64 t perf_trace_mm_migrate_pages_start
-ffffffc008211b7c t trace_event_raw_event_migration_pte
-ffffffc008211c4c t perf_trace_migration_pte
-ffffffc008211d6c T __anon_vma_prepare
-ffffffc008211ed8 t put_anon_vma
-ffffffc008211f48 T anon_vma_clone
-ffffffc008212100 T unlink_anon_vmas
-ffffffc0082122dc T anon_vma_fork
-ffffffc00821248c t anon_vma_ctor.llvm.1976069713084195521
-ffffffc0082124e0 T folio_get_anon_vma
-ffffffc008212614 T folio_lock_anon_vma_read
-ffffffc0082127f0 T __put_anon_vma
-ffffffc0082128ec T page_address_in_vma
-ffffffc008212a20 T mm_find_pmd
-ffffffc008212a74 T folio_referenced
-ffffffc008212bd4 t folio_referenced_one
-ffffffc008212e88 t invalid_folio_referenced_vma
-ffffffc008212ec4 T rmap_walk
-ffffffc008212f08 T folio_mkclean
-ffffffc008212fe4 t page_mkclean_one
-ffffffc0082130a4 t invalid_mkclean_vma
-ffffffc0082130c0 T pfn_mkclean_range
-ffffffc008213184 t page_vma_mkclean_one
-ffffffc0082133e4 T page_move_anon_rmap
-ffffffc008213448 T page_add_anon_rmap
-ffffffc008213640 T page_add_new_anon_rmap
-ffffffc0082137a4 T page_add_file_rmap
-ffffffc008213a44 T page_remove_rmap
-ffffffc008213e64 T try_to_unmap
-ffffffc008213f0c t try_to_unmap_one
-ffffffc008214790 t page_not_mapped
-ffffffc0082147c4 T rmap_walk_locked
-ffffffc008214808 T try_to_migrate
-ffffffc0082148e8 t try_to_migrate_one
-ffffffc008214ea4 t invalid_migration_vma
-ffffffc008214ec8 t rmap_walk_anon
-ffffffc008215154 t rmap_walk_file
-ffffffc008215390 t trace_raw_output_tlb_flush
-ffffffc008215424 t trace_raw_output_mm_migrate_pages
-ffffffc008215510 t trace_raw_output_mm_migrate_pages_start
-ffffffc0082155c0 t trace_raw_output_migration_pte
-ffffffc008215638 T is_vmalloc_addr
-ffffffc008215664 T ioremap_page_range
-ffffffc008215728 t vmap_range_noflush
-ffffffc008215aac T __vunmap_range_noflush
-ffffffc008215c50 T vunmap_range_noflush
-ffffffc008215c7c T vunmap_range
-ffffffc008215d24 T __vmap_pages_range_noflush
-ffffffc008216174 T vmap_pages_range_noflush
-ffffffc0082161a0 T is_vmalloc_or_module_addr
-ffffffc0082161cc T vmalloc_to_page
-ffffffc0082162ec T vmalloc_to_pfn
-ffffffc008216334 T vmalloc_nr_pages
-ffffffc008216354 T register_vmap_purge_notifier
-ffffffc00821638c T unregister_vmap_purge_notifier
-ffffffc0082163c4 T find_vmap_area
-ffffffc008216464 T vm_unmap_aliases
-ffffffc008216498 t _vm_unmap_aliases.llvm.9410261380338915841
-ffffffc008216674 T vm_unmap_ram
-ffffffc00821680c t free_unmap_vmap_area
-ffffffc008216854 T vm_map_ram
-ffffffc0082170a8 t alloc_vmap_area
-ffffffc008217918 t free_work
-ffffffc00821798c t insert_vmap_area
-ffffffc008217aa4 T __get_vm_area_caller
-ffffffc008217af8 t __get_vm_area_node.llvm.9410261380338915841
-ffffffc008217ccc T get_vm_area
-ffffffc008217d3c T get_vm_area_caller
-ffffffc008217d9c T find_vm_area
-ffffffc008217e4c T remove_vm_area
-ffffffc008217f24 T vfree_atomic
-ffffffc008217fa8 t __vfree_deferred
-ffffffc008218010 T vfree
-ffffffc0082180b4 T vunmap
-ffffffc008218120 t __vunmap
-ffffffc008218468 T vmap
-ffffffc0082185ec T __vmalloc_node_range
-ffffffc008218d54 T __vmalloc_node
-ffffffc008218dc8 T __vmalloc
-ffffffc008218e50 T vmalloc
-ffffffc008218ed8 T vmalloc_huge
-ffffffc008218f60 T vzalloc
-ffffffc008218fe8 T vmalloc_user
-ffffffc008219070 T vmalloc_node
-ffffffc0082190f8 T vzalloc_node
-ffffffc008219180 T vmalloc_32
-ffffffc008219208 T vmalloc_32_user
-ffffffc008219290 T vread
-ffffffc0082195b8 T remap_vmalloc_range_partial
-ffffffc00821972c T remap_vmalloc_range
-ffffffc008219768 T free_vm_area
-ffffffc0082197b8 T pcpu_get_vm_areas
-ffffffc00821a7a4 T pcpu_free_vm_areas
-ffffffc00821a824 T vmalloc_dump_obj
-ffffffc00821a8fc t purge_fragmented_blocks_allcpus
-ffffffc00821ab60 t __purge_vmap_area_lazy
-ffffffc00821b20c t free_vmap_area_noflush
-ffffffc00821b534 t free_vmap_area_rb_augment_cb_rotate
-ffffffc00821b580 t drain_vmap_area_work
-ffffffc00821b614 t insert_vmap_area_augment
-ffffffc00821b7dc T __arm64_sys_process_vm_readv
-ffffffc00821b820 T __arm64_sys_process_vm_writev
-ffffffc00821b860 t process_vm_rw
-ffffffc00821bdac T pm_restore_gfp_mask
-ffffffc00821be04 T pm_restrict_gfp_mask
-ffffffc00821be6c T pm_suspended_storage
-ffffffc00821be90 T free_compound_page
-ffffffc00821bef8 T get_pfnblock_flags_mask
-ffffffc00821bf60 T isolate_anon_lru_page
-ffffffc00821c0c8 T set_pfnblock_flags_mask
-ffffffc00821c188 T set_pageblock_migratetype
-ffffffc00821c280 t free_the_page
-ffffffc00821c2c8 T prep_compound_page
-ffffffc00821c334 T destroy_large_folio
-ffffffc00821c394 T split_free_page
-ffffffc00821c684 t __free_one_page
-ffffffc00821ca30 T __free_pages_core
-ffffffc00821caec t __free_pages_ok
-ffffffc00821cf48 T __pageblock_pfn_to_page
-ffffffc00821d0a0 T set_zone_contiguous
-ffffffc00821d120 T clear_zone_contiguous
-ffffffc00821d134 T post_alloc_hook
-ffffffc00821d378 t kernel_init_pages
-ffffffc00821d4e0 T move_freepages_block
-ffffffc00821d714 T find_suitable_fallback
-ffffffc00821d864 T drain_local_pages
-ffffffc00821d98c T drain_all_pages
-ffffffc00821d9b8 t __drain_all_pages.llvm.1681697719000778620
-ffffffc00821dc60 T free_unref_page
-ffffffc00821dedc t free_unref_page_prepare
-ffffffc00821e2a4 t free_one_page
-ffffffc00821e37c t free_unref_page_commit
-ffffffc00821e50c T free_unref_page_list
-ffffffc00821e894 T split_page
-ffffffc00821e8f0 T __isolate_free_page
-ffffffc00821ec44 T zone_watermark_ok
-ffffffc00821ec88 T __putback_isolated_page
-ffffffc00821ecf4 T should_fail_alloc_page
-ffffffc00821ed08 T __zone_watermark_ok
-ffffffc00821ee4c T zone_watermark_ok_safe
-ffffffc00821effc T warn_alloc
-ffffffc00821f1ac T has_managed_dma
-ffffffc00821f1d4 T gfp_pfmemalloc_allowed
-ffffffc00821f25c T __alloc_pages_bulk
-ffffffc00821f790 T __alloc_pages
-ffffffc00821f9e0 t get_page_from_freelist
-ffffffc008220d14 t __alloc_pages_slowpath
-ffffffc0082219c4 T __free_pages
-ffffffc008221ac4 T __folio_alloc
-ffffffc008221b1c T __get_free_pages
-ffffffc008221b7c T get_zeroed_page
-ffffffc008221be4 T free_pages
-ffffffc008221c2c T __page_frag_cache_drain
-ffffffc008221cc8 T page_frag_alloc_align
-ffffffc008221e48 t __page_frag_cache_refill
-ffffffc008221f00 T page_frag_free
-ffffffc008221fc0 T alloc_pages_exact
-ffffffc00822211c T free_pages_exact
-ffffffc008222200 T nr_free_buffer_pages
-ffffffc0082222c4 T si_mem_available
-ffffffc0082223f8 T si_meminfo
-ffffffc00822248c T __show_free_areas
-ffffffc008223054 t per_cpu_pages_init
-ffffffc008223188 t zone_set_pageset_high_and_batch
-ffffffc0082232f8 W arch_has_descending_max_zone_pfns
-ffffffc00822330c T adjust_managed_page_count
-ffffffc008223394 T free_reserved_area
-ffffffc008223580 t page_alloc_cpu_online
-ffffffc0082235fc t page_alloc_cpu_dead
-ffffffc008223728 T setup_per_zone_wmarks
-ffffffc008223a00 T calculate_min_free_kbytes
-ffffffc008223b0c t setup_per_zone_lowmem_reserve
-ffffffc008223dfc T min_free_kbytes_sysctl_handler
-ffffffc008223e58 T watermark_scale_factor_sysctl_handler
-ffffffc008223ea4 T lowmem_reserve_ratio_sysctl_handler
-ffffffc008223f28 T percpu_pagelist_high_fraction_sysctl_handler
-ffffffc008224024 T __alloc_contig_migrate_range
-ffffffc008224244 T alloc_contig_range
-ffffffc0082245a4 T free_contig_range
-ffffffc0082246bc T alloc_contig_pages
-ffffffc0082248fc T zone_pcp_disable
-ffffffc0082249b8 T zone_pcp_enable
-ffffffc008224a68 T zone_pcp_reset
-ffffffc008224b48 T __offline_isolated_pages
-ffffffc008224d48 T is_free_buddy_page
-ffffffc008224de4 t free_page_is_bad
-ffffffc008224e60 t free_page_is_bad_report
-ffffffc008224f04 t bad_page
-ffffffc00822501c t free_pcppages_bulk
-ffffffc0082253dc t get_populated_pcp_list
-ffffffc0082260b0 t reserve_highatomic_pageblock
-ffffffc0082262b8 t wake_all_kswapds
-ffffffc0082263ac t __alloc_pages_direct_compact
-ffffffc0082266d0 t unreserve_highatomic_pageblock
-ffffffc0082269a0 t build_zonelists
-ffffffc008226ca4 T shuffle_pick_tail
-ffffffc008226d14 T setup_initial_init_mm
-ffffffc008226d38 T memblock_overlaps_region
-ffffffc008226dd4 T memblock_add_node
-ffffffc008226ea0 T memblock_add
-ffffffc008226f60 T memblock_remove
-ffffffc008227024 t memblock_remove_range
-ffffffc008227144 T memblock_free
-ffffffc0082271a4 T memblock_phys_free
-ffffffc008227340 T memblock_reserve
-ffffffc0082273fc T memblock_mark_hotplug
-ffffffc00822742c t memblock_setclr_flag.llvm.12518458754768191236
-ffffffc0082275e0 T memblock_clear_hotplug
-ffffffc008227614 T memblock_mark_mirror
-ffffffc008227668 T memblock_mark_nomap
-ffffffc00822769c T memblock_clear_nomap
-ffffffc0082276d0 T __next_mem_range
-ffffffc00822790c T __next_mem_range_rev
-ffffffc008227b6c T __next_mem_pfn_range
-ffffffc008227c14 T memblock_set_node
-ffffffc008227c24 t memblock_find_in_range_node
-ffffffc008227e50 T memblock_phys_mem_size
-ffffffc008227e68 T memblock_reserved_size
-ffffffc008227e80 T memblock_start_of_DRAM
-ffffffc008227e9c T memblock_end_of_DRAM
-ffffffc008227ecc t memblock_isolate_range
-ffffffc0082280ac t memblock_remove_region
-ffffffc008228160 T memblock_is_reserved
-ffffffc0082281e0 T memblock_is_memory
-ffffffc008228260 T memblock_is_map_memory
-ffffffc0082282f0 T memblock_search_pfn_nid
-ffffffc00822839c T memblock_is_region_memory
-ffffffc008228428 T memblock_is_region_reserved
-ffffffc0082284cc T memblock_trim_memory
-ffffffc00822861c T memblock_set_current_limit
-ffffffc008228634 T memblock_get_current_limit
-ffffffc00822864c T memblock_dump_all
-ffffffc0082286cc T reset_node_managed_pages
-ffffffc0082286f8 t memblock_double_array
-ffffffc008228b6c t memblock_dump
-ffffffc008228c68 t memblock_debug_open
-ffffffc008228ca8 t memblock_debug_show
-ffffffc008228d98 t memblock_add_range.20
-ffffffc008229160 t memblock_add_range.21
-ffffffc008229540 T get_online_mems
-ffffffc008229658 T put_online_mems
-ffffffc0082297dc T mem_hotplug_begin
-ffffffc008229814 T mem_hotplug_done
-ffffffc00822984c T pfn_to_online_page
-ffffffc0082298d4 T __remove_pages
-ffffffc0082299d0 T set_online_page_callback
-ffffffc008229a50 T generic_online_page
-ffffffc008229ac4 T restore_online_page_callback
-ffffffc008229b44 T zone_for_pfn_range
-ffffffc008229f4c T adjust_present_page_count
-ffffffc00822a040 T mhp_init_memmap_on_memory
-ffffffc00822a110 T mhp_deinit_memmap_on_memory
-ffffffc00822a198 t online_pages_range
-ffffffc00822a274 T try_online_node
-ffffffc00822a2d4 T mhp_supports_memmap_on_memory
-ffffffc00822a34c t online_memory_block
-ffffffc00822a388 t register_memory_resource
-ffffffc00822a49c T add_memory
-ffffffc00822a520 T add_memory_driver_managed
-ffffffc00822a61c T mhp_get_pluggable_range
-ffffffc00822a67c T mhp_range_allowed
-ffffffc00822a724 t count_system_ram_pages_cb
-ffffffc00822a744 T try_offline_node
-ffffffc00822a804 t check_no_memblock_for_node_cb
-ffffffc00822a828 T __remove_memory
-ffffffc00822a85c T remove_memory
-ffffffc00822a8c8 T offline_and_remove_memory
-ffffffc00822aa30 t try_offline_memory_block
-ffffffc00822ab34 t try_reonline_memory_block
-ffffffc00822abb4 t set_online_policy
-ffffffc00822ac0c t get_online_policy
-ffffffc00822ac60 t auto_movable_stats_account_group
-ffffffc00822acc4 t check_memblock_offlined_cb
-ffffffc00822ad70 t get_nr_vmemmap_pages_cb
-ffffffc00822ad84 T anon_vma_name_alloc
-ffffffc00822adfc T anon_vma_name_free
-ffffffc00822ae28 T anon_vma_name
-ffffffc00822ae50 T madvise_set_anon_name
-ffffffc00822afe8 T do_madvise
-ffffffc00822be3c T __arm64_sys_madvise
-ffffffc00822be80 T __arm64_sys_process_madvise
-ffffffc00822c0c8 t madvise_update_vma
-ffffffc00822c3f0 t swapin_walk_pmd_entry
-ffffffc00822c5d8 t tlb_end_vma
-ffffffc00822ca48 t madvise_cold_or_pageout_pte_range
-ffffffc00822d3a8 t get_page
-ffffffc00822d400 t get_page
-ffffffc00822d458 t get_page
-ffffffc00822d4b0 t get_page
-ffffffc00822d508 t get_page
-ffffffc00822d560 t set_pmd_at
-ffffffc00822d65c t set_pmd_at
-ffffffc00822d75c t madvise_free_pte_range
-ffffffc00822de34 T generic_swapfile_activate
-ffffffc00822e048 T swap_writepage
-ffffffc00822e110 T __swap_writepage
-ffffffc00822e6d8 T sio_pool_init
-ffffffc00822e7a0 t end_swap_bio_write
-ffffffc00822e8dc T swap_write_unplug
-ffffffc00822e9a8 t sio_write_complete
-ffffffc00822ec80 T swap_readpage
-ffffffc00822f1a4 t end_swap_bio_read
-ffffffc00822f39c T __swap_read_unplug
-ffffffc00822f468 t sio_read_complete
-ffffffc00822f698 T show_swap_cache_info
-ffffffc00822f71c T get_shadow_from_swap_cache
-ffffffc00822f790 T add_to_swap_cache
-ffffffc00822fb70 T __delete_from_swap_cache
-ffffffc00822fd48 T add_to_swap
-ffffffc00822fdc4 T delete_from_swap_cache
-ffffffc00822feb0 T clear_shadow_from_swap_cache
-ffffffc008230054 T free_swap_cache
-ffffffc008230110 T free_page_and_swap_cache
-ffffffc0082301c4 T free_pages_and_swap_cache
-ffffffc008230234 T swap_cache_get_folio
-ffffffc008230550 T find_get_incore_page
-ffffffc008230740 T __read_swap_cache_async
-ffffffc008230acc T read_swap_cache_async
-ffffffc008230b64 T swap_cluster_readahead
-ffffffc008230ee4 T init_swap_address_space
-ffffffc008231044 T exit_swap_address_space
-ffffffc008231098 T swapin_readahead
-ffffffc0082314c4 t vma_ra_enabled_show
-ffffffc008231520 t vma_ra_enabled_store
-ffffffc008231570 T swap_page_sector
-ffffffc008231604 T page_swap_info
-ffffffc008231644 T __page_file_index
-ffffffc00823165c T get_swap_pages
-ffffffc008232184 T get_swap_device
-ffffffc008232420 T swp_swap_info
-ffffffc00823245c T swap_free
-ffffffc00823251c t __swap_entry_free
-ffffffc008232638 T put_swap_folio
-ffffffc0082328f0 T split_swap_cluster
-ffffffc008232a08 T swapcache_free_entries
-ffffffc008232c20 t swp_entry_cmp
-ffffffc008232c44 T __swap_count
-ffffffc008232d94 T __swp_swapcount
-ffffffc008232f20 T swp_swapcount
-ffffffc008233118 T folio_free_swap
-ffffffc0082332ac T free_swap_and_cache
-ffffffc0082333b8 t swap_page_trans_huge_swapped
-ffffffc008233480 t __try_to_reclaim_swap
-ffffffc0082335d4 T add_swap_extent
-ffffffc0082336b4 T has_usable_swap
-ffffffc008233718 T __arm64_sys_swapoff
-ffffffc008234b14 T generic_max_swapfile_size
-ffffffc008234b28 W arch_max_swapfile_size
-ffffffc008234b3c T __arm64_sys_swapon
-ffffffc008235e4c T si_swapinfo
-ffffffc008235f24 T swap_shmem_alloc
-ffffffc008235f50 t __swap_duplicate.llvm.4155689103268654412
-ffffffc0082361b0 T swap_duplicate
-ffffffc008236210 T add_swap_count_continuation
-ffffffc00823657c T swapcache_prepare
-ffffffc0082365ac T swapcache_mapping
-ffffffc0082365ec t scan_swap_map_try_ssd_cluster
-ffffffc008236798 t swap_do_scheduled_discard
-ffffffc008236970 t free_cluster
-ffffffc008236a90 t swap_range_free
-ffffffc008236c48 t swap_count_continued
-ffffffc008237198 t _enable_swap_info
-ffffffc008237290 t swaps_open
-ffffffc0082372f0 t swaps_poll
-ffffffc008237394 t swap_start
-ffffffc00823742c t swap_stop
-ffffffc008237460 t swap_next
-ffffffc0082374f8 t swap_show
-ffffffc008237620 t swap_discard_work
-ffffffc008237670 t swap_users_ref_free
-ffffffc0082376a0 T disable_swap_slots_cache_lock
-ffffffc008237748 T reenable_swap_slots_cache_unlock
-ffffffc00823778c T enable_swap_slots_cache
-ffffffc008237864 t alloc_swap_slot_cache
-ffffffc008237990 t free_slot_cache
-ffffffc0082379ec T free_swap_slot
-ffffffc008237b04 T folio_alloc_swap
-ffffffc008237d50 t drain_slots_cache_cpu
-ffffffc008237e44 T dma_pool_create
-ffffffc008238024 T dma_pool_destroy
-ffffffc0082381d4 T dma_pool_alloc
-ffffffc0082383c0 T dma_pool_free
-ffffffc008238520 T dmam_pool_create
-ffffffc0082385e4 t dmam_pool_release
-ffffffc008238614 T dmam_pool_destroy
-ffffffc008238664 t dmam_pool_match
-ffffffc008238680 t pools_show
-ffffffc0082387c4 T sparse_decode_mem_map
-ffffffc0082387dc T mem_section_usage_size
-ffffffc0082387f0 T online_mem_sections
-ffffffc008238860 T offline_mem_sections
-ffffffc0082388d0 T sparse_remove_section
-ffffffc008238904 t section_deactivate.llvm.3723901430243946328
-ffffffc008238ae4 T fixup_red_left
-ffffffc008238b14 T get_each_object_track
-ffffffc008238d64 T print_tracking
-ffffffc008238e94 T kmem_cache_flags
-ffffffc008239008 t parse_slub_debug_flags
-ffffffc00823921c T kmem_cache_alloc
-ffffffc00823951c T kmem_cache_alloc_lru
-ffffffc00823981c T __kmem_cache_alloc_node
-ffffffc008239a84 T kmem_cache_alloc_node
-ffffffc008239d90 T __kmem_cache_free
-ffffffc00823a0c0 T kmem_cache_free
-ffffffc00823a51c T kmem_cache_free_bulk
-ffffffc00823ab00 T kmem_cache_alloc_bulk
-ffffffc00823ae78 t ___slab_alloc
-ffffffc00823b7f0 T __kmem_cache_release
-ffffffc00823b850 T __kmem_cache_empty
-ffffffc00823b890 T __kmem_cache_shutdown
-ffffffc00823bbe0 t flush_all_cpus_locked.llvm.6887213392492040447
-ffffffc00823bd74 T __kmem_obj_info
-ffffffc00823bfa0 T __check_heap_object
-ffffffc00823c0c0 T __kmem_cache_shrink
-ffffffc00823c108 t __kmem_cache_do_shrink.llvm.6887213392492040447
-ffffffc00823c540 t slub_cpu_dead
-ffffffc00823c624 T __kmem_cache_alias
-ffffffc00823c72c T __kmem_cache_create
-ffffffc00823cd98 t sysfs_slab_add
-ffffffc00823d028 T validate_slab_cache
-ffffffc00823d1ac T sysfs_slab_unlink
-ffffffc00823d1ec T sysfs_slab_release
-ffffffc00823d22c T debugfs_slab_release
-ffffffc00823d268 T get_slabinfo
-ffffffc00823d344 t count_partial
-ffffffc00823d3c4 T slabinfo_show_stats
-ffffffc00823d3d4 T slabinfo_write
-ffffffc00823d3e4 t __slab_alloc
-ffffffc00823d478 t __slab_free
-ffffffc00823d6b8 t free_debug_processing
-ffffffc00823dcf8 t cmpxchg_double_slab
-ffffffc00823df60 t put_cpu_partial
-ffffffc00823e0f0 t remove_full
-ffffffc00823e154 t add_partial
-ffffffc00823e1d0 t remove_partial
-ffffffc00823e23c t discard_slab
-ffffffc00823e2f4 t set_track_prepare
-ffffffc00823e384 t check_slab
-ffffffc00823e434 t slab_err
-ffffffc00823e54c t slab_fix
-ffffffc00823e5e0 t slab_pad_check
-ffffffc00823e764 t slab_bug
-ffffffc00823e824 t on_freelist
-ffffffc00823eaa0 t object_err
-ffffffc00823eb10 t check_object
-ffffffc00823edf8 t print_trailer
-ffffffc00823f054 t check_bytes_and_report
-ffffffc00823f1b8 t rcu_free_slab
-ffffffc00823f1e8 t __free_slab
-ffffffc00823f368 t __unfreeze_partials
-ffffffc00823f548 t __cmpxchg_double_slab
-ffffffc00823f75c t deactivate_slab
-ffffffc00823fb78 t new_slab
-ffffffc008240080 t slab_out_of_memory
-ffffffc0082401c8 t inc_slabs_node
-ffffffc008240240 t alloc_debug_processing
-ffffffc008240484 t setup_object
-ffffffc008240600 t flush_cpu_slab
-ffffffc0082407bc t __fill_map
-ffffffc0082408c4 t slab_memory_callback
-ffffffc008240acc t calculate_sizes
-ffffffc008240e68 t validate_slab
-ffffffc008240fcc t kmem_cache_release
-ffffffc008240ffc t slab_attr_show
-ffffffc008241058 t slab_attr_store
-ffffffc0082410b8 t slab_size_show
-ffffffc0082410fc t object_size_show
-ffffffc008241140 t objs_per_slab_show
-ffffffc008241184 t order_show
-ffffffc0082411c8 t min_partial_show
-ffffffc00824120c t min_partial_store
-ffffffc00824129c t cpu_partial_show
-ffffffc0082412e0 t cpu_partial_store
-ffffffc0082413bc t objects_show
-ffffffc0082413e8 t show_slab_objects
-ffffffc008241654 t objects_partial_show
-ffffffc008241684 t partial_show
-ffffffc008241744 t cpu_slabs_show
-ffffffc008241774 t ctor_show
-ffffffc0082417c4 t aliases_show
-ffffffc008241814 t align_show
-ffffffc008241858 t hwcache_align_show
-ffffffc0082418a0 t reclaim_account_show
-ffffffc0082418e8 t destroy_by_rcu_show
-ffffffc008241930 t shrink_show
-ffffffc008241944 t shrink_store
-ffffffc0082419ac t slabs_cpu_partial_show
-ffffffc008241b40 t total_objects_show
-ffffffc008241c0c t slabs_show
-ffffffc008241cd8 t sanity_checks_show
-ffffffc008241d20 t trace_show
-ffffffc008241d68 t trace_show
-ffffffc008241d88 t red_zone_show
-ffffffc008241dd0 t poison_show
-ffffffc008241e18 t store_user_show
-ffffffc008241e60 t validate_show
-ffffffc008241e74 t validate_store
-ffffffc008241eec t cache_dma_show
-ffffffc008241f34 t usersize_show
-ffffffc008241f78 t slab_debug_trace_open
-ffffffc008242168 t slab_debug_trace_release
-ffffffc0082421e4 t process_slab
-ffffffc008242748 t cmp_loc_by_count
-ffffffc00824276c t slab_debugfs_start
-ffffffc00824278c t slab_debugfs_stop
-ffffffc00824279c t slab_debugfs_next
-ffffffc0082427d0 t slab_debugfs_show
-ffffffc008242a44 T kasan_addr_to_slab
-ffffffc008242aec T kasan_save_stack
-ffffffc008242b6c T kasan_set_track
-ffffffc008242bfc T __kasan_unpoison_range
-ffffffc008242c98 T __kasan_unpoison_pages
-ffffffc008242f48 T __kasan_poison_pages
-ffffffc008243010 t kasan_poison
-ffffffc0082430b4 T __kasan_cache_create_kmalloc
-ffffffc0082430cc T __kasan_poison_slab
-ffffffc008243210 T __kasan_unpoison_object_data
-ffffffc0082432b0 T __kasan_poison_object_data
-ffffffc008243350 T __kasan_init_slab_obj
-ffffffc00824338c T __kasan_slab_free
-ffffffc0082433b8 t ____kasan_slab_free.llvm.15411576924380093428
-ffffffc00824361c T __kasan_kfree_large
-ffffffc0082436d8 t ____kasan_kfree_large
-ffffffc0082437a4 T __kasan_slab_free_mempool
-ffffffc00824386c T __kasan_slab_alloc
-ffffffc008243a50 T __kasan_kmalloc
-ffffffc008243b60 T __kasan_kmalloc_large
-ffffffc008243c58 T __kasan_krealloc
-ffffffc008243e60 T __kasan_check_byte
-ffffffc008243ec8 T kasan_report_invalid_free
-ffffffc008243fb8 t complete_report_info
-ffffffc0082440c0 t print_report
-ffffffc0082445f0 t end_report
-ffffffc008244714 T kasan_report
-ffffffc008244814 T kasan_report_async
-ffffffc008244944 T kasan_init_hw_tags_cpu
-ffffffc0082449a8 T kasan_enable_tagging
-ffffffc0082449fc T __kasan_unpoison_vmalloc
-ffffffc008244e78 T __kasan_poison_vmalloc
-ffffffc008244e88 T kasan_find_first_bad_addr
-ffffffc008244e9c T kasan_metadata_fetch_row
-ffffffc008244fec T kasan_print_tags
-ffffffc008245034 T kasan_save_alloc_info
-ffffffc008245060 t save_stack_info.llvm.2208555861488565184
-ffffffc0082451b0 T kasan_save_free_info
-ffffffc0082451e4 T kasan_complete_mode_report_info
-ffffffc008245370 T isolate_movable_page
-ffffffc00824557c T putback_movable_pages
-ffffffc008245720 T remove_migration_ptes
-ffffffc0082457a4 t remove_migration_pte
-ffffffc008245b88 T __migration_entry_wait
-ffffffc008245c1c T migration_entry_wait
-ffffffc008245ce4 T pmd_migration_entry_wait
-ffffffc008245d90 T folio_migrate_mapping
-ffffffc0082461a0 T migrate_huge_page_move_mapping
-ffffffc008246330 T folio_migrate_flags
-ffffffc0082466ac T folio_migrate_copy
-ffffffc0082466f4 T migrate_folio_extra
-ffffffc008246778 T migrate_folio
-ffffffc0082467fc T buffer_migrate_folio
-ffffffc008246828 t __buffer_migrate_folio
-ffffffc008246bfc T buffer_migrate_folio_norefs
-ffffffc008246c2c T filemap_migrate_folio
-ffffffc008246da4 T migrate_pages
-ffffffc008247b7c t try_split_thp
-ffffffc008247c90 T alloc_migration_target
-ffffffc008247d4c t move_to_new_folio
-ffffffc0082480d0 T __traceiter_hugepage_set_pmd
-ffffffc008248160 T __traceiter_hugepage_update
-ffffffc008248208 T __traceiter_set_migration_pmd
-ffffffc008248298 T __traceiter_remove_migration_pmd
-ffffffc008248328 t trace_event_raw_event_hugepage_set_pmd
-ffffffc0082483e4 t perf_trace_hugepage_set_pmd
-ffffffc0082484fc t trace_event_raw_event_hugepage_update
-ffffffc0082485d0 t perf_trace_hugepage_update
-ffffffc0082486fc t trace_event_raw_event_migration_pmd
-ffffffc0082487b8 t perf_trace_migration_pmd
-ffffffc0082488d0 T hugepage_vma_check
-ffffffc0082489fc T mm_get_huge_zero_page
-ffffffc008248cb4 T mm_put_huge_zero_page
-ffffffc008248d18 T single_hugepage_flag_show
-ffffffc008248d74 T single_hugepage_flag_store
-ffffffc008248ea0 T maybe_pmd_mkwrite
-ffffffc008248ec4 T prep_transhuge_page
-ffffffc008248ee8 T thp_get_unmapped_area
-ffffffc008249010 T vma_thp_gfp_mask
-ffffffc0082490b0 T do_huge_pmd_anonymous_page
-ffffffc008249810 t pte_free
-ffffffc008249870 t set_huge_zero_page
-ffffffc0082499e8 T vmf_insert_pfn_pmd_prot
-ffffffc008249c7c T follow_devmap_pmd
-ffffffc008249d70 T copy_huge_pmd
-ffffffc00824a32c T __split_huge_pmd
-ffffffc00824b154 T huge_pmd_set_accessed
-ffffffc00824b218 T do_huge_pmd_wp_page
-ffffffc00824b5a4 T follow_trans_huge_pmd
-ffffffc00824b79c T do_huge_pmd_numa_page
-ffffffc00824ba28 T madvise_free_huge_pmd
-ffffffc00824be74 T zap_huge_pmd
-ffffffc00824c250 T __pmd_trans_huge_lock
-ffffffc00824c2e0 T move_huge_pmd
-ffffffc00824c7d0 T change_huge_pmd
-ffffffc00824cb08 T __pud_trans_huge_lock
-ffffffc00824cb54 T split_huge_pmd_address
-ffffffc00824cbc0 T vma_adjust_trans_huge
-ffffffc00824cd34 T can_split_folio
-ffffffc00824cdd4 T split_huge_page_to_list
-ffffffc00824daa4 T free_transhuge_page
-ffffffc00824db50 T deferred_split_huge_page
-ffffffc00824dcc4 T set_pmd_migration_entry
-ffffffc00824e0f8 T remove_migration_pmd
-ffffffc00824e458 t trace_raw_output_hugepage_set_pmd
-ffffffc00824e4cc t trace_raw_output_hugepage_update
-ffffffc00824e544 t trace_raw_output_migration_pmd
-ffffffc00824e5b8 t enabled_show
-ffffffc00824e628 t enabled_store
-ffffffc00824e810 t defrag_show
-ffffffc00824e8a8 t defrag_show
-ffffffc00824e8d8 t defrag_store
-ffffffc00824edb8 t defrag_store
-ffffffc00824ede8 t use_zero_page_show
-ffffffc00824ee30 t use_zero_page_store
-ffffffc00824ef44 t hpage_pmd_size_show
-ffffffc00824ef84 t shrink_huge_zero_page_count
-ffffffc00824efb0 t shrink_huge_zero_page_scan
-ffffffc00824f0a0 t deferred_split_count
-ffffffc00824f0c0 t deferred_split_scan
-ffffffc00824f410 t split_huge_pages_write
-ffffffc00824fef8 T __traceiter_mm_khugepaged_scan_pmd
-ffffffc00824ffc0 T __traceiter_mm_collapse_huge_page
-ffffffc008250058 T __traceiter_mm_collapse_huge_page_isolate
-ffffffc008250108 T __traceiter_mm_collapse_huge_page_swapin
-ffffffc0082501b0 T __traceiter_mm_khugepaged_scan_file
-ffffffc008250270 t trace_event_raw_event_mm_khugepaged_scan_pmd
-ffffffc008250398 t perf_trace_mm_khugepaged_scan_pmd
-ffffffc008250510 t trace_event_raw_event_mm_collapse_huge_page
-ffffffc0082505e0 t perf_trace_mm_collapse_huge_page
-ffffffc008250700 t trace_event_raw_event_mm_collapse_huge_page_isolate
-ffffffc008250814 t perf_trace_mm_collapse_huge_page_isolate
-ffffffc008250978 t trace_event_raw_event_mm_collapse_huge_page_swapin
-ffffffc008250a50 t perf_trace_mm_collapse_huge_page_swapin
-ffffffc008250b80 t trace_event_raw_event_mm_khugepaged_scan_file
-ffffffc008250cd4 t perf_trace_mm_khugepaged_scan_file
-ffffffc008250e90 T hugepage_madvise
-ffffffc008250f3c T khugepaged_enter_vma
-ffffffc008250fa8 T __khugepaged_enter
-ffffffc00825113c T __khugepaged_exit
-ffffffc008251328 T collapse_pte_mapped_thp
-ffffffc0082516d0 t collapse_and_free_pmd
-ffffffc0082517e0 t set_huge_pmd
-ffffffc0082518c0 T start_stop_khugepaged
-ffffffc0082519d0 t khugepaged
-ffffffc008252268 t set_recommended_min_free_kbytes
-ffffffc008252348 T khugepaged_min_free_kbytes_update
-ffffffc0082523ac T madvise_collapse
-ffffffc0082528ac t hpage_collapse_scan_file
-ffffffc008253ea0 t hpage_collapse_scan_pmd
-ffffffc008255da0 t trace_raw_output_mm_khugepaged_scan_pmd
-ffffffc008255e68 t trace_raw_output_mm_collapse_huge_page
-ffffffc008255f08 t trace_raw_output_mm_collapse_huge_page_isolate
-ffffffc008255fbc t trace_raw_output_mm_collapse_huge_page_swapin
-ffffffc008256038 t trace_raw_output_mm_khugepaged_scan_file
-ffffffc0082560f4 t max_ptes_none_show
-ffffffc008256138 t max_ptes_none_store
-ffffffc0082561d0 t max_ptes_swap_show
-ffffffc008256214 t max_ptes_swap_store
-ffffffc0082562ac t max_ptes_shared_show
-ffffffc0082562f0 t max_ptes_shared_store
-ffffffc008256388 t pages_to_scan_show
-ffffffc0082563cc t pages_to_scan_store
-ffffffc008256460 t pages_collapsed_show
-ffffffc0082564a4 t full_scans_show
-ffffffc0082564e8 t scan_sleep_millisecs_show
-ffffffc00825652c t scan_sleep_millisecs_store
-ffffffc0082565dc t alloc_sleep_millisecs_show
-ffffffc008256620 t alloc_sleep_millisecs_store
-ffffffc0082566cc t collect_mm_slot
-ffffffc0082567b4 t alloc_charge_hpage
-ffffffc008256944 T get_page_owner_handle
-ffffffc00825699c T __reset_page_owner
-ffffffc008256a50 t save_stack
-ffffffc008256b2c T __set_page_owner
-ffffffc008256c34 T __set_page_owner_migrate_reason
-ffffffc008256c84 T __split_page_owner
-ffffffc008256cec T __folio_copy_owner
-ffffffc008256db0 T pagetypeinfo_showmixedcount_print
-ffffffc008257070 T __dump_page_owner
-ffffffc008257210 t register_dummy_stack
-ffffffc008257290 t register_failure_stack
-ffffffc008257310 t register_early_stack
-ffffffc008257394 t lseek_page_owner
-ffffffc0082573c8 t read_page_owner
-ffffffc008257978 T __traceiter_test_pages_isolated
-ffffffc008257a10 t trace_event_raw_event_test_pages_isolated
-ffffffc008257ae0 t perf_trace_test_pages_isolated
-ffffffc008257c00 T start_isolate_page_range
-ffffffc008257dd0 t isolate_single_pageblock
-ffffffc0082582d0 t unset_migratetype_isolate
-ffffffc0082583bc t set_migratetype_isolate
-ffffffc0082586e8 T undo_isolate_page_range
-ffffffc0082587b8 T test_pages_isolated
-ffffffc008258a6c t trace_raw_output_test_pages_isolated
-ffffffc008258af4 T zs_get_total_pages
-ffffffc008258b10 T zs_map_object
-ffffffc008258e24 T zs_unmap_object
-ffffffc0082590c4 T zs_huge_class_size
-ffffffc0082590dc T zs_malloc
-ffffffc008259978 t obj_malloc
-ffffffc008259af8 t fix_fullness_group
-ffffffc008259c90 T zs_free
-ffffffc008259d9c t obj_free
-ffffffc008259eb8 t free_zspage
-ffffffc00825a024 T zs_compact
-ffffffc00825a90c T zs_pool_stats
-ffffffc00825a924 T zs_create_pool
-ffffffc00825ac20 T zs_destroy_pool
-ffffffc00825ad64 t __free_zspage
-ffffffc00825af44 t zs_page_isolate
-ffffffc00825afb8 t zs_page_migrate
-ffffffc00825b524 t zs_page_putback
-ffffffc00825b590 t putback_zspage
-ffffffc00825b6cc t async_free_zspage
-ffffffc00825bb58 t zs_shrinker_scan
-ffffffc00825bb90 t zs_shrinker_count
-ffffffc00825bbf8 t zs_cpu_prepare
-ffffffc00825bc80 t zs_cpu_dead
-ffffffc00825bce0 T balloon_page_list_enqueue
-ffffffc00825bdbc t balloon_page_enqueue_one.llvm.17257194188444909748
-ffffffc00825bed4 T balloon_page_list_dequeue
-ffffffc00825c09c T balloon_page_alloc
-ffffffc00825c0e4 T balloon_page_enqueue
-ffffffc00825c14c T balloon_page_dequeue
-ffffffc00825c210 t balloon_page_isolate.llvm.17257194188444909748
-ffffffc00825c2b4 t balloon_page_migrate.llvm.17257194188444909748
-ffffffc00825c31c t balloon_page_putback.llvm.17257194188444909748
-ffffffc00825c3c0 T page_ext_get
-ffffffc00825c474 T page_ext_put
-ffffffc00825c4a0 t __free_page_ext
-ffffffc00825c584 T secretmem_active
-ffffffc00825c5ac T vma_is_secretmem
-ffffffc00825c5d0 t secretmem_free_folio.llvm.5214621307697465951
-ffffffc00825c6d4 t secretmem_migrate_folio.llvm.5214621307697465951
-ffffffc00825c6e8 T __arm64_sys_memfd_secret
-ffffffc00825c918 t secretmem_fault.llvm.5214621307697465951
-ffffffc00825cabc t secretmem_mmap
-ffffffc00825cb48 t secretmem_release
-ffffffc00825cb98 t secretmem_setattr
-ffffffc00825cc30 t secretmem_init_fs_context
-ffffffc00825cc70 T mfill_atomic_install_pte
-ffffffc00825cf80 T mcopy_atomic
-ffffffc00825d870 T mfill_zeropage
-ffffffc00825dfa0 T mcopy_continue
-ffffffc00825e3e4 T uffd_wp_range
-ffffffc00825e4d4 T mwriteprotect_range
-ffffffc00825e6c8 t mmap_read_unlock
-ffffffc00825e718 t mmap_read_unlock
-ffffffc00825e768 t mmap_read_unlock
-ffffffc00825e7bc T usercopy_abort
-ffffffc00825e85c T __check_object_size
-ffffffc00825eb00 t check_stack_object
-ffffffc00825eb5c T memfd_fcntl
-ffffffc00825f11c T __arm64_sys_memfd_create
-ffffffc00825f42c T __page_reporting_notify
-ffffffc00825f4cc T page_reporting_register
-ffffffc00825f644 t page_reporting_process
-ffffffc00825fb18 T page_reporting_unregister
-ffffffc00825fb90 t page_reporting_drain
-ffffffc00825fcb4 T ioremap_prot
-ffffffc00825fdc4 T iounmap
-ffffffc00825fe0c T do_truncate
-ffffffc00825ff10 T vfs_truncate
-ffffffc0082600e4 T do_sys_truncate
-ffffffc0082601e8 T __arm64_sys_truncate
-ffffffc00826021c T do_sys_ftruncate
-ffffffc008260470 t sb_start_write
-ffffffc00826057c T __arm64_sys_ftruncate
-ffffffc0082605b8 T vfs_fallocate
-ffffffc0082607b0 t fsnotify_modify
-ffffffc00826085c t fsnotify_modify
-ffffffc00826090c T ksys_fallocate
-ffffffc008260998 T __arm64_sys_fallocate
-ffffffc008260a28 T __arm64_sys_faccessat
-ffffffc008260a68 T __arm64_sys_faccessat2
-ffffffc008260aa8 T __arm64_sys_access
-ffffffc008260ae4 T __arm64_sys_chdir
-ffffffc008260c08 T __arm64_sys_fchdir
-ffffffc008260cb8 T __arm64_sys_chroot
-ffffffc008260e0c T chmod_common
-ffffffc008260f78 T vfs_fchmod
-ffffffc008260fe4 T __arm64_sys_fchmod
-ffffffc008261088 T __arm64_sys_fchmodat
-ffffffc0082610c8 T __arm64_sys_chmod
-ffffffc008261104 T chown_common
-ffffffc0082612c0 T do_fchownat
-ffffffc008261430 T __arm64_sys_fchownat
-ffffffc008261478 T __arm64_sys_chown
-ffffffc0082614bc T __arm64_sys_lchown
-ffffffc008261500 T vfs_fchown
-ffffffc008261598 T ksys_fchown
-ffffffc008261664 T __arm64_sys_fchown
-ffffffc0082616a4 T finish_open
-ffffffc0082616e0 t do_dentry_open
-ffffffc008261b70 T finish_no_open
-ffffffc008261b8c T file_path
-ffffffc008261bbc T vfs_open
-ffffffc008261c04 T dentry_open
-ffffffc008261c90 T dentry_create
-ffffffc008261d50 T open_with_fake_path
-ffffffc008261dd8 T build_open_how
-ffffffc008261e2c T build_open_flags
-ffffffc008261fac T file_open_name
-ffffffc008262070 T filp_open
-ffffffc008262164 T filp_open_block
-ffffffc0082622e8 T filp_close
-ffffffc0082623ac T file_open_root
-ffffffc008262474 T do_sys_open
-ffffffc008262500 t do_sys_openat2
-ffffffc008262774 T __arm64_sys_open
-ffffffc008262818 T __arm64_sys_openat
-ffffffc0082628c0 T __arm64_sys_openat2
-ffffffc008262af8 T __arm64_sys_creat
-ffffffc008262b70 T __arm64_sys_close
-ffffffc008262bc4 T __arm64_sys_close_range
-ffffffc008262c04 T __arm64_sys_vhangup
-ffffffc008262c48 T generic_file_open
-ffffffc008262c7c T nonseekable_open
-ffffffc008262c9c T stream_open
-ffffffc008262cc4 t __sb_end_write
-ffffffc008262e3c t do_faccessat
-ffffffc0082630f0 t do_fchmodat
-ffffffc0082631d8 T generic_file_llseek
-ffffffc008263218 T vfs_setpos
-ffffffc008263274 T generic_file_llseek_size
-ffffffc0082633c4 T fixed_size_llseek
-ffffffc008263404 T no_seek_end_llseek
-ffffffc008263448 T no_seek_end_llseek_size
-ffffffc008263488 T noop_llseek
-ffffffc00826349c T default_llseek
-ffffffc0082635a0 T vfs_llseek
-ffffffc0082635fc T __arm64_sys_lseek
-ffffffc0082636d4 T rw_verify_area
-ffffffc00826375c T __kernel_read
-ffffffc008263948 t warn_unsupported
-ffffffc0082639bc T kernel_read
-ffffffc008263a7c T vfs_read
-ffffffc008263d18 T __kernel_write_iter
-ffffffc008263ed8 T __kernel_write
-ffffffc008263f7c T kernel_write
-ffffffc0082640a8 t file_start_write
-ffffffc0082641c4 t file_start_write
-ffffffc0082642e0 t file_start_write
-ffffffc0082643fc t file_end_write
-ffffffc00826458c t file_end_write
-ffffffc00826471c t file_end_write
-ffffffc0082648b0 T vfs_write
-ffffffc008264b74 T ksys_read
-ffffffc008264c68 T __arm64_sys_read
-ffffffc008264ca0 T ksys_write
-ffffffc008264d94 T __arm64_sys_write
-ffffffc008264dcc T ksys_pread64
-ffffffc008264e9c T __arm64_sys_pread64
-ffffffc008264f74 T ksys_pwrite64
-ffffffc008265044 T __arm64_sys_pwrite64
-ffffffc00826511c T vfs_iocb_iter_read
-ffffffc0082652b4 T vfs_iter_read
-ffffffc0082652f0 t do_iter_read
-ffffffc0082655f4 T vfs_iocb_iter_write
-ffffffc008265784 T vfs_iter_write
-ffffffc0082657c0 t do_iter_write
-ffffffc008265ac0 T __arm64_sys_readv
-ffffffc008265afc T __arm64_sys_writev
-ffffffc008265b38 T __arm64_sys_preadv
-ffffffc008265b74 T __arm64_sys_preadv2
-ffffffc008265bc8 T __arm64_sys_pwritev
-ffffffc008265c04 T __arm64_sys_pwritev2
-ffffffc008265c58 T __arm64_sys_sendfile
-ffffffc008265f6c T __arm64_sys_sendfile64
-ffffffc0082662a8 T generic_copy_file_range
-ffffffc00826631c T vfs_copy_file_range
-ffffffc0082667ec T __arm64_sys_copy_file_range
-ffffffc008266e90 T generic_write_check_limits
-ffffffc008266f40 T generic_write_checks_count
-ffffffc008267050 T generic_write_checks
-ffffffc0082670e4 T generic_file_rw_checks
-ffffffc008267164 t do_readv
-ffffffc0082672cc t do_writev
-ffffffc008267444 t do_preadv
-ffffffc008267588 t do_pwritev
-ffffffc0082676dc t do_sendfile
-ffffffc008267a68 T get_max_files
-ffffffc008267a80 T alloc_empty_file
-ffffffc008267ba8 t __alloc_file
-ffffffc008267c98 T alloc_empty_file_noaccount
-ffffffc008267cd8 T alloc_file_pseudo
-ffffffc008267df0 t alloc_file
-ffffffc008267f64 T alloc_file_clone
-ffffffc008267fc0 T flush_delayed_fput
-ffffffc008268038 t delayed_fput
-ffffffc0082680b0 T fput
-ffffffc0082681b8 t ____fput
-ffffffc0082681e4 T __fput_sync
-ffffffc008268260 t __fput
-ffffffc0082684e8 t proc_nr_files
-ffffffc00826853c t file_free_rcu
-ffffffc0082685c8 T put_super
-ffffffc008268618 t __put_super
-ffffffc0082686d8 T deactivate_locked_super
-ffffffc0082687b8 T deactivate_super
-ffffffc008268860 T trylock_super
-ffffffc0082688d0 T retire_super
-ffffffc008268948 T generic_shutdown_super
-ffffffc008268a90 T mount_capable
-ffffffc008268ae0 T sget_fc
-ffffffc008268d40 t alloc_super
-ffffffc008269000 t destroy_unused_super
-ffffffc008269084 t grab_super
-ffffffc008269184 T sget
-ffffffc0082693c0 T drop_super
-ffffffc00826941c T drop_super_exclusive
-ffffffc008269478 T iterate_supers
-ffffffc0082695a4 T iterate_supers_type
-ffffffc0082696b4 T get_super
-ffffffc0082697b0 T get_active_super
-ffffffc00826985c T user_get_super
-ffffffc008269978 T reconfigure_super
-ffffffc008269b7c T emergency_remount
-ffffffc008269bf0 t do_emergency_remount
-ffffffc008269c44 T emergency_thaw_all
-ffffffc008269cb8 t do_thaw_all
-ffffffc008269d0c T get_anon_bdev
-ffffffc008269d70 T free_anon_bdev
-ffffffc008269da8 T set_anon_super
-ffffffc008269e0c T kill_anon_super
-ffffffc008269e54 T kill_litter_super
-ffffffc008269eb0 T set_anon_super_fc
-ffffffc008269f14 T vfs_get_super
-ffffffc00826a038 t test_single_super
-ffffffc00826a04c t test_keyed_super
-ffffffc00826a06c T get_tree_nodev
-ffffffc00826a148 T get_tree_single
-ffffffc00826a228 T get_tree_single_reconf
-ffffffc00826a25c T get_tree_keyed
-ffffffc00826a340 T get_tree_bdev
-ffffffc00826a5a4 t test_bdev_super_fc
-ffffffc00826a5d8 t set_bdev_super_fc
-ffffffc00826a698 T mount_bdev
-ffffffc00826a868 t test_bdev_super
-ffffffc00826a898 t set_bdev_super
-ffffffc00826a954 T kill_block_super
-ffffffc00826a9b4 T mount_nodev
-ffffffc00826aa7c T reconfigure_single
-ffffffc00826aafc T mount_single
-ffffffc00826ac28 t compare_single
-ffffffc00826ac3c T vfs_get_tree
-ffffffc00826ad44 T super_setup_bdi_name
-ffffffc00826ae54 T super_setup_bdi
-ffffffc00826aed0 T freeze_super
-ffffffc00826b06c T thaw_super
-ffffffc00826b0ac t thaw_super_locked.llvm.7578484942678588139
-ffffffc00826b19c t destroy_super_rcu
-ffffffc00826b1f8 t destroy_super_work
-ffffffc00826b24c t super_cache_scan
-ffffffc00826b40c t super_cache_count
-ffffffc00826b518 t __iterate_supers
-ffffffc00826b610 t do_emergency_remount_callback
-ffffffc00826b6b8 t do_thaw_all_callback
-ffffffc00826b724 T chrdev_show
-ffffffc00826b7dc T register_chrdev_region
-ffffffc00826b938 t __register_chrdev_region
-ffffffc00826bd10 T alloc_chrdev_region
-ffffffc00826bd64 T __register_chrdev
-ffffffc00826bf3c T cdev_alloc
-ffffffc00826bfa8 T cdev_add
-ffffffc00826c028 T unregister_chrdev_region
-ffffffc00826c144 T __unregister_chrdev
-ffffffc00826c23c T cdev_del
-ffffffc00826c288 T cdev_put
-ffffffc00826c2b8 T cd_forget
-ffffffc00826c338 t chrdev_open.llvm.15562309049154878701
-ffffffc00826c4f0 t exact_match
-ffffffc00826c504 t exact_lock
-ffffffc00826c53c T cdev_set_parent
-ffffffc00826c560 T cdev_device_add
-ffffffc00826c644 T cdev_device_del
-ffffffc00826c6a4 T cdev_init
-ffffffc00826c714 t base_probe.llvm.15562309049154878701
-ffffffc00826c728 t cdev_dynamic_release
-ffffffc00826c7dc t cdev_default_release
-ffffffc00826c888 T generic_fillattr
-ffffffc00826c90c T generic_fill_statx_attr
-ffffffc00826c950 T vfs_getattr_nosec
-ffffffc00826caac T vfs_getattr
-ffffffc00826cb10 T vfs_fstat
-ffffffc00826ccc4 T getname_statx_lookup_flags
-ffffffc00826ccf0 T vfs_fstatat
-ffffffc00826cd7c t vfs_statx
-ffffffc00826cf94 T __arm64_sys_newstat
-ffffffc00826d074 T __arm64_sys_newlstat
-ffffffc00826d154 T __arm64_sys_newfstatat
-ffffffc00826d24c T __arm64_sys_newfstat
-ffffffc00826d2f8 T __arm64_sys_readlinkat
-ffffffc00826d338 T __arm64_sys_readlink
-ffffffc00826d374 T do_statx
-ffffffc00826d434 t cp_statx
-ffffffc00826d6cc T __arm64_sys_statx
-ffffffc00826d7ec T __inode_add_bytes
-ffffffc00826d834 T inode_add_bytes
-ffffffc00826d8c0 T __inode_sub_bytes
-ffffffc00826d900 T inode_sub_bytes
-ffffffc00826d984 T inode_get_bytes
-ffffffc00826d9dc T inode_set_bytes
-ffffffc00826d9f8 t cp_new_stat
-ffffffc00826dc40 t do_readlinkat
-ffffffc00826dde8 T __register_binfmt
-ffffffc00826de98 T unregister_binfmt
-ffffffc00826df10 T path_noexec
-ffffffc00826df44 T copy_string_kernel
-ffffffc00826e0c8 t get_arg_page
-ffffffc00826e254 T setup_arg_pages
-ffffffc00826e640 T open_exec
-ffffffc00826e6a0 t do_open_execat
-ffffffc00826e99c T __get_task_comm
-ffffffc00826ea08 T __set_task_comm
-ffffffc00826eb0c T begin_new_exec
-ffffffc00826f3ec T would_dump
-ffffffc00826f4b0 t unshare_sighand
-ffffffc00826f578 T set_dumpable
-ffffffc00826f600 T setup_new_exec
-ffffffc00826f66c T finalize_exec
-ffffffc00826f6cc T bprm_change_interp
-ffffffc00826f738 T remove_arg_zero
-ffffffc00826f880 T kernel_execve
-ffffffc00826fb00 t alloc_bprm
-ffffffc00826fd88 t bprm_execve
-ffffffc008270254 t free_bprm
-ffffffc008270384 T set_binfmt
-ffffffc0082703a0 T __arm64_sys_execve
-ffffffc008270404 T __arm64_sys_execveat
-ffffffc008270478 t do_execveat_common
-ffffffc008270728 t copy_strings
-ffffffc008270b28 t get_user_arg_ptr
-ffffffc008270c78 t proc_dointvec_minmax_coredump
-ffffffc008270cbc T pipe_lock
-ffffffc008270cf0 T pipe_unlock
-ffffffc008270d24 T pipe_double_lock
-ffffffc008270dac T generic_pipe_buf_try_steal
-ffffffc008270e7c T generic_pipe_buf_get
-ffffffc008270efc T generic_pipe_buf_release
-ffffffc008270f88 T account_pipe_buffers
-ffffffc008270fd4 T too_many_pipe_buffers_soft
-ffffffc008271000 T too_many_pipe_buffers_hard
-ffffffc00827102c T pipe_is_unprivileged_user
-ffffffc008271078 T alloc_pipe_info
-ffffffc008271300 T free_pipe_info
-ffffffc008271404 T create_pipe_files
-ffffffc0082715f0 T do_pipe_flags
-ffffffc008271680 t __do_pipe_flags
-ffffffc00827176c T __arm64_sys_pipe2
-ffffffc0082717a8 T __arm64_sys_pipe
-ffffffc0082717e0 T pipe_wait_readable
-ffffffc008271944 T pipe_wait_writable
-ffffffc008271abc t pipe_read.llvm.6928516040430295000
-ffffffc008271f20 t pipe_write.llvm.6928516040430295000
-ffffffc0082726a8 t pipe_poll.llvm.6928516040430295000
-ffffffc0082727fc t pipe_ioctl.llvm.6928516040430295000
-ffffffc008272a48 t fifo_open.llvm.6928516040430295000
-ffffffc008272d28 t pipe_release.llvm.6928516040430295000
-ffffffc008272e48 t pipe_fasync.llvm.6928516040430295000
-ffffffc008272f1c T round_pipe_size
-ffffffc008272f6c T pipe_resize_ring
-ffffffc0082730cc T get_pipe_info
-ffffffc0082730f8 T pipe_fcntl
-ffffffc00827330c t do_pipe2
-ffffffc008273508 t anon_pipe_buf_release
-ffffffc0082735d8 t anon_pipe_buf_try_steal
-ffffffc008273644 t wait_for_partner
-ffffffc00827374c t pipefs_init_fs_context
-ffffffc0082737ac t pipefs_dname
-ffffffc0082737f4 t proc_dopipe_max_size
-ffffffc00827382c t do_proc_dopipe_max_size_conv
-ffffffc008273894 T getname_flags
-ffffffc008273a54 T putname
-ffffffc008273adc T getname_uflags
-ffffffc008273b14 T getname
-ffffffc008273b48 T getname_kernel
-ffffffc008273c58 T generic_permission
-ffffffc008273dcc T inode_permission
-ffffffc008273f0c T path_get
-ffffffc008273f58 T path_put
-ffffffc008273f9c T nd_jump_link
-ffffffc008274058 T may_linkat
-ffffffc008274120 T follow_up
-ffffffc0082741d4 T follow_down_one
-ffffffc008274240 T follow_down
-ffffffc0082742f8 T full_name_hash
-ffffffc0082743a4 T hashlen_string
-ffffffc008274474 T filename_lookup
-ffffffc00827463c t path_lookupat
-ffffffc008274774 T kern_path_locked
-ffffffc0082748e4 T kern_path
-ffffffc0082749a0 T vfs_path_lookup
-ffffffc008274a90 T try_lookup_one_len
-ffffffc008274ba8 t lookup_one_common
-ffffffc008274dbc T lookup_one_len
-ffffffc008274ef0 t __lookup_slow
-ffffffc008275074 T lookup_one
-ffffffc00827519c T lookup_one_unlocked
-ffffffc0082752c0 t lookup_slow
-ffffffc008275334 T lookup_one_positive_unlocked
-ffffffc00827537c T lookup_one_len_unlocked
-ffffffc0082753bc T lookup_positive_unlocked
-ffffffc008275418 T path_pts
-ffffffc00827552c T user_path_at_empty
-ffffffc0082755f8 T __check_sticky
-ffffffc008275660 T lock_rename
-ffffffc00827570c T unlock_rename
-ffffffc008275770 T vfs_create
-ffffffc008275940 T vfs_mkobj
-ffffffc008275acc T may_open_dev
-ffffffc008275b04 T vfs_tmpfile_open
-ffffffc008275b88 t vfs_tmpfile
-ffffffc008275d04 T do_filp_open
-ffffffc008275e74 t path_openat
-ffffffc008276ab8 T do_file_open_root
-ffffffc008276cdc T kern_path_create
-ffffffc008276d98 t filename_create
-ffffffc008276f20 T done_path_create
-ffffffc008276f90 T user_path_create
-ffffffc008277058 T vfs_mknod
-ffffffc008277260 T __arm64_sys_mknodat
-ffffffc0082772d0 T __arm64_sys_mknod
-ffffffc008277334 T vfs_mkdir
-ffffffc008277514 T do_mkdirat
-ffffffc008277710 T __arm64_sys_mkdirat
-ffffffc008277770 T __arm64_sys_mkdir
-ffffffc0082777cc T vfs_rmdir
-ffffffc008277974 t may_delete
-ffffffc008277b10 t dont_mount
-ffffffc008277b60 t dont_mount
-ffffffc008277bb0 t d_delete_notify
-ffffffc008277c58 T do_rmdir
-ffffffc008277f04 t filename_parentat
-ffffffc00827811c t __lookup_hash
-ffffffc00827825c T __arm64_sys_rmdir
-ffffffc0082782a4 T vfs_unlink
-ffffffc0082784ac t try_break_deleg
-ffffffc008278544 t fsnotify_link_count
-ffffffc0082785b8 T do_unlinkat
-ffffffc008278868 T __arm64_sys_unlinkat
-ffffffc0082788dc T __arm64_sys_unlink
-ffffffc008278924 T vfs_symlink
-ffffffc008278ab4 T do_symlinkat
-ffffffc008278cfc T __arm64_sys_symlinkat
-ffffffc008278d78 T __arm64_sys_symlink
-ffffffc008278de4 T vfs_link
-ffffffc00827901c t fsnotify_link
-ffffffc008279108 T do_linkat
-ffffffc008279520 T __arm64_sys_linkat
-ffffffc0082795b8 T __arm64_sys_link
-ffffffc00827962c T vfs_rename
-ffffffc008279b20 t fsnotify_move
-ffffffc008279d1c t fsnotify_move
-ffffffc008279ec4 T do_renameat2
-ffffffc00827a400 T __arm64_sys_renameat2
-ffffffc00827a494 T __arm64_sys_renameat
-ffffffc00827a51c T __arm64_sys_rename
-ffffffc00827a590 T readlink_copy
-ffffffc00827a760 T vfs_readlink
-ffffffc00827a8ec T vfs_get_link
-ffffffc00827a988 T page_get_link
-ffffffc00827aaec T page_put_link
-ffffffc00827ab74 T page_readlink
-ffffffc00827ac28 T page_symlink
-ffffffc00827ade8 t check_acl
-ffffffc00827af08 t __traverse_mounts
-ffffffc00827b104 t path_init
-ffffffc00827b4a4 t handle_lookup_down
-ffffffc00827b504 t link_path_walk
-ffffffc00827ba58 t complete_walk
-ffffffc00827bb3c t terminate_walk
-ffffffc00827bc64 t nd_jump_root
-ffffffc00827bd64 t set_root
-ffffffc00827be94 t step_into
-ffffffc00827c1d0 t pick_link
-ffffffc00827c548 t try_to_unlazy_next
-ffffffc00827c6b0 t legitimize_links
-ffffffc00827c800 t drop_links
-ffffffc00827c898 t legitimize_path
-ffffffc00827c924 t try_to_unlazy
-ffffffc00827ca7c t put_link
-ffffffc00827cb1c t nd_alloc_stack
-ffffffc00827cbb0 t walk_component
-ffffffc00827ccdc t handle_dots
-ffffffc00827cfdc t lookup_fast
-ffffffc00827d148 t choose_mountpoint_rcu
-ffffffc00827d1d8 t choose_mountpoint
-ffffffc00827d34c t may_open
-ffffffc00827d49c t do_tmpfile
-ffffffc00827d5b0 t do_o_path
-ffffffc00827d678 t do_mknodat
-ffffffc00827d9a8 t path_parentat
-ffffffc00827da24 T __f_setown
-ffffffc00827da80 t f_modown.llvm.1854610182598492322
-ffffffc00827db78 T f_setown
-ffffffc00827dc34 T f_delown
-ffffffc00827dc90 T f_getown
-ffffffc00827dd10 T __arm64_sys_fcntl
-ffffffc00827eb64 T send_sigio
-ffffffc00827ec8c t send_sigio_to_task
-ffffffc00827ee34 T send_sigurg
-ffffffc00827ef4c t send_sigurg_to_task
-ffffffc00827f008 T fasync_remove_entry
-ffffffc00827f0e4 t fasync_free_rcu
-ffffffc00827f11c T fasync_alloc
-ffffffc00827f154 T fasync_free
-ffffffc00827f18c T fasync_insert_entry
-ffffffc00827f26c T fasync_helper
-ffffffc00827f31c T kill_fasync
-ffffffc00827f3f8 T vfs_ioctl
-ffffffc00827f464 T fiemap_fill_next_extent
-ffffffc00827f68c T fiemap_prep
-ffffffc00827f72c T fileattr_fill_xflags
-ffffffc00827f794 T fileattr_fill_flags
-ffffffc00827f814 T vfs_fileattr_get
-ffffffc00827f870 T copy_fsxattr_to_user
-ffffffc00827fa30 T vfs_fileattr_set
-ffffffc00827fc88 T __arm64_sys_ioctl
-ffffffc008281954 t ioctl_preallocate
-ffffffc008281b68 T iterate_dir
-ffffffc008281d28 T __arm64_sys_getdents
-ffffffc008281f6c T __arm64_sys_getdents64
-ffffffc0082821b0 t filldir
-ffffffc008282940 t filldir64
-ffffffc0082830d0 T select_estimate_accuracy
-ffffffc0082831dc T poll_initwait
-ffffffc008283210 t __pollwait
-ffffffc008283328 T poll_freewait
-ffffffc0082833e4 T poll_select_set_timeout
-ffffffc008283478 T core_sys_select
-ffffffc0082836f8 t get_fd_set
-ffffffc0082838dc t do_select
-ffffffc008283f78 t set_fd_set
-ffffffc0082840f0 T __arm64_sys_select
-ffffffc00828437c T __arm64_sys_pselect6
-ffffffc008284790 T __arm64_sys_poll
-ffffffc0082848c4 T __arm64_sys_ppoll
-ffffffc008284a00 t pollwake
-ffffffc008284a98 t poll_select_finish
-ffffffc008284ec8 t do_sys_poll
-ffffffc0082856d0 t do_restart_poll
-ffffffc008285774 T take_dentry_name_snapshot
-ffffffc00828582c T release_dentry_name_snapshot
-ffffffc0082858b4 T __d_drop
-ffffffc008285904 t ___d_drop
-ffffffc008285a8c T d_drop
-ffffffc008285af8 T d_mark_dontcache
-ffffffc008285b8c T dput
-ffffffc008285ca0 t retain_dentry
-ffffffc008285d74 t dentry_kill
-ffffffc008285e88 T dput_to_list
-ffffffc008285f90 t __dput_to_list
-ffffffc008286008 T dget_parent
-ffffffc0082860f4 T d_find_any_alias
-ffffffc008286168 T d_find_alias
-ffffffc008286268 T d_find_alias_rcu
-ffffffc008286324 T d_prune_aliases
-ffffffc008286410 t lock_parent
-ffffffc008286470 t __dentry_kill
-ffffffc008286734 T shrink_dentry_list
-ffffffc0082869b8 t shrink_lock_dentry
-ffffffc008286ad0 T prune_dcache_sb
-ffffffc008286b68 t dentry_lru_isolate
-ffffffc008286dd4 T shrink_dcache_sb
-ffffffc008286e80 t dentry_lru_isolate_shrink
-ffffffc008286fa0 T path_has_submounts
-ffffffc00828720c T d_set_mounted
-ffffffc008287310 T shrink_dcache_parent
-ffffffc0082879ac T shrink_dcache_for_umount
-ffffffc008287a54 t do_one_tree
-ffffffc008287d54 T d_invalidate
-ffffffc00828801c T d_alloc
-ffffffc0082880bc t __d_alloc.llvm.12117761492590953702
-ffffffc0082882c4 T d_alloc_anon
-ffffffc0082882f4 T d_alloc_cursor
-ffffffc00828835c T d_alloc_pseudo
-ffffffc008288398 T d_alloc_name
-ffffffc00828847c T d_set_d_op
-ffffffc008288554 T d_set_fallthru
-ffffffc0082885a8 T d_instantiate
-ffffffc00828861c t __d_instantiate
-ffffffc00828883c T d_instantiate_new
-ffffffc0082888e8 T d_make_root
-ffffffc00828898c T d_instantiate_anon
-ffffffc0082889b8 t __d_instantiate_anon
-ffffffc008288c94 T d_obtain_alias
-ffffffc008288cc0 t __d_obtain_alias.llvm.12117761492590953702
-ffffffc008288d90 T d_obtain_root
-ffffffc008288dc0 T d_add_ci
-ffffffc008288fa4 T d_hash_and_lookup
-ffffffc00828908c T d_alloc_parallel
-ffffffc0082896a4 T d_splice_alias
-ffffffc0082898a8 T d_same_name
-ffffffc0082899b4 T __d_lookup_rcu
-ffffffc008289afc t __d_lookup_rcu_op_compare
-ffffffc008289c40 T d_lookup
-ffffffc008289ccc T __d_lookup
-ffffffc008289e8c T d_delete
-ffffffc008289f38 t dentry_unlink_inode
-ffffffc00828a104 T d_rehash
-ffffffc00828a150 t __d_rehash.llvm.12117761492590953702
-ffffffc00828a2cc t hlist_bl_unlock
-ffffffc00828a334 T __d_lookup_unhash_wake
-ffffffc00828a390 t __d_lookup_unhash
-ffffffc00828a568 T d_add
-ffffffc00828a5c0 t __d_add
-ffffffc00828a7cc T d_exact_alias
-ffffffc00828a990 T d_move
-ffffffc00828aa18 t __d_move
-ffffffc00828af68 T d_exchange
-ffffffc00828b03c T d_ancestor
-ffffffc00828b070 t __d_unalias
-ffffffc00828b154 T is_subdir
-ffffffc00828b220 T d_genocide
-ffffffc00828b420 T d_tmpfile
-ffffffc00828b520 t proc_nr_dentry
-ffffffc00828b6c8 t d_lru_add
-ffffffc00828b834 t __lock_parent
-ffffffc00828b8d8 t d_lru_del
-ffffffc00828ba44 t d_shrink_add
-ffffffc00828bb54 t __d_free_external
-ffffffc00828bba4 t __d_free
-ffffffc00828bbd8 t start_dir_add
-ffffffc00828bc4c T get_nr_dirty_inodes
-ffffffc00828bd54 T inode_init_always
-ffffffc00828bf20 t no_open
-ffffffc00828bf34 T free_inode_nonrcu
-ffffffc00828bf6c T __destroy_inode
-ffffffc00828c178 T drop_nlink
-ffffffc00828c1e8 T clear_nlink
-ffffffc00828c23c T set_nlink
-ffffffc00828c2dc T inc_nlink
-ffffffc00828c34c T address_space_init_once
-ffffffc00828c3e8 T inode_init_once
-ffffffc00828c498 T __iget
-ffffffc00828c4dc T ihold
-ffffffc00828c53c T inode_add_lru
-ffffffc00828c568 t __inode_add_lru.llvm.15748566194420706846
-ffffffc00828c690 T inode_sb_list_add
-ffffffc00828c714 T __insert_inode_hash
-ffffffc00828c7e0 T __remove_inode_hash
-ffffffc00828c85c T dump_mapping
-ffffffc00828c9ec T clear_inode
-ffffffc00828ca8c T evict_inodes
-ffffffc00828cd14 T invalidate_inodes
-ffffffc00828cfc8 T prune_icache_sb
-ffffffc00828d0b0 t inode_lru_isolate
-ffffffc00828d384 T get_next_ino
-ffffffc00828d470 T new_inode_pseudo
-ffffffc00828d4c4 t alloc_inode
-ffffffc00828d5e8 T new_inode
-ffffffc00828d69c T unlock_new_inode
-ffffffc00828d714 T discard_new_inode
-ffffffc00828d790 T iput
-ffffffc00828da64 T lock_two_nondirectories
-ffffffc00828dae0 T unlock_two_nondirectories
-ffffffc00828db58 T inode_insert5
-ffffffc00828dd5c t find_inode
-ffffffc00828df40 t wait_on_inode
-ffffffc00828df88 T iget5_locked
-ffffffc00828e038 T ilookup5
-ffffffc00828e150 t destroy_inode
-ffffffc00828e1f4 T iget_locked
-ffffffc00828e468 t find_inode_fast
-ffffffc00828e630 T iunique
-ffffffc00828e740 T igrab
-ffffffc00828e7d0 T ilookup5_nowait
-ffffffc00828e89c T ilookup
-ffffffc00828e9d8 T find_inode_nowait
-ffffffc00828eb00 T find_inode_rcu
-ffffffc00828ec18 T find_inode_by_ino_rcu
-ffffffc00828ecd0 T insert_inode_locked
-ffffffc00828eed8 T insert_inode_locked4
-ffffffc00828ef3c T generic_delete_inode
-ffffffc00828ef50 T bmap
-ffffffc00828efc8 T generic_update_time
-ffffffc00828f07c T inode_update_time
-ffffffc00828f160 T atime_needs_update
-ffffffc00828f29c T current_time
-ffffffc00828f3c0 T touch_atime
-ffffffc00828f6d0 T dentry_needs_remove_privs
-ffffffc00828f738 T file_remove_privs
-ffffffc00828f764 t __file_remove_privs.llvm.15748566194420706846
-ffffffc00828f8f0 T file_update_time
-ffffffc00828f9d8 t __file_update_time
-ffffffc00828faf8 T file_modified
-ffffffc00828fb24 t file_modified_flags.llvm.15748566194420706846
-ffffffc00828fc50 T kiocb_modified
-ffffffc00828fc88 T inode_needs_sync
-ffffffc00828fce8 t init_once
-ffffffc00828fd98 t init_once
-ffffffc00828fdc8 t init_once
-ffffffc00828fe4c t init_once
-ffffffc00828febc t init_once
-ffffffc00828feec t init_once
-ffffffc00828ff1c T init_special_inode
-ffffffc00828ffbc T inode_init_owner
-ffffffc008290014 T inode_owner_or_capable
-ffffffc00829007c T inode_dio_wait
-ffffffc008290174 T inode_set_flags
-ffffffc008290204 T inode_nohighmem
-ffffffc008290224 T timestamp_truncate
-ffffffc0082902d8 T in_group_or_capable
-ffffffc008290338 T mode_strip_sgid
-ffffffc0082903d4 t proc_nr_inodes
-ffffffc008290520 t evict
-ffffffc0082907c8 t i_callback
-ffffffc00829082c T setattr_should_drop_sgid
-ffffffc008290888 T setattr_should_drop_suidgid
-ffffffc008290920 T setattr_prepare
-ffffffc008290b54 T inode_newsize_ok
-ffffffc008290bf0 T setattr_copy
-ffffffc008290ca8 T may_setattr
-ffffffc008290d3c T notify_change
-ffffffc00829103c t fsnotify_change
-ffffffc00829112c T make_bad_inode
-ffffffc0082911bc T is_bad_inode
-ffffffc0082911e0 T iget_failed
-ffffffc008291280 t bad_inode_lookup.llvm.2577810683248593255
-ffffffc008291294 t bad_inode_get_link.llvm.2577810683248593255
-ffffffc0082912a8 t bad_inode_permission.llvm.2577810683248593255
-ffffffc0082912bc t bad_inode_get_acl.llvm.2577810683248593255
-ffffffc0082912d0 t bad_inode_readlink.llvm.2577810683248593255
-ffffffc0082912e4 t bad_inode_create.llvm.2577810683248593255
-ffffffc0082912f8 t bad_inode_link.llvm.2577810683248593255
-ffffffc00829130c t bad_inode_unlink.llvm.2577810683248593255
-ffffffc008291320 t bad_inode_symlink.llvm.2577810683248593255
-ffffffc008291334 t bad_inode_mkdir.llvm.2577810683248593255
-ffffffc008291348 t bad_inode_rmdir.llvm.2577810683248593255
-ffffffc00829135c t bad_inode_mknod.llvm.2577810683248593255
-ffffffc008291370 t bad_inode_rename2.llvm.2577810683248593255
-ffffffc008291384 t bad_inode_setattr.llvm.2577810683248593255
-ffffffc008291398 t bad_inode_getattr.llvm.2577810683248593255
-ffffffc0082913ac t bad_inode_listxattr.llvm.2577810683248593255
-ffffffc0082913c0 t bad_inode_fiemap.llvm.2577810683248593255
-ffffffc0082913d4 t bad_inode_update_time.llvm.2577810683248593255
-ffffffc0082913e8 t bad_inode_atomic_open.llvm.2577810683248593255
-ffffffc0082913fc t bad_inode_tmpfile.llvm.2577810683248593255
-ffffffc008291410 t bad_inode_set_acl.llvm.2577810683248593255
-ffffffc008291424 t bad_file_open
-ffffffc008291438 T dup_fd
-ffffffc0082917d4 t __free_fdtable
-ffffffc00829181c t alloc_fdtable
-ffffffc008291940 T put_files_struct
-ffffffc008291a94 T exit_files
-ffffffc008291af8 T __get_unused_fd_flags
-ffffffc008291b28 t alloc_fd.llvm.8751999745444676804
-ffffffc008291d00 T get_unused_fd_flags
-ffffffc008291d48 T put_unused_fd
-ffffffc008291e00 T fd_install
-ffffffc008291efc t rcu_read_unlock_sched
-ffffffc008291f54 T close_fd
-ffffffc008292060 T __close_range
-ffffffc0082922d8 T __close_fd_get_file
-ffffffc008292394 T close_fd_get_file
-ffffffc008292490 T do_close_on_exec
-ffffffc0082925f0 T fget
-ffffffc00829262c T fget_raw
-ffffffc008292668 T fget_task
-ffffffc0082926dc t __fget_files
-ffffffc008292814 T task_lookup_fd_rcu
-ffffffc0082928b8 T task_lookup_next_fd_rcu
-ffffffc008292994 T __fdget
-ffffffc008292a40 T __fdget_raw
-ffffffc008292adc T __fdget_pos
-ffffffc008292bcc T __f_unlock_pos
-ffffffc008292bfc T set_close_on_exec
-ffffffc008292cb0 T get_close_on_exec
-ffffffc008292d20 T replace_fd
-ffffffc008292dec t expand_files
-ffffffc0082930dc t do_dup2
-ffffffc008293240 T __receive_fd
-ffffffc0082934c0 T receive_fd_replace
-ffffffc0082935a4 T receive_fd
-ffffffc00829365c T __arm64_sys_dup3
-ffffffc00829369c T __arm64_sys_dup2
-ffffffc008293758 T __arm64_sys_dup
-ffffffc0082937f0 T f_dupfd
-ffffffc008293898 T iterate_fd
-ffffffc008293994 t free_fdtable_rcu
-ffffffc0082939e0 t ksys_dup3
-ffffffc008293af8 T get_filesystem
-ffffffc008293b08 T put_filesystem
-ffffffc008293b18 T register_filesystem
-ffffffc008293c00 T unregister_filesystem
-ffffffc008293cac T __arm64_sys_sysfs
-ffffffc008293fac T get_fs_type
-ffffffc008294090 t filesystems_proc_show
-ffffffc008294138 T mnt_release_group_id
-ffffffc008294180 T mnt_get_count
-ffffffc008294224 T __mnt_is_readonly
-ffffffc008294254 T __mnt_want_write
-ffffffc008294410 T mnt_want_write
-ffffffc008294538 t sb_end_write.llvm.1554850461162813889
-ffffffc0082946b4 T __mnt_want_write_file
-ffffffc008294710 T mnt_want_write_file
-ffffffc008294870 T __mnt_drop_write
-ffffffc008294954 T mnt_drop_write
-ffffffc008294994 T __mnt_drop_write_file
-ffffffc0082949cc T mnt_drop_write_file
-ffffffc008294a1c T sb_prepare_remount_readonly
-ffffffc008294ba4 T __legitimize_mnt
-ffffffc008294d1c t mnt_add_count
-ffffffc008294db8 T __lookup_mnt
-ffffffc008294e34 T lookup_mnt
-ffffffc008294f58 T __is_local_mountpoint
-ffffffc008295004 T mnt_set_mountpoint
-ffffffc0082950f0 T mnt_change_mountpoint
-ffffffc0082952a8 t attach_mnt
-ffffffc008295414 t put_mountpoint
-ffffffc0082954d4 T vfs_create_mount
-ffffffc00829564c t alloc_vfsmnt
-ffffffc008295818 T fc_mount
-ffffffc008295874 T vfs_kern_mount
-ffffffc008295958 T vfs_submount
-ffffffc0082959ac T mntput
-ffffffc0082959f0 t mntput_no_expire
-ffffffc008295ca8 T mntget
-ffffffc008295d58 T path_is_mountpoint
-ffffffc008295e6c T mnt_clone_internal
-ffffffc008295ebc t clone_mnt
-ffffffc0082961d4 t m_start.llvm.1554850461162813889
-ffffffc008296290 t m_stop.llvm.1554850461162813889
-ffffffc00829636c t m_next.llvm.1554850461162813889
-ffffffc0082963f8 t m_show.llvm.1554850461162813889
-ffffffc008296448 T mnt_cursor_del
-ffffffc0082964d8 T may_umount_tree
-ffffffc00829662c T may_umount
-ffffffc0082966d4 T __detach_mounts
-ffffffc0082968a4 t umount_mnt
-ffffffc0082969d0 t umount_tree
-ffffffc008296d74 t namespace_unlock
-ffffffc008296eb4 T may_mount
-ffffffc008296ef8 T path_umount
-ffffffc008297420 T __arm64_sys_umount
-ffffffc0082974c8 T from_mnt_ns
-ffffffc0082974d8 T copy_tree
-ffffffc0082977c8 T collect_mounts
-ffffffc008297854 T dissolve_on_fput
-ffffffc008297930 t free_mnt_ns
-ffffffc008297998 T drop_collected_mounts
-ffffffc008297a2c T clone_private_mount
-ffffffc008297b30 T iterate_mounts
-ffffffc008297bdc T count_mounts
-ffffffc008297c80 T __arm64_sys_open_tree
-ffffffc0082980a0 T finish_automount
-ffffffc0082983f0 t get_mountpoint
-ffffffc0082985c8 t unlock_mount
-ffffffc0082986b4 T mnt_set_expiry
-ffffffc00829872c T mark_mounts_for_expiry
-ffffffc00829891c T path_mount
-ffffffc008298e0c t do_loopback
-ffffffc008298fdc t do_change_type
-ffffffc008299144 t do_move_mount_old
-ffffffc0082991ec t do_new_mount
-ffffffc008299544 T do_mount
-ffffffc008299608 T copy_mnt_ns
-ffffffc008299944 t alloc_mnt_ns
-ffffffc008299a8c t lock_mnt_tree
-ffffffc008299b24 T mount_subtree
-ffffffc008299d50 T put_mnt_ns
-ffffffc008299e74 T __arm64_sys_mount
-ffffffc00829a308 T __arm64_sys_fsmount
-ffffffc00829a704 T __arm64_sys_move_mount
-ffffffc00829aa48 T is_path_reachable
-ffffffc00829aabc T path_is_under
-ffffffc00829ab5c T __arm64_sys_pivot_root
-ffffffc00829b09c T __arm64_sys_mount_setattr
-ffffffc00829b8a0 T kern_mount
-ffffffc00829b8e8 T kern_unmount
-ffffffc00829b94c T kern_unmount_array
-ffffffc00829b9e8 T our_mnt
-ffffffc00829ba10 T current_chrooted
-ffffffc00829baf4 T mnt_may_suid
-ffffffc00829bb30 t mntns_get.llvm.1554850461162813889
-ffffffc00829bbdc t mntns_put.llvm.1554850461162813889
-ffffffc00829bc08 t mntns_install.llvm.1554850461162813889
-ffffffc00829bd94 t mntns_owner.llvm.1554850461162813889
-ffffffc00829bda4 t __put_mountpoint
-ffffffc00829be60 t unhash_mnt
-ffffffc00829bf04 t __cleanup_mnt
-ffffffc00829bf30 t cleanup_mnt
-ffffffc00829c090 t delayed_mntput
-ffffffc00829c10c t delayed_free_vfsmnt
-ffffffc00829c168 t __do_loopback
-ffffffc00829c270 t graft_tree
-ffffffc00829c2ec t attach_recursive_mnt
-ffffffc00829c9ec t invent_group_ids
-ffffffc00829cb30 t commit_tree
-ffffffc00829cce8 t set_mount_attributes
-ffffffc00829cd4c t mnt_warn_timestamp_expiry
-ffffffc00829ce9c t lock_mount
-ffffffc00829cfa4 t do_move_mount
-ffffffc00829d1d0 t tree_contains_unbindable
-ffffffc00829d238 t check_for_nsfs_mounts
-ffffffc00829d344 t mount_too_revealing
-ffffffc00829d4f0 T seq_open
-ffffffc00829d594 T seq_read
-ffffffc00829d66c T seq_read_iter
-ffffffc00829db64 t traverse
-ffffffc00829ddb4 T seq_lseek
-ffffffc00829de7c T seq_release
-ffffffc00829decc T seq_escape_mem
-ffffffc00829df70 T seq_vprintf
-ffffffc00829e024 T seq_printf
-ffffffc00829e0fc T seq_bprintf
-ffffffc00829e170 T mangle_path
-ffffffc00829e23c T seq_path
-ffffffc00829e398 T seq_file_path
-ffffffc00829e3c8 T seq_path_root
-ffffffc00829e54c T seq_dentry
-ffffffc00829e6a8 T single_start
-ffffffc00829e6c4 T single_open
-ffffffc00829e7bc t single_next
-ffffffc00829e7dc t single_stop
-ffffffc00829e7ec T single_open_size
-ffffffc00829e8a4 T single_release
-ffffffc00829e900 T seq_release_private
-ffffffc00829e964 T __seq_open_private
-ffffffc00829ea30 T seq_open_private
-ffffffc00829eafc T seq_putc
-ffffffc00829eb2c T seq_puts
-ffffffc00829ebac T seq_put_decimal_ull_width
-ffffffc00829eccc T seq_put_decimal_ull
-ffffffc00829ecfc T seq_put_hex_ll
-ffffffc00829ee44 T seq_put_decimal_ll
-ffffffc00829efa8 T seq_write
-ffffffc00829f018 T seq_pad
-ffffffc00829f0c8 T seq_hex_dump
-ffffffc00829f274 T seq_list_start
-ffffffc00829f2b0 T seq_list_start_head
-ffffffc00829f2f4 T seq_list_next
-ffffffc00829f31c T seq_list_start_rcu
-ffffffc00829f368 T seq_list_start_head_rcu
-ffffffc00829f3bc T seq_list_next_rcu
-ffffffc00829f3e4 T seq_hlist_start
-ffffffc00829f408 T seq_hlist_start_head
-ffffffc00829f440 T seq_hlist_next
-ffffffc00829f468 T seq_hlist_start_rcu
-ffffffc00829f49c T seq_hlist_start_head_rcu
-ffffffc00829f4dc T seq_hlist_next_rcu
-ffffffc00829f518 T seq_hlist_start_percpu
-ffffffc00829f5dc T seq_hlist_next_percpu
-ffffffc00829f6cc T xattr_supported_namespace
-ffffffc00829f778 T __vfs_setxattr
-ffffffc00829f8b8 T __vfs_setxattr_noperm
-ffffffc00829fbb4 T __vfs_setxattr_locked
-ffffffc00829fcc8 t xattr_permission
-ffffffc00829fe28 T vfs_setxattr
-ffffffc00829ffa4 T vfs_getxattr_alloc
-ffffffc0082a01ac T __vfs_getxattr
-ffffffc0082a02d0 T vfs_getxattr
-ffffffc0082a0510 T vfs_listxattr
-ffffffc0082a05cc T __vfs_removexattr
-ffffffc0082a06f8 T __vfs_removexattr_locked
-ffffffc0082a095c T vfs_removexattr
-ffffffc0082a0a70 T setxattr_copy
-ffffffc0082a0b20 T do_setxattr
-ffffffc0082a0b5c T __arm64_sys_setxattr
-ffffffc0082a0ba0 T __arm64_sys_lsetxattr
-ffffffc0082a0be4 T __arm64_sys_fsetxattr
-ffffffc0082a0cd8 T do_getxattr
-ffffffc0082a0f28 T __arm64_sys_getxattr
-ffffffc0082a0f64 T __arm64_sys_lgetxattr
-ffffffc0082a0fa0 T __arm64_sys_fgetxattr
-ffffffc0082a1110 T __arm64_sys_listxattr
-ffffffc0082a114c T __arm64_sys_llistxattr
-ffffffc0082a1188 T __arm64_sys_flistxattr
-ffffffc0082a1230 T __arm64_sys_removexattr
-ffffffc0082a126c T __arm64_sys_lremovexattr
-ffffffc0082a12a8 T __arm64_sys_fremovexattr
-ffffffc0082a1420 T generic_listxattr
-ffffffc0082a158c T xattr_full_name
-ffffffc0082a15d8 T simple_xattr_alloc
-ffffffc0082a1658 T simple_xattr_get
-ffffffc0082a1710 T simple_xattr_set
-ffffffc0082a1920 T simple_xattr_list
-ffffffc0082a1ac4 T simple_xattr_list_add
-ffffffc0082a1b38 t path_setxattr
-ffffffc0082a1cb8 t setxattr
-ffffffc0082a1e1c t path_getxattr
-ffffffc0082a2040 t path_listxattr
-ffffffc0082a2140 t listxattr
-ffffffc0082a23ec t path_removexattr
-ffffffc0082a2620 T simple_getattr
-ffffffc0082a2680 T simple_statfs
-ffffffc0082a26b0 T always_delete_dentry
-ffffffc0082a26c4 T simple_lookup
-ffffffc0082a2738 T dcache_dir_open
-ffffffc0082a2788 T dcache_dir_close
-ffffffc0082a27bc T dcache_dir_lseek
-ffffffc0082a291c t scan_positives
-ffffffc0082a2a9c T dcache_readdir
-ffffffc0082a2d04 T generic_read_dir
-ffffffc0082a2d18 T noop_fsync
-ffffffc0082a2d2c T simple_recursive_removal
-ffffffc0082a2fc8 T init_pseudo
-ffffffc0082a3044 T simple_open
-ffffffc0082a3064 T simple_link
-ffffffc0082a30e8 T simple_empty
-ffffffc0082a3188 T simple_unlink
-ffffffc0082a31f4 T simple_rmdir
-ffffffc0082a32e0 T simple_rename_exchange
-ffffffc0082a33ac T simple_rename
-ffffffc0082a3598 T simple_setattr
-ffffffc0082a361c T simple_write_begin
-ffffffc0082a379c t simple_read_folio.llvm.5985996129375924208
-ffffffc0082a38dc t simple_write_end.llvm.5985996129375924208
-ffffffc0082a3ad4 T simple_fill_super
-ffffffc0082a3c8c T simple_pin_fs
-ffffffc0082a3d60 T simple_release_fs
-ffffffc0082a3dd8 T simple_read_from_buffer
-ffffffc0082a3fc8 T simple_write_to_buffer
-ffffffc0082a41e4 T memory_read_from_buffer
-ffffffc0082a4264 T simple_transaction_set
-ffffffc0082a4290 T simple_transaction_get
-ffffffc0082a44b8 T simple_transaction_read
-ffffffc0082a4508 T simple_transaction_release
-ffffffc0082a4540 T simple_attr_open
-ffffffc0082a45ec T simple_attr_release
-ffffffc0082a4620 T simple_attr_read
-ffffffc0082a4758 T simple_attr_write
-ffffffc0082a4784 t simple_attr_write_xsigned.llvm.5985996129375924208
-ffffffc0082a4a24 T simple_attr_write_signed
-ffffffc0082a4a54 T generic_fh_to_dentry
-ffffffc0082a4acc T generic_fh_to_parent
-ffffffc0082a4b54 T __generic_file_fsync
-ffffffc0082a4c08 T generic_file_fsync
-ffffffc0082a4c54 T generic_check_addressable
-ffffffc0082a4ca8 T noop_direct_IO
-ffffffc0082a4cbc T kfree_link
-ffffffc0082a4ce8 T alloc_anon_inode
-ffffffc0082a4d94 T simple_nosetlease
-ffffffc0082a4da8 T simple_get_link
-ffffffc0082a4dbc T make_empty_dir_inode
-ffffffc0082a4e3c T is_empty_dir_inode
-ffffffc0082a4e80 T generic_set_encrypted_ci_d_ops
-ffffffc0082a4ec0 T inode_maybe_inc_iversion
-ffffffc0082a4f44 t pseudo_fs_free
-ffffffc0082a4f74 t pseudo_fs_get_tree
-ffffffc0082a4fa8 t pseudo_fs_fill_super
-ffffffc0082a507c t empty_dir_lookup
-ffffffc0082a5090 t empty_dir_setattr
-ffffffc0082a50a4 t empty_dir_getattr
-ffffffc0082a50e4 t empty_dir_listxattr
-ffffffc0082a50f8 t empty_dir_llseek
-ffffffc0082a512c t empty_dir_readdir
-ffffffc0082a523c t generic_ci_d_hash
-ffffffc0082a52c0 t generic_ci_d_compare
-ffffffc0082a5400 T __traceiter_writeback_dirty_folio
-ffffffc0082a5490 T __traceiter_folio_wait_writeback
-ffffffc0082a5520 T __traceiter_writeback_mark_inode_dirty
-ffffffc0082a55b0 T __traceiter_writeback_dirty_inode_start
-ffffffc0082a5640 T __traceiter_writeback_dirty_inode
-ffffffc0082a56d0 T __traceiter_writeback_write_inode_start
-ffffffc0082a5760 T __traceiter_writeback_write_inode
-ffffffc0082a57f0 T __traceiter_writeback_queue
-ffffffc0082a5880 T __traceiter_writeback_exec
-ffffffc0082a5910 T __traceiter_writeback_start
-ffffffc0082a59a0 T __traceiter_writeback_written
-ffffffc0082a5a30 T __traceiter_writeback_wait
-ffffffc0082a5ac0 T __traceiter_writeback_pages_written
-ffffffc0082a5b40 T __traceiter_writeback_wake_background
-ffffffc0082a5bc0 T __traceiter_writeback_bdi_register
-ffffffc0082a5c40 T __traceiter_wbc_writepage
-ffffffc0082a5cd0 T __traceiter_writeback_queue_io
-ffffffc0082a5d78 T __traceiter_global_dirty_state
-ffffffc0082a5e08 T __traceiter_bdi_dirty_ratelimit
-ffffffc0082a5ea0 T __traceiter_balance_dirty_pages
-ffffffc0082a5fac T __traceiter_writeback_sb_inodes_requeue
-ffffffc0082a602c T __traceiter_writeback_single_inode_start
-ffffffc0082a60c4 T __traceiter_writeback_single_inode
-ffffffc0082a615c T __traceiter_writeback_lazytime
-ffffffc0082a61dc T __traceiter_writeback_lazytime_iput
-ffffffc0082a625c T __traceiter_writeback_dirty_inode_enqueue
-ffffffc0082a62dc T __traceiter_sb_mark_inode_writeback
-ffffffc0082a635c T __traceiter_sb_clear_inode_writeback
-ffffffc0082a63dc t trace_event_raw_event_writeback_folio_template
-ffffffc0082a64f4 t perf_trace_writeback_folio_template
-ffffffc0082a6668 t trace_event_raw_event_writeback_dirty_inode_template
-ffffffc0082a6760 t perf_trace_writeback_dirty_inode_template
-ffffffc0082a68b0 t trace_event_raw_event_writeback_write_inode_template
-ffffffc0082a69ac t perf_trace_writeback_write_inode_template
-ffffffc0082a6b00 t trace_event_raw_event_writeback_work_class
-ffffffc0082a6c30 t perf_trace_writeback_work_class
-ffffffc0082a6dbc t trace_event_raw_event_writeback_pages_written
-ffffffc0082a6e74 t perf_trace_writeback_pages_written
-ffffffc0082a6f80 t trace_event_raw_event_writeback_class
-ffffffc0082a7064 t perf_trace_writeback_class
-ffffffc0082a71a0 t trace_event_raw_event_writeback_bdi_register
-ffffffc0082a7270 t perf_trace_writeback_bdi_register
-ffffffc0082a73a4 t trace_event_raw_event_wbc_class
-ffffffc0082a74dc t perf_trace_wbc_class
-ffffffc0082a7670 t trace_event_raw_event_writeback_queue_io
-ffffffc0082a77ac t perf_trace_writeback_queue_io
-ffffffc0082a793c t trace_event_raw_event_global_dirty_state
-ffffffc0082a7a68 t perf_trace_global_dirty_state
-ffffffc0082a7bf0 t trace_event_raw_event_bdi_dirty_ratelimit
-ffffffc0082a7d14 t perf_trace_bdi_dirty_ratelimit
-ffffffc0082a7e94 t trace_event_raw_event_balance_dirty_pages
-ffffffc0082a80ac t perf_trace_balance_dirty_pages
-ffffffc0082a8324 t trace_event_raw_event_writeback_sb_inodes_requeue
-ffffffc0082a8428 t perf_trace_writeback_sb_inodes_requeue
-ffffffc0082a8588 t trace_event_raw_event_writeback_single_inode_template
-ffffffc0082a86a8 t perf_trace_writeback_single_inode_template
-ffffffc0082a8824 t trace_event_raw_event_writeback_inode_template
-ffffffc0082a8904 t perf_trace_writeback_inode_template
-ffffffc0082a8a38 T wb_wait_for_completion
-ffffffc0082a8b3c T wb_start_background_writeback
-ffffffc0082a8c70 T inode_io_list_del
-ffffffc0082a8dd8 T sb_mark_inode_writeback
-ffffffc0082a8f54 T sb_clear_inode_writeback
-ffffffc0082a90c4 T inode_wait_for_writeback
-ffffffc0082a91c0 T wb_workfn
-ffffffc0082a97b4 t trace_writeback_pages_written
-ffffffc0082a98b0 t writeback_inodes_wb
-ffffffc0082a99a4 T wakeup_flusher_threads_bdi
-ffffffc0082a99ec t __wakeup_flusher_threads_bdi.llvm.12121286031859027328
-ffffffc0082a9af4 T wakeup_flusher_threads
-ffffffc0082a9b84 T dirtytime_interval_handler
-ffffffc0082a9be8 T __mark_inode_dirty
-ffffffc0082aa0f4 t inode_io_list_move_locked
-ffffffc0082aa310 T writeback_inodes_sb_nr
-ffffffc0082aa3e0 T writeback_inodes_sb
-ffffffc0082aa4e8 T try_to_writeback_inodes_sb
-ffffffc0082aa604 T sync_inodes_sb
-ffffffc0082aa844 t bdi_split_work_to_wbs
-ffffffc0082aaa6c T write_inode_now
-ffffffc0082aab08 t writeback_single_inode
-ffffffc0082aadac T sync_inode_metadata
-ffffffc0082aae20 t trace_raw_output_writeback_folio_template
-ffffffc0082aae98 t trace_raw_output_writeback_dirty_inode_template
-ffffffc0082aaf6c t trace_raw_output_writeback_write_inode_template
-ffffffc0082aafec t trace_raw_output_writeback_work_class
-ffffffc0082ab0dc t trace_raw_output_writeback_pages_written
-ffffffc0082ab150 t trace_raw_output_writeback_class
-ffffffc0082ab1c8 t trace_raw_output_writeback_bdi_register
-ffffffc0082ab23c t trace_raw_output_wbc_class
-ffffffc0082ab2e0 t trace_raw_output_writeback_queue_io
-ffffffc0082ab398 t trace_raw_output_global_dirty_state
-ffffffc0082ab424 t trace_raw_output_bdi_dirty_ratelimit
-ffffffc0082ab4b4 t trace_raw_output_balance_dirty_pages
-ffffffc0082ab568 t trace_raw_output_writeback_sb_inodes_requeue
-ffffffc0082ab638 t trace_raw_output_writeback_single_inode_template
-ffffffc0082ab720 t trace_raw_output_writeback_inode_template
-ffffffc0082ab7e0 t wb_writeback
-ffffffc0082abcbc t queue_io
-ffffffc0082abef8 t queue_io
-ffffffc0082abf78 t writeback_sb_inodes
-ffffffc0082ac5ec t __writeback_inodes_wb
-ffffffc0082ac748 t move_expired_inodes
-ffffffc0082ac954 t __writeback_single_inode
-ffffffc0082acf0c t inode_cgwb_move_to_attached
-ffffffc0082ad068 t wakeup_dirtytime_writeback
-ffffffc0082ad174 T get_dominating_id
-ffffffc0082ad21c T change_mnt_propagation
-ffffffc0082ad474 T propagate_mnt
-ffffffc0082ad6d4 t propagate_one
-ffffffc0082ad8b4 T propagate_mount_busy
-ffffffc0082ada98 T propagate_mount_unlock
-ffffffc0082adbe4 T propagate_umount
-ffffffc0082ae0d4 t umount_one
-ffffffc0082ae1ac t page_cache_pipe_buf_confirm.llvm.1252451881235888975
-ffffffc0082ae2e0 t page_cache_pipe_buf_release.llvm.1252451881235888975
-ffffffc0082ae384 t page_cache_pipe_buf_try_steal.llvm.1252451881235888975
-ffffffc0082ae4b0 T splice_to_pipe
-ffffffc0082ae620 T add_to_pipe
-ffffffc0082ae70c T splice_grow_spd
-ffffffc0082ae7a4 T splice_shrink_spd
-ffffffc0082ae7f4 T generic_file_splice_read
-ffffffc0082ae984 T __splice_from_pipe
-ffffffc0082aebf4 t splice_from_pipe_next
-ffffffc0082aed74 T splice_from_pipe
-ffffffc0082aee18 T iter_file_splice_write
-ffffffc0082af1dc T generic_splice_sendpage
-ffffffc0082af280 t pipe_to_sendpage
-ffffffc0082af34c T splice_direct_to_actor
-ffffffc0082af620 T do_splice_direct
-ffffffc0082af700 t direct_splice_actor
-ffffffc0082af76c T splice_file_to_pipe
-ffffffc0082af938 T do_splice
-ffffffc0082b0118 T __arm64_sys_vmsplice
-ffffffc0082b06f4 T __arm64_sys_splice
-ffffffc0082b0d74 T do_tee
-ffffffc0082b1054 t opipe_prep
-ffffffc0082b1140 T __arm64_sys_tee
-ffffffc0082b121c t user_page_pipe_buf_try_steal
-ffffffc0082b1264 t pipe_to_user
-ffffffc0082b12bc T sync_filesystem
-ffffffc0082b13ac T ksys_sync
-ffffffc0082b146c t sync_inodes_one_sb
-ffffffc0082b14a0 t sync_fs_one_sb
-ffffffc0082b1504 T __arm64_sys_sync
-ffffffc0082b1534 T emergency_sync
-ffffffc0082b15a8 t do_sync_work
-ffffffc0082b1678 T __arm64_sys_syncfs
-ffffffc0082b1724 T vfs_fsync_range
-ffffffc0082b17d0 T vfs_fsync
-ffffffc0082b186c T __arm64_sys_fsync
-ffffffc0082b1938 T __arm64_sys_fdatasync
-ffffffc0082b19e4 T sync_file_range
-ffffffc0082b1b08 T ksys_sync_file_range
-ffffffc0082b1b98 T __arm64_sys_sync_file_range
-ffffffc0082b1c2c T __arm64_sys_sync_file_range2
-ffffffc0082b1cc0 T vfs_utimes
-ffffffc0082b1ef4 T do_utimes
-ffffffc0082b205c T __arm64_sys_utimensat
-ffffffc0082b214c T __d_path
-ffffffc0082b21ec t prepend_path
-ffffffc0082b250c T d_absolute_path
-ffffffc0082b25b8 T d_path
-ffffffc0082b2754 t prepend
-ffffffc0082b2820 T dynamic_dname
-ffffffc0082b2910 T simple_dname
-ffffffc0082b2a50 T dentry_path_raw
-ffffffc0082b2acc t __dentry_path
-ffffffc0082b2ca0 T dentry_path
-ffffffc0082b2d64 T __arm64_sys_getcwd
-ffffffc0082b30e0 T fsstack_copy_inode_size
-ffffffc0082b3100 T fsstack_copy_attr_all
-ffffffc0082b3178 T set_fs_root
-ffffffc0082b3240 T set_fs_pwd
-ffffffc0082b3308 T chroot_fs_refs
-ffffffc0082b34f0 T free_fs_struct
-ffffffc0082b3544 T exit_fs
-ffffffc0082b35e4 T copy_fs_struct
-ffffffc0082b3688 T unshare_fs_struct
-ffffffc0082b37c0 T current_umask
-ffffffc0082b37dc T vfs_get_fsid
-ffffffc0082b38bc T vfs_statfs
-ffffffc0082b39cc T user_statfs
-ffffffc0082b3bec T fd_statfs
-ffffffc0082b3d30 T __arm64_sys_statfs
-ffffffc0082b3dd0 T __arm64_sys_statfs64
-ffffffc0082b3e84 T __arm64_sys_fstatfs
-ffffffc0082b3f28 T __arm64_sys_fstatfs64
-ffffffc0082b3fdc T __arm64_sys_ustat
-ffffffc0082b4294 t do_statfs_native
-ffffffc0082b4474 t do_statfs64
-ffffffc0082b4658 T pin_remove
-ffffffc0082b470c T pin_insert
-ffffffc0082b47a0 T pin_kill
-ffffffc0082b48e8 t __add_wait_queue
-ffffffc0082b4970 T mnt_pin_kill
-ffffffc0082b49d8 T group_pin_kill
-ffffffc0082b4a38 t ns_prune_dentry.llvm.8731451816729554399
-ffffffc0082b4a58 t ns_dname.llvm.8731451816729554399
-ffffffc0082b4aa8 T ns_get_path_cb
-ffffffc0082b4b28 t __ns_get_path
-ffffffc0082b4cec T ns_get_path
-ffffffc0082b4d74 T open_related_ns
-ffffffc0082b4e90 T ns_get_name
-ffffffc0082b4f58 T proc_ns_file
-ffffffc0082b4f7c T proc_ns_fget
-ffffffc0082b4fd0 T ns_match
-ffffffc0082b5010 t ns_ioctl.llvm.8731451816729554399
-ffffffc0082b5230 t nsfs_init_fs_context
-ffffffc0082b5290 t nsfs_evict
-ffffffc0082b52f0 t nsfs_show_path
-ffffffc0082b5338 T fs_ftype_to_dtype
-ffffffc0082b5368 T fs_umode_to_ftype
-ffffffc0082b5388 T fs_umode_to_dtype
-ffffffc0082b53b4 T vfs_parse_fs_param_source
-ffffffc0082b545c T logfc
-ffffffc0082b564c T vfs_parse_fs_param
-ffffffc0082b57e0 T vfs_parse_fs_string
-ffffffc0082b589c T generic_parse_monolithic
-ffffffc0082b5a08 T fs_context_for_mount
-ffffffc0082b5a40 t alloc_fs_context.llvm.16757973772989943134
-ffffffc0082b5c04 T fs_context_for_reconfigure
-ffffffc0082b5c48 T fs_context_for_submount
-ffffffc0082b5c80 T fc_drop_locked
-ffffffc0082b5ccc T vfs_dup_fs_context
-ffffffc0082b5e40 T put_fs_context
-ffffffc0082b6034 t legacy_fs_context_free.llvm.16757973772989943134
-ffffffc0082b6088 t legacy_fs_context_dup.llvm.16757973772989943134
-ffffffc0082b6118 t legacy_parse_param.llvm.16757973772989943134
-ffffffc0082b6360 t legacy_parse_monolithic.llvm.16757973772989943134
-ffffffc0082b63dc t legacy_get_tree.llvm.16757973772989943134
-ffffffc0082b645c t legacy_reconfigure.llvm.16757973772989943134
-ffffffc0082b64d8 T parse_monolithic_mount_data
-ffffffc0082b6534 T vfs_clean_context
-ffffffc0082b65d4 T finish_clean_context
-ffffffc0082b66b0 t legacy_init_fs_context
-ffffffc0082b671c T lookup_constant
-ffffffc0082b6790 T __fs_parse
-ffffffc0082b6958 T fs_lookup_param
-ffffffc0082b6aa0 T fs_param_is_bool
-ffffffc0082b6c04 T fs_param_is_u32
-ffffffc0082b6c94 T fs_param_is_s32
-ffffffc0082b6d28 T fs_param_is_u64
-ffffffc0082b6dbc T fs_param_is_enum
-ffffffc0082b6e84 T fs_param_is_string
-ffffffc0082b6ef4 T fs_param_is_blob
-ffffffc0082b6f50 T fs_param_is_fd
-ffffffc0082b7004 T fs_param_is_blockdev
-ffffffc0082b7018 T fs_param_is_path
-ffffffc0082b702c t fscontext_read.llvm.16013923376049874040
-ffffffc0082b72a0 t fscontext_release.llvm.16013923376049874040
-ffffffc0082b72dc T __arm64_sys_fsopen
-ffffffc0082b741c T __arm64_sys_fspick
-ffffffc0082b75b8 T __arm64_sys_fsconfig
-ffffffc0082b7a2c T kernel_read_file
-ffffffc0082b7cfc T kernel_read_file_from_path
-ffffffc0082b7dac T kernel_read_file_from_path_initns
-ffffffc0082b7ef0 T kernel_read_file_from_fd
-ffffffc0082b7fa0 T __generic_remap_file_range_prep
-ffffffc0082b82d4 t vfs_dedupe_file_range_compare
-ffffffc0082b86ac t generic_remap_check_len
-ffffffc0082b8728 T generic_remap_file_range_prep
-ffffffc0082b8754 T do_clone_file_range
-ffffffc0082b88a4 t fsnotify_access
-ffffffc0082b8954 T vfs_clone_file_range
-ffffffc0082b8c24 T vfs_dedupe_file_range_one
-ffffffc0082b8ddc T vfs_dedupe_file_range
-ffffffc0082b8fb0 T touch_buffer
-ffffffc0082b9084 T __lock_buffer
-ffffffc0082b90f4 T unlock_buffer
-ffffffc0082b9154 T buffer_check_dirty_writeback
-ffffffc0082b91c4 T __wait_on_buffer
-ffffffc0082b9208 T end_buffer_read_sync
-ffffffc0082b9318 T end_buffer_write_sync
-ffffffc0082b946c T mark_buffer_write_io_error
-ffffffc0082b95c0 T end_buffer_async_write
-ffffffc0082b97d4 T mark_buffer_async_write
-ffffffc0082b9824 T inode_has_buffers
-ffffffc0082b9848 T emergency_thaw_bdev
-ffffffc0082b98a8 T sync_mapping_buffers
-ffffffc0082b9d74 T write_boundary_block
-ffffffc0082b9e00 T __find_get_block
-ffffffc0082ba3a4 T write_dirty_buffer
-ffffffc0082ba520 T mark_buffer_dirty_inode
-ffffffc0082ba5fc T mark_buffer_dirty
-ffffffc0082ba7b8 T block_dirty_folio
-ffffffc0082ba8ac T invalidate_inode_buffers
-ffffffc0082ba96c T remove_inode_buffers
-ffffffc0082baa4c T alloc_page_buffers
-ffffffc0082bab3c T alloc_buffer_head
-ffffffc0082bacb0 T set_bh_page
-ffffffc0082bacf8 T free_buffer_head
-ffffffc0082bae68 T __brelse
-ffffffc0082baeec T __bforget
-ffffffc0082bb004 T __getblk_gfp
-ffffffc0082bb3e4 T __breadahead
-ffffffc0082bb560 T __bread_gfp
-ffffffc0082bb758 T has_bh_in_lru
-ffffffc0082bb820 T invalidate_bh_lrus
-ffffffc0082bb86c t invalidate_bh_lru.llvm.9186961332390038866
-ffffffc0082bb984 T invalidate_bh_lrus_cpu
-ffffffc0082bba80 T block_invalidate_folio
-ffffffc0082bbcd4 T create_empty_buffers
-ffffffc0082bbfa0 T clean_bdev_aliases
-ffffffc0082bc200 T __block_write_full_page
-ffffffc0082bc940 t submit_bh_wbc.llvm.9186961332390038866
-ffffffc0082bcab4 T page_zero_new_buffers
-ffffffc0082bcce0 T __block_write_begin_int
-ffffffc0082bd550 T __block_write_begin
-ffffffc0082bd598 T block_write_begin
-ffffffc0082bd65c T block_write_end
-ffffffc0082bd700 t __block_commit_write.llvm.9186961332390038866
-ffffffc0082bd858 T generic_write_end
-ffffffc0082bd9e0 T block_is_partially_uptodate
-ffffffc0082bdaa8 T block_read_full_folio
-ffffffc0082bdfb8 t end_buffer_async_read
-ffffffc0082be210 T submit_bh
-ffffffc0082be23c T generic_cont_expand_simple
-ffffffc0082be338 T cont_write_begin
-ffffffc0082be7bc T block_commit_write
-ffffffc0082be7ec T block_page_mkwrite
-ffffffc0082be958 T block_truncate_page
-ffffffc0082bece8 T block_write_full_page
-ffffffc0082bee28 T generic_block_bmap
-ffffffc0082beed4 T __sync_dirty_buffer
-ffffffc0082bf0f8 T sync_dirty_buffer
-ffffffc0082bf128 T try_to_free_buffers
-ffffffc0082bf22c t drop_buffers
-ffffffc0082bf398 T bh_uptodate_or_lock
-ffffffc0082bf4ac T __bh_read
-ffffffc0082bf57c T __bh_read_batch
-ffffffc0082bf748 t buffer_exit_cpu_dead
-ffffffc0082bf8bc t init_page_buffers
-ffffffc0082bf9dc t end_buffer_async_read_io
-ffffffc0082bfa08 t end_bio_bh_io_sync
-ffffffc0082bfaa8 T sb_init_dio_done_wq
-ffffffc0082bfb5c T __blockdev_direct_IO
-ffffffc0082c0cb4 t dio_zero_block
-ffffffc0082c0d70 t dio_send_cur_page
-ffffffc0082c1084 t dio_complete
-ffffffc0082c12c8 t submit_page_section
-ffffffc0082c1598 t dio_new_bio
-ffffffc0082c1760 t dio_bio_end_aio
-ffffffc0082c18f4 t dio_bio_end_io
-ffffffc0082c1980 t dio_aio_complete_work
-ffffffc0082c19b8 T mpage_readahead
-ffffffc0082c1b7c t do_mpage_readpage
-ffffffc0082c23e0 T mpage_read_folio
-ffffffc0082c249c T clean_page_buffers
-ffffffc0082c24c8 t clean_buffers.llvm.1010860259457588803
-ffffffc0082c25a8 T mpage_writepages
-ffffffc0082c2674 t __mpage_writepage
-ffffffc0082c2e8c t mpage_end_io
-ffffffc0082c2f80 t mpage_end_io
-ffffffc0082c3034 t mounts_poll
-ffffffc0082c30d0 t mounts_open
-ffffffc0082c3104 t mounts_release
-ffffffc0082c3174 t mountinfo_open
-ffffffc0082c31a8 t mountstats_open
-ffffffc0082c31d8 t mounts_open_common
-ffffffc0082c34bc t show_vfsmnt
-ffffffc0082c36e4 t show_sb_opts
-ffffffc0082c3794 t show_mnt_opts
-ffffffc0082c38b8 t show_mountinfo
-ffffffc0082c3c04 t show_vfsstat
-ffffffc0082c3e44 T __fsnotify_inode_delete
-ffffffc0082c3e74 T __fsnotify_vfsmount_delete
-ffffffc0082c3ea4 T fsnotify_sb_delete
-ffffffc0082c40b8 T __fsnotify_update_child_dentry_flags
-ffffffc0082c41c4 T __fsnotify_parent
-ffffffc0082c443c T fsnotify
-ffffffc0082c4de8 T fsnotify_get_cookie
-ffffffc0082c4e3c T fsnotify_destroy_event
-ffffffc0082c4ef4 T fsnotify_insert_event
-ffffffc0082c507c T fsnotify_remove_queued_event
-ffffffc0082c50f4 T fsnotify_peek_first_event
-ffffffc0082c514c T fsnotify_remove_first_event
-ffffffc0082c520c T fsnotify_flush_notify
-ffffffc0082c5390 T fsnotify_group_stop_queueing
-ffffffc0082c53e0 T fsnotify_destroy_group
-ffffffc0082c55b8 T fsnotify_put_group
-ffffffc0082c5678 T fsnotify_get_group
-ffffffc0082c56f0 T fsnotify_alloc_group
-ffffffc0082c57d0 T fsnotify_fasync
-ffffffc0082c580c T fsnotify_get_mark
-ffffffc0082c5898 T fsnotify_conn_mask
-ffffffc0082c58d8 T fsnotify_recalc_mask
-ffffffc0082c5934 t __fsnotify_recalc_mask
-ffffffc0082c5ab0 T fsnotify_put_mark
-ffffffc0082c5d40 t fsnotify_detach_connector_from_object
-ffffffc0082c5e90 T fsnotify_prepare_user_wait
-ffffffc0082c60ac T fsnotify_finish_user_wait
-ffffffc0082c6188 T fsnotify_detach_mark
-ffffffc0082c625c T fsnotify_free_mark
-ffffffc0082c62fc T fsnotify_destroy_mark
-ffffffc0082c63fc T fsnotify_compare_groups
-ffffffc0082c6458 T fsnotify_add_mark_locked
-ffffffc0082c6a3c T fsnotify_add_mark
-ffffffc0082c6b00 T fsnotify_find_mark
-ffffffc0082c6c6c T fsnotify_clear_marks_by_group
-ffffffc0082c6f48 T fsnotify_destroy_marks
-ffffffc0082c717c T fsnotify_init_mark
-ffffffc0082c71e0 T fsnotify_wait_marks_destroyed
-ffffffc0082c7214 t fsnotify_connector_destroy_workfn
-ffffffc0082c729c t fsnotify_mark_destroy_workfn
-ffffffc0082c73d0 T inotify_show_fdinfo
-ffffffc0082c7630 T inotify_handle_inode_event
-ffffffc0082c7748 t inotify_merge
-ffffffc0082c77c8 t inotify_free_group_priv.llvm.4752992893833975114
-ffffffc0082c782c t inotify_freeing_mark.llvm.4752992893833975114
-ffffffc0082c7858 t inotify_free_event.llvm.4752992893833975114
-ffffffc0082c7888 t inotify_free_mark.llvm.4752992893833975114
-ffffffc0082c78c0 t idr_callback
-ffffffc0082c7944 T inotify_ignored_and_remove_idr
-ffffffc0082c79a8 t inotify_remove_from_idr
-ffffffc0082c7b8c T __arm64_sys_inotify_init1
-ffffffc0082c7bc0 T __arm64_sys_inotify_init
-ffffffc0082c7bf0 t do_inotify_init
-ffffffc0082c7d2c T __arm64_sys_inotify_add_watch
-ffffffc0082c81cc T __arm64_sys_inotify_rm_watch
-ffffffc0082c82e4 t inotify_read
-ffffffc0082c8964 t inotify_poll
-ffffffc0082c8a10 t inotify_ioctl
-ffffffc0082c8bf0 t inotify_release
-ffffffc0082c8c24 T eventpoll_release_file
-ffffffc0082c8cb8 t ep_remove
-ffffffc0082c8ea8 T __arm64_sys_epoll_create1
-ffffffc0082c8edc T __arm64_sys_epoll_create
-ffffffc0082c8f24 T do_epoll_ctl
-ffffffc0082c92f8 t ep_insert
-ffffffc0082c988c t ep_modify
-ffffffc0082c9ad8 T __arm64_sys_epoll_ctl
-ffffffc0082c9cb8 T __arm64_sys_epoll_wait
-ffffffc0082c9dac T __arm64_sys_epoll_pwait
-ffffffc0082c9f3c T __arm64_sys_epoll_pwait2
-ffffffc0082ca098 t epi_rcu_free
-ffffffc0082ca0cc t do_epoll_create
-ffffffc0082ca26c t ep_free
-ffffffc0082ca38c t ep_eventpoll_poll
-ffffffc0082ca3bc t ep_eventpoll_release
-ffffffc0082ca3f4 t ep_show_fdinfo
-ffffffc0082ca4a0 t __ep_eventpoll_poll
-ffffffc0082ca69c t ep_done_scan
-ffffffc0082ca7ec t ep_loop_check_proc
-ffffffc0082ca900 t ep_ptable_queue_proc
-ffffffc0082ca9a8 t reverse_path_check_proc
-ffffffc0082caa90 t ep_poll_callback
-ffffffc0082cade0 t ep_destroy_wakeup_source
-ffffffc0082cae28 t do_epoll_wait
-ffffffc0082cb6ec t ep_autoremove_wake_function
-ffffffc0082cb758 t ep_busy_loop_end
-ffffffc0082cb7ec T anon_inode_getfile
-ffffffc0082cb8a0 t __anon_inode_getfile.llvm.5446121587646935471
-ffffffc0082cba04 T anon_inode_getfile_secure
-ffffffc0082cba34 T anon_inode_getfd
-ffffffc0082cbb14 T anon_inode_getfd_secure
-ffffffc0082cbbc0 t anon_inodefs_init_fs_context
-ffffffc0082cbc14 t anon_inodefs_dname
-ffffffc0082cbc58 T signalfd_cleanup
-ffffffc0082cbc9c T __arm64_sys_signalfd4
-ffffffc0082cbe70 T __arm64_sys_signalfd
-ffffffc0082cc03c t do_signalfd4
-ffffffc0082cc1a8 t signalfd_read
-ffffffc0082cc62c t signalfd_poll
-ffffffc0082cc6ec t signalfd_release
-ffffffc0082cc720 t signalfd_show_fdinfo
-ffffffc0082cc794 T timerfd_clock_was_set
-ffffffc0082cc870 T timerfd_resume
-ffffffc0082cc8b0 T __arm64_sys_timerfd_create
-ffffffc0082cca08 T __arm64_sys_timerfd_settime
-ffffffc0082cce78 T __arm64_sys_timerfd_gettime
-ffffffc0082cd080 t timerfd_resume_work
-ffffffc0082cd0ac t timerfd_alarmproc
-ffffffc0082cd12c t timerfd_read
-ffffffc0082cd488 t timerfd_poll
-ffffffc0082cd51c t timerfd_release
-ffffffc0082cd5e4 t timerfd_show
-ffffffc0082cd6e8 t timerfd_tmrproc
-ffffffc0082cd768 T eventfd_signal_mask
-ffffffc0082cd844 T eventfd_signal
-ffffffc0082cd91c T eventfd_ctx_put
-ffffffc0082cd9c4 T eventfd_ctx_do_read
-ffffffc0082cd9f8 T eventfd_ctx_remove_wait_queue
-ffffffc0082cdaec T eventfd_fget
-ffffffc0082cdb40 T eventfd_ctx_fdget
-ffffffc0082cdc18 T eventfd_ctx_fileget
-ffffffc0082cdcbc T __arm64_sys_eventfd2
-ffffffc0082cdcf8 T __arm64_sys_eventfd
-ffffffc0082cdd30 t eventfd_write
-ffffffc0082ce0a0 t eventfd_read
-ffffffc0082ce30c t eventfd_poll
-ffffffc0082ce3a4 t eventfd_release
-ffffffc0082ce464 t eventfd_show_fdinfo
-ffffffc0082ce4dc t do_eventfd
-ffffffc0082ce62c T handle_userfault
-ffffffc0082cea28 t userfaultfd_wake_function
-ffffffc0082ceacc t userfaultfd_ctx_put
-ffffffc0082cebb4 T dup_userfaultfd
-ffffffc0082cedc0 T dup_userfaultfd_complete
-ffffffc0082ceebc T mremap_userfaultfd_prep
-ffffffc0082cefb0 T mremap_userfaultfd_complete
-ffffffc0082cf03c t userfaultfd_event_wait_completion
-ffffffc0082cf324 T userfaultfd_remove
-ffffffc0082cf47c T userfaultfd_unmap_prep
-ffffffc0082cf660 T userfaultfd_unmap_complete
-ffffffc0082cf76c T __arm64_sys_userfaultfd
-ffffffc0082cf7cc t mmap_write_lock
-ffffffc0082cf838 t new_userfaultfd
-ffffffc0082cf990 t userfaultfd_read
-ffffffc0082d0038 t userfaultfd_poll
-ffffffc0082d00f8 t userfaultfd_ioctl
-ffffffc0082d20e8 t userfaultfd_release
-ffffffc0082d23bc t userfaultfd_show_fdinfo
-ffffffc0082d2478 t mmget_not_zero
-ffffffc0082d24f8 t init_once_userfaultfd_ctx
-ffffffc0082d258c t userfaultfd_dev_ioctl
-ffffffc0082d25d4 T kiocb_set_cancel_fn
-ffffffc0082d268c T exit_aio
-ffffffc0082d27dc t kill_ioctx
-ffffffc0082d292c T __arm64_sys_io_setup
-ffffffc0082d360c T __arm64_sys_io_destroy
-ffffffc0082d37d0 T __arm64_sys_io_submit
-ffffffc0082d46fc T __arm64_sys_io_cancel
-ffffffc0082d4a2c T __arm64_sys_io_getevents
-ffffffc0082d4b08 T __arm64_sys_io_pgetevents
-ffffffc0082d4db0 t aio_init_fs_context
-ffffffc0082d4e0c t free_ioctx_users
-ffffffc0082d4fcc t free_ioctx_reqs
-ffffffc0082d5080 t aio_free_ring
-ffffffc0082d51b0 t free_ioctx
-ffffffc0082d5218 t aio_migrate_folio
-ffffffc0082d5440 t aio_ring_mmap
-ffffffc0082d546c t aio_ring_mremap
-ffffffc0082d5544 t lookup_ioctx
-ffffffc0082d5814 t iocb_put
-ffffffc0082d5b54 t iocb_destroy
-ffffffc0082d5cb0 t aio_read
-ffffffc0082d5e6c t aio_write
-ffffffc0082d6124 t aio_prep_rw
-ffffffc0082d6214 t aio_complete_rw
-ffffffc0082d6440 t aio_fsync_work
-ffffffc0082d64f8 t aio_poll_complete_work
-ffffffc0082d66d8 t aio_poll_queue_proc
-ffffffc0082d673c t aio_poll_wake
-ffffffc0082d6944 t aio_poll_cancel
-ffffffc0082d69e4 t aio_poll_put_work
-ffffffc0082d6a10 t do_io_getevents
-ffffffc0082d6cbc t aio_read_events
-ffffffc0082d7100 T __traceiter_locks_get_lock_context
-ffffffc0082d7198 T __traceiter_posix_lock_inode
-ffffffc0082d7230 T __traceiter_fcntl_setlk
-ffffffc0082d72c8 T __traceiter_locks_remove_posix
-ffffffc0082d7360 T __traceiter_flock_lock_inode
-ffffffc0082d73f8 T __traceiter_break_lease_noblock
-ffffffc0082d7488 T __traceiter_break_lease_block
-ffffffc0082d7518 T __traceiter_break_lease_unblock
-ffffffc0082d75a8 T __traceiter_generic_delete_lease
-ffffffc0082d7638 T __traceiter_time_out_leases
-ffffffc0082d76c8 T __traceiter_generic_add_lease
-ffffffc0082d7758 T __traceiter_leases_conflict
-ffffffc0082d77f0 t trace_event_raw_event_locks_get_lock_context
-ffffffc0082d78d4 t perf_trace_locks_get_lock_context
-ffffffc0082d7a08 t trace_event_raw_event_filelock_lock
-ffffffc0082d7b40 t perf_trace_filelock_lock
-ffffffc0082d7cc8 t trace_event_raw_event_filelock_lease
-ffffffc0082d7de0 t perf_trace_filelock_lease
-ffffffc0082d7f54 t trace_event_raw_event_generic_add_lease
-ffffffc0082d8068 t perf_trace_generic_add_lease
-ffffffc0082d81d8 t trace_event_raw_event_leases_conflict
-ffffffc0082d82d0 t perf_trace_leases_conflict
-ffffffc0082d8418 T locks_free_lock_context
-ffffffc0082d8464 t locks_check_ctx_lists
-ffffffc0082d8528 T locks_alloc_lock
-ffffffc0082d85b4 T locks_release_private
-ffffffc0082d86c0 T locks_owner_has_blockers
-ffffffc0082d874c T locks_free_lock
-ffffffc0082d8868 T locks_init_lock
-ffffffc0082d8914 T locks_copy_conflock
-ffffffc0082d89a8 T locks_copy_lock
-ffffffc0082d8aa0 T locks_delete_block
-ffffffc0082d8b7c t __locks_wake_up_blocks
-ffffffc0082d8c6c T posix_test_lock
-ffffffc0082d8e44 T posix_lock_file
-ffffffc0082d8e70 t posix_lock_inode.llvm.12718298427317224103
-ffffffc0082d9dc8 T lease_modify
-ffffffc0082d9f08 T __break_lease
-ffffffc0082da8b4 t percpu_down_read
-ffffffc0082da9c8 t time_out_leases
-ffffffc0082dabb0 t leases_conflict
-ffffffc0082dad44 t percpu_up_read
-ffffffc0082daec4 t percpu_up_read
-ffffffc0082db03c T lease_get_mtime
-ffffffc0082db0f8 T fcntl_getlease
-ffffffc0082db344 T generic_setlease
-ffffffc0082dbb54 T lease_register_notifier
-ffffffc0082dbb8c T lease_unregister_notifier
-ffffffc0082dbbc4 T vfs_setlease
-ffffffc0082dbc7c T fcntl_setlease
-ffffffc0082dbeb0 T locks_lock_inode_wait
-ffffffc0082dc0c0 T __arm64_sys_flock
-ffffffc0082dc424 T vfs_test_lock
-ffffffc0082dc48c T fcntl_getlk
-ffffffc0082dc68c t posix_lock_to_flock
-ffffffc0082dc764 T vfs_lock_file
-ffffffc0082dc7c8 T fcntl_setlk
-ffffffc0082dcb54 t do_lock_file_wait
-ffffffc0082dcce0 T locks_remove_posix
-ffffffc0082dcf64 T locks_remove_file
-ffffffc0082dd44c T vfs_cancel_lock
-ffffffc0082dd4ac T vfs_inode_has_locks
-ffffffc0082dd534 T show_fd_locks
-ffffffc0082dd738 t trace_raw_output_locks_get_lock_context
-ffffffc0082dd7e8 t trace_raw_output_filelock_lock
-ffffffc0082dd904 t trace_raw_output_filelock_lease
-ffffffc0082dda0c t trace_raw_output_generic_add_lease
-ffffffc0082ddb1c t trace_raw_output_leases_conflict
-ffffffc0082ddc44 t locks_dump_ctx_list
-ffffffc0082ddcbc t locks_get_lock_context
-ffffffc0082dde94 t locks_insert_lock_ctx
-ffffffc0082ddf54 t locks_unlink_lock_ctx
-ffffffc0082de040 t lease_break_callback
-ffffffc0082de07c t lease_setup
-ffffffc0082de0f0 t check_conflicting_open
-ffffffc0082de184 t flock_lock_inode
-ffffffc0082de8cc t lock_get_status
-ffffffc0082debc8 t locks_start
-ffffffc0082dec38 t locks_stop
-ffffffc0082dec78 t locks_next
-ffffffc0082decc4 t locks_show
-ffffffc0082dee5c t load_misc_binary
-ffffffc0082df0f0 t deny_write_access
-ffffffc0082df16c t bm_init_fs_context
-ffffffc0082df190 t bm_get_tree
-ffffffc0082df1c4 t bm_fill_super
-ffffffc0082df21c t bm_status_read
-ffffffc0082df280 t bm_status_write
-ffffffc0082df35c t parse_command
-ffffffc0082df59c t kill_node
-ffffffc0082df638 t bm_register_write
-ffffffc0082dfc58 t scanarg
-ffffffc0082dfce0 t check_special_flags
-ffffffc0082dfd58 t bm_entry_read
-ffffffc0082dff10 t bm_entry_write
-ffffffc0082e0030 t bm_evict_inode
-ffffffc0082e0090 t load_script
-ffffffc0082e0318 t load_elf_binary
-ffffffc0082e0f14 t elf_core_dump
-ffffffc0082e1df8 t load_elf_phdrs
-ffffffc0082e1ef0 t parse_elf_properties
-ffffffc0082e218c t set_brk
-ffffffc0082e21f4 t __clear_user
-ffffffc0082e2354 t __clear_user
-ffffffc0082e24bc t __clear_user
-ffffffc0082e261c t maximum_alignment
-ffffffc0082e2680 t total_mapping_size
-ffffffc0082e2700 t elf_map
-ffffffc0082e27fc t load_elf_interp
-ffffffc0082e2ae0 t create_elf_tables
-ffffffc0082e35f0 t writenote
-ffffffc0082e36cc T mb_cache_entry_create
-ffffffc0082e3a40 t mb_cache_shrink
-ffffffc0082e3bf0 T __mb_cache_entry_free
-ffffffc0082e3d9c T mb_cache_entry_wait_unused
-ffffffc0082e3e98 T mb_cache_entry_find_first
-ffffffc0082e3ec8 t __entry_find.llvm.9441540845351968053
-ffffffc0082e414c T mb_cache_entry_find_next
-ffffffc0082e417c T mb_cache_entry_get
-ffffffc0082e438c T mb_cache_entry_delete_or_get
-ffffffc0082e4490 T mb_cache_entry_touch
-ffffffc0082e44d4 T mb_cache_create
-ffffffc0082e45fc t mb_cache_count
-ffffffc0082e4610 t mb_cache_scan
-ffffffc0082e4644 t mb_cache_shrink_worker
-ffffffc0082e4680 T mb_cache_destroy
-ffffffc0082e47a4 T get_cached_acl
-ffffffc0082e48c4 T get_cached_acl_rcu
-ffffffc0082e4954 T set_cached_acl
-ffffffc0082e4ab8 t posix_acl_release
-ffffffc0082e4b44 T forget_cached_acl
-ffffffc0082e4c28 T forget_all_cached_acls
-ffffffc0082e4d94 T get_acl
-ffffffc0082e5060 T posix_acl_init
-ffffffc0082e507c T posix_acl_alloc
-ffffffc0082e50cc T posix_acl_clone
-ffffffc0082e511c T posix_acl_valid
-ffffffc0082e5244 T posix_acl_equiv_mode
-ffffffc0082e5328 T posix_acl_from_mode
-ffffffc0082e53d4 T posix_acl_permission
-ffffffc0082e5564 T __posix_acl_create
-ffffffc0082e56d4 t posix_acl_create_masq
-ffffffc0082e5808 T __posix_acl_chmod
-ffffffc0082e5a14 T posix_acl_chmod
-ffffffc0082e5b94 T posix_acl_create
-ffffffc0082e5d3c T posix_acl_update_mode
-ffffffc0082e5e08 T posix_acl_getxattr_idmapped_mnt
-ffffffc0082e5e18 T posix_acl_fix_xattr_from_user
-ffffffc0082e5e28 T posix_acl_fix_xattr_to_user
-ffffffc0082e5e38 T vfs_set_acl_prepare
-ffffffc0082e6020 T posix_acl_from_xattr
-ffffffc0082e6208 T posix_acl_to_xattr
-ffffffc0082e62a4 T set_posix_acl
-ffffffc0082e6390 t posix_acl_xattr_list
-ffffffc0082e63b0 t posix_acl_xattr_get
-ffffffc0082e6528 t posix_acl_xattr_set
-ffffffc0082e66c4 T simple_set_acl
-ffffffc0082e67cc T simple_acl_create
-ffffffc0082e6950 T do_coredump
-ffffffc0082e7614 t umh_pipe_setup
-ffffffc0082e76bc t get_fs_root
-ffffffc0082e771c t dump_interrupted
-ffffffc0082e7774 t dump_vma_snapshot
-ffffffc0082e7c44 T dump_emit
-ffffffc0082e7d50 t free_vma_snapshot
-ffffffc0082e7ddc t wait_for_dump_helpers
-ffffffc0082e7ef0 t __dump_skip
-ffffffc0082e80e8 T dump_skip_to
-ffffffc0082e8104 T dump_skip
-ffffffc0082e8120 T dump_user_range
-ffffffc0082e8328 T dump_align
-ffffffc0082e837c T validate_coredump_safety
-ffffffc0082e83d8 t cn_printf
-ffffffc0082e845c t cn_esc_printf
-ffffffc0082e85a8 t cn_print_exe_file
-ffffffc0082e86a0 t cn_vprintf
-ffffffc0082e87d0 t proc_dostring_coredump
-ffffffc0082e8848 T drop_caches_sysctl_handler
-ffffffc0082e89f8 t drop_pagecache_sb
-ffffffc0082e8b08 T __arm64_sys_name_to_handle_at
-ffffffc0082e9068 T __arm64_sys_open_by_handle_at
-ffffffc0082e96b0 t vfs_dentry_acceptable
-ffffffc0082e96c4 T __traceiter_iomap_readpage
-ffffffc0082e9754 T __traceiter_iomap_readahead
-ffffffc0082e97e4 T __traceiter_iomap_writepage
-ffffffc0082e987c T __traceiter_iomap_release_folio
-ffffffc0082e9914 T __traceiter_iomap_invalidate_folio
-ffffffc0082e99ac T __traceiter_iomap_dio_invalidate_fail
-ffffffc0082e9a44 T __traceiter_iomap_iter_dstmap
-ffffffc0082e9ad4 T __traceiter_iomap_iter_srcmap
-ffffffc0082e9b64 T __traceiter_iomap_writepage_map
-ffffffc0082e9bf4 T __traceiter_iomap_iter
-ffffffc0082e9c8c t trace_event_raw_event_iomap_readpage_class
-ffffffc0082e9d5c t perf_trace_iomap_readpage_class
-ffffffc0082e9e88 t trace_event_raw_event_iomap_range_class
-ffffffc0082e9f70 t perf_trace_iomap_range_class
-ffffffc0082ea0a8 t trace_event_raw_event_iomap_class
-ffffffc0082ea1ac t perf_trace_iomap_class
-ffffffc0082ea30c t trace_event_raw_event_iomap_iter
-ffffffc0082ea438 t perf_trace_iomap_iter
-ffffffc0082ea5b4 t trace_raw_output_iomap_readpage_class
-ffffffc0082ea638 t trace_raw_output_iomap_range_class
-ffffffc0082ea6bc t trace_raw_output_iomap_class
-ffffffc0082ea7d4 t trace_raw_output_iomap_iter
-ffffffc0082ea8b4 T iomap_iter
-ffffffc0082eac68 T iomap_read_folio
-ffffffc0082eae60 t iomap_readpage_iter
-ffffffc0082eb204 T iomap_readahead
-ffffffc0082eb520 T iomap_is_partially_uptodate
-ffffffc0082eb5d8 T iomap_release_folio
-ffffffc0082eb6e0 t iomap_page_release
-ffffffc0082eb84c T iomap_invalidate_folio
-ffffffc0082eb9c0 T iomap_file_buffered_write
-ffffffc0082ebc80 T iomap_file_unshare
-ffffffc0082ebe3c T iomap_zero_range
-ffffffc0082ec114 T iomap_truncate_page
-ffffffc0082ec16c T iomap_page_mkwrite
-ffffffc0082ec464 T iomap_finish_ioends
-ffffffc0082ec53c t iomap_finish_ioend
-ffffffc0082ec910 T iomap_ioend_try_merge
-ffffffc0082eca40 T iomap_sort_ioends
-ffffffc0082eca7c t iomap_ioend_compare
-ffffffc0082ecaa0 T iomap_writepages
-ffffffc0082ecb74 t iomap_do_writepage
-ffffffc0082ed4ac t iomap_read_inline_data
-ffffffc0082ed638 t iomap_page_create
-ffffffc0082ed76c t iomap_adjust_read_range
-ffffffc0082ed8fc t iomap_set_range_uptodate
-ffffffc0082eda38 t iomap_read_end_io
-ffffffc0082edce0 t iomap_write_begin
-ffffffc0082ee36c t iomap_write_end
-ffffffc0082ee62c t iomap_writepage_end_bio
-ffffffc0082ee674 T iomap_dio_complete
-ffffffc0082ee84c T iomap_dio_bio_end_io
-ffffffc0082eea18 t iomap_dio_complete_work
-ffffffc0082eea78 T __iomap_dio_rw
-ffffffc0082ef1e8 t trace_iomap_dio_invalidate_fail
-ffffffc0082ef2a4 T iomap_dio_rw
-ffffffc0082ef2ec t iomap_dio_bio_iter
-ffffffc0082ef7b4 t iomap_dio_zero
-ffffffc0082ef994 T iomap_fiemap
-ffffffc0082efc38 T iomap_bmap
-ffffffc0082efd6c T iomap_seek_hole
-ffffffc0082efee4 T iomap_seek_data
-ffffffc0082f0054 T iomap_swapfile_activate
-ffffffc0082f0500 T task_mem
-ffffffc0082f0798 T task_vsize
-ffffffc0082f07b0 T task_statm
-ffffffc0082f083c t pid_maps_open
-ffffffc0082f08d8 t proc_map_release
-ffffffc0082f0978 t pid_smaps_open
-ffffffc0082f0a14 t smaps_rollup_open
-ffffffc0082f0ad8 t smaps_rollup_release
-ffffffc0082f0b88 t clear_refs_write
-ffffffc0082f0fec t pagemap_read
-ffffffc0082f1448 t pagemap_open
-ffffffc0082f1494 t pagemap_release
-ffffffc0082f1510 t m_start
-ffffffc0082f175c t m_stop
-ffffffc0082f182c t m_next
-ffffffc0082f189c t show_map
-ffffffc0082f18c8 t show_map_vma
-ffffffc0082f1a78 t show_vma_header_prefix
-ffffffc0082f1bd0 t show_smap
-ffffffc0082f1df0 t __show_smap
-ffffffc0082f2090 t smaps_pte_range
-ffffffc0082f2480 t pfn_swap_entry_to_page
-ffffffc0082f24f4 t smaps_account
-ffffffc0082f28c8 t smaps_pte_hole
-ffffffc0082f2930 t show_smaps_rollup
-ffffffc0082f2db4 t flush_tlb_mm
-ffffffc0082f2e2c t clear_refs_pte_range
-ffffffc0082f310c t clear_refs_test_walk
-ffffffc0082f3160 t pagemap_pmd_range
-ffffffc0082f3608 t pagemap_pte_hole
-ffffffc0082f3718 T proc_invalidate_siblings_dcache
-ffffffc0082f38b8 t proc_alloc_inode.llvm.11503762549394106884
-ffffffc0082f3920 t proc_free_inode.llvm.11503762549394106884
-ffffffc0082f3958 t proc_evict_inode.llvm.11503762549394106884
-ffffffc0082f39d8 t proc_show_options.llvm.11503762549394106884
-ffffffc0082f3af0 T proc_entry_rundown
-ffffffc0082f3c00 t close_pdeo
-ffffffc0082f3d3c t proc_get_link.llvm.11503762549394106884
-ffffffc0082f3dd0 T proc_get_inode
-ffffffc0082f3f10 t proc_put_link
-ffffffc0082f3f84 t proc_reg_llseek
-ffffffc0082f40f4 t proc_reg_write
-ffffffc0082f4274 t proc_reg_read_iter
-ffffffc0082f43dc t proc_reg_poll
-ffffffc0082f4550 t proc_reg_unlocked_ioctl
-ffffffc0082f46d0 t proc_reg_mmap
-ffffffc0082f4844 t proc_reg_open
-ffffffc0082f4aa4 t proc_reg_release
-ffffffc0082f4b60 t proc_reg_get_unmapped_area
-ffffffc0082f4cf8 t proc_reg_read
-ffffffc0082f4e78 t proc_init_fs_context
-ffffffc0082f4f00 t proc_kill_sb
-ffffffc0082f4f68 t proc_fs_context_free
-ffffffc0082f4f98 t proc_parse_param
-ffffffc0082f5218 t proc_get_tree
-ffffffc0082f524c t proc_reconfigure
-ffffffc0082f52d4 t proc_fill_super
-ffffffc0082f5480 t proc_root_lookup
-ffffffc0082f54e4 t proc_root_getattr
-ffffffc0082f5548 t proc_root_readdir
-ffffffc0082f55b4 T proc_setattr
-ffffffc0082f5630 T proc_mem_open
-ffffffc0082f573c T mem_lseek
-ffffffc0082f5770 t proc_pid_get_link.llvm.8327857274106106325
-ffffffc0082f58b4 t proc_pid_readlink.llvm.8327857274106106325
-ffffffc0082f5bc8 T task_dump_owner
-ffffffc0082f5c94 T proc_pid_evict_inode
-ffffffc0082f5d1c T proc_pid_make_inode
-ffffffc0082f5e40 T pid_getattr
-ffffffc0082f5f88 T pid_update_inode
-ffffffc0082f6064 T pid_delete_dentry
-ffffffc0082f6088 t pid_revalidate.llvm.8327857274106106325
-ffffffc0082f60fc T proc_fill_cache
-ffffffc0082f6298 T tgid_pidfd_to_pid
-ffffffc0082f62d0 T proc_flush_pid
-ffffffc0082f6308 T proc_pid_lookup
-ffffffc0082f6478 t proc_pid_instantiate
-ffffffc0082f6578 T proc_pid_readdir
-ffffffc0082f680c t next_tgid
-ffffffc0082f69a8 t proc_tgid_base_readdir
-ffffffc0082f69dc t proc_pident_readdir
-ffffffc0082f6bec t proc_pident_instantiate
-ffffffc0082f6cb0 t proc_tgid_base_lookup
-ffffffc0082f6ce8 t proc_pid_permission
-ffffffc0082f6e14 t proc_pident_lookup
-ffffffc0082f6f38 t proc_pid_personality
-ffffffc0082f6fcc t proc_pid_limits
-ffffffc0082f7168 t proc_pid_syscall
-ffffffc0082f729c t proc_cwd_link
-ffffffc0082f73b0 t proc_root_link
-ffffffc0082f74c4 t proc_exe_link
-ffffffc0082f75b0 t proc_pid_wchan
-ffffffc0082f7674 t proc_pid_stack
-ffffffc0082f7798 t proc_pid_schedstat
-ffffffc0082f77e0 t proc_oom_score
-ffffffc0082f7888 t environ_read
-ffffffc0082f7bac t environ_open
-ffffffc0082f7bf8 t mem_release
-ffffffc0082f7c74 t auxv_read
-ffffffc0082f7e34 t auxv_open
-ffffffc0082f7e80 t proc_single_open
-ffffffc0082f7ec0 t proc_single_open
-ffffffc0082f7f00 t proc_single_show
-ffffffc0082f800c t sched_write
-ffffffc0082f8140 t sched_open
-ffffffc0082f8180 t sched_show
-ffffffc0082f8258 t proc_tid_comm_permission
-ffffffc0082f8348 t comm_write
-ffffffc0082f85d4 t comm_open
-ffffffc0082f8614 t comm_show
-ffffffc0082f86e8 t proc_pid_cmdline_read
-ffffffc0082f8ce0 t mem_read
-ffffffc0082f8d10 t mem_write
-ffffffc0082f8d40 t mem_open
-ffffffc0082f8d94 t mem_rw
-ffffffc0082f9218 t proc_attr_dir_lookup
-ffffffc0082f9250 t proc_pid_attr_read
-ffffffc0082f93ac t proc_pid_attr_write
-ffffffc0082f94fc t proc_pid_attr_open
-ffffffc0082f954c t proc_attr_dir_readdir
-ffffffc0082f9584 t oom_adj_read
-ffffffc0082f96e4 t oom_adj_write
-ffffffc0082f9938 t __set_oom_adj
-ffffffc0082f9cd0 t oom_score_adj_read
-ffffffc0082f9dfc t oom_score_adj_write
-ffffffc0082fa02c t proc_loginuid_read
-ffffffc0082fa164 t proc_loginuid_write
-ffffffc0082fa25c t proc_sessionid_read
-ffffffc0082fa394 t proc_task_lookup
-ffffffc0082fa574 t proc_task_getattr
-ffffffc0082fa658 t proc_task_instantiate
-ffffffc0082fa758 t proc_tid_base_lookup
-ffffffc0082fa790 t proc_tid_base_readdir
-ffffffc0082fa7c8 t proc_task_readdir
-ffffffc0082fac04 t proc_map_files_lookup
-ffffffc0082fae64 t proc_map_files_instantiate
-ffffffc0082faefc t map_files_get_link
-ffffffc0082fb148 t proc_map_files_get_link
-ffffffc0082fb1bc t map_files_d_revalidate
-ffffffc0082fb49c t proc_map_files_readdir
-ffffffc0082fb888 t proc_coredump_filter_read
-ffffffc0082fb9e4 t proc_coredump_filter_write
-ffffffc0082fbbc0 t timerslack_ns_write
-ffffffc0082fbd44 t timerslack_ns_open
-ffffffc0082fbd84 t timerslack_ns_show
-ffffffc0082fbebc T pde_free
-ffffffc0082fbf2c T proc_alloc_inum
-ffffffc0082fbf8c T proc_free_inum
-ffffffc0082fbfc8 T proc_lookup_de
-ffffffc0082fc124 T proc_lookup
-ffffffc0082fc170 T proc_readdir_de
-ffffffc0082fc3cc T pde_put
-ffffffc0082fc4ac T proc_readdir
-ffffffc0082fc4fc t proc_net_d_revalidate.llvm.3954255675701154021
-ffffffc0082fc510 T proc_register
-ffffffc0082fc6ac T proc_symlink
-ffffffc0082fc7b4 t __proc_create
-ffffffc0082fcaf0 T _proc_mkdir
-ffffffc0082fcbb8 T proc_mkdir_data
-ffffffc0082fcc6c T proc_mkdir_mode
-ffffffc0082fcd14 T proc_mkdir
-ffffffc0082fcdac T proc_create_mount_point
-ffffffc0082fce30 T proc_create_reg
-ffffffc0082fcec4 T proc_create_data
-ffffffc0082fcfac T proc_create
-ffffffc0082fd090 T proc_create_seq_private
-ffffffc0082fd180 T proc_create_single_data
-ffffffc0082fd260 T proc_set_size
-ffffffc0082fd274 T proc_set_user
-ffffffc0082fd288 T remove_proc_entry
-ffffffc0082fd4d8 T remove_proc_subtree
-ffffffc0082fd74c T proc_get_parent_data
-ffffffc0082fd768 T proc_remove
-ffffffc0082fd7a4 T proc_simple_write
-ffffffc0082fd870 t proc_misc_d_revalidate
-ffffffc0082fd8a8 t proc_misc_d_delete
-ffffffc0082fd8cc t proc_notify_change
-ffffffc0082fd958 t proc_getattr
-ffffffc0082fd9cc t proc_seq_open
-ffffffc0082fda18 t proc_seq_release
-ffffffc0082fda58 T proc_task_name
-ffffffc0082fdb3c T render_sigset_t
-ffffffc0082fdbfc T proc_pid_status
-ffffffc0082fe8a0 T proc_tid_stat
-ffffffc0082fe8d0 t do_task_stat
-ffffffc0082ff390 T proc_tgid_stat
-ffffffc0082ff3c4 T proc_pid_statm
-ffffffc0082ff528 t proc_readfd
-ffffffc0082ff55c T proc_fd_permission
-ffffffc0082ff5d4 t proc_lookupfd
-ffffffc0082ff608 t proc_lookupfdinfo
-ffffffc0082ff63c t proc_readfdinfo
-ffffffc0082ff670 t proc_open_fdinfo
-ffffffc0082ff730 t proc_readfd_common
-ffffffc0082ff9c8 t proc_fd_instantiate
-ffffffc0082ffac0 t proc_fd_link
-ffffffc0082ffbbc t tid_fd_revalidate
-ffffffc0082ffd5c t proc_lookupfd_common
-ffffffc0082ffebc t proc_fdinfo_instantiate
-ffffffc0082fff80 t seq_fdinfo_open
-ffffffc00830006c t seq_show
-ffffffc0083002c4 T proc_tty_register_driver
-ffffffc00830032c T proc_tty_unregister_driver
-ffffffc00830037c t show_tty_driver
-ffffffc008300550 t show_tty_range
-ffffffc00830070c t cmdline_proc_show
-ffffffc00830075c t c_start
-ffffffc0083007b8 t c_stop
-ffffffc0083007e4 t c_next
-ffffffc008300804 t show_console_dev
-ffffffc0083009c8 t cpuinfo_open
-ffffffc008300a00 t devinfo_start
-ffffffc008300a1c t devinfo_stop
-ffffffc008300a2c t devinfo_next
-ffffffc008300a50 t devinfo_show
-ffffffc008300adc t int_seq_start
-ffffffc008300b00 t int_seq_stop
-ffffffc008300b10 t int_seq_next
-ffffffc008300b3c t loadavg_proc_show
-ffffffc008300c70 W arch_report_meminfo
-ffffffc008300c80 t meminfo_proc_show
-ffffffc008301654 T get_idle_time
-ffffffc0083016cc t stat_open
-ffffffc00830172c t show_stat
-ffffffc008301fa0 t uptime_proc_show
-ffffffc008302140 T name_to_int
-ffffffc0083021b0 t version_proc_show
-ffffffc0083021fc t show_softirqs
-ffffffc00830236c t proc_ns_dir_readdir
-ffffffc00830254c t proc_ns_dir_lookup
-ffffffc0083026a0 t proc_ns_instantiate
-ffffffc008302738 t proc_ns_get_link
-ffffffc008302860 t proc_ns_readlink
-ffffffc0083029a4 T proc_setup_self
-ffffffc008302a94 t proc_self_get_link
-ffffffc008302b58 T proc_setup_thread_self
-ffffffc008302c48 t proc_thread_self_get_link
-ffffffc008302d34 T register_sysctl_mount_point
-ffffffc008302d74 T register_sysctl
-ffffffc008302db0 T proc_sys_poll_notify
-ffffffc008302e18 T proc_sys_evict_inode
-ffffffc008302ea4 T __register_sysctl_table
-ffffffc008303598 t insert_header
-ffffffc0083039b0 t drop_sysctl_table
-ffffffc008303b10 T __register_sysctl_paths
-ffffffc008303dc0 t count_subheaders
-ffffffc008303e40 t register_leaf_sysctl_tables
-ffffffc008304054 T unregister_sysctl_table
-ffffffc008304100 T register_sysctl_paths
-ffffffc00830413c T register_sysctl_table
-ffffffc00830417c T __register_sysctl_base
-ffffffc0083041c0 T setup_sysctl_set
-ffffffc0083041fc T retire_sysctl_set
-ffffffc008304228 T do_sysctl_args
-ffffffc0083042f4 t process_sysctl_arg
-ffffffc008304630 t sysctl_err
-ffffffc0083046cc t sysctl_print_dir
-ffffffc00830471c t put_links
-ffffffc0083048b4 t xlate_dir
-ffffffc0083049d0 t get_links
-ffffffc008304bd4 t proc_sys_lookup
-ffffffc008304e6c t proc_sys_permission
-ffffffc008304ff4 t proc_sys_setattr
-ffffffc008305074 t proc_sys_getattr
-ffffffc008305180 t sysctl_follow_link
-ffffffc008305310 t proc_sys_make_inode
-ffffffc0083054b4 t proc_sys_read
-ffffffc0083054e4 t proc_sys_write
-ffffffc008305514 t proc_sys_poll
-ffffffc008305678 t proc_sys_open
-ffffffc00830576c t proc_sys_call_handler
-ffffffc008305a2c t proc_sys_revalidate
-ffffffc008305a60 t proc_sys_compare
-ffffffc008305b44 t proc_sys_delete
-ffffffc008305b68 t proc_sys_readdir
-ffffffc008305eb0 t proc_sys_link_fill_cache
-ffffffc008305fe0 t proc_sys_fill_cache
-ffffffc0083061b4 T bpf_iter_init_seq_net
-ffffffc0083061c8 T bpf_iter_fini_seq_net
-ffffffc0083061d8 T proc_create_net_data
-ffffffc008306278 T proc_create_net_data_write
-ffffffc008306324 T proc_create_net_single
-ffffffc0083063bc T proc_create_net_single_write
-ffffffc008306458 t proc_tgid_net_lookup
-ffffffc008306500 t proc_tgid_net_getattr
-ffffffc0083065b0 t proc_tgid_net_readdir
-ffffffc00830665c t seq_open_net
-ffffffc0083066d4 t seq_release_net
-ffffffc008306704 t single_open_net
-ffffffc008306754 t single_release_net
-ffffffc008306780 t kmsg_open
-ffffffc0083067bc t kmsg_read
-ffffffc008306834 t kmsg_release
-ffffffc008306874 t kmsg_poll
-ffffffc0083068f0 T stable_page_flags
-ffffffc008306c3c t kpagecount_read
-ffffffc008306ed8 t kpageflags_read
-ffffffc008307100 t boot_config_proc_show
-ffffffc00830713c t kernfs_sop_show_options.llvm.10369058774310563464
-ffffffc0083071b4 t kernfs_sop_show_path.llvm.10369058774310563464
-ffffffc00830723c T kernfs_root_from_sb
-ffffffc008307274 T kernfs_node_dentry
-ffffffc0083073a0 T kernfs_super_ns
-ffffffc0083073b8 T kernfs_get_tree
-ffffffc0083075a0 t kernfs_test_super
-ffffffc0083075e4 t kernfs_set_super
-ffffffc008307618 T kernfs_free_fs_context
-ffffffc008307658 T kernfs_kill_sb
-ffffffc0083076ec t kernfs_encode_fh
-ffffffc008307734 t kernfs_fh_to_dentry
-ffffffc0083077d4 t kernfs_fh_to_parent
-ffffffc008307890 t kernfs_get_parent_dentry
-ffffffc0083078d8 T __kernfs_setattr
-ffffffc008307a2c T kernfs_setattr
-ffffffc008307aa4 T kernfs_iop_setattr
-ffffffc008307b6c T kernfs_iop_listxattr
-ffffffc008307c88 T kernfs_iop_getattr
-ffffffc008307d80 T kernfs_get_inode
-ffffffc008307f08 T kernfs_evict_inode
-ffffffc008307f58 T kernfs_iop_permission
-ffffffc00830805c T kernfs_xattr_get
-ffffffc0083080e8 T kernfs_xattr_set
-ffffffc008308200 t kernfs_vfs_xattr_get
-ffffffc008308298 t kernfs_vfs_xattr_set
-ffffffc008308300 t kernfs_vfs_user_xattr_set
-ffffffc008308628 T kernfs_name
-ffffffc0083086c8 T kernfs_path_from_node
-ffffffc008308994 T pr_cont_kernfs_name
-ffffffc008308a74 T pr_cont_kernfs_path
-ffffffc008308b20 T kernfs_get_parent
-ffffffc008308bb8 T kernfs_get
-ffffffc008308c0c T kernfs_get_active
-ffffffc008308c90 T kernfs_put_active
-ffffffc008308d2c T kernfs_put
-ffffffc008308f3c T kernfs_node_from_dentry
-ffffffc008308f7c T kernfs_new_node
-ffffffc008309028 t __kernfs_new_node
-ffffffc008309230 T kernfs_find_and_get_node_by_id
-ffffffc008309318 T kernfs_add_one
-ffffffc0083094b4 t kernfs_link_sibling
-ffffffc0083095cc T kernfs_activate
-ffffffc00830974c T kernfs_find_and_get_ns
-ffffffc008309808 t kernfs_find_ns
-ffffffc008309964 T kernfs_walk_and_get_ns
-ffffffc008309ad0 T kernfs_create_root
-ffffffc008309bf8 T kernfs_destroy_root
-ffffffc008309cc0 T kernfs_remove
-ffffffc008309d24 T kernfs_root_to_node
-ffffffc008309d38 T kernfs_create_dir_ns
-ffffffc008309e38 T kernfs_create_empty_dir
-ffffffc008309f28 t kernfs_dop_revalidate.llvm.7166847226412173546
-ffffffc00830a090 t kernfs_iop_lookup.llvm.7166847226412173546
-ffffffc00830a184 t kernfs_iop_mkdir.llvm.7166847226412173546
-ffffffc00830a2f8 t kernfs_iop_rmdir.llvm.7166847226412173546
-ffffffc00830a470 t kernfs_iop_rename.llvm.7166847226412173546
-ffffffc00830a71c T kernfs_show
-ffffffc00830a89c t kernfs_drain
-ffffffc00830aa00 t __kernfs_remove
-ffffffc00830ac2c T kernfs_break_active_protection
-ffffffc00830acc8 T kernfs_unbreak_active_protection
-ffffffc00830ad0c T kernfs_remove_self
-ffffffc00830af1c T kernfs_remove_by_name_ns
-ffffffc00830b018 T kernfs_rename_ns
-ffffffc00830b284 t kernfs_fop_readdir.llvm.7166847226412173546
-ffffffc00830b52c t kernfs_dir_fop_release.llvm.7166847226412173546
-ffffffc00830b55c t kernfs_dir_pos
-ffffffc00830b680 T kernfs_should_drain_open_files
-ffffffc00830b714 T kernfs_drain_open_files
-ffffffc00830b85c T kernfs_generic_poll
-ffffffc00830b8f4 T kernfs_notify
-ffffffc00830b9f4 t kernfs_notify_workfn
-ffffffc00830bc1c t kernfs_fop_read_iter.llvm.14833021790014244222
-ffffffc00830bde4 t kernfs_fop_write_iter.llvm.14833021790014244222
-ffffffc00830bf94 t kernfs_fop_poll.llvm.14833021790014244222
-ffffffc00830c0a4 t kernfs_fop_mmap.llvm.14833021790014244222
-ffffffc00830c1f0 t kernfs_fop_open.llvm.14833021790014244222
-ffffffc00830c540 t kernfs_fop_release.llvm.14833021790014244222
-ffffffc00830c650 T __kernfs_create_file
-ffffffc00830c730 t kernfs_vma_open
-ffffffc00830c7b8 t kernfs_vma_fault
-ffffffc00830c85c t kernfs_vma_page_mkwrite
-ffffffc00830c910 t kernfs_vma_access
-ffffffc00830c9dc t kernfs_unlink_open_file
-ffffffc00830cb08 t kernfs_seq_start
-ffffffc00830cbf0 t kernfs_seq_stop
-ffffffc00830cc6c t kernfs_seq_next
-ffffffc00830cd30 t kernfs_seq_show
-ffffffc00830cd9c T kernfs_create_link
-ffffffc00830ce50 t kernfs_iop_get_link.llvm.10722999785994791174
-ffffffc00830d08c T sysfs_notify
-ffffffc00830d128 T sysfs_add_file_mode_ns
-ffffffc00830d258 T sysfs_add_bin_file_mode_ns
-ffffffc00830d33c T sysfs_create_file_ns
-ffffffc00830d3fc T sysfs_create_files
-ffffffc00830d528 T sysfs_add_file_to_group
-ffffffc00830d60c T sysfs_chmod_file
-ffffffc00830d6cc T sysfs_break_active_protection
-ffffffc00830d72c T sysfs_unbreak_active_protection
-ffffffc00830d77c T sysfs_remove_file_ns
-ffffffc00830d7b0 T sysfs_remove_file_self
-ffffffc00830d818 T sysfs_remove_files
-ffffffc00830d880 T sysfs_remove_file_from_group
-ffffffc00830d8fc T sysfs_create_bin_file
-ffffffc00830da3c T sysfs_remove_bin_file
-ffffffc00830da74 T sysfs_link_change_owner
-ffffffc00830db8c T sysfs_file_change_owner
-ffffffc00830dc60 T sysfs_change_owner
-ffffffc00830dd34 T sysfs_emit
-ffffffc00830de00 T sysfs_emit_at
-ffffffc00830dedc t sysfs_kf_read
-ffffffc00830dfb4 t sysfs_kf_write
-ffffffc00830e02c t sysfs_kf_seq_show
-ffffffc00830e168 t sysfs_kf_bin_open
-ffffffc00830e1d4 t sysfs_kf_bin_read
-ffffffc00830e278 t sysfs_kf_bin_write
-ffffffc00830e320 t sysfs_kf_bin_mmap
-ffffffc00830e37c T sysfs_warn_dup
-ffffffc00830e414 T sysfs_create_dir_ns
-ffffffc00830e570 T sysfs_remove_dir
-ffffffc00830e5f0 T sysfs_rename_dir_ns
-ffffffc00830e664 T sysfs_move_dir_ns
-ffffffc00830e6b0 T sysfs_create_mount_point
-ffffffc00830e770 T sysfs_remove_mount_point
-ffffffc00830e7a4 T sysfs_create_link_sd
-ffffffc00830e7d0 t sysfs_do_create_link_sd.llvm.3062440277326208260
-ffffffc00830e8b8 T sysfs_create_link
-ffffffc00830e90c T sysfs_create_link_nowarn
-ffffffc00830e9e8 T sysfs_delete_link
-ffffffc00830ea74 T sysfs_remove_link
-ffffffc00830eabc T sysfs_rename_link_ns
-ffffffc00830eb9c t sysfs_init_fs_context
-ffffffc00830ec60 t sysfs_kill_sb
-ffffffc00830eca8 t sysfs_fs_context_free
-ffffffc00830ed04 t sysfs_get_tree
-ffffffc00830ed60 T sysfs_create_group
-ffffffc00830ed90 t internal_create_group.llvm.2264422126542853786
-ffffffc00830f1c8 T sysfs_create_groups
-ffffffc00830f268 T sysfs_update_groups
-ffffffc00830f308 T sysfs_update_group
-ffffffc00830f33c T sysfs_remove_group
-ffffffc00830f430 T sysfs_remove_groups
-ffffffc00830f494 T sysfs_merge_group
-ffffffc00830f5c4 T sysfs_unmerge_group
-ffffffc00830f640 T sysfs_add_link_to_group
-ffffffc00830f6bc T sysfs_remove_link_from_group
-ffffffc00830f718 T compat_only_sysfs_link_entry_to_kobj
-ffffffc00830f810 T sysfs_group_change_owner
-ffffffc00830f9a8 T sysfs_groups_change_owner
-ffffffc00830fa3c T devpts_mntget
-ffffffc00830fb60 T devpts_acquire
-ffffffc00830fc64 T devpts_release
-ffffffc00830fc94 T devpts_new_index
-ffffffc00830fd80 T devpts_kill_index
-ffffffc00830fde8 T devpts_pty_new
-ffffffc00830ffa4 T devpts_get_priv
-ffffffc00830ffd8 T devpts_pty_kill
-ffffffc0083100a8 t devpts_mount
-ffffffc0083100e0 t devpts_kill_sb
-ffffffc008310134 t devpts_fill_super
-ffffffc00831037c t parse_mount_options
-ffffffc008310590 t devpts_remount
-ffffffc0083105f0 t devpts_show_options
-ffffffc0083106cc T ext4_get_group_number
-ffffffc008310718 T ext4_get_group_no_and_offset
-ffffffc008310760 T ext4_free_clusters_after_init
-ffffffc008310a24 T ext4_get_group_desc
-ffffffc008310b48 T ext4_read_block_bitmap_nowait
-ffffffc00831112c t ext4_init_block_bitmap
-ffffffc00831149c t ext4_validate_block_bitmap
-ffffffc00831186c T ext4_wait_block_bitmap
-ffffffc008311984 T ext4_read_block_bitmap
-ffffffc008311a2c T ext4_claim_free_clusters
-ffffffc008311a88 t ext4_has_free_clusters
-ffffffc008311c00 T ext4_should_retry_alloc
-ffffffc008311d10 T ext4_new_meta_blocks
-ffffffc008311e28 T ext4_count_free_clusters
-ffffffc008311f34 T ext4_bg_has_super
-ffffffc008312068 T ext4_bg_num_gdb
-ffffffc008312108 T ext4_inode_to_goal_block
-ffffffc0083121c8 t ext4_num_base_meta_clusters
-ffffffc0083122c4 T ext4_count_free
-ffffffc008312304 T ext4_inode_bitmap_csum_verify
-ffffffc008312414 T ext4_inode_bitmap_csum_set
-ffffffc008312504 T ext4_block_bitmap_csum_verify
-ffffffc008312618 T ext4_block_bitmap_csum_set
-ffffffc00831270c T ext4_exit_system_zone
-ffffffc008312744 T ext4_setup_system_zone
-ffffffc008312b30 t add_system_zone
-ffffffc008312cd8 T ext4_release_system_zone
-ffffffc008312d20 t ext4_destroy_system_zone
-ffffffc008312d98 T ext4_sb_block_valid
-ffffffc008312ea8 T ext4_inode_block_valid
-ffffffc008312fb4 T ext4_check_blockref
-ffffffc008313084 T __ext4_check_dir_entry
-ffffffc0083132c4 T ext4_htree_free_dir_info
-ffffffc008313348 T ext4_htree_store_dirent
-ffffffc008313478 T ext4_check_all_de
-ffffffc008313550 t ext4_dir_llseek.llvm.14923406730417568945
-ffffffc008313610 t ext4_readdir.llvm.14923406730417568945
-ffffffc008314044 t ext4_release_dir.llvm.14923406730417568945
-ffffffc0083140d4 T ext4_inode_journal_mode
-ffffffc008314160 T __ext4_journal_start_sb
-ffffffc008314338 T __ext4_journal_stop
-ffffffc0083143f0 T __ext4_journal_start_reserved
-ffffffc0083145fc T __ext4_journal_ensure_credits
-ffffffc0083146c0 T __ext4_journal_get_write_access
-ffffffc0083148bc t ext4_journal_abort_handle
-ffffffc0083149b4 T __ext4_forget
-ffffffc008314c94 T __ext4_journal_get_create_access
-ffffffc008314e08 T __ext4_handle_dirty_metadata
-ffffffc0083150bc T ext4_free_ext_path
-ffffffc008315130 T ext4_datasem_ensure_credits
-ffffffc008315200 T ext4_ext_check_inode
-ffffffc00831524c t __ext4_ext_check
-ffffffc008315608 T ext4_ext_precache
-ffffffc0083158ec t __read_extent_tree_block
-ffffffc008315ba0 T ext4_ext_tree_init
-ffffffc008315bf0 T ext4_find_extent
-ffffffc008315fb4 T ext4_ext_next_allocated_block
-ffffffc008316068 T ext4_ext_insert_extent
-ffffffc008317528 t ext4_ext_get_access
-ffffffc0083175b4 t ext4_ext_try_to_merge
-ffffffc008317714 t ext4_ext_correct_indexes
-ffffffc00831792c t __ext4_ext_dirty
-ffffffc008317aec T ext4_ext_calc_credits_for_single_extent
-ffffffc008317b48 T ext4_ext_index_trans_blocks
-ffffffc008317b8c T ext4_ext_remove_space
-ffffffc00831905c t ext4_ext_search_right
-ffffffc008319398 t ext4_ext_rm_idx
-ffffffc008319684 T ext4_ext_init
-ffffffc008319694 T ext4_ext_release
-ffffffc0083196a4 T ext4_ext_map_blocks
-ffffffc00831af78 t get_implied_cluster_alloc
-ffffffc00831b238 t ext4_update_inode_fsync_trans
-ffffffc00831b27c t ext4_update_inode_fsync_trans
-ffffffc00831b2c0 t ext4_update_inode_fsync_trans
-ffffffc00831b308 T ext4_ext_truncate
-ffffffc00831b418 T ext4_fallocate
-ffffffc00831bcec t ext4_zero_range
-ffffffc00831c12c t trace_ext4_fallocate_enter
-ffffffc00831c1e8 t ext4_alloc_file_blocks
-ffffffc00831c4c8 t trace_ext4_fallocate_exit
-ffffffc00831c588 T ext4_convert_unwritten_extents
-ffffffc00831c758 T ext4_convert_unwritten_io_end_vec
-ffffffc00831c820 T ext4_fiemap
-ffffffc00831c904 T ext4_get_es_cache
-ffffffc00831cb2c T ext4_swap_extents
-ffffffc00831d31c T ext4_clu_mapped
-ffffffc00831d568 T ext4_ext_replay_update_ex
-ffffffc00831d87c T ext4_ext_replay_shrink_inode
-ffffffc00831da18 T ext4_ext_replay_set_iblocks
-ffffffc00831deb8 T ext4_ext_clear_bb
-ffffffc00831e118 t ext4_ext_insert_index
-ffffffc00831e378 t ext4_ext_try_to_merge_right
-ffffffc00831e5c0 t ext4_split_extent_at
-ffffffc00831ea34 t ext4_ext_zeroout
-ffffffc00831ea78 t ext4_zeroout_es
-ffffffc00831eacc t ext4_split_extent
-ffffffc00831ec54 t trace_ext4_ext_convert_to_initialized_fastpath
-ffffffc00831ed14 t ext4_es_is_delayed
-ffffffc00831ed2c t ext4_es_is_delayed
-ffffffc00831ed40 t ext4_update_inode_size
-ffffffc00831ede8 t ext4_iomap_xattr_begin
-ffffffc00831eef0 t ext4_ext_shift_extents
-ffffffc00831f668 T ext4_exit_es
-ffffffc00831f69c T ext4_es_init_tree
-ffffffc00831f6b0 T ext4_es_find_extent_range
-ffffffc00831f854 t __es_find_extent_range
-ffffffc00831f9fc T ext4_es_scan_range
-ffffffc00831fb08 T ext4_es_scan_clu
-ffffffc00831fc2c T ext4_es_insert_extent
-ffffffc00832062c t __es_remove_extent
-ffffffc008320be8 t __es_insert_extent
-ffffffc0083210ac t __es_shrink
-ffffffc0083213c0 T ext4_es_cache_extent
-ffffffc008321580 T ext4_es_lookup_extent
-ffffffc00832181c T ext4_es_remove_extent
-ffffffc0083219a0 T ext4_seq_es_shrinker_info_show
-ffffffc008321ba8 T ext4_es_register_shrinker
-ffffffc008321d00 t ext4_es_scan
-ffffffc0083221e8 t ext4_es_count
-ffffffc0083222d8 T ext4_es_unregister_shrinker
-ffffffc008322334 T ext4_clear_inode_es
-ffffffc008322410 t ext4_es_free_extent
-ffffffc008322538 T ext4_exit_pending
-ffffffc00832256c T ext4_init_pending_tree
-ffffffc008322580 T ext4_remove_pending
-ffffffc008322648 T ext4_is_pending
-ffffffc0083226f0 T ext4_es_insert_delayed_block
-ffffffc008322924 T ext4_es_delayed_clu
-ffffffc008322a84 t count_rsvd
-ffffffc008322bec t es_reclaim_extents
-ffffffc008322ce0 t es_do_reclaim_extents
-ffffffc008322e30 T ext4_llseek
-ffffffc008322f34 t ext4_file_read_iter.llvm.11826875688693197965
-ffffffc008323084 t ext4_file_write_iter.llvm.11826875688693197965
-ffffffc0083237ec t ext4_file_mmap.llvm.11826875688693197965
-ffffffc008323870 t ext4_file_open.llvm.11826875688693197965
-ffffffc008323ab0 t ext4_release_file.llvm.11826875688693197965
-ffffffc008323ba8 t ext4_buffered_write_iter
-ffffffc008323d34 t ext4_dio_write_end_io
-ffffffc008323dc8 t sb_start_intwrite_trylock
-ffffffc008323ee4 t lock_buffer
-ffffffc008323f48 t lock_buffer
-ffffffc008323fac t lock_buffer
-ffffffc008324010 t lock_buffer
-ffffffc008324074 t sb_end_intwrite
-ffffffc0083241f0 T ext4_fsmap_from_internal
-ffffffc00832423c T ext4_fsmap_to_internal
-ffffffc008324284 T ext4_getfsmap
-ffffffc008324624 t ext4_getfsmap_datadev
-ffffffc008324e0c t ext4_getfsmap_logdev
-ffffffc008325054 t ext4_getfsmap_dev_compare
-ffffffc008325070 t ext4_getfsmap_datadev_helper
-ffffffc00832525c t ext4_getfsmap_helper
-ffffffc0083255b8 t ext4_getfsmap_compare
-ffffffc0083255dc T ext4_sync_file
-ffffffc008325984 T ext4fs_dirhash
-ffffffc008325aa4 t __ext4fs_dirhash
-ffffffc008326098 t str2hashbuf_signed
-ffffffc008326164 t str2hashbuf_unsigned
-ffffffc008326230 T ext4_mark_bitmap_end
-ffffffc0083262c0 T ext4_end_bitmap_read
-ffffffc008326394 T ext4_free_inode
-ffffffc0083268c4 t ext4_read_inode_bitmap
-ffffffc0083270d8 t ext4_get_group_info
-ffffffc008327160 t ext4_get_group_info
-ffffffc0083271e8 t ext4_lock_group
-ffffffc0083272fc t ext4_lock_group
-ffffffc008327414 T ext4_mark_inode_used
-ffffffc0083277c0 t ext4_has_group_desc_csum
-ffffffc008327824 t ext4_has_group_desc_csum
-ffffffc008327888 t ext4_has_group_desc_csum
-ffffffc0083278ec t ext4_has_group_desc_csum
-ffffffc008327954 T __ext4_new_inode
-ffffffc008328c1c t find_group_orlov
-ffffffc008328fe4 t find_inode_bit
-ffffffc008329154 t ext4_has_metadata_csum
-ffffffc0083291a8 t ext4_has_metadata_csum
-ffffffc0083291fc t ext4_chksum
-ffffffc008329288 t ext4_chksum
-ffffffc008329314 t trace_ext4_allocate_inode
-ffffffc0083293d0 T ext4_orphan_get
-ffffffc008329684 T ext4_count_free_inodes
-ffffffc008329718 T ext4_count_dirs
-ffffffc0083297ac T ext4_init_inode_table
-ffffffc008329af0 t get_orlov_stats
-ffffffc008329bdc T ext4_ind_map_blocks
-ffffffc00832a834 t ext4_get_branch
-ffffffc00832aa20 T ext4_ind_trans_blocks
-ffffffc00832aa4c T ext4_ind_truncate
-ffffffc00832aea4 t ext4_find_shared
-ffffffc00832b000 t ext4_free_branches
-ffffffc00832b334 T ext4_ind_remove_space
-ffffffc00832bd88 t ext4_clear_blocks
-ffffffc00832bf34 t ext4_ind_truncate_ensure_credits
-ffffffc00832c138 T ext4_get_max_inline_size
-ffffffc00832c2ec T ext4_find_inline_data_nolock
-ffffffc00832c438 T ext4_readpage_inline
-ffffffc00832c5c4 t ext4_read_inline_page
-ffffffc00832c8b0 T ext4_try_to_write_inline_data
-ffffffc00832cf94 t ext4_prepare_inline_data
-ffffffc00832d0c0 T ext4_write_inline_data_end
-ffffffc00832d640 T ext4_journalled_write_inline_data
-ffffffc00832d880 T ext4_da_write_inline_data_begin
-ffffffc00832ddf4 T ext4_try_add_inline_entry
-ffffffc00832e180 t ext4_add_dirent_to_inline
-ffffffc00832e2f8 t ext4_convert_inline_data_nolock
-ffffffc00832e704 T ext4_inlinedir_to_tree
-ffffffc00832eb20 T ext4_read_inline_dir
-ffffffc00832ef1c T ext4_read_inline_link
-ffffffc00832f09c T ext4_get_first_inline_block
-ffffffc00832f134 T ext4_try_create_inline_dir
-ffffffc00832f21c T ext4_find_inline_entry
-ffffffc00832f380 T ext4_delete_inline_entry
-ffffffc00832f5b4 T empty_inline_dir
-ffffffc00832f818 T ext4_destroy_inline_data
-ffffffc00832f8e8 t ext4_destroy_inline_data_nolock
-ffffffc00832fb7c T ext4_inline_data_iomap
-ffffffc00832fc8c T ext4_inline_data_truncate
-ffffffc0083300c4 T ext4_convert_inline_data
-ffffffc0083302d8 t ext4_update_inline_data
-ffffffc008330518 t ext4_create_inline_data
-ffffffc0083307a4 t ext4_finish_convert_inline_dir
-ffffffc0083309b8 T ext4_inode_csum_set
-ffffffc008330a78 t ext4_inode_csum
-ffffffc008330c94 T ext4_inode_is_fast_symlink
-ffffffc008330d30 T ext4_evict_inode
-ffffffc0083313a4 t ext4_begin_ordered_truncate
-ffffffc008331494 T __ext4_mark_inode_dirty
-ffffffc0083317b0 T ext4_truncate
-ffffffc008331c6c T ext4_da_update_reserve_space
-ffffffc008331e20 T ext4_issue_zeroout
-ffffffc008331e98 T ext4_map_blocks
-ffffffc0083324c0 T ext4_get_block
-ffffffc0083324f0 t _ext4_get_block.llvm.18199545266026345446
-ffffffc008332690 T ext4_get_block_unwritten
-ffffffc0083326c0 T ext4_getblk
-ffffffc0083329a4 T ext4_bread
-ffffffc008332a84 t ext4_buffer_uptodate
-ffffffc008332ad8 T ext4_bread_batch
-ffffffc008332c94 T ext4_walk_page_buffers
-ffffffc008332d88 T do_journal_get_write_access
-ffffffc008332e58 T ext4_da_release_space
-ffffffc008332fa8 T ext4_da_get_block_prep
-ffffffc008333574 T ext4_alloc_da_blocks
-ffffffc008333658 t ext4_iomap_begin.llvm.18199545266026345446
-ffffffc008333910 t ext4_iomap_end.llvm.18199545266026345446
-ffffffc008333934 t ext4_iomap_overwrite_begin.llvm.18199545266026345446
-ffffffc008333984 t ext4_iomap_begin_report.llvm.18199545266026345446
-ffffffc008333b70 T ext4_set_aops
-ffffffc008333bfc T ext4_zero_partial_blocks
-ffffffc008333cc8 t ext4_block_zero_page_range
-ffffffc008334050 T ext4_can_truncate
-ffffffc0083340fc T ext4_update_disksize_before_punch
-ffffffc008334238 T ext4_break_layouts
-ffffffc008334270 T ext4_punch_hole
-ffffffc0083346d0 T ext4_inode_attach_jinode
-ffffffc00833479c T ext4_writepage_trans_blocks
-ffffffc008334870 T ext4_get_inode_loc
-ffffffc00833491c t __ext4_get_inode_loc.llvm.18199545266026345446
-ffffffc008334d4c T ext4_get_fc_inode_loc
-ffffffc008334d84 T ext4_set_inode_flags
-ffffffc008334e7c T ext4_get_projid
-ffffffc008334eb8 T __ext4_iget
-ffffffc0083358b0 t ext4_inode_csum_verify
-ffffffc008335988 t ext4_inode_blocks
-ffffffc0083359d8 t ext4_iget_extra_inode
-ffffffc008335ad4 T ext4_write_inode
-ffffffc008335ca0 T ext4_setattr
-ffffffc0083361ac t ext4_wait_for_tail_page_commit
-ffffffc008336338 T ext4_dio_alignment
-ffffffc0083363a0 T ext4_getattr
-ffffffc008336578 T ext4_file_getattr
-ffffffc008336610 T ext4_chunk_trans_blocks
-ffffffc0083366a0 T ext4_mark_iloc_dirty
-ffffffc008336d10 T ext4_reserve_inode_write
-ffffffc008336e40 T ext4_expand_extra_isize
-ffffffc0083370e4 T ext4_dirty_inode
-ffffffc008337178 T ext4_change_inode_journal_flag
-ffffffc0083373f4 T ext4_page_mkwrite
-ffffffc008337ba4 t write_end_fn
-ffffffc008337c94 t ext4_da_reserve_space
-ffffffc008337da0 t ext4_es_is_delonly
-ffffffc008337dc4 t ext4_es_is_mapped
-ffffffc008337de0 t ext4_set_iomap
-ffffffc008337f54 t ext4_writepage
-ffffffc00833877c t ext4_read_folio
-ffffffc008338878 t ext4_writepages
-ffffffc008339724 t ext4_journalled_dirty_folio
-ffffffc00833978c t ext4_readahead
-ffffffc0083397d8 t ext4_write_begin
-ffffffc008339ebc t ext4_journalled_write_end
-ffffffc00833a3c4 t ext4_bmap
-ffffffc00833a4fc t ext4_journalled_invalidate_folio
-ffffffc00833a534 t ext4_release_folio
-ffffffc00833a638 t ext4_iomap_swap_activate
-ffffffc00833a668 t mpage_prepare_extent_to_map
-ffffffc00833aa20 t mpage_release_unused_pages
-ffffffc00833ac5c t mpage_process_page_bufs
-ffffffc00833ae3c t ext4_print_free_blocks
-ffffffc00833af40 t ext4_journalled_zero_new_buffers
-ffffffc00833b118 t __ext4_journalled_invalidate_folio
-ffffffc00833b26c t ext4_dirty_folio
-ffffffc00833b2c8 t ext4_da_write_begin
-ffffffc00833b600 t ext4_da_write_end
-ffffffc00833b840 t ext4_invalidate_folio
-ffffffc00833b950 t ext4_write_end
-ffffffc00833bce8 t ext4_fill_raw_inode
-ffffffc00833c204 t trace_ext4_load_inode
-ffffffc00833c2bc T ext4_reset_inode_seed
-ffffffc00833c3e4 T ext4_fileattr_get
-ffffffc00833c46c T ext4_fileattr_set
-ffffffc00833c85c T ext4_ioctl
-ffffffc00833c884 t __ext4_ioctl
-ffffffc00833f678 T ext4_update_overhead
-ffffffc00833f6dc t ext4_update_superblocks_fn
-ffffffc00833fe7c t set_overhead
-ffffffc00833fe90 t ext4_dax_dontcache
-ffffffc00833fee4 t swap_inode_boot_loader
-ffffffc008340374 t trace_ext4_getfsmap_low_key
-ffffffc008340428 t trace_ext4_getfsmap_high_key
-ffffffc0083404e0 t ext4_getfsmap_format
-ffffffc008340760 t swap_inode_data
-ffffffc008340878 t ext4_sb_setlabel
-ffffffc008340890 t ext4_sb_setuuid
-ffffffc0083408a8 T mb_set_bits
-ffffffc008340928 T ext4_mb_prefetch
-ffffffc008340b2c T ext4_mb_prefetch_fini
-ffffffc008340cb0 t ext4_mb_init_group
-ffffffc008340fb0 t ext4_mb_seq_groups_start.llvm.9041829372153253998
-ffffffc008340ffc t ext4_mb_seq_groups_stop.llvm.9041829372153253998
-ffffffc00834100c t ext4_mb_seq_groups_next.llvm.9041829372153253998
-ffffffc008341060 t ext4_mb_seq_groups_show.llvm.9041829372153253998
-ffffffc0083414dc T ext4_seq_mb_stats_show
-ffffffc008341878 t ext4_mb_seq_structs_summary_start.llvm.9041829372153253998
-ffffffc0083418c0 t ext4_mb_seq_structs_summary_stop.llvm.9041829372153253998
-ffffffc0083418d0 t ext4_mb_seq_structs_summary_next.llvm.9041829372153253998
-ffffffc008341920 t ext4_mb_seq_structs_summary_show.llvm.9041829372153253998
-ffffffc008341a58 T ext4_mb_alloc_groupinfo
-ffffffc008341b70 T ext4_mb_add_groupinfo
-ffffffc008341e14 T ext4_mb_init
-ffffffc00834257c t ext4_discard_work
-ffffffc008342828 T ext4_mb_release
-ffffffc008342c7c T ext4_process_freed_data
-ffffffc00834311c T ext4_exit_mballoc
-ffffffc0083431dc T ext4_mb_mark_bb
-ffffffc008343748 t mb_clear_bits
-ffffffc0083437c4 T ext4_discard_preallocations
-ffffffc008343d3c t ext4_mb_load_buddy_gfp
-ffffffc0083442d4 t ext4_mb_unload_buddy
-ffffffc0083443d4 t ext4_mb_release_inode_pa
-ffffffc008344740 t ext4_mb_pa_callback
-ffffffc008344798 T ext4_mb_new_blocks
-ffffffc0083457b8 t ext4_mb_initialize_context
-ffffffc0083459b4 t ext4_mb_use_preallocated
-ffffffc008345cd0 t ext4_mb_normalize_request
-ffffffc008346134 t ext4_mb_regular_allocator
-ffffffc008346eb8 t ext4_mb_pa_free
-ffffffc008346f40 t ext4_discard_allocated_blocks
-ffffffc008347134 t ext4_mb_mark_diskspace_used
-ffffffc008347658 t ext4_mb_discard_preallocations_should_retry
-ffffffc0083478e8 T ext4_free_blocks
-ffffffc0083485e8 T ext4_group_add_blocks
-ffffffc0083489e4 t mb_free_blocks
-ffffffc00834900c T ext4_trim_fs
-ffffffc008349540 T ext4_mballoc_query_range
-ffffffc0083498cc t ext4_mb_init_cache
-ffffffc00834a194 t ext4_mb_generate_buddy
-ffffffc00834a534 t ext4_mb_generate_from_pa
-ffffffc00834a6e4 t mb_set_largest_free_order
-ffffffc00834a81c t mb_update_avg_fragment_size
-ffffffc00834a964 t ext4_try_to_trim_range
-ffffffc00834ae18 t mb_mark_used
-ffffffc00834b3cc t ext4_issue_discard
-ffffffc00834b4f8 t ext4_mb_use_inode_pa
-ffffffc00834b5e8 t ext4_mb_find_by_goal
-ffffffc00834b900 t ext4_mb_good_group
-ffffffc00834ba88 t ext4_mb_simple_scan_group
-ffffffc00834bc54 t ext4_mb_scan_aligned
-ffffffc00834bdac t ext4_mb_complex_scan_group
-ffffffc00834c0fc t ext4_mb_try_best_found
-ffffffc00834c2e0 t mb_find_extent
-ffffffc00834c5e0 t ext4_mb_use_best_found
-ffffffc00834c790 t ext4_mb_new_group_pa
-ffffffc00834ca04 t ext4_mb_new_inode_pa
-ffffffc00834cd28 t ext4_mb_discard_group_preallocations
-ffffffc00834d298 t ext4_mb_release_group_pa
-ffffffc00834d4a8 t ext4_mb_discard_lg_preallocations
-ffffffc00834d814 t ext4_mb_free_metadata
-ffffffc00834da70 t ext4_try_merge_freed_extent
-ffffffc00834db6c T ext4_ext_migrate
-ffffffc00834df68 t update_ind_extent_range
-ffffffc00834e0c0 t update_dind_extent_range
-ffffffc00834e1cc t update_tind_extent_range
-ffffffc00834e3c0 t finish_range
-ffffffc00834e504 t free_ext_block
-ffffffc00834e590 t ext4_ext_swap_inode_data
-ffffffc00834e948 t ext4_journal_ensure_credits
-ffffffc00834e9b8 T ext4_ind_migrate
-ffffffc00834ec1c t free_ext_idx
-ffffffc00834edc0 t free_dind_blocks
-ffffffc00834efc0 T __dump_mmp_msg
-ffffffc00834f054 T ext4_stop_mmpd
-ffffffc00834f0a4 T ext4_multi_mount_protect
-ffffffc00834f444 t read_mmp_block
-ffffffc00834f658 t write_mmp_block
-ffffffc00834f9f4 t kmmpd
-ffffffc00834fe48 T ext4_double_down_write_data_sem
-ffffffc00834fe94 T ext4_double_up_write_data_sem
-ffffffc00834fed8 T ext4_move_extents
-ffffffc008350284 t mext_check_arguments
-ffffffc0083503f8 t move_extent_per_page
-ffffffc008351238 T ext4_initialize_dirent_tail
-ffffffc008351284 T ext4_dirblock_csum_verify
-ffffffc0083513cc T ext4_handle_dirty_dirblock
-ffffffc008351534 T ext4_htree_fill_tree
-ffffffc00835196c t htree_dirblock_to_tree
-ffffffc008351c38 t dx_probe
-ffffffc0083521bc T ext4_fname_setup_ci_filename
-ffffffc0083522c4 T ext4_search_dir
-ffffffc0083523d0 t ext4_match
-ffffffc0083524c4 T ext4_get_parent
-ffffffc00835264c T ext4_find_dest_de
-ffffffc0083527b4 T ext4_insert_dentry
-ffffffc0083528f0 T ext4_generic_delete_entry
-ffffffc008352a50 T ext4_init_dot_dotdot
-ffffffc008352b24 T ext4_init_new_dir
-ffffffc008352d9c t ext4_append
-ffffffc008352f48 T ext4_empty_dir
-ffffffc008353238 t __ext4_read_dirblock
-ffffffc008353510 T __ext4_unlink
-ffffffc008353820 t ext4_delete_entry
-ffffffc008353a88 t ext4_update_dx_flag
-ffffffc008353b04 T __ext4_link
-ffffffc008353d18 t ext4_inc_count
-ffffffc008353d8c t ext4_add_entry
-ffffffc008354824 t ext4_lookup.llvm.18409672776145411387
-ffffffc008354a90 t ext4_create.llvm.18409672776145411387
-ffffffc008354c2c t ext4_link.llvm.18409672776145411387
-ffffffc008354cac t ext4_unlink.llvm.18409672776145411387
-ffffffc008354e40 t ext4_symlink.llvm.18409672776145411387
-ffffffc008355180 t ext4_mkdir.llvm.18409672776145411387
-ffffffc0083554f8 t ext4_rmdir.llvm.18409672776145411387
-ffffffc0083557f4 t ext4_mknod.llvm.18409672776145411387
-ffffffc008355990 t ext4_rename2.llvm.18409672776145411387
-ffffffc0083566e8 t ext4_tmpfile.llvm.18409672776145411387
-ffffffc008356898 t dx_node_limit
-ffffffc008356910 t ext4_ci_compare
-ffffffc008356a28 t __ext4_find_entry
-ffffffc008357190 t ext4_dx_csum_verify
-ffffffc0083572c8 t ext4_dx_csum
-ffffffc0083573e4 t add_dirent_to_buf
-ffffffc008357614 t make_indexed_dir
-ffffffc008357af8 t dx_insert_block
-ffffffc008357bd4 t ext4_handle_dirty_dx_node
-ffffffc008357d3c t do_split
-ffffffc008358504 t ext4_add_nondir
-ffffffc0083585fc t ext4_rename_dir_prepare
-ffffffc008358834 t ext4_setent
-ffffffc008358958 t ext4_rename_dir_finish
-ffffffc008358a18 t ext4_update_dir_count
-ffffffc008358af0 t ext4_rename_delete
-ffffffc008358cac t ext4_resetent
-ffffffc008358e14 T ext4_exit_pageio
-ffffffc008358e54 T ext4_alloc_io_end_vec
-ffffffc008358ee0 T ext4_last_io_end_vec
-ffffffc008358f0c T ext4_end_io_rsv_work
-ffffffc008359114 T ext4_init_io_end
-ffffffc00835917c T ext4_put_io_end_defer
-ffffffc0083592dc t ext4_release_io_end
-ffffffc0083593fc T ext4_put_io_end
-ffffffc008359554 T ext4_get_io_end
-ffffffc0083595dc T ext4_io_submit
-ffffffc008359640 T ext4_io_submit_init
-ffffffc008359658 T ext4_bio_write_page
-ffffffc008359b54 t ext4_finish_bio
-ffffffc008359e0c t ext4_end_bio
-ffffffc008359fd0 T ext4_mpage_readpages
-ffffffc00835a990 T ext4_exit_post_read_processing
-ffffffc00835a9cc t __read_end_io
-ffffffc00835ab30 t decrypt_work
-ffffffc00835abe8 t verity_work
-ffffffc00835ac38 t verity_work
-ffffffc00835acdc T ext4_kvfree_array_rcu
-ffffffc00835ad48 t ext4_rcu_ptr_callback
-ffffffc00835ad8c T ext4_resize_begin
-ffffffc00835af0c T ext4_resize_end
-ffffffc00835af88 T ext4_list_backups
-ffffffc00835b0a4 T ext4_group_add
-ffffffc00835b71c t ext4_flex_group_add
-ffffffc00835d278 T ext4_group_extend
-ffffffc00835d4b4 t ext4_group_extend_no_check
-ffffffc00835d708 T ext4_resize_fs
-ffffffc00835e80c t update_backups
-ffffffc00835ed94 t bclean
-ffffffc00835ee78 t set_flexbg_block_bitmap
-ffffffc00835f06c t verify_reserved_gdb
-ffffffc00835f214 T __traceiter_ext4_other_inode_update_time
-ffffffc00835f2a4 T __traceiter_ext4_free_inode
-ffffffc00835f324 T __traceiter_ext4_request_inode
-ffffffc00835f3b4 T __traceiter_ext4_allocate_inode
-ffffffc00835f44c T __traceiter_ext4_evict_inode
-ffffffc00835f4cc T __traceiter_ext4_drop_inode
-ffffffc00835f55c T __traceiter_ext4_nfs_commit_metadata
-ffffffc00835f5dc T __traceiter_ext4_mark_inode_dirty
-ffffffc00835f66c T __traceiter_ext4_begin_ordered_truncate
-ffffffc00835f6fc T __traceiter_ext4_write_begin
-ffffffc00835f794 T __traceiter_ext4_da_write_begin
-ffffffc00835f82c T __traceiter_ext4_write_end
-ffffffc00835f8d4 T __traceiter_ext4_journalled_write_end
-ffffffc00835f97c T __traceiter_ext4_da_write_end
-ffffffc00835fa24 T __traceiter_ext4_writepages
-ffffffc00835fab4 T __traceiter_ext4_da_write_pages
-ffffffc00835fb4c T __traceiter_ext4_da_write_pages_extent
-ffffffc00835fbdc T __traceiter_ext4_writepages_result
-ffffffc00835fc84 T __traceiter_ext4_writepage
-ffffffc00835fd04 T __traceiter_ext4_readpage
-ffffffc00835fd84 T __traceiter_ext4_releasepage
-ffffffc00835fe04 T __traceiter_ext4_invalidate_folio
-ffffffc00835fe9c T __traceiter_ext4_journalled_invalidate_folio
-ffffffc00835ff34 T __traceiter_ext4_discard_blocks
-ffffffc00835ffcc T __traceiter_ext4_mb_new_inode_pa
-ffffffc00836005c T __traceiter_ext4_mb_new_group_pa
-ffffffc0083600ec T __traceiter_ext4_mb_release_inode_pa
-ffffffc008360184 T __traceiter_ext4_mb_release_group_pa
-ffffffc008360214 T __traceiter_ext4_discard_preallocations
-ffffffc0083602ac T __traceiter_ext4_mb_discard_preallocations
-ffffffc00836033c T __traceiter_ext4_request_blocks
-ffffffc0083603bc T __traceiter_ext4_allocate_blocks
-ffffffc00836044c T __traceiter_ext4_free_blocks
-ffffffc0083604f4 T __traceiter_ext4_sync_file_enter
-ffffffc008360584 T __traceiter_ext4_sync_file_exit
-ffffffc008360614 T __traceiter_ext4_sync_fs
-ffffffc0083606a4 T __traceiter_ext4_alloc_da_blocks
-ffffffc008360724 T __traceiter_ext4_mballoc_alloc
-ffffffc0083607a4 T __traceiter_ext4_mballoc_prealloc
-ffffffc008360824 T __traceiter_ext4_mballoc_discard
-ffffffc0083608d4 T __traceiter_ext4_mballoc_free
-ffffffc008360984 T __traceiter_ext4_forget
-ffffffc008360a1c T __traceiter_ext4_da_update_reserve_space
-ffffffc008360ab4 T __traceiter_ext4_da_reserve_space
-ffffffc008360b34 T __traceiter_ext4_da_release_space
-ffffffc008360bc4 T __traceiter_ext4_mb_bitmap_load
-ffffffc008360c54 T __traceiter_ext4_mb_buddy_bitmap_load
-ffffffc008360ce4 T __traceiter_ext4_load_inode_bitmap
-ffffffc008360d74 T __traceiter_ext4_read_block_bitmap_load
-ffffffc008360e0c T __traceiter_ext4_fallocate_enter
-ffffffc008360eb4 T __traceiter_ext4_punch_hole
-ffffffc008360f5c T __traceiter_ext4_zero_range
-ffffffc008361004 T __traceiter_ext4_fallocate_exit
-ffffffc0083610ac T __traceiter_ext4_unlink_enter
-ffffffc00836113c T __traceiter_ext4_unlink_exit
-ffffffc0083611cc T __traceiter_ext4_truncate_enter
-ffffffc00836124c T __traceiter_ext4_truncate_exit
-ffffffc0083612cc T __traceiter_ext4_ext_convert_to_initialized_enter
-ffffffc008361364 T __traceiter_ext4_ext_convert_to_initialized_fastpath
-ffffffc00836140c T __traceiter_ext4_ext_map_blocks_enter
-ffffffc0083614b4 T __traceiter_ext4_ind_map_blocks_enter
-ffffffc00836155c T __traceiter_ext4_ext_map_blocks_exit
-ffffffc008361604 T __traceiter_ext4_ind_map_blocks_exit
-ffffffc0083616ac T __traceiter_ext4_ext_load_extent
-ffffffc008361744 T __traceiter_ext4_load_inode
-ffffffc0083617d4 T __traceiter_ext4_journal_start
-ffffffc008361884 T __traceiter_ext4_journal_start_reserved
-ffffffc00836191c T __traceiter_ext4_trim_extent
-ffffffc0083619c4 T __traceiter_ext4_trim_all_free
-ffffffc008361a6c T __traceiter_ext4_ext_handle_unwritten_extents
-ffffffc008361b1c T __traceiter_ext4_get_implied_cluster_alloc_exit
-ffffffc008361bb4 T __traceiter_ext4_ext_show_extent
-ffffffc008361c5c T __traceiter_ext4_remove_blocks
-ffffffc008361d0c T __traceiter_ext4_ext_rm_leaf
-ffffffc008361db4 T __traceiter_ext4_ext_rm_idx
-ffffffc008361e44 T __traceiter_ext4_ext_remove_space
-ffffffc008361eec T __traceiter_ext4_ext_remove_space_done
-ffffffc008361fac T __traceiter_ext4_es_insert_extent
-ffffffc00836203c T __traceiter_ext4_es_cache_extent
-ffffffc0083620cc T __traceiter_ext4_es_remove_extent
-ffffffc008362164 T __traceiter_ext4_es_find_extent_range_enter
-ffffffc0083621f4 T __traceiter_ext4_es_find_extent_range_exit
-ffffffc008362284 T __traceiter_ext4_es_lookup_extent_enter
-ffffffc008362314 T __traceiter_ext4_es_lookup_extent_exit
-ffffffc0083623ac T __traceiter_ext4_es_shrink_count
-ffffffc008362444 T __traceiter_ext4_es_shrink_scan_enter
-ffffffc0083624dc T __traceiter_ext4_es_shrink_scan_exit
-ffffffc008362574 T __traceiter_ext4_collapse_range
-ffffffc00836260c T __traceiter_ext4_insert_range
-ffffffc0083626a4 T __traceiter_ext4_es_shrink
-ffffffc008362754 T __traceiter_ext4_es_insert_delayed_block
-ffffffc0083627ec T __traceiter_ext4_fsmap_low_key
-ffffffc0083628ac T __traceiter_ext4_fsmap_high_key
-ffffffc00836296c T __traceiter_ext4_fsmap_mapping
-ffffffc008362a2c T __traceiter_ext4_getfsmap_low_key
-ffffffc008362abc T __traceiter_ext4_getfsmap_high_key
-ffffffc008362b4c T __traceiter_ext4_getfsmap_mapping
-ffffffc008362bdc T __traceiter_ext4_shutdown
-ffffffc008362c6c T __traceiter_ext4_error
-ffffffc008362d04 T __traceiter_ext4_prefetch_bitmaps
-ffffffc008362dac T __traceiter_ext4_lazy_itable_init
-ffffffc008362e3c T __traceiter_ext4_fc_replay_scan
-ffffffc008362ed4 T __traceiter_ext4_fc_replay
-ffffffc008362f84 T __traceiter_ext4_fc_commit_start
-ffffffc008363014 T __traceiter_ext4_fc_commit_stop
-ffffffc0083630bc T __traceiter_ext4_fc_stats
-ffffffc00836313c T __traceiter_ext4_fc_track_create
-ffffffc0083631e4 T __traceiter_ext4_fc_track_link
-ffffffc00836328c T __traceiter_ext4_fc_track_unlink
-ffffffc008363334 T __traceiter_ext4_fc_track_inode
-ffffffc0083633cc T __traceiter_ext4_fc_track_range
-ffffffc00836347c T __traceiter_ext4_fc_cleanup
-ffffffc008363514 T __traceiter_ext4_update_sb
-ffffffc0083635ac t trace_event_raw_event_ext4_other_inode_update_time
-ffffffc008363694 t perf_trace_ext4_other_inode_update_time
-ffffffc0083637d8 t trace_event_raw_event_ext4_free_inode
-ffffffc0083638c0 t perf_trace_ext4_free_inode
-ffffffc0083639fc t trace_event_raw_event_ext4_request_inode
-ffffffc008363acc t perf_trace_ext4_request_inode
-ffffffc008363bf8 t trace_event_raw_event_ext4_allocate_inode
-ffffffc008363ce0 t perf_trace_ext4_allocate_inode
-ffffffc008363e18 t trace_event_raw_event_ext4_evict_inode
-ffffffc008363ee8 t perf_trace_ext4_evict_inode
-ffffffc00836400c t trace_event_raw_event_ext4_drop_inode
-ffffffc0083640dc t perf_trace_ext4_drop_inode
-ffffffc008364208 t trace_event_raw_event_ext4_nfs_commit_metadata
-ffffffc0083642d0 t perf_trace_ext4_nfs_commit_metadata
-ffffffc0083643ec t trace_event_raw_event_ext4_mark_inode_dirty
-ffffffc0083644b8 t perf_trace_ext4_mark_inode_dirty
-ffffffc0083645e0 t trace_event_raw_event_ext4_begin_ordered_truncate
-ffffffc0083646ac t perf_trace_ext4_begin_ordered_truncate
-ffffffc0083647d4 t trace_event_raw_event_ext4__write_begin
-ffffffc0083648b4 t perf_trace_ext4__write_begin
-ffffffc0083649e4 t trace_event_raw_event_ext4__write_end
-ffffffc008364ac8 t perf_trace_ext4__write_end
-ffffffc008364c04 t trace_event_raw_event_ext4_writepages
-ffffffc008364d1c t perf_trace_ext4_writepages
-ffffffc008364e90 t trace_event_raw_event_ext4_da_write_pages
-ffffffc008364f7c t perf_trace_ext4_da_write_pages
-ffffffc0083650b8 t trace_event_raw_event_ext4_da_write_pages_extent
-ffffffc00836519c t perf_trace_ext4_da_write_pages_extent
-ffffffc0083652dc t trace_event_raw_event_ext4_writepages_result
-ffffffc0083653dc t perf_trace_ext4_writepages_result
-ffffffc008365534 t trace_event_raw_event_ext4__page_op
-ffffffc008365614 t perf_trace_ext4__page_op
-ffffffc008365748 t trace_event_raw_event_ext4_invalidate_folio_op
-ffffffc008365840 t perf_trace_ext4_invalidate_folio_op
-ffffffc008365988 t trace_event_raw_event_ext4_discard_blocks
-ffffffc008365a5c t perf_trace_ext4_discard_blocks
-ffffffc008365b80 t trace_event_raw_event_ext4__mb_new_pa
-ffffffc008365c68 t perf_trace_ext4__mb_new_pa
-ffffffc008365dac t trace_event_raw_event_ext4_mb_release_inode_pa
-ffffffc008365e94 t perf_trace_ext4_mb_release_inode_pa
-ffffffc008365fcc t trace_event_raw_event_ext4_mb_release_group_pa
-ffffffc00836609c t perf_trace_ext4_mb_release_group_pa
-ffffffc0083661c8 t trace_event_raw_event_ext4_discard_preallocations
-ffffffc0083662a8 t perf_trace_ext4_discard_preallocations
-ffffffc0083663d8 t trace_event_raw_event_ext4_mb_discard_preallocations
-ffffffc008366498 t perf_trace_ext4_mb_discard_preallocations
-ffffffc0083665b4 t trace_event_raw_event_ext4_request_blocks
-ffffffc0083666c4 t perf_trace_ext4_request_blocks
-ffffffc008366828 t trace_event_raw_event_ext4_allocate_blocks
-ffffffc00836693c t perf_trace_ext4_allocate_blocks
-ffffffc008366aac t trace_event_raw_event_ext4_free_blocks
-ffffffc008366b9c t perf_trace_ext4_free_blocks
-ffffffc008366ce4 t trace_event_raw_event_ext4_sync_file_enter
-ffffffc008366dcc t perf_trace_ext4_sync_file_enter
-ffffffc008366f10 t trace_event_raw_event_ext4_sync_file_exit
-ffffffc008366fe0 t perf_trace_ext4_sync_file_exit
-ffffffc00836710c t trace_event_raw_event_ext4_sync_fs
-ffffffc0083671cc t perf_trace_ext4_sync_fs
-ffffffc0083672e8 t trace_event_raw_event_ext4_alloc_da_blocks
-ffffffc0083673b8 t perf_trace_ext4_alloc_da_blocks
-ffffffc0083674dc t trace_event_raw_event_ext4_mballoc_alloc
-ffffffc00836763c t perf_trace_ext4_mballoc_alloc
-ffffffc0083677f0 t trace_event_raw_event_ext4_mballoc_prealloc
-ffffffc008367900 t perf_trace_ext4_mballoc_prealloc
-ffffffc008367a64 t trace_event_raw_event_ext4__mballoc
-ffffffc008367b60 t perf_trace_ext4__mballoc
-ffffffc008367cac t trace_event_raw_event_ext4_forget
-ffffffc008367d94 t perf_trace_ext4_forget
-ffffffc008367ecc t trace_event_raw_event_ext4_da_update_reserve_space
-ffffffc008367fc4 t perf_trace_ext4_da_update_reserve_space
-ffffffc00836810c t trace_event_raw_event_ext4_da_reserve_space
-ffffffc0083681ec t perf_trace_ext4_da_reserve_space
-ffffffc008368320 t trace_event_raw_event_ext4_da_release_space
-ffffffc008368408 t perf_trace_ext4_da_release_space
-ffffffc00836854c t trace_event_raw_event_ext4__bitmap_load
-ffffffc00836860c t perf_trace_ext4__bitmap_load
-ffffffc008368728 t trace_event_raw_event_ext4_read_block_bitmap_load
-ffffffc008368800 t perf_trace_ext4_read_block_bitmap_load
-ffffffc008368928 t trace_event_raw_event_ext4__fallocate_mode
-ffffffc008368a10 t perf_trace_ext4__fallocate_mode
-ffffffc008368b50 t trace_event_raw_event_ext4_fallocate_exit
-ffffffc008368c34 t perf_trace_ext4_fallocate_exit
-ffffffc008368d70 t trace_event_raw_event_ext4_unlink_enter
-ffffffc008368e54 t perf_trace_ext4_unlink_enter
-ffffffc008368f94 t trace_event_raw_event_ext4_unlink_exit
-ffffffc008369068 t perf_trace_ext4_unlink_exit
-ffffffc008369198 t trace_event_raw_event_ext4__truncate
-ffffffc008369268 t perf_trace_ext4__truncate
-ffffffc00836938c t trace_event_raw_event_ext4_ext_convert_to_initialized_enter
-ffffffc0083694a0 t perf_trace_ext4_ext_convert_to_initialized_enter
-ffffffc008369604 t trace_event_raw_event_ext4_ext_convert_to_initialized_fastpath
-ffffffc008369744 t perf_trace_ext4_ext_convert_to_initialized_fastpath
-ffffffc0083698dc t trace_event_raw_event_ext4__map_blocks_enter
-ffffffc0083699c4 t perf_trace_ext4__map_blocks_enter
-ffffffc008369b04 t trace_event_raw_event_ext4__map_blocks_exit
-ffffffc008369c08 t perf_trace_ext4__map_blocks_exit
-ffffffc008369d64 t trace_event_raw_event_ext4_ext_load_extent
-ffffffc008369e44 t perf_trace_ext4_ext_load_extent
-ffffffc008369f74 t trace_event_raw_event_ext4_load_inode
-ffffffc00836a038 t perf_trace_ext4_load_inode
-ffffffc00836a158 t trace_event_raw_event_ext4_journal_start
-ffffffc00836a244 t perf_trace_ext4_journal_start
-ffffffc00836a380 t trace_event_raw_event_ext4_journal_start_reserved
-ffffffc00836a458 t perf_trace_ext4_journal_start_reserved
-ffffffc00836a580 t trace_event_raw_event_ext4__trim
-ffffffc00836a668 t perf_trace_ext4__trim
-ffffffc00836a7a8 t trace_event_raw_event_ext4_ext_handle_unwritten_extents
-ffffffc00836a8b4 t perf_trace_ext4_ext_handle_unwritten_extents
-ffffffc00836aa10 t trace_event_raw_event_ext4_get_implied_cluster_alloc_exit
-ffffffc00836ab00 t perf_trace_ext4_get_implied_cluster_alloc_exit
-ffffffc00836ac40 t trace_event_raw_event_ext4_ext_show_extent
-ffffffc00836ad28 t perf_trace_ext4_ext_show_extent
-ffffffc00836ae68 t trace_event_raw_event_ext4_remove_blocks
-ffffffc00836af9c t perf_trace_ext4_remove_blocks
-ffffffc00836b120 t trace_event_raw_event_ext4_ext_rm_leaf
-ffffffc00836b248 t perf_trace_ext4_ext_rm_leaf
-ffffffc00836b3c8 t trace_event_raw_event_ext4_ext_rm_idx
-ffffffc00836b494 t perf_trace_ext4_ext_rm_idx
-ffffffc00836b5bc t trace_event_raw_event_ext4_ext_remove_space
-ffffffc00836b6a4 t perf_trace_ext4_ext_remove_space
-ffffffc00836b7e4 t trace_event_raw_event_ext4_ext_remove_space_done
-ffffffc00836b8f8 t perf_trace_ext4_ext_remove_space_done
-ffffffc00836ba64 t trace_event_raw_event_ext4__es_extent
-ffffffc00836bb64 t perf_trace_ext4__es_extent
-ffffffc00836bcc0 t trace_event_raw_event_ext4_es_remove_extent
-ffffffc00836bda8 t perf_trace_ext4_es_remove_extent
-ffffffc00836bee0 t trace_event_raw_event_ext4_es_find_extent_range_enter
-ffffffc00836bfb0 t perf_trace_ext4_es_find_extent_range_enter
-ffffffc00836c0dc t trace_event_raw_event_ext4_es_find_extent_range_exit
-ffffffc00836c1dc t perf_trace_ext4_es_find_extent_range_exit
-ffffffc00836c338 t trace_event_raw_event_ext4_es_lookup_extent_enter
-ffffffc00836c408 t perf_trace_ext4_es_lookup_extent_enter
-ffffffc00836c534 t trace_event_raw_event_ext4_es_lookup_extent_exit
-ffffffc00836c648 t perf_trace_ext4_es_lookup_extent_exit
-ffffffc00836c7ac t trace_event_raw_event_ext4__es_shrink_enter
-ffffffc00836c880 t perf_trace_ext4__es_shrink_enter
-ffffffc00836c9a4 t trace_event_raw_event_ext4_es_shrink_scan_exit
-ffffffc00836ca78 t perf_trace_ext4_es_shrink_scan_exit
-ffffffc00836cb9c t trace_event_raw_event_ext4_collapse_range
-ffffffc00836cc7c t perf_trace_ext4_collapse_range
-ffffffc00836cdac t trace_event_raw_event_ext4_insert_range
-ffffffc00836ce8c t perf_trace_ext4_insert_range
-ffffffc00836cfbc t trace_event_raw_event_ext4_es_shrink
-ffffffc00836d0c0 t perf_trace_ext4_es_shrink
-ffffffc00836d214 t trace_event_raw_event_ext4_es_insert_delayed_block
-ffffffc00836d32c t perf_trace_ext4_es_insert_delayed_block
-ffffffc00836d494 t trace_event_raw_event_ext4_fsmap_class
-ffffffc00836d598 t perf_trace_ext4_fsmap_class
-ffffffc00836d6f4 t trace_event_raw_event_ext4_getfsmap_class
-ffffffc00836d7f0 t perf_trace_ext4_getfsmap_class
-ffffffc00836d948 t trace_event_raw_event_ext4_shutdown
-ffffffc00836da08 t perf_trace_ext4_shutdown
-ffffffc00836db24 t trace_event_raw_event_ext4_error
-ffffffc00836dbfc t perf_trace_ext4_error
-ffffffc00836dd24 t trace_event_raw_event_ext4_prefetch_bitmaps
-ffffffc00836ddfc t perf_trace_ext4_prefetch_bitmaps
-ffffffc00836df2c t trace_event_raw_event_ext4_lazy_itable_init
-ffffffc00836dfec t perf_trace_ext4_lazy_itable_init
-ffffffc00836e108 t trace_event_raw_event_ext4_fc_replay_scan
-ffffffc00836e1dc t perf_trace_ext4_fc_replay_scan
-ffffffc00836e300 t trace_event_raw_event_ext4_fc_replay
-ffffffc00836e3e8 t perf_trace_ext4_fc_replay
-ffffffc00836e520 t trace_event_raw_event_ext4_fc_commit_start
-ffffffc00836e5e0 t perf_trace_ext4_fc_commit_start
-ffffffc00836e6fc t trace_event_raw_event_ext4_fc_commit_stop
-ffffffc00836e7f8 t perf_trace_ext4_fc_commit_stop
-ffffffc00836e94c t trace_event_raw_event_ext4_fc_stats
-ffffffc00836eaa4 t perf_trace_ext4_fc_stats
-ffffffc00836ec50 t trace_event_raw_event_ext4_fc_track_dentry
-ffffffc00836ed40 t perf_trace_ext4_fc_track_dentry
-ffffffc00836ee80 t trace_event_raw_event_ext4_fc_track_inode
-ffffffc00836ef70 t perf_trace_ext4_fc_track_inode
-ffffffc00836f0b0 t trace_event_raw_event_ext4_fc_track_range
-ffffffc00836f1b8 t perf_trace_ext4_fc_track_range
-ffffffc00836f310 t trace_event_raw_event_ext4_fc_cleanup
-ffffffc00836f3f0 t perf_trace_ext4_fc_cleanup
-ffffffc00836f520 t trace_event_raw_event_ext4_update_sb
-ffffffc00836f5f8 t perf_trace_ext4_update_sb
-ffffffc00836f720 T ext4_read_bh_nowait
-ffffffc00836f828 T ext4_read_bh
-ffffffc00836f95c T ext4_read_bh_lock
-ffffffc00836fa04 T ext4_sb_bread
-ffffffc00836fa30 t __ext4_sb_bread_gfp.llvm.17242664784795688045
-ffffffc00836fb6c T ext4_sb_bread_unmovable
-ffffffc00836fba0 T ext4_sb_breadahead_unmovable
-ffffffc00836fc40 T ext4_superblock_csum
-ffffffc00836fcd0 T ext4_superblock_csum_set
-ffffffc00836fda0 T ext4_block_bitmap
-ffffffc00836fdd8 T ext4_inode_bitmap
-ffffffc00836fe10 T ext4_inode_table
-ffffffc00836fe48 T ext4_free_group_clusters
-ffffffc00836fe80 T ext4_free_inodes_count
-ffffffc00836feb8 T ext4_used_dirs_count
-ffffffc00836fef0 T ext4_itable_unused_count
-ffffffc00836ff28 T ext4_block_bitmap_set
-ffffffc00836ff54 T ext4_inode_bitmap_set
-ffffffc00836ff80 T ext4_inode_table_set
-ffffffc00836ffac T ext4_free_group_clusters_set
-ffffffc00836ffd8 T ext4_free_inodes_set
-ffffffc008370004 T ext4_used_dirs_set
-ffffffc008370030 T ext4_itable_unused_set
-ffffffc00837005c T __ext4_error
-ffffffc008370290 t ext4_handle_error
-ffffffc0083704b0 T __ext4_error_inode
-ffffffc008370728 T __ext4_error_file
-ffffffc0083709d0 T ext4_decode_error
-ffffffc008370ac0 T __ext4_std_error
-ffffffc008370ca4 T __ext4_msg
-ffffffc008370dec T __ext4_warning
-ffffffc008370efc T __ext4_warning_inode
-ffffffc008371020 T __ext4_grp_locked_error
-ffffffc008371410 T ext4_mark_group_bitmap_corrupted
-ffffffc008371540 T ext4_update_dynamic_rev
-ffffffc0083715b4 T ext4_clear_inode
-ffffffc008371644 T ext4_seq_options_show
-ffffffc0083716bc t _ext4_show_options
-ffffffc008371c9c T ext4_alloc_flex_bg_array
-ffffffc008371e84 T ext4_group_desc_csum_verify
-ffffffc008371f08 t ext4_group_desc_csum
-ffffffc008372130 T ext4_group_desc_csum_set
-ffffffc0083721ac T ext4_feature_set_ok
-ffffffc0083722c0 T ext4_register_li_request
-ffffffc0083725ac T ext4_calculate_overhead
-ffffffc008372a48 t ext4_get_journal_inode
-ffffffc008372b28 T ext4_force_commit
-ffffffc008372b70 t trace_raw_output_ext4_other_inode_update_time
-ffffffc008372c04 t trace_raw_output_ext4_free_inode
-ffffffc008372c9c t trace_raw_output_ext4_request_inode
-ffffffc008372d20 t trace_raw_output_ext4_allocate_inode
-ffffffc008372da4 t trace_raw_output_ext4_evict_inode
-ffffffc008372e28 t trace_raw_output_ext4_drop_inode
-ffffffc008372eac t trace_raw_output_ext4_nfs_commit_metadata
-ffffffc008372f2c t trace_raw_output_ext4_mark_inode_dirty
-ffffffc008372fac t trace_raw_output_ext4_begin_ordered_truncate
-ffffffc00837302c t trace_raw_output_ext4__write_begin
-ffffffc0083730b0 t trace_raw_output_ext4__write_end
-ffffffc008373134 t trace_raw_output_ext4_writepages
-ffffffc0083731e4 t trace_raw_output_ext4_da_write_pages
-ffffffc00837326c t trace_raw_output_ext4_da_write_pages_extent
-ffffffc008373330 t trace_raw_output_ext4_writepages_result
-ffffffc0083733cc t trace_raw_output_ext4__page_op
-ffffffc00837344c t trace_raw_output_ext4_invalidate_folio_op
-ffffffc0083734d0 t trace_raw_output_ext4_discard_blocks
-ffffffc008373550 t trace_raw_output_ext4__mb_new_pa
-ffffffc0083735d8 t trace_raw_output_ext4_mb_release_inode_pa
-ffffffc00837365c t trace_raw_output_ext4_mb_release_group_pa
-ffffffc0083736e0 t trace_raw_output_ext4_discard_preallocations
-ffffffc008373764 t trace_raw_output_ext4_mb_discard_preallocations
-ffffffc0083737e0 t trace_raw_output_ext4_request_blocks
-ffffffc0083738bc t trace_raw_output_ext4_allocate_blocks
-ffffffc0083739a0 t trace_raw_output_ext4_free_blocks
-ffffffc008373a84 t trace_raw_output_ext4_sync_file_enter
-ffffffc008373b08 t trace_raw_output_ext4_sync_file_exit
-ffffffc008373b8c t trace_raw_output_ext4_sync_fs
-ffffffc008373c08 t trace_raw_output_ext4_alloc_da_blocks
-ffffffc008373c8c t trace_raw_output_ext4_mballoc_alloc
-ffffffc008373e14 t trace_raw_output_ext4_mballoc_prealloc
-ffffffc008373ec0 t trace_raw_output_ext4__mballoc
-ffffffc008373f48 t trace_raw_output_ext4_forget
-ffffffc008373fd0 t trace_raw_output_ext4_da_update_reserve_space
-ffffffc00837406c t trace_raw_output_ext4_da_reserve_space
-ffffffc0083740f4 t trace_raw_output_ext4_da_release_space
-ffffffc008374188 t trace_raw_output_ext4__bitmap_load
-ffffffc008374204 t trace_raw_output_ext4_read_block_bitmap_load
-ffffffc008374284 t trace_raw_output_ext4__fallocate_mode
-ffffffc00837434c t trace_raw_output_ext4_fallocate_exit
-ffffffc0083743d0 t trace_raw_output_ext4_unlink_enter
-ffffffc008374454 t trace_raw_output_ext4_unlink_exit
-ffffffc0083744d8 t trace_raw_output_ext4__truncate
-ffffffc008374558 t trace_raw_output_ext4_ext_convert_to_initialized_enter
-ffffffc0083745f4 t trace_raw_output_ext4_ext_convert_to_initialized_fastpath
-ffffffc0083746a4 t trace_raw_output_ext4__map_blocks_enter
-ffffffc00837476c t trace_raw_output_ext4__map_blocks_exit
-ffffffc008374884 t trace_raw_output_ext4_ext_load_extent
-ffffffc008374908 t trace_raw_output_ext4_load_inode
-ffffffc008374988 t trace_raw_output_ext4_journal_start
-ffffffc008374a10 t trace_raw_output_ext4_journal_start_reserved
-ffffffc008374a94 t trace_raw_output_ext4__trim
-ffffffc008374b10 t trace_raw_output_ext4_ext_handle_unwritten_extents
-ffffffc008374c08 t trace_raw_output_ext4_get_implied_cluster_alloc_exit
-ffffffc008374ce0 t trace_raw_output_ext4_ext_show_extent
-ffffffc008374d68 t trace_raw_output_ext4_remove_blocks
-ffffffc008374e1c t trace_raw_output_ext4_ext_rm_leaf
-ffffffc008374ec8 t trace_raw_output_ext4_ext_rm_idx
-ffffffc008374f48 t trace_raw_output_ext4_ext_remove_space
-ffffffc008374fd0 t trace_raw_output_ext4_ext_remove_space_done
-ffffffc00837507c t trace_raw_output_ext4__es_extent
-ffffffc008375160 t trace_raw_output_ext4_es_remove_extent
-ffffffc0083751e4 t trace_raw_output_ext4_es_find_extent_range_enter
-ffffffc008375268 t trace_raw_output_ext4_es_find_extent_range_exit
-ffffffc00837534c t trace_raw_output_ext4_es_lookup_extent_enter
-ffffffc0083753d0 t trace_raw_output_ext4_es_lookup_extent_exit
-ffffffc0083754c8 t trace_raw_output_ext4__es_shrink_enter
-ffffffc008375548 t trace_raw_output_ext4_es_shrink_scan_exit
-ffffffc0083755c8 t trace_raw_output_ext4_collapse_range
-ffffffc00837564c t trace_raw_output_ext4_insert_range
-ffffffc0083756d0 t trace_raw_output_ext4_es_shrink
-ffffffc008375754 t trace_raw_output_ext4_es_insert_delayed_block
-ffffffc008375840 t trace_raw_output_ext4_fsmap_class
-ffffffc0083758dc t trace_raw_output_ext4_getfsmap_class
-ffffffc008375974 t trace_raw_output_ext4_shutdown
-ffffffc0083759f0 t trace_raw_output_ext4_error
-ffffffc008375a74 t trace_raw_output_ext4_prefetch_bitmaps
-ffffffc008375af4 t trace_raw_output_ext4_lazy_itable_init
-ffffffc008375b70 t trace_raw_output_ext4_fc_replay_scan
-ffffffc008375bf0 t trace_raw_output_ext4_fc_replay
-ffffffc008375c74 t trace_raw_output_ext4_fc_commit_start
-ffffffc008375cf0 t trace_raw_output_ext4_fc_commit_stop
-ffffffc008375d88 t trace_raw_output_ext4_fc_stats
-ffffffc008375fd8 t trace_raw_output_ext4_fc_track_dentry
-ffffffc00837605c t trace_raw_output_ext4_fc_track_inode
-ffffffc0083760e0 t trace_raw_output_ext4_fc_track_range
-ffffffc008376178 t trace_raw_output_ext4_fc_cleanup
-ffffffc0083761f8 t trace_raw_output_ext4_update_sb
-ffffffc008376278 t ext4_commit_super
-ffffffc0083764f0 t ext4_update_super
-ffffffc008376850 t ext4_errno_to_code
-ffffffc00837695c t ext4_lazyinit_thread
-ffffffc0083771a8 t ext4_init_fs_context
-ffffffc008377214 t ext4_fc_free
-ffffffc00837726c t ext4_parse_param
-ffffffc0083779c0 t ext4_get_tree
-ffffffc0083779f4 t ext4_reconfigure
-ffffffc008378044 t ctx_set_mount_flag
-ffffffc0083780b8 t ext4_fill_super
-ffffffc008379bec t ext4_check_opt_consistency
-ffffffc008379d94 t ext4_apply_options
-ffffffc008379ee0 t ext4_journal_data_mode_check
-ffffffc008379fec t ext4_check_feature_compatibility
-ffffffc00837a180 t ext4_max_bitmap_size
-ffffffc00837a230 t ext4_handle_clustersize
-ffffffc00837a388 t ext4_geometry_check
-ffffffc00837a588 t ext4_group_desc_init
-ffffffc00837ae18 t print_daily_error_info
-ffffffc00837af70 t flush_stashed_error_work
-ffffffc00837b0dc t ext4_get_stripe_size
-ffffffc00837b144 t ext4_fast_commit_init
-ffffffc00837b20c t ext4_load_and_init_journal
-ffffffc00837bb5c t ext4_setup_super
-ffffffc00837bdc8 t ext4_set_resv_clusters
-ffffffc00837be38 t ext4_journal_commit_callback
-ffffffc00837bf44 t ext4_fill_flex_info
-ffffffc00837c114 t ext4_mark_recovery_complete
-ffffffc00837c250 t ext4_unregister_li_request
-ffffffc00837c304 t ext4_group_desc_free
-ffffffc00837c390 t ext4_alloc_inode
-ffffffc00837c498 t ext4_destroy_inode
-ffffffc00837c570 t ext4_free_in_core_inode
-ffffffc00837c5e4 t ext4_drop_inode
-ffffffc00837c71c t ext4_put_super
-ffffffc00837cab0 t ext4_sync_fs
-ffffffc00837ccc8 t ext4_freeze
-ffffffc00837cd94 t ext4_unfreeze
-ffffffc00837ceb4 t ext4_statfs
-ffffffc00837d03c t ext4_show_options
-ffffffc00837d074 t ext4_fh_to_dentry
-ffffffc00837d0a8 t ext4_fh_to_parent
-ffffffc00837d0dc t ext4_nfs_commit_metadata
-ffffffc00837d22c t ext4_nfs_get_inode
-ffffffc00837d294 t ext4_journal_submit_inode_data_buffers
-ffffffc00837d340 t ext4_journal_finish_inode_data_buffers
-ffffffc00837d38c t ext4_clear_journal_err
-ffffffc00837d56c t ext4_init_journal_params
-ffffffc00837d60c t ext4_journalled_writepage_callback
-ffffffc00837d68c t register_as_ext3
-ffffffc00837d6d8 t ext4_encrypted_get_link.llvm.12358783950774749575
-ffffffc00837d77c t ext4_encrypted_symlink_getattr.llvm.12358783950774749575
-ffffffc00837d7ac t ext4_get_link.llvm.12358783950774749575
-ffffffc00837d904 t ext4_free_link
-ffffffc00837d934 T ext4_notify_error_sysfs
-ffffffc00837d970 T ext4_register_sysfs
-ffffffc00837db14 T ext4_unregister_sysfs
-ffffffc00837db68 T ext4_exit_sysfs
-ffffffc00837dbd0 t ext4_sb_release
-ffffffc00837dc00 t ext4_attr_show
-ffffffc00837df58 t ext4_attr_store
-ffffffc00837e214 t ext4_feat_release
-ffffffc00837e240 T ext4_evict_ea_inode
-ffffffc00837e330 t mb_cache_entry_put
-ffffffc00837e3b0 T ext4_xattr_ibody_get
-ffffffc00837e5dc t __xattr_check_inode
-ffffffc00837e740 t ext4_xattr_inode_get
-ffffffc00837e91c T ext4_xattr_get
-ffffffc00837ebc0 T ext4_listxattr
-ffffffc00837efb0 T ext4_get_inode_usage
-ffffffc00837f190 t __ext4_xattr_check_block
-ffffffc00837f3f0 T __ext4_xattr_set_credits
-ffffffc00837f4e4 T ext4_xattr_ibody_find
-ffffffc00837f680 T ext4_xattr_ibody_set
-ffffffc00837f794 t ext4_xattr_set_entry
-ffffffc0083805c8 T ext4_xattr_set_handle
-ffffffc008380d74 t ext4_xattr_block_find
-ffffffc008380f14 t ext4_xattr_block_set
-ffffffc008381bbc t ext4_xattr_value_same
-ffffffc008381c20 t ext4_xattr_update_super_block
-ffffffc008381d24 T ext4_xattr_set_credits
-ffffffc008381ef0 T ext4_xattr_set
-ffffffc008382058 T ext4_expand_extra_isize_ea
-ffffffc008382834 T ext4_xattr_delete_inode
-ffffffc008382c1c t ext4_xattr_inode_dec_ref_all
-ffffffc008383038 t ext4_xattr_inode_iget
-ffffffc00838324c t ext4_xattr_release_block
-ffffffc008383620 T ext4_xattr_inode_array_free
-ffffffc008383688 T ext4_xattr_create_cache
-ffffffc0083836b8 T ext4_xattr_destroy_cache
-ffffffc0083836e4 t ext4_xattr_inode_read
-ffffffc0083838e0 t ext4_xattr_block_cache_insert
-ffffffc008383928 t ext4_xattr_block_csum
-ffffffc008383a9c t ext4_xattr_inode_update_ref
-ffffffc008383cc0 t ext4_xattr_block_csum_set
-ffffffc008383d40 t ext4_xattr_inode_inc_ref_all
-ffffffc008383f30 t ext4_xattr_hurd_list
-ffffffc008383f50 t ext4_xattr_hurd_get
-ffffffc008383fa8 t ext4_xattr_hurd_set
-ffffffc008384004 t ext4_xattr_trusted_list
-ffffffc008384038 t ext4_xattr_trusted_get
-ffffffc008384078 t ext4_xattr_trusted_set
-ffffffc0083840bc t ext4_xattr_user_list
-ffffffc0083840dc t ext4_xattr_user_get
-ffffffc008384134 t ext4_xattr_user_set
-ffffffc008384190 T ext4_fc_init_inode
-ffffffc008384230 T ext4_fc_start_update
-ffffffc0083843c4 T ext4_fc_stop_update
-ffffffc00838445c T ext4_fc_del
-ffffffc0083846cc T ext4_fc_mark_ineligible
-ffffffc0083847e4 T __ext4_fc_track_unlink
-ffffffc008384934 t __track_dentry_update
-ffffffc008384b48 T ext4_fc_track_unlink
-ffffffc008384b9c T __ext4_fc_track_link
-ffffffc008384cec T ext4_fc_track_link
-ffffffc008384d40 T __ext4_fc_track_create
-ffffffc008384e90 T ext4_fc_track_create
-ffffffc008384ee4 T ext4_fc_track_inode
-ffffffc0083850b8 T ext4_fc_track_range
-ffffffc0083852f4 T ext4_fc_commit
-ffffffc008385adc t ext4_fc_update_stats
-ffffffc008385c1c T ext4_fc_record_regions
-ffffffc008385d0c T ext4_fc_replay_check_excluded
-ffffffc008385d90 T ext4_fc_replay_cleanup
-ffffffc008385de0 T ext4_fc_init
-ffffffc008385e14 t ext4_fc_replay
-ffffffc008387140 t ext4_fc_cleanup
-ffffffc0083874f4 T ext4_fc_info_show
-ffffffc00838768c T ext4_fc_destroy_dentry_cache
-ffffffc0083876bc t ext4_fc_add_tlv
-ffffffc008387820 t ext4_fc_write_inode_data
-ffffffc0083879e0 t ext4_fc_write_inode
-ffffffc008387c2c t ext4_fc_reserve_space
-ffffffc008387e38 t ext4_fc_submit_bh
-ffffffc008387f78 t ext4_end_buffer_io_sync
-ffffffc008388008 t ext4_fc_add_dentry_tlv
-ffffffc0083881cc t ext4_fc_set_bitmaps_and_counters
-ffffffc008388378 t ext4_fc_replay_link_internal
-ffffffc0083884b8 T ext4_orphan_add
-ffffffc008388a18 T ext4_orphan_del
-ffffffc008388db4 T ext4_orphan_cleanup
-ffffffc0083890c4 t ext4_process_orphan
-ffffffc0083891dc T ext4_release_orphan_info
-ffffffc008389264 T ext4_orphan_file_block_trigger
-ffffffc008389378 T ext4_init_orphan_info
-ffffffc00838974c T ext4_orphan_file_empty
-ffffffc0083897cc T ext4_get_acl
-ffffffc008389a98 T ext4_set_acl
-ffffffc008389c78 t __ext4_set_acl
-ffffffc008389ed8 T ext4_init_acl
-ffffffc00838a0ac T ext4_init_security
-ffffffc00838a0f4 t ext4_initxattrs.llvm.2380392723543982888
-ffffffc00838a170 t ext4_xattr_security_get
-ffffffc00838a1b0 t ext4_xattr_security_set
-ffffffc00838a1f4 T jbd2_journal_destroy_transaction_cache
-ffffffc00838a234 T jbd2_journal_free_transaction
-ffffffc00838a274 T jbd2__journal_start
-ffffffc00838a498 t start_this_handle
-ffffffc00838add8 T jbd2_journal_start
-ffffffc00838ae18 T jbd2_journal_free_reserved
-ffffffc00838af10 T jbd2_journal_start_reserved
-ffffffc00838b080 T jbd2_journal_stop
-ffffffc00838b370 T jbd2_journal_extend
-ffffffc00838b584 T jbd2__journal_restart
-ffffffc00838b71c t stop_this_handle
-ffffffc00838b968 T jbd2_journal_restart
-ffffffc00838b99c T jbd2_journal_wait_updates
-ffffffc00838ba8c T jbd2_journal_lock_updates
-ffffffc00838bbb4 T jbd2_journal_unlock_updates
-ffffffc00838bc30 T jbd2_journal_get_write_access
-ffffffc00838bd30 t do_get_write_access
-ffffffc00838c238 T jbd2_journal_get_create_access
-ffffffc00838c3a8 T __jbd2_journal_file_buffer
-ffffffc00838c600 T jbd2_journal_get_undo_access
-ffffffc00838c79c T jbd2_journal_set_triggers
-ffffffc00838c7e8 T jbd2_buffer_frozen_trigger
-ffffffc00838c84c T jbd2_buffer_abort_trigger
-ffffffc00838c8a8 T jbd2_journal_dirty_metadata
-ffffffc00838cbc4 T jbd2_journal_forget
-ffffffc00838cea8 t __jbd2_journal_temp_unlink_buffer
-ffffffc00838d02c T jbd2_journal_unfile_buffer
-ffffffc00838d0fc T jbd2_journal_try_to_free_buffers
-ffffffc00838d200 T jbd2_journal_invalidate_folio
-ffffffc00838d69c T jbd2_journal_file_buffer
-ffffffc00838d71c T __jbd2_journal_refile_buffer
-ffffffc00838d864 T jbd2_journal_refile_buffer
-ffffffc00838d8e4 T jbd2_journal_inode_ranged_write
-ffffffc00838d920 t jbd2_journal_file_inode.llvm.14968637876460384430
-ffffffc00838da64 T jbd2_journal_inode_ranged_wait
-ffffffc00838daa4 T jbd2_journal_begin_ordered_truncate
-ffffffc00838db60 t __dispose_buffer
-ffffffc00838dc28 T jbd2_journal_submit_inode_data_buffers
-ffffffc00838dcac T jbd2_submit_inode_data
-ffffffc00838dddc T jbd2_wait_inode_data
-ffffffc00838de34 T jbd2_journal_finish_inode_data_buffers
-ffffffc00838de70 T jbd2_journal_commit_transaction
-ffffffc00838fa40 t journal_end_buffer_io_sync
-ffffffc00838fb20 t journal_submit_commit_record
-ffffffc00838fda8 T jbd2_journal_recover
-ffffffc00838feb4 t do_one_pass
-ffffffc008390d30 T jbd2_journal_skip_recovery
-ffffffc008390dd4 t jread
-ffffffc008391108 T __jbd2_log_wait_for_space
-ffffffc008391340 T jbd2_log_do_checkpoint
-ffffffc008391954 T jbd2_cleanup_journal_tail
-ffffffc008391a10 T __jbd2_journal_remove_checkpoint
-ffffffc008391bf0 T jbd2_journal_shrink_checkpoint_list
-ffffffc008391f34 T __jbd2_journal_clean_checkpoint_list
-ffffffc0083920b4 T jbd2_journal_destroy_checkpoint
-ffffffc00839211c T __jbd2_journal_drop_transaction
-ffffffc0083922b4 T __jbd2_journal_insert_checkpoint
-ffffffc008392368 T jbd2_journal_destroy_revoke_record_cache
-ffffffc0083923a8 T jbd2_journal_destroy_revoke_table_cache
-ffffffc0083923e8 T jbd2_journal_init_revoke
-ffffffc008392510 t jbd2_journal_init_revoke_table
-ffffffc0083925f4 T jbd2_journal_destroy_revoke
-ffffffc0083926f8 T jbd2_journal_revoke
-ffffffc008392938 T jbd2_journal_cancel_revoke
-ffffffc008392b38 T jbd2_clear_buffer_revoked_flags
-ffffffc008392c08 T jbd2_journal_switch_revoke_table
-ffffffc008392c6c T jbd2_journal_write_revoke_records
-ffffffc008393000 T jbd2_journal_set_revoke
-ffffffc008393158 T jbd2_journal_test_revoke
-ffffffc008393224 T jbd2_journal_clear_revoke
-ffffffc0083932f0 T __traceiter_jbd2_checkpoint
-ffffffc008393380 T __traceiter_jbd2_start_commit
-ffffffc008393410 T __traceiter_jbd2_commit_locking
-ffffffc0083934a0 T __traceiter_jbd2_commit_flushing
-ffffffc008393530 T __traceiter_jbd2_commit_logging
-ffffffc0083935c0 T __traceiter_jbd2_drop_transaction
-ffffffc008393650 T __traceiter_jbd2_end_commit
-ffffffc0083936e0 T __traceiter_jbd2_submit_inode_data
-ffffffc008393760 T __traceiter_jbd2_handle_start
-ffffffc008393810 T __traceiter_jbd2_handle_restart
-ffffffc0083938c0 T __traceiter_jbd2_handle_extend
-ffffffc008393980 T __traceiter_jbd2_handle_stats
-ffffffc008393a60 T __traceiter_jbd2_run_stats
-ffffffc008393af8 T __traceiter_jbd2_checkpoint_stats
-ffffffc008393b90 T __traceiter_jbd2_update_log_tail
-ffffffc008393c38 T __traceiter_jbd2_write_superblock
-ffffffc008393cc8 T __traceiter_jbd2_lock_buffer_stall
-ffffffc008393d58 T __traceiter_jbd2_shrink_count
-ffffffc008393df0 T __traceiter_jbd2_shrink_scan_enter
-ffffffc008393e88 T __traceiter_jbd2_shrink_scan_exit
-ffffffc008393f30 T __traceiter_jbd2_shrink_checkpoint_list
-ffffffc008393ff8 t trace_event_raw_event_jbd2_checkpoint
-ffffffc0083940bc t perf_trace_jbd2_checkpoint
-ffffffc0083941dc t trace_event_raw_event_jbd2_commit
-ffffffc0083942b4 t perf_trace_jbd2_commit
-ffffffc0083943e8 t trace_event_raw_event_jbd2_end_commit
-ffffffc0083944c8 t perf_trace_jbd2_end_commit
-ffffffc008394604 t trace_event_raw_event_jbd2_submit_inode_data
-ffffffc0083946cc t perf_trace_jbd2_submit_inode_data
-ffffffc0083947e8 t trace_event_raw_event_jbd2_handle_start_class
-ffffffc0083948cc t perf_trace_jbd2_handle_start_class
-ffffffc008394a00 t trace_event_raw_event_jbd2_handle_extend
-ffffffc008394ae8 t perf_trace_jbd2_handle_extend
-ffffffc008394c28 t trace_event_raw_event_jbd2_handle_stats
-ffffffc008394d24 t perf_trace_jbd2_handle_stats
-ffffffc008394e74 t trace_event_raw_event_jbd2_run_stats
-ffffffc008394f88 t perf_trace_jbd2_run_stats
-ffffffc0083950ec t trace_event_raw_event_jbd2_checkpoint_stats
-ffffffc0083951d8 t perf_trace_jbd2_checkpoint_stats
-ffffffc008395314 t trace_event_raw_event_jbd2_update_log_tail
-ffffffc0083953f8 t perf_trace_jbd2_update_log_tail
-ffffffc008395534 t trace_event_raw_event_jbd2_write_superblock
-ffffffc0083955f8 t perf_trace_jbd2_write_superblock
-ffffffc008395718 t trace_event_raw_event_jbd2_lock_buffer_stall
-ffffffc0083957d8 t perf_trace_jbd2_lock_buffer_stall
-ffffffc0083958f4 t trace_event_raw_event_jbd2_journal_shrink
-ffffffc0083959cc t perf_trace_jbd2_journal_shrink
-ffffffc008395af4 t trace_event_raw_event_jbd2_shrink_scan_exit
-ffffffc008395bd4 t perf_trace_jbd2_shrink_scan_exit
-ffffffc008395d0c t trace_event_raw_event_jbd2_shrink_checkpoint_list
-ffffffc008395e0c t perf_trace_jbd2_shrink_checkpoint_list
-ffffffc008395f5c T jbd2_journal_write_metadata_buffer
-ffffffc0083964e8 T jbd2_alloc
-ffffffc0083965b4 T jbd2_free
-ffffffc008396668 T jbd2_log_start_commit
-ffffffc00839675c T jbd2_journal_force_commit_nested
-ffffffc00839678c t __jbd2_journal_force_commit.llvm.6102255283535851152
-ffffffc008396848 T jbd2_journal_force_commit
-ffffffc00839688c T jbd2_journal_start_commit
-ffffffc008396950 T jbd2_trans_will_send_data_barrier
-ffffffc008396a18 T jbd2_log_wait_commit
-ffffffc008396b80 T jbd2_fc_begin_commit
-ffffffc008396cb0 T jbd2_fc_end_commit
-ffffffc008396d50 T jbd2_fc_end_commit_fallback
-ffffffc008396e2c T jbd2_transaction_committed
-ffffffc008396ebc T jbd2_complete_transaction
-ffffffc008396f78 T jbd2_journal_next_log_block
-ffffffc008397094 T jbd2_journal_bmap
-ffffffc00839716c T jbd2_fc_get_buf
-ffffffc008397290 T jbd2_fc_wait_bufs
-ffffffc008397380 T jbd2_fc_release_bufs
-ffffffc0083973fc T jbd2_journal_abort
-ffffffc0083975a0 T jbd2_journal_get_descriptor_buffer
-ffffffc008397738 T jbd2_descriptor_block_csum_set
-ffffffc008397828 T jbd2_journal_get_log_tail
-ffffffc0083978f4 T __jbd2_update_log_tail
-ffffffc008397aa4 T jbd2_journal_update_sb_log_tail
-ffffffc008397bd0 T jbd2_update_log_tail
-ffffffc008397c48 T jbd2_journal_init_dev
-ffffffc008397ce8 t journal_init_common
-ffffffc008397f9c T jbd2_journal_init_inode
-ffffffc0083980dc t jbd2_write_superblock
-ffffffc00839845c T jbd2_journal_update_sb_errno
-ffffffc0083984fc T jbd2_journal_load
-ffffffc0083988b4 T jbd2_journal_destroy
-ffffffc008398b7c t jbd2_mark_journal_empty
-ffffffc008398ca0 T jbd2_journal_check_used_features
-ffffffc008398d58 t journal_get_superblock
-ffffffc008399100 T jbd2_journal_check_available_features
-ffffffc008399150 T jbd2_journal_set_features
-ffffffc0083994a8 T jbd2_journal_clear_features
-ffffffc008399550 T jbd2_journal_flush
-ffffffc0083998f8 T jbd2_journal_wipe
-ffffffc008399a50 T jbd2_journal_errno
-ffffffc008399ab0 T jbd2_journal_clear_err
-ffffffc008399b1c T jbd2_journal_ack_err
-ffffffc008399b78 T jbd2_journal_blocks_per_page
-ffffffc008399ba0 T journal_tag_bytes
-ffffffc008399bfc T jbd2_journal_add_journal_head
-ffffffc008399ee4 T jbd2_journal_grab_journal_head
-ffffffc00839a054 T jbd2_journal_put_journal_head
-ffffffc00839a40c T jbd2_journal_init_jbd_inode
-ffffffc00839a434 T jbd2_journal_release_jbd_inode
-ffffffc00839a580 t jbd2_journal_destroy_caches
-ffffffc00839a678 t trace_raw_output_jbd2_checkpoint
-ffffffc00839a6f4 t trace_raw_output_jbd2_commit
-ffffffc00839a778 t trace_raw_output_jbd2_end_commit
-ffffffc00839a7fc t trace_raw_output_jbd2_submit_inode_data
-ffffffc00839a87c t trace_raw_output_jbd2_handle_start_class
-ffffffc00839a900 t trace_raw_output_jbd2_handle_extend
-ffffffc00839a990 t trace_raw_output_jbd2_handle_stats
-ffffffc00839aa2c t trace_raw_output_jbd2_run_stats
-ffffffc00839ab00 t trace_raw_output_jbd2_checkpoint_stats
-ffffffc00839ab98 t trace_raw_output_jbd2_update_log_tail
-ffffffc00839ac1c t trace_raw_output_jbd2_write_superblock
-ffffffc00839ac98 t trace_raw_output_jbd2_lock_buffer_stall
-ffffffc00839ad18 t trace_raw_output_jbd2_journal_shrink
-ffffffc00839ad98 t trace_raw_output_jbd2_shrink_scan_exit
-ffffffc00839ae1c t trace_raw_output_jbd2_shrink_checkpoint_list
-ffffffc00839aeb4 t jbd2_journal_shrink_scan
-ffffffc00839b10c t jbd2_journal_shrink_count
-ffffffc00839b240 t jbd2_seq_info_open
-ffffffc00839b368 t jbd2_seq_info_release
-ffffffc00839b3cc t jbd2_seq_info_start
-ffffffc00839b3e8 t jbd2_seq_info_stop
-ffffffc00839b3f8 t jbd2_seq_info_next
-ffffffc00839b418 t jbd2_seq_info_show
-ffffffc00839b5f0 t kjournald2
-ffffffc00839b854 t commit_timeout
-ffffffc00839b88c T ramfs_get_inode
-ffffffc00839b9fc T ramfs_init_fs_context
-ffffffc00839ba70 t ramfs_create
-ffffffc00839baf4 t ramfs_symlink
-ffffffc00839bbb4 t ramfs_mkdir
-ffffffc00839bc3c t ramfs_mknod
-ffffffc00839bcc0 t ramfs_tmpfile
-ffffffc00839bd2c t ramfs_free_fc
-ffffffc00839bd5c t ramfs_parse_param
-ffffffc00839be24 t ramfs_get_tree
-ffffffc00839be58 t ramfs_fill_super
-ffffffc00839bef0 t ramfs_show_options
-ffffffc00839bf3c t ramfs_kill_sb
-ffffffc00839bf80 t ramfs_mmu_get_unmapped_area.llvm.13433715946459494816
-ffffffc00839bfd0 T exportfs_encode_inode_fh
-ffffffc00839c094 T exportfs_encode_fh
-ffffffc00839c1bc T exportfs_decode_fh_raw
-ffffffc00839c494 t reconnect_path
-ffffffc00839c71c t find_acceptable_alias
-ffffffc00839c854 t exportfs_get_name
-ffffffc00839ca1c T exportfs_decode_fh
-ffffffc00839ca60 t filldir_one
-ffffffc00839cae0 T utf8version_is_supported
-ffffffc00839cb28 T utf8nlen
-ffffffc00839cc88 t utf8nlookup
-ffffffc00839ce58 T utf8ncursor
-ffffffc00839ceb0 T utf8byte
-ffffffc00839d1b8 T utf8_validate
-ffffffc00839d1f4 T utf8_strncmp
-ffffffc00839d2f8 T utf8_strncasecmp
-ffffffc00839d3fc T utf8_strncasecmp_folded
-ffffffc00839d4c4 T utf8_casefold
-ffffffc00839d59c T utf8_casefold_hash
-ffffffc00839d690 T utf8_normalize
-ffffffc00839d768 T utf8_load
-ffffffc00839d844 T utf8_unload
-ffffffc00839d874 T fuse_set_initialized
-ffffffc00839d890 T fuse_len_args
-ffffffc00839d90c T fuse_get_unique
-ffffffc00839d92c t fuse_dev_wake_and_unlock.llvm.1135597134864729590
-ffffffc00839d99c T fuse_queue_forget
-ffffffc00839da50 T fuse_request_end
-ffffffc00839dc54 t flush_bg_queue
-ffffffc00839de08 t fuse_put_request
-ffffffc00839df60 T fuse_simple_request
-ffffffc00839e5b4 t fuse_get_req
-ffffffc00839e878 T fuse_simple_background
-ffffffc00839ea88 T fuse_dequeue_forget
-ffffffc00839eb04 T fuse_abort_conn
-ffffffc00839ef98 t __fuse_get_request
-ffffffc00839f00c t list_move
-ffffffc00839f080 t list_move
-ffffffc00839f0f4 t list_move
-ffffffc00839f174 T fuse_wait_aborted
-ffffffc00839f24c T fuse_dev_release
-ffffffc00839f44c t fuse_dev_read.llvm.1135597134864729590
-ffffffc00839f4f8 t fuse_dev_write.llvm.1135597134864729590
-ffffffc00839f598 t fuse_dev_poll.llvm.1135597134864729590
-ffffffc00839f690 t fuse_dev_ioctl.llvm.1135597134864729590
-ffffffc00839fa68 t fuse_dev_open.llvm.1135597134864729590
-ffffffc00839fa80 t fuse_dev_fasync.llvm.1135597134864729590
-ffffffc00839facc t fuse_dev_splice_write.llvm.1135597134864729590
-ffffffc00839feec t fuse_dev_splice_read.llvm.1135597134864729590
-ffffffc0083a016c T fuse_dev_cleanup
-ffffffc0083a01a8 t queue_interrupt
-ffffffc0083a02bc t fuse_dev_do_read
-ffffffc0083a07ac t fuse_read_interrupt
-ffffffc0083a09c8 t fuse_read_forget
-ffffffc0083a0eec t fuse_copy_one
-ffffffc0083a0fc8 t fuse_copy_args
-ffffffc0083a1184 t fuse_copy_finish
-ffffffc0083a1260 t list_move_tail
-ffffffc0083a12d4 t list_move_tail
-ffffffc0083a1348 t list_move_tail
-ffffffc0083a13bc t fuse_copy_fill
-ffffffc0083a1640 t fuse_copy_page
-ffffffc0083a1e60 t fuse_dev_do_write
-ffffffc0083a30a4 t copy_out_args
-ffffffc0083a31a4 t fuse_retrieve_end
-ffffffc0083a31ec T fuse_init_dentry_root
-ffffffc0083a31fc T fuse_change_entry_timeout
-ffffffc0083a3324 T entry_attr_timeout
-ffffffc0083a33c0 T fuse_invalidate_attr_mask
-ffffffc0083a3434 T fuse_invalidate_attr
-ffffffc0083a34a4 T fuse_invalidate_atime
-ffffffc0083a3520 T fuse_invalidate_entry_cache
-ffffffc0083a35c4 t fuse_dentry_revalidate.llvm.8207005740200979764
-ffffffc0083a396c t fuse_dentry_delete.llvm.8207005740200979764
-ffffffc0083a3990 t fuse_dentry_automount.llvm.8207005740200979764
-ffffffc0083a3a20 t fuse_dentry_canonical_path.llvm.8207005740200979764
-ffffffc0083a3b60 T fuse_valid_type
-ffffffc0083a3ba4 T fuse_invalid_attr
-ffffffc0083a3bfc T fuse_lookup_name
-ffffffc0083a3e94 T fuse_flush_time_update
-ffffffc0083a3f70 T fuse_update_ctime
-ffffffc0083a402c T fuse_fillattr
-ffffffc0083a40e8 T fuse_update_attributes
-ffffffc0083a417c T fuse_reverse_inval_entry
-ffffffc0083a43e4 t fuse_dir_changed
-ffffffc0083a447c T fuse_allow_current_process
-ffffffc0083a4548 T fuse_set_nowrite
-ffffffc0083a4648 T fuse_release_nowrite
-ffffffc0083a46b0 T fuse_flush_times
-ffffffc0083a4808 T fuse_do_setattr
-ffffffc0083a4fa0 T fuse_init_common
-ffffffc0083a4fbc T fuse_init_dir
-ffffffc0083a4ff8 T fuse_init_symlink
-ffffffc0083a502c t fuse_do_getattr
-ffffffc0083a52fc t fuse_permission.llvm.8207005740200979764
-ffffffc0083a563c t fuse_setattr.llvm.8207005740200979764
-ffffffc0083a5838 t fuse_getattr.llvm.8207005740200979764
-ffffffc0083a59e0 t fuse_perm_getattr
-ffffffc0083a5a34 t fuse_lookup
-ffffffc0083a5c24 t fuse_create
-ffffffc0083a5d50 t fuse_link
-ffffffc0083a5ed4 t fuse_unlink
-ffffffc0083a60b0 t fuse_symlink
-ffffffc0083a61a4 t fuse_mkdir
-ffffffc0083a62cc t fuse_rmdir
-ffffffc0083a64a8 t fuse_mknod
-ffffffc0083a65f0 t fuse_rename2
-ffffffc0083a66d4 t fuse_atomic_open
-ffffffc0083a6918 t fuse_tmpfile
-ffffffc0083a69b0 t create_new_entry
-ffffffc0083a6c80 t get_security_context
-ffffffc0083a6e1c t fuse_entry_unlinked
-ffffffc0083a6fd8 t fuse_rename_common
-ffffffc0083a7438 t fuse_create_open
-ffffffc0083a78a8 t fuse_dir_ioctl
-ffffffc0083a7900 t fuse_dir_compat_ioctl
-ffffffc0083a7958 t fuse_dir_open
-ffffffc0083a7988 t fuse_dir_release
-ffffffc0083a79c0 t fuse_dir_fsync
-ffffffc0083a7ab8 t fuse_get_link
-ffffffc0083a7bc8 t fuse_readlink_page
-ffffffc0083a7d58 t fuse_symlink_read_folio
-ffffffc0083a7dd8 T fuse_file_alloc
-ffffffc0083a7ef0 T fuse_file_free
-ffffffc0083a7f34 T fuse_file_open
-ffffffc0083a8188 T fuse_do_open
-ffffffc0083a81d8 T fuse_finish_open
-ffffffc0083a835c T fuse_open_common
-ffffffc0083a84e4 T fuse_file_release
-ffffffc0083a8620 t fuse_prepare_release
-ffffffc0083a8734 T fuse_lock_owner_id
-ffffffc0083a87a8 t fuse_file_put
-ffffffc0083a88ac T fuse_release_common
-ffffffc0083a88ec T fuse_sync_release
-ffffffc0083a8958 T fuse_fsync_common
-ffffffc0083a8a28 T fuse_read_args_fill
-ffffffc0083a8a80 T fuse_write_update_attr
-ffffffc0083a8b5c T fuse_direct_io
-ffffffc0083a9438 T fuse_flush_writepages
-ffffffc0083a94e8 t fuse_send_writepage
-ffffffc0083a9620 T fuse_write_inode
-ffffffc0083a972c T fuse_file_poll
-ffffffc0083a9978 T fuse_notify_poll_wakeup
-ffffffc0083a99fc T fuse_init_file_inode
-ffffffc0083a9a80 t fuse_release_end
-ffffffc0083a9ac0 t fuse_async_req_send
-ffffffc0083a9bd4 t fuse_aio_complete_req
-ffffffc0083a9d3c t fuse_aio_complete
-ffffffc0083a9f1c t fuse_writepage_finish
-ffffffc0083a9ff4 t fuse_writepage_free
-ffffffc0083aa0d8 t fuse_file_llseek
-ffffffc0083aa2fc t fuse_file_read_iter
-ffffffc0083aa47c t fuse_file_write_iter
-ffffffc0083aa874 t fuse_file_mmap
-ffffffc0083aa99c t fuse_open
-ffffffc0083aa9cc t fuse_flush
-ffffffc0083aac40 t fuse_release
-ffffffc0083aacc0 t fuse_fsync
-ffffffc0083aae04 t fuse_file_lock
-ffffffc0083ab088 t fuse_file_flock
-ffffffc0083ab104 t fuse_file_fallocate
-ffffffc0083ab3e4 t fuse_copy_file_range
-ffffffc0083ab808 t fuse_direct_IO
-ffffffc0083abc98 t fuse_perform_write
-ffffffc0083ac47c t fuse_wait_on_page_writeback
-ffffffc0083ac62c t fuse_vma_close
-ffffffc0083ac718 t fuse_page_mkwrite
-ffffffc0083ac800 t fuse_setlk
-ffffffc0083ac9f8 t fuse_writepage
-ffffffc0083acb34 t fuse_read_folio
-ffffffc0083acba8 t fuse_writepages
-ffffffc0083accd0 t fuse_readahead
-ffffffc0083ad178 t fuse_write_begin
-ffffffc0083ad3b4 t fuse_write_end
-ffffffc0083ad58c t fuse_bmap
-ffffffc0083ad6e4 t fuse_launder_folio
-ffffffc0083ad748 t fuse_writepage_locked
-ffffffc0083adbc4 t fuse_write_file_get
-ffffffc0083adc8c t fuse_writepage_end
-ffffffc0083adf50 t fuse_do_readpage
-ffffffc0083ae1d0 t fuse_writepages_fill
-ffffffc0083ae85c t fuse_writepages_send
-ffffffc0083ae9e4 t fuse_readpages_end
-ffffffc0083aec5c T fuse_alloc_forget
-ffffffc0083aec9c T fuse_change_attributes_common
-ffffffc0083aee40 T fuse_get_cache_mask
-ffffffc0083aee98 T fuse_change_attributes
-ffffffc0083af058 T fuse_iget_backing
-ffffffc0083af1b8 t fuse_inode_backing_eq
-ffffffc0083af1d8 t fuse_inode_backing_set
-ffffffc0083af1f4 t fuse_init_inode
-ffffffc0083af2d0 T fuse_iget
-ffffffc0083af554 t fuse_inode_eq
-ffffffc0083af574 t fuse_inode_set
-ffffffc0083af594 T fuse_ilookup
-ffffffc0083af67c T fuse_reverse_inval_inode
-ffffffc0083af7fc T fuse_lock_inode
-ffffffc0083af864 T fuse_unlock_inode
-ffffffc0083af898 T fuse_conn_init
-ffffffc0083afa70 T fuse_conn_put
-ffffffc0083afb70 T fuse_conn_get
-ffffffc0083afbf8 T fuse_send_init
-ffffffc0083afd6c t process_init_reply
-ffffffc0083b0464 T fuse_free_conn
-ffffffc0083b04e4 t free_fuse_passthrough
-ffffffc0083b052c T fuse_dev_alloc
-ffffffc0083b05e0 T fuse_dev_install
-ffffffc0083b06b8 T fuse_dev_alloc_install
-ffffffc0083b077c T fuse_dev_free
-ffffffc0083b08d0 T fuse_init_fs_context_submount
-ffffffc0083b08f4 T fuse_fill_super_common
-ffffffc0083b0e20 T fuse_mount_remove
-ffffffc0083b0eb4 T fuse_conn_destroy
-ffffffc0083b0ff0 T fuse_mount_destroy
-ffffffc0083b10f8 t fuse_sysfs_cleanup
-ffffffc0083b1158 t fuse_fs_cleanup
-ffffffc0083b11a8 t set_global_limit
-ffffffc0083b1244 t fuse_get_tree_submount
-ffffffc0083b15dc t fuse_alloc_inode
-ffffffc0083b1694 t fuse_free_inode
-ffffffc0083b16e0 t fuse_evict_inode
-ffffffc0083b17b4 t fuse_sync_fs
-ffffffc0083b1ac4 t fuse_statfs
-ffffffc0083b1bfc t fuse_umount_begin
-ffffffc0083b1c68 t fuse_show_options
-ffffffc0083b1da4 t fuse_encode_fh
-ffffffc0083b1e14 t fuse_fh_to_dentry
-ffffffc0083b1ea8 t fuse_fh_to_parent
-ffffffc0083b1f38 t fuse_get_parent
-ffffffc0083b2060 t fuse_get_dentry
-ffffffc0083b21f4 t fuse_bpf_show
-ffffffc0083b2230 t bpf_prog_type_fuse_show
-ffffffc0083b2270 t fuse_init_fs_context
-ffffffc0083b2314 t fuse_kill_sb_anon
-ffffffc0083b23d0 t fuse_kill_sb_blk
-ffffffc0083b248c t fuse_free_fsc
-ffffffc0083b24e0 t fuse_parse_param
-ffffffc0083b27b0 t fuse_get_tree
-ffffffc0083b2954 t fuse_reconfigure
-ffffffc0083b29a4 t fuse_fill_super
-ffffffc0083b2a50 t fuse_test_super
-ffffffc0083b2a74 t fuse_set_no_super
-ffffffc0083b2a88 t fuse_inode_init_once
-ffffffc0083b2ab4 T fuse_ctl_add_conn
-ffffffc0083b2c50 t fuse_ctl_add_dentry
-ffffffc0083b2d70 T fuse_ctl_remove_conn
-ffffffc0083b2e40 T fuse_ctl_cleanup
-ffffffc0083b2e74 t fuse_conn_waiting_read
-ffffffc0083b2f90 t fuse_conn_abort_write
-ffffffc0083b3040 t fuse_conn_max_background_read
-ffffffc0083b3148 t fuse_conn_max_background_write
-ffffffc0083b32b0 t fuse_conn_congestion_threshold_read
-ffffffc0083b33b8 t fuse_conn_congestion_threshold_write
-ffffffc0083b3514 t fuse_ctl_init_fs_context
-ffffffc0083b3538 t fuse_ctl_kill_sb
-ffffffc0083b35b8 t fuse_ctl_get_tree
-ffffffc0083b35ec t fuse_ctl_fill_super
-ffffffc0083b36b0 T fuse_setxattr
-ffffffc0083b384c T fuse_getxattr
-ffffffc0083b39e8 T fuse_listxattr
-ffffffc0083b3bd0 T fuse_removexattr
-ffffffc0083b3d14 t fuse_xattr_get
-ffffffc0083b3d60 t fuse_xattr_set
-ffffffc0083b3ed8 t no_xattr_list
-ffffffc0083b3eec t no_xattr_get
-ffffffc0083b3f00 t no_xattr_set
-ffffffc0083b3f14 T fuse_get_acl
-ffffffc0083b409c T fuse_set_acl
-ffffffc0083b4238 T fuse_readdir
-ffffffc0083b4fb8 t fuse_emit
-ffffffc0083b522c T fuse_do_ioctl
-ffffffc0083b58a4 T fuse_ioctl_common
-ffffffc0083b5938 T fuse_file_ioctl
-ffffffc0083b59c0 T fuse_file_compat_ioctl
-ffffffc0083b5a48 T fuse_fileattr_get
-ffffffc0083b5d7c T fuse_fileattr_set
-ffffffc0083b6054 T fuse_copyattr
-ffffffc0083b608c T fuse_passthrough_read_iter
-ffffffc0083b6270 t fuse_aio_rw_complete
-ffffffc0083b632c T fuse_passthrough_write_iter
-ffffffc0083b6530 T fuse_passthrough_mmap
-ffffffc0083b669c T fuse_passthrough_open
-ffffffc0083b6890 T fuse_passthrough_release
-ffffffc0083b6920 T fuse_passthrough_setup
-ffffffc0083b69d4 T debugfs_lookup
-ffffffc0083b6a6c T debugfs_initialized
-ffffffc0083b6a84 T debugfs_create_file
-ffffffc0083b6ac8 t __debugfs_create_file.llvm.1402617647776800421
-ffffffc0083b6c8c T debugfs_create_file_unsafe
-ffffffc0083b6cd4 T debugfs_create_file_size
-ffffffc0083b6d38 T debugfs_create_dir
-ffffffc0083b6ecc t start_creating
-ffffffc0083b703c t start_creating
-ffffffc0083b7124 t failed_creating
-ffffffc0083b7184 T debugfs_create_automount
-ffffffc0083b7328 T debugfs_create_symlink
-ffffffc0083b745c T debugfs_remove
-ffffffc0083b74e4 t remove_one
-ffffffc0083b75b4 t remove_one
-ffffffc0083b75f0 T debugfs_lookup_and_remove
-ffffffc0083b76d8 T debugfs_rename
-ffffffc0083b78bc t debugfs_setattr
-ffffffc0083b7920 t debug_mount
-ffffffc0083b7970 t debug_fill_super
-ffffffc0083b7a64 t debugfs_parse_options
-ffffffc0083b7bd8 t debugfs_free_inode
-ffffffc0083b7c2c t debugfs_remount
-ffffffc0083b7cdc t debugfs_show_options
-ffffffc0083b7d88 t debugfs_release_dentry
-ffffffc0083b7dbc t debugfs_automount
-ffffffc0083b7e10 t default_read_file.llvm.10943537761873168987
-ffffffc0083b7e24 t default_write_file.llvm.10943537761873168987
-ffffffc0083b7e38 T debugfs_real_fops
-ffffffc0083b7e68 T debugfs_file_get
-ffffffc0083b801c T debugfs_file_put
-ffffffc0083b80b0 t open_proxy_open.llvm.10943537761873168987
-ffffffc0083b823c t full_proxy_open.llvm.10943537761873168987
-ffffffc0083b84a8 T debugfs_attr_read
-ffffffc0083b8598 T debugfs_attr_write
-ffffffc0083b867c T debugfs_attr_write_signed
-ffffffc0083b8760 T debugfs_create_u8
-ffffffc0083b87c4 T debugfs_create_u16
-ffffffc0083b8828 T debugfs_create_u32
-ffffffc0083b888c T debugfs_create_u64
-ffffffc0083b88f0 T debugfs_create_ulong
-ffffffc0083b8954 T debugfs_create_x8
-ffffffc0083b89b8 T debugfs_create_x16
-ffffffc0083b8a1c T debugfs_create_x32
-ffffffc0083b8a80 T debugfs_create_x64
-ffffffc0083b8ae4 T debugfs_create_size_t
-ffffffc0083b8b48 T debugfs_create_atomic_t
-ffffffc0083b8bac T debugfs_read_file_bool
-ffffffc0083b8ce8 T debugfs_write_file_bool
-ffffffc0083b8dfc T debugfs_create_bool
-ffffffc0083b8e60 T debugfs_read_file_str
-ffffffc0083b9034 T debugfs_create_str
-ffffffc0083b9098 T debugfs_create_blob
-ffffffc0083b90dc T debugfs_create_u32_array
-ffffffc0083b9118 T debugfs_print_regs32
-ffffffc0083b91ec t readl
-ffffffc0083b9290 t readl
-ffffffc0083b9334 t readl
-ffffffc0083b93d8 t readl
-ffffffc0083b947c t readl
-ffffffc0083b9520 t readl
-ffffffc0083b95c4 t readl
-ffffffc0083b9668 t readl
-ffffffc0083b970c t readl
-ffffffc0083b97b0 t readl
-ffffffc0083b9854 t readl
-ffffffc0083b98f8 t readl
-ffffffc0083b999c t readl
-ffffffc0083b9a40 t readl
-ffffffc0083b9ae4 t readl
-ffffffc0083b9b88 t readl
-ffffffc0083b9c2c t readl
-ffffffc0083b9cd0 t readl
-ffffffc0083b9d74 t readl
-ffffffc0083b9e18 t readl
-ffffffc0083b9ebc t readl
-ffffffc0083b9f60 t readl
-ffffffc0083ba004 t readl
-ffffffc0083ba0a8 t readl
-ffffffc0083ba14c t readl
-ffffffc0083ba1f4 T debugfs_create_regset32
-ffffffc0083ba230 T debugfs_create_devm_seqfile
-ffffffc0083ba2b8 t full_proxy_release
-ffffffc0083ba368 t full_proxy_llseek
-ffffffc0083ba480 t full_proxy_read
-ffffffc0083ba5a8 t full_proxy_write
-ffffffc0083ba6d0 t full_proxy_poll
-ffffffc0083ba7e0 t full_proxy_unlocked_ioctl
-ffffffc0083ba8f8 t fops_u8_open
-ffffffc0083ba93c t debugfs_u8_get
-ffffffc0083ba958 t debugfs_u8_set
-ffffffc0083ba974 t fops_u8_ro_open
-ffffffc0083ba9b4 t fops_u8_wo_open
-ffffffc0083ba9f4 t fops_u16_open
-ffffffc0083baa38 t debugfs_u16_get
-ffffffc0083baa54 t debugfs_u16_set
-ffffffc0083baa70 t fops_u16_ro_open
-ffffffc0083baab0 t fops_u16_wo_open
-ffffffc0083baaf0 t fops_u32_open
-ffffffc0083bab34 t debugfs_u32_get
-ffffffc0083bab50 t debugfs_u32_set
-ffffffc0083bab6c t fops_u32_ro_open
-ffffffc0083babac t fops_u32_wo_open
-ffffffc0083babec t fops_u64_open
-ffffffc0083bac30 t debugfs_u64_get
-ffffffc0083bac4c t debugfs_u64_set
-ffffffc0083bac68 t fops_u64_ro_open
-ffffffc0083baca8 t fops_u64_wo_open
-ffffffc0083bace8 t fops_ulong_open
-ffffffc0083bad2c t debugfs_ulong_get
-ffffffc0083bad48 t debugfs_ulong_set
-ffffffc0083bad64 t fops_ulong_ro_open
-ffffffc0083bada4 t fops_ulong_wo_open
-ffffffc0083bade4 t fops_x8_open
-ffffffc0083bae28 t fops_x8_ro_open
-ffffffc0083bae68 t fops_x8_wo_open
-ffffffc0083baea8 t fops_x16_open
-ffffffc0083baeec t fops_x16_ro_open
-ffffffc0083baf2c t fops_x16_wo_open
-ffffffc0083baf6c t fops_x32_open
-ffffffc0083bafb0 t fops_x32_ro_open
-ffffffc0083baff0 t fops_x32_wo_open
-ffffffc0083bb030 t fops_x64_open
-ffffffc0083bb074 t fops_x64_ro_open
-ffffffc0083bb0b4 t fops_x64_wo_open
-ffffffc0083bb0f4 t fops_size_t_open
-ffffffc0083bb138 t debugfs_size_t_get
-ffffffc0083bb154 t debugfs_size_t_set
-ffffffc0083bb170 t fops_size_t_ro_open
-ffffffc0083bb1b0 t fops_size_t_wo_open
-ffffffc0083bb1f0 t fops_atomic_t_open
-ffffffc0083bb234 t debugfs_atomic_t_get
-ffffffc0083bb258 t debugfs_atomic_t_set
-ffffffc0083bb274 t fops_atomic_t_ro_open
-ffffffc0083bb2b4 t fops_atomic_t_wo_open
-ffffffc0083bb2f4 t debugfs_write_file_str
-ffffffc0083bb308 t read_file_blob
-ffffffc0083bb3f8 t u32_array_read
-ffffffc0083bb460 t u32_array_open
-ffffffc0083bb544 t u32_array_release
-ffffffc0083bb578 t debugfs_regset32_open
-ffffffc0083bb5b8 t debugfs_regset32_show
-ffffffc0083bb6b8 t debugfs_devm_entry_open
-ffffffc0083bb6f4 T tracefs_create_file
-ffffffc0083bb8b0 T tracefs_create_dir
-ffffffc0083bb8e0 t __create_dir.llvm.6782123164241347245
-ffffffc0083bba64 T tracefs_remove
-ffffffc0083bbaec T tracefs_initialized
-ffffffc0083bbb04 t default_read_file
-ffffffc0083bbb18 t default_write_file
-ffffffc0083bbb2c t tracefs_syscall_mkdir
-ffffffc0083bbbec t tracefs_syscall_rmdir
-ffffffc0083bbcd0 t trace_mount
-ffffffc0083bbd08 t trace_fill_super
-ffffffc0083bbdc8 t tracefs_parse_options
-ffffffc0083bbf38 t tracefs_apply_options
-ffffffc0083bc0e8 t tracefs_remount
-ffffffc0083bc154 t tracefs_show_options
-ffffffc0083bc200 T __traceiter_erofs_lookup
-ffffffc0083bc298 T __traceiter_erofs_fill_inode
-ffffffc0083bc318 T __traceiter_erofs_readpage
-ffffffc0083bc3a8 T __traceiter_erofs_readpages
-ffffffc0083bc450 T __traceiter_erofs_map_blocks_enter
-ffffffc0083bc4e8 T __traceiter_z_erofs_map_blocks_iter_enter
-ffffffc0083bc580 T __traceiter_erofs_map_blocks_exit
-ffffffc0083bc628 T __traceiter_z_erofs_map_blocks_iter_exit
-ffffffc0083bc6d0 T __traceiter_erofs_destroy_inode
-ffffffc0083bc750 t trace_event_raw_event_erofs_lookup
-ffffffc0083bc874 t perf_trace_erofs_lookup
-ffffffc0083bca08 t trace_event_raw_event_erofs_fill_inode
-ffffffc0083bcb08 t perf_trace_erofs_fill_inode
-ffffffc0083bcc5c t trace_event_raw_event_erofs_readpage
-ffffffc0083bcd94 t perf_trace_erofs_readpage
-ffffffc0083bcf28 t trace_event_raw_event_erofs_readpages
-ffffffc0083bd014 t perf_trace_erofs_readpages
-ffffffc0083bd158 t trace_event_raw_event_erofs__map_blocks_enter
-ffffffc0083bd248 t perf_trace_erofs__map_blocks_enter
-ffffffc0083bd388 t trace_event_raw_event_erofs__map_blocks_exit
-ffffffc0083bd494 t perf_trace_erofs__map_blocks_exit
-ffffffc0083bd5f8 t trace_event_raw_event_erofs_destroy_inode
-ffffffc0083bd6c0 t perf_trace_erofs_destroy_inode
-ffffffc0083bd7dc T _erofs_err
-ffffffc0083bd878 T _erofs_info
-ffffffc0083bd90c t erofs_init_fs_context
-ffffffc0083bda00 t erofs_kill_sb
-ffffffc0083bdac8 t erofs_alloc_inode
-ffffffc0083bdb28 t erofs_free_inode
-ffffffc0083bdb94 t erofs_put_super
-ffffffc0083bdbf0 t erofs_statfs
-ffffffc0083bdc60 t erofs_show_options
-ffffffc0083bdd44 t trace_raw_output_erofs_lookup
-ffffffc0083bddd0 t trace_raw_output_erofs_fill_inode
-ffffffc0083bde54 t trace_raw_output_erofs_readpage
-ffffffc0083bdf18 t trace_raw_output_erofs_readpages
-ffffffc0083bdfa0 t trace_raw_output_erofs__map_blocks_enter
-ffffffc0083be078 t trace_raw_output_erofs__map_blocks_exit
-ffffffc0083be1a0 t trace_raw_output_erofs_destroy_inode
-ffffffc0083be220 t erofs_fc_anon_get_tree
-ffffffc0083be254 t erofs_fc_fill_pseudo_super
-ffffffc0083be290 t erofs_fc_free
-ffffffc0083be308 t erofs_fc_parse_param
-ffffffc0083be528 t erofs_fc_get_tree
-ffffffc0083be55c t erofs_fc_reconfigure
-ffffffc0083be5f0 t erofs_release_device_info
-ffffffc0083be64c t erofs_fc_fill_super
-ffffffc0083beb9c t erofs_load_compr_cfgs
-ffffffc0083bee00 t erofs_scan_devices
-ffffffc0083bf02c t erofs_init_device
-ffffffc0083bf140 t erofs_fh_to_dentry
-ffffffc0083bf174 t erofs_fh_to_parent
-ffffffc0083bf1a8 t erofs_get_parent
-ffffffc0083bf248 t erofs_nfs_get_inode
-ffffffc0083bf274 t erofs_managed_cache_invalidate_folio
-ffffffc0083bf2f0 t erofs_managed_cache_release_folio
-ffffffc0083bf338 t erofs_inode_init_once
-ffffffc0083bf368 T erofs_iget
-ffffffc0083bfaf0 t erofs_ilookup_test_actor
-ffffffc0083bfb10 t erofs_iget_set_actor
-ffffffc0083bfb30 T erofs_getattr
-ffffffc0083bfb90 T erofs_unmap_metabuf
-ffffffc0083bfc14 T erofs_put_metabuf
-ffffffc0083bfd08 T erofs_bread
-ffffffc0083bfe6c T erofs_read_metabuf
-ffffffc0083bfea0 T erofs_map_blocks
-ffffffc0083c02a0 T erofs_map_dev
-ffffffc0083c0414 T erofs_fiemap
-ffffffc0083c0460 t erofs_read_folio.llvm.11091713656996237805
-ffffffc0083c0498 t erofs_readahead.llvm.11091713656996237805
-ffffffc0083c04cc t erofs_bmap.llvm.11091713656996237805
-ffffffc0083c0500 t erofs_file_read_iter.llvm.11091713656996237805
-ffffffc0083c0604 t erofs_iomap_begin
-ffffffc0083c0774 t erofs_iomap_end
-ffffffc0083c080c T erofs_namei
-ffffffc0083c0b84 t erofs_lookup.llvm.17288825966653249179
-ffffffc0083c0cd8 t erofs_readdir.llvm.11433627780224811979
-ffffffc0083c0f80 T erofs_allocpage
-ffffffc0083c0fe8 T erofs_release_pages
-ffffffc0083c10a4 T erofs_find_workgroup
-ffffffc0083c1220 T erofs_insert_workgroup
-ffffffc0083c144c T erofs_workgroup_put
-ffffffc0083c1550 T erofs_shrinker_register
-ffffffc0083c15ec T erofs_shrinker_unregister
-ffffffc0083c1680 t erofs_shrink_workstation
-ffffffc0083c18ec T erofs_exit_shrinker
-ffffffc0083c1920 t erofs_shrink_count
-ffffffc0083c1940 t erofs_shrink_scan
-ffffffc0083c1a98 T erofs_get_pcpubuf
-ffffffc0083c1b58 T erofs_put_pcpubuf
-ffffffc0083c1bec T erofs_pcpubuf_growsize
-ffffffc0083c1e50 T erofs_pcpubuf_init
-ffffffc0083c1ee0 T erofs_pcpubuf_exit
-ffffffc0083c2040 T erofs_register_sysfs
-ffffffc0083c20f4 T erofs_unregister_sysfs
-ffffffc0083c214c T erofs_exit_sysfs
-ffffffc0083c218c t erofs_attr_show
-ffffffc0083c2240 t erofs_attr_store
-ffffffc0083c2394 t erofs_sb_release
-ffffffc0083c23c4 T erofs_getxattr
-ffffffc0083c2614 t init_inode_xattrs
-ffffffc0083c2914 t erofs_xattr_user_list
-ffffffc0083c2934 t erofs_xattr_generic_get
-ffffffc0083c29a8 t erofs_xattr_trusted_list
-ffffffc0083c29dc T erofs_listxattr
-ffffffc0083c2c1c T erofs_get_acl
-ffffffc0083c2d30 t xattr_foreach
-ffffffc0083c3080 t xattr_entrymatch
-ffffffc0083c30b8 t xattr_namematch
-ffffffc0083c3104 t xattr_checkbuffer
-ffffffc0083c3138 t xattr_copyvalue
-ffffffc0083c3178 t xattr_entrylist
-ffffffc0083c32a4 t xattr_namelist
-ffffffc0083c3304 t xattr_skipvalue
-ffffffc0083c3330 T z_erofs_load_lz4_config
-ffffffc0083c33e8 T z_erofs_fixup_insize
-ffffffc0083c3460 T z_erofs_decompress
-ffffffc0083c34c4 t z_erofs_lz4_decompress
-ffffffc0083c3ed8 t z_erofs_transform_plain
-ffffffc0083c406c T z_erofs_fill_inode
-ffffffc0083c40f0 T z_erofs_map_blocks_iter
-ffffffc0083c4608 t z_erofs_do_map_blocks
-ffffffc0083c4ba4 t z_erofs_iomap_begin_report.llvm.15031412632717396585
-ffffffc0083c4cb4 t z_erofs_load_cluster_from_disk
-ffffffc0083c5188 T z_erofs_exit_zip_subsystem
-ffffffc0083c51bc t z_erofs_destroy_pcluster_pool
-ffffffc0083c5264 T erofs_try_to_free_all_cached_pages
-ffffffc0083c5414 T erofs_try_to_free_cached_page
-ffffffc0083c563c T erofs_workgroup_free_rcu
-ffffffc0083c5674 t z_erofs_rcu_callback.llvm.297813948487103162
-ffffffc0083c5754 t z_erofs_read_folio.llvm.297813948487103162
-ffffffc0083c597c t z_erofs_readahead.llvm.297813948487103162
-ffffffc0083c5cdc t z_erofs_pcluster_readmore
-ffffffc0083c5edc t z_erofs_do_read_page
-ffffffc0083c6d9c t z_erofs_runqueue
-ffffffc0083c75e8 t z_erofs_decompress_queue
-ffffffc0083c8248 t z_erofs_decompressqueue_endio
-ffffffc0083c83c4 t z_erofs_decompress_kickoff
-ffffffc0083c8524 t z_erofs_decompressqueue_work
-ffffffc0083c85a4 T cap_capable
-ffffffc0083c8620 T cap_settime
-ffffffc0083c8658 T cap_ptrace_access_check
-ffffffc0083c86f8 T cap_ptrace_traceme
-ffffffc0083c8788 T cap_capget
-ffffffc0083c8800 T cap_capset
-ffffffc0083c88c4 T cap_inode_need_killpriv
-ffffffc0083c890c T cap_inode_killpriv
-ffffffc0083c8948 T cap_inode_getsecurity
-ffffffc0083c8b10 T cap_convert_nscap
-ffffffc0083c8c58 T get_vfs_caps_from_disk
-ffffffc0083c8db4 T cap_bprm_creds_from_file
-ffffffc0083c91c0 T cap_inode_setxattr
-ffffffc0083c9244 T cap_inode_removexattr
-ffffffc0083c92f8 T cap_task_fix_setuid
-ffffffc0083c9408 T cap_task_setscheduler
-ffffffc0083c9490 T cap_task_setioprio
-ffffffc0083c9518 T cap_task_setnice
-ffffffc0083c95a0 T cap_task_prctl
-ffffffc0083c980c T cap_vm_enough_memory
-ffffffc0083c9888 T cap_mmap_addr
-ffffffc0083c992c T cap_mmap_file
-ffffffc0083c9940 T mmap_min_addr_handler
-ffffffc0083c99e4 t lsm_append
-ffffffc0083c9aac T call_blocking_lsm_notifier
-ffffffc0083c9ae8 T register_blocking_lsm_notifier
-ffffffc0083c9b20 T unregister_blocking_lsm_notifier
-ffffffc0083c9b58 T lsm_inode_alloc
-ffffffc0083c9bc0 T security_binder_set_context_mgr
-ffffffc0083c9c34 T security_binder_transaction
-ffffffc0083c9cb8 T security_binder_transfer_binder
-ffffffc0083c9d3c T security_binder_transfer_file
-ffffffc0083c9dc8 T security_ptrace_access_check
-ffffffc0083c9e4c T security_ptrace_traceme
-ffffffc0083c9ec0 T security_capget
-ffffffc0083c9f5c T security_capset
-ffffffc0083ca000 T security_capable
-ffffffc0083ca09c T security_quotactl
-ffffffc0083ca138 T security_quota_on
-ffffffc0083ca1ac T security_syslog
-ffffffc0083ca220 T security_settime64
-ffffffc0083ca2a4 T security_vm_enough_memory_mm
-ffffffc0083ca33c T security_bprm_creds_for_exec
-ffffffc0083ca3b0 T security_bprm_creds_from_file
-ffffffc0083ca434 T security_bprm_check
-ffffffc0083ca4a8 T security_bprm_committing_creds
-ffffffc0083ca514 T security_bprm_committed_creds
-ffffffc0083ca580 T security_fs_context_dup
-ffffffc0083ca604 T security_fs_context_parse_param
-ffffffc0083ca6ac T security_sb_alloc
-ffffffc0083ca7a0 T security_sb_free
-ffffffc0083ca818 T security_sb_delete
-ffffffc0083ca884 T security_free_mnt_opts
-ffffffc0083ca8fc T security_sb_eat_lsm_opts
-ffffffc0083ca980 T security_sb_mnt_opts_compat
-ffffffc0083caa04 T security_sb_remount
-ffffffc0083caa88 T security_sb_kern_mount
-ffffffc0083caafc T security_sb_show_options
-ffffffc0083cab80 T security_sb_statfs
-ffffffc0083cabf4 T security_sb_mount
-ffffffc0083cac98 T security_sb_umount
-ffffffc0083cad1c T security_sb_pivotroot
-ffffffc0083cada0 T security_sb_set_mnt_opts
-ffffffc0083cae48 T security_sb_clone_mnt_opts
-ffffffc0083caee4 T security_move_mount
-ffffffc0083caf68 T security_path_notify
-ffffffc0083caff4 T security_inode_alloc
-ffffffc0083cb0fc T security_inode_free
-ffffffc0083cb180 t inode_free_by_rcu
-ffffffc0083cb1b8 T security_dentry_init_security
-ffffffc0083cb270 T security_dentry_create_files_as
-ffffffc0083cb314 T security_inode_init_security
-ffffffc0083cb4ec T security_inode_init_security_anon
-ffffffc0083cb578 T security_old_inode_init_security
-ffffffc0083cb638 T security_inode_create
-ffffffc0083cb6cc T security_inode_link
-ffffffc0083cb764 T security_inode_unlink
-ffffffc0083cb7f4 T security_inode_symlink
-ffffffc0083cb888 T security_inode_mkdir
-ffffffc0083cb91c T security_inode_rmdir
-ffffffc0083cb9ac T security_inode_mknod
-ffffffc0083cba50 T security_inode_rename
-ffffffc0083cbb5c T security_inode_readlink
-ffffffc0083cbbdc T security_inode_follow_link
-ffffffc0083cbc70 T security_inode_permission
-ffffffc0083cbcfc T security_inode_setattr
-ffffffc0083cbd8c T security_inode_getattr
-ffffffc0083cbe10 T security_inode_setxattr
-ffffffc0083cbef4 T security_inode_post_setxattr
-ffffffc0083cbf9c T security_inode_getxattr
-ffffffc0083cc02c T security_inode_listxattr
-ffffffc0083cc0ac T security_inode_removexattr
-ffffffc0083cc160 T security_inode_need_killpriv
-ffffffc0083cc1d4 T security_inode_killpriv
-ffffffc0083cc258 T security_inode_getsecurity
-ffffffc0083cc308 T security_inode_setsecurity
-ffffffc0083cc3b8 T security_inode_listsecurity
-ffffffc0083cc44c T security_inode_getsecid
-ffffffc0083cc4c8 T security_inode_copy_up
-ffffffc0083cc54c T security_inode_copy_up_xattr
-ffffffc0083cc5c4 T security_kernfs_init_security
-ffffffc0083cc648 T security_file_permission
-ffffffc0083cc6d0 t fsnotify_perm
-ffffffc0083cc838 T security_file_alloc
-ffffffc0083cc938 T security_file_free
-ffffffc0083cc9bc T security_file_ioctl
-ffffffc0083cca48 T security_mmap_file
-ffffffc0083ccb24 T security_mmap_addr
-ffffffc0083ccb98 T security_file_mprotect
-ffffffc0083ccc24 T security_file_lock
-ffffffc0083ccca8 T security_file_fcntl
-ffffffc0083ccd34 T security_file_set_fowner
-ffffffc0083ccda0 T security_file_send_sigiotask
-ffffffc0083cce2c T security_file_receive
-ffffffc0083ccea0 T security_file_open
-ffffffc0083ccf1c T security_task_alloc
-ffffffc0083cd018 T security_task_free
-ffffffc0083cd090 T security_cred_alloc_blank
-ffffffc0083cd194 T security_cred_free
-ffffffc0083cd214 T security_prepare_creds
-ffffffc0083cd328 T security_transfer_creds
-ffffffc0083cd3a4 T security_cred_getsecid
-ffffffc0083cd424 T security_kernel_act_as
-ffffffc0083cd4a8 T security_kernel_create_files_as
-ffffffc0083cd52c T security_kernel_module_request
-ffffffc0083cd5a0 T security_kernel_read_file
-ffffffc0083cd62c T security_kernel_post_read_file
-ffffffc0083cd6c8 T security_kernel_load_data
-ffffffc0083cd74c T security_kernel_post_load_data
-ffffffc0083cd7e8 T security_task_fix_setuid
-ffffffc0083cd874 T security_task_fix_setgid
-ffffffc0083cd900 T security_task_fix_setgroups
-ffffffc0083cd984 T security_task_setpgid
-ffffffc0083cda08 T security_task_getpgid
-ffffffc0083cda7c T security_task_getsid
-ffffffc0083cdaf0 T security_current_getsecid_subj
-ffffffc0083cdb60 T security_task_getsecid_obj
-ffffffc0083cdbe0 T security_task_setnice
-ffffffc0083cdc64 T security_task_setioprio
-ffffffc0083cdce8 T security_task_getioprio
-ffffffc0083cdd5c T security_task_prlimit
-ffffffc0083cdde8 T security_task_setrlimit
-ffffffc0083cde74 T security_task_setscheduler
-ffffffc0083cdee8 T security_task_getscheduler
-ffffffc0083cdf5c T security_task_movememory
-ffffffc0083cdfd0 T security_task_kill
-ffffffc0083ce06c T security_task_prctl
-ffffffc0083ce134 T security_task_to_inode
-ffffffc0083ce1b0 T security_create_user_ns
-ffffffc0083ce224 T security_ipc_permission
-ffffffc0083ce2a8 T security_ipc_getsecid
-ffffffc0083ce328 T security_msg_msg_alloc
-ffffffc0083ce41c T security_msg_msg_free
-ffffffc0083ce494 T security_msg_queue_alloc
-ffffffc0083ce588 T security_msg_queue_free
-ffffffc0083ce600 T security_msg_queue_associate
-ffffffc0083ce684 T security_msg_queue_msgctl
-ffffffc0083ce708 T security_msg_queue_msgsnd
-ffffffc0083ce794 T security_msg_queue_msgrcv
-ffffffc0083ce838 T security_shm_alloc
-ffffffc0083ce92c T security_shm_free
-ffffffc0083ce9a4 T security_shm_associate
-ffffffc0083cea28 T security_shm_shmctl
-ffffffc0083ceaac T security_shm_shmat
-ffffffc0083ceb38 T security_sem_alloc
-ffffffc0083cec2c T security_sem_free
-ffffffc0083ceca4 T security_sem_associate
-ffffffc0083ced28 T security_sem_semctl
-ffffffc0083cedac T security_sem_semop
-ffffffc0083cee48 T security_d_instantiate
-ffffffc0083ceed0 T security_getprocattr
-ffffffc0083cef78 T security_setprocattr
-ffffffc0083cf020 T security_netlink_send
-ffffffc0083cf0a4 T security_ismaclabel
-ffffffc0083cf118 T security_secid_to_secctx
-ffffffc0083cf1a8 T security_secctx_to_secid
-ffffffc0083cf238 T security_release_secctx
-ffffffc0083cf2b4 T security_inode_invalidate_secctx
-ffffffc0083cf320 T security_inode_notifysecctx
-ffffffc0083cf3ac T security_inode_setsecctx
-ffffffc0083cf438 T security_inode_getsecctx
-ffffffc0083cf4cc T security_unix_stream_connect
-ffffffc0083cf558 T security_unix_may_send
-ffffffc0083cf5dc T security_socket_create
-ffffffc0083cf678 T security_socket_post_create
-ffffffc0083cf71c T security_socket_socketpair
-ffffffc0083cf7a0 T security_socket_bind
-ffffffc0083cf82c T security_socket_connect
-ffffffc0083cf8b8 T security_socket_listen
-ffffffc0083cf93c T security_socket_accept
-ffffffc0083cf9c0 T security_socket_sendmsg
-ffffffc0083cfa4c T security_socket_recvmsg
-ffffffc0083cfae8 T security_socket_getsockname
-ffffffc0083cfb5c T security_socket_getpeername
-ffffffc0083cfbd0 T security_socket_getsockopt
-ffffffc0083cfc5c T security_socket_setsockopt
-ffffffc0083cfce8 T security_socket_shutdown
-ffffffc0083cfd6c T security_sock_rcv_skb
-ffffffc0083cfdf0 T security_socket_getpeersec_stream
-ffffffc0083cfe94 T security_socket_getpeersec_dgram
-ffffffc0083cff28 T security_sk_alloc
-ffffffc0083cffb4 T security_sk_free
-ffffffc0083d0020 T security_sk_clone
-ffffffc0083d009c T security_sk_classify_flow
-ffffffc0083d0118 T security_req_classify_flow
-ffffffc0083d0194 T security_sock_graft
-ffffffc0083d0210 T security_inet_conn_request
-ffffffc0083d029c T security_inet_csk_clone
-ffffffc0083d0318 T security_inet_conn_established
-ffffffc0083d0394 T security_secmark_relabel_packet
-ffffffc0083d0408 T security_secmark_refcount_inc
-ffffffc0083d046c T security_secmark_refcount_dec
-ffffffc0083d04d0 T security_tun_dev_alloc_security
-ffffffc0083d0544 T security_tun_dev_free_security
-ffffffc0083d05b0 T security_tun_dev_create
-ffffffc0083d061c T security_tun_dev_attach_queue
-ffffffc0083d0690 T security_tun_dev_attach
-ffffffc0083d0714 T security_tun_dev_open
-ffffffc0083d0788 T security_sctp_assoc_request
-ffffffc0083d080c T security_sctp_bind_connect
-ffffffc0083d08a8 T security_sctp_sk_clone
-ffffffc0083d092c T security_sctp_assoc_established
-ffffffc0083d09b0 T security_audit_rule_init
-ffffffc0083d0a4c T security_audit_rule_known
-ffffffc0083d0ac0 T security_audit_rule_free
-ffffffc0083d0b2c T security_audit_rule_match
-ffffffc0083d0bc8 T security_locked_down
-ffffffc0083d0c3c T security_perf_event_open
-ffffffc0083d0cc0 T security_perf_event_alloc
-ffffffc0083d0d34 T security_perf_event_free
-ffffffc0083d0da0 T security_perf_event_read
-ffffffc0083d0e14 T security_perf_event_write
-ffffffc0083d0e88 T security_uring_override_creds
-ffffffc0083d0efc T security_uring_sqpoll
-ffffffc0083d0f68 T security_uring_cmd
-ffffffc0083d0fdc T securityfs_create_file
-ffffffc0083d1008 t securityfs_create_dentry.llvm.5937919790820247469
-ffffffc0083d11d8 T securityfs_create_dir
-ffffffc0083d1218 T securityfs_create_symlink
-ffffffc0083d12b4 T securityfs_remove
-ffffffc0083d1368 t securityfs_init_fs_context
-ffffffc0083d138c t securityfs_get_tree
-ffffffc0083d13c0 t securityfs_fill_super
-ffffffc0083d1418 t securityfs_free_inode
-ffffffc0083d146c t lsm_read
-ffffffc0083d14d8 T __traceiter_selinux_audited
-ffffffc0083d1580 t trace_event_raw_event_selinux_audited
-ffffffc0083d1724 t perf_trace_selinux_audited
-ffffffc0083d192c T selinux_avc_init
-ffffffc0083d198c T avc_get_cache_threshold
-ffffffc0083d19a0 T avc_set_cache_threshold
-ffffffc0083d19b4 T avc_get_hash_stats
-ffffffc0083d1aa8 T slow_avc_audit
-ffffffc0083d1b74 t avc_audit_pre_callback
-ffffffc0083d1cb8 t avc_audit_post_callback
-ffffffc0083d1fe4 T avc_ss_reset
-ffffffc0083d20ac t avc_flush
-ffffffc0083d21cc T avc_has_extended_perms
-ffffffc0083d25b0 t avc_lookup
-ffffffc0083d2760 t avc_compute_av
-ffffffc0083d298c t avc_update_node
-ffffffc0083d2d20 t avc_denied
-ffffffc0083d2db8 T avc_has_perm_noaudit
-ffffffc0083d2f00 T avc_has_perm
-ffffffc0083d30c0 T avc_policy_seqno
-ffffffc0083d30d8 T avc_disable
-ffffffc0083d3118 t trace_raw_output_selinux_audited
-ffffffc0083d31b4 t avc_node_free
-ffffffc0083d3278 t avc_xperms_free
-ffffffc0083d336c t avc_alloc_node
-ffffffc0083d3694 t avc_xperms_populate
-ffffffc0083d3820 t avc_node_kill
-ffffffc0083d391c t avc_xperms_decision_alloc
-ffffffc0083d3a14 t avc_xperms_allow_perm
-ffffffc0083d3a94 T selinux_complete_init
-ffffffc0083d3acc t delayed_superblock_init.llvm.1022756753377295562
-ffffffc0083d3b04 t selinux_set_mnt_opts
-ffffffc0083d40ec t may_context_mount_sb_relabel
-ffffffc0083d4174 t may_context_mount_inode_relabel
-ffffffc0083d41fc t sb_finish_set_opts
-ffffffc0083d4518 t inode_doinit_with_dentry
-ffffffc0083d48b4 t inode_mode_to_security_class
-ffffffc0083d48f0 t inode_doinit_use_xattr
-ffffffc0083d4aec t selinux_genfs_get_sid
-ffffffc0083d4bec t selinux_netcache_avc_callback
-ffffffc0083d4c30 t selinux_lsm_notifier_avc_callback
-ffffffc0083d4c78 t selinux_binder_set_context_mgr
-ffffffc0083d4ce0 t selinux_binder_transaction
-ffffffc0083d4d8c t selinux_binder_transfer_binder
-ffffffc0083d4dec t selinux_binder_transfer_file
-ffffffc0083d4f6c t selinux_ptrace_access_check
-ffffffc0083d501c t selinux_ptrace_traceme
-ffffffc0083d50c8 t selinux_capget
-ffffffc0083d5164 t selinux_capset
-ffffffc0083d51c4 t selinux_capable
-ffffffc0083d536c t selinux_quotactl
-ffffffc0083d5448 t selinux_quota_on
-ffffffc0083d5558 t selinux_syslog
-ffffffc0083d55ec t selinux_vm_enough_memory
-ffffffc0083d568c t selinux_netlink_send
-ffffffc0083d5898 t selinux_bprm_creds_for_exec
-ffffffc0083d5b58 t selinux_bprm_committing_creds
-ffffffc0083d5db8 t selinux_bprm_committed_creds
-ffffffc0083d5ea4 t selinux_free_mnt_opts
-ffffffc0083d5ed0 t selinux_sb_mnt_opts_compat
-ffffffc0083d6070 t selinux_sb_remount
-ffffffc0083d61ec t selinux_sb_kern_mount
-ffffffc0083d6298 t selinux_sb_show_options
-ffffffc0083d6454 t selinux_sb_statfs
-ffffffc0083d6504 t selinux_mount
-ffffffc0083d6660 t selinux_umount
-ffffffc0083d66d0 t selinux_sb_clone_mnt_opts
-ffffffc0083d6a94 t selinux_move_mount
-ffffffc0083d6bac t selinux_dentry_init_security
-ffffffc0083d6ca8 t selinux_dentry_create_files_as
-ffffffc0083d6d70 t selinux_inode_free_security
-ffffffc0083d6e24 t selinux_inode_init_security
-ffffffc0083d6fec t selinux_inode_init_security_anon
-ffffffc0083d7160 t selinux_inode_create
-ffffffc0083d7190 t selinux_inode_link
-ffffffc0083d71cc t selinux_inode_unlink
-ffffffc0083d71fc t selinux_inode_symlink
-ffffffc0083d722c t selinux_inode_mkdir
-ffffffc0083d725c t selinux_inode_rmdir
-ffffffc0083d728c t selinux_inode_mknod
-ffffffc0083d72e4 t selinux_inode_rename
-ffffffc0083d75ec t selinux_inode_readlink
-ffffffc0083d76fc t selinux_inode_follow_link
-ffffffc0083d7824 t selinux_inode_permission
-ffffffc0083d7a1c t selinux_inode_setattr
-ffffffc0083d7c30 t selinux_inode_getattr
-ffffffc0083d7d44 t selinux_inode_setxattr
-ffffffc0083d80f4 t selinux_inode_post_setxattr
-ffffffc0083d8288 t selinux_inode_getxattr
-ffffffc0083d8398 t selinux_inode_listxattr
-ffffffc0083d84a8 t selinux_inode_removexattr
-ffffffc0083d860c t selinux_inode_getsecurity
-ffffffc0083d87b4 t selinux_inode_setsecurity
-ffffffc0083d8908 t selinux_inode_listsecurity
-ffffffc0083d8958 t selinux_inode_getsecid
-ffffffc0083d8988 t selinux_inode_copy_up
-ffffffc0083d8a18 t selinux_inode_copy_up_xattr
-ffffffc0083d8a58 t selinux_path_notify
-ffffffc0083d8c30 t selinux_kernfs_init_security
-ffffffc0083d8e28 t selinux_file_permission
-ffffffc0083d8fac t selinux_file_alloc_security
-ffffffc0083d8ff0 t selinux_file_ioctl
-ffffffc0083d93b0 t selinux_mmap_file
-ffffffc0083d94c8 t selinux_mmap_addr
-ffffffc0083d9538 t selinux_file_mprotect
-ffffffc0083d9760 t selinux_file_lock
-ffffffc0083d987c t selinux_file_fcntl
-ffffffc0083d9ae4 t selinux_file_set_fowner
-ffffffc0083d9b20 t selinux_file_send_sigiotask
-ffffffc0083d9bec t selinux_file_receive
-ffffffc0083d9c4c t selinux_file_open
-ffffffc0083d9dfc t selinux_task_alloc
-ffffffc0083d9e5c t selinux_cred_prepare
-ffffffc0083d9e9c t selinux_cred_transfer
-ffffffc0083d9ed4 t selinux_cred_getsecid
-ffffffc0083d9efc t selinux_kernel_act_as
-ffffffc0083d9f88 t selinux_kernel_create_files_as
-ffffffc0083da06c t selinux_kernel_module_request
-ffffffc0083da108 t selinux_kernel_load_data
-ffffffc0083da178 t selinux_kernel_read_file
-ffffffc0083da2f8 t selinux_task_setpgid
-ffffffc0083da394 t selinux_task_getpgid
-ffffffc0083da430 t selinux_task_getsid
-ffffffc0083da4cc t selinux_current_getsecid_subj
-ffffffc0083da4fc t selinux_task_getsecid_obj
-ffffffc0083da560 t selinux_task_setnice
-ffffffc0083da5fc t selinux_task_setioprio
-ffffffc0083da698 t selinux_task_getioprio
-ffffffc0083da734 t selinux_task_prlimit
-ffffffc0083da7a8 t selinux_task_setrlimit
-ffffffc0083da870 t selinux_task_setscheduler
-ffffffc0083da90c t selinux_task_getscheduler
-ffffffc0083da9a8 t selinux_task_movememory
-ffffffc0083daa44 t selinux_task_kill
-ffffffc0083dab48 t selinux_task_to_inode
-ffffffc0083dac1c t selinux_userns_create
-ffffffc0083dac7c t selinux_ipc_permission
-ffffffc0083dad68 t selinux_ipc_getsecid
-ffffffc0083dad90 t selinux_msg_queue_associate
-ffffffc0083dae44 t selinux_msg_queue_msgctl
-ffffffc0083daf80 t selinux_msg_queue_msgsnd
-ffffffc0083db0d0 t selinux_msg_queue_msgrcv
-ffffffc0083db1d8 t selinux_shm_associate
-ffffffc0083db28c t selinux_shm_shmctl
-ffffffc0083db3d4 t selinux_shm_shmat
-ffffffc0083db494 t selinux_sem_associate
-ffffffc0083db548 t selinux_sem_semctl
-ffffffc0083db6a8 t selinux_sem_semop
-ffffffc0083db768 t selinux_d_instantiate
-ffffffc0083db7a4 t selinux_getprocattr
-ffffffc0083db968 t selinux_setprocattr
-ffffffc0083dbd4c t selinux_ismaclabel
-ffffffc0083dbd88 t selinux_secctx_to_secid
-ffffffc0083dbdd4 t selinux_release_secctx
-ffffffc0083dbe00 t selinux_inode_invalidate_secctx
-ffffffc0083dbe60 t selinux_inode_notifysecctx
-ffffffc0083dbea8 t selinux_inode_setsecctx
-ffffffc0083dbef4 t selinux_socket_unix_stream_connect
-ffffffc0083dbfdc t selinux_socket_unix_may_send
-ffffffc0083dc088 t selinux_socket_create
-ffffffc0083dc170 t selinux_socket_post_create
-ffffffc0083dc2b4 t selinux_socket_socketpair
-ffffffc0083dc2e8 t selinux_socket_bind
-ffffffc0083dc5a0 t selinux_socket_connect
-ffffffc0083dc5cc t selinux_socket_listen
-ffffffc0083dc6a0 t selinux_socket_accept
-ffffffc0083dc7ec t selinux_socket_sendmsg
-ffffffc0083dc8c0 t selinux_socket_recvmsg
-ffffffc0083dc994 t selinux_socket_getsockname
-ffffffc0083dca68 t selinux_socket_getpeername
-ffffffc0083dcb3c t selinux_socket_getsockopt
-ffffffc0083dcc10 t selinux_socket_setsockopt
-ffffffc0083dcce4 t selinux_socket_shutdown
-ffffffc0083dcdb8 t selinux_socket_sock_rcv_skb
-ffffffc0083dd0b4 t selinux_socket_getpeersec_stream
-ffffffc0083dd468 t selinux_socket_getpeersec_dgram
-ffffffc0083dd568 t selinux_sk_free_security
-ffffffc0083dd5a0 t selinux_sk_clone_security
-ffffffc0083dd5d0 t selinux_sk_getsecid
-ffffffc0083dd5f8 t selinux_sock_graft
-ffffffc0083dd654 t selinux_sctp_assoc_request
-ffffffc0083dd710 t selinux_sctp_sk_clone
-ffffffc0083dd76c t selinux_sctp_bind_connect
-ffffffc0083dd8a8 t selinux_sctp_assoc_established
-ffffffc0083dd900 t selinux_inet_conn_request
-ffffffc0083dd9d0 t selinux_inet_csk_clone
-ffffffc0083dd9f4 t selinux_inet_conn_established
-ffffffc0083dda50 t selinux_secmark_relabel_packet
-ffffffc0083ddab0 t selinux_secmark_refcount_inc
-ffffffc0083ddafc t selinux_secmark_refcount_dec
-ffffffc0083ddb4c t selinux_req_classify_flow
-ffffffc0083ddb64 t selinux_tun_dev_free_security
-ffffffc0083ddb90 t selinux_tun_dev_create
-ffffffc0083ddbf0 t selinux_tun_dev_attach_queue
-ffffffc0083ddc50 t selinux_tun_dev_attach
-ffffffc0083ddc7c t selinux_tun_dev_open
-ffffffc0083ddd18 t selinux_perf_event_open
-ffffffc0083ddd90 t selinux_perf_event_free
-ffffffc0083dddc8 t selinux_perf_event_read
-ffffffc0083dde2c t selinux_perf_event_write
-ffffffc0083dde90 t selinux_uring_override_creds
-ffffffc0083ddef8 t selinux_uring_sqpoll
-ffffffc0083ddf58 t selinux_uring_cmd
-ffffffc0083de014 t selinux_fs_context_dup
-ffffffc0083de07c t selinux_fs_context_parse_param
-ffffffc0083de10c t selinux_sb_eat_lsm_opts
-ffffffc0083de448 t selinux_msg_msg_alloc_security
-ffffffc0083de474 t selinux_msg_queue_alloc_security
-ffffffc0083de548 t selinux_shm_alloc_security
-ffffffc0083de61c t selinux_sb_alloc_security
-ffffffc0083de69c t selinux_inode_alloc_security
-ffffffc0083de710 t selinux_sem_alloc_security
-ffffffc0083de7e4 t selinux_secid_to_secctx
-ffffffc0083de82c t selinux_inode_getsecctx
-ffffffc0083de884 t selinux_sk_alloc_security
-ffffffc0083de918 t selinux_tun_dev_alloc_security
-ffffffc0083de998 t selinux_perf_event_alloc
-ffffffc0083dea14 t check_nnp_nosuid
-ffffffc0083deaf0 t ptrace_parent_sid
-ffffffc0083deb78 t match_file
-ffffffc0083debdc t file_has_perm
-ffffffc0083decfc t show_sid
-ffffffc0083dee24 t selinux_determine_inode_label
-ffffffc0083def30 t may_create
-ffffffc0083df0c8 t may_link
-ffffffc0083df294 t audit_inode_permission
-ffffffc0083df354 t has_cap_mac_admin
-ffffffc0083df4bc t ioctl_has_perm
-ffffffc0083df620 t file_map_prot_check
-ffffffc0083df720 t socket_type_to_security_class
-ffffffc0083df8d4 t selinux_socket_connect_helper
-ffffffc0083dfacc t selinux_parse_skb
-ffffffc0083dfea0 t selinux_sctp_process_new_assoc
-ffffffc0083dfff0 t selinux_add_opt
-ffffffc0083e0180 t sel_init_fs_context
-ffffffc0083e01a4 t sel_kill_sb
-ffffffc0083e023c t sel_get_tree
-ffffffc0083e0270 t sel_fill_super
-ffffffc0083e07f0 t sel_make_dir
-ffffffc0083e08bc t sel_write_load
-ffffffc0083e12b0 t sel_remove_old_bool_data
-ffffffc0083e131c t sel_read_bool
-ffffffc0083e145c t sel_write_bool
-ffffffc0083e15f4 t sel_read_class
-ffffffc0083e16b4 t sel_read_perm
-ffffffc0083e177c t sel_read_enforce
-ffffffc0083e183c t sel_write_enforce
-ffffffc0083e1a24 t selinux_transaction_write
-ffffffc0083e1ae8 t sel_write_context
-ffffffc0083e1c38 t sel_write_access
-ffffffc0083e1e1c t sel_write_create
-ffffffc0083e20f0 t sel_write_relabel
-ffffffc0083e230c t sel_write_user
-ffffffc0083e2554 t sel_write_member
-ffffffc0083e2788 t sel_read_policyvers
-ffffffc0083e2830 t sel_commit_bools_write
-ffffffc0083e2994 t sel_read_mls
-ffffffc0083e2a50 t sel_read_checkreqprot
-ffffffc0083e2b14 t sel_write_checkreqprot
-ffffffc0083e2cb0 t sel_read_handle_unknown
-ffffffc0083e2d88 t sel_read_handle_status
-ffffffc0083e2df4 t sel_mmap_handle_status
-ffffffc0083e2e8c t sel_open_handle_status
-ffffffc0083e2eec t sel_read_policy
-ffffffc0083e2f8c t sel_mmap_policy
-ffffffc0083e2fe0 t sel_open_policy
-ffffffc0083e315c t sel_release_policy
-ffffffc0083e31b8 t sel_mmap_policy_fault
-ffffffc0083e328c t sel_write_validatetrans
-ffffffc0083e34fc t sel_read_avc_cache_threshold
-ffffffc0083e35b8 t sel_write_avc_cache_threshold
-ffffffc0083e36fc t sel_read_avc_hash_stats
-ffffffc0083e37b4 t sel_open_avc_cache_stats
-ffffffc0083e37ec t sel_avc_stats_seq_start
-ffffffc0083e3880 t sel_avc_stats_seq_stop
-ffffffc0083e3890 t sel_avc_stats_seq_next
-ffffffc0083e392c t sel_avc_stats_seq_show
-ffffffc0083e398c t sel_read_sidtab_hash_stats
-ffffffc0083e3a44 t sel_read_initcon
-ffffffc0083e3b1c t sel_read_policycap
-ffffffc0083e3be0 T selnl_notify_setenforce
-ffffffc0083e3c40 t selnl_notify.llvm.1475032527646478517
-ffffffc0083e3d4c T selnl_notify_policyload
-ffffffc0083e3db0 T selinux_nlmsg_lookup
-ffffffc0083e3f24 T selinux_nlmsg_init
-ffffffc0083e4088 T sel_netif_sid
-ffffffc0083e42e8 T sel_netif_flush
-ffffffc0083e43bc t sel_netif_netdev_notifier_handler
-ffffffc0083e44a4 T sel_netnode_sid
-ffffffc0083e480c T sel_netnode_flush
-ffffffc0083e48fc T sel_netport_sid
-ffffffc0083e4b20 T sel_netport_flush
-ffffffc0083e4c10 T selinux_kernel_status_page
-ffffffc0083e4ce8 T selinux_status_update_setenforce
-ffffffc0083e4d88 T selinux_status_update_policyload
-ffffffc0083e4e3c T ebitmap_cmp
-ffffffc0083e4edc T ebitmap_cpy
-ffffffc0083e4fc8 T ebitmap_destroy
-ffffffc0083e5030 T ebitmap_and
-ffffffc0083e51a4 T ebitmap_get_bit
-ffffffc0083e5210 T ebitmap_set_bit
-ffffffc0083e53f0 T ebitmap_contains
-ffffffc0083e55f4 T ebitmap_read
-ffffffc0083e583c T ebitmap_write
-ffffffc0083e5b34 T ebitmap_hash
-ffffffc0083e5d98 T hashtab_init
-ffffffc0083e5e2c T __hashtab_insert
-ffffffc0083e5eb4 T hashtab_destroy
-ffffffc0083e5f4c T hashtab_map
-ffffffc0083e5ffc T hashtab_stat
-ffffffc0083e6068 T hashtab_duplicate
-ffffffc0083e6238 T symtab_init
-ffffffc0083e6268 T symtab_insert
-ffffffc0083e6370 T symtab_search
-ffffffc0083e6428 T sidtab_init
-ffffffc0083e6508 T sidtab_set_initial
-ffffffc0083e66cc t context_to_sid
-ffffffc0083e6834 T sidtab_hash_stats
-ffffffc0083e6938 T sidtab_search_entry
-ffffffc0083e6a4c T sidtab_search_entry_force
-ffffffc0083e6b58 T sidtab_context_to_sid
-ffffffc0083e6e50 t sidtab_do_lookup
-ffffffc0083e70b8 t context_destroy
-ffffffc0083e711c t context_destroy
-ffffffc0083e7184 T sidtab_convert
-ffffffc0083e72ec t sidtab_convert_tree
-ffffffc0083e7448 t sidtab_convert_hashtable
-ffffffc0083e75b8 T sidtab_cancel_convert
-ffffffc0083e7608 T sidtab_freeze_begin
-ffffffc0083e7658 T sidtab_freeze_end
-ffffffc0083e768c T sidtab_destroy
-ffffffc0083e7768 t sidtab_destroy_tree
-ffffffc0083e7834 T sidtab_sid2str_put
-ffffffc0083e79dc T sidtab_sid2str_get
-ffffffc0083e7ab8 T avtab_insert_nonunique
-ffffffc0083e7cfc T avtab_search
-ffffffc0083e7e3c T avtab_search_node
-ffffffc0083e7f78 T avtab_search_node_next
-ffffffc0083e7ff4 T avtab_destroy
-ffffffc0083e80b8 T avtab_init
-ffffffc0083e80d0 T avtab_alloc
-ffffffc0083e8178 T avtab_alloc_dup
-ffffffc0083e81e8 T avtab_hash_eval
-ffffffc0083e81f8 T avtab_read_item
-ffffffc0083e8654 T avtab_read
-ffffffc0083e8838 t avtab_insertf
-ffffffc0083e8a94 T avtab_write_item
-ffffffc0083e8be4 T avtab_write
-ffffffc0083e8ca4 T policydb_filenametr_search
-ffffffc0083e8d78 T policydb_rangetr_search
-ffffffc0083e8df8 T policydb_roletr_search
-ffffffc0083e8e78 T policydb_destroy
-ffffffc0083e96a4 t role_tr_destroy
-ffffffc0083e96e8 t filenametr_destroy
-ffffffc0083e9750 t range_tr_destroy
-ffffffc0083e97a4 T policydb_load_isids
-ffffffc0083e9884 T policydb_class_isvalid
-ffffffc0083e98b0 T policydb_role_isvalid
-ffffffc0083e98dc T policydb_type_isvalid
-ffffffc0083e9908 T policydb_context_isvalid
-ffffffc0083e99e8 T string_to_security_class
-ffffffc0083e9a20 T string_to_av_perm
-ffffffc0083e9ab8 T policydb_read
-ffffffc0083ea3a4 t hashtab_insert
-ffffffc0083ea4dc t filename_trans_read
-ffffffc0083eab64 t policydb_index
-ffffffc0083eac70 t ocontext_read
-ffffffc0083eb0f0 t genfs_read
-ffffffc0083eb534 t range_read
-ffffffc0083eb7c4 t policydb_bounds_sanity_check
-ffffffc0083eb850 T policydb_write
-ffffffc0083ebb24 t role_trans_write
-ffffffc0083ebbbc t role_allow_write
-ffffffc0083ebc3c t filename_trans_write
-ffffffc0083ebcdc t ocontext_write
-ffffffc0083ec12c t genfs_write
-ffffffc0083ec330 t range_write
-ffffffc0083ec3cc t common_destroy
-ffffffc0083ec434 t cls_destroy
-ffffffc0083ec57c t role_destroy
-ffffffc0083ec5d4 t type_destroy
-ffffffc0083ec618 t user_destroy
-ffffffc0083ec680 t sens_destroy
-ffffffc0083ec6e8 t cat_destroy
-ffffffc0083ec72c t perm_destroy
-ffffffc0083ec770 t common_read
-ffffffc0083ec910 t class_read
-ffffffc0083ecbfc t role_read
-ffffffc0083ece08 t type_read
-ffffffc0083ecfbc t user_read
-ffffffc0083ed1b4 t sens_read
-ffffffc0083ed368 t cat_read
-ffffffc0083ed490 t perm_read
-ffffffc0083ed5b0 t read_cons_helper
-ffffffc0083ed834 t mls_read_range_helper
-ffffffc0083ed9bc t mls_read_level
-ffffffc0083eda40 t common_index
-ffffffc0083eda84 t class_index
-ffffffc0083edad8 t role_index
-ffffffc0083edb38 t type_index
-ffffffc0083edbac t user_index
-ffffffc0083edc0c t sens_index
-ffffffc0083edc68 t cat_index
-ffffffc0083edcbc t context_read_and_validate
-ffffffc0083eddcc t user_bounds_sanity_check
-ffffffc0083edf5c t role_bounds_sanity_check
-ffffffc0083ee0e8 t type_bounds_sanity_check
-ffffffc0083ee1b0 t common_write
-ffffffc0083ee280 t class_write
-ffffffc0083ee4a0 t role_write
-ffffffc0083ee5c4 t type_write
-ffffffc0083ee6f0 t user_write
-ffffffc0083ee84c t sens_write
-ffffffc0083ee920 t cat_write
-ffffffc0083ee9d0 t perm_write
-ffffffc0083eea6c t write_cons_helper
-ffffffc0083eebd4 t mls_write_range_helper
-ffffffc0083eed00 t role_trans_write_one
-ffffffc0083eed8c t filename_write_helper_compat
-ffffffc0083eef20 t filename_write_helper
-ffffffc0083ef040 t range_write_helper
-ffffffc0083ef0d8 T security_mls_enabled
-ffffffc0083ef13c T services_compute_xperms_drivers
-ffffffc0083ef228 T security_validate_transition_user
-ffffffc0083ef254 t security_compute_validatetrans.llvm.7217213093555417976
-ffffffc0083ef584 T security_validate_transition
-ffffffc0083ef5b4 T security_bounded_transition
-ffffffc0083ef7d0 T services_compute_xperms_decision
-ffffffc0083ef9d4 T security_compute_xperms_decision
-ffffffc0083efd98 T security_compute_av
-ffffffc0083f05f0 T security_compute_av_user
-ffffffc0083f0750 T security_sidtab_hash_stats
-ffffffc0083f07d8 T security_get_initial_sid_context
-ffffffc0083f0808 T security_sid_to_context
-ffffffc0083f0838 t security_sid_to_context_core.llvm.7217213093555417976
-ffffffc0083f0a04 T security_sid_to_context_force
-ffffffc0083f0a38 T security_sid_to_context_inval
-ffffffc0083f0a6c T security_context_to_sid
-ffffffc0083f0aa0 t security_context_to_sid_core.llvm.7217213093555417976
-ffffffc0083f0d34 T security_context_str_to_sid
-ffffffc0083f0da4 T security_context_to_sid_default
-ffffffc0083f0dd4 T security_context_to_sid_force
-ffffffc0083f0e0c T security_transition_sid
-ffffffc0083f0e50 t security_compute_sid.llvm.7217213093555417976
-ffffffc0083f1508 T security_transition_sid_user
-ffffffc0083f1544 T security_member_sid
-ffffffc0083f1580 T security_change_sid
-ffffffc0083f15bc T selinux_policy_cancel
-ffffffc0083f1634 T selinux_policy_commit
-ffffffc0083f1a6c T security_load_policy
-ffffffc0083f1ec0 t convert_context
-ffffffc0083f2180 T security_port_sid
-ffffffc0083f22dc T security_ib_pkey_sid
-ffffffc0083f2434 T security_ib_endport_sid
-ffffffc0083f258c T security_netif_sid
-ffffffc0083f26cc T security_node_sid
-ffffffc0083f28a4 T security_get_user_sids
-ffffffc0083f2d84 T security_genfs_sid
-ffffffc0083f2e28 t __security_genfs_sid.llvm.7217213093555417976
-ffffffc0083f2fb8 T selinux_policy_genfs_sid
-ffffffc0083f2fe4 T security_fs_use
-ffffffc0083f3178 T security_get_bools
-ffffffc0083f32b8 T security_set_bools
-ffffffc0083f34b8 T security_get_bool_value
-ffffffc0083f353c T security_sid_mls_copy
-ffffffc0083f384c t context_struct_to_string
-ffffffc0083f3a08 T security_net_peersid_resolve
-ffffffc0083f3b84 T security_get_classes
-ffffffc0083f3c50 t get_classes_callback
-ffffffc0083f3ca8 T security_get_permissions
-ffffffc0083f3dc8 t get_permissions_callback
-ffffffc0083f3e20 T security_get_reject_unknown
-ffffffc0083f3e88 T security_get_allow_unknown
-ffffffc0083f3ef0 T security_policycap_supported
-ffffffc0083f3f64 T selinux_audit_rule_free
-ffffffc0083f3fd8 T selinux_audit_rule_init
-ffffffc0083f41e8 T selinux_audit_rule_known
-ffffffc0083f4248 T selinux_audit_rule_match
-ffffffc0083f459c T security_read_policy
-ffffffc0083f465c T security_read_state_kernel
-ffffffc0083f4734 t constraint_expr_eval
-ffffffc0083f4c6c t type_attribute_bounds_av
-ffffffc0083f4dec t security_dump_masked_av
-ffffffc0083f5004 t dump_masked_av_helper
-ffffffc0083f5034 t string_to_context_struct
-ffffffc0083f51d0 t aurule_avc_callback
-ffffffc0083f5208 t context_struct_compute_av.62
-ffffffc0083f55f0 T evaluate_cond_nodes
-ffffffc0083f5904 T cond_policydb_init
-ffffffc0083f5928 T cond_policydb_destroy
-ffffffc0083f59c8 T cond_init_bool_indexes
-ffffffc0083f5a28 T cond_destroy_bool
-ffffffc0083f5a6c T cond_index_bool
-ffffffc0083f5ac0 T cond_read_bool
-ffffffc0083f5be8 T cond_read_list
-ffffffc0083f5f5c T cond_write_bool
-ffffffc0083f6008 T cond_write_list
-ffffffc0083f6228 T cond_compute_xperms
-ffffffc0083f62b4 T cond_compute_av
-ffffffc0083f63d8 T cond_policydb_destroy_dup
-ffffffc0083f6434 t cond_bools_destroy.llvm.10050632409518777484
-ffffffc0083f6468 T cond_policydb_dup
-ffffffc0083f67b4 t cond_insertf
-ffffffc0083f68e4 t cond_bools_copy
-ffffffc0083f6948 t cond_bools_index
-ffffffc0083f6968 T mls_compute_context_len
-ffffffc0083f6b7c T mls_sid_to_context
-ffffffc0083f6dfc T mls_level_isvalid
-ffffffc0083f6e7c T mls_range_isvalid
-ffffffc0083f6f80 T mls_context_isvalid
-ffffffc0083f7058 T mls_context_to_sid
-ffffffc0083f7308 t mls_context_cpy
-ffffffc0083f7390 T mls_from_string
-ffffffc0083f7428 T mls_range_set
-ffffffc0083f7488 T mls_setup_user_range
-ffffffc0083f7670 T mls_convert_context
-ffffffc0083f7830 T mls_compute_sid
-ffffffc0083f7ae4 t mls_context_cpy_low
-ffffffc0083f7b74 t mls_context_cpy_high
-ffffffc0083f7c04 t mls_context_glblub
-ffffffc0083f7cb4 T context_compute_hash
-ffffffc0083f7df0 T ipv4_skb_to_auditdata
-ffffffc0083f7ea4 T ipv6_skb_to_auditdata
-ffffffc0083f8068 T common_lsm_audit
-ffffffc0083f8814 T integrity_iint_find
-ffffffc0083f88ac T integrity_inode_get
-ffffffc0083f8a14 T integrity_inode_free
-ffffffc0083f8ae8 T integrity_kernel_read
-ffffffc0083f8b54 T integrity_audit_msg
-ffffffc0083f8b84 T integrity_audit_message
-ffffffc0083f8d1c T crypto_mod_get
-ffffffc0083f8da4 T crypto_mod_put
-ffffffc0083f8e4c T crypto_larval_alloc
-ffffffc0083f8f04 t crypto_larval_destroy
-ffffffc0083f8fdc T crypto_larval_kill
-ffffffc0083f90dc T crypto_wait_for_test
-ffffffc0083f9170 T crypto_probing_notify
-ffffffc0083f91d4 T crypto_alg_mod_lookup
-ffffffc0083f9490 t crypto_larval_wait
-ffffffc0083f9608 T crypto_shoot_alg
-ffffffc0083f9660 T __crypto_alloc_tfm
-ffffffc0083f9810 T crypto_alloc_base
-ffffffc0083f9968 T crypto_create_tfm_node
-ffffffc0083f9ae0 T crypto_find_alg
-ffffffc0083f9b30 T crypto_alloc_tfm_node
-ffffffc0083f9cb4 T crypto_destroy_tfm
-ffffffc0083f9df4 T crypto_has_alg
-ffffffc0083f9eb4 T crypto_req_done
-ffffffc0083f9eec t crypto_alg_lookup
-ffffffc0083fa0d4 t __crypto_alg_lookup
-ffffffc0083fa2c8 T crypto_cipher_setkey
-ffffffc0083fa404 T crypto_cipher_encrypt_one
-ffffffc0083fa51c T crypto_cipher_decrypt_one
-ffffffc0083fa634 T crypto_comp_compress
-ffffffc0083fa680 T crypto_comp_decompress
-ffffffc0083fa6cc T crypto_remove_spawns
-ffffffc0083faa28 T crypto_alg_tested
-ffffffc0083fac88 t crypto_alg_finish_registration
-ffffffc0083fadd4 T crypto_remove_final
-ffffffc0083faedc T crypto_register_alg
-ffffffc0083fb0fc t __crypto_register_alg
-ffffffc0083fb234 T crypto_unregister_alg
-ffffffc0083fb438 T crypto_register_algs
-ffffffc0083fb4e0 T crypto_unregister_algs
-ffffffc0083fb534 T crypto_register_template
-ffffffc0083fb5e0 T crypto_register_templates
-ffffffc0083fb700 T crypto_unregister_template
-ffffffc0083fb954 T crypto_unregister_templates
-ffffffc0083fb9ac T crypto_lookup_template
-ffffffc0083fba34 T crypto_register_instance
-ffffffc0083fbcd0 T crypto_unregister_instance
-ffffffc0083fbed8 T crypto_grab_spawn
-ffffffc0083fc000 T crypto_drop_spawn
-ffffffc0083fc098 T crypto_spawn_tfm
-ffffffc0083fc12c t crypto_spawn_alg
-ffffffc0083fc28c T crypto_spawn_tfm2
-ffffffc0083fc300 T crypto_register_notifier
-ffffffc0083fc338 T crypto_unregister_notifier
-ffffffc0083fc370 T crypto_get_attr_type
-ffffffc0083fc3c0 T crypto_check_attr_type
-ffffffc0083fc448 T crypto_attr_alg_name
-ffffffc0083fc49c T crypto_inst_setname
-ffffffc0083fc530 T crypto_init_queue
-ffffffc0083fc550 T crypto_enqueue_request
-ffffffc0083fc5f8 T crypto_enqueue_request_head
-ffffffc0083fc668 T crypto_dequeue_request
-ffffffc0083fc6f8 T crypto_inc
-ffffffc0083fc76c T crypto_alg_extsize
-ffffffc0083fc788 T crypto_type_has_alg
-ffffffc0083fc7cc t crypto_destroy_instance
-ffffffc0083fc818 T scatterwalk_copychunks
-ffffffc0083fc9c4 T scatterwalk_map_and_copy
-ffffffc0083fcb30 T scatterwalk_ffwd
-ffffffc0083fcc04 t c_start.llvm.6571257494608389932
-ffffffc0083fcc54 t c_stop.llvm.6571257494608389932
-ffffffc0083fcc88 t c_next.llvm.6571257494608389932
-ffffffc0083fccc0 t c_show.llvm.6571257494608389932
-ffffffc0083fceac T crypto_aead_setkey
-ffffffc0083fcfe0 T crypto_aead_setauthsize
-ffffffc0083fd070 T crypto_aead_encrypt
-ffffffc0083fd0d0 T crypto_aead_decrypt
-ffffffc0083fd148 T crypto_grab_aead
-ffffffc0083fd180 T crypto_alloc_aead
-ffffffc0083fd1c0 T crypto_register_aead
-ffffffc0083fd244 T crypto_unregister_aead
-ffffffc0083fd274 T crypto_register_aeads
-ffffffc0083fd380 T crypto_unregister_aeads
-ffffffc0083fd3d8 T aead_register_instance
-ffffffc0083fd470 t crypto_aead_init_tfm.llvm.12973332287016857763
-ffffffc0083fd4f4 t crypto_aead_show.llvm.12973332287016857763
-ffffffc0083fd5b0 t crypto_aead_report.llvm.12973332287016857763
-ffffffc0083fd698 t crypto_aead_free_instance.llvm.12973332287016857763
-ffffffc0083fd6e0 t crypto_aead_exit_tfm
-ffffffc0083fd734 T aead_geniv_alloc
-ffffffc0083fd8f0 t aead_geniv_setkey
-ffffffc0083fd920 t aead_geniv_setauthsize
-ffffffc0083fd950 t aead_geniv_free
-ffffffc0083fd994 T aead_init_geniv
-ffffffc0083fda78 T aead_exit_geniv
-ffffffc0083fdab0 T skcipher_walk_done
-ffffffc0083fdc98 t skcipher_map_dst
-ffffffc0083fdcf0 t skcipher_done_slow
-ffffffc0083fdd64 t skcipher_walk_next
-ffffffc0083fdff8 T skcipher_walk_complete
-ffffffc0083fe140 T skcipher_walk_virt
-ffffffc0083fe19c t skcipher_walk_skcipher
-ffffffc0083fe354 T skcipher_walk_async
-ffffffc0083fe398 T skcipher_walk_aead_encrypt
-ffffffc0083fe3c8 t skcipher_walk_aead_common
-ffffffc0083fe628 T skcipher_walk_aead_decrypt
-ffffffc0083fe668 T crypto_skcipher_setkey
-ffffffc0083fe7b8 T crypto_skcipher_encrypt
-ffffffc0083fe818 T crypto_skcipher_decrypt
-ffffffc0083fe878 T crypto_grab_skcipher
-ffffffc0083fe8b0 T crypto_alloc_skcipher
-ffffffc0083fe8f0 T crypto_alloc_sync_skcipher
-ffffffc0083fe95c T crypto_has_skcipher
-ffffffc0083fe998 T crypto_register_skcipher
-ffffffc0083fea28 T crypto_unregister_skcipher
-ffffffc0083fea58 T crypto_register_skciphers
-ffffffc0083feb88 T crypto_unregister_skciphers
-ffffffc0083febe0 T skcipher_register_instance
-ffffffc0083fec84 T skcipher_alloc_instance_simple
-ffffffc0083fee0c t skcipher_free_instance_simple
-ffffffc0083fee50 t skcipher_setkey_simple
-ffffffc0083feea0 t skcipher_init_tfm_simple
-ffffffc0083feef8 t skcipher_exit_tfm_simple
-ffffffc0083fef28 t skcipher_next_slow
-ffffffc0083ff080 t skcipher_next_copy
-ffffffc0083ff1c4 t crypto_skcipher_init_tfm.llvm.16962796483729331777
-ffffffc0083ff248 t crypto_skcipher_show.llvm.16962796483729331777
-ffffffc0083ff330 t crypto_skcipher_report.llvm.16962796483729331777
-ffffffc0083ff41c t crypto_skcipher_free_instance.llvm.16962796483729331777
-ffffffc0083ff464 t crypto_skcipher_exit_tfm
-ffffffc0083ff4b8 t seqiv_aead_create
-ffffffc0083ff584 t seqiv_aead_encrypt
-ffffffc0083ff768 t seqiv_aead_decrypt
-ffffffc0083ff810 t seqiv_aead_encrypt_complete
-ffffffc0083ff8a0 t seqiv_aead_encrypt_complete2
-ffffffc0083ff908 t echainiv_aead_create
-ffffffc0083ff9dc t echainiv_encrypt
-ffffffc0083ffb64 t echainiv_decrypt
-ffffffc0083ffc04 T crypto_hash_walk_done
-ffffffc0083ffe38 T crypto_hash_walk_first
-ffffffc0083fff44 T crypto_ahash_setkey
-ffffffc008400084 T crypto_ahash_final
-ffffffc0084000b4 t crypto_ahash_op
-ffffffc008400218 T crypto_ahash_finup
-ffffffc00840024c T crypto_ahash_digest
-ffffffc008400290 T crypto_grab_ahash
-ffffffc0084002c8 T crypto_alloc_ahash
-ffffffc008400308 T crypto_has_ahash
-ffffffc008400344 T crypto_register_ahash
-ffffffc0084003b4 T crypto_unregister_ahash
-ffffffc0084003e4 T crypto_register_ahashes
-ffffffc0084004d8 T crypto_unregister_ahashes
-ffffffc008400530 T ahash_register_instance
-ffffffc0084005b4 T crypto_hash_alg_has_setkey
-ffffffc0084005ec t ahash_nosetkey
-ffffffc008400600 t ahash_op_unaligned_done
-ffffffc008400704 t crypto_ahash_extsize.llvm.13513438439668096230
-ffffffc00840074c t crypto_ahash_init_tfm.llvm.13513438439668096230
-ffffffc008400854 t crypto_ahash_show.llvm.13513438439668096230
-ffffffc0084008ec t crypto_ahash_report.llvm.13513438439668096230
-ffffffc008400998 t crypto_ahash_free_instance.llvm.13513438439668096230
-ffffffc0084009e0 t ahash_def_finup
-ffffffc008400b64 t crypto_ahash_exit_tfm
-ffffffc008400bb8 t ahash_def_finup_done1
-ffffffc008400d24 t ahash_def_finup_done2
-ffffffc008400dd8 T crypto_shash_alg_has_setkey
-ffffffc008400dfc t shash_no_setkey.llvm.13171256970635599027
-ffffffc008400e10 T crypto_shash_setkey
-ffffffc008400f58 T crypto_shash_update
-ffffffc0084010e4 T crypto_shash_final
-ffffffc00840122c T crypto_shash_finup
-ffffffc008401294 t shash_finup_unaligned
-ffffffc008401510 T crypto_shash_digest
-ffffffc008401614 t shash_digest_unaligned
-ffffffc0084016f8 T crypto_shash_tfm_digest
-ffffffc008401864 T shash_ahash_update
-ffffffc008401a30 T shash_ahash_finup
-ffffffc008401d50 T shash_ahash_digest
-ffffffc008401f6c T crypto_init_shash_ops_async
-ffffffc00840208c t crypto_exit_shash_ops_async
-ffffffc0084020c0 t shash_async_init
-ffffffc008402128 t shash_async_update
-ffffffc008402158 t shash_async_final
-ffffffc0084022a0 t shash_async_finup
-ffffffc0084022dc t shash_async_digest
-ffffffc008402318 t shash_async_setkey
-ffffffc008402460 t shash_async_export
-ffffffc0084024b0 t shash_async_import
-ffffffc008402518 T crypto_grab_shash
-ffffffc008402550 T crypto_alloc_shash
-ffffffc008402590 T crypto_has_shash
-ffffffc0084025cc T crypto_register_shash
-ffffffc0084026c8 T crypto_unregister_shash
-ffffffc0084026f8 T crypto_register_shashes
-ffffffc008402890 T crypto_unregister_shashes
-ffffffc0084028e8 T shash_register_instance
-ffffffc0084029f8 T shash_free_singlespawn_instance
-ffffffc008402a3c t crypto_shash_init_tfm.llvm.13171256970635599027
-ffffffc008402b28 t crypto_shash_show.llvm.13171256970635599027
-ffffffc008402b94 t crypto_shash_report.llvm.13171256970635599027
-ffffffc008402c40 t crypto_shash_free_instance.llvm.13171256970635599027
-ffffffc008402c88 t crypto_shash_exit_tfm
-ffffffc008402cdc t shash_default_export
-ffffffc008402d20 t shash_default_import
-ffffffc008402d58 T crypto_grab_akcipher
-ffffffc008402d90 T crypto_alloc_akcipher
-ffffffc008402dd0 T crypto_register_akcipher
-ffffffc008402ea8 t akcipher_default_op
-ffffffc008402ebc t akcipher_default_set_key
-ffffffc008402ed0 T crypto_unregister_akcipher
-ffffffc008402f00 T akcipher_register_instance
-ffffffc008402f64 t crypto_akcipher_init_tfm
-ffffffc008402fd0 t crypto_akcipher_show
-ffffffc008403004 t crypto_akcipher_report
-ffffffc00840309c t crypto_akcipher_free_instance
-ffffffc0084030e4 t crypto_akcipher_exit_tfm
-ffffffc008403130 T crypto_alloc_kpp
-ffffffc008403170 T crypto_grab_kpp
-ffffffc0084031a8 T crypto_has_kpp
-ffffffc0084031e4 T crypto_register_kpp
-ffffffc008403234 T crypto_unregister_kpp
-ffffffc008403264 T kpp_register_instance
-ffffffc0084032c8 t crypto_kpp_init_tfm
-ffffffc008403334 t crypto_kpp_show
-ffffffc008403368 t crypto_kpp_report
-ffffffc008403400 t crypto_kpp_free_instance
-ffffffc008403448 t crypto_kpp_exit_tfm
-ffffffc008403494 T crypto_alloc_acomp
-ffffffc0084034d4 T crypto_alloc_acomp_node
-ffffffc008403514 T acomp_request_alloc
-ffffffc008403580 T acomp_request_free
-ffffffc008403610 T crypto_register_acomp
-ffffffc008403660 T crypto_unregister_acomp
-ffffffc008403690 T crypto_register_acomps
-ffffffc008403760 T crypto_unregister_acomps
-ffffffc0084037b8 t crypto_acomp_extsize
-ffffffc008403808 t crypto_acomp_init_tfm
-ffffffc0084038b4 t crypto_acomp_show
-ffffffc0084038e8 t crypto_acomp_report
-ffffffc008403980 t crypto_acomp_exit_tfm
-ffffffc0084039d4 T crypto_init_scomp_ops_async
-ffffffc008403a94 t crypto_exit_scomp_ops_async
-ffffffc008403b7c t scomp_acomp_compress
-ffffffc008403bac t scomp_acomp_decompress
-ffffffc008403bdc T crypto_acomp_scomp_alloc_ctx
-ffffffc008403c5c T crypto_acomp_scomp_free_ctx
-ffffffc008403cb8 T crypto_register_scomp
-ffffffc008403d08 T crypto_unregister_scomp
-ffffffc008403d38 T crypto_register_scomps
-ffffffc008403e08 T crypto_unregister_scomps
-ffffffc008403e5c t scomp_acomp_comp_decomp
-ffffffc008403fd4 t crypto_scomp_init_tfm
-ffffffc00840412c t crypto_scomp_show
-ffffffc008404160 t crypto_scomp_report
-ffffffc0084041f8 t cryptomgr_notify
-ffffffc0084044e4 t cryptomgr_probe
-ffffffc008404584 t crypto_alg_put
-ffffffc00840462c T alg_test
-ffffffc008404640 t hmac_create
-ffffffc008404868 t hmac_init
-ffffffc008404900 t hmac_update
-ffffffc008404930 t hmac_final
-ffffffc008404a04 t hmac_finup
-ffffffc008404ad8 t hmac_export
-ffffffc008404b28 t hmac_import
-ffffffc008404bc0 t hmac_setkey
-ffffffc008404e30 t hmac_init_tfm
-ffffffc008404ec0 t hmac_exit_tfm
-ffffffc008404f24 t xcbc_create
-ffffffc008405100 t xcbc_init_tfm
-ffffffc008405158 t xcbc_exit_tfm
-ffffffc00840518c t crypto_xcbc_digest_init
-ffffffc0084051e8 t crypto_xcbc_digest_update
-ffffffc008405328 t crypto_xcbc_digest_final
-ffffffc008405424 t crypto_xcbc_digest_setkey
-ffffffc0084054f8 T crypto_get_default_null_skcipher
-ffffffc008405584 T crypto_put_default_null_skcipher
-ffffffc0084055f4 t null_setkey
-ffffffc008405608 t null_crypt
-ffffffc008405620 t null_compress
-ffffffc008405680 t null_init
-ffffffc008405694 t null_update
-ffffffc0084056a8 t null_final
-ffffffc0084056bc t null_digest
-ffffffc0084056d0 t null_hash_setkey
-ffffffc0084056e4 t null_skcipher_setkey
-ffffffc0084056f8 t null_skcipher_crypt
-ffffffc0084057b4 t md5_init
-ffffffc0084057f4 t md5_update
-ffffffc0084058f4 t md5_final
-ffffffc0084059d4 t md5_export
-ffffffc008405a1c t md5_import
-ffffffc008405a60 t md5_transform
-ffffffc008406444 T crypto_sha1_update
-ffffffc0084065d0 T crypto_sha1_finup
-ffffffc00840676c t sha1_final
-ffffffc008406904 t sha1_base_init
-ffffffc008406950 T crypto_sha256_update
-ffffffc008406984 T crypto_sha256_finup
-ffffffc0084069fc t crypto_sha256_final
-ffffffc008406a48 t sha256_base_init
-ffffffc008406aac t sha224_base_init
-ffffffc008406b10 T crypto_sha512_update
-ffffffc008406c1c t sha512_generic_block_fn
-ffffffc0084071cc T crypto_sha512_finup
-ffffffc0084072f0 t sha512_final
-ffffffc0084074a8 t sha512_base_init
-ffffffc008407554 t sha384_base_init
-ffffffc008407600 T blake2b_compress_generic
-ffffffc008408e88 t crypto_blake2b_init
-ffffffc008408fc8 t crypto_blake2b_update_generic
-ffffffc0084090d8 t crypto_blake2b_final_generic
-ffffffc008409174 t crypto_blake2b_setkey
-ffffffc0084091d4 T gf128mul_x8_ble
-ffffffc008409208 T gf128mul_lle
-ffffffc008409404 T gf128mul_bbe
-ffffffc0084095ec T gf128mul_init_64k_bbe
-ffffffc008409ba8 T gf128mul_free_64k
-ffffffc008409c64 T gf128mul_64k_bbe
-ffffffc008409dd8 T gf128mul_init_4k_lle
-ffffffc00840a060 T gf128mul_init_4k_bbe
-ffffffc00840a2d4 T gf128mul_4k_lle
-ffffffc00840a344 T gf128mul_4k_bbe
-ffffffc00840a3b4 t crypto_cbc_create
-ffffffc00840a498 t crypto_cbc_encrypt
-ffffffc00840a660 t crypto_cbc_decrypt
-ffffffc00840a8d4 t crypto_ctr_create
-ffffffc00840a998 t crypto_rfc3686_create
-ffffffc00840ab9c t crypto_ctr_crypt
-ffffffc00840ae00 t crypto_rfc3686_setkey
-ffffffc00840ae68 t crypto_rfc3686_crypt
-ffffffc00840aefc t crypto_rfc3686_init_tfm
-ffffffc00840af68 t crypto_rfc3686_exit_tfm
-ffffffc00840af9c t crypto_rfc3686_free
-ffffffc00840afe0 t crypto_xctr_create
-ffffffc00840b09c t crypto_xctr_crypt
-ffffffc00840b370 t hctr2_create_base
-ffffffc00840b3f8 t hctr2_create
-ffffffc00840b4d0 t hctr2_create_common
-ffffffc00840b800 t hctr2_setkey
-ffffffc00840baac t hctr2_encrypt
-ffffffc00840badc t hctr2_decrypt
-ffffffc00840bb0c t hctr2_init_tfm
-ffffffc00840bbfc t hctr2_exit_tfm
-ffffffc00840bc54 t hctr2_free_instance
-ffffffc00840bca4 t hctr2_crypt
-ffffffc00840bf78 t hctr2_hash_message
-ffffffc00840c0d0 t hctr2_xctr_done
-ffffffc00840c1fc t adiantum_create
-ffffffc00840c4d8 t adiantum_supported_algorithms
-ffffffc00840c588 t adiantum_setkey
-ffffffc00840c764 t adiantum_encrypt
-ffffffc00840c794 t adiantum_decrypt
-ffffffc00840c7c4 t adiantum_init_tfm
-ffffffc00840c8a4 t adiantum_exit_tfm
-ffffffc00840c8fc t adiantum_free_instance
-ffffffc00840c94c t adiantum_crypt
-ffffffc00840cb04 t adiantum_hash_message
-ffffffc00840cc6c t adiantum_streamcipher_done
-ffffffc00840ccd0 t adiantum_finish
-ffffffc00840cdc0 T crypto_nhpoly1305_setkey
-ffffffc00840ce34 T crypto_nhpoly1305_init
-ffffffc00840ce58 T crypto_nhpoly1305_update_helper
-ffffffc00840cf70 t nhpoly1305_units
-ffffffc00840d104 T crypto_nhpoly1305_update
-ffffffc00840d21c t nh_generic
-ffffffc00840d31c T crypto_nhpoly1305_final_helper
-ffffffc00840d3f0 T crypto_nhpoly1305_final
-ffffffc00840d4c4 t crypto_gcm_base_create
-ffffffc00840d54c t crypto_gcm_create
-ffffffc00840d628 t crypto_rfc4106_create
-ffffffc00840d828 t crypto_rfc4543_create
-ffffffc00840da24 t crypto_gcm_create_common
-ffffffc00840dcb4 t crypto_gcm_init_tfm
-ffffffc00840dd6c t crypto_gcm_exit_tfm
-ffffffc00840ddb8 t crypto_gcm_setkey
-ffffffc00840df24 t crypto_gcm_setauthsize
-ffffffc00840df58 t crypto_gcm_encrypt
-ffffffc00840e0dc t crypto_gcm_decrypt
-ffffffc00840e1d8 t crypto_gcm_free
-ffffffc00840e220 t crypto_gcm_init_common
-ffffffc00840e360 t gcm_encrypt_done
-ffffffc00840e48c t gcm_enc_copy_hash
-ffffffc00840e504 t gcm_hash_init_done
-ffffffc00840e570 t gcm_hash_init_continue
-ffffffc00840e69c t gcm_hash_assoc_done
-ffffffc00840e78c t gcm_hash_assoc_remain_continue
-ffffffc00840e8e4 t gcm_hash_assoc_remain_done
-ffffffc00840e954 t gcm_hash_crypt_done
-ffffffc00840e9c0 t gcm_hash_crypt_continue
-ffffffc00840eb70 t gcm_hash_crypt_remain_done
-ffffffc00840eca8 t gcm_hash_len_done
-ffffffc00840ed4c t gcm_dec_hash_continue
-ffffffc00840ee68 t gcm_decrypt_done
-ffffffc00840ef48 t crypto_rfc4106_init_tfm
-ffffffc00840efbc t crypto_rfc4106_exit_tfm
-ffffffc00840eff0 t crypto_rfc4106_setkey
-ffffffc00840f058 t crypto_rfc4106_setauthsize
-ffffffc00840f0b0 t crypto_rfc4106_encrypt
-ffffffc00840f0f8 t crypto_rfc4106_decrypt
-ffffffc00840f140 t crypto_rfc4106_free
-ffffffc00840f180 t crypto_rfc4106_crypt
-ffffffc00840f334 t crypto_rfc4543_init_tfm
-ffffffc00840f3dc t crypto_rfc4543_exit_tfm
-ffffffc00840f414 t crypto_rfc4543_setkey
-ffffffc00840f47c t crypto_rfc4543_setauthsize
-ffffffc00840f4bc t crypto_rfc4543_encrypt
-ffffffc00840f504 t crypto_rfc4543_decrypt
-ffffffc00840f54c t crypto_rfc4543_free
-ffffffc00840f58c t crypto_rfc4543_crypt
-ffffffc00840f70c t rfc7539_create
-ffffffc00840f744 t rfc7539esp_create
-ffffffc00840f778 t chachapoly_create
-ffffffc00840fa14 t chachapoly_init
-ffffffc00840fad4 t chachapoly_exit
-ffffffc00840fb20 t chachapoly_encrypt
-ffffffc00840fc28 t chachapoly_decrypt
-ffffffc00840fc68 t chachapoly_setkey
-ffffffc00840fd0c t chachapoly_setauthsize
-ffffffc00840fd28 t chachapoly_free
-ffffffc00840fd74 t chacha_encrypt_done
-ffffffc00840fdf8 t poly_genkey
-ffffffc00840ff0c t poly_genkey_done
-ffffffc00840ff90 t poly_init
-ffffffc008410104 t poly_init_done
-ffffffc008410264 t poly_setkey_done
-ffffffc008410344 t poly_ad_done
-ffffffc0084103c8 t poly_adpad
-ffffffc008410504 t poly_adpad_done
-ffffffc008410608 t poly_cipher_done
-ffffffc00841068c t poly_cipherpad
-ffffffc0084107b0 t poly_cipherpad_done
-ffffffc0084108a0 t poly_tail_done
-ffffffc008410924 t poly_tail_continue
-ffffffc008410ab4 t chacha_decrypt_done
-ffffffc008410b98 t des_setkey
-ffffffc008410c18 t crypto_des_encrypt
-ffffffc008410c48 t crypto_des_decrypt
-ffffffc008410c78 t des3_ede_setkey
-ffffffc008410cf8 t crypto_des3_ede_encrypt
-ffffffc008410d28 t crypto_des3_ede_decrypt
-ffffffc008410d58 T crypto_aes_set_key
-ffffffc008410d88 t crypto_aes_encrypt
-ffffffc008411924 t crypto_aes_decrypt
-ffffffc0084124d8 t chacha20_setkey
-ffffffc008412548 t crypto_chacha_crypt
-ffffffc008412580 t crypto_xchacha_crypt
-ffffffc0084126ac t chacha12_setkey
-ffffffc008412718 t chacha_stream_xor
-ffffffc00841286c t crypto_poly1305_init
-ffffffc008412898 t crypto_poly1305_update
-ffffffc0084129c8 t crypto_poly1305_final
-ffffffc008412a08 t poly1305_blocks
-ffffffc008412a88 t crypto_poly1305_setdesckey
-ffffffc008412b3c t deflate_compress
-ffffffc008412bdc t deflate_decompress
-ffffffc008412ce4 t deflate_init
-ffffffc008412d18 t deflate_exit
-ffffffc008412d68 t __deflate_init
-ffffffc008412e5c t deflate_alloc_ctx
-ffffffc008412ed0 t deflate_free_ctx
-ffffffc008412f2c t deflate_scompress
-ffffffc008412fc8 t deflate_sdecompress
-ffffffc0084130d0 t zlib_deflate_alloc_ctx
-ffffffc008413144 t chksum_init
-ffffffc008413168 t chksum_update
-ffffffc0084131b4 t chksum_final
-ffffffc0084131d4 t chksum_finup
-ffffffc008413224 t chksum_digest
-ffffffc008413278 t chksum_setkey
-ffffffc0084132a8 t crc32c_cra_init
-ffffffc0084132c8 T crypto_authenc_extractkeys
-ffffffc00841334c t crypto_authenc_create
-ffffffc0084135a4 t crypto_authenc_init_tfm
-ffffffc008413688 t crypto_authenc_exit_tfm
-ffffffc0084136d8 t crypto_authenc_setkey
-ffffffc008413804 t crypto_authenc_encrypt
-ffffffc0084139d8 t crypto_authenc_decrypt
-ffffffc008413a90 t crypto_authenc_free
-ffffffc008413ae0 t crypto_authenc_encrypt_done
-ffffffc008413be0 t authenc_geniv_ahash_done
-ffffffc008413c70 t authenc_verify_ahash_done
-ffffffc008413ce8 t crypto_authenc_decrypt_tail
-ffffffc008413de8 t crypto_authenc_esn_create
-ffffffc008414030 t crypto_authenc_esn_init_tfm
-ffffffc008414120 t crypto_authenc_esn_exit_tfm
-ffffffc008414170 t crypto_authenc_esn_setkey
-ffffffc008414260 t crypto_authenc_esn_setauthsize
-ffffffc008414280 t crypto_authenc_esn_encrypt
-ffffffc0084143f0 t crypto_authenc_esn_decrypt
-ffffffc0084145cc t crypto_authenc_esn_free
-ffffffc00841461c t crypto_authenc_esn_encrypt_done
-ffffffc008414694 t crypto_authenc_esn_genicv
-ffffffc00841489c t authenc_esn_geniv_ahash_done
-ffffffc0084149e0 t authenc_esn_verify_ahash_done
-ffffffc008414a58 t crypto_authenc_esn_decrypt_tail
-ffffffc008414bf0 t lzo_compress
-ffffffc008414c88 t lzo_decompress
-ffffffc008414d1c t lzo_init
-ffffffc008414d7c t lzo_exit
-ffffffc008414dac t lzo_alloc_ctx
-ffffffc008414df0 t lzo_free_ctx
-ffffffc008414e20 t lzo_scompress
-ffffffc008414eb4 t lzo_sdecompress
-ffffffc008414f48 t lzorle_compress
-ffffffc008414fe0 t lzorle_decompress
-ffffffc008415074 t lzorle_init
-ffffffc0084150d4 t lzorle_exit
-ffffffc008415104 t lzorle_alloc_ctx
-ffffffc008415148 t lzorle_free_ctx
-ffffffc008415178 t lzorle_scompress
-ffffffc00841520c t lzorle_sdecompress
-ffffffc0084152a0 t lz4_compress_crypto
-ffffffc008415308 t lz4_decompress_crypto
-ffffffc008415368 t lz4_init
-ffffffc0084153c0 t lz4_exit
-ffffffc0084153f0 t lz4_alloc_ctx
-ffffffc00841542c t lz4_free_ctx
-ffffffc00841545c t lz4_scompress
-ffffffc0084154c4 t lz4_sdecompress
-ffffffc008415524 T crypto_rng_reset
-ffffffc0084155f8 T crypto_alloc_rng
-ffffffc008415638 T crypto_get_default_rng
-ffffffc008415790 T crypto_put_default_rng
-ffffffc0084157e8 T crypto_del_default_rng
-ffffffc008415860 T crypto_register_rng
-ffffffc0084158c4 T crypto_unregister_rng
-ffffffc0084158f4 T crypto_register_rngs
-ffffffc0084159d8 T crypto_unregister_rngs
-ffffffc008415a30 t crypto_rng_init_tfm.llvm.2679959179737813036
-ffffffc008415a44 t crypto_rng_show.llvm.2679959179737813036
-ffffffc008415a9c t crypto_rng_report.llvm.2679959179737813036
-ffffffc008415b44 t cprng_get_random
-ffffffc008415ce8 t cprng_reset
-ffffffc008415e20 t cprng_init
-ffffffc008415f68 t cprng_exit
-ffffffc008415f98 t _get_more_prng_bytes
-ffffffc0084166a0 t drbg_kcapi_init
-ffffffc0084166e4 t drbg_kcapi_cleanup
-ffffffc008416798 t drbg_kcapi_random
-ffffffc008416b30 t drbg_kcapi_seed
-ffffffc008416fc4 t drbg_kcapi_set_entropy
-ffffffc00841702c t drbg_seed
-ffffffc008417330 t drbg_hmac_update
-ffffffc0084176a8 t drbg_hmac_generate
-ffffffc0084178cc t drbg_init_hash_kernel
-ffffffc0084179ac t drbg_fini_hash_kernel
-ffffffc008417a04 T jent_read_entropy
-ffffffc008417b74 t jent_gen_entropy
-ffffffc008417c20 t jent_health_failure
-ffffffc008417c4c t jent_rct_failure
-ffffffc008417c88 T jent_entropy_init
-ffffffc008417f80 t jent_apt_reset
-ffffffc008417fbc T jent_entropy_collector_alloc
-ffffffc00841809c T jent_entropy_collector_free
-ffffffc0084180e8 t jent_lfsr_time
-ffffffc0084182a0 t jent_delta
-ffffffc0084182f4 t jent_stuck
-ffffffc0084183c0 t jent_measure_jitter
-ffffffc008418480 t jent_memaccess
-ffffffc0084185bc t jent_loop_shuffle
-ffffffc0084186e4 t jent_apt_insert
-ffffffc0084187d8 t jent_rct_insert
-ffffffc008418878 T jent_zalloc
-ffffffc0084188ac T jent_zfree
-ffffffc0084188d8 T jent_panic
-ffffffc008418900 T jent_memcpy
-ffffffc008418930 T jent_get_nstime
-ffffffc008418994 t jent_kcapi_random
-ffffffc008418a84 t jent_kcapi_reset
-ffffffc008418a98 t jent_kcapi_init
-ffffffc008418af0 t jent_kcapi_cleanup
-ffffffc008418b48 t ghash_init
-ffffffc008418b68 t ghash_update
-ffffffc008418c8c t ghash_final
-ffffffc008418d00 t ghash_setkey
-ffffffc008418dac t ghash_exit_tfm
-ffffffc008418de0 T polyval_mul_non4k
-ffffffc008418e90 T polyval_update_non4k
-ffffffc008418f84 t polyval_init
-ffffffc008418fa4 t polyval_update
-ffffffc0084190d0 t polyval_final
-ffffffc008419134 t polyval_setkey
-ffffffc0084191f8 t polyval_exit_tfm
-ffffffc008419228 t zstd_compress
-ffffffc008419300 t zstd_decompress
-ffffffc00841936c t zstd_init
-ffffffc00841939c t zstd_exit
-ffffffc0084193ec t __zstd_init
-ffffffc008419504 t zstd_alloc_ctx
-ffffffc008419574 t zstd_free_ctx
-ffffffc0084195d0 t zstd_scompress
-ffffffc0084196a8 t zstd_sdecompress
-ffffffc008419714 t essiv_create
-ffffffc008419b78 t parse_cipher_name
-ffffffc008419c04 t essiv_supported_algorithms
-ffffffc008419cb4 t essiv_skcipher_setkey
-ffffffc008419dbc t essiv_skcipher_encrypt
-ffffffc008419e44 t essiv_skcipher_decrypt
-ffffffc008419ecc t essiv_skcipher_init_tfm
-ffffffc008419fb4 t essiv_skcipher_exit_tfm
-ffffffc00841a00c t essiv_skcipher_free_instance
-ffffffc00841a050 t essiv_aead_setkey
-ffffffc00841a1f0 t essiv_aead_setauthsize
-ffffffc00841a220 t essiv_aead_encrypt
-ffffffc00841a250 t essiv_aead_decrypt
-ffffffc00841a280 t essiv_aead_init_tfm
-ffffffc00841a378 t essiv_aead_exit_tfm
-ffffffc00841a3d0 t essiv_aead_free_instance
-ffffffc00841a414 t essiv_skcipher_done
-ffffffc00841a460 t essiv_aead_crypt
-ffffffc00841a69c t essiv_aead_done
-ffffffc00841a70c T I_BDEV
-ffffffc00841a720 T invalidate_bdev
-ffffffc00841a7a0 T truncate_bdev_range
-ffffffc00841a880 T bd_prepare_to_claim
-ffffffc00841a9ec T bd_abort_claiming
-ffffffc00841aa60 T set_blocksize
-ffffffc00841aba4 T sync_blockdev
-ffffffc00841abe4 T sb_set_blocksize
-ffffffc00841ac5c T sb_min_blocksize
-ffffffc00841acf4 T sync_blockdev_nowait
-ffffffc00841ad2c T sync_blockdev_range
-ffffffc00841ad60 T fsync_bdev
-ffffffc00841add4 T freeze_bdev
-ffffffc00841aec4 T thaw_bdev
-ffffffc00841afa8 T bdev_read_page
-ffffffc00841b064 T bdev_write_page
-ffffffc00841b14c T bdev_alloc
-ffffffc00841b22c T bdev_add
-ffffffc00841b278 T nr_blockdev_pages
-ffffffc00841b2fc t bd_may_claim
-ffffffc00841b354 T blkdev_get_no_open
-ffffffc00841b418 T blkdev_put_no_open
-ffffffc00841b44c T blkdev_get_by_dev
-ffffffc00841b7a4 t blkdev_get_whole
-ffffffc00841b8f8 T blkdev_get_by_path
-ffffffc00841ba24 T lookup_bdev
-ffffffc00841bafc T blkdev_put
-ffffffc00841bd70 T __invalidate_device
-ffffffc00841be34 T sync_bdevs
-ffffffc00841bf78 T bdev_statx_dioalign
-ffffffc00841c008 t bd_init_fs_context
-ffffffc00841c074 t bdev_alloc_inode
-ffffffc00841c0d0 t bdev_free_inode
-ffffffc00841c174 t bdev_evict_inode
-ffffffc00841c1bc t blkdev_flush_mapping
-ffffffc00841c30c t blkdev_writepage.llvm.578785901211841100
-ffffffc00841c344 t blkdev_read_folio.llvm.578785901211841100
-ffffffc00841c37c t blkdev_writepages.llvm.578785901211841100
-ffffffc00841c3a8 t blkdev_readahead.llvm.578785901211841100
-ffffffc00841c3dc t blkdev_write_begin.llvm.578785901211841100
-ffffffc00841c424 t blkdev_write_end.llvm.578785901211841100
-ffffffc00841c4d0 t blkdev_direct_IO.llvm.578785901211841100
-ffffffc00841c8e8 t blkdev_llseek.llvm.578785901211841100
-ffffffc00841c96c t blkdev_read_iter.llvm.578785901211841100
-ffffffc00841cadc t blkdev_write_iter.llvm.578785901211841100
-ffffffc00841cc3c t blkdev_open.llvm.578785901211841100
-ffffffc00841ccec t blkdev_close.llvm.578785901211841100
-ffffffc00841cd24 t blkdev_fsync.llvm.578785901211841100
-ffffffc00841cd70 t blkdev_fallocate.llvm.578785901211841100
-ffffffc00841cef0 t blkdev_get_block
-ffffffc00841cf3c t __blkdev_direct_IO
-ffffffc00841d330 t blkdev_bio_end_io_async
-ffffffc00841d3e4 t blkdev_bio_end_io
-ffffffc00841d554 t generic_write_sync
-ffffffc00841d5d8 T bvec_free
-ffffffc00841d650 t biovec_slab
-ffffffc00841d6a4 T bvec_alloc
-ffffffc00841d758 T bio_uninit
-ffffffc00841d78c T bio_init
-ffffffc00841d7d0 T bio_reset
-ffffffc00841d848 T bio_chain
-ffffffc00841d8bc t bio_chain_endio
-ffffffc00841d910 T blk_next_bio
-ffffffc00841d9d8 T bio_alloc_bioset
-ffffffc00841dda0 t punt_bios_to_rescuer
-ffffffc00841df3c T bio_kmalloc
-ffffffc00841df88 T zero_fill_bio
-ffffffc00841e0b0 T guard_bio_eod
-ffffffc00841e104 t bio_truncate
-ffffffc00841e2e8 T bio_put
-ffffffc00841e4ac t bio_free
-ffffffc00841e564 T bio_alloc_clone
-ffffffc00841e644 T bio_init_clone
-ffffffc00841e724 T bio_add_hw_page
-ffffffc00841e8e8 T bio_add_pc_page
-ffffffc00841e948 T bio_add_zone_append_page
-ffffffc00841ea08 T __bio_add_page
-ffffffc00841ea7c T bio_add_page
-ffffffc00841ebd8 T bio_add_folio
-ffffffc00841ec20 T __bio_release_pages
-ffffffc00841ed7c T bio_iov_bvec_set
-ffffffc00841edf8 T bio_iov_iter_get_pages
-ffffffc00841f34c T submit_bio_wait
-ffffffc00841f410 t submit_bio_wait_endio
-ffffffc00841f440 T __bio_advance
-ffffffc00841f574 T bio_copy_data_iter
-ffffffc00841f790 T bio_copy_data
-ffffffc00841f814 T bio_free_pages
-ffffffc00841f8e8 T bio_set_pages_dirty
-ffffffc00841f9d4 T bio_check_pages_dirty
-ffffffc00841fc18 T bio_endio
-ffffffc00841fe14 T bio_split
-ffffffc00841fee0 T bio_trim
-ffffffc00841ff60 T biovec_init_pool
-ffffffc00841ffac T bioset_exit
-ffffffc008420180 T bioset_init
-ffffffc008420418 t bio_alloc_rescue
-ffffffc00842049c t bio_dirty_fn
-ffffffc008420520 t bio_cpu_dead
-ffffffc0084205b0 T elv_bio_merge_ok
-ffffffc00842063c T elevator_alloc
-ffffffc0084206dc T elevator_exit
-ffffffc008420750 T elv_rqhash_del
-ffffffc008420794 T elv_rqhash_add
-ffffffc008420804 T elv_rqhash_reposition
-ffffffc008420890 T elv_rqhash_find
-ffffffc008420994 T elv_rb_add
-ffffffc008420a1c T elv_rb_del
-ffffffc008420a70 T elv_rb_find
-ffffffc008420ac4 T elv_merge
-ffffffc008420d38 T elv_attempt_insert_merge
-ffffffc008420f68 T elv_merged_request
-ffffffc00842106c T elv_merge_requests
-ffffffc008421158 T elv_latter_request
-ffffffc0084211b4 T elv_former_request
-ffffffc008421210 T elv_register_queue
-ffffffc0084212d4 T elv_unregister_queue
-ffffffc00842133c T elv_register
-ffffffc0084214d8 T elv_unregister
-ffffffc008421560 T elevator_init_mq
-ffffffc00842170c T elevator_switch
-ffffffc0084218c0 T elv_iosched_store
-ffffffc008421b00 T elv_iosched_show
-ffffffc008421ca4 T elv_rb_former_request
-ffffffc008421ce0 T elv_rb_latter_request
-ffffffc008421d1c t elevator_release
-ffffffc008421d4c t elv_attr_show
-ffffffc008421df4 t elv_attr_store
-ffffffc008421eac T __traceiter_block_touch_buffer
-ffffffc008421f2c T __traceiter_block_dirty_buffer
-ffffffc008421fac T __traceiter_block_rq_requeue
-ffffffc00842202c T __traceiter_block_rq_complete
-ffffffc0084220c4 T __traceiter_block_rq_error
-ffffffc00842215c T __traceiter_block_rq_insert
-ffffffc0084221dc T __traceiter_block_rq_issue
-ffffffc00842225c T __traceiter_block_rq_merge
-ffffffc0084222dc T __traceiter_block_bio_complete
-ffffffc00842236c T __traceiter_block_bio_bounce
-ffffffc0084223ec T __traceiter_block_bio_backmerge
-ffffffc00842246c T __traceiter_block_bio_frontmerge
-ffffffc0084224ec T __traceiter_block_bio_queue
-ffffffc00842256c T __traceiter_block_getrq
-ffffffc0084225ec T __traceiter_block_plug
-ffffffc00842266c T __traceiter_block_unplug
-ffffffc008422704 T __traceiter_block_split
-ffffffc008422794 T __traceiter_block_bio_remap
-ffffffc00842282c T __traceiter_block_rq_remap
-ffffffc0084228c4 t trace_event_raw_event_block_buffer
-ffffffc008422994 t perf_trace_block_buffer
-ffffffc008422ab8 t trace_event_raw_event_block_rq_requeue
-ffffffc008422bf0 t perf_trace_block_rq_requeue
-ffffffc008422d8c t trace_event_raw_event_block_rq_completion
-ffffffc008422ec8 t perf_trace_block_rq_completion
-ffffffc008423068 t trace_event_raw_event_block_rq
-ffffffc0084231b8 t perf_trace_block_rq
-ffffffc00842336c t trace_event_raw_event_block_bio_complete
-ffffffc008423480 t perf_trace_block_bio_complete
-ffffffc0084235f8 t trace_event_raw_event_block_bio
-ffffffc0084236f8 t perf_trace_block_bio
-ffffffc008423858 t trace_event_raw_event_block_plug
-ffffffc008423910 t perf_trace_block_plug
-ffffffc008423a24 t trace_event_raw_event_block_unplug
-ffffffc008423af0 t perf_trace_block_unplug
-ffffffc008423c10 t trace_event_raw_event_block_split
-ffffffc008423d10 t perf_trace_block_split
-ffffffc008423e68 t trace_event_raw_event_block_bio_remap
-ffffffc008423f68 t perf_trace_block_bio_remap
-ffffffc0084240c8 t trace_event_raw_event_block_rq_remap
-ffffffc0084241ec t perf_trace_block_rq_remap
-ffffffc008424370 T blk_queue_flag_set
-ffffffc0084243c4 T blk_queue_flag_clear
-ffffffc008424418 T blk_queue_flag_test_and_set
-ffffffc008424474 T blk_op_str
-ffffffc0084244c0 T errno_to_blk_status
-ffffffc0084245f4 T blk_status_to_errno
-ffffffc008424634 T blk_status_to_str
-ffffffc00842468c T blk_sync_queue
-ffffffc0084246d4 T blk_set_pm_only
-ffffffc008424718 T blk_clear_pm_only
-ffffffc0084247a0 T blk_put_queue
-ffffffc0084247d0 T blk_queue_start_drain
-ffffffc00842482c T blk_queue_enter
-ffffffc0084249b4 t blk_try_enter_queue
-ffffffc008424b14 T __bio_queue_enter
-ffffffc008424cb0 T blk_queue_exit
-ffffffc008424ddc T blk_alloc_queue
-ffffffc008425018 t blk_rq_timed_out_timer
-ffffffc008425054 t blk_timeout_work
-ffffffc008425064 t blk_queue_usage_counter_release
-ffffffc0084250a0 T blk_get_queue
-ffffffc0084250e8 T submit_bio_noacct_nocheck
-ffffffc0084253e0 T submit_bio_noacct
-ffffffc008425824 T submit_bio
-ffffffc008425968 T bio_poll
-ffffffc008425a9c T iocb_bio_iopoll
-ffffffc008425b14 T update_io_ticks
-ffffffc008425bcc T bdev_start_io_acct
-ffffffc008425e08 T bio_start_io_acct_time
-ffffffc008425e4c T bio_start_io_acct
-ffffffc008425ea4 T bdev_end_io_acct
-ffffffc00842609c T bio_end_io_acct_remapped
-ffffffc0084260d8 T blk_lld_busy
-ffffffc008426138 T kblockd_schedule_work
-ffffffc008426178 T kblockd_mod_delayed_work_on
-ffffffc0084261b8 T blk_start_plug_nr_ios
-ffffffc00842620c T blk_start_plug
-ffffffc008426254 T blk_check_plugged
-ffffffc008426358 T __blk_flush_plug
-ffffffc0084264dc T blk_finish_plug
-ffffffc008426528 T blk_io_schedule
-ffffffc008426574 t trace_raw_output_block_buffer
-ffffffc0084265f4 t trace_raw_output_block_rq_requeue
-ffffffc008426690 t trace_raw_output_block_rq_completion
-ffffffc00842672c t trace_raw_output_block_rq
-ffffffc0084267d0 t trace_raw_output_block_bio_complete
-ffffffc008426858 t trace_raw_output_block_bio
-ffffffc0084268e4 t trace_raw_output_block_plug
-ffffffc008426958 t trace_raw_output_block_unplug
-ffffffc0084269d0 t trace_raw_output_block_split
-ffffffc008426a58 t trace_raw_output_block_bio_remap
-ffffffc008426afc t trace_raw_output_block_rq_remap
-ffffffc008426ba4 t __submit_bio
-ffffffc008426ca0 t blk_release_queue
-ffffffc008426d4c T blk_register_queue
-ffffffc008426ef0 T blk_unregister_queue
-ffffffc008426ff4 t blk_free_queue_rcu
-ffffffc008427048 t queue_attr_show
-ffffffc0084270e0 t queue_attr_store
-ffffffc008427188 t queue_attr_visible
-ffffffc0084271f8 t queue_io_timeout_show
-ffffffc008427240 t queue_io_timeout_store
-ffffffc0084272e0 t queue_max_open_zones_show
-ffffffc008427330 t queue_max_active_zones_show
-ffffffc008427380 t queue_requests_show
-ffffffc0084273c4 t queue_requests_store
-ffffffc008427494 t queue_ra_show
-ffffffc0084274f0 t queue_ra_store
-ffffffc0084275b0 t queue_max_hw_sectors_show
-ffffffc0084275f8 t queue_max_sectors_show
-ffffffc008427640 t queue_max_sectors_store
-ffffffc008427748 t queue_max_segments_show
-ffffffc00842778c t queue_max_discard_segments_show
-ffffffc0084277d0 t queue_max_integrity_segments_show
-ffffffc008427814 t queue_max_segment_size_show
-ffffffc008427858 t queue_logical_block_size_show
-ffffffc0084278ac t queue_physical_block_size_show
-ffffffc0084278f0 t queue_chunk_sectors_show
-ffffffc008427934 t queue_io_min_show
-ffffffc008427978 t queue_io_opt_show
-ffffffc0084279bc t queue_discard_granularity_show
-ffffffc008427a00 t queue_discard_max_show
-ffffffc008427a48 t queue_discard_max_store
-ffffffc008427b0c t queue_discard_max_hw_show
-ffffffc008427b54 t queue_discard_zeroes_data_show
-ffffffc008427b94 t queue_write_same_max_show
-ffffffc008427bd4 t queue_write_zeroes_max_show
-ffffffc008427c1c t queue_zone_append_max_show
-ffffffc008427c64 t queue_zone_write_granularity_show
-ffffffc008427ca8 t queue_nonrot_show
-ffffffc008427cf8 t queue_nonrot_store
-ffffffc008427da8 t queue_zoned_show
-ffffffc008427e30 t queue_nr_zones_show
-ffffffc008427e94 t queue_nomerges_show
-ffffffc008427ee8 t queue_nomerges_store
-ffffffc008427fc0 t queue_rq_affinity_show
-ffffffc008428014 t queue_rq_affinity_store
-ffffffc008428104 t queue_iostats_show
-ffffffc00842814c t queue_iostats_store
-ffffffc0084281fc t queue_stable_writes_show
-ffffffc008428244 t queue_stable_writes_store
-ffffffc0084282f4 t queue_random_show
-ffffffc00842833c t queue_random_store
-ffffffc0084283ec t queue_poll_show
-ffffffc008428434 t queue_poll_store
-ffffffc0084284cc t queue_wc_show
-ffffffc008428528 t queue_wc_store
-ffffffc0084285dc t queue_fua_show
-ffffffc008428624 t queue_dax_show
-ffffffc00842866c t queue_wb_lat_show
-ffffffc0084286d0 t queue_wb_lat_store
-ffffffc0084287b8 t queue_poll_delay_show
-ffffffc00842881c t queue_poll_delay_store
-ffffffc0084288d8 t queue_virt_boundary_mask_show
-ffffffc00842891c t queue_dma_alignment_show
-ffffffc00842896c T is_flush_rq
-ffffffc008428990 t flush_end_io.llvm.10144915620016220446
-ffffffc008428ccc T blk_insert_flush
-ffffffc008428e20 t mq_flush_data_end_io
-ffffffc008428f7c t blk_flush_complete_seq
-ffffffc00842924c T blkdev_issue_flush
-ffffffc0084292e0 T blk_alloc_flush_queue
-ffffffc0084293d0 T blk_free_flush_queue
-ffffffc008429418 T blk_mq_hctx_set_fq_lock_class
-ffffffc008429428 T blk_queue_rq_timeout
-ffffffc00842943c T blk_set_default_limits
-ffffffc00842949c T blk_set_stacking_limits
-ffffffc008429504 T blk_queue_bounce_limit
-ffffffc008429518 T blk_queue_max_hw_sectors
-ffffffc0084295cc T blk_queue_chunk_sectors
-ffffffc0084295e0 T blk_queue_max_discard_sectors
-ffffffc0084295f8 T blk_queue_max_secure_erase_sectors
-ffffffc00842960c T blk_queue_max_write_zeroes_sectors
-ffffffc008429620 T blk_queue_max_zone_append_sectors
-ffffffc008429674 T blk_queue_max_segments
-ffffffc0084296d8 T blk_queue_max_discard_segments
-ffffffc0084296ec T blk_queue_max_segment_size
-ffffffc008429764 T blk_queue_logical_block_size
-ffffffc0084297b8 T blk_queue_physical_block_size
-ffffffc0084297e8 T blk_queue_zone_write_granularity
-ffffffc008429824 T blk_queue_alignment_offset
-ffffffc008429848 T disk_update_readahead
-ffffffc008429888 T blk_limits_io_min
-ffffffc0084298b0 T blk_queue_io_min
-ffffffc0084298dc T blk_limits_io_opt
-ffffffc0084298f0 T blk_queue_io_opt
-ffffffc008429924 T blk_stack_limits
-ffffffc008429e44 T disk_stack_limits
-ffffffc008429ee4 T blk_queue_update_dma_pad
-ffffffc008429f04 T blk_queue_segment_boundary
-ffffffc008429f68 T blk_queue_virt_boundary
-ffffffc008429f88 T blk_queue_dma_alignment
-ffffffc008429f9c T blk_queue_update_dma_alignment
-ffffffc008429fcc T blk_set_queue_depth
-ffffffc00842a008 T blk_queue_write_cache
-ffffffc00842a078 T blk_queue_required_elevator_features
-ffffffc00842a08c T blk_queue_can_use_dma_map_merging
-ffffffc00842a0e0 T disk_set_zoned
-ffffffc00842a1fc T bdev_alignment_offset
-ffffffc00842a26c T bdev_discard_alignment
-ffffffc00842a2e0 T ioc_clear_queue
-ffffffc00842a3f4 t ioc_destroy_icq
-ffffffc00842a524 T put_io_context
-ffffffc00842a610 T exit_io_context
-ffffffc00842a72c T set_task_ioprio
-ffffffc00842a85c t alloc_io_context
-ffffffc00842a8d8 T __copy_io
-ffffffc00842a9d8 T ioc_lookup_icq
-ffffffc00842aa74 T ioc_find_get_icq
-ffffffc00842ad80 t icq_free_icq_rcu
-ffffffc00842adb4 t ioc_release_fn
-ffffffc00842aeb4 T blk_rq_append_bio
-ffffffc00842afcc T blk_rq_map_user_iov
-ffffffc00842ba78 T blk_rq_unmap_user
-ffffffc00842bc94 T blk_rq_map_user
-ffffffc00842bd54 T blk_rq_map_user_io
-ffffffc00842bf00 T blk_rq_map_kern
-ffffffc00842c2cc t bio_copy_kern_endio_read
-ffffffc00842c3ec t bio_copy_kern_endio
-ffffffc00842c434 t bio_map_kern_endio
-ffffffc00842c474 T __bio_split_to_limits
-ffffffc00842c8f8 T bio_split_to_limits
-ffffffc00842c9ac T blk_recalc_rq_segments
-ffffffc00842cb64 T __blk_rq_map_sg
-ffffffc00842cf14 T ll_back_merge_fn
-ffffffc00842d0ac T blk_rq_set_mixed_merge
-ffffffc00842d114 T blk_attempt_req_merge
-ffffffc00842d144 t attempt_merge.llvm.12118926872383089866
-ffffffc00842d364 T blk_rq_merge_ok
-ffffffc00842d438 T blk_try_merge
-ffffffc00842d4a4 T blk_attempt_plug_merge
-ffffffc00842d54c t blk_attempt_bio_merge
-ffffffc00842d754 T blk_bio_list_merge
-ffffffc00842d7f8 T blk_mq_sched_try_merge
-ffffffc00842da08 t bio_attempt_back_merge
-ffffffc00842dbd0 t bio_attempt_front_merge
-ffffffc00842defc t bio_attempt_discard_merge
-ffffffc00842e0a8 t bio_will_gap
-ffffffc00842e26c t req_attempt_discard_merge
-ffffffc00842e3b0 t ll_merge_requests_fn
-ffffffc00842e518 t blk_account_io_merge_request
-ffffffc00842e61c t trace_block_rq_merge
-ffffffc00842e6cc t blk_account_io_merge_bio
-ffffffc00842e7d4 T blk_abort_request
-ffffffc00842e820 T blk_rq_timeout
-ffffffc00842e860 T blk_add_timer
-ffffffc00842e92c T __blkdev_issue_discard
-ffffffc00842eab8 T blkdev_issue_discard
-ffffffc00842eb90 T __blkdev_issue_zeroout
-ffffffc00842ecf0 t __blkdev_issue_zero_pages
-ffffffc00842ee48 T blkdev_issue_zeroout
-ffffffc00842f090 T blkdev_issue_secure_erase
-ffffffc00842f20c T blk_mq_in_flight
-ffffffc00842f27c t blk_mq_check_inflight
-ffffffc00842f2f0 T blk_mq_in_flight_rw
-ffffffc00842f36c T blk_freeze_queue_start
-ffffffc00842f3f0 T blk_mq_run_hw_queues
-ffffffc00842f530 T blk_mq_freeze_queue_wait
-ffffffc00842f5ec T blk_mq_freeze_queue_wait_timeout
-ffffffc00842f720 T blk_freeze_queue
-ffffffc00842f82c T blk_mq_freeze_queue
-ffffffc00842f858 T __blk_mq_unfreeze_queue
-ffffffc00842f900 T blk_mq_unfreeze_queue
-ffffffc00842f988 T blk_mq_quiesce_queue_nowait
-ffffffc00842f9fc T blk_mq_wait_quiesce_done
-ffffffc00842fa3c T blk_mq_quiesce_queue
-ffffffc00842fac8 T blk_mq_unquiesce_queue
-ffffffc00842fb68 T blk_mq_wake_waiters
-ffffffc00842fc18 T blk_rq_init
-ffffffc00842fc94 T blk_mq_alloc_request
-ffffffc00842fe38 t __blk_mq_alloc_requests
-ffffffc0084301ac T blk_mq_alloc_request_hctx
-ffffffc008430374 t blk_mq_rq_ctx_init
-ffffffc0084304bc T blk_mq_free_request
-ffffffc008430668 t __blk_mq_free_request
-ffffffc008430734 T blk_mq_free_plug_rqs
-ffffffc008430788 T blk_dump_rq_flags
-ffffffc008430880 T blk_update_request
-ffffffc008430c38 t blk_print_req_error
-ffffffc008430d10 t trace_block_rq_error
-ffffffc008430dc8 t blk_account_io_completion
-ffffffc008430ec4 T __blk_mq_end_request
-ffffffc008431010 T blk_mq_end_request
-ffffffc008431064 T blk_mq_end_request_batch
-ffffffc008431478 t blk_mq_flush_tag_batch
-ffffffc008431638 T blk_mq_complete_request_remote
-ffffffc0084317e8 T blk_mq_complete_request
-ffffffc008431850 T blk_mq_start_request
-ffffffc0084319a8 T blk_execute_rq_nowait
-ffffffc008431adc t blk_add_rq_to_plug
-ffffffc008431ce0 T blk_rq_is_poll
-ffffffc008431d10 T blk_execute_rq
-ffffffc008431f18 t blk_end_sync_rq
-ffffffc008431f50 T blk_mq_requeue_request
-ffffffc008432068 t __blk_mq_requeue_request
-ffffffc008432208 T blk_mq_add_to_requeue_list
-ffffffc008432308 T blk_mq_kick_requeue_list
-ffffffc008432348 T blk_mq_delay_kick_requeue_list
-ffffffc00843239c T blk_mq_queue_inflight
-ffffffc008432408 t blk_mq_rq_inflight
-ffffffc008432438 T blk_mq_put_rq_ref
-ffffffc00843250c T blk_mq_flush_busy_ctxs
-ffffffc0084326fc T blk_mq_dequeue_from_ctx
-ffffffc00843295c T __blk_mq_get_driver_tag
-ffffffc008432ab0 T blk_mq_dispatch_rq_list
-ffffffc0084334f0 T blk_mq_run_hw_queue
-ffffffc00843369c T blk_mq_delay_run_hw_queue
-ffffffc0084336cc t __blk_mq_delay_run_hw_queue.llvm.13885134839124019719
-ffffffc008433854 T blk_mq_delay_run_hw_queues
-ffffffc008433998 T blk_mq_stop_hw_queue
-ffffffc008433a04 T blk_mq_stop_hw_queues
-ffffffc008433ae4 T blk_mq_start_hw_queue
-ffffffc008433b48 T blk_mq_start_hw_queues
-ffffffc008433c18 T blk_mq_start_stopped_hw_queue
-ffffffc008433c84 T blk_mq_start_stopped_hw_queues
-ffffffc008433d6c T __blk_mq_insert_request
-ffffffc008433f2c T blk_mq_request_bypass_insert
-ffffffc008434000 T blk_mq_insert_requests
-ffffffc008434204 T blk_mq_flush_plug_list
-ffffffc008434548 t blk_mq_plug_issue_direct
-ffffffc0084346d8 T blk_mq_try_issue_list_directly
-ffffffc0084348a0 T blk_mq_submit_bio
-ffffffc008434f98 t blk_mq_try_issue_directly
-ffffffc008435078 T blk_insert_cloned_request
-ffffffc008435298 t blk_account_io_done
-ffffffc008435420 T blk_rq_unprep_clone
-ffffffc008435470 T blk_rq_prep_clone
-ffffffc0084355fc T blk_steal_bios
-ffffffc008435638 T blk_mq_free_rqs
-ffffffc008435898 T blk_mq_free_rq_map
-ffffffc0084358ec T blk_mq_alloc_map_and_rqs
-ffffffc008435e60 T blk_mq_free_map_and_rqs
-ffffffc008435ebc T blk_mq_release
-ffffffc008435fe0 T blk_mq_init_queue
-ffffffc00843605c T blk_mq_destroy_queue
-ffffffc008436170 T blk_mq_cancel_work_sync
-ffffffc008436228 T blk_mq_exit_queue
-ffffffc008436384 T __blk_mq_alloc_disk
-ffffffc008436470 T blk_mq_alloc_disk_for_queue
-ffffffc0084364d0 T blk_mq_init_allocated_queue
-ffffffc008436978 t blk_mq_poll_stats_fn
-ffffffc0084369d4 t blk_mq_poll_stats_bkt
-ffffffc008436a1c t blk_mq_realloc_hw_ctxs
-ffffffc008436c80 t blk_mq_timeout_work
-ffffffc008436eb0 t blk_mq_requeue_work
-ffffffc008437098 t blk_mq_map_swqueue
-ffffffc008437490 T blk_mq_alloc_tag_set
-ffffffc008437718 t blk_mq_update_queue_map
-ffffffc0084378f0 t blk_mq_alloc_set_map_and_rqs
-ffffffc008437ac4 T blk_mq_alloc_sq_tag_set
-ffffffc008437b34 T blk_mq_free_tag_set
-ffffffc008437c80 T blk_mq_update_nr_requests
-ffffffc008437f20 T blk_mq_update_nr_hw_queues
-ffffffc0084383b4 T blk_mq_poll
-ffffffc008438700 T blk_mq_rq_cpu
-ffffffc008438718 t __blk_mq_complete_request_remote
-ffffffc008438744 t __blk_mq_run_hw_queue
-ffffffc008438808 t blk_mq_commit_rqs
-ffffffc008438914 t __blk_mq_try_issue_directly
-ffffffc008438b48 t blk_mq_exit_hctx
-ffffffc008438d3c t blk_mq_alloc_and_init_hctx
-ffffffc008439128 t blk_mq_run_work_fn
-ffffffc008439160 t blk_mq_dispatch_wake
-ffffffc008439234 t blk_mq_check_expired
-ffffffc0084392b0 t blk_mq_handle_expired
-ffffffc008439388 t blk_mq_update_tag_set_shared
-ffffffc0084394e8 t blk_done_softirq
-ffffffc0084395a8 t blk_softirq_cpu_dead
-ffffffc00843967c t blk_mq_hctx_notify_dead
-ffffffc008439874 t blk_mq_hctx_notify_online
-ffffffc0084398e4 t blk_mq_hctx_notify_offline
-ffffffc008439c1c t blk_mq_has_request
-ffffffc008439c4c T __blk_mq_tag_busy
-ffffffc008439d5c T blk_mq_tag_wakeup_all
-ffffffc008439da8 T __blk_mq_tag_idle
-ffffffc008439ed0 T blk_mq_get_tags
-ffffffc008439f58 T blk_mq_get_tag
-ffffffc00843a2d8 T blk_mq_put_tag
-ffffffc00843a344 T blk_mq_put_tags
-ffffffc00843a384 T blk_mq_all_tag_iter
-ffffffc00843a400 T blk_mq_tagset_busy_iter
-ffffffc00843a4c8 T blk_mq_tagset_wait_completed_request
-ffffffc00843a5bc T blk_mq_queue_tag_busy_iter
-ffffffc00843a814 t bt_for_each
-ffffffc00843aaa4 T blk_mq_init_bitmaps
-ffffffc00843ab64 T blk_mq_init_tags
-ffffffc00843ac64 T blk_mq_free_tags
-ffffffc00843acd8 T blk_mq_tag_update_depth
-ffffffc00843ada4 T blk_mq_tag_resize_shared_tags
-ffffffc00843ade0 T blk_mq_tag_update_sched_shared_tags
-ffffffc00843ae24 T blk_mq_unique_tag
-ffffffc00843ae40 t bt_tags_for_each
-ffffffc00843b0bc t bt_tags_for_each.9
-ffffffc00843b318 T blk_rq_stat_init
-ffffffc00843b33c T blk_rq_stat_sum
-ffffffc00843b3a4 T blk_rq_stat_add
-ffffffc00843b3e4 T blk_stat_add
-ffffffc00843b56c T blk_stat_alloc_callback
-ffffffc00843b654 t blk_stat_timer_fn
-ffffffc00843b7f4 T blk_stat_add_callback
-ffffffc00843b920 T blk_stat_remove_callback
-ffffffc00843b9d8 T blk_stat_free_callback
-ffffffc00843ba14 t blk_stat_free_callback_rcu
-ffffffc00843ba64 T blk_stat_disable_accounting
-ffffffc00843bad8 T blk_stat_enable_accounting
-ffffffc00843bb4c T blk_alloc_queue_stats
-ffffffc00843bb98 T blk_free_queue_stats
-ffffffc00843bbe0 T blk_stats_alloc_enable
-ffffffc00843bc98 T blk_mq_hctx_kobj_init
-ffffffc00843bcd0 T blk_mq_sysfs_deinit
-ffffffc00843bd7c T blk_mq_sysfs_init
-ffffffc00843be4c T blk_mq_sysfs_register
-ffffffc00843bfdc t blk_mq_register_hctx
-ffffffc00843c0e8 T blk_mq_sysfs_unregister
-ffffffc00843c1e8 T blk_mq_sysfs_unregister_hctxs
-ffffffc00843c2ec T blk_mq_sysfs_register_hctxs
-ffffffc00843c3c4 t blk_mq_hw_sysfs_release
-ffffffc00843c428 t blk_mq_hw_sysfs_show
-ffffffc00843c4c4 t blk_mq_hw_sysfs_store
-ffffffc00843c570 t blk_mq_hw_sysfs_nr_tags_show
-ffffffc00843c5b8 t blk_mq_hw_sysfs_nr_reserved_tags_show
-ffffffc00843c600 t blk_mq_hw_sysfs_cpus_show
-ffffffc00843c720 t blk_mq_sysfs_release
-ffffffc00843c764 t blk_mq_ctx_sysfs_release
-ffffffc00843c794 T blk_mq_map_queues
-ffffffc00843c928 T blk_mq_hw_queue_to_node
-ffffffc00843c9b8 T blk_mq_sched_mark_restart_hctx
-ffffffc00843ca04 T __blk_mq_sched_restart
-ffffffc00843ca6c T blk_mq_sched_dispatch_requests
-ffffffc00843cae4 t __blk_mq_sched_dispatch_requests
-ffffffc00843cc8c T blk_mq_sched_bio_merge
-ffffffc00843cdd8 T blk_mq_sched_try_insert_merge
-ffffffc00843ce64 T blk_mq_sched_insert_request
-ffffffc00843cfd8 T blk_mq_sched_insert_requests
-ffffffc00843d2b4 T blk_mq_init_sched
-ffffffc00843d58c T blk_mq_sched_free_rqs
-ffffffc00843d658 T blk_mq_exit_sched
-ffffffc00843d828 t blk_mq_do_dispatch_sched
-ffffffc00843dc48 t blk_mq_do_dispatch_ctx
-ffffffc00843de50 t sched_rq_cmp
-ffffffc00843de70 T blkdev_ioctl
-ffffffc00843fbd8 t put_int
-ffffffc00843fd20 t put_u64
-ffffffc00843fe68 t put_uint
-ffffffc00843ffb0 t put_ushort
-ffffffc0084400f8 t blkdev_pr_preempt
-ffffffc008440324 T set_capacity
-ffffffc008440388 T set_capacity_and_notify
-ffffffc00844049c T blkdev_show
-ffffffc008440554 T __register_blkdev
-ffffffc008440704 T unregister_blkdev
-ffffffc0084407dc T blk_alloc_ext_minor
-ffffffc008440828 T blk_free_ext_minor
-ffffffc008440860 T disk_uevent
-ffffffc008440954 T disk_scan_partitions
-ffffffc008440a90 T device_add_disk
-ffffffc008440e54 T blk_mark_disk_dead
-ffffffc008440eb4 T del_gendisk
-ffffffc008441184 T invalidate_disk
-ffffffc0084411f4 T blk_request_module
-ffffffc0084412ac T part_size_show
-ffffffc0084412f0 T part_stat_show
-ffffffc008441550 t part_stat_read_all
-ffffffc008441704 T part_inflight_show
-ffffffc008441878 t block_uevent
-ffffffc0084418bc t block_devnode
-ffffffc008441918 t disk_release
-ffffffc008441a00 T part_devt
-ffffffc008441a60 T blk_lookup_devt
-ffffffc008441ba0 T __alloc_disk_node
-ffffffc008441d6c T inc_diskseq
-ffffffc008441dc0 T __blk_alloc_disk
-ffffffc008441e50 T put_disk
-ffffffc008441e8c T set_disk_ro
-ffffffc008441fbc t disk_visible
-ffffffc008441ff8 t disk_badblocks_show
-ffffffc008442048 t disk_badblocks_store
-ffffffc008442094 t disk_range_show
-ffffffc0084420dc t disk_ext_range_show
-ffffffc008442130 t disk_removable_show
-ffffffc00844217c t disk_hidden_show
-ffffffc0084421c8 t disk_ro_show
-ffffffc008442224 t disk_alignment_offset_show
-ffffffc00844227c t disk_discard_alignment_show
-ffffffc0084422d4 t disk_capability_show
-ffffffc00844231c t diskseq_show
-ffffffc008442364 t disk_seqf_start
-ffffffc008442400 t disk_seqf_stop
-ffffffc008442450 t disk_seqf_next
-ffffffc008442494 t diskstats_show
-ffffffc008442754 t show_partition_start
-ffffffc008442824 t show_partition
-ffffffc008442924 T ioprio_check_cap
-ffffffc0084429c4 T __arm64_sys_ioprio_set
-ffffffc008442ca8 T __get_task_ioprio
-ffffffc008442d20 T __arm64_sys_ioprio_get
-ffffffc008443120 T badblocks_check
-ffffffc008443264 T badblocks_set
-ffffffc008443670 T badblocks_clear
-ffffffc008443914 T ack_all_badblocks
-ffffffc0084439dc T badblocks_show
-ffffffc008443b0c T badblocks_store
-ffffffc008443bf8 T badblocks_init
-ffffffc008443c74 T devm_init_badblocks
-ffffffc008443d0c T badblocks_exit
-ffffffc008443d64 t part_uevent
-ffffffc008443dd4 t part_release
-ffffffc008443e18 T bdev_add_partition
-ffffffc008443f54 t add_partition
-ffffffc008444268 T bdev_del_partition
-ffffffc0084442f4 t delete_partition
-ffffffc008444384 T bdev_resize_partition
-ffffffc0084444f8 T blk_drop_partitions
-ffffffc008444594 T bdev_disk_changed
-ffffffc008444bc8 T read_part_sector
-ffffffc008444c9c t part_partition_show
-ffffffc008444ce0 t part_start_show
-ffffffc008444d24 t part_ro_show
-ffffffc008444d8c t part_alignment_offset_show
-ffffffc008444de0 t part_discard_alignment_show
-ffffffc008444e30 t xa_insert
-ffffffc008444e9c t whole_disk_show
-ffffffc008444eb0 T efi_partition
-ffffffc0084455ac t read_lba
-ffffffc008445730 t is_gpt_valid
-ffffffc0084459b0 t alloc_read_gpt_entries
-ffffffc008445a3c T rq_wait_inc_below
-ffffffc008445ac4 T __rq_qos_cleanup
-ffffffc008445b3c T __rq_qos_done
-ffffffc008445bb4 T __rq_qos_issue
-ffffffc008445c2c T __rq_qos_requeue
-ffffffc008445ca4 T __rq_qos_throttle
-ffffffc008445d1c T __rq_qos_track
-ffffffc008445da4 T __rq_qos_merge
-ffffffc008445e2c T __rq_qos_done_bio
-ffffffc008445ea4 T __rq_qos_queue_depth_changed
-ffffffc008445f14 T rq_depth_calc_max_depth
-ffffffc008445fb8 T rq_depth_scale_up
-ffffffc008446074 T rq_depth_scale_down
-ffffffc008446128 T rq_qos_wait
-ffffffc0084462bc t rq_qos_wake_function
-ffffffc008446364 T rq_qos_exit
-ffffffc0084463d4 T disk_block_events
-ffffffc00844646c T disk_unblock_events
-ffffffc0084464a0 t __disk_unblock_events
-ffffffc008446588 T disk_flush_events
-ffffffc00844660c T bdev_check_media_change
-ffffffc0084467b0 T disk_force_media_change
-ffffffc0084468cc t disk_events_show
-ffffffc008446994 t disk_events_async_show
-ffffffc0084469a8 t disk_events_poll_msecs_show
-ffffffc008446a0c t disk_events_poll_msecs_store
-ffffffc008446ba8 T disk_alloc_events
-ffffffc008446ca4 t disk_events_workfn
-ffffffc008446cdc T disk_add_events
-ffffffc008446de4 T disk_del_events
-ffffffc008446eb8 T disk_release_events
-ffffffc008446f04 t disk_check_events
-ffffffc00844709c t disk_events_set_dfl_poll_msecs
-ffffffc008447170 T disk_register_independent_access_ranges
-ffffffc0084472b8 T disk_unregister_independent_access_ranges
-ffffffc008447350 T disk_alloc_independent_access_ranges
-ffffffc0084473c0 T disk_set_independent_access_ranges
-ffffffc008447618 t blk_ia_ranges_sysfs_release
-ffffffc008447644 t blk_ia_range_sysfs_nop_release
-ffffffc008447654 t blk_ia_range_sysfs_show
-ffffffc0084476a0 t blk_ia_range_sector_show
-ffffffc0084476e4 t blk_ia_range_nr_sectors_show
-ffffffc008447728 t dd_init_sched
-ffffffc00844785c t dd_exit_sched
-ffffffc008447a84 t dd_init_hctx
-ffffffc008447ae0 t dd_depth_updated
-ffffffc008447b38 t dd_bio_merge
-ffffffc008447bf0 t dd_request_merge
-ffffffc008447ce4 t dd_request_merged
-ffffffc008447d80 t dd_merged_requests
-ffffffc008447e9c t dd_limit_depth
-ffffffc008447ee8 t dd_prepare_request
-ffffffc008447efc t dd_finish_request
-ffffffc008448068 t dd_insert_requests
-ffffffc0084483e0 t dd_dispatch_request
-ffffffc008448560 t dd_has_work
-ffffffc0084486c4 t deadline_remove_request
-ffffffc00844879c t __dd_dispatch_request
-ffffffc008448a0c t deadline_next_request
-ffffffc008448b74 t deadline_fifo_request
-ffffffc008448ce4 t deadline_read_expire_show
-ffffffc008448d30 t deadline_read_expire_store
-ffffffc008448dd0 t deadline_write_expire_show
-ffffffc008448e1c t deadline_write_expire_store
-ffffffc008448ebc t deadline_writes_starved_show
-ffffffc008448f04 t deadline_writes_starved_store
-ffffffc008448f94 t deadline_front_merges_show
-ffffffc008448fdc t deadline_front_merges_store
-ffffffc008449074 t deadline_async_depth_show
-ffffffc0084490bc t deadline_async_depth_store
-ffffffc008449154 t deadline_fifo_batch_show
-ffffffc00844919c t deadline_fifo_batch_store
-ffffffc008449234 t deadline_prio_aging_expire_show
-ffffffc008449280 t deadline_prio_aging_expire_store
-ffffffc008449320 t deadline_read0_next_rq_show
-ffffffc008449368 t deadline_write0_next_rq_show
-ffffffc0084493b0 t deadline_read1_next_rq_show
-ffffffc0084493f8 t deadline_write1_next_rq_show
-ffffffc008449440 t deadline_read2_next_rq_show
-ffffffc008449488 t deadline_write2_next_rq_show
-ffffffc0084494d0 t deadline_batching_show
-ffffffc00844951c t deadline_starved_show
-ffffffc008449568 t dd_async_depth_show
-ffffffc0084495b4 t dd_owned_by_driver_show
-ffffffc008449680 t dd_queued_show
-ffffffc00844973c t deadline_read0_fifo_start
-ffffffc008449790 t deadline_read0_fifo_stop
-ffffffc0084497cc t deadline_read0_fifo_next
-ffffffc008449810 t deadline_write0_fifo_start
-ffffffc008449864 t deadline_write0_fifo_stop
-ffffffc0084498a0 t deadline_write0_fifo_next
-ffffffc0084498e4 t deadline_read1_fifo_start
-ffffffc008449938 t deadline_read1_fifo_stop
-ffffffc008449974 t deadline_read1_fifo_next
-ffffffc0084499b8 t deadline_write1_fifo_start
-ffffffc008449a0c t deadline_write1_fifo_stop
-ffffffc008449a48 t deadline_write1_fifo_next
-ffffffc008449a8c t deadline_read2_fifo_start
-ffffffc008449ae0 t deadline_read2_fifo_stop
-ffffffc008449b1c t deadline_read2_fifo_next
-ffffffc008449b60 t deadline_write2_fifo_start
-ffffffc008449bb4 t deadline_write2_fifo_stop
-ffffffc008449bf0 t deadline_write2_fifo_next
-ffffffc008449c34 t deadline_dispatch0_start
-ffffffc008449c88 t deadline_dispatch0_stop
-ffffffc008449cc4 t deadline_dispatch0_next
-ffffffc008449d04 t deadline_dispatch1_start
-ffffffc008449d5c t deadline_dispatch1_stop
-ffffffc008449d98 t deadline_dispatch1_next
-ffffffc008449ddc t deadline_dispatch2_start
-ffffffc008449e34 t deadline_dispatch2_stop
-ffffffc008449e70 t deadline_dispatch2_next
-ffffffc008449eb4 T __traceiter_kyber_latency
-ffffffc008449f7c T __traceiter_kyber_adjust
-ffffffc00844a014 T __traceiter_kyber_throttled
-ffffffc00844a0a4 t trace_event_raw_event_kyber_latency
-ffffffc00844a1c4 t perf_trace_kyber_latency
-ffffffc00844a338 t trace_event_raw_event_kyber_adjust
-ffffffc00844a41c t perf_trace_kyber_adjust
-ffffffc00844a55c t trace_event_raw_event_kyber_throttled
-ffffffc00844a62c t perf_trace_kyber_throttled
-ffffffc00844a75c t trace_raw_output_kyber_latency
-ffffffc00844a800 t trace_raw_output_kyber_adjust
-ffffffc00844a884 t trace_raw_output_kyber_throttled
-ffffffc00844a904 t kyber_init_sched
-ffffffc00844ac3c t kyber_exit_sched
-ffffffc00844ad00 t kyber_init_hctx
-ffffffc00844afe8 t kyber_exit_hctx
-ffffffc00844b080 t kyber_depth_updated
-ffffffc00844b0e0 t kyber_bio_merge
-ffffffc00844b1f4 t kyber_limit_depth
-ffffffc00844b230 t kyber_prepare_request
-ffffffc00844b248 t kyber_finish_request
-ffffffc00844b2c4 t kyber_insert_requests
-ffffffc00844b544 t kyber_dispatch_request
-ffffffc00844b664 t kyber_has_work
-ffffffc00844b760 t kyber_completed_request
-ffffffc00844b90c t kyber_timer_fn
-ffffffc00844bf58 t calculate_percentile
-ffffffc00844c20c t kyber_domain_wake
-ffffffc00844c25c t kyber_dispatch_cur_domain
-ffffffc00844c74c t kyber_get_domain_token
-ffffffc00844c900 t kyber_read_lat_show
-ffffffc00844c948 t kyber_read_lat_store
-ffffffc00844c9d8 t kyber_write_lat_show
-ffffffc00844ca20 t kyber_write_lat_store
-ffffffc00844cab0 t kyber_read_tokens_show
-ffffffc00844caec t kyber_write_tokens_show
-ffffffc00844cb28 t kyber_discard_tokens_show
-ffffffc00844cb64 t kyber_other_tokens_show
-ffffffc00844cba0 t kyber_async_depth_show
-ffffffc00844cbec t kyber_read_waiting_show
-ffffffc00844cc58 t kyber_write_waiting_show
-ffffffc00844ccc4 t kyber_discard_waiting_show
-ffffffc00844cd30 t kyber_other_waiting_show
-ffffffc00844cd9c t kyber_cur_domain_show
-ffffffc00844cdfc t kyber_batching_show
-ffffffc00844ce44 t kyber_read_rqs_start
-ffffffc00844ce94 t kyber_read_rqs_stop
-ffffffc00844cec8 t kyber_read_rqs_next
-ffffffc00844cf08 t kyber_write_rqs_start
-ffffffc00844cf58 t kyber_write_rqs_stop
-ffffffc00844cf8c t kyber_write_rqs_next
-ffffffc00844cfcc t kyber_discard_rqs_start
-ffffffc00844d01c t kyber_discard_rqs_stop
-ffffffc00844d050 t kyber_discard_rqs_next
-ffffffc00844d090 t kyber_other_rqs_start
-ffffffc00844d0e0 t kyber_other_rqs_stop
-ffffffc00844d114 t kyber_other_rqs_next
-ffffffc00844d154 T bfq_mark_bfqq_just_created
-ffffffc00844d170 T bfq_clear_bfqq_just_created
-ffffffc00844d18c T bfq_bfqq_just_created
-ffffffc00844d1a4 T bfq_mark_bfqq_busy
-ffffffc00844d1c0 T bfq_clear_bfqq_busy
-ffffffc00844d1dc T bfq_bfqq_busy
-ffffffc00844d1f4 T bfq_mark_bfqq_wait_request
-ffffffc00844d210 T bfq_clear_bfqq_wait_request
-ffffffc00844d22c T bfq_bfqq_wait_request
-ffffffc00844d244 T bfq_mark_bfqq_non_blocking_wait_rq
-ffffffc00844d260 T bfq_clear_bfqq_non_blocking_wait_rq
-ffffffc00844d27c T bfq_bfqq_non_blocking_wait_rq
-ffffffc00844d294 T bfq_mark_bfqq_fifo_expire
-ffffffc00844d2b0 T bfq_clear_bfqq_fifo_expire
-ffffffc00844d2cc T bfq_bfqq_fifo_expire
-ffffffc00844d2e4 T bfq_mark_bfqq_has_short_ttime
-ffffffc00844d300 T bfq_clear_bfqq_has_short_ttime
-ffffffc00844d31c T bfq_bfqq_has_short_ttime
-ffffffc00844d334 T bfq_mark_bfqq_sync
-ffffffc00844d350 T bfq_clear_bfqq_sync
-ffffffc00844d36c T bfq_bfqq_sync
-ffffffc00844d384 T bfq_mark_bfqq_IO_bound
-ffffffc00844d3a0 T bfq_clear_bfqq_IO_bound
-ffffffc00844d3bc T bfq_bfqq_IO_bound
-ffffffc00844d3d4 T bfq_mark_bfqq_in_large_burst
-ffffffc00844d3f0 T bfq_clear_bfqq_in_large_burst
-ffffffc00844d40c T bfq_bfqq_in_large_burst
-ffffffc00844d424 T bfq_mark_bfqq_coop
-ffffffc00844d440 T bfq_clear_bfqq_coop
-ffffffc00844d45c T bfq_bfqq_coop
-ffffffc00844d474 T bfq_mark_bfqq_split_coop
-ffffffc00844d490 T bfq_clear_bfqq_split_coop
-ffffffc00844d4ac T bfq_bfqq_split_coop
-ffffffc00844d4c4 T bfq_mark_bfqq_softrt_update
-ffffffc00844d4e0 T bfq_clear_bfqq_softrt_update
-ffffffc00844d4fc T bfq_bfqq_softrt_update
-ffffffc00844d514 T bic_to_bfqq
-ffffffc00844d530 T bic_set_bfqq
-ffffffc00844d5bc T bic_to_bfqd
-ffffffc00844d5d8 T bfq_schedule_dispatch
-ffffffc00844d614 T bfq_pos_tree_add_move
-ffffffc00844d718 T bfq_weights_tree_add
-ffffffc00844d834 T __bfq_weights_tree_remove
-ffffffc00844d8d0 T bfq_put_queue
-ffffffc00844d9c8 T bfq_weights_tree_remove
-ffffffc00844da9c T bfq_end_wr_async_queues
-ffffffc00844dbd8 T bfq_release_process_ref
-ffffffc00844dc70 T bfq_bfqq_expire
-ffffffc00844e0d4 t __bfq_bfqq_expire
-ffffffc00844e1c8 T bfq_put_cooperator
-ffffffc00844e224 T bfq_put_async_queues
-ffffffc00844e364 t idling_needed_for_service_guarantees
-ffffffc00844e498 t bfq_init_queue
-ffffffc00844e7ec t bfq_exit_queue
-ffffffc00844e8b8 t bfq_init_hctx
-ffffffc00844e960 t bfq_depth_updated
-ffffffc00844ea04 t bfq_allow_bio_merge
-ffffffc00844eadc t bfq_bio_merge
-ffffffc00844ec28 t bfq_request_merge
-ffffffc00844ecd4 t bfq_request_merged
-ffffffc00844edb0 t bfq_requests_merged
-ffffffc00844eec4 t bfq_limit_depth
-ffffffc00844ef88 t bfq_prepare_request
-ffffffc00844efcc t bfq_finish_request
-ffffffc00844f018 t bfq_insert_requests
-ffffffc008450050 t bfq_dispatch_request
-ffffffc008450f18 t bfq_has_work
-ffffffc008450f78 t bfq_finish_requeue_request
-ffffffc008451660 t bfq_exit_icq
-ffffffc00845170c t bfq_idle_slice_timer
-ffffffc0084517e8 t bfq_set_next_ioprio_data
-ffffffc008451940 t bfq_setup_cooperator
-ffffffc008451bf8 t bfq_merge_bfqqs
-ffffffc008451e14 t idling_boosts_thr_without_issues
-ffffffc008451f00 t bfq_setup_merge
-ffffffc008451fdc t bfq_may_be_close_cooperator
-ffffffc00845208c t bfq_find_close_cooperator
-ffffffc008452188 t bfq_bfqq_save_state
-ffffffc0084522b8 t bfq_choose_req
-ffffffc0084523d0 t bfq_updated_next_req
-ffffffc0084524f0 t bfq_remove_request
-ffffffc008452718 t bfq_get_queue
-ffffffc008452b24 t bfq_add_request
-ffffffc0084534f0 t bfq_exit_icq_bfqq
-ffffffc008453640 t bfq_fifo_expire_sync_show
-ffffffc0084536a0 t bfq_fifo_expire_sync_store
-ffffffc008453750 t bfq_fifo_expire_async_show
-ffffffc0084537b0 t bfq_fifo_expire_async_store
-ffffffc008453860 t bfq_back_seek_max_show
-ffffffc0084538a8 t bfq_back_seek_max_store
-ffffffc008453944 t bfq_back_seek_penalty_show
-ffffffc00845398c t bfq_back_seek_penalty_store
-ffffffc008453a30 t bfq_slice_idle_show
-ffffffc008453a88 t bfq_slice_idle_store
-ffffffc008453b30 t bfq_slice_idle_us_show
-ffffffc008453b88 t bfq_slice_idle_us_store
-ffffffc008453c2c t bfq_max_budget_show
-ffffffc008453c74 t bfq_max_budget_store
-ffffffc008453d3c t bfq_timeout_sync_show
-ffffffc008453d88 t bfq_timeout_sync_store
-ffffffc008453e54 t bfq_strict_guarantees_show
-ffffffc008453e9c t bfq_strict_guarantees_store
-ffffffc008453f58 t bfq_low_latency_show
-ffffffc008453fa0 t bfq_low_latency_store
-ffffffc00845414c T bfq_tot_busy_queues
-ffffffc00845416c T bfq_entity_to_bfqq
-ffffffc00845418c T bfq_entity_of
-ffffffc00845419c T bfq_ioprio_to_weight
-ffffffc0084541bc T bfq_put_idle_entity
-ffffffc0084542b0 T bfq_entity_service_tree
-ffffffc0084542f8 T __bfq_entity_update_weight_prio
-ffffffc00845450c T bfq_bfqq_served
-ffffffc008454610 T bfq_bfqq_charge_time
-ffffffc008454698 T __bfq_deactivate_entity
-ffffffc008454980 t bfq_active_extract
-ffffffc008454a74 T next_queue_may_preempt
-ffffffc008454a94 T bfq_get_next_queue
-ffffffc008454b78 t bfq_update_next_in_service
-ffffffc008454dbc T __bfq_bfqd_reset_in_service
-ffffffc008454e44 T bfq_deactivate_bfqq
-ffffffc008454eb8 T bfq_activate_bfqq
-ffffffc008454f18 t bfq_activate_requeue_entity
-ffffffc0084551b0 T bfq_requeue_bfqq
-ffffffc0084551f8 T bfq_del_bfqq_busy
-ffffffc0084552e0 T bfq_add_bfqq_busy
-ffffffc0084553fc t bfq_update_active_tree
-ffffffc00845551c t bfq_update_fin_time_enqueue
-ffffffc008455694 T bfqg_stats_update_io_remove
-ffffffc0084556a4 T bfqg_stats_update_io_merged
-ffffffc0084556b4 T bfqg_stats_update_completion
-ffffffc0084556c4 T bfqg_stats_update_dequeue
-ffffffc0084556d4 T bfqg_stats_set_start_idle_time
-ffffffc0084556e4 T bfq_bfqq_move
-ffffffc0084556f4 T bfq_init_entity
-ffffffc008455750 T bfq_bic_update_cgroup
-ffffffc008455760 T bfq_end_wr_async
-ffffffc008455790 T bfq_bio_bfqg
-ffffffc0084557a4 T bfqq_group
-ffffffc0084557bc T bfqg_and_blkg_put
-ffffffc0084557cc T bfq_create_group_hierarchy
-ffffffc008455834 T blk_mq_pci_map_queues
-ffffffc008455940 T blk_mq_virtio_map_queues
-ffffffc008455a30 T blk_zone_cond_str
-ffffffc008455a70 T blk_req_needs_zone_write_lock
-ffffffc008455b34 T blk_req_zone_write_trylock
-ffffffc008455c00 T __blk_req_zone_write_lock
-ffffffc008455ccc T __blk_req_zone_write_unlock
-ffffffc008455d8c T bdev_nr_zones
-ffffffc008455de8 T blkdev_report_zones
-ffffffc008455e84 T blkdev_zone_mgmt
-ffffffc008456004 t blkdev_zone_reset_all_emulated
-ffffffc0084561ac t blkdev_zone_reset_all
-ffffffc00845623c T blkdev_report_zones_ioctl
-ffffffc008456600 t blkdev_copy_zone_to_user
-ffffffc008456784 T blkdev_zone_mgmt_ioctl
-ffffffc008456a6c T disk_free_zone_bitmaps
-ffffffc008456ab8 T blk_revalidate_disk_zones
-ffffffc008456ce0 t blk_revalidate_zone_cb
-ffffffc008456f1c T disk_clear_zone_settings
-ffffffc008456fa8 t blk_zone_need_reset_cb
-ffffffc00845701c T __blk_mq_debugfs_rq_show
-ffffffc008457288 T blk_mq_debugfs_rq_show
-ffffffc0084572bc T blk_mq_debugfs_register
-ffffffc00845759c T blk_mq_debugfs_register_sched
-ffffffc008457654 T blk_mq_debugfs_register_hctx
-ffffffc0084579d4 T blk_mq_debugfs_register_sched_hctx
-ffffffc008457a8c T blk_mq_debugfs_register_rqos
-ffffffc008457b94 T blk_mq_debugfs_unregister_hctx
-ffffffc008457be0 T blk_mq_debugfs_register_hctxs
-ffffffc008457c88 T blk_mq_debugfs_unregister_hctxs
-ffffffc008457d44 T blk_mq_debugfs_unregister_sched
-ffffffc008457d84 T blk_mq_debugfs_unregister_rqos
-ffffffc008457dd0 T blk_mq_debugfs_unregister_sched_hctx
-ffffffc008457e1c t blk_mq_debugfs_write
-ffffffc008457e90 t blk_mq_debugfs_open
-ffffffc008457f20 t blk_mq_debugfs_release
-ffffffc008457f60 t blk_mq_debugfs_show
-ffffffc008457fc0 t queue_poll_stat_show
-ffffffc008458110 t queue_pm_only_show
-ffffffc008458158 t queue_state_show
-ffffffc00845822c t queue_state_write
-ffffffc0084584d8 t queue_requeue_list_start
-ffffffc008458524 t queue_requeue_list_stop
-ffffffc008458558 t queue_requeue_list_next
-ffffffc008458594 t hctx_state_show
-ffffffc0084586e4 t hctx_flags_show
-ffffffc008458800 t hctx_busy_show
-ffffffc008458878 t hctx_ctx_map_show
-ffffffc0084588ac t hctx_tags_show
-ffffffc008458920 t hctx_tags_bitmap_show
-ffffffc008458998 t hctx_sched_tags_show
-ffffffc008458a0c t hctx_sched_tags_bitmap_show
-ffffffc008458a84 t hctx_run_show
-ffffffc008458ac8 t hctx_run_write
-ffffffc008458ae4 t hctx_active_show
-ffffffc008458b4c t hctx_dispatch_busy_show
-ffffffc008458b90 t hctx_type_show
-ffffffc008458bec t hctx_dispatch_start
-ffffffc008458c38 t hctx_dispatch_stop
-ffffffc008458c68 t hctx_dispatch_next
-ffffffc008458ca4 t hctx_show_busy_rq
-ffffffc008458cec t blk_mq_debugfs_tags_show
-ffffffc008458da4 t ctx_default_rq_list_start
-ffffffc008458df0 t ctx_default_rq_list_stop
-ffffffc008458e20 t ctx_default_rq_list_next
-ffffffc008458e5c t ctx_read_rq_list_start
-ffffffc008458ea8 t ctx_read_rq_list_stop
-ffffffc008458ed8 t ctx_read_rq_list_next
-ffffffc008458f14 t ctx_poll_rq_list_start
-ffffffc008458f60 t ctx_poll_rq_list_stop
-ffffffc008458f90 t ctx_poll_rq_list_next
-ffffffc008458fcc T queue_zone_wlock_show
-ffffffc008459074 T blk_pm_runtime_init
-ffffffc0084590c8 T blk_pre_runtime_suspend
-ffffffc0084591a0 T blk_post_runtime_suspend
-ffffffc00845922c T blk_pre_runtime_resume
-ffffffc008459284 T blk_post_runtime_resume
-ffffffc008459308 T blk_set_runtime_active
-ffffffc00845938c T bio_crypt_set_ctx
-ffffffc008459404 T __bio_crypt_free_ctx
-ffffffc00845944c T __bio_crypt_clone
-ffffffc0084594c8 T bio_crypt_dun_increment
-ffffffc008459530 T __bio_crypt_advance
-ffffffc0084595a8 T bio_crypt_dun_is_contiguous
-ffffffc00845963c T bio_crypt_rq_ctx_compatible
-ffffffc008459678 T bio_crypt_ctx_mergeable
-ffffffc008459738 T __blk_crypto_rq_get_keyslot
-ffffffc008459778 T __blk_crypto_rq_put_keyslot
-ffffffc0084597b8 T __blk_crypto_free_request
-ffffffc00845981c T __blk_crypto_bio_prep
-ffffffc008459950 T blk_crypto_config_supported_natively
-ffffffc008459988 T __blk_crypto_rq_bio_prep
-ffffffc008459a0c T blk_crypto_init_key
-ffffffc008459b88 T blk_crypto_config_supported
-ffffffc008459bd4 T blk_crypto_start_using_key
-ffffffc008459c60 T blk_crypto_evict_key
-ffffffc008459d00 T blk_crypto_profile_init
-ffffffc008459f0c T blk_crypto_profile_destroy
-ffffffc008459f90 T devm_blk_crypto_profile_init
-ffffffc00845a054 t blk_crypto_profile_destroy_callback
-ffffffc00845a0d8 T blk_crypto_keyslot_index
-ffffffc00845a104 T blk_crypto_get_keyslot
-ffffffc00845a400 t blk_crypto_find_and_grab_keyslot
-ffffffc00845a52c T blk_crypto_put_keyslot
-ffffffc00845a608 T __blk_crypto_cfg_supported
-ffffffc00845a66c T __blk_crypto_evict_key
-ffffffc00845a83c T blk_crypto_reprogram_all_keys
-ffffffc00845a8fc T blk_crypto_register
-ffffffc00845a918 T blk_crypto_derive_sw_secret
-ffffffc00845a9f4 T blk_crypto_intersect_capabilities
-ffffffc00845aa88 T blk_crypto_has_capabilities
-ffffffc00845ab28 T blk_crypto_update_capabilities
-ffffffc00845ab58 T blk_crypto_sysfs_register
-ffffffc00845ac04 T blk_crypto_sysfs_unregister
-ffffffc00845ac38 t blk_crypto_release
-ffffffc00845ac64 t blk_crypto_attr_show
-ffffffc00845acb0 t max_dun_bits_show
-ffffffc00845acf8 t num_keyslots_show
-ffffffc00845ad3c t blk_crypto_mode_is_visible
-ffffffc00845ad90 t blk_crypto_mode_show
-ffffffc00845ae00 T blk_crypto_fallback_bio_prep
-ffffffc00845b4bc t blk_crypto_fallback_decrypt_endio
-ffffffc00845b55c T blk_crypto_fallback_evict_key
-ffffffc00845b594 T blk_crypto_fallback_start_using_mode
-ffffffc00845b75c t blk_crypto_fallback_init
-ffffffc00845b954 t blk_crypto_fallback_encrypt_endio
-ffffffc00845b9f4 t blk_crypto_fallback_decrypt_bio
-ffffffc00845bcd4 t blk_crypto_fallback_keyslot_program
-ffffffc00845bdfc t blk_crypto_fallback_keyslot_evict
-ffffffc00845be90 T bd_link_disk_holder
-ffffffc00845bff8 T bd_unlink_disk_holder
-ffffffc00845c0d8 T bd_register_pending_holders
-ffffffc00845c1d8 T __traceiter_io_uring_create
-ffffffc00845c288 T __traceiter_io_uring_register
-ffffffc00845c338 T __traceiter_io_uring_file_get
-ffffffc00845c3c8 T __traceiter_io_uring_queue_async_work
-ffffffc00845c458 T __traceiter_io_uring_defer
-ffffffc00845c4d8 T __traceiter_io_uring_link
-ffffffc00845c568 T __traceiter_io_uring_cqring_wait
-ffffffc00845c5f8 T __traceiter_io_uring_fail_link
-ffffffc00845c688 T __traceiter_io_uring_complete
-ffffffc00845c750 T __traceiter_io_uring_submit_sqe
-ffffffc00845c7e0 T __traceiter_io_uring_poll_arm
-ffffffc00845c878 T __traceiter_io_uring_task_add
-ffffffc00845c908 T __traceiter_io_uring_req_failed
-ffffffc00845c9a0 T __traceiter_io_uring_cqe_overflow
-ffffffc00845ca50 T __traceiter_io_uring_task_work_run
-ffffffc00845cae8 T __traceiter_io_uring_short_write
-ffffffc00845cb90 T __traceiter_io_uring_local_work_run
-ffffffc00845cc28 t trace_event_raw_event_io_uring_create
-ffffffc00845cd10 t perf_trace_io_uring_create
-ffffffc00845ce48 t trace_event_raw_event_io_uring_register
-ffffffc00845cf30 t perf_trace_io_uring_register
-ffffffc00845d068 t trace_event_raw_event_io_uring_file_get
-ffffffc00845d134 t perf_trace_io_uring_file_get
-ffffffc00845d25c t trace_event_raw_event_io_uring_queue_async_work
-ffffffc00845d3ac t perf_trace_io_uring_queue_async_work
-ffffffc00845d570 t trace_event_raw_event_io_uring_defer
-ffffffc00845d6a8 t perf_trace_io_uring_defer
-ffffffc00845d854 t trace_event_raw_event_io_uring_link
-ffffffc00845d918 t perf_trace_io_uring_link
-ffffffc00845da38 t trace_event_raw_event_io_uring_cqring_wait
-ffffffc00845daf8 t perf_trace_io_uring_cqring_wait
-ffffffc00845dc14 t trace_event_raw_event_io_uring_fail_link
-ffffffc00845dd54 t perf_trace_io_uring_fail_link
-ffffffc00845df08 t trace_event_raw_event_io_uring_complete
-ffffffc00845e000 t perf_trace_io_uring_complete
-ffffffc00845e148 t trace_event_raw_event_io_uring_submit_sqe
-ffffffc00845e2a4 t perf_trace_io_uring_submit_sqe
-ffffffc00845e474 t trace_event_raw_event_io_uring_poll_arm
-ffffffc00845e5c0 t perf_trace_io_uring_poll_arm
-ffffffc00845e780 t trace_event_raw_event_io_uring_task_add
-ffffffc00845e8c0 t perf_trace_io_uring_task_add
-ffffffc00845ea74 t trace_event_raw_event_io_uring_req_failed
-ffffffc00845ec18 t perf_trace_io_uring_req_failed
-ffffffc00845ee30 t trace_event_raw_event_io_uring_cqe_overflow
-ffffffc00845ef14 t perf_trace_io_uring_cqe_overflow
-ffffffc00845f048 t trace_event_raw_event_io_uring_task_work_run
-ffffffc00845f118 t perf_trace_io_uring_task_work_run
-ffffffc00845f238 t trace_event_raw_event_io_uring_short_write
-ffffffc00845f30c t perf_trace_io_uring_short_write
-ffffffc00845f438 t trace_event_raw_event_io_uring_local_work_run
-ffffffc00845f508 t perf_trace_io_uring_local_work_run
-ffffffc00845f628 T io_uring_get_socket
-ffffffc00845f664 T io_is_uring_fops
-ffffffc00845f688 T io_match_task_safe
-ffffffc00845f754 T io_queue_iowq
-ffffffc00845f94c T __io_commit_cqring_flush
-ffffffc00845fa04 t io_queue_deferred
-ffffffc00845fad8 T io_cq_unlock_post
-ffffffc00845fb70 T __io_put_task
-ffffffc00845fc50 T io_task_refs_refill
-ffffffc00845fcfc T io_req_cqe_overflow
-ffffffc00845fd58 t io_cqring_event_overflow
-ffffffc00845ffd4 T __io_get_cqe
-ffffffc00846007c T io_fill_cqe_aux
-ffffffc0084602d0 T io_post_aux_cqe
-ffffffc0084603b4 T io_req_complete_post
-ffffffc008460728 t __io_fill_cqe_req
-ffffffc008460998 t req_ref_put_and_test
-ffffffc008460a20 T io_req_task_queue
-ffffffc008460a5c T __io_req_complete
-ffffffc008460a88 T io_req_complete_failed
-ffffffc008460b48 T __io_alloc_req_refill
-ffffffc008460d40 T io_free_req
-ffffffc008460f10 T tctx_task_work
-ffffffc0084611ac t handle_tw_list
-ffffffc008461398 t ctx_flush_and_put
-ffffffc008461524 t io_uring_drop_tctx_refs
-ffffffc0084615d4 T __io_req_task_work_add
-ffffffc008461a70 T __io_run_local_work
-ffffffc008461d38 t io_submit_flush_completions
-ffffffc008461e2c T io_run_local_work
-ffffffc008461ee8 T io_req_task_submit
-ffffffc008461f8c T io_req_task_queue_fail
-ffffffc008461fcc t io_req_task_cancel
-ffffffc0084620ac T io_queue_next
-ffffffc008462120 T io_free_batch_list
-ffffffc008462414 t io_clean_op
-ffffffc008462614 T io_req_task_complete
-ffffffc0084626b4 T io_file_get_flags
-ffffffc008462760 T io_alloc_async_data
-ffffffc0084627f0 T io_req_prep_async
-ffffffc008462918 T io_file_get_normal
-ffffffc008462a9c T io_poll_issue
-ffffffc008462b10 t io_issue_sqe
-ffffffc008462dc8 T io_wq_free_work
-ffffffc008462ec4 T io_wq_submit_work
-ffffffc0084630a0 t io_assign_file
-ffffffc0084631bc T io_file_get_fixed
-ffffffc00846328c T io_submit_sqes
-ffffffc008463930 T io_run_task_work_sig
-ffffffc00846397c t io_run_task_work_ctx
-ffffffc008463b18 T io_uring_cancel_generic
-ffffffc008463e80 t io_uring_try_cancel_requests
-ffffffc008464100 T __io_uring_cancel
-ffffffc008464130 T __arm64_sys_io_uring_enter
-ffffffc008464d0c T __arm64_sys_io_uring_setup
-ffffffc008464f18 T __arm64_sys_io_uring_register
-ffffffc0084656e8 t trace_raw_output_io_uring_create
-ffffffc008465768 t trace_raw_output_io_uring_register
-ffffffc0084657e8 t trace_raw_output_io_uring_file_get
-ffffffc008465864 t trace_raw_output_io_uring_queue_async_work
-ffffffc008465914 t trace_raw_output_io_uring_defer
-ffffffc008465994 t trace_raw_output_io_uring_link
-ffffffc008465a0c t trace_raw_output_io_uring_cqring_wait
-ffffffc008465a84 t trace_raw_output_io_uring_fail_link
-ffffffc008465b08 t trace_raw_output_io_uring_complete
-ffffffc008465b94 t trace_raw_output_io_uring_submit_sqe
-ffffffc008465c2c t trace_raw_output_io_uring_poll_arm
-ffffffc008465cb0 t trace_raw_output_io_uring_task_add
-ffffffc008465d34 t trace_raw_output_io_uring_req_failed
-ffffffc008465e00 t trace_raw_output_io_uring_cqe_overflow
-ffffffc008465e7c t trace_raw_output_io_uring_task_work_run
-ffffffc008465ef4 t trace_raw_output_io_uring_short_write
-ffffffc008465f6c t trace_raw_output_io_uring_local_work_run
-ffffffc008465fe0 t __io_prep_linked_timeout
-ffffffc008466064 t io_prep_async_work
-ffffffc008466214 t io_eventfd_signal
-ffffffc008466398 t io_eventfd_ops
-ffffffc008466464 t percpu_ref_put
-ffffffc008466588 t io_move_task_work_from_local
-ffffffc0084665fc t __io_req_find_next_prep
-ffffffc0084666b0 t __io_arm_ltimeout
-ffffffc00846673c t io_queue_async
-ffffffc008466908 t io_submit_fail_init
-ffffffc008466acc t trace_io_uring_link
-ffffffc008466bd8 t io_queue_sqe_fallback
-ffffffc008466c60 t io_drain_req
-ffffffc008466f30 t io_uring_try_cancel_iowq
-ffffffc008466fec t io_cancel_task_cb
-ffffffc0084670bc t io_iopoll_try_reap_events
-ffffffc00846715c t io_cancel_defer_files
-ffffffc008467310 t io_cancel_ctx_cb
-ffffffc008467328 t __io_cqring_overflow_flush
-ffffffc008467604 t io_wake_function
-ffffffc008467690 t io_uring_poll.llvm.6253150211813178604
-ffffffc008467774 t io_uring_mmap.llvm.6253150211813178604
-ffffffc00846788c t io_uring_release.llvm.6253150211813178604
-ffffffc0084678c0 t io_ring_ctx_wait_and_kill
-ffffffc008467a58 t io_ring_exit_work
-ffffffc008467cd4 t io_req_caches_free
-ffffffc008467e88 t io_tctx_exit_cb
-ffffffc008467ee4 t io_ring_ctx_free
-ffffffc0084682d4 t io_mem_free
-ffffffc008468380 t io_uring_create
-ffffffc0084687a0 t io_ring_ctx_alloc
-ffffffc008468a64 t io_allocate_scq_urings
-ffffffc008468ba8 t io_uring_get_file
-ffffffc008468c5c t io_uring_install_fd
-ffffffc008468cdc t trace_io_uring_create
-ffffffc008468df0 t io_alloc_hash_table
-ffffffc008468e68 t io_ring_ctx_ref_free
-ffffffc008468e98 t io_fallback_req_func
-ffffffc008469140 t io_eventfd_register
-ffffffc008469398 t io_probe
-ffffffc008469774 t io_register_restrictions
-ffffffc0084698cc t io_register_iowq_aff
-ffffffc008469b34 t io_register_iowq_max_workers
-ffffffc008469fac T io_xattr_cleanup
-ffffffc008469ffc T io_fgetxattr_prep
-ffffffc00846a024 t __io_getxattr_prep
-ffffffc00846a120 T io_getxattr_prep
-ffffffc00846a190 T io_fgetxattr
-ffffffc00846a228 T io_getxattr
-ffffffc00846a364 T io_setxattr_prep
-ffffffc00846a484 T io_fsetxattr_prep
-ffffffc00846a56c T io_fsetxattr
-ffffffc00846a628 T io_setxattr
-ffffffc00846a7ac T io_nop_prep
-ffffffc00846a7c0 T io_nop
-ffffffc00846a7dc T io_renameat_prep
-ffffffc00846a8d4 T io_renameat
-ffffffc00846a940 T io_renameat_cleanup
-ffffffc00846a984 T io_unlinkat_prep
-ffffffc00846aa4c T io_unlinkat
-ffffffc00846aac0 T io_unlinkat_cleanup
-ffffffc00846aaf0 T io_mkdirat_prep
-ffffffc00846abb0 T io_mkdirat
-ffffffc00846ac18 T io_mkdirat_cleanup
-ffffffc00846ac48 T io_symlinkat_prep
-ffffffc00846ad30 T io_symlinkat
-ffffffc00846ad98 T io_linkat_prep
-ffffffc00846ae98 T io_linkat
-ffffffc00846af04 T io_link_cleanup
-ffffffc00846af48 T io_tee_prep
-ffffffc00846afc4 T io_tee
-ffffffc00846b0a8 T io_splice_prep
-ffffffc00846b124 T io_splice
-ffffffc00846b224 T io_sfr_prep
-ffffffc00846b290 T io_sync_file_range
-ffffffc00846b2f0 T io_fsync_prep
-ffffffc00846b364 T io_fsync
-ffffffc00846b3d4 T io_fallocate_prep
-ffffffc00846b43c T io_fallocate
-ffffffc00846b528 T io_madvise_prep
-ffffffc00846b590 T io_madvise
-ffffffc00846b5f0 T io_fadvise_prep
-ffffffc00846b658 T io_fadvise
-ffffffc00846b6dc T io_alloc_file_tables
-ffffffc00846b760 T io_free_file_tables
-ffffffc00846b7a8 T __io_fixed_fd_install
-ffffffc00846b9cc T io_fixed_fd_install
-ffffffc00846ba68 T io_fixed_fd_remove
-ffffffc00846bb6c T io_register_file_alloc_range
-ffffffc00846bd54 T io_openat_prep
-ffffffc00846bea8 T io_openat2_prep
-ffffffc00846c14c T io_openat2
-ffffffc00846c480 T io_openat
-ffffffc00846c4ac T io_open_cleanup
-ffffffc00846c4e0 T __io_close_fixed
-ffffffc00846c560 T io_close_prep
-ffffffc00846c5e8 T io_close
-ffffffc00846c748 T io_uring_cmd_complete_in_task
-ffffffc00846c788 t io_uring_cmd_work
-ffffffc00846c7e0 T io_uring_cmd_done
-ffffffc00846c864 T io_uring_cmd_prep_async
-ffffffc00846c8b4 T io_uring_cmd_prep
-ffffffc00846c9b0 T io_uring_cmd
-ffffffc00846caf8 T io_uring_cmd_import_fixed
-ffffffc00846cb44 T io_epoll_ctl_prep
-ffffffc00846cd74 T io_epoll_ctl
-ffffffc00846ce00 T io_statx_prep
-ffffffc00846cee0 T io_statx
-ffffffc00846cf40 T io_statx_cleanup
-ffffffc00846cf74 T io_shutdown_prep
-ffffffc00846cfd0 T io_shutdown
-ffffffc00846d038 T io_send_prep_async
-ffffffc00846d118 T io_sendmsg_prep_async
-ffffffc00846d214 T io_sendmsg_recvmsg_cleanup
-ffffffc00846d248 T io_sendmsg_prep
-ffffffc00846d320 T io_sendmsg
-ffffffc00846d564 t io_setup_async_msg
-ffffffc00846d694 T io_send
-ffffffc00846d9dc t io_setup_async_addr
-ffffffc00846daf8 T io_recvmsg_prep_async
-ffffffc00846dbc8 t io_recvmsg_copy_hdr
-ffffffc00846dfb0 T io_recvmsg_prep
-ffffffc00846e09c T io_recvmsg
-ffffffc00846e7ec T io_recv
-ffffffc00846eba0 T io_send_zc_cleanup
-ffffffc00846ec00 T io_send_zc_prep
-ffffffc00846ee04 T io_send_zc
-ffffffc00846f1c8 t io_sg_from_iter
-ffffffc00846f3f0 t io_sg_from_iter_iovec
-ffffffc00846f46c T io_sendmsg_zc
-ffffffc00846f720 T io_sendrecv_fail
-ffffffc00846f760 T io_accept_prep
-ffffffc00846f860 T io_accept
-ffffffc00846f9e0 T io_socket_prep
-ffffffc00846fa98 T io_socket
-ffffffc00846fbac T io_connect_prep_async
-ffffffc00846fbe8 T io_connect_prep
-ffffffc00846fc50 T io_connect
-ffffffc00846fe8c T io_netmsg_cache_free
-ffffffc00846feb8 T io_msg_ring_prep
-ffffffc00846ff54 T io_msg_ring
-ffffffc008470180 T io_flush_timeouts
-ffffffc008470230 t io_kill_timeout
-ffffffc008470308 T io_disarm_next
-ffffffc008470450 t io_fail_links
-ffffffc0084705a0 T __io_disarm_linked_timeout
-ffffffc008470638 T io_timeout_cancel
-ffffffc008470754 T io_timeout_remove_prep
-ffffffc008470858 T io_timeout_remove
-ffffffc008470b40 T io_timeout_prep
-ffffffc008470b6c t __io_timeout_prep
-ffffffc008470d48 T io_link_timeout_prep
-ffffffc008470d78 T io_timeout
-ffffffc008470eb8 t io_timeout_fn
-ffffffc008470fa4 T io_queue_linked_timeout
-ffffffc0084710fc t io_link_timeout_fn
-ffffffc008471238 T io_kill_timeouts
-ffffffc008471338 t io_req_tw_fail_links
-ffffffc0084713d4 t io_req_task_link_timeout
-ffffffc00847153c T io_sq_thread_unpark
-ffffffc00847162c T io_sq_thread_park
-ffffffc0084716f4 T io_sq_thread_stop
-ffffffc0084717b4 T io_put_sq_data
-ffffffc008471868 T io_sq_thread_finish
-ffffffc008471af0 T io_sqpoll_wait_sq
-ffffffc008471bf0 T io_sq_offload_create
-ffffffc008471ffc t io_sq_thread
-ffffffc0084725ac t io_run_task_work
-ffffffc0084726a8 T io_uring_show_fdinfo
-ffffffc0084728c0 t __io_uring_show_fdinfo
-ffffffc008472f64 t io_uring_show_cred
-ffffffc008473190 T __io_uring_free
-ffffffc008473214 T io_uring_alloc_task_context
-ffffffc0084733e4 T __io_uring_add_tctx_node
-ffffffc008473578 T __io_uring_add_tctx_node_from_submit
-ffffffc0084735e4 T io_uring_del_tctx_node
-ffffffc0084736c8 T io_uring_clean_tctx
-ffffffc008473784 T io_uring_unreg_ringfd
-ffffffc0084738bc T io_ringfd_register
-ffffffc008473d10 T io_ringfd_unregister
-ffffffc008473f94 T io_arm_poll_handler
-ffffffc008474258 t io_async_queue_proc
-ffffffc008474298 t __io_arm_poll_handler
-ffffffc00847481c T io_poll_remove_all
-ffffffc008474884 t io_poll_remove_all_table
-ffffffc00847497c T io_poll_cancel
-ffffffc008474a14 t __io_poll_cancel
-ffffffc008474ba4 T io_poll_remove_prep
-ffffffc008474c64 T io_poll_add_prep
-ffffffc008474ce4 T io_poll_add
-ffffffc008474db4 t io_poll_queue_proc
-ffffffc008474df4 T io_poll_remove
-ffffffc0084750e8 t io_poll_disarm
-ffffffc008475244 T io_apoll_cache_free
-ffffffc00847526c t __io_queue_proc
-ffffffc0084753ac t io_poll_double_prepare
-ffffffc008475448 t io_poll_wake
-ffffffc0084755a4 t io_poll_remove_entries
-ffffffc0084756bc t io_poll_can_finish_inline
-ffffffc0084757b0 t __io_poll_execute
-ffffffc0084758ac t io_pollfree_wake
-ffffffc008475a08 t io_poll_get_ownership_slowpath
-ffffffc008475aa0 t io_poll_task_func
-ffffffc008475b94 t io_apoll_task_func
-ffffffc008475c2c t io_poll_check_events
-ffffffc008475e88 t io_poll_tw_hash_eject
-ffffffc008475f7c t io_poll_cancel_req
-ffffffc0084760a8 T io_try_cancel
-ffffffc0084761dc T io_async_cancel_prep
-ffffffc008476264 T io_async_cancel
-ffffffc0084763b4 t __io_async_cancel
-ffffffc008476530 T init_hash_table
-ffffffc00847656c T io_sync_cancel
-ffffffc008476a0c t io_cancel_cb
-ffffffc008476a88 T io_kbuf_recycle_legacy
-ffffffc008476b58 T __io_put_kbuf
-ffffffc008476cac T io_buffer_select
-ffffffc008476e88 T io_destroy_buffers
-ffffffc008476fd0 t __io_remove_buffers
-ffffffc0084770e8 T io_remove_buffers_prep
-ffffffc00847716c T io_remove_buffers
-ffffffc008477248 T io_provide_buffers_prep
-ffffffc008477354 T io_provide_buffers
-ffffffc0084776f0 t io_init_bl_list
-ffffffc00847777c t io_buffer_add_list
-ffffffc008477814 T io_register_pbuf_ring
-ffffffc008477b94 T io_unregister_pbuf_ring
-ffffffc008477de0 T io_rsrc_refs_drop
-ffffffc008477f1c T __io_account_mem
-ffffffc008477fcc T io_rsrc_refs_refill
-ffffffc0084780c4 T io_rsrc_put_work
-ffffffc008478290 T io_wait_rsrc_data
-ffffffc008478308 T io_rsrc_node_destroy
-ffffffc008478348 T io_rsrc_node_switch
-ffffffc008478468 T io_rsrc_node_switch_start
-ffffffc008478520 T io_register_files_update
-ffffffc0084786fc t __io_register_rsrc_update
-ffffffc0084791b4 T io_register_rsrc_update
-ffffffc0084793a0 T io_register_rsrc
-ffffffc0084795c0 T io_sqe_files_register
-ffffffc008479a14 T io_sqe_buffers_register
-ffffffc008479c98 T io_files_update_prep
-ffffffc008479d0c T io_files_update
-ffffffc00847a140 T io_queue_rsrc_removal
-ffffffc00847a200 T __io_sqe_files_unregister
-ffffffc00847a344 t io_rsrc_data_free
-ffffffc00847a3c0 T io_sqe_files_unregister
-ffffffc00847a424 t io_rsrc_ref_quiesce
-ffffffc00847a598 T __io_scm_file_account
-ffffffc00847a754 t refcount_add
-ffffffc00847a7c8 t refcount_add
-ffffffc00847a83c t refcount_add
-ffffffc00847a8b0 t refcount_add
-ffffffc00847a924 t io_rsrc_data_alloc
-ffffffc00847aba8 t io_rsrc_file_put
-ffffffc00847ade8 t io_scm_file_account
-ffffffc00847ae3c T __io_sqe_buffers_unregister
-ffffffc00847af08 t io_buffer_unmap
-ffffffc00847b014 T io_sqe_buffers_unregister
-ffffffc00847b07c T io_pin_pages
-ffffffc00847b28c t io_rsrc_buf_put
-ffffffc00847b2c8 t io_copy_iov
-ffffffc00847b45c t io_sqe_buffer_register
-ffffffc00847b920 T io_import_fixed
-ffffffc00847ba1c t io_rsrc_node_ref_zero
-ffffffc00847bb4c t io_alloc_page_table
-ffffffc00847bc1c T io_prep_rw
-ffffffc00847befc T io_readv_writev_cleanup
-ffffffc00847bf30 T io_readv_prep_async
-ffffffc00847bfd8 T io_writev_prep_async
-ffffffc00847c080 T io_read
-ffffffc00847c5cc t io_import_iovec
-ffffffc00847c738 t io_rw_init_file
-ffffffc00847c874 t io_setup_async_rw
-ffffffc00847c9a0 t kiocb_done
-ffffffc00847cb30 T io_write
-ffffffc00847d098 t loop_rw_iter
-ffffffc00847d23c t kiocb_end_write
-ffffffc00847d3cc T io_rw_fail
-ffffffc00847d404 T io_do_iopoll
-ffffffc00847d860 t io_complete_rw_iopoll
-ffffffc00847d8f0 t io_complete_rw
-ffffffc00847d9cc t io_rw_should_reissue
-ffffffc00847dab8 t io_req_rw_complete
-ffffffc00847dafc t io_req_io_end
-ffffffc00847dc24 t io_async_buf_func
-ffffffc00847dce4 t io_no_issue.llvm.5908801852165218436
-ffffffc00847dcfc T io_uring_get_opcode
-ffffffc00847dd40 t io_eopnotsupp_prep
-ffffffc00847dd54 T io_alloc_notif
-ffffffc00847de44 t io_uring_tx_zerocopy_callback
-ffffffc00847df10 T io_notif_flush
-ffffffc00847dfa8 t __io_notif_complete_tw
-ffffffc00847e044 T io_wq_worker_running
-ffffffc00847e0b8 T io_wq_worker_sleeping
-ffffffc00847e100 t io_wqe_dec_running
-ffffffc00847e264 T io_wq_enqueue
-ffffffc00847e298 t io_wqe_enqueue
-ffffffc00847e5d8 T io_wq_hash_work
-ffffffc00847e614 T io_wq_cancel_cb
-ffffffc00847e72c T io_wq_create
-ffffffc00847ea1c t io_wqe_hash_wake
-ffffffc00847eb24 T io_wq_exit_start
-ffffffc00847eb60 T io_wq_put_and_exit
-ffffffc00847ee48 T io_wq_cpu_affinity
-ffffffc00847eec0 T io_wq_max_workers
-ffffffc00847efb4 t io_queue_worker_create
-ffffffc00847f304 t create_worker_cb
-ffffffc00847f4bc t io_wq_cancel_tw_create
-ffffffc00847f568 t io_worker_ref_put
-ffffffc00847f5dc t io_task_work_match
-ffffffc00847f624 t io_worker_cancel_cb
-ffffffc00847f7ac t create_worker_cont
-ffffffc00847fa78 t io_wqe_worker
-ffffffc00847fe88 t io_init_new_worker
-ffffffc00847ff64 t io_wq_work_match_all
-ffffffc00847ff74 t io_acct_cancel_pending_work
-ffffffc008480120 t io_worker_handle_work
-ffffffc008480694 t io_assign_current_work
-ffffffc0084807bc t io_task_worker_match
-ffffffc0084807e4 t create_io_worker
-ffffffc0084809e8 t io_workqueue_create
-ffffffc008480a50 t io_wqe_activate_free_worker
-ffffffc008480c9c t io_wq_work_match_item
-ffffffc008480cb0 t io_wq_for_each_worker
-ffffffc008480e58 t io_wq_worker_cancel
-ffffffc008480fd0 t io_wq_worker_wake
-ffffffc00848105c t io_wq_cpu_online
-ffffffc0084810f0 t io_wq_cpu_offline
-ffffffc008481180 t io_wq_worker_affinity
-ffffffc008481210 T lockref_get
-ffffffc008481308 T lockref_get_not_zero
-ffffffc008481430 T lockref_put_not_zero
-ffffffc008481558 T lockref_put_return
-ffffffc008481640 T lockref_put_or_lock
-ffffffc008481758 T lockref_mark_dead
-ffffffc008481780 T lockref_get_not_dead
-ffffffc00848189c T _bcd2bin
-ffffffc0084818bc T _bin2bcd
-ffffffc0084818e8 T sort_r
-ffffffc008481d80 T sort
-ffffffc008481de8 T match_token
-ffffffc00848205c T match_int
-ffffffc008482130 T match_uint
-ffffffc0084821a4 T match_strdup
-ffffffc0084821e0 T match_u64
-ffffffc008482298 T match_octal
-ffffffc00848236c T match_hex
-ffffffc008482440 T match_wildcard
-ffffffc0084824ec T match_strlcpy
-ffffffc008482550 T debug_locks_off
-ffffffc0084825d8 T prandom_u32_state
-ffffffc008482638 T prandom_bytes_state
-ffffffc00848270c T prandom_seed_full_state
-ffffffc008482a5c T bust_spinlocks
-ffffffc008482abc T kvasprintf
-ffffffc008482bec T kvasprintf_const
-ffffffc008482ce8 T kasprintf
-ffffffc008482d70 T __bitmap_equal
-ffffffc008482e00 T __bitmap_or_equal
-ffffffc008482ea8 T __bitmap_complement
-ffffffc008482edc T __bitmap_shift_right
-ffffffc008482fc8 T __bitmap_shift_left
-ffffffc00848307c T bitmap_cut
-ffffffc008483180 T __bitmap_and
-ffffffc008483210 T __bitmap_or
-ffffffc008483248 T __bitmap_xor
-ffffffc008483280 T __bitmap_andnot
-ffffffc008483310 T __bitmap_replace
-ffffffc008483354 T __bitmap_intersects
-ffffffc0084833e0 T __bitmap_subset
-ffffffc008483470 T __bitmap_weight
-ffffffc008483518 T __bitmap_weight_and
-ffffffc0084835e4 T __bitmap_set
-ffffffc0084836c4 T __bitmap_clear
-ffffffc0084837a4 T bitmap_find_next_zero_area_off
-ffffffc008483850 T bitmap_parse_user
-ffffffc0084838cc T bitmap_parse
-ffffffc008483c20 T bitmap_print_to_pagebuf
-ffffffc008483c7c T bitmap_print_bitmask_to_buf
-ffffffc008483d40 T bitmap_print_list_to_buf
-ffffffc008483e04 T bitmap_parselist
-ffffffc008484298 T bitmap_parselist_user
-ffffffc008484310 T bitmap_remap
-ffffffc008484558 T bitmap_bitremap
-ffffffc0084846c0 T bitmap_find_free_region
-ffffffc00848482c T bitmap_release_region
-ffffffc008484930 T bitmap_allocate_region
-ffffffc008484a60 T bitmap_alloc
-ffffffc008484a9c T bitmap_zalloc
-ffffffc008484adc T bitmap_alloc_node
-ffffffc008484b18 T bitmap_zalloc_node
-ffffffc008484b58 T bitmap_free
-ffffffc008484b84 T devm_bitmap_alloc
-ffffffc008484c00 t devm_bitmap_free
-ffffffc008484c2c T devm_bitmap_zalloc
-ffffffc008484ca8 T bitmap_from_arr32
-ffffffc008484d38 T bitmap_to_arr32
-ffffffc008484dbc T sg_next
-ffffffc008484df4 T sg_nents
-ffffffc008484e3c T sg_nents_for_len
-ffffffc008484ea0 T sg_last
-ffffffc008484ef4 T sg_init_table
-ffffffc008484f50 T sg_init_one
-ffffffc008484f8c T __sg_free_table
-ffffffc0084850b0 T sg_free_append_table
-ffffffc008485148 T sg_free_table
-ffffffc0084851e0 T __sg_alloc_table
-ffffffc008485440 T sg_alloc_table
-ffffffc0084854a8 t sg_kmalloc
-ffffffc0084854f0 T sg_alloc_append_table_from_pages
-ffffffc0084858c4 T sg_alloc_table_from_pages_segment
-ffffffc008485974 T sgl_alloc_order
-ffffffc008485b30 T sgl_free_order
-ffffffc008485bc4 T sgl_alloc
-ffffffc008485c00 T sgl_free_n_order
-ffffffc008485cac T sgl_free
-ffffffc008485d3c T __sg_page_iter_start
-ffffffc008485d58 T __sg_page_iter_next
-ffffffc008485dfc T __sg_page_iter_dma_next
-ffffffc008485ea4 T sg_miter_start
-ffffffc008485ee0 T sg_miter_skip
-ffffffc008485f58 T sg_miter_stop
-ffffffc00848602c t sg_miter_get_next_page
-ffffffc008486128 T sg_miter_next
-ffffffc0084861f8 T sg_copy_buffer
-ffffffc008486558 T sg_copy_from_buffer
-ffffffc00848658c T sg_copy_to_buffer
-ffffffc0084865c0 T sg_pcopy_from_buffer
-ffffffc0084865f0 T sg_pcopy_to_buffer
-ffffffc008486620 T sg_zero_buffer
-ffffffc00848694c T list_sort
-ffffffc008486c24 T generate_random_uuid
-ffffffc008486c80 T generate_random_guid
-ffffffc008486cdc T guid_gen
-ffffffc008486d38 T uuid_gen
-ffffffc008486d94 T uuid_is_valid
-ffffffc008486e10 T guid_parse
-ffffffc008486f20 T uuid_parse
-ffffffc008487030 T fault_in_iov_iter_readable
-ffffffc008487138 T fault_in_iov_iter_writeable
-ffffffc008487240 T iov_iter_init
-ffffffc008487284 T _copy_to_iter
-ffffffc00848777c t copy_pipe_to_iter
-ffffffc0084878b4 t copyout
-ffffffc008487a1c t xas_next_entry
-ffffffc008487adc T _copy_from_iter
-ffffffc008487fc8 t copyin
-ffffffc008488134 T _copy_from_iter_nocache
-ffffffc008488620 t __copy_from_user_inatomic_nocache
-ffffffc008488780 T copy_page_to_iter
-ffffffc0084888d0 t copy_page_to_iter_pipe
-ffffffc008488a68 T copy_page_from_iter
-ffffffc008488b9c T iov_iter_zero
-ffffffc008489074 t pipe_zero
-ffffffc008489194 T copy_page_from_iter_atomic
-ffffffc008489790 T iov_iter_advance
-ffffffc008489834 t iov_iter_iovec_advance
-ffffffc0084898ac t iov_iter_bvec_advance
-ffffffc008489924 t pipe_advance
-ffffffc008489b00 T iov_iter_revert
-ffffffc008489ce4 T iov_iter_single_seg_count
-ffffffc008489d40 T iov_iter_kvec
-ffffffc008489d84 T iov_iter_bvec
-ffffffc008489dc8 T iov_iter_pipe
-ffffffc008489e18 T iov_iter_xarray
-ffffffc008489e58 T iov_iter_discard
-ffffffc008489e88 T iov_iter_is_aligned
-ffffffc008489f88 t iov_iter_aligned_iovec
-ffffffc00848a03c t iov_iter_aligned_bvec
-ffffffc00848a0ec T iov_iter_alignment
-ffffffc00848a1b8 t iov_iter_alignment_iovec
-ffffffc00848a258 t iov_iter_alignment_bvec
-ffffffc00848a2dc T iov_iter_gap_alignment
-ffffffc00848a378 T iov_iter_get_pages2
-ffffffc00848a3e8 t __iov_iter_get_pages_alloc
-ffffffc00848a740 T iov_iter_get_pages_alloc2
-ffffffc00848a7a0 T csum_and_copy_from_iter
-ffffffc00848b014 t csum_and_memcpy
-ffffffc00848b088 T csum_and_copy_to_iter
-ffffffc00848b910 t csum_and_copy_to_pipe_iter
-ffffffc00848ba78 T hash_and_copy_to_iter
-ffffffc00848bb70 T iov_iter_npages
-ffffffc00848bc7c t iov_npages
-ffffffc00848bd38 t bvec_npages
-ffffffc00848bdd4 t sanity
-ffffffc00848bee4 T dup_iter
-ffffffc00848bf6c T iovec_from_user
-ffffffc00848c488 T __import_iovec
-ffffffc00848c5e4 T import_iovec
-ffffffc00848c614 T import_single_range
-ffffffc00848c6a4 T iov_iter_restore
-ffffffc00848c710 t append_pipe
-ffffffc00848c868 t want_pages_array
-ffffffc00848c8e8 t pipe_get_pages
-ffffffc00848caa4 t iter_xarray_get_pages
-ffffffc00848cd60 W __ctzsi2
-ffffffc00848cd7c W __clzsi2
-ffffffc00848cd90 W __clzdi2
-ffffffc00848cda4 W __ctzdi2
-ffffffc00848cdbc T bsearch
-ffffffc00848ce6c T _find_first_bit
-ffffffc00848cec4 T _find_first_and_bit
-ffffffc00848cf30 T _find_first_zero_bit
-ffffffc00848cf94 T _find_next_bit
-ffffffc00848d004 T __find_nth_bit
-ffffffc00848d110 T __find_nth_and_bit
-ffffffc00848d240 T __find_nth_andnot_bit
-ffffffc00848d370 T _find_next_and_bit
-ffffffc00848d3f8 T _find_next_andnot_bit
-ffffffc00848d480 T _find_next_zero_bit
-ffffffc00848d4f8 T _find_last_bit
-ffffffc00848d560 T find_next_clump8
-ffffffc00848d5ec T llist_add_batch
-ffffffc00848d664 T llist_del_first
-ffffffc00848d6d8 T llist_reverse_order
-ffffffc00848d710 T memweight
-ffffffc00848d92c T __kfifo_alloc
-ffffffc00848d9e0 T __kfifo_free
-ffffffc00848da24 T __kfifo_init
-ffffffc00848da80 T __kfifo_in
-ffffffc00848db38 T __kfifo_out_peek
-ffffffc00848dbdc T __kfifo_out
-ffffffc00848dc8c T __kfifo_from_user
-ffffffc00848dd0c t kfifo_copy_from_user
-ffffffc00848e0c8 T __kfifo_to_user
-ffffffc00848e144 t kfifo_copy_to_user
-ffffffc00848e4c4 T __kfifo_dma_in_prepare
-ffffffc00848e580 T __kfifo_dma_out_prepare
-ffffffc00848e630 T __kfifo_max_r
-ffffffc00848e658 T __kfifo_len_r
-ffffffc00848e690 T __kfifo_in_r
-ffffffc00848e78c T __kfifo_out_peek_r
-ffffffc00848e864 T __kfifo_out_r
-ffffffc00848e958 T __kfifo_skip_r
-ffffffc00848e99c T __kfifo_from_user_r
-ffffffc00848ea78 T __kfifo_to_user_r
-ffffffc00848eb38 T __kfifo_dma_in_prepare_r
-ffffffc00848ec24 T __kfifo_dma_in_finish_r
-ffffffc00848ec8c T __kfifo_dma_out_prepare_r
-ffffffc00848ed6c T __kfifo_dma_out_finish_r
-ffffffc00848edac t setup_sgl_buf
-ffffffc00848ef18 T percpu_ref_init
-ffffffc00848f044 T percpu_ref_exit
-ffffffc00848f0ec T percpu_ref_switch_to_atomic
-ffffffc00848f164 t __percpu_ref_switch_mode
-ffffffc00848f43c T percpu_ref_switch_to_atomic_sync
-ffffffc00848f55c T percpu_ref_switch_to_percpu
-ffffffc00848f5d4 T percpu_ref_kill_and_confirm
-ffffffc00848f780 T percpu_ref_is_zero
-ffffffc00848f80c T percpu_ref_reinit
-ffffffc00848f89c T percpu_ref_resurrect
-ffffffc00848f9e8 t percpu_ref_noop_confirm_switch
-ffffffc00848f9f8 t percpu_ref_switch_to_atomic_rcu
-ffffffc00848fd00 T rhashtable_insert_slow
-ffffffc0084903c0 T rhashtable_walk_enter
-ffffffc008490458 T rhashtable_walk_exit
-ffffffc0084904d8 T rhashtable_walk_start_check
-ffffffc0084906a8 T rhashtable_walk_next
-ffffffc00849073c t __rhashtable_walk_find_next
-ffffffc0084908dc T rhashtable_walk_peek
-ffffffc008490940 T rhashtable_walk_stop
-ffffffc008490a08 t bucket_table_free_rcu
-ffffffc008490a90 T rhashtable_init
-ffffffc008490d94 t jhash
-ffffffc008490f44 t rhashtable_jhash2
-ffffffc008491074 t bucket_table_alloc
-ffffffc00849127c t rht_deferred_worker
-ffffffc008491870 T rhltable_init
-ffffffc0084918b0 T rhashtable_free_and_destroy
-ffffffc008491ae8 T rhashtable_destroy
-ffffffc008491b1c T __rht_bucket_nested
-ffffffc008491ba4 T rht_bucket_nested
-ffffffc008491c4c T rht_bucket_nested_insert
-ffffffc008491e40 t rhashtable_rehash_alloc
-ffffffc008491fc4 t nested_table_free
-ffffffc008492034 T base64_encode
-ffffffc008492148 T base64_decode
-ffffffc008492250 T __do_once_start
-ffffffc0084922b8 T __do_once_done
-ffffffc008492358 T __do_once_sleepable_start
-ffffffc0084923b4 T __do_once_sleepable_done
-ffffffc008492450 t once_deferred
-ffffffc0084924b4 T refcount_warn_saturate
-ffffffc00849260c T refcount_dec_if_one
-ffffffc008492664 T refcount_dec_not_one
-ffffffc008492738 T refcount_dec_and_mutex_lock
-ffffffc008492898 T refcount_dec_and_lock
-ffffffc0084929f8 T refcount_dec_and_lock_irqsave
-ffffffc008492b6c T check_zeroed_user
-ffffffc008492ed0 T errseq_set
-ffffffc008492fb0 T errseq_sample
-ffffffc008492fd0 T errseq_check
-ffffffc008493004 T errseq_check_and_advance
-ffffffc00849308c T __alloc_bucket_spinlocks
-ffffffc008493160 T free_bucket_spinlocks
-ffffffc00849318c T __genradix_ptr
-ffffffc008493358 T __genradix_ptr_alloc
-ffffffc008493534 T __genradix_iter_peek
-ffffffc00849360c T __genradix_prealloc
-ffffffc008493684 T __genradix_free
-ffffffc0084936e0 t genradix_free_recurse
-ffffffc008493758 T string_get_size
-ffffffc008493950 T parse_int_array_user
-ffffffc008493a40 T string_unescape
-ffffffc008493c1c T string_escape_mem
-ffffffc008493fb0 T kstrdup_quotable
-ffffffc0084940b0 T kstrdup_quotable_cmdline
-ffffffc008494240 T kstrdup_quotable_file
-ffffffc0084943cc T kasprintf_strarray
-ffffffc0084944a0 T kfree_strarray
-ffffffc008494508 T devm_kasprintf_strarray
-ffffffc008494628 t devm_kfree_strarray
-ffffffc008494690 T strscpy_pad
-ffffffc008494704 T skip_spaces
-ffffffc00849472c T strim
-ffffffc0084947ac T sysfs_streq
-ffffffc008494840 T match_string
-ffffffc0084948b8 T __sysfs_match_string
-ffffffc008494974 T strreplace
-ffffffc0084949ac T memcpy_and_pad
-ffffffc008494a2c T hex_to_bin
-ffffffc008494a8c T hex2bin
-ffffffc008494b54 T bin2hex
-ffffffc008494ba8 T hex_dump_to_buffer
-ffffffc008494fb0 T print_hex_dump
-ffffffc008495134 T _parse_integer_fixup_radix
-ffffffc0084951c8 T _parse_integer_limit
-ffffffc008495260 T _parse_integer
-ffffffc008495290 T kstrtoull
-ffffffc008495360 T kstrtoll
-ffffffc008495454 T _kstrtoul
-ffffffc0084954d0 T _kstrtol
-ffffffc00849554c T kstrtouint
-ffffffc0084955d8 T kstrtoint
-ffffffc008495664 T kstrtou16
-ffffffc0084956f0 T kstrtos16
-ffffffc00849577c T kstrtou8
-ffffffc008495808 T kstrtos8
-ffffffc008495894 T kstrtobool
-ffffffc008495938 T kstrtobool_from_user
-ffffffc008495b24 T kstrtoull_from_user
-ffffffc008495d28 T kstrtoll_from_user
-ffffffc008495f2c T kstrtoul_from_user
-ffffffc008496130 T kstrtol_from_user
-ffffffc008496334 T kstrtouint_from_user
-ffffffc008496530 T kstrtoint_from_user
-ffffffc00849672c T kstrtou16_from_user
-ffffffc008496924 T kstrtos16_from_user
-ffffffc008496b1c T kstrtou8_from_user
-ffffffc008496d14 T kstrtos8_from_user
-ffffffc008496f0c T iter_div_u64_rem
-ffffffc008496f90 T mul_u64_u64_div_u64
-ffffffc008497020 T gcd
-ffffffc00849709c T lcm
-ffffffc0084970f4 T lcm_not_zero
-ffffffc00849715c T int_pow
-ffffffc0084971a4 T int_sqrt
-ffffffc008497208 T reciprocal_value
-ffffffc008497264 T reciprocal_value_adv
-ffffffc008497350 T rational_best_approximation
-ffffffc008497410 T __crypto_memneq
-ffffffc008497498 T __crypto_xor
-ffffffc008497528 T chacha_block_generic
-ffffffc0084976a0 t chacha_permute
-ffffffc0084978a8 T hchacha_block_generic
-ffffffc008497944 T chacha_crypt_generic
-ffffffc008497a98 T aes_expandkey
-ffffffc008497ee4 T aes_encrypt
-ffffffc008498378 T aes_decrypt
-ffffffc0084988e4 T blake2s_update
-ffffffc0084989ec T blake2s_final
-ffffffc008498aa0 W blake2s_compress
-ffffffc008498aa0 T blake2s_compress_generic
-ffffffc008499f50 T des_expand_key
-ffffffc008499f94 t des_ekey
-ffffffc00849a868 T des_encrypt
-ffffffc00849aabc T des_decrypt
-ffffffc00849ad10 T des3_ede_expand_key
-ffffffc00849b658 T des3_ede_encrypt
-ffffffc00849ba9c T des3_ede_decrypt
-ffffffc00849bed8 T poly1305_core_setkey
-ffffffc00849bf24 T poly1305_core_blocks
-ffffffc00849c044 T poly1305_core_emit
-ffffffc00849c12c T poly1305_init_generic
-ffffffc00849c1a8 T poly1305_update_generic
-ffffffc00849c2a8 T poly1305_final_generic
-ffffffc00849c360 T sha1_transform
-ffffffc00849c6a8 T sha1_init
-ffffffc00849c6e8 T sha256_update
-ffffffc00849cdf8 T sha224_update
-ffffffc00849ce24 T sha256_final
-ffffffc00849cf48 T sha224_final
-ffffffc00849d060 T sha256
-ffffffc00849d1d4 T pci_iomap_range
-ffffffc00849d290 T pci_iomap_wc_range
-ffffffc00849d33c T pci_iomap
-ffffffc00849d3fc T pci_iomap_wc
-ffffffc00849d4a8 T pci_iounmap
-ffffffc00849d500 W __iowrite32_copy
-ffffffc00849d534 T __ioread32_copy
-ffffffc00849d56c W __iowrite64_copy
-ffffffc00849d5a0 T devm_ioremap_release
-ffffffc00849d5d0 T devm_ioremap
-ffffffc00849d694 T devm_ioremap_uc
-ffffffc00849d6e8 T devm_ioremap_wc
-ffffffc00849d7ac T devm_iounmap
-ffffffc00849d80c t devm_ioremap_match
-ffffffc00849d828 T devm_ioremap_resource
-ffffffc00849d854 t __devm_ioremap_resource.llvm.6256870975787897101
-ffffffc00849da90 T devm_ioremap_resource_wc
-ffffffc00849dac0 T devm_of_iomap
-ffffffc00849db78 T devm_ioport_map
-ffffffc00849dc04 t devm_ioport_map_release
-ffffffc00849dc14 T devm_ioport_unmap
-ffffffc00849dc60 t devm_ioport_map_match
-ffffffc00849dc7c T pcim_iomap_table
-ffffffc00849dd04 t pcim_iomap_release
-ffffffc00849dd9c T pcim_iomap
-ffffffc00849de84 T pcim_iounmap
-ffffffc00849dfa4 T pcim_iomap_regions
-ffffffc00849e1c4 T pcim_iomap_regions_request_all
-ffffffc00849e254 T pcim_iounmap_regions
-ffffffc00849e3bc T devm_arch_phys_wc_add
-ffffffc00849e430 t devm_arch_phys_ac_add_release
-ffffffc00849e440 T devm_arch_io_reserve_memtype_wc
-ffffffc00849e4c4 t devm_arch_io_free_memtype_wc_release
-ffffffc00849e4d4 T __traceiter_rwmmio_write
-ffffffc00849e584 T __traceiter_rwmmio_post_write
-ffffffc00849e634 T __traceiter_rwmmio_read
-ffffffc00849e6dc T __traceiter_rwmmio_post_read
-ffffffc00849e78c t trace_event_raw_event_rwmmio_rw_template
-ffffffc00849e870 t perf_trace_rwmmio_rw_template
-ffffffc00849e9a4 t trace_event_raw_event_rwmmio_read
-ffffffc00849ea7c t perf_trace_rwmmio_read
-ffffffc00849ebac t trace_event_raw_event_rwmmio_post_read
-ffffffc00849ec90 t perf_trace_rwmmio_post_read
-ffffffc00849edc4 T log_write_mmio
-ffffffc00849eee8 T log_post_write_mmio
-ffffffc00849f00c T log_read_mmio
-ffffffc00849f128 T log_post_read_mmio
-ffffffc00849f24c t trace_raw_output_rwmmio_rw_template
-ffffffc00849f2c8 t trace_raw_output_rwmmio_read
-ffffffc00849f344 t trace_raw_output_rwmmio_post_read
-ffffffc00849f3c0 T __sw_hweight32
-ffffffc00849f400 T __sw_hweight16
-ffffffc00849f43c T __sw_hweight8
-ffffffc00849f470 T __sw_hweight64
-ffffffc00849f4b0 T __list_add_valid
-ffffffc00849f578 T __list_del_entry_valid
-ffffffc00849f658 T crc16
-ffffffc00849f694 T crc32_le_base
-ffffffc00849f8c4 T __crc32c_le_base
-ffffffc00849faf4 T crc32_be_base
-ffffffc00849fd2c T crc32_le_shift
-ffffffc00849fe04 T __crc32c_le_shift
-ffffffc00849fedc T crc32c
-ffffffc00849ff98 T crc32c_impl
-ffffffc00849ffb8 T xxh32_copy_state
-ffffffc00849ffe8 T xxh64_copy_state
-ffffffc0084a0020 T xxh32
-ffffffc0084a0168 T xxh64
-ffffffc0084a037c T xxh32_reset
-ffffffc0084a03c4 T xxh64_reset
-ffffffc0084a0424 T xxh32_update
-ffffffc0084a05dc T xxh32_digest
-ffffffc0084a06d8 T xxh64_update
-ffffffc0084a0894 T xxh64_digest
-ffffffc0084a0a38 T gen_pool_create
-ffffffc0084a0aac T gen_pool_first_fit
-ffffffc0084a0ae0 T gen_pool_add_owner
-ffffffc0084a0bb4 T gen_pool_virt_to_phys
-ffffffc0084a0c44 T gen_pool_destroy
-ffffffc0084a0d1c T gen_pool_alloc_algo_owner
-ffffffc0084a0fe4 t bitmap_clear_ll
-ffffffc0084a1120 T gen_pool_dma_alloc
-ffffffc0084a11dc T gen_pool_dma_alloc_algo
-ffffffc0084a129c T gen_pool_dma_alloc_align
-ffffffc0084a1390 T gen_pool_first_fit_align
-ffffffc0084a13ec T gen_pool_dma_zalloc
-ffffffc0084a14bc T gen_pool_dma_zalloc_algo
-ffffffc0084a1590 T gen_pool_dma_zalloc_align
-ffffffc0084a1698 T gen_pool_free_owner
-ffffffc0084a17c4 T gen_pool_for_each_chunk
-ffffffc0084a1864 T gen_pool_has_addr
-ffffffc0084a1910 T gen_pool_avail
-ffffffc0084a1990 T gen_pool_size
-ffffffc0084a1a10 T gen_pool_set_algo
-ffffffc0084a1a70 T gen_pool_fixed_alloc
-ffffffc0084a1ae8 T gen_pool_first_fit_order_align
-ffffffc0084a1b34 T gen_pool_best_fit
-ffffffc0084a1c10 T gen_pool_get
-ffffffc0084a1c58 t devm_gen_pool_release
-ffffffc0084a1c88 t devm_gen_pool_match
-ffffffc0084a1ce0 T devm_gen_pool_create
-ffffffc0084a1e08 T of_gen_pool_get
-ffffffc0084a1f54 T inflate_fast
-ffffffc0084a2404 T zlib_inflate_workspacesize
-ffffffc0084a2418 T zlib_inflateReset
-ffffffc0084a2490 T zlib_inflateInit2
-ffffffc0084a2540 T zlib_inflate
-ffffffc0084a3938 t zlib_adler32
-ffffffc0084a3ac0 T zlib_inflateEnd
-ffffffc0084a3aec T zlib_inflateIncomp
-ffffffc0084a3c58 T zlib_inflate_blob
-ffffffc0084a3d50 T zlib_inflate_table
-ffffffc0084a44ec T zlib_deflateInit2
-ffffffc0084a4644 T zlib_deflateReset
-ffffffc0084a479c T zlib_deflate
-ffffffc0084a4bd4 t flush_pending
-ffffffc0084a4c7c T zlib_deflateEnd
-ffffffc0084a4cd0 T zlib_deflate_workspacesize
-ffffffc0084a4d20 T zlib_deflate_dfltcc_enabled
-ffffffc0084a4d34 t deflate_stored
-ffffffc0084a5038 t deflate_fast
-ffffffc0084a5404 t deflate_slow
-ffffffc0084a5904 t fill_window
-ffffffc0084a5d7c t longest_match
-ffffffc0084a5f94 T zlib_tr_init
-ffffffc0084a6464 t init_block
-ffffffc0084a656c T zlib_tr_stored_block
-ffffffc0084a6710 T zlib_tr_stored_type_only
-ffffffc0084a67f8 T zlib_tr_align
-ffffffc0084a6b20 T zlib_tr_flush_block
-ffffffc0084a7408 t build_tree
-ffffffc0084a7904 t compress_block
-ffffffc0084a7ce0 T zlib_tr_tally
-ffffffc0084a7e24 t gen_codes
-ffffffc0084a7fe4 t pqdownheap
-ffffffc0084a8124 t send_tree
-ffffffc0084a8604 T free_rs
-ffffffc0084a86bc T init_rs_gfp
-ffffffc0084a86f8 t init_rs_internal.llvm.3479155538110444429
-ffffffc0084a8be4 T init_rs_non_canonical
-ffffffc0084a8c28 T decode_rs8
-ffffffc0084a97bc T lzo1x_1_compress
-ffffffc0084a97ec t lzogeneric1x_1_compress.llvm.102920943398567282
-ffffffc0084a9a5c T lzorle1x_1_compress
-ffffffc0084a9a8c t lzo1x_1_do_compress
-ffffffc0084aa07c T lzo1x_decompress_safe
-ffffffc0084aa61c T LZ4_compress_fast
-ffffffc0084aa660 t LZ4_compress_fast_extState.llvm.7328319596978062272
-ffffffc0084aba1c T LZ4_compress_default
-ffffffc0084aba64 T LZ4_compress_destSize
-ffffffc0084abb54 T LZ4_resetStream
-ffffffc0084abb88 T LZ4_loadDict
-ffffffc0084abc78 T LZ4_saveDict
-ffffffc0084abcf8 T LZ4_compress_fast_continue
-ffffffc0084ad714 t LZ4_compress_destSize_generic
-ffffffc0084ade48 T LZ4_decompress_safe
-ffffffc0084ae13c T LZ4_decompress_safe_partial
-ffffffc0084ae4fc T LZ4_decompress_fast
-ffffffc0084ae754 T LZ4_setStreamDecode
-ffffffc0084ae780 T LZ4_decompress_safe_continue
-ffffffc0084aed20 t LZ4_decompress_safe_withPrefix64k
-ffffffc0084af00c t LZ4_decompress_safe_withSmallPrefix
-ffffffc0084af300 t LZ4_decompress_safe_forceExtDict
-ffffffc0084af750 T LZ4_decompress_fast_continue
-ffffffc0084afb70 t LZ4_decompress_fast_extDict
-ffffffc0084afeb0 T LZ4_decompress_safe_usingDict
-ffffffc0084aff1c T LZ4_decompress_fast_usingDict
-ffffffc0084aff64 T zstd_min_clevel
-ffffffc0084aff78 T zstd_max_clevel
-ffffffc0084aff8c T zstd_compress_bound
-ffffffc0084affb8 T zstd_get_params
-ffffffc0084affe8 T zstd_cctx_workspace_bound
-ffffffc0084b005c T zstd_init_cctx
-ffffffc0084b008c T zstd_compress_cctx
-ffffffc0084b0108 t zstd_cctx_init
-ffffffc0084b0268 T zstd_cstream_workspace_bound
-ffffffc0084b02dc T zstd_init_cstream
-ffffffc0084b0354 T zstd_reset_cstream
-ffffffc0084b0380 T zstd_compress_stream
-ffffffc0084b03ac T zstd_flush_stream
-ffffffc0084b03d8 T zstd_end_stream
-ffffffc0084b0404 T FSE_buildCTable_wksp
-ffffffc0084b0610 T FSE_NCountWriteBound
-ffffffc0084b0638 T FSE_writeNCount
-ffffffc0084b0898 T FSE_createCTable
-ffffffc0084b08ac T FSE_freeCTable
-ffffffc0084b08bc T FSE_optimalTableLog_internal
-ffffffc0084b0930 T FSE_optimalTableLog
-ffffffc0084b09a4 T FSE_normalizeCount
-ffffffc0084b0cec T FSE_buildCTable_raw
-ffffffc0084b0e04 T FSE_buildCTable_rle
-ffffffc0084b0e34 T FSE_compress_usingCTable
-ffffffc0084b12c0 T FSE_compressBound
-ffffffc0084b12d8 T HIST_isError
-ffffffc0084b12f0 T HIST_count_simple
-ffffffc0084b141c T HIST_countFast_wksp
-ffffffc0084b1598 t HIST_count_parallel_wksp
-ffffffc0084b189c T HIST_count_wksp
-ffffffc0084b1a38 T HUF_optimalTableLog
-ffffffc0084b1a68 T HUF_writeCTable_wksp
-ffffffc0084b1da4 T HUF_writeCTable
-ffffffc0084b1e54 T HUF_readCTable
-ffffffc0084b220c T HUF_getNbBits
-ffffffc0084b2224 T HUF_buildCTable_wksp
-ffffffc0084b2a44 T HUF_estimateCompressedSize
-ffffffc0084b2af4 T HUF_validateCTable
-ffffffc0084b2bc0 T HUF_compressBound
-ffffffc0084b2bd8 T HUF_compress1X_usingCTable
-ffffffc0084b2c00 t HUF_compress1X_usingCTable_internal.llvm.14309109800085998168
-ffffffc0084b2db8 T HUF_compress4X_usingCTable
-ffffffc0084b2de0 t HUF_compress4X_usingCTable_internal.llvm.14309109800085998168
-ffffffc0084b2f14 T HUF_compress1X_wksp
-ffffffc0084b2f5c t HUF_compress_internal.llvm.14309109800085998168
-ffffffc0084b3418 T HUF_compress1X_repeat
-ffffffc0084b346c T HUF_compress4X_wksp
-ffffffc0084b34b8 T HUF_compress4X_repeat
-ffffffc0084b3508 t HUF_compressCTable_internal
-ffffffc0084b3598 T ZSTD_compressBound
-ffffffc0084b35c4 T ZSTD_createCCtx
-ffffffc0084b3694 T ZSTD_createCCtx_advanced
-ffffffc0084b37b8 T ZSTD_initStaticCCtx
-ffffffc0084b38f8 T ZSTD_freeCCtx
-ffffffc0084b39fc T ZSTD_sizeof_CCtx
-ffffffc0084b3a64 T ZSTD_sizeof_CStream
-ffffffc0084b3acc T ZSTD_getSeqStore
-ffffffc0084b3ae0 T ZSTD_createCCtxParams
-ffffffc0084b3b88 T ZSTD_freeCCtxParams
-ffffffc0084b3bfc T ZSTD_CCtxParams_reset
-ffffffc0084b3c60 T ZSTD_CCtxParams_init
-ffffffc0084b3cc0 T ZSTD_CCtxParams_init_advanced
-ffffffc0084b3db0 T ZSTD_checkCParams
-ffffffc0084b3e40 T ZSTD_cParam_getBounds
-ffffffc0084b403c T ZSTD_minCLevel
-ffffffc0084b4050 T ZSTD_maxCLevel
-ffffffc0084b4064 T ZSTD_CCtx_setParameter
-ffffffc0084b4158 T ZSTD_CCtxParams_setParameter
-ffffffc0084b4550 T ZSTD_CCtx_getParameter
-ffffffc0084b4580 T ZSTD_CCtxParams_getParameter
-ffffffc0084b4750 T ZSTD_CCtx_setParametersUsingCCtxParams
-ffffffc0084b47a0 T ZSTD_CCtx_setPledgedSrcSize
-ffffffc0084b47d0 T ZSTD_CCtx_loadDictionary_advanced
-ffffffc0084b48d4 t ZSTD_clearAllDicts
-ffffffc0084b4a24 T ZSTD_CCtx_loadDictionary_byReference
-ffffffc0084b4a98 T ZSTD_CCtx_loadDictionary
-ffffffc0084b4b80 T ZSTD_CCtx_refCDict
-ffffffc0084b4bd4 T ZSTD_CCtx_refThreadPool
-ffffffc0084b4c00 T ZSTD_CCtx_refPrefix
-ffffffc0084b4c78 T ZSTD_CCtx_refPrefix_advanced
-ffffffc0084b4cf0 T ZSTD_CCtx_reset
-ffffffc0084b4db4 T ZSTD_cycleLog
-ffffffc0084b4dd0 T ZSTD_adjustCParams
-ffffffc0084b4fa0 T ZSTD_getCParamsFromCCtxParams
-ffffffc0084b51a4 t ZSTD_getCParams_internal
-ffffffc0084b5364 T ZSTD_estimateCCtxSize_usingCCtxParams
-ffffffc0084b552c t ZSTD_estimateCCtxSize_usingCCtxParams_internal
-ffffffc0084b5708 T ZSTD_estimateCCtxSize_usingCParams
-ffffffc0084b5804 T ZSTD_estimateCCtxSize
-ffffffc0084b5ad8 T ZSTD_estimateCStreamSize_usingCCtxParams
-ffffffc0084b5bd0 T ZSTD_estimateCStreamSize_usingCParams
-ffffffc0084b5eb0 T ZSTD_estimateCStreamSize
-ffffffc0084b5fcc T ZSTD_getFrameProgression
-ffffffc0084b6004 T ZSTD_toFlushNow
-ffffffc0084b6018 T ZSTD_reset_compressedBlockState
-ffffffc0084b604c T ZSTD_invalidateRepCodes
-ffffffc0084b6074 T ZSTD_copyCCtx
-ffffffc0084b62b0 T ZSTD_seqToCodes
-ffffffc0084b63a8 T ZSTD_selectBlockCompressor
-ffffffc0084b63e4 T ZSTD_resetSeqStore
-ffffffc0084b6408 T ZSTD_generateSequences
-ffffffc0084b6538 T ZSTD_compress2
-ffffffc0084b65f0 T ZSTD_mergeBlockDelimiters
-ffffffc0084b6668 T ZSTD_writeSkippableFrame
-ffffffc0084b66f4 T ZSTD_writeLastEmptyBlock
-ffffffc0084b672c T ZSTD_referenceExternalSequences
-ffffffc0084b6784 T ZSTD_compressContinue
-ffffffc0084b67b4 t ZSTD_compressContinue_internal
-ffffffc0084b6d44 T ZSTD_getBlockSize
-ffffffc0084b6d6c T ZSTD_compressBlock
-ffffffc0084b6dc8 T ZSTD_loadCEntropy
-ffffffc0084b7248 T ZSTD_compressBegin_advanced_internal
-ffffffc0084b72f4 t ZSTD_compressBegin_internal
-ffffffc0084b770c T ZSTD_compressBegin_advanced
-ffffffc0084b795c T ZSTD_compressBegin_usingDict
-ffffffc0084b7bbc T ZSTD_compressBegin
-ffffffc0084b7cf4 T ZSTD_CCtx_trace
-ffffffc0084b7d04 T ZSTD_compressEnd
-ffffffc0084b7ea0 T ZSTD_compress_advanced
-ffffffc0084b7fd4 T ZSTD_compress_advanced_internal
-ffffffc0084b818c T ZSTD_compress_usingDict
-ffffffc0084b82e8 T ZSTD_compressCCtx
-ffffffc0084b84dc T ZSTD_compress
-ffffffc0084b867c T ZSTD_estimateCDictSize_advanced
-ffffffc0084b86d8 T ZSTD_estimateCDictSize
-ffffffc0084b8790 T ZSTD_sizeof_CDict
-ffffffc0084b87c0 T ZSTD_createCDict_advanced
-ffffffc0084b8884 T ZSTD_createCDict_advanced2
-ffffffc0084b8bf0 t ZSTD_initCDict_internal
-ffffffc0084b8dc8 T ZSTD_freeCDict
-ffffffc0084b8ed8 T ZSTD_createCDict
-ffffffc0084b8ff0 T ZSTD_createCDict_byReference
-ffffffc0084b9108 T ZSTD_initStaticCDict
-ffffffc0084b9294 T ZSTD_getCParamsFromCDict
-ffffffc0084b92bc T ZSTD_getDictID_fromCDict
-ffffffc0084b92d8 T ZSTD_compressBegin_usingCDict_advanced
-ffffffc0084b9488 T ZSTD_getCParams
-ffffffc0084b94c0 T ZSTD_compressBegin_usingCDict
-ffffffc0084b9594 T ZSTD_compress_usingCDict_advanced
-ffffffc0084b9618 T ZSTD_compress_usingCDict
-ffffffc0084b969c T ZSTD_createCStream
-ffffffc0084b976c T ZSTD_createCStream_advanced
-ffffffc0084b9878 T ZSTD_initStaticCStream
-ffffffc0084b99b8 T ZSTD_freeCStream
-ffffffc0084b9abc T ZSTD_CStreamInSize
-ffffffc0084b9ad0 T ZSTD_CStreamOutSize
-ffffffc0084b9ae8 T ZSTD_resetCStream
-ffffffc0084b9b10 T ZSTD_initCStream_internal
-ffffffc0084b9c1c T ZSTD_initCStream_usingCDict_advanced
-ffffffc0084b9c74 T ZSTD_initCStream_usingCDict
-ffffffc0084b9cc0 T ZSTD_initCStream_advanced
-ffffffc0084b9e58 T ZSTD_initCStream_usingDict
-ffffffc0084b9f68 T ZSTD_initCStream_srcSize
-ffffffc0084ba02c T ZSTD_initCStream
-ffffffc0084ba0b4 T ZSTD_compressStream
-ffffffc0084ba10c T ZSTD_compressStream2
-ffffffc0084ba60c t ZSTD_CCtx_init_compressStream2
-ffffffc0084ba870 T ZSTD_compressStream2_simpleArgs
-ffffffc0084ba90c T ZSTD_compressSequences
-ffffffc0084bacb0 t ZSTD_writeFrameHeader
-ffffffc0084bae30 T ZSTD_flushStream
-ffffffc0084bae98 T ZSTD_endStream
-ffffffc0084baf4c T ZSTD_getParams
-ffffffc0084bafe8 t ZSTD_resetCCtx_internal
-ffffffc0084bb894 t ZSTD_reset_matchState
-ffffffc0084bbe60 t ZSTD_overflowCorrectIfNeeded
-ffffffc0084bc1f4 t ZSTD_compressBlock_internal
-ffffffc0084bc36c t ZSTD_reduceTable
-ffffffc0084bc4fc t ZSTD_buildSeqStore
-ffffffc0084bc774 t ZSTD_isRLE
-ffffffc0084bc8ec t ZSTD_copyBlockSequences
-ffffffc0084bcb0c t ZSTD_entropyCompressSequences
-ffffffc0084bd1bc t ZSTD_compress_insertDictionary
-ffffffc0084bd304 t ZSTD_loadDictionaryContent
-ffffffc0084bd5bc t ZSTD_copySequencesToSeqStoreExplicitBlockDelim
-ffffffc0084bd99c t ZSTD_copySequencesToSeqStoreNoBlockDelim
-ffffffc0084bddf4 T ZSTD_noCompressLiterals
-ffffffc0084bdea0 T ZSTD_compressRleLiteralsBlock
-ffffffc0084bdf18 T ZSTD_compressLiterals
-ffffffc0084be258 T ZSTD_fseBitCost
-ffffffc0084be310 T ZSTD_crossEntropyCost
-ffffffc0084be380 T ZSTD_selectEncodingType
-ffffffc0084be6a0 T ZSTD_buildCTable
-ffffffc0084be860 T ZSTD_encodeSequences
-ffffffc0084bedec T ZSTD_compressSuperBlock
-ffffffc0084c0024 T ZSTD_fillDoubleHashTable
-ffffffc0084c01b4 T ZSTD_compressBlock_doubleFast
-ffffffc0084c2e74 T ZSTD_compressBlock_doubleFast_dictMatchState
-ffffffc0084c63d0 T ZSTD_compressBlock_doubleFast_extDict
-ffffffc0084c7c00 t ZSTD_count_2segments
-ffffffc0084c7e04 t ZSTD_count_2segments
-ffffffc0084c8008 t ZSTD_count_2segments
-ffffffc0084c820c t ZSTD_count_2segments
-ffffffc0084c8414 T ZSTD_fillHashTable
-ffffffc0084c865c T ZSTD_compressBlock_fast
-ffffffc0084c9fc0 T ZSTD_compressBlock_fast_dictMatchState
-ffffffc0084cc1f0 T ZSTD_compressBlock_fast_extDict
-ffffffc0084cd27c T ZSTD_insertAndFindFirstIndex
-ffffffc0084cd464 T ZSTD_dedicatedDictSearch_lazy_loadDictionary
-ffffffc0084cd7e8 T ZSTD_compressBlock_btlazy2
-ffffffc0084ce160 T ZSTD_compressBlock_lazy2
-ffffffc0084cfde4 T ZSTD_compressBlock_lazy
-ffffffc0084d1298 T ZSTD_compressBlock_greedy
-ffffffc0084d1e9c T ZSTD_compressBlock_btlazy2_dictMatchState
-ffffffc0084d2584 T ZSTD_compressBlock_lazy2_dictMatchState
-ffffffc0084d2c6c T ZSTD_compressBlock_lazy_dictMatchState
-ffffffc0084d32e0 T ZSTD_compressBlock_greedy_dictMatchState
-ffffffc0084d376c T ZSTD_compressBlock_lazy2_dedicatedDictSearch
-ffffffc0084d3e54 T ZSTD_compressBlock_lazy_dedicatedDictSearch
-ffffffc0084d44c8 T ZSTD_compressBlock_greedy_dedicatedDictSearch
-ffffffc0084d4954 T ZSTD_compressBlock_greedy_extDict
-ffffffc0084d571c T ZSTD_compressBlock_lazy_extDict
-ffffffc0084d7088 T ZSTD_compressBlock_lazy2_extDict
-ffffffc0084d926c T ZSTD_compressBlock_btlazy2_extDict
-ffffffc0084d9a34 t ZSTD_BtFindBestMatch_selectMLS
-ffffffc0084dae0c t ZSTD_HcFindBestMatch_dictMatchState_selectMLS
-ffffffc0084db814 t ZSTD_BtFindBestMatch_dictMatchState_selectMLS
-ffffffc0084dd280 t ZSTD_HcFindBestMatch_dedicatedDictSearch_selectMLS
-ffffffc0084de298 t ZSTD_BtFindBestMatch_extDict_selectMLS
-ffffffc0084dfb14 T ZSTD_ldm_adjustParameters
-ffffffc0084dfb94 T ZSTD_ldm_getTableSize
-ffffffc0084dfbd4 T ZSTD_ldm_getMaxNbSeq
-ffffffc0084dfc00 T ZSTD_ldm_fillHashTable
-ffffffc0084dfdb4 t ZSTD_ldm_gear_feed
-ffffffc0084dff5c T ZSTD_ldm_generateSequences
-ffffffc0084e0a64 T ZSTD_ldm_skipSequences
-ffffffc0084e0b24 T ZSTD_ldm_skipRawSeqStoreBytes
-ffffffc0084e0bb4 T ZSTD_ldm_blockCompress
-ffffffc0084e10e4 T ZSTD_updateTree
-ffffffc0084e1114 t ZSTD_updateTree_internal.llvm.18184781766239640288
-ffffffc0084e15c8 T ZSTD_compressBlock_btopt
-ffffffc0084e15f8 t ZSTD_compressBlock_opt_generic
-ffffffc0084e2b34 T ZSTD_compressBlock_btultra
-ffffffc0084e2b68 T ZSTD_compressBlock_btultra2
-ffffffc0084e2d78 T ZSTD_compressBlock_btopt_dictMatchState
-ffffffc0084e2dac T ZSTD_compressBlock_btultra_dictMatchState
-ffffffc0084e2de0 T ZSTD_compressBlock_btopt_extDict
-ffffffc0084e2e14 T ZSTD_compressBlock_btultra_extDict
-ffffffc0084e2e44 t ZSTD_opt_getNextMatchAndUpdateSeqStore
-ffffffc0084e2fe4 t ZSTD_optLdm_processMatchCandidate
-ffffffc0084e3140 t ZSTD_getMatchPrice
-ffffffc0084e328c t ZSTD_setBasePrices
-ffffffc0084e3360 t ZSTD_insertBtAndGetAllMatches
-ffffffc0084e3fb4 T zstd_is_error
-ffffffc0084e3fcc T zstd_get_error_code
-ffffffc0084e3fe4 T zstd_get_error_name
-ffffffc0084e4010 T zstd_dctx_workspace_bound
-ffffffc0084e4028 T zstd_init_dctx
-ffffffc0084e4058 T zstd_decompress_dctx
-ffffffc0084e4084 T zstd_dstream_workspace_bound
-ffffffc0084e40ac T zstd_init_dstream
-ffffffc0084e40ec T zstd_reset_dstream
-ffffffc0084e4118 T zstd_decompress_stream
-ffffffc0084e4144 T zstd_find_frame_compressed_size
-ffffffc0084e4170 T zstd_get_frame_header
-ffffffc0084e41a0 T HUF_readDTableX1_wksp
-ffffffc0084e41d0 T HUF_readDTableX1_wksp_bmi2
-ffffffc0084e47f8 T HUF_decompress1X1_usingDTable
-ffffffc0084e4830 t HUF_decompress1X1_usingDTable_internal
-ffffffc0084e4a80 T HUF_decompress1X1_DCtx_wksp
-ffffffc0084e4b1c T HUF_decompress4X1_usingDTable
-ffffffc0084e4b54 t HUF_decompress4X1_usingDTable_internal
-ffffffc0084e5764 T HUF_decompress4X1_DCtx_wksp
-ffffffc0084e5800 T HUF_readDTableX2_wksp
-ffffffc0084e5f54 T HUF_decompress1X2_usingDTable
-ffffffc0084e5f94 t HUF_decompress1X2_usingDTable_internal
-ffffffc0084e62c0 T HUF_decompress1X2_DCtx_wksp
-ffffffc0084e6358 T HUF_decompress4X2_usingDTable
-ffffffc0084e6398 t HUF_decompress4X2_usingDTable_internal
-ffffffc0084e73f0 T HUF_decompress4X2_DCtx_wksp
-ffffffc0084e7488 T HUF_decompress1X_usingDTable
-ffffffc0084e74c4 T HUF_decompress4X_usingDTable
-ffffffc0084e7500 T HUF_selectDecoder
-ffffffc0084e7594 T HUF_decompress4X_hufOnly_wksp
-ffffffc0084e7704 T HUF_decompress1X_DCtx_wksp
-ffffffc0084e78b0 T HUF_decompress1X_usingDTable_bmi2
-ffffffc0084e78ec T HUF_decompress1X1_DCtx_wksp_bmi2
-ffffffc0084e7988 T HUF_decompress4X_usingDTable_bmi2
-ffffffc0084e79c4 T HUF_decompress4X_hufOnly_wksp_bmi2
-ffffffc0084e7b30 t BIT_initDStream
-ffffffc0084e7c54 T ZSTD_DDict_dictContent
-ffffffc0084e7c68 T ZSTD_DDict_dictSize
-ffffffc0084e7c7c T ZSTD_copyDDictParameters
-ffffffc0084e7d24 T ZSTD_createDDict_advanced
-ffffffc0084e7f1c T ZSTD_freeDDict
-ffffffc0084e7fd4 T ZSTD_createDDict
-ffffffc0084e8040 T ZSTD_createDDict_byReference
-ffffffc0084e80ac T ZSTD_initStaticDDict
-ffffffc0084e81c0 T ZSTD_estimateDDictSize
-ffffffc0084e81e0 T ZSTD_sizeof_DDict
-ffffffc0084e8214 T ZSTD_getDictID_fromDDict
-ffffffc0084e824c T ZSTD_sizeof_DCtx
-ffffffc0084e82a4 T ZSTD_estimateDCtxSize
-ffffffc0084e82bc T ZSTD_initStaticDCtx
-ffffffc0084e8364 T ZSTD_createDCtx_advanced
-ffffffc0084e8484 T ZSTD_createDCtx
-ffffffc0084e8564 T ZSTD_freeDCtx
-ffffffc0084e868c T ZSTD_copyDCtx
-ffffffc0084e86bc T ZSTD_isFrame
-ffffffc0084e870c T ZSTD_frameHeaderSize
-ffffffc0084e8778 T ZSTD_getFrameHeader_advanced
-ffffffc0084e8978 T ZSTD_getFrameHeader
-ffffffc0084e89a8 T ZSTD_getFrameContentSize
-ffffffc0084e8a38 T ZSTD_findDecompressedSize
-ffffffc0084e8b84 T ZSTD_findFrameCompressedSize
-ffffffc0084e8bb0 T ZSTD_getDecompressedSize
-ffffffc0084e8c44 t ZSTD_findFrameSizeInfo.llvm.6516085236383059108
-ffffffc0084e8ddc T ZSTD_decompressBound
-ffffffc0084e8e5c T ZSTD_insertBlock
-ffffffc0084e8eb0 T ZSTD_decompress_usingDict
-ffffffc0084e8edc t ZSTD_decompressMultiFrame
-ffffffc0084e957c T ZSTD_decompressDCtx
-ffffffc0084e9638 T ZSTD_decompress_usingDDict
-ffffffc0084e966c t ZSTD_getDDict
-ffffffc0084e96e8 T ZSTD_decompress
-ffffffc0084e9844 T ZSTD_nextSrcSizeToDecompress
-ffffffc0084e9858 T ZSTD_nextInputType
-ffffffc0084e9894 T ZSTD_decompressContinue
-ffffffc0084e9d94 t ZSTD_decodeFrameHeader
-ffffffc0084e9f2c T ZSTD_loadDEntropy
-ffffffc0084ea1f0 T ZSTD_decompressBegin
-ffffffc0084ea298 T ZSTD_decompressBegin_usingDict
-ffffffc0084ea404 T ZSTD_decompressBegin_usingDDict
-ffffffc0084ea4e0 T ZSTD_getDictID_fromDict
-ffffffc0084ea51c T ZSTD_getDictID_fromFrame
-ffffffc0084ea59c T ZSTD_createDStream
-ffffffc0084ea67c T ZSTD_createDStream_advanced
-ffffffc0084ea794 T ZSTD_initStaticDStream
-ffffffc0084ea83c T ZSTD_freeDStream
-ffffffc0084ea868 T ZSTD_DStreamInSize
-ffffffc0084ea880 T ZSTD_DStreamOutSize
-ffffffc0084ea894 T ZSTD_DCtx_loadDictionary_advanced
-ffffffc0084ea99c T ZSTD_DCtx_loadDictionary_byReference
-ffffffc0084eaa94 T ZSTD_DCtx_loadDictionary
-ffffffc0084eab8c T ZSTD_DCtx_refPrefix_advanced
-ffffffc0084eac88 T ZSTD_DCtx_refPrefix
-ffffffc0084ead78 T ZSTD_initDStream_usingDict
-ffffffc0084eae6c T ZSTD_DCtx_reset
-ffffffc0084eaf10 T ZSTD_initDStream
-ffffffc0084eaf78 T ZSTD_initDStream_usingDDict
-ffffffc0084eafd4 T ZSTD_DCtx_refDDict
-ffffffc0084eb2d8 T ZSTD_resetDStream
-ffffffc0084eb308 T ZSTD_DCtx_setMaxWindowSize
-ffffffc0084eb354 T ZSTD_dParam_getBounds
-ffffffc0084eb3b4 T ZSTD_DCtx_setFormat
-ffffffc0084eb3fc T ZSTD_DCtx_setParameter
-ffffffc0084eb510 T ZSTD_DCtx_getParameter
-ffffffc0084eb5a8 T ZSTD_sizeof_DStream
-ffffffc0084eb600 T ZSTD_decodingBufferSize_min
-ffffffc0084eb62c T ZSTD_estimateDStreamSize
-ffffffc0084eb654 T ZSTD_estimateDStreamSize_fromFrame
-ffffffc0084eb70c T ZSTD_decompressStream
-ffffffc0084ec1f8 T ZSTD_decompressStream_simpleArgs
-ffffffc0084ec290 T ZSTD_getcBlockSize
-ffffffc0084ec2f0 T ZSTD_decodeLiteralsBlock
-ffffffc0084ec62c T ZSTD_buildFSETable
-ffffffc0084ec8a8 T ZSTD_decodeSeqHeaders
-ffffffc0084ecacc t ZSTD_buildSeqTable
-ffffffc0084eccb0 T ZSTD_decompressBlock_internal
-ffffffc0084eddd0 t ZSTD_decompressSequences
-ffffffc0084ee704 T ZSTD_checkContinuity
-ffffffc0084ee740 T ZSTD_decompressBlock
-ffffffc0084ee7b8 t ZSTD_execSequenceEnd
-ffffffc0084eea68 T FSE_versionNumber
-ffffffc0084eea7c T FSE_isError
-ffffffc0084eea94 T FSE_getErrorName
-ffffffc0084eeac8 T HUF_isError
-ffffffc0084eeae0 T HUF_getErrorName
-ffffffc0084eeb14 T FSE_readNCount_bmi2
-ffffffc0084eeb3c t FSE_readNCount_body_default.llvm.14955286311570839564
-ffffffc0084eee4c T FSE_readNCount
-ffffffc0084eee78 T HUF_readStats
-ffffffc0084eef4c T HUF_readStats_wksp
-ffffffc0084ef138 T ERR_getErrorString
-ffffffc0084ef38c T FSE_createDTable
-ffffffc0084ef3a0 T FSE_freeDTable
-ffffffc0084ef3b0 T FSE_buildDTable_wksp
-ffffffc0084ef3d8 t FSE_buildDTable_internal
-ffffffc0084ef680 T FSE_buildDTable_rle
-ffffffc0084ef6a8 T FSE_buildDTable_raw
-ffffffc0084ef6fc T FSE_decompress_usingDTable
-ffffffc0084effe4 T FSE_decompress_wksp
-ffffffc0084f0010 T FSE_decompress_wksp_bmi2
-ffffffc0084f0a1c T ZSTD_versionNumber
-ffffffc0084f0a30 T ZSTD_versionString
-ffffffc0084f0a48 T ZSTD_isError
-ffffffc0084f0a60 T ZSTD_getErrorName
-ffffffc0084f0a94 T ZSTD_getErrorCode
-ffffffc0084f0aac T ZSTD_getErrorString
-ffffffc0084f0ad8 T ZSTD_customMalloc
-ffffffc0084f0b38 T ZSTD_customCalloc
-ffffffc0084f0bb4 T ZSTD_customFree
-ffffffc0084f0c10 T xz_dec_run
-ffffffc0084f14c0 T xz_dec_reset
-ffffffc0084f14fc T xz_dec_init
-ffffffc0084f15d0 T xz_dec_end
-ffffffc0084f161c t fill_temp
-ffffffc0084f16ac t crc32_validate
-ffffffc0084f171c t dec_index
-ffffffc0084f18c4 t index_update
-ffffffc0084f1928 t dec_stream_footer
-ffffffc0084f19c0 T xz_dec_lzma2_run
-ffffffc0084f2128 T xz_dec_lzma2_create
-ffffffc0084f21c0 T xz_dec_lzma2_reset
-ffffffc0084f2294 T xz_dec_lzma2_end
-ffffffc0084f22dc t lzma_main
-ffffffc0084f2dec t lzma_len
-ffffffc0084f2fc4 T xz_dec_bcj_run
-ffffffc0084f3294 t bcj_apply
-ffffffc0084f37f8 T xz_dec_bcj_create
-ffffffc0084f384c T xz_dec_bcj_reset
-ffffffc0084f388c T percpu_counter_set
-ffffffc0084f3940 T percpu_counter_add_batch
-ffffffc0084f3a84 T percpu_counter_sync
-ffffffc0084f3af8 T __percpu_counter_sum
-ffffffc0084f3bb0 T __percpu_counter_init
-ffffffc0084f3c7c T percpu_counter_destroy
-ffffffc0084f3d10 T __percpu_counter_compare
-ffffffc0084f3e1c t compute_batch_value
-ffffffc0084f3e58 t percpu_counter_cpu_dead
-ffffffc0084f3f48 T audit_classify_arch
-ffffffc0084f3f5c T audit_classify_syscall
-ffffffc0084f3fbc T task_current_syscall
-ffffffc0084f4070 t collect_syscall
-ffffffc0084f420c T param_set_dyndbg_classes
-ffffffc0084f46ac t ddebug_apply_class_bitmap
-ffffffc0084f4864 T param_get_dyndbg_classes
-ffffffc0084f48fc T __dynamic_pr_debug
-ffffffc0084f49d0 T __dynamic_dev_dbg
-ffffffc0084f4ae8 T __dynamic_netdev_dbg
-ffffffc0084f4d3c T ddebug_add_module
-ffffffc0084f4d64 t __ddebug_add_module
-ffffffc0084f5004 T ddebug_dyndbg_module_param_cb
-ffffffc0084f50c8 T ddebug_remove_module
-ffffffc0084f51a0 t ddebug_exec_queries
-ffffffc0084f5f44 t parse_linerange
-ffffffc0084f60a4 t __dynamic_emit_prefix
-ffffffc0084f625c t ddebug_dyndbg_boot_param_cb
-ffffffc0084f6308 t ddebug_proc_write
-ffffffc0084f63e4 t ddebug_proc_open
-ffffffc0084f6420 t ddebug_proc_start
-ffffffc0084f651c t ddebug_proc_stop
-ffffffc0084f6550 t ddebug_proc_next
-ffffffc0084f6618 t ddebug_proc_show
-ffffffc0084f6804 T errname
-ffffffc0084f6888 T nla_get_range_unsigned
-ffffffc0084f696c T nla_get_range_signed
-ffffffc0084f6a2c T __nla_validate
-ffffffc0084f6a5c t __nla_validate_parse.llvm.11138924367009551694
-ffffffc0084f7590 T nla_policy_len
-ffffffc0084f7634 T __nla_parse
-ffffffc0084f7688 T nla_find
-ffffffc0084f76dc T nla_strscpy
-ffffffc0084f7794 T nla_strdup
-ffffffc0084f781c T nla_memcpy
-ffffffc0084f7898 T nla_memcmp
-ffffffc0084f78dc T nla_strcmp
-ffffffc0084f796c T __nla_reserve
-ffffffc0084f79ec T __nla_reserve_64bit
-ffffffc0084f7a6c T __nla_reserve_nohdr
-ffffffc0084f7ac0 T nla_reserve
-ffffffc0084f7b68 T nla_reserve_64bit
-ffffffc0084f7c14 T nla_reserve_nohdr
-ffffffc0084f7c90 T __nla_put
-ffffffc0084f7d28 T __nla_put_64bit
-ffffffc0084f7dc0 T __nla_put_nohdr
-ffffffc0084f7e30 T nla_put
-ffffffc0084f7ef4 T nla_put_64bit
-ffffffc0084f7fbc T nla_put_nohdr
-ffffffc0084f8058 T nla_append
-ffffffc0084f80d8 T csum_partial
-ffffffc0084f8118 T ip_compute_csum
-ffffffc0084f8148 T csum_tcpudp_nofold
-ffffffc0084f8180 T alloc_cpu_rmap
-ffffffc0084f825c T cpu_rmap_put
-ffffffc0084f82e4 T cpu_rmap_add
-ffffffc0084f831c T cpu_rmap_update
-ffffffc0084f8620 T free_irq_cpu_rmap
-ffffffc0084f86e8 T irq_cpu_rmap_add
-ffffffc0084f8858 t irq_cpu_rmap_notify
-ffffffc0084f8894 t irq_cpu_rmap_release
-ffffffc0084f892c T dql_completed
-ffffffc0084f8a8c T dql_reset
-ffffffc0084f8ab8 T dql_init
-ffffffc0084f8af0 T glob_match
-ffffffc0084f8cc0 T strncpy_from_user
-ffffffc0084f9080 T strnlen_user
-ffffffc0084f940c T mac_pton
-ffffffc0084f960c T sg_free_table_chained
-ffffffc0084f9658 t sg_pool_free
-ffffffc0084f96dc T sg_alloc_table_chained
-ffffffc0084f97b0 t sg_pool_alloc
-ffffffc0084f9834 T stack_depot_get_extra_bits
-ffffffc0084f9848 T stack_depot_init
-ffffffc0084f9960 T stack_depot_snprint
-ffffffc0084f9a14 T stack_depot_fetch
-ffffffc0084f9ab4 T stack_depot_print
-ffffffc0084f9b48 T __stack_depot_save
-ffffffc0084fa084 T stack_depot_save
-ffffffc0084fa0b8 t skip_comment
-ffffffc0084fa10c T sbitmap_init_node
-ffffffc0084fa28c T sbitmap_resize
-ffffffc0084fa34c T sbitmap_get
-ffffffc0084fa734 T sbitmap_get_shallow
-ffffffc0084fab14 T sbitmap_any_bit_set
-ffffffc0084fab88 T sbitmap_weight
-ffffffc0084fac9c T sbitmap_show
-ffffffc0084fadc0 T sbitmap_bitmap_show
-ffffffc0084fafc8 T sbitmap_queue_init_node
-ffffffc0084fb1a0 T sbitmap_queue_recalculate_wake_batch
-ffffffc0084fb1dc T sbitmap_queue_resize
-ffffffc0084fb2e8 T __sbitmap_queue_get
-ffffffc0084fb314 T __sbitmap_queue_get_batch
-ffffffc0084fb6cc T sbitmap_queue_get_shallow
-ffffffc0084fb710 T sbitmap_queue_min_shallow_depth
-ffffffc0084fb778 T sbitmap_queue_wake_up
-ffffffc0084fb900 T sbitmap_queue_clear_batch
-ffffffc0084fba64 T sbitmap_queue_clear
-ffffffc0084fbb4c T sbitmap_queue_wake_all
-ffffffc0084fbd2c T sbitmap_queue_show
-ffffffc0084fc010 T sbitmap_add_wait_queue
-ffffffc0084fc084 T sbitmap_del_wait_queue
-ffffffc0084fc11c T sbitmap_prepare_to_wait
-ffffffc0084fc194 T sbitmap_finish_wait
-ffffffc0084fc21c T devmem_is_allowed
-ffffffc0084fc274 T platform_irqchip_probe
-ffffffc0084fc364 t gic_handle_cascade_irq
-ffffffc0084fc478 T gic_cpu_if_down
-ffffffc0084fc4d0 t writel_relaxed
-ffffffc0084fc568 t writel_relaxed
-ffffffc0084fc600 t writel_relaxed
-ffffffc0084fc698 t writel_relaxed
-ffffffc0084fc730 t writel_relaxed
-ffffffc0084fc7c8 t writel_relaxed
-ffffffc0084fc860 t writel_relaxed
-ffffffc0084fc8fc T gic_dist_save
-ffffffc0084fca4c t readl_relaxed
-ffffffc0084fcae0 t readl_relaxed
-ffffffc0084fcb74 t readl_relaxed
-ffffffc0084fcc08 t readl_relaxed
-ffffffc0084fcc9c t readl_relaxed
-ffffffc0084fcd30 t readl_relaxed
-ffffffc0084fcdc4 t readl_relaxed
-ffffffc0084fce5c T gic_dist_restore
-ffffffc0084fd008 T gic_cpu_save
-ffffffc0084fd0c0 T gic_cpu_restore
-ffffffc0084fd220 t gic_cpu_if_up
-ffffffc0084fd2dc T gic_of_init_child
-ffffffc0084fd3e4 t gic_of_setup
-ffffffc0084fd4c8 t gic_init_bases
-ffffffc0084fd738 t gic_teardown
-ffffffc0084fd790 t gic_handle_irq
-ffffffc0084fd8a4 t gic_handle_irq
-ffffffc0084fd9d8 t gic_starting_cpu
-ffffffc0084fda10 t gic_starting_cpu
-ffffffc0084fda60 t gic_cpu_init
-ffffffc0084fdc5c t gic_cpu_init
-ffffffc0084fdda4 t gic_get_cpumask
-ffffffc0084fdea8 t gic_enable_rmw_access
-ffffffc0084fdf08 t gic_irq_domain_alloc
-ffffffc0084fdfc8 t gic_irq_domain_alloc
-ffffffc0084fe1d0 t gic_irq_domain_translate
-ffffffc0084fe31c t gic_irq_domain_translate
-ffffffc0084fe4ec t gic_irq_domain_map
-ffffffc0084fe624 t gic_eoimode1_mask_irq
-ffffffc0084fe6b0 t gic_eoimode1_mask_irq
-ffffffc0084fe798 t gic_unmask_irq
-ffffffc0084fe7e8 t gic_unmask_irq
-ffffffc0084fe8c0 t gic_eoimode1_eoi_irq
-ffffffc0084fe97c t gic_eoimode1_eoi_irq
-ffffffc0084fe9b8 t gic_set_affinity
-ffffffc0084feb5c t gic_set_affinity
-ffffffc0084fee8c t gic_retrigger
-ffffffc0084feee0 t gic_retrigger
-ffffffc0084fefd0 t gic_set_type
-ffffffc0084ff074 t gic_set_type
-ffffffc0084ff1a8 t gic_irq_get_irqchip_state
-ffffffc0084ff278 t gic_irq_get_irqchip_state
-ffffffc0084ff4ac t gic_irq_set_irqchip_state
-ffffffc0084ff54c t gic_irq_set_irqchip_state
-ffffffc0084ff6e4 t gic_irq_set_vcpu_affinity
-ffffffc0084ff730 t gic_irq_set_vcpu_affinity
-ffffffc0084ff798 t gic_ipi_send_mask
-ffffffc0084ff86c t gic_ipi_send_mask
-ffffffc0084ff9b8 t gic_mask_irq
-ffffffc0084ffa08 t gic_mask_irq
-ffffffc0084ffbb0 t writeb_relaxed
-ffffffc0084ffc48 t writeb_relaxed
-ffffffc0084ffce4 t gic_eoi_irq
-ffffffc0084ffd94 t gic_eoi_irq
-ffffffc0084ffdb0 t gic_irq_print_chip
-ffffffc0084ffe24 t gic_irq_domain_unmap
-ffffffc0084ffe34 t gic_notifier
-ffffffc0084ffecc T gic_enable_of_quirks
-ffffffc0084fffb8 T gic_enable_quirks
-ffffffc008500068 T gic_configure_irq
-ffffffc008500170 T gic_dist_config
-ffffffc008500260 T gic_cpu_config
-ffffffc008500340 t gicv2m_irq_domain_alloc
-ffffffc0085005ec t gicv2m_irq_domain_free
-ffffffc00850069c t gicv2m_compose_msi_msg
-ffffffc00850072c t gicv2m_mask_msi_irq
-ffffffc00850076c t gicv2m_unmask_msi_irq
-ffffffc0085007a8 t gic_of_iomap
-ffffffc00850089c t gic_enable_quirk_msm8996
-ffffffc0085008c0 t gic_enable_quirk_hip06_07
-ffffffc0085008e4 t gic_enable_quirk_cavium_38539
-ffffffc008500908 t gic_irq_domain_select
-ffffffc008500a58 t gic_irq_domain_free
-ffffffc008500ad4 t __get_intid_range
-ffffffc008500b6c t gic_irq_nmi_setup
-ffffffc008500ba8 t gic_irq_nmi_teardown
-ffffffc008500be4 t gic_redist_wait_for_rwp
-ffffffc008500c88 t gic_dist_wait_for_rwp
-ffffffc008500d1c t gic_iterate_rdists
-ffffffc008500e58 t __gic_update_rdist_properties
-ffffffc008500f84 t readq_relaxed
-ffffffc008501018 t readq_relaxed
-ffffffc0085010ac t gic_enable_redist
-ffffffc0085011b8 t gic_cpu_sys_reg_init
-ffffffc008501470 t __gic_populate_rdist
-ffffffc00850158c t gic_cpu_pm_notifier
-ffffffc008501608 t gic_resume
-ffffffc008501618 t partition_domain_translate
-ffffffc00850172c t mbi_allocate_domains
-ffffffc0085017f8 t mbi_irq_domain_alloc
-ffffffc008501a94 t mbi_irq_domain_free
-ffffffc008501b44 t mbi_mask_msi_irq
-ffffffc008501b84 t mbi_unmask_msi_irq
-ffffffc008501bc4 t mbi_compose_msi_msg
-ffffffc008501c20 t mbi_compose_mbi_msg
-ffffffc008501ccc T its_cpu_init
-ffffffc00850263c t gic_check_reserved_range
-ffffffc00850275c t its_clear_vpend_valid
-ffffffc008502868 t its_cpu_init_collection
-ffffffc0085029ac t its_send_single_command
-ffffffc008502bd4 t its_build_mapc_cmd
-ffffffc008502c2c t its_allocate_entry
-ffffffc008502d30 t its_build_invall_cmd
-ffffffc008502d58 t its_irq_get_msi_base
-ffffffc008502d78 t its_enable_quirk_cavium_22375
-ffffffc008502dac t its_enable_quirk_qdf2400_e0065
-ffffffc008502dd0 t its_enable_quirk_socionext_synquacer
-ffffffc008502eb4 t its_enable_quirk_hip07_161600802
-ffffffc008502ed4 t its_irq_get_msi_base_pre_its
-ffffffc008502ef4 t its_irq_domain_alloc
-ffffffc00850312c t its_irq_domain_free
-ffffffc008503308 t its_irq_domain_activate
-ffffffc0085034c0 t its_irq_domain_deactivate
-ffffffc008503604 t its_mask_irq
-ffffffc00850372c t its_unmask_irq
-ffffffc008503854 t its_set_affinity
-ffffffc008503c6c t its_irq_retrigger
-ffffffc008503d24 t its_irq_compose_msi_msg
-ffffffc008503dac t its_irq_set_irqchip_state
-ffffffc008503e98 t its_irq_set_vcpu_affinity
-ffffffc008504558 t lpi_update_config
-ffffffc008504828 t its_send_single_vcommand
-ffffffc008504a44 t its_build_vmovi_cmd
-ffffffc008504af4 t lpi_write_config
-ffffffc008504bf8 t its_build_inv_cmd
-ffffffc008504c68 t its_build_vinv_cmd
-ffffffc008504cf8 t its_select_cpu
-ffffffc00850506c t its_build_movi_cmd
-ffffffc0085050e8 t its_build_vint_cmd
-ffffffc00850517c t its_build_vclear_cmd
-ffffffc008505210 t its_build_int_cmd
-ffffffc008505280 t its_build_clear_cmd
-ffffffc0085052f0 t its_build_discard_cmd
-ffffffc008505360 t its_build_mapti_cmd
-ffffffc0085053e4 t its_build_vmapp_cmd
-ffffffc0085055f0 t its_build_vinvall_cmd
-ffffffc008505640 t its_build_vmapti_cmd
-ffffffc0085056f4 t free_lpi_range
-ffffffc0085058a8 t its_build_mapd_cmd
-ffffffc008505964 t its_msi_prepare
-ffffffc008505ac4 t its_create_device
-ffffffc008505e54 t its_lpi_alloc
-ffffffc008505f74 t its_alloc_table_entry
-ffffffc0085060f8 t its_allocate_pending_table
-ffffffc0085061d4 t its_sgi_irq_domain_alloc
-ffffffc00850628c t its_sgi_irq_domain_free
-ffffffc00850629c t its_sgi_irq_domain_activate
-ffffffc008506380 t its_sgi_irq_domain_deactivate
-ffffffc008506514 t its_sgi_mask_irq
-ffffffc008506610 t its_sgi_unmask_irq
-ffffffc008506710 t its_sgi_set_affinity
-ffffffc00850675c t its_sgi_get_irqchip_state
-ffffffc0085068f4 t its_sgi_set_irqchip_state
-ffffffc008506a4c t its_sgi_set_vcpu_affinity
-ffffffc008506b80 t its_build_vsgi_cmd
-ffffffc008506c4c t its_vpe_irq_domain_alloc
-ffffffc0085074dc t its_vpe_irq_domain_free
-ffffffc0085077b8 t its_vpe_irq_domain_activate
-ffffffc008507958 t its_vpe_irq_domain_deactivate
-ffffffc008507b04 t its_vpe_mask_irq
-ffffffc008507b50 t its_vpe_unmask_irq
-ffffffc008507b9c t its_vpe_set_affinity
-ffffffc008507f08 t its_vpe_retrigger
-ffffffc008507f44 t its_vpe_set_irqchip_state
-ffffffc008508094 t its_vpe_set_vcpu_affinity
-ffffffc0085082f0 t its_vpe_send_inv
-ffffffc008508454 t its_vpe_db_proxy_map_locked
-ffffffc0085085b4 t its_build_vmovp_cmd
-ffffffc008508664 t its_wait_vpt_parse_complete
-ffffffc008508714 t its_vpe_4_1_mask_irq
-ffffffc0085087e4 t its_vpe_4_1_unmask_irq
-ffffffc0085088b4 t its_vpe_4_1_set_vcpu_affinity
-ffffffc008508ac0 t its_build_invdb_cmd
-ffffffc008508b28 t its_save_disable
-ffffffc008508c74 t its_restore_enable
-ffffffc008508f48 W iort_pmsi_get_dev_id
-ffffffc008508f5c t its_pmsi_prepare
-ffffffc008509120 T gic_cpuif_has_vsgi
-ffffffc008509164 T its_alloc_vcpu_irqs
-ffffffc0085093b0 T its_free_vcpu_irqs
-ffffffc0085094f0 T its_make_vpe_non_resident
-ffffffc0085095f8 T its_make_vpe_resident
-ffffffc0085096d4 T its_commit_vpe
-ffffffc008509784 T its_invall_vpe
-ffffffc0085097ec T its_map_vlpi
-ffffffc008509884 T its_get_vlpi
-ffffffc0085098e8 T its_unmap_vlpi
-ffffffc008509934 T its_prop_update_vlpi
-ffffffc0085099a8 T its_prop_update_vsgi
-ffffffc008509a18 T its_init_v4
-ffffffc008509a9c t its_pci_msi_prepare
-ffffffc008509c0c t its_get_pci_alias
-ffffffc008509c28 t its_pci_msi_vec_count
-ffffffc008509c9c t its_mask_msi_irq
-ffffffc008509cdc t its_unmask_msi_irq
-ffffffc008509d1c T partition_translate_id
-ffffffc008509d98 T partition_create_desc
-ffffffc008509ed8 t partition_domain_free
-ffffffc008509f3c t partition_domain_alloc
-ffffffc00850a0a8 T partition_get_domain
-ffffffc00850a0c4 t partition_handle_irq
-ffffffc00850a22c t partition_irq_mask
-ffffffc00850a2bc t partition_irq_unmask
-ffffffc00850a34c t partition_irq_set_type
-ffffffc00850a3b0 t partition_irq_print_chip
-ffffffc00850a400 t partition_irq_get_irqchip_state
-ffffffc00850a498 t partition_irq_set_irqchip_state
-ffffffc00850a534 t simple_pm_bus_probe
-ffffffc00850a5e4 t simple_pm_bus_remove
-ffffffc00850a640 T pci_bus_read_config_byte
-ffffffc00850a730 T pci_bus_read_config_word
-ffffffc00850a82c T pci_bus_read_config_dword
-ffffffc00850a92c T pci_bus_write_config_byte
-ffffffc00850a9dc T pci_bus_write_config_word
-ffffffc00850aa98 T pci_bus_write_config_dword
-ffffffc00850ab58 T pci_generic_config_read
-ffffffc00850abf4 t readb
-ffffffc00850ac98 t readb
-ffffffc00850ad3c t readb
-ffffffc00850ade0 t readb
-ffffffc00850ae84 t readb
-ffffffc00850af28 t readb
-ffffffc00850afcc t readb
-ffffffc00850b070 t readb
-ffffffc00850b114 t readb
-ffffffc00850b1b8 t readb
-ffffffc00850b25c t readb
-ffffffc00850b300 t readw
-ffffffc00850b3a4 t readw
-ffffffc00850b448 t readw
-ffffffc00850b4ec t readw
-ffffffc00850b590 t readw
-ffffffc00850b634 t readw
-ffffffc00850b6d8 t readw
-ffffffc00850b77c t readw
-ffffffc00850b820 t readw
-ffffffc00850b8c4 t readw
-ffffffc00850b96c T pci_generic_config_write
-ffffffc00850ba00 t writeb
-ffffffc00850ba9c t writeb
-ffffffc00850bb34 t writeb
-ffffffc00850bbd0 t writeb
-ffffffc00850bc6c t writeb
-ffffffc00850bd08 t writeb
-ffffffc00850bda4 t writeb
-ffffffc00850be40 t writeb
-ffffffc00850bedc t writeb
-ffffffc00850bf78 t writew
-ffffffc00850c014 t writew
-ffffffc00850c0b0 t writew
-ffffffc00850c14c t writew
-ffffffc00850c1e8 t writew
-ffffffc00850c284 t writew
-ffffffc00850c320 t writew
-ffffffc00850c3bc t writew
-ffffffc00850c458 t writew
-ffffffc00850c4f4 t writew
-ffffffc00850c590 t writel
-ffffffc00850c62c t writel
-ffffffc00850c6c8 t writel
-ffffffc00850c764 t writel
-ffffffc00850c800 t writel
-ffffffc00850c89c t writel
-ffffffc00850c938 t writel
-ffffffc00850c9d4 t writel
-ffffffc00850ca70 t writel
-ffffffc00850cb0c t writel
-ffffffc00850cba8 t writel
-ffffffc00850cc44 t writel
-ffffffc00850cce0 t writel
-ffffffc00850cd7c t writel
-ffffffc00850ce18 t writel
-ffffffc00850ceb4 t writel
-ffffffc00850cf50 t writel
-ffffffc00850cfec t writel
-ffffffc00850d088 t writel
-ffffffc00850d124 t writel
-ffffffc00850d1c0 t writel
-ffffffc00850d25c t writel
-ffffffc00850d2f8 t writel
-ffffffc00850d398 T pci_generic_config_read32
-ffffffc00850d440 T pci_generic_config_write32
-ffffffc00850d550 T pci_bus_set_ops
-ffffffc00850d5b8 T pci_user_read_config_byte
-ffffffc00850d6dc t pci_wait_cfg
-ffffffc00850d7f4 T pci_user_read_config_word
-ffffffc00850d928 T pci_user_read_config_dword
-ffffffc00850da60 T pci_user_write_config_byte
-ffffffc00850db44 T pci_user_write_config_word
-ffffffc00850dc34 T pci_user_write_config_dword
-ffffffc00850dd28 T pci_cfg_access_lock
-ffffffc00850ddac T pci_cfg_access_trylock
-ffffffc00850de2c T pci_cfg_access_unlock
-ffffffc00850decc T pcie_cap_has_lnkctl
-ffffffc00850def8 T pcie_cap_has_rtctl
-ffffffc00850df1c T pcie_capability_read_word
-ffffffc00850dff8 t pcie_capability_reg_implemented
-ffffffc00850e0dc T pci_read_config_word
-ffffffc00850e138 T pcie_capability_read_dword
-ffffffc00850e228 T pci_read_config_dword
-ffffffc00850e284 T pcie_capability_write_word
-ffffffc00850e310 T pci_write_config_word
-ffffffc00850e364 T pcie_capability_write_dword
-ffffffc00850e3f4 T pci_write_config_dword
-ffffffc00850e448 T pcie_capability_clear_and_set_word
-ffffffc00850e588 T pcie_capability_clear_and_set_dword
-ffffffc00850e6cc T pci_read_config_byte
-ffffffc00850e728 T pci_write_config_byte
-ffffffc00850e77c T pci_add_resource_offset
-ffffffc00850e80c T pci_add_resource
-ffffffc00850e898 T pci_free_resource_list
-ffffffc00850e8c4 T pci_bus_add_resource
-ffffffc00850e970 T pci_bus_resource_n
-ffffffc00850e9d4 T pci_bus_remove_resource
-ffffffc00850eaa0 T pci_bus_remove_resources
-ffffffc00850eb38 T devm_request_pci_bus_resources
-ffffffc00850ebe4 T pci_bus_alloc_resource
-ffffffc00850ecc8 t pci_bus_alloc_from_region
-ffffffc00850eed0 T pci_bus_clip_resource
-ffffffc00850f07c W pcibios_resource_survey_bus
-ffffffc00850f08c W pcibios_bus_add_device
-ffffffc00850f09c T pci_bus_add_device
-ffffffc00850f164 T pci_bus_add_devices
-ffffffc00850f1f0 T pci_walk_bus
-ffffffc00850f2c8 T pci_bus_get
-ffffffc00850f30c T pci_bus_put
-ffffffc00850f344 T no_pci_devices
-ffffffc00850f3a8 T __pci_read_base
-ffffffc00850f6ec T pci_read_bridge_bases
-ffffffc00850fae4 T pci_alloc_host_bridge
-ffffffc00850fb6c t pci_release_host_bridge_dev
-ffffffc00850fbe0 T devm_pci_alloc_host_bridge
-ffffffc00850fca4 t devm_pci_alloc_host_bridge_release
-ffffffc00850fcd4 T pci_free_host_bridge
-ffffffc00850fd04 T pci_speed_string
-ffffffc00850fd38 T pcie_update_link_speed
-ffffffc00850fd5c T pci_add_new_bus
-ffffffc008510278 T pci_scan_bridge
-ffffffc0085102a8 t pci_scan_bridge_extend
-ffffffc0085108c0 T set_pcie_port_type
-ffffffc008510a34 T set_pcie_hotplug_bridge
-ffffffc008510abc T pci_cfg_space_size
-ffffffc008510d04 T pci_setup_device
-ffffffc00851170c T pci_configure_extended_tags
-ffffffc008511818 T pcie_relaxed_ordering_enabled
-ffffffc008511884 T pci_alloc_dev
-ffffffc0085118fc T pci_bus_generic_read_dev_vendor_id
-ffffffc008511a74 T pci_bus_read_dev_vendor_id
-ffffffc008511adc T pcie_report_downtraining
-ffffffc008511b58 T pci_device_add
-ffffffc008512158 t pci_release_dev
-ffffffc0085121e8 T pci_scan_single_device
-ffffffc008512344 T pci_scan_slot
-ffffffc008512520 T pcie_bus_configure_settings
-ffffffc00851260c t pcie_find_smpss
-ffffffc008512668 t pcie_bus_configure_set
-ffffffc008512820 W pcibios_fixup_bus
-ffffffc008512830 T pci_scan_child_bus
-ffffffc00851285c t pci_scan_child_bus_extend.llvm.4126018918990247055
-ffffffc008512bf0 W pcibios_root_bridge_prepare
-ffffffc008512c04 W pcibios_add_bus
-ffffffc008512c14 W pcibios_remove_bus
-ffffffc008512c24 T pci_create_root_bus
-ffffffc008512d34 t pci_register_host_bridge
-ffffffc008513238 T pci_host_probe
-ffffffc0085133c8 T pci_scan_root_bus_bridge
-ffffffc008513564 T pci_bus_insert_busn_res
-ffffffc0085136cc T pci_bus_update_busn_res_end
-ffffffc0085137d4 T pci_bus_release_busn_res
-ffffffc008513858 T pci_scan_root_bus
-ffffffc0085139dc T pci_scan_bus
-ffffffc008513ac0 T pci_rescan_bus_bridge_resize
-ffffffc008513b24 T pci_rescan_bus
-ffffffc008513b78 T pci_lock_rescan_remove
-ffffffc008513bac T pci_unlock_rescan_remove
-ffffffc008513be0 T pci_hp_add_bridge
-ffffffc008513ca0 t release_pcibus_dev
-ffffffc008513cfc T pci_find_host_bridge
-ffffffc008513d1c T pci_get_host_bridge_device
-ffffffc008513d6c T pci_put_host_bridge_device
-ffffffc008513d98 T pci_set_host_bridge_release
-ffffffc008513db0 T pcibios_resource_to_bus
-ffffffc008513e5c T pcibios_bus_to_resource
-ffffffc008513f00 T pci_remove_bus
-ffffffc008513fc4 T pci_stop_and_remove_bus_device
-ffffffc008514000 t pci_stop_bus_device.llvm.8182832138245930132
-ffffffc0085140e0 t pci_remove_bus_device.llvm.8182832138245930132
-ffffffc0085142d8 T pci_stop_and_remove_bus_device_locked
-ffffffc008514334 T pci_stop_root_bus
-ffffffc0085143b0 T pci_remove_root_bus
-ffffffc008514430 T pci_reset_supported
-ffffffc00851444c T pci_ats_disabled
-ffffffc008514464 T pci_bus_max_busnr
-ffffffc0085144d8 T pci_status_get_and_clear_errors
-ffffffc008514580 T pci_ioremap_bar
-ffffffc008514620 T pci_ioremap_wc_bar
-ffffffc0085146c0 T pci_find_next_capability
-ffffffc0085147c0 T pci_find_capability
-ffffffc0085148fc T pci_bus_find_capability
-ffffffc008514a48 T pci_find_next_ext_capability
-ffffffc008514b48 T pci_find_ext_capability
-ffffffc008514c30 T pci_get_dsn
-ffffffc008514d3c T pci_find_next_ht_capability
-ffffffc008514d68 t __pci_find_next_ht_cap.llvm.16921163476579471908
-ffffffc008514f44 T pci_find_ht_capability
-ffffffc008515000 T pci_find_vsec_capability
-ffffffc008515154 T pci_find_dvsec_capability
-ffffffc008515318 T pci_find_parent_resource
-ffffffc0085153f4 T pci_find_resource
-ffffffc008515600 T pci_wait_for_pending
-ffffffc008515708 T pci_request_acs
-ffffffc008515724 T pci_update_current_state
-ffffffc0085157bc T pci_refresh_power_state
-ffffffc008515850 T pci_platform_power_transition
-ffffffc008515870 T pci_resume_bus
-ffffffc0085158ac t pci_resume_one.llvm.16921163476579471908
-ffffffc0085158e4 T pci_power_up
-ffffffc008515a88 T pci_bus_set_current_state
-ffffffc008515af4 t __pci_dev_set_current_state
-ffffffc008515b14 T pci_set_power_state
-ffffffc008515d68 t pci_set_low_power_state
-ffffffc008515fb8 T pci_find_saved_cap
-ffffffc008515ff4 T pci_find_saved_ext_cap
-ffffffc008516034 T pci_bridge_reconfigure_ltr
-ffffffc0085160f4 T pci_save_state
-ffffffc008516464 T pci_restore_state
-ffffffc008516ee8 t pci_enable_acs
-ffffffc0085170d8 T pci_store_saved_state
-ffffffc0085171c0 T pci_load_saved_state
-ffffffc0085172e0 T pci_load_and_free_saved_state
-ffffffc008517420 W pcibios_enable_device
-ffffffc00851744c T pci_reenable_device
-ffffffc008517494 t do_pci_enable_device
-ffffffc0085175c0 T pci_enable_device_io
-ffffffc0085175ec t pci_enable_device_flags.llvm.16921163476579471908
-ffffffc0085177f8 T pci_enable_device_mem
-ffffffc008517828 T pci_enable_device
-ffffffc008517858 T pcim_enable_device
-ffffffc00851793c T pcim_pin_device
-ffffffc0085179b8 W pcibios_device_add
-ffffffc0085179cc W pcibios_release_device
-ffffffc0085179dc W pcibios_disable_device
-ffffffc0085179ec W pcibios_penalize_isa_irq
-ffffffc0085179fc T pci_disable_enabled_device
-ffffffc008517aa4 T pci_disable_device
-ffffffc008517c38 W pcibios_set_pcie_reset_state
-ffffffc008517c4c T pci_set_pcie_reset_state
-ffffffc008517c78 T pcie_clear_device_status
-ffffffc008517cf8 T pcie_clear_root_pme_status
-ffffffc008517d30 T pci_check_pme_status
-ffffffc008517dec T pci_pme_wakeup_bus
-ffffffc008517e28 t pci_pme_wakeup
-ffffffc008517f14 T pci_pme_capable
-ffffffc008517f50 T pci_pme_restore
-ffffffc008518008 T pci_pme_active
-ffffffc0085181e8 T pci_enable_wake
-ffffffc0085182c0 T pci_wake_from_d3
-ffffffc0085183d0 T pci_prepare_to_sleep
-ffffffc008518554 T pci_back_from_sleep
-ffffffc0085185d0 T pci_finish_runtime_suspend
-ffffffc008518818 T pci_dev_run_wake
-ffffffc0085188d4 T pci_dev_need_resume
-ffffffc00851899c T pci_dev_adjust_pme
-ffffffc008518a8c T pci_dev_complete_resume
-ffffffc008518c00 T pci_choose_state
-ffffffc008518c48 T pci_config_pm_runtime_get
-ffffffc008518ce0 T pci_config_pm_runtime_put
-ffffffc008518d34 T pci_bridge_d3_possible
-ffffffc008518d90 T pci_bridge_d3_update
-ffffffc008518f0c t pci_dev_check_d3cold
-ffffffc008518f74 T pci_d3cold_enable
-ffffffc008518fb0 T pci_d3cold_disable
-ffffffc008518fec T pci_pm_init
-ffffffc0085192c8 T pci_ea_init
-ffffffc008519670 T pci_add_cap_save_buffer
-ffffffc008519718 T pci_add_ext_cap_save_buffer
-ffffffc008519858 T pci_allocate_cap_save_buffers
-ffffffc008519994 T pci_free_cap_save_buffers
-ffffffc0085199dc T pci_configure_ari
-ffffffc008519b60 T pci_acs_enabled
-ffffffc008519c98 T pci_acs_path_enabled
-ffffffc008519d18 T pci_acs_init
-ffffffc008519e0c T pci_rebar_get_possible_sizes
-ffffffc008519ec8 t pci_rebar_find_pos
-ffffffc00851a128 T pci_rebar_get_current_size
-ffffffc00851a1ac T pci_rebar_set_size
-ffffffc00851a258 T pci_enable_atomic_ops_to_root
-ffffffc00851a3b8 T pci_swizzle_interrupt_pin
-ffffffc00851a414 T pci_get_interrupt_pin
-ffffffc00851a49c T pci_common_swizzle
-ffffffc00851a524 T pci_release_region
-ffffffc00851a5f8 T pci_request_region
-ffffffc00851a624 t __pci_request_region.llvm.16921163476579471908
-ffffffc00851a748 T pci_release_selected_regions
-ffffffc00851a854 T pci_request_selected_regions
-ffffffc00851a880 t __pci_request_selected_regions.llvm.16921163476579471908
-ffffffc00851aa74 T pci_request_selected_regions_exclusive
-ffffffc00851aaa4 T pci_release_regions
-ffffffc00851aad4 T pci_request_regions
-ffffffc00851ab0c T pci_request_regions_exclusive
-ffffffc00851ab44 T pci_register_io_range
-ffffffc00851abec T pci_pio_to_address
-ffffffc00851ac2c W pci_address_to_pio
-ffffffc00851ac58 T pci_remap_iospace
-ffffffc00851acdc T pci_unmap_iospace
-ffffffc00851ad24 T devm_pci_remap_iospace
-ffffffc00851ae18 t devm_pci_unmap_iospace
-ffffffc00851ae64 T devm_pci_remap_cfgspace
-ffffffc00851af60 T devm_pci_remap_cfg_resource
-ffffffc00851b0b0 W pcibios_set_master
-ffffffc00851b16c T pci_set_master
-ffffffc00851b210 T pci_clear_master
-ffffffc00851b2b8 T pci_set_cacheline_size
-ffffffc00851b390 T pci_set_mwi
-ffffffc00851b490 T pcim_set_mwi
-ffffffc00851b510 T pci_try_set_mwi
-ffffffc00851b53c T pci_clear_mwi
-ffffffc00851b5c8 T pci_disable_parity
-ffffffc00851b654 T pci_intx
-ffffffc00851b744 T pci_check_and_mask_intx
-ffffffc00851b85c T pci_check_and_unmask_intx
-ffffffc00851b988 T pci_wait_for_pending_transaction
-ffffffc00851b9cc T pcie_flr
-ffffffc00851ba68 t pci_dev_wait
-ffffffc00851bba8 T pcie_reset_flr
-ffffffc00851bbfc T pcie_wait_for_link
-ffffffc00851bd1c t pcie_wait_for_link_delay
-ffffffc00851be14 T pci_bridge_wait_for_secondary_bus
-ffffffc00851bfa0 T pcie_get_speed_cap
-ffffffc00851c09c T pci_reset_secondary_bus
-ffffffc00851c144 W pcibios_reset_secondary_bus
-ffffffc00851c1ec T pci_bridge_secondary_bus_reset
-ffffffc00851c238 T pci_dev_lock
-ffffffc00851c27c T pci_dev_trylock
-ffffffc00851c2e0 T pci_dev_unlock
-ffffffc00851c320 t pci_dev_reset_method_attr_is_visible
-ffffffc00851c348 T __pci_reset_function_locked
-ffffffc00851c560 T pci_init_reset_methods
-ffffffc00851c778 T pci_reset_function
-ffffffc00851c8a0 T pci_reset_function_locked
-ffffffc00851c9a4 T pci_try_reset_function
-ffffffc00851cae4 T pci_probe_reset_slot
-ffffffc00851cbb4 T pci_bus_error_reset
-ffffffc00851cea0 T pci_probe_reset_bus
-ffffffc00851ceec T pci_reset_bus
-ffffffc00851d354 T pcix_get_max_mmrbc
-ffffffc00851d3f8 T pcix_get_mmrbc
-ffffffc00851d49c T pcix_set_mmrbc
-ffffffc00851d60c T pcie_get_readrq
-ffffffc00851d680 T pcie_set_readrq
-ffffffc00851d814 T pcie_get_mps
-ffffffc00851d888 T pcie_set_mps
-ffffffc00851d958 T pcie_bandwidth_available
-ffffffc00851dab0 T pcie_get_width_cap
-ffffffc00851db28 T pcie_bandwidth_capable
-ffffffc00851dca4 T __pcie_print_link_status
-ffffffc00851defc T pcie_print_link_status
-ffffffc00851df2c T pci_select_bars
-ffffffc00851e048 T pci_set_vga_state
-ffffffc00851e1a8 T pci_add_dma_alias
-ffffffc00851e288 T pci_devs_are_dma_aliases
-ffffffc00851e328 W pci_real_dma_dev
-ffffffc00851e338 T pci_device_is_present
-ffffffc00851e3d8 T pci_ignore_hotplug
-ffffffc00851e40c W pcibios_default_alignment
-ffffffc00851e420 W pci_resource_to_user
-ffffffc00851e440 T pci_reassigndev_resource_alignment
-ffffffc00851e848 T pci_bus_find_domain_nr
-ffffffc00851e928 W pci_ext_cfg_avail
-ffffffc00851e93c W pci_fixup_cardbus
-ffffffc00851e948 t pci_dev_str_match
-ffffffc00851ec40 t pci_enable_bridge
-ffffffc00851ed80 t pcim_release
-ffffffc00851efa0 t pci_pme_list_scan
-ffffffc00851f148 t reset_method_show
-ffffffc00851f3c8 t reset_method_store
-ffffffc00851f6a8 t pci_dev_acpi_reset
-ffffffc00851f6bc t pci_af_flr
-ffffffc00851f7e8 t pci_pm_reset
-ffffffc00851f98c t pci_reset_bus_function
-ffffffc00851fab4 t pci_bus_resetable
-ffffffc00851fb2c t pci_bus_lock
-ffffffc00851fb90 t pci_bus_unlock
-ffffffc00851fbf4 t pci_bus_trylock
-ffffffc00851fcb4 t pci_bus_save_and_disable_locked
-ffffffc00851fd64 t pci_bus_restore_locked
-ffffffc00851fe18 t resource_alignment_show
-ffffffc00851fe90 t resource_alignment_store
-ffffffc00851ff50 T pci_add_dynid
-ffffffc008520048 T pci_match_id
-ffffffc0085200fc W pcibios_alloc_irq
-ffffffc008520110 W pcibios_free_irq
-ffffffc008520120 T __pci_register_driver
-ffffffc008520178 T pci_unregister_driver
-ffffffc008520230 T pci_dev_driver
-ffffffc0085202a8 T pci_dev_get
-ffffffc0085202ec T pci_dev_put
-ffffffc008520324 T pci_uevent_ers
-ffffffc0085203e4 t pci_bus_match
-ffffffc008520438 t pci_uevent
-ffffffc008520548 t pci_device_probe
-ffffffc0085206f4 t pci_device_remove
-ffffffc008520814 t pci_device_shutdown
-ffffffc0085208ac t pci_bus_num_vf
-ffffffc0085208dc t pci_dma_configure
-ffffffc00852099c t pci_dma_cleanup
-ffffffc0085209e0 t pcie_port_bus_match
-ffffffc008520a50 t new_id_store
-ffffffc008520c74 t pci_match_device
-ffffffc008520e64 t remove_id_store
-ffffffc008521008 t pci_pm_prepare
-ffffffc0085210a8 t pci_pm_complete
-ffffffc008521140 t pci_pm_suspend
-ffffffc00852141c t pci_pm_resume
-ffffffc008521600 t pci_pm_suspend_late
-ffffffc008521658 t pci_pm_resume_early
-ffffffc0085216a4 t pci_pm_suspend_noirq
-ffffffc008521958 t pci_pm_resume_noirq
-ffffffc008521b00 t pci_pm_runtime_suspend
-ffffffc008521cb4 t pci_pm_runtime_resume
-ffffffc008521dc8 t pci_pm_runtime_idle
-ffffffc008521e50 T pci_for_each_dma_alias
-ffffffc008521fc8 T pci_find_bus
-ffffffc00852208c T pci_find_next_bus
-ffffffc0085220f4 t pci_do_find_bus
-ffffffc008522168 T pci_get_slot
-ffffffc0085221ec T pci_get_domain_bus_and_slot
-ffffffc00852234c T pci_get_device
-ffffffc0085223fc T pci_get_subsys
-ffffffc0085224ac T pci_get_class
-ffffffc00852255c T pci_dev_present
-ffffffc008522600 t match_pci_dev_by_id
-ffffffc008522690 T pci_mmap_fits
-ffffffc008522790 T pci_create_sysfs_dev_files
-ffffffc008522860 T pci_remove_sysfs_dev_files
-ffffffc008522898 t pci_remove_resource_files.llvm.12253162920323991028
-ffffffc008522a4c t rescan_store
-ffffffc008522b2c t bus_rescan_store
-ffffffc008522c24 t cpuaffinity_show
-ffffffc008522c6c t cpulistaffinity_show
-ffffffc008522cb0 t pci_create_attr
-ffffffc008522e48 t pci_mmap_resource_wc
-ffffffc008522e84 t pci_read_resource_io
-ffffffc008522fa0 t pci_write_resource_io
-ffffffc0085230d4 t pci_mmap_resource_uc
-ffffffc00852310c t pci_mmap_resource
-ffffffc00852320c t power_state_show
-ffffffc008523260 t resource_show
-ffffffc00852335c t resource_show
-ffffffc0085233a8 t vendor_show
-ffffffc0085233ec t vendor_show
-ffffffc008523430 t device_show
-ffffffc008523474 t device_show
-ffffffc0085234b8 t subsystem_vendor_show
-ffffffc0085234fc t subsystem_device_show
-ffffffc008523540 t revision_show
-ffffffc008523584 t class_show
-ffffffc0085235c8 t irq_show
-ffffffc00852363c t irq_show
-ffffffc0085236bc t local_cpus_show
-ffffffc008523704 t local_cpulist_show
-ffffffc00852374c t modalias_show
-ffffffc0085237b8 t modalias_show
-ffffffc008523800 t modalias_show
-ffffffc008523864 t modalias_show
-ffffffc0085238b4 t dma_mask_bits_show
-ffffffc00852390c t consistent_dma_mask_bits_show
-ffffffc008523964 t enable_show
-ffffffc0085239b0 t enable_store
-ffffffc008523ac8 t broken_parity_status_show
-ffffffc008523b14 t broken_parity_status_store
-ffffffc008523bd0 t msi_bus_show
-ffffffc008523c3c t msi_bus_store
-ffffffc008523d7c t devspec_show
-ffffffc008523dd4 t driver_override_show
-ffffffc008523e44 t driver_override_show
-ffffffc008523eb4 t driver_override_show
-ffffffc008523f24 t driver_override_store
-ffffffc008523f6c t driver_override_store
-ffffffc008523fb4 t driver_override_store
-ffffffc008523ffc t ari_enabled_show
-ffffffc008524058 t pci_dev_config_attr_is_visible
-ffffffc008524088 t pci_read_config
-ffffffc008524278 t pci_write_config
-ffffffc0085243e4 t pci_dev_rom_attr_is_visible
-ffffffc008524420 t pci_read_rom
-ffffffc00852450c t pci_write_rom
-ffffffc008524548 t pci_dev_reset_attr_is_visible
-ffffffc008524570 t reset_store
-ffffffc008524640 t reset_store
-ffffffc00852475c t resource_resize_is_visible
-ffffffc0085247ac t resource0_resize_show
-ffffffc00852481c t resource0_resize_store
-ffffffc008524b04 t resource1_resize_show
-ffffffc008524b74 t resource1_resize_store
-ffffffc008524e5c t resource2_resize_show
-ffffffc008524ecc t resource2_resize_store
-ffffffc0085251b4 t resource3_resize_show
-ffffffc008525224 t resource3_resize_store
-ffffffc00852550c t resource4_resize_show
-ffffffc00852557c t resource4_resize_store
-ffffffc008525864 t resource5_resize_show
-ffffffc0085258d4 t resource5_resize_store
-ffffffc008525bbc t pci_dev_attrs_are_visible
-ffffffc008525bfc t boot_vga_show
-ffffffc008525c60 t pci_dev_hp_attrs_are_visible
-ffffffc008525c94 t remove_store
-ffffffc008525d70 t dev_rescan_store
-ffffffc008525e44 t pci_bridge_attrs_are_visible
-ffffffc008525e74 t subordinate_bus_number_show
-ffffffc008525f0c t secondary_bus_number_show
-ffffffc008525fa4 t pcie_dev_attrs_are_visible
-ffffffc008525fcc t current_link_speed_show
-ffffffc00852607c t current_link_width_show
-ffffffc008526118 t max_link_width_show
-ffffffc00852616c t max_link_speed_show
-ffffffc0085261c4 T pci_enable_rom
-ffffffc008526284 T pci_disable_rom
-ffffffc008526314 T pci_map_rom
-ffffffc0085265a0 T pci_unmap_rom
-ffffffc008526640 T pci_update_resource
-ffffffc0085268a0 T pci_claim_resource
-ffffffc0085269a0 T pci_disable_bridge_window
-ffffffc008526a10 W pcibios_retrieve_fw_addr
-ffffffc008526a24 W pcibios_align_resource
-ffffffc008526a38 T pci_assign_resource
-ffffffc008526bd0 t _pci_assign_resource
-ffffffc008526d14 t pci_revert_fw_address
-ffffffc008526e68 T pci_reassign_resource
-ffffffc008526fac T pci_release_resource
-ffffffc008527034 T pci_resize_resource
-ffffffc0085271e0 T pci_enable_resources
-ffffffc008527324 T pci_request_irq
-ffffffc008527438 T pci_free_irq
-ffffffc00852747c T pci_vpd_init
-ffffffc0085274e4 t vpd_attr_is_visible
-ffffffc00852750c T pci_vpd_alloc
-ffffffc00852761c t pci_vpd_available
-ffffffc008527880 T pci_read_vpd
-ffffffc00852792c T pci_vpd_find_id_string
-ffffffc00852799c T pci_read_vpd_any
-ffffffc008527a48 T pci_write_vpd
-ffffffc008527af4 T pci_write_vpd_any
-ffffffc008527ba0 T pci_vpd_find_ro_info_keyword
-ffffffc008527c94 T pci_vpd_check_csum
-ffffffc008527de4 T __UNIQUE_ID_quirk_f0_vpd_link384
-ffffffc008527e7c T __UNIQUE_ID_quirk_blacklist_vpd386
-ffffffc008527ec0 T __UNIQUE_ID_quirk_blacklist_vpd388
-ffffffc008527f04 T __UNIQUE_ID_quirk_blacklist_vpd390
-ffffffc008527f48 T __UNIQUE_ID_quirk_blacklist_vpd392
-ffffffc008527f8c T __UNIQUE_ID_quirk_blacklist_vpd394
-ffffffc008527fd0 T __UNIQUE_ID_quirk_blacklist_vpd396
-ffffffc008528014 T __UNIQUE_ID_quirk_blacklist_vpd398
-ffffffc008528058 T __UNIQUE_ID_quirk_blacklist_vpd400
-ffffffc00852809c T __UNIQUE_ID_quirk_blacklist_vpd402
-ffffffc0085280e0 T __UNIQUE_ID_quirk_blacklist_vpd404
-ffffffc008528124 T __UNIQUE_ID_quirk_blacklist_vpd406
-ffffffc008528168 T __UNIQUE_ID_quirk_blacklist_vpd408
-ffffffc0085281ac T __UNIQUE_ID_quirk_blacklist_vpd410
-ffffffc0085281f0 T __UNIQUE_ID_quirk_chelsio_extend_vpd412
-ffffffc008528230 t vpd_read
-ffffffc0085282e0 t vpd_write
-ffffffc00852838c t pci_vpd_read
-ffffffc008528654 t pci_vpd_write
-ffffffc008528844 T pci_setup_cardbus
-ffffffc008528a1c W pcibios_setup_bridge
-ffffffc008528a2c T pci_setup_bridge
-ffffffc008528a70 t __pci_setup_bridge
-ffffffc008528b94 T pci_claim_bridge_resource
-ffffffc008528ce8 t pci_setup_bridge_io
-ffffffc008528e20 t pci_setup_bridge_mmio_pref
-ffffffc008528f34 W pcibios_window_alignment
-ffffffc008528f48 T pci_cardbus_resource_alignment
-ffffffc008528f80 T __pci_bus_size_bridges
-ffffffc008529884 t pbus_size_mem
-ffffffc008529ebc T pci_bus_size_bridges
-ffffffc008529eec T __pci_bus_assign_resources
-ffffffc00852a13c T pci_bus_assign_resources
-ffffffc00852a170 T pci_bus_claim_resources
-ffffffc00852a1ac t pci_bus_allocate_resources.llvm.13723094122354789240
-ffffffc00852a31c t pci_bus_allocate_dev_resources.llvm.13723094122354789240
-ffffffc00852a3b8 T pci_assign_unassigned_root_bus_resources
-ffffffc00852a6b0 t pci_bus_get_depth
-ffffffc00852a724 t pci_root_bus_distribute_available_resources
-ffffffc00852a8a8 t pci_bus_release_bridge_resources
-ffffffc00852aa64 t pci_bus_dump_resources
-ffffffc00852ab38 T pci_assign_unassigned_bridge_resources
-ffffffc00852ae44 t __pci_bridge_assign_resources
-ffffffc00852af44 T pci_reassign_bridge_resources
-ffffffc00852b380 t add_to_list
-ffffffc00852b428 T pci_assign_unassigned_bus_resources
-ffffffc00852b50c t __dev_sort_resources
-ffffffc00852b758 t __assign_resources_sorted
-ffffffc00852bf20 t assign_requested_resources_sorted
-ffffffc00852c038 t pci_bus_distribute_available_resources
-ffffffc00852c894 T pci_save_vc_state
-ffffffc00852c9f4 t pci_vc_do_save_buffer
-ffffffc00852d14c T pci_restore_vc_state
-ffffffc00852d230 T pci_allocate_vc_save_buffers
-ffffffc00852d368 T pci_mmap_resource_range
-ffffffc00852d434 T pci_assign_irq
-ffffffc00852d550 T pci_msi_init
-ffffffc00852d610 T pci_msix_init
-ffffffc00852d6b8 T pci_msi_mask_irq
-ffffffc00852d748 T pci_msi_unmask_irq
-ffffffc00852d7cc T __pci_read_msi_msg
-ffffffc00852d8f4 T msi_desc_to_pci_dev
-ffffffc00852d90c T __pci_write_msi_msg
-ffffffc00852dae4 T pci_write_msi_msg
-ffffffc00852db4c W arch_restore_msi_irqs
-ffffffc00852db60 T pci_restore_msi_state
-ffffffc00852ddcc T pci_msi_vec_count
-ffffffc00852de50 T pci_disable_msi
-ffffffc00852dfe0 T pci_msix_vec_count
-ffffffc00852e060 T pci_disable_msix
-ffffffc00852e220 T pci_enable_msi
-ffffffc00852e25c t __pci_enable_msi_range
-ffffffc00852e72c T pci_enable_msix_range
-ffffffc00852e75c t __pci_enable_msix_range
-ffffffc00852edfc T pci_alloc_irq_vectors_affinity
-ffffffc00852ef34 T pci_free_irq_vectors
-ffffffc00852ef74 T pci_irq_vector
-ffffffc00852efd4 T pci_irq_get_affinity
-ffffffc00852f0a8 T pci_no_msi
-ffffffc00852f0c4 T pci_msi_enabled
-ffffffc00852f0e0 t pci_msi_update_mask
-ffffffc00852f174 t pcim_msi_release
-ffffffc00852f1d4 T pci_msi_setup_msi_irqs
-ffffffc00852f228 T pci_msi_teardown_msi_irqs
-ffffffc00852f294 T pci_msi_create_irq_domain
-ffffffc00852f3d4 T pci_msi_domain_get_msi_rid
-ffffffc00852f4a0 t get_msi_id_cb
-ffffffc00852f4e4 T pci_msi_get_device_domain
-ffffffc00852f578 T pci_dev_has_special_msi_domain
-ffffffc00852f5b4 t pci_msi_domain_set_desc
-ffffffc00852f5f8 t pci_msi_domain_check_cap
-ffffffc00852f6b0 t pci_msi_domain_write_msg
-ffffffc00852f6f8 T pcie_port_device_register
-ffffffc00852fbd4 T pcie_port_device_iter
-ffffffc00852fc50 T pcie_port_device_suspend
-ffffffc00852fcbc T pcie_port_device_resume_noirq
-ffffffc00852fd28 T pcie_port_device_resume
-ffffffc00852fd94 T pcie_port_device_runtime_suspend
-ffffffc00852fe00 T pcie_port_device_runtime_resume
-ffffffc00852fe6c T pcie_port_find_device
-ffffffc00852fee4 t find_service_iter
-ffffffc00852ff38 T pcie_port_device_remove
-ffffffc00852ff98 t remove_iter.llvm.15415696392766198549
-ffffffc00852ffdc T pcie_port_service_register
-ffffffc00853004c t pcie_port_probe_service
-ffffffc0085300d8 t pcie_port_remove_service
-ffffffc008530154 t pcie_port_shutdown_service
-ffffffc008530164 T pcie_port_service_unregister
-ffffffc008530194 t release_pcie_device
-ffffffc0085301c4 t pcie_portdrv_probe
-ffffffc008530290 t pcie_portdrv_remove
-ffffffc008530340 t pcie_portdrv_error_detected
-ffffffc00853035c t pcie_portdrv_mmio_enabled
-ffffffc008530370 t pcie_portdrv_slot_reset
-ffffffc008530400 t pcie_port_runtime_suspend
-ffffffc00853043c t pcie_port_runtime_idle
-ffffffc00853045c T pcie_link_rcec
-ffffffc008530558 t link_rcec_helper
-ffffffc0085305ec T pcie_walk_rcec
-ffffffc0085306e8 t walk_rcec_helper
-ffffffc0085307b0 T pci_rcec_init
-ffffffc0085308b8 T pci_rcec_exit
-ffffffc0085308f8 T pcie_aspm_init_link_state
-ffffffc008531614 t pcie_config_aspm_path
-ffffffc008531694 t pcie_set_clkpm
-ffffffc008531740 T pcie_aspm_exit_link_state
-ffffffc008531918 t pcie_config_aspm_link
-ffffffc008531bac T pcie_aspm_powersave_config_link
-ffffffc008531d20 T pci_disable_link_state_locked
-ffffffc008531d4c t __pci_disable_link_state.llvm.4513489038182873717
-ffffffc008531fac T pci_disable_link_state
-ffffffc008531fdc T pcie_aspm_enabled
-ffffffc008532048 t aspm_ctrl_attrs_are_visible
-ffffffc0085320fc T pcie_no_aspm
-ffffffc00853212c T pcie_aspm_support_enabled
-ffffffc008532148 t pcie_aspm_check_latency
-ffffffc00853231c t pcie_aspm_set_policy
-ffffffc0085324e0 t pcie_aspm_get_policy
-ffffffc0085325b8 t clkpm_show
-ffffffc008532650 t clkpm_store
-ffffffc008532810 t l0s_aspm_show
-ffffffc0085328ac t l0s_aspm_store
-ffffffc0085328e0 t aspm_attr_store_common
-ffffffc008532a78 t l1_aspm_show
-ffffffc008532b10 t l1_aspm_store
-ffffffc008532b48 t l1_1_aspm_show
-ffffffc008532be0 t l1_1_aspm_store
-ffffffc008532c18 t l1_2_aspm_show
-ffffffc008532cb0 t l1_2_aspm_store
-ffffffc008532ce8 t l1_1_pcipm_show
-ffffffc008532d80 t l1_1_pcipm_store
-ffffffc008532db8 t l1_2_pcipm_show
-ffffffc008532e50 t l1_2_pcipm_store
-ffffffc008532e88 T pci_no_aer
-ffffffc008532ea4 T pci_aer_available
-ffffffc008532ed0 T pcie_aer_is_native
-ffffffc008532f38 T pci_enable_pcie_error_reporting
-ffffffc008532fd4 T pci_disable_pcie_error_reporting
-ffffffc008533070 T pci_aer_clear_nonfatal_status
-ffffffc008533150 T pci_aer_clear_fatal_status
-ffffffc008533224 T pci_aer_raw_clear_status
-ffffffc008533328 T pci_aer_clear_status
-ffffffc008533390 T pci_save_aer_state
-ffffffc008533454 T pci_restore_aer_state
-ffffffc008533504 T pci_aer_init
-ffffffc008533604 T pci_aer_exit
-ffffffc008533644 t aer_stats_attrs_are_visible
-ffffffc0085336b4 T aer_print_error
-ffffffc008533afc T aer_get_device_error_info
-ffffffc008533c98 t aer_rootport_total_err_cor_show
-ffffffc008533ce0 t aer_rootport_total_err_fatal_show
-ffffffc008533d28 t aer_rootport_total_err_nonfatal_show
-ffffffc008533d70 t aer_dev_correctable_show
-ffffffc008533e5c t aer_dev_fatal_show
-ffffffc008533f64 t aer_dev_nonfatal_show
-ffffffc00853406c t aer_probe
-ffffffc0085342d0 t aer_remove
-ffffffc0085343e4 t aer_irq
-ffffffc0085344f0 t aer_isr
-ffffffc0085347e8 t aer_process_err_devices
-ffffffc0085349e8 t find_device_iter
-ffffffc008534b64 t aer_root_reset
-ffffffc008534db0 t set_device_error_reporting
-ffffffc008534e78 T pcie_do_recovery
-ffffffc0085352ac t report_frozen_detected
-ffffffc0085352e4 t report_normal_detected
-ffffffc00853531c t report_mmio_enabled
-ffffffc0085353f0 t report_slot_reset
-ffffffc0085354c4 t report_resume
-ffffffc0085355a0 t report_error_detected
-ffffffc0085357b4 T pcie_pme_interrupt_enable
-ffffffc008535800 t pcie_pme_probe
-ffffffc008535988 t pcie_pme_remove
-ffffffc008535a2c t pcie_pme_suspend
-ffffffc008535b0c t pcie_pme_resume
-ffffffc008535ba0 t pcie_pme_work_fn
-ffffffc008535ef8 t pcie_pme_irq
-ffffffc008535fdc t pcie_pme_walk_bus
-ffffffc00853609c t pcie_pme_can_wakeup
-ffffffc0085360d0 t pcie_pme_check_wakeup
-ffffffc008536150 T pci_proc_attach_device
-ffffffc008536260 T pci_proc_detach_device
-ffffffc0085362a4 T pci_proc_detach_bus
-ffffffc0085362d8 t proc_bus_pci_read
-ffffffc008536b00 t proc_bus_pci_write
-ffffffc0085372e8 t proc_bus_pci_lseek
-ffffffc008537320 t proc_bus_pci_ioctl
-ffffffc008537390 t pci_seq_start
-ffffffc0085373ec t pci_seq_stop
-ffffffc008537420 t pci_seq_next
-ffffffc008537468 t show_device
-ffffffc008537720 T pci_dev_assign_slot
-ffffffc0085377ac T pci_create_slot
-ffffffc0085379e0 t make_slot_name
-ffffffc008537ae8 T pci_destroy_slot
-ffffffc008537b3c t pci_slot_release
-ffffffc008537c00 t pci_slot_attr_show
-ffffffc008537c5c t pci_slot_attr_store
-ffffffc008537cbc t address_read_file
-ffffffc008537d28 t max_speed_read_file
-ffffffc008537d80 t cur_speed_read_file
-ffffffc008537dd8 T pci_set_of_node
-ffffffc008537e30 T of_pci_find_child_device
-ffffffc008537f98 T pci_release_of_node
-ffffffc008537fb0 T pci_set_bus_of_node
-ffffffc00853804c W pcibios_get_phb_of_node
-ffffffc0085380a8 T pci_release_bus_of_node
-ffffffc0085380c0 T pci_host_bridge_of_msi_domain
-ffffffc0085381c8 T pci_host_of_has_msi_map
-ffffffc008538214 T of_pci_get_devfn
-ffffffc008538298 T of_pci_parse_bus_range
-ffffffc008538338 T of_get_pci_domain_nr
-ffffffc0085383b8 T of_pci_check_probe_only
-ffffffc00853849c T of_irq_parse_and_map_pci
-ffffffc008538698 T devm_of_pci_bridge_init
-ffffffc008538b50 T of_pci_get_max_link_speed
-ffffffc008538bd8 T of_pci_get_slot_power_limit
-ffffffc008538dc0 T pci_fixup_device
-ffffffc008539034 T __UNIQUE_ID_quirk_mmio_always_on414
-ffffffc008539050 T __UNIQUE_ID_pci_disable_parity416
-ffffffc00853907c T __UNIQUE_ID_pci_disable_parity418
-ffffffc0085390a8 T __UNIQUE_ID_quirk_passive_release420
-ffffffc008539184 T __UNIQUE_ID_quirk_passive_release422
-ffffffc008539260 T __UNIQUE_ID_quirk_tigerpoint_bm_sts424
-ffffffc008539330 T __UNIQUE_ID_quirk_nopcipci426
-ffffffc00853938c T __UNIQUE_ID_quirk_nopcipci428
-ffffffc0085393e8 T __UNIQUE_ID_quirk_nopciamd430
-ffffffc008539488 T __UNIQUE_ID_quirk_triton432
-ffffffc0085394e4 T __UNIQUE_ID_quirk_triton434
-ffffffc008539540 T __UNIQUE_ID_quirk_triton436
-ffffffc00853959c T __UNIQUE_ID_quirk_triton438
-ffffffc0085395f8 T __UNIQUE_ID_quirk_vialatency440
-ffffffc008539620 t quirk_vialatency
-ffffffc008539720 T __UNIQUE_ID_quirk_vialatency442
-ffffffc00853974c T __UNIQUE_ID_quirk_vialatency444
-ffffffc008539778 T __UNIQUE_ID_quirk_vialatency446
-ffffffc0085397a4 T __UNIQUE_ID_quirk_vialatency448
-ffffffc0085397d0 T __UNIQUE_ID_quirk_vialatency450
-ffffffc0085397fc T __UNIQUE_ID_quirk_viaetbf452
-ffffffc008539858 T __UNIQUE_ID_quirk_vsfx454
-ffffffc0085398b4 T __UNIQUE_ID_quirk_alimagik456
-ffffffc008539914 T __UNIQUE_ID_quirk_alimagik458
-ffffffc008539974 T __UNIQUE_ID_quirk_natoma460
-ffffffc0085399d0 T __UNIQUE_ID_quirk_natoma462
-ffffffc008539a2c T __UNIQUE_ID_quirk_natoma464
-ffffffc008539a88 T __UNIQUE_ID_quirk_natoma466
-ffffffc008539ae4 T __UNIQUE_ID_quirk_natoma468
-ffffffc008539b40 T __UNIQUE_ID_quirk_natoma470
-ffffffc008539b9c T __UNIQUE_ID_quirk_citrine472
-ffffffc008539bb4 T __UNIQUE_ID_quirk_nfp6000474
-ffffffc008539bcc T __UNIQUE_ID_quirk_nfp6000476
-ffffffc008539be4 T __UNIQUE_ID_quirk_nfp6000478
-ffffffc008539bfc T __UNIQUE_ID_quirk_nfp6000480
-ffffffc008539c14 T __UNIQUE_ID_quirk_extend_bar_to_page482
-ffffffc008539e40 T __UNIQUE_ID_quirk_s3_64M484
-ffffffc008539e88 T __UNIQUE_ID_quirk_s3_64M486
-ffffffc008539ed0 T __UNIQUE_ID_quirk_cs5536_vsa488
-ffffffc00853a0e8 T __UNIQUE_ID_quirk_ati_exploding_mce490
-ffffffc00853a168 T __UNIQUE_ID_quirk_amd_nl_class492
-ffffffc00853a1bc T __UNIQUE_ID_quirk_synopsys_haps494
-ffffffc00853a22c T __UNIQUE_ID_quirk_ali7101_acpi496
-ffffffc00853a294 T __UNIQUE_ID_quirk_piix4_acpi498
-ffffffc00853a2bc t quirk_piix4_acpi
-ffffffc00853a6ac T __UNIQUE_ID_quirk_piix4_acpi500
-ffffffc00853a6d8 T __UNIQUE_ID_quirk_ich4_lpc_acpi502
-ffffffc00853a7a0 T __UNIQUE_ID_quirk_ich4_lpc_acpi504
-ffffffc00853a868 T __UNIQUE_ID_quirk_ich4_lpc_acpi506
-ffffffc00853a930 T __UNIQUE_ID_quirk_ich4_lpc_acpi508
-ffffffc00853a9f8 T __UNIQUE_ID_quirk_ich4_lpc_acpi510
-ffffffc00853aac0 T __UNIQUE_ID_quirk_ich4_lpc_acpi512
-ffffffc00853ab88 T __UNIQUE_ID_quirk_ich4_lpc_acpi514
-ffffffc00853ac50 T __UNIQUE_ID_quirk_ich4_lpc_acpi516
-ffffffc00853ad18 T __UNIQUE_ID_quirk_ich4_lpc_acpi518
-ffffffc00853ade0 T __UNIQUE_ID_quirk_ich4_lpc_acpi520
-ffffffc00853aea8 T __UNIQUE_ID_quirk_ich6_lpc522
-ffffffc00853aed0 t quirk_ich6_lpc
-ffffffc00853b018 T __UNIQUE_ID_quirk_ich6_lpc524
-ffffffc00853b044 T __UNIQUE_ID_quirk_ich7_lpc526
-ffffffc00853b06c t quirk_ich7_lpc
-ffffffc00853b254 T __UNIQUE_ID_quirk_ich7_lpc528
-ffffffc00853b280 T __UNIQUE_ID_quirk_ich7_lpc530
-ffffffc00853b2ac T __UNIQUE_ID_quirk_ich7_lpc532
-ffffffc00853b2d8 T __UNIQUE_ID_quirk_ich7_lpc534
-ffffffc00853b304 T __UNIQUE_ID_quirk_ich7_lpc536
-ffffffc00853b330 T __UNIQUE_ID_quirk_ich7_lpc538
-ffffffc00853b35c T __UNIQUE_ID_quirk_ich7_lpc540
-ffffffc00853b388 T __UNIQUE_ID_quirk_ich7_lpc542
-ffffffc00853b3b4 T __UNIQUE_ID_quirk_ich7_lpc544
-ffffffc00853b3e0 T __UNIQUE_ID_quirk_ich7_lpc546
-ffffffc00853b40c T __UNIQUE_ID_quirk_ich7_lpc548
-ffffffc00853b438 T __UNIQUE_ID_quirk_ich7_lpc550
-ffffffc00853b464 T __UNIQUE_ID_quirk_vt82c586_acpi552
-ffffffc00853b4ac T __UNIQUE_ID_quirk_vt82c686_acpi554
-ffffffc00853b53c T __UNIQUE_ID_quirk_vt8235_acpi556
-ffffffc00853b5a4 T __UNIQUE_ID_quirk_xio2000a558
-ffffffc00853b664 T __UNIQUE_ID_quirk_cavium_sriov_rnm_link560
-ffffffc00853b690 T __UNIQUE_ID_quirk_amd_8131_mmrbc562
-ffffffc00853b6fc T __UNIQUE_ID_quirk_via_acpi564
-ffffffc00853b784 T __UNIQUE_ID_quirk_via_acpi566
-ffffffc00853b80c T __UNIQUE_ID_quirk_via_bridge568
-ffffffc00853b8e0 T __UNIQUE_ID_quirk_via_bridge570
-ffffffc00853b9b4 T __UNIQUE_ID_quirk_via_bridge572
-ffffffc00853ba88 T __UNIQUE_ID_quirk_via_bridge574
-ffffffc00853bb5c T __UNIQUE_ID_quirk_via_bridge576
-ffffffc00853bc30 T __UNIQUE_ID_quirk_via_bridge578
-ffffffc00853bd04 T __UNIQUE_ID_quirk_via_bridge580
-ffffffc00853bdd8 T __UNIQUE_ID_quirk_via_bridge582
-ffffffc00853beac T __UNIQUE_ID_quirk_via_vlink584
-ffffffc00853bfa8 T __UNIQUE_ID_quirk_vt82c598_id586
-ffffffc00853bff8 T __UNIQUE_ID_quirk_cardbus_legacy588
-ffffffc00853c02c T __UNIQUE_ID_quirk_cardbus_legacy590
-ffffffc00853c060 T __UNIQUE_ID_quirk_amd_ordering592
-ffffffc00853c088 t quirk_amd_ordering
-ffffffc00853c15c T __UNIQUE_ID_quirk_amd_ordering594
-ffffffc00853c188 T __UNIQUE_ID_quirk_dunord596
-ffffffc00853c1b0 T __UNIQUE_ID_quirk_transparent_bridge598
-ffffffc00853c1d0 T __UNIQUE_ID_quirk_transparent_bridge600
-ffffffc00853c1f0 T __UNIQUE_ID_quirk_mediagx_master602
-ffffffc00853c294 T __UNIQUE_ID_quirk_mediagx_master604
-ffffffc00853c338 T __UNIQUE_ID_quirk_disable_pxb606
-ffffffc00853c3e4 T __UNIQUE_ID_quirk_disable_pxb608
-ffffffc00853c490 T __UNIQUE_ID_quirk_amd_ide_mode610
-ffffffc00853c4b8 t quirk_amd_ide_mode
-ffffffc00853c5a8 T __UNIQUE_ID_quirk_amd_ide_mode612
-ffffffc00853c5d4 T __UNIQUE_ID_quirk_amd_ide_mode614
-ffffffc00853c600 T __UNIQUE_ID_quirk_amd_ide_mode616
-ffffffc00853c62c T __UNIQUE_ID_quirk_amd_ide_mode618
-ffffffc00853c658 T __UNIQUE_ID_quirk_amd_ide_mode620
-ffffffc00853c684 T __UNIQUE_ID_quirk_amd_ide_mode622
-ffffffc00853c6b0 T __UNIQUE_ID_quirk_amd_ide_mode624
-ffffffc00853c6dc T __UNIQUE_ID_quirk_svwks_csb5ide626
-ffffffc00853c784 T __UNIQUE_ID_quirk_ide_samemode628
-ffffffc00853c84c T __UNIQUE_ID_quirk_no_ata_d3630
-ffffffc00853c868 T __UNIQUE_ID_quirk_no_ata_d3632
-ffffffc00853c884 T __UNIQUE_ID_quirk_no_ata_d3634
-ffffffc00853c8a0 T __UNIQUE_ID_quirk_no_ata_d3636
-ffffffc00853c8bc T __UNIQUE_ID_quirk_eisa_bridge638
-ffffffc00853c8d8 T __UNIQUE_ID_asus_hides_smbus_hostbridge640
-ffffffc00853c900 t asus_hides_smbus_hostbridge
-ffffffc00853cbd8 T __UNIQUE_ID_asus_hides_smbus_hostbridge642
-ffffffc00853cc04 T __UNIQUE_ID_asus_hides_smbus_hostbridge644
-ffffffc00853cc30 T __UNIQUE_ID_asus_hides_smbus_hostbridge646
-ffffffc00853cc5c T __UNIQUE_ID_asus_hides_smbus_hostbridge648
-ffffffc00853cc88 T __UNIQUE_ID_asus_hides_smbus_hostbridge650
-ffffffc00853ccb4 T __UNIQUE_ID_asus_hides_smbus_hostbridge652
-ffffffc00853cce0 T __UNIQUE_ID_asus_hides_smbus_hostbridge654
-ffffffc00853cd0c T __UNIQUE_ID_asus_hides_smbus_hostbridge656
-ffffffc00853cd38 T __UNIQUE_ID_asus_hides_smbus_hostbridge658
-ffffffc00853cd64 T __UNIQUE_ID_asus_hides_smbus_hostbridge660
-ffffffc00853cd90 T __UNIQUE_ID_asus_hides_smbus_hostbridge662
-ffffffc00853cdbc T __UNIQUE_ID_asus_hides_smbus_hostbridge664
-ffffffc00853cde8 T __UNIQUE_ID_asus_hides_smbus_lpc666
-ffffffc00853ce10 t asus_hides_smbus_lpc
-ffffffc00853cee8 T __UNIQUE_ID_asus_hides_smbus_lpc668
-ffffffc00853cf14 T __UNIQUE_ID_asus_hides_smbus_lpc670
-ffffffc00853cf40 T __UNIQUE_ID_asus_hides_smbus_lpc672
-ffffffc00853cf6c T __UNIQUE_ID_asus_hides_smbus_lpc674
-ffffffc00853cf98 T __UNIQUE_ID_asus_hides_smbus_lpc676
-ffffffc00853cfc4 T __UNIQUE_ID_asus_hides_smbus_lpc678
-ffffffc00853cff0 T __UNIQUE_ID_asus_hides_smbus_lpc680
-ffffffc00853d01c T __UNIQUE_ID_asus_hides_smbus_lpc682
-ffffffc00853d048 T __UNIQUE_ID_asus_hides_smbus_lpc684
-ffffffc00853d074 T __UNIQUE_ID_asus_hides_smbus_lpc686
-ffffffc00853d0a0 T __UNIQUE_ID_asus_hides_smbus_lpc688
-ffffffc00853d0cc T __UNIQUE_ID_asus_hides_smbus_lpc690
-ffffffc00853d0f8 T __UNIQUE_ID_asus_hides_smbus_lpc692
-ffffffc00853d124 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6694
-ffffffc00853d250 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_suspend696
-ffffffc00853d314 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume698
-ffffffc00853d384 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume_early700
-ffffffc00853d3f0 T __UNIQUE_ID_quirk_sis_96x_smbus702
-ffffffc00853d490 T __UNIQUE_ID_quirk_sis_96x_smbus704
-ffffffc00853d530 T __UNIQUE_ID_quirk_sis_96x_smbus706
-ffffffc00853d5d0 T __UNIQUE_ID_quirk_sis_96x_smbus708
-ffffffc00853d670 T __UNIQUE_ID_quirk_sis_96x_smbus710
-ffffffc00853d710 T __UNIQUE_ID_quirk_sis_96x_smbus712
-ffffffc00853d7b0 T __UNIQUE_ID_quirk_sis_96x_smbus714
-ffffffc00853d850 T __UNIQUE_ID_quirk_sis_96x_smbus716
-ffffffc00853d8f0 T __UNIQUE_ID_quirk_sis_503718
-ffffffc00853d918 t quirk_sis_503
-ffffffc00853da20 T __UNIQUE_ID_quirk_sis_503720
-ffffffc00853da4c T __UNIQUE_ID_asus_hides_ac97_lpc722
-ffffffc00853da74 t asus_hides_ac97_lpc
-ffffffc00853db64 T __UNIQUE_ID_asus_hides_ac97_lpc724
-ffffffc00853db90 T __UNIQUE_ID_quirk_jmicron_async_suspend726
-ffffffc00853dbf0 T __UNIQUE_ID_quirk_jmicron_async_suspend728
-ffffffc00853dc50 T __UNIQUE_ID_quirk_jmicron_async_suspend730
-ffffffc00853dcb0 T __UNIQUE_ID_quirk_jmicron_async_suspend732
-ffffffc00853dd10 T __UNIQUE_ID_quirk_no_msi734
-ffffffc00853dd64 T __UNIQUE_ID_quirk_no_msi736
-ffffffc00853ddb8 T __UNIQUE_ID_quirk_no_msi738
-ffffffc00853de0c T __UNIQUE_ID_quirk_no_msi740
-ffffffc00853de60 T __UNIQUE_ID_quirk_no_msi742
-ffffffc00853deb4 T __UNIQUE_ID_quirk_no_msi744
-ffffffc00853df08 T __UNIQUE_ID_quirk_pcie_mch746
-ffffffc00853df28 T __UNIQUE_ID_quirk_pcie_mch748
-ffffffc00853df48 T __UNIQUE_ID_quirk_pcie_mch750
-ffffffc00853df68 T __UNIQUE_ID_quirk_pcie_mch752
-ffffffc00853df88 T __UNIQUE_ID_quirk_huawei_pcie_sva754
-ffffffc00853e060 T __UNIQUE_ID_quirk_huawei_pcie_sva756
-ffffffc00853e138 T __UNIQUE_ID_quirk_huawei_pcie_sva758
-ffffffc00853e210 T __UNIQUE_ID_quirk_huawei_pcie_sva760
-ffffffc00853e2e8 T __UNIQUE_ID_quirk_huawei_pcie_sva762
-ffffffc00853e3c0 T __UNIQUE_ID_quirk_huawei_pcie_sva764
-ffffffc00853e498 T __UNIQUE_ID_quirk_pcie_pxh766
-ffffffc00853e4e0 T __UNIQUE_ID_quirk_pcie_pxh768
-ffffffc00853e528 T __UNIQUE_ID_quirk_pcie_pxh770
-ffffffc00853e570 T __UNIQUE_ID_quirk_pcie_pxh772
-ffffffc00853e5b8 T __UNIQUE_ID_quirk_pcie_pxh774
-ffffffc00853e600 T __UNIQUE_ID_quirk_intel_pcie_pm776
-ffffffc00853e628 T __UNIQUE_ID_quirk_intel_pcie_pm778
-ffffffc00853e650 T __UNIQUE_ID_quirk_intel_pcie_pm780
-ffffffc00853e678 T __UNIQUE_ID_quirk_intel_pcie_pm782
-ffffffc00853e6a0 T __UNIQUE_ID_quirk_intel_pcie_pm784
-ffffffc00853e6c8 T __UNIQUE_ID_quirk_intel_pcie_pm786
-ffffffc00853e6f0 T __UNIQUE_ID_quirk_intel_pcie_pm788
-ffffffc00853e718 T __UNIQUE_ID_quirk_intel_pcie_pm790
-ffffffc00853e740 T __UNIQUE_ID_quirk_intel_pcie_pm792
-ffffffc00853e768 T __UNIQUE_ID_quirk_intel_pcie_pm794
-ffffffc00853e790 T __UNIQUE_ID_quirk_intel_pcie_pm796
-ffffffc00853e7b8 T __UNIQUE_ID_quirk_intel_pcie_pm798
-ffffffc00853e7e0 T __UNIQUE_ID_quirk_intel_pcie_pm800
-ffffffc00853e808 T __UNIQUE_ID_quirk_intel_pcie_pm802
-ffffffc00853e830 T __UNIQUE_ID_quirk_intel_pcie_pm804
-ffffffc00853e858 T __UNIQUE_ID_quirk_intel_pcie_pm806
-ffffffc00853e880 T __UNIQUE_ID_quirk_intel_pcie_pm808
-ffffffc00853e8a8 T __UNIQUE_ID_quirk_intel_pcie_pm810
-ffffffc00853e8d0 T __UNIQUE_ID_quirk_intel_pcie_pm812
-ffffffc00853e8f8 T __UNIQUE_ID_quirk_intel_pcie_pm814
-ffffffc00853e920 T __UNIQUE_ID_quirk_intel_pcie_pm816
-ffffffc00853e948 T __UNIQUE_ID_quirk_radeon_pm818
-ffffffc00853e9bc T __UNIQUE_ID_quirk_ryzen_xhci_d3hot820
-ffffffc00853ea14 T __UNIQUE_ID_quirk_ryzen_xhci_d3hot822
-ffffffc00853ea6c T __UNIQUE_ID_quirk_ryzen_xhci_d3hot824
-ffffffc00853eac4 T __UNIQUE_ID_quirk_tc86c001_ide826
-ffffffc00853eaf4 T __UNIQUE_ID_quirk_plx_pci9050828
-ffffffc00853ebd4 T __UNIQUE_ID_quirk_plx_pci9050830
-ffffffc00853ecb4 T __UNIQUE_ID_quirk_plx_pci9050832
-ffffffc00853ed94 T __UNIQUE_ID_quirk_netmos834
-ffffffc00853ee5c T __UNIQUE_ID_quirk_e100_interrupt836
-ffffffc00853f020 T __UNIQUE_ID_quirk_disable_aspm_l0s838
-ffffffc00853f074 T __UNIQUE_ID_quirk_disable_aspm_l0s840
-ffffffc00853f0c8 T __UNIQUE_ID_quirk_disable_aspm_l0s842
-ffffffc00853f11c T __UNIQUE_ID_quirk_disable_aspm_l0s844
-ffffffc00853f170 T __UNIQUE_ID_quirk_disable_aspm_l0s846
-ffffffc00853f1c4 T __UNIQUE_ID_quirk_disable_aspm_l0s848
-ffffffc00853f218 T __UNIQUE_ID_quirk_disable_aspm_l0s850
-ffffffc00853f26c T __UNIQUE_ID_quirk_disable_aspm_l0s852
-ffffffc00853f2c0 T __UNIQUE_ID_quirk_disable_aspm_l0s854
-ffffffc00853f314 T __UNIQUE_ID_quirk_disable_aspm_l0s856
-ffffffc00853f368 T __UNIQUE_ID_quirk_disable_aspm_l0s858
-ffffffc00853f3bc T __UNIQUE_ID_quirk_disable_aspm_l0s860
-ffffffc00853f410 T __UNIQUE_ID_quirk_disable_aspm_l0s862
-ffffffc00853f464 T __UNIQUE_ID_quirk_disable_aspm_l0s864
-ffffffc00853f4b8 T __UNIQUE_ID_quirk_disable_aspm_l0s_l1866
-ffffffc00853f50c T __UNIQUE_ID_quirk_enable_clear_retrain_link868
-ffffffc00853f554 T __UNIQUE_ID_quirk_enable_clear_retrain_link870
-ffffffc00853f59c T __UNIQUE_ID_quirk_enable_clear_retrain_link872
-ffffffc00853f5e4 T __UNIQUE_ID_fixup_rev1_53c810874
-ffffffc00853f63c T __UNIQUE_ID_quirk_p64h2_1k_io876
-ffffffc00853f6d8 T __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap878
-ffffffc00853f778 T __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap880
-ffffffc00853f818 T __UNIQUE_ID_quirk_via_cx700_pci_parking_caching882
-ffffffc00853f944 T __UNIQUE_ID_quirk_brcm_5719_limit_mrrs884
-ffffffc00853f9e4 T __UNIQUE_ID_quirk_unhide_mch_dev6886
-ffffffc00853fa88 T __UNIQUE_ID_quirk_unhide_mch_dev6888
-ffffffc00853fb2c T __UNIQUE_ID_quirk_disable_all_msi890
-ffffffc00853fb70 T __UNIQUE_ID_quirk_disable_all_msi892
-ffffffc00853fbb4 T __UNIQUE_ID_quirk_disable_all_msi894
-ffffffc00853fbf8 T __UNIQUE_ID_quirk_disable_all_msi896
-ffffffc00853fc3c T __UNIQUE_ID_quirk_disable_all_msi898
-ffffffc00853fc80 T __UNIQUE_ID_quirk_disable_all_msi900
-ffffffc00853fcc4 T __UNIQUE_ID_quirk_disable_all_msi902
-ffffffc00853fd08 T __UNIQUE_ID_quirk_disable_all_msi904
-ffffffc00853fd4c T __UNIQUE_ID_quirk_disable_all_msi906
-ffffffc00853fd90 T __UNIQUE_ID_quirk_disable_msi908
-ffffffc00853fdf0 T __UNIQUE_ID_quirk_disable_msi910
-ffffffc00853fe50 T __UNIQUE_ID_quirk_disable_msi912
-ffffffc00853feb0 T __UNIQUE_ID_quirk_amd_780_apc_msi914
-ffffffc00853ff38 T __UNIQUE_ID_quirk_amd_780_apc_msi916
-ffffffc00853ffc0 T __UNIQUE_ID_quirk_msi_ht_cap918
-ffffffc008540028 T __UNIQUE_ID_quirk_nvidia_ck804_msi_ht_cap920
-ffffffc0085400b8 T __UNIQUE_ID_ht_enable_msi_mapping922
-ffffffc0085400e0 t ht_enable_msi_mapping
-ffffffc0085401dc T __UNIQUE_ID_ht_enable_msi_mapping924
-ffffffc008540208 T __UNIQUE_ID_nvenet_msi_disable926
-ffffffc008540218 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi928
-ffffffc008540238 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi930
-ffffffc008540258 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi932
-ffffffc008540278 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi934
-ffffffc008540298 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi936
-ffffffc0085402b8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi938
-ffffffc0085402d8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi940
-ffffffc0085402f8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi942
-ffffffc008540318 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi944
-ffffffc008540338 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi946
-ffffffc008540358 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi948
-ffffffc008540378 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi950
-ffffffc008540398 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi952
-ffffffc0085403b8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi954
-ffffffc0085403d8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi956
-ffffffc0085403f8 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi958
-ffffffc008540418 T __UNIQUE_ID_nvbridge_check_legacy_irq_routing960
-ffffffc0085404d8 T __UNIQUE_ID_nvbridge_check_legacy_irq_routing962
-ffffffc008540598 T __UNIQUE_ID_nv_msi_ht_cap_quirk_all964
-ffffffc0085405c8 T __UNIQUE_ID_nv_msi_ht_cap_quirk_all966
-ffffffc0085405f8 T __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf968
-ffffffc008540628 T __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf970
-ffffffc008540658 T __UNIQUE_ID_quirk_msi_intx_disable_bug972
-ffffffc008540674 T __UNIQUE_ID_quirk_msi_intx_disable_bug974
-ffffffc008540690 T __UNIQUE_ID_quirk_msi_intx_disable_bug976
-ffffffc0085406ac T __UNIQUE_ID_quirk_msi_intx_disable_bug978
-ffffffc0085406c8 T __UNIQUE_ID_quirk_msi_intx_disable_bug980
-ffffffc0085406e4 T __UNIQUE_ID_quirk_msi_intx_disable_bug982
-ffffffc008540700 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug984
-ffffffc008540768 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug986
-ffffffc0085407d0 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug988
-ffffffc008540838 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug990
-ffffffc0085408a0 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug992
-ffffffc008540908 T __UNIQUE_ID_quirk_msi_intx_disable_bug994
-ffffffc008540924 T __UNIQUE_ID_quirk_msi_intx_disable_bug996
-ffffffc008540940 T __UNIQUE_ID_quirk_msi_intx_disable_bug998
-ffffffc00854095c T __UNIQUE_ID_quirk_msi_intx_disable_bug1000
-ffffffc008540978 T __UNIQUE_ID_quirk_msi_intx_disable_bug1002
-ffffffc008540994 T __UNIQUE_ID_quirk_msi_intx_disable_bug1004
-ffffffc0085409b0 T __UNIQUE_ID_quirk_msi_intx_disable_bug1006
-ffffffc0085409cc T __UNIQUE_ID_quirk_msi_intx_disable_bug1008
-ffffffc0085409e8 T __UNIQUE_ID_quirk_msi_intx_disable_bug1010
-ffffffc008540a04 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1012
-ffffffc008540a64 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1014
-ffffffc008540ac4 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1016
-ffffffc008540b24 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1018
-ffffffc008540b84 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1020
-ffffffc008540be4 T __UNIQUE_ID_quirk_al_msi_disable1022
-ffffffc008540c2c T __UNIQUE_ID_quirk_hotplug_bridge1024
-ffffffc008540c4c T __UNIQUE_ID_fixup_ti816x_class1026
-ffffffc008540c98 T __UNIQUE_ID_fixup_mpss_2561028
-ffffffc008540cb8 T __UNIQUE_ID_fixup_mpss_2561030
-ffffffc008540cd8 T __UNIQUE_ID_fixup_mpss_2561032
-ffffffc008540cf8 T __UNIQUE_ID_fixup_mpss_2561034
-ffffffc008540d18 T __UNIQUE_ID_quirk_intel_mc_errata1036
-ffffffc008540d40 t quirk_intel_mc_errata
-ffffffc008540e30 T __UNIQUE_ID_quirk_intel_mc_errata1038
-ffffffc008540e5c T __UNIQUE_ID_quirk_intel_mc_errata1040
-ffffffc008540e88 T __UNIQUE_ID_quirk_intel_mc_errata1042
-ffffffc008540eb4 T __UNIQUE_ID_quirk_intel_mc_errata1044
-ffffffc008540ee0 T __UNIQUE_ID_quirk_intel_mc_errata1046
-ffffffc008540f0c T __UNIQUE_ID_quirk_intel_mc_errata1048
-ffffffc008540f38 T __UNIQUE_ID_quirk_intel_mc_errata1050
-ffffffc008540f64 T __UNIQUE_ID_quirk_intel_mc_errata1052
-ffffffc008540f90 T __UNIQUE_ID_quirk_intel_mc_errata1054
-ffffffc008540fbc T __UNIQUE_ID_quirk_intel_mc_errata1056
-ffffffc008540fe8 T __UNIQUE_ID_quirk_intel_mc_errata1058
-ffffffc008541014 T __UNIQUE_ID_quirk_intel_mc_errata1060
-ffffffc008541040 T __UNIQUE_ID_quirk_intel_mc_errata1062
-ffffffc00854106c T __UNIQUE_ID_quirk_intel_mc_errata1064
-ffffffc008541098 T __UNIQUE_ID_quirk_intel_mc_errata1066
-ffffffc0085410c4 T __UNIQUE_ID_quirk_intel_mc_errata1068
-ffffffc0085410f0 T __UNIQUE_ID_quirk_intel_mc_errata1070
-ffffffc00854111c T __UNIQUE_ID_quirk_intel_mc_errata1072
-ffffffc008541148 T __UNIQUE_ID_quirk_intel_mc_errata1074
-ffffffc008541174 T __UNIQUE_ID_quirk_intel_mc_errata1076
-ffffffc0085411a0 T __UNIQUE_ID_quirk_intel_mc_errata1078
-ffffffc0085411cc T __UNIQUE_ID_quirk_intel_mc_errata1080
-ffffffc0085411f8 T __UNIQUE_ID_quirk_intel_mc_errata1082
-ffffffc008541224 T __UNIQUE_ID_quirk_intel_mc_errata1084
-ffffffc008541250 T __UNIQUE_ID_quirk_intel_ntb1086
-ffffffc008541310 T __UNIQUE_ID_quirk_intel_ntb1088
-ffffffc0085413d0 T __UNIQUE_ID_disable_igfx_irq1090
-ffffffc0085413f8 t disable_igfx_irq
-ffffffc00854149c T __UNIQUE_ID_disable_igfx_irq1092
-ffffffc0085414c8 T __UNIQUE_ID_disable_igfx_irq1094
-ffffffc0085414f4 T __UNIQUE_ID_disable_igfx_irq1096
-ffffffc008541520 T __UNIQUE_ID_disable_igfx_irq1098
-ffffffc00854154c T __UNIQUE_ID_disable_igfx_irq1100
-ffffffc008541578 T __UNIQUE_ID_disable_igfx_irq1102
-ffffffc0085415a4 T __UNIQUE_ID_quirk_remove_d3hot_delay1104
-ffffffc0085415b8 T __UNIQUE_ID_quirk_remove_d3hot_delay1106
-ffffffc0085415cc T __UNIQUE_ID_quirk_remove_d3hot_delay1108
-ffffffc0085415e0 T __UNIQUE_ID_quirk_remove_d3hot_delay1110
-ffffffc0085415f4 T __UNIQUE_ID_quirk_remove_d3hot_delay1112
-ffffffc008541608 T __UNIQUE_ID_quirk_remove_d3hot_delay1114
-ffffffc00854161c T __UNIQUE_ID_quirk_remove_d3hot_delay1116
-ffffffc008541630 T __UNIQUE_ID_quirk_remove_d3hot_delay1118
-ffffffc008541644 T __UNIQUE_ID_quirk_remove_d3hot_delay1120
-ffffffc008541658 T __UNIQUE_ID_quirk_remove_d3hot_delay1122
-ffffffc00854166c T __UNIQUE_ID_quirk_remove_d3hot_delay1124
-ffffffc008541680 T __UNIQUE_ID_quirk_remove_d3hot_delay1126
-ffffffc008541694 T __UNIQUE_ID_quirk_remove_d3hot_delay1128
-ffffffc0085416a8 T __UNIQUE_ID_quirk_remove_d3hot_delay1130
-ffffffc0085416bc T __UNIQUE_ID_quirk_remove_d3hot_delay1132
-ffffffc0085416d0 T __UNIQUE_ID_quirk_remove_d3hot_delay1134
-ffffffc0085416e4 T __UNIQUE_ID_quirk_remove_d3hot_delay1136
-ffffffc0085416f8 T __UNIQUE_ID_quirk_remove_d3hot_delay1138
-ffffffc00854170c T __UNIQUE_ID_quirk_remove_d3hot_delay1140
-ffffffc008541720 T __UNIQUE_ID_quirk_remove_d3hot_delay1142
-ffffffc008541734 T __UNIQUE_ID_quirk_remove_d3hot_delay1144
-ffffffc008541748 T __UNIQUE_ID_quirk_remove_d3hot_delay1146
-ffffffc00854175c T __UNIQUE_ID_quirk_remove_d3hot_delay1148
-ffffffc008541770 T __UNIQUE_ID_quirk_broken_intx_masking1150
-ffffffc008541790 T __UNIQUE_ID_quirk_broken_intx_masking1152
-ffffffc0085417b0 T __UNIQUE_ID_quirk_broken_intx_masking1154
-ffffffc0085417d0 T __UNIQUE_ID_quirk_broken_intx_masking1156
-ffffffc0085417f0 T __UNIQUE_ID_quirk_broken_intx_masking1158
-ffffffc008541810 T __UNIQUE_ID_quirk_broken_intx_masking1160
-ffffffc008541830 T __UNIQUE_ID_quirk_broken_intx_masking1162
-ffffffc008541850 T __UNIQUE_ID_quirk_broken_intx_masking1164
-ffffffc008541870 T __UNIQUE_ID_quirk_broken_intx_masking1166
-ffffffc008541890 T __UNIQUE_ID_quirk_broken_intx_masking1168
-ffffffc0085418b0 T __UNIQUE_ID_quirk_broken_intx_masking1170
-ffffffc0085418d0 T __UNIQUE_ID_quirk_broken_intx_masking1172
-ffffffc0085418f0 T __UNIQUE_ID_quirk_broken_intx_masking1174
-ffffffc008541910 T __UNIQUE_ID_quirk_broken_intx_masking1176
-ffffffc008541930 T __UNIQUE_ID_quirk_broken_intx_masking1178
-ffffffc008541950 T __UNIQUE_ID_quirk_broken_intx_masking1180
-ffffffc008541970 T __UNIQUE_ID_quirk_broken_intx_masking1182
-ffffffc008541990 T __UNIQUE_ID_quirk_broken_intx_masking1184
-ffffffc0085419b0 T __UNIQUE_ID_quirk_broken_intx_masking1186
-ffffffc0085419d0 T __UNIQUE_ID_quirk_broken_intx_masking1188
-ffffffc0085419f0 T __UNIQUE_ID_mellanox_check_broken_intx_masking1190
-ffffffc008541bd8 T __UNIQUE_ID_quirk_nvidia_no_bus_reset1192
-ffffffc008541c08 T __UNIQUE_ID_quirk_no_bus_reset1194
-ffffffc008541c24 T __UNIQUE_ID_quirk_no_bus_reset1196
-ffffffc008541c40 T __UNIQUE_ID_quirk_no_bus_reset1198
-ffffffc008541c5c T __UNIQUE_ID_quirk_no_bus_reset1200
-ffffffc008541c78 T __UNIQUE_ID_quirk_no_bus_reset1202
-ffffffc008541c94 T __UNIQUE_ID_quirk_no_bus_reset1204
-ffffffc008541cb0 T __UNIQUE_ID_quirk_no_bus_reset1206
-ffffffc008541ccc T __UNIQUE_ID_quirk_no_bus_reset1208
-ffffffc008541ce8 T __UNIQUE_ID_quirk_no_pm_reset1210
-ffffffc008541d10 T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1212
-ffffffc008541d60 T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1214
-ffffffc008541db0 T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1216
-ffffffc008541e00 T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1218
-ffffffc008541e50 T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1220
-ffffffc008541ea0 T pci_dev_specific_reset
-ffffffc008541fd8 T __UNIQUE_ID_quirk_dma_func0_alias1222
-ffffffc008542018 T __UNIQUE_ID_quirk_dma_func0_alias1224
-ffffffc008542058 T __UNIQUE_ID_quirk_dma_func1_alias1226
-ffffffc0085420a0 T __UNIQUE_ID_quirk_dma_func1_alias1228
-ffffffc0085420e8 T __UNIQUE_ID_quirk_dma_func1_alias1230
-ffffffc008542130 T __UNIQUE_ID_quirk_dma_func1_alias1232
-ffffffc008542178 T __UNIQUE_ID_quirk_dma_func1_alias1234
-ffffffc0085421c0 T __UNIQUE_ID_quirk_dma_func1_alias1236
-ffffffc008542208 T __UNIQUE_ID_quirk_dma_func1_alias1238
-ffffffc008542250 T __UNIQUE_ID_quirk_dma_func1_alias1240
-ffffffc008542298 T __UNIQUE_ID_quirk_dma_func1_alias1242
-ffffffc0085422e0 T __UNIQUE_ID_quirk_dma_func1_alias1244
-ffffffc008542328 T __UNIQUE_ID_quirk_dma_func1_alias1246
-ffffffc008542370 T __UNIQUE_ID_quirk_dma_func1_alias1248
-ffffffc0085423b8 T __UNIQUE_ID_quirk_dma_func1_alias1250
-ffffffc008542400 T __UNIQUE_ID_quirk_dma_func1_alias1252
-ffffffc008542448 T __UNIQUE_ID_quirk_dma_func1_alias1254
-ffffffc008542490 T __UNIQUE_ID_quirk_dma_func1_alias1256
-ffffffc0085424d8 T __UNIQUE_ID_quirk_dma_func1_alias1258
-ffffffc008542520 T __UNIQUE_ID_quirk_dma_func1_alias1260
-ffffffc008542568 T __UNIQUE_ID_quirk_fixed_dma_alias1262
-ffffffc0085425c0 T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1264
-ffffffc008542620 T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1266
-ffffffc008542680 T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1268
-ffffffc0085426e0 T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1270
-ffffffc008542740 T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1272
-ffffffc0085427a0 T __UNIQUE_ID_quirk_mic_x200_dma_alias1274
-ffffffc008542800 T __UNIQUE_ID_quirk_mic_x200_dma_alias1276
-ffffffc008542860 T __UNIQUE_ID_quirk_pex_vca_alias1278
-ffffffc0085428b4 T __UNIQUE_ID_quirk_pex_vca_alias1280
-ffffffc008542908 T __UNIQUE_ID_quirk_pex_vca_alias1282
-ffffffc00854295c T __UNIQUE_ID_quirk_pex_vca_alias1284
-ffffffc0085429b0 T __UNIQUE_ID_quirk_pex_vca_alias1286
-ffffffc008542a04 T __UNIQUE_ID_quirk_pex_vca_alias1288
-ffffffc008542a58 T __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1290
-ffffffc008542a74 T __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1292
-ffffffc008542a90 T __UNIQUE_ID_quirk_tw686x_class1294
-ffffffc008542ae4 T __UNIQUE_ID_quirk_tw686x_class1296
-ffffffc008542b38 T __UNIQUE_ID_quirk_tw686x_class1298
-ffffffc008542b8c T __UNIQUE_ID_quirk_tw686x_class1300
-ffffffc008542be0 T __UNIQUE_ID_quirk_relaxedordering_disable1302
-ffffffc008542c28 T __UNIQUE_ID_quirk_relaxedordering_disable1304
-ffffffc008542c70 T __UNIQUE_ID_quirk_relaxedordering_disable1306
-ffffffc008542cb8 T __UNIQUE_ID_quirk_relaxedordering_disable1308
-ffffffc008542d00 T __UNIQUE_ID_quirk_relaxedordering_disable1310
-ffffffc008542d48 T __UNIQUE_ID_quirk_relaxedordering_disable1312
-ffffffc008542d90 T __UNIQUE_ID_quirk_relaxedordering_disable1314
-ffffffc008542dd8 T __UNIQUE_ID_quirk_relaxedordering_disable1316
-ffffffc008542e20 T __UNIQUE_ID_quirk_relaxedordering_disable1318
-ffffffc008542e68 T __UNIQUE_ID_quirk_relaxedordering_disable1320
-ffffffc008542eb0 T __UNIQUE_ID_quirk_relaxedordering_disable1322
-ffffffc008542ef8 T __UNIQUE_ID_quirk_relaxedordering_disable1324
-ffffffc008542f40 T __UNIQUE_ID_quirk_relaxedordering_disable1326
-ffffffc008542f88 T __UNIQUE_ID_quirk_relaxedordering_disable1328
-ffffffc008542fd0 T __UNIQUE_ID_quirk_relaxedordering_disable1330
-ffffffc008543018 T __UNIQUE_ID_quirk_relaxedordering_disable1332
-ffffffc008543060 T __UNIQUE_ID_quirk_relaxedordering_disable1334
-ffffffc0085430a8 T __UNIQUE_ID_quirk_relaxedordering_disable1336
-ffffffc0085430f0 T __UNIQUE_ID_quirk_relaxedordering_disable1338
-ffffffc008543138 T __UNIQUE_ID_quirk_relaxedordering_disable1340
-ffffffc008543180 T __UNIQUE_ID_quirk_relaxedordering_disable1342
-ffffffc0085431c8 T __UNIQUE_ID_quirk_relaxedordering_disable1344
-ffffffc008543210 T __UNIQUE_ID_quirk_relaxedordering_disable1346
-ffffffc008543258 T __UNIQUE_ID_quirk_relaxedordering_disable1348
-ffffffc0085432a0 T __UNIQUE_ID_quirk_relaxedordering_disable1350
-ffffffc0085432e8 T __UNIQUE_ID_quirk_relaxedordering_disable1352
-ffffffc008543330 T __UNIQUE_ID_quirk_relaxedordering_disable1354
-ffffffc008543378 T __UNIQUE_ID_quirk_relaxedordering_disable1356
-ffffffc0085433c0 T __UNIQUE_ID_quirk_relaxedordering_disable1358
-ffffffc008543408 T __UNIQUE_ID_quirk_relaxedordering_disable1360
-ffffffc008543450 T __UNIQUE_ID_quirk_relaxedordering_disable1362
-ffffffc008543498 T __UNIQUE_ID_quirk_chelsio_T5_disable_root_port_attributes1364
-ffffffc00854356c T pci_dev_specific_acs_enabled
-ffffffc008543648 T pci_dev_specific_enable_acs
-ffffffc0085438bc T pci_dev_specific_disable_acs_redir
-ffffffc00854399c T __UNIQUE_ID_quirk_intel_qat_vf_cap1366
-ffffffc008543bac T __UNIQUE_ID_quirk_no_flr1368
-ffffffc008543bc8 T __UNIQUE_ID_quirk_no_flr1370
-ffffffc008543be4 T __UNIQUE_ID_quirk_no_flr1372
-ffffffc008543c00 T __UNIQUE_ID_quirk_no_flr1374
-ffffffc008543c1c T __UNIQUE_ID_quirk_no_flr1376
-ffffffc008543c38 T __UNIQUE_ID_quirk_no_flr1378
-ffffffc008543c54 T __UNIQUE_ID_quirk_no_ext_tags1380
-ffffffc008543ccc T __UNIQUE_ID_quirk_no_ext_tags1382
-ffffffc008543d44 T __UNIQUE_ID_quirk_no_ext_tags1384
-ffffffc008543dbc T __UNIQUE_ID_quirk_no_ext_tags1386
-ffffffc008543e34 T __UNIQUE_ID_quirk_no_ext_tags1388
-ffffffc008543eac T __UNIQUE_ID_quirk_no_ext_tags1390
-ffffffc008543f24 T __UNIQUE_ID_quirk_no_ext_tags1392
-ffffffc008543f9c T __UNIQUE_ID_quirk_amd_harvest_no_ats1394
-ffffffc008544038 T __UNIQUE_ID_quirk_amd_harvest_no_ats1396
-ffffffc0085440d4 T __UNIQUE_ID_quirk_amd_harvest_no_ats1398
-ffffffc008544170 T __UNIQUE_ID_quirk_amd_harvest_no_ats1400
-ffffffc00854420c T __UNIQUE_ID_quirk_amd_harvest_no_ats1402
-ffffffc0085442a8 T __UNIQUE_ID_quirk_amd_harvest_no_ats1404
-ffffffc008544344 T __UNIQUE_ID_quirk_amd_harvest_no_ats1406
-ffffffc0085443e0 T __UNIQUE_ID_quirk_amd_harvest_no_ats1408
-ffffffc00854447c T __UNIQUE_ID_quirk_amd_harvest_no_ats1410
-ffffffc008544518 T __UNIQUE_ID_quirk_amd_harvest_no_ats1412
-ffffffc0085445b4 T __UNIQUE_ID_quirk_amd_harvest_no_ats1414
-ffffffc008544650 T __UNIQUE_ID_quirk_amd_harvest_no_ats1416
-ffffffc0085446ec T __UNIQUE_ID_quirk_amd_harvest_no_ats1418
-ffffffc008544788 T __UNIQUE_ID_quirk_amd_harvest_no_ats1420
-ffffffc008544824 T __UNIQUE_ID_quirk_amd_harvest_no_ats1422
-ffffffc0085448c0 T __UNIQUE_ID_quirk_fsl_no_msi1424
-ffffffc0085448f0 T __UNIQUE_ID_quirk_gpu_hda1426
-ffffffc008544920 T __UNIQUE_ID_quirk_gpu_hda1428
-ffffffc008544950 T __UNIQUE_ID_quirk_gpu_hda1430
-ffffffc008544980 T __UNIQUE_ID_quirk_gpu_usb1432
-ffffffc0085449b0 T __UNIQUE_ID_quirk_gpu_usb1434
-ffffffc0085449e0 T __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1436
-ffffffc008544a10 T __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1438
-ffffffc008544a40 T __UNIQUE_ID_quirk_nvidia_hda1440
-ffffffc008544a68 t quirk_nvidia_hda
-ffffffc008544b58 T __UNIQUE_ID_quirk_nvidia_hda1442
-ffffffc008544b84 T pci_idt_bus_quirk
-ffffffc008544c8c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1444
-ffffffc008544cb4 t quirk_switchtec_ntb_dma_alias
-ffffffc008544e68 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1446
-ffffffc008544e94 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1448
-ffffffc008544ec0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1450
-ffffffc008544eec T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1452
-ffffffc008544f18 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1454
-ffffffc008544f44 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1456
-ffffffc008544f70 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1458
-ffffffc008544f9c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1460
-ffffffc008544fc8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1462
-ffffffc008544ff4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1464
-ffffffc008545020 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1466
-ffffffc00854504c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1468
-ffffffc008545078 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1470
-ffffffc0085450a4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1472
-ffffffc0085450d0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1474
-ffffffc0085450fc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1476
-ffffffc008545128 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1478
-ffffffc008545154 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1480
-ffffffc008545180 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1482
-ffffffc0085451ac T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1484
-ffffffc0085451d8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1486
-ffffffc008545204 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1488
-ffffffc008545230 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1490
-ffffffc00854525c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1492
-ffffffc008545288 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1494
-ffffffc0085452b4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1496
-ffffffc0085452e0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1498
-ffffffc00854530c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1500
-ffffffc008545338 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1502
-ffffffc008545364 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1504
-ffffffc008545390 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1506
-ffffffc0085453bc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1508
-ffffffc0085453e8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1510
-ffffffc008545414 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1512
-ffffffc008545440 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1514
-ffffffc00854546c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1516
-ffffffc008545498 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1518
-ffffffc0085454c4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1520
-ffffffc0085454f0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1522
-ffffffc00854551c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1524
-ffffffc008545548 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1526
-ffffffc008545574 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1528
-ffffffc0085455a0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1530
-ffffffc0085455cc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1532
-ffffffc0085455f8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1534
-ffffffc008545624 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1536
-ffffffc008545650 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1538
-ffffffc00854567c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1540
-ffffffc0085456a8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1542
-ffffffc0085456d4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1544
-ffffffc008545700 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1546
-ffffffc00854572c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1548
-ffffffc008545758 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1550
-ffffffc008545784 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1552
-ffffffc0085457b0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1554
-ffffffc0085457dc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1556
-ffffffc008545808 T __UNIQUE_ID_quirk_plx_ntb_dma_alias1558
-ffffffc00854585c T __UNIQUE_ID_quirk_plx_ntb_dma_alias1560
-ffffffc0085458b0 T __UNIQUE_ID_quirk_reset_lenovo_thinkpad_p50_nvgpu1562
-ffffffc0085459ac T __UNIQUE_ID_pci_fixup_no_d0_pme1564
-ffffffc0085459fc T __UNIQUE_ID_pci_fixup_no_msi_no_pme1566
-ffffffc008545a70 T __UNIQUE_ID_pci_fixup_no_msi_no_pme1568
-ffffffc008545ae4 T __UNIQUE_ID_apex_pci_fixup_class1570
-ffffffc008545b08 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1572
-ffffffc008545b30 t pci_fixup_pericom_acs_store_forward
-ffffffc008545c30 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1574
-ffffffc008545c5c T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1576
-ffffffc008545c88 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1578
-ffffffc008545cb4 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1580
-ffffffc008545ce0 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1582
-ffffffc008545d0c T __UNIQUE_ID_nvidia_ion_ahci_fixup1584
-ffffffc008545d28 T __UNIQUE_ID_rom_bar_overlap_defect1586
-ffffffc008545d78 T __UNIQUE_ID_rom_bar_overlap_defect1588
-ffffffc008545dc8 T __UNIQUE_ID_rom_bar_overlap_defect1590
-ffffffc008545e18 T __UNIQUE_ID_rom_bar_overlap_defect1592
-ffffffc008545e68 T __UNIQUE_ID_aspm_l1_acceptable_latency1604
-ffffffc008545ec0 T __UNIQUE_ID_aspm_l1_acceptable_latency1606
-ffffffc008545f18 T __UNIQUE_ID_aspm_l1_acceptable_latency1608
-ffffffc008545f70 T __UNIQUE_ID_aspm_l1_acceptable_latency1610
-ffffffc008545fc8 T __UNIQUE_ID_aspm_l1_acceptable_latency1612
-ffffffc008546020 T __UNIQUE_ID_aspm_l1_acceptable_latency1614
-ffffffc008546078 T __UNIQUE_ID_aspm_l1_acceptable_latency1616
-ffffffc0085460d0 T __UNIQUE_ID_aspm_l1_acceptable_latency1618
-ffffffc008546128 T __UNIQUE_ID_aspm_l1_acceptable_latency1620
-ffffffc008546180 T __UNIQUE_ID_aspm_l1_acceptable_latency1622
-ffffffc0085461d8 T __UNIQUE_ID_aspm_l1_acceptable_latency1624
-ffffffc008546230 T __UNIQUE_ID_aspm_l1_acceptable_latency1626
-ffffffc008546288 T __UNIQUE_ID_aspm_l1_acceptable_latency1628
-ffffffc0085462e0 T __UNIQUE_ID_aspm_l1_acceptable_latency1630
-ffffffc008546338 T __UNIQUE_ID_aspm_l1_acceptable_latency1632
-ffffffc008546390 T __UNIQUE_ID_aspm_l1_acceptable_latency1634
-ffffffc0085463e8 T __UNIQUE_ID_aspm_l1_acceptable_latency1636
-ffffffc008546440 T __UNIQUE_ID_aspm_l1_acceptable_latency1638
-ffffffc008546498 T __UNIQUE_ID_aspm_l1_acceptable_latency1640
-ffffffc0085464f0 T __UNIQUE_ID_aspm_l1_acceptable_latency1642
-ffffffc008546548 T __UNIQUE_ID_aspm_l1_acceptable_latency1644
-ffffffc0085465a0 T __UNIQUE_ID_aspm_l1_acceptable_latency1646
-ffffffc0085465f8 T __UNIQUE_ID_aspm_l1_acceptable_latency1648
-ffffffc008546650 T __UNIQUE_ID_aspm_l1_acceptable_latency1650
-ffffffc0085466a8 T __UNIQUE_ID_aspm_l1_acceptable_latency1652
-ffffffc008546700 T __UNIQUE_ID_aspm_l1_acceptable_latency1654
-ffffffc008546754 t quirk_io_region
-ffffffc008546858 t msi_ht_cap_enabled
-ffffffc008546950 t __nv_msi_ht_cap_quirk
-ffffffc008546ce4 t reset_intel_82599_sfp_virtfn
-ffffffc008546d18 t reset_ivb_igd
-ffffffc008546e28 t nvme_disable_and_flr
-ffffffc008546fbc t delay_250ms_after_flr
-ffffffc008547008 t reset_chelsio_generic_dev
-ffffffc00854710c t reset_hinic_vf_dev
-ffffffc008547268 t pci_quirk_amd_sb_acs
-ffffffc00854727c t pci_quirk_mf_endpoint_acs
-ffffffc008547298 t pci_quirk_rciep_acs
-ffffffc0085472c8 t pci_quirk_qcom_rp_acs
-ffffffc0085472e4 t pci_quirk_intel_pch_acs
-ffffffc008547364 t pci_quirk_intel_spt_pch_acs
-ffffffc008547424 t pci_quirk_cavium_acs
-ffffffc00854748c t pci_quirk_xgene_acs
-ffffffc0085474a8 t pci_quirk_brcm_acs
-ffffffc0085474c4 t pci_quirk_al_acs
-ffffffc0085474f4 t pci_quirk_nxp_rp_acs
-ffffffc008547510 t pci_quirk_zhaoxin_pcie_ports_acs
-ffffffc00854758c t pci_quirk_wangxun_nic_acs
-ffffffc0085475d0 t pci_quirk_intel_spt_pch_acs_match
-ffffffc008547668 t pci_create_device_link
-ffffffc008547748 T pci_ats_init
-ffffffc00854779c T pci_ats_supported
-ffffffc0085477d8 T pci_enable_ats
-ffffffc008547888 T pci_disable_ats
-ffffffc008547950 T pci_restore_ats_state
-ffffffc0085479b4 T pci_ats_queue_depth
-ffffffc008547a54 T pci_ats_page_aligned
-ffffffc008547ad0 T pci_iov_virtfn_bus
-ffffffc008547b24 T pci_iov_virtfn_devfn
-ffffffc008547b70 T pci_iov_vf_id
-ffffffc008547bdc T pci_iov_get_pf_drvdata
-ffffffc008547c20 T pci_iov_resource_size
-ffffffc008547c6c T pci_iov_sysfs_link
-ffffffc008547d50 t sriov_vf_attrs_are_visible
-ffffffc008547d84 T pci_iov_add_virtfn
-ffffffc008548118 T pci_iov_remove_virtfn
-ffffffc00854826c t sriov_pf_attrs_are_visible
-ffffffc0085482b4 W pcibios_sriov_enable
-ffffffc0085482c8 W pcibios_sriov_disable
-ffffffc0085482dc T pci_iov_init
-ffffffc008548770 T pci_iov_release
-ffffffc0085487e8 T pci_iov_remove
-ffffffc00854884c T pci_iov_update_resource
-ffffffc0085489c8 W pcibios_iov_resource_alignment
-ffffffc008548a14 T pci_sriov_resource_alignment
-ffffffc008548a40 T pci_restore_iov_state
-ffffffc008548bc0 T pci_vf_drivers_autoprobe
-ffffffc008548bf0 T pci_iov_bus_range
-ffffffc008548c64 T pci_enable_sriov
-ffffffc008548ca8 t sriov_enable
-ffffffc008549030 T pci_disable_sriov
-ffffffc00854906c t sriov_disable
-ffffffc00854917c T pci_num_vf
-ffffffc0085491b4 T pci_vfs_assigned
-ffffffc008549278 T pci_sriov_set_totalvfs
-ffffffc0085492e0 T pci_sriov_get_totalvfs
-ffffffc008549318 T pci_sriov_configure_simple
-ffffffc008549420 t sriov_vf_msix_count_store
-ffffffc008549574 t sriov_totalvfs_show
-ffffffc0085495d8 t sriov_numvfs_show
-ffffffc00854964c t sriov_numvfs_store
-ffffffc008549828 t sriov_offset_show
-ffffffc008549870 t sriov_stride_show
-ffffffc0085498b8 t sriov_vf_device_show
-ffffffc008549900 t sriov_drivers_autoprobe_show
-ffffffc008549948 t sriov_drivers_autoprobe_store
-ffffffc0085499d8 t sriov_vf_total_msix_show
-ffffffc008549a7c t pci_iov_set_numvfs
-ffffffc008549ae8 t sriov_add_vfs
-ffffffc008549b90 T __arm64_sys_pciconfig_read
-ffffffc00854a388 T __arm64_sys_pciconfig_write
-ffffffc00854a820 T pci_ecam_create
-ffffffc00854aa84 T pci_ecam_free
-ffffffc00854aadc T pci_ecam_map_bus
-ffffffc00854ab5c t pci_ecam_add_bus
-ffffffc00854ab70 t pci_ecam_remove_bus
-ffffffc00854ab80 T vga_default_device
-ffffffc00854ab98 T vga_set_default_device
-ffffffc00854abf0 T vga_remove_vgacon
-ffffffc00854ac04 T vga_get
-ffffffc00854adbc t __vga_tryget
-ffffffc00854afe8 T vga_put
-ffffffc00854b084 t __vga_put
-ffffffc00854b170 T vga_set_legacy_decoding
-ffffffc00854b19c t __vga_set_legacy_decoding
-ffffffc00854b328 T vga_client_register
-ffffffc00854b3b4 t vga_arbiter_notify_clients
-ffffffc00854b560 t vga_arbiter_add_pci_device
-ffffffc00854b990 t vga_arb_read
-ffffffc00854bce4 t vga_arb_write
-ffffffc00854c910 t vga_arb_fpoll
-ffffffc00854c970 t vga_arb_open
-ffffffc00854ca38 t vga_arb_release
-ffffffc00854ccc4 t pci_notify
-ffffffc00854ce2c T pci_epc_put
-ffffffc00854ce64 T pci_epc_get
-ffffffc00854cf38 T pci_epc_get_first_free_bar
-ffffffc00854cf80 T pci_epc_get_next_free_bar
-ffffffc00854cfe8 T pci_epc_get_features
-ffffffc00854d0d0 T pci_epc_stop
-ffffffc00854d154 T pci_epc_start
-ffffffc00854d1f0 T pci_epc_raise_irq
-ffffffc00854d2f0 T pci_epc_map_msi_irq
-ffffffc00854d3fc T pci_epc_get_msi
-ffffffc00854d4e8 T pci_epc_set_msi
-ffffffc00854d5fc T pci_epc_get_msix
-ffffffc00854d6e0 T pci_epc_set_msix
-ffffffc00854d7f8 T pci_epc_unmap_addr
-ffffffc00854d8d4 T pci_epc_map_addr
-ffffffc00854d9dc T pci_epc_clear_bar
-ffffffc00854dacc T pci_epc_set_bar
-ffffffc00854dbe4 T pci_epc_write_header
-ffffffc00854dce0 T pci_epc_add_epf
-ffffffc00854de3c T pci_epc_remove_epf
-ffffffc00854df48 T pci_epc_linkup
-ffffffc00854df8c T pci_epc_init_notify
-ffffffc00854dfd0 T pci_epc_destroy
-ffffffc00854e010 T devm_pci_epc_destroy
-ffffffc00854e0a0 t devm_pci_epc_release
-ffffffc00854e0e4 t devm_pci_epc_match
-ffffffc00854e100 T __pci_epc_create
-ffffffc00854e210 T __devm_pci_epc_create
-ffffffc00854e2b8 T pci_epf_type_add_cfs
-ffffffc00854e370 T pci_epf_unbind
-ffffffc00854e478 T pci_epf_bind
-ffffffc00854e678 T pci_epf_add_vepf
-ffffffc00854e7bc T pci_epf_remove_vepf
-ffffffc00854e89c T pci_epf_free_space
-ffffffc00854e91c T pci_epf_alloc_space
-ffffffc00854ea54 T pci_epf_unregister_driver
-ffffffc00854ea84 T __pci_epf_register_driver
-ffffffc00854eae4 T pci_epf_destroy
-ffffffc00854eb10 T pci_epf_create
-ffffffc00854ec18 t pci_epf_dev_release
-ffffffc00854ec5c t pci_epf_device_match
-ffffffc00854ecdc t pci_epf_device_probe
-ffffffc00854ed3c t pci_epf_device_remove
-ffffffc00854eda0 T pci_epc_multi_mem_init
-ffffffc00854ef2c T pci_epc_mem_init
-ffffffc00854ef94 T pci_epc_mem_exit
-ffffffc00854f018 T pci_epc_mem_alloc_addr
-ffffffc00854f190 T pci_epc_mem_free_addr
-ffffffc00854f2c0 T pci_host_common_probe
-ffffffc00854f470 T pci_host_common_remove
-ffffffc00854f4d0 t gen_pci_unmap_cfg
-ffffffc00854f4fc t pci_dw_ecam_map_bus
-ffffffc00854f54c T dw_pcie_version_detect
-ffffffc00854f6c4 T dw_pcie_find_capability
-ffffffc00854f770 t __dw_pcie_find_next_cap
-ffffffc00854f860 T dw_pcie_find_ext_capability
-ffffffc00854f9d8 T dw_pcie_read
-ffffffc00854fa78 T dw_pcie_write
-ffffffc00854fb04 T dw_pcie_read_dbi
-ffffffc00854fbd8 T dw_pcie_write_dbi
-ffffffc00854fca4 T dw_pcie_write_dbi2
-ffffffc00854fd70 T dw_pcie_prog_outbound_atu
-ffffffc00854fdb0 t __dw_pcie_prog_outbound_atu.llvm.14029520826232420253
-ffffffc00855024c T dw_pcie_prog_ep_outbound_atu
-ffffffc008550278 T dw_pcie_prog_inbound_atu
-ffffffc0085505f4 T dw_pcie_disable_atu
-ffffffc008550624 t dw_pcie_writel_atu.llvm.14029520826232420253
-ffffffc008550774 T dw_pcie_wait_for_link
-ffffffc0085509ac T dw_pcie_link_up
-ffffffc008550a78 T dw_pcie_upconfig_setup
-ffffffc008550b88 T dw_pcie_iatu_detect
-ffffffc008550fd4 T dw_pcie_setup
-ffffffc0085518d8 t dw_pcie_readl_atu
-ffffffc008551a18 T dw_handle_msi_irq
-ffffffc008551b0c T dw_pcie_allocate_domains
-ffffffc008551bd8 T dw_pcie_host_init
-ffffffc008551fa8 t dw_pcie_msi_host_init
-ffffffc008552494 T dw_pcie_setup_rc
-ffffffc008552854 t dw_pcie_free_msi
-ffffffc008552958 T dw_pcie_host_deinit
-ffffffc008552a10 T dw_pcie_own_conf_map_bus
-ffffffc008552a40 t dw_pcie_irq_domain_alloc
-ffffffc008552b30 t dw_pcie_irq_domain_free
-ffffffc008552bc8 t dw_msi_ack_irq
-ffffffc008552bf4 t dw_msi_mask_irq
-ffffffc008552c34 t dw_msi_unmask_irq
-ffffffc008552c74 t dw_chained_msi_isr
-ffffffc008552e08 t dw_pci_bottom_ack
-ffffffc008552e5c t dw_pci_bottom_mask
-ffffffc008552f00 t dw_pci_bottom_unmask
-ffffffc008552fa4 t dw_pci_msi_set_affinity
-ffffffc008552fb8 t dw_pci_setup_msi_msg
-ffffffc008552fdc t dw_pcie_other_conf_map_bus
-ffffffc008553088 t dw_pcie_rd_other_conf
-ffffffc0085530f8 t dw_pcie_wr_other_conf
-ffffffc008553168 T dw_pcie_ep_linkup
-ffffffc008553198 T dw_pcie_ep_init_notify
-ffffffc0085531c8 T dw_pcie_ep_get_func_from_ep
-ffffffc008553208 T dw_pcie_ep_reset_bar
-ffffffc008553274 t __dw_pcie_ep_reset_bar
-ffffffc008553394 T dw_pcie_ep_raise_legacy_irq
-ffffffc0085533d4 T dw_pcie_ep_raise_msi_irq
-ffffffc008553610 t dw_pcie_ep_map_addr
-ffffffc008553730 t dw_pcie_ep_unmap_addr
-ffffffc0085537e4 T dw_pcie_ep_raise_msix_irq_doorbell
-ffffffc008553864 T dw_pcie_ep_raise_msix_irq
-ffffffc008553a40 T dw_pcie_ep_exit
-ffffffc008553a90 T dw_pcie_ep_init_complete
-ffffffc008553c54 T dw_pcie_ep_init
-ffffffc008554094 t dw_pcie_ep_write_header
-ffffffc008554210 t dw_pcie_ep_set_bar
-ffffffc008554458 t dw_pcie_ep_clear_bar
-ffffffc008554528 t dw_pcie_ep_set_msi
-ffffffc008554658 t dw_pcie_ep_get_msi
-ffffffc008554714 t dw_pcie_ep_set_msix
-ffffffc0085548a4 t dw_pcie_ep_get_msix
-ffffffc008554968 t dw_pcie_ep_raise_irq
-ffffffc0085549cc t dw_pcie_ep_start
-ffffffc008554a30 t dw_pcie_ep_stop
-ffffffc008554a8c t dw_pcie_ep_get_features
-ffffffc008554ae4 t __dw_pcie_ep_find_next_cap
-ffffffc008554bc0 t dw_plat_pcie_probe
-ffffffc008554ca0 t dw_plat_pcie_ep_init
-ffffffc008554d1c t dw_plat_pcie_ep_raise_irq
-ffffffc008554da4 t dw_plat_pcie_get_features
-ffffffc008554db8 t clk_prepare_enable
-ffffffc008554e14 t kirin_pcie_probe
-ffffffc00855537c t kirin_pcie_read_dbi
-ffffffc008555460 t kirin_pcie_write_dbi
-ffffffc00855554c t kirin_pcie_link_up
-ffffffc0085555cc t kirin_pcie_start_link
-ffffffc008555610 t kirin_pcie_host_init
-ffffffc008555638 t kirin_pcie_add_bus
-ffffffc008555704 t kirin_pcie_rd_own_conf
-ffffffc00855576c t kirin_pcie_wr_own_conf
-ffffffc0085557c4 t dummycon_startup.llvm.838888672589036465
-ffffffc0085557dc t dummycon_init.llvm.838888672589036465
-ffffffc008555840 t dummycon_deinit.llvm.838888672589036465
-ffffffc008555850 t dummycon_clear.llvm.838888672589036465
-ffffffc008555860 t dummycon_putc.llvm.838888672589036465
-ffffffc008555870 t dummycon_putcs.llvm.838888672589036465
-ffffffc008555880 t dummycon_cursor.llvm.838888672589036465
-ffffffc008555890 t dummycon_scroll.llvm.838888672589036465
-ffffffc0085558a4 t dummycon_switch.llvm.838888672589036465
-ffffffc0085558b8 t dummycon_blank.llvm.838888672589036465
-ffffffc0085558cc t amba_match
-ffffffc008555a0c t amba_uevent
-ffffffc008555a70 t amba_probe
-ffffffc008555dfc t amba_remove
-ffffffc008555f6c t amba_shutdown
-ffffffc008555fc0 t amba_dma_configure
-ffffffc008556034 t amba_dma_cleanup
-ffffffc00855606c T amba_driver_register
-ffffffc0085560b4 T amba_driver_unregister
-ffffffc0085560e0 T amba_device_add
-ffffffc00855616c t amba_read_periphid
-ffffffc008556354 T amba_device_alloc
-ffffffc008556440 T amba_device_register
-ffffffc008556548 T amba_device_put
-ffffffc008556578 T amba_device_unregister
-ffffffc0085565a4 T amba_request_regions
-ffffffc008556608 T amba_release_regions
-ffffffc00855664c t id_show
-ffffffc008556690 t id_show
-ffffffc0085566d8 t id_show
-ffffffc00855671c t amba_pm_runtime_suspend
-ffffffc008556790 t amba_pm_runtime_resume
-ffffffc00855682c t amba_device_release
-ffffffc008556878 T devm_clk_get
-ffffffc008556924 T devm_clk_get_prepared
-ffffffc0085569f8 T devm_clk_get_enabled
-ffffffc008556ae4 t clk_disable_unprepare
-ffffffc008556b24 T devm_clk_get_optional
-ffffffc008556bd4 T devm_clk_get_optional_prepared
-ffffffc008556cac T devm_clk_get_optional_enabled
-ffffffc008556d9c T devm_clk_bulk_get
-ffffffc008556e58 T devm_clk_bulk_get_optional
-ffffffc008556f14 T devm_clk_bulk_get_all
-ffffffc008556fc4 t devm_clk_bulk_release_all
-ffffffc008556ff8 T devm_clk_put
-ffffffc008557044 t devm_clk_release
-ffffffc0085570a8 t devm_clk_release
-ffffffc0085570d8 t devm_clk_match
-ffffffc00855710c T devm_get_clk_from_child
-ffffffc0085571b8 t devm_clk_bulk_release
-ffffffc0085571ec T clk_bulk_put
-ffffffc008557244 T clk_bulk_get
-ffffffc008557270 t __clk_bulk_get.llvm.13284161609161361520
-ffffffc0085573bc T clk_bulk_get_optional
-ffffffc0085573ec T clk_bulk_put_all
-ffffffc008557464 T clk_bulk_get_all
-ffffffc008557628 T clk_bulk_unprepare
-ffffffc00855767c T clk_bulk_prepare
-ffffffc008557734 T clk_bulk_disable
-ffffffc008557788 T clk_bulk_enable
-ffffffc008557840 T clk_find_hw
-ffffffc008557960 T clk_get_sys
-ffffffc0085579b0 T clk_get
-ffffffc008557a5c T clk_put
-ffffffc008557a88 T clkdev_add
-ffffffc008557b1c T clkdev_add_table
-ffffffc008557bc4 T clkdev_create
-ffffffc008557cc8 T clkdev_hw_create
-ffffffc008557db0 T clk_add_alias
-ffffffc008557eb4 T clkdev_drop
-ffffffc008557f34 T clk_register_clkdev
-ffffffc008557fb8 T clk_hw_register_clkdev
-ffffffc008558014 T devm_clk_hw_register_clkdev
-ffffffc008558118 t devm_clkdev_release
-ffffffc008558194 t __clk_register_clkdev
-ffffffc00855827c T __traceiter_clk_enable
-ffffffc0085582fc T __traceiter_clk_enable_complete
-ffffffc00855837c T __traceiter_clk_disable
-ffffffc0085583fc T __traceiter_clk_disable_complete
-ffffffc00855847c T __traceiter_clk_prepare
-ffffffc0085584fc T __traceiter_clk_prepare_complete
-ffffffc00855857c T __traceiter_clk_unprepare
-ffffffc0085585fc T __traceiter_clk_unprepare_complete
-ffffffc00855867c T __traceiter_clk_set_rate
-ffffffc00855870c T __traceiter_clk_set_rate_complete
-ffffffc00855879c T __traceiter_clk_set_min_rate
-ffffffc00855882c T __traceiter_clk_set_max_rate
-ffffffc0085588bc T __traceiter_clk_set_rate_range
-ffffffc008558954 T __traceiter_clk_set_parent
-ffffffc0085589e4 T __traceiter_clk_set_parent_complete
-ffffffc008558a74 T __traceiter_clk_set_phase
-ffffffc008558b04 T __traceiter_clk_set_phase_complete
-ffffffc008558b94 T __traceiter_clk_set_duty_cycle
-ffffffc008558c24 T __traceiter_clk_set_duty_cycle_complete
-ffffffc008558cb4 t trace_event_raw_event_clk
-ffffffc008558dac t perf_trace_clk
-ffffffc008558f14 t trace_event_raw_event_clk_rate
-ffffffc008559020 t perf_trace_clk_rate
-ffffffc00855919c t trace_event_raw_event_clk_rate_range
-ffffffc0085592ac t perf_trace_clk_rate_range
-ffffffc00855942c t trace_event_raw_event_clk_parent
-ffffffc008559598 t perf_trace_clk_parent
-ffffffc008559768 t trace_event_raw_event_clk_phase
-ffffffc008559874 t perf_trace_clk_phase
-ffffffc0085599f0 t trace_event_raw_event_clk_duty_cycle
-ffffffc008559b08 t perf_trace_clk_duty_cycle
-ffffffc008559c8c T __clk_get_name
-ffffffc008559cac T clk_hw_get_name
-ffffffc008559cc4 T __clk_get_hw
-ffffffc008559ce4 T clk_hw_get_num_parents
-ffffffc008559cfc T clk_hw_get_parent
-ffffffc008559d28 T clk_hw_get_parent_by_index
-ffffffc008559d5c t clk_core_get_parent_by_index
-ffffffc008559e8c T __clk_get_enable_count
-ffffffc008559eac T clk_hw_get_rate
-ffffffc008559ee4 T clk_hw_get_flags
-ffffffc008559efc T clk_hw_is_prepared
-ffffffc008559f2c t clk_core_is_prepared
-ffffffc00855a050 T clk_hw_rate_is_protected
-ffffffc00855a070 T clk_hw_is_enabled
-ffffffc00855a168 T __clk_is_enabled
-ffffffc00855a26c T clk_mux_determine_rate_flags
-ffffffc00855a470 t clk_core_forward_rate_req
-ffffffc00855a5ec t clk_core_round_rate_nolock
-ffffffc00855a794 T __clk_lookup
-ffffffc00855a840 T clk_hw_get_rate_range
-ffffffc00855a8d0 T clk_hw_set_rate_range
-ffffffc00855a8f0 T __clk_mux_determine_rate
-ffffffc00855a920 T __clk_mux_determine_rate_closest
-ffffffc00855a950 T clk_rate_exclusive_put
-ffffffc00855aa70 t clk_core_rate_unprotect
-ffffffc00855aad0 T clk_rate_exclusive_get
-ffffffc00855abc4 t clk_core_rate_protect
-ffffffc00855ac18 T clk_unprepare
-ffffffc00855ac50 t clk_core_unprepare_lock
-ffffffc00855ad50 T clk_prepare
-ffffffc00855ad80 t clk_core_prepare_lock
-ffffffc00855ae88 T clk_disable
-ffffffc00855aec0 t clk_core_disable_lock
-ffffffc00855b008 T clk_gate_restore_context
-ffffffc00855b084 T clk_save_context
-ffffffc00855b118 t clk_core_save_context
-ffffffc00855b1a4 T clk_restore_context
-ffffffc00855b224 t clk_core_restore_context
-ffffffc00855b2a8 T clk_enable
-ffffffc00855b2d8 t clk_core_enable_lock
-ffffffc00855b428 T clk_is_enabled_when_prepared
-ffffffc00855b464 T clk_sync_state
-ffffffc00855b5b4 t clk_unprepare_disable_dev_subtree
-ffffffc00855b63c T clk_hw_init_rate_request
-ffffffc00855b710 T clk_hw_forward_rate_request
-ffffffc00855b75c T __clk_determine_rate
-ffffffc00855b798 T clk_hw_round_rate
-ffffffc00855b894 T clk_round_rate
-ffffffc00855ba98 T clk_get_accuracy
-ffffffc00855bbb8 T clk_get_rate
-ffffffc00855bcf8 T clk_hw_get_parent_index
-ffffffc00855bd44 t clk_fetch_parent_index
-ffffffc00855be3c T clk_set_rate
-ffffffc00855bf78 t clk_core_set_rate_nolock
-ffffffc00855c1f0 T clk_set_rate_exclusive
-ffffffc00855c328 T clk_set_rate_range
-ffffffc00855c450 t clk_set_rate_range_nolock
-ffffffc00855c690 T clk_set_min_rate
-ffffffc00855c7c0 T clk_set_max_rate
-ffffffc00855c8f4 T clk_get_parent
-ffffffc00855ca0c T clk_hw_reparent
-ffffffc00855cb18 T clk_has_parent
-ffffffc00855cbb4 T clk_hw_set_parent
-ffffffc00855cbe4 t clk_core_set_parent_nolock
-ffffffc00855d14c T clk_set_parent
-ffffffc00855d298 T clk_set_phase
-ffffffc00855d600 T clk_get_phase
-ffffffc00855d748 T clk_set_duty_cycle
-ffffffc00855d8c0 t clk_core_set_duty_cycle_nolock
-ffffffc00855db28 T clk_get_scaled_duty_cycle
-ffffffc00855db58 t clk_core_get_scaled_duty_cycle
-ffffffc00855dc8c T clk_is_match
-ffffffc00855dcdc T clk_hw_create_clk
-ffffffc00855dde8 t clk_core_link_consumer
-ffffffc00855defc T clk_hw_get_clk
-ffffffc00855df54 T clk_register
-ffffffc00855dfa0 t __clk_register
-ffffffc00855eb2c T clk_hw_register
-ffffffc00855eb84 T of_clk_hw_register
-ffffffc00855ebc4 T clk_unregister
-ffffffc00855ef90 t kref_put
-ffffffc00855f07c T clk_hw_unregister
-ffffffc00855f0ac T devm_clk_register
-ffffffc00855f174 t devm_clk_unregister_cb
-ffffffc00855f1a4 T devm_clk_hw_register
-ffffffc00855f274 t devm_clk_hw_unregister_cb
-ffffffc00855f2a8 T devm_clk_hw_get_clk
-ffffffc00855f38c T __clk_put
-ffffffc00855f534 T clk_notifier_register
-ffffffc00855f6f4 T clk_notifier_unregister
-ffffffc00855f8a8 T devm_clk_notifier_register
-ffffffc00855f940 t devm_clk_notifier_release
-ffffffc00855f970 T of_clk_src_simple_get
-ffffffc00855f984 T of_clk_hw_simple_get
-ffffffc00855f998 T of_clk_src_onecell_get
-ffffffc00855f9f4 T of_clk_hw_onecell_get
-ffffffc00855fa50 T of_clk_add_provider
-ffffffc00855fbc4 t clk_core_reparent_orphans
-ffffffc00855fcbc T of_clk_del_provider
-ffffffc00855fd80 T of_clk_add_hw_provider
-ffffffc00855fef8 T devm_of_clk_add_hw_provider
-ffffffc00855fff8 t devm_of_clk_release_provider
-ffffffc0085600b8 T of_clk_get_from_provider
-ffffffc0085601dc T of_clk_get_hw
-ffffffc00856032c t of_parse_clkspec
-ffffffc008560494 T of_clk_get
-ffffffc0085604e4 T of_clk_get_by_name
-ffffffc008560548 T of_clk_get_parent_count
-ffffffc00856058c T of_clk_get_parent_name
-ffffffc008560718 T of_clk_parent_fill
-ffffffc008560794 T of_clk_detect_critical
-ffffffc008560874 t trace_raw_output_clk
-ffffffc0085608ec t trace_raw_output_clk_rate
-ffffffc008560968 t trace_raw_output_clk_rate_range
-ffffffc0085609e4 t trace_raw_output_clk_parent
-ffffffc008560a64 t trace_raw_output_clk_phase
-ffffffc008560ae0 t trace_raw_output_clk_duty_cycle
-ffffffc008560b58 t clk_core_get
-ffffffc008560d1c t clk_pm_runtime_get
-ffffffc008560dd4 t __clk_lookup_subtree
-ffffffc008560e54 t clk_core_unprepare
-ffffffc0085610ec t clk_core_prepare
-ffffffc0085613e0 t clk_core_disable
-ffffffc0085616ac t clk_core_enable
-ffffffc00856199c t __clk_recalc_accuracies
-ffffffc008561a34 t __clk_recalc_rates
-ffffffc008561b60 t clk_recalc
-ffffffc008561c70 t clk_calc_new_rates
-ffffffc008561fc8 t clk_propagate_rate_change
-ffffffc008562154 t clk_change_rate
-ffffffc008562828 t clk_calc_subtree
-ffffffc0085628b4 t __clk_set_parent_before
-ffffffc008562b24 t __clk_set_parent_after
-ffffffc008562bac t clk_core_update_orphan_status
-ffffffc008562c0c t __clk_speculate_rates
-ffffffc008562d18 t clk_core_update_duty_cycle_nolock
-ffffffc008562ddc t clk_debug_create_one
-ffffffc008563058 t clk_summary_open
-ffffffc008563098 t clk_summary_show
-ffffffc00856320c t clk_summary_show_subtree
-ffffffc008563554 t clk_dump_open
-ffffffc008563594 t clk_dump_show
-ffffffc00856373c t clk_dump_subtree
-ffffffc0085639c0 t clk_rate_fops_open
-ffffffc008563a04 t clk_rate_get
-ffffffc008563b48 t clk_rate_set
-ffffffc008563c60 t clk_min_rate_open
-ffffffc008563ca0 t clk_min_rate_show
-ffffffc008563df0 t clk_max_rate_open
-ffffffc008563e30 t clk_max_rate_show
-ffffffc008563f80 t clk_flags_open
-ffffffc008563fc0 t clk_flags_show
-ffffffc008564078 t clk_duty_cycle_open
-ffffffc0085640b8 t clk_duty_cycle_show
-ffffffc0085640f8 t clk_prepare_enable_fops_open
-ffffffc00856413c t clk_prepare_enable_get
-ffffffc008564170 t clk_prepare_enable_set
-ffffffc00856420c t current_parent_write
-ffffffc00856439c t current_parent_open
-ffffffc0085643dc t current_parent_show
-ffffffc008564424 t possible_parents_open
-ffffffc008564464 t possible_parents_show
-ffffffc0085644f8 t possible_parent_show
-ffffffc0085645d0 t clk_core_hold_state
-ffffffc00856467c t clk_core_reparent_orphans_nolock
-ffffffc008564770 t __clk_core_update_orphan_hold_state
-ffffffc0085647d4 t clk_nodrv_prepare_enable
-ffffffc0085647e8 t clk_nodrv_disable_unprepare
-ffffffc0085647fc t clk_nodrv_set_parent
-ffffffc008564810 t clk_nodrv_set_rate
-ffffffc008564820 t clk_core_evict_parent_cache_subtree
-ffffffc0085648b8 T divider_recalc_rate
-ffffffc00856499c T divider_determine_rate
-ffffffc008564e68 T divider_ro_determine_rate
-ffffffc008564f6c T divider_round_rate_parent
-ffffffc008565030 T divider_ro_round_rate_parent
-ffffffc00856519c T divider_get_val
-ffffffc0085652b4 t clk_divider_recalc_rate
-ffffffc0085653e0 t clk_divider_round_rate
-ffffffc00856553c t clk_divider_determine_rate
-ffffffc0085656ac t clk_divider_set_rate
-ffffffc0085658cc T __clk_hw_register_divider
-ffffffc008565a5c T clk_register_divider_table
-ffffffc008565ad4 T clk_unregister_divider
-ffffffc008565b24 T clk_hw_unregister_divider
-ffffffc008565b68 T __devm_clk_hw_register_divider
-ffffffc008565c70 t devm_clk_hw_release_divider
-ffffffc008565cb4 t clk_factor_recalc_rate
-ffffffc008565cd0 t clk_factor_round_rate
-ffffffc008565d50 t clk_factor_set_rate
-ffffffc008565d64 T devm_clk_hw_register_fixed_factor_index
-ffffffc008565e90 t __clk_hw_register_fixed_factor
-ffffffc008565ff4 T devm_clk_hw_register_fixed_factor_parent_hw
-ffffffc008566038 T clk_hw_register_fixed_factor_parent_hw
-ffffffc008566180 T clk_hw_register_fixed_factor
-ffffffc0085662c8 T clk_register_fixed_factor
-ffffffc008566300 T clk_unregister_fixed_factor
-ffffffc008566350 T clk_hw_unregister_fixed_factor
-ffffffc008566394 T devm_clk_hw_register_fixed_factor
-ffffffc0085663d0 t _of_fixed_factor_clk_setup
-ffffffc0085665bc t devm_clk_hw_register_fixed_factor_release
-ffffffc0085665ec t of_fixed_factor_clk_probe
-ffffffc008566638 t of_fixed_factor_clk_remove
-ffffffc008566688 t clk_fixed_rate_recalc_rate
-ffffffc00856669c t clk_fixed_rate_recalc_accuracy
-ffffffc0085666c0 T __clk_hw_register_fixed_rate
-ffffffc008566870 t devm_clk_hw_register_fixed_rate_release
-ffffffc0085668a0 T clk_register_fixed_rate
-ffffffc0085669b4 T clk_unregister_fixed_rate
-ffffffc008566a04 T clk_hw_unregister_fixed_rate
-ffffffc008566a44 t _of_fixed_clk_setup
-ffffffc008566bc4 t of_fixed_clk_probe
-ffffffc008566c10 t of_fixed_clk_remove
-ffffffc008566c60 T clk_gate_is_enabled
-ffffffc008566ce4 t clk_gate_enable
-ffffffc008566d18 t clk_gate_disable
-ffffffc008566d48 T __clk_hw_register_gate
-ffffffc008566edc T clk_register_gate
-ffffffc008566f50 T clk_unregister_gate
-ffffffc008566fa0 T clk_hw_unregister_gate
-ffffffc008566fe4 T __devm_clk_hw_register_gate
-ffffffc0085670f4 t devm_clk_hw_release_gate
-ffffffc008567134 t clk_gate_endisable
-ffffffc008567258 t clk_multiplier_recalc_rate
-ffffffc0085672ec t clk_multiplier_round_rate
-ffffffc008567430 t clk_multiplier_set_rate
-ffffffc00856753c T clk_mux_val_to_index
-ffffffc0085675b8 T clk_mux_index_to_val
-ffffffc0085675f8 t clk_mux_determine_rate
-ffffffc008567628 t clk_mux_set_parent
-ffffffc008567754 t clk_mux_get_parent
-ffffffc008567834 T __clk_hw_register_mux
-ffffffc0085679e0 T __devm_clk_hw_register_mux
-ffffffc008567b00 t devm_clk_hw_release_mux
-ffffffc008567b44 T clk_register_mux_table
-ffffffc008567bc4 T clk_unregister_mux
-ffffffc008567c14 T clk_hw_unregister_mux
-ffffffc008567c58 T clk_hw_register_composite
-ffffffc008567cb0 t __clk_hw_register_composite
-ffffffc008567f74 T clk_hw_register_composite_pdata
-ffffffc008567fd4 T clk_register_composite
-ffffffc00856803c T clk_register_composite_pdata
-ffffffc0085680a8 T clk_unregister_composite
-ffffffc0085680f8 T clk_hw_unregister_composite
-ffffffc00856813c T devm_clk_hw_register_composite_pdata
-ffffffc008568244 t clk_composite_get_parent
-ffffffc0085682a8 t clk_composite_set_parent
-ffffffc00856830c t clk_composite_determine_rate
-ffffffc00856865c t clk_composite_recalc_rate
-ffffffc0085686c0 t clk_composite_round_rate
-ffffffc008568724 t clk_composite_set_rate
-ffffffc008568788 t clk_composite_set_rate_and_parent
-ffffffc0085688e4 t clk_composite_is_enabled
-ffffffc008568948 t clk_composite_enable
-ffffffc0085689ac t clk_composite_disable
-ffffffc008568a10 t devm_clk_hw_release_composite
-ffffffc008568a54 T clk_fractional_divider_general_approximation
-ffffffc008568ae4 t clk_fd_recalc_rate
-ffffffc008568bcc t clk_fd_round_rate
-ffffffc008568d08 t clk_fd_set_rate
-ffffffc008568e6c T clk_hw_register_fractional_divider
-ffffffc008568fdc T clk_register_fractional_divider
-ffffffc008569158 T clk_hw_unregister_fractional_divider
-ffffffc00856919c t gpio_clk_driver_probe
-ffffffc008569298 T of_clk_set_defaults
-ffffffc008569648 T virtio_check_driver_offered_feature
-ffffffc0085696ac T virtio_config_changed
-ffffffc008569748 T virtio_add_status
-ffffffc0085697d0 T virtio_reset_device
-ffffffc00856981c T register_virtio_driver
-ffffffc008569868 T unregister_virtio_driver
-ffffffc008569894 T register_virtio_device
-ffffffc008569b44 T is_virtio_device
-ffffffc008569b68 T unregister_virtio_device
-ffffffc008569bb0 T virtio_device_freeze
-ffffffc008569c6c T virtio_device_restore
-ffffffc008569f68 t virtio_features_ok
-ffffffc00856a090 t virtio_dev_match
-ffffffc00856a104 t virtio_uevent
-ffffffc00856a148 t virtio_dev_probe
-ffffffc00856a4ec t virtio_dev_remove
-ffffffc00856a5f0 t status_show
-ffffffc00856a668 t status_show
-ffffffc00856a6d0 t features_show
-ffffffc00856a71c T virtio_max_dma_size
-ffffffc00856a75c T virtqueue_add_sgs
-ffffffc00856a820 t virtqueue_add.llvm.11426127213910973931
-ffffffc00856b56c T virtqueue_add_outbuf
-ffffffc00856b5e0 T virtqueue_add_inbuf
-ffffffc00856b654 T virtqueue_add_inbuf_ctx
-ffffffc00856b6c8 T virtqueue_kick_prepare
-ffffffc00856b7b4 T virtqueue_notify
-ffffffc00856b824 T virtqueue_kick
-ffffffc00856b96c T virtqueue_get_buf_ctx
-ffffffc00856bbfc T virtqueue_get_buf
-ffffffc00856bc2c T virtqueue_disable_cb
-ffffffc00856bcac T virtqueue_enable_cb_prepare
-ffffffc00856bd58 T virtqueue_poll
-ffffffc00856bddc T virtqueue_enable_cb
-ffffffc00856bef0 T virtqueue_enable_cb_delayed
-ffffffc00856c078 T virtqueue_detach_unused_buf
-ffffffc00856c15c T vring_interrupt
-ffffffc00856c220 T vring_create_virtqueue
-ffffffc00856c5a8 T virtqueue_resize
-ffffffc00856c70c t virtqueue_resize_packed
-ffffffc00856c984 t virtqueue_resize_split
-ffffffc00856cc30 T vring_new_virtqueue
-ffffffc00856ccf8 t __vring_new_virtqueue
-ffffffc00856cf58 T vring_del_virtqueue
-ffffffc00856cfdc t vring_free
-ffffffc00856d130 T vring_transport_features
-ffffffc00856d154 T virtqueue_get_vring_size
-ffffffc00856d168 T __virtqueue_break
-ffffffc00856d180 T __virtqueue_unbreak
-ffffffc00856d194 T virtqueue_is_broken
-ffffffc00856d1b4 T virtio_break_device
-ffffffc00856d220 T __virtio_unbreak_device
-ffffffc00856d288 T virtqueue_get_desc_addr
-ffffffc00856d2a8 T virtqueue_get_avail_addr
-ffffffc00856d2e8 T virtqueue_get_used_addr
-ffffffc00856d32c T virtqueue_get_vring
-ffffffc00856d340 T virtqueue_disable_dma_api_for_buffers
-ffffffc00856d350 t vring_unmap_extra_packed
-ffffffc00856d3a8 t vring_map_single
-ffffffc00856d4b4 t detach_buf_packed
-ffffffc00856d62c t detach_buf_split
-ffffffc00856d81c t vring_alloc_queue_packed
-ffffffc00856da28 t vring_free_packed
-ffffffc00856db24 t vring_alloc_queue_split
-ffffffc00856dd2c T virtio_require_restricted_mem_acc
-ffffffc00856dd40 t virtio_no_restricted_mem_acc
-ffffffc00856dd54 T vp_modern_probe
-ffffffc00856e2c0 t vp_modern_map_capability
-ffffffc00856e544 T vp_modern_remove
-ffffffc00856e5c0 T vp_modern_get_features
-ffffffc00856e630 T vp_modern_get_driver_features
-ffffffc00856e6a4 T vp_modern_set_features
-ffffffc00856e71c T vp_modern_generation
-ffffffc00856e754 T vp_modern_get_status
-ffffffc00856e788 T vp_modern_set_status
-ffffffc00856e7c4 T vp_modern_get_queue_reset
-ffffffc00856e814 T vp_modern_set_queue_reset
-ffffffc00856e8a4 T vp_modern_queue_vector
-ffffffc00856e904 T vp_modern_config_vector
-ffffffc00856e950 T vp_modern_queue_address
-ffffffc00856ea04 T vp_modern_set_queue_enable
-ffffffc00856ea60 T vp_modern_get_queue_enable
-ffffffc00856eabc T vp_modern_set_queue_size
-ffffffc00856eb18 T vp_modern_get_queue_size
-ffffffc00856eb6c T vp_modern_get_num_queues
-ffffffc00856eba0 T vp_modern_map_vq_notify
-ffffffc00856ec9c t readb.llvm.10633683798435136560
-ffffffc00856ed40 t writeb.llvm.10633683798435136560
-ffffffc00856eddc t readw.llvm.10633683798435136560
-ffffffc00856ee84 T vp_legacy_probe
-ffffffc00856ef9c T vp_legacy_remove
-ffffffc00856efe8 T vp_legacy_get_features
-ffffffc00856f01c T vp_legacy_get_driver_features
-ffffffc00856f054 T vp_legacy_set_features
-ffffffc00856f090 T vp_legacy_get_status
-ffffffc00856f0c4 T vp_legacy_set_status
-ffffffc00856f100 T vp_legacy_queue_vector
-ffffffc00856f168 T vp_legacy_config_vector
-ffffffc00856f1bc T vp_legacy_set_queue_address
-ffffffc00856f218 T vp_legacy_get_queue_enable
-ffffffc00856f274 T vp_legacy_get_queue_size
-ffffffc00856f2c4 t readl.llvm.841409458187342301
-ffffffc00856f368 t writel.llvm.841409458187342301
-ffffffc00856f404 t readb.llvm.841409458187342301
-ffffffc00856f4a8 t writeb.llvm.841409458187342301
-ffffffc00856f548 T virtio_pci_modern_probe
-ffffffc00856f5e8 t vp_config_vector
-ffffffc00856f618 t vp_config_vector
-ffffffc00856f648 t setup_vq
-ffffffc00856f7bc t setup_vq
-ffffffc00856f940 t del_vq
-ffffffc00856f9b8 t del_vq
-ffffffc00856fa2c T virtio_pci_modern_remove
-ffffffc00856fa5c t vp_get
-ffffffc00856fb34 t vp_get
-ffffffc00856fbc0 t vp_set
-ffffffc00856fc90 t vp_set
-ffffffc00856fd14 t vp_generation
-ffffffc00856fd44 t vp_get_status
-ffffffc00856fd78 t vp_get_status
-ffffffc00856fdac t vp_set_status
-ffffffc00856fdf4 t vp_set_status
-ffffffc00856fe3c t vp_reset
-ffffffc00856fea8 t vp_reset
-ffffffc00856ff00 t vp_modern_find_vqs
-ffffffc00856ff78 t vp_get_features
-ffffffc00856ffa8 t vp_get_features
-ffffffc00856ffdc t vp_finalize_features
-ffffffc00857007c t vp_finalize_features
-ffffffc0085700d8 t vp_get_shm_region
-ffffffc0085702fc t vp_modern_disable_vq_and_reset
-ffffffc0085703f0 t vp_modern_enable_vq_after_reset
-ffffffc00857050c t vp_active_vq
-ffffffc0085705e0 T vp_synchronize_vectors
-ffffffc008570654 T vp_notify
-ffffffc008570690 T vp_del_vqs
-ffffffc00857089c T vp_find_vqs
-ffffffc008570a38 t vp_find_vqs_msix
-ffffffc008570e18 T vp_bus_name
-ffffffc008570e40 T vp_set_vq_affinity
-ffffffc008570f00 T vp_get_vq_affinity
-ffffffc008570f54 t vp_setup_vq
-ffffffc0085710a0 t vp_config_changed
-ffffffc0085710d4 t vp_vring_interrupt
-ffffffc008571178 t vp_interrupt
-ffffffc008571240 t virtio_pci_probe
-ffffffc0085713ac t virtio_pci_remove
-ffffffc00857146c t virtio_pci_sriov_configure
-ffffffc00857152c t virtio_pci_release_dev
-ffffffc00857155c t virtio_pci_freeze
-ffffffc0085715ac t virtio_pci_restore
-ffffffc008571604 T virtio_pci_legacy_probe
-ffffffc00857168c T virtio_pci_legacy_remove
-ffffffc0085716bc t virtballoon_validate
-ffffffc008571728 t virtballoon_probe
-ffffffc008571b94 t virtballoon_remove
-ffffffc008571ca8 t virtballoon_changed
-ffffffc008571d80 t virtballoon_freeze
-ffffffc008571db4 t virtballoon_restore
-ffffffc008571f20 t update_balloon_stats_func
-ffffffc0085720cc t update_balloon_size_func
-ffffffc0085723f0 t init_vqs
-ffffffc008572724 t init_vqs
-ffffffc008572a78 t virtballoon_migratepage
-ffffffc008572d60 t report_free_page_func
-ffffffc008573224 t virtio_balloon_oom_notify
-ffffffc0085732f0 t virtballoon_free_page_report
-ffffffc0085733f4 t leak_balloon
-ffffffc008573650 t tell_host
-ffffffc008573774 t balloon_ack
-ffffffc0085737b8 t stats_request
-ffffffc00857381c t return_free_pages_to_mm
-ffffffc008573920 t virtio_balloon_shrinker_scan
-ffffffc008573968 t virtio_balloon_shrinker_count
-ffffffc008573980 t remove_common
-ffffffc008573a84 T tty_alloc_file
-ffffffc008573ae4 T tty_add_file
-ffffffc008573b70 T tty_free_file
-ffffffc008573ba8 T tty_name
-ffffffc008573bcc T tty_driver_name
-ffffffc008573bfc T tty_dev_name_to_number
-ffffffc008573d58 T tty_wakeup
-ffffffc008573df0 T tty_hangup
-ffffffc008573e2c T tty_vhangup
-ffffffc008573e58 t __tty_hangup.llvm.10326077018985032395
-ffffffc008574370 T tty_vhangup_self
-ffffffc008574440 T tty_kref_put
-ffffffc0085744f4 T tty_vhangup_session
-ffffffc008574524 T tty_hung_up_p
-ffffffc008574550 T __stop_tty
-ffffffc0085745b0 T stop_tty
-ffffffc008574644 T __start_tty
-ffffffc00857471c T start_tty
-ffffffc008574818 T tty_write_message
-ffffffc008574968 T redirected_tty_write
-ffffffc008574a34 t file_tty_write
-ffffffc008574d08 t tty_write.llvm.10326077018985032395
-ffffffc008574d38 T tty_send_xchar
-ffffffc008574f24 T tty_init_termios
-ffffffc008575014 T tty_standard_install
-ffffffc00857517c T tty_init_dev
-ffffffc008575468 T alloc_tty_struct
-ffffffc0085756a4 t release_tty
-ffffffc008575948 T tty_save_termios
-ffffffc0085759dc T tty_kclose
-ffffffc008575a9c T tty_release_struct
-ffffffc008575b30 T tty_release
-ffffffc008576170 t check_tty_count
-ffffffc00857626c T tty_kopen_exclusive
-ffffffc008576298 t tty_kopen
-ffffffc0085764e8 T tty_kopen_shared
-ffffffc008576518 T tty_do_resize
-ffffffc0085765b4 T tty_get_icount
-ffffffc008576620 T tty_ioctl
-ffffffc0085779f8 t tioccons
-ffffffc008577b2c t tiocsetd
-ffffffc008577c98 T tty_devnum
-ffffffc008577cb8 t send_break
-ffffffc008577e1c t hung_up_tty_ioctl
-ffffffc008577e40 T __do_SAK
-ffffffc00857815c t this_tty
-ffffffc0085781a0 T do_SAK
-ffffffc0085781e0 t do_tty_hangup
-ffffffc008578214 t do_SAK_work
-ffffffc008578244 T tty_put_char
-ffffffc0085782f0 T tty_register_device
-ffffffc008578324 T tty_register_device_attr
-ffffffc0085785bc t tty_device_create_release
-ffffffc0085785e8 T tty_unregister_device
-ffffffc008578658 T __tty_alloc_driver
-ffffffc008578784 T tty_driver_kref_put
-ffffffc0085788e0 T tty_register_driver
-ffffffc008578b74 T tty_unregister_driver
-ffffffc008578bfc T tty_default_fops
-ffffffc008578c34 T console_sysfs_notify
-ffffffc008578c78 t hung_up_tty_read
-ffffffc008578c8c t hung_up_tty_write
-ffffffc008578ca0 t hung_up_tty_poll
-ffffffc008578cb4 t hung_up_tty_compat_ioctl
-ffffffc008578cd8 t hung_up_tty_fasync
-ffffffc008578cec t release_one_tty
-ffffffc008578dd8 t tty_lookup_driver
-ffffffc008578fc4 t tty_read.llvm.10326077018985032395
-ffffffc00857921c t tty_poll.llvm.10326077018985032395
-ffffffc0085792fc t tty_open.llvm.10326077018985032395
-ffffffc008579bb8 t tty_fasync.llvm.10326077018985032395
-ffffffc008579ddc t tty_show_fdinfo.llvm.10326077018985032395
-ffffffc008579e40 t tty_reopen
-ffffffc008579f38 t tty_devnode
-ffffffc008579f6c t show_cons_active
-ffffffc00857a178 T n_tty_inherit_ops
-ffffffc00857a1c0 t n_tty_open
-ffffffc00857a2a4 t n_tty_close
-ffffffc00857a350 t n_tty_flush_buffer
-ffffffc00857a42c t n_tty_read
-ffffffc00857ab4c t n_tty_write
-ffffffc00857b030 t n_tty_ioctl
-ffffffc00857b3bc t n_tty_set_termios
-ffffffc00857ba30 t n_tty_poll
-ffffffc00857bc48 t n_tty_receive_buf
-ffffffc00857bc78 t n_tty_write_wakeup
-ffffffc00857bce4 t n_tty_receive_buf2
-ffffffc00857bd14 t n_tty_lookahead_flow_ctrl
-ffffffc00857bda8 t n_tty_kick_worker
-ffffffc00857be78 t canon_copy_from_read_buf
-ffffffc00857c148 t n_tty_check_unthrottle
-ffffffc00857c220 t __process_echoes
-ffffffc00857c5d0 t do_output_char
-ffffffc00857c7d0 t n_tty_receive_buf_common
-ffffffc00857ccc0 t n_tty_receive_buf_closing
-ffffffc00857ce48 t n_tty_receive_buf_standard
-ffffffc00857e034 t n_tty_receive_char_flagged
-ffffffc00857e210 t isig
-ffffffc00857e380 t n_tty_receive_char_flow_ctrl
-ffffffc00857e46c t n_tty_receive_char
-ffffffc00857e780 t n_tty_receive_signal_char
-ffffffc00857e958 t commit_echoes
-ffffffc00857ea24 t echo_char
-ffffffc00857eaf4 T tty_chars_in_buffer
-ffffffc00857eb4c T tty_write_room
-ffffffc00857eba4 T tty_driver_flush_buffer
-ffffffc00857ebf4 T tty_unthrottle
-ffffffc00857ecac T tty_throttle_safe
-ffffffc00857ed74 T tty_unthrottle_safe
-ffffffc00857ee40 T tty_wait_until_sent
-ffffffc00857efe0 T tty_termios_copy_hw
-ffffffc00857f024 T tty_termios_hw_change
-ffffffc00857f078 T tty_get_char_size
-ffffffc00857f090 T tty_get_frame_size
-ffffffc00857f0c8 T tty_set_termios
-ffffffc00857f320 W user_termio_to_kernel_termios
-ffffffc00857f500 W kernel_termios_to_user_termio
-ffffffc00857f6c8 W user_termios_to_kernel_termios
-ffffffc00857f860 W kernel_termios_to_user_termios
-ffffffc00857f9cc W user_termios_to_kernel_termios_1
-ffffffc00857fb64 W kernel_termios_to_user_termios_1
-ffffffc00857fcd0 T tty_mode_ioctl
-ffffffc00858042c t set_termios
-ffffffc0085805b0 T tty_perform_flush
-ffffffc00858062c t __tty_perform_flush
-ffffffc00858081c T n_tty_ioctl_helper
-ffffffc00858095c T tty_register_ldisc
-ffffffc0085809e0 T tty_unregister_ldisc
-ffffffc008580a4c t tty_ldiscs_seq_start.llvm.10697298482216717977
-ffffffc008580a68 t tty_ldiscs_seq_stop.llvm.10697298482216717977
-ffffffc008580a78 t tty_ldiscs_seq_next.llvm.10697298482216717977
-ffffffc008580a9c t tty_ldiscs_seq_show.llvm.10697298482216717977
-ffffffc008580b7c T tty_ldisc_ref_wait
-ffffffc008580bd4 T tty_ldisc_ref
-ffffffc008580c2c T tty_ldisc_deref
-ffffffc008580c60 T tty_ldisc_lock
-ffffffc008580d3c T tty_ldisc_unlock
-ffffffc008580dd4 T tty_ldisc_flush
-ffffffc008580e58 T tty_set_ldisc
-ffffffc0085811f8 t tty_ldisc_get
-ffffffc0085812f8 t tty_ldisc_put
-ffffffc008581358 t tty_ldisc_restore
-ffffffc0085813f0 T tty_ldisc_reinit
-ffffffc008581614 T tty_ldisc_hangup
-ffffffc008581900 t tty_ldisc_kill
-ffffffc0085819ec T tty_ldisc_setup
-ffffffc008581c0c T tty_ldisc_release
-ffffffc008581d7c T tty_ldisc_init
-ffffffc008581dc8 T tty_ldisc_deinit
-ffffffc008581e34 T tty_sysctl_init
-ffffffc008581e74 t tty_ldisc_failto
-ffffffc008581fdc T tty_buffer_lock_exclusive
-ffffffc00858203c T tty_buffer_unlock_exclusive
-ffffffc0085820dc T tty_buffer_space_avail
-ffffffc008582108 T tty_buffer_free_all
-ffffffc008582234 T tty_buffer_flush
-ffffffc0085823d4 T tty_buffer_request_room
-ffffffc008582400 t __tty_buffer_request_room.llvm.15637584603092676341
-ffffffc008582530 T tty_insert_flip_string_fixed_flag
-ffffffc008582628 T tty_insert_flip_string_flags
-ffffffc008582710 T __tty_insert_flip_char
-ffffffc00858279c T tty_prepare_flip_string
-ffffffc008582834 T tty_ldisc_receive_buf
-ffffffc0085828d0 T tty_flip_buffer_push
-ffffffc00858291c T tty_insert_flip_string_and_push_buffer
-ffffffc008582a4c T tty_buffer_init
-ffffffc008582ae0 t flush_to_ldisc
-ffffffc008582d44 T tty_buffer_set_limit
-ffffffc008582d70 T tty_buffer_set_lock_subclass
-ffffffc008582d80 T tty_buffer_restart_work
-ffffffc008582dc0 T tty_buffer_cancel_work
-ffffffc008582df8 T tty_buffer_flush_work
-ffffffc008582e28 t tty_port_default_receive_buf
-ffffffc008582eb4 t tty_port_default_lookahead_buf
-ffffffc008582f58 t tty_port_default_wakeup
-ffffffc008583028 T tty_port_init
-ffffffc0085830f4 T tty_port_link_device
-ffffffc008583124 T tty_port_register_device
-ffffffc008583180 T tty_port_register_device_attr
-ffffffc0085831dc T tty_port_register_device_attr_serdev
-ffffffc008583238 T tty_port_register_device_serdev
-ffffffc008583294 T tty_port_unregister_device
-ffffffc0085832c8 T tty_port_alloc_xmit_buf
-ffffffc00858334c T tty_port_free_xmit_buf
-ffffffc0085833ac T tty_port_destroy
-ffffffc0085833f4 T tty_port_put
-ffffffc0085834f0 T tty_port_tty_get
-ffffffc0085835a4 T tty_port_tty_set
-ffffffc008583660 T tty_port_hangup
-ffffffc00858381c T tty_port_tty_hangup
-ffffffc008583908 T tty_port_tty_wakeup
-ffffffc008583954 T tty_port_carrier_raised
-ffffffc0085839ac T tty_port_raise_dtr_rts
-ffffffc008583a00 T tty_port_lower_dtr_rts
-ffffffc008583a54 T tty_port_block_til_ready
-ffffffc008583d70 T tty_port_close_start
-ffffffc008583efc T tty_port_close_end
-ffffffc008583fdc T tty_port_close
-ffffffc008584154 T tty_port_install
-ffffffc00858418c T tty_port_open
-ffffffc00858434c T tty_lock
-ffffffc0085843dc T tty_lock_interruptible
-ffffffc008584480 T tty_unlock
-ffffffc0085844c4 T tty_lock_slave
-ffffffc008584560 T tty_unlock_slave
-ffffffc0085845b4 T tty_set_lock_subclass
-ffffffc0085845c4 T __init_ldsem
-ffffffc0085845f4 T ldsem_down_read_trylock
-ffffffc008584670 T ldsem_down_write_trylock
-ffffffc0085846f0 T ldsem_up_read
-ffffffc0085847d4 T ldsem_up_write
-ffffffc0085848ac t __ldsem_wake_readers
-ffffffc008584a28 T tty_termios_baud_rate
-ffffffc008584a88 T tty_termios_input_baud_rate
-ffffffc008584b10 T tty_termios_encode_baud_rate
-ffffffc008584c5c T tty_encode_baud_rate
-ffffffc008584c8c T __tty_check_change
-ffffffc008584df4 T tty_check_change
-ffffffc008584e24 T proc_clear_tty
-ffffffc008584e80 T tty_open_proc_set_tty
-ffffffc008584f14 t __proc_set_tty
-ffffffc0085850c8 T get_current_tty
-ffffffc00858517c T session_clear_tty
-ffffffc00858520c T tty_signal_session_leader
-ffffffc008585438 T disassociate_ctty
-ffffffc008585788 T tty_get_pgrp
-ffffffc00858583c T no_tty
-ffffffc0085858a0 T tty_jobctrl_ioctl
-ffffffc008586034 t session_of_pgrp
-ffffffc00858608c t n_null_open
-ffffffc0085860a0 t n_null_close
-ffffffc0085860b0 t n_null_read
-ffffffc0085860c4 t n_null_write
-ffffffc0085860d8 t n_null_receivebuf
-ffffffc0085860e8 T ptm_open_peer
-ffffffc0085861f8 t ptmx_open
-ffffffc0085863d8 t ptm_unix98_lookup
-ffffffc0085863ec t pty_unix98_install
-ffffffc008586624 t pty_unix98_remove
-ffffffc008586688 t pty_open
-ffffffc0085867b8 t pty_close
-ffffffc008586984 t pty_cleanup
-ffffffc0085869b4 t pty_write
-ffffffc008586a00 t pty_write_room
-ffffffc008586a44 t pty_unix98_ioctl
-ffffffc008587260 t pty_unthrottle
-ffffffc0085872cc t pty_flush_buffer
-ffffffc008587358 t pty_resize
-ffffffc00858743c t pty_show_fdinfo
-ffffffc00858747c t pts_unix98_lookup
-ffffffc0085874e0 t pty_set_termios
-ffffffc008587614 t pty_stop
-ffffffc008587698 t pty_start
-ffffffc00858771c T tty_audit_exit
-ffffffc0085877c4 T tty_audit_fork
-ffffffc0085877e4 T tty_audit_tiocsti
-ffffffc0085878f8 T tty_audit_push
-ffffffc0085879a4 t tty_audit_log
-ffffffc008587ae4 T tty_audit_add_data
-ffffffc008587dc0 T sysrq_mask
-ffffffc008587de8 T __handle_sysrq
-ffffffc008587f9c T handle_sysrq
-ffffffc008587fe8 T sysrq_toggle_support
-ffffffc008588064 t sysrq_register_handler
-ffffffc0085881a4 T register_sysrq_key
-ffffffc008588258 t __sysrq_swap_key_ops.llvm.7333649797225248481
-ffffffc008588324 T unregister_sysrq_key
-ffffffc0085883e4 t sysrq_handle_reboot
-ffffffc008588428 t sysrq_handle_loglevel
-ffffffc00858847c t sysrq_handle_crash
-ffffffc0085884a4 t sysrq_handle_term
-ffffffc008588558 t sysrq_handle_moom
-ffffffc008588598 t moom_callback
-ffffffc008588640 t sysrq_handle_kill
-ffffffc0085886f4 t sysrq_handle_thaw
-ffffffc008588720 t sysrq_handle_SAK
-ffffffc008588780 t sysrq_handle_showallcpus
-ffffffc008588854 t sysrq_showregs_othercpus
-ffffffc008588890 t showacpu
-ffffffc008588944 t sysrq_handle_showmem
-ffffffc00858897c t sysrq_handle_unrt
-ffffffc0085889a8 t sysrq_handle_showregs
-ffffffc008588a28 t sysrq_handle_show_timers
-ffffffc008588a54 t sysrq_handle_unraw
-ffffffc008588a88 t sysrq_handle_sync
-ffffffc008588ab4 t sysrq_handle_showstate
-ffffffc008588ae8 t sysrq_handle_mountro
-ffffffc008588b14 t sysrq_handle_showstate_blocked
-ffffffc008588b44 t sysrq_ftrace_dump
-ffffffc008588b74 t sysrq_reset_seq_param_set
-ffffffc008588c18 t sysrq_filter
-ffffffc00858909c t sysrq_connect
-ffffffc0085891a8 t sysrq_disconnect
-ffffffc008589208 t sysrq_do_reset
-ffffffc008589250 t sysrq_reinject_alt_sysrq
-ffffffc008589328 t write_sysrq_trigger
-ffffffc0085894ac T vt_event_post
-ffffffc008589588 T vt_waitactive
-ffffffc008589784 T vt_ioctl
-ffffffc00858aeb4 t vt_setactivate
-ffffffc00858b16c t vt_reldisp
-ffffffc00858b204 t vt_disallocate_all
-ffffffc00858b374 t vt_disallocate
-ffffffc00858b480 t vt_resizex
-ffffffc00858b74c t vt_event_wait_ioctl
-ffffffc00858bb9c T reset_vc
-ffffffc00858bc00 T vc_SAK
-ffffffc00858bc80 T change_console
-ffffffc00858bd64 t complete_change_console
-ffffffc00858bf04 T vt_move_to_console
-ffffffc00858bfb4 T pm_set_vt_switch
-ffffffc00858bffc t vt_kdsetmode
-ffffffc00858c080 T vcs_make_sysfs
-ffffffc00858c12c T vcs_remove_sysfs
-ffffffc00858c194 t vcs_lseek
-ffffffc00858c2f8 t vcs_read
-ffffffc00858c99c t vcs_write
-ffffffc00858d0f4 t vcs_poll
-ffffffc00858d198 t vcs_open
-ffffffc00858d208 t vcs_release
-ffffffc00858d25c t vcs_fasync
-ffffffc00858d2dc t vcs_poll_data_get
-ffffffc00858d3ec t vcs_notifier
-ffffffc00858d4a4 T clear_selection
-ffffffc00858d518 T vc_is_sel
-ffffffc00858d538 T sel_loadlut
-ffffffc00858d6e8 T set_selection_user
-ffffffc00858d8a4 T set_selection_kernel
-ffffffc00858e240 T paste_selection
-ffffffc00858e3fc T register_keyboard_notifier
-ffffffc00858e434 T unregister_keyboard_notifier
-ffffffc00858e46c T kd_mksound
-ffffffc00858e51c t kd_sound_helper
-ffffffc00858e5b4 T kbd_rate
-ffffffc00858e640 t kbd_rate_helper
-ffffffc00858e6d8 T vt_set_leds_compute_shiftstate
-ffffffc00858e848 t do_compute_shiftstate
-ffffffc00858e93c T setledstate
-ffffffc00858ea14 T vt_get_leds
-ffffffc00858eab4 T vt_set_led_state
-ffffffc00858ebcc T vt_kbd_con_start
-ffffffc00858ecb4 T vt_kbd_con_stop
-ffffffc00858ed9c T vt_do_diacrit
-ffffffc00858f8b0 T vt_do_kdskbmode
-ffffffc00858fb90 T vt_do_kdskbmeta
-ffffffc00858fc5c T vt_do_kbkeycode_ioctl
-ffffffc00859000c T vt_do_kdsk_ioctl
-ffffffc00859061c T vt_do_kdgkb_ioctl
-ffffffc008590aac T vt_do_kdskled
-ffffffc008590f90 T vt_do_kdgkbmode
-ffffffc008591000 T vt_do_kdgkbmeta
-ffffffc008591054 T vt_reset_unicode
-ffffffc0085910e8 T vt_get_shift_state
-ffffffc008591100 T vt_reset_keyboard
-ffffffc0085911d4 T vt_get_kbd_mode_bit
-ffffffc008591228 T vt_set_kbd_mode_bit
-ffffffc0085912cc T vt_clr_kbd_mode_bit
-ffffffc008591374 t kd_nosound
-ffffffc0085913b8 t kbd_event
-ffffffc008591af4 t kbd_match
-ffffffc008591b74 t kbd_connect
-ffffffc008591c18 t kbd_disconnect
-ffffffc008591c60 t kbd_start
-ffffffc008591d3c t k_unicode
-ffffffc008591e38 t handle_diacr
-ffffffc008591f94 t to_utf8
-ffffffc0085921f8 t k_self
-ffffffc008592248 t k_fn
-ffffffc0085922ec t k_spec
-ffffffc008592394 t k_pad
-ffffffc008592634 t k_dead
-ffffffc0085926a8 t k_cons
-ffffffc0085926e4 t k_cur
-ffffffc008592794 t k_shift
-ffffffc00859297c t k_meta
-ffffffc008592adc t k_ascii
-ffffffc008592b4c t k_lock
-ffffffc008592b8c t k_lowercase
-ffffffc008592bc0 t k_slock
-ffffffc008592c50 t k_dead2
-ffffffc008592ca8 t k_brl
-ffffffc008592f1c t k_ignore
-ffffffc008592f2c t fn_null
-ffffffc008593020 t fn_enter
-ffffffc0085931c8 t fn_show_ptregs
-ffffffc00859322c t fn_show_mem
-ffffffc008593264 t fn_show_state
-ffffffc008593294 t fn_send_intr
-ffffffc00859331c t fn_lastcons
-ffffffc008593350 t fn_caps_toggle
-ffffffc008593388 t fn_num
-ffffffc00859341c t fn_hold
-ffffffc008593470 t fn_scroll_forw
-ffffffc0085934a0 t fn_scroll_back
-ffffffc0085934cc t fn_boot_it
-ffffffc0085934f8 t fn_caps_on
-ffffffc008593530 t fn_compose
-ffffffc00859354c t fn_SAK
-ffffffc0085935ac t fn_dec_console
-ffffffc008593634 t fn_inc_console
-ffffffc0085936b0 t fn_spawn_con
-ffffffc008593728 t fn_bare_num
-ffffffc00859375c t applkey
-ffffffc0085937d8 t kbd_update_leds_helper
-ffffffc00859386c t kbd_bh
-ffffffc00859398c t getkeycode_helper
-ffffffc0085939d8 t setkeycode_helper
-ffffffc008593a24 T set_translate
-ffffffc008593a68 T inverse_translate
-ffffffc008593aec T con_set_trans_old
-ffffffc008593ce8 t update_user_maps
-ffffffc008593e34 T con_get_trans_old
-ffffffc008594118 T conv_uni_to_pc
-ffffffc0085941d8 T con_set_trans_new
-ffffffc0085943b0 T con_get_trans_new
-ffffffc008594578 T con_free_unimap
-ffffffc0085945d4 t con_release_unimap
-ffffffc00859478c T con_clear_unimap
-ffffffc00859483c T con_set_unimap
-ffffffc008594c9c t con_unify_unimap
-ffffffc008594dec t set_inverse_transl
-ffffffc008594f2c T con_set_default_unimap
-ffffffc008595260 T con_copy_unimap
-ffffffc008595314 T con_get_unimap
-ffffffc00859571c T conv_8bit_to_uni
-ffffffc008595750 T conv_uni_to_8bit
-ffffffc0085957b8 T register_vt_notifier
-ffffffc0085957f0 T unregister_vt_notifier
-ffffffc008595828 T schedule_console_callback
-ffffffc008595868 T vc_uniscr_check
-ffffffc008595a10 T vc_uniscr_copy_line
-ffffffc008595b30 T update_region
-ffffffc008595e44 t hide_cursor
-ffffffc008595f58 t do_update_region
-ffffffc0085961c8 T invert_screen
-ffffffc008596598 T complement_pos
-ffffffc008596864 T clear_buffer_attributes
-ffffffc0085968bc T redraw_screen
-ffffffc0085970e8 T con_is_visible
-ffffffc008597138 t set_origin
-ffffffc00859724c t set_palette
-ffffffc0085972e0 t update_attr
-ffffffc0085974f4 T vc_cons_allocated
-ffffffc008597534 T vc_allocate
-ffffffc008597830 t vc_init
-ffffffc0085979e4 T vc_resize
-ffffffc008597a1c t vc_do_resize.llvm.16410117752014341364
-ffffffc00859810c T vc_deallocate
-ffffffc008598248 T scrollback
-ffffffc00859829c T scrollfront
-ffffffc0085982f8 T mouse_report
-ffffffc0085983a8 T mouse_reporting
-ffffffc0085983e8 T set_console
-ffffffc0085984a0 T vt_kmsg_redirect
-ffffffc0085984fc T tioclinux
-ffffffc008598990 t unblank_screen
-ffffffc0085989bc t set_vesa_blanking
-ffffffc008598b28 T do_blank_screen
-ffffffc0085991b4 T con_is_bound
-ffffffc00859922c T con_debug_enter
-ffffffc0085992d8 T con_debug_leave
-ffffffc0085993a0 T do_unregister_con_driver
-ffffffc008599638 T do_take_over_console
-ffffffc008599eb0 T give_up_console
-ffffffc008599ef4 T do_unblank_screen
-ffffffc00859a248 T poke_blanked_console
-ffffffc00859a350 T con_set_cmap
-ffffffc00859a67c T con_get_cmap
-ffffffc00859a888 T reset_palette
-ffffffc00859a964 T con_font_op
-ffffffc00859ae38 T screen_glyph
-ffffffc00859aec0 T screen_glyph_unicode
-ffffffc00859af80 T screen_pos
-ffffffc00859afec T getconsxy
-ffffffc00859b020 T putconsxy
-ffffffc00859b314 t gotoxy
-ffffffc00859b3a0 T vcs_scr_readw
-ffffffc00859b3cc T vcs_scr_writew
-ffffffc00859b410 t add_softcursor
-ffffffc00859b518 T vcs_scr_updated
-ffffffc00859b584 T vc_scrolldelta_helper
-ffffffc00859b61c t console_callback
-ffffffc00859b8b0 t vc_port_destruct
-ffffffc00859b8d8 t reset_terminal
-ffffffc00859bad0 t csi_J
-ffffffc00859c014 t vt_console_print
-ffffffc00859c604 t vt_console_device
-ffffffc00859c634 t lf
-ffffffc00859c708 t cr
-ffffffc00859c798 t con_scroll
-ffffffc00859c9c8 t show_tty_active
-ffffffc00859ca10 t con_install
-ffffffc00859cba0 t con_open
-ffffffc00859cbb4 t con_close
-ffffffc00859cbc4 t con_shutdown
-ffffffc00859cc0c t con_cleanup
-ffffffc00859cc3c t con_write
-ffffffc00859cc84 t con_put_char
-ffffffc00859cce8 t con_flush_chars
-ffffffc00859ced0 t con_write_room
-ffffffc00859cef0 t con_throttle
-ffffffc00859cf00 t con_unthrottle
-ffffffc00859cf40 t con_stop
-ffffffc00859cf94 t con_start
-ffffffc00859cfe8 t vt_resize
-ffffffc00859d04c t do_con_write
-ffffffc00859e7c8 t ri
-ffffffc00859e848 t respond_ID
-ffffffc00859e898 t restore_cur
-ffffffc00859e98c t set_mode
-ffffffc00859ebfc t status_report
-ffffffc00859ec4c t cursor_report
-ffffffc00859ed0c t gotoxay
-ffffffc00859eda4 t csi_K
-ffffffc00859eed8 t csi_L
-ffffffc00859ef40 t csi_M
-ffffffc00859efa8 t csi_P
-ffffffc00859f0fc t csi_m
-ffffffc00859f384 t csi_X
-ffffffc00859f494 t setterm_command
-ffffffc00859f78c t vc_setGx
-ffffffc00859f838 t vc_t416_color
-ffffffc00859fa4c t rgb_foreground
-ffffffc00859fae8 t rgb_background
-ffffffc00859fb2c t insert_char
-ffffffc00859fc6c t ucs_cmp
-ffffffc00859fca4 t con_driver_unregister_callback
-ffffffc00859fd6c t show_bind
-ffffffc00859fe2c t store_bind
-ffffffc00859fe7c t show_name
-ffffffc00859fee0 t blank_screen_t
-ffffffc00859ff2c T hvc_instantiate
-ffffffc00859ffe8 t hvc_get_by_index
-ffffffc0085a0138 T hvc_kick
-ffffffc0085a0180 T hvc_poll
-ffffffc0085a01ac t __hvc_poll.llvm.1700140598062689160
-ffffffc0085a0564 T __hvc_resize
-ffffffc0085a05a8 T hvc_alloc
-ffffffc0085a0a74 t hvc_set_winsz
-ffffffc0085a0b20 T hvc_remove
-ffffffc0085a0bdc t hvc_console_print
-ffffffc0085a0dfc t hvc_console_device
-ffffffc0085a0e48 t hvc_console_setup
-ffffffc0085a0e7c t hvc_port_destruct
-ffffffc0085a0f20 t khvcd
-ffffffc0085a1058 t hvc_install
-ffffffc0085a10d8 t hvc_open
-ffffffc0085a1234 t hvc_close
-ffffffc0085a139c t hvc_cleanup
-ffffffc0085a13cc t hvc_write
-ffffffc0085a15d8 t hvc_write_room
-ffffffc0085a1608 t hvc_chars_in_buffer
-ffffffc0085a1630 t hvc_unthrottle
-ffffffc0085a1678 t hvc_hangup
-ffffffc0085a1730 t hvc_tiocmget
-ffffffc0085a1790 t hvc_tiocmset
-ffffffc0085a17f0 T uart_write_wakeup
-ffffffc0085a1828 T uart_update_timeout
-ffffffc0085a1888 T uart_get_baud_rate
-ffffffc0085a1a4c T uart_get_divisor
-ffffffc0085a1a98 T uart_xchar_out
-ffffffc0085a1b00 T uart_console_write
-ffffffc0085a1bb4 T uart_parse_earlycon
-ffffffc0085a1d3c T uart_parse_options
-ffffffc0085a1dd4 T uart_set_options
-ffffffc0085a1f60 T uart_suspend_port
-ffffffc0085a230c t serial_match_port
-ffffffc0085a2340 T uart_resume_port
-ffffffc0085a27e0 t uart_change_speed
-ffffffc0085a2940 t uart_shutdown
-ffffffc0085a2c20 T uart_register_driver
-ffffffc0085a2df4 T uart_unregister_driver
-ffffffc0085a2e90 T uart_console_device
-ffffffc0085a2eb0 T uart_add_one_port
-ffffffc0085a3490 T uart_remove_one_port
-ffffffc0085a3700 T uart_match_port
-ffffffc0085a3780 T uart_handle_dcd_change
-ffffffc0085a3868 T uart_handle_cts_change
-ffffffc0085a393c T uart_insert_char
-ffffffc0085a3a70 T uart_try_toggle_sysrq
-ffffffc0085a3a84 T uart_get_rs485_mode
-ffffffc0085a3bb0 t uart_sanitize_serial_rs485_delays
-ffffffc0085a3d04 t uart_sanitize_serial_rs485
-ffffffc0085a3dd4 t uart_install
-ffffffc0085a3e18 t uart_open
-ffffffc0085a3e58 t uart_close
-ffffffc0085a3ee0 t uart_write
-ffffffc0085a41fc t uart_put_char
-ffffffc0085a43bc t uart_flush_chars
-ffffffc0085a43e8 t uart_write_room
-ffffffc0085a4524 t uart_chars_in_buffer
-ffffffc0085a465c t uart_ioctl
-ffffffc0085a4b7c t uart_set_termios
-ffffffc0085a4d2c t uart_throttle
-ffffffc0085a4f08 t uart_unthrottle
-ffffffc0085a50e4 t uart_stop
-ffffffc0085a5224 t uart_start
-ffffffc0085a53b4 t uart_hangup
-ffffffc0085a5530 t uart_break_ctl
-ffffffc0085a55d0 t uart_flush_buffer
-ffffffc0085a5734 t uart_set_ldisc
-ffffffc0085a57c4 t uart_wait_until_sent
-ffffffc0085a5a54 t uart_send_xchar
-ffffffc0085a5be0 t uart_tiocmget
-ffffffc0085a5c90 t uart_tiocmset
-ffffffc0085a5d74 t uart_get_icount
-ffffffc0085a5f04 t uart_get_info_user
-ffffffc0085a6018 t uart_set_info_user
-ffffffc0085a6558 t uart_proc_show
-ffffffc0085a6974 t uart_get_lsr_info
-ffffffc0085a6b58 t uart_get_rs485_config
-ffffffc0085a6d24 t uart_set_rs485_config
-ffffffc0085a7140 t uart_set_iso7816_config
-ffffffc0085a74c8 t uart_get_iso7816_config
-ffffffc0085a76b0 t uart_startup
-ffffffc0085a7a2c t uart_carrier_raised
-ffffffc0085a7ba4 t uart_dtr_rts
-ffffffc0085a7d18 t uart_tty_port_shutdown
-ffffffc0085a7e94 t uart_port_activate
-ffffffc0085a7f28 t uartclk_show
-ffffffc0085a7fac t line_show
-ffffffc0085a802c t port_show
-ffffffc0085a80b8 t flags_show
-ffffffc0085a8138 t flags_show
-ffffffc0085a81bc t xmit_fifo_size_show
-ffffffc0085a823c t close_delay_show
-ffffffc0085a82d0 t closing_wait_show
-ffffffc0085a8370 t custom_divisor_show
-ffffffc0085a83f0 t io_type_show
-ffffffc0085a8470 t iomem_base_show
-ffffffc0085a84f0 t iomem_reg_shift_show
-ffffffc0085a8570 t console_show
-ffffffc0085a8618 t console_store
-ffffffc0085a8730 T serial8250_get_port
-ffffffc0085a875c T serial8250_set_isa_configurator
-ffffffc0085a8774 T serial8250_suspend_port
-ffffffc0085a88b4 T serial8250_resume_port
-ffffffc0085a8a28 T serial8250_register_8250_port
-ffffffc0085a8fa0 t serial_8250_overrun_backoff_work
-ffffffc0085a9044 T serial8250_unregister_port
-ffffffc0085a9180 t univ8250_console_write
-ffffffc0085a91cc t univ8250_console_setup
-ffffffc0085a9250 t univ8250_console_exit
-ffffffc0085a929c t univ8250_console_match
-ffffffc0085a94fc t serial8250_timeout
-ffffffc0085a95b8 t univ8250_setup_irq
-ffffffc0085a9740 t univ8250_release_irq
-ffffffc0085a9808 t univ8250_setup_timer
-ffffffc0085a9914 t serial8250_interrupt
-ffffffc0085a99e4 t serial_do_unlink
-ffffffc0085a9ae8 t serial8250_backup_timeout
-ffffffc0085a9d0c t serial8250_probe
-ffffffc0085a9eb4 t serial8250_remove
-ffffffc0085a9fb0 t serial8250_suspend
-ffffffc0085aa0a8 t serial8250_resume
-ffffffc0085aa530 T serial8250_clear_and_reinit_fifos
-ffffffc0085aa61c T serial8250_rpm_get
-ffffffc0085aa658 T serial8250_rpm_put
-ffffffc0085aa6ac T serial8250_em485_destroy
-ffffffc0085aa704 T serial8250_em485_config
-ffffffc0085aa850 T serial8250_rpm_get_tx
-ffffffc0085aa8c4 T serial8250_rpm_put_tx
-ffffffc0085aa950 T serial8250_em485_stop_tx
-ffffffc0085aaae0 T serial8250_em485_start_tx
-ffffffc0085aac00 t serial8250_stop_rx
-ffffffc0085aacac T serial8250_read_char
-ffffffc0085aae10 t uart_handle_break
-ffffffc0085aaec8 T serial8250_rx_chars
-ffffffc0085aaf64 T serial8250_tx_chars
-ffffffc0085ab150 t serial8250_stop_tx
-ffffffc0085ab22c t __stop_tx
-ffffffc0085ab3e4 T serial8250_modem_status
-ffffffc0085ab4cc T serial8250_handle_irq
-ffffffc0085ab6ec T serial8250_do_get_mctrl
-ffffffc0085ab788 T serial8250_do_set_mctrl
-ffffffc0085ab7ec T serial8250_do_startup
-ffffffc0085ac63c t serial8250_tx_threshold_handle_irq
-ffffffc0085ac6f0 t wait_for_xmitr
-ffffffc0085ac83c t serial8250_set_mctrl
-ffffffc0085ac8d0 T serial8250_do_shutdown
-ffffffc0085acb94 T serial8250_do_set_divisor
-ffffffc0085acc34 T serial8250_update_uartclk
-ffffffc0085acf78 T serial8250_do_set_termios
-ffffffc0085ad5e0 T serial8250_do_set_ldisc
-ffffffc0085ad718 t serial8250_enable_ms
-ffffffc0085ad7c4 T serial8250_do_pm
-ffffffc0085ad9f8 T serial8250_init_port
-ffffffc0085ada28 T serial8250_set_defaults
-ffffffc0085adb84 t serial8250_tx_dma
-ffffffc0085adb98 t serial8250_rx_dma
-ffffffc0085adbac T serial8250_console_write
-ffffffc0085ae22c t serial8250_console_putchar
-ffffffc0085ae298 T serial8250_console_setup
-ffffffc0085ae49c T serial8250_console_exit
-ffffffc0085ae4d8 t serial8250_em485_handle_stop_tx
-ffffffc0085ae5a8 t serial8250_em485_handle_start_tx
-ffffffc0085ae744 t default_serial_dl_read
-ffffffc0085ae7d4 t default_serial_dl_write
-ffffffc0085ae860 t hub6_serial_in
-ffffffc0085ae8c8 t hub6_serial_out
-ffffffc0085ae91c t mem_serial_in
-ffffffc0085ae95c t mem_serial_out
-ffffffc0085ae99c t mem16_serial_in
-ffffffc0085ae9dc t mem16_serial_out
-ffffffc0085aea1c t mem32_serial_in
-ffffffc0085aea58 t mem32_serial_out
-ffffffc0085aea98 t mem32be_serial_in
-ffffffc0085aead0 t mem32be_serial_out
-ffffffc0085aeafc t io_serial_in
-ffffffc0085aeb48 t io_serial_out
-ffffffc0085aeb80 t serial8250_default_handle_irq
-ffffffc0085aec2c t serial8250_tx_empty
-ffffffc0085aed00 t serial8250_get_mctrl
-ffffffc0085aedc8 t serial8250_start_tx
-ffffffc0085af02c t serial8250_throttle
-ffffffc0085af074 t serial8250_unthrottle
-ffffffc0085af0bc t serial8250_break_ctl
-ffffffc0085af188 t serial8250_startup
-ffffffc0085af1dc t serial8250_shutdown
-ffffffc0085af230 t serial8250_set_termios
-ffffffc0085af284 t serial8250_set_ldisc
-ffffffc0085af2d8 t serial8250_pm
-ffffffc0085af32c t serial8250_type
-ffffffc0085af35c t serial8250_release_port
-ffffffc0085af428 t serial8250_request_port
-ffffffc0085af454 t serial8250_config_port
-ffffffc0085b1010 t serial8250_verify_port
-ffffffc0085b1060 t serial8250_request_std_resource
-ffffffc0085b11a8 t size_fifo
-ffffffc0085b1644 t rx_trig_bytes_show
-ffffffc0085b1730 t rx_trig_bytes_store
-ffffffc0085b197c t serial8250_early_in
-ffffffc0085b1aa8 t serial8250_early_out
-ffffffc0085b1bb0 t early_serial8250_write
-ffffffc0085b1bec t serial_putc
-ffffffc0085b1c5c T fsl8250_handle_irq
-ffffffc0085b1e7c t pericom8250_probe
-ffffffc0085b2080 t pericom8250_remove
-ffffffc0085b20e4 t pericom_do_set_divisor
-ffffffc0085b226c t of_platform_serial_probe
-ffffffc0085b295c t of_platform_serial_remove
-ffffffc0085b29d4 t of_serial_suspend
-ffffffc0085b2a70 t of_serial_resume
-ffffffc0085b2b10 t ttynull_device
-ffffffc0085b2b2c t ttynull_open
-ffffffc0085b2b68 t ttynull_close
-ffffffc0085b2ba4 t ttynull_write
-ffffffc0085b2bb8 t ttynull_write_room
-ffffffc0085b2bcc t ttynull_hangup
-ffffffc0085b2c00 W phys_mem_access_prot_allowed
-ffffffc0085b2c14 t mem_devnode
-ffffffc0085b2c74 t memory_open
-ffffffc0085b2d34 t null_lseek
-ffffffc0085b2d50 t read_null
-ffffffc0085b2d64 t write_null
-ffffffc0085b2d78 t read_iter_null
-ffffffc0085b2d8c t write_iter_null
-ffffffc0085b2dd0 t splice_write_null
-ffffffc0085b2e04 t uring_cmd_null
-ffffffc0085b2e18 t pipe_to_null
-ffffffc0085b2e2c t read_zero
-ffffffc0085b3000 t read_iter_zero
-ffffffc0085b30d8 t mmap_zero
-ffffffc0085b311c t get_unmapped_area_zero
-ffffffc0085b317c t write_full
-ffffffc0085b3190 T rng_is_initialized
-ffffffc0085b31c4 T wait_for_random_bytes
-ffffffc0085b3308 t try_to_generate_entropy
-ffffffc0085b34d0 T get_random_bytes
-ffffffc0085b34f8 t _get_random_bytes.llvm.823664832765068087
-ffffffc0085b3634 T get_random_u8
-ffffffc0085b37d4 T get_random_u16
-ffffffc0085b3974 T get_random_u32
-ffffffc0085b3b14 T get_random_u64
-ffffffc0085b3cb4 T __get_random_u32_below
-ffffffc0085b3d34 T random_prepare_cpu
-ffffffc0085b3dc8 t crng_reseed
-ffffffc0085b3ea4 t _credit_init_bits
-ffffffc0085b402c t crng_set_ready
-ffffffc0085b4068 T add_device_randomness
-ffffffc0085b4148 T add_hwgenerator_randomness
-ffffffc0085b4260 t mix_pool_bytes
-ffffffc0085b42dc T random_online_cpu
-ffffffc0085b431c T add_interrupt_randomness
-ffffffc0085b44a8 T add_input_randomness
-ffffffc0085b44fc t add_timer_randomness
-ffffffc0085b4774 T add_disk_randomness
-ffffffc0085b47bc T rand_initialize_disk
-ffffffc0085b4818 T __arm64_sys_getrandom
-ffffffc0085b48f8 t random_read_iter
-ffffffc0085b4984 t random_write_iter
-ffffffc0085b49b4 t random_poll
-ffffffc0085b4a44 t random_ioctl
-ffffffc0085b50bc t random_fasync
-ffffffc0085b50f0 t urandom_read_iter
-ffffffc0085b51f8 t crng_make_state
-ffffffc0085b5510 t extract_entropy
-ffffffc0085b5898 t crng_fast_key_erasure
-ffffffc0085b5990 t random_pm_notification
-ffffffc0085b5b58 t mix_interrupt_randomness
-ffffffc0085b5ca8 t entropy_timer
-ffffffc0085b5d18 t get_random_bytes_user
-ffffffc0085b5e8c t write_pool_user
-ffffffc0085b5fc0 t proc_do_rointvec
-ffffffc0085b601c t proc_do_uuid
-ffffffc0085b6134 T misc_register
-ffffffc0085b6320 T misc_deregister
-ffffffc0085b6430 t misc_devnode
-ffffffc0085b647c t misc_seq_start
-ffffffc0085b64cc t misc_seq_stop
-ffffffc0085b6500 t misc_seq_next
-ffffffc0085b6538 t misc_seq_show
-ffffffc0085b6588 t misc_open
-ffffffc0085b66a4 t reclaim_dma_bufs
-ffffffc0085b6824 t get_chars
-ffffffc0085b68f8 t put_chars
-ffffffc0085b6a68 t notifier_add_vio
-ffffffc0085b6b64 t notifier_del_vio
-ffffffc0085b6b74 t fill_readbuf
-ffffffc0085b6ebc t __send_to_port
-ffffffc0085b702c t free_buf
-ffffffc0085b7120 t virtcons_probe
-ffffffc0085b74b8 t virtcons_remove
-ffffffc0085b75dc t config_intr
-ffffffc0085b762c t virtcons_freeze
-ffffffc0085b76f8 t virtcons_restore
-ffffffc0085b7840 t config_work_handler
-ffffffc0085b79d0 t control_work_handler
-ffffffc0085b7e20 t fill_queue
-ffffffc0085b7f9c t __send_control_msg
-ffffffc0085b80c0 t add_port
-ffffffc0085b83b0 t in_intr
-ffffffc0085b856c t out_intr
-ffffffc0085b8660 t control_intr
-ffffffc0085b86a0 t discard_port_data
-ffffffc0085b8844 t unplug_port
-ffffffc0085b89fc t init_port_console
-ffffffc0085b8b14 t remove_port_data
-ffffffc0085b8bd0 t show_port_name
-ffffffc0085b8c18 t port_fops_read
-ffffffc0085b8e3c t port_fops_write
-ffffffc0085b90f8 t port_fops_poll
-ffffffc0085b9228 t port_fops_open
-ffffffc0085b94b4 t port_fops_release
-ffffffc0085b95f4 t port_fops_fasync
-ffffffc0085b9628 t port_fops_splice_write
-ffffffc0085b97cc t will_read_block
-ffffffc0085b98c0 t wait_port_writable
-ffffffc0085b9ac4 t pipe_to_sg
-ffffffc0085b9d3c t port_debugfs_open
-ffffffc0085b9d7c t port_debugfs_show
-ffffffc0085b9e8c t remove_vqs
-ffffffc0085b9f6c T hwrng_register
-ffffffc0085ba1e8 t set_current_rng
-ffffffc0085ba454 t add_early_randomness
-ffffffc0085ba57c T hwrng_unregister
-ffffffc0085ba81c t enable_best_rng
-ffffffc0085ba98c T devm_hwrng_register
-ffffffc0085baa2c t devm_hwrng_release
-ffffffc0085baa5c T devm_hwrng_unregister
-ffffffc0085baa9c t devm_hwrng_match
-ffffffc0085baad0 T hwrng_msleep
-ffffffc0085bab1c t rng_dev_read
-ffffffc0085bb0a8 t rng_dev_open
-ffffffc0085bb0d0 t rng_current_show
-ffffffc0085bb290 t rng_current_store
-ffffffc0085bb48c t rng_available_show
-ffffffc0085bb554 t rng_selected_show
-ffffffc0085bb598 t rng_quality_show
-ffffffc0085bb73c t rng_quality_store
-ffffffc0085bb840 t hwrng_fillfn
-ffffffc0085bbb8c t cctrng_probe
-ffffffc0085bbe90 t cctrng_remove
-ffffffc0085bbf00 t cctrng_read
-ffffffc0085bc0f4 t cc_trng_clk_init
-ffffffc0085bc1b4 t cc_trng_compwork_handler
-ffffffc0085bc518 t cc_trng_startwork_handler
-ffffffc0085bc550 t cc_isr
-ffffffc0085bc600 t cc_trng_pm_init
-ffffffc0085bc658 t cc_trng_hw_trigger
-ffffffc0085bc790 t cctrng_suspend
-ffffffc0085bc7ec t cctrng_resume
-ffffffc0085bc984 t smccc_trng_probe
-ffffffc0085bca00 t smccc_trng_read
-ffffffc0085bcc18 t cn10k_rng_probe
-ffffffc0085bcd74 t cn10k_rng_remove
-ffffffc0085bcd84 t cn10k_rng_read
-ffffffc0085bcee8 t cn10k_read_trng
-ffffffc0085bcf98 t readq
-ffffffc0085bd038 t readq
-ffffffc0085bd0dc T iommu_device_register
-ffffffc0085bd204 T bus_iommu_probe
-ffffffc0085bd630 T iommu_device_unregister
-ffffffc0085bd6f8 t remove_iommu_group
-ffffffc0085bd73c T iommu_probe_device
-ffffffc0085bd924 t __iommu_probe_device
-ffffffc0085bdc14 T iommu_group_get
-ffffffc0085bdc54 t __iommu_attach_device
-ffffffc0085bdd4c T iommu_group_put
-ffffffc0085bdd7c t iommu_create_device_direct_mappings
-ffffffc0085be028 T iommu_release_device
-ffffffc0085be0d4 T iommu_group_remove_device
-ffffffc0085be264 T iommu_set_dma_strict
-ffffffc0085be298 T iommu_get_group_resv_regions
-ffffffc0085be61c T iommu_get_resv_regions
-ffffffc0085be674 T iommu_put_resv_regions
-ffffffc0085be708 T iommu_group_alloc
-ffffffc0085be864 T iommu_group_get_by_id
-ffffffc0085be910 T iommu_group_get_iommudata
-ffffffc0085be924 T iommu_group_set_iommudata
-ffffffc0085be938 T iommu_group_set_name
-ffffffc0085be9e4 T iommu_group_add_device
-ffffffc0085bec60 t trace_add_device_to_group
-ffffffc0085bed18 T iommu_group_for_each_dev
-ffffffc0085bedc4 T iommu_group_ref_get
-ffffffc0085bee04 T iommu_register_device_fault_handler
-ffffffc0085beef0 T iommu_unregister_device_fault_handler
-ffffffc0085bef88 T iommu_report_device_fault
-ffffffc0085bf100 T iommu_page_response
-ffffffc0085bf2c8 T iommu_group_id
-ffffffc0085bf2dc T generic_device_group
-ffffffc0085bf308 T pci_device_group
-ffffffc0085bf440 t get_pci_alias_or_group
-ffffffc0085bf490 t get_pci_alias_group
-ffffffc0085bf5c0 t get_pci_function_alias_group
-ffffffc0085bf6b8 T fsl_mc_device_group
-ffffffc0085bf714 T iommu_group_default_domain
-ffffffc0085bf728 t probe_iommu_group
-ffffffc0085bf784 T iommu_present
-ffffffc0085bf7a0 T device_iommu_capable
-ffffffc0085bf80c T iommu_set_fault_handler
-ffffffc0085bf82c T iommu_domain_alloc
-ffffffc0085bf8c0 t __iommu_domain_alloc
-ffffffc0085bf9fc T iommu_domain_free
-ffffffc0085bfab8 T iommu_attach_device
-ffffffc0085bfbd8 T iommu_deferred_attach
-ffffffc0085bfc58 T iommu_detach_device
-ffffffc0085bfd34 T iommu_get_domain_for_dev
-ffffffc0085bfd8c T iommu_get_dma_domain
-ffffffc0085bfda4 T iommu_attach_group
-ffffffc0085bfe84 T iommu_detach_group
-ffffffc0085bff04 T iommu_iova_to_phys
-ffffffc0085bff70 T iommu_map
-ffffffc0085c0004 T iommu_map_atomic
-ffffffc0085c0098 T iommu_unmap
-ffffffc0085c014c t __iommu_unmap.llvm.219578462885621525
-ffffffc0085c039c T iommu_unmap_fast
-ffffffc0085c03c8 T iommu_map_sg
-ffffffc0085c03f4 t __iommu_map_sg.llvm.219578462885621525
-ffffffc0085c05d4 T iommu_map_sg_atomic
-ffffffc0085c0604 T report_iommu_fault
-ffffffc0085c0724 T iommu_enable_nesting
-ffffffc0085c0788 T iommu_set_pgtable_quirks
-ffffffc0085c07ec T iommu_alloc_resv_region
-ffffffc0085c0880 T iommu_set_default_passthrough
-ffffffc0085c08b0 T iommu_set_default_translated
-ffffffc0085c08e0 T iommu_default_passthrough
-ffffffc0085c0900 T iommu_ops_from_fwnode
-ffffffc0085c0980 T iommu_fwspec_init
-ffffffc0085c0a50 T iommu_fwspec_free
-ffffffc0085c0aac T iommu_fwspec_add_ids
-ffffffc0085c0b70 T iommu_dev_enable_feature
-ffffffc0085c0bd8 T iommu_dev_disable_feature
-ffffffc0085c0c40 T iommu_device_use_default_domain
-ffffffc0085c0d10 T iommu_device_unuse_default_domain
-ffffffc0085c0d8c T iommu_group_claim_dma_owner
-ffffffc0085c0f44 t __iommu_group_set_domain
-ffffffc0085c1118 T iommu_group_release_dma_owner
-ffffffc0085c11a8 T iommu_group_dma_owner_claimed
-ffffffc0085c11fc T iommu_attach_device_pasid
-ffffffc0085c13ac T iommu_detach_device_pasid
-ffffffc0085c1490 T iommu_get_domain_for_dev_pasid
-ffffffc0085c1530 T iommu_sva_domain_alloc
-ffffffc0085c15e0 t iommu_sva_handle_iopf
-ffffffc0085c15f0 t iommu_domain_type_str
-ffffffc0085c1624 t iommu_bus_notifier
-ffffffc0085c1684 t iommu_group_release
-ffffffc0085c1820 t iommu_group_attr_show
-ffffffc0085c1878 t iommu_group_attr_store
-ffffffc0085c18d4 t iommu_group_show_resv_regions
-ffffffc0085c19d0 t iommu_group_show_type
-ffffffc0085c1a64 t iommu_group_store_type
-ffffffc0085c1f04 t iommu_group_alloc_default_domain
-ffffffc0085c1fac t iommu_group_show_name
-ffffffc0085c1fec t __iommu_map
-ffffffc0085c232c T __traceiter_add_device_to_group
-ffffffc0085c23bc T __traceiter_remove_device_from_group
-ffffffc0085c244c T __traceiter_attach_device_to_domain
-ffffffc0085c24cc T __traceiter_detach_device_from_domain
-ffffffc0085c254c T __traceiter_map
-ffffffc0085c25e4 T __traceiter_unmap
-ffffffc0085c267c T __traceiter_io_page_fault
-ffffffc0085c2714 t trace_event_raw_event_iommu_group_event
-ffffffc0085c2828 t perf_trace_iommu_group_event
-ffffffc0085c29b0 t trace_event_raw_event_iommu_device_event
-ffffffc0085c2ac0 t perf_trace_iommu_device_event
-ffffffc0085c2c40 t trace_event_raw_event_map
-ffffffc0085c2d10 t perf_trace_map
-ffffffc0085c2e30 t trace_event_raw_event_unmap
-ffffffc0085c2f00 t perf_trace_unmap
-ffffffc0085c3020 t trace_event_raw_event_iommu_error
-ffffffc0085c31bc t perf_trace_iommu_error
-ffffffc0085c33c4 t trace_raw_output_iommu_group_event
-ffffffc0085c3440 t trace_raw_output_iommu_device_event
-ffffffc0085c34b8 t trace_raw_output_map
-ffffffc0085c3534 t trace_raw_output_unmap
-ffffffc0085c35b0 t trace_raw_output_iommu_error
-ffffffc0085c3638 T iommu_device_sysfs_add
-ffffffc0085c376c T iommu_device_sysfs_remove
-ffffffc0085c37b4 T iommu_device_link
-ffffffc0085c3868 T iommu_device_unlink
-ffffffc0085c38d8 t release_device
-ffffffc0085c3904 T iommu_dma_init_fq
-ffffffc0085c3a38 t fq_flush_timeout
-ffffffc0085c3c30 T iommu_get_dma_cookie
-ffffffc0085c3ccc T iommu_get_msi_cookie
-ffffffc0085c3d6c T iommu_put_dma_cookie
-ffffffc0085c3ef4 T iommu_dma_get_resv_regions
-ffffffc0085c3f04 T iommu_setup_dma_ops
-ffffffc0085c438c T iommu_dma_prepare_msi
-ffffffc0085c4614 T iommu_dma_compose_msi_msg
-ffffffc0085c46ac t iommu_dma_ranges_sort
-ffffffc0085c46d4 t iommu_dma_alloc
-ffffffc0085c49f4 t iommu_dma_free
-ffffffc0085c4a54 t iommu_dma_alloc_noncontiguous
-ffffffc0085c4b14 t iommu_dma_free_noncontiguous
-ffffffc0085c4ba8 t iommu_dma_mmap
-ffffffc0085c4d00 t iommu_dma_get_sgtable
-ffffffc0085c4df0 t iommu_dma_map_page
-ffffffc0085c5020 t iommu_dma_unmap_page
-ffffffc0085c50f8 t iommu_dma_map_sg
-ffffffc0085c5554 t iommu_dma_unmap_sg
-ffffffc0085c567c t iommu_dma_map_resource
-ffffffc0085c56f8 t iommu_dma_unmap_resource
-ffffffc0085c5724 t iommu_dma_sync_single_for_cpu
-ffffffc0085c57f8 t iommu_dma_sync_single_for_device
-ffffffc0085c58cc t iommu_dma_sync_sg_for_cpu
-ffffffc0085c5a50 t iommu_dma_sync_sg_for_device
-ffffffc0085c5bd4 t iommu_dma_opt_mapping_size
-ffffffc0085c5be8 t iommu_dma_get_merge_boundary
-ffffffc0085c5c14 t __iommu_dma_map
-ffffffc0085c5df8 t __iommu_dma_free
-ffffffc0085c5f00 t __iommu_dma_alloc_noncontiguous
-ffffffc0085c63f8 t __iommu_dma_unmap
-ffffffc0085c68a0 t __finalise_sg
-ffffffc0085c6a28 T iova_rcache_range
-ffffffc0085c6a3c T init_iova_domain
-ffffffc0085c6b04 T iova_cache_get
-ffffffc0085c6c20 t iova_cpuhp_dead
-ffffffc0085c6c5c T iova_cache_put
-ffffffc0085c6cdc T alloc_iova
-ffffffc0085c6f74 T find_iova
-ffffffc0085c7014 T __free_iova
-ffffffc0085c710c T free_iova
-ffffffc0085c726c T alloc_iova_fast
-ffffffc0085c7540 t free_cpu_cached_iovas
-ffffffc0085c771c T free_iova_fast
-ffffffc0085c78b8 T put_iova_domain
-ffffffc0085c795c T reserve_iova
-ffffffc0085c7ad8 T iova_domain_init_rcaches
-ffffffc0085c7c5c t free_iova_rcaches
-ffffffc0085c7da0 t iova_magazine_free_pfns
-ffffffc0085c7f38 T of_iommu_configure
-ffffffc0085c8210 t of_pci_iommu_init
-ffffffc0085c8274 t of_iommu_configure_dev_id
-ffffffc0085c83a8 T component_compare_of
-ffffffc0085c83c4 T component_release_of
-ffffffc0085c83d4 T component_compare_dev
-ffffffc0085c83ec T component_compare_dev_name
-ffffffc0085c8418 T component_match_add_release
-ffffffc0085c8448 t __component_match_add
-ffffffc0085c85bc T component_match_add_typed
-ffffffc0085c85f8 T component_master_add_with_match
-ffffffc0085c876c t try_to_bring_up_aggregate_device
-ffffffc0085c8974 t free_aggregate_device
-ffffffc0085c8a40 T component_master_del
-ffffffc0085c8b1c T component_unbind_all
-ffffffc0085c8c4c T component_bind_all
-ffffffc0085c8ee8 T component_add_typed
-ffffffc0085c8f20 t __component_add
-ffffffc0085c90ac T component_add
-ffffffc0085c90dc T component_del
-ffffffc0085c9248 t devm_component_match_release
-ffffffc0085c92f0 t component_devices_open
-ffffffc0085c9330 t component_devices_show
-ffffffc0085c94c8 T fwnode_link_add
-ffffffc0085c9534 t __fwnode_link_add.llvm.13135352369394788123
-ffffffc0085c9658 T fwnode_links_purge
-ffffffc0085c9694 t fwnode_links_purge_suppliers
-ffffffc0085c9760 t fwnode_links_purge_consumers
-ffffffc0085c9830 T fw_devlink_purge_absent_suppliers
-ffffffc0085c98ac T device_links_read_lock
-ffffffc0085c98e0 T device_links_read_unlock
-ffffffc0085c9928 T device_links_read_lock_held
-ffffffc0085c993c T device_is_dependent
-ffffffc0085c9a60 T device_for_each_child
-ffffffc0085c9b30 T device_pm_move_to_tail
-ffffffc0085c9bbc t device_reorder_to_tail
-ffffffc0085c9d08 T device_link_add
-ffffffc0085ca0f4 t pm_runtime_put_noidle
-ffffffc0085ca164 t kref_get
-ffffffc0085ca1d4 t device_link_init_status
-ffffffc0085ca24c T get_device
-ffffffc0085ca27c T dev_set_name
-ffffffc0085ca304 T device_register
-ffffffc0085ca344 T put_device
-ffffffc0085ca374 T device_link_del
-ffffffc0085ca3c4 t device_link_put_kref
-ffffffc0085ca4e0 T device_link_remove
-ffffffc0085ca568 T device_links_check_suppliers
-ffffffc0085ca7a4 T dev_err_probe
-ffffffc0085ca85c T device_links_supplier_sync_state_pause
-ffffffc0085ca8b4 T device_links_supplier_sync_state_resume
-ffffffc0085ca9c8 t __device_links_queue_sync_state
-ffffffc0085caab0 t device_links_flush_sync_list
-ffffffc0085cabac T device_links_force_bind
-ffffffc0085cac50 t device_link_drop_managed
-ffffffc0085cad58 T device_links_driver_bound
-ffffffc0085cb08c t __fw_devlink_pickup_dangling_consumers
-ffffffc0085cb1b0 t __fw_devlink_link_to_consumers
-ffffffc0085cb2f8 T device_remove_file
-ffffffc0085cb334 T device_links_no_driver
-ffffffc0085cb43c T device_links_driver_cleanup
-ffffffc0085cb59c T device_links_busy
-ffffffc0085cb644 T device_links_unbind_consumers
-ffffffc0085cb768 T fw_devlink_is_strict
-ffffffc0085cb798 T fw_devlink_drivers_done
-ffffffc0085cb808 t fw_devlink_no_driver.llvm.13135352369394788123
-ffffffc0085cb86c T lock_device_hotplug
-ffffffc0085cb8a0 T unlock_device_hotplug
-ffffffc0085cb8d4 T lock_device_hotplug_sysfs
-ffffffc0085cb94c T dev_driver_string
-ffffffc0085cb990 T device_store_ulong
-ffffffc0085cba24 T device_show_ulong
-ffffffc0085cba68 T device_store_int
-ffffffc0085cbb0c T device_show_int
-ffffffc0085cbb50 T device_store_bool
-ffffffc0085cbb9c T device_show_bool
-ffffffc0085cbbe0 T device_add_groups
-ffffffc0085cbc0c T device_remove_groups
-ffffffc0085cbc38 T devm_device_add_group
-ffffffc0085cbce0 t devm_attr_group_remove
-ffffffc0085cbd10 T devm_device_remove_group
-ffffffc0085cbd5c t devm_attr_group_match
-ffffffc0085cbd78 T devm_device_add_groups
-ffffffc0085cbe1c t devm_attr_groups_remove
-ffffffc0085cbe4c T devm_device_remove_groups
-ffffffc0085cbe98 T devices_kset_move_last
-ffffffc0085cbf40 T device_create_file
-ffffffc0085cbfec T device_remove_file_self
-ffffffc0085cc020 T device_create_bin_file
-ffffffc0085cc058 T device_remove_bin_file
-ffffffc0085cc094 T device_initialize
-ffffffc0085cc188 T virtual_device_parent
-ffffffc0085cc1e0 T device_add
-ffffffc0085cc804 t get_device_parent
-ffffffc0085cc9a0 t device_add_attrs
-ffffffc0085ccc8c t device_create_sys_dev_entry
-ffffffc0085ccd44 t fw_devlink_link_device
-ffffffc0085ccdc0 t fw_devlink_unblock_consumers
-ffffffc0085cce68 t device_remove_attrs
-ffffffc0085ccf68 t device_remove_class_symlinks
-ffffffc0085cd01c T kill_device
-ffffffc0085cd048 T device_del
-ffffffc0085cd508 T device_unregister
-ffffffc0085cd54c T device_get_devnode
-ffffffc0085cd65c T device_for_each_child_reverse
-ffffffc0085cd734 T device_find_child
-ffffffc0085cd810 T device_find_child_by_name
-ffffffc0085cd8d0 T device_find_any_child
-ffffffc0085cd974 T device_offline
-ffffffc0085cdab8 t device_check_offline
-ffffffc0085cdb8c T device_online
-ffffffc0085cdc54 T __root_device_register
-ffffffc0085cdd04 t root_device_release
-ffffffc0085cdd30 T root_device_unregister
-ffffffc0085cdd90 T device_create
-ffffffc0085cde1c t device_create_groups_vargs
-ffffffc0085cdf54 T device_create_with_groups
-ffffffc0085cdfd4 T device_destroy
-ffffffc0085ce064 T device_rename
-ffffffc0085ce144 T device_move
-ffffffc0085ce498 t devices_kset_move_after
-ffffffc0085ce540 t devices_kset_move_before
-ffffffc0085ce5ec T device_change_owner
-ffffffc0085ce788 T device_shutdown
-ffffffc0085cea08 T _dev_info
-ffffffc0085ceaa0 T dev_vprintk_emit
-ffffffc0085cec24 T dev_printk_emit
-ffffffc0085cecac T _dev_printk
-ffffffc0085ced30 t __dev_printk
-ffffffc0085cedd4 T _dev_emerg
-ffffffc0085cee6c T _dev_alert
-ffffffc0085cef04 T _dev_crit
-ffffffc0085cef9c T _dev_err
-ffffffc0085cf034 T _dev_warn
-ffffffc0085cf0cc T _dev_notice
-ffffffc0085cf164 T set_primary_fwnode
-ffffffc0085cf1ec T set_secondary_fwnode
-ffffffc0085cf224 T device_set_of_node_from_dev
-ffffffc0085cf248 T device_set_node
-ffffffc0085cf288 T device_match_name
-ffffffc0085cf2c8 T device_match_of_node
-ffffffc0085cf2e4 T device_match_fwnode
-ffffffc0085cf324 T device_match_devt
-ffffffc0085cf344 T device_match_acpi_dev
-ffffffc0085cf35c T device_match_acpi_handle
-ffffffc0085cf374 T device_match_any
-ffffffc0085cf388 t devlink_add_symlinks
-ffffffc0085cf5f8 t devlink_remove_symlinks
-ffffffc0085cf7c8 t devlink_dev_release
-ffffffc0085cf824 t auto_remove_on_show
-ffffffc0085cf890 t runtime_pm_show
-ffffffc0085cf8d8 t sync_state_only_show
-ffffffc0085cf920 t device_link_release_fn
-ffffffc0085cfa0c t waiting_for_supplier_show
-ffffffc0085cfad8 t fw_devlink_create_devlink
-ffffffc0085cfcd4 t __fw_devlink_relax_cycles
-ffffffc0085cfed4 t device_release
-ffffffc0085cff88 t device_namespace
-ffffffc0085cffe8 t device_get_ownership
-ffffffc0085d003c t dev_attr_show
-ffffffc0085d00bc t dev_attr_store
-ffffffc0085d0110 t klist_children_get
-ffffffc0085d0144 t klist_children_put
-ffffffc0085d0178 t class_dir_release
-ffffffc0085d01a4 t class_dir_child_ns_type
-ffffffc0085d01bc t uevent_show
-ffffffc0085d031c t uevent_store
-ffffffc0085d0390 t uevent_store
-ffffffc0085d03d8 t online_show
-ffffffc0085d0450 t online_store
-ffffffc0085d05e0 t removable_show
-ffffffc0085d064c t removable_show
-ffffffc0085d068c t dev_show
-ffffffc0085d06d4 t fw_devlink_parse_fwtree
-ffffffc0085d0784 t __fw_devlink_link_to_suppliers
-ffffffc0085d08ac t dev_uevent_filter
-ffffffc0085d08f0 t dev_uevent_name
-ffffffc0085d0920 t dev_uevent
-ffffffc0085d0b44 t device_create_release
-ffffffc0085d0b70 t device_create_release
-ffffffc0085d0b9c t device_create_release
-ffffffc0085d0bc8 T bus_create_file
-ffffffc0085d0c44 T bus_remove_file
-ffffffc0085d0cb0 T bus_for_each_dev
-ffffffc0085d0da4 T bus_find_device
-ffffffc0085d0ea4 T subsys_find_device_by_id
-ffffffc0085d0fc4 T bus_for_each_drv
-ffffffc0085d10bc T bus_add_device
-ffffffc0085d11dc T bus_probe_device
-ffffffc0085d12a0 T bus_remove_device
-ffffffc0085d13c0 T bus_add_driver
-ffffffc0085d1630 T bus_remove_driver
-ffffffc0085d16e4 T bus_rescan_devices
-ffffffc0085d17ec T device_reprobe
-ffffffc0085d1898 T bus_register
-ffffffc0085d1ad8 t klist_devices_get
-ffffffc0085d1b08 t klist_devices_put
-ffffffc0085d1b38 t add_probe_files
-ffffffc0085d1c18 t remove_probe_files
-ffffffc0085d1cb8 T bus_unregister
-ffffffc0085d1d68 T bus_register_notifier
-ffffffc0085d1d9c T bus_unregister_notifier
-ffffffc0085d1dd0 T bus_get_kset
-ffffffc0085d1de4 T bus_get_device_klist
-ffffffc0085d1dfc T bus_sort_breadthfirst
-ffffffc0085d1fb0 T subsys_dev_iter_init
-ffffffc0085d2008 T subsys_dev_iter_next
-ffffffc0085d2060 T subsys_dev_iter_exit
-ffffffc0085d208c T subsys_interface_register
-ffffffc0085d21ec T subsys_interface_unregister
-ffffffc0085d2328 T subsys_system_register
-ffffffc0085d235c t subsys_register.llvm.16381311051555132342
-ffffffc0085d2450 T subsys_virtual_register
-ffffffc0085d24ac t driver_release
-ffffffc0085d24d8 t drv_attr_show
-ffffffc0085d2534 t drv_attr_store
-ffffffc0085d2594 t unbind_store
-ffffffc0085d26dc t bind_store
-ffffffc0085d2850 t bus_release
-ffffffc0085d2894 t bus_attr_show
-ffffffc0085d28f0 t bus_attr_store
-ffffffc0085d2950 t bus_uevent_store
-ffffffc0085d299c t drivers_probe_store
-ffffffc0085d2adc t drivers_autoprobe_show
-ffffffc0085d2b28 t drivers_autoprobe_store
-ffffffc0085d2b5c t system_root_device_release
-ffffffc0085d2b88 t bus_uevent_filter
-ffffffc0085d2bac T driver_deferred_probe_add
-ffffffc0085d2c54 T driver_deferred_probe_del
-ffffffc0085d2cfc T driver_deferred_probe_trigger
-ffffffc0085d2ddc T device_block_probing
-ffffffc0085d2e14 T wait_for_device_probe
-ffffffc0085d2f1c T device_unblock_probing
-ffffffc0085d3004 T device_set_deferred_probe_reason
-ffffffc0085d3094 T driver_deferred_probe_check_state
-ffffffc0085d30e4 T deferred_probe_extend_timeout
-ffffffc0085d3148 T device_is_bound
-ffffffc0085d3178 T device_bind_driver
-ffffffc0085d3250 t driver_bound
-ffffffc0085d342c T driver_probe_done
-ffffffc0085d3458 T driver_allows_async_probing
-ffffffc0085d34c8 T device_attach
-ffffffc0085d34f4 t __device_attach.llvm.1593265583496165218
-ffffffc0085d3674 T device_initial_probe
-ffffffc0085d36a4 T device_driver_attach
-ffffffc0085d3750 t __driver_probe_device
-ffffffc0085d3840 T driver_attach
-ffffffc0085d3880 t __driver_attach.llvm.1593265583496165218
-ffffffc0085d3a64 T device_release_driver_internal
-ffffffc0085d3d64 T device_release_driver
-ffffffc0085d3d98 T device_driver_detach
-ffffffc0085d3dcc T driver_detach
-ffffffc0085d3ed0 t deferred_probe_work_func
-ffffffc0085d3fd4 t deferred_probe_timeout_work_func
-ffffffc0085d415c t deferred_devs_open
-ffffffc0085d419c t deferred_devs_show
-ffffffc0085d4260 t __device_attach_driver
-ffffffc0085d43e0 t __device_attach_async_helper
-ffffffc0085d44bc t driver_probe_device
-ffffffc0085d4700 t really_probe
-ffffffc0085d4ad8 t device_remove
-ffffffc0085d4b94 t state_synced_show
-ffffffc0085d4c04 t coredump_store
-ffffffc0085d4c84 t __driver_attach_async_helper
-ffffffc0085d4d2c T register_syscore_ops
-ffffffc0085d4dac T unregister_syscore_ops
-ffffffc0085d4e24 T syscore_suspend
-ffffffc0085d50c8 T syscore_resume
-ffffffc0085d52f0 T syscore_shutdown
-ffffffc0085d53ac T driver_set_override
-ffffffc0085d54a8 T driver_for_each_device
-ffffffc0085d5598 T driver_find_device
-ffffffc0085d5698 T driver_create_file
-ffffffc0085d56d8 T driver_remove_file
-ffffffc0085d5718 T driver_add_groups
-ffffffc0085d5748 T driver_remove_groups
-ffffffc0085d5778 T driver_register
-ffffffc0085d58a0 T driver_find
-ffffffc0085d58f4 T driver_unregister
-ffffffc0085d5958 T class_create_file_ns
-ffffffc0085d5998 T class_remove_file_ns
-ffffffc0085d59d4 T __class_register
-ffffffc0085d5b4c t klist_class_dev_get
-ffffffc0085d5b7c t klist_class_dev_put
-ffffffc0085d5bb0 T class_unregister
-ffffffc0085d5bfc T __class_create
-ffffffc0085d5c98 t class_create_release
-ffffffc0085d5cc4 T class_destroy
-ffffffc0085d5d1c T class_dev_iter_init
-ffffffc0085d5d74 T class_dev_iter_next
-ffffffc0085d5dcc T class_dev_iter_exit
-ffffffc0085d5df8 T class_for_each_device
-ffffffc0085d5f2c T class_find_device
-ffffffc0085d6068 T class_interface_register
-ffffffc0085d61c4 T class_interface_unregister
-ffffffc0085d62f0 T show_class_attr_string
-ffffffc0085d6330 T class_compat_register
-ffffffc0085d63ac T class_compat_unregister
-ffffffc0085d63f0 T class_compat_create_link
-ffffffc0085d6498 T class_compat_remove_link
-ffffffc0085d64f8 t class_release
-ffffffc0085d655c t class_child_ns_type
-ffffffc0085d6574 t class_attr_show
-ffffffc0085d65cc t class_attr_store
-ffffffc0085d6624 T platform_get_resource
-ffffffc0085d6674 T platform_get_mem_or_io
-ffffffc0085d66c0 T devm_platform_get_and_ioremap_resource
-ffffffc0085d673c T devm_platform_ioremap_resource
-ffffffc0085d67b0 T devm_platform_ioremap_resource_byname
-ffffffc0085d6848 T platform_get_resource_byname
-ffffffc0085d68d4 T platform_get_irq_optional
-ffffffc0085d69f0 T platform_get_irq
-ffffffc0085d6a50 T platform_irq_count
-ffffffc0085d6aa4 T devm_platform_get_irqs_affinity
-ffffffc0085d6ce0 t devm_platform_get_irqs_affinity_release
-ffffffc0085d6d3c T platform_get_irq_byname
-ffffffc0085d6d98 t __platform_get_irq_byname.llvm.9003426161512501342
-ffffffc0085d6e60 T platform_get_irq_byname_optional
-ffffffc0085d6e8c T platform_add_devices
-ffffffc0085d7004 T platform_device_register
-ffffffc0085d7084 T platform_device_unregister
-ffffffc0085d7144 T platform_device_put
-ffffffc0085d7184 T platform_device_alloc
-ffffffc0085d7248 t platform_device_release
-ffffffc0085d72a8 T platform_device_add_resources
-ffffffc0085d7328 T platform_device_add_data
-ffffffc0085d7394 T platform_device_add
-ffffffc0085d75c4 T platform_device_del
-ffffffc0085d7674 T platform_device_register_full
-ffffffc0085d7864 T __platform_driver_register
-ffffffc0085d78a4 T platform_driver_unregister
-ffffffc0085d78d4 t platform_probe_fail
-ffffffc0085d78e8 T __platform_register_drivers
-ffffffc0085d79a4 T platform_unregister_drivers
-ffffffc0085d7a04 T platform_pm_suspend
-ffffffc0085d7a98 T platform_pm_resume
-ffffffc0085d7b28 t platform_match
-ffffffc0085d7be4 t platform_uevent
-ffffffc0085d7c48 t platform_probe
-ffffffc0085d7d20 t platform_remove
-ffffffc0085d7da4 t platform_shutdown
-ffffffc0085d7dfc t platform_dma_configure
-ffffffc0085d7e70 t platform_dma_cleanup
-ffffffc0085d7ea8 T platform_find_device_by_driver
-ffffffc0085d7eec t __platform_match
-ffffffc0085d7f18 t platform_dev_attrs_visible
-ffffffc0085d7f48 t numa_node_show
-ffffffc0085d7f88 T unregister_cpu
-ffffffc0085d7fec t cpu_subsys_match
-ffffffc0085d8000 t cpu_subsys_online
-ffffffc0085d802c t cpu_subsys_offline
-ffffffc0085d8058 T register_cpu
-ffffffc0085d81a4 t cpu_device_release
-ffffffc0085d81b4 t cpu_uevent
-ffffffc0085d822c T get_cpu_device
-ffffffc0085d829c T cpu_device_create
-ffffffc0085d83d4 T cpu_is_hotpluggable
-ffffffc0085d8454 W cpu_show_l1tf
-ffffffc0085d8490 W cpu_show_mds
-ffffffc0085d84cc W cpu_show_tsx_async_abort
-ffffffc0085d8508 W cpu_show_itlb_multihit
-ffffffc0085d8544 W cpu_show_srbds
-ffffffc0085d8580 W cpu_show_mmio_stale_data
-ffffffc0085d85bc W cpu_show_retbleed
-ffffffc0085d85f8 t print_cpu_modalias
-ffffffc0085d86e0 t show_cpus_attr
-ffffffc0085d8728 t print_cpus_kernel_max
-ffffffc0085d8768 t print_cpus_offline
-ffffffc0085d88a4 t print_cpus_isolated
-ffffffc0085d8948 T kobj_map
-ffffffc0085d8b94 T kobj_unmap
-ffffffc0085d8ca0 T kobj_lookup
-ffffffc0085d8df0 T kobj_map_init
-ffffffc0085d8eb8 T __devres_alloc_node
-ffffffc0085d8f4c T devres_for_each_res
-ffffffc0085d9060 T devres_free
-ffffffc0085d90a8 T devres_add
-ffffffc0085d910c t add_dr
-ffffffc0085d921c T devres_find
-ffffffc0085d92f8 T devres_get
-ffffffc0085d941c T devres_remove
-ffffffc0085d95b4 T devres_destroy
-ffffffc0085d960c T devres_release
-ffffffc0085d96a4 T devres_release_all
-ffffffc0085d9780 t remove_nodes
-ffffffc0085d997c t release_nodes
-ffffffc0085d9abc T devres_open_group
-ffffffc0085d9bb4 t group_open_release
-ffffffc0085d9bc4 t group_close_release
-ffffffc0085d9bd4 T devres_close_group
-ffffffc0085d9ca0 T devres_remove_group
-ffffffc0085d9e4c T devres_release_group
-ffffffc0085d9f84 T devm_add_action
-ffffffc0085da060 t devm_action_release
-ffffffc0085da0a8 T devm_remove_action
-ffffffc0085da140 t devm_action_match
-ffffffc0085da17c T devm_release_action
-ffffffc0085da240 T devm_kmalloc
-ffffffc0085da334 t devm_kmalloc_release
-ffffffc0085da344 T devm_krealloc
-ffffffc0085da608 T devm_kfree
-ffffffc0085da698 t devm_kmalloc_match
-ffffffc0085da6b0 T devm_kstrdup
-ffffffc0085da738 T devm_kstrdup_const
-ffffffc0085da7e0 T devm_kvasprintf
-ffffffc0085da8c8 T devm_kasprintf
-ffffffc0085da9e0 T devm_kmemdup
-ffffffc0085daa48 T devm_get_free_pages
-ffffffc0085dab4c t devm_pages_release
-ffffffc0085dab80 T devm_free_pages
-ffffffc0085dac30 t devm_pages_match
-ffffffc0085dac50 T __devm_alloc_percpu
-ffffffc0085dad50 t devm_percpu_release
-ffffffc0085dad80 T devm_free_percpu
-ffffffc0085dade8 t devm_percpu_match
-ffffffc0085dae04 T attribute_container_classdev_to_container
-ffffffc0085dae18 T attribute_container_register
-ffffffc0085daebc t internal_container_klist_get
-ffffffc0085daeec t internal_container_klist_put
-ffffffc0085daf20 T attribute_container_unregister
-ffffffc0085dafd8 T attribute_container_add_device
-ffffffc0085db1b8 t attribute_container_release
-ffffffc0085db204 T attribute_container_add_class_device
-ffffffc0085db29c T attribute_container_remove_device
-ffffffc0085db448 T attribute_container_remove_attrs
-ffffffc0085db4d0 T attribute_container_device_trigger_safe
-ffffffc0085db7c8 T attribute_container_device_trigger
-ffffffc0085db930 T attribute_container_trigger
-ffffffc0085db9f8 T attribute_container_add_attrs
-ffffffc0085dba88 T attribute_container_add_class_device_adapter
-ffffffc0085dbb24 T attribute_container_class_device_del
-ffffffc0085dbbb4 T attribute_container_find_class_device
-ffffffc0085dbc4c T transport_class_register
-ffffffc0085dbc80 T transport_class_unregister
-ffffffc0085dbcac T anon_transport_class_register
-ffffffc0085dbd0c t anon_transport_dummy_function
-ffffffc0085dbd20 T anon_transport_class_unregister
-ffffffc0085dbd58 T transport_setup_device
-ffffffc0085dbd8c t transport_setup_classdev
-ffffffc0085dbde0 T transport_add_device
-ffffffc0085dbe1c t transport_add_class_device
-ffffffc0085dbee8 t transport_remove_classdev
-ffffffc0085dbf88 T transport_configure_device
-ffffffc0085dbfbc t transport_configure
-ffffffc0085dc010 T transport_remove_device
-ffffffc0085dc044 T transport_destroy_device
-ffffffc0085dc078 t transport_destroy_classdev
-ffffffc0085dc0c4 t topology_add_dev
-ffffffc0085dc100 t topology_remove_dev
-ffffffc0085dc13c t topology_is_visible
-ffffffc0085dc16c t ppin_show
-ffffffc0085dc1ac t physical_package_id_show
-ffffffc0085dc210 t cluster_id_show
-ffffffc0085dc274 t core_id_show
-ffffffc0085dc2d8 t core_cpus_read
-ffffffc0085dc344 t core_cpus_list_read
-ffffffc0085dc3b0 t thread_siblings_read
-ffffffc0085dc41c t thread_siblings_list_read
-ffffffc0085dc488 t core_siblings_read
-ffffffc0085dc4f4 t core_siblings_list_read
-ffffffc0085dc560 t cluster_cpus_read
-ffffffc0085dc5cc t cluster_cpus_list_read
-ffffffc0085dc638 t package_cpus_read
-ffffffc0085dc6a4 t package_cpus_list_read
-ffffffc0085dc710 t trivial_online
-ffffffc0085dc724 t container_offline
-ffffffc0085dc778 T dev_fwnode
-ffffffc0085dc7a0 T device_property_present
-ffffffc0085dc894 T fwnode_property_present
-ffffffc0085dc970 T device_property_read_u8_array
-ffffffc0085dca80 T fwnode_property_read_u8_array
-ffffffc0085dcb74 T device_property_read_u16_array
-ffffffc0085dcc84 T fwnode_property_read_u16_array
-ffffffc0085dcd78 T device_property_read_u32_array
-ffffffc0085dce88 T fwnode_property_read_u32_array
-ffffffc0085dcf7c T device_property_read_u64_array
-ffffffc0085dd08c T fwnode_property_read_u64_array
-ffffffc0085dd180 T device_property_read_string_array
-ffffffc0085dd288 T fwnode_property_read_string_array
-ffffffc0085dd36c T device_property_read_string
-ffffffc0085dd478 T fwnode_property_read_string
-ffffffc0085dd564 T device_property_match_string
-ffffffc0085dd5a4 T fwnode_property_match_string
-ffffffc0085dd798 T fwnode_property_get_reference_args
-ffffffc0085dd8bc T fwnode_find_reference
-ffffffc0085dda18 T fwnode_get_name
-ffffffc0085dda8c T fwnode_get_name_prefix
-ffffffc0085ddb00 T fwnode_get_parent
-ffffffc0085ddb74 T fwnode_get_next_parent
-ffffffc0085ddc38 T fwnode_handle_put
-ffffffc0085ddc98 T fwnode_get_next_parent_dev
-ffffffc0085dddec T fwnode_count_parents
-ffffffc0085ddf08 T fwnode_get_nth_parent
-ffffffc0085de068 T fwnode_handle_get
-ffffffc0085de0c8 T fwnode_is_ancestor_of
-ffffffc0085de238 T fwnode_get_next_child_node
-ffffffc0085de2ac T fwnode_get_next_available_child_node
-ffffffc0085de384 T fwnode_device_is_available
-ffffffc0085de3fc T device_get_next_child_node
-ffffffc0085de4e4 T fwnode_get_named_child_node
-ffffffc0085de558 T device_get_named_child_node
-ffffffc0085de5e8 T device_get_child_node_count
-ffffffc0085de798 T device_dma_supported
-ffffffc0085de830 T device_get_dma_attr
-ffffffc0085de8d8 T fwnode_get_phy_mode
-ffffffc0085deae0 T device_get_phy_mode
-ffffffc0085deb20 T fwnode_iomap
-ffffffc0085deb94 T fwnode_irq_get
-ffffffc0085dec08 T fwnode_irq_get_byname
-ffffffc0085decb0 T fwnode_graph_get_next_endpoint
-ffffffc0085dee70 T fwnode_graph_get_port_parent
-ffffffc0085def68 T fwnode_graph_get_remote_port_parent
-ffffffc0085df0e4 T fwnode_graph_get_remote_endpoint
-ffffffc0085df158 T fwnode_graph_get_remote_port
-ffffffc0085df250 T fwnode_graph_get_endpoint_by_id
-ffffffc0085df5e8 T fwnode_graph_parse_endpoint
-ffffffc0085df660 T fwnode_graph_get_endpoint_count
-ffffffc0085df8c8 T device_get_match_data
-ffffffc0085df974 T fwnode_connection_find_match
-ffffffc0085dfa3c t fwnode_graph_devcon_matches
-ffffffc0085dfd68 t fwnode_devcon_matches
-ffffffc0085dff94 T fwnode_connection_find_matches
-ffffffc0085e003c T get_cpu_cacheinfo
-ffffffc0085e0074 T last_level_cache_is_valid
-ffffffc0085e00f8 T last_level_cache_is_shared
-ffffffc0085e01e8 W cache_setup_acpi
-ffffffc0085e01fc T detect_cache_attributes
-ffffffc0085e07bc t free_cache_attributes
-ffffffc0085e09b0 W cache_get_priv_group
-ffffffc0085e09c4 t cacheinfo_cpu_online
-ffffffc0085e0c04 t cacheinfo_cpu_pre_down
-ffffffc0085e0ca8 t cpu_cache_sysfs_exit
-ffffffc0085e0d90 t cache_default_attrs_is_visible
-ffffffc0085e0f20 t level_show
-ffffffc0085e0f68 t shared_cpu_map_show
-ffffffc0085e0fb8 t shared_cpu_list_show
-ffffffc0085e1008 t coherency_line_size_show
-ffffffc0085e1050 t ways_of_associativity_show
-ffffffc0085e1098 t number_of_sets_show
-ffffffc0085e10e0 t size_show
-ffffffc0085e112c t size_show
-ffffffc0085e1170 t write_policy_show
-ffffffc0085e11d0 t allocation_policy_show
-ffffffc0085e1250 t physical_line_partition_show
-ffffffc0085e1298 T is_software_node
-ffffffc0085e12d4 T to_software_node
-ffffffc0085e131c T software_node_fwnode
-ffffffc0085e13a4 T property_entries_dup
-ffffffc0085e1860 T property_entries_free
-ffffffc0085e192c T software_node_find_by_name
-ffffffc0085e19f4 T software_node_register_nodes
-ffffffc0085e1ae8 T software_node_register
-ffffffc0085e1bec T software_node_unregister_nodes
-ffffffc0085e1ce4 T software_node_unregister
-ffffffc0085e1d94 T software_node_register_node_group
-ffffffc0085e1e0c T software_node_unregister_node_group
-ffffffc0085e1ef0 t swnode_register
-ffffffc0085e20b0 T fwnode_remove_software_node
-ffffffc0085e2108 T fwnode_create_software_node
-ffffffc0085e2214 T device_add_software_node
-ffffffc0085e23f4 T software_node_notify
-ffffffc0085e24c8 T device_remove_software_node
-ffffffc0085e2568 T software_node_notify_remove
-ffffffc0085e2640 T device_create_managed_software_node
-ffffffc0085e274c t software_node_get
-ffffffc0085e27b0 t software_node_put
-ffffffc0085e2808 t software_node_property_present
-ffffffc0085e2898 t software_node_read_int_array
-ffffffc0085e2a18 t software_node_read_string_array
-ffffffc0085e2b64 t software_node_get_name
-ffffffc0085e2ba0 t software_node_get_name_prefix
-ffffffc0085e2c44 t software_node_get_parent
-ffffffc0085e2cb8 t software_node_get_next_child
-ffffffc0085e2d7c t software_node_get_named_child_node
-ffffffc0085e2e34 t software_node_get_reference_args
-ffffffc0085e3084 t software_node_graph_get_next_endpoint
-ffffffc0085e332c t software_node_graph_get_remote_endpoint
-ffffffc0085e3474 t software_node_graph_get_port_parent
-ffffffc0085e3530 t software_node_graph_parse_endpoint
-ffffffc0085e35f0 t swnode_graph_find_next_port
-ffffffc0085e3738 t software_node_release
-ffffffc0085e37f4 T dpm_sysfs_add
-ffffffc0085e3904 T dpm_sysfs_change_owner
-ffffffc0085e39fc T wakeup_sysfs_add
-ffffffc0085e3a58 T wakeup_sysfs_remove
-ffffffc0085e3aa8 T pm_qos_sysfs_add_resume_latency
-ffffffc0085e3adc T pm_qos_sysfs_remove_resume_latency
-ffffffc0085e3b10 T pm_qos_sysfs_add_flags
-ffffffc0085e3b44 T pm_qos_sysfs_remove_flags
-ffffffc0085e3b78 T pm_qos_sysfs_add_latency_tolerance
-ffffffc0085e3bac T pm_qos_sysfs_remove_latency_tolerance
-ffffffc0085e3be0 T rpm_sysfs_remove
-ffffffc0085e3c14 T dpm_sysfs_remove
-ffffffc0085e3c94 t runtime_status_show
-ffffffc0085e3d20 t runtime_suspended_time_show
-ffffffc0085e3d84 t runtime_active_time_show
-ffffffc0085e3de8 t autosuspend_delay_ms_show
-ffffffc0085e3e3c t autosuspend_delay_ms_store
-ffffffc0085e3f08 t wakeup_store
-ffffffc0085e3f98 t wakeup_active_count_show
-ffffffc0085e402c t wakeup_abort_count_show
-ffffffc0085e40c0 t wakeup_expire_count_show
-ffffffc0085e4154 t wakeup_active_show
-ffffffc0085e41ec t wakeup_total_time_ms_show
-ffffffc0085e429c t wakeup_max_time_ms_show
-ffffffc0085e434c t wakeup_last_time_ms_show
-ffffffc0085e43fc t pm_qos_latency_tolerance_us_show
-ffffffc0085e448c t pm_qos_latency_tolerance_us_store
-ffffffc0085e4574 t pm_qos_resume_latency_us_show
-ffffffc0085e45dc t pm_qos_resume_latency_us_store
-ffffffc0085e46e4 t pm_qos_no_power_off_show
-ffffffc0085e4734 t pm_qos_no_power_off_store
-ffffffc0085e47e8 T pm_generic_runtime_suspend
-ffffffc0085e484c T pm_generic_runtime_resume
-ffffffc0085e48b0 T pm_generic_prepare
-ffffffc0085e4914 T pm_generic_suspend_noirq
-ffffffc0085e4978 T pm_generic_suspend_late
-ffffffc0085e49dc T pm_generic_suspend
-ffffffc0085e4a40 T pm_generic_freeze_noirq
-ffffffc0085e4aa4 T pm_generic_freeze_late
-ffffffc0085e4b08 T pm_generic_freeze
-ffffffc0085e4b6c T pm_generic_poweroff_noirq
-ffffffc0085e4bd0 T pm_generic_poweroff_late
-ffffffc0085e4c34 T pm_generic_poweroff
-ffffffc0085e4c98 T pm_generic_thaw_noirq
-ffffffc0085e4cfc T pm_generic_thaw_early
-ffffffc0085e4d60 T pm_generic_thaw
-ffffffc0085e4dc4 T pm_generic_resume_noirq
-ffffffc0085e4e28 T pm_generic_resume_early
-ffffffc0085e4e8c T pm_generic_resume
-ffffffc0085e4ef0 T pm_generic_restore_noirq
-ffffffc0085e4f54 T pm_generic_restore_early
-ffffffc0085e4fb8 T pm_generic_restore
-ffffffc0085e501c T pm_generic_complete
-ffffffc0085e5078 T dev_pm_get_subsys_data
-ffffffc0085e5128 T dev_pm_put_subsys_data
-ffffffc0085e51a8 T dev_pm_domain_attach
-ffffffc0085e51bc T dev_pm_domain_attach_by_id
-ffffffc0085e51dc T dev_pm_domain_attach_by_name
-ffffffc0085e51fc T dev_pm_domain_detach
-ffffffc0085e5254 T dev_pm_domain_start
-ffffffc0085e52b0 T dev_pm_domain_set
-ffffffc0085e5324 T __dev_pm_qos_flags
-ffffffc0085e5380 T dev_pm_qos_flags
-ffffffc0085e5424 T __dev_pm_qos_resume_latency
-ffffffc0085e5454 T dev_pm_qos_read_value
-ffffffc0085e5534 T dev_pm_qos_constraints_destroy
-ffffffc0085e57a0 t apply_constraint
-ffffffc0085e58cc T dev_pm_qos_add_request
-ffffffc0085e594c t __dev_pm_qos_add_request
-ffffffc0085e5b18 T dev_pm_qos_update_request
-ffffffc0085e5b80 t __dev_pm_qos_update_request.llvm.12987161892590686082
-ffffffc0085e5d28 T dev_pm_qos_remove_request
-ffffffc0085e5d80 t __dev_pm_qos_remove_request
-ffffffc0085e5ebc T dev_pm_qos_add_notifier
-ffffffc0085e5fa4 t dev_pm_qos_constraints_allocate
-ffffffc0085e60a4 T dev_pm_qos_remove_notifier
-ffffffc0085e6170 T dev_pm_qos_add_ancestor_request
-ffffffc0085e6240 T dev_pm_qos_expose_latency_limit
-ffffffc0085e63b0 T dev_pm_qos_hide_latency_limit
-ffffffc0085e6450 T dev_pm_qos_expose_flags
-ffffffc0085e65c4 T dev_pm_qos_hide_flags
-ffffffc0085e6678 T dev_pm_qos_update_flags
-ffffffc0085e6724 T dev_pm_qos_get_user_latency_tolerance
-ffffffc0085e6794 T dev_pm_qos_update_user_latency_tolerance
-ffffffc0085e68a4 T dev_pm_qos_expose_latency_tolerance
-ffffffc0085e6918 T dev_pm_qos_hide_latency_tolerance
-ffffffc0085e69d0 T pm_runtime_active_time
-ffffffc0085e6a70 T pm_runtime_suspended_time
-ffffffc0085e6b10 T pm_runtime_autosuspend_expiration
-ffffffc0085e6b84 T pm_runtime_set_memalloc_noio
-ffffffc0085e6c70 t dev_memalloc_noio
-ffffffc0085e6c88 T pm_runtime_release_supplier
-ffffffc0085e6d54 T pm_schedule_suspend
-ffffffc0085e6ebc t rpm_suspend
-ffffffc0085e766c T __pm_runtime_idle
-ffffffc0085e777c t trace_rpm_usage_rcuidle
-ffffffc0085e788c t rpm_idle
-ffffffc0085e7bec T __pm_runtime_suspend
-ffffffc0085e7d00 T __pm_runtime_resume
-ffffffc0085e7da0 t rpm_resume
-ffffffc0085e8458 T pm_runtime_get_if_active
-ffffffc0085e858c T __pm_runtime_set_status
-ffffffc0085e8ac4 T pm_runtime_enable
-ffffffc0085e8ba0 T pm_runtime_barrier
-ffffffc0085e8cb4 t __pm_runtime_barrier
-ffffffc0085e8df4 T __pm_runtime_disable
-ffffffc0085e8f7c T devm_pm_runtime_enable
-ffffffc0085e9018 t pm_runtime_disable_action
-ffffffc0085e9088 T pm_runtime_forbid
-ffffffc0085e911c T pm_runtime_allow
-ffffffc0085e9210 T pm_runtime_no_callbacks
-ffffffc0085e927c T pm_runtime_irq_safe
-ffffffc0085e9338 T pm_runtime_set_autosuspend_delay
-ffffffc0085e93a0 t update_autosuspend
-ffffffc0085e946c T __pm_runtime_use_autosuspend
-ffffffc0085e94ec T pm_runtime_init
-ffffffc0085e95a0 t pm_runtime_work
-ffffffc0085e9668 t pm_suspend_timer_fn
-ffffffc0085e96f4 T pm_runtime_reinit
-ffffffc0085e9788 T pm_runtime_remove
-ffffffc0085e9824 T pm_runtime_get_suppliers
-ffffffc0085e9918 T pm_runtime_put_suppliers
-ffffffc0085e99a8 T pm_runtime_new_link
-ffffffc0085e99fc T pm_runtime_drop_link
-ffffffc0085e9b3c T pm_runtime_force_suspend
-ffffffc0085e9cf0 T pm_runtime_force_resume
-ffffffc0085e9e64 t trace_rpm_return_int_rcuidle
-ffffffc0085e9f74 t __rpm_callback
-ffffffc0085ea3ac T dev_pm_set_wake_irq
-ffffffc0085ea440 t dev_pm_attach_wake_irq
-ffffffc0085ea518 T dev_pm_clear_wake_irq
-ffffffc0085ea5b4 T dev_pm_set_dedicated_wake_irq
-ffffffc0085ea5e0 t __dev_pm_set_dedicated_wake_irq
-ffffffc0085ea710 T dev_pm_set_dedicated_wake_irq_reverse
-ffffffc0085ea740 T dev_pm_enable_wake_irq
-ffffffc0085ea780 T dev_pm_disable_wake_irq
-ffffffc0085ea7c0 T dev_pm_enable_wake_irq_check
-ffffffc0085ea824 T dev_pm_disable_wake_irq_check
-ffffffc0085ea878 T dev_pm_enable_wake_irq_complete
-ffffffc0085ea8c0 T dev_pm_arm_wake_irq
-ffffffc0085ea934 T dev_pm_disarm_wake_irq
-ffffffc0085ea9ac t handle_threaded_wake_irq
-ffffffc0085eaa3c T device_pm_sleep_init
-ffffffc0085eaab0 T device_pm_lock
-ffffffc0085eaae4 T device_pm_unlock
-ffffffc0085eab18 T device_pm_add
-ffffffc0085eabe4 T device_pm_check_callbacks
-ffffffc0085eae00 T device_pm_remove
-ffffffc0085eaea4 T device_pm_move_before
-ffffffc0085eaf30 T device_pm_move_after
-ffffffc0085eafb0 T device_pm_move_last
-ffffffc0085eb034 T dev_pm_skip_resume
-ffffffc0085eb088 T dev_pm_skip_suspend
-ffffffc0085eb0b8 T dpm_resume_noirq
-ffffffc0085eb54c T dpm_resume_early
-ffffffc0085eb9d4 t async_resume_early
-ffffffc0085ebafc t device_resume_early
-ffffffc0085ebd30 T dpm_resume_start
-ffffffc0085ebd74 T dpm_resume
-ffffffc0085ec220 t async_resume
-ffffffc0085ec348 t device_resume
-ffffffc0085ec57c T dpm_complete
-ffffffc0085ec9e4 T dpm_resume_end
-ffffffc0085eca28 T dpm_suspend_noirq
-ffffffc0085ecf1c T dpm_suspend_late
-ffffffc0085ed3cc T dpm_suspend_end
-ffffffc0085ed45c T dpm_suspend
-ffffffc0085ed91c T dpm_prepare
-ffffffc0085edf38 T dpm_suspend_start
-ffffffc0085edffc T __suspend_report_result
-ffffffc0085ee04c T device_pm_wait_for_dev
-ffffffc0085ee0a4 T dpm_for_each_dev
-ffffffc0085ee144 t async_resume_noirq
-ffffffc0085ee26c t device_resume_noirq
-ffffffc0085ee4d8 t dpm_wait_for_superior
-ffffffc0085ee60c t dpm_run_callback
-ffffffc0085ee7c4 t async_suspend_noirq
-ffffffc0085ee94c t __device_suspend_noirq
-ffffffc0085eecac t dpm_wait_for_subordinate
-ffffffc0085eedb0 t dpm_wait_fn
-ffffffc0085eee08 t async_suspend_late
-ffffffc0085eef90 t __device_suspend_late
-ffffffc0085ef2a0 t dpm_propagate_wakeup_to_parent
-ffffffc0085ef314 t async_suspend
-ffffffc0085ef49c t __device_suspend
-ffffffc0085ef92c t legacy_suspend
-ffffffc0085efae4 T wakeup_source_create
-ffffffc0085efb88 T wakeup_source_destroy
-ffffffc0085efc9c T __pm_relax
-ffffffc0085efd08 T wakeup_source_add
-ffffffc0085efdd4 t pm_wakeup_timer_fn
-ffffffc0085efe60 T wakeup_source_remove
-ffffffc0085efefc T wakeup_source_register
-ffffffc0085f0064 T wakeup_source_unregister
-ffffffc0085f010c T wakeup_sources_read_lock
-ffffffc0085f0140 T wakeup_sources_read_unlock
-ffffffc0085f0188 T wakeup_sources_walk_start
-ffffffc0085f01ac T wakeup_sources_walk_next
-ffffffc0085f0238 T device_wakeup_enable
-ffffffc0085f0310 T device_wakeup_attach_irq
-ffffffc0085f0368 T device_wakeup_detach_irq
-ffffffc0085f0384 T device_wakeup_arm_wake_irqs
-ffffffc0085f041c T device_wakeup_disarm_wake_irqs
-ffffffc0085f04b4 T device_wakeup_disable
-ffffffc0085f052c T device_set_wakeup_capable
-ffffffc0085f05dc T device_set_wakeup_enable
-ffffffc0085f0664 T __pm_stay_awake
-ffffffc0085f06d4 t wakeup_source_report_event
-ffffffc0085f08b0 T pm_stay_awake
-ffffffc0085f094c t wakeup_source_deactivate
-ffffffc0085f0af0 T pm_relax
-ffffffc0085f0b88 T pm_wakeup_ws_event
-ffffffc0085f0c4c T pm_wakeup_dev_event
-ffffffc0085f0cc8 T pm_get_active_wakeup_sources
-ffffffc0085f0e1c T pm_print_active_wakeup_sources
-ffffffc0085f0e98 T pm_wakeup_pending
-ffffffc0085f1030 T pm_system_wakeup
-ffffffc0085f1094 T pm_system_cancel_wakeup
-ffffffc0085f110c T pm_wakeup_clear
-ffffffc0085f1188 T pm_system_irq_wakeup
-ffffffc0085f12b0 T pm_wakeup_irq
-ffffffc0085f12c8 T pm_get_wakeup_count
-ffffffc0085f1454 T pm_save_wakeup_count
-ffffffc0085f14e0 t wakeup_sources_stats_open
-ffffffc0085f151c t wakeup_sources_stats_seq_start
-ffffffc0085f15b8 t wakeup_sources_stats_seq_stop
-ffffffc0085f1604 t wakeup_sources_stats_seq_next
-ffffffc0085f1674 t wakeup_sources_stats_seq_show
-ffffffc0085f16a0 t print_wakeup_source_stats
-ffffffc0085f17d4 T wakeup_source_sysfs_add
-ffffffc0085f18c4 T pm_wakeup_source_sysfs_add
-ffffffc0085f1908 T wakeup_source_sysfs_remove
-ffffffc0085f1938 t active_count_show
-ffffffc0085f1980 t event_count_show
-ffffffc0085f19c8 t expire_count_show
-ffffffc0085f1a10 t active_time_ms_show
-ffffffc0085f1a94 t total_time_ms_show
-ffffffc0085f1b20 t max_time_ms_show
-ffffffc0085f1bb0 t last_change_ms_show
-ffffffc0085f1c14 t prevent_suspend_time_ms_show
-ffffffc0085f1ca8 T pm_clk_add
-ffffffc0085f1cd4 t __pm_clk_add
-ffffffc0085f1e84 T pm_clk_add_clk
-ffffffc0085f1eb8 T of_pm_clk_add_clk
-ffffffc0085f1f40 T of_pm_clk_add_clks
-ffffffc0085f20ac T pm_clk_remove_clk
-ffffffc0085f2198 T pm_clk_remove
-ffffffc0085f2298 t __pm_clk_remove
-ffffffc0085f2334 T pm_clk_init
-ffffffc0085f2398 T pm_clk_create
-ffffffc0085f23c4 T pm_clk_destroy
-ffffffc0085f253c T devm_pm_clk_create
-ffffffc0085f25a4 t pm_clk_destroy_action
-ffffffc0085f25d0 T pm_clk_suspend
-ffffffc0085f26d4 t pm_clk_op_lock
-ffffffc0085f27e0 T pm_clk_resume
-ffffffc0085f2958 T pm_clk_runtime_suspend
-ffffffc0085f29dc T pm_clk_runtime_resume
-ffffffc0085f2a38 T pm_clk_add_notifier
-ffffffc0085f2a80 t pm_clk_notify
-ffffffc0085f2b44 T register_firmware_config_sysctl
-ffffffc0085f2ba0 T unregister_firmware_config_sysctl
-ffffffc0085f2be0 T fw_state_init
-ffffffc0085f2c34 T alloc_lookup_fw_priv
-ffffffc0085f2e40 T free_fw_priv
-ffffffc0085f2fa4 T fw_is_paged_buf
-ffffffc0085f2fb8 T fw_free_paged_buf
-ffffffc0085f304c T fw_grow_paged_buf
-ffffffc0085f316c T fw_map_paged_buf
-ffffffc0085f31f8 T assign_fw
-ffffffc0085f3280 T request_firmware
-ffffffc0085f32b8 t _request_firmware
-ffffffc0085f37c8 T firmware_request_nowarn
-ffffffc0085f3804 T request_firmware_direct
-ffffffc0085f3840 T firmware_request_platform
-ffffffc0085f387c T firmware_request_cache
-ffffffc0085f38c8 T request_firmware_into_buf
-ffffffc0085f38fc T request_partial_firmware_into_buf
-ffffffc0085f392c T release_firmware
-ffffffc0085f398c T request_firmware_nowait
-ffffffc0085f3ab4 t request_firmware_work_func
-ffffffc0085f3b74 t firmware_param_path_set
-ffffffc0085f3c6c t firmware_param_path_get
-ffffffc0085f3e64 t fw_shutdown_notify
-ffffffc0085f3e98 T fw_fallback_set_cache_timeout
-ffffffc0085f3ebc T fw_fallback_set_default_timeout
-ffffffc0085f3edc T kill_pending_fw_fallback_reqs
-ffffffc0085f3f6c T firmware_fallback_sysfs
-ffffffc0085f4294 T __fw_load_abort
-ffffffc0085f430c T register_sysfs_loader
-ffffffc0085f4380 T unregister_sysfs_loader
-ffffffc0085f43cc t firmware_loading_show
-ffffffc0085f4450 t firmware_loading_store
-ffffffc0085f4634 T fw_create_instance
-ffffffc0085f46f4 t firmware_uevent
-ffffffc0085f47bc t fw_dev_release
-ffffffc0085f47ec t timeout_show
-ffffffc0085f4830 t timeout_store
-ffffffc0085f4888 t firmware_data_read
-ffffffc0085f49bc t firmware_data_write
-ffffffc0085f4b88 T firmware_request_builtin
-ffffffc0085f4c28 T firmware_request_builtin_buf
-ffffffc0085f4cf0 T firmware_is_builtin
-ffffffc0085f4d58 T mhp_online_type_from_str
-ffffffc0085f4dfc T register_memory_notifier
-ffffffc0085f4e34 T unregister_memory_notifier
-ffffffc0085f4e6c W memory_block_size_bytes
-ffffffc0085f4e80 T memory_notify
-ffffffc0085f4ebc W arch_get_memory_phys_device
-ffffffc0085f4ed0 T find_memory_block
-ffffffc0085f4f2c T create_memory_block_devices
-ffffffc0085f50dc T remove_memory_block_devices
-ffffffc0085f5244 T walk_memory_blocks
-ffffffc0085f5344 T for_each_memory_block
-ffffffc0085f53b8 t for_each_memory_block_cb
-ffffffc0085f5404 T memory_group_register_static
-ffffffc0085f5488 t memory_group_register
-ffffffc0085f55d8 T memory_group_register_dynamic
-ffffffc0085f56bc T memory_group_unregister
-ffffffc0085f574c T memory_group_find_by_id
-ffffffc0085f5784 T walk_dynamic_memory_groups
-ffffffc0085f5860 t add_memory_block
-ffffffc0085f5b70 t memory_block_release
-ffffffc0085f5ba0 t phys_index_show
-ffffffc0085f5bf0 t phys_device_show
-ffffffc0085f5c48 t valid_zones_show
-ffffffc0085f5ddc t memory_subsys_online
-ffffffc0085f5e48 t memory_subsys_offline
-ffffffc0085f5e90 t memory_block_change_state
-ffffffc0085f60b8 t block_size_bytes_show
-ffffffc0085f6108 t auto_online_blocks_show
-ffffffc0085f6168 t auto_online_blocks_store
-ffffffc0085f6220 T __traceiter_regmap_reg_write
-ffffffc0085f62b8 T __traceiter_regmap_reg_read
-ffffffc0085f6350 T __traceiter_regmap_reg_read_cache
-ffffffc0085f63e8 T __traceiter_regmap_bulk_write
-ffffffc0085f6490 T __traceiter_regmap_bulk_read
-ffffffc0085f6538 T __traceiter_regmap_hw_read_start
-ffffffc0085f65d0 T __traceiter_regmap_hw_read_done
-ffffffc0085f6668 T __traceiter_regmap_hw_write_start
-ffffffc0085f6700 T __traceiter_regmap_hw_write_done
-ffffffc0085f6798 T __traceiter_regcache_sync
-ffffffc0085f6830 T __traceiter_regmap_cache_only
-ffffffc0085f68c0 T __traceiter_regmap_cache_bypass
-ffffffc0085f6950 T __traceiter_regmap_async_write_start
-ffffffc0085f69e8 T __traceiter_regmap_async_io_complete
-ffffffc0085f6a68 T __traceiter_regmap_async_complete_start
-ffffffc0085f6ae8 T __traceiter_regmap_async_complete_done
-ffffffc0085f6b68 T __traceiter_regcache_drop_region
-ffffffc0085f6c00 t trace_event_raw_event_regmap_reg
-ffffffc0085f6d48 t perf_trace_regmap_reg
-ffffffc0085f6efc t trace_event_raw_event_regmap_bulk
-ffffffc0085f707c t perf_trace_regmap_bulk
-ffffffc0085f7260 t trace_event_raw_event_regmap_block
-ffffffc0085f73a8 t perf_trace_regmap_block
-ffffffc0085f755c t trace_event_raw_event_regcache_sync
-ffffffc0085f7720 t perf_trace_regcache_sync
-ffffffc0085f7958 t trace_event_raw_event_regmap_bool
-ffffffc0085f7a98 t perf_trace_regmap_bool
-ffffffc0085f7c48 t trace_event_raw_event_regmap_async
-ffffffc0085f7d78 t perf_trace_regmap_async
-ffffffc0085f7f18 t trace_event_raw_event_regcache_drop_region
-ffffffc0085f8060 t perf_trace_regcache_drop_region
-ffffffc0085f8214 T regmap_reg_in_ranges
-ffffffc0085f8274 T regmap_check_range_table
-ffffffc0085f8334 T regmap_writeable
-ffffffc0085f8450 T regmap_cached
-ffffffc0085f8540 T regmap_readable
-ffffffc0085f866c T regmap_volatile
-ffffffc0085f889c T regmap_precious
-ffffffc0085f8ab8 T regmap_writeable_noinc
-ffffffc0085f8bc4 T regmap_readable_noinc
-ffffffc0085f8cd0 T regmap_attach_dev
-ffffffc0085f8d90 t dev_get_regmap_release
-ffffffc0085f8da0 T regmap_get_val_endian
-ffffffc0085f8e64 T __regmap_init
-ffffffc0085f9b88 t regmap_lock_unlock_none
-ffffffc0085f9b98 t regmap_lock_hwlock_irqsave
-ffffffc0085f9bd4 t regmap_unlock_hwlock_irqrestore
-ffffffc0085f9c0c t regmap_lock_hwlock_irq
-ffffffc0085f9c48 t regmap_unlock_hwlock_irq
-ffffffc0085f9c80 t regmap_lock_hwlock
-ffffffc0085f9cbc t regmap_unlock_hwlock
-ffffffc0085f9cf4 t regmap_lock_raw_spinlock
-ffffffc0085f9d30 t regmap_unlock_raw_spinlock
-ffffffc0085f9d60 t regmap_lock_spinlock
-ffffffc0085f9d9c t regmap_unlock_spinlock
-ffffffc0085f9dcc t regmap_lock_mutex
-ffffffc0085f9df8 t regmap_unlock_mutex
-ffffffc0085f9e24 t _regmap_bus_read
-ffffffc0085f9ec8 t _regmap_bus_reg_read
-ffffffc0085f9f24 t _regmap_bus_reg_write
-ffffffc0085f9f80 t regmap_format_2_6_write
-ffffffc0085f9f9c t regmap_format_4_12_write
-ffffffc0085f9fc0 t regmap_format_7_9_write
-ffffffc0085f9fe4 t regmap_format_7_17_write
-ffffffc0085fa010 t regmap_format_10_14_write
-ffffffc0085fa03c t regmap_format_12_20_write
-ffffffc0085fa070 t regmap_format_8
-ffffffc0085fa088 t regmap_format_16_be
-ffffffc0085fa0a8 t regmap_format_16_le
-ffffffc0085fa0c0 t regmap_format_16_native
-ffffffc0085fa0d8 t regmap_format_24_be
-ffffffc0085fa100 t regmap_format_32_be
-ffffffc0085fa11c t regmap_format_32_le
-ffffffc0085fa134 t regmap_format_32_native
-ffffffc0085fa14c t regmap_format_64_be
-ffffffc0085fa16c t regmap_format_64_le
-ffffffc0085fa188 t regmap_format_64_native
-ffffffc0085fa1a4 t regmap_parse_inplace_noop
-ffffffc0085fa1b4 t regmap_parse_8
-ffffffc0085fa1c8 t regmap_parse_16_be
-ffffffc0085fa1e4 t regmap_parse_16_be_inplace
-ffffffc0085fa204 t regmap_parse_16_le
-ffffffc0085fa218 t regmap_parse_16_le_inplace
-ffffffc0085fa228 t regmap_parse_16_native
-ffffffc0085fa23c t regmap_parse_24_be
-ffffffc0085fa264 t regmap_parse_32_be
-ffffffc0085fa27c t regmap_parse_32_be_inplace
-ffffffc0085fa298 t regmap_parse_32_le
-ffffffc0085fa2ac t regmap_parse_32_le_inplace
-ffffffc0085fa2bc t regmap_parse_32_native
-ffffffc0085fa2d0 t regmap_parse_64_be
-ffffffc0085fa2e8 t regmap_parse_64_be_inplace
-ffffffc0085fa304 t regmap_parse_64_le
-ffffffc0085fa318 t regmap_parse_64_le_inplace
-ffffffc0085fa328 t regmap_parse_64_native
-ffffffc0085fa33c t _regmap_bus_formatted_write
-ffffffc0085fa624 t _regmap_bus_raw_write
-ffffffc0085fa6c8 T __devm_regmap_init
-ffffffc0085fa788 t devm_regmap_release
-ffffffc0085fa7b8 T devm_regmap_field_alloc
-ffffffc0085fa874 T regmap_field_bulk_alloc
-ffffffc0085fa9f8 T devm_regmap_field_bulk_alloc
-ffffffc0085fab08 T regmap_field_bulk_free
-ffffffc0085fab34 T devm_regmap_field_bulk_free
-ffffffc0085fab60 T devm_regmap_field_free
-ffffffc0085fab8c T regmap_field_alloc
-ffffffc0085fac50 T regmap_field_free
-ffffffc0085fac7c T regmap_reinit_cache
-ffffffc0085fad4c T regmap_exit
-ffffffc0085faebc T dev_get_regmap
-ffffffc0085faf04 t dev_get_regmap_match
-ffffffc0085faf64 T regmap_get_device
-ffffffc0085faf78 T regmap_can_raw_write
-ffffffc0085fafb0 T regmap_get_raw_read_max
-ffffffc0085fafc4 T regmap_get_raw_write_max
-ffffffc0085fafd8 T _regmap_write
-ffffffc0085fb278 T regmap_write
-ffffffc0085fb330 T regmap_write_async
-ffffffc0085fb3f4 T _regmap_raw_write
-ffffffc0085fb52c t _regmap_raw_write_impl
-ffffffc0085fc174 T regmap_raw_write
-ffffffc0085fc328 T regmap_noinc_write
-ffffffc0085fc728 T regmap_field_update_bits_base
-ffffffc0085fc780 T regmap_update_bits_base
-ffffffc0085fc928 T regmap_field_test_bits
-ffffffc0085fca30 T regmap_field_read
-ffffffc0085fcb34 T regmap_fields_update_bits_base
-ffffffc0085fcb9c T regmap_bulk_write
-ffffffc0085fce84 T regmap_multi_reg_write
-ffffffc0085fcf20 t _regmap_multi_reg_write
-ffffffc0085fd36c T regmap_multi_reg_write_bypassed
-ffffffc0085fd41c T regmap_raw_write_async
-ffffffc0085fd5d4 T regmap_read
-ffffffc0085fd688 t _regmap_read
-ffffffc0085fd950 T regmap_raw_read
-ffffffc0085fdbf0 t _regmap_raw_read
-ffffffc0085fdfc4 T regmap_noinc_read
-ffffffc0085fe238 T regmap_fields_read
-ffffffc0085fe350 T regmap_bulk_read
-ffffffc0085fe694 T regmap_test_bits
-ffffffc0085fe78c T regmap_async_complete_cb
-ffffffc0085fe920 T regmap_async_complete
-ffffffc0085fec00 T regmap_register_patch
-ffffffc0085fed6c T regmap_get_val_bytes
-ffffffc0085fed94 T regmap_get_max_register
-ffffffc0085fedb4 T regmap_get_reg_stride
-ffffffc0085fedc8 T regmap_parse_val
-ffffffc0085fee38 t trace_raw_output_regmap_reg
-ffffffc0085feeb4 t trace_raw_output_regmap_bulk
-ffffffc0085fef5c t trace_raw_output_regmap_block
-ffffffc0085fefd8 t trace_raw_output_regcache_sync
-ffffffc0085ff060 t trace_raw_output_regmap_bool
-ffffffc0085ff0dc t trace_raw_output_regmap_async
-ffffffc0085ff154 t trace_raw_output_regcache_drop_region
-ffffffc0085ff1cc t _regmap_select_page
-ffffffc0085ff370 t _regmap_raw_multi_reg_write
-ffffffc0085ff6ec T regcache_init
-ffffffc0085ffbcc T regcache_exit
-ffffffc0085ffc58 T regcache_read
-ffffffc0085ffd90 T regcache_write
-ffffffc0085ffe2c T regcache_sync
-ffffffc0086000d4 t regcache_default_sync
-ffffffc008600248 T regcache_sync_region
-ffffffc008600494 T regcache_drop_region
-ffffffc008600600 T regcache_cache_only
-ffffffc008600730 T regcache_mark_dirty
-ffffffc0086007b0 T regcache_cache_bypass
-ffffffc0086008d8 T regcache_set_val
-ffffffc008600a6c T regcache_get_val
-ffffffc008600b2c T regcache_lookup_reg
-ffffffc008600bc8 t regcache_default_cmp
-ffffffc008600be4 T regcache_sync_block
-ffffffc008601050 t regcache_rbtree_init
-ffffffc008601100 t regcache_rbtree_exit
-ffffffc00860119c t rbtree_debugfs_init
-ffffffc0086011ec t regcache_rbtree_read
-ffffffc0086012f0 t regcache_rbtree_write
-ffffffc008601808 t regcache_rbtree_sync
-ffffffc0086018e4 t regcache_rbtree_drop
-ffffffc0086019b8 t rbtree_open
-ffffffc0086019f8 t rbtree_show
-ffffffc008601b5c t regcache_flat_init
-ffffffc008601c08 t regcache_flat_exit
-ffffffc008601c4c t regcache_flat_read
-ffffffc008601c78 t regcache_flat_write
-ffffffc008601ca4 T regmap_debugfs_init
-ffffffc008601fdc T regmap_debugfs_exit
-ffffffc008602134 T regmap_debugfs_initcall
-ffffffc00860220c t regmap_name_read_file
-ffffffc0086022f4 t regmap_reg_ranges_read_file
-ffffffc008602640 t regmap_debugfs_get_dump_start
-ffffffc008602964 t regmap_map_read_file
-ffffffc0086029a4 t regmap_read_debugfs
-ffffffc008602dcc t regmap_access_open
-ffffffc008602e0c t regmap_access_show
-ffffffc008602f44 t regmap_cache_only_write_file
-ffffffc008603104 t regmap_cache_bypass_write_file
-ffffffc008603258 t regmap_range_read_file
-ffffffc00860329c T __regmap_init_mmio_clk
-ffffffc008603314 t regmap_mmio_gen_context
-ffffffc008603640 T __devm_regmap_init_mmio_clk
-ffffffc0086036bc T regmap_mmio_attach_clk
-ffffffc0086036fc T regmap_mmio_detach_clk
-ffffffc008603740 t regmap_mmio_ioread8
-ffffffc008603778 t regmap_mmio_iowrite8
-ffffffc0086037b0 t regmap_mmio_read8_relaxed
-ffffffc0086037e8 t regmap_mmio_write8_relaxed
-ffffffc008603820 t regmap_mmio_read8
-ffffffc008603858 t regmap_mmio_write8
-ffffffc008603890 t regmap_mmio_ioread16le
-ffffffc0086038c8 t regmap_mmio_iowrite16le
-ffffffc008603900 t regmap_mmio_read16le_relaxed
-ffffffc008603938 t regmap_mmio_write16le_relaxed
-ffffffc008603970 t regmap_mmio_read16le
-ffffffc0086039a8 t regmap_mmio_write16le
-ffffffc0086039e0 t regmap_mmio_ioread32le
-ffffffc008603a14 t regmap_mmio_iowrite32le
-ffffffc008603a4c t regmap_mmio_read32le_relaxed
-ffffffc008603a80 t regmap_mmio_write32le_relaxed
-ffffffc008603ab8 t regmap_mmio_read32le
-ffffffc008603aec t regmap_mmio_write32le
-ffffffc008603b24 t regmap_mmio_ioread16be
-ffffffc008603b58 t regmap_mmio_iowrite16be
-ffffffc008603b80 t regmap_mmio_read16be
-ffffffc008603bbc t regmap_mmio_write16be
-ffffffc008603bfc t regmap_mmio_ioread32be
-ffffffc008603c2c t regmap_mmio_iowrite32be
-ffffffc008603c50 t regmap_mmio_read32be
-ffffffc008603c88 t regmap_mmio_write32be
-ffffffc008603cc0 t readb_relaxed
-ffffffc008603d54 t readw_relaxed
-ffffffc008603de8 t writew_relaxed
-ffffffc008603e84 t regmap_mmio_write
-ffffffc008603f1c t regmap_mmio_noinc_write
-ffffffc008604130 t regmap_mmio_read
-ffffffc0086041c8 t regmap_mmio_noinc_read
-ffffffc008604514 t regmap_mmio_free_context
-ffffffc00860456c t writeq
-ffffffc008604600 t writeq
-ffffffc008604698 T soc_device_to_device
-ffffffc0086046a8 T soc_device_register
-ffffffc008604800 t soc_release
-ffffffc008604854 T soc_device_unregister
-ffffffc008604888 T soc_device_match
-ffffffc008604948 t soc_device_match_one
-ffffffc008604974 t soc_device_match_attr
-ffffffc008604a1c t soc_attribute_mode
-ffffffc008604af4 t soc_info_show
-ffffffc008604bc4 T platform_msi_create_irq_domain
-ffffffc008604d30 T platform_msi_domain_alloc_irqs
-ffffffc008604db8 t platform_msi_alloc_priv_data
-ffffffc008604ec4 T platform_msi_domain_free_irqs
-ffffffc008604f28 T platform_msi_get_host_data
-ffffffc008604f40 T __platform_msi_create_device_domain
-ffffffc00860502c T platform_msi_device_domain_free
-ffffffc0086050b4 T platform_msi_device_domain_alloc
-ffffffc0086050f4 t platform_msi_init
-ffffffc008605130 t platform_msi_set_desc
-ffffffc008605164 t platform_msi_write_msg
-ffffffc0086051c0 T __traceiter_thermal_pressure_update
-ffffffc008605250 t trace_event_raw_event_thermal_pressure_update
-ffffffc008605310 t perf_trace_thermal_pressure_update
-ffffffc00860542c T topology_scale_freq_invariant
-ffffffc008605474 T topology_set_scale_freq_source
-ffffffc0086055f4 T topology_clear_scale_freq_source
-ffffffc008605734 T topology_scale_freq_tick
-ffffffc00860579c T topology_set_freq_scale
-ffffffc008605864 T topology_set_cpu_scale
-ffffffc00860589c T topology_update_thermal_pressure
-ffffffc008605a78 T topology_update_cpu_topology
-ffffffc008605a8c T topology_normalize_cpu_scale
-ffffffc008605bb8 T cpu_coregroup_mask
-ffffffc008605c78 T cpu_clustergroup_mask
-ffffffc008605d5c T update_siblings_masks
-ffffffc0086060b0 t clear_cpu_topology
-ffffffc008606248 T remove_cpu_topology
-ffffffc00860647c T store_cpu_topology
-ffffffc008606518 t trace_raw_output_thermal_pressure_update
-ffffffc008606590 t cpu_capacity_show
-ffffffc0086065f8 T __traceiter_devres_log
-ffffffc0086066a8 t trace_event_raw_event_devres
-ffffffc0086067e4 t perf_trace_devres
-ffffffc00860698c t trace_raw_output_devres
-ffffffc008606a08 t brd_cleanup
-ffffffc008606bc0 t brd_alloc
-ffffffc008606df4 t brd_probe
-ffffffc008606e30 t brd_submit_bio
-ffffffc008606f94 t brd_rw_page
-ffffffc008607018 t brd_do_bvec
-ffffffc0086074f4 t brd_insert_page
-ffffffc008607674 t loop_set_hw_queue_depth
-ffffffc0086076cc t loop_control_ioctl
-ffffffc008607948 t loop_add
-ffffffc008607c4c t loop_free_idle_workers_timer
-ffffffc008607c80 t loop_rootcg_workfn
-ffffffc008607cb4 t loop_free_idle_workers
-ffffffc008607ddc t loop_queue_rq
-ffffffc008607fec t lo_complete_rq
-ffffffc0086080b0 t loop_workfn
-ffffffc0086080e8 t loop_process_work
-ffffffc00860894c t lo_rw_aio
-ffffffc008608cbc t lo_rw_aio_complete
-ffffffc008608d50 t lo_release
-ffffffc008608de0 t lo_ioctl
-ffffffc008609d4c t lo_free_disk
-ffffffc008609da4 t __loop_clr_fd
-ffffffc008609fa8 t loop_attr_do_show_backing_file
-ffffffc00860a05c t loop_attr_do_show_offset
-ffffffc00860a0a8 t loop_attr_do_show_sizelimit
-ffffffc00860a0f4 t loop_attr_do_show_autoclear
-ffffffc00860a158 t loop_attr_do_show_partscan
-ffffffc00860a1bc t loop_attr_do_show_dio
-ffffffc00860a220 t loop_configure
-ffffffc00860a724 t loop_set_status_from_info
-ffffffc00860a7f8 t loop_config_discard
-ffffffc00860a8f0 t loop_update_rotational
-ffffffc00860a950 t loop_set_size
-ffffffc00860a9a4 t loop_reread_partitions
-ffffffc00860aa24 t __loop_update_dio
-ffffffc00860ab48 t loop_set_status
-ffffffc00860add4 t loop_get_status
-ffffffc00860afa8 t loop_probe
-ffffffc00860aff8 t virtblk_probe
-ffffffc00860ba60 t virtblk_remove
-ffffffc00860bb04 t virtblk_config_changed
-ffffffc00860bb44 t virtblk_freeze
-ffffffc00860bbc8 t virtblk_restore
-ffffffc00860bc88 t virtblk_config_changed_work
-ffffffc00860bcb8 t init_vq
-ffffffc00860c014 t virtblk_update_capacity
-ffffffc00860c260 t virtblk_done
-ffffffc00860c37c t virtio_queue_rq
-ffffffc00860c51c t virtio_commit_rqs
-ffffffc00860c594 t virtio_queue_rqs
-ffffffc00860c770 t virtblk_poll
-ffffffc00860c904 t virtblk_request_done
-ffffffc00860c9ac t virtblk_map_queues
-ffffffc00860ca68 t virtblk_prep_rq
-ffffffc00860cd10 t virtblk_add_req
-ffffffc00860ce1c t virtblk_fail_to_queue
-ffffffc00860ce7c t virtblk_complete_batch
-ffffffc00860cf34 t virtblk_getgeo
-ffffffc00860d0c8 t virtblk_free_disk
-ffffffc00860d114 t virtblk_attrs_are_visible
-ffffffc00860d184 t cache_type_show
-ffffffc00860d284 t cache_type_store
-ffffffc00860d3f4 t serial_show
-ffffffc00860d4e4 T zcomp_available_algorithm
-ffffffc00860d520 T zcomp_available_show
-ffffffc00860d6d0 T zcomp_stream_get
-ffffffc00860d708 T zcomp_stream_put
-ffffffc00860d768 T zcomp_compress
-ffffffc00860d7ac T zcomp_decompress
-ffffffc00860d814 T zcomp_cpu_up_prepare
-ffffffc00860d8c8 T zcomp_cpu_dead
-ffffffc00860d944 T zcomp_destroy
-ffffffc00860d998 T zcomp_create
-ffffffc00860da70 t destroy_devices
-ffffffc00860daf8 t zram_remove_cb
-ffffffc00860db38 t hot_add_show
-ffffffc00860dbb4 t zram_add
-ffffffc00860ddfc t zram_submit_bio
-ffffffc00860e140 t zram_open
-ffffffc00860e1a4 t zram_rw_page
-ffffffc00860e324 t zram_slot_free_notify
-ffffffc00860e4bc t zram_bvec_rw
-ffffffc00860f058 t zram_slot_lock
-ffffffc00860f148 t zram_free_page
-ffffffc00860f31c t disksize_show
-ffffffc00860f36c t disksize_store
-ffffffc00860f4b0 t zram_meta_free
-ffffffc00860f524 t initstate_show
-ffffffc00860f5a0 t zram_reset_device
-ffffffc00860f6fc t compact_store
-ffffffc00860f770 t mem_limit_store
-ffffffc00860f830 t mem_used_max_store
-ffffffc00860f8f8 t idle_store
-ffffffc00860fa58 t max_comp_streams_show
-ffffffc00860faa8 t max_comp_streams_store
-ffffffc00860fabc t comp_algorithm_show
-ffffffc00860fb28 t comp_algorithm_store
-ffffffc00860fc60 t io_stat_show
-ffffffc00860fd04 t mm_stat_show
-ffffffc00860fe3c t debug_stat_show
-ffffffc00860fecc t hot_remove_store
-ffffffc00860ffbc t zram_remove
-ffffffc0086100b4 t open_dice_remove
-ffffffc0086100ec t open_dice_read
-ffffffc00861016c t open_dice_write
-ffffffc008610218 t open_dice_mmap
-ffffffc0086102b8 t vcpu_stall_detect_probe
-ffffffc008610498 t vcpu_stall_detect_remove
-ffffffc008610594 t start_stall_detector_cpu
-ffffffc008610688 t stop_stall_detector_cpu
-ffffffc008610710 t vcpu_stall_detect_timer_fn
-ffffffc0086107d4 T device_node_to_regmap
-ffffffc008610800 t device_node_get_regmap
-ffffffc008610b9c T syscon_node_to_regmap
-ffffffc008610c2c T syscon_regmap_lookup_by_compatible
-ffffffc008610cd8 T syscon_regmap_lookup_by_phandle
-ffffffc008610dd8 T syscon_regmap_lookup_by_phandle_args
-ffffffc008610f08 T syscon_regmap_lookup_by_phandle_optional
-ffffffc008611014 t syscon_probe
-ffffffc008611164 T dma_buf_get_each
-ffffffc00861121c T is_dma_buf_file
-ffffffc008611240 T dma_buf_export
-ffffffc008611548 T dma_buf_fd
-ffffffc0086115b0 T dma_buf_get
-ffffffc00861160c T dma_buf_put
-ffffffc00861164c T dma_buf_dynamic_attach
-ffffffc00861192c T dma_buf_detach
-ffffffc008611a88 T dma_buf_attach
-ffffffc008611abc T dma_buf_pin
-ffffffc008611b28 T dma_buf_unpin
-ffffffc008611b8c T dma_buf_map_attachment
-ffffffc008611d40 T dma_buf_unmap_attachment
-ffffffc008611e14 T dma_buf_move_notify
-ffffffc008611e8c T dma_buf_begin_cpu_access
-ffffffc008611f2c T dma_buf_begin_cpu_access_partial
-ffffffc008611fcc T dma_buf_end_cpu_access
-ffffffc008612030 T dma_buf_end_cpu_access_partial
-ffffffc008612094 T dma_buf_mmap
-ffffffc008612168 T dma_buf_vmap
-ffffffc0086122b8 T dma_buf_vunmap
-ffffffc0086123a0 T dma_buf_get_flags
-ffffffc008612414 t dma_buf_llseek
-ffffffc008612470 t dma_buf_poll
-ffffffc0086126c8 t dma_buf_ioctl
-ffffffc0086129d4 t dma_buf_mmap_internal
-ffffffc008612a60 t dma_buf_file_release
-ffffffc008612afc t dma_buf_show_fdinfo
-ffffffc008612bac t dma_buf_poll_add_cb
-ffffffc008612d40 t dma_buf_poll_cb
-ffffffc008612e18 t dma_buf_fs_init_context
-ffffffc008612e6c t dma_buf_release
-ffffffc008612f38 t dmabuffs_dname
-ffffffc008613014 t dma_buf_debug_open
-ffffffc008613054 t dma_buf_debug_show
-ffffffc00861327c T __traceiter_dma_fence_emit
-ffffffc0086132fc T __traceiter_dma_fence_init
-ffffffc00861337c T __traceiter_dma_fence_destroy
-ffffffc0086133fc T __traceiter_dma_fence_enable_signal
-ffffffc00861347c T __traceiter_dma_fence_signaled
-ffffffc0086134fc T __traceiter_dma_fence_wait_start
-ffffffc00861357c T __traceiter_dma_fence_wait_end
-ffffffc0086135fc t trace_event_raw_event_dma_fence
-ffffffc0086138a4 t perf_trace_dma_fence
-ffffffc008613bb0 T dma_fence_get_stub
-ffffffc008613cd8 T dma_fence_init
-ffffffc008613e1c T dma_fence_signal_locked
-ffffffc008613e60 T dma_fence_allocate_private_stub
-ffffffc008613f2c T dma_fence_signal
-ffffffc008613fa4 T dma_fence_context_alloc
-ffffffc008614004 T dma_fence_signal_timestamp_locked
-ffffffc00861420c T dma_fence_signal_timestamp
-ffffffc008614284 T dma_fence_wait_timeout
-ffffffc0086144d8 T dma_fence_enable_sw_signaling
-ffffffc00861452c T dma_fence_default_wait
-ffffffc00861471c T dma_fence_release
-ffffffc008614928 T dma_fence_free
-ffffffc00861495c t __dma_fence_enable_signaling
-ffffffc008614afc T dma_fence_add_callback
-ffffffc008614bdc T dma_fence_get_status
-ffffffc008614c90 T dma_fence_remove_callback
-ffffffc008614d24 t dma_fence_default_wait_cb
-ffffffc008614d5c T dma_fence_wait_any_timeout
-ffffffc008615118 T dma_fence_describe
-ffffffc00861524c t trace_raw_output_dma_fence
-ffffffc0086152d0 t dma_fence_stub_get_name
-ffffffc0086152e8 t dma_fence_array_get_driver_name.llvm.13829296415681445645
-ffffffc008615300 t dma_fence_array_get_timeline_name.llvm.13829296415681445645
-ffffffc008615318 t dma_fence_array_enable_signaling.llvm.13829296415681445645
-ffffffc00861556c t dma_fence_array_signaled.llvm.13829296415681445645
-ffffffc0086155fc t dma_fence_array_release.llvm.13829296415681445645
-ffffffc008615700 T dma_fence_array_create
-ffffffc008615838 t irq_dma_fence_array_work
-ffffffc00861591c T dma_fence_match_context
-ffffffc0086159b0 T dma_fence_array_first
-ffffffc0086159fc T dma_fence_array_next
-ffffffc008615a44 t dma_fence_array_cb_func
-ffffffc008615b60 T dma_fence_chain_walk
-ffffffc008615e8c t dma_fence_chain_get_prev
-ffffffc008616008 T dma_fence_chain_find_seqno
-ffffffc008616178 t dma_fence_chain_get_driver_name.llvm.6703452361800847116
-ffffffc008616190 t dma_fence_chain_get_timeline_name.llvm.6703452361800847116
-ffffffc0086161a8 t dma_fence_chain_enable_signaling.llvm.6703452361800847116
-ffffffc00861649c t dma_fence_chain_signaled.llvm.6703452361800847116
-ffffffc008616614 t dma_fence_chain_release.llvm.6703452361800847116
-ffffffc0086167ec T dma_fence_chain_init
-ffffffc008616900 t dma_fence_chain_cb
-ffffffc0086169ac t dma_fence_chain_irq_work
-ffffffc008616a58 T dma_fence_unwrap_first
-ffffffc008616b18 T dma_fence_unwrap_next
-ffffffc008616b98 T __dma_fence_unwrap_merge
-ffffffc0086171d8 T dma_resv_init
-ffffffc008617224 T dma_resv_fini
-ffffffc008617250 t dma_resv_list_free.llvm.18356966438478833504
-ffffffc008617338 T dma_resv_reserve_fences
-ffffffc0086175b0 T dma_resv_add_fence
-ffffffc0086177f0 T dma_resv_replace_fences
-ffffffc008617974 T dma_resv_iter_first_unlocked
-ffffffc008617a0c t dma_resv_iter_walk_unlocked
-ffffffc008617c28 T dma_resv_iter_next_unlocked
-ffffffc008617cdc T dma_resv_iter_first
-ffffffc008617d68 T dma_resv_iter_next
-ffffffc008617ddc T dma_resv_copy_fences
-ffffffc0086180b8 T dma_resv_get_fences
-ffffffc0086183bc T dma_resv_get_singleton
-ffffffc008618530 T dma_resv_wait_timeout
-ffffffc008618730 T dma_resv_test_signaled
-ffffffc00861886c T dma_resv_describe
-ffffffc0086189b0 T dma_heap_find
-ffffffc008618a88 T dma_heap_buffer_free
-ffffffc008618ab4 T dma_heap_buffer_alloc
-ffffffc008618b2c T dma_heap_bufferfd_alloc
-ffffffc008618be0 T dma_heap_get_drvdata
-ffffffc008618bf4 T dma_heap_put
-ffffffc008618cfc T dma_heap_get_dev
-ffffffc008618d10 T dma_heap_get_name
-ffffffc008618d24 T dma_heap_add
-ffffffc008618fc8 t dma_heap_ioctl
-ffffffc008619468 t dma_heap_open
-ffffffc0086194ec t dma_heap_devnode
-ffffffc008619530 t total_pools_kb_show
-ffffffc0086195fc T dma_buf_stats_teardown
-ffffffc008619644 T dma_buf_init_sysfs_statistics
-ffffffc0086196d4 T dma_buf_uninit_sysfs_statistics
-ffffffc008619714 T dma_buf_stats_setup
-ffffffc0086197e0 t dmabuf_sysfs_uevent_filter
-ffffffc0086197f4 t dma_buf_sysfs_release
-ffffffc008619820 t dma_buf_stats_attribute_show
-ffffffc00861987c t exporter_name_show
-ffffffc0086198c0 T dev_lstats_read
-ffffffc008619994 t loopback_setup
-ffffffc008619a5c t loopback_dev_free
-ffffffc008619a94 t always_on
-ffffffc008619aa8 t loopback_dev_init
-ffffffc008619b4c t loopback_xmit
-ffffffc008619d4c t loopback_get_stats64
-ffffffc008619e1c t blackhole_netdev_setup
-ffffffc008619ecc t blackhole_netdev_xmit
-ffffffc008619f30 T uio_event_notify
-ffffffc008619fb4 T __uio_register_device
-ffffffc00861a218 t uio_device_release
-ffffffc00861a244 t uio_dev_add_attributes
-ffffffc00861a96c t uio_interrupt
-ffffffc00861aa28 t uio_dev_del_attributes
-ffffffc00861ab34 T __devm_uio_register_device
-ffffffc00861abe0 t devm_uio_unregister_device
-ffffffc00861ac10 T uio_unregister_device
-ffffffc00861ace8 t version_show
-ffffffc00861ad7c t map_release
-ffffffc00861ada8 t map_type_show
-ffffffc00861ae04 t map_name_show
-ffffffc00861ae5c t map_addr_show
-ffffffc00861aea0 t map_size_show
-ffffffc00861aee4 t map_offset_show
-ffffffc00861af28 t portio_release
-ffffffc00861af54 t portio_type_show
-ffffffc00861afb0 t portio_name_show
-ffffffc00861b008 t portio_start_show
-ffffffc00861b04c t portio_size_show
-ffffffc00861b090 t portio_porttype_show
-ffffffc00861b0f0 t uio_read
-ffffffc00861b3b4 t uio_write
-ffffffc00861b5f4 t uio_poll
-ffffffc00861b6cc t uio_mmap
-ffffffc00861b828 t uio_open
-ffffffc00861b97c t uio_release
-ffffffc00861ba28 t uio_fasync
-ffffffc00861ba5c t uio_mmap_physical
-ffffffc00861bb24 t uio_vma_fault
-ffffffc00861bc50 T serio_rescan
-ffffffc00861bc80 t serio_queue_event
-ffffffc00861bdb4 T serio_reconnect
-ffffffc00861bde8 T __serio_register_port
-ffffffc00861bf18 T serio_unregister_port
-ffffffc00861c010 t serio_destroy_port
-ffffffc00861c290 T serio_unregister_child_port
-ffffffc00861c3bc T __serio_register_driver
-ffffffc00861c474 T serio_unregister_driver
-ffffffc00861c680 T serio_open
-ffffffc00861c724 T serio_close
-ffffffc00861c798 T serio_interrupt
-ffffffc00861c868 t serio_bus_match
-ffffffc00861c914 t serio_uevent
-ffffffc00861ca00 t serio_driver_probe
-ffffffc00861ca88 t serio_driver_remove
-ffffffc00861cafc t serio_shutdown
-ffffffc00861cb74 t serio_release_port
-ffffffc00861cba4 t proto_show
-ffffffc00861cbe8 t extra_show
-ffffffc00861cc2c t serio_show_description
-ffffffc00861cc70 t drvctl_store
-ffffffc00861d208 t serio_reconnect_port
-ffffffc00861d384 t serio_disconnect_driver
-ffffffc00861d3f8 t serio_show_bind_mode
-ffffffc00861d454 t serio_set_bind_mode
-ffffffc00861d4e4 t firmware_id_show
-ffffffc00861d528 t description_show
-ffffffc00861d57c t bind_mode_show
-ffffffc00861d5d8 t bind_mode_store
-ffffffc00861d664 t serio_suspend
-ffffffc00861d6e0 t serio_resume
-ffffffc00861d7ac t serio_handle_event
-ffffffc00861dbd8 t serport_ldisc_open
-ffffffc00861dca4 t serport_ldisc_close
-ffffffc00861dcd4 t serport_ldisc_read
-ffffffc00861df0c t serport_ldisc_ioctl
-ffffffc00861e090 t serport_ldisc_hangup
-ffffffc00861e120 t serport_ldisc_receive
-ffffffc00861e1fc t serport_ldisc_write_wakeup
-ffffffc00861e28c t serport_serio_write
-ffffffc00861e320 t serport_serio_open
-ffffffc00861e3a0 t serport_serio_close
-ffffffc00861e420 T input_handle_event
-ffffffc00861e958 T input_event
-ffffffc00861e9ec T input_inject_event
-ffffffc00861eaac T input_alloc_absinfo
-ffffffc00861eb2c T input_set_abs_params
-ffffffc00861ec14 T input_copy_abs
-ffffffc00861ecc4 T input_set_capability
-ffffffc00861ee88 T input_grab_device
-ffffffc00861ef04 T input_release_device
-ffffffc00861efc0 T input_open_device
-ffffffc00861f0b8 T input_flush_device
-ffffffc00861f150 T input_close_device
-ffffffc00861f27c T input_scancode_to_scalar
-ffffffc00861f2d0 T input_get_keycode
-ffffffc00861f35c T input_set_keycode
-ffffffc00861f558 T input_match_device_id
-ffffffc00861f6b4 T input_reset_device
-ffffffc00861f778 t input_dev_toggle
-ffffffc00861f968 t input_dev_release_keys
-ffffffc00861fab8 t input_devnode
-ffffffc00861fafc T input_allocate_device
-ffffffc00861fc10 T devm_input_allocate_device
-ffffffc00861fcb4 t devm_input_device_release
-ffffffc00861fcf0 T input_free_device
-ffffffc00861fd6c t devm_input_device_match
-ffffffc00861fd88 T input_set_timestamp
-ffffffc00861fde4 T input_get_timestamp
-ffffffc00861fe4c T input_enable_softrepeat
-ffffffc00861fe70 t input_repeat_key
-ffffffc008620054 T input_device_enabled
-ffffffc008620084 T input_register_device
-ffffffc00862056c t devm_input_device_unregister
-ffffffc00862059c t input_default_getkeycode
-ffffffc008620650 t input_default_setkeycode
-ffffffc008620804 T input_unregister_device
-ffffffc008620888 t __input_unregister_device
-ffffffc008620a34 T input_register_handler
-ffffffc008620be0 T input_unregister_handler
-ffffffc008620cd8 T input_handler_for_each_handle
-ffffffc008620d88 T input_register_handle
-ffffffc008620eac T input_unregister_handle
-ffffffc008620f44 T input_get_new_minor
-ffffffc008620fbc T input_free_minor
-ffffffc008620ff0 t input_proc_exit
-ffffffc008621050 t input_pass_values
-ffffffc0086213fc t input_dev_uevent
-ffffffc00862163c t input_dev_release
-ffffffc0086216a8 t input_dev_show_name
-ffffffc008621704 t input_dev_show_phys
-ffffffc008621760 t input_dev_show_uniq
-ffffffc0086217bc t input_dev_show_modalias
-ffffffc008621810 t input_print_modalias
-ffffffc008621f44 t input_dev_show_properties
-ffffffc008621f88 t input_print_bitmap
-ffffffc00862211c t inhibited_show
-ffffffc008622164 t inhibited_store
-ffffffc008622368 t input_dev_show_id_bustype
-ffffffc0086223b4 t input_dev_show_id_vendor
-ffffffc008622400 t input_dev_show_id_product
-ffffffc00862244c t input_dev_show_id_version
-ffffffc008622498 t input_dev_show_cap_ev
-ffffffc0086224e0 t input_dev_show_cap_key
-ffffffc008622528 t input_dev_show_cap_rel
-ffffffc008622570 t input_dev_show_cap_abs
-ffffffc0086225b8 t input_dev_show_cap_msc
-ffffffc008622600 t input_dev_show_cap_led
-ffffffc008622648 t input_dev_show_cap_snd
-ffffffc008622690 t input_dev_show_cap_ff
-ffffffc0086226d8 t input_dev_show_cap_sw
-ffffffc00862271c t input_add_uevent_bm_var
-ffffffc0086228d0 t input_add_uevent_modalias_var
-ffffffc008622974 t input_dev_suspend
-ffffffc008622a28 t input_dev_resume
-ffffffc008622a80 t input_dev_freeze
-ffffffc008622b28 t input_dev_poweroff
-ffffffc008622b80 t input_proc_devices_open
-ffffffc008622bb8 t input_proc_devices_poll
-ffffffc008622c48 t input_devices_seq_start
-ffffffc008622cb4 t input_seq_stop
-ffffffc008622cf0 t input_devices_seq_next
-ffffffc008622d28 t input_devices_seq_show
-ffffffc008623004 t input_seq_print_bitmap
-ffffffc008623174 t input_proc_handlers_open
-ffffffc0086231ac t input_handlers_seq_start
-ffffffc008623220 t input_handlers_seq_next
-ffffffc008623268 t input_handlers_seq_show
-ffffffc0086232f8 T input_event_from_user
-ffffffc008623490 T input_event_to_user
-ffffffc008623604 T input_ff_effect_from_user
-ffffffc0086237ac T input_mt_init_slots
-ffffffc008623a50 T input_mt_destroy_slots
-ffffffc008623aa0 T input_mt_report_slot_state
-ffffffc008623b50 T input_mt_report_finger_count
-ffffffc008623bfc T input_mt_report_pointer_emulation
-ffffffc008623db4 T input_mt_drop_unused
-ffffffc008623e98 T input_mt_release_slots
-ffffffc008623f80 T input_mt_sync_frame
-ffffffc008624088 T input_mt_assign_slots
-ffffffc008624528 T input_mt_get_slot_by_key
-ffffffc0086245cc T input_dev_poller_finalize
-ffffffc008624608 T input_dev_poller_start
-ffffffc00862469c T input_dev_poller_stop
-ffffffc0086246d0 T input_setup_polling
-ffffffc0086247a4 t input_dev_poller_work
-ffffffc008624830 T input_set_poll_interval
-ffffffc008624884 T input_set_min_poll_interval
-ffffffc0086248d8 T input_set_max_poll_interval
-ffffffc00862492c T input_get_poll_interval
-ffffffc008624954 t input_poller_attrs_visible
-ffffffc008624980 t input_dev_get_poll_interval
-ffffffc0086249cc t input_dev_set_poll_interval
-ffffffc008624b00 t input_dev_get_poll_max
-ffffffc008624b4c t input_dev_get_poll_min
-ffffffc008624b98 T input_ff_upload
-ffffffc008624e08 T input_ff_erase
-ffffffc008624e88 t erase_effect
-ffffffc008624fa8 T input_ff_flush
-ffffffc00862503c T input_ff_event
-ffffffc008625118 T input_ff_create
-ffffffc0086252c4 T input_ff_destroy
-ffffffc008625350 T touchscreen_parse_properties
-ffffffc008625804 T touchscreen_set_mt_pos
-ffffffc00862584c T touchscreen_report_pos
-ffffffc0086258f0 T rtc_month_days
-ffffffc008625974 T rtc_year_days
-ffffffc0086259fc T rtc_time64_to_tm
-ffffffc008625b6c T rtc_valid_tm
-ffffffc008625c54 T rtc_tm_to_time64
-ffffffc008625c98 T rtc_tm_to_ktime
-ffffffc008625d00 T rtc_ktime_to_tm
-ffffffc008625ea0 T devm_rtc_allocate_device
-ffffffc008626134 t devm_rtc_release_device
-ffffffc008626164 T __devm_rtc_register_device
-ffffffc0086264b0 t devm_rtc_unregister_device
-ffffffc008626518 T devm_rtc_device_register
-ffffffc008626584 t rtc_device_release
-ffffffc008626614 t rtc_suspend
-ffffffc00862676c t rtc_resume
-ffffffc0086268bc T __traceiter_rtc_set_time
-ffffffc00862694c T __traceiter_rtc_read_time
-ffffffc0086269dc T __traceiter_rtc_set_alarm
-ffffffc008626a6c T __traceiter_rtc_read_alarm
-ffffffc008626afc T __traceiter_rtc_irq_set_freq
-ffffffc008626b8c T __traceiter_rtc_irq_set_state
-ffffffc008626c1c T __traceiter_rtc_alarm_irq_enable
-ffffffc008626cac T __traceiter_rtc_set_offset
-ffffffc008626d3c T __traceiter_rtc_read_offset
-ffffffc008626dcc T __traceiter_rtc_timer_enqueue
-ffffffc008626e4c T __traceiter_rtc_timer_dequeue
-ffffffc008626ecc T __traceiter_rtc_timer_fired
-ffffffc008626f4c t trace_event_raw_event_rtc_time_alarm_class
-ffffffc00862700c t perf_trace_rtc_time_alarm_class
-ffffffc008627128 t trace_event_raw_event_rtc_irq_set_freq
-ffffffc0086271e4 t perf_trace_rtc_irq_set_freq
-ffffffc0086272fc t trace_event_raw_event_rtc_irq_set_state
-ffffffc0086273b8 t perf_trace_rtc_irq_set_state
-ffffffc0086274d0 t trace_event_raw_event_rtc_alarm_irq_enable
-ffffffc00862758c t perf_trace_rtc_alarm_irq_enable
-ffffffc0086276a4 t trace_event_raw_event_rtc_offset_class
-ffffffc008627764 t perf_trace_rtc_offset_class
-ffffffc008627880 t trace_event_raw_event_rtc_timer_class
-ffffffc008627948 t perf_trace_rtc_timer_class
-ffffffc008627a64 T rtc_read_time
-ffffffc008627bac t __rtc_read_time
-ffffffc008627c94 T rtc_set_time
-ffffffc008627f54 T rtc_update_irq_enable
-ffffffc008628090 T __rtc_read_alarm
-ffffffc008628560 T rtc_read_alarm
-ffffffc008628730 T rtc_set_alarm
-ffffffc0086288d0 t rtc_timer_remove
-ffffffc008628a88 t rtc_timer_enqueue
-ffffffc008628e64 T rtc_initialize_alarm
-ffffffc008628f90 t trace_rtc_timer_enqueue
-ffffffc008629090 T rtc_alarm_irq_enable
-ffffffc008629244 T rtc_handle_legacy_irq
-ffffffc0086292e0 T rtc_aie_update_irq
-ffffffc008629364 T rtc_uie_update_irq
-ffffffc0086293e8 T rtc_pie_update_irq
-ffffffc0086294c4 T rtc_update_irq
-ffffffc008629520 T rtc_class_open
-ffffffc008629564 T rtc_class_close
-ffffffc008629594 T rtc_irq_set_state
-ffffffc0086296e4 T rtc_irq_set_freq
-ffffffc008629858 T rtc_timer_do_work
-ffffffc008629e1c t __rtc_set_alarm
-ffffffc00862a040 t rtc_alarm_disable
-ffffffc00862a17c T rtc_timer_init
-ffffffc00862a198 T rtc_timer_start
-ffffffc00862a228 T rtc_timer_cancel
-ffffffc00862a290 T rtc_read_offset
-ffffffc00862a410 T rtc_set_offset
-ffffffc00862a588 t trace_raw_output_rtc_time_alarm_class
-ffffffc00862a600 t trace_raw_output_rtc_irq_set_freq
-ffffffc00862a674 t trace_raw_output_rtc_irq_set_state
-ffffffc00862a6f8 t trace_raw_output_rtc_alarm_irq_enable
-ffffffc00862a77c t trace_raw_output_rtc_offset_class
-ffffffc00862a7f4 t trace_raw_output_rtc_timer_class
-ffffffc00862a86c T rtc_dev_prepare
-ffffffc00862a8dc t rtc_dev_read
-ffffffc00862acc8 t rtc_dev_poll
-ffffffc00862ad44 t rtc_dev_ioctl
-ffffffc00862beac t rtc_dev_open
-ffffffc00862bf50 t rtc_dev_release
-ffffffc00862bff8 t rtc_dev_fasync
-ffffffc00862c02c T rtc_proc_add_device
-ffffffc00862c0f0 t rtc_proc_show
-ffffffc00862c2d0 T rtc_proc_del_device
-ffffffc00862c378 T rtc_get_dev_attribute_groups
-ffffffc00862c390 T rtc_add_groups
-ffffffc00862c4dc T rtc_add_group
-ffffffc00862c638 t rtc_attr_is_visible
-ffffffc00862c6cc t wakealarm_show
-ffffffc00862c770 t wakealarm_store
-ffffffc00862c914 t offset_show
-ffffffc00862c99c t offset_store
-ffffffc00862ca34 t range_show
-ffffffc00862ca7c t date_show
-ffffffc00862cb0c t time_show
-ffffffc00862cb9c t since_epoch_show
-ffffffc00862cc34 t max_user_freq_show
-ffffffc00862cc78 t max_user_freq_store
-ffffffc00862cd20 t hctosys_show
-ffffffc00862cd98 t pl030_probe
-ffffffc00862cee4 t pl030_remove
-ffffffc00862cf48 t pl030_interrupt
-ffffffc00862cf84 t pl030_read_time
-ffffffc00862cfd4 t pl030_set_time
-ffffffc00862d024 t pl030_read_alarm
-ffffffc00862d078 t pl030_set_alarm
-ffffffc00862d0c8 t pl031_probe
-ffffffc00862d2f4 t pl031_remove
-ffffffc00862d35c t pl031_interrupt
-ffffffc00862d3d0 t pl031_read_time
-ffffffc00862d420 t pl031_set_time
-ffffffc00862d46c t pl031_read_alarm
-ffffffc00862d4ec t pl031_set_alarm
-ffffffc00862d588 t pl031_alarm_irq_enable
-ffffffc00862d5fc t pl031_stv2_read_time
-ffffffc00862d6c4 t pl031_stv2_set_time
-ffffffc00862d760 t pl031_stv2_read_alarm
-ffffffc00862d85c t pl031_stv2_set_alarm
-ffffffc00862d948 t pl031_stv2_tm_to_time
-ffffffc00862da8c t syscon_reboot_probe
-ffffffc00862dc20 t syscon_restart_handle
-ffffffc00862dc98 T power_supply_changed
-ffffffc00862dd14 T power_supply_am_i_supplied
-ffffffc00862dd9c t __power_supply_am_i_supplied
-ffffffc00862deec T power_supply_is_system_supplied
-ffffffc00862df6c t __power_supply_is_system_supplied
-ffffffc00862e020 T power_supply_get_property_from_supplier
-ffffffc00862e0ac t __power_supply_get_supplier_property
-ffffffc00862e1c8 T power_supply_set_battery_charged
-ffffffc00862e240 T power_supply_get_by_name
-ffffffc00862e2bc t power_supply_match_device_by_name
-ffffffc00862e2fc T power_supply_put
-ffffffc00862e36c T power_supply_get_by_phandle
-ffffffc00862e44c t power_supply_match_device_node
-ffffffc00862e47c T power_supply_get_by_phandle_array
-ffffffc00862e558 t power_supply_match_device_node_array
-ffffffc00862e5f8 T devm_power_supply_get_by_phandle
-ffffffc00862e768 t devm_power_supply_put
-ffffffc00862e7dc T power_supply_get_battery_info
-ffffffc00862f010 T power_supply_put_battery_info
-ffffffc00862f094 T power_supply_temp2resist_simple
-ffffffc00862f150 T power_supply_vbat2ri
-ffffffc00862f268 T power_supply_get_maintenance_charging_setting
-ffffffc00862f29c T power_supply_ocv2cap_simple
-ffffffc00862f358 T power_supply_find_ocv2cap_table
-ffffffc00862f3e0 T power_supply_batinfo_ocv2cap
-ffffffc00862f514 T power_supply_battery_bti_in_range
-ffffffc00862f588 T power_supply_get_property
-ffffffc00862f600 T power_supply_set_property
-ffffffc00862f66c T power_supply_property_is_writeable
-ffffffc00862f6d8 T power_supply_external_power_changed
-ffffffc00862f73c T power_supply_powers
-ffffffc00862f774 T power_supply_reg_notifier
-ffffffc00862f7ac T power_supply_unreg_notifier
-ffffffc00862f7e4 T power_supply_register
-ffffffc00862f810 t __power_supply_register
-ffffffc00862fbd0 T power_supply_register_no_ws
-ffffffc00862fc00 T devm_power_supply_register
-ffffffc00862fcb4 t devm_power_supply_release
-ffffffc00862fce4 T devm_power_supply_register_no_ws
-ffffffc00862fd98 T power_supply_unregister
-ffffffc00862fe60 t device_init_wakeup
-ffffffc00862fec0 T power_supply_get_drvdata
-ffffffc00862fed4 t power_supply_dev_release
-ffffffc00862ff04 t power_supply_changed_work
-ffffffc00862ffd4 t power_supply_deferred_register_work
-ffffffc008630090 t __power_supply_changed_work
-ffffffc00863018c t __power_supply_find_supply_from_node
-ffffffc0086301ac t __power_supply_populate_supplied_from
-ffffffc008630290 T power_supply_init_attrs
-ffffffc008630404 t power_supply_show_property
-ffffffc00863069c t power_supply_store_property
-ffffffc008630798 T power_supply_uevent
-ffffffc0086309b4 T power_supply_charge_behaviour_show
-ffffffc008630b5c T power_supply_charge_behaviour_parse
-ffffffc008630bc0 t power_supply_attr_is_visible
-ffffffc008630c9c T __traceiter_watchdog_start
-ffffffc008630d2c T __traceiter_watchdog_ping
-ffffffc008630dbc T __traceiter_watchdog_stop
-ffffffc008630e4c T __traceiter_watchdog_set_timeout
-ffffffc008630ee4 t trace_event_raw_event_watchdog_template
-ffffffc008630fa4 t perf_trace_watchdog_template
-ffffffc0086310c0 t trace_event_raw_event_watchdog_set_timeout
-ffffffc008631194 t perf_trace_watchdog_set_timeout
-ffffffc0086312b8 T watchdog_init_timeout
-ffffffc0086314a0 T watchdog_set_restart_priority
-ffffffc0086314b4 T watchdog_register_device
-ffffffc008631598 t __watchdog_register_device
-ffffffc008631888 T watchdog_unregister_device
-ffffffc008631984 T devm_watchdog_register_device
-ffffffc008631a24 t devm_watchdog_unregister_device
-ffffffc008631a54 t trace_raw_output_watchdog_template
-ffffffc008631ac8 t trace_raw_output_watchdog_set_timeout
-ffffffc008631b40 t watchdog_reboot_notifier
-ffffffc008631cac t watchdog_restart_notifier
-ffffffc008631d0c t watchdog_pm_notifier
-ffffffc008631d84 T watchdog_dev_register
-ffffffc008632040 T watchdog_dev_unregister
-ffffffc008632108 T watchdog_set_last_hw_keepalive
-ffffffc00863218c t __watchdog_ping
-ffffffc008632428 T watchdog_dev_suspend
-ffffffc0086324e4 T watchdog_dev_resume
-ffffffc008632578 t watchdog_core_data_release
-ffffffc0086325a4 t watchdog_ping_work
-ffffffc00863261c t watchdog_timer_expired
-ffffffc008632658 t watchdog_write
-ffffffc0086328fc t watchdog_ioctl
-ffffffc008632ef8 t watchdog_open
-ffffffc008633014 t watchdog_release
-ffffffc008633250 t watchdog_ping
-ffffffc0086332dc t watchdog_stop
-ffffffc008633570 t watchdog_start
-ffffffc008633800 t watchdog_set_timeout
-ffffffc008633a2c t watchdog_set_pretimeout
-ffffffc008633abc T dm_send_uevents
-ffffffc008633c0c T dm_path_uevent
-ffffffc008633ddc T dm_uevent_init
-ffffffc008633e4c T dm_uevent_exit
-ffffffc008633e80 T dm_blk_report_zones
-ffffffc008633fd0 T dm_report_zones
-ffffffc008634018 t dm_report_zones_cb.llvm.8902434228281667983
-ffffffc0086340f0 T dm_is_zone_write
-ffffffc008634148 T dm_cleanup_zoned_dev
-ffffffc0086341b8 T dm_set_zones_restrictions
-ffffffc008634520 T dm_zone_map_bio
-ffffffc008634b20 t dm_zone_map_bio_end
-ffffffc008634c54 T dm_zone_endio
-ffffffc008634e40 t device_not_zone_append_capable
-ffffffc008634e78 t dm_zone_revalidate_cb
-ffffffc008634ff4 t dm_update_zone_wp_offset_cb
-ffffffc008635040 T dm_issue_global_event
-ffffffc0086350b8 T dm_per_bio_data
-ffffffc0086350e4 T dm_bio_from_per_bio_data
-ffffffc008635128 T dm_bio_get_target_bio_nr
-ffffffc00863513c T __dm_get_module_param
-ffffffc0086351b0 T dm_get_reserved_bio_based_ios
-ffffffc008635244 T dm_deleting_md
-ffffffc00863525c T dm_open_count
-ffffffc008635278 T dm_lock_for_deletion
-ffffffc008635378 T dm_cancel_deferred_remove
-ffffffc008635410 T dm_start_time_ns_from_clone
-ffffffc008635438 T dm_get_live_table
-ffffffc008635488 T dm_put_live_table
-ffffffc0086354c8 T dm_sync_table
-ffffffc0086354fc T dm_get_table_device
-ffffffc0086356f0 T dm_put_table_device
-ffffffc0086357f8 T dm_get_geometry
-ffffffc008635818 T dm_set_geometry
-ffffffc008635884 T disable_discard
-ffffffc0086358b0 T dm_get_queue_limits
-ffffffc0086358dc T disable_write_zeroes
-ffffffc008635908 T dm_set_target_max_io_len
-ffffffc008635970 T dm_accept_partial_bio
-ffffffc008635a1c T dm_submit_bio_remap
-ffffffc008635b6c T dm_create
-ffffffc008636060 T dm_lock_md_type
-ffffffc008636090 T dm_unlock_md_type
-ffffffc0086360c0 T dm_set_md_type
-ffffffc00863610c T dm_get_md_type
-ffffffc008636120 T dm_get_immutable_target_type
-ffffffc008636134 T dm_setup_md_queue
-ffffffc00863630c T dm_get_md
-ffffffc008636400 T dm_disk
-ffffffc008636414 T dm_get
-ffffffc008636464 T dm_get_mdptr
-ffffffc008636478 T dm_set_mdptr
-ffffffc00863648c T dm_hold
-ffffffc008636530 T dm_device_name
-ffffffc008636544 T dm_destroy
-ffffffc008636570 t __dm_destroy.llvm.14210725329811024457
-ffffffc008636848 T dm_destroy_immediate
-ffffffc008636878 T dm_put
-ffffffc0086368c0 T dm_swap_table
-ffffffc008636b1c T dm_suspended_md
-ffffffc008636b34 T dm_suspend
-ffffffc008636c78 T dm_suspended_internally_md
-ffffffc008636c8c t __dm_suspend
-ffffffc008636f30 T dm_resume
-ffffffc008637038 t __dm_resume
-ffffffc008637138 T dm_internal_suspend_noflush
-ffffffc00863724c T dm_internal_resume
-ffffffc0086372f8 T dm_internal_suspend_fast
-ffffffc008637388 t dm_wait_for_completion
-ffffffc008637558 T dm_internal_resume_fast
-ffffffc0086375ec T dm_kobject_uevent
-ffffffc0086376ec T dm_next_uevent_seq
-ffffffc008637734 T dm_get_event_nr
-ffffffc008637750 T dm_wait_event
-ffffffc008637848 T dm_uevent_add
-ffffffc0086378d4 T dm_kobject
-ffffffc0086378e8 T dm_get_from_kobject
-ffffffc008637994 T dm_test_deferred_remove_flag
-ffffffc0086379ac T dm_suspended
-ffffffc0086379cc T dm_post_suspending
-ffffffc0086379ec T dm_noflush_suspending
-ffffffc008637a0c T dm_free_md_mempools
-ffffffc008637a58 t local_exit
-ffffffc008637ac0 t dm_io_acct
-ffffffc008637bd8 t dm_wq_work
-ffffffc008637c64 t dm_wq_requeue_work
-ffffffc008637cec t cleanup_mapped_device
-ffffffc008637e1c t __dm_io_complete
-ffffffc0086380c8 t dm_submit_bio
-ffffffc00863887c t dm_poll_bio
-ffffffc008638a00 t dm_blk_open
-ffffffc008638ae8 t dm_blk_close
-ffffffc008638bdc t dm_blk_ioctl
-ffffffc008638cfc t dm_blk_getgeo
-ffffffc008638d20 t __send_duplicate_bios
-ffffffc008639090 t __map_bio
-ffffffc0086393b4 t clone_endio
-ffffffc008639608 t __set_swap_bios_limit
-ffffffc0086396ac t __process_abnormal_io
-ffffffc008639804 t dm_io_set_error
-ffffffc008639878 t do_deferred_remove
-ffffffc0086398ac t dm_prepare_ioctl
-ffffffc0086399dc t dm_pr_register
-ffffffc008639be4 t dm_pr_reserve
-ffffffc008639d2c t dm_pr_release
-ffffffc008639e74 t dm_pr_preempt
-ffffffc008639fb8 t dm_pr_clear
-ffffffc00863a0ac t __dm_pr_register
-ffffffc00863a148 t __dm_pr_reserve
-ffffffc00863a1dc t __dm_pr_release
-ffffffc00863a26c t __dm_pr_preempt
-ffffffc00863a300 t event_callback
-ffffffc00863a464 T dm_table_create
-ffffffc00863a55c T dm_table_destroy
-ffffffc00863a6d0 T dm_get_dev_t
-ffffffc00863a750 T dm_get_device
-ffffffc00863a9b0 T dm_put_device
-ffffffc00863aac0 T dm_split_args
-ffffffc00863ac70 T dm_table_add_target
-ffffffc00863b01c T dm_read_arg
-ffffffc00863b0f8 T dm_read_arg_group
-ffffffc00863b1e4 T dm_shift_arg
-ffffffc00863b21c T dm_consume_args
-ffffffc00863b24c T dm_table_set_type
-ffffffc00863b260 T dm_table_get_type
-ffffffc00863b274 T dm_table_get_immutable_target_type
-ffffffc00863b288 T dm_table_get_immutable_target
-ffffffc00863b2c4 T dm_table_get_wildcard_target
-ffffffc00863b2fc T dm_table_bio_based
-ffffffc00863b31c T dm_table_request_based
-ffffffc00863b338 T dm_destroy_crypto_profile
-ffffffc00863b37c T dm_table_complete
-ffffffc00863bbb0 T dm_table_event_callback
-ffffffc00863bc10 T dm_table_event
-ffffffc00863bc84 T dm_table_get_size
-ffffffc00863bcb8 T dm_table_find_target
-ffffffc00863bdf4 T dm_table_has_no_data_devices
-ffffffc00863bee4 t count_device
-ffffffc00863bf04 T dm_calculate_queue_limits
-ffffffc00863c3c0 t dm_set_device_limits
-ffffffc00863c478 t device_area_is_invalid
-ffffffc00863c5b8 T dm_table_set_restrictions
-ffffffc00863cdc0 t device_not_dax_capable
-ffffffc00863cddc t device_not_dax_synchronous_capable
-ffffffc00863cdf8 t device_dax_write_cache_enabled
-ffffffc00863ce0c t device_is_rotational
-ffffffc00863ce30 t device_requires_stable_pages
-ffffffc00863ce50 t device_is_not_random
-ffffffc00863ce74 T dm_table_get_devices
-ffffffc00863ce88 T dm_table_get_mode
-ffffffc00863ce9c T dm_table_presuspend_targets
-ffffffc00863cf38 T dm_table_presuspend_undo_targets
-ffffffc00863cfd4 T dm_table_postsuspend_targets
-ffffffc00863d070 T dm_table_resume_targets
-ffffffc00863d1a0 T dm_table_get_md
-ffffffc00863d1b4 T dm_table_device_name
-ffffffc00863d1cc T dm_table_run_md_queue_async
-ffffffc00863d214 t device_is_rq_stackable
-ffffffc00863d24c t dm_keyslot_evict
-ffffffc00863d354 t dm_derive_sw_secret
-ffffffc00863d470 t device_intersect_crypto_capabilities
-ffffffc00863d4b0 t dm_keyslot_evict_callback
-ffffffc00863d4e8 t dm_derive_sw_secret_callback
-ffffffc00863d53c t device_not_matches_zone_sectors
-ffffffc00863d584 t device_not_zoned_model
-ffffffc00863d5ac t device_not_nowait_capable
-ffffffc00863d5d0 t device_not_discard_capable
-ffffffc00863d5f4 t device_not_secure_erase_capable
-ffffffc00863d618 t device_flush_capable
-ffffffc00863d638 t device_not_write_zeroes_capable
-ffffffc00863d65c t device_not_poll_capable
-ffffffc00863d680 T dm_get_target_type
-ffffffc00863d75c T dm_put_target_type
-ffffffc00863d7a4 T dm_target_iterate
-ffffffc00863d844 T dm_register_target
-ffffffc00863d90c T dm_unregister_target
-ffffffc00863d9d4 T dm_target_exit
-ffffffc00863da08 t io_err_ctr
-ffffffc00863da28 t io_err_dtr
-ffffffc00863da38 t io_err_map
-ffffffc00863da4c t io_err_clone_and_map_rq
-ffffffc00863da60 t io_err_release_clone_rq
-ffffffc00863da70 t io_err_dax_direct_access
-ffffffc00863da84 T dm_linear_exit
-ffffffc00863dab8 t linear_ctr
-ffffffc00863dbfc t linear_dtr
-ffffffc00863dc40 t linear_map
-ffffffc00863dca4 t linear_status
-ffffffc00863dd84 t linear_prepare_ioctl
-ffffffc00863ddcc t linear_report_zones
-ffffffc00863de24 t linear_iterate_devices
-ffffffc00863de7c T dm_stripe_exit
-ffffffc00863deb0 t stripe_ctr
-ffffffc00863e1bc t stripe_dtr
-ffffffc00863e23c t stripe_map
-ffffffc00863e380 t stripe_end_io
-ffffffc00863e4c8 t stripe_status
-ffffffc00863e84c t stripe_iterate_devices
-ffffffc00863e8e8 t stripe_io_hints
-ffffffc00863e948 t trigger_event
-ffffffc00863e978 t stripe_map_range
-ffffffc00863eb34 T dm_deferred_remove
-ffffffc00863eb68 t dm_hash_remove_all.llvm.761500860807989976
-ffffffc00863ecd8 T dm_interface_exit
-ffffffc00863ed1c T dm_copy_name_and_uuid
-ffffffc00863edd4 t dm_hash_insert
-ffffffc00863f0d0 t __hash_remove
-ffffffc00863f1d4 t dm_poll
-ffffffc00863f25c t dm_ctl_ioctl
-ffffffc00863fd0c t dm_open
-ffffffc00863fd8c t dm_release
-ffffffc00863fdc0 t remove_all
-ffffffc00863fe10 t list_devices
-ffffffc00864008c t dev_create
-ffffffc0086401b0 t dev_remove
-ffffffc0086402f4 t dev_rename
-ffffffc0086407b0 t dev_suspend
-ffffffc0086409f8 t dev_status
-ffffffc008640a84 t dev_wait
-ffffffc008640bf4 t table_load
-ffffffc008640ee0 t table_clear
-ffffffc008640fa4 t table_deps
-ffffffc0086411a0 t table_status
-ffffffc0086412f4 t list_versions
-ffffffc0086413dc t target_message
-ffffffc0086416fc t dev_set_geometry
-ffffffc008641894 t dev_arm_poll
-ffffffc0086418c0 t get_target_version
-ffffffc008641a74 t filter_device
-ffffffc008641b48 t __dev_status
-ffffffc008641d34 t __find_device_hash_cell
-ffffffc008641ed8 t retrieve_status
-ffffffc0086420d4 t list_version_get_needed
-ffffffc008642128 t list_version_get_info
-ffffffc008642204 T dm_io_client_create
-ffffffc0086422cc T dm_io_client_destroy
-ffffffc008642314 T dm_io
-ffffffc008642614 T dm_io_exit
-ffffffc008642654 t list_get_page
-ffffffc008642684 t list_next_page
-ffffffc0086426a4 t bio_get_page
-ffffffc008642708 t bio_next_page
-ffffffc0086427d8 t vm_get_page
-ffffffc008642844 t vm_next_page
-ffffffc00864286c t km_get_page
-ffffffc0086428b4 t km_next_page
-ffffffc0086428dc t sync_io_complete
-ffffffc00864290c t dispatch_io
-ffffffc008642d8c t endio
-ffffffc008642ec8 T dm_kcopyd_exit
-ffffffc008642f08 T dm_kcopyd_copy
-ffffffc00864324c t dispatch_job
-ffffffc00864337c T dm_kcopyd_zero
-ffffffc0086433c0 T dm_kcopyd_prepare_callback
-ffffffc008643464 T dm_kcopyd_do_callback
-ffffffc008643510 t push
-ffffffc0086435a0 T dm_kcopyd_client_create
-ffffffc008643870 t do_work
-ffffffc008643980 T dm_kcopyd_client_destroy
-ffffffc008643b2c T dm_kcopyd_client_flush
-ffffffc008643b5c t segment_complete
-ffffffc008643dd0 t process_jobs
-ffffffc008643fd0 t run_complete_job
-ffffffc008644130 t run_pages_job
-ffffffc0086442c8 t run_io_job
-ffffffc0086444bc t complete_io
-ffffffc008644674 T dm_sysfs_init
-ffffffc0086446cc T dm_sysfs_exit
-ffffffc008644710 t dm_attr_show
-ffffffc0086447a8 t dm_attr_store
-ffffffc008644848 t dm_attr_name_show
-ffffffc0086448a8 t dm_attr_uuid_show
-ffffffc00864490c t dm_attr_suspended_show
-ffffffc008644960 t dm_attr_use_blk_mq_show
-ffffffc0086449b0 T dm_stats_init
-ffffffc008644aa4 T dm_stats_cleanup
-ffffffc008644bcc t dm_stat_free
-ffffffc008644dfc T dm_stats_account_io
-ffffffc008645370 T dm_stats_message
-ffffffc008645d70 t message_stats_print
-ffffffc0086462c0 T dm_statistics_exit
-ffffffc008646318 t dm_stats_create
-ffffffc008646728 t dm_kvzalloc
-ffffffc00864683c t __dm_stat_clear
-ffffffc008646a5c t __dm_stat_init_temporary_percpu_totals
-ffffffc008646d80 T dm_get_reserved_rq_based_ios
-ffffffc008646dbc T dm_request_based
-ffffffc008646ddc T dm_start_queue
-ffffffc008646e24 T dm_stop_queue
-ffffffc008646e50 T dm_mq_kick_requeue_list
-ffffffc008646e84 T dm_attr_rq_based_seq_io_merge_deadline_show
-ffffffc008646ec4 T dm_attr_rq_based_seq_io_merge_deadline_store
-ffffffc008646ed8 T dm_mq_init_request_queue
-ffffffc008647014 T dm_mq_cleanup_mapped_device
-ffffffc008647060 t dm_mq_queue_rq
-ffffffc00864748c t dm_softirq_done
-ffffffc0086476f8 t dm_mq_init_request
-ffffffc008647720 t dm_requeue_original_request
-ffffffc008647824 t dm_rq_bio_constructor
-ffffffc00864784c t end_clone_request
-ffffffc008647888 t end_clone_bio
-ffffffc008647908 T dm_io_rewind
-ffffffc008647b64 T dm_kobject_release
-ffffffc008647b94 T dm_bufio_get
-ffffffc008647bc4 t new_read.llvm.11672131207688809347
-ffffffc008647db8 T dm_bufio_read
-ffffffc008647dfc T dm_bufio_new
-ffffffc008647e40 T dm_bufio_prefetch
-ffffffc008647fec t dm_bufio_lock
-ffffffc008648030 t __bufio_new
-ffffffc008648404 t dm_bufio_unlock
-ffffffc008648448 t __flush_write_list
-ffffffc008648540 t submit_io
-ffffffc008648810 t read_endio
-ffffffc008648884 T dm_bufio_release
-ffffffc0086489d8 t __unlink_buffer
-ffffffc008648b1c T dm_bufio_mark_partial_buffer_dirty
-ffffffc008648cd8 T dm_bufio_mark_buffer_dirty
-ffffffc008648d10 T dm_bufio_write_dirty_buffers_async
-ffffffc008648e7c t __write_dirty_buffers_async
-ffffffc008649080 T dm_bufio_write_dirty_buffers
-ffffffc0086494bc T dm_bufio_issue_flush
-ffffffc008649568 T dm_bufio_issue_discard
-ffffffc00864964c T dm_bufio_release_move
-ffffffc0086499a8 t __wait_for_free_buffer
-ffffffc008649a98 t __make_buffer_clean
-ffffffc008649bd0 t __link_buffer
-ffffffc008649dc8 t write_endio
-ffffffc008649eac T dm_bufio_forget
-ffffffc008649f60 t forget_buffer_locked
-ffffffc00864a024 T dm_bufio_forget_buffers
-ffffffc00864a12c T dm_bufio_set_minimum_buffers
-ffffffc00864a140 T dm_bufio_get_block_size
-ffffffc00864a154 T dm_bufio_get_device_size
-ffffffc00864a19c T dm_bufio_get_dm_io_client
-ffffffc00864a1b0 T dm_bufio_get_block_number
-ffffffc00864a1c4 T dm_bufio_get_block_data
-ffffffc00864a1d8 T dm_bufio_get_aux_data
-ffffffc00864a1ec T dm_bufio_get_client
-ffffffc00864a200 T dm_bufio_client_create
-ffffffc00864a7a0 t alloc_buffer
-ffffffc00864a89c t shrink_work
-ffffffc00864aa94 t dm_bufio_shrink_count
-ffffffc00864ab0c t dm_bufio_shrink_scan
-ffffffc00864ab84 t free_buffer
-ffffffc00864ac20 T dm_bufio_client_destroy
-ffffffc00864b054 T dm_bufio_set_sector_offset
-ffffffc00864b064 t __get_unclaimed_buffer
-ffffffc00864b158 t bio_complete
-ffffffc00864b1d0 t dmio_complete
-ffffffc00864b228 t __try_evict_buffer
-ffffffc00864b334 t work_fn
-ffffffc00864b6b0 t do_global_cleanup
-ffffffc00864b904 t dm_bufio_trylock
-ffffffc00864b94c t crypt_ctr
-ffffffc00864ca9c t crypt_dtr
-ffffffc00864cc3c t crypt_map
-ffffffc00864ce74 t crypt_postsuspend
-ffffffc00864cebc t crypt_preresume
-ffffffc00864cf08 t crypt_resume
-ffffffc00864cf54 t crypt_status
-ffffffc00864d670 t crypt_message
-ffffffc00864d884 t crypt_report_zones
-ffffffc00864d8dc t crypt_iterate_devices
-ffffffc00864d934 t crypt_io_hints
-ffffffc00864d990 t crypt_page_alloc
-ffffffc00864da2c t crypt_page_free
-ffffffc00864da7c t dmcrypt_write
-ffffffc00864dbd0 t crypt_set_key
-ffffffc00864dcf8 t crypt_alloc_tfms
-ffffffc00864de24 t crypt_free_tfms
-ffffffc00864dee4 t crypt_iv_plain_gen
-ffffffc00864df38 t crypt_iv_plain64_gen
-ffffffc00864df8c t crypt_iv_plain64be_gen
-ffffffc00864dff8 t crypt_iv_essiv_gen
-ffffffc00864e04c t crypt_iv_benbi_ctr
-ffffffc00864e0d0 t crypt_iv_benbi_dtr
-ffffffc00864e0e0 t crypt_iv_benbi_gen
-ffffffc00864e15c t crypt_iv_null_gen
-ffffffc00864e198 t crypt_iv_eboiv_ctr
-ffffffc00864e1f4 t crypt_iv_eboiv_gen
-ffffffc00864e3d4 t crypt_iv_elephant_ctr
-ffffffc00864e490 t crypt_iv_elephant_dtr
-ffffffc00864e4d4 t crypt_iv_elephant_init
-ffffffc00864e518 t crypt_iv_elephant_wipe
-ffffffc00864e5a4 t crypt_iv_elephant_gen
-ffffffc00864e618 t crypt_iv_elephant_post
-ffffffc00864e65c t crypt_iv_elephant
-ffffffc00864ee10 t crypt_iv_lmk_ctr
-ffffffc00864ef20 t crypt_iv_lmk_dtr
-ffffffc00864ef7c t crypt_iv_lmk_init
-ffffffc00864efdc t crypt_iv_lmk_wipe
-ffffffc00864f008 t crypt_iv_lmk_gen
-ffffffc00864f10c t crypt_iv_lmk_post
-ffffffc00864f234 t crypt_iv_lmk_one
-ffffffc00864f3c0 t crypt_iv_tcw_ctr
-ffffffc00864f4fc t crypt_iv_tcw_dtr
-ffffffc00864f564 t crypt_iv_tcw_init
-ffffffc00864f5dc t crypt_iv_tcw_wipe
-ffffffc00864f62c t crypt_iv_tcw_gen
-ffffffc00864f7a4 t crypt_iv_tcw_post
-ffffffc00864f89c t crypt_iv_tcw_whitening
-ffffffc00864fb2c t crypt_iv_random_gen
-ffffffc00864fb64 t crypt_setkey
-ffffffc00864fd18 t kcryptd_io_read
-ffffffc00864fdfc t kcryptd_queue_crypt
-ffffffc00864ff1c t crypt_endio
-ffffffc008650044 t crypt_dec_pending
-ffffffc008650168 t crypt_free_buffer_pages
-ffffffc008650248 t kcryptd_io_bio_endio
-ffffffc008650278 t kcryptd_io_read_work
-ffffffc008650300 t kcryptd_crypt_tasklet
-ffffffc00865032c t kcryptd_crypt
-ffffffc0086508ec t crypt_convert
-ffffffc008651718 t kcryptd_crypt_read_continue
-ffffffc0086517dc t kcryptd_async_done
-ffffffc0086519e4 t kcryptd_crypt_write_io_submit
-ffffffc008651b38 t kcryptd_crypt_write_continue
-ffffffc008651c38 T verity_fec_is_enabled
-ffffffc008651c68 T verity_fec_decode
-ffffffc008651e10 t fec_decode_rsb
-ffffffc0086525fc t fec_bv_copy
-ffffffc00865266c T verity_fec_finish_io
-ffffffc008652728 T verity_fec_init_io
-ffffffc008652794 T verity_fec_status_table
-ffffffc00865280c T verity_fec_dtr
-ffffffc0086528ac T verity_is_fec_opt_arg
-ffffffc008652938 T verity_fec_parse_opt_args
-ffffffc008652b88 T verity_fec_ctr_alloc
-ffffffc008652bf8 T verity_fec_ctr
-ffffffc008652f9c t fec_rs_alloc
-ffffffc008652fe8 t fec_rs_free
-ffffffc008653018 T verity_hash
-ffffffc008653134 t verity_hash_init
-ffffffc008653248 t verity_hash_update
-ffffffc0086533f4 T verity_hash_for_block
-ffffffc008653514 t verity_verify_level
-ffffffc00865372c T verity_for_bv_block
-ffffffc008653950 T dm_is_verity_target
-ffffffc008653970 T dm_verity_get_mode
-ffffffc0086539a0 T dm_verity_get_root_digest
-ffffffc008653a20 t verity_handle_err
-ffffffc008653bdc t verity_ctr
-ffffffc008654344 t verity_dtr
-ffffffc008654418 t verity_map
-ffffffc008654674 t verity_status
-ffffffc008654e38 t verity_prepare_ioctl
-ffffffc008654e84 t verity_iterate_devices
-ffffffc008654ee0 t verity_io_hints
-ffffffc008654f50 t verity_parse_opt_args
-ffffffc0086552d0 t dm_bufio_alloc_callback
-ffffffc0086552e4 t verity_end_io
-ffffffc008655444 t verity_tasklet
-ffffffc008655518 t verity_verify_io
-ffffffc008655afc t verity_bv_zero
-ffffffc008655b38 t verity_prefetch_io
-ffffffc008655c58 t user_ctr
-ffffffc008655dc8 t user_dtr
-ffffffc008655e40 t user_map
-ffffffc0086562e4 t dev_read
-ffffffc008656760 t dev_write
-ffffffc008656a50 t dev_open
-ffffffc008656b54 T dev_open
-ffffffc008656c5c t dev_release
-ffffffc008656d98 t msg_copy_from_iov
-ffffffc008656f6c t target_put
-ffffffc008657160 t process_delayed_work
-ffffffc008657234 T edac_dimm_info_location
-ffffffc008657368 T edac_mc_alloc
-ffffffc0086578a8 t mci_release
-ffffffc0086579b4 T edac_mc_free
-ffffffc0086579e4 T edac_has_mcs
-ffffffc008657a48 T find_mci_by_dev
-ffffffc008657ac8 T edac_mc_reset_delay_period
-ffffffc008657b68 T edac_mc_find
-ffffffc008657be8 T edac_get_owner
-ffffffc008657c00 T edac_mc_add_mc_with_groups
-ffffffc008657e98 t edac_mc_workq_function
-ffffffc008657f54 T edac_mc_del_mc
-ffffffc00865806c T edac_mc_find_csrow_by_page
-ffffffc008658190 T edac_raw_mc_handle_error
-ffffffc0086586b0 T edac_mc_handle_error
-ffffffc008658bec T edac_device_alloc_ctl_info
-ffffffc008658f34 T edac_device_free_ctl_info
-ffffffc008658f64 T edac_device_reset_delay_period
-ffffffc008658fd8 T edac_device_alloc_index
-ffffffc00865902c T edac_device_add_device
-ffffffc008659280 T edac_device_del_device
-ffffffc00865937c T edac_device_handle_ce_count
-ffffffc008659474 T edac_device_handle_ue_count
-ffffffc0086595dc t edac_device_workq_function
-ffffffc0086596a4 T edac_mc_get_log_ue
-ffffffc0086596bc T edac_mc_get_log_ce
-ffffffc0086596d4 T edac_mc_get_panic_on_ue
-ffffffc0086596ec T edac_mc_get_poll_msec
-ffffffc008659704 T edac_create_sysfs_mci_device
-ffffffc0086599a8 T edac_remove_sysfs_mci_device
-ffffffc008659a60 t mc_attr_release
-ffffffc008659a8c T edac_mc_sysfs_exit
-ffffffc008659ac0 t edac_set_poll_msec
-ffffffc008659b60 t mci_attr_is_visible
-ffffffc008659bac t mci_sdram_scrub_rate_show
-ffffffc008659c34 t mci_sdram_scrub_rate_store
-ffffffc008659cf8 t mci_reset_counters_store
-ffffffc008659db4 t mci_ctl_name_show
-ffffffc008659df8 t mci_size_mb_show
-ffffffc008659eec t mci_seconds_show
-ffffffc008659f58 t mci_ue_noinfo_show
-ffffffc008659f9c t mci_ce_noinfo_show
-ffffffc008659fe0 t mci_ue_count_show
-ffffffc00865a024 t mci_ce_count_show
-ffffffc00865a068 t mci_max_location_show
-ffffffc00865a14c t dimm_release
-ffffffc00865a15c t dimmdev_label_show
-ffffffc00865a1b4 t dimmdev_label_store
-ffffffc00865a234 t dimmdev_location_show
-ffffffc00865a29c t dimmdev_size_show
-ffffffc00865a2e4 t dimmdev_mem_type_show
-ffffffc00865a334 t dimmdev_dev_type_show
-ffffffc00865a390 t dimmdev_edac_mode_show
-ffffffc00865a3ec t dimmdev_ce_count_show
-ffffffc00865a430 t dimmdev_ue_count_show
-ffffffc00865a474 t csrow_release
-ffffffc00865a484 t csrow_dev_type_show
-ffffffc00865a4ec t csrow_mem_type_show
-ffffffc00865a548 t csrow_edac_mode_show
-ffffffc00865a5b0 t csrow_size_show
-ffffffc00865a684 t csrow_ue_count_show
-ffffffc00865a6c8 t csrow_ce_count_show
-ffffffc00865a70c t csrow_dev_is_visible
-ffffffc00865a798 t channel_dimm_label_show
-ffffffc00865a800 t channel_dimm_label_store
-ffffffc00865a8a0 t channel_ce_count_show
-ffffffc00865a8f0 T edac_op_state_to_string
-ffffffc00865a988 T edac_get_sysfs_subsys
-ffffffc00865a9a0 T edac_device_register_sysfs_main_kobj
-ffffffc00865aa3c T edac_device_unregister_sysfs_main_kobj
-ffffffc00865aa6c T edac_device_create_sysfs
-ffffffc00865ae8c T edac_device_remove_sysfs
-ffffffc00865afe0 t edac_device_ctrl_master_release
-ffffffc00865b044 t edac_dev_ctl_info_show
-ffffffc00865b0a0 t edac_dev_ctl_info_store
-ffffffc00865b100 t edac_device_ctl_panic_on_ue_show
-ffffffc00865b144 t edac_device_ctl_panic_on_ue_store
-ffffffc00865b1a0 t edac_device_ctl_log_ue_show
-ffffffc00865b1e4 t edac_device_ctl_log_ue_store
-ffffffc00865b240 t edac_device_ctl_log_ce_show
-ffffffc00865b284 t edac_device_ctl_log_ce_store
-ffffffc00865b2e0 t edac_device_ctl_poll_msec_show
-ffffffc00865b324 t edac_device_ctl_poll_msec_store
-ffffffc00865b37c t edac_device_ctrl_instance_release
-ffffffc00865b3b0 t edac_dev_instance_show
-ffffffc00865b40c t edac_dev_instance_store
-ffffffc00865b46c t instance_ce_count_show
-ffffffc00865b4b0 t instance_ue_count_show
-ffffffc00865b4f4 t edac_device_ctrl_block_release
-ffffffc00865b52c t edac_dev_block_show
-ffffffc00865b580 t edac_dev_block_store
-ffffffc00865b5d4 t block_ce_count_show
-ffffffc00865b618 t block_ue_count_show
-ffffffc00865b65c T edac_queue_work
-ffffffc00865b6a0 T edac_mod_work
-ffffffc00865b6e4 T edac_stop_work
-ffffffc00865b730 T edac_workqueue_setup
-ffffffc00865b788 T edac_workqueue_teardown
-ffffffc00865b7c8 T edac_pci_alloc_ctl_info
-ffffffc00865b87c T edac_pci_free_ctl_info
-ffffffc00865b8a8 T edac_pci_alloc_index
-ffffffc00865b8fc T edac_pci_add_device
-ffffffc00865bb20 t edac_pci_workq_function
-ffffffc00865bbc8 T edac_pci_del_device
-ffffffc00865bcb4 T edac_pci_create_generic_ctl
-ffffffc00865bdc4 t edac_pci_generic_check
-ffffffc00865bdf0 T edac_pci_release_generic_ctl
-ffffffc00865be34 T edac_pci_get_check_errors
-ffffffc00865be4c T edac_pci_get_poll_msec
-ffffffc00865be60 T edac_pci_create_sysfs
-ffffffc00865c05c T edac_pci_remove_sysfs
-ffffffc00865c100 T edac_pci_do_parity_check
-ffffffc00865c518 T edac_pci_clear_parity_errors
-ffffffc00865c698 T edac_pci_handle_pe
-ffffffc00865c720 T edac_pci_handle_npe
-ffffffc00865c7a8 t edac_pci_release_main_kobj
-ffffffc00865c7d4 t edac_pci_dev_show
-ffffffc00865c830 t edac_pci_dev_store
-ffffffc00865c890 t edac_pci_int_show
-ffffffc00865c8d4 t edac_pci_int_store
-ffffffc00865c934 t edac_pci_instance_release
-ffffffc00865c97c t edac_pci_instance_show
-ffffffc00865c9d8 t edac_pci_instance_store
-ffffffc00865ca38 t instance_pe_count_show
-ffffffc00865ca80 t instance_npe_count_show
-ffffffc00865cac8 T scmi_child_dev_find
-ffffffc00865cb40 t scmi_match_by_id_table
-ffffffc00865cb94 T scmi_protocol_get
-ffffffc00865cbf8 T scmi_protocol_put
-ffffffc00865cc30 T scmi_driver_register
-ffffffc00865ccac T scmi_driver_unregister
-ffffffc00865ccf0 T scmi_device_create
-ffffffc00865ce30 t scmi_device_release
-ffffffc00865ce60 T scmi_device_destroy
-ffffffc00865cebc T scmi_device_link_add
-ffffffc00865cef8 T scmi_set_handle
-ffffffc00865cf5c T scmi_protocol_register
-ffffffc00865d030 T scmi_protocol_unregister
-ffffffc00865d08c t scmi_dev_match
-ffffffc00865d114 t scmi_dev_probe
-ffffffc00865d174 t scmi_dev_remove
-ffffffc00865d1c8 t __scmi_devices_unregister.llvm.16749271512714693888
-ffffffc00865d228 T __traceiter_scmi_fc_call
-ffffffc00865d2d8 T __traceiter_scmi_xfer_begin
-ffffffc00865d388 T __traceiter_scmi_xfer_response_wait
-ffffffc00865d448 T __traceiter_scmi_xfer_end
-ffffffc00865d4f8 T __traceiter_scmi_rx_done
-ffffffc00865d5a8 T __traceiter_scmi_msg_dump
-ffffffc00865d670 t trace_event_raw_event_scmi_fc_call
-ffffffc00865d758 t perf_trace_scmi_fc_call
-ffffffc00865d890 t trace_event_raw_event_scmi_xfer_begin
-ffffffc00865d980 t perf_trace_scmi_xfer_begin
-ffffffc00865dac0 t trace_event_raw_event_scmi_xfer_response_wait
-ffffffc00865dbb8 t perf_trace_scmi_xfer_response_wait
-ffffffc00865dd08 t trace_event_raw_event_scmi_xfer_end
-ffffffc00865ddf4 t perf_trace_scmi_xfer_end
-ffffffc00865df30 t trace_event_raw_event_scmi_rx_done
-ffffffc00865e01c t perf_trace_scmi_rx_done
-ffffffc00865e158 t trace_event_raw_event_scmi_msg_dump
-ffffffc00865e28c t perf_trace_scmi_msg_dump
-ffffffc00865e420 T scmi_notification_instance_data_set
-ffffffc00865e438 T scmi_notification_instance_data_get
-ffffffc00865e450 T scmi_rx_callback
-ffffffc00865ee38 T scmi_revision_area_get
-ffffffc00865ee50 T scmi_protocol_acquire
-ffffffc00865ee80 t scmi_get_protocol_instance
-ffffffc00865f0d0 T scmi_protocol_release
-ffffffc00865f224 T scmi_setup_protocol_implemented
-ffffffc00865f23c T scmi_handle_get
-ffffffc00865f2d4 T scmi_handle_put
-ffffffc00865f348 T scmi_protocol_device_request
-ffffffc00865f610 t scmi_get_protocol_device
-ffffffc00865f760 T scmi_protocol_device_unrequest
-ffffffc00865f850 T scmi_free_channel
-ffffffc00865f884 t trace_raw_output_scmi_fc_call
-ffffffc00865f904 t trace_raw_output_scmi_xfer_begin
-ffffffc00865f988 t trace_raw_output_scmi_xfer_response_wait
-ffffffc00865fa10 t trace_raw_output_scmi_xfer_end
-ffffffc00865fa94 t trace_raw_output_scmi_rx_done
-ffffffc00865fb18 t trace_raw_output_scmi_msg_dump
-ffffffc00865fbd4 t __scmi_xfer_put
-ffffffc00865fd18 t scmi_set_protocol_priv
-ffffffc00865fd34 t scmi_get_protocol_priv
-ffffffc00865fd48 t version_get
-ffffffc00865fe0c t xfer_get_init
-ffffffc0086600c8 t reset_rx_to_maxsz
-ffffffc0086600e8 t do_xfer
-ffffffc008660910 t do_xfer_with_response
-ffffffc008660a2c t xfer_put
-ffffffc008660a5c t scmi_xfer_done_no_timeout
-ffffffc008660ae4 t scmi_common_extended_name_get
-ffffffc008660c70 t scmi_iterator_init
-ffffffc008660d68 t scmi_iterator_run
-ffffffc008660f70 t scmi_common_fastchannel_init
-ffffffc0086611d0 t scmi_common_fastchannel_db_ring
-ffffffc0086612d0 t scmi_chan_setup
-ffffffc0086614ac t scmi_probe
-ffffffc008661a2c t scmi_remove
-ffffffc008661bd4 t scmi_devm_protocol_acquire
-ffffffc008661c88 t scmi_devm_protocol_get
-ffffffc008661d60 t scmi_devm_protocol_put
-ffffffc008661de0 t scmi_is_transport_atomic
-ffffffc008661e40 t scmi_devm_release_protocol
-ffffffc008661e74 t scmi_devm_protocol_match
-ffffffc008661ea8 t __scmi_xfer_info_init
-ffffffc008662014 t firmware_version_show
-ffffffc00866205c t protocol_version_show
-ffffffc0086620a8 t vendor_id_show
-ffffffc0086620f0 t sub_vendor_id_show
-ffffffc008662138 T scmi_notify
-ffffffc0086622bc T scmi_register_protocol_events
-ffffffc00866269c T scmi_deregister_protocol_events
-ffffffc0086626fc T scmi_notification_init
-ffffffc008662864 t scmi_protocols_late_init
-ffffffc008662a5c T scmi_notification_exit
-ffffffc008662abc t scmi_kfifo_free
-ffffffc008662b00 t scmi_events_dispatcher
-ffffffc008662d18 t scmi_lookup_and_call_event_chain
-ffffffc008662eb4 t scmi_put_handler_unlocked
-ffffffc008663088 t scmi_event_handler_enable_events
-ffffffc008663234 t scmi_devm_notifier_register
-ffffffc008663330 t scmi_devm_notifier_unregister
-ffffffc0086633e0 t scmi_notifier_register
-ffffffc0086634b8 t scmi_notifier_unregister
-ffffffc00866357c t scmi_devm_release_notifier
-ffffffc00866362c t scmi_devm_notifier_match
-ffffffc0086636b8 t scmi_put_handler
-ffffffc008663758 t __scmi_event_handler_get_ops
-ffffffc008663ab8 t scmi_base_protocol_init.llvm.6461659484339344196
-ffffffc008663e1c t scmi_base_vendor_id_get
-ffffffc008663f60 t scmi_base_implementation_version_get
-ffffffc008664088 t scmi_base_implementation_list_get
-ffffffc0086642d4 t scmi_base_set_notify_enabled.llvm.6461659484339344196
-ffffffc0086643f0 t scmi_base_fill_custom_report.llvm.6461659484339344196
-ffffffc008664474 t scmi_clock_protocol_init.llvm.10887612381844139604
-ffffffc0086648ec t iter_clk_describe_prepare_message
-ffffffc008664904 t iter_clk_describe_update_state
-ffffffc0086649d8 t iter_clk_describe_process_response
-ffffffc008664a80 t rate_cmp_func
-ffffffc008664aa4 t scmi_clock_count_get.llvm.10887612381844139604
-ffffffc008664af0 t scmi_clock_info_get.llvm.10887612381844139604
-ffffffc008664b70 t scmi_clock_rate_get.llvm.10887612381844139604
-ffffffc008664c9c t scmi_clock_rate_set.llvm.10887612381844139604
-ffffffc008664ed4 t scmi_clock_enable.llvm.10887612381844139604
-ffffffc008664ff4 t scmi_clock_disable.llvm.10887612381844139604
-ffffffc008665110 t scmi_clock_enable_atomic.llvm.10887612381844139604
-ffffffc008665230 t scmi_clock_disable_atomic.llvm.10887612381844139604
-ffffffc008665350 t scmi_clk_get_num_sources.llvm.10887612381844139604
-ffffffc0086653a8 t scmi_clk_set_notify_enabled.llvm.10887612381844139604
-ffffffc0086654e8 t scmi_clk_fill_custom_report.llvm.10887612381844139604
-ffffffc008665538 t scmi_perf_protocol_init.llvm.423969258469136037
-ffffffc008665b3c t iter_perf_levels_prepare_message
-ffffffc008665b54 t iter_perf_levels_update_state
-ffffffc008665b7c t iter_perf_levels_process_response
-ffffffc008665bf4 t opp_cmp_func
-ffffffc008665c10 t scmi_perf_limits_set.llvm.423969258469136037
-ffffffc008665e84 t scmi_perf_limits_get.llvm.423969258469136037
-ffffffc0086660bc t scmi_perf_level_set.llvm.423969258469136037
-ffffffc0086662fc t scmi_perf_level_get.llvm.423969258469136037
-ffffffc008666524 t scmi_dev_domain_id.llvm.423969258469136037
-ffffffc0086665c0 t scmi_dvfs_transition_latency_get.llvm.423969258469136037
-ffffffc0086666cc t scmi_dvfs_device_opps_add.llvm.423969258469136037
-ffffffc0086667e0 t scmi_dvfs_freq_set.llvm.423969258469136037
-ffffffc00866686c t scmi_dvfs_freq_get.llvm.423969258469136037
-ffffffc008666940 t scmi_dvfs_est_power_get.llvm.423969258469136037
-ffffffc008666a18 t scmi_fast_switch_possible.llvm.423969258469136037
-ffffffc008666b0c t scmi_power_scale_get.llvm.423969258469136037
-ffffffc008666b58 t scmi_perf_get_num_sources.llvm.423969258469136037
-ffffffc008666bb0 t scmi_perf_set_notify_enabled.llvm.423969258469136037
-ffffffc008666cf0 t scmi_perf_fill_custom_report.llvm.423969258469136037
-ffffffc008666d78 t scmi_power_protocol_init.llvm.18437665301673030446
-ffffffc008667104 t scmi_power_num_domains_get.llvm.18437665301673030446
-ffffffc008667150 t scmi_power_name_get.llvm.18437665301673030446
-ffffffc0086671b4 t scmi_power_state_set.llvm.18437665301673030446
-ffffffc0086672d4 t scmi_power_state_get.llvm.18437665301673030446
-ffffffc008667400 t scmi_power_get_num_sources.llvm.18437665301673030446
-ffffffc008667458 t scmi_power_set_notify_enabled.llvm.18437665301673030446
-ffffffc008667578 t scmi_power_fill_custom_report.llvm.18437665301673030446
-ffffffc0086675c4 t scmi_reset_protocol_init.llvm.8626441867815144245
-ffffffc00866793c t scmi_reset_num_domains_get.llvm.8626441867815144245
-ffffffc008667988 t scmi_reset_name_get.llvm.8626441867815144245
-ffffffc0086679ec t scmi_reset_latency_get.llvm.8626441867815144245
-ffffffc008667a50 t scmi_reset_domain_reset.llvm.8626441867815144245
-ffffffc008667bcc t scmi_reset_domain_assert.llvm.8626441867815144245
-ffffffc008667d24 t scmi_reset_domain_deassert.llvm.8626441867815144245
-ffffffc008667e78 t scmi_reset_get_num_sources.llvm.8626441867815144245
-ffffffc008667ed0 t scmi_reset_set_notify_enabled.llvm.8626441867815144245
-ffffffc008667ff0 t scmi_reset_fill_custom_report.llvm.8626441867815144245
-ffffffc00866803c t scmi_sensors_protocol_init.llvm.2789683505039508702
-ffffffc0086682dc t iter_sens_descr_prepare_message
-ffffffc0086682f0 t iter_sens_descr_update_state
-ffffffc008668320 t iter_sens_descr_process_response
-ffffffc008668778 t iter_intervals_prepare_message
-ffffffc008668794 t iter_intervals_update_state
-ffffffc008668868 t iter_intervals_process_response
-ffffffc00866889c t iter_axes_desc_prepare_message
-ffffffc0086688b8 t iter_axes_desc_update_state
-ffffffc0086688e4 t iter_axes_desc_process_response
-ffffffc0086689ec t iter_axes_extended_name_update_state
-ffffffc008668a18 t iter_axes_extended_name_process_response
-ffffffc008668a94 t scmi_sensor_count_get.llvm.2789683505039508702
-ffffffc008668ae0 t scmi_sensor_info_get.llvm.2789683505039508702
-ffffffc008668b54 t scmi_sensor_trip_point_config.llvm.2789683505039508702
-ffffffc008668c8c t scmi_sensor_reading_get.llvm.2789683505039508702
-ffffffc008668e7c t scmi_sensor_reading_get_timestamped.llvm.2789683505039508702
-ffffffc0086690e4 t scmi_sensor_config_get.llvm.2789683505039508702
-ffffffc008669268 t scmi_sensor_config_set.llvm.2789683505039508702
-ffffffc0086693dc t scmi_sensor_get_num_sources.llvm.2789683505039508702
-ffffffc008669428 t scmi_sensor_set_notify_enabled.llvm.2789683505039508702
-ffffffc00866957c t scmi_sensor_fill_custom_report.llvm.2789683505039508702
-ffffffc00866969c t scmi_system_protocol_init.llvm.6934767400188389257
-ffffffc008669788 t scmi_system_set_notify_enabled.llvm.6934767400188389257
-ffffffc0086698a4 t scmi_system_fill_custom_report.llvm.6934767400188389257
-ffffffc008669984 t scmi_voltage_protocol_init.llvm.17251444390686833384
-ffffffc008669d9c t iter_volt_levels_prepare_message
-ffffffc008669db8 t iter_volt_levels_update_state
-ffffffc008669e98 t iter_volt_levels_process_response
-ffffffc008669edc t scmi_voltage_domains_num_get
-ffffffc008669f28 t scmi_voltage_info_get
-ffffffc008669fa8 t scmi_voltage_config_set
-ffffffc00866a100 t scmi_voltage_config_get
-ffffffc00866a264 t scmi_voltage_level_set
-ffffffc00866a440 t scmi_voltage_level_get
-ffffffc00866a5a4 t scmi_powercap_protocol_init.llvm.11797613555507468437
-ffffffc00866abd8 t scmi_powercap_num_domains_get.llvm.11797613555507468437
-ffffffc00866ac24 t scmi_powercap_dom_info_get.llvm.11797613555507468437
-ffffffc00866ac98 t scmi_powercap_cap_get.llvm.11797613555507468437
-ffffffc00866aec4 t scmi_powercap_cap_set.llvm.11797613555507468437
-ffffffc00866b1c0 t scmi_powercap_pai_get.llvm.11797613555507468437
-ffffffc00866b3ec t scmi_powercap_pai_set.llvm.11797613555507468437
-ffffffc00866b670 t scmi_powercap_measurements_get.llvm.11797613555507468437
-ffffffc00866b810 t scmi_powercap_measurements_threshold_set.llvm.11797613555507468437
-ffffffc00866b8f0 t scmi_powercap_measurements_threshold_get.llvm.11797613555507468437
-ffffffc00866b99c t scmi_powercap_notify
-ffffffc00866bb9c t scmi_powercap_get_num_sources.llvm.11797613555507468437
-ffffffc00866bbf4 t scmi_powercap_set_notify_enabled.llvm.11797613555507468437
-ffffffc00866bcc8 t scmi_powercap_fill_custom_report.llvm.11797613555507468437
-ffffffc00866bd50 T shmem_tx_prepare
-ffffffc00866be70 T shmem_read_header
-ffffffc00866bea0 T shmem_fetch_response
-ffffffc00866bf24 T shmem_fetch_notification
-ffffffc00866bf98 T shmem_clear_channel
-ffffffc00866bfcc T shmem_poll_done
-ffffffc00866c030 t readl.llvm.10557292911564045940
-ffffffc00866c0d8 t smc_chan_available.llvm.17695492939047414862
-ffffffc00866c170 t smc_chan_setup.llvm.17695492939047414862
-ffffffc00866c3e0 t smc_chan_free.llvm.17695492939047414862
-ffffffc00866c428 t smc_send_message.llvm.17695492939047414862
-ffffffc00866c544 t smc_mark_txdone.llvm.17695492939047414862
-ffffffc00866c578 t smc_fetch_response.llvm.17695492939047414862
-ffffffc00866c5ac t smc_msg_done_isr
-ffffffc00866c5fc T psci_tos_resident_on
-ffffffc00866c61c T get_psci_0_1_function_ids
-ffffffc00866c638 T psci_has_osi_support
-ffffffc00866c654 T psci_power_state_is_valid
-ffffffc00866c684 T psci_set_osi_mode
-ffffffc00866c744 t psci_debugfs_open
-ffffffc00866c780 t psci_debugfs_read
-ffffffc00866cab0 t get_set_conduit_method
-ffffffc00866cbc4 t psci_0_1_get_version
-ffffffc00866cbd8 t psci_0_1_cpu_suspend
-ffffffc00866cc5c t psci_0_1_cpu_off
-ffffffc00866cce0 t psci_0_1_cpu_on
-ffffffc00866cd60 t psci_0_1_migrate
-ffffffc00866cde0 t __invoke_psci_fn_hvc
-ffffffc00866ce5c t __invoke_psci_fn_smc
-ffffffc00866ced8 t psci_0_2_get_version
-ffffffc00866cf34 t psci_0_2_cpu_suspend
-ffffffc00866cfb4 t psci_0_2_cpu_off
-ffffffc00866d034 t psci_0_2_cpu_on
-ffffffc00866d0b4 t psci_0_2_migrate
-ffffffc00866d134 t psci_affinity_info
-ffffffc00866d194 t psci_migrate_info_type
-ffffffc00866d1f4 t psci_sys_poweroff
-ffffffc00866d254 t psci_sys_reset
-ffffffc00866d2e4 t psci_system_suspend_enter
-ffffffc00866d31c t psci_system_suspend
-ffffffc00866d38c T arm_smccc_1_1_get_conduit
-ffffffc00866d3b4 T arm_smccc_get_version
-ffffffc00866d3cc T kvm_arm_hyp_service_available
-ffffffc00866d410 T timer_of_init
-ffffffc00866d744 T timer_of_cleanup
-ffffffc00866d7ec t arch_counter_get_cntvct
-ffffffc00866d818 T arch_timer_get_rate
-ffffffc00866d830 T arch_timer_evtstrm_available
-ffffffc00866d870 T arch_timer_get_kvm_info
-ffffffc00866d888 T kvm_arch_ptp_get_crosststamp
-ffffffc00866d96c t arch_timer_check_ool_workaround
-ffffffc00866db48 t fsl_a008585_read_cntpct_el0
-ffffffc00866db94 t fsl_a008585_read_cntvct_el0
-ffffffc00866dbe0 t erratum_set_next_event_phys
-ffffffc00866dce0 t erratum_set_next_event_virt
-ffffffc00866dde0 t hisi_161010101_read_cntpct_el0
-ffffffc00866de28 t hisi_161010101_read_cntvct_el0
-ffffffc00866de70 t arm64_858921_read_cntpct_el0
-ffffffc00866de94 t arm64_858921_read_cntvct_el0
-ffffffc00866deb8 t arch_counter_get_cntpct_stable
-ffffffc00866df90 t arch_counter_get_cntvct_stable
-ffffffc00866e068 t arch_timer_read_cntpct_el0
-ffffffc00866e088 t arch_timer_read_cntvct_el0
-ffffffc00866e0a8 t arch_timer_handler_virt
-ffffffc00866e118 t arch_timer_handler_phys
-ffffffc00866e188 t arch_timer_starting_cpu
-ffffffc00866e3e8 t arch_timer_dying_cpu
-ffffffc00866e4c0 t arch_timer_cpu_pm_notify
-ffffffc00866e5f4 t __arch_timer_setup
-ffffffc00866e894 t arch_timer_shutdown_virt
-ffffffc00866e8b8 t arch_timer_set_next_event_virt
-ffffffc00866e904 t arch_timer_shutdown_phys
-ffffffc00866e928 t arch_timer_set_next_event_phys
-ffffffc00866e974 t arch_timer_shutdown_virt_mem
-ffffffc00866e9c8 t arch_timer_set_next_event_virt_mem
-ffffffc00866ea84 t arch_timer_shutdown_phys_mem
-ffffffc00866ead8 t arch_timer_set_next_event_phys_mem
-ffffffc00866eb90 t arch_counter_get_cntpct
-ffffffc00866ebbc t arch_counter_get_cntvct_mem
-ffffffc00866ec38 t arch_counter_read_cc
-ffffffc00866ec84 t arch_timer_handler_virt_mem
-ffffffc00866ed08 t arch_timer_handler_phys_mem
-ffffffc00866ed8c t arch_counter_read
-ffffffc00866edd8 t dummy_timer_starting_cpu
-ffffffc00866ee60 T of_node_name_eq
-ffffffc00866eef8 T of_node_name_prefix
-ffffffc00866ef68 T of_bus_n_addr_cells
-ffffffc00866f008 T of_n_addr_cells
-ffffffc00866f0b0 T of_bus_n_size_cells
-ffffffc00866f150 T of_n_size_cells
-ffffffc00866f1f8 T __of_phandle_cache_inv_entry
-ffffffc00866f23c T __of_find_all_nodes
-ffffffc00866f288 T of_find_property
-ffffffc00866f324 T of_find_all_nodes
-ffffffc00866f3ac T __of_get_property
-ffffffc00866f428 T of_get_property
-ffffffc00866f4d8 T of_get_cpu_hwid
-ffffffc00866f644 W arch_find_n_match_cpu_physical_id
-ffffffc00866f814 T of_get_cpu_node
-ffffffc00866f884 T of_get_next_cpu_node
-ffffffc00866fa3c T of_cpu_node_to_id
-ffffffc00866fb00 T of_get_cpu_state_node
-ffffffc00866fc20 T of_device_is_compatible
-ffffffc00866fc98 t __of_device_is_compatible.llvm.9484561661894431719
-ffffffc00866fe38 T of_device_compatible_match
-ffffffc00866feec T of_machine_is_compatible
-ffffffc00866ff84 T of_device_is_available
-ffffffc00867005c T of_device_is_big_endian
-ffffffc0086700f4 T of_get_parent
-ffffffc008670150 T of_get_next_parent
-ffffffc0086701ac T of_get_next_child
-ffffffc008670224 T of_get_next_available_child
-ffffffc008670334 T of_get_compatible_child
-ffffffc008670410 T of_get_child_by_name
-ffffffc008670508 T __of_find_node_by_path
-ffffffc0086705c0 T __of_find_node_by_full_path
-ffffffc0086706c0 T of_find_node_opts_by_path
-ffffffc008670824 T of_find_node_by_name
-ffffffc008670940 T of_find_node_by_type
-ffffffc008670a54 T of_find_compatible_node
-ffffffc008670b3c T of_find_node_with_property
-ffffffc008670c24 T of_match_node
-ffffffc008670ce4 T of_find_matching_node_and_match
-ffffffc008670e34 T of_modalias_node
-ffffffc008670f24 T of_find_node_by_phandle
-ffffffc00867100c T of_print_phandle_args
-ffffffc0086710b8 T of_phandle_iterator_init
-ffffffc0086711b8 T of_phandle_iterator_next
-ffffffc008671414 T of_phandle_iterator_args
-ffffffc008671470 T __of_parse_phandle_with_args
-ffffffc008671630 T of_parse_phandle_with_args_map
-ffffffc008671d20 T of_count_phandle_with_args
-ffffffc008671ec0 T __of_add_property
-ffffffc008671f40 T of_add_property
-ffffffc008672024 T __of_remove_property
-ffffffc008672078 T of_remove_property
-ffffffc00867214c T __of_update_property
-ffffffc00867220c T of_update_property
-ffffffc00867231c T of_alias_scan
-ffffffc0086725b8 T of_alias_get_id
-ffffffc008672658 T of_alias_get_highest_id
-ffffffc0086726f0 T of_console_check
-ffffffc008672768 T of_find_next_cache_node
-ffffffc008672844 T of_find_last_cache_level
-ffffffc0086729a8 T of_map_id
-ffffffc008672cd4 T of_match_device
-ffffffc008672d20 T of_device_add
-ffffffc008672d78 T of_dma_configure_id
-ffffffc0086730f4 T of_device_register
-ffffffc008673160 T of_device_unregister
-ffffffc008673190 T of_device_get_match_data
-ffffffc0086731ec T of_device_request_module
-ffffffc008673278 t of_device_get_modalias
-ffffffc0086733dc T of_device_modalias
-ffffffc008673440 T of_device_uevent
-ffffffc0086735d4 T of_device_uevent_modalias
-ffffffc00867368c T of_find_device_by_node
-ffffffc0086736dc T of_device_alloc
-ffffffc008673840 t of_device_make_bus_id
-ffffffc008673a1c T of_platform_device_create
-ffffffc008673a4c t of_platform_device_create_pdata
-ffffffc008673b78 T of_platform_bus_probe
-ffffffc008673c60 t of_platform_bus_create
-ffffffc00867408c T of_platform_populate
-ffffffc00867417c T of_platform_default_populate
-ffffffc0086741b8 T of_platform_device_destroy
-ffffffc0086742c4 T of_platform_depopulate
-ffffffc008674350 T devm_of_platform_populate
-ffffffc008674404 t devm_of_platform_populate_release
-ffffffc008674494 T devm_of_platform_depopulate
-ffffffc0086744e0 t devm_of_platform_match
-ffffffc008674510 T of_graph_is_present
-ffffffc00867456c T of_property_count_elems_of_size
-ffffffc0086745f8 T of_property_read_u32_index
-ffffffc00867468c T of_property_read_u64_index
-ffffffc008674720 T of_property_read_variable_u8_array
-ffffffc0086747dc T of_property_read_variable_u16_array
-ffffffc0086748b0 T of_property_read_variable_u32_array
-ffffffc008674980 T of_property_read_u64
-ffffffc008674a08 T of_property_read_variable_u64_array
-ffffffc008674ad4 T of_property_read_string
-ffffffc008674b5c T of_property_match_string
-ffffffc008674c1c T of_property_read_string_helper
-ffffffc008674d14 T of_prop_next_u32
-ffffffc008674d60 T of_prop_next_string
-ffffffc008674dcc T of_graph_parse_endpoint
-ffffffc008674ed4 T of_graph_get_port_by_id
-ffffffc008674fcc T of_graph_get_next_endpoint
-ffffffc0086750f8 T of_graph_get_endpoint_by_regs
-ffffffc0086751c0 T of_graph_get_remote_endpoint
-ffffffc008675250 T of_graph_get_port_parent
-ffffffc0086752c0 T of_graph_get_remote_port_parent
-ffffffc008675398 T of_graph_get_remote_port
-ffffffc008675438 T of_graph_get_endpoint_count
-ffffffc0086754a0 T of_graph_get_remote_node
-ffffffc008675594 t of_fwnode_get.llvm.12361607218197106874
-ffffffc0086755dc t of_fwnode_put.llvm.12361607218197106874
-ffffffc0086755ec t of_fwnode_device_is_available.llvm.12361607218197106874
-ffffffc008675648 t of_fwnode_device_get_match_data.llvm.12361607218197106874
-ffffffc008675678 t of_fwnode_device_dma_supported.llvm.12361607218197106874
-ffffffc00867568c t of_fwnode_device_get_dma_attr.llvm.12361607218197106874
-ffffffc0086756f0 t of_fwnode_property_present.llvm.12361607218197106874
-ffffffc008675754 t of_fwnode_property_read_int_array.llvm.12361607218197106874
-ffffffc0086759e8 t of_fwnode_property_read_string_array.llvm.12361607218197106874
-ffffffc008675b50 t of_fwnode_get_name.llvm.12361607218197106874
-ffffffc008675bc0 t of_fwnode_get_name_prefix.llvm.12361607218197106874
-ffffffc008675c14 t of_fwnode_get_parent.llvm.12361607218197106874
-ffffffc008675c78 t of_fwnode_get_next_child_node.llvm.12361607218197106874
-ffffffc008675d00 t of_fwnode_get_named_child_node.llvm.12361607218197106874
-ffffffc008675da4 t of_fwnode_get_reference_args.llvm.12361607218197106874
-ffffffc008675f7c t of_fwnode_graph_get_next_endpoint.llvm.12361607218197106874
-ffffffc008676004 t of_fwnode_graph_get_remote_endpoint.llvm.12361607218197106874
-ffffffc0086760cc t of_fwnode_graph_get_port_parent.llvm.12361607218197106874
-ffffffc008676160 t of_fwnode_graph_parse_endpoint.llvm.12361607218197106874
-ffffffc008676254 t of_fwnode_iomap.llvm.12361607218197106874
-ffffffc0086762ac t of_fwnode_irq_get.llvm.12361607218197106874
-ffffffc008676304 t of_fwnode_add_links.llvm.12361607218197106874
-ffffffc008676554 t parse_clocks
-ffffffc00867661c t parse_interconnects
-ffffffc0086766e4 t parse_iommus
-ffffffc0086767ac t parse_iommu_maps
-ffffffc008676878 t parse_mboxes
-ffffffc008676940 t parse_io_channels
-ffffffc008676a08 t parse_interrupt_parent
-ffffffc008676acc t parse_dmas
-ffffffc008676b94 t parse_power_domains
-ffffffc008676c5c t parse_hwlocks
-ffffffc008676d24 t parse_extcon
-ffffffc008676de8 t parse_nvmem_cells
-ffffffc008676eac t parse_phys
-ffffffc008676f74 t parse_wakeup_parent
-ffffffc008677038 t parse_pinctrl0
-ffffffc0086770fc t parse_pinctrl1
-ffffffc0086771c0 t parse_pinctrl2
-ffffffc008677284 t parse_pinctrl3
-ffffffc008677348 t parse_pinctrl4
-ffffffc00867740c t parse_pinctrl5
-ffffffc0086774d0 t parse_pinctrl6
-ffffffc008677594 t parse_pinctrl7
-ffffffc008677658 t parse_pinctrl8
-ffffffc00867771c t parse_remote_endpoint
-ffffffc0086777e0 t parse_pwms
-ffffffc0086778a8 t parse_resets
-ffffffc008677970 t parse_leds
-ffffffc008677a34 t parse_backlight
-ffffffc008677af8 t parse_gpio_compat
-ffffffc008677bf8 t parse_interrupts
-ffffffc008677cc8 t parse_regulators
-ffffffc008677da4 t parse_gpio
-ffffffc008677e8c t parse_gpios
-ffffffc008677fb4 T of_node_is_attached
-ffffffc008677fd4 t of_node_release
-ffffffc008677fe4 T __of_add_property_sysfs
-ffffffc0086780e4 t safe_name
-ffffffc0086781c4 t of_node_property_read
-ffffffc008678238 T __of_sysfs_remove_bin_file
-ffffffc008678284 T __of_remove_property_sysfs
-ffffffc0086782e8 T __of_update_property_sysfs
-ffffffc008678360 T __of_attach_node_sysfs
-ffffffc008678454 T __of_detach_node_sysfs
-ffffffc0086784d8 T __unflatten_device_tree
-ffffffc00867865c t unflatten_dt_nodes
-ffffffc008678948 T of_fdt_unflatten_tree
-ffffffc008678ac0 t of_fdt_is_compatible.llvm.211071606019408854
-ffffffc008678b90 t of_fdt_device_is_available
-ffffffc008678c04 t reverse_nodes
-ffffffc008678c7c t populate_properties
-ffffffc008678ee8 t of_fdt_raw_read
-ffffffc008678f38 T of_pci_address_to_resource
-ffffffc008678f6c t __of_address_to_resource.llvm.15087132370636148111
-ffffffc00867959c T of_pci_range_to_resource
-ffffffc008679644 T of_translate_address
-ffffffc008679b30 T __of_get_dma_parent
-ffffffc008679bf4 T of_translate_dma_address
-ffffffc00867a250 T __of_get_address
-ffffffc00867a4fc T of_pci_range_parser_init
-ffffffc00867a52c t parser_init.llvm.15087132370636148111
-ffffffc00867a6d0 T of_pci_dma_range_parser_init
-ffffffc00867a704 T of_pci_range_parser_one
-ffffffc00867a968 T of_address_to_resource
-ffffffc00867a99c T of_iomap
-ffffffc00867aa5c T of_io_request_and_map
-ffffffc00867ab7c T of_dma_get_range
-ffffffc00867ae48 T of_dma_is_coherent
-ffffffc00867af94 t of_bus_pci_match
-ffffffc00867b0c8 t of_bus_pci_count_cells
-ffffffc00867b0f0 t of_bus_pci_map
-ffffffc00867b1e0 t of_bus_pci_translate
-ffffffc00867b294 t of_bus_pci_get_flags
-ffffffc00867b2dc t of_bus_isa_match
-ffffffc00867b314 t of_bus_isa_count_cells
-ffffffc00867b33c t of_bus_isa_map
-ffffffc00867b3e8 t of_bus_isa_translate
-ffffffc00867b49c t of_bus_isa_get_flags
-ffffffc00867b4c0 t of_bus_default_count_cells
-ffffffc00867b524 t of_bus_default_map
-ffffffc00867b5ac t of_bus_default_translate
-ffffffc00867b660 t of_bus_default_get_flags
-ffffffc00867b674 T irq_of_parse_and_map
-ffffffc00867b6f8 T of_irq_parse_one
-ffffffc00867b8a8 T of_irq_find_parent
-ffffffc00867b980 T of_irq_parse_raw
-ffffffc00867c1d8 T of_irq_to_resource
-ffffffc00867c374 T of_irq_get
-ffffffc00867c458 T of_irq_get_byname
-ffffffc00867c574 T of_irq_count
-ffffffc00867c608 T of_irq_to_resource_table
-ffffffc00867c690 T of_msi_map_id
-ffffffc00867c748 T of_msi_map_get_device_domain
-ffffffc00867c83c T of_msi_get_domain
-ffffffc00867c9cc T of_msi_configure
-ffffffc00867ca0c T of_reserved_mem_device_init_by_idx
-ffffffc00867cc4c T of_reserved_mem_device_init_by_name
-ffffffc00867cca4 T of_reserved_mem_device_release
-ffffffc00867ce08 T of_reserved_mem_lookup
-ffffffc00867ceac T of_kexec_alloc_and_setup_fdt
-ffffffc00867d5cc T __hwspin_trylock
-ffffffc00867d760 T __hwspin_lock_timeout
-ffffffc00867d878 T __hwspin_unlock
-ffffffc00867d93c T of_hwspin_lock_get_id
-ffffffc00867dae4 T of_hwspin_lock_get_id_byname
-ffffffc00867db4c T hwspin_lock_register
-ffffffc00867dca4 T hwspin_lock_unregister
-ffffffc00867ddc8 T devm_hwspin_lock_unregister
-ffffffc00867de14 t devm_hwspin_lock_unreg
-ffffffc00867de44 t devm_hwspin_lock_device_match
-ffffffc00867de78 T devm_hwspin_lock_register
-ffffffc00867df3c T hwspin_lock_get_id
-ffffffc00867dfa4 T hwspin_lock_request
-ffffffc00867e06c t __hwspin_lock_request
-ffffffc00867e198 T hwspin_lock_request_specific
-ffffffc00867e290 T hwspin_lock_free
-ffffffc00867e3c4 T devm_hwspin_lock_free
-ffffffc00867e410 t devm_hwspin_lock_release
-ffffffc00867e440 t devm_hwspin_lock_match
-ffffffc00867e474 T devm_hwspin_lock_request
-ffffffc00867e50c T devm_hwspin_lock_request_specific
-ffffffc00867e5ac T armpmu_map_event
-ffffffc00867e66c T armpmu_event_set_period
-ffffffc00867e75c T armpmu_event_update
-ffffffc00867e8a8 T armpmu_free_irq
-ffffffc00867e964 T armpmu_request_irq
-ffffffc00867ec3c t armpmu_dispatch_irq
-ffffffc00867ecbc T armpmu_alloc
-ffffffc00867ece8 t __armpmu_alloc.llvm.7600810885458452710
-ffffffc00867eea0 T armpmu_alloc_atomic
-ffffffc00867eed0 T armpmu_free
-ffffffc00867ef14 T armpmu_register
-ffffffc00867f06c t armpmu_free_pmuirq
-ffffffc00867f0b4 t armpmu_free_pmunmi
-ffffffc00867f0fc t armpmu_enable_percpu_pmuirq
-ffffffc00867f12c t armpmu_free_percpu_pmuirq
-ffffffc00867f1f4 t armpmu_enable_percpu_pmunmi
-ffffffc00867f23c t armpmu_disable_percpu_pmunmi
-ffffffc00867f27c t armpmu_free_percpu_pmunmi
-ffffffc00867f344 t armpmu_enable
-ffffffc00867f3f0 t armpmu_disable
-ffffffc00867f464 t armpmu_event_init
-ffffffc00867f764 t armpmu_add
-ffffffc00867f944 t armpmu_del
-ffffffc00867f9e8 t armpmu_start
-ffffffc00867fb10 t armpmu_stop
-ffffffc00867fc90 t armpmu_read
-ffffffc00867fdd8 t armpmu_filter_match
-ffffffc00867fe64 t cpus_show
-ffffffc00867feac t cpu_pm_pmu_notify
-ffffffc008680194 t arm_perf_starting_cpu
-ffffffc00868028c t arm_perf_teardown_cpu
-ffffffc00868034c T arm_pmu_device_probe
-ffffffc008680920 T __traceiter_mc_event
-ffffffc008680a34 T __traceiter_arm_event
-ffffffc008680ab4 T __traceiter_non_standard_event
-ffffffc008680b74 T __traceiter_aer_event
-ffffffc008680c24 t trace_event_raw_event_mc_event
-ffffffc008680df8 t perf_trace_mc_event
-ffffffc008681044 t trace_event_raw_event_arm_event
-ffffffc008681154 t perf_trace_arm_event
-ffffffc0086812b8 t trace_event_raw_event_non_standard_event
-ffffffc008681418 t perf_trace_non_standard_event
-ffffffc0086815dc t trace_event_raw_event_aer_event
-ffffffc008681728 t perf_trace_aer_event
-ffffffc0086818d4 T log_non_standard_event
-ffffffc008681a00 T log_arm_hw_error
-ffffffc008681b00 t trace_raw_output_mc_event
-ffffffc008681c34 t trace_raw_output_arm_event
-ffffffc008681cb0 t trace_raw_output_non_standard_event
-ffffffc008681d78 t trace_raw_output_aer_event
-ffffffc008681e94 T ras_userspace_consumers
-ffffffc008681eb4 t trace_open
-ffffffc008681f28 t trace_release
-ffffffc008681f90 T devm_alloc_etherdev_mqs
-ffffffc008682054 t devm_free_netdev
-ffffffc008682084 T devm_register_netdev
-ffffffc008682148 t netdev_devres_match
-ffffffc008682164 t devm_unregister_netdev
-ffffffc008682194 T move_addr_to_kernel
-ffffffc008682390 T sock_alloc_file
-ffffffc0086824a4 T sock_release
-ffffffc008682544 T sock_from_file
-ffffffc008682578 T sockfd_lookup
-ffffffc0086825f4 T sock_alloc
-ffffffc008682688 T __sock_tx_timestamp
-ffffffc0086826d0 T sock_sendmsg
-ffffffc008682750 T kernel_sendmsg
-ffffffc0086827e4 T kernel_sendmsg_locked
-ffffffc008682878 T __sock_recv_timestamp
-ffffffc008682be8 T __sock_recv_wifi_status
-ffffffc008682c68 T __sock_recv_cmsgs
-ffffffc008682dbc T sock_recvmsg
-ffffffc008682e44 T kernel_recvmsg
-ffffffc008682eec T brioctl_set
-ffffffc008682f40 T br_ioctl_call
-ffffffc008682ff8 T vlan_ioctl_set
-ffffffc00868304c T sock_create_lite
-ffffffc0086831c0 T sock_wake_async
-ffffffc008683298 T __sock_create
-ffffffc00868350c T sock_create
-ffffffc008683558 T sock_create_kern
-ffffffc008683588 T __sys_socket_file
-ffffffc00868364c T __sys_socket
-ffffffc0086837d0 T __arm64_sys_socket
-ffffffc008683810 T __sys_socketpair
-ffffffc008683d30 T __arm64_sys_socketpair
-ffffffc008683d74 T __sys_bind
-ffffffc008683eb8 T __arm64_sys_bind
-ffffffc008683ef8 T __sys_listen
-ffffffc008683ff4 T __arm64_sys_listen
-ffffffc008684030 T do_accept
-ffffffc00868424c t move_addr_to_user
-ffffffc0086846bc T __sys_accept4
-ffffffc0086847a0 T __arm64_sys_accept4
-ffffffc0086847e0 T __arm64_sys_accept
-ffffffc008684820 T __sys_connect_file
-ffffffc0086848d0 T __sys_connect
-ffffffc008684a1c T __arm64_sys_connect
-ffffffc008684a5c T __sys_getsockname
-ffffffc008684ba4 T __arm64_sys_getsockname
-ffffffc008684be0 T __sys_getpeername
-ffffffc008684d38 T __arm64_sys_getpeername
-ffffffc008684d74 T __sys_sendto
-ffffffc008684f64 T __arm64_sys_sendto
-ffffffc008684fac T __arm64_sys_send
-ffffffc008684ff4 T __sys_recvfrom
-ffffffc0086851c8 T __arm64_sys_recvfrom
-ffffffc00868520c T __arm64_sys_recv
-ffffffc008685254 T __sys_setsockopt
-ffffffc0086853a4 T __arm64_sys_setsockopt
-ffffffc0086853ec T __sys_getsockopt
-ffffffc008685528 T __arm64_sys_getsockopt
-ffffffc00868556c T __sys_shutdown_sock
-ffffffc0086855d8 T __sys_shutdown
-ffffffc0086856bc T __arm64_sys_shutdown
-ffffffc0086857a8 T __copy_msghdr
-ffffffc008685890 T sendmsg_copy_msghdr
-ffffffc0086858c4 t copy_msghdr_from_user.llvm.15221146139721862464
-ffffffc008685b50 T __sys_sendmsg_sock
-ffffffc008685b84 t ____sys_sendmsg.llvm.15221146139721862464
-ffffffc008685f10 T __sys_sendmsg
-ffffffc008686084 T __arm64_sys_sendmsg
-ffffffc0086860c4 T __sys_sendmmsg
-ffffffc00868645c T __arm64_sys_sendmmsg
-ffffffc0086864a4 T recvmsg_copy_msghdr
-ffffffc0086864e0 T __sys_recvmsg_sock
-ffffffc008686510 t ____sys_recvmsg.llvm.15221146139721862464
-ffffffc0086868f4 T __sys_recvmsg
-ffffffc008686a48 T __arm64_sys_recvmsg
-ffffffc008686a88 T __sys_recvmmsg
-ffffffc008686bf0 t do_recvmmsg
-ffffffc008687028 T __arm64_sys_recvmmsg
-ffffffc008687128 T sock_register
-ffffffc0086871f4 T sock_unregister
-ffffffc008687278 T sock_is_registered
-ffffffc0086872c4 T socket_seq_show
-ffffffc008687314 T get_user_ifreq
-ffffffc0086874c4 T put_user_ifreq
-ffffffc008687640 T kernel_bind
-ffffffc00868768c T kernel_listen
-ffffffc0086876d8 T kernel_accept
-ffffffc008687804 T kernel_connect
-ffffffc008687850 T kernel_getsockname
-ffffffc0086878a0 T kernel_getpeername
-ffffffc0086878f0 T kernel_sendpage
-ffffffc008687a34 T kernel_sendpage_locked
-ffffffc008687a90 T kernel_sock_shutdown
-ffffffc008687adc T kernel_sock_ip_overhead
-ffffffc008687b78 t sock_read_iter
-ffffffc008687cc4 t sock_write_iter
-ffffffc008687e08 t sock_poll
-ffffffc008687f2c t sock_ioctl
-ffffffc0086885a0 t sock_mmap
-ffffffc0086885f4 t sock_close
-ffffffc0086886f4 t sock_fasync
-ffffffc008688798 t sock_sendpage
-ffffffc0086888ec t sock_splice_read
-ffffffc00868894c t sock_show_fdinfo
-ffffffc0086889a0 t get_net_ns
-ffffffc0086889b4 t sockfs_setattr
-ffffffc008688a2c t sockfs_listxattr
-ffffffc008688ac0 t sockfs_init_fs_context
-ffffffc008688b28 t sock_alloc_inode
-ffffffc008688ba4 t sock_free_inode
-ffffffc008688bdc t sockfs_dname
-ffffffc008688c24 t sockfs_xattr_get
-ffffffc008688c88 t sockfs_security_xattr_set
-ffffffc008688c9c T sk_ns_capable
-ffffffc008688cfc T sk_capable
-ffffffc008688d68 T sk_net_capable
-ffffffc008688dd4 T sk_set_memalloc
-ffffffc008688e28 T sk_clear_memalloc
-ffffffc008688ee4 T __sk_backlog_rcv
-ffffffc008688f60 T sk_error_report
-ffffffc008689050 T sock_get_timeout
-ffffffc0086890b0 T sock_copy_user_timeval
-ffffffc008689160 t copy_from_sockptr
-ffffffc00868932c t copy_from_sockptr
-ffffffc008689514 t copy_from_sockptr
-ffffffc0086896fc t copy_from_sockptr
-ffffffc0086898c8 t copy_from_sockptr
-ffffffc008689ab0 t copy_from_sockptr
-ffffffc008689c58 T __sock_queue_rcv_skb
-ffffffc008689fd4 T sock_queue_rcv_skb_reason
-ffffffc00868a064 T __sk_receive_skb
-ffffffc00868a3d8 T __sk_dst_check
-ffffffc00868a470 T sk_dst_check
-ffffffc00868a5bc T sock_bindtoindex
-ffffffc00868a680 T release_sock
-ffffffc00868a738 T sk_mc_loop
-ffffffc00868a844 T sock_set_reuseaddr
-ffffffc00868a910 T sock_set_reuseport
-ffffffc00868a9d8 T sock_no_linger
-ffffffc00868aaa4 T sock_set_priority
-ffffffc00868ab70 T sock_set_sndtimeo
-ffffffc00868ac5c T sock_enable_timestamps
-ffffffc00868ad60 T sock_set_timestamp
-ffffffc00868aec8 T sock_set_timestamping
-ffffffc00868b158 T sock_enable_timestamp
-ffffffc00868b1d0 T sock_set_keepalive
-ffffffc00868b2c8 T sock_set_rcvbuf
-ffffffc00868b3b4 T sock_set_mark
-ffffffc00868b4c0 t __sock_set_mark
-ffffffc00868b538 T sockopt_lock_sock
-ffffffc00868b564 T sockopt_release_sock
-ffffffc00868b61c T sockopt_ns_capable
-ffffffc00868b64c T sockopt_capable
-ffffffc00868b67c T sk_setsockopt
-ffffffc00868c2d4 t sock_set_timeout
-ffffffc00868c460 t dst_negative_advice
-ffffffc00868c50c t sock_release_reserved_memory
-ffffffc00868c5bc T sock_setsockopt
-ffffffc00868c5ec T sk_getsockopt
-ffffffc00868cda8 t sk_get_peer_cred
-ffffffc00868ce24 t put_cred
-ffffffc00868ce88 t groups_to_user
-ffffffc00868cf74 T sk_get_meminfo
-ffffffc00868d018 t sock_gen_cookie
-ffffffc00868d09c T sock_getsockopt
-ffffffc00868d0d8 T sk_alloc
-ffffffc00868d254 t sk_prot_alloc
-ffffffc00868d354 T sk_destruct
-ffffffc00868d3c8 t __sk_destruct
-ffffffc00868d574 T sk_free
-ffffffc00868d5fc t __sk_free
-ffffffc00868d798 T sk_clone_lock
-ffffffc00868dad8 T sk_free_unlock_clone
-ffffffc00868db78 T sk_setup_caps
-ffffffc00868dcf8 T sock_wfree
-ffffffc00868df24 t sock_def_write_space
-ffffffc00868dfdc T __sock_wfree
-ffffffc00868e06c T skb_set_owner_w
-ffffffc00868e1c4 T skb_orphan_partial
-ffffffc00868e35c T sock_rfree
-ffffffc00868e430 T sock_efree
-ffffffc00868e500 T sock_pfree
-ffffffc00868e550 T sock_i_uid
-ffffffc00868e5b0 T sock_i_ino
-ffffffc00868e610 T sock_wmalloc
-ffffffc00868e69c T sock_omalloc
-ffffffc00868e75c t sock_ofree
-ffffffc00868e7a8 T sock_kmalloc
-ffffffc00868e880 T sock_kfree_s
-ffffffc00868e8fc T sock_kzfree_s
-ffffffc00868e978 T sock_alloc_send_pskb
-ffffffc00868ec78 T __sock_cmsg_send
-ffffffc00868ed90 T sock_cmsg_send
-ffffffc00868ee68 T skb_page_frag_refill
-ffffffc00868efb8 T sk_page_frag_refill
-ffffffc00868f038 t sk_stream_moderate_sndbuf
-ffffffc00868f0a4 t sk_stream_moderate_sndbuf
-ffffffc00868f114 T __lock_sock
-ffffffc00868f1dc T __release_sock
-ffffffc00868f30c T __sk_flush_backlog
-ffffffc00868f35c T sk_wait_data
-ffffffc00868f574 T __sk_mem_raise_allocated
-ffffffc00868fa58 T __sk_mem_schedule
-ffffffc00868fac4 T __sk_mem_reduce_allocated
-ffffffc00868fc34 T __sk_mem_reclaim
-ffffffc00868fc74 T sk_set_peek_off
-ffffffc00868fc90 T sock_no_bind
-ffffffc00868fca4 T sock_no_connect
-ffffffc00868fcb8 T sock_no_socketpair
-ffffffc00868fccc T sock_no_accept
-ffffffc00868fce0 T sock_no_getname
-ffffffc00868fcf4 T sock_no_ioctl
-ffffffc00868fd08 T sock_no_listen
-ffffffc00868fd1c T sock_no_shutdown
-ffffffc00868fd30 T sock_no_sendmsg
-ffffffc00868fd44 T sock_no_sendmsg_locked
-ffffffc00868fd58 T sock_no_recvmsg
-ffffffc00868fd6c T sock_no_mmap
-ffffffc00868fd80 T __receive_sock
-ffffffc00868fdac T sock_no_sendpage
-ffffffc00868fe64 T sock_no_sendpage_locked
-ffffffc00868ff1c T sock_def_readable
-ffffffc00868ffb4 T sk_send_sigurg
-ffffffc00869002c T sk_reset_timer
-ffffffc0086900c4 T sk_stop_timer
-ffffffc00869014c T sk_stop_timer_sync
-ffffffc0086901d4 T sock_init_data_uid
-ffffffc0086903a0 t sock_def_wakeup
-ffffffc008690414 t sock_def_error_report
-ffffffc0086904b0 t sock_def_destruct
-ffffffc0086904c0 T sock_init_data
-ffffffc0086904fc T lock_sock_nested
-ffffffc0086905e4 T __lock_sock_fast
-ffffffc0086906d4 T sock_gettstamp
-ffffffc0086907dc T sock_recv_errqueue
-ffffffc008690930 T sock_common_getsockopt
-ffffffc008690988 T sock_common_recvmsg
-ffffffc008690a24 T sock_common_setsockopt
-ffffffc008690a7c T sk_common_release
-ffffffc008690c04 T sock_prot_inuse_get
-ffffffc008690cb8 T sock_inuse_get
-ffffffc008690d5c T proto_register
-ffffffc00869101c T proto_unregister
-ffffffc008691134 T sock_load_diag_module
-ffffffc0086911b8 T sk_busy_loop_end
-ffffffc008691224 T sock_bind_add
-ffffffc008691278 t copy_to_sockptr_offset
-ffffffc008691438 t copy_to_sockptr_offset
-ffffffc0086915f8 t copy_to_sockptr_offset
-ffffffc00869176c t proto_seq_start
-ffffffc0086917bc t proto_seq_stop
-ffffffc0086917f0 t proto_seq_next
-ffffffc008691828 t proto_seq_show
-ffffffc008691b6c T reqsk_queue_alloc
-ffffffc008691b8c T reqsk_fastopen_remove
-ffffffc008691d70 T napi_get_frags_check
-ffffffc008691dd4 T __napi_alloc_frag_align
-ffffffc008691e24 T __netdev_alloc_frag_align
-ffffffc008691eec T __build_skb
-ffffffc008691fd4 T build_skb
-ffffffc008692120 T build_skb_around
-ffffffc008692234 T napi_build_skb
-ffffffc0086922d8 t __napi_build_skb
-ffffffc008692414 T __alloc_skb
-ffffffc0086926ac T __netdev_alloc_skb
-ffffffc0086928d4 T __napi_alloc_skb
-ffffffc008692ab0 T skb_add_rx_frag
-ffffffc008692b38 t skb_fill_page_desc
-ffffffc008692ba8 T skb_coalesce_rx_frag
-ffffffc008692bf0 T skb_release_head_state
-ffffffc008692c74 T __kfree_skb
-ffffffc008692d0c t kfree_skbmem
-ffffffc008692dd8 T kfree_skb_reason
-ffffffc008692f4c T kfree_skb_list_reason
-ffffffc008692f98 T skb_dump
-ffffffc0086934b4 T skb_tx_error
-ffffffc0086935e4 T consume_skb
-ffffffc00869377c T __consume_stateless_skb
-ffffffc008693848 t skb_release_data
-ffffffc008693a30 T __kfree_skb_defer
-ffffffc008693b58 T napi_skb_free_stolen_head
-ffffffc008693ca0 T napi_consume_skb
-ffffffc008693ef8 T alloc_skb_for_msg
-ffffffc008693f80 t __copy_skb_header
-ffffffc00869411c T skb_morph
-ffffffc0086941bc t __skb_clone
-ffffffc008694308 T mm_account_pinned_pages
-ffffffc008694478 T mm_unaccount_pinned_pages
-ffffffc0086944e4 T msg_zerocopy_realloc
-ffffffc008694720 T msg_zerocopy_callback
-ffffffc008694950 t net_zcopy_get
-ffffffc0086949c4 t refcount_dec_and_test
-ffffffc008694a4c t refcount_dec_and_test
-ffffffc008694ad4 t refcount_dec_and_test
-ffffffc008694b60 T msg_zerocopy_put_abort
-ffffffc008694bdc T skb_zerocopy_iter_stream
-ffffffc008694d74 T ___pskb_trim
-ffffffc0086950e4 T __skb_zcopy_downgrade_managed
-ffffffc008695194 T skb_copy_ubufs
-ffffffc0086957b0 T skb_clone
-ffffffc00869589c T skb_headers_offset_update
-ffffffc00869591c T skb_copy_header
-ffffffc0086959b8 T skb_copy
-ffffffc008695b28 T skb_put
-ffffffc008695b9c T skb_copy_bits
-ffffffc008695e28 T __pskb_copy_fclone
-ffffffc00869616c t skb_zerocopy_clone
-ffffffc0086962dc T pskb_expand_head
-ffffffc00869672c T skb_realloc_headroom
-ffffffc0086967cc T __skb_unclone_keeptruesize
-ffffffc008696860 T skb_expand_head
-ffffffc008696a50 T skb_copy_expand
-ffffffc008696c48 T __skb_pad
-ffffffc008696dac T pskb_put
-ffffffc008696e40 t skb_over_panic
-ffffffc008696e9c T skb_push
-ffffffc008696efc t skb_under_panic
-ffffffc008696f58 T skb_pull
-ffffffc008696fa0 T skb_pull_data
-ffffffc008696ff4 T skb_trim
-ffffffc00869703c T skb_condense
-ffffffc0086970c8 T pskb_trim_rcsum_slow
-ffffffc0086971dc T skb_checksum
-ffffffc008697210 T __pskb_pull_tail
-ffffffc0086976cc T skb_splice_bits
-ffffffc0086977d8 t sock_spd_release
-ffffffc008697864 t __skb_splice_bits
-ffffffc0086979f4 T skb_send_sock_locked
-ffffffc008697c38 T skb_send_sock
-ffffffc008697e88 T skb_store_bits
-ffffffc008698114 T __skb_checksum
-ffffffc008698450 t csum_partial_ext.llvm.5703560699642077560
-ffffffc00869847c t csum_block_add_ext.llvm.5703560699642077560
-ffffffc0086984a0 T skb_copy_and_csum_bits
-ffffffc0086987ac T __skb_checksum_complete_head
-ffffffc008698868 T __skb_checksum_complete
-ffffffc00869895c T skb_zerocopy_headlen
-ffffffc0086989c0 T skb_zerocopy
-ffffffc008698da4 T skb_copy_and_csum_dev
-ffffffc008698e8c T skb_dequeue
-ffffffc008698f10 T skb_dequeue_tail
-ffffffc008698f9c T skb_queue_purge
-ffffffc00869904c T skb_rbtree_purge
-ffffffc0086990d8 T skb_queue_head
-ffffffc008699150 T skb_queue_tail
-ffffffc0086991c8 T skb_unlink
-ffffffc00869923c T skb_append
-ffffffc0086992b8 T skb_split
-ffffffc008699670 T skb_shift
-ffffffc008699b90 t skb_prepare_for_shift
-ffffffc008699c50 t __skb_frag_ref
-ffffffc008699cb0 T skb_prepare_seq_read
-ffffffc008699cd0 T skb_seq_read
-ffffffc008699f58 T skb_abort_seq_read
-ffffffc008699fc4 T skb_find_text
-ffffffc00869a0cc t skb_ts_get_next_block
-ffffffc00869a0fc t skb_ts_finish
-ffffffc00869a168 T skb_append_pagefrags
-ffffffc00869a308 T skb_pull_rcsum
-ffffffc00869a3c0 T skb_segment_list
-ffffffc00869a868 T skb_segment
-ffffffc00869b550 T skb_to_sgvec
-ffffffc00869b5a4 t __skb_to_sgvec
-ffffffc00869b818 T skb_to_sgvec_nomark
-ffffffc00869b848 T skb_cow_data
-ffffffc00869bbac T sock_queue_err_skb
-ffffffc00869bd9c t sock_rmem_free
-ffffffc00869bde8 T sock_dequeue_err_skb
-ffffffc00869beec T skb_clone_sk
-ffffffc00869c04c T skb_complete_tx_timestamp
-ffffffc00869c2a8 T __skb_tstamp_tx
-ffffffc00869c524 T skb_tstamp_tx
-ffffffc00869c560 T skb_complete_wifi_ack
-ffffffc00869c6f8 T skb_partial_csum_set
-ffffffc00869c7d0 T skb_checksum_setup
-ffffffc00869cb34 T skb_checksum_trimmed
-ffffffc00869cd5c T __skb_warn_lro_forwarding
-ffffffc00869cdbc T kfree_skb_partial
-ffffffc00869cebc T skb_try_coalesce
-ffffffc00869d264 T skb_scrub_packet
-ffffffc00869d2f4 T skb_gso_validate_network_len
-ffffffc00869d3e4 T skb_gso_validate_mac_len
-ffffffc00869d4d4 T skb_vlan_untag
-ffffffc00869d770 T skb_ensure_writable
-ffffffc00869d86c T __skb_vlan_pop
-ffffffc00869da18 T skb_vlan_pop
-ffffffc00869db00 T skb_vlan_push
-ffffffc00869dcf4 T skb_eth_pop
-ffffffc00869de34 T skb_eth_push
-ffffffc00869dfc4 T skb_mpls_push
-ffffffc00869e214 T skb_mpls_pop
-ffffffc00869e3b4 T skb_mpls_update_lse
-ffffffc00869e498 T skb_mpls_dec_ttl
-ffffffc00869e608 T alloc_skb_with_frags
-ffffffc00869e7e4 T pskb_extract
-ffffffc00869e89c t pskb_carve
-ffffffc00869ef18 T __skb_ext_alloc
-ffffffc00869ef60 T __skb_ext_set
-ffffffc00869efd8 T skb_ext_add
-ffffffc00869f198 T __skb_ext_del
-ffffffc00869f2c0 T __skb_ext_put
-ffffffc00869f424 T skb_attempt_defer_free
-ffffffc00869f600 t __splice_segment
-ffffffc00869f884 t warn_crc32c_csum_update
-ffffffc00869f8e0 t warn_crc32c_csum_combine
-ffffffc00869f938 t skb_checksum_setup_ip
-ffffffc00869fb34 T __skb_wait_for_more_packets
-ffffffc00869fce8 t receiver_wake_function
-ffffffc00869fd2c T __skb_try_recv_from_queue
-ffffffc00869fef0 T __skb_try_recv_datagram
-ffffffc0086a00d4 T __skb_recv_datagram
-ffffffc0086a01c0 T skb_recv_datagram
-ffffffc0086a02ac T skb_free_datagram
-ffffffc0086a02dc T __skb_free_datagram_locked
-ffffffc0086a0448 T __sk_queue_drop_skb
-ffffffc0086a0590 T skb_kill_datagram
-ffffffc0086a05ec T skb_copy_and_hash_datagram_iter
-ffffffc0086a0620 t __skb_datagram_iter
-ffffffc0086a089c T skb_copy_datagram_iter
-ffffffc0086a0998 T skb_copy_datagram_from_iter
-ffffffc0086a0ba0 T __zerocopy_sg_from_iter
-ffffffc0086a100c T zerocopy_sg_from_iter
-ffffffc0086a1088 T skb_copy_and_csum_datagram_msg
-ffffffc0086a11ec T datagram_poll
-ffffffc0086a1354 t __skb_datagram_iter.1
-ffffffc0086a1630 T sk_stream_write_space
-ffffffc0086a1788 T sk_stream_wait_connect
-ffffffc0086a197c T sk_stream_wait_close
-ffffffc0086a1aa0 T sk_stream_wait_memory
-ffffffc0086a1f04 T sk_stream_error
-ffffffc0086a1fa4 T sk_stream_kill_queues
-ffffffc0086a2074 T __scm_destroy
-ffffffc0086a20f0 T __scm_send
-ffffffc0086a24ac T put_cmsg
-ffffffc0086a2ae0 T put_cmsg_scm_timestamping64
-ffffffc0086a2b60 T put_cmsg_scm_timestamping
-ffffffc0086a2be0 T scm_detach_fds
-ffffffc0086a3138 T scm_fp_dup
-ffffffc0086a3258 T gnet_stats_start_copy_compat
-ffffffc0086a3364 T gnet_stats_start_copy
-ffffffc0086a33a4 T gnet_stats_basic_sync_init
-ffffffc0086a33bc T gnet_stats_add_basic
-ffffffc0086a356c T gnet_stats_copy_basic
-ffffffc0086a3598 t ___gnet_stats_copy_basic.llvm.295574274633816525
-ffffffc0086a3740 T gnet_stats_copy_basic_hw
-ffffffc0086a3770 T gnet_stats_copy_rate_est
-ffffffc0086a3888 T gnet_stats_add_queue
-ffffffc0086a39b4 T gnet_stats_copy_queue
-ffffffc0086a3b50 T gnet_stats_copy_app
-ffffffc0086a3c14 T gnet_stats_finish_copy
-ffffffc0086a3d10 T gen_new_estimator
-ffffffc0086a3f68 t est_timer
-ffffffc0086a40cc T gen_kill_estimator
-ffffffc0086a4140 T gen_replace_estimator
-ffffffc0086a416c T gen_estimator_active
-ffffffc0086a418c T gen_estimator_read
-ffffffc0086a423c T peernet2id_alloc
-ffffffc0086a4330 t rtnl_net_notifyid
-ffffffc0086a444c T peernet2id
-ffffffc0086a44b4 T peernet_has_id
-ffffffc0086a4518 T get_net_ns_by_id
-ffffffc0086a4578 T get_net_ns_by_pid
-ffffffc0086a45f8 T register_pernet_subsys
-ffffffc0086a465c t rtnl_net_newid
-ffffffc0086a4914 t rtnl_net_getid
-ffffffc0086a4cb4 t rtnl_net_dumpid
-ffffffc0086a4edc t register_pernet_operations.llvm.3226367713801314403
-ffffffc0086a4fd4 T unregister_pernet_subsys
-ffffffc0086a5024 t unregister_pernet_operations.llvm.3226367713801314403
-ffffffc0086a523c T register_pernet_device
-ffffffc0086a52c4 T unregister_pernet_device
-ffffffc0086a5330 t net_eq_idr
-ffffffc0086a5344 t rtnl_net_fill
-ffffffc0086a5474 t ops_init
-ffffffc0086a55e0 t rtnl_net_dumpid_one
-ffffffc0086a567c T secure_tcpv6_ts_off
-ffffffc0086a5764 T secure_tcpv6_seq
-ffffffc0086a5854 T secure_ipv6_port_ephemeral
-ffffffc0086a5948 T secure_tcp_ts_off
-ffffffc0086a5a34 T secure_tcp_seq
-ffffffc0086a5b20 T secure_ipv4_port_ephemeral
-ffffffc0086a5c18 T skb_flow_dissector_init
-ffffffc0086a5ca0 T __skb_flow_get_ports
-ffffffc0086a5db4 T skb_flow_get_icmp_tci
-ffffffc0086a5ea4 T skb_flow_dissect_meta
-ffffffc0086a5ec8 T skb_flow_dissect_ct
-ffffffc0086a5ed8 T skb_flow_dissect_tunnel_info
-ffffffc0086a6078 T skb_flow_dissect_hash
-ffffffc0086a609c T bpf_flow_dissect
-ffffffc0086a6214 T __skb_flow_dissect
-ffffffc0086a7f8c T flow_get_u32_src
-ffffffc0086a7fe4 T flow_get_u32_dst
-ffffffc0086a8034 T flow_hash_from_keys
-ffffffc0086a81cc T make_flow_keys_digest
-ffffffc0086a8208 T __skb_get_hash_symmetric
-ffffffc0086a83e8 T __skb_get_hash
-ffffffc0086a84f8 t ___skb_get_hash
-ffffffc0086a8664 T skb_get_hash_perturb
-ffffffc0086a86d8 T __skb_get_poff
-ffffffc0086a8808 T skb_get_poff
-ffffffc0086a88c0 T __get_hash_from_flowi6
-ffffffc0086a8954 t proc_do_dev_weight
-ffffffc0086a8a2c t proc_do_rss_key
-ffffffc0086a8b34 t rps_sock_flow_sysctl
-ffffffc0086a8d78 t flow_limit_cpu_sysctl
-ffffffc0086a9090 t flow_limit_table_len_sysctl
-ffffffc0086a918c T netdev_name_in_use
-ffffffc0086a9218 T netdev_name_node_alt_create
-ffffffc0086a9364 T netdev_name_node_alt_destroy
-ffffffc0086a9470 T dev_add_pack
-ffffffc0086a9528 T __dev_remove_pack
-ffffffc0086a9604 T dev_remove_pack
-ffffffc0086a96fc T synchronize_net
-ffffffc0086a9740 T dev_get_iflink
-ffffffc0086a979c T dev_fill_metadata_dst
-ffffffc0086a98e8 T dev_fill_forward_path
-ffffffc0086a9a2c T __dev_get_by_name
-ffffffc0086a9abc T dev_get_by_name_rcu
-ffffffc0086a9b5c T dev_get_by_name
-ffffffc0086a9c80 T __dev_get_by_index
-ffffffc0086a9ce4 T dev_get_by_index_rcu
-ffffffc0086a9d38 T dev_get_by_index
-ffffffc0086a9e44 T dev_get_by_napi_id
-ffffffc0086a9ebc T netdev_get_name
-ffffffc0086a9f84 T dev_getbyhwaddr_rcu
-ffffffc0086aa018 T dev_getfirstbyhwtype
-ffffffc0086aa114 T __dev_get_by_flags
-ffffffc0086aa1d4 T dev_valid_name
-ffffffc0086aa288 T dev_alloc_name
-ffffffc0086aa2b0 t dev_alloc_name_ns
-ffffffc0086aa5c0 T dev_change_name
-ffffffc0086aa91c t dev_get_valid_name
-ffffffc0086aaa70 T netdev_info
-ffffffc0086aab08 T netdev_adjacent_rename_links
-ffffffc0086aac7c T call_netdevice_notifiers
-ffffffc0086aad50 T netdev_err
-ffffffc0086aade8 T dev_set_alias
-ffffffc0086aaeb8 T dev_get_alias
-ffffffc0086aaf3c T netdev_features_change
-ffffffc0086ab004 T netdev_state_change
-ffffffc0086ab0f4 t call_netdevice_notifiers_info
-ffffffc0086ab198 T __netdev_notify_peers
-ffffffc0086ab320 T netdev_notify_peers
-ffffffc0086ab368 t __dev_open
-ffffffc0086ab5cc T dev_close_many
-ffffffc0086ab780 t __dev_close_many
-ffffffc0086ab974 T dev_close
-ffffffc0086aba34 T dev_disable_lro
-ffffffc0086abaec T netdev_update_features
-ffffffc0086abbc4 t netdev_reg_state
-ffffffc0086abc40 T netdev_lower_get_next
-ffffffc0086abc78 T netdev_cmd_to_name
-ffffffc0086abcb0 T register_netdevice_notifier
-ffffffc0086abe7c t call_netdevice_register_net_notifiers
-ffffffc0086ac04c T unregister_netdevice_notifier
-ffffffc0086ac1dc T register_netdevice_notifier_net
-ffffffc0086ac280 T unregister_netdevice_notifier_net
-ffffffc0086ac3cc T register_netdevice_notifier_dev_net
-ffffffc0086ac4ac T unregister_netdevice_notifier_dev_net
-ffffffc0086ac630 T net_enable_timestamp
-ffffffc0086ac710 T net_disable_timestamp
-ffffffc0086ac7f4 T is_skb_forwardable
-ffffffc0086ac858 T __dev_forward_skb
-ffffffc0086ac884 t __dev_forward_skb2
-ffffffc0086aca80 T dev_forward_skb
-ffffffc0086acad0 t netif_rx_internal
-ffffffc0086acc80 T dev_forward_skb_nomtu
-ffffffc0086accd0 T dev_nit_active
-ffffffc0086acd18 T dev_queue_xmit_nit
-ffffffc0086ad034 T netdev_txq_to_tc
-ffffffc0086ad244 T __netif_set_xps_queue
-ffffffc0086ada08 T netif_set_xps_queue
-ffffffc0086ada70 T netdev_reset_tc
-ffffffc0086adb74 T netdev_set_tc_queue
-ffffffc0086adc68 T netdev_set_num_tc
-ffffffc0086add74 T netdev_unbind_sb_channel
-ffffffc0086ade88 T netdev_bind_sb_channel_queue
-ffffffc0086adf1c T netdev_set_sb_channel
-ffffffc0086adf5c T netif_set_real_num_tx_queues
-ffffffc0086ae1d8 T netif_set_real_num_rx_queues
-ffffffc0086ae294 T netif_set_real_num_queues
-ffffffc0086ae4e8 T netif_set_tso_max_size
-ffffffc0086ae520 T netif_set_tso_max_segs
-ffffffc0086ae54c T netif_inherit_tso_max
-ffffffc0086ae5a8 T netif_get_num_default_rss_queues
-ffffffc0086ae6bc T __netif_schedule
-ffffffc0086ae790 T netif_schedule_queue
-ffffffc0086ae888 T netif_tx_wake_queue
-ffffffc0086ae9b4 T __dev_kfree_skb_irq
-ffffffc0086aea80 T __dev_kfree_skb_any
-ffffffc0086aeb98 T netif_device_detach
-ffffffc0086aec48 T netif_tx_stop_all_queues
-ffffffc0086aecb4 T netif_device_attach
-ffffffc0086aed6c T skb_checksum_help
-ffffffc0086aeef8 t skb_warn_bad_offload
-ffffffc0086aefe4 T skb_crc32c_csum_help
-ffffffc0086af108 T skb_network_protocol
-ffffffc0086af2a4 T __skb_gso_segment
-ffffffc0086af3d0 t skb_cow_head
-ffffffc0086af440 T netdev_rx_csum_fault
-ffffffc0086af480 t do_netdev_rx_csum_fault
-ffffffc0086af4e0 T passthru_features_check
-ffffffc0086af4f4 T netif_skb_features
-ffffffc0086af768 T dev_hard_start_xmit
-ffffffc0086afa20 T skb_csum_hwoffload_help
-ffffffc0086afa98 T validate_xmit_skb_list
-ffffffc0086afb24 t validate_xmit_skb
-ffffffc0086afe48 T dev_loopback_xmit
-ffffffc0086aff84 T netif_rx
-ffffffc0086b011c T dev_pick_tx_zero
-ffffffc0086b0130 T dev_pick_tx_cpu_id
-ffffffc0086b0160 T netdev_pick_tx
-ffffffc0086b04e0 T netdev_core_pick_tx
-ffffffc0086b0600 T __dev_queue_xmit
-ffffffc0086b1050 T __dev_direct_xmit
-ffffffc0086b1384 T rps_may_expire_flow
-ffffffc0086b147c T bpf_prog_run_generic_xdp
-ffffffc0086b181c T generic_xdp_tx
-ffffffc0086b1ae0 T do_xdp_generic
-ffffffc0086b1d60 T __netif_rx
-ffffffc0086b1ecc T netdev_is_rx_handler_busy
-ffffffc0086b1f5c T netdev_rx_handler_register
-ffffffc0086b201c T netdev_rx_handler_unregister
-ffffffc0086b20b8 T netif_receive_skb_core
-ffffffc0086b2174 T netif_receive_skb_list_internal
-ffffffc0086b2454 t get_rps_cpu
-ffffffc0086b26c0 t enqueue_to_backlog
-ffffffc0086b2994 T netif_receive_skb
-ffffffc0086b2b8c T netif_receive_skb_list
-ffffffc0086b2d14 T __napi_schedule
-ffffffc0086b2e34 T napi_schedule_prep
-ffffffc0086b2ebc T __napi_schedule_irqoff
-ffffffc0086b2fa4 T napi_complete_done
-ffffffc0086b31bc T napi_busy_loop
-ffffffc0086b35a8 t busy_poll_stop
-ffffffc0086b382c T dev_set_threaded
-ffffffc0086b39e0 T netif_napi_add_weight
-ffffffc0086b3d30 t napi_watchdog
-ffffffc0086b3dd0 T netdev_printk
-ffffffc0086b3e58 T napi_disable
-ffffffc0086b3f6c T napi_enable
-ffffffc0086b4014 T __netif_napi_del
-ffffffc0086b426c T netdev_has_upper_dev
-ffffffc0086b43c8 T netdev_walk_all_upper_dev_rcu
-ffffffc0086b4518 T netdev_has_upper_dev_all_rcu
-ffffffc0086b4620 T netdev_has_any_upper_dev
-ffffffc0086b46ac T netdev_master_upper_dev_get
-ffffffc0086b4750 T netdev_adjacent_get_private
-ffffffc0086b4764 T netdev_upper_get_next_dev_rcu
-ffffffc0086b47a0 T netdev_lower_get_next_private
-ffffffc0086b47d8 T netdev_lower_get_next_private_rcu
-ffffffc0086b4814 T netdev_walk_all_lower_dev
-ffffffc0086b4960 T netdev_next_lower_dev_rcu
-ffffffc0086b499c T netdev_walk_all_lower_dev_rcu
-ffffffc0086b4aec T netdev_lower_get_first_private_rcu
-ffffffc0086b4b78 T netdev_master_upper_dev_get_rcu
-ffffffc0086b4c0c T netdev_upper_dev_link
-ffffffc0086b4c44 t __netdev_upper_dev_link
-ffffffc0086b50ec T netdev_master_upper_dev_link
-ffffffc0086b5128 T netdev_upper_dev_unlink
-ffffffc0086b5150 t __netdev_upper_dev_unlink
-ffffffc0086b5644 T netdev_adjacent_change_prepare
-ffffffc0086b5788 T netdev_adjacent_change_commit
-ffffffc0086b5820 T netdev_adjacent_change_abort
-ffffffc0086b58bc T netdev_bonding_info_change
-ffffffc0086b599c T netdev_offload_xstats_enable
-ffffffc0086b5b74 T netdev_offload_xstats_enabled
-ffffffc0086b5c14 T netdev_offload_xstats_disable
-ffffffc0086b5db4 T netdev_offload_xstats_get
-ffffffc0086b60f0 T netdev_offload_xstats_report_delta
-ffffffc0086b6188 T netdev_offload_xstats_report_used
-ffffffc0086b61a0 T netdev_offload_xstats_push_delta
-ffffffc0086b62d0 T netdev_get_xmit_slave
-ffffffc0086b632c T netdev_sk_get_lowest_dev
-ffffffc0086b63ac T netdev_lower_dev_get_private
-ffffffc0086b63f8 T netdev_lower_state_changed
-ffffffc0086b6514 T dev_set_promiscuity
-ffffffc0086b6578 t __dev_set_promiscuity
-ffffffc0086b6720 T dev_set_rx_mode
-ffffffc0086b6804 T dev_set_allmulti
-ffffffc0086b6830 t __dev_set_allmulti.llvm.2095161062931864242
-ffffffc0086b6974 T __dev_set_rx_mode
-ffffffc0086b6a2c T dev_get_flags
-ffffffc0086b6a98 T __dev_change_flags
-ffffffc0086b6c9c T __dev_notify_flags
-ffffffc0086b6ea0 T dev_change_flags
-ffffffc0086b6f14 T __dev_set_mtu
-ffffffc0086b6f78 T dev_validate_mtu
-ffffffc0086b7000 T dev_set_mtu_ext
-ffffffc0086b7220 t call_netdevice_notifiers_mtu
-ffffffc0086b72f0 T dev_set_mtu
-ffffffc0086b73ac T dev_change_tx_queue_len
-ffffffc0086b74f4 T dev_set_group
-ffffffc0086b7508 T dev_pre_changeaddr_notify
-ffffffc0086b75e8 T dev_set_mac_address
-ffffffc0086b77d8 T dev_set_mac_address_user
-ffffffc0086b784c T dev_get_mac_address
-ffffffc0086b795c T dev_change_carrier
-ffffffc0086b79c8 T dev_get_phys_port_id
-ffffffc0086b7a20 T dev_get_phys_port_name
-ffffffc0086b7a7c T dev_get_port_parent_id
-ffffffc0086b7be0 T netdev_port_same_parent_id
-ffffffc0086b7cb0 T dev_change_proto_down
-ffffffc0086b7d24 T dev_change_proto_down_reason
-ffffffc0086b7da0 T dev_xdp_prog_count
-ffffffc0086b7df0 T dev_xdp_prog_id
-ffffffc0086b7e44 T bpf_xdp_link_attach
-ffffffc0086b7f68 T dev_change_xdp_fd
-ffffffc0086b82c8 T __netdev_update_features
-ffffffc0086b8c84 T netdev_change_features
-ffffffc0086b8d5c T netif_stacked_transfer_operstate
-ffffffc0086b8ed8 T register_netdevice
-ffffffc0086b947c t netdev_hold
-ffffffc0086b9518 t list_netdevice
-ffffffc0086b967c T unregister_netdevice_queue
-ffffffc0086b97a8 T init_dummy_netdev
-ffffffc0086b9860 T register_netdev
-ffffffc0086b98c0 T netdev_refcnt_read
-ffffffc0086b9964 T netdev_run_todo
-ffffffc0086b9f80 T free_netdev
-ffffffc0086ba114 T netdev_stats_to_stats64
-ffffffc0086ba294 T netdev_core_stats_alloc
-ffffffc0086ba344 T dev_get_stats
-ffffffc0086ba7c0 T dev_fetch_sw_netstats
-ffffffc0086ba8a4 T dev_get_tstats64
-ffffffc0086baafc T dev_ingress_queue_create
-ffffffc0086bab10 T netdev_set_default_ethtool_ops
-ffffffc0086bab40 T netdev_freemem
-ffffffc0086bab74 T alloc_netdev_mqs
-ffffffc0086baf3c T unregister_netdevice_many
-ffffffc0086bb9d4 T unregister_netdev
-ffffffc0086bbac4 T __dev_change_net_namespace
-ffffffc0086bbb54 T netdev_increment_features
-ffffffc0086bbbb0 T netdev_drivername
-ffffffc0086bbbe4 t __netdev_printk
-ffffffc0086bbdb0 T netdev_emerg
-ffffffc0086bbe48 T netdev_alert
-ffffffc0086bbee0 T netdev_crit
-ffffffc0086bbf78 T netdev_warn
-ffffffc0086bc010 T netdev_notice
-ffffffc0086bc0a8 t netstamp_clear
-ffffffc0086bc168 t clean_xps_maps
-ffffffc0086bc314 t skb_header_pointer
-ffffffc0086bc378 t skb_header_pointer
-ffffffc0086bc3dc t skb_header_pointer
-ffffffc0086bc440 t skb_header_pointer
-ffffffc0086bc4a4 t dev_qdisc_enqueue
-ffffffc0086bc5ac t qdisc_run_end
-ffffffc0086bc614 t qdisc_run
-ffffffc0086bc794 t __netif_receive_skb_core
-ffffffc0086bd2d0 t deliver_ptype_list_skb
-ffffffc0086bd438 t set_rps_cpu
-ffffffc0086bd5ac t __netif_receive_skb_list_core
-ffffffc0086bd868 t __netif_receive_skb
-ffffffc0086bd99c t napi_threaded_poll
-ffffffc0086bdaa0 t __napi_poll
-ffffffc0086bdcc0 t napi_schedule
-ffffffc0086bdd5c t __netdev_update_upper_level
-ffffffc0086bddc0 t __netdev_walk_all_lower_dev
-ffffffc0086bdf18 t __netdev_update_lower_level
-ffffffc0086bdf84 t __netdev_walk_all_upper_dev
-ffffffc0086be0d8 t __netdev_adjacent_dev_unlink_neighbour
-ffffffc0086be130 t __netdev_adjacent_dev_insert
-ffffffc0086be44c t __netdev_adjacent_dev_remove
-ffffffc0086be624 t generic_xdp_install
-ffffffc0086be724 t flush_backlog
-ffffffc0086be94c t rps_trigger_softirq
-ffffffc0086bea30 t trigger_rx_softirq
-ffffffc0086bea78 t process_backlog
-ffffffc0086bec40 t net_tx_action
-ffffffc0086beeb4 t net_rx_action
-ffffffc0086bf214 t dev_cpu_dead
-ffffffc0086bf4c4 t trace_kfree_skb
-ffffffc0086bf584 T __hw_addr_sync
-ffffffc0086bf660 t __hw_addr_unsync_one
-ffffffc0086bf718 T __hw_addr_unsync
-ffffffc0086bf798 T __hw_addr_sync_dev
-ffffffc0086bf928 T __hw_addr_ref_sync_dev
-ffffffc0086bfab4 T __hw_addr_ref_unsync_dev
-ffffffc0086bfbc4 T __hw_addr_unsync_dev
-ffffffc0086bfcdc T __hw_addr_init
-ffffffc0086bfcfc T dev_addr_check
-ffffffc0086bfe1c T dev_addr_flush
-ffffffc0086bfecc T dev_addr_init
-ffffffc0086bff78 T dev_addr_mod
-ffffffc0086c00a4 T dev_addr_add
-ffffffc0086c0178 T dev_addr_del
-ffffffc0086c0274 T dev_uc_add_excl
-ffffffc0086c0314 t __hw_addr_add_ex
-ffffffc0086c0500 T dev_uc_add
-ffffffc0086c05a4 T dev_uc_del
-ffffffc0086c0640 T dev_uc_sync
-ffffffc0086c076c T dev_uc_sync_multiple
-ffffffc0086c0888 T dev_uc_unsync
-ffffffc0086c0978 T dev_uc_flush
-ffffffc0086c0a4c T dev_uc_init
-ffffffc0086c0a70 T dev_mc_add_excl
-ffffffc0086c0b14 T dev_mc_add
-ffffffc0086c0bb8 T dev_mc_add_global
-ffffffc0086c0c5c T dev_mc_del
-ffffffc0086c0cf8 T dev_mc_del_global
-ffffffc0086c0d94 T dev_mc_sync
-ffffffc0086c0ec0 T dev_mc_sync_multiple
-ffffffc0086c0fdc T dev_mc_unsync
-ffffffc0086c10cc T dev_mc_flush
-ffffffc0086c11a0 T dev_mc_init
-ffffffc0086c11c0 t __hw_addr_del_ex
-ffffffc0086c1318 T dst_discard_out
-ffffffc0086c1350 T dst_init
-ffffffc0086c1480 t dst_discard
-ffffffc0086c14b4 t dst_discard
-ffffffc0086c14e8 t dst_discard
-ffffffc0086c151c t dst_discard
-ffffffc0086c1550 T dst_alloc
-ffffffc0086c1660 T dst_destroy
-ffffffc0086c17c4 T metadata_dst_free
-ffffffc0086c1810 T dst_release_immediate
-ffffffc0086c18fc T dst_dev_put
-ffffffc0086c1a84 T dst_release
-ffffffc0086c1b78 t dst_destroy_rcu
-ffffffc0086c1ba8 T dst_cow_metrics_generic
-ffffffc0086c1d0c T __dst_destroy_metrics_generic
-ffffffc0086c1da0 T dst_blackhole_check
-ffffffc0086c1db4 T dst_blackhole_cow_metrics
-ffffffc0086c1dc8 T dst_blackhole_neigh_lookup
-ffffffc0086c1ddc T dst_blackhole_update_pmtu
-ffffffc0086c1dec T dst_blackhole_redirect
-ffffffc0086c1dfc T dst_blackhole_mtu
-ffffffc0086c1e30 T metadata_dst_alloc
-ffffffc0086c1ef0 T metadata_dst_alloc_percpu
-ffffffc0086c2024 T metadata_dst_free_percpu
-ffffffc0086c20dc T register_netevent_notifier
-ffffffc0086c2114 T unregister_netevent_notifier
-ffffffc0086c214c T call_netevent_notifiers
-ffffffc0086c2188 T neigh_rand_reach_time
-ffffffc0086c21cc T neigh_remove_one
-ffffffc0086c2358 T neigh_changeaddr
-ffffffc0086c23b8 t neigh_flush_dev.llvm.16944399185836951379
-ffffffc0086c2654 T neigh_carrier_down
-ffffffc0086c2684 t __neigh_ifdown.llvm.16944399185836951379
-ffffffc0086c2850 T neigh_ifdown
-ffffffc0086c2884 T neigh_lookup
-ffffffc0086c2b08 T neigh_lookup_nodev
-ffffffc0086c2d70 T __neigh_create
-ffffffc0086c2da4 t ___neigh_create.llvm.16944399185836951379
-ffffffc0086c385c T __pneigh_lookup
-ffffffc0086c38f8 T pneigh_lookup
-ffffffc0086c3b88 T pneigh_delete
-ffffffc0086c3d14 T neigh_destroy
-ffffffc0086c4040 t neigh_del_timer
-ffffffc0086c40ec t __skb_queue_purge
-ffffffc0086c4164 T __neigh_event_send
-ffffffc0086c4778 t neigh_add_timer
-ffffffc0086c4888 T neigh_update
-ffffffc0086c48b4 t __neigh_update.llvm.16944399185836951379
-ffffffc0086c52f4 T __neigh_set_probe_once
-ffffffc0086c5374 T neigh_event_ns
-ffffffc0086c544c T neigh_resolve_output
-ffffffc0086c564c t neigh_event_send
-ffffffc0086c56ac t neigh_event_send
-ffffffc0086c5710 T neigh_connected_output
-ffffffc0086c584c T neigh_direct_output
-ffffffc0086c5880 T pneigh_enqueue
-ffffffc0086c5a20 T neigh_parms_alloc
-ffffffc0086c5c34 T neigh_parms_release
-ffffffc0086c5d4c t neigh_rcu_free_parms
-ffffffc0086c5dd8 T neigh_table_init
-ffffffc0086c6060 t neigh_hash_alloc
-ffffffc0086c613c t neigh_periodic_work
-ffffffc0086c6464 t neigh_managed_work
-ffffffc0086c653c t neigh_proxy_process
-ffffffc0086c6788 T neigh_table_clear
-ffffffc0086c6874 t pneigh_queue_purge
-ffffffc0086c6ab4 t neigh_hash_free_rcu
-ffffffc0086c6b2c T neigh_for_each
-ffffffc0086c6c2c T __neigh_for_each_release
-ffffffc0086c6dcc t neigh_cleanup_and_release
-ffffffc0086c6f18 T neigh_xmit
-ffffffc0086c71a8 T neigh_seq_start
-ffffffc0086c74b0 T neigh_seq_next
-ffffffc0086c774c t pneigh_get_first
-ffffffc0086c7878 T neigh_seq_stop
-ffffffc0086c78b4 T neigh_app_ns
-ffffffc0086c78e8 t __neigh_notify.llvm.16944399185836951379
-ffffffc0086c79d4 T neigh_proc_dointvec
-ffffffc0086c7a48 t neigh_proc_update.llvm.16944399185836951379
-ffffffc0086c7bc8 T neigh_proc_dointvec_jiffies
-ffffffc0086c7c44 T neigh_proc_dointvec_ms_jiffies
-ffffffc0086c7cc0 T neigh_sysctl_register
-ffffffc0086c7f84 t neigh_proc_base_reachable_time
-ffffffc0086c808c T neigh_sysctl_unregister
-ffffffc0086c80d8 t neigh_blackhole
-ffffffc0086c810c t neigh_release
-ffffffc0086c8194 t neigh_release
-ffffffc0086c821c t neigh_release
-ffffffc0086c82a4 t neigh_release
-ffffffc0086c832c t neigh_release
-ffffffc0086c83b8 t neigh_timer_handler
-ffffffc0086c87e0 t neigh_invalidate
-ffffffc0086c8978 t neigh_stat_seq_start
-ffffffc0086c8a24 t neigh_stat_seq_stop
-ffffffc0086c8a34 t neigh_stat_seq_next
-ffffffc0086c8ad8 t neigh_stat_seq_show
-ffffffc0086c8b6c t neigh_fill_info
-ffffffc0086c8e70 t neigh_proc_dointvec_zero_intmax
-ffffffc0086c8f20 t neigh_proc_dointvec_userhz_jiffies
-ffffffc0086c8f9c t neigh_proc_dointvec_ms_jiffies_positive
-ffffffc0086c904c t neigh_proc_dointvec_unres_qlen
-ffffffc0086c9144 t neigh_add
-ffffffc0086c9544 t neigh_delete
-ffffffc0086c9730 t neigh_get
-ffffffc0086c9c10 t neigh_dump_info
-ffffffc0086ca17c t neightbl_dump_info
-ffffffc0086ca78c t neightbl_set
-ffffffc0086caeec t nlmsg_parse_deprecated_strict
-ffffffc0086caf70 t nlmsg_parse_deprecated_strict
-ffffffc0086cb004 t nlmsg_parse_deprecated_strict
-ffffffc0086cb088 t nlmsg_parse_deprecated_strict
-ffffffc0086cb10c t nlmsg_parse_deprecated_strict
-ffffffc0086cb190 t nlmsg_parse_deprecated_strict
-ffffffc0086cb214 t nlmsg_parse_deprecated_strict
-ffffffc0086cb298 t pneigh_fill_info
-ffffffc0086cb428 t neightbl_fill_parms
-ffffffc0086cb7b4 T rtnl_lock
-ffffffc0086cb7e8 T rtnl_lock_killable
-ffffffc0086cb81c T rtnl_kfree_skbs
-ffffffc0086cb848 T __rtnl_unlock
-ffffffc0086cb8cc T rtnl_unlock
-ffffffc0086cb8f8 T rtnl_trylock
-ffffffc0086cb92c T rtnl_is_locked
-ffffffc0086cb964 T refcount_dec_and_rtnl_lock
-ffffffc0086cb99c T rtnl_register_module
-ffffffc0086cb9c4 t rtnl_register_internal.llvm.5063184057130584605
-ffffffc0086cbb80 T rtnl_register
-ffffffc0086cbbf0 T rtnl_unregister
-ffffffc0086cbc8c T rtnl_unregister_all
-ffffffc0086cbd38 T __rtnl_link_register
-ffffffc0086cbe00 T rtnl_link_register
-ffffffc0086cbef8 T __rtnl_link_unregister
-ffffffc0086cc018 T rtnl_link_unregister
-ffffffc0086cc22c T rtnl_af_register
-ffffffc0086cc2a4 T rtnl_af_unregister
-ffffffc0086cc310 T rtnetlink_send
-ffffffc0086cc34c T rtnl_unicast
-ffffffc0086cc390 T rtnl_notify
-ffffffc0086cc3d4 T rtnl_set_sk_err
-ffffffc0086cc410 T rtnetlink_put_metrics
-ffffffc0086cc5d0 t nla_put_string
-ffffffc0086cc62c t nla_put_string
-ffffffc0086cc67c t nla_put_string
-ffffffc0086cc6cc t nla_put_string
-ffffffc0086cc720 T rtnl_put_cacheinfo
-ffffffc0086cc814 T rtnl_get_net_ns_capable
-ffffffc0086cc880 T rtnl_nla_parse_ifla
-ffffffc0086cc8d0 T rtnl_link_get_net
-ffffffc0086cc91c T rtnl_delete_link
-ffffffc0086cc9bc T rtnl_configure_link
-ffffffc0086cca6c T rtnl_create_link
-ffffffc0086ccd80 t set_operstate
-ffffffc0086cce48 T rtmsg_ifinfo_build_skb
-ffffffc0086ccf5c t if_nlmsg_size
-ffffffc0086cd288 t rtnl_fill_ifinfo
-ffffffc0086cd95c T rtmsg_ifinfo_send
-ffffffc0086cd9a4 T rtmsg_ifinfo
-ffffffc0086cda1c T rtmsg_ifinfo_newnet
-ffffffc0086cda94 T ndo_dflt_fdb_add
-ffffffc0086cdb50 T ndo_dflt_fdb_del
-ffffffc0086cdbd0 T ndo_dflt_fdb_dump
-ffffffc0086cdd7c T ndo_dflt_bridge_getlink
-ffffffc0086ce2b4 T rtnl_offload_xstats_notify
-ffffffc0086ce41c t if_nlmsg_stats_size
-ffffffc0086ce664 t rtnl_fill_statsinfo
-ffffffc0086cef10 t rtnl_getlink
-ffffffc0086cf2b8 t rtnl_dump_ifinfo
-ffffffc0086cf7c4 t rtnl_setlink
-ffffffc0086cf97c t rtnl_newlink
-ffffffc0086d02b0 t rtnl_dellink
-ffffffc0086d0610 t rtnl_dump_all
-ffffffc0086d0734 t rtnl_newlinkprop
-ffffffc0086d0764 t rtnl_dellinkprop
-ffffffc0086d0794 t rtnl_fdb_add
-ffffffc0086d0a58 t rtnl_fdb_del
-ffffffc0086d0df4 t rtnl_fdb_get
-ffffffc0086d11a8 t rtnl_fdb_dump
-ffffffc0086d1634 t rtnl_bridge_getlink
-ffffffc0086d1928 t rtnl_bridge_dellink
-ffffffc0086d1b0c t rtnl_bridge_setlink
-ffffffc0086d1cf8 t rtnl_stats_get
-ffffffc0086d1edc t rtnl_stats_dump
-ffffffc0086d2118 t rtnl_stats_set
-ffffffc0086d22d0 t put_master_ifindex
-ffffffc0086d2370 t nla_put_ifalias
-ffffffc0086d244c t rtnl_fill_proto_down
-ffffffc0086d2570 t rtnl_fill_link_ifmap
-ffffffc0086d2608 t rtnl_phys_port_id_fill
-ffffffc0086d26b4 t rtnl_phys_port_name_fill
-ffffffc0086d2764 t rtnl_phys_switch_id_fill
-ffffffc0086d2814 t rtnl_fill_stats
-ffffffc0086d2958 t rtnl_fill_vf
-ffffffc0086d2ac4 t rtnl_port_fill
-ffffffc0086d2db0 t rtnl_xdp_fill
-ffffffc0086d2ff8 t rtnl_have_link_slave_info
-ffffffc0086d3054 t rtnl_link_fill
-ffffffc0086d32e8 t rtnl_fill_link_netnsid
-ffffffc0086d33ac t rtnl_fill_link_af
-ffffffc0086d3518 t rtnl_fill_prop_list
-ffffffc0086d3638 t rtnl_fill_vfinfo
-ffffffc0086d3bf8 t nlmsg_populate_fdb_fill
-ffffffc0086d3d44 t rtnetlink_rcv
-ffffffc0086d3d78 t rtnetlink_bind
-ffffffc0086d3dc8 t rtnetlink_rcv_msg
-ffffffc0086d420c t rtnetlink_event
-ffffffc0086d42a8 t do_setlink
-ffffffc0086d50e8 t validate_linkmsg
-ffffffc0086d52a0 t rtnl_af_lookup
-ffffffc0086d5340 t do_set_proto_down
-ffffffc0086d549c t rtnl_linkprop
-ffffffc0086d57d8 t fdb_vid_parse
-ffffffc0086d5860 t rtnl_fdb_notify
-ffffffc0086d5950 t rtnl_bridge_notify
-ffffffc0086d5a74 t rtnl_stats_get_parse
-ffffffc0086d5c50 T net_ratelimit
-ffffffc0086d5c8c T in_aton
-ffffffc0086d5e20 T in4_pton
-ffffffc0086d5ff0 T in6_pton
-ffffffc0086d63a4 T inet_pton_with_scope
-ffffffc0086d6510 t inet6_pton
-ffffffc0086d66dc T inet_addr_is_any
-ffffffc0086d6778 T inet_proto_csum_replace4
-ffffffc0086d6854 T inet_proto_csum_replace16
-ffffffc0086d6948 T inet_proto_csum_replace_by_diff
-ffffffc0086d69e0 T linkwatch_init_dev
-ffffffc0086d6acc T linkwatch_forget_dev
-ffffffc0086d6b7c t linkwatch_do_dev
-ffffffc0086d6d40 T linkwatch_run_queue
-ffffffc0086d6d6c t __linkwatch_run_queue.llvm.9430618318074928137
-ffffffc0086d7018 T linkwatch_fire_event
-ffffffc0086d7220 t linkwatch_urgent_event
-ffffffc0086d7300 t linkwatch_event
-ffffffc0086d7354 T copy_bpf_fprog_from_user
-ffffffc0086d751c T sk_filter_trim_cap
-ffffffc0086d77ec T bpf_skb_get_pay_offset
-ffffffc0086d781c T bpf_skb_get_nlattr
-ffffffc0086d7898 T bpf_skb_get_nlattr_nest
-ffffffc0086d7928 T bpf_skb_load_helper_8
-ffffffc0086d79d0 T bpf_skb_load_helper_8_no_cache
-ffffffc0086d7a7c T bpf_skb_load_helper_16
-ffffffc0086d7b2c T bpf_skb_load_helper_16_no_cache
-ffffffc0086d7be0 T bpf_skb_load_helper_32
-ffffffc0086d7c8c T bpf_skb_load_helper_32_no_cache
-ffffffc0086d7d3c T sk_filter_uncharge
-ffffffc0086d7e10 T sk_filter_charge
-ffffffc0086d7fc4 T bpf_prog_create
-ffffffc0086d8074 t bpf_prepare_filter
-ffffffc0086d8554 T bpf_prog_create_from_user
-ffffffc0086d87f8 T bpf_prog_destroy
-ffffffc0086d8858 T sk_attach_filter
-ffffffc0086d8a2c t __get_filter
-ffffffc0086d8cb4 T sk_reuseport_attach_filter
-ffffffc0086d8d78 T sk_attach_bpf
-ffffffc0086d8d98 T sk_reuseport_attach_bpf
-ffffffc0086d8db8 T sk_reuseport_prog_free
-ffffffc0086d8e24 T bpf_skb_store_bytes
-ffffffc0086d8fb0 T bpf_skb_load_bytes
-ffffffc0086d9054 T bpf_flow_dissector_load_bytes
-ffffffc0086d9100 T bpf_skb_load_bytes_relative
-ffffffc0086d91a4 T bpf_skb_pull_data
-ffffffc0086d9214 T bpf_sk_fullsock
-ffffffc0086d923c T sk_skb_pull_data
-ffffffc0086d9278 T bpf_l3_csum_replace
-ffffffc0086d93bc T bpf_l4_csum_replace
-ffffffc0086d9508 T bpf_csum_diff
-ffffffc0086d95e8 T bpf_csum_update
-ffffffc0086d9624 T bpf_csum_level
-ffffffc0086d9758 T bpf_clone_redirect
-ffffffc0086d9838 T skb_do_redirect
-ffffffc0086da39c t __bpf_redirect
-ffffffc0086da720 T bpf_redirect
-ffffffc0086da760 T bpf_redirect_peer
-ffffffc0086da7a0 T bpf_redirect_neigh
-ffffffc0086da814 T bpf_msg_apply_bytes
-ffffffc0086da830 T bpf_msg_cork_bytes
-ffffffc0086da84c T bpf_msg_pull_data
-ffffffc0086dabf8 T bpf_msg_push_data
-ffffffc0086db18c T bpf_msg_pop_data
-ffffffc0086db700 T bpf_get_cgroup_classid
-ffffffc0086db714 T bpf_get_route_realm
-ffffffc0086db728 T bpf_get_hash_recalc
-ffffffc0086db774 T bpf_set_hash_invalid
-ffffffc0086db79c T bpf_set_hash
-ffffffc0086db7c4 T bpf_skb_vlan_push
-ffffffc0086db838 T bpf_skb_vlan_pop
-ffffffc0086db898 T bpf_skb_change_proto
-ffffffc0086dbaf8 T bpf_skb_change_type
-ffffffc0086dbb30 T sk_skb_adjust_room
-ffffffc0086dbcc4 T bpf_skb_adjust_room
-ffffffc0086dc1e8 T bpf_skb_change_tail
-ffffffc0086dc248 T sk_skb_change_tail
-ffffffc0086dc278 T bpf_skb_change_head
-ffffffc0086dc3bc T sk_skb_change_head
-ffffffc0086dc4dc T bpf_xdp_get_buff_len
-ffffffc0086dc520 T bpf_xdp_adjust_head
-ffffffc0086dc5bc T bpf_xdp_load_bytes
-ffffffc0086dc7e0 T bpf_xdp_store_bytes
-ffffffc0086dca04 T bpf_xdp_adjust_tail
-ffffffc0086dcaf0 T bpf_xdp_adjust_meta
-ffffffc0086dcb5c T xdp_do_flush
-ffffffc0086dcb6c T bpf_clear_redirect_map
-ffffffc0086dcc68 T xdp_master_redirect
-ffffffc0086dcd14 T xdp_do_redirect
-ffffffc0086dd114 T xdp_do_redirect_frame
-ffffffc0086dd414 T xdp_do_generic_redirect
-ffffffc0086dd7ec T bpf_xdp_redirect
-ffffffc0086dd830 T bpf_xdp_redirect_map
-ffffffc0086dd880 T bpf_skb_event_output
-ffffffc0086dd8f8 T bpf_skb_get_tunnel_key
-ffffffc0086ddb04 T bpf_skb_get_tunnel_opt
-ffffffc0086ddbf8 T bpf_skb_set_tunnel_key
-ffffffc0086dde88 T bpf_skb_set_tunnel_opt
-ffffffc0086ddf6c T bpf_skb_under_cgroup
-ffffffc0086ddff4 T bpf_xdp_event_output
-ffffffc0086de09c T bpf_get_socket_cookie
-ffffffc0086de0d0 T bpf_get_socket_cookie_sock_addr
-ffffffc0086de100 T bpf_get_socket_cookie_sock
-ffffffc0086de12c T bpf_get_socket_ptr_cookie
-ffffffc0086de1b8 T bpf_get_socket_cookie_sock_ops
-ffffffc0086de1e8 T bpf_get_netns_cookie_sock
-ffffffc0086de200 T bpf_get_netns_cookie_sock_addr
-ffffffc0086de218 T bpf_get_netns_cookie_sock_ops
-ffffffc0086de230 T bpf_get_netns_cookie_sk_msg
-ffffffc0086de248 T bpf_get_socket_uid
-ffffffc0086de2b0 T bpf_sk_setsockopt
-ffffffc0086de2e4 T bpf_sk_getsockopt
-ffffffc0086de318 T bpf_unlocked_sk_setsockopt
-ffffffc0086de348 T bpf_unlocked_sk_getsockopt
-ffffffc0086de378 T bpf_sock_addr_setsockopt
-ffffffc0086de3b0 T bpf_sock_addr_getsockopt
-ffffffc0086de3e8 T bpf_sock_ops_setsockopt
-ffffffc0086de420 T bpf_sock_ops_getsockopt
-ffffffc0086de5c8 T bpf_sock_ops_cb_flags_set
-ffffffc0086de610 T bpf_bind
-ffffffc0086de6cc T bpf_skb_get_xfrm_state
-ffffffc0086de7a0 T bpf_xdp_fib_lookup
-ffffffc0086de820 T bpf_skb_fib_lookup
-ffffffc0086de900 T bpf_skb_check_mtu
-ffffffc0086dea08 T bpf_xdp_check_mtu
-ffffffc0086deabc T bpf_lwt_in_push_encap
-ffffffc0086dead0 T bpf_lwt_xmit_push_encap
-ffffffc0086deae4 T bpf_skc_lookup_tcp
-ffffffc0086deb98 T bpf_sk_lookup_tcp
-ffffffc0086debd0 T bpf_sk_lookup_udp
-ffffffc0086dec08 T bpf_sk_release
-ffffffc0086dec5c T bpf_xdp_sk_lookup_udp
-ffffffc0086decac T bpf_xdp_skc_lookup_tcp
-ffffffc0086ded48 T bpf_xdp_sk_lookup_tcp
-ffffffc0086ded98 T bpf_sock_addr_skc_lookup_tcp
-ffffffc0086dee2c T bpf_sock_addr_sk_lookup_tcp
-ffffffc0086dee70 T bpf_sock_addr_sk_lookup_udp
-ffffffc0086deeb4 T bpf_tcp_sock_is_valid_access
-ffffffc0086def00 T bpf_tcp_sock_convert_ctx_access
-ffffffc0086def6c T bpf_tcp_sock
-ffffffc0086defac T bpf_get_listener_sock
-ffffffc0086deff4 T bpf_skb_ecn_set_ce
-ffffffc0086df3a4 T bpf_xdp_sock_is_valid_access
-ffffffc0086df3dc T bpf_xdp_sock_convert_ctx_access
-ffffffc0086df420 T bpf_tcp_check_syncookie
-ffffffc0086df434 T bpf_tcp_gen_syncookie
-ffffffc0086df448 T bpf_sk_assign
-ffffffc0086df46c T bpf_sock_ops_load_hdr_opt
-ffffffc0086df690 T bpf_sock_ops_store_hdr_opt
-ffffffc0086df858 T bpf_sock_ops_reserve_hdr_opt
-ffffffc0086df8b0 T bpf_skb_set_tstamp
-ffffffc0086df92c T bpf_helper_changes_pkt_data
-ffffffc0086dfa60 T bpf_sock_common_is_valid_access
-ffffffc0086dfaa4 T bpf_sock_is_valid_access
-ffffffc0086dfb48 T bpf_warn_invalid_xdp_action
-ffffffc0086dfbc8 T bpf_sock_convert_ctx_access
-ffffffc0086dfe74 t sk_filter_func_proto
-ffffffc0086dff1c t sk_filter_is_valid_access
-ffffffc0086dffa8 t bpf_gen_ld_abs
-ffffffc0086e00a4 t bpf_convert_ctx_access
-ffffffc0086e07fc t bpf_prog_test_run_skb
-ffffffc0086e0810 t tc_cls_act_func_proto
-ffffffc0086e0ca0 t tc_cls_act_is_valid_access
-ffffffc0086e0d88 t tc_cls_act_prologue
-ffffffc0086e0e0c t tc_cls_act_convert_ctx_access
-ffffffc0086e0e90 t tc_cls_act_btf_struct_access
-ffffffc0086e0f78 t xdp_func_proto
-ffffffc0086e1100 t xdp_is_valid_access
-ffffffc0086e1188 t bpf_noop_prologue
-ffffffc0086e119c t xdp_convert_ctx_access
-ffffffc0086e1300 t xdp_btf_struct_access
-ffffffc0086e13e8 t bpf_prog_test_run_xdp
-ffffffc0086e13fc t cg_skb_func_proto
-ffffffc0086e1504 t cg_skb_is_valid_access
-ffffffc0086e1624 t lwt_in_func_proto
-ffffffc0086e171c t lwt_is_valid_access
-ffffffc0086e17f0 t lwt_out_func_proto
-ffffffc0086e18d8 t lwt_xmit_func_proto
-ffffffc0086e1bb8 t lwt_seg6local_func_proto
-ffffffc0086e1ca0 t sock_filter_func_proto
-ffffffc0086e1d34 t sock_filter_is_valid_access
-ffffffc0086e1df0 t sock_addr_func_proto
-ffffffc0086e1f44 t sock_addr_is_valid_access
-ffffffc0086e2154 t sock_addr_convert_ctx_access
-ffffffc0086e27c0 t sock_ops_func_proto
-ffffffc0086e28f8 t sock_ops_is_valid_access
-ffffffc0086e29f4 t sock_ops_convert_ctx_access
-ffffffc0086e47f8 t sk_skb_func_proto
-ffffffc0086e4940 t sk_skb_is_valid_access
-ffffffc0086e4a18 t sk_skb_prologue
-ffffffc0086e4a98 t sk_skb_convert_ctx_access
-ffffffc0086e4c94 t sk_msg_func_proto
-ffffffc0086e4dbc t sk_msg_is_valid_access
-ffffffc0086e4e44 t sk_msg_convert_ctx_access
-ffffffc0086e5068 t flow_dissector_func_proto
-ffffffc0086e50a8 t flow_dissector_is_valid_access
-ffffffc0086e5134 t flow_dissector_convert_ctx_access
-ffffffc0086e519c t bpf_prog_test_run_flow_dissector
-ffffffc0086e51b0 T sk_detach_filter
-ffffffc0086e52ac T sk_get_filter
-ffffffc0086e54c4 T bpf_run_sk_reuseport
-ffffffc0086e5618 T sk_select_reuseport
-ffffffc0086e577c T sk_reuseport_load_bytes
-ffffffc0086e5824 T sk_reuseport_load_bytes_relative
-ffffffc0086e58cc t sk_reuseport_func_proto
-ffffffc0086e5960 t sk_reuseport_is_valid_access
-ffffffc0086e5a48 t sk_reuseport_convert_ctx_access
-ffffffc0086e5c34 T bpf_sk_lookup_assign
-ffffffc0086e5d3c t bpf_prog_test_run_sk_lookup
-ffffffc0086e5d50 t sk_lookup_func_proto
-ffffffc0086e5db8 t sk_lookup_is_valid_access
-ffffffc0086e5e90 t sk_lookup_convert_ctx_access
-ffffffc0086e6094 T bpf_prog_change_xdp
-ffffffc0086e60a4 T bpf_skc_to_tcp6_sock
-ffffffc0086e60f4 T bpf_skc_to_tcp_sock
-ffffffc0086e6138 T bpf_skc_to_tcp_timewait_sock
-ffffffc0086e6188 T bpf_skc_to_tcp_request_sock
-ffffffc0086e61d8 T bpf_skc_to_udp6_sock
-ffffffc0086e6234 T bpf_skc_to_unix_sock
-ffffffc0086e6278 T bpf_skc_to_mptcp_sock
-ffffffc0086e628c T bpf_sock_from_file
-ffffffc0086e62b8 t sk_filter_release_rcu
-ffffffc0086e6328 t bpf_convert_filter
-ffffffc0086e6d58 t convert_bpf_ld_abs
-ffffffc0086e6f68 t neigh_output
-ffffffc0086e710c t __ipv6_neigh_lookup_noref_stub
-ffffffc0086e71d4 t bpf_skb_net_hdr_pop
-ffffffc0086e730c t __bpf_skb_change_tail
-ffffffc0086e7504 t bpf_xdp_frags_shrink_tail
-ffffffc0086e7698 t bpf_xdp_frags_increase_tail
-ffffffc0086e7780 t bpf_skb_copy
-ffffffc0086e7818 t bpf_xdp_copy
-ffffffc0086e7930 t __bpf_setsockopt
-ffffffc0086e7a9c t sol_socket_sockopt
-ffffffc0086e7b60 t sol_tcp_sockopt
-ffffffc0086e7d3c t bpf_sol_tcp_setsockopt
-ffffffc0086e7e38 t __bpf_getsockopt
-ffffffc0086e800c t bpf_ipv4_fib_lookup
-ffffffc0086e8408 t bpf_ipv6_fib_lookup
-ffffffc0086e87d8 t sk_lookup
-ffffffc0086e89f8 t bpf_sk_lookup
-ffffffc0086e8b28 t __bpf_sk_lookup
-ffffffc0086e8c44 t bpf_sk_base_func_proto
-ffffffc0086e8d30 t bpf_skb_is_valid_access
-ffffffc0086e8e5c t bpf_convert_tstamp_type_read
-ffffffc0086e8edc t bpf_convert_shinfo_access
-ffffffc0086e8f54 T __sock_gen_cookie
-ffffffc0086e90d0 T sock_diag_check_cookie
-ffffffc0086e9194 T sock_diag_save_cookie
-ffffffc0086e921c T sock_diag_put_meminfo
-ffffffc0086e92a8 T sock_diag_put_filterinfo
-ffffffc0086e9368 T sock_diag_broadcast_destroy
-ffffffc0086e93f8 t sock_diag_broadcast_destroy_work
-ffffffc0086e9598 T sock_diag_register_inet_compat
-ffffffc0086e95ec T sock_diag_unregister_inet_compat
-ffffffc0086e963c T sock_diag_register
-ffffffc0086e96d0 T sock_diag_unregister
-ffffffc0086e9744 T sock_diag_destroy
-ffffffc0086e97d0 t sock_diag_rcv
-ffffffc0086e982c t sock_diag_bind
-ffffffc0086e989c t sock_diag_rcv_msg
-ffffffc0086e9a04 T dev_ifconf
-ffffffc0086e9d6c T dev_load
-ffffffc0086e9dd0 T dev_ioctl
-ffffffc0086ea198 t dev_ifsioc
-ffffffc0086ea7ac T tso_count_descs
-ffffffc0086ea7d4 T tso_build_hdr
-ffffffc0086ea910 T tso_build_data
-ffffffc0086ea9ac T tso_start
-ffffffc0086eac1c T reuseport_has_conns_set
-ffffffc0086eac8c T reuseport_update_incoming_cpu
-ffffffc0086ead2c T reuseport_alloc
-ffffffc0086eae60 t reuseport_resurrect
-ffffffc0086eb0f0 T reuseport_add_sock
-ffffffc0086eb258 t reuseport_grow
-ffffffc0086eb430 t reuseport_free_rcu
-ffffffc0086eb484 T reuseport_detach_sock
-ffffffc0086eb5d0 T reuseport_stop_listen_sock
-ffffffc0086eb70c T reuseport_select_sock
-ffffffc0086eba80 T reuseport_migrate_sock
-ffffffc0086ebd14 T reuseport_attach_prog
-ffffffc0086ebdc0 T reuseport_detach_prog
-ffffffc0086ebe78 T call_fib_notifier
-ffffffc0086ebed8 T call_fib_notifiers
-ffffffc0086ebf60 T register_fib_notifier
-ffffffc0086ec0ec t fib_seq_sum
-ffffffc0086ec1b8 T unregister_fib_notifier
-ffffffc0086ec224 T fib_notifier_ops_register
-ffffffc0086ec2f8 T fib_notifier_ops_unregister
-ffffffc0086ec360 T xdp_unreg_mem_model
-ffffffc0086ec444 t rhashtable_lookup
-ffffffc0086ec524 t rhashtable_lookup
-ffffffc0086ec6c8 T xdp_rxq_info_unreg_mem_model
-ffffffc0086ec7e0 T xdp_rxq_info_unreg
-ffffffc0086ec908 T __xdp_rxq_info_reg
-ffffffc0086ecabc T xdp_rxq_info_unused
-ffffffc0086ecad4 T xdp_rxq_info_is_reg
-ffffffc0086ecaf0 T xdp_reg_mem_model
-ffffffc0086ecb20 t __xdp_reg_mem_model
-ffffffc0086ecd54 T xdp_rxq_info_reg_mem_model
-ffffffc0086ece64 T __xdp_return
-ffffffc0086ecf94 T xdp_return_frame
-ffffffc0086ed070 T xdp_return_frame_rx_napi
-ffffffc0086ed14c T xdp_flush_frame_bulk
-ffffffc0086ed170 T xdp_return_frame_bulk
-ffffffc0086ed39c T xdp_return_buff
-ffffffc0086ed470 T __xdp_release_frame
-ffffffc0086ed578 T xdp_attachment_setup
-ffffffc0086ed598 T xdp_convert_zc_to_xdp_frame
-ffffffc0086ed69c T xdp_warn
-ffffffc0086ed6d8 T xdp_alloc_skb_bulk
-ffffffc0086ed728 T __xdp_build_skb_from_frame
-ffffffc0086ed9b0 t xdp_update_skb_shared_info
-ffffffc0086eda10 T xdp_build_skb_from_frame
-ffffffc0086eda98 T xdpf_clone
-ffffffc0086edb64 t xdp_mem_id_hashfn
-ffffffc0086edb78 t xdp_mem_id_cmp
-ffffffc0086edb9c T flow_rule_alloc
-ffffffc0086edc34 T offload_action_alloc
-ffffffc0086edccc T flow_rule_match_meta
-ffffffc0086edd00 T flow_rule_match_basic
-ffffffc0086edd34 T flow_rule_match_control
-ffffffc0086edd68 T flow_rule_match_eth_addrs
-ffffffc0086edd9c T flow_rule_match_vlan
-ffffffc0086eddd0 T flow_rule_match_cvlan
-ffffffc0086ede04 T flow_rule_match_ipv4_addrs
-ffffffc0086ede38 T flow_rule_match_ipv6_addrs
-ffffffc0086ede6c T flow_rule_match_ip
-ffffffc0086edea0 T flow_rule_match_ports
-ffffffc0086eded4 T flow_rule_match_ports_range
-ffffffc0086edf08 T flow_rule_match_tcp
-ffffffc0086edf3c T flow_rule_match_icmp
-ffffffc0086edf70 T flow_rule_match_mpls
-ffffffc0086edfa4 T flow_rule_match_enc_control
-ffffffc0086edfd8 T flow_rule_match_enc_ipv4_addrs
-ffffffc0086ee00c T flow_rule_match_enc_ipv6_addrs
-ffffffc0086ee040 T flow_rule_match_enc_ip
-ffffffc0086ee074 T flow_rule_match_enc_ports
-ffffffc0086ee0a8 T flow_rule_match_enc_keyid
-ffffffc0086ee0dc T flow_rule_match_enc_opts
-ffffffc0086ee110 T flow_action_cookie_create
-ffffffc0086ee180 T flow_action_cookie_destroy
-ffffffc0086ee1ac T flow_rule_match_ct
-ffffffc0086ee1e0 T flow_rule_match_pppoe
-ffffffc0086ee214 T flow_rule_match_l2tpv3
-ffffffc0086ee248 T flow_block_cb_alloc
-ffffffc0086ee2b8 T flow_block_cb_free
-ffffffc0086ee31c T flow_block_cb_lookup
-ffffffc0086ee36c T flow_block_cb_priv
-ffffffc0086ee380 T flow_block_cb_incref
-ffffffc0086ee39c T flow_block_cb_decref
-ffffffc0086ee3bc T flow_block_cb_is_busy
-ffffffc0086ee408 T flow_block_cb_setup_simple
-ffffffc0086ee600 T flow_indr_dev_register
-ffffffc0086ee820 T flow_indr_dev_unregister
-ffffffc0086eea90 T flow_indr_block_cb_alloc
-ffffffc0086eeb84 T flow_indr_dev_setup_offload
-ffffffc0086eed98 T flow_indr_dev_exists
-ffffffc0086eedc0 T dev_add_offload
-ffffffc0086eee68 T dev_remove_offload
-ffffffc0086eef14 T skb_eth_gso_segment
-ffffffc0086eefd8 T skb_mac_gso_segment
-ffffffc0086ef128 T skb_gro_receive
-ffffffc0086ef494 T napi_gro_flush
-ffffffc0086ef5bc T gro_find_receive_by_type
-ffffffc0086ef620 T gro_find_complete_by_type
-ffffffc0086ef684 T napi_gro_receive
-ffffffc0086ef91c t dev_gro_receive
-ffffffc0086efef4 T napi_get_frags
-ffffffc0086eff60 T napi_gro_frags
-ffffffc0086f03e8 T __skb_gro_checksum_complete
-ffffffc0086f04a0 t napi_gro_complete
-ffffffc0086f05fc t gro_flush_oldest
-ffffffc0086f0664 t skb_metadata_dst_cmp
-ffffffc0086f0774 t skb_frag_unref
-ffffffc0086f0810 t napi_reuse_skb
-ffffffc0086f0940 T net_rx_queue_update_kobjects
-ffffffc0086f0b48 T netdev_queue_update_kobjects
-ffffffc0086f0d7c t net_current_may_mount
-ffffffc0086f0dc0 t net_grab_current_ns
-ffffffc0086f0ddc t net_netlink_ns
-ffffffc0086f0df4 t net_initial_ns
-ffffffc0086f0e0c T of_find_net_device_by_node
-ffffffc0086f0e5c t of_dev_node_match
-ffffffc0086f0e90 T netdev_unregister_kobject
-ffffffc0086f0f40 T netdev_register_kobject
-ffffffc0086f109c T netdev_change_owner
-ffffffc0086f10b0 T netdev_class_create_file_ns
-ffffffc0086f10ec T netdev_class_remove_file_ns
-ffffffc0086f1128 t rx_queue_release
-ffffffc0086f121c t rx_queue_namespace
-ffffffc0086f1284 t rx_queue_get_ownership
-ffffffc0086f12fc t rps_dev_flow_table_release
-ffffffc0086f132c t rx_queue_attr_show
-ffffffc0086f1388 t rx_queue_attr_store
-ffffffc0086f13e8 t show_rps_map
-ffffffc0086f1520 t store_rps_map
-ffffffc0086f176c t show_rps_dev_flow_table_cnt
-ffffffc0086f17e4 t store_rps_dev_flow_table_cnt
-ffffffc0086f1960 t netdev_queue_release
-ffffffc0086f1a14 t netdev_queue_namespace
-ffffffc0086f1a7c t netdev_queue_get_ownership
-ffffffc0086f1af4 t netdev_queue_attr_show
-ffffffc0086f1b50 t netdev_queue_attr_store
-ffffffc0086f1bb0 t tx_timeout_show
-ffffffc0086f1bf8 t traffic_class_show
-ffffffc0086f1d34 t xps_cpus_show
-ffffffc0086f1e74 t xps_cpus_store
-ffffffc0086f1fd8 t xps_queue_show
-ffffffc0086f2144 t xps_rxqs_show
-ffffffc0086f222c t xps_rxqs_store
-ffffffc0086f2390 t tx_maxrate_show
-ffffffc0086f23d4 t tx_maxrate_store
-ffffffc0086f2564 t bql_show_limit
-ffffffc0086f25a8 t bql_set_limit
-ffffffc0086f2684 t bql_show_limit_max
-ffffffc0086f26c8 t bql_set_limit_max
-ffffffc0086f27a4 t bql_show_limit_min
-ffffffc0086f27e8 t bql_set_limit_min
-ffffffc0086f28c4 t bql_show_hold_time
-ffffffc0086f290c t bql_set_hold_time
-ffffffc0086f29a0 t bql_show_inflight
-ffffffc0086f29ec t netdev_uevent
-ffffffc0086f2a54 t netdev_release
-ffffffc0086f2ab4 t net_namespace
-ffffffc0086f2acc t net_get_ownership
-ffffffc0086f2ae4 t group_show
-ffffffc0086f2b68 t group_store
-ffffffc0086f2c84 t dev_id_show
-ffffffc0086f2d08 t dev_port_show
-ffffffc0086f2d8c t iflink_show
-ffffffc0086f2de0 t ifindex_show
-ffffffc0086f2e64 t name_assign_type_show
-ffffffc0086f2f00 t addr_assign_type_show
-ffffffc0086f2f84 t addr_len_show
-ffffffc0086f3008 t link_mode_show
-ffffffc0086f308c t address_show
-ffffffc0086f311c t broadcast_show
-ffffffc0086f3180 t speed_show
-ffffffc0086f32ac t duplex_show
-ffffffc0086f33f8 t dormant_show
-ffffffc0086f3454 t testing_show
-ffffffc0086f34b0 t operstate_show
-ffffffc0086f355c t carrier_changes_show
-ffffffc0086f35b8 t ifalias_show
-ffffffc0086f3688 t ifalias_store
-ffffffc0086f3790 t carrier_show
-ffffffc0086f37f0 t carrier_store
-ffffffc0086f3944 t mtu_show
-ffffffc0086f39c8 t mtu_store
-ffffffc0086f3ae8 t flags_store
-ffffffc0086f3c0c t tx_queue_len_show
-ffffffc0086f3c8c t tx_queue_len_store
-ffffffc0086f3db8 t gro_flush_timeout_show
-ffffffc0086f3e3c t gro_flush_timeout_store
-ffffffc0086f3f64 t napi_defer_hard_irqs_show
-ffffffc0086f3fe8 t napi_defer_hard_irqs_store
-ffffffc0086f4110 t phys_port_id_show
-ffffffc0086f4228 t phys_port_name_show
-ffffffc0086f4340 t phys_switch_id_show
-ffffffc0086f4464 t proto_down_show
-ffffffc0086f44e4 t proto_down_store
-ffffffc0086f460c t carrier_up_count_show
-ffffffc0086f4658 t carrier_down_count_show
-ffffffc0086f46a4 t threaded_show
-ffffffc0086f475c t threaded_store
-ffffffc0086f48a4 t rx_packets_show
-ffffffc0086f4990 t tx_packets_show
-ffffffc0086f4a7c t rx_bytes_show
-ffffffc0086f4b68 t tx_bytes_show
-ffffffc0086f4c54 t rx_errors_show
-ffffffc0086f4d40 t tx_errors_show
-ffffffc0086f4e2c t rx_dropped_show
-ffffffc0086f4f18 t tx_dropped_show
-ffffffc0086f5004 t multicast_show
-ffffffc0086f50f0 t collisions_show
-ffffffc0086f51dc t rx_length_errors_show
-ffffffc0086f52c8 t rx_over_errors_show
-ffffffc0086f53b4 t rx_crc_errors_show
-ffffffc0086f54a0 t rx_frame_errors_show
-ffffffc0086f558c t rx_fifo_errors_show
-ffffffc0086f5678 t rx_missed_errors_show
-ffffffc0086f5764 t tx_aborted_errors_show
-ffffffc0086f5850 t tx_carrier_errors_show
-ffffffc0086f593c t tx_fifo_errors_show
-ffffffc0086f5a28 t tx_heartbeat_errors_show
-ffffffc0086f5b14 t tx_window_errors_show
-ffffffc0086f5c00 t rx_compressed_show
-ffffffc0086f5cec t tx_compressed_show
-ffffffc0086f5dd8 t rx_nohandler_show
-ffffffc0086f5ec4 t dev_seq_start
-ffffffc0086f5f94 t dev_seq_stop
-ffffffc0086f5fc0 t dev_seq_next
-ffffffc0086f6058 t dev_seq_show
-ffffffc0086f619c t softnet_seq_start
-ffffffc0086f6218 t softnet_seq_stop
-ffffffc0086f6228 t softnet_seq_next
-ffffffc0086f62ac t softnet_seq_show
-ffffffc0086f6380 t ptype_seq_start
-ffffffc0086f64c8 t ptype_seq_stop
-ffffffc0086f64f4 t ptype_seq_next
-ffffffc0086f67e0 t ptype_seq_show
-ffffffc0086f6890 t dev_mc_seq_show
-ffffffc0086f6958 T fib_rule_matchall
-ffffffc0086f69f8 T fib_default_rule_add
-ffffffc0086f6acc T fib_rules_register
-ffffffc0086f6bf8 T fib_rules_unregister
-ffffffc0086f6d64 T fib_rules_lookup
-ffffffc0086f6fe4 T fib_rules_dump
-ffffffc0086f70f4 T fib_rules_seq_read
-ffffffc0086f71c0 T fib_nl_newrule
-ffffffc0086f7778 t fib_nl2rule
-ffffffc0086f7c00 t list_add_rcu
-ffffffc0086f7c58 t notify_rule_change
-ffffffc0086f7d84 T fib_nl_delrule
-ffffffc0086f8364 t fib_rule_put
-ffffffc0086f83f0 t fib_nl_fill_rule
-ffffffc0086f87e8 t nla_put_uid_range
-ffffffc0086f886c t fib_nl_dumprule
-ffffffc0086f8b3c t fib_rules_event
-ffffffc0086f8da8 T __traceiter_kfree_skb
-ffffffc0086f8e40 T __traceiter_consume_skb
-ffffffc0086f8ec0 T __traceiter_skb_copy_datagram_iovec
-ffffffc0086f8f50 t trace_event_raw_event_kfree_skb
-ffffffc0086f9030 t perf_trace_kfree_skb
-ffffffc0086f9160 t trace_event_raw_event_consume_skb
-ffffffc0086f9218 t perf_trace_consume_skb
-ffffffc0086f9324 t trace_event_raw_event_skb_copy_datagram_iovec
-ffffffc0086f93e4 t perf_trace_skb_copy_datagram_iovec
-ffffffc0086f9500 T __traceiter_net_dev_start_xmit
-ffffffc0086f9590 T __traceiter_net_dev_xmit
-ffffffc0086f9638 T __traceiter_net_dev_xmit_timeout
-ffffffc0086f96c8 T __traceiter_net_dev_queue
-ffffffc0086f9748 T __traceiter_netif_receive_skb
-ffffffc0086f97c8 T __traceiter_netif_rx
-ffffffc0086f9848 T __traceiter_napi_gro_frags_entry
-ffffffc0086f98c8 T __traceiter_napi_gro_receive_entry
-ffffffc0086f9948 T __traceiter_netif_receive_skb_entry
-ffffffc0086f99c8 T __traceiter_netif_receive_skb_list_entry
-ffffffc0086f9a48 T __traceiter_netif_rx_entry
-ffffffc0086f9ac8 T __traceiter_napi_gro_frags_exit
-ffffffc0086f9b48 T __traceiter_napi_gro_receive_exit
-ffffffc0086f9bc8 T __traceiter_netif_receive_skb_exit
-ffffffc0086f9c48 T __traceiter_netif_rx_exit
-ffffffc0086f9cc8 T __traceiter_netif_receive_skb_list_exit
-ffffffc0086f9d48 t trace_event_raw_event_net_dev_start_xmit
-ffffffc0086f9f30 t perf_trace_net_dev_start_xmit
-ffffffc0086fa180 t trace_event_raw_event_net_dev_xmit
-ffffffc0086fa294 t perf_trace_net_dev_xmit
-ffffffc0086fa410 t trace_event_raw_event_net_dev_xmit_timeout
-ffffffc0086fa584 t perf_trace_net_dev_xmit_timeout
-ffffffc0086fa75c t trace_event_raw_event_net_dev_template
-ffffffc0086fa860 t perf_trace_net_dev_template
-ffffffc0086fa9d8 t trace_event_raw_event_net_dev_rx_verbose_template
-ffffffc0086fabb8 t perf_trace_net_dev_rx_verbose_template
-ffffffc0086fae08 t trace_event_raw_event_net_dev_rx_exit_template
-ffffffc0086faec0 t perf_trace_net_dev_rx_exit_template
-ffffffc0086fafcc T __traceiter_napi_poll
-ffffffc0086fb064 t trace_event_raw_event_napi_poll
-ffffffc0086fb178 t perf_trace_napi_poll
-ffffffc0086fb2fc T __traceiter_sock_rcvqueue_full
-ffffffc0086fb38c T __traceiter_sock_exceed_buf_limit
-ffffffc0086fb434 T __traceiter_inet_sock_set_state
-ffffffc0086fb4cc T __traceiter_inet_sk_error_report
-ffffffc0086fb54c t trace_event_raw_event_sock_rcvqueue_full
-ffffffc0086fb62c t perf_trace_sock_rcvqueue_full
-ffffffc0086fb768 t trace_event_raw_event_sock_exceed_buf_limit
-ffffffc0086fb908 t perf_trace_sock_exceed_buf_limit
-ffffffc0086fbb04 t trace_event_raw_event_inet_sock_set_state
-ffffffc0086fbc54 t perf_trace_inet_sock_set_state
-ffffffc0086fbdf4 t trace_event_raw_event_inet_sk_error_report
-ffffffc0086fbf34 t perf_trace_inet_sk_error_report
-ffffffc0086fc0c8 T __traceiter_udp_fail_queue_rcv_skb
-ffffffc0086fc158 t trace_event_raw_event_udp_fail_queue_rcv_skb
-ffffffc0086fc21c t perf_trace_udp_fail_queue_rcv_skb
-ffffffc0086fc33c T __traceiter_tcp_retransmit_skb
-ffffffc0086fc3cc T __traceiter_tcp_send_reset
-ffffffc0086fc45c T __traceiter_tcp_receive_reset
-ffffffc0086fc4dc T __traceiter_tcp_destroy_sock
-ffffffc0086fc55c T __traceiter_tcp_rcv_space_adjust
-ffffffc0086fc5dc T __traceiter_tcp_retransmit_synack
-ffffffc0086fc66c T __traceiter_tcp_probe
-ffffffc0086fc6fc T __traceiter_tcp_bad_csum
-ffffffc0086fc77c T __traceiter_tcp_cong_state_set
-ffffffc0086fc80c t trace_event_raw_event_tcp_event_sk_skb
-ffffffc0086fc954 t perf_trace_tcp_event_sk_skb
-ffffffc0086fcaf8 t trace_event_raw_event_tcp_event_sk
-ffffffc0086fcc8c t perf_trace_tcp_event_sk
-ffffffc0086fce7c t trace_event_raw_event_tcp_retransmit_synack
-ffffffc0086fcfb4 t perf_trace_tcp_retransmit_synack
-ffffffc0086fd148 t trace_event_raw_event_tcp_probe
-ffffffc0086fd3a8 t perf_trace_tcp_probe
-ffffffc0086fd664 t trace_event_raw_event_tcp_event_skb
-ffffffc0086fd7d0 t perf_trace_tcp_event_skb
-ffffffc0086fd990 t trace_event_raw_event_tcp_cong_state_set
-ffffffc0086fdac4 t perf_trace_tcp_cong_state_set
-ffffffc0086fdc54 T __traceiter_fib_table_lookup
-ffffffc0086fdcfc t trace_event_raw_event_fib_table_lookup
-ffffffc0086fdebc t perf_trace_fib_table_lookup
-ffffffc0086fe0d8 T __traceiter_qdisc_dequeue
-ffffffc0086fe180 T __traceiter_qdisc_enqueue
-ffffffc0086fe218 T __traceiter_qdisc_reset
-ffffffc0086fe298 T __traceiter_qdisc_destroy
-ffffffc0086fe318 T __traceiter_qdisc_create
-ffffffc0086fe3b0 t trace_event_raw_event_qdisc_dequeue
-ffffffc0086fe4b8 t perf_trace_qdisc_dequeue
-ffffffc0086fe618 t trace_event_raw_event_qdisc_enqueue
-ffffffc0086fe708 t perf_trace_qdisc_enqueue
-ffffffc0086fe848 t trace_event_raw_event_qdisc_reset
-ffffffc0086fe99c t perf_trace_qdisc_reset
-ffffffc0086feb5c t trace_event_raw_event_qdisc_destroy
-ffffffc0086fecb0 t perf_trace_qdisc_destroy
-ffffffc0086fee70 t trace_event_raw_event_qdisc_create
-ffffffc0086fefb4 t perf_trace_qdisc_create
-ffffffc0086ff160 T __traceiter_br_fdb_add
-ffffffc0086ff210 T __traceiter_br_fdb_external_learn_add
-ffffffc0086ff2b8 T __traceiter_fdb_delete
-ffffffc0086ff348 T __traceiter_br_fdb_update
-ffffffc0086ff3f8 t trace_event_raw_event_br_fdb_add
-ffffffc0086ff530 t perf_trace_br_fdb_add
-ffffffc0086ff6c4 t trace_event_raw_event_br_fdb_external_learn_add
-ffffffc0086ff854 t perf_trace_br_fdb_external_learn_add
-ffffffc0086ffa44 t trace_event_raw_event_fdb_delete
-ffffffc0086ffbd0 t perf_trace_fdb_delete
-ffffffc0086ffdc0 t trace_event_raw_event_br_fdb_update
-ffffffc0086fff38 t perf_trace_br_fdb_update
-ffffffc008700118 T __traceiter_neigh_create
-ffffffc0087001c8 T __traceiter_neigh_update
-ffffffc008700278 T __traceiter_neigh_update_done
-ffffffc008700308 T __traceiter_neigh_timer_handler
-ffffffc008700398 T __traceiter_neigh_event_send_done
-ffffffc008700428 T __traceiter_neigh_event_send_dead
-ffffffc0087004b8 T __traceiter_neigh_cleanup_and_release
-ffffffc008700548 t trace_event_raw_event_neigh_create
-ffffffc0087006bc t perf_trace_neigh_create
-ffffffc008700898 t trace_event_raw_event_neigh_update
-ffffffc008700a9c t perf_trace_neigh_update
-ffffffc008700d08 t trace_event_raw_event_neigh__update
-ffffffc008700edc t perf_trace_neigh__update
-ffffffc008701120 t trace_raw_output_kfree_skb
-ffffffc0087011c4 t trace_raw_output_consume_skb
-ffffffc008701238 t trace_raw_output_skb_copy_datagram_iovec
-ffffffc0087012b0 t trace_raw_output_net_dev_start_xmit
-ffffffc008701398 t trace_raw_output_net_dev_xmit
-ffffffc008701418 t trace_raw_output_net_dev_xmit_timeout
-ffffffc00870149c t trace_raw_output_net_dev_template
-ffffffc00870151c t trace_raw_output_net_dev_rx_verbose_template
-ffffffc008701614 t trace_raw_output_net_dev_rx_exit_template
-ffffffc008701688 t trace_raw_output_napi_poll
-ffffffc008701708 t trace_raw_output_sock_rcvqueue_full
-ffffffc008701780 t trace_raw_output_sock_exceed_buf_limit
-ffffffc008701878 t trace_raw_output_inet_sock_set_state
-ffffffc0087019b0 t trace_raw_output_inet_sk_error_report
-ffffffc008701a8c t trace_raw_output_udp_fail_queue_rcv_skb
-ffffffc008701b04 t trace_raw_output_tcp_event_sk_skb
-ffffffc008701c00 t trace_raw_output_tcp_event_sk
-ffffffc008701cb0 t trace_raw_output_tcp_retransmit_synack
-ffffffc008701d5c t trace_raw_output_tcp_probe
-ffffffc008701e2c t trace_raw_output_tcp_event_skb
-ffffffc008701ea4 t trace_raw_output_tcp_cong_state_set
-ffffffc008701f3c t trace_raw_output_fib_table_lookup
-ffffffc008702008 t trace_raw_output_qdisc_dequeue
-ffffffc00870208c t trace_raw_output_qdisc_enqueue
-ffffffc008702108 t trace_raw_output_qdisc_reset
-ffffffc00870219c t trace_raw_output_qdisc_destroy
-ffffffc008702230 t trace_raw_output_qdisc_create
-ffffffc0087022bc t trace_raw_output_br_fdb_add
-ffffffc008702370 t trace_raw_output_br_fdb_external_learn_add
-ffffffc008702420 t trace_raw_output_fdb_delete
-ffffffc0087024d0 t trace_raw_output_br_fdb_update
-ffffffc008702588 t trace_raw_output_neigh_create
-ffffffc008702624 t trace_raw_output_neigh_update
-ffffffc008702794 t trace_raw_output_neigh__update
-ffffffc0087028a8 T dst_cache_get
-ffffffc0087028ec t dst_cache_per_cpu_get
-ffffffc008702a08 T dst_cache_get_ip4
-ffffffc008702a6c T dst_cache_set_ip4
-ffffffc008702b3c T dst_cache_set_ip6
-ffffffc008702c60 T dst_cache_get_ip6
-ffffffc008702cc8 T dst_cache_init
-ffffffc008702d30 T dst_cache_destroy
-ffffffc008702de4 T dst_cache_reset_now
-ffffffc008702ea4 T gro_cells_receive
-ffffffc008703064 T gro_cells_init
-ffffffc00870319c t gro_cell_poll
-ffffffc00870324c T gro_cells_destroy
-ffffffc008703394 t percpu_free_defer_callback
-ffffffc0087033d8 T of_get_phy_mode
-ffffffc0087034cc T of_get_mac_address
-ffffffc008703614 T of_get_ethdev_address
-ffffffc0087036a4 T eth_header
-ffffffc00870377c T eth_get_headlen
-ffffffc008703864 T eth_type_trans
-ffffffc00870398c T eth_header_parse
-ffffffc0087039c0 T eth_header_cache
-ffffffc008703a20 T eth_header_cache_update
-ffffffc008703a40 T eth_header_parse_protocol
-ffffffc008703a60 T eth_prepare_mac_addr_change
-ffffffc008703aa8 T eth_commit_mac_addr_change
-ffffffc008703ae0 T eth_mac_addr
-ffffffc008703b50 T eth_validate_addr
-ffffffc008703b80 T ether_setup
-ffffffc008703bf4 T alloc_etherdev_mqs
-ffffffc008703c3c T sysfs_format_mac
-ffffffc008703c80 T eth_gro_receive
-ffffffc008703e24 T eth_gro_complete
-ffffffc008703eb8 W arch_get_platform_mac_address
-ffffffc008703ecc T eth_platform_get_mac_address
-ffffffc008703f30 T platform_get_ethdev_address
-ffffffc008703fe0 T nvmem_get_mac_address
-ffffffc008703ff4 T fwnode_get_mac_address
-ffffffc0087040c4 T device_get_mac_address
-ffffffc008704104 T device_get_ethdev_address
-ffffffc008704198 T sch_direct_xmit
-ffffffc008704604 T __qdisc_run
-ffffffc0087052a0 T dev_trans_start
-ffffffc00870530c T netif_tx_lock
-ffffffc0087053f0 t netif_freeze_queues
-ffffffc0087054d0 T netif_tx_unlock
-ffffffc008705570 t netif_unfreeze_queues
-ffffffc00870560c T __netdev_watchdog_up
-ffffffc008705700 T netif_carrier_on
-ffffffc0087057c4 T netif_carrier_off
-ffffffc008705860 T netif_carrier_event
-ffffffc0087058f0 t noop_enqueue
-ffffffc008705914 t noop_dequeue
-ffffffc008705928 t noqueue_init
-ffffffc008705944 t pfifo_fast_enqueue
-ffffffc008705bd4 t pfifo_fast_dequeue
-ffffffc008705fa0 t pfifo_fast_peek
-ffffffc008706030 t pfifo_fast_init
-ffffffc008706144 t pfifo_fast_reset
-ffffffc0087062b0 t pfifo_fast_destroy
-ffffffc008706308 t pfifo_fast_change_tx_queue_len
-ffffffc0087065d4 t pfifo_fast_dump
-ffffffc008706678 T qdisc_alloc
-ffffffc008706874 T qdisc_create_dflt
-ffffffc008706a14 T qdisc_put
-ffffffc008706aa8 T qdisc_reset
-ffffffc008706c38 T qdisc_free
-ffffffc008706c88 t qdisc_destroy
-ffffffc008706e14 T qdisc_put_unlocked
-ffffffc008706e70 T dev_graft_qdisc
-ffffffc008706ee8 T dev_activate
-ffffffc0087073b4 T dev_deactivate_many
-ffffffc0087077b4 t dev_reset_queue
-ffffffc0087078ac T dev_deactivate
-ffffffc008707960 T dev_qdisc_change_real_num_tx
-ffffffc0087079b4 T mq_change_real_num_tx
-ffffffc0087079c4 T dev_qdisc_change_tx_queue_len
-ffffffc008707b0c T dev_init_scheduler
-ffffffc008707bac t dev_watchdog
-ffffffc008707e38 T dev_shutdown
-ffffffc008708054 T psched_ratecfg_precompute
-ffffffc0087080d0 T psched_ppscfg_precompute
-ffffffc00870811c T mini_qdisc_pair_swap
-ffffffc0087081b8 T mini_qdisc_pair_block_init
-ffffffc0087081d0 T mini_qdisc_pair_init
-ffffffc008708234 t qdisc_free_cb
-ffffffc008708288 t trace_net_dev_xmit_timeout
-ffffffc008708340 t mq_init
-ffffffc0087084e0 t mq_destroy
-ffffffc0087085dc t mq_attach
-ffffffc008708668 t mq_dump
-ffffffc008708760 t mq_select_queue
-ffffffc0087087a4 t mq_graft
-ffffffc008708864 t mq_leaf
-ffffffc0087088a8 t mq_find
-ffffffc0087088f4 t mq_walk
-ffffffc0087089c4 t mq_dump_class
-ffffffc008708a28 t mq_dump_class_stats
-ffffffc008708b50 T sch_frag_xmit_hook
-ffffffc0087091f4 t sch_frag_xmit
-ffffffc008709440 t sch_frag_dst_get_mtu
-ffffffc008709458 T __traceiter_netlink_extack
-ffffffc0087094d8 t trace_event_raw_event_netlink_extack
-ffffffc0087095d0 t perf_trace_netlink_extack
-ffffffc00870972c T do_trace_netlink_extack
-ffffffc00870982c T netlink_add_tap
-ffffffc0087098ec T netlink_remove_tap
-ffffffc0087099c4 T netlink_table_grab
-ffffffc008709adc T netlink_table_ungrab
-ffffffc008709b28 T __netlink_ns_capable
-ffffffc008709b9c T netlink_ns_capable
-ffffffc008709c10 T netlink_capable
-ffffffc008709c88 T netlink_net_capable
-ffffffc008709d00 T netlink_getsockbyfilp
-ffffffc008709db4 T netlink_attachskb
-ffffffc00870a0f0 T netlink_sendskb
-ffffffc00870a210 t __netlink_sendskb
-ffffffc00870a2cc T netlink_detachskb
-ffffffc00870a36c T netlink_unicast
-ffffffc00870a798 t netlink_trim
-ffffffc00870a860 T netlink_has_listeners
-ffffffc00870a914 T netlink_strict_get_check
-ffffffc00870a930 T netlink_broadcast
-ffffffc00870b038 t netlink_lock_table
-ffffffc00870b0b0 t netlink_unlock_table
-ffffffc00870b13c T netlink_set_err
-ffffffc00870b26c T __netlink_kernel_create
-ffffffc00870b564 t netlink_data_ready
-ffffffc00870b56c t netlink_insert
-ffffffc00870bae8 T netlink_kernel_release
-ffffffc00870bb20 T __netlink_change_ngroups
-ffffffc00870bc04 T netlink_change_ngroups
-ffffffc00870bd1c T __netlink_clear_multicast_users
-ffffffc00870bd94 t netlink_update_socket_mc
-ffffffc00870bf00 T __nlmsg_put
-ffffffc00870bf9c T __netlink_dump_start
-ffffffc00870c29c t netlink_dump
-ffffffc00870c6fc T netlink_ack
-ffffffc00870cae4 T netlink_rcv_skb
-ffffffc00870cc28 T nlmsg_notify
-ffffffc00870cd3c T netlink_register_notifier
-ffffffc00870cd74 T netlink_unregister_notifier
-ffffffc00870cdac t trace_raw_output_netlink_extack
-ffffffc00870ce24 t netlink_skb_destructor
-ffffffc00870ced4 t __netlink_deliver_tap
-ffffffc00870d174 t netlink_sock_destruct
-ffffffc00870d250 t netlink_release
-ffffffc00870daa0 t netlink_bind
-ffffffc00870dfcc t netlink_connect
-ffffffc00870e0d4 t netlink_getname
-ffffffc00870e230 t netlink_ioctl
-ffffffc00870e244 t netlink_setsockopt
-ffffffc00870e6c4 t netlink_getsockopt
-ffffffc00870ee00 t netlink_sendmsg
-ffffffc00870f1e4 t netlink_recvmsg
-ffffffc00870f514 t deferred_put_nlk_sk
-ffffffc00870f600 t netlink_hash
-ffffffc00870f674 t netlink_compare
-ffffffc00870f698 t netlink_sock_destruct_work
-ffffffc00870f6c4 t netlink_allowed
-ffffffc00870f724 t netlink_realloc_groups
-ffffffc00870f81c t netlink_autobind
-ffffffc00870f90c t __netlink_lookup
-ffffffc00870fa58 t netlink_create
-ffffffc00870fd28 t netlink_seq_start
-ffffffc00870fe18 t netlink_seq_stop
-ffffffc00870fe68 t netlink_seq_next
-ffffffc00870ff20 t netlink_seq_show
-ffffffc008710034 T genl_lock
-ffffffc008710068 T genl_unlock
-ffffffc00871009c T genl_register_family
-ffffffc0087107bc t genl_ctrl_event
-ffffffc008710b30 T genl_unregister_family
-ffffffc008710dd0 T genlmsg_put
-ffffffc008710e68 T genlmsg_multicast_allns
-ffffffc008710fc0 T genl_notify
-ffffffc00871102c t ctrl_fill_info
-ffffffc008711498 t ctrl_getfamily
-ffffffc008711640 t ctrl_dumpfamily
-ffffffc008711734 t ctrl_dumppolicy_start
-ffffffc008711a1c t ctrl_dumppolicy
-ffffffc008711f3c t ctrl_dumppolicy_done
-ffffffc008711f6c t genl_get_cmd
-ffffffc0087120f0 t genl_rcv
-ffffffc00871214c t genl_bind
-ffffffc008712260 t genl_rcv_msg
-ffffffc0087125e0 t genl_start
-ffffffc008712750 t genl_lock_dumpit
-ffffffc0087127dc t genl_lock_done
-ffffffc008712880 t genl_parallel_done
-ffffffc0087128f4 t genl_family_rcv_msg_attrs_parse
-ffffffc008712a00 T netlink_policy_dump_get_policy_idx
-ffffffc008712a78 T netlink_policy_dump_add_policy
-ffffffc008712bf8 t add_policy
-ffffffc008712d2c T netlink_policy_dump_free
-ffffffc008712d58 T netlink_policy_dump_loop
-ffffffc008712d94 T netlink_policy_dump_attr_size_estimate
-ffffffc008712dd4 T netlink_policy_dump_write_attr
-ffffffc008712e0c t __netlink_policy_dump_write_attr.llvm.2236516274099135744
-ffffffc0087131e8 T netlink_policy_dump_write
-ffffffc008713350 T ethtool_op_get_link
-ffffffc00871336c T ethtool_op_get_ts_info
-ffffffc00871338c T ethtool_intersect_link_masks
-ffffffc0087133d4 T ethtool_convert_legacy_u32_to_link_mode
-ffffffc0087133ec T ethtool_convert_link_mode_to_legacy_u32
-ffffffc008713434 T __ethtool_get_link_ksettings
-ffffffc00871350c T ethtool_virtdev_validate_cmd
-ffffffc0087135f4 T ethtool_virtdev_set_link_ksettings
-ffffffc00871371c T netdev_rss_key_fill
-ffffffc0087137e8 T ethtool_sprintf
-ffffffc008713898 T ethtool_get_module_info_call
-ffffffc008713934 T ethtool_get_module_eeprom_call
-ffffffc0087139d0 T dev_ethtool
-ffffffc008714708 T ethtool_rx_flow_rule_create
-ffffffc008714c4c T ethtool_rx_flow_rule_destroy
-ffffffc008714c8c t ethtool_get_settings
-ffffffc008714f70 t ethtool_set_settings
-ffffffc008715214 t ethtool_get_drvinfo
-ffffffc008715440 t ethtool_get_regs
-ffffffc008715954 t ethtool_get_wol
-ffffffc008715b44 t ethtool_set_wol
-ffffffc008715d64 t ethtool_get_value
-ffffffc008715f3c t ethtool_set_value_void
-ffffffc008716118 t ethtool_get_eee
-ffffffc008716318 t ethtool_set_eee
-ffffffc008716520 t ethtool_get_link
-ffffffc0087166dc t ethtool_get_eeprom
-ffffffc00871678c t ethtool_set_eeprom
-ffffffc008716be4 t ethtool_get_coalesce
-ffffffc008716e08 t ethtool_set_coalesce
-ffffffc0087171a0 t ethtool_get_ringparam
-ffffffc0087173a8 t ethtool_set_ringparam
-ffffffc00871765c t ethtool_get_pauseparam
-ffffffc008717840 t ethtool_set_pauseparam
-ffffffc008717a3c t ethtool_self_test
-ffffffc008717fe8 t ethtool_get_strings
-ffffffc0087186f4 t ethtool_phys_id
-ffffffc008718af4 t ethtool_get_stats
-ffffffc008719010 t ethtool_get_perm_addr
-ffffffc008719488 t __ethtool_get_flags
-ffffffc0087194ac t ethtool_set_value
-ffffffc008719688 t __ethtool_set_flags
-ffffffc008719724 t ethtool_get_rxnfc
-ffffffc0087198ec t ethtool_set_rxnfc
-ffffffc008719a1c t ethtool_reset
-ffffffc008719d50 t ethtool_get_sset_info
-ffffffc00871a354 t ethtool_get_rxfh_indir
-ffffffc00871a880 t ethtool_set_rxfh_indir
-ffffffc00871ac44 t ethtool_get_rxfh
-ffffffc00871b384 t ethtool_set_rxfh
-ffffffc00871bb54 t ethtool_get_features
-ffffffc00871bfd4 t ethtool_set_features
-ffffffc00871c33c t ethtool_get_one_feature
-ffffffc00871c514 t ethtool_set_one_feature
-ffffffc00871c728 t ethtool_get_channels
-ffffffc00871c920 t ethtool_set_channels
-ffffffc00871cc38 t ethtool_set_dump
-ffffffc00871ce1c t ethtool_get_dump_flag
-ffffffc00871d150 t ethtool_get_dump_data
-ffffffc00871d6a8 t ethtool_get_ts_info
-ffffffc00871d870 t ethtool_get_module_info
-ffffffc00871dbf0 t ethtool_get_module_eeprom
-ffffffc00871dcfc t ethtool_get_tunable
-ffffffc00871e100 t ethtool_set_tunable
-ffffffc00871e384 t ethtool_get_phy_stats
-ffffffc00871e934 t ethtool_set_per_queue
-ffffffc00871eb48 t ethtool_get_link_ksettings
-ffffffc00871f0e4 t ethtool_set_link_ksettings
-ffffffc00871f534 t get_phy_tunable
-ffffffc00871f9b4 t set_phy_tunable
-ffffffc00871fcb4 t ethtool_get_fecparam
-ffffffc00871feb0 t ethtool_set_fecparam
-ffffffc0087200ac t ethtool_get_any_eeprom
-ffffffc008720630 t ethtool_rxnfc_copy_from_user
-ffffffc0087207e0 t ethtool_rxnfc_copy_to_user
-ffffffc008720afc t ethtool_copy_validate_indir
-ffffffc008720d00 t ethtool_get_per_queue_coalesce
-ffffffc008720fbc t ethtool_set_per_queue_coalesce
-ffffffc0087214a8 T convert_legacy_settings_to_link_ksettings
-ffffffc008721554 T __ethtool_get_link
-ffffffc0087215c4 T ethtool_get_max_rxfh_channel
-ffffffc0087216ec T ethtool_check_ops
-ffffffc008721720 T __ethtool_get_ts_info
-ffffffc0087217dc T ethtool_get_phc_vclocks
-ffffffc0087218bc T ethtool_set_ethtool_phy_ops
-ffffffc008721908 T ethtool_params_from_link_mode
-ffffffc00872197c T ethnl_ops_begin
-ffffffc008721a38 T ethnl_ops_complete
-ffffffc008721aa8 T ethnl_parse_header_dev_get
-ffffffc008721d14 T ethnl_fill_reply_header
-ffffffc008721e3c T ethnl_reply_init
-ffffffc008721f2c T ethnl_dump_put
-ffffffc008721f74 T ethnl_bcastmsg_put
-ffffffc008721fc4 T ethnl_multicast
-ffffffc008722030 T ethtool_notify
-ffffffc008722170 t netdev_put
-ffffffc008722210 t ethnl_default_notify
-ffffffc0087224e0 t ethnl_default_doit
-ffffffc008722964 t ethnl_default_start
-ffffffc008722b74 t ethnl_default_dumpit
-ffffffc008722f54 t ethnl_default_done
-ffffffc008722f9c t ethnl_netdev_event
-ffffffc008722fe0 T ethnl_bitset32_size
-ffffffc008723130 T ethnl_put_bitset32
-ffffffc0087234a0 T ethnl_bitset_is_compact
-ffffffc008723594 T ethnl_update_bitset32
-ffffffc008723a58 t ethnl_compact_sanity_checks
-ffffffc008723c50 T ethnl_parse_bitset
-ffffffc008723f78 t ethnl_parse_bit
-ffffffc00872418c T ethnl_bitset_size
-ffffffc0087242dc T ethnl_put_bitset
-ffffffc008724308 T ethnl_update_bitset
-ffffffc008724334 t strset_parse_request
-ffffffc008724564 t strset_prepare_data
-ffffffc008724858 t strset_reply_size
-ffffffc00872497c t strset_fill_reply
-ffffffc008724cf8 t strset_cleanup_data
-ffffffc008724d68 t linkinfo_prepare_data
-ffffffc008724e04 t linkinfo_reply_size
-ffffffc008724e18 t linkinfo_fill_reply
-ffffffc008724f48 T ethnl_set_linkinfo
-ffffffc0087251c4 t linkmodes_prepare_data
-ffffffc008725298 t linkmodes_reply_size
-ffffffc008725348 t linkmodes_fill_reply
-ffffffc008725508 T ethnl_set_linkmodes
-ffffffc008725aa4 t linkstate_prepare_data
-ffffffc008725c54 t linkstate_reply_size
-ffffffc008725ca4 t linkstate_fill_reply
-ffffffc008725ddc t debug_prepare_data
-ffffffc008725e6c t debug_reply_size
-ffffffc008725eb8 t debug_fill_reply
-ffffffc008725f04 T ethnl_set_debug
-ffffffc00872610c t wol_prepare_data
-ffffffc0087261c0 t wol_reply_size
-ffffffc00872622c t wol_fill_reply
-ffffffc0087262b8 T ethnl_set_wol
-ffffffc0087265b4 t features_prepare_data
-ffffffc0087265f4 t features_reply_size
-ffffffc0087266fc t features_fill_reply
-ffffffc0087267e0 T ethnl_set_features
-ffffffc008726b90 t privflags_prepare_data
-ffffffc008726d40 t privflags_reply_size
-ffffffc008726dc0 t privflags_fill_reply
-ffffffc008726e48 t privflags_cleanup_data
-ffffffc008726e78 T ethnl_set_privflags
-ffffffc0087271c0 t rings_prepare_data
-ffffffc008727270 t rings_reply_size
-ffffffc008727284 t rings_fill_reply
-ffffffc0087274b8 T ethnl_set_rings
-ffffffc0087278e4 t channels_prepare_data
-ffffffc008727974 t channels_reply_size
-ffffffc008727988 t channels_fill_reply
-ffffffc008727b08 T ethnl_set_channels
-ffffffc008727ed4 t coalesce_prepare_data
-ffffffc008727f98 t coalesce_reply_size
-ffffffc008727fac t coalesce_fill_reply
-ffffffc008728424 T ethnl_set_coalesce
-ffffffc0087289e0 t coalesce_put_bool
-ffffffc008728a7c t pause_prepare_data
-ffffffc008728b5c t pause_reply_size
-ffffffc008728b80 t pause_fill_reply
-ffffffc008728d48 T ethnl_set_pause
-ffffffc008728fd8 t eee_prepare_data
-ffffffc00872907c t eee_reply_size
-ffffffc00872911c t eee_fill_reply
-ffffffc008729290 T ethnl_set_eee
-ffffffc00872955c t tsinfo_prepare_data
-ffffffc0087295cc t tsinfo_reply_size
-ffffffc0087296b8 t tsinfo_fill_reply
-ffffffc0087297e4 T ethnl_act_cable_test
-ffffffc008729994 t ethnl_cable_test_started
-ffffffc008729ad0 T ethnl_cable_test_alloc
-ffffffc008729bf0 T ethnl_cable_test_free
-ffffffc008729c34 T ethnl_cable_test_finished
-ffffffc008729ca8 T ethnl_cable_test_result
-ffffffc008729dcc T ethnl_cable_test_fault_length
-ffffffc008729ef0 T ethnl_act_cable_test_tdr
-ffffffc00872a2b4 T ethnl_cable_test_amplitude
-ffffffc00872a3d8 T ethnl_cable_test_pulse
-ffffffc00872a4d8 T ethnl_cable_test_step
-ffffffc00872a61c T ethnl_tunnel_info_doit
-ffffffc00872aaf0 t ethnl_tunnel_info_fill_reply
-ffffffc00872ae4c T ethnl_tunnel_info_start
-ffffffc00872af34 T ethnl_tunnel_info_dumpit
-ffffffc00872b130 t fec_prepare_data
-ffffffc00872b368 t fec_reply_size
-ffffffc00872b3d8 t fec_fill_reply
-ffffffc00872b598 T ethnl_set_fec
-ffffffc00872b8bc t fec_stats_recalc
-ffffffc00872ba20 t eeprom_parse_request
-ffffffc00872bb4c t eeprom_prepare_data
-ffffffc00872bd78 t eeprom_reply_size
-ffffffc00872bd94 t eeprom_fill_reply
-ffffffc00872bdd0 t eeprom_cleanup_data
-ffffffc00872be00 t stats_parse_request
-ffffffc00872beb4 t stats_prepare_data
-ffffffc00872c008 t stats_reply_size
-ffffffc00872c084 t stats_fill_reply
-ffffffc00872c168 t stats_put_stats
-ffffffc00872c2bc t stats_put_phy_stats
-ffffffc00872c3c4 t stats_put_mac_stats
-ffffffc00872c8bc t stats_put_ctrl_stats
-ffffffc00872cae8 t stats_put_rmon_stats
-ffffffc00872cd48 t stat_put
-ffffffc00872ce58 t stats_put_rmon_hist
-ffffffc00872cff0 t phc_vclocks_prepare_data
-ffffffc00872d05c t phc_vclocks_reply_size
-ffffffc00872d088 t phc_vclocks_fill_reply
-ffffffc00872d148 t phc_vclocks_cleanup_data
-ffffffc00872d178 t module_prepare_data
-ffffffc00872d228 t module_reply_size
-ffffffc00872d254 t module_fill_reply
-ffffffc00872d30c T ethnl_set_module
-ffffffc00872d548 t pse_prepare_data
-ffffffc00872d600 t pse_reply_size
-ffffffc00872d62c t pse_fill_reply
-ffffffc00872d6e4 T ethnl_set_pse
-ffffffc00872d888 T rt_cache_flush
-ffffffc00872d8c8 T __ip_select_ident
-ffffffc00872da18 T ip_rt_send_redirect
-ffffffc00872dc08 T ipv4_update_pmtu
-ffffffc00872dd20 t __ip_rt_update_pmtu
-ffffffc00872dfa0 T ipv4_sk_update_pmtu
-ffffffc00872e4b8 T ip_route_output_flow
-ffffffc00872e5b0 T ipv4_redirect
-ffffffc00872e6a0 t __ip_do_redirect
-ffffffc00872e904 T ipv4_sk_redirect
-ffffffc00872ea54 T ip_rt_get_source
-ffffffc00872ec24 t fib_lookup
-ffffffc00872ecfc t fib_lookup
-ffffffc00872edd8 T ip_mtu_from_fib_result
-ffffffc00872ee80 t find_exception
-ffffffc00872f0bc T rt_add_uncached_list
-ffffffc00872f154 T rt_del_uncached_list
-ffffffc00872f1dc T rt_flush_dev
-ffffffc00872f41c T rt_dst_alloc
-ffffffc00872f4cc T rt_dst_clone
-ffffffc00872f5e4 T ip_mc_validate_source
-ffffffc00872f6bc T ip_route_use_hint
-ffffffc00872f88c T ip_route_input_noref
-ffffffc00872f940 t ip_route_input_rcu
-ffffffc0087301a4 T ip_route_output_key_hash
-ffffffc008730264 T ip_route_output_key_hash_rcu
-ffffffc008730970 T ipv4_blackhole_route
-ffffffc008730b1c T ip_route_output_tunnel
-ffffffc008730cb8 T fib_dump_info_fnhe
-ffffffc008730ef8 T ip_rt_multicast_event
-ffffffc008730f44 t inet_rtm_getroute
-ffffffc0087316a0 t ipv4_mtu
-ffffffc00873173c t update_or_create_fnhe
-ffffffc008731bac t __ipv4_neigh_lookup
-ffffffc008731d0c t ipv4_dst_check
-ffffffc008731d50 t ipv4_default_advmss
-ffffffc008731e10 t ipv4_cow_metrics
-ffffffc008731e28 t ipv4_dst_destroy
-ffffffc008731f28 t ipv4_negative_advice
-ffffffc008731f78 t ipv4_link_failure
-ffffffc008732110 t ip_rt_update_pmtu
-ffffffc0087322fc t ip_do_redirect
-ffffffc008732408 t ipv4_neigh_lookup
-ffffffc00873260c t ipv4_confirm_neigh
-ffffffc008732808 t ip_neigh_gw4
-ffffffc0087328f0 t ip_neigh_gw4
-ffffffc0087329d8 t ip_neigh_gw6
-ffffffc008732ad0 t ip_neigh_gw6
-ffffffc008732bcc t ip_rt_bug
-ffffffc008732c04 t ip_mkroute_input
-ffffffc008732f70 t ip_error
-ffffffc008733188 t rt_cache_route
-ffffffc008733314 t rt_set_nexthop
-ffffffc0087334d4 t rt_bind_exception
-ffffffc0087336fc t rt_fill_info
-ffffffc008733ae0 t rt_cache_seq_start
-ffffffc008733afc t rt_cache_seq_stop
-ffffffc008733b0c t rt_cache_seq_next
-ffffffc008733b2c t rt_cache_seq_show
-ffffffc008733b7c t rt_cpu_seq_start
-ffffffc008733c20 t rt_cpu_seq_stop
-ffffffc008733c30 t rt_cpu_seq_next
-ffffffc008733ccc t rt_cpu_seq_show
-ffffffc008733d90 t ipv4_sysctl_rtcache_flush
-ffffffc008733e14 T inet_peer_base_init
-ffffffc008733e2c T inet_getpeer
-ffffffc008734188 t lookup
-ffffffc00873433c T inet_putpeer
-ffffffc0087343dc t inetpeer_free_rcu
-ffffffc008734414 T inet_peer_xrlim_allow
-ffffffc00873447c T inetpeer_invalidate_tree
-ffffffc008734574 T inet_add_protocol
-ffffffc0087345e0 T inet_add_offload
-ffffffc00873464c T inet_del_protocol
-ffffffc0087346e0 T inet_del_offload
-ffffffc008734774 T ip_call_ra_chain
-ffffffc0087348a4 T ip_protocol_deliver_rcu
-ffffffc008734a7c T ip_local_deliver
-ffffffc008734b68 T ip_rcv
-ffffffc008734bf4 t ip_rcv_core
-ffffffc008735004 T ip_list_rcv
-ffffffc00873517c t ip_sublist_rcv
-ffffffc0087353b8 t ip_rcv_finish_core
-ffffffc008735810 T ip_defrag
-ffffffc008735fe0 T ip_check_defrag
-ffffffc0087361a8 t pskb_may_pull
-ffffffc008736204 t pskb_may_pull
-ffffffc008736260 t pskb_may_pull
-ffffffc0087362bc t pskb_may_pull
-ffffffc008736318 t pskb_may_pull
-ffffffc00873637c t ip4_frag_init
-ffffffc008736438 t ip4_frag_free
-ffffffc00873646c t ip_expire
-ffffffc008736658 t ip4_key_hashfn
-ffffffc008736730 t ip4_obj_hashfn
-ffffffc008736808 t ip4_obj_cmpfn
-ffffffc00873683c T ip_forward
-ffffffc008736ce8 t NF_HOOK
-ffffffc008736dbc T ip_options_build
-ffffffc008736ec0 T __ip_options_echo
-ffffffc0087371d4 T ip_options_fragment
-ffffffc008737290 T __ip_options_compile
-ffffffc008737868 T ip_options_compile
-ffffffc0087378fc T ip_options_undo
-ffffffc0087379e0 T ip_options_get
-ffffffc008737cdc T ip_forward_options
-ffffffc008737e94 T ip_options_rcv_srr
-ffffffc00873811c T ip_send_check
-ffffffc008738180 T __ip_local_out
-ffffffc00873821c T ip_local_out
-ffffffc0087382f0 T ip_build_and_send_pkt
-ffffffc008738568 T ip_mc_output
-ffffffc0087387d8 t ip_finish_output
-ffffffc008738a14 T ip_output
-ffffffc008738b70 T __ip_queue_xmit
-ffffffc008739010 T ip_queue_xmit
-ffffffc008739040 T ip_fraglist_init
-ffffffc0087391b4 T ip_fraglist_prepare
-ffffffc0087392f8 t ip_copy_metadata
-ffffffc0087394f4 T ip_frag_init
-ffffffc00873954c T ip_frag_next
-ffffffc008739734 T ip_do_fragment
-ffffffc00873a03c T ip_generic_getfrag
-ffffffc00873a17c T ip_append_data
-ffffffc00873a270 t ip_setup_cork
-ffffffc00873a41c t __ip_append_data
-ffffffc00873b284 T ip_append_page
-ffffffc00873b720 T __ip_make_skb
-ffffffc00873bb3c T ip_send_skb
-ffffffc00873bccc T ip_push_pending_frames
-ffffffc00873bd14 T ip_flush_pending_frames
-ffffffc00873bdc4 T ip_make_skb
-ffffffc00873bf6c T ip_send_unicast_reply
-ffffffc00873c2f8 t ip_reply_glue_bits
-ffffffc00873c37c t ip_fragment
-ffffffc00873c498 t ip_finish_output2
-ffffffc00873ca1c T ip_cmsg_recv_offset
-ffffffc00873cd94 T ip_cmsg_send
-ffffffc00873cfd4 T ip_ra_control
-ffffffc00873d19c t ip_ra_destroy_rcu
-ffffffc00873d23c T ip_icmp_error
-ffffffc00873d37c T ip_local_error
-ffffffc00873d484 T ip_recv_error
-ffffffc00873d6ec T __ip_sock_set_tos
-ffffffc00873d798 T ip_sock_set_tos
-ffffffc00873d864 T ip_sock_set_freebind
-ffffffc00873d8b4 T ip_sock_set_recverr
-ffffffc00873d904 T ip_sock_set_mtu_discover
-ffffffc00873d964 T ip_sock_set_pktinfo
-ffffffc00873d9b4 T do_ip_setsockopt
-ffffffc00873e54c t dev_put
-ffffffc00873e5e4 t dev_put
-ffffffc00873e67c t dev_put
-ffffffc00873e718 t dev_put
-ffffffc00873e7b0 t dev_put
-ffffffc00873e848 t memdup_sockptr
-ffffffc00873e8e4 t ip_mcast_join_leave
-ffffffc00873e9d8 t ip_set_mcast_msfilter
-ffffffc00873eb40 T ipv4_pktinfo_prepare
-ffffffc00873ec28 T ip_setsockopt
-ffffffc00873ec60 T do_ip_getsockopt
-ffffffc00873f2a8 t copy_to_sockptr
-ffffffc00873f468 t copy_to_sockptr
-ffffffc00873f628 t copy_to_sockptr
-ffffffc00873f7e8 t sk_dst_get
-ffffffc00873f89c t ip_get_mcast_msfilter
-ffffffc00873f9e0 T ip_getsockopt
-ffffffc00873fa14 t set_mcast_msfilter
-ffffffc00873fb04 T inet_bind_bucket_create
-ffffffc00873fb80 T inet_bind_bucket_destroy
-ffffffc00873fbcc T inet_bind_bucket_match
-ffffffc00873fc00 T inet_bind2_bucket_create
-ffffffc00873fca0 T inet_bind2_bucket_destroy
-ffffffc00873fcfc T inet_bind_hash
-ffffffc00873fd58 T inet_put_port
-ffffffc00873ff2c T __inet_inherit_port
-ffffffc00874030c T inet_bind2_bucket_find
-ffffffc0087403cc T __inet_lookup_listener
-ffffffc00874082c t inet_lhash2_lookup
-ffffffc0087409c4 T sock_gen_put
-ffffffc008740b38 T sock_edemux
-ffffffc008740b68 T __inet_lookup_established
-ffffffc008740d68 t inet_ehashfn
-ffffffc008740ea8 T inet_ehash_insert
-ffffffc0087411b0 T inet_ehash_nolisten
-ffffffc00874130c T __inet_hash
-ffffffc008741664 T inet_hash
-ffffffc0087416a8 T inet_unhash
-ffffffc008741944 T inet_bind2_bucket_match_addr_any
-ffffffc0087419dc T inet_bhash2_addr_any_hashbucket
-ffffffc008741ad8 t ipv6_portaddr_hash
-ffffffc008741c78 t ipv6_portaddr_hash
-ffffffc008741e18 t ipv6_portaddr_hash
-ffffffc008741fbc T inet_bhash2_update_saddr
-ffffffc008741fe8 t __inet_bhash2_update_saddr.llvm.10693474448852098919
-ffffffc0087424c0 T inet_bhash2_reset_saddr
-ffffffc008742500 T __inet_hash_connect
-ffffffc008742b3c T inet_hash_connect
-ffffffc008742ba8 t __inet_check_established
-ffffffc008742e98 T inet_hashinfo2_init_mod
-ffffffc008742f34 T inet_ehash_locks_alloc
-ffffffc008742ff0 T inet_pernet_hashinfo_alloc
-ffffffc008743128 T inet_pernet_hashinfo_free
-ffffffc008743180 T inet_twsk_bind_unhash
-ffffffc008743254 T inet_twsk_free
-ffffffc0087432cc T inet_twsk_put
-ffffffc00874339c T inet_twsk_hashdance
-ffffffc0087435d4 t inet_bhashfn_portaddr
-ffffffc008743814 t inet_bhashfn_portaddr
-ffffffc008743a58 T inet_twsk_alloc
-ffffffc008743b84 t tw_timer_handler
-ffffffc008743bb4 T inet_twsk_deschedule_put
-ffffffc008743c94 t inet_twsk_kill
-ffffffc008743ebc T __inet_twsk_schedule
-ffffffc008743fb4 T inet_twsk_purge
-ffffffc008744230 T inet_rcv_saddr_equal
-ffffffc0087443b0 t ipv6_rcv_saddr_equal
-ffffffc0087444a8 T inet_rcv_saddr_any
-ffffffc0087444e0 T inet_get_local_port_range
-ffffffc008744540 T inet_csk_update_fastreuse
-ffffffc0087446d4 T inet_csk_get_port
-ffffffc008744e24 t inet_bhash2_addr_any_conflict
-ffffffc008744f58 t inet_csk_bind_conflict
-ffffffc0087450b0 T inet_csk_accept
-ffffffc0087452dc t reqsk_put.llvm.1225664121112526936
-ffffffc008745420 T inet_csk_init_xmit_timers
-ffffffc0087454b0 T inet_csk_clear_xmit_timers
-ffffffc00874550c T inet_csk_delete_keepalive_timer
-ffffffc00874553c T inet_csk_reset_keepalive_timer
-ffffffc00874557c T inet_csk_route_req
-ffffffc0087456e8 T inet_csk_route_child_sock
-ffffffc008745844 T inet_rtx_syn_ack
-ffffffc0087458ac T inet_csk_reqsk_queue_drop
-ffffffc0087459f0 T inet_csk_reqsk_queue_drop_and_put
-ffffffc008745a30 T inet_csk_reqsk_queue_hash_add
-ffffffc008745b24 T inet_csk_clone_lock
-ffffffc008745c50 T inet_csk_destroy_sock
-ffffffc008745e1c T inet_csk_prepare_forced_close
-ffffffc008745f40 T inet_csk_listen_start
-ffffffc008746078 T inet_csk_reqsk_queue_add
-ffffffc008746124 t inet_child_forget
-ffffffc00874627c T inet_csk_complete_hashdance
-ffffffc008746628 t inet_reqsk_clone
-ffffffc008746780 T inet_csk_listen_stop
-ffffffc008746b28 T inet_csk_addr2sockaddr
-ffffffc008746b50 T inet_csk_update_pmtu
-ffffffc008746bf0 t inet_csk_rebuild_route
-ffffffc008746d44 t inet_bhash2_conflict
-ffffffc008746e60 t inet_bind_conflict
-ffffffc008746f54 t reqsk_timer_handler
-ffffffc00874748c T tcp_enter_memory_pressure
-ffffffc0087475a8 T tcp_leave_memory_pressure
-ffffffc0087476a4 T tcp_init_sock
-ffffffc00874781c T tcp_poll
-ffffffc008747bd4 T tcp_ioctl
-ffffffc008747ee0 T tcp_mark_push
-ffffffc008747f04 T tcp_skb_entail
-ffffffc008748034 T tcp_push
-ffffffc008748218 T tcp_splice_read
-ffffffc0087484f4 T tcp_stream_alloc_skb
-ffffffc00874860c t sk_wmem_schedule
-ffffffc008748668 T tcp_send_mss
-ffffffc008748734 T tcp_remove_empty_skb
-ffffffc0087488b0 T do_tcp_sendpages
-ffffffc0087490e8 T tcp_sendpage_locked
-ffffffc008749180 T tcp_sendpage
-ffffffc008749230 T tcp_free_fastopen_req
-ffffffc008749274 T tcp_sendmsg_fastopen
-ffffffc0087493e0 T tcp_set_state
-ffffffc00874961c T tcp_sendmsg_locked
-ffffffc00874a3e4 t tcp_downgrade_zcopy_pure
-ffffffc00874a48c T tcp_sendmsg
-ffffffc00874a4f8 T tcp_cleanup_rbuf
-ffffffc00874a574 t __tcp_cleanup_rbuf
-ffffffc00874a658 T tcp_recv_skb
-ffffffc00874a7a8 T tcp_read_sock
-ffffffc00874aa84 T tcp_read_skb
-ffffffc00874acc4 T tcp_read_done
-ffffffc00874ae94 T tcp_peek_len
-ffffffc00874af10 T tcp_set_rcvlowat
-ffffffc00874afd0 T tcp_update_recv_tstamps
-ffffffc00874b044 T tcp_mmap
-ffffffc00874b088 T tcp_recv_timestamp
-ffffffc00874b224 T tcp_recvmsg
-ffffffc00874b45c t tcp_recvmsg_locked
-ffffffc00874bc04 t tcp_inq_hint
-ffffffc00874bca0 T tcp_shutdown
-ffffffc00874bd2c T tcp_orphan_count_sum
-ffffffc00874bdd4 T tcp_check_oom
-ffffffc00874bef0 T __tcp_close
-ffffffc00874c4e0 T tcp_close
-ffffffc00874c594 T tcp_write_queue_purge
-ffffffc00874c848 T tcp_disconnect
-ffffffc00874cd3c T __tcp_sock_set_cork
-ffffffc00874cdcc T tcp_sock_set_cork
-ffffffc00874ce70 T __tcp_sock_set_nodelay
-ffffffc00874cef4 T tcp_sock_set_nodelay
-ffffffc00874cf78 T tcp_sock_set_quickack
-ffffffc00874d040 t __tcp_sock_set_quickack
-ffffffc00874d0fc T tcp_sock_set_syncnt
-ffffffc00874d160 T tcp_sock_set_user_timeout
-ffffffc00874d1ac T tcp_sock_set_keepidle_locked
-ffffffc00874d258 T tcp_sock_set_keepidle
-ffffffc00874d32c T tcp_sock_set_keepintvl
-ffffffc00874d39c T tcp_sock_set_keepcnt
-ffffffc00874d400 T tcp_set_window_clamp
-ffffffc00874d45c T do_tcp_setsockopt
-ffffffc00874dca0 t tcp_repair_options_est
-ffffffc00874de44 t tcp_repair_set_window
-ffffffc00874df2c t tcp_enable_tx_delay
-ffffffc00874dfd8 T tcp_setsockopt
-ffffffc00874e03c T tcp_get_info
-ffffffc00874e4cc T tcp_get_timestamping_opt_stats
-ffffffc00874e998 T do_tcp_getsockopt
-ffffffc00874f324 t check_zeroed_sockptr
-ffffffc00874f36c t tcp_zerocopy_receive
-ffffffc00874fb84 T tcp_bpf_bypass_getsockopt
-ffffffc00874fba4 T tcp_getsockopt
-ffffffc00874fc18 T tcp_done
-ffffffc00874fdfc T tcp_abort
-ffffffc00874ffb0 t tcp_orphan_update
-ffffffc00875007c t tcp_splice_data_recv
-ffffffc0087500e4 t tcp_fast_path_check
-ffffffc008750158 t tcp_peek_sndq
-ffffffc008750238 t copy_from_sockptr_offset
-ffffffc008750420 t copy_from_sockptr_offset
-ffffffc0087505ec t tcp_zerocopy_vm_insert_batch
-ffffffc0087506e8 t tcp_zc_handle_leftover
-ffffffc008750880 t tcp_zerocopy_vm_insert_batch_error
-ffffffc0087509a4 T tcp_enter_quickack_mode
-ffffffc0087509f4 T tcp_initialize_rcv_mss
-ffffffc008750a40 T tcp_rcv_space_adjust
-ffffffc008750c40 T tcp_init_cwnd
-ffffffc008750c74 T tcp_mark_skb_lost
-ffffffc008750db4 T tcp_skb_shift
-ffffffc008750e14 T tcp_clear_retrans
-ffffffc008750e34 T tcp_enter_loss
-ffffffc0087511a8 T tcp_cwnd_reduction
-ffffffc008751270 T tcp_enter_cwr
-ffffffc008751318 T tcp_simple_retransmit
-ffffffc008751494 T tcp_enter_recovery
-ffffffc00875161c T tcp_synack_rtt_meas
-ffffffc0087516e4 t tcp_ack_update_rtt
-ffffffc00875195c T tcp_rearm_rto
-ffffffc008751a74 T tcp_oow_rate_limited
-ffffffc008751b80 T tcp_parse_mss_option
-ffffffc008751c40 T tcp_parse_options
-ffffffc0087520f0 T tcp_reset
-ffffffc008752208 T tcp_fin
-ffffffc0087523c4 t sk_wake_async
-ffffffc008752420 T tcp_send_rcvq
-ffffffc00875260c t tcp_try_rmem_schedule
-ffffffc0087531c0 t tcp_queue_rcv
-ffffffc008753314 T tcp_data_ready
-ffffffc0087533f4 T tcp_rbtree_insert
-ffffffc008753480 T tcp_check_space
-ffffffc008753680 T tcp_rcv_established
-ffffffc008753fec t tcp_ack
-ffffffc008755318 t tcp_data_snd_check
-ffffffc008755380 t tcp_event_data_recv
-ffffffc0087555e8 t __tcp_ack_snd_check
-ffffffc008755808 t tcp_validate_incoming
-ffffffc008755d60 t tcp_urg
-ffffffc008755e7c t tcp_data_queue
-ffffffc0087574a0 t tcp_drop_reason
-ffffffc008757518 T tcp_init_transfer
-ffffffc0087577e8 T tcp_finish_connect
-ffffffc008757940 T tcp_rcv_state_process
-ffffffc008758748 t tcp_send_challenge_ack
-ffffffc008758944 t tcp_rcv_synrecv_state_fastopen
-ffffffc0087589b0 t tcp_update_pacing_rate
-ffffffc008758a3c T inet_reqsk_alloc
-ffffffc008758b98 T tcp_get_syncookie_mss
-ffffffc008758cb8 T tcp_conn_request
-ffffffc008759688 t tcp_prune_ofo_queue
-ffffffc008759860 t tcp_collapse_one
-ffffffc008759960 t tcp_try_coalesce
-ffffffc008759b3c t tcp_sacktag_write_queue
-ffffffc00875a7a4 t tcp_process_tlp_ack
-ffffffc00875a9bc t tcp_fastretrans_alert
-ffffffc00875b520 t tcp_newly_delivered
-ffffffc00875b654 t tcp_sacktag_walk
-ffffffc00875bcb0 t tcp_check_sack_reordering
-ffffffc00875bde0 t tcp_sacktag_one
-ffffffc00875bfd8 t tcp_shifted_skb
-ffffffc00875c2d8 t tcp_rtx_queue_unlink_and_free
-ffffffc00875c424 t tcp_rtx_queue_unlink_and_free
-ffffffc00875c570 t tcp_mtup_probe_success
-ffffffc00875c6e4 t tcp_try_undo_recovery
-ffffffc00875c8e4 t tcp_add_reno_sack
-ffffffc00875ca48 t tcp_try_undo_dsack
-ffffffc00875cbb4 t tcp_try_undo_loss
-ffffffc00875ce68 t tcp_mark_head_lost
-ffffffc00875cf74 t tcp_ecn_check_ce
-ffffffc00875d0d4 t tcp_grow_window
-ffffffc00875d300 t tcp_gro_dev_warn
-ffffffc00875d38c t tcp_send_dupack
-ffffffc00875d66c t tcp_check_urg
-ffffffc00875d788 t tcp_dsack_extend
-ffffffc00875d8e8 t tcp_sack_compress_send_ack
-ffffffc00875da08 t tcp_rcv_fastopen_synack
-ffffffc00875dcbc T tcp_mstamp_refresh
-ffffffc00875dd18 T tcp_cwnd_restart
-ffffffc00875de2c T tcp_select_initial_window
-ffffffc00875df40 T tcp_release_cb
-ffffffc00875e158 t tcp_tsq_write
-ffffffc00875e2c0 t tcp_tasklet_func
-ffffffc00875e434 T tcp_wfree
-ffffffc00875e6a4 T tcp_pace_kick
-ffffffc00875e744 t tcp_tsq_handler
-ffffffc00875e828 T tcp_fragment
-ffffffc00875ec74 t tcp_adjust_pcount
-ffffffc00875ed50 T tcp_trim_head
-ffffffc00875eec0 t __pskb_trim_head
-ffffffc00875f06c T tcp_mtu_to_mss
-ffffffc00875f0f8 T tcp_mss_to_mtu
-ffffffc00875f15c T tcp_mtup_init
-ffffffc00875f230 T tcp_sync_mss
-ffffffc00875f394 T tcp_current_mss
-ffffffc00875f46c T tcp_chrono_start
-ffffffc00875f4c4 T tcp_chrono_stop
-ffffffc00875f57c T tcp_schedule_loss_probe
-ffffffc00875f710 T tcp_send_loss_probe
-ffffffc00875f9ec t tcp_write_xmit
-ffffffc008760a8c t skb_still_in_host_queue
-ffffffc008760be0 T __tcp_retransmit_skb
-ffffffc008761368 T __tcp_push_pending_frames
-ffffffc008761444 T tcp_push_one
-ffffffc0087614a0 T __tcp_select_window
-ffffffc008761690 T tcp_skb_collapse_tstamp
-ffffffc008761700 t tcp_update_skb_after_send
-ffffffc0087617e4 T tcp_retransmit_skb
-ffffffc00876189c T tcp_xmit_retransmit_queue
-ffffffc008761e24 T sk_forced_mem_schedule
-ffffffc008761f1c T tcp_send_fin
-ffffffc008762238 T tcp_send_active_reset
-ffffffc00876253c T tcp_send_synack
-ffffffc008762740 T tcp_make_synack
-ffffffc008762b70 t tcp_options_write
-ffffffc008762d90 T tcp_connect
-ffffffc008763a10 T tcp_send_delayed_ack
-ffffffc008763b14 T tcp_send_ack
-ffffffc008763b44 T __tcp_send_ack
-ffffffc008763c9c t __tcp_transmit_skb
-ffffffc008764884 T tcp_send_window_probe
-ffffffc008764904 t tcp_xmit_probe_skb
-ffffffc008764a5c T tcp_write_wakeup
-ffffffc008764c74 t tcp_event_new_data_sent
-ffffffc008764d9c T tcp_send_probe0
-ffffffc008764edc T tcp_rtx_synack
-ffffffc00876517c t tcp_init_tso_segs
-ffffffc0087651d0 t tcp_mtu_check_reprobe
-ffffffc008765274 t tcp_can_coalesce_send_queue_head
-ffffffc00876530c t tcp_wmem_free_skb
-ffffffc00876541c t tcp_syn_options
-ffffffc008765620 T tcp_clamp_probe0_to_user_timeout
-ffffffc008765698 T tcp_delack_timer_handler
-ffffffc00876577c T tcp_retransmit_timer
-ffffffc00876622c t tcp_write_err
-ffffffc0087662a8 T tcp_write_timer_handler
-ffffffc008766548 T tcp_syn_ack_timeout
-ffffffc008766578 T tcp_set_keepalive
-ffffffc008766600 T tcp_init_xmit_timers
-ffffffc008766688 t tcp_write_timer
-ffffffc0087667d8 t tcp_delack_timer
-ffffffc008766948 t tcp_keepalive_timer
-ffffffc008766c28 t tcp_compressed_ack_kick
-ffffffc008766d98 T tcp_twsk_unique
-ffffffc008766f50 T tcp_v4_connect
-ffffffc008767378 t ip_route_newports
-ffffffc00876741c T tcp_v4_mtu_reduced
-ffffffc008767564 T tcp_req_err
-ffffffc00876762c t reqsk_put
-ffffffc00876776c t reqsk_put
-ffffffc0087678b0 T tcp_ld_RTO_revert
-ffffffc0087679e8 T tcp_v4_err
-ffffffc008767f18 t sock_put
-ffffffc008767fa0 t sock_put
-ffffffc008768028 t sock_put
-ffffffc0087680b0 t sock_put
-ffffffc008768138 t sock_put
-ffffffc0087681c4 T __tcp_v4_send_check
-ffffffc008768240 T tcp_v4_send_check
-ffffffc0087682bc t tcp_v4_reqsk_send_ack
-ffffffc0087683a4 t tcp_v4_send_reset
-ffffffc0087687ec t tcp_v4_reqsk_destructor
-ffffffc00876881c t tcp_v4_route_req
-ffffffc00876891c t tcp_v4_init_seq
-ffffffc008768968 t tcp_v4_init_ts_off
-ffffffc0087689a4 t tcp_v4_send_synack
-ffffffc008768b24 T tcp_v4_conn_request
-ffffffc008768bd4 T tcp_v4_syn_recv_sock
-ffffffc008769008 T inet_sk_rx_dst_set
-ffffffc0087690a0 T tcp_v4_get_syncookie
-ffffffc0087690b4 T tcp_v4_do_rcv
-ffffffc0087693e8 t tcp_checksum_complete
-ffffffc00876945c t tcp_checksum_complete
-ffffffc0087694d0 t trace_tcp_bad_csum
-ffffffc008769584 T tcp_v4_early_demux
-ffffffc0087696f0 T tcp_add_backlog
-ffffffc008769bbc T tcp_filter
-ffffffc008769bf8 T tcp_v4_rcv
-ffffffc00876a850 t xfrm4_policy_check
-ffffffc00876a8dc t xfrm4_policy_check
-ffffffc00876a950 t tcp_v4_fill_cb
-ffffffc00876aa04 t tcp_segs_in
-ffffffc00876aa64 t tcp_segs_in
-ffffffc00876aac8 T tcp_v4_destroy_sock
-ffffffc00876acbc T tcp_seq_start
-ffffffc00876af7c t tcp_get_idx
-ffffffc00876b170 T tcp_seq_next
-ffffffc00876b2d0 t listening_get_next
-ffffffc00876b424 t established_get_next
-ffffffc00876b598 T tcp_seq_stop
-ffffffc00876b614 T tcp4_proc_exit
-ffffffc00876b668 T tcp_stream_memory_free
-ffffffc00876b6b8 t tcp_v4_pre_connect
-ffffffc00876b6d4 t tcp_v4_init_sock
-ffffffc00876b718 t tcp_v4_send_ack
-ffffffc00876b99c t tcp4_seq_show
-ffffffc00876bdf8 T tcp_timewait_state_process
-ffffffc00876c178 T tcp_time_wait
-ffffffc00876c3c0 T tcp_twsk_destructor
-ffffffc00876c3d0 T tcp_twsk_purge
-ffffffc00876c488 T tcp_openreq_init_rwin
-ffffffc00876c620 T tcp_ca_openreq_child
-ffffffc00876c6c8 T tcp_create_openreq_child
-ffffffc00876c9c4 T tcp_check_req
-ffffffc00876cfc8 T tcp_child_process
-ffffffc00876d204 T tcp_ca_find
-ffffffc00876d284 T tcp_set_ca_state
-ffffffc00876d388 T tcp_ca_find_key
-ffffffc00876d3dc T tcp_register_congestion_control
-ffffffc00876d5d0 T tcp_unregister_congestion_control
-ffffffc00876d644 T tcp_ca_get_key_by_name
-ffffffc00876d6ec T tcp_ca_get_name_by_key
-ffffffc00876d788 T tcp_assign_congestion_control
-ffffffc00876d8b0 T tcp_init_congestion_control
-ffffffc00876d9c8 T tcp_cleanup_congestion_control
-ffffffc00876da18 T tcp_set_default_congestion_control
-ffffffc00876daec T tcp_get_available_congestion_control
-ffffffc00876dbb8 T tcp_get_default_congestion_control
-ffffffc00876dc14 T tcp_get_allowed_congestion_control
-ffffffc00876dcec T tcp_set_allowed_congestion_control
-ffffffc00876ded0 T tcp_set_congestion_control
-ffffffc00876e120 T tcp_slow_start
-ffffffc00876e16c T tcp_cong_avoid_ai
-ffffffc00876e214 T tcp_reno_cong_avoid
-ffffffc00876e310 T tcp_reno_ssthresh
-ffffffc00876e334 T tcp_reno_undo_cwnd
-ffffffc00876e354 T tcp_update_metrics
-ffffffc00876e5d0 t tcp_get_metrics
-ffffffc00876eb50 T tcp_init_metrics
-ffffffc00876ecd4 T tcp_peer_is_proven
-ffffffc00876ef14 T tcp_fastopen_cache_get
-ffffffc00876f004 T tcp_fastopen_cache_set
-ffffffc00876f148 t tcp_metrics_nl_cmd_get
-ffffffc00876f44c t tcp_metrics_nl_dump
-ffffffc00876f5b4 t tcp_metrics_nl_cmd_del
-ffffffc00876f8ac t tcp_metrics_fill_info
-ffffffc00876fc10 T tcp_fastopen_init_key_once
-ffffffc00876fd04 T tcp_fastopen_reset_cipher
-ffffffc00876fe10 T tcp_fastopen_destroy_cipher
-ffffffc00876fe50 t tcp_fastopen_ctx_free
-ffffffc00876fe80 T tcp_fastopen_ctx_destroy
-ffffffc00876feec T tcp_fastopen_get_cipher
-ffffffc00876ffa4 T tcp_fastopen_add_skb
-ffffffc0087701a8 T tcp_try_fastopen
-ffffffc008770a9c T tcp_fastopen_cookie_check
-ffffffc008770bcc T tcp_fastopen_active_should_disable
-ffffffc008770c6c T tcp_fastopen_defer_connect
-ffffffc008770d90 T tcp_fastopen_active_disable
-ffffffc008770e94 T tcp_fastopen_active_disable_ofo_check
-ffffffc008771094 T tcp_fastopen_active_detect_blackhole
-ffffffc008771240 T tcp_rate_skb_sent
-ffffffc0087712c4 T tcp_rate_skb_delivered
-ffffffc008771394 T tcp_rate_gen
-ffffffc008771498 T tcp_rate_check_app_limited
-ffffffc008771518 T tcp_rack_skb_timeout
-ffffffc008771560 T tcp_rack_mark_lost
-ffffffc008771628 t tcp_rack_detect_loss
-ffffffc0087717c0 T tcp_rack_advance
-ffffffc008771838 T tcp_rack_reo_timeout
-ffffffc00877194c T tcp_rack_update_reo_wnd
-ffffffc0087719e4 T tcp_newreno_mark_lost
-ffffffc008771a9c T tcp_register_ulp
-ffffffc008771b70 T tcp_unregister_ulp
-ffffffc008771be4 T tcp_get_available_ulp
-ffffffc008771cb4 T tcp_update_ulp
-ffffffc008771d04 T tcp_cleanup_ulp
-ffffffc008771d6c T tcp_set_ulp
-ffffffc008771e94 T tcp_gso_segment
-ffffffc00877230c t refcount_sub_and_test
-ffffffc008772398 t refcount_sub_and_test
-ffffffc008772428 T tcp_gro_receive
-ffffffc008772724 T tcp_gro_complete
-ffffffc0087727a8 t tcp4_gso_segment.llvm.11141352021969888563
-ffffffc00877287c t tcp4_gro_receive.llvm.11141352021969888563
-ffffffc008772a18 t tcp4_gro_complete.llvm.11141352021969888563
-ffffffc008772b34 T __ip4_datagram_connect
-ffffffc008772e68 T ip4_datagram_connect
-ffffffc008772ed4 T ip4_datagram_release_cb
-ffffffc0087730c8 T raw_hash_sk
-ffffffc0087732b4 T raw_unhash_sk
-ffffffc008773404 T raw_v4_match
-ffffffc008773470 T raw_local_deliver
-ffffffc008773670 T raw_icmp_error
-ffffffc0087738ac T raw_rcv
-ffffffc0087739e8 t raw_rcv_skb
-ffffffc008773a54 T raw_abort
-ffffffc008773ab8 t raw_close
-ffffffc008773b00 t raw_ioctl
-ffffffc008773e08 t raw_sk_init
-ffffffc008773e2c t raw_destroy
-ffffffc008773e78 t raw_setsockopt
-ffffffc008774090 t raw_getsockopt
-ffffffc0087744ec t raw_sendmsg
-ffffffc008774a30 t raw_recvmsg
-ffffffc008774c14 t raw_bind
-ffffffc008774d5c T raw_seq_start
-ffffffc008774e70 T raw_seq_next
-ffffffc008774f40 T raw_seq_stop
-ffffffc008774f74 t raw_send_hdrinc
-ffffffc0087753c8 t raw_getfrag
-ffffffc0087754f0 t ip_select_ident
-ffffffc008775548 t ip_fast_csum
-ffffffc0087755f4 t raw_seq_show
-ffffffc008775730 T udp_lib_get_port
-ffffffc008775d14 t udp_lib_lport_inuse
-ffffffc008775e70 t udp_lib_lport_inuse2
-ffffffc008775fa4 T udp_v4_get_port
-ffffffc008776088 T __udp4_lib_lookup
-ffffffc0087764f4 t udp4_lib_lookup2
-ffffffc0087766d4 T udp4_lib_lookup_skb
-ffffffc008776750 T udp_encap_enable
-ffffffc00877678c T udp_encap_disable
-ffffffc0087767c0 T __udp4_lib_err
-ffffffc008776d0c T udp_err
-ffffffc008776d40 T udp_flush_pending_frames
-ffffffc008776d7c T udp4_hwcsum
-ffffffc008776e9c T udp_set_csum
-ffffffc008776fb4 T udp_push_pending_frames
-ffffffc00877701c t udp_send_skb
-ffffffc008777490 T udp_cmsg_send
-ffffffc008777550 T udp_sendmsg
-ffffffc008777e1c t udplite_getfrag
-ffffffc008777eb4 t udplite_getfrag
-ffffffc008777f48 t dst_clone
-ffffffc008777fcc T udp_sendpage
-ffffffc0087781b4 T udp_skb_destructor
-ffffffc0087781f0 t udp_rmem_release
-ffffffc008778314 T __udp_enqueue_schedule_skb
-ffffffc008778600 T udp_destruct_common
-ffffffc008778774 T udp_init_sock
-ffffffc0087787d8 t udp_destruct_sock
-ffffffc008778818 T skb_consume_udp
-ffffffc0087788f0 T udp_ioctl
-ffffffc008778bd4 t first_packet_length
-ffffffc008778d1c T __skb_recv_udp
-ffffffc00877901c T udp_read_skb
-ffffffc008779300 t udp_lib_checksum_complete
-ffffffc00877938c t udp_lib_checksum_complete
-ffffffc00877941c T udp_recvmsg
-ffffffc008779b90 T udp_pre_connect
-ffffffc008779bac T __udp_disconnect
-ffffffc008779cec T udp_disconnect
-ffffffc008779e3c T udp_lib_unhash
-ffffffc00877a044 T udp_lib_rehash
-ffffffc00877a1b8 T udp_v4_rehash
-ffffffc00877a254 T udp_sk_rx_dst_set
-ffffffc00877a334 T __udp4_lib_rcv
-ffffffc00877ac2c t udp_unicast_rcv_skb
-ffffffc00877ace0 T udp_v4_early_demux
-ffffffc00877b128 T udp_rcv
-ffffffc00877b160 T udp_destroy_sock
-ffffffc00877b230 T udp_lib_setsockopt
-ffffffc00877b6f8 T udp_setsockopt
-ffffffc00877b744 T udp_lib_getsockopt
-ffffffc00877bc48 T udp_getsockopt
-ffffffc00877bc8c T udp_poll
-ffffffc00877bd5c T udp_abort
-ffffffc00877bec4 t udp_lib_close
-ffffffc00877bef0 t udp_lib_close
-ffffffc00877bf1c t udp_lib_close
-ffffffc00877bf48 t udp_lib_close
-ffffffc00877bf74 t udp_lib_hash
-ffffffc00877bf80 t udp_lib_hash
-ffffffc00877bf8c t udp_lib_hash
-ffffffc00877bf98 t udp_lib_hash
-ffffffc00877bfa4 T udp_seq_start
-ffffffc00877c0a0 T udp_seq_next
-ffffffc00877c17c T udp_seq_stop
-ffffffc00877c1e0 T udp4_seq_show
-ffffffc00877c35c T udp4_proc_exit
-ffffffc00877c3b0 T udp_flow_hashrnd
-ffffffc00877c458 t lookup_reuseport
-ffffffc00877c5cc t lookup_reuseport
-ffffffc00877c828 t __first_packet_length
-ffffffc00877c9ec t udp_queue_rcv_skb
-ffffffc00877cc58 t udp_queue_rcv_one_skb
-ffffffc00877d3f4 t udp_get_first
-ffffffc00877d4e4 t udplite_sk_init
-ffffffc00877d528 t udplite_rcv
-ffffffc00877d560 t udplite_err
-ffffffc00877d594 T skb_udp_tunnel_segment
-ffffffc00877da04 T __udp_gso_segment
-ffffffc00877dea4 T udp_gro_receive
-ffffffc00877e2b4 T udp_gro_complete
-ffffffc00877e43c t __udpv4_gso_segment_csum
-ffffffc00877e55c t skb_gro_receive_list
-ffffffc00877e630 t udp4_ufo_fragment.llvm.11753955602471872112
-ffffffc00877e7a4 t udp4_gro_receive.llvm.11753955602471872112
-ffffffc00877ea9c t udp4_gro_complete.llvm.11753955602471872112
-ffffffc00877ed10 t arp_hash
-ffffffc00877ed38 t arp_key_eq
-ffffffc00877ed58 t arp_constructor
-ffffffc00877efd0 t parp_redo
-ffffffc00877effc t arp_is_multicast
-ffffffc00877f01c T arp_mc_map
-ffffffc00877f164 T arp_send
-ffffffc00877f1a4 t arp_send_dst
-ffffffc00877f2b0 T arp_create
-ffffffc00877f49c T arp_xmit
-ffffffc00877f4cc T arp_invalidate
-ffffffc00877f698 T arp_ioctl
-ffffffc00877fb20 t arp_req_delete
-ffffffc00877fc7c t arp_req_set
-ffffffc00877ff30 t arp_req_get
-ffffffc0087800a4 T arp_ifdown
-ffffffc0087800e0 t arp_solicit
-ffffffc00878033c t arp_error_report
-ffffffc0087803b8 t arp_process
-ffffffc008780948 t arp_ignore
-ffffffc008780a04 t arp_filter
-ffffffc008780ad8 t arp_fwd_proxy
-ffffffc008780b58 t __neigh_lookup
-ffffffc008780bcc t __neigh_lookup
-ffffffc008780c40 t arp_accept
-ffffffc008780cc0 t arp_is_garp
-ffffffc008780d64 t arp_rcv
-ffffffc008780e98 t arp_seq_start
-ffffffc008780ed0 t arp_seq_show
-ffffffc00878122c t arp_netdev_event
-ffffffc008781328 T icmp_global_allow
-ffffffc00878147c T icmp_out_count
-ffffffc008781558 T __icmp_send
-ffffffc008781970 t icmp_xmit_lock
-ffffffc008781a08 t icmp_route_lookup
-ffffffc008781cd0 t icmpv4_xrlim_allow
-ffffffc008781dbc t icmp_push_reply
-ffffffc008781f0c T icmp_build_probe
-ffffffc008782284 t dev_hold
-ffffffc008782324 T icmp_rcv
-ffffffc008782804 t icmp_echo
-ffffffc0087828f0 T ip_icmp_error_rfc4884
-ffffffc008782abc T icmp_err
-ffffffc008782b5c t ip_route_input
-ffffffc008782c90 t icmp_glue_bits
-ffffffc008782d18 t icmp_reply
-ffffffc00878304c t icmp_discard
-ffffffc008783060 t icmp_unreach
-ffffffc008783270 t icmp_redirect
-ffffffc008783324 t icmp_timestamp
-ffffffc00878342c t icmp_tag_validation
-ffffffc008783484 t icmp_socket_deliver
-ffffffc008783578 T __ip_dev_find
-ffffffc008783728 T inet_lookup_ifaddr_rcu
-ffffffc008783780 T in_dev_finish_destroy
-ffffffc008783884 T inet_addr_onlink
-ffffffc008783920 T inetdev_by_index
-ffffffc008783988 T inet_ifa_byprefix
-ffffffc008783a48 T devinet_ioctl
-ffffffc008783fbc t inet_abc_len
-ffffffc00878403c t inet_set_ifa
-ffffffc008784178 T inet_gifconf
-ffffffc0087843e4 T inet_select_addr
-ffffffc008784558 T inet_confirm_addr
-ffffffc008784620 t confirm_addr_indev
-ffffffc00878473c T register_inetaddr_notifier
-ffffffc008784774 T unregister_inetaddr_notifier
-ffffffc0087847ac T register_inetaddr_validator_notifier
-ffffffc0087847e4 T unregister_inetaddr_validator_notifier
-ffffffc00878481c T inet_netconf_notify_devconf
-ffffffc008784988 t inet_netconf_fill_devconf
-ffffffc008784be8 t inet_rtm_newaddr
-ffffffc008785164 t inet_rtm_deladdr
-ffffffc0087853f8 t inet_dump_ifaddr
-ffffffc0087858b0 t inet_netconf_get_devconf
-ffffffc008785b24 t inet_netconf_dump_devconf
-ffffffc008785d74 t __inet_del_ifa
-ffffffc008786138 t rtmsg_ifa
-ffffffc008786258 t inet_fill_ifaddr
-ffffffc008786530 t put_cacheinfo
-ffffffc0087865dc t inet_rcu_free_ifa
-ffffffc00878667c t __inet_insert_ifa
-ffffffc008786974 t __devinet_sysctl_register
-ffffffc008786aa8 t __devinet_sysctl_unregister
-ffffffc008786b1c t devinet_sysctl_forward
-ffffffc008786d9c t devinet_conf_proc
-ffffffc008787038 t ipv4_doint_and_flush
-ffffffc0087870cc t inetdev_event
-ffffffc00878765c t inetdev_init
-ffffffc00878788c t devinet_sysctl_register
-ffffffc008787938 t in_dev_rcu_put
-ffffffc0087879c4 t check_lifetime
-ffffffc008787c3c t inet_fill_link_af
-ffffffc008787dac t inet_get_link_af_size
-ffffffc008787dd4 t inet_validate_link_af
-ffffffc008787ee0 t inet_set_link_af
-ffffffc00878803c T inet_sock_destruct
-ffffffc0087881e0 T inet_listen
-ffffffc0087882e4 T inet_release
-ffffffc008788378 T inet_bind
-ffffffc0087883e8 T __inet_bind
-ffffffc008788648 T inet_dgram_connect
-ffffffc008788780 T __inet_stream_connect
-ffffffc008788ae0 T inet_stream_connect
-ffffffc008788b5c T inet_accept
-ffffffc008788d6c T inet_getname
-ffffffc008788e34 T inet_send_prepare
-ffffffc008788f70 T inet_sendmsg
-ffffffc008788ff8 T inet_sendpage
-ffffffc0087890c8 T inet_recvmsg
-ffffffc0087891f8 T inet_shutdown
-ffffffc008789368 T inet_ioctl
-ffffffc008789668 T inet_register_protosw
-ffffffc008789748 T inet_unregister_protosw
-ffffffc0087897d8 T inet_sk_rebuild_header
-ffffffc008789be4 T inet_sk_set_state
-ffffffc008789ccc T inet_sk_state_store
-ffffffc008789db8 T inet_gso_segment
-ffffffc00878a104 T inet_gro_receive
-ffffffc00878a3dc T inet_current_timestamp
-ffffffc00878a484 T inet_recv_error
-ffffffc00878a4f4 T inet_gro_complete
-ffffffc00878a5e0 T inet_ctl_sock_create
-ffffffc00878a6ac T snmp_fold_field
-ffffffc00878a758 t ipip_gso_segment
-ffffffc00878a7a0 t ipip_gro_receive
-ffffffc00878a7ec t ipip_gro_complete
-ffffffc00878a8fc t inet_create
-ffffffc00878ad4c T igmp_rcv
-ffffffc00878b588 T __ip_mc_inc_group
-ffffffc00878b5b8 t ____ip_mc_inc_group
-ffffffc00878b874 T ip_mc_inc_group
-ffffffc00878b8a8 T ip_mc_check_igmp
-ffffffc00878bbe4 T __ip_mc_dec_group
-ffffffc00878bd7c t __igmp_group_dropped
-ffffffc00878bf70 t ip_ma_put
-ffffffc00878c074 T ip_mc_unmap
-ffffffc00878c110 T ip_mc_remap
-ffffffc00878c1b0 t igmpv3_del_delrec
-ffffffc00878c3ac t igmp_group_added
-ffffffc00878c5bc T ip_mc_down
-ffffffc00878c71c T ip_mc_init_dev
-ffffffc00878c7f0 t igmp_gq_timer_expire
-ffffffc00878c898 t igmp_ifc_timer_expire
-ffffffc00878cdd0 T ip_mc_up
-ffffffc00878cea4 T ip_mc_destroy_dev
-ffffffc00878cfc4 t igmpv3_clear_delrec
-ffffffc00878d1a4 T ip_mc_join_group
-ffffffc00878d1d0 t __ip_mc_join_group.llvm.3503779546353227531
-ffffffc00878d348 T ip_mc_join_group_ssm
-ffffffc00878d374 T ip_mc_leave_group
-ffffffc00878d56c t ip_mc_find_dev
-ffffffc00878d668 T ip_mc_source
-ffffffc00878dafc t ip_mc_add_src
-ffffffc00878ddf4 t ip_mc_del_src
-ffffffc00878dff0 T ip_mc_msfilter
-ffffffc00878e324 T ip_mc_msfget
-ffffffc00878e564 T ip_mc_gsfget
-ffffffc00878e724 T ip_mc_sf_allow
-ffffffc00878e868 T ip_mc_drop_socket
-ffffffc00878e9f4 T ip_check_mc_rcu
-ffffffc00878eb24 t igmp_gq_start_timer
-ffffffc00878ebec t igmp_timer_expire
-ffffffc00878edf0 t igmp_send_report
-ffffffc00878f06c t igmpv3_send_report
-ffffffc00878f1f0 t add_grec
-ffffffc00878f6e4 t add_grec
-ffffffc00878fba4 t igmpv3_sendpack
-ffffffc00878fc10 t igmpv3_newpack
-ffffffc00878fee4 t is_in
-ffffffc008790014 t is_in
-ffffffc008790144 t ip_mc_validate_checksum
-ffffffc00879024c t igmpv3_add_delrec
-ffffffc0087903ac t igmp_ifc_event
-ffffffc0087904cc t ip_mc_del1_src
-ffffffc008790638 t sf_setstate
-ffffffc008790790 t sf_setstate
-ffffffc008790914 t igmp_mc_seq_start
-ffffffc008790a7c t igmp_mc_seq_stop
-ffffffc008790ab0 t igmp_mc_seq_next
-ffffffc008790be0 t igmp_mc_seq_show
-ffffffc008790d60 t igmp_mcf_seq_start
-ffffffc008790f0c t igmp_mcf_seq_stop
-ffffffc008790f5c t igmp_mcf_seq_next
-ffffffc0087910f8 t igmp_mcf_seq_show
-ffffffc00879116c t igmp_netdev_event
-ffffffc0087912d0 T fib_new_table
-ffffffc0087913c0 T fib_get_table
-ffffffc00879140c T fib_unmerge
-ffffffc008791528 T fib_flush
-ffffffc0087915b4 T inet_addr_type_table
-ffffffc008791714 T inet_addr_type
-ffffffc008791860 T inet_dev_addr_type
-ffffffc0087919d0 T inet_addr_type_dev_table
-ffffffc008791b1c T fib_compute_spec_dst
-ffffffc008791d64 T fib_info_nh_uses_dev
-ffffffc008791dd4 T fib_validate_source
-ffffffc00879217c T ip_rt_ioctl
-ffffffc0087926ec T fib_gw_from_via
-ffffffc0087927d8 T ip_valid_fib_dump_req
-ffffffc008792a4c T fib_add_ifaddr
-ffffffc008792e08 T fib_modify_prefix_metric
-ffffffc008793018 T fib_del_ifaddr
-ffffffc0087936ec t inet_rtm_newroute
-ffffffc0087937d0 t inet_rtm_delroute
-ffffffc00879390c t inet_dump_fib
-ffffffc008793b78 t ip_fib_net_exit
-ffffffc008793cc4 t nl_fib_input
-ffffffc008793e84 t fib_netdev_event
-ffffffc0087940f4 t fib_disable_ip
-ffffffc0087941bc t fib_inetaddr_event
-ffffffc008794344 t rtm_to_fib_config
-ffffffc008794684 T fib_nh_common_release
-ffffffc0087947d8 t rt_fibinfo_free_cpus
-ffffffc008794898 T fib_nh_release
-ffffffc0087948c8 T free_fib_info
-ffffffc00879491c t free_fib_info_rcu
-ffffffc008794a48 T fib_release_info
-ffffffc008794c14 T ip_fib_check_default
-ffffffc008794ce8 T fib_nlmsg_size
-ffffffc008794e3c T rtmsg_fib
-ffffffc008794fd8 T fib_dump_info
-ffffffc00879533c T fib_nh_common_init
-ffffffc0087953f0 T fib_nh_init
-ffffffc0087954f4 T fib_nh_match
-ffffffc0087955c8 T fib_metrics_match
-ffffffc00879571c T fib_check_nh
-ffffffc008795dc0 T fib_info_update_nhc_saddr
-ffffffc008795e3c T fib_result_prefsrc
-ffffffc008795f00 T fib_create_info
-ffffffc0087965ac t fib_info_hash_move
-ffffffc008796798 t nexthop_get
-ffffffc008796858 t nexthop_get
-ffffffc008796918 t fib_valid_prefsrc
-ffffffc0087969c4 t fib_find_info
-ffffffc008796bbc t fib_info_hashfn
-ffffffc008796c30 T fib_nexthop_info
-ffffffc008796e24 T fib_add_nexthop
-ffffffc008796f44 T fib_sync_down_addr
-ffffffc008796fe4 T fib_nhc_update_mtu
-ffffffc00879705c T fib_sync_mtu
-ffffffc008797134 T fib_sync_down_dev
-ffffffc008797350 T fib_sync_up
-ffffffc008797554 T fib_select_path
-ffffffc0087979d0 t fib_detect_death
-ffffffc008797b8c T fib_alias_hw_flags_set
-ffffffc008797df8 T fib_table_insert
-ffffffc0087983ec t call_fib_entry_notifiers
-ffffffc00879846c t fib_insert_alias
-ffffffc0087989c8 t fib_remove_alias
-ffffffc008798cb4 T fib_lookup_good_nhc
-ffffffc008798d28 T fib_table_lookup
-ffffffc00879938c t trace_fib_table_lookup
-ffffffc008799448 t nexthop_get_nhc_lookup
-ffffffc00879956c T fib_table_delete
-ffffffc0087998f4 T fib_trie_unmerge
-ffffffc008799d78 T fib_trie_table
-ffffffc008799df4 T fib_table_flush_external
-ffffffc00879a06c t resize
-ffffffc00879ae58 t __node_free_rcu
-ffffffc00879aea4 T fib_table_flush
-ffffffc00879b288 T fib_info_notify_update
-ffffffc00879b3e0 T fib_notify
-ffffffc00879b638 T fib_free_table
-ffffffc00879b670 t __trie_free_rcu.llvm.10726192159990906359
-ffffffc00879b6a0 T fib_table_dump
-ffffffc00879ba5c t fib_triestat_seq_show
-ffffffc00879bec8 t __alias_free_mem
-ffffffc00879befc t put_child
-ffffffc00879c024 t nexthop_fib_nhc
-ffffffc00879c084 t replace
-ffffffc00879c1d0 t update_children
-ffffffc00879c248 t fib_trie_seq_start
-ffffffc00879c3d4 t fib_trie_seq_stop
-ffffffc00879c400 t fib_trie_seq_next
-ffffffc00879c5bc t fib_trie_seq_show
-ffffffc00879c8dc t fib_route_seq_start
-ffffffc00879ca90 t fib_route_seq_stop
-ffffffc00879cabc t fib_route_seq_next
-ffffffc00879cbec t fib_route_seq_show
-ffffffc00879ce90 T call_fib4_notifier
-ffffffc00879cec4 T call_fib4_notifiers
-ffffffc00879cf70 t fib4_seq_read
-ffffffc00879cffc t fib4_dump
-ffffffc00879d060 T inet_frags_init
-ffffffc00879d0ec T inet_frags_fini
-ffffffc00879d194 T fqdir_init
-ffffffc00879d27c T fqdir_exit
-ffffffc00879d2d8 t fqdir_work_fn
-ffffffc00879d350 T inet_frag_kill
-ffffffc00879d7d0 T inet_frag_rbtree_purge
-ffffffc00879d870 T inet_frag_destroy
-ffffffc00879d990 t inet_frag_destroy_rcu
-ffffffc00879da00 T inet_frag_find
-ffffffc00879e174 T inet_frag_queue_insert
-ffffffc00879e2ec T inet_frag_reasm_prepare
-ffffffc00879e5d0 T inet_frag_reasm_finish
-ffffffc00879e818 T inet_frag_pull_head
-ffffffc00879e8e0 t inet_frags_free_cb
-ffffffc00879e9d0 t fqdir_free_fn
-ffffffc00879ead0 T ping_get_port
-ffffffc00879ed1c T ping_hash
-ffffffc00879ed28 T ping_unhash
-ffffffc00879ee80 T ping_init_sock
-ffffffc00879efe0 T ping_close
-ffffffc00879f00c T ping_bind
-ffffffc00879f390 T ping_err
-ffffffc00879f694 t ping_lookup
-ffffffc00879f7c8 T ping_getfrag
-ffffffc00879f89c T ping_common_sendmsg
-ffffffc00879f9d0 T ping_recvmsg
-ffffffc00879fd24 T ping_queue_rcv_skb
-ffffffc00879fdb4 T ping_rcv
-ffffffc00879fe9c t ping_pre_connect
-ffffffc00879feb8 t ping_v4_sendmsg
-ffffffc0087a03fc T ping_seq_start
-ffffffc0087a0464 t ping_get_idx
-ffffffc0087a0594 T ping_seq_next
-ffffffc0087a06b8 T ping_seq_stop
-ffffffc0087a06ec T ping_proc_exit
-ffffffc0087a073c t ping_v4_push_pending_frames
-ffffffc0087a07ec t ping_v4_seq_start
-ffffffc0087a085c t ping_v4_seq_show
-ffffffc0087a09c8 T iptunnel_xmit
-ffffffc0087a0c48 T __iptunnel_pull_header
-ffffffc0087a0dec T iptunnel_metadata_reply
-ffffffc0087a0ea8 T iptunnel_handle_offloads
-ffffffc0087a0f94 T skb_tunnel_check_pmtu
-ffffffc0087a1288 T ip_tunnel_need_metadata
-ffffffc0087a12c4 T ip_tunnel_unneed_metadata
-ffffffc0087a12f8 T ip_tunnel_parse_protocol
-ffffffc0087a1378 T ip_tunnel_netlink_encap_parms
-ffffffc0087a13f0 T ip_tunnel_netlink_parms
-ffffffc0087a1490 t iptunnel_pmtud_build_icmp
-ffffffc0087a1784 t iptunnel_pmtud_build_icmpv6
-ffffffc0087a1a98 t gre_gso_segment
-ffffffc0087a1dd0 t gre_gro_receive
-ffffffc0087a20c8 t gre_gro_complete
-ffffffc0087a21a0 t __skb_gro_checksum_validate_complete
-ffffffc0087a21f4 t skb_gro_incr_csum_unnecessary
-ffffffc0087a2284 T ip_fib_metrics_init
-ffffffc0087a24d0 T rtm_getroute_parse_ip_proto
-ffffffc0087a2578 T nexthop_free_rcu
-ffffffc0087a2724 T nexthop_find_by_id
-ffffffc0087a2778 T nexthop_select_path
-ffffffc0087a2a3c T nexthop_for_each_fib6_nh
-ffffffc0087a2b24 T fib6_check_nexthop
-ffffffc0087a2be0 T fib_check_nexthop
-ffffffc0087a2cd8 T register_nexthop_notifier
-ffffffc0087a2d58 t nexthops_dump
-ffffffc0087a2e98 T unregister_nexthop_notifier
-ffffffc0087a2f14 T nexthop_set_hw_flags
-ffffffc0087a2fc8 T nexthop_bucket_set_hw_flags
-ffffffc0087a30c8 T nexthop_res_grp_activity_update
-ffffffc0087a31cc t nh_notifier_info_init
-ffffffc0087a33bc t nh_notifier_mpath_info_init
-ffffffc0087a3510 t rtm_new_nexthop
-ffffffc0087a514c t rtm_del_nexthop
-ffffffc0087a5238 t rtm_get_nexthop
-ffffffc0087a5394 t rtm_dump_nexthop
-ffffffc0087a5630 t rtm_get_nexthop_bucket
-ffffffc0087a5980 t rtm_dump_nexthop_bucket
-ffffffc0087a5d44 t remove_nexthop
-ffffffc0087a5efc t call_nexthop_notifiers
-ffffffc0087a6060 t nexthop_notify
-ffffffc0087a620c t __remove_nexthop
-ffffffc0087a6314 t nh_fill_node
-ffffffc0087a6720 t __remove_nexthop_fib
-ffffffc0087a6858 t remove_nexthop_from_groups
-ffffffc0087a6c44 t replace_nexthop_grp_res
-ffffffc0087a6da8 t nh_res_group_rebalance
-ffffffc0087a6f44 t nh_res_table_upkeep
-ffffffc0087a7314 t __call_nexthop_res_bucket_notifiers
-ffffffc0087a7568 t nh_fill_res_bucket
-ffffffc0087a77b0 t nh_netdev_event
-ffffffc0087a7988 t nh_res_table_upkeep_dw
-ffffffc0087a79bc t fib6_check_nh_list
-ffffffc0087a7a90 t replace_nexthop_single_notify
-ffffffc0087a7c10 t nh_valid_get_del_req
-ffffffc0087a7d3c t rtm_dump_nexthop_bucket_nh
-ffffffc0087a7ef8 T ip_tunnel_lookup
-ffffffc0087a81bc T ip_tunnel_rcv
-ffffffc0087a8924 T ip_tunnel_encap_add_ops
-ffffffc0087a89a4 T ip_tunnel_encap_del_ops
-ffffffc0087a8a48 T ip_tunnel_encap_setup
-ffffffc0087a8b4c T ip_md_tunnel_xmit
-ffffffc0087a90d0 t tnl_update_pmtu
-ffffffc0087a9408 T ip_tunnel_xmit
-ffffffc0087a9e34 T ip_tunnel_ctl
-ffffffc0087aa190 t ip_tunnel_find
-ffffffc0087aa280 t ip_tunnel_update
-ffffffc0087aa41c T ip_tunnel_siocdevprivate
-ffffffc0087aa754 T __ip_tunnel_change_mtu
-ffffffc0087aa7b4 T ip_tunnel_change_mtu
-ffffffc0087aa804 T ip_tunnel_dellink
-ffffffc0087aa8a4 T ip_tunnel_get_link_net
-ffffffc0087aa8b8 T ip_tunnel_get_iflink
-ffffffc0087aa8cc T ip_tunnel_init_net
-ffffffc0087aaac0 t __ip_tunnel_create
-ffffffc0087aac60 t ip_tunnel_bind_dev
-ffffffc0087aadec T ip_tunnel_delete_nets
-ffffffc0087aaee8 T ip_tunnel_newlink
-ffffffc0087ab144 T ip_tunnel_changelink
-ffffffc0087ab25c T ip_tunnel_init
-ffffffc0087ab3b4 t ip_tunnel_dev_free
-ffffffc0087ab400 T ip_tunnel_uninit
-ffffffc0087ab4a0 T ip_tunnel_setup
-ffffffc0087ab4b4 t proc_tcp_available_ulp
-ffffffc0087ab598 t ipv4_ping_group_range
-ffffffc0087ab71c t ipv4_local_port_range
-ffffffc0087ab8b8 t ipv4_fwd_update_priority
-ffffffc0087ab920 t proc_tcp_congestion_control
-ffffffc0087ab9fc t proc_tcp_available_congestion_control
-ffffffc0087abae0 t proc_allowed_congestion_control
-ffffffc0087abbd8 t proc_tcp_fastopen_key
-ffffffc0087abf04 t proc_tfo_blackhole_detect_timeout
-ffffffc0087abf4c t ipv4_privileged_ports
-ffffffc0087ac038 t proc_tcp_ehash_entries
-ffffffc0087ac0e4 t sockstat_seq_show
-ffffffc0087ac270 t netstat_seq_show
-ffffffc0087ac7dc t snmp_seq_show
-ffffffc0087adee0 T fib4_rule_default
-ffffffc0087adf64 T fib4_rules_dump
-ffffffc0087adf98 T fib4_rules_seq_read
-ffffffc0087adfc8 T __fib_lookup
-ffffffc0087ae044 t fib4_rule_action
-ffffffc0087ae0f4 t fib4_rule_suppress
-ffffffc0087ae230 t fib4_rule_match
-ffffffc0087ae304 t fib4_rule_configure
-ffffffc0087ae4a4 t fib4_rule_delete
-ffffffc0087ae53c t fib4_rule_compare
-ffffffc0087ae5c8 t fib4_rule_fill
-ffffffc0087ae6a0 t fib4_rule_nlmsg_payload
-ffffffc0087ae6b4 t fib4_rule_flush_cache
-ffffffc0087ae6e0 t fib_empty_table
-ffffffc0087ae74c t ipip_tunnel_setup
-ffffffc0087ae7c8 t ipip_tunnel_validate
-ffffffc0087ae80c t ipip_newlink
-ffffffc0087ae908 t ipip_changelink
-ffffffc0087aea20 t ipip_get_size
-ffffffc0087aea34 t ipip_fill_info
-ffffffc0087aec48 t ipip_tunnel_init
-ffffffc0087aeca8 t ipip_tunnel_xmit
-ffffffc0087aeddc t ipip_tunnel_ctl
-ffffffc0087aee68 t ipip_rcv
-ffffffc0087af024 t ipip_rcv
-ffffffc0087af14c t ipip_err
-ffffffc0087af2c0 T gre_add_protocol
-ffffffc0087af348 T gre_del_protocol
-ffffffc0087af3f4 T gre_parse_header
-ffffffc0087af7a4 t gre_rcv
-ffffffc0087af884 t gre_rcv
-ffffffc0087afc3c t gre_rcv
-ffffffc0087affd0 t gre_err
-ffffffc0087b0094 t gre_err
-ffffffc0087b0340 T gretap_fb_dev_create
-ffffffc0087b0488 t ipgre_newlink
-ffffffc0087b05b0 t ipgre_tap_setup
-ffffffc0087b0610 t ipgre_tap_validate
-ffffffc0087b06b8 t ipgre_changelink
-ffffffc0087b08cc t ipgre_get_size
-ffffffc0087b08e0 t ipgre_fill_info
-ffffffc0087b0c1c t gre_tap_init
-ffffffc0087b0cf0 t gre_tap_xmit
-ffffffc0087b0ed4 t gre_fill_metadata_dst
-ffffffc0087b1038 t gre_fb_xmit
-ffffffc0087b122c t gre_build_header
-ffffffc0087b13b8 t gre_build_header
-ffffffc0087b1548 t ipgre_tunnel_validate
-ffffffc0087b15a8 t ipgre_netlink_parms
-ffffffc0087b1778 t ipgre_tunnel_setup
-ffffffc0087b17a8 t ipgre_tunnel_init
-ffffffc0087b18d8 t ipgre_xmit
-ffffffc0087b1b50 t ipgre_tunnel_ctl
-ffffffc0087b1e48 t ipgre_header
-ffffffc0087b1f4c t ipgre_header_parse
-ffffffc0087b1f74 t erspan_setup
-ffffffc0087b1fdc t erspan_validate
-ffffffc0087b20f4 t erspan_newlink
-ffffffc0087b22b8 t erspan_changelink
-ffffffc0087b2490 t erspan_fill_info
-ffffffc0087b25c0 t erspan_tunnel_init
-ffffffc0087b2658 t erspan_xmit
-ffffffc0087b2cc4 t pskb_trim
-ffffffc0087b2d1c t erspan_build_header
-ffffffc0087b2dfc t erspan_build_header
-ffffffc0087b2ed8 t erspan_build_header_v2
-ffffffc0087b3018 t erspan_build_header_v2
-ffffffc0087b3154 t __ipgre_rcv
-ffffffc0087b32f0 t vti_tunnel_setup
-ffffffc0087b332c t vti_tunnel_validate
-ffffffc0087b3340 t vti_newlink
-ffffffc0087b3430 t vti_changelink
-ffffffc0087b3510 t vti_get_size
-ffffffc0087b3524 t vti_fill_info
-ffffffc0087b3660 t vti_tunnel_init
-ffffffc0087b36e4 t vti_tunnel_xmit
-ffffffc0087b3ce0 t vti_tunnel_ctl
-ffffffc0087b3dc4 t vti_rcv_proto
-ffffffc0087b3e14 t vti_input_proto
-ffffffc0087b3e40 t vti_rcv_cb
-ffffffc0087b40bc t vti4_err
-ffffffc0087b42c4 t vti_input
-ffffffc0087b43e0 T esp_output_head
-ffffffc0087b487c t __skb_fill_page_desc
-ffffffc0087b48d8 t __skb_fill_page_desc
-ffffffc0087b4938 T esp_output_tail
-ffffffc0087b4e38 t esp_output_done_esn
-ffffffc0087b4ea8 t esp_output_done_esn
-ffffffc0087b4f18 t esp_output_done
-ffffffc0087b50f8 t esp_output_done
-ffffffc0087b5354 t esp_ssg_unref
-ffffffc0087b546c t esp_ssg_unref
-ffffffc0087b5588 T esp_input_done2
-ffffffc0087b5888 t esp4_rcv_cb
-ffffffc0087b589c t esp4_err
-ffffffc0087b5a00 t esp_init_state
-ffffffc0087b5ea4 t esp_destroy
-ffffffc0087b5edc t esp_input
-ffffffc0087b6254 t esp_output
-ffffffc0087b63ec t esp_input_done_esn
-ffffffc0087b6484 t esp_input_done_esn
-ffffffc0087b651c t esp_input_done
-ffffffc0087b656c t esp_input_done
-ffffffc0087b65bc T xfrm4_tunnel_register
-ffffffc0087b6690 T xfrm4_tunnel_deregister
-ffffffc0087b674c t tunnel64_rcv
-ffffffc0087b6824 t tunnel64_err
-ffffffc0087b68b8 t tunnel4_rcv
-ffffffc0087b6990 t tunnel4_err
-ffffffc0087b6a24 T inet_diag_msg_common_fill
-ffffffc0087b6acc T inet_diag_msg_attrs_fill
-ffffffc0087b6cc8 T inet_sk_diag_fill
-ffffffc0087b7174 T inet_diag_find_one_icsk
-ffffffc0087b7480 T inet_diag_dump_one_icsk
-ffffffc0087b75f0 t sk_diag_fill
-ffffffc0087b7920 T inet_diag_bc_sk
-ffffffc0087b7ce4 T inet_diag_dump_icsk
-ffffffc0087b81a4 T inet_diag_register
-ffffffc0087b8230 T inet_diag_unregister
-ffffffc0087b8290 t inet_diag_rcv_msg_compat
-ffffffc0087b83b8 t inet_diag_handler_cmd
-ffffffc0087b8484 t inet_diag_handler_get_info
-ffffffc0087b872c t inet_diag_dump_start
-ffffffc0087b875c t inet_diag_dump
-ffffffc0087b8790 t inet_diag_dump_done
-ffffffc0087b87c0 t inet_diag_cmd_exact
-ffffffc0087b89e4 t __inet_diag_dump_start
-ffffffc0087b8c94 t __inet_diag_dump
-ffffffc0087b8dd0 t inet_diag_dump_start_compat
-ffffffc0087b8e00 t inet_diag_dump_compat
-ffffffc0087b8eb8 t tcp_diag_dump
-ffffffc0087b8ef8 t tcp_diag_dump_one
-ffffffc0087b8f34 t tcp_diag_get_info
-ffffffc0087b8fe8 t tcp_diag_get_aux
-ffffffc0087b9110 t tcp_diag_get_aux_size
-ffffffc0087b9194 t tcp_diag_destroy
-ffffffc0087b9204 t udplite_diag_dump
-ffffffc0087b9244 t udplite_diag_dump_one
-ffffffc0087b9280 t udp_diag_get_info
-ffffffc0087b92c4 t udplite_diag_destroy
-ffffffc0087b92f8 t udp_dump
-ffffffc0087b94ac t udp_dump_one
-ffffffc0087b973c t __udp_diag_destroy
-ffffffc0087b99c8 t udp_diag_dump
-ffffffc0087b9a08 t udp_diag_dump_one
-ffffffc0087b9a44 t udp_diag_destroy
-ffffffc0087b9a7c t cubictcp_recalc_ssthresh
-ffffffc0087b9adc t cubictcp_cong_avoid
-ffffffc0087b9db8 t cubictcp_state
-ffffffc0087b9e0c t cubictcp_cwnd_event
-ffffffc0087b9e5c t cubictcp_acked
-ffffffc0087ba260 t cubictcp_init
-ffffffc0087ba2cc t xfrm4_dst_lookup
-ffffffc0087ba358 t xfrm4_get_saddr
-ffffffc0087ba400 t xfrm4_fill_dst
-ffffffc0087ba554 t xfrm4_dst_destroy
-ffffffc0087ba6ac t xfrm4_dst_ifdown
-ffffffc0087ba6dc t xfrm4_update_pmtu
-ffffffc0087ba72c t xfrm4_redirect
-ffffffc0087ba77c T xfrm4_transport_finish
-ffffffc0087ba8f4 T xfrm4_udp_encap_rcv
-ffffffc0087baabc T xfrm4_rcv
-ffffffc0087bab0c t xfrm4_rcv_encap_finish2
-ffffffc0087bab60 T xfrm4_output
-ffffffc0087bab94 T xfrm4_local_error
-ffffffc0087babf4 T xfrm4_rcv_encap
-ffffffc0087bad48 T xfrm4_protocol_register
-ffffffc0087baec0 T xfrm4_protocol_deregister
-ffffffc0087bb064 t xfrm4_esp_rcv
-ffffffc0087bb114 t xfrm4_esp_err
-ffffffc0087bb1a8 t xfrm4_ah_rcv
-ffffffc0087bb258 t xfrm4_ah_err
-ffffffc0087bb2ec t xfrm4_ipcomp_rcv
-ffffffc0087bb39c t xfrm4_ipcomp_err
-ffffffc0087bb430 t xfrm4_rcv_cb.llvm.3570133116230810083
-ffffffc0087bb514 T xfrm_selector_match
-ffffffc0087bb8bc T __xfrm_dst_lookup
-ffffffc0087bb998 T xfrm_policy_alloc
-ffffffc0087bba74 t xfrm_policy_timer
-ffffffc0087bbd94 t xfrm_policy_queue_process
-ffffffc0087bc308 T xfrm_policy_destroy
-ffffffc0087bc374 t xfrm_policy_destroy_rcu
-ffffffc0087bc3a4 T xfrm_spd_getinfo
-ffffffc0087bc3f0 T xfrm_policy_hash_rebuild
-ffffffc0087bc42c T xfrm_policy_insert
-ffffffc0087bc85c t policy_hash_bysel
-ffffffc0087bca1c t xfrm_policy_insert_list
-ffffffc0087bcbfc t xfrm_policy_inexact_insert
-ffffffc0087bceb4 t xfrm_policy_requeue
-ffffffc0087bd0f8 t xfrm_policy_kill
-ffffffc0087bd358 T xfrm_policy_bysel_ctx
-ffffffc0087bd790 t __xfrm_policy_bysel_ctx
-ffffffc0087bd8d4 T xfrm_policy_byid
-ffffffc0087bdb34 T xfrm_policy_flush
-ffffffc0087bdd10 T xfrm_audit_policy_delete
-ffffffc0087bddf0 T xfrm_policy_walk
-ffffffc0087bdfa0 T xfrm_policy_walk_init
-ffffffc0087bdfc8 T xfrm_policy_walk_done
-ffffffc0087be04c T xfrm_policy_delete
-ffffffc0087be17c T xfrm_sk_policy_insert
-ffffffc0087be410 T __xfrm_sk_clone_policy
-ffffffc0087be740 T xfrm_lookup_with_ifid
-ffffffc0087bf328 t xfrm_sk_policy_lookup
-ffffffc0087bf47c t xfrm_resolve_and_create_bundle
-ffffffc0087c020c t xfrm_pols_put
-ffffffc0087c02d0 T xfrm_lookup
-ffffffc0087c0300 T xfrm_lookup_route
-ffffffc0087c03e0 T __xfrm_decode_session
-ffffffc0087c09a8 T __xfrm_policy_check
-ffffffc0087c1624 t xfrm_policy_lookup
-ffffffc0087c1a04 t xfrm_secpath_reject
-ffffffc0087c1a80 T __xfrm_route_forward
-ffffffc0087c1d10 T xfrm_dst_ifdown
-ffffffc0087c1e80 T xfrm_policy_register_afinfo
-ffffffc0087c1fb4 t xfrm_dst_check
-ffffffc0087c22d8 t xfrm_default_advmss
-ffffffc0087c2350 t xfrm_mtu
-ffffffc0087c23c8 t xfrm_negative_advice
-ffffffc0087c2404 t xfrm_link_failure
-ffffffc0087c2414 t xfrm_neigh_lookup
-ffffffc0087c24c0 t xfrm_confirm_neigh
-ffffffc0087c2568 T xfrm_policy_unregister_afinfo
-ffffffc0087c268c T xfrm_if_register_cb
-ffffffc0087c26e4 T xfrm_if_unregister_cb
-ffffffc0087c2718 T xfrm_audit_policy_add
-ffffffc0087c27f4 t xfrm_audit_common_policyinfo
-ffffffc0087c2924 T xfrm_migrate
-ffffffc0087c3508 t __xfrm6_pref_hash
-ffffffc0087c3670 t xfrm_policy_inexact_alloc_bin
-ffffffc0087c3c08 t xfrm_policy_inexact_alloc_chain
-ffffffc0087c3e1c t __xfrm_policy_inexact_prune_bin
-ffffffc0087c42a0 t xfrm_pol_bin_key
-ffffffc0087c432c t xfrm_pol_bin_obj
-ffffffc0087c43b8 t xfrm_pol_bin_cmp
-ffffffc0087c440c t xfrm_policy_inexact_insert_node
-ffffffc0087c4984 t xfrm_policy_inexact_list_reinsert
-ffffffc0087c4c9c t xfrm_policy_inexact_gc_tree
-ffffffc0087c4d58 t xfrm_policy_lookup_inexact_addr
-ffffffc0087c4ee8 t xdst_queue_output
-ffffffc0087c51b4 t policy_hash_direct
-ffffffc0087c5338 t xfrm_policy_fini
-ffffffc0087c54dc t xfrm_hash_resize
-ffffffc0087c5958 t xfrm_hash_resize
-ffffffc0087c5d04 t xfrm_hash_rebuild
-ffffffc0087c60d0 T xfrm_register_type
-ffffffc0087c6260 T xfrm_state_get_afinfo
-ffffffc0087c62cc T xfrm_unregister_type
-ffffffc0087c6444 T xfrm_register_type_offload
-ffffffc0087c64ec T xfrm_unregister_type_offload
-ffffffc0087c657c T xfrm_state_free
-ffffffc0087c65b4 T xfrm_state_alloc
-ffffffc0087c6680 t xfrm_timer_handler
-ffffffc0087c69f4 t xfrm_replay_timer_handler
-ffffffc0087c6aa0 T __xfrm_state_destroy
-ffffffc0087c6b4c t ___xfrm_state_destroy
-ffffffc0087c6c74 T __xfrm_state_delete
-ffffffc0087c6eb0 T xfrm_state_delete
-ffffffc0087c6f08 T xfrm_state_flush
-ffffffc0087c71f0 t xfrm_state_hold
-ffffffc0087c7268 T xfrm_audit_state_delete
-ffffffc0087c73b4 T xfrm_dev_state_flush
-ffffffc0087c75fc T xfrm_sad_getinfo
-ffffffc0087c7668 T xfrm_state_find
-ffffffc0087c85c0 t __xfrm_state_lookup.llvm.8745382501215250633
-ffffffc0087c8850 T km_query
-ffffffc0087c8908 T xfrm_stateonly_find
-ffffffc0087c8b08 T xfrm_state_lookup_byspi
-ffffffc0087c8c04 T xfrm_state_insert
-ffffffc0087c8c5c t __xfrm_state_bump_genids.llvm.8745382501215250633
-ffffffc0087c8db0 t __xfrm_state_insert.llvm.8745382501215250633
-ffffffc0087c90a0 T xfrm_state_add
-ffffffc0087c9434 t __xfrm_find_acq_byseq.llvm.8745382501215250633
-ffffffc0087c9530 t __find_acq_core.llvm.8745382501215250633
-ffffffc0087c9954 T xfrm_migrate_state_find
-ffffffc0087c9c2c T xfrm_state_migrate
-ffffffc0087ca1bc T xfrm_init_state
-ffffffc0087ca20c T xfrm_state_update
-ffffffc0087ca7c0 T xfrm_state_check_expire
-ffffffc0087ca920 T km_state_expired
-ffffffc0087ca9f8 T xfrm_state_lookup
-ffffffc0087caa7c T xfrm_state_lookup_byaddr
-ffffffc0087cab10 t __xfrm_state_lookup_byaddr.llvm.8745382501215250633
-ffffffc0087cad00 T xfrm_find_acq
-ffffffc0087cadcc T xfrm_find_acq_byseq
-ffffffc0087cae3c T xfrm_get_acqseq
-ffffffc0087cae8c T verify_spi_info
-ffffffc0087caecc T xfrm_alloc_spi
-ffffffc0087cb2e8 T xfrm_state_walk
-ffffffc0087cb57c T xfrm_state_walk_init
-ffffffc0087cb5a8 T xfrm_state_walk_done
-ffffffc0087cb638 T km_policy_notify
-ffffffc0087cb6e4 T km_state_notify
-ffffffc0087cb780 T km_new_mapping
-ffffffc0087cb908 T km_policy_expired
-ffffffc0087cb9e8 T km_migrate
-ffffffc0087cbad4 T km_report
-ffffffc0087cbba0 T xfrm_user_policy
-ffffffc0087cbf8c T xfrm_register_km
-ffffffc0087cc00c T xfrm_unregister_km
-ffffffc0087cc080 T xfrm_state_register_afinfo
-ffffffc0087cc11c T xfrm_state_unregister_afinfo
-ffffffc0087cc1e0 T xfrm_state_afinfo_get_rcu
-ffffffc0087cc218 T xfrm_flush_gc
-ffffffc0087cc24c T xfrm_state_delete_tunnel
-ffffffc0087cc370 T xfrm_state_mtu
-ffffffc0087cc438 T __xfrm_init_state
-ffffffc0087cc8d8 T xfrm_state_fini
-ffffffc0087cc9ec T xfrm_audit_state_add
-ffffffc0087ccb38 T xfrm_audit_state_replay_overflow
-ffffffc0087ccc48 T xfrm_audit_state_replay
-ffffffc0087ccd60 T xfrm_audit_state_notfound_simple
-ffffffc0087cce54 T xfrm_audit_state_notfound
-ffffffc0087ccf74 T xfrm_audit_state_icvfail
-ffffffc0087cd0d4 t xfrm_state_gc_task
-ffffffc0087cd17c t __xfrm_dst_hash
-ffffffc0087cd330 t __xfrm_src_hash
-ffffffc0087cd4ec T xfrm_hash_alloc
-ffffffc0087cd54c T xfrm_hash_free
-ffffffc0087cd5a0 T xfrm_input_register_afinfo
-ffffffc0087cd648 T xfrm_input_unregister_afinfo
-ffffffc0087cd6ec T secpath_set
-ffffffc0087cd760 T xfrm_parse_spi
-ffffffc0087cd894 T xfrm_input
-ffffffc0087cf4f0 t xfrm_offload
-ffffffc0087cf548 T xfrm_input_resume
-ffffffc0087cf57c T xfrm_trans_queue_net
-ffffffc0087cf644 T xfrm_trans_queue
-ffffffc0087cf714 t xfrm_trans_reinject
-ffffffc0087cf860 T pktgen_xfrm_outer_mode_output
-ffffffc0087cf888 t xfrm_outer_mode_output
-ffffffc0087d0064 T xfrm_output_resume
-ffffffc0087d08dc T xfrm_output
-ffffffc0087d0ab8 T xfrm_local_error
-ffffffc0087d0b5c t xfrm_inner_extract_output
-ffffffc0087d1144 t xfrm6_hdr_offset
-ffffffc0087d1288 T xfrm_replay_seqhi
-ffffffc0087d12f8 T xfrm_replay_notify
-ffffffc0087d1564 T xfrm_replay_advance
-ffffffc0087d18c4 T xfrm_replay_check
-ffffffc0087d19c4 t xfrm_replay_check_esn
-ffffffc0087d1ab4 T xfrm_replay_recheck
-ffffffc0087d1c38 T xfrm_replay_overflow
-ffffffc0087d1dd8 T xfrm_init_replay
-ffffffc0087d1e88 t xfrm_dev_event
-ffffffc0087d1f18 t xfrm_statistics_seq_show
-ffffffc0087d2098 T xfrm_proc_fini
-ffffffc0087d20d0 T xfrm_aalg_get_byid
-ffffffc0087d2238 T xfrm_ealg_get_byid
-ffffffc0087d23b8 T xfrm_calg_get_byid
-ffffffc0087d2478 T xfrm_aalg_get_byname
-ffffffc0087d2548 T xfrm_ealg_get_byname
-ffffffc0087d2618 T xfrm_calg_get_byname
-ffffffc0087d2764 T xfrm_aead_get_byname
-ffffffc0087d29b4 T xfrm_aalg_get_byidx
-ffffffc0087d29dc T xfrm_ealg_get_byidx
-ffffffc0087d2a04 T xfrm_probe_algs
-ffffffc0087d2ba4 T xfrm_count_pfkey_auth_supported
-ffffffc0087d2c38 T xfrm_count_pfkey_enc_supported
-ffffffc0087d2cd8 t xfrm_send_state_notify
-ffffffc0087d3368 t xfrm_send_acquire
-ffffffc0087d36d0 t xfrm_compile_policy
-ffffffc0087d386c t xfrm_send_mapping
-ffffffc0087d39e0 t xfrm_send_policy_notify
-ffffffc0087d4048 t xfrm_send_report
-ffffffc0087d41d0 t xfrm_send_migrate
-ffffffc0087d449c t xfrm_is_alive
-ffffffc0087d4500 t build_aevent
-ffffffc0087d4750 t copy_to_user_state_extra
-ffffffc0087d4d04 t xfrm_smark_put
-ffffffc0087d4dac t copy_user_offload
-ffffffc0087d4e30 t copy_sec_ctx
-ffffffc0087d4ec4 t copy_to_user_tmpl
-ffffffc0087d4fe8 t verify_newpolicy_info
-ffffffc0087d5104 t validate_tmpl
-ffffffc0087d549c t copy_templates
-ffffffc0087d5550 t xfrm_netlink_rcv
-ffffffc0087d55ac t xfrm_user_rcv_msg
-ffffffc0087d5848 t xfrm_add_sa
-ffffffc0087d62b8 t xfrm_del_sa
-ffffffc0087d64f4 t xfrm_get_sa
-ffffffc0087d66d8 t xfrm_dump_sa
-ffffffc0087d6850 t xfrm_dump_sa_done
-ffffffc0087d6894 t xfrm_add_policy
-ffffffc0087d6a6c t xfrm_get_policy
-ffffffc0087d6d68 t xfrm_dump_policy_start
-ffffffc0087d6da0 t xfrm_dump_policy
-ffffffc0087d6e34 t xfrm_dump_policy_done
-ffffffc0087d6e70 t xfrm_alloc_userspi
-ffffffc0087d7150 t xfrm_add_acquire
-ffffffc0087d739c t xfrm_add_sa_expire
-ffffffc0087d7504 t xfrm_add_pol_expire
-ffffffc0087d7740 t xfrm_flush_sa
-ffffffc0087d77f0 t xfrm_flush_policy
-ffffffc0087d78d0 t xfrm_new_ae
-ffffffc0087d7ba8 t xfrm_get_ae
-ffffffc0087d7df4 t xfrm_do_migrate
-ffffffc0087d81d8 t xfrm_get_sadinfo
-ffffffc0087d8374 t xfrm_set_spdinfo
-ffffffc0087d84c4 t xfrm_get_spdinfo
-ffffffc0087d870c t xfrm_set_default
-ffffffc0087d88c8 t xfrm_get_default
-ffffffc0087d89c4 t verify_aead
-ffffffc0087d8a4c t verify_auth_trunc
-ffffffc0087d8ad4 t verify_one_alg
-ffffffc0087d8b5c t verify_sec_ctx_len
-ffffffc0087d8bdc t verify_replay
-ffffffc0087d8cb8 t xfrm_alloc_replay_state_esn
-ffffffc0087d8d90 t xfrm_update_ae_params
-ffffffc0087d8e18 t xfrm_state_netlink
-ffffffc0087d8f30 t dump_one_state
-ffffffc0087d9010 t xfrm_policy_construct
-ffffffc0087d9250 t dump_one_policy
-ffffffc0087d94c4 T ipcomp_input
-ffffffc0087d9778 T ipcomp_output
-ffffffc0087d996c T ipcomp_destroy
-ffffffc0087d99cc t ipcomp_free_data
-ffffffc0087d9a9c T ipcomp_init_state
-ffffffc0087d9dd4 t ipcomp_free_tfms
-ffffffc0087d9eec t xfrmi4_fini
-ffffffc0087d9f40 t xfrmi6_fini
-ffffffc0087d9fb8 t xfrmi_dev_setup
-ffffffc0087da034 t xfrmi_validate
-ffffffc0087da048 t xfrmi_newlink
-ffffffc0087da240 t xfrmi_changelink
-ffffffc0087da418 t xfrmi_dellink
-ffffffc0087da444 t xfrmi_get_size
-ffffffc0087da458 t xfrmi_fill_info
-ffffffc0087da528 t xfrmi_get_link_net
-ffffffc0087da53c t xfrmi_dev_free
-ffffffc0087da580 t xfrmi_dev_init
-ffffffc0087da770 t xfrmi_dev_uninit
-ffffffc0087da818 t xfrmi_xmit
-ffffffc0087dade8 t xfrmi_get_iflink
-ffffffc0087dadfc t xfrmi_rcv_cb
-ffffffc0087db038 t xfrmi4_err
-ffffffc0087db2e4 t xfrmi6_rcv_tunnel
-ffffffc0087db348 t xfrmi6_err
-ffffffc0087db5e0 t xfrmi_decode_session
-ffffffc0087db688 T unix_peer_get
-ffffffc0087db72c t unix_close
-ffffffc0087db73c t unix_unhash
-ffffffc0087db74c T __unix_dgram_recvmsg
-ffffffc0087dbb30 t scm_recv
-ffffffc0087dbc98 T __unix_stream_recvmsg
-ffffffc0087dbd14 t unix_stream_read_actor
-ffffffc0087dbd64 t unix_stream_read_generic
-ffffffc0087dc6b0 T unix_inq_len
-ffffffc0087dc77c T unix_outq_len
-ffffffc0087dc79c t scm_destroy
-ffffffc0087dc7e8 t unix_stream_recv_urg
-ffffffc0087dc904 t unix_seq_start
-ffffffc0087dc9f0 t unix_seq_stop
-ffffffc0087dca30 t unix_seq_next
-ffffffc0087dcbec t unix_seq_show
-ffffffc0087dcd8c t unix_create
-ffffffc0087dce68 t unix_create1
-ffffffc0087dd16c t unix_release
-ffffffc0087dd1e8 t unix_bind
-ffffffc0087dd68c t unix_stream_connect
-ffffffc0087ddc1c t unix_socketpair
-ffffffc0087ddd38 t unix_accept
-ffffffc0087ddf18 t unix_getname
-ffffffc0087de0c4 t unix_poll
-ffffffc0087de218 t unix_ioctl
-ffffffc0087de800 t unix_listen
-ffffffc0087de8d8 t unix_shutdown
-ffffffc0087deb48 t unix_show_fdinfo
-ffffffc0087dec44 t unix_stream_sendmsg
-ffffffc0087df3ac t unix_stream_recvmsg
-ffffffc0087df424 t unix_stream_sendpage
-ffffffc0087df8ac t unix_stream_splice_read
-ffffffc0087df958 t unix_set_peek_off
-ffffffc0087df9c0 t unix_stream_read_skb
-ffffffc0087dfaac t unix_release_sock
-ffffffc0087dfec4 t unix_autobind
-ffffffc0087e014c t unix_table_double_lock
-ffffffc0087e01a8 t unix_table_double_unlock
-ffffffc0087e0208 t __unix_set_addr_hash
-ffffffc0087e0348 t unix_insert_bsd_socket
-ffffffc0087e03ec t unix_find_other
-ffffffc0087e072c t unix_wait_for_peer
-ffffffc0087e0818 t init_peercred
-ffffffc0087e0960 t copy_peercred
-ffffffc0087e0abc t unix_scm_to_skb
-ffffffc0087e0b7c t maybe_add_creds
-ffffffc0087e0c50 t unix_stream_splice_actor
-ffffffc0087e0ca0 t unix_read_skb
-ffffffc0087e0d7c t unix_dgram_connect
-ffffffc0087e1190 t unix_dgram_poll
-ffffffc0087e13c0 t unix_dgram_sendmsg
-ffffffc0087e1b50 t unix_dgram_recvmsg
-ffffffc0087e1b7c t unix_state_double_lock
-ffffffc0087e1bd4 t unix_dgram_peer_wake_disconnect_wakeup
-ffffffc0087e1c84 t unix_dgram_disconnected
-ffffffc0087e1d08 t unix_dgram_peer_wake_me
-ffffffc0087e1e5c t unix_seqpacket_sendmsg
-ffffffc0087e1ef0 t unix_seqpacket_recvmsg
-ffffffc0087e1f34 t unix_write_space
-ffffffc0087e1ff0 t unix_sock_destructor
-ffffffc0087e216c t unix_dgram_peer_wake_relay
-ffffffc0087e21f8 T wait_for_unix_gc
-ffffffc0087e22fc T unix_gc
-ffffffc0087e27e0 t scan_children
-ffffffc0087e2964 t dec_inflight
-ffffffc0087e29ac t inc_inflight_move_tail
-ffffffc0087e2a78 t inc_inflight
-ffffffc0087e2ab8 t scan_inflight
-ffffffc0087e2bf4 T unix_sysctl_unregister
-ffffffc0087e2c24 T unix_get_socket
-ffffffc0087e2c94 T unix_inflight
-ffffffc0087e2e0c T unix_notinflight
-ffffffc0087e2f7c T unix_attach_fds
-ffffffc0087e3054 T unix_detach_fds
-ffffffc0087e30d0 T unix_destruct_scm
-ffffffc0087e31bc T ipv6_mod_enabled
-ffffffc0087e31dc T inet6_sock_destruct
-ffffffc0087e321c T inet6_cleanup_sock
-ffffffc0087e3248 T inet6_bind
-ffffffc0087e32c0 t __inet6_bind
-ffffffc0087e36ac T inet6_release
-ffffffc0087e3708 T inet6_destroy_sock
-ffffffc0087e38a0 T inet6_getname
-ffffffc0087e39d8 T inet6_ioctl
-ffffffc0087e3c64 T inet6_sendmsg
-ffffffc0087e3cf4 T inet6_recvmsg
-ffffffc0087e3e2c T inet6_register_protosw
-ffffffc0087e3f48 T inet6_unregister_protosw
-ffffffc0087e3fd8 T inet6_sk_rebuild_header
-ffffffc0087e41d0 T ipv6_opt_accepted
-ffffffc0087e4280 t inet6_create
-ffffffc0087e4728 t ipv6_route_input
-ffffffc0087e476c T ipv6_sock_ac_join
-ffffffc0087e49b4 T __ipv6_dev_ac_inc
-ffffffc0087e4d30 T ipv6_sock_ac_drop
-ffffffc0087e4e94 T __ipv6_sock_ac_close
-ffffffc0087e4fb8 T ipv6_sock_ac_close
-ffffffc0087e5038 T __ipv6_dev_ac_dec
-ffffffc0087e521c T ipv6_ac_destroy_dev
-ffffffc0087e536c T ipv6_chk_acast_addr
-ffffffc0087e5524 T ipv6_chk_acast_addr_src
-ffffffc0087e5588 T ac6_proc_exit
-ffffffc0087e55c0 T ipv6_anycast_cleanup
-ffffffc0087e5634 t aca_free_rcu
-ffffffc0087e56e0 t ac6_seq_start
-ffffffc0087e5840 t ac6_seq_stop
-ffffffc0087e588c t ac6_seq_next
-ffffffc0087e595c t ac6_seq_show
-ffffffc0087e59a8 T ip6_output
-ffffffc0087e5d40 T ip6_autoflowlabel
-ffffffc0087e5d78 T ip6_xmit
-ffffffc0087e65e0 T ip6_forward
-ffffffc0087e6d48 t ip6_call_ra_chain
-ffffffc0087e6e38 t skb_cow
-ffffffc0087e6ecc t ip6_forward_finish
-ffffffc0087e6fcc T ip6_fraglist_init
-ffffffc0087e71c0 T ip6_fraglist_prepare
-ffffffc0087e72d0 t ip6_copy_metadata
-ffffffc0087e74b8 T ip6_frag_init
-ffffffc0087e74f4 T ip6_frag_next
-ffffffc0087e76c8 T ip6_fragment
-ffffffc0087e852c T ip6_dst_lookup
-ffffffc0087e8558 t ip6_dst_lookup_tail.llvm.10778182067607720275
-ffffffc0087e8a1c T ip6_dst_lookup_flow
-ffffffc0087e8ad0 T ip6_sk_dst_lookup_flow
-ffffffc0087e8d14 T ip6_dst_lookup_tunnel
-ffffffc0087e8ea4 T ip6_append_data
-ffffffc0087e9098 t ip6_setup_cork
-ffffffc0087e9390 t __ip6_append_data
-ffffffc0087ea334 T __ip6_make_skb
-ffffffc0087eab44 t ip6_cork_release
-ffffffc0087eabd4 T ip6_send_skb
-ffffffc0087ead48 T ip6_push_pending_frames
-ffffffc0087eadac T ip6_flush_pending_frames
-ffffffc0087eae04 t __ip6_flush_pending_frames
-ffffffc0087eafc0 T ip6_make_skb
-ffffffc0087eb174 t ip6_finish_output2
-ffffffc0087eba40 t skb_zcopy_set
-ffffffc0087ebb24 T ip6_rcv_finish
-ffffffc0087ebb94 t ip6_rcv_finish_core
-ffffffc0087ebc6c T ipv6_rcv
-ffffffc0087ebce8 t ip6_rcv_core
-ffffffc0087ec288 T ipv6_list_rcv
-ffffffc0087ec410 t ip6_sublist_rcv
-ffffffc0087ec724 T ip6_protocol_deliver_rcu
-ffffffc0087ecbb8 T ip6_input
-ffffffc0087ecc3c T ip6_mc_input
-ffffffc0087ecd7c T inet6_netconf_notify_devconf
-ffffffc0087eceac t inet6_netconf_fill_devconf
-ffffffc0087ed078 T inet6_ifa_finish_destroy
-ffffffc0087ed16c t in6_dev_put
-ffffffc0087ed1f8 T ipv6_dev_get_saddr
-ffffffc0087ed3c0 t __ipv6_dev_get_saddr
-ffffffc0087ed534 T ipv6_get_lladdr
-ffffffc0087ed5f8 T ipv6_chk_addr
-ffffffc0087ed63c T ipv6_chk_addr_and_flags
-ffffffc0087ed66c t __ipv6_chk_addr_and_flags.llvm.8811642673737084415
-ffffffc0087ed7a4 T ipv6_chk_custom_prefix
-ffffffc0087ed890 T ipv6_chk_prefix
-ffffffc0087ed978 T ipv6_dev_find
-ffffffc0087ed9b4 T ipv6_get_ifaddr
-ffffffc0087edb00 t in6_ifa_hold
-ffffffc0087edb78 T addrconf_dad_failure
-ffffffc0087edeb0 t in6_ifa_put
-ffffffc0087edf38 t ipv6_generate_stable_address
-ffffffc0087ee0f4 t ipv6_add_addr
-ffffffc0087ee414 t addrconf_mod_dad_work
-ffffffc0087ee524 T addrconf_join_solict
-ffffffc0087ee5ac T addrconf_leave_solict
-ffffffc0087ee634 T addrconf_rt_table
-ffffffc0087ee768 T addrconf_prefix_rcv_add_addr
-ffffffc0087eeac0 t addrconf_dad_start
-ffffffc0087eeb2c t manage_tempaddrs
-ffffffc0087eecc0 T addrconf_prefix_rcv
-ffffffc0087ef2b4 t addrconf_get_prefix_route
-ffffffc0087ef464 t addrconf_prefix_route
-ffffffc0087ef5a8 t fib6_info_release
-ffffffc0087ef63c t fib6_info_release
-ffffffc0087ef6cc t ipv6_generate_eui64
-ffffffc0087ef994 t ipv6_inherit_eui64
-ffffffc0087efa30 T addrconf_set_dstaddr
-ffffffc0087efcbc T addrconf_add_ifaddr
-ffffffc0087efed8 t inet6_addr_add
-ffffffc0087f0168 T addrconf_del_ifaddr
-ffffffc0087f035c t inet6_addr_del
-ffffffc0087f0574 T addrconf_add_linklocal
-ffffffc0087f07b0 T if6_proc_exit
-ffffffc0087f0804 T ipv6_chk_home_addr
-ffffffc0087f08dc T ipv6_chk_rpl_srh_loop
-ffffffc0087f0a0c T inet6_ifinfo_notify
-ffffffc0087f0ae4 t inet6_fill_ifinfo
-ffffffc0087f0d0c t ipv6_add_dev
-ffffffc0087f121c t inet6_dump_ifinfo
-ffffffc0087f13c0 t inet6_rtm_newaddr
-ffffffc0087f1c00 t inet6_rtm_deladdr
-ffffffc0087f1d3c t inet6_rtm_getaddr
-ffffffc0087f20fc t inet6_dump_ifaddr
-ffffffc0087f212c t inet6_dump_ifmcaddr
-ffffffc0087f215c t inet6_dump_ifacaddr
-ffffffc0087f218c t inet6_netconf_get_devconf
-ffffffc0087f2570 t inet6_netconf_dump_devconf
-ffffffc0087f27c4 T addrconf_cleanup
-ffffffc0087f28b0 t addrconf_ifdown
-ffffffc0087f3118 t ipv6_get_saddr_eval
-ffffffc0087f3454 t addrconf_dad_work
-ffffffc0087f39a0 t in6_dev_hold
-ffffffc0087f3a14 t ipv6_add_addr_hash
-ffffffc0087f3b10 t ipv6_link_dev_addr
-ffffffc0087f3bc0 t addrconf_dad_stop
-ffffffc0087f3e04 t addrconf_dad_completed
-ffffffc0087f4210 t addrconf_dad_kick
-ffffffc0087f42ec t ipv6_create_tempaddr
-ffffffc0087f4968 t ipv6_del_addr
-ffffffc0087f4d00 t check_cleanup_prefix_route
-ffffffc0087f4e60 t cleanup_prefix_route
-ffffffc0087f4f4c t addrconf_mod_rs_timer
-ffffffc0087f4ff8 t addrconf_verify_rtnl
-ffffffc0087f563c t addrconf_add_dev
-ffffffc0087f5800 t ipv6_mc_config
-ffffffc0087f58c8 t if6_seq_start
-ffffffc0087f5998 t if6_seq_stop
-ffffffc0087f59c4 t if6_seq_next
-ffffffc0087f5a54 t if6_seq_show
-ffffffc0087f5aa4 t inet6_fill_ifla6_attrs
-ffffffc0087f5f64 t snmp6_fill_stats
-ffffffc0087f6000 t __ipv6_ifa_notify
-ffffffc0087f64a4 t inet6_fill_ifaddr
-ffffffc0087f67c4 t addrconf_verify_work
-ffffffc0087f680c t __addrconf_sysctl_register
-ffffffc0087f69b0 t addrconf_sysctl_forward
-ffffffc0087f6c38 t addrconf_sysctl_mtu
-ffffffc0087f6cd0 t addrconf_sysctl_proxy_ndp
-ffffffc0087f6e14 t addrconf_sysctl_disable
-ffffffc0087f7040 t addrconf_sysctl_stable_secret
-ffffffc0087f7268 t addrconf_sysctl_ignore_routes_with_linkdown
-ffffffc0087f74a8 t addrconf_sysctl_addr_gen_mode
-ffffffc0087f76ac t addrconf_sysctl_disable_policy
-ffffffc0087f7844 t dev_forward_change
-ffffffc0087f7b30 t addrconf_notify
-ffffffc0087f7f38 t addrconf_permanent_addr
-ffffffc0087f8288 t addrconf_link_ready
-ffffffc0087f82f8 t addrconf_dad_run
-ffffffc0087f845c t addrconf_init_auto_addrs
-ffffffc0087f8924 t addrconf_sysctl_unregister
-ffffffc0087f89a4 t addrconf_sysctl_register
-ffffffc0087f8a50 t addrconf_addr_gen
-ffffffc0087f8c04 t add_v4_addrs
-ffffffc0087f8f50 t add_addr
-ffffffc0087f90b0 t addrconf_disable_policy_idev
-ffffffc0087f91f0 t addrconf_rs_timer
-ffffffc0087f940c t rfc3315_s14_backoff_update
-ffffffc0087f94c8 t inet6_fill_link_af
-ffffffc0087f9514 t inet6_get_link_af_size
-ffffffc0087f953c t inet6_validate_link_af
-ffffffc0087f9668 t inet6_set_link_af
-ffffffc0087f996c t modify_prefix_route
-ffffffc0087f9b9c t inet6_dump_addr
-ffffffc0087f9f40 t in6_dump_addrs
-ffffffc0087fa468 T ipv6_addr_label
-ffffffc0087fa588 T ipv6_addr_label_cleanup
-ffffffc0087fa5dc t ip6addrlbl_newdel
-ffffffc0087fa758 t ip6addrlbl_get
-ffffffc0087faa5c t ip6addrlbl_dump
-ffffffc0087fabc4 t ip6addrlbl_add
-ffffffc0087fae74 t addrlbl_ifindex_exists
-ffffffc0087faec8 t ip6addrlbl_del
-ffffffc0087fb054 t ip6addrlbl_fill
-ffffffc0087fb194 T __traceiter_fib6_table_lookup
-ffffffc0087fb23c t trace_event_raw_event_fib6_table_lookup
-ffffffc0087fb420 t perf_trace_fib6_table_lookup
-ffffffc0087fb660 T rt6_uncached_list_add
-ffffffc0087fb6f8 T rt6_uncached_list_del
-ffffffc0087fb780 T ip6_neigh_lookup
-ffffffc0087fb97c T ip6_dst_alloc
-ffffffc0087fba2c T fib6_select_path
-ffffffc0087fbb84 T rt6_multipath_hash
-ffffffc0087fc264 t nexthop_path_fib6_result
-ffffffc0087fc31c t rt6_score_route
-ffffffc0087fc4b4 T rt6_route_rcv
-ffffffc0087fc760 T rt6_get_dflt_router
-ffffffc0087fc8d8 t rt6_get_route_info
-ffffffc0087fca8c T ip6_del_rt
-ffffffc0087fcaf8 t rt6_add_route_info
-ffffffc0087fcc40 T ip6_route_lookup
-ffffffc0087fcc74 t ip6_pol_route_lookup
-ffffffc0087fd27c T rt6_lookup
-ffffffc0087fd330 T ip6_ins_rt
-ffffffc0087fd3d4 T rt6_flush_exceptions
-ffffffc0087fd424 t rt6_nh_flush_exceptions
-ffffffc0087fd450 t fib6_nh_flush_exceptions
-ffffffc0087fd530 T rt6_age_exceptions
-ffffffc0087fd5b0 t rt6_nh_age_exceptions
-ffffffc0087fd5e4 t fib6_nh_age_exceptions
-ffffffc0087fd7d0 T fib6_table_lookup
-ffffffc0087fdb00 T ip6_pol_route
-ffffffc0087fe1e4 t ip6_rt_cache_alloc
-ffffffc0087fe498 T ip6_route_input_lookup
-ffffffc0087fe52c t ip6_pol_route_input
-ffffffc0087fe564 t ip6_multipath_l3_keys
-ffffffc0087fe6c0 T ip6_route_input
-ffffffc0087fe928 T ip6_route_output_flags_noref
-ffffffc0087fea28 t ip6_pol_route_output
-ffffffc0087fea64 T ip6_route_output_flags
-ffffffc0087febb8 T ip6_blackhole_route
-ffffffc0087fedd4 T ip6_update_pmtu
-ffffffc0087feed4 t __ip6_rt_update_pmtu
-ffffffc0087ff138 T ip6_sk_update_pmtu
-ffffffc0087ff2f0 T ip6_sk_dst_store_flow
-ffffffc0087ff3e8 T ip6_redirect
-ffffffc0087ff4e8 t rt6_do_redirect
-ffffffc0087ff7ec T ip6_redirect_no_header
-ffffffc0087ff8f4 T ip6_sk_redirect
-ffffffc0087ffa04 T ip6_mtu_from_fib6
-ffffffc0087ffb4c T icmp6_dst_alloc
-ffffffc0087ffdf4 T fib6_nh_init
-ffffffc0088008b0 T fib6_nh_release
-ffffffc008800a4c T fib6_nh_release_dsts
-ffffffc008800b34 T ip6_route_add
-ffffffc008800c34 t ip6_route_info_create
-ffffffc0088010ac t __ip6_del_rt
-ffffffc0088011a0 T rt6_add_dflt_router
-ffffffc0088012d4 T rt6_purge_dflt_routers
-ffffffc00880130c t rt6_addrconf_purge.llvm.9105617553290749059
-ffffffc0088013d8 T ipv6_route_ioctl
-ffffffc00880156c t ip6_route_del
-ffffffc0088018c0 T addrconf_f6i_alloc
-ffffffc008801a0c T rt6_remove_prefsrc
-ffffffc008801a8c t fib6_remove_prefsrc
-ffffffc008801b2c T rt6_clean_tohost
-ffffffc008801b64 t fib6_clean_tohost.llvm.9105617553290749059
-ffffffc008801ca4 T rt6_multipath_rebalance
-ffffffc008801e6c T rt6_sync_up
-ffffffc008801ef8 t fib6_ifup
-ffffffc008801f80 T rt6_sync_down_dev
-ffffffc008802004 t fib6_ifdown
-ffffffc008802180 T rt6_disable_ip
-ffffffc00880252c T rt6_mtu_change
-ffffffc0088025a4 t rt6_mtu_change_route
-ffffffc008802620 T rt6_dump_route
-ffffffc008802834 t rt6_fill_node
-ffffffc008802e14 t rt6_nh_dump_exceptions
-ffffffc008802f58 T inet6_rt_notify
-ffffffc00880313c T fib6_rt_update
-ffffffc008803318 T fib6_info_hw_flags_set
-ffffffc008803524 t inet6_rtm_newroute
-ffffffc008803dd4 t inet6_rtm_delroute
-ffffffc008803fe0 t inet6_rtm_getroute
-ffffffc008804530 T ip6_route_cleanup
-ffffffc008804640 t trace_raw_output_fib6_table_lookup
-ffffffc008804700 t nexthop_fib6_nh
-ffffffc008804758 t ip6_create_rt_rcu
-ffffffc0088049c0 t __rt6_nh_dev_match
-ffffffc008804a34 t ip6_rt_copy_init
-ffffffc008804c94 t ip6_pkt_prohibit_out
-ffffffc008804ce0 t ip6_pkt_prohibit
-ffffffc008804d18 t ip6_pkt_discard_out
-ffffffc008804d64 t ip6_pkt_discard
-ffffffc008804d98 t ip6_pkt_drop
-ffffffc0088050d0 t rt6_remove_exception
-ffffffc008805214 t __find_rr_leaf
-ffffffc0088053d4 t rt6_nh_find_match
-ffffffc008805414 t find_match
-ffffffc00880581c t rt6_probe_deferred
-ffffffc00880592c t __rt6_find_exception_rcu
-ffffffc008805a68 t ip6_dst_check
-ffffffc008805bd8 t ip6_default_advmss
-ffffffc008805c48 t ip6_dst_destroy
-ffffffc008805e50 t ip6_dst_neigh_lookup
-ffffffc008805eac t rt6_do_update_pmtu
-ffffffc008805f9c t fib6_nh_find_match
-ffffffc008806008 t rt6_insert_exception
-ffffffc008806264 t __rt6_find_exception_spinlock
-ffffffc008806390 t __ip6_route_redirect
-ffffffc008806730 t fib6_nh_redirect_match
-ffffffc008806770 t ip6_redirect_nh_match
-ffffffc0088068e4 t ip_fib_metrics_put
-ffffffc008806978 t ip6_del_cached_rt
-ffffffc008806ac0 t __ip6_del_rt_siblings
-ffffffc008806dc0 t fib6_nh_del_cached_rt
-ffffffc008806dfc t rt6_remove_exception_rt
-ffffffc008806f20 t rt6_nh_remove_exception_rt
-ffffffc008806ff0 t rt6_multipath_dead_count
-ffffffc008807050 t rt6_multipath_nh_flags_set
-ffffffc0088070a8 t fib6_nh_mtu_change
-ffffffc00880725c t fib6_info_nh_uses_dev
-ffffffc008807274 t rt6_fill_node_nexthop
-ffffffc0088073dc t rt6_nh_nlmsg_size
-ffffffc00880740c t ipv6_sysctl_rtcache_flush
-ffffffc008807494 t ip6_dst_gc
-ffffffc0088075c0 t ip6_mtu
-ffffffc008807630 t ip6_dst_ifdown
-ffffffc00880775c t ip6_negative_advice
-ffffffc00880781c t ip6_link_failure
-ffffffc0088078c0 t ip6_rt_update_pmtu
-ffffffc008807900 t ip6_confirm_neigh
-ffffffc008807a68 t rt6_stats_seq_show
-ffffffc008807b1c t rtm_to_fib6_config
-ffffffc008807f48 t ip6_route_dev_notify
-ffffffc008808294 T fib6_update_sernum
-ffffffc00880831c T fib6_info_alloc
-ffffffc008808374 T fib6_info_destroy_rcu
-ffffffc0088084b4 T fib6_new_table
-ffffffc0088085a4 T fib6_get_table
-ffffffc008808628 T fib6_tables_seq_read
-ffffffc0088086ac T call_fib6_entry_notifiers
-ffffffc008808728 T call_fib6_multipath_entry_notifiers
-ffffffc0088087a8 T call_fib6_entry_notifiers_replace
-ffffffc008808830 T fib6_tables_dump
-ffffffc008808970 t fib6_node_dump
-ffffffc008808a38 T fib6_metric_set
-ffffffc008808acc T fib6_force_start_gc
-ffffffc008808b20 T fib6_update_sernum_upto_root
-ffffffc008808bb8 T fib6_update_sernum_stub
-ffffffc008808c8c T fib6_add
-ffffffc008809b9c t fib6_repair_tree
-ffffffc008809e5c T fib6_node_lookup
-ffffffc008809f64 T fib6_locate
-ffffffc00880a064 T fib6_del
-ffffffc00880a43c T fib6_clean_all
-ffffffc00880a544 T fib6_clean_all_skip_notify
-ffffffc00880a654 T fib6_run_gc
-ffffffc00880a7f0 t fib6_age
-ffffffc00880a854 t inet6_dump_fib
-ffffffc00880ab60 t fib6_flush_trees
-ffffffc00880accc T fib6_gc_cleanup
-ffffffc00880ad2c t ipv6_route_seq_start.llvm.8729507918443584467
-ffffffc00880ae8c t ipv6_route_seq_stop.llvm.8729507918443584467
-ffffffc00880af28 t ipv6_route_seq_next.llvm.8729507918443584467
-ffffffc00880b164 t ipv6_route_seq_show.llvm.8729507918443584467
-ffffffc00880b2a8 t fib6_walk
-ffffffc00880b380 t fib6_walk_continue
-ffffffc00880b508 t fib6_purge_rt
-ffffffc00880b748 t fib6_nh_drop_pcpu_from
-ffffffc00880b778 t __fib6_drop_pcpu_from
-ffffffc00880b8e8 t node_free_rcu
-ffffffc00880b920 t fib6_clean_node
-ffffffc00880ba7c t fib6_net_exit
-ffffffc00880bb64 t fib6_gc_timer_cb
-ffffffc00880bb9c t fib6_dump_done
-ffffffc00880bc70 t fib6_dump_node
-ffffffc00880bd0c t fib6_dump_table
-ffffffc00880be6c t ipv6_route_yield
-ffffffc00880bec8 T ip6_ra_control
-ffffffc00880c0a4 T ipv6_update_options
-ffffffc00880c1e8 T do_ipv6_setsockopt
-ffffffc00880d344 t sock_prot_inuse_add
-ffffffc00880d3e8 t txopt_put
-ffffffc00880d46c t ipv6_set_mcast_msfilter
-ffffffc00880d5b8 t __ip6_sock_set_addr_preferences
-ffffffc00880d6cc T ipv6_setsockopt
-ffffffc00880d744 T do_ipv6_getsockopt
-ffffffc00880df94 t ipv6_get_msfilter
-ffffffc00880e104 T ipv6_getsockopt
-ffffffc00880e18c t ndisc_hash
-ffffffc00880e1c8 t ndisc_key_eq
-ffffffc00880e204 t ndisc_constructor
-ffffffc00880e4d0 t pndisc_constructor
-ffffffc00880e574 t pndisc_destructor
-ffffffc00880e608 t pndisc_redo
-ffffffc00880e64c t ndisc_is_multicast
-ffffffc00880e66c t ndisc_allow_add
-ffffffc00880e6dc T __ndisc_fill_addr_option
-ffffffc00880e7a4 T ndisc_parse_options
-ffffffc00880e97c T ndisc_mc_map
-ffffffc00880ead8 T ndisc_send_skb
-ffffffc00880f078 T ndisc_send_na
-ffffffc00880f3dc t ndisc_alloc_skb
-ffffffc00880f4d4 T ndisc_ns_create
-ffffffc00880f734 T ndisc_send_ns
-ffffffc00880f7fc T ndisc_send_rs
-ffffffc00880fa7c T ndisc_update
-ffffffc00880fb2c T ndisc_send_redirect
-ffffffc00880fecc t ndisc_redirect_opt_addr_space
-ffffffc00880ff60 t ndisc_fill_redirect_addr_option
-ffffffc008810084 t ndisc_fill_redirect_hdr_option
-ffffffc0088100f8 T ndisc_rcv
-ffffffc008810248 t ndisc_recv_ns
-ffffffc008810868 t ndisc_recv_na
-ffffffc008810c08 t ndisc_recv_rs
-ffffffc008810e7c t ndisc_router_discovery
-ffffffc008811a98 t ndisc_redirect_rcv
-ffffffc008811c18 T ndisc_ifinfo_sysctl_change
-ffffffc008811f14 T ndisc_late_cleanup
-ffffffc008811f48 T ndisc_cleanup
-ffffffc008811fb8 t ndisc_solicit
-ffffffc008812168 t ndisc_error_report
-ffffffc0088121e0 t pndisc_is_router
-ffffffc008812268 t accept_untracked_na
-ffffffc0088122d8 t ndisc_netdev_event
-ffffffc008812634 t ndisc_send_unsol_na
-ffffffc0088127d0 T udpv6_init_sock
-ffffffc008812834 t udpv6_destruct_sock
-ffffffc00881287c T udp_v6_get_port
-ffffffc008812900 T udp_v6_rehash
-ffffffc008812954 T __udp6_lib_lookup
-ffffffc008812d10 t udp6_lib_lookup2
-ffffffc008812f28 T udp6_lib_lookup_skb
-ffffffc008812f94 T udpv6_recvmsg
-ffffffc008813680 T udpv6_encap_enable
-ffffffc0088136bc T __udp6_lib_err
-ffffffc008813d70 T __udp6_lib_rcv
-ffffffc00881449c t udp6_sk_rx_dst_set
-ffffffc00881452c t udp6_unicast_rcv_skb
-ffffffc0088145e0 t xfrm6_policy_check
-ffffffc008814660 t xfrm6_policy_check
-ffffffc0088146fc T udp_v6_early_demux
-ffffffc008814990 T udpv6_sendmsg
-ffffffc0088154c8 t txopt_get
-ffffffc0088155a4 t udp_v6_send_skb
-ffffffc008815ae8 t udp_v6_push_pending_frames
-ffffffc008815b88 T udpv6_destroy_sock
-ffffffc008815c68 T udpv6_setsockopt
-ffffffc008815cb4 T udpv6_getsockopt
-ffffffc008815cf8 T udp6_seq_show
-ffffffc008815d7c T udp6_proc_exit
-ffffffc008815db4 t udpv6_pre_connect
-ffffffc008815e18 T udpv6_exit
-ffffffc008815e58 t udpv6_queue_rcv_skb
-ffffffc0088160c8 t udpv6_queue_rcv_one_skb
-ffffffc0088167e0 t udpv6_rcv.llvm.9913964578181900507
-ffffffc008816818 t udpv6_err.llvm.9913964578181900507
-ffffffc00881684c t udplitev6_sk_init
-ffffffc008816890 T udplitev6_exit
-ffffffc0088168d4 T udplite6_proc_exit
-ffffffc008816928 t udplitev6_rcv.llvm.14437120263099764322
-ffffffc008816960 t udplitev6_err.llvm.14437120263099764322
-ffffffc008816994 T raw_v6_match
-ffffffc008816a58 T rawv6_mh_filter_register
-ffffffc008816a78 T rawv6_mh_filter_unregister
-ffffffc008816ab0 T raw6_local_deliver
-ffffffc008816d38 T raw6_icmp_error
-ffffffc008816fd4 T rawv6_rcv
-ffffffc008817290 t rawv6_rcv_skb
-ffffffc00881739c t rawv6_close
-ffffffc0088173f0 t rawv6_ioctl
-ffffffc0088176f8 t rawv6_init_sk
-ffffffc008817738 t raw6_destroy
-ffffffc008817784 t rawv6_setsockopt
-ffffffc008817938 t rawv6_getsockopt
-ffffffc0088181e0 t rawv6_sendmsg
-ffffffc0088189c8 t rawv6_recvmsg
-ffffffc008818cbc t rawv6_bind
-ffffffc008818ea8 T raw6_proc_exit
-ffffffc008818efc T rawv6_exit
-ffffffc008818f2c t rawv6_probe_proto_opt
-ffffffc00881900c t rawv6_send_hdrinc
-ffffffc008819754 t raw6_getfrag
-ffffffc00881987c t rawv6_push_pending_frames
-ffffffc008819aa4 t raw6_seq_show
-ffffffc008819b08 T icmpv6_push_pending_frames
-ffffffc008819c08 T icmp6_send
-ffffffc00881a390 t icmpv6_rt_has_prefsrc
-ffffffc00881a430 t icmpv6_xrlim_allow
-ffffffc00881a66c t icmpv6_route_lookup
-ffffffc00881a84c t icmpv6_getfrag
-ffffffc00881a8bc T icmpv6_param_prob_reason
-ffffffc00881a918 T ip6_err_gen_icmpv6_unreach
-ffffffc00881ab58 T icmpv6_notify
-ffffffc00881ad74 T icmpv6_flow_init
-ffffffc00881addc T icmpv6_cleanup
-ffffffc00881ae14 T icmpv6_err_convert
-ffffffc00881aed8 t icmpv6_rcv.llvm.1368796449358034995
-ffffffc00881b498 t icmpv6_err.llvm.1368796449358034995
-ffffffc00881b564 t icmpv6_echo_reply
-ffffffc00881ba1c T ipv6_sock_mc_join
-ffffffc00881ba48 t __ipv6_sock_mc_join.llvm.7779032959901987520
-ffffffc00881bc30 T ipv6_sock_mc_join_ssm
-ffffffc00881bc5c T ipv6_sock_mc_drop
-ffffffc00881be58 t ip6_mc_leave_src
-ffffffc00881bf48 T __ipv6_dev_mc_dec
-ffffffc00881c0bc T __ipv6_sock_mc_close
-ffffffc00881c270 T ipv6_sock_mc_close
-ffffffc00881c304 T ip6_mc_source
-ffffffc00881c76c t ip6_mc_add_src
-ffffffc00881ca00 t ip6_mc_del_src
-ffffffc00881cbb8 T ip6_mc_msfilter
-ffffffc00881ced8 T ip6_mc_msfget
-ffffffc00881d200 T inet6_mc_check
-ffffffc00881d370 T ipv6_dev_mc_inc
-ffffffc00881d39c t __ipv6_dev_mc_inc.llvm.7779032959901987520
-ffffffc00881d7a0 t igmp6_group_dropped
-ffffffc00881da00 t ma_put
-ffffffc00881db04 T ipv6_dev_mc_dec
-ffffffc00881dba0 T ipv6_chk_mcast_addr
-ffffffc00881dcc4 T igmp6_event_query
-ffffffc00881dde0 T igmp6_event_report
-ffffffc00881defc T ipv6_mc_dad_complete
-ffffffc00881e0c0 T ipv6_mc_unmap
-ffffffc00881e120 T ipv6_mc_remap
-ffffffc00881e1ec T ipv6_mc_up
-ffffffc00881e2b8 T ipv6_mc_down
-ffffffc00881e4e4 t mld_del_delrec
-ffffffc00881e694 t igmp6_group_added
-ffffffc00881e7bc T ipv6_mc_init_dev
-ffffffc00881e9a8 t mld_gq_work
-ffffffc00881eaac t mld_ifc_work
-ffffffc00881ef10 t mld_dad_work
-ffffffc00881f12c t mld_query_work
-ffffffc00881fc34 t mld_report_work
-ffffffc008820230 T ipv6_mc_destroy_dev
-ffffffc0088203f8 t mld_clear_delrec
-ffffffc008820538 T igmp6_cleanup
-ffffffc008820598 T igmp6_late_cleanup
-ffffffc0088205cc t mld_mca_work
-ffffffc008820710 t mld_in_v1_mode
-ffffffc008820770 t igmp6_send
-ffffffc008820f98 t mld_sendpack
-ffffffc008821588 t mld_newpack
-ffffffc0088217ac t mld_ifc_event
-ffffffc008821894 t ip6_mc_del1_src
-ffffffc00882199c t igmp6_join_group
-ffffffc008821b38 t igmp6_group_queried
-ffffffc008821c88 t igmp6_mc_seq_start
-ffffffc008821ddc t igmp6_mc_seq_stop
-ffffffc008821e1c t igmp6_mc_seq_next
-ffffffc008821ed0 t igmp6_mc_seq_show
-ffffffc008821f5c t igmp6_mcf_seq_start
-ffffffc0088220e0 t igmp6_mcf_seq_stop
-ffffffc00882212c t igmp6_mcf_seq_next
-ffffffc00882227c t igmp6_mcf_seq_show
-ffffffc0088222e4 t ipv6_mc_netdev_event
-ffffffc00882243c t ip6frag_init
-ffffffc008822470 t ip6_frag_expire
-ffffffc008822650 T ipv6_frag_exit
-ffffffc0088226cc t ip6frag_key_hashfn
-ffffffc0088226fc t ip6frag_obj_hashfn
-ffffffc008822730 t ip6frag_obj_cmpfn
-ffffffc00882277c t jhash2
-ffffffc00882290c t ipv6_frag_rcv
-ffffffc0088231bc t ip6_frag_reasm
-ffffffc008823474 t tcp_v6_reqsk_send_ack
-ffffffc00882356c t tcp_v6_send_reset
-ffffffc0088237cc t tcp_v6_reqsk_destructor
-ffffffc008823810 t tcp_v6_route_req
-ffffffc00882395c t tcp_v6_init_seq
-ffffffc0088239ac t tcp_v6_init_ts_off
-ffffffc0088239ec t tcp_v6_send_synack
-ffffffc008823b8c T tcp_v6_get_syncookie
-ffffffc008823ba0 T tcp_v6_early_demux
-ffffffc008823d0c t tcp_v6_send_check
-ffffffc008823d80 t inet6_sk_rx_dst_set
-ffffffc008823e8c t tcp_v6_conn_request
-ffffffc008823f9c t tcp_v6_syn_recv_sock
-ffffffc008824584 t tcp_v6_mtu_reduced
-ffffffc008824678 T tcp6_proc_exit
-ffffffc0088246b0 t tcp_v6_pre_connect
-ffffffc0088246cc t tcp_v6_connect
-ffffffc008824ba0 t tcp_v6_init_sock
-ffffffc008824be8 t tcp_v6_do_rcv
-ffffffc0088250bc T tcpv6_exit
-ffffffc008825128 t tcp_v6_send_response
-ffffffc008825634 t ip6_dst_store
-ffffffc0088256f8 t skb_clone_and_charge_r
-ffffffc008825828 t tcp6_seq_show
-ffffffc008825d28 t tcp_v6_rcv.llvm.15915789915913877141
-ffffffc0088268ec t tcp_v6_err.llvm.15915789915913877141
-ffffffc008826dc4 t tcp_v6_fill_cb
-ffffffc008826e80 t ip6_sk_accept_pmtu
-ffffffc008826f04 t ping_v6_pre_connect
-ffffffc008826f20 t ping_v6_sendmsg
-ffffffc0088273d4 T pingv6_exit
-ffffffc008827470 t dummy_ipv6_recv_error
-ffffffc008827484 t dummy_ip6_datagram_recv_ctl
-ffffffc008827494 t dummy_icmpv6_err_convert
-ffffffc0088274a8 t dummy_ipv6_icmp_error
-ffffffc0088274b8 t dummy_ipv6_chk_addr
-ffffffc0088274cc t ping_v6_seq_start
-ffffffc0088274fc t ping_v6_seq_show
-ffffffc008827570 T ipv6_exthdrs_exit
-ffffffc0088275c8 T ipv6_parse_hopopts
-ffffffc0088276e4 t ip6_parse_tlv
-ffffffc008827c48 T ipv6_push_nfrag_opts
-ffffffc008827e38 T ipv6_push_frag_opts
-ffffffc008827eb4 T ipv6_dup_options
-ffffffc008827f64 T ipv6_renew_options
-ffffffc008828228 T __ipv6_fixup_options
-ffffffc008828294 T fl6_update_dst
-ffffffc0088282f0 t ipv6_rthdr_rcv.llvm.3847476208427795014
-ffffffc0088294ec t ipv6_destopt_rcv.llvm.3847476208427795014
-ffffffc0088296c4 t dst_discard.llvm.3847476208427795014
-ffffffc0088296f8 T ip6_datagram_dst_update
-ffffffc0088299cc T ip6_datagram_release_cb
-ffffffc008829a98 T __ip6_datagram_connect
-ffffffc008829db4 T ip6_datagram_connect
-ffffffc008829e20 T ip6_datagram_connect_v6_only
-ffffffc008829ea0 T ipv6_icmp_error
-ffffffc00882a050 T ipv6_local_error
-ffffffc00882a1a0 T ipv6_local_rxpmtu
-ffffffc00882a2e0 T ipv6_recv_error
-ffffffc00882a6ec T ip6_datagram_recv_common_ctl
-ffffffc00882a7d4 T ip6_datagram_recv_specific_ctl
-ffffffc00882ac58 T ipv6_recv_rxpmtu
-ffffffc00882ae50 T ip6_datagram_recv_ctl
-ffffffc00882af64 T ip6_datagram_send_ctl
-ffffffc00882b42c T __ip6_dgram_sock_seq_show
-ffffffc00882b570 T __fl6_sock_lookup
-ffffffc00882b690 T fl6_free_socklist
-ffffffc00882b754 t fl_release
-ffffffc00882b860 T fl6_merge_options
-ffffffc00882b8ec T ipv6_flowlabel_opt_get
-ffffffc00882ba64 T ipv6_flowlabel_opt
-ffffffc00882c2f8 T ip6_flowlabel_init
-ffffffc00882c35c T ip6_flowlabel_cleanup
-ffffffc00882c3c8 t fl6_renew
-ffffffc00882c4c8 t fl_lookup
-ffffffc00882c5b4 t fl_link
-ffffffc00882c61c t fl_free
-ffffffc00882c688 t mem_check
-ffffffc00882c788 t fl_intern
-ffffffc00882c910 t fl_free_rcu
-ffffffc00882c96c t ip6fl_seq_start
-ffffffc00882ca5c t ip6fl_seq_stop
-ffffffc00882ca88 t ip6fl_seq_next
-ffffffc00882cb38 t ip6fl_seq_show
-ffffffc00882cc68 t ip6_fl_gc
-ffffffc00882ce1c T inet6_csk_route_req
-ffffffc00882cf60 T inet6_csk_addr2sockaddr
-ffffffc00882cfe0 T inet6_csk_xmit
-ffffffc00882d128 t inet6_csk_route_socket
-ffffffc00882d344 T inet6_csk_update_pmtu
-ffffffc00882d424 T udpv6_offload_init
-ffffffc00882d45c T udpv6_offload_exit
-ffffffc00882d494 t udp6_ufo_fragment.llvm.270510906152393565
-ffffffc00882d734 t udp6_gro_receive.llvm.270510906152393565
-ffffffc00882da28 t udp6_gro_complete.llvm.270510906152393565
-ffffffc00882db74 T seg6_validate_srh
-ffffffc00882dc28 T seg6_get_srh
-ffffffc00882ddb0 T seg6_icmp_srh
-ffffffc00882de38 T seg6_exit
-ffffffc00882de98 t seg6_genl_sethmac
-ffffffc00882deac t seg6_genl_dumphmac_start
-ffffffc00882dec0 t seg6_genl_dumphmac
-ffffffc00882ded4 t seg6_genl_dumphmac_done
-ffffffc00882dee8 t seg6_genl_set_tunsrc
-ffffffc00882df88 t seg6_genl_get_tunsrc
-ffffffc00882e080 T call_fib6_notifier
-ffffffc00882e0b4 T call_fib6_notifiers
-ffffffc00882e0e8 t fib6_seq_read
-ffffffc00882e134 t fib6_dump
-ffffffc00882e198 T ipv6_rpl_srh_size
-ffffffc00882e1c0 T ipv6_rpl_srh_decompress
-ffffffc00882e310 T ipv6_rpl_srh_compress
-ffffffc00882e61c T ioam6_namespace
-ffffffc00882e688 t rhashtable_lookup_fast
-ffffffc00882e824 T ioam6_fill_trace_data
-ffffffc00882ed2c T ioam6_exit
-ffffffc00882ed8c t ioam6_ns_cmpfn
-ffffffc00882edb0 t ioam6_sc_cmpfn
-ffffffc00882edd4 t ioam6_free_ns
-ffffffc00882ee0c t ioam6_free_sc
-ffffffc00882ee44 t ioam6_genl_addns
-ffffffc00882efb0 t ioam6_genl_delns
-ffffffc00882f0b4 t ioam6_genl_dumpns_start
-ffffffc00882f12c t ioam6_genl_dumpns
-ffffffc00882f330 t ioam6_genl_dumpns_done
-ffffffc00882f378 t ioam6_genl_addsc
-ffffffc00882f4c8 t ioam6_genl_delsc
-ffffffc00882f5c4 t ioam6_genl_dumpsc_start
-ffffffc00882f63c t ioam6_genl_dumpsc
-ffffffc00882f7f4 t ioam6_genl_dumpsc_done
-ffffffc00882f83c t ioam6_genl_ns_set_schema
-ffffffc00882f980 t rhashtable_lookup_insert_fast
-ffffffc00882fe38 t rhashtable_remove_fast
-ffffffc0088301e4 T ipv6_sysctl_register
-ffffffc00883028c T ipv6_sysctl_unregister
-ffffffc0088302ec t proc_rt6_multipath_hash_policy
-ffffffc008830354 t proc_rt6_multipath_hash_fields
-ffffffc0088303bc T xfrm6_fini
-ffffffc008830434 t xfrm6_dst_lookup.llvm.18395030132298963905
-ffffffc0088304dc t xfrm6_get_saddr.llvm.18395030132298963905
-ffffffc0088305d0 t xfrm6_fill_dst.llvm.18395030132298963905
-ffffffc008830834 t xfrm6_dst_destroy
-ffffffc008830a04 t xfrm6_dst_ifdown
-ffffffc008830c20 t xfrm6_update_pmtu
-ffffffc008830c70 t xfrm6_redirect
-ffffffc008830cc0 T xfrm6_state_fini
-ffffffc008830cf4 T xfrm6_rcv_spi
-ffffffc008830d30 T xfrm6_transport_finish
-ffffffc008830eb8 T xfrm6_udp_encap_rcv
-ffffffc008831078 T xfrm6_rcv_tnl
-ffffffc0088310d0 T xfrm6_rcv
-ffffffc008831124 T xfrm6_input_addr
-ffffffc0088316a8 T xfrm6_local_rxpmtu
-ffffffc008831744 T xfrm6_local_error
-ffffffc0088317f8 T xfrm6_output
-ffffffc008831b04 t __xfrm6_output_finish
-ffffffc008831b38 T xfrm6_rcv_encap
-ffffffc008831d40 T xfrm6_protocol_register
-ffffffc008831eb8 T xfrm6_protocol_deregister
-ffffffc00883205c T xfrm6_protocol_fini
-ffffffc008832090 t xfrm6_esp_rcv
-ffffffc008832144 t xfrm6_esp_err
-ffffffc008832208 t xfrm6_ah_rcv
-ffffffc0088322bc t xfrm6_ah_err
-ffffffc008832380 t xfrm6_ipcomp_rcv
-ffffffc008832434 t xfrm6_ipcomp_err
-ffffffc0088324f8 t xfrm6_rcv_cb.llvm.5847106438338651049
-ffffffc0088325dc T fib6_rule_default
-ffffffc008832660 T fib6_rules_dump
-ffffffc008832694 T fib6_rules_seq_read
-ffffffc0088326c4 T fib6_lookup
-ffffffc0088327d8 T fib6_rule_lookup
-ffffffc0088329dc T fib6_rules_cleanup
-ffffffc008832a30 t fib6_rule_action
-ffffffc008832cb4 t fib6_rule_suppress
-ffffffc008832d50 t fib6_rule_match
-ffffffc008832ef4 t fib6_rule_configure
-ffffffc008833098 t fib6_rule_delete
-ffffffc0088330f8 t fib6_rule_compare
-ffffffc0088331b8 t fib6_rule_fill
-ffffffc008833254 t fib6_rule_nlmsg_payload
-ffffffc008833264 t fib6_rule_saddr
-ffffffc008833384 T snmp6_register_dev
-ffffffc00883340c t snmp6_dev_seq_show
-ffffffc008833644 T snmp6_unregister_dev
-ffffffc0088336a8 T ipv6_misc_proc_exit
-ffffffc0088336f8 t snmp6_seq_show_item
-ffffffc0088338b4 t snmp6_seq_show_icmpv6msg
-ffffffc008833a2c t sockstat6_seq_show
-ffffffc008833b28 t snmp6_seq_show
-ffffffc008833cd4 T esp6_output_head
-ffffffc008834170 T esp6_output_tail
-ffffffc0088346f0 T esp6_input_done2
-ffffffc008834a88 t esp6_rcv_cb
-ffffffc008834a9c t esp6_err
-ffffffc008834bf4 t esp6_init_state
-ffffffc008835098 t esp6_destroy
-ffffffc0088350d0 t esp6_input
-ffffffc008835444 t esp6_output
-ffffffc0088355dc t ipcomp6_rcv_cb
-ffffffc0088355f0 t ipcomp6_err
-ffffffc008835750 t ipcomp6_init_state
-ffffffc008835a00 T xfrm6_tunnel_spi_lookup
-ffffffc008835ae4 T xfrm6_tunnel_alloc_spi
-ffffffc008835df8 t xfrm6_tunnel_rcv
-ffffffc008835e5c t xfrm6_tunnel_err
-ffffffc008835e70 t xfrm6_tunnel_init_state
-ffffffc008835efc t xfrm6_tunnel_destroy
-ffffffc008836060 t xfrm6_tunnel_input
-ffffffc008836084 t xfrm6_tunnel_output
-ffffffc0088360cc t x6spi_destroy_rcu
-ffffffc008836104 T xfrm6_tunnel_register
-ffffffc0088361fc T xfrm6_tunnel_deregister
-ffffffc0088362dc t tunnel6_rcv_cb
-ffffffc0088363cc t tunnel46_rcv
-ffffffc0088364a8 t tunnel46_err
-ffffffc00883656c t tunnel6_rcv
-ffffffc008836648 t tunnel6_err
-ffffffc00883670c t mip6_mh_filter
-ffffffc008836850 t mip6_rthdr_init_state
-ffffffc0088368dc t mip6_rthdr_destroy
-ffffffc0088368ec t mip6_rthdr_input
-ffffffc008836974 t mip6_rthdr_output
-ffffffc008836a58 t mip6_destopt_init_state
-ffffffc008836ae4 t mip6_destopt_destroy
-ffffffc008836af4 t mip6_destopt_input
-ffffffc008836b7c t mip6_destopt_output
-ffffffc008836c80 t mip6_destopt_reject
-ffffffc008836ff0 t vti6_dev_setup
-ffffffc0088370a4 t vti6_validate
-ffffffc0088370b8 t vti6_newlink
-ffffffc008837208 t vti6_changelink
-ffffffc008837474 t vti6_dellink
-ffffffc0088374f0 t vti6_get_size
-ffffffc008837504 t vti6_fill_info
-ffffffc008837618 t vti6_dev_free
-ffffffc008837648 t vti6_dev_init
-ffffffc008837790 t vti6_dev_uninit
-ffffffc008837900 t vti6_tnl_xmit
-ffffffc008837ff0 t vti6_siocdevprivate
-ffffffc008838afc t vti6_link_config
-ffffffc008838c64 t vti6_locate
-ffffffc008838e5c t vti6_update
-ffffffc008839010 t vti6_tnl_create2
-ffffffc008839108 t vti6_rcv_tunnel
-ffffffc00883916c t vti6_rcv_cb
-ffffffc0088393e8 t vti6_err
-ffffffc0088395ac t vti6_input_proto
-ffffffc0088396f8 t vti6_tnl_lookup
-ffffffc0088398f4 t vti6_rcv
-ffffffc00883993c t ipip6_tunnel_setup
-ffffffc0088399e8 t ipip6_validate
-ffffffc008839a38 t ipip6_newlink
-ffffffc008839c04 t ipip6_changelink
-ffffffc008839df8 t ipip6_dellink
-ffffffc008839e74 t ipip6_get_size
-ffffffc008839e88 t ipip6_fill_info
-ffffffc00883a090 t ipip6_dev_free
-ffffffc00883a0d4 t ipip6_tunnel_init
-ffffffc00883a240 t ipip6_tunnel_uninit
-ffffffc00883a40c t sit_tunnel_xmit
-ffffffc00883ad9c t ipip6_tunnel_siocdevprivate
-ffffffc00883b6f4 t ipip6_tunnel_ctl
-ffffffc00883bbb8 t ipip6_tunnel_bind_dev
-ffffffc00883bce0 t prl_list_destroy_rcu
-ffffffc00883bd20 t ipip6_tunnel_locate
-ffffffc00883befc t ipip6_tunnel_create
-ffffffc00883bff4 t ipip6_tunnel_update
-ffffffc00883c19c t ipip6_rcv
-ffffffc00883ca40 t ipip6_err
-ffffffc00883cbf4 t ipip6_tunnel_lookup
-ffffffc00883cdc4 T ip6_tnl_parse_tlv_enc_lim
-ffffffc00883cf7c T ip6_tnl_get_cap
-ffffffc00883d020 T ip6_tnl_rcv_ctl
-ffffffc00883d15c T ip6_tnl_rcv
-ffffffc00883d1ac t ip6ip6_dscp_ecn_decapsulate
-ffffffc00883d208 t ip4ip6_dscp_ecn_decapsulate
-ffffffc00883d29c t __ip6_tnl_rcv
-ffffffc00883d5f8 T ip6_tnl_xmit_ctl
-ffffffc00883d7b4 T ip6_tnl_xmit
-ffffffc00883e360 t skb_clone_writable
-ffffffc00883e3c4 T ip6_tnl_change_mtu
-ffffffc00883e434 T ip6_tnl_get_iflink
-ffffffc00883e448 T ip6_tnl_encap_add_ops
-ffffffc00883e4c8 T ip6_tnl_encap_del_ops
-ffffffc00883e56c T ip6_tnl_encap_setup
-ffffffc00883e678 T ip6_tnl_get_link_net
-ffffffc00883e688 t IP6_ECN_decapsulate
-ffffffc00883eb78 t ip6_tnl_dev_setup
-ffffffc00883ec40 t ip6_tnl_validate
-ffffffc00883ec90 t ip6_tnl_newlink
-ffffffc00883eec0 t ip6_tnl_changelink
-ffffffc00883f0a0 t ip6_tnl_dellink
-ffffffc00883f11c t ip6_tnl_get_size
-ffffffc00883f130 t ip6_tnl_fill_info
-ffffffc00883f350 t ip6_dev_free
-ffffffc00883f39c t ip6_tnl_dev_init
-ffffffc00883f59c t ip6_tnl_dev_uninit
-ffffffc00883f720 t ip6_tnl_start_xmit
-ffffffc00883fc3c t ip6_tnl_siocdevprivate
-ffffffc008840608 t ip6_tnl_link_config
-ffffffc008840804 t ip6_tnl_locate
-ffffffc008840a2c t ip6_tnl_update
-ffffffc008840bfc t ip6_tnl_create2
-ffffffc008840d00 t ip6_tnl_netlink_parms
-ffffffc008840e40 t ip4ip6_rcv
-ffffffc008840e80 t ip4ip6_err
-ffffffc00884129c t ipxip6_rcv
-ffffffc008841494 t ip6_tnl_lookup
-ffffffc008841710 t ip6_tnl_err
-ffffffc008841910 t ip6ip6_rcv
-ffffffc008841950 t ip6ip6_err
-ffffffc008841acc t ip6gre_tap_setup
-ffffffc008841b3c t ip6gre_tap_validate
-ffffffc008841c30 t ip6gre_newlink
-ffffffc008841e1c t ip6gre_changelink
-ffffffc008842010 t ip6gre_get_size
-ffffffc008842024 t ip6gre_fill_info
-ffffffc0088423fc t ip6gre_dev_free
-ffffffc008842448 t ip6gre_tap_init
-ffffffc008842490 t ip6gre_tunnel_uninit
-ffffffc008842620 t ip6gre_tunnel_xmit
-ffffffc008842bd8 t ip6gre_tunnel_init_common
-ffffffc008842e5c t ip6gre_tunnel_unlink
-ffffffc008842ee8 t prepare_ip6gre_xmit_ipv4
-ffffffc008842fa0 t __gre6_xmit
-ffffffc00884330c t prepare_ip6gre_xmit_ipv6
-ffffffc0088434b4 t ip6gre_tunnel_validate
-ffffffc0088434fc t ip6gre_netlink_parms
-ffffffc0088436e8 t ip6gre_tunnel_find
-ffffffc008843820 t ip6gre_newlink_common
-ffffffc008843980 t ip6gre_tunnel_link
-ffffffc0088439fc t ip6gre_tnl_link_config_common
-ffffffc008843b14 t ip6gre_tnl_link_config_route
-ffffffc008843c0c t ip6gre_changelink_common
-ffffffc008843d84 t ip6gre_tnl_change
-ffffffc008843ebc t ip6gre_tunnel_setup
-ffffffc008843f58 t ip6gre_tunnel_init
-ffffffc008843fdc t ip6gre_tunnel_siocdevprivate
-ffffffc008844f64 t ip6gre_header
-ffffffc008845118 t ip6gre_dellink
-ffffffc008845194 t ip6erspan_tap_setup
-ffffffc008845204 t ip6erspan_tap_validate
-ffffffc0088453c8 t ip6erspan_newlink
-ffffffc0088455f8 t ip6erspan_changelink
-ffffffc0088458f4 t ip6erspan_tap_init
-ffffffc008845b54 t ip6erspan_tunnel_uninit
-ffffffc008845cd4 t ip6erspan_tunnel_xmit
-ffffffc008846348 t ip6gre_err
-ffffffc00884650c t ip6gre_tunnel_lookup
-ffffffc0088468fc T __ipv6_addr_type
-ffffffc008846a38 T register_inet6addr_notifier
-ffffffc008846a70 T unregister_inet6addr_notifier
-ffffffc008846aa8 T inet6addr_notifier_call_chain
-ffffffc008846ae4 T register_inet6addr_validator_notifier
-ffffffc008846b1c T unregister_inet6addr_validator_notifier
-ffffffc008846b54 T inet6addr_validator_notifier_call_chain
-ffffffc008846b90 t eafnosupport_ipv6_dst_lookup_flow
-ffffffc008846ba4 t eafnosupport_ipv6_route_input
-ffffffc008846bb8 t eafnosupport_fib6_get_table
-ffffffc008846bcc t eafnosupport_fib6_lookup
-ffffffc008846be0 t eafnosupport_fib6_table_lookup
-ffffffc008846bf4 t eafnosupport_fib6_select_path
-ffffffc008846c04 t eafnosupport_ip6_mtu_from_fib6
-ffffffc008846c18 t eafnosupport_fib6_nh_init
-ffffffc008846c68 t eafnosupport_ip6_del_rt
-ffffffc008846c7c t eafnosupport_ipv6_fragment
-ffffffc008846cb4 t eafnosupport_ipv6_dev_find
-ffffffc008846cc8 T in6_dev_finish_destroy
-ffffffc008846df4 t in6_dev_finish_destroy_rcu
-ffffffc008846e4c T ipv6_ext_hdr
-ffffffc008846e7c T ipv6_skip_exthdr
-ffffffc008847034 T ipv6_find_tlv
-ffffffc0088470d0 T ipv6_find_hdr
-ffffffc008847444 T udp6_csum_init
-ffffffc008847674 T udp6_set_csum
-ffffffc008847774 T ipv6_proxy_select_ident
-ffffffc008847838 T ipv6_select_ident
-ffffffc00884786c T ip6_find_1stfragopt
-ffffffc00884795c T ip6_dst_hoplimit
-ffffffc0088479d4 T __ip6_local_out
-ffffffc008847a30 T ip6_local_out
-ffffffc008847ac4 T inet6_add_protocol
-ffffffc008847b30 T inet6_del_protocol
-ffffffc008847bc4 T inet6_add_offload
-ffffffc008847c30 T inet6_del_offload
-ffffffc008847cc4 t ipv6_gso_segment
-ffffffc0088480f8 t ipv6_gro_receive
-ffffffc0088484cc t ipv6_gro_complete
-ffffffc00884866c t ipv6_gso_pull_exthdrs
-ffffffc008848774 t sit_gso_segment
-ffffffc0088487bc t sit_ip6ip6_gro_receive
-ffffffc008848808 t sit_gro_complete
-ffffffc008848858 t ip6ip6_gso_segment
-ffffffc0088488a0 t ip6ip6_gro_complete
-ffffffc0088488f0 t ip4ip6_gso_segment
-ffffffc008848938 t ip4ip6_gro_receive
-ffffffc008848984 t ip4ip6_gro_complete
-ffffffc0088489d4 t tcp6_gso_segment.llvm.17960813922259317057
-ffffffc008848aac t tcp6_gro_receive.llvm.17960813922259317057
-ffffffc008848c54 t tcp6_gro_complete.llvm.17960813922259317057
-ffffffc008848cdc t __tcp_v6_send_check
-ffffffc008848d50 T inet6_ehashfn
-ffffffc008848f78 T __inet6_lookup_established
-ffffffc0088491e0 T inet6_lookup_listener
-ffffffc0088495a4 t inet6_lhash2_lookup
-ffffffc008849760 T inet6_lookup
-ffffffc0088498d0 T inet6_hash_connect
-ffffffc008849940 t __inet6_check_established
-ffffffc008849c60 T inet6_hash
-ffffffc008849ca4 T ipv6_mc_check_mld
-ffffffc00884a068 t ipv6_mc_validate_checksum
-ffffffc00884a1ac t packet_notifier
-ffffffc00884a448 t __unregister_prot_hook
-ffffffc00884a56c t __register_prot_hook
-ffffffc00884a658 t __fanout_link
-ffffffc00884a6d8 t packet_seq_start
-ffffffc00884a720 t packet_seq_stop
-ffffffc00884a74c t packet_seq_next
-ffffffc00884a784 t packet_seq_show
-ffffffc00884a8a8 t packet_create
-ffffffc00884aba4 t dev_queue_xmit
-ffffffc00884abd4 t packet_sock_destruct
-ffffffc00884ac60 t packet_rcv
-ffffffc00884b07c t packet_rcv_spkt
-ffffffc00884b18c t packet_release
-ffffffc00884b6ac t packet_bind
-ffffffc00884b70c t packet_getname
-ffffffc00884b7d0 t packet_poll
-ffffffc00884b934 t packet_ioctl
-ffffffc00884bc94 t packet_setsockopt
-ffffffc00884c284 t packet_getsockopt
-ffffffc00884ca64 t packet_sendmsg
-ffffffc00884e04c t packet_recvmsg
-ffffffc00884e444 t packet_mmap
-ffffffc00884e630 t packet_set_ring
-ffffffc00884ee10 t tpacket_rcv
-ffffffc00884f9b0 t free_pg_vec
-ffffffc00884fa3c t prb_retire_rx_blk_timer_expired
-ffffffc00884fc20 t prb_retire_current_block
-ffffffc00884fe0c t prb_dispatch_next_block
-ffffffc00884ff5c t run_filter
-ffffffc008850088 t __packet_rcv_has_room
-ffffffc008850268 t skb_csum_unnecessary
-ffffffc0088502c0 t skb_get
-ffffffc008850344 t skb_set_owner_r
-ffffffc00885040c t packet_increment_rx_head
-ffffffc008850464 t skb_clear_delivery_time
-ffffffc0088504c8 t __packet_set_status
-ffffffc008850574 t __packet_get_status
-ffffffc008850610 t packet_do_bind
-ffffffc0088509c4 t packet_mc_add
-ffffffc008850c10 t packet_mc_drop
-ffffffc008850d84 t fanout_add
-ffffffc0088510f4 t fanout_set_data
-ffffffc008851224 t packet_direct_xmit
-ffffffc008851354 t packet_rcv_fanout
-ffffffc00885162c t match_fanout_group
-ffffffc008851660 t fanout_demux_rollover
-ffffffc008851a78 t virtio_net_hdr_to_skb
-ffffffc008851e74 t tpacket_destruct_skb
-ffffffc0088520b8 t packet_parse_headers
-ffffffc00885231c t packet_mm_open
-ffffffc008852370 t packet_mm_close
-ffffffc0088523c8 t packet_bind_spkt
-ffffffc008852454 t packet_getname_spkt
-ffffffc0088524e0 t packet_sendmsg_spkt
-ffffffc008852940 t pfkey_send_notify
-ffffffc008852c4c t pfkey_send_acquire
-ffffffc008853318 t pfkey_compile_policy
-ffffffc0088534dc t pfkey_send_new_mapping
-ffffffc00885373c t pfkey_send_policy_notify
-ffffffc008853a4c t pfkey_send_migrate
-ffffffc008853a60 t pfkey_is_alive
-ffffffc008853b08 t pfkey_broadcast
-ffffffc008853c48 t __pfkey_xfrm_state2msg
-ffffffc0088543e4 t pfkey_broadcast_one
-ffffffc008854508 t parse_ipsecrequests
-ffffffc008854870 t pfkey_sadb2xfrm_user_sec_ctx
-ffffffc0088548e4 t check_reqid
-ffffffc008854988 t pfkey_xfrm_policy2msg
-ffffffc008854f90 t pfkey_seq_start
-ffffffc008854ff8 t pfkey_seq_stop
-ffffffc008855024 t pfkey_seq_next
-ffffffc008855098 t pfkey_seq_show
-ffffffc008855170 t pfkey_create
-ffffffc0088553c8 t pfkey_sock_destruct
-ffffffc0088554f8 t pfkey_release
-ffffffc00885566c t pfkey_sendmsg
-ffffffc008855ae4 t pfkey_recvmsg
-ffffffc008855c80 t pfkey_reserved
-ffffffc008855c94 t pfkey_getspi
-ffffffc0088560ec t pfkey_add
-ffffffc008856854 t pfkey_delete
-ffffffc008856a30 t pfkey_get
-ffffffc008856c40 t pfkey_acquire
-ffffffc008856d60 t pfkey_register
-ffffffc008856f80 t pfkey_flush
-ffffffc0088570dc t pfkey_dump
-ffffffc008857244 t pfkey_promisc
-ffffffc008857318 t pfkey_spdadd
-ffffffc008857684 t pfkey_spddelete
-ffffffc008857960 t pfkey_spdget
-ffffffc008857ca0 t pfkey_spddump
-ffffffc008857d48 t pfkey_spdflush
-ffffffc008857e68 t pfkey_migrate
-ffffffc008857e78 t xfrm_state_put
-ffffffc008857f08 t pfkey_dump_sa
-ffffffc008857f4c t pfkey_dump_sa_done
-ffffffc008857f80 t pfkey_do_dump
-ffffffc008858098 t dump_sa
-ffffffc0088581a8 t xfrm_pol_put
-ffffffc008858234 t pfkey_dump_sp
-ffffffc008858278 t pfkey_dump_sp_done
-ffffffc0088582b0 t dump_sp
-ffffffc0088584e0 T register_net_sysctl
-ffffffc008858510 T unregister_net_sysctl_table
-ffffffc00885853c t is_seen
-ffffffc008858564 t net_ctl_header_lookup
-ffffffc008858584 t net_ctl_set_ownership
-ffffffc00885859c t net_ctl_permissions
-ffffffc0088585fc T vsock_insert_connected
-ffffffc0088586fc T vsock_remove_bound
-ffffffc0088587e4 T vsock_remove_connected
-ffffffc0088588cc T vsock_find_bound_socket
-ffffffc008858a14 T vsock_find_connected_socket
-ffffffc008858b54 T vsock_remove_sock
-ffffffc008858b94 T vsock_for_each_connected_socket
-ffffffc008858c58 T vsock_add_pending
-ffffffc008858d70 T vsock_remove_pending
-ffffffc008858e98 T vsock_enqueue_accept
-ffffffc008858fb0 T vsock_assign_transport
-ffffffc0088591ac T vsock_find_cid
-ffffffc008859244 T vsock_create_connected
-ffffffc008859284 t __vsock_create.llvm.2459621281528505735
-ffffffc0088594d8 T vsock_stream_has_data
-ffffffc008859524 T vsock_stream_has_space
-ffffffc008859570 T vsock_data_ready
-ffffffc008859600 T vsock_core_get_transport
-ffffffc008859614 T vsock_core_register
-ffffffc008859700 T vsock_core_unregister
-ffffffc00885979c t vsock_sk_destruct
-ffffffc008859868 t vsock_queue_rcv_skb
-ffffffc0088598bc t vsock_connect_timeout
-ffffffc0088599e4 t vsock_pending_work
-ffffffc008859bd0 t vsock_dev_ioctl
-ffffffc008859d9c t vsock_create
-ffffffc008859f94 t vsock_release
-ffffffc008859fe0 t vsock_bind
-ffffffc00885a08c t vsock_dgram_connect
-ffffffc00885a1f8 t vsock_getname
-ffffffc00885a294 t vsock_poll
-ffffffc00885a558 t vsock_shutdown
-ffffffc00885a674 t vsock_dgram_sendmsg
-ffffffc00885a874 t vsock_dgram_recvmsg
-ffffffc00885a8c0 t __vsock_release
-ffffffc00885ab20 t __vsock_bind
-ffffffc00885af70 t vsock_auto_bind
-ffffffc00885b004 t vsock_connect
-ffffffc00885b3cc t vsock_accept
-ffffffc00885b730 t vsock_listen
-ffffffc00885b7d4 t vsock_connectible_setsockopt
-ffffffc00885b9f8 t vsock_connectible_getsockopt
-ffffffc00885bf08 t vsock_connectible_sendmsg
-ffffffc00885c304 t vsock_connectible_recvmsg
-ffffffc00885c698 t vsock_set_rcvlowat
-ffffffc00885c718 t vsock_update_buffer_size
-ffffffc00885c7d4 t vsock_connectible_wait_data
-ffffffc00885c994 T vsock_add_tap
-ffffffc00885ca34 T vsock_remove_tap
-ffffffc00885caec T vsock_deliver_tap
-ffffffc00885cb78 t __vsock_deliver_tap
-ffffffc00885cd30 T vsock_addr_init
-ffffffc00885cd50 T vsock_addr_validate
-ffffffc00885cd98 T vsock_addr_bound
-ffffffc00885cdb4 T vsock_addr_unbind
-ffffffc00885cdd8 T vsock_addr_equals_addr
-ffffffc00885ce14 T vsock_addr_cast
-ffffffc00885ce68 t vsock_diag_handler_dump
-ffffffc00885cf20 t vsock_diag_dump
-ffffffc00885d210 t virtio_vsock_probe
-ffffffc00885d3cc t virtio_vsock_remove
-ffffffc00885d464 t virtio_vsock_freeze
-ffffffc00885d4c8 t virtio_vsock_restore
-ffffffc00885d548 t virtio_transport_rx_work
-ffffffc00885d6c0 t virtio_transport_tx_work
-ffffffc00885d7d8 t virtio_transport_event_work
-ffffffc00885d984 t virtio_transport_send_pkt_work
-ffffffc00885dd38 t virtio_vsock_vqs_init
-ffffffc00885e14c t virtio_vsock_rx_fill
-ffffffc00885e2b0 t virtio_vsock_reset_sock
-ffffffc00885e2ec t virtio_vsock_rx_done
-ffffffc00885e334 t virtio_vsock_tx_done
-ffffffc00885e37c t virtio_vsock_event_done
-ffffffc00885e3c0 t virtio_vsock_vqs_del
-ffffffc00885e594 t virtio_transport_cancel_pkt
-ffffffc00885e7a8 t virtio_transport_seqpacket_allow
-ffffffc00885e80c t virtio_transport_get_local_cid
-ffffffc00885e868 t virtio_transport_send_pkt
-ffffffc00885e98c T __traceiter_virtio_transport_alloc_pkt
-ffffffc00885ea6c T __traceiter_virtio_transport_recv_pkt
-ffffffc00885eb64 t trace_event_raw_event_virtio_transport_alloc_pkt
-ffffffc00885ec68 t perf_trace_virtio_transport_alloc_pkt
-ffffffc00885edbc t trace_event_raw_event_virtio_transport_recv_pkt
-ffffffc00885eecc t perf_trace_virtio_transport_recv_pkt
-ffffffc00885f030 T virtio_transport_deliver_tap_pkt
-ffffffc00885f084 t virtio_transport_build_skb
-ffffffc00885f1a4 T virtio_transport_inc_tx_pkt
-ffffffc00885f20c T virtio_transport_get_credit
-ffffffc00885f284 T virtio_transport_put_credit
-ffffffc00885f2e4 T virtio_transport_stream_dequeue
-ffffffc00885f5d4 T virtio_transport_seqpacket_dequeue
-ffffffc00885f7e4 T virtio_transport_seqpacket_enqueue
-ffffffc00885f8ac T virtio_transport_stream_enqueue
-ffffffc00885f924 T virtio_transport_dgram_dequeue
-ffffffc00885f938 T virtio_transport_stream_has_data
-ffffffc00885f988 T virtio_transport_seqpacket_has_data
-ffffffc00885f9d8 T virtio_transport_stream_has_space
-ffffffc00885fa3c T virtio_transport_do_socket_init
-ffffffc00885fae0 T virtio_transport_notify_buffer_size
-ffffffc00885fb6c T virtio_transport_notify_poll_in
-ffffffc00885fbbc T virtio_transport_notify_poll_out
-ffffffc00885fc18 T virtio_transport_notify_recv_init
-ffffffc00885fc2c T virtio_transport_notify_recv_pre_block
-ffffffc00885fc40 T virtio_transport_notify_recv_pre_dequeue
-ffffffc00885fc54 T virtio_transport_notify_recv_post_dequeue
-ffffffc00885fc68 T virtio_transport_notify_send_init
-ffffffc00885fc7c T virtio_transport_notify_send_pre_block
-ffffffc00885fc90 T virtio_transport_notify_send_pre_enqueue
-ffffffc00885fca4 T virtio_transport_notify_send_post_enqueue
-ffffffc00885fcb8 T virtio_transport_stream_rcvhiwat
-ffffffc00885fccc T virtio_transport_stream_is_active
-ffffffc00885fce0 T virtio_transport_stream_allow
-ffffffc00885fcf4 T virtio_transport_dgram_bind
-ffffffc00885fd08 T virtio_transport_dgram_allow
-ffffffc00885fd1c T virtio_transport_connect
-ffffffc00885fd88 t virtio_transport_send_pkt_info
-ffffffc00885ff44 T virtio_transport_shutdown
-ffffffc00885ffbc T virtio_transport_dgram_enqueue
-ffffffc00885ffd0 T virtio_transport_destruct
-ffffffc008860000 T virtio_transport_release
-ffffffc0088602e4 T virtio_transport_recv_pkt
-ffffffc008860e7c T virtio_transport_free_pkt
-ffffffc008860ec0 t trace_raw_output_virtio_transport_alloc_pkt
-ffffffc008860fb4 t trace_raw_output_virtio_transport_recv_pkt
-ffffffc0088610b0 t virtio_transport_alloc_pkt
-ffffffc008861354 t virtio_transport_close_timeout
-ffffffc0088614c4 t virtio_transport_do_close
-ffffffc008861648 t vsock_loopback_cancel_pkt
-ffffffc0088617b8 t vsock_loopback_seqpacket_allow
-ffffffc0088617cc t vsock_loopback_get_local_cid
-ffffffc0088617e0 t vsock_loopback_send_pkt
-ffffffc00886188c t vsock_loopback_work
-ffffffc0088619b4 T do_csum
-ffffffc008861b00 T csum_ipv6_magic
-ffffffc008861b64 T __delay
-ffffffc008861cd0 T __const_udelay
-ffffffc008861d14 T __udelay
-ffffffc008861d5c T __ndelay
-ffffffc008861da0 T aarch64_get_insn_class
-ffffffc008861dc0 T aarch64_insn_is_steppable_hint
-ffffffc008861e74 T aarch64_insn_is_branch_imm
-ffffffc008861ec4 T aarch64_insn_uses_literal
-ffffffc008861f0c T aarch64_insn_is_branch
-ffffffc008861fc0 T aarch64_insn_decode_immediate
-ffffffc0088620ec T aarch64_insn_encode_immediate
-ffffffc008862244 T aarch64_insn_decode_register
-ffffffc0088622a8 T aarch64_insn_gen_branch_imm
-ffffffc008862368 T aarch64_insn_gen_comp_branch_imm
-ffffffc008862490 T aarch64_insn_gen_cond_branch_imm
-ffffffc008862550 T aarch64_insn_gen_hint
-ffffffc00886256c T aarch64_insn_gen_nop
-ffffffc008862584 T aarch64_insn_gen_branch_reg
-ffffffc008862614 T aarch64_insn_gen_load_store_reg
-ffffffc008862740 T aarch64_insn_gen_load_store_imm
-ffffffc008862894 T aarch64_insn_gen_load_literal
-ffffffc008862958 T aarch64_insn_gen_load_store_pair
-ffffffc008862aec T aarch64_insn_gen_load_store_ex
-ffffffc008862c14 T aarch64_insn_gen_atomic_ld_op
-ffffffc008862d68 T aarch64_insn_gen_cas
-ffffffc008862e98 T aarch64_insn_gen_prefetch
-ffffffc008862f88 T aarch64_insn_gen_add_sub_imm
-ffffffc0088630e0 T aarch64_insn_gen_bitfield
-ffffffc008863248 T aarch64_insn_gen_movewide
-ffffffc008863380 T aarch64_insn_gen_add_sub_shifted_reg
-ffffffc0088634e0 T aarch64_insn_gen_data1
-ffffffc008863614 T aarch64_insn_gen_data2
-ffffffc008863734 T aarch64_insn_gen_data3
-ffffffc008863898 T aarch64_insn_gen_logical_shifted_reg
-ffffffc0088639f8 T aarch64_insn_gen_move_reg
-ffffffc008863ac8 T aarch64_insn_gen_adr
-ffffffc008863b9c T aarch64_get_branch_offset
-ffffffc008863c14 T aarch64_set_branch_offset
-ffffffc008863c9c T aarch64_insn_adrp_get_offset
-ffffffc008863cd0 T aarch64_insn_adrp_set_offset
-ffffffc008863d2c T aarch64_insn_extract_system_reg
-ffffffc008863d40 T aarch32_insn_is_wide
-ffffffc008863d5c T aarch32_insn_extract_reg_num
-ffffffc008863d7c T aarch32_insn_mcr_extract_opc2
-ffffffc008863d90 T aarch32_insn_mcr_extract_crm
-ffffffc008863da4 T aarch64_insn_gen_logical_immediate
-ffffffc00886402c T aarch64_insn_gen_extr
-ffffffc008864150 T aarch64_insn_gen_dmb
-ffffffc0088641b0 T argv_free
-ffffffc0088641f4 T argv_split
-ffffffc008864308 T bug_get_file_line
-ffffffc00886432c T find_bug
-ffffffc00886437c T report_bug
-ffffffc0088645ac T generic_bug_clear_once
-ffffffc0088645ec T build_id_parse
-ffffffc0088649e0 T build_id_parse_buf
-ffffffc008864ae4 T get_option
-ffffffc008864bb8 T get_options
-ffffffc008864dd4 T memparse
-ffffffc008864eb0 T parse_option_str
-ffffffc008864f60 T next_arg
-ffffffc00886509c T cpumask_next_wrap
-ffffffc008865164 T cpumask_local_spread
-ffffffc008865250 T cpumask_any_and_distribute
-ffffffc0088652fc T cpumask_any_distribute
-ffffffc0088653a0 T _atomic_dec_and_lock
-ffffffc00886548c T _atomic_dec_and_lock_irqsave
-ffffffc00886558c T dump_stack_print_info
-ffffffc0088656c0 T show_regs_print_info
-ffffffc0088656ec T dump_stack_lvl
-ffffffc00886578c T dump_stack
-ffffffc0088657c0 T sort_extable
-ffffffc008865814 t cmp_ex_sort
-ffffffc008865840 t swap_ex
-ffffffc0088658a0 T search_extable
-ffffffc008865918 t cmp_ex_search.llvm.2278768560687476072
-ffffffc008865940 T fdt_ro_probe_
-ffffffc0088659f0 T fdt_header_size_
-ffffffc008865a48 T fdt_header_size
-ffffffc008865aa8 T fdt_check_header
-ffffffc008865c10 T fdt_offset_ptr
-ffffffc008865cbc T fdt_next_tag
-ffffffc008865e04 T fdt_check_node_offset_
-ffffffc008865e88 T fdt_check_prop_offset_
-ffffffc008865f0c T fdt_next_node
-ffffffc008866040 T fdt_first_subnode
-ffffffc008866144 T fdt_next_subnode
-ffffffc008866264 T fdt_find_string_
-ffffffc0088662f0 T fdt_move
-ffffffc008866368 T fdt_address_cells
-ffffffc00886640c T fdt_size_cells
-ffffffc0088664a8 T fdt_appendprop_addrrange
-ffffffc00886672c T fdt_get_string
-ffffffc00886684c T fdt_string
-ffffffc00886687c T fdt_find_max_phandle
-ffffffc008866918 T fdt_get_phandle
-ffffffc008866a6c T fdt_generate_phandle
-ffffffc008866b30 T fdt_get_mem_rsv
-ffffffc008866c00 T fdt_num_mem_rsv
-ffffffc008866c88 T fdt_subnode_offset_namelen
-ffffffc008866db4 T fdt_subnode_offset
-ffffffc008866e14 T fdt_path_offset_namelen
-ffffffc008866fd8 T fdt_get_alias_namelen
-ffffffc0088670c4 T fdt_path_offset
-ffffffc008867114 T fdt_get_name
-ffffffc0088671cc T fdt_first_property_offset
-ffffffc008867284 T fdt_next_property_offset
-ffffffc00886733c T fdt_get_property_by_offset
-ffffffc0088673d8 T fdt_get_property_namelen
-ffffffc008867430 t fdt_get_property_namelen_
-ffffffc008867618 T fdt_get_property
-ffffffc0088676b0 T fdt_getprop_namelen
-ffffffc00886775c T fdt_getprop_by_offset
-ffffffc008867888 T fdt_getprop
-ffffffc008867964 T fdt_get_alias
-ffffffc008867a5c T fdt_get_path
-ffffffc008867c04 T fdt_supernode_atdepth_offset
-ffffffc008867d04 T fdt_node_depth
-ffffffc008867e08 T fdt_parent_offset
-ffffffc008867f54 T fdt_node_offset_by_prop_value
-ffffffc0088680b0 T fdt_node_offset_by_phandle
-ffffffc00886814c T fdt_stringlist_contains
-ffffffc008868200 T fdt_stringlist_count
-ffffffc008868338 T fdt_stringlist_search
-ffffffc0088684b0 T fdt_stringlist_get
-ffffffc008868624 T fdt_node_check_compatible
-ffffffc008868764 T fdt_node_offset_by_compatible
-ffffffc0088687f8 T fdt_add_mem_rsv
-ffffffc0088688c4 t fdt_splice_mem_rsv_
-ffffffc0088689bc T fdt_del_mem_rsv
-ffffffc008868a84 T fdt_set_name
-ffffffc008868bac t fdt_splice_struct_
-ffffffc008868c94 T fdt_setprop_placeholder
-ffffffc008868dec t fdt_add_property_
-ffffffc008868fbc T fdt_setprop
-ffffffc008869058 T fdt_appendprop
-ffffffc0088691c4 T fdt_delprop
-ffffffc0088692c0 T fdt_add_subnode_namelen
-ffffffc00886947c T fdt_add_subnode
-ffffffc0088694dc T fdt_del_node
-ffffffc00886959c T fdt_open_into
-ffffffc008869814 t fdt_blocks_misordered_
-ffffffc008869884 T fdt_pack
-ffffffc008869a28 T fdt_setprop_inplace_namelen_partial
-ffffffc008869ad8 T fdt_setprop_inplace
-ffffffc008869bcc T fdt_nop_property
-ffffffc008869cac T fdt_node_end_offset_
-ffffffc008869d34 T fdt_nop_node
-ffffffc008869e64 T fprop_global_init
-ffffffc008869eb8 T fprop_global_destroy
-ffffffc008869ee4 T fprop_new_period
-ffffffc008869f88 T fprop_local_init_single
-ffffffc008869fa4 T fprop_local_destroy_single
-ffffffc008869fb4 T __fprop_inc_single
-ffffffc00886a068 T fprop_fraction_single
-ffffffc00886a188 T fprop_local_init_percpu
-ffffffc00886a1d8 T fprop_local_destroy_percpu
-ffffffc00886a204 T __fprop_add_percpu
-ffffffc00886a284 t fprop_reflect_period_percpu
-ffffffc00886a38c T fprop_fraction_percpu
-ffffffc00886a46c T __fprop_add_percpu_max
-ffffffc00886a580 T idr_alloc_u32
-ffffffc00886a680 T idr_alloc
-ffffffc00886a7a0 T idr_alloc_cyclic
-ffffffc00886a978 T idr_remove
-ffffffc00886a9b0 T idr_find
-ffffffc00886a9e4 T idr_for_each
-ffffffc00886ab0c T idr_get_next_ul
-ffffffc00886ac44 T idr_get_next
-ffffffc00886ad9c T idr_replace
-ffffffc00886ae60 T ida_alloc_range
-ffffffc00886b248 T ida_free
-ffffffc00886b3a4 T ida_destroy
-ffffffc00886b4ec T current_is_single_threaded
-ffffffc00886b618 T klist_init
-ffffffc00886b63c T klist_add_head
-ffffffc00886b710 T klist_add_tail
-ffffffc00886b7e4 T klist_add_behind
-ffffffc00886b8a8 T klist_add_before
-ffffffc00886b970 T klist_del
-ffffffc00886ba18 T klist_remove
-ffffffc00886bb78 T klist_node_attached
-ffffffc00886bb94 T klist_iter_init_node
-ffffffc00886bc74 T klist_iter_init
-ffffffc00886bc88 T klist_iter_exit
-ffffffc00886bd28 T klist_prev
-ffffffc00886be60 t klist_dec_and_del
-ffffffc00886bfd0 T klist_next
-ffffffc00886c10c T kobject_namespace
-ffffffc00886c1b0 T kobj_ns_ops
-ffffffc00886c214 T kobject_get_ownership
-ffffffc00886c26c T kobject_get_path
-ffffffc00886c370 T kobject_set_name_vargs
-ffffffc00886c464 T kobject_set_name
-ffffffc00886c4ec T kobject_init
-ffffffc00886c5b0 T kobject_add
-ffffffc00886c6c8 T kobject_init_and_add
-ffffffc00886c838 T kobject_rename
-ffffffc00886ca80 T kobject_get
-ffffffc00886cb2c T kobject_put
-ffffffc00886cc4c T kobject_move
-ffffffc00886cf44 T kobject_del
-ffffffc00886cf84 t __kobject_del
-ffffffc00886d058 T kobject_get_unless_zero
-ffffffc00886d124 T kobject_create_and_add
-ffffffc00886d220 T kset_init
-ffffffc00886d268 t kobj_attr_show
-ffffffc00886d2bc t kobj_attr_store
-ffffffc00886d310 T kset_register
-ffffffc00886d39c t kobject_add_internal
-ffffffc00886d82c T kset_unregister
-ffffffc00886d884 T kset_find_obj
-ffffffc00886d9a8 T kset_create_and_add
-ffffffc00886daa0 T kobj_ns_type_register
-ffffffc00886db20 T kobj_ns_type_registered
-ffffffc00886db84 T kobj_child_ns_ops
-ffffffc00886dbe4 T kobj_ns_current_may_mount
-ffffffc00886dc74 T kobj_ns_grab_current
-ffffffc00886dd04 T kobj_ns_netlink
-ffffffc00886dd9c T kobj_ns_initial
-ffffffc00886de2c T kobj_ns_drop
-ffffffc00886deb8 t dynamic_kobj_release
-ffffffc00886dee4 t kset_release
-ffffffc00886df14 t kset_get_ownership
-ffffffc00886df74 T kobject_synth_uevent
-ffffffc00886e408 T kobject_uevent_env
-ffffffc00886e6c0 T add_uevent_var
-ffffffc00886e814 t zap_modalias_env
-ffffffc00886e968 t kobject_uevent_net_broadcast
-ffffffc00886eb88 T kobject_uevent
-ffffffc00886ebb4 t alloc_uevent_skb
-ffffffc00886ec8c t uevent_net_init
-ffffffc00886edd4 t uevent_net_exit
-ffffffc00886ee74 t uevent_net_rcv
-ffffffc00886eea8 t uevent_net_rcv_skb
-ffffffc00886f060 T logic_pio_register_range
-ffffffc00886f258 T logic_pio_unregister_range
-ffffffc00886f2cc T find_io_range_by_fwnode
-ffffffc00886f344 T logic_pio_to_hwaddr
-ffffffc00886f3ec T logic_pio_trans_hwaddr
-ffffffc00886f4f8 T logic_pio_trans_cpuaddr
-ffffffc00886f5dc T __traceiter_ma_op
-ffffffc00886f66c T __traceiter_ma_read
-ffffffc00886f6fc T __traceiter_ma_write
-ffffffc00886f7a4 t trace_event_raw_event_ma_op
-ffffffc00886f888 t perf_trace_ma_op
-ffffffc00886f9c8 t trace_event_raw_event_ma_read
-ffffffc00886faac t perf_trace_ma_read
-ffffffc00886fbec t trace_event_raw_event_ma_write
-ffffffc00886fce8 t perf_trace_ma_write
-ffffffc00886fe3c T mas_is_err
-ffffffc00886fe64 T mas_walk
-ffffffc008870100 T mas_empty_area
-ffffffc00887031c t mas_skip_node
-ffffffc0088704cc t mas_awalk
-ffffffc008870770 T mas_empty_area_rev
-ffffffc008870d1c T mas_store
-ffffffc008870ed8 t mas_wr_store_entry
-ffffffc0088711cc T mas_store_gfp
-ffffffc0088713cc T mas_nomem
-ffffffc00887147c T mas_store_prealloc
-ffffffc008871660 T mas_destroy
-ffffffc008872548 T mas_preallocate
-ffffffc008872660 T mas_expected_entries
-ffffffc008872794 T mas_next
-ffffffc00887283c t mas_next_entry
-ffffffc008872b80 T mt_next
-ffffffc008872c3c T mas_prev
-ffffffc008872d1c t mas_prev_entry
-ffffffc008872f78 T mt_prev
-ffffffc008873048 T mas_pause
-ffffffc008873060 T mas_find
-ffffffc008873134 T mas_find_rev
-ffffffc008873208 T mas_erase
-ffffffc008873560 t mas_alloc_nodes
-ffffffc008873770 T mtree_load
-ffffffc008873acc T mtree_store_range
-ffffffc008873ce0 T mtree_store
-ffffffc008873d18 T mtree_insert_range
-ffffffc008873f8c T mtree_insert
-ffffffc008873fc4 T mtree_alloc_range
-ffffffc008874428 T mtree_alloc_rrange
-ffffffc0088746b4 T mtree_erase
-ffffffc008874830 T __mt_destroy
-ffffffc0088748b0 T mtree_destroy
-ffffffc008874940 T mt_find
-ffffffc008874d8c T mt_find_after
-ffffffc008874dc8 t trace_raw_output_ma_op
-ffffffc008874e44 t trace_raw_output_ma_read
-ffffffc008874ec0 t trace_raw_output_ma_write
-ffffffc008874f48 t mas_ascend
-ffffffc008875144 t mas_is_span_wr
-ffffffc0088752e0 t mas_wr_walk
-ffffffc008875528 t mas_wr_spanning_store
-ffffffc008875cbc t mas_new_root
-ffffffc008875f20 t mas_wr_modify
-ffffffc00887795c t mas_root_expand
-ffffffc008877b84 t mas_store_b_node
-ffffffc008877f98 t mas_mab_cp
-ffffffc0088781b8 t mas_spanning_rebalance
-ffffffc00887953c t mast_spanning_rebalance
-ffffffc00887a048 t mast_ascend_free
-ffffffc00887a350 t mast_topiary
-ffffffc00887a838 t mab_mas_cp
-ffffffc00887aa70 t mas_wmb_replace
-ffffffc00887b238 t mab_calc_split
-ffffffc00887b438 t mas_leaf_max_gap
-ffffffc00887b5d8 t mas_leaf_set_meta
-ffffffc00887b650 t mas_replace
-ffffffc00887b928 t mas_update_gap
-ffffffc00887bb08 t mt_free_rcu
-ffffffc00887bb3c t mas_next_sibling
-ffffffc00887bd6c t mas_split_final_node
-ffffffc00887bfb8 t mas_push_data
-ffffffc00887c678 t mast_split_data
-ffffffc00887c92c t mast_fill_bnode
-ffffffc00887cde0 t mas_rewalk
-ffffffc00887d010 t mas_next_node
-ffffffc00887d308 t mas_prev_node
-ffffffc00887d670 t mt_destroy_walk
-ffffffc00887d9cc t mt_free_walk
-ffffffc00887dc24 T plist_add
-ffffffc00887dd6c T plist_del
-ffffffc00887de50 T plist_requeue
-ffffffc00887df34 T radix_tree_node_rcu_free
-ffffffc00887df94 T radix_tree_preload
-ffffffc00887dfcc t __radix_tree_preload
-ffffffc00887e108 T radix_tree_maybe_preload
-ffffffc00887e164 T radix_tree_insert
-ffffffc00887e364 T __radix_tree_lookup
-ffffffc00887e434 T radix_tree_lookup_slot
-ffffffc00887e4ec T radix_tree_lookup
-ffffffc00887e59c T __radix_tree_replace
-ffffffc00887e68c t delete_node
-ffffffc00887e928 T radix_tree_replace_slot
-ffffffc00887e998 T radix_tree_iter_replace
-ffffffc00887e9c8 T radix_tree_tag_set
-ffffffc00887eaa4 T radix_tree_tag_clear
-ffffffc00887ebc4 T radix_tree_iter_tag_clear
-ffffffc00887ec64 T radix_tree_tag_get
-ffffffc00887ed28 T radix_tree_iter_resume
-ffffffc00887ed4c T radix_tree_next_chunk
-ffffffc00887ef6c T radix_tree_gang_lookup
-ffffffc00887f090 T radix_tree_gang_lookup_tag
-ffffffc00887f224 T radix_tree_gang_lookup_tag_slot
-ffffffc00887f370 T radix_tree_iter_delete
-ffffffc00887f3b4 t __radix_tree_delete
-ffffffc00887f5b0 T radix_tree_delete_item
-ffffffc00887f6e4 T radix_tree_delete
-ffffffc00887f714 T radix_tree_tagged
-ffffffc00887f738 T idr_preload
-ffffffc00887f78c T idr_get_free
-ffffffc00887fa40 t radix_tree_extend
-ffffffc00887fbc8 t radix_tree_node_alloc
-ffffffc00887fce4 T idr_destroy
-ffffffc00887fdec t radix_tree_node_ctor
-ffffffc00887fe38 t radix_tree_cpu_dead
-ffffffc00887fec0 T ___ratelimit
-ffffffc008880018 T __rb_erase_color
-ffffffc0088802ec T rb_insert_color
-ffffffc008880424 T rb_erase
-ffffffc008880728 T __rb_insert_augmented
-ffffffc0088808f4 T rb_first
-ffffffc008880924 T rb_last
-ffffffc008880954 T rb_next
-ffffffc0088809b4 T rb_prev
-ffffffc008880a14 T rb_replace_node
-ffffffc008880a80 T rb_replace_node_rcu
-ffffffc008880b08 T rb_next_postorder
-ffffffc008880b50 T rb_first_postorder
-ffffffc008880b88 T seq_buf_print_seq
-ffffffc008880bc8 T seq_buf_vprintf
-ffffffc008880c94 T seq_buf_printf
-ffffffc008880d8c T seq_buf_bprintf
-ffffffc008880e30 T seq_buf_puts
-ffffffc008880ed0 T seq_buf_putc
-ffffffc008880f28 T seq_buf_putmem
-ffffffc008880fb0 T seq_buf_putmem_hex
-ffffffc008881258 T seq_buf_path
-ffffffc008881334 T seq_buf_to_user
-ffffffc008881538 T seq_buf_hex_dump
-ffffffc0088816d4 T __show_mem
-ffffffc008881800 T __siphash_unaligned
-ffffffc008881a28 T siphash_1u64
-ffffffc008881be0 T siphash_2u64
-ffffffc008881df0 T siphash_3u64
-ffffffc008882058 T siphash_4u64
-ffffffc008882318 T siphash_1u32
-ffffffc00888247c T siphash_3u32
-ffffffc008882640 T __hsiphash_unaligned
-ffffffc0088827f8 T hsiphash_1u32
-ffffffc008882914 T hsiphash_2u32
-ffffffc008882a64 T hsiphash_3u32
-ffffffc008882bb8 T hsiphash_4u32
-ffffffc008882d40 T strncasecmp
-ffffffc008882dc4 T strcasecmp
-ffffffc008882e18 T strcpy
-ffffffc008882e3c T strncpy
-ffffffc008882e70 T strlcpy
-ffffffc008882ee8 T strscpy
-ffffffc008882fe4 T stpcpy
-ffffffc008883004 T strcat
-ffffffc008883034 T strncat
-ffffffc008883074 T strlcat
-ffffffc008883104 T strchrnul
-ffffffc00888312c T strnchrnul
-ffffffc008883168 T strnchr
-ffffffc00888319c T strspn
-ffffffc008883204 T strcspn
-ffffffc00888326c T strpbrk
-ffffffc0088832c0 T strsep
-ffffffc00888332c T memset16
-ffffffc00888338c T memset32
-ffffffc0088833ec T memset64
-ffffffc00888344c T bcmp
-ffffffc008883478 T memscan
-ffffffc0088834b0 T strstr
-ffffffc008883540 T strnstr
-ffffffc0088835c8 T memchr_inv
-ffffffc008883848 T timerqueue_add
-ffffffc00888390c T timerqueue_del
-ffffffc008883990 T timerqueue_iterate_next
-ffffffc0088839c0 T simple_strtoull
-ffffffc0088839f4 t simple_strntoull
-ffffffc008883ab4 T simple_strtoul
-ffffffc008883ae0 T simple_strtol
-ffffffc008883b28 T simple_strtoll
-ffffffc008883b80 T num_to_str
-ffffffc008883cf0 t put_dec
-ffffffc008883d84 T ptr_to_hashval
-ffffffc008883df0 T vsnprintf
-ffffffc008884498 t format_decode
-ffffffc0088848fc t string
-ffffffc008884a24 t pointer
-ffffffc00888514c t number
-ffffffc0088854b8 T vscnprintf
-ffffffc008885550 T snprintf
-ffffffc0088855d8 T scnprintf
-ffffffc008885694 T vsprintf
-ffffffc00888570c T sprintf
-ffffffc0088857a0 T vbin_printf
-ffffffc008885c84 T bstr_printf
-ffffffc008886188 T bprintf
-ffffffc008886210 T vsscanf
-ffffffc0088869cc t skip_atoi
-ffffffc008886a10 T sscanf
-ffffffc008886a94 t put_dec_full8
-ffffffc008886b24 t put_dec_trunc8
-ffffffc008886c18 t fill_ptr_key_workfn
-ffffffc008886c84 t string_nocheck
-ffffffc008886e08 t widen_string
-ffffffc008886ed0 t symbol_string
-ffffffc008887034 t resource_string
-ffffffc00888779c t hex_string
-ffffffc008887960 t bitmap_list_string
-ffffffc008887b78 t bitmap_string
-ffffffc008887d1c t mac_address_string
-ffffffc00888803c t ip_addr_string
-ffffffc0088883d4 t escaped_string
-ffffffc00888858c t uuid_string
-ffffffc0088887fc t restricted_pointer
-ffffffc008888aa0 t netdev_bits
-ffffffc008888cb4 t fourcc_string
-ffffffc008889054 t address_val
-ffffffc008889144 t dentry_name
-ffffffc008889504 t time_and_date
-ffffffc008889678 t clock
-ffffffc008889790 t file_dentry_name
-ffffffc00888987c t bdev_name
-ffffffc008889a08 t flags_string
-ffffffc008889e1c t device_node_string
-ffffffc00888a454 t fwnode_string
-ffffffc00888a6c4 t pointer_string
-ffffffc00888a714 t default_pointer
-ffffffc00888aaec t err_ptr
-ffffffc00888abb4 t ip6_addr_string
-ffffffc00888acd8 t ip4_addr_string
-ffffffc00888adc0 t ip4_addr_string_sa
-ffffffc00888af74 t ip6_addr_string_sa
-ffffffc00888b214 t ip6_compressed_string
-ffffffc00888b61c t ip6_string
-ffffffc00888b6b0 t ip4_string
-ffffffc00888b980 t special_hex_number
-ffffffc00888b9bc t rtc_str
-ffffffc00888bb88 t time64_str
-ffffffc00888bc58 t date_str
-ffffffc00888bd24 t time_str
-ffffffc00888bdc4 t fwnode_full_name_string
-ffffffc00888be88 T minmax_running_max
-ffffffc00888bf94 T minmax_running_min
-ffffffc00888c0a0 T xas_load
-ffffffc00888c184 t xas_start
-ffffffc00888c280 T xas_destroy
-ffffffc00888c2dc T xas_nomem
-ffffffc00888c38c T xas_create_range
-ffffffc00888c4b8 t xas_create
-ffffffc00888c9b8 T xas_store
-ffffffc00888d0b0 T xas_init_marks
-ffffffc00888d1bc T xas_get_mark
-ffffffc00888d220 T xas_set_mark
-ffffffc00888d2ac T xas_clear_mark
-ffffffc00888d340 T xas_split_alloc
-ffffffc00888d47c T xas_split
-ffffffc00888d840 T xas_pause
-ffffffc00888d904 T __xas_prev
-ffffffc00888dac8 T __xas_next
-ffffffc00888dc88 T xas_find
-ffffffc00888df08 T xas_find_marked
-ffffffc00888e1b8 T xas_find_conflict
-ffffffc00888e3b4 T xa_load
-ffffffc00888e59c T __xa_erase
-ffffffc00888e63c T xa_erase
-ffffffc00888e6fc T __xa_store
-ffffffc00888e888 t __xas_nomem
-ffffffc00888e9f0 T xa_store
-ffffffc00888ea60 T __xa_cmpxchg
-ffffffc00888eda4 T __xa_insert
-ffffffc00888f0f8 T xa_store_range
-ffffffc00888f3e8 T xa_get_order
-ffffffc00888f53c T __xa_alloc
-ffffffc00888f6f8 T __xa_alloc_cyclic
-ffffffc00888f7e0 T __xa_set_mark
-ffffffc00888f950 T __xa_clear_mark
-ffffffc00888fac8 T xa_get_mark
-ffffffc00888fc30 T xa_set_mark
-ffffffc00888fc90 T xa_clear_mark
-ffffffc00888fcf0 T xa_find
-ffffffc00888fdd4 T xa_find_after
-ffffffc00888ff00 T xa_extract
-ffffffc0088901bc T xa_delete_node
-ffffffc00889024c T xa_destroy
-ffffffc0088903ec t __CortexA53843419_FFFFFFC008042004
-ffffffc0088903f4 t __CortexA53843419_FFFFFFC008097008
-ffffffc0088903fc t __CortexA53843419_FFFFFFC008157004
-ffffffc008890404 t __CortexA53843419_FFFFFFC008765000
-ffffffc00889040c t __CortexA53843419_FFFFFFC0087FD000
-ffffffc008890418 T __noinstr_text_start
-ffffffc00889041c T asm_exit_to_user_mode
-ffffffc00889048c T el1t_64_sync_handler
-ffffffc0088904b0 t __panic_unhandled
-ffffffc00889052c T el1t_64_irq_handler
-ffffffc008890554 T el1t_64_fiq_handler
-ffffffc00889057c T el1t_64_error_handler
-ffffffc0088905a4 T el1h_64_sync_handler
-ffffffc00889065c t el1_abort
-ffffffc0088906c4 t el1_pc
-ffffffc00889072c t el1_undef
-ffffffc008890784 t el1_bti
-ffffffc0088907dc t el1_dbg
-ffffffc008890858 t el1_fpac
-ffffffc0088908b4 T el1h_64_irq_handler
-ffffffc0088908e4 t el1_interrupt
-ffffffc0088909d0 T el1h_64_fiq_handler
-ffffffc008890a04 T el1h_64_error_handler
-ffffffc008890a58 t arm64_enter_nmi
-ffffffc008890ae8 t arm64_exit_nmi
-ffffffc008890b60 T el0t_64_sync_handler
-ffffffc008890c5c t el0_svc
-ffffffc008890d20 t el0_da
-ffffffc008890e00 t el0_ia
-ffffffc008890f3c t el0_fpsimd_acc
-ffffffc008891014 t el0_sve_acc
-ffffffc0088910ec t el0_sme_acc
-ffffffc0088911c4 t el0_fpsimd_exc
-ffffffc00889129c t el0_sys
-ffffffc008891374 t el0_sp
-ffffffc008891450 t el0_pc
-ffffffc008891590 t el0_undef
-ffffffc008891668 t el0_bti
-ffffffc008891730 t el0_dbg
-ffffffc0088917fc t el0_fpac
-ffffffc0088918d4 t el0_inv
-ffffffc0088919b4 T el0t_64_irq_handler
-ffffffc0088919dc t __el0_irq_handler_common
-ffffffc008891a10 T el0t_64_fiq_handler
-ffffffc008891a38 t __el0_fiq_handler_common
-ffffffc008891a6c T el0t_64_error_handler
-ffffffc008891a94 t __el0_error_handler_common
-ffffffc008891b84 T el0t_32_sync_handler
-ffffffc008891bac T el0t_32_irq_handler
-ffffffc008891bd4 T el0t_32_fiq_handler
-ffffffc008891bfc T el0t_32_error_handler
-ffffffc008891c24 T handle_bad_stack
-ffffffc008891c78 t enter_from_kernel_mode
-ffffffc008891cd0 t exit_to_kernel_mode
-ffffffc008891d10 t arm64_enter_el1_dbg
-ffffffc008891d3c t arm64_exit_el1_dbg
-ffffffc008891d64 t el0_interrupt
-ffffffc008891fa0 T arch_stack_walk
-ffffffc00889215c T alt_cb_patch_nops
-ffffffc0088921f4 t patch_alternative
-ffffffc008892320 T spectre_bhb_patch_loop_mitigation_enable
-ffffffc008892374 T spectre_bhb_patch_fw_mitigation_enabled
-ffffffc0088923c8 T spectre_bhb_patch_loop_iter
-ffffffc00889244c T spectre_bhb_patch_wa3
-ffffffc0088924d8 t call_hvc_arch_workaround_1
-ffffffc008892508 t call_smc_arch_workaround_1
-ffffffc008892538 t qcom_link_stack_sanitisation
-ffffffc008892598 T cpu_do_idle
-ffffffc0088925b0 T arch_cpu_idle
-ffffffc0088925e0 T __stack_chk_fail
-ffffffc008892618 T __ktime_get_real_seconds
-ffffffc008892630 T ct_nmi_exit
-ffffffc008892714 t ct_kernel_exit_state
-ffffffc00889276c T ct_nmi_enter
-ffffffc008892838 t ct_kernel_enter_state
-ffffffc008892890 T ct_idle_enter
-ffffffc0088928b8 t ct_kernel_exit
-ffffffc008892974 T ct_idle_exit
-ffffffc0088929b4 t ct_kernel_enter
-ffffffc008892a70 T ct_irq_enter
-ffffffc008892a9c T ct_irq_exit
-ffffffc008892b1c T __noinstr_text_end
-ffffffc008892b20 T rest_init
-ffffffc008892c0c t kernel_init
-ffffffc008892dc0 t _cpu_down
-ffffffc0088932c4 T __irq_alloc_descs
-ffffffc008893558 T profile_init
-ffffffc008893658 T create_proc_profile
-ffffffc008893774 t audit_net_exit
-ffffffc0088937d0 T build_all_zonelists
-ffffffc008893930 T free_area_init_core_hotplug
-ffffffc008893ac8 T __add_pages
-ffffffc008893c0c T remove_pfn_range_from_zone
-ffffffc008893e70 T move_pfn_range_to_zone
-ffffffc008893fb0 T online_pages
-ffffffc0088941f4 T add_memory_resource
-ffffffc00889447c T __add_memory
-ffffffc008894518 T offline_pages
-ffffffc008894e08 t try_remove_memory
-ffffffc008895018 t hotadd_init_pgdat
-ffffffc00889509c t sparse_index_alloc
-ffffffc008895130 t __earlyonly_bootmem_alloc
-ffffffc008895170 t proc_net_ns_exit
-ffffffc0088951b8 t vclkdev_alloc
-ffffffc0088952a4 t sock_inuse_exit_net
-ffffffc0088952d4 t proto_exit_net
-ffffffc00889530c t net_ns_net_exit
-ffffffc00889534c t sysctl_core_net_exit
-ffffffc0088953a4 t netdev_exit
-ffffffc008895410 t default_device_exit_batch
-ffffffc0088955c8 t default_device_exit_net
-ffffffc0088957d8 t rtnetlink_net_exit
-ffffffc008895818 t diag_net_exit
-ffffffc008895858 t fib_notifier_net_exit
-ffffffc0088958c4 t dev_proc_net_exit
-ffffffc008895928 t dev_mc_net_exit
-ffffffc008895960 t fib_rules_net_exit
-ffffffc008895990 t netlink_net_exit
-ffffffc0088959c8 t genl_pernet_exit
-ffffffc008895a08 t ip_rt_do_proc_exit
-ffffffc008895a5c t sysctl_route_net_exit
-ffffffc008895ab4 t ipv4_inetpeer_exit
-ffffffc008895afc t ipv4_frags_pre_exit_net
-ffffffc008895b1c t ipv4_frags_exit_net
-ffffffc008895b58 t ip4_frags_ns_ctl_unregister
-ffffffc008895b9c t tcp4_proc_exit_net
-ffffffc008895bd4 t tcp_sk_exit
-ffffffc008895be4 t tcp_sk_exit_batch
-ffffffc008895cbc t tcp_net_metrics_exit_batch
-ffffffc008895d88 t raw_exit_net
-ffffffc008895dc0 t udp4_proc_exit_net
-ffffffc008895df8 t udplite4_proc_exit_net
-ffffffc008895e30 t arp_net_exit
-ffffffc008895e68 t devinet_exit_net
-ffffffc008895f38 t ipv4_mib_exit_net
-ffffffc008895fa4 t igmp_net_exit
-ffffffc008896008 t fib_net_exit
-ffffffc00889604c t fib_net_exit_batch
-ffffffc0088960b0 T fib_proc_exit
-ffffffc008896114 T fib4_notifier_exit
-ffffffc008896144 t ping_v4_proc_exit_net
-ffffffc00889617c t nexthop_net_exit_batch
-ffffffc00889621c t ipv4_sysctl_exit_net
-ffffffc00889626c t ip_proc_exit_net
-ffffffc0088962d0 T fib4_rules_exit
-ffffffc008896300 t ipip_exit_batch_net
-ffffffc00889633c t ipgre_tap_exit_batch_net
-ffffffc008896378 t ipgre_exit_batch_net
-ffffffc0088963b4 t erspan_exit_batch_net
-ffffffc0088963f0 t vti_exit_batch_net
-ffffffc00889642c t xfrm4_net_exit
-ffffffc008896468 t xfrm4_net_sysctl_exit
-ffffffc00889649c t xfrm_net_exit
-ffffffc0088964fc T xfrm_sysctl_fini
-ffffffc008896540 t xfrm_user_net_pre_exit
-ffffffc008896554 t xfrm_user_net_exit
-ffffffc0088965a8 t xfrmi_exit_batch_net
-ffffffc0088966c0 t unix_net_exit
-ffffffc00889671c t inet6_net_exit
-ffffffc0088967a8 t if6_proc_net_exit
-ffffffc0088967e0 t addrconf_exit_net
-ffffffc0088968ec t ip6addrlbl_net_exit
-ffffffc00889698c t ipv6_inetpeer_exit
-ffffffc0088969d4 t ip6_route_net_exit
-ffffffc008896a30 t ip6_route_net_exit_late
-ffffffc008896a84 t ndisc_net_exit
-ffffffc008896abc t udplite6_proc_exit_net
-ffffffc008896af4 t raw6_exit_net
-ffffffc008896b2c t igmp6_net_exit
-ffffffc008896b84 t igmp6_proc_exit
-ffffffc008896bd8 t ipv6_frags_pre_exit_net
-ffffffc008896bf8 t ipv6_frags_exit_net
-ffffffc008896c34 t ip6_frags_ns_sysctl_unregister
-ffffffc008896c64 t tcpv6_net_exit
-ffffffc008896c9c t tcpv6_net_exit_batch
-ffffffc008896ccc t ping_v6_proc_exit_net
-ffffffc008896d04 t ip6_flowlabel_net_exit
-ffffffc008896d40 t ip6_fl_purge
-ffffffc008896e74 t ip6_flowlabel_proc_fini
-ffffffc008896eb0 t seg6_net_exit
-ffffffc008896efc T fib6_notifier_exit
-ffffffc008896f2c t ioam6_net_exit
-ffffffc008896f90 t ipv6_sysctl_net_exit
-ffffffc008897010 t xfrm6_net_exit
-ffffffc00889704c t xfrm6_net_sysctl_exit
-ffffffc008897080 t fib6_rules_net_exit_batch
-ffffffc0088970e4 t ipv6_proc_exit_net
-ffffffc008897148 t xfrm6_tunnel_net_exit
-ffffffc008897218 t vti6_exit_batch_net
-ffffffc0088972dc t vti6_destroy_tunnels
-ffffffc00889736c t sit_exit_batch_net
-ffffffc00889740c t sit_destroy_tunnels
-ffffffc0088974a4 t ip6_tnl_exit_batch_net
-ffffffc008897544 t ip6_tnl_destroy_tunnels
-ffffffc0088975dc t ip6gre_exit_batch_net
-ffffffc00889770c t packet_net_exit
-ffffffc008897768 t pfkey_net_exit
-ffffffc0088977cc t pfkey_exit_proc
-ffffffc00889780c t sysctl_net_exit
-ffffffc00889783c T vmemmap_populate
-ffffffc0088979d8 t mm_compute_batch_notifier
-ffffffc008897a1c t init_reserve_notifier
-ffffffc008897a6c T reserve_bootmem_region
-ffffffc008897b28 T alloc_pages_exact_nid
-ffffffc008897cf4 T memmap_init_range
-ffffffc008897e14 t overlap_memmap_init
-ffffffc008897ecc t __init_single_page
-ffffffc008897f74 T setup_zone_pageset
-ffffffc008898054 T init_currently_empty_zone
-ffffffc008898154 t pgdat_init_internals
-ffffffc008898268 T init_per_zone_wmark_min
-ffffffc0088982b0 T __shuffle_zone
-ffffffc0088984d4 t shuffle_valid_page
-ffffffc008898560 T __shuffle_free_memory
-ffffffc0088985c8 t shuffle_param_set
-ffffffc008898630 T sparse_buffer_alloc
-ffffffc0088986b8 W vmemmap_populate_print_last
-ffffffc0088986c8 T sparse_add_section
-ffffffc00889880c t section_activate
-ffffffc0088989f4 t mminit_validate_memmodel_limits
-ffffffc008898ab4 T vmemmap_alloc_block
-ffffffc008898bb0 T vmemmap_alloc_block_buf
-ffffffc008898c14 t altmap_alloc_block_buf
-ffffffc008898cf0 T vmemmap_verify
-ffffffc008898d4c T vmemmap_pte_populate
-ffffffc008898ed4 T vmemmap_pmd_populate
-ffffffc008898fb8 T vmemmap_pud_populate
-ffffffc0088990a4 T vmemmap_p4d_populate
-ffffffc0088990b4 T vmemmap_pgd_populate
-ffffffc0088990d4 T vmemmap_populate_basepages
-ffffffc008899154 T __populate_section_memmap
-ffffffc008899218 t vmemmap_populate_compound_pages
-ffffffc0088993b8 t vmemmap_populate_address
-ffffffc008899480 t compound_section_tail_page
-ffffffc0088994dc t init_section_page_ext
-ffffffc0088995ac t page_ext_callback
-ffffffc00889961c T pgdat_page_ext_init
-ffffffc008899628 t alloc_page_ext
-ffffffc00889967c t online_page_ext
-ffffffc008899718 t offline_page_ext
-ffffffc0088997d8 T __sched_text_start
-ffffffc0088997dc T __switch_to
-ffffffc0088999e8 T preempt_schedule
-ffffffc008899a30 t __schedule
-ffffffc00889a4c8 T schedule
-ffffffc00889a5c4 T schedule_idle
-ffffffc00889a618 T schedule_preempt_disabled
-ffffffc00889a668 t preempt_schedule_common
-ffffffc00889a6c8 T preempt_schedule_notrace
-ffffffc00889a744 T preempt_schedule_irq
-ffffffc00889a7ec T yield
-ffffffc00889a824 T yield_to
-ffffffc00889aa94 T io_schedule_timeout
-ffffffc00889ab10 T io_schedule
-ffffffc00889ac5c T wait_for_completion
-ffffffc00889ac8c t wait_for_common
-ffffffc00889ae40 T wait_for_completion_timeout
-ffffffc00889ae70 T wait_for_completion_io
-ffffffc00889ae9c t wait_for_common_io
-ffffffc00889b010 T wait_for_completion_io_timeout
-ffffffc00889b03c T wait_for_completion_interruptible
-ffffffc00889b07c T wait_for_completion_interruptible_timeout
-ffffffc00889b0ac T wait_for_completion_killable
-ffffffc00889b0ec T wait_for_completion_state
-ffffffc00889b12c T wait_for_completion_killable_timeout
-ffffffc00889b15c T __wait_on_bit
-ffffffc00889b314 T out_of_line_wait_on_bit
-ffffffc00889b3c8 T out_of_line_wait_on_bit_timeout
-ffffffc00889b48c T __wait_on_bit_lock
-ffffffc00889b6c8 T out_of_line_wait_on_bit_lock
-ffffffc00889b77c T bit_wait
-ffffffc00889b7ec T bit_wait_io
-ffffffc00889b85c T bit_wait_timeout
-ffffffc00889b8f0 T bit_wait_io_timeout
-ffffffc00889b9b4 T mutex_lock
-ffffffc00889ba34 t __mutex_lock_slowpath
-ffffffc00889ba64 T mutex_unlock
-ffffffc00889bae4 t __mutex_unlock_slowpath
-ffffffc00889bc64 T ww_mutex_unlock
-ffffffc00889bd04 T mutex_trylock
-ffffffc00889bd94 T mutex_lock_interruptible
-ffffffc00889be14 t __mutex_lock_interruptible_slowpath
-ffffffc00889be44 T mutex_lock_killable
-ffffffc00889bec4 t __mutex_lock_killable_slowpath
-ffffffc00889bef4 T mutex_lock_io
-ffffffc00889bf90 T ww_mutex_lock
-ffffffc00889c070 t __ww_mutex_lock_slowpath
-ffffffc00889c0a4 T ww_mutex_lock_interruptible
-ffffffc00889c184 t __ww_mutex_lock_interruptible_slowpath
-ffffffc00889c1b4 t __mutex_lock
-ffffffc00889cc30 t __ww_mutex_lock
-ffffffc00889dbf4 T down
-ffffffc00889dc54 t __down
-ffffffc00889dc88 T down_interruptible
-ffffffc00889dcfc t __down_interruptible
-ffffffc00889dd30 T down_killable
-ffffffc00889dda4 t __down_killable
-ffffffc00889ddd8 T down_trylock
-ffffffc00889de30 T down_timeout
-ffffffc00889deac t __down_timeout
-ffffffc00889dee0 T up
-ffffffc00889df4c t __up
-ffffffc00889dfc0 t __down_common
-ffffffc00889e230 T down_read
-ffffffc00889e670 T down_read_interruptible
-ffffffc00889ec34 T down_read_killable
-ffffffc00889f1f0 T down_write
-ffffffc00889f2cc T down_write_killable
-ffffffc00889f3b4 t rwsem_down_write_slowpath
-ffffffc00889fd80 T __percpu_down_read
-ffffffc00889ff10 T percpu_down_write
-ffffffc0088a017c T rt_mutex_lock
-ffffffc0088a020c T rt_mutex_lock_interruptible
-ffffffc0088a02a0 T rt_mutex_lock_killable
-ffffffc0088a0334 T rt_mutex_trylock
-ffffffc0088a03c4 T rt_mutex_unlock
-ffffffc0088a044c T rt_mutex_futex_trylock
-ffffffc0088a04f4 t rt_mutex_slowtrylock
-ffffffc0088a05a0 T __rt_mutex_futex_trylock
-ffffffc0088a060c T __rt_mutex_futex_unlock
-ffffffc0088a0664 t mark_wakeup_next_waiter
-ffffffc0088a0768 T rt_mutex_futex_unlock
-ffffffc0088a0850 T rt_mutex_postunlock
-ffffffc0088a08b0 T __rt_mutex_init
-ffffffc0088a08cc T rt_mutex_init_proxy_locked
-ffffffc0088a0910 T rt_mutex_proxy_unlock
-ffffffc0088a0934 T __rt_mutex_start_proxy_lock
-ffffffc0088a09b4 t try_to_take_rt_mutex
-ffffffc0088a0c20 t task_blocks_on_rt_mutex
-ffffffc0088a0f54 T rt_mutex_start_proxy_lock
-ffffffc0088a0ffc t remove_waiter
-ffffffc0088a1280 T rt_mutex_wait_proxy_lock
-ffffffc0088a1324 t rt_mutex_slowlock_block
-ffffffc0088a14a4 T rt_mutex_cleanup_proxy_lock
-ffffffc0088a1550 T rt_mutex_adjust_pi
-ffffffc0088a1654 t rt_mutex_adjust_prio_chain
-ffffffc0088a1e94 t rt_mutex_slowlock
-ffffffc0088a20f4 t rt_mutex_slowunlock
-ffffffc0088a23d4 T console_conditional_schedule
-ffffffc0088a23e4 T schedule_timeout
-ffffffc0088a2518 T schedule_timeout_interruptible
-ffffffc0088a2550 T schedule_timeout_killable
-ffffffc0088a2588 T schedule_timeout_uninterruptible
-ffffffc0088a25c0 T schedule_timeout_idle
-ffffffc0088a25f8 T usleep_range_state
-ffffffc0088a26a0 t do_nanosleep
-ffffffc0088a27f4 t hrtimer_nanosleep_restart
-ffffffc0088a2890 T schedule_hrtimeout_range_clock
-ffffffc0088a29b0 T schedule_hrtimeout_range
-ffffffc0088a29e0 T schedule_hrtimeout
-ffffffc0088a2a18 t alarm_timer_nsleep_restart
-ffffffc0088a2b08 T ldsem_down_read
-ffffffc0088a2e84 T ldsem_down_write
-ffffffc0088a317c T __sched_text_end
-ffffffc0088a3180 T __cpuidle_text_start
-ffffffc0088a3184 T default_idle_call
-ffffffc0088a32e4 t cpu_idle_poll
-ffffffc0088a349c T __cpuidle_text_end
-ffffffc0088a34a0 T __lock_text_start
-ffffffc0088a34a4 T _raw_spin_trylock
-ffffffc0088a3560 T _raw_spin_trylock_bh
-ffffffc0088a3614 T _raw_spin_lock
-ffffffc0088a36ac T _raw_spin_lock_irqsave
-ffffffc0088a3774 T _raw_spin_lock_irq
-ffffffc0088a3824 T _raw_spin_lock_bh
-ffffffc0088a38bc T _raw_spin_unlock
-ffffffc0088a3914 T _raw_spin_unlock_irqrestore
-ffffffc0088a3970 T _raw_spin_unlock_irq
-ffffffc0088a39d0 T _raw_spin_unlock_bh
-ffffffc0088a3a1c T _raw_read_trylock
-ffffffc0088a3af8 T _raw_read_lock
-ffffffc0088a3b74 T _raw_read_lock_irqsave
-ffffffc0088a3c20 T _raw_read_lock_irq
-ffffffc0088a3cb4 T _raw_read_lock_bh
-ffffffc0088a3d30 T _raw_read_unlock
-ffffffc0088a3dac T _raw_read_unlock_irqrestore
-ffffffc0088a3e2c T _raw_read_unlock_irq
-ffffffc0088a3eb0 T _raw_read_unlock_bh
-ffffffc0088a3f20 T _raw_write_trylock
-ffffffc0088a3fdc T _raw_write_lock
-ffffffc0088a4070 T _raw_write_lock_nested
-ffffffc0088a4104 T _raw_write_lock_irqsave
-ffffffc0088a41c8 T _raw_write_lock_irq
-ffffffc0088a4274 T _raw_write_lock_bh
-ffffffc0088a4308 T _raw_write_unlock
-ffffffc0088a4360 T _raw_write_unlock_irqrestore
-ffffffc0088a43bc T _raw_write_unlock_irq
-ffffffc0088a441c T _raw_write_unlock_bh
-ffffffc0088a4564 T queued_spin_lock_slowpath
-ffffffc0088a4a7c T queued_read_lock_slowpath
-ffffffc0088a4cf0 T queued_write_lock_slowpath
-ffffffc0088a4fe0 T __kprobes_text_end
-ffffffc0088a4fe0 T __kprobes_text_start
-ffffffc0088a4fe0 T __lock_text_end
-ffffffc0088a5000 T __hyp_idmap_text_end
-ffffffc0088a5000 T __hyp_idmap_text_start
-ffffffc0088a5000 T __hyp_stub_vectors
-ffffffc0088a5000 T __hyp_text_start
-ffffffc0088a5800 t elx_sync
-ffffffc0088a5850 t __finalise_el2
-ffffffc0088a5a34 t el2_sync_invalid
-ffffffc0088a5a38 t el2_irq_invalid
-ffffffc0088a5a3c t el2_fiq_invalid
-ffffffc0088a5a40 t el2_error_invalid
-ffffffc0088a5a44 t el1_sync_invalid
-ffffffc0088a5a48 t el1_irq_invalid
-ffffffc0088a5a4c t el1_fiq_invalid
-ffffffc0088a5a50 t el1_error_invalid
-ffffffc0088a6000 T __hyp_text_end
-ffffffc0088a6000 T __idmap_text_start
-ffffffc0088a6000 t enter_vhe
-ffffffc0088a6038 T cpu_resume
-ffffffc0088a6064 T cpu_soft_restart
-ffffffc0088a60a0 T init_kernel_el
-ffffffc0088a60b0 t init_el1
-ffffffc0088a60d8 t init_el2
-ffffffc0088a6278 t set_cpu_boot_mode_flag
-ffffffc0088a6298 T secondary_holding_pen
-ffffffc0088a62bc t pen
-ffffffc0088a62d0 T secondary_entry
-ffffffc0088a62dc t secondary_startup
-ffffffc0088a6304 t __secondary_switched
-ffffffc0088a63bc t __secondary_too_slow
-ffffffc0088a63cc T __enable_mmu
-ffffffc0088a6414 T __cpu_secondary_check52bitva
-ffffffc0088a641c t __no_granule_support
-ffffffc0088a6444 t __relocate_kernel
-ffffffc0088a64f0 t __primary_switch
-ffffffc0088a6568 T cpu_do_resume
-ffffffc0088a6614 T idmap_cpu_replace_ttbr1
-ffffffc0088a6650 T idmap_kpti_install_ng_mappings
-ffffffc0088a67f0 t __idmap_kpti_secondary
-ffffffc0088a6838 T __cpu_setup
-ffffffc0088a6944 T __idmap_text_end
-ffffffc0088b0000 D __start_rodata
-ffffffc0088b0000 T _etext
-ffffffc0088b0000 D vdso_start
-ffffffc0088b1000 D vdso_end
-ffffffc0088b1008 D kernel_config_data
-ffffffc0088b525d D kernel_config_data_end
-ffffffc0088b5265 D kernel_headers_data
-ffffffc0088d1e05 D kernel_headers_data_end
-ffffffc0088d1e08 D kallsyms_offsets
-ffffffc0088ef6f8 D kallsyms_relative_base
-ffffffc0088ef700 D kallsyms_num_syms
-ffffffc0088ef708 D kallsyms_names
-ffffffc008950880 D kallsyms_markers
-ffffffc008950a60 D kallsyms_token_table
-ffffffc008950dd8 D kallsyms_token_index
-ffffffc00895124d d .str.40.llvm.2517853960844119861
-ffffffc008951267 d .str.7.llvm.4989201762658955791
-ffffffc008951296 d .str.8.llvm.4989201762658955791
-ffffffc0089512cd d .str.10.llvm.4989201762658955791
-ffffffc008951b36 d .str.138.llvm.11819852011163720484
-ffffffc008951ff6 d .str.10.llvm.7766222289041304311
-ffffffc008951ffe d .str.18.llvm.7766222289041304311
-ffffffc008952003 d .str.88.llvm.7766222289041304311
-ffffffc008952a48 d .str.22.llvm.1073055775120613392
-ffffffc008952a57 d .str.28.llvm.1073055775120613392
-ffffffc008952a84 d .str.81.llvm.11819852011163720484
-ffffffc008952a91 d .str.132.llvm.11819852011163720484
-ffffffc008952a9a d .str.188.llvm.11819852011163720484
-ffffffc008952ab3 d .str.193.llvm.11819852011163720484
-ffffffc008952ad1 d .str.230.llvm.11819852011163720484
-ffffffc008952add d .str.240.llvm.11819852011163720484
-ffffffc008952e52 d .str.24.llvm.5908801852165218436
-ffffffc008952e5a d .str.38.llvm.5908801852165218436
-ffffffc0089532f2 d .str.llvm.10326077018985032395
-ffffffc008953dfe d .str.5.llvm.5029692201321894544
-ffffffc0089544d2 d .str.2.llvm.12117761492590953702
-ffffffc0089544e7 d .str.33.llvm.2517853960844119861
-ffffffc0089544f4 d .str.49.llvm.2517853960844119861
-ffffffc008954667 d .str.16.llvm.7766222289041304311
-ffffffc00895466e d .str.10.llvm.1874434192752900502
-ffffffc00895470d d .str.llvm.186136977001172786
-ffffffc008954dd1 d .str.38.llvm.7766222289041304311
-ffffffc008954de4 d .str.47.llvm.7766222289041304311
-ffffffc008954def d .str.53.llvm.7766222289041304311
-ffffffc008954e36 d .str.11.llvm.7766222289041304311
-ffffffc008954f52 d .str.24.llvm.7766222289041304311
-ffffffc008954fd9 d .str.17.llvm.7766222289041304311
-ffffffc008954fe4 d .str.19.llvm.7766222289041304311
-ffffffc008955ada d .str.45.llvm.11819852011163720484
-ffffffc008955ae4 d .str.76.llvm.11819852011163720484
-ffffffc008955aef d .str.87.llvm.11819852011163720484
-ffffffc008955afd d .str.89.llvm.11819852011163720484
-ffffffc008955b08 d .str.136.llvm.11819852011163720484
-ffffffc008955b0f d .str.140.llvm.11819852011163720484
-ffffffc008955b16 d .str.219.llvm.11819852011163720484
-ffffffc008955b25 d .str.250.llvm.11819852011163720484
-ffffffc008955cc1 d .str.2.llvm.7217213093555417976
-ffffffc008955ec6 d .str.4.llvm.9431308477690723053
-ffffffc008955ecf d .str.19.llvm.5908801852165218436
-ffffffc008956426 d .str.llvm.8168627999870060686
-ffffffc00895694f d .str.23.llvm.9986405649284236011
-ffffffc008956962 d .str.27.llvm.9986405649284236011
-ffffffc0089573e1 d .str.17.llvm.4989201762658955791
-ffffffc008957d03 d .str.63.llvm.7766222289041304311
-ffffffc008958008 d .str.30.llvm.7766222289041304311
-ffffffc008958876 d .str.17.llvm.11819852011163720484
-ffffffc00895887e d .str.31.llvm.11819852011163720484
-ffffffc008958886 d .str.256.llvm.11819852011163720484
-ffffffc008958893 d .str.257.llvm.11819852011163720484
-ffffffc00895889e d .str.269.llvm.11819852011163720484
-ffffffc008958bff d .str.41.llvm.5908801852165218436
-ffffffc008959073 d .str.llvm.5302637460905221572
-ffffffc00895a1ac d .str.45.llvm.2517853960844119861
-ffffffc00895aa85 d .str.61.llvm.7766222289041304311
-ffffffc00895ac0d d .str.29.llvm.7766222289041304311
-ffffffc00895b852 d .str.24.llvm.1073055775120613392
-ffffffc00895b875 d .str.9.llvm.11819852011163720484
-ffffffc00895b87d d .str.131.llvm.11819852011163720484
-ffffffc00895b886 d .str.139.llvm.11819852011163720484
-ffffffc00895b88d d .str.158.llvm.11819852011163720484
-ffffffc00895b898 d .str.198.llvm.11819852011163720484
-ffffffc00895c63c d .str.7.llvm.9986405649284236011
-ffffffc00895c64b d .str.25.llvm.9986405649284236011
-ffffffc00895cbf0 d .str.llvm.12147551461919032625
-ffffffc00895d431 d .str.43.llvm.2517853960844119861
-ffffffc00895d43f d .str.47.llvm.2517853960844119861
-ffffffc00895d44d d .str.72.llvm.2517853960844119861
-ffffffc00895d47b d .str.21.llvm.4989201762658955791
-ffffffc00895ddfb d .str.44.llvm.7766222289041304311
-ffffffc00895e00d d .str.84.llvm.7766222289041304311
-ffffffc00895e016 d .str.93.llvm.7766222289041304311
-ffffffc00895eace d .str.1.llvm.11819852011163720484
-ffffffc00895ead9 d .str.51.llvm.11819852011163720484
-ffffffc00895eae5 d .str.61.llvm.11819852011163720484
-ffffffc00895eaec d .str.63.llvm.11819852011163720484
-ffffffc00895eaf3 d .str.97.llvm.11819852011163720484
-ffffffc00895eafc d .str.167.llvm.11819852011163720484
-ffffffc00895eb01 d .str.173.llvm.11819852011163720484
-ffffffc00895eb16 d .str.199.llvm.11819852011163720484
-ffffffc00895eb1d d .str.218.llvm.11819852011163720484
-ffffffc00895eb30 d .str.220.llvm.11819852011163720484
-ffffffc00895eb40 d .str.251.llvm.11819852011163720484
-ffffffc00895ebdd d .str.7.llvm.7217213093555417976
-ffffffc00895eeb5 d .str.8.llvm.5908801852165218436
-ffffffc00895eec5 d .str.40.llvm.5908801852165218436
-ffffffc00895f562 d k_cur.cur_chars
-ffffffc0089608b2 d .str.51.llvm.2517853960844119861
-ffffffc0089608d2 d .str.20.llvm.4989201762658955791
-ffffffc0089612c8 d .str.67.llvm.7766222289041304311
-ffffffc008961556 d .str.26.llvm.7766222289041304311
-ffffffc008961563 d .str.32.llvm.7766222289041304311
-ffffffc008961c49 d .str.123.llvm.11819852011163720484
-ffffffc008961db8 d .str.2.llvm.4043046093166785384
-ffffffc008961e0f d .str.12.llvm.1073055775120613392
-ffffffc008961e78 d .str.32.llvm.11819852011163720484
-ffffffc008961e80 d .str.54.llvm.11819852011163720484
-ffffffc008961e8f d .str.57.llvm.11819852011163720484
-ffffffc008961e95 d .str.96.llvm.11819852011163720484
-ffffffc008961e9e d .str.114.llvm.11819852011163720484
-ffffffc008961eab d .str.144.llvm.11819852011163720484
-ffffffc008961eb4 d .str.162.llvm.11819852011163720484
-ffffffc008961eb8 d .str.203.llvm.11819852011163720484
-ffffffc008961ebc d .str.235.llvm.11819852011163720484
-ffffffc0089621c3 d .str.12.llvm.5908801852165218436
-ffffffc0089621d2 d .str.45.llvm.5908801852165218436
-ffffffc008962e8f d .str.17.llvm.9986405649284236011
-ffffffc0089638cc d .str.34.llvm.2517853960844119861
-ffffffc0089638db d .str.35.llvm.2517853960844119861
-ffffffc0089638e8 d .str.65.llvm.2517853960844119861
-ffffffc00896395e d .str.5.llvm.4989201762658955791
-ffffffc008963973 d .str.22.llvm.4989201762658955791
-ffffffc008963bdb d .str.12.llvm.1874434192752900502
-ffffffc008963e95 d trunc_msg
-ffffffc0089643fd d .str.46.llvm.7766222289041304311
-ffffffc0089646bb d .str.86.llvm.7766222289041304311
-ffffffc0089646c6 d .str.94.llvm.7766222289041304311
-ffffffc008964fe4 d .str.5.llvm.1073055775120613392
-ffffffc008964ff0 d .str.8.llvm.1073055775120613392
-ffffffc008964fff d .str.25.llvm.1073055775120613392
-ffffffc008965012 d .str.6.llvm.11819852011163720484
-ffffffc008965022 d .str.16.llvm.11819852011163720484
-ffffffc00896502d d .str.94.llvm.11819852011163720484
-ffffffc008965037 d .str.118.llvm.11819852011163720484
-ffffffc008965040 d .str.210.llvm.11819852011163720484
-ffffffc00896504d d .str.216.llvm.11819852011163720484
-ffffffc008965055 d .str.217.llvm.11819852011163720484
-ffffffc008965059 d .str.252.llvm.11819852011163720484
-ffffffc00896515a d .str.3.llvm.7217213093555417976
-ffffffc008965c35 d .str.9.llvm.9986405649284236011
-ffffffc008965c44 d .str.24.llvm.9986405649284236011
-ffffffc008966632 d .str.70.llvm.2517853960844119861
-ffffffc008966685 d .str.6.llvm.4989201762658955791
-ffffffc008966f77 d .str.34.llvm.7766222289041304311
-ffffffc008966f8b d .str.65.llvm.7766222289041304311
-ffffffc008967336 d .str.101.llvm.11819852011163720484
-ffffffc008967336 d .str.69.llvm.7766222289041304311
-ffffffc00896733b d .str.78.llvm.7766222289041304311
-ffffffc008967ec9 d .str.56.llvm.11819852011163720484
-ffffffc008967ed4 d .str.11.llvm.11819852011163720484
-ffffffc008967ee4 d .str.15.llvm.11819852011163720484
-ffffffc008967ee9 d .str.35.llvm.11819852011163720484
-ffffffc008967ef0 d .str.40.llvm.11819852011163720484
-ffffffc008967ef8 d .str.115.llvm.11819852011163720484
-ffffffc008967efd d .str.121.llvm.11819852011163720484
-ffffffc008967f0e d .str.125.llvm.11819852011163720484
-ffffffc008967f1a d .str.143.llvm.11819852011163720484
-ffffffc008967f23 d .str.146.llvm.11819852011163720484
-ffffffc008967f2d d .str.185.llvm.11819852011163720484
-ffffffc008967f3d d .str.197.llvm.11819852011163720484
-ffffffc008967f53 d .str.207.llvm.11819852011163720484
-ffffffc008968b9f d .str.8.llvm.9986405649284236011
-ffffffc008968bae d .str.21.llvm.9986405649284236011
-ffffffc0089694ea d .str.1.llvm.17769982197508891136
-ffffffc008969528 d .str.50.llvm.2517853960844119861
-ffffffc0089695fc d .str.52.llvm.2517853960844119861
-ffffffc00896973b d .str.18.llvm.1874434192752900502
-ffffffc008969d19 d .str.37.llvm.7766222289041304311
-ffffffc008969d22 d .str.42.llvm.7766222289041304311
-ffffffc008969fde d .str.89.llvm.7766222289041304311
-ffffffc00896a301 d .str.129.llvm.11819852011163720484
-ffffffc00896a9d7 d .str.16.llvm.1073055775120613392
-ffffffc00896a9e9 d .str.17.llvm.1073055775120613392
-ffffffc00896aa06 d .str.26.llvm.11819852011163720484
-ffffffc00896aa0e d .str.44.llvm.11819852011163720484
-ffffffc00896aa1c d .str.53.llvm.11819852011163720484
-ffffffc00896aa2b d .str.142.llvm.11819852011163720484
-ffffffc00896aa32 d .str.180.llvm.11819852011163720484
-ffffffc00896aa46 d .str.204.llvm.11819852011163720484
-ffffffc00896aa4b d .str.236.llvm.11819852011163720484
-ffffffc00896ad32 d .str.18.llvm.5908801852165218436
-ffffffc00896b889 d .str.16.llvm.9986405649284236011
-ffffffc00896b899 d .str.22.llvm.9986405649284236011
-ffffffc00896bdd5 d .str.llvm.15915789915913877141
-ffffffc00896c15b d .str.19.llvm.4989201762658955791
-ffffffc00896d933 d .str.1.llvm.1073055775120613392
-ffffffc00896d94b d .str.43.llvm.11819852011163720484
-ffffffc00896d958 d .str.122.llvm.11819852011163720484
-ffffffc00896d963 d .str.156.llvm.11819852011163720484
-ffffffc00896d972 d .str.159.llvm.11819852011163720484
-ffffffc00896d985 d .str.191.llvm.11819852011163720484
-ffffffc00896d990 d .str.205.llvm.11819852011163720484
-ffffffc00896d99c d .str.206.llvm.11819852011163720484
-ffffffc00896d9cc d .str.5.llvm.7153699106138749325
-ffffffc00896db8c d .str.7.llvm.9431308477690723053
-ffffffc00896ecef d .str.5.llvm.16916475078941735260
-ffffffc00896f3fc d .str.1.llvm.15573358337468716893
-ffffffc00896f3fc d .str.2.llvm.1593798624798122259
-ffffffc00896f473 d .str.30.llvm.2517853960844119861
-ffffffc00896f4a2 d .str.9.llvm.4989201762658955791
-ffffffc00896f5de d .str.91.llvm.7766222289041304311
-ffffffc00896fee3 d .str.41.llvm.7766222289041304311
-ffffffc00896feee d .str.48.llvm.7766222289041304311
-ffffffc00896fefb d .str.54.llvm.7766222289041304311
-ffffffc00896ff09 d .str.56.llvm.7766222289041304311
-ffffffc0089701f2 d .str.14.llvm.7766222289041304311
-ffffffc0089701f8 d .str.31.llvm.7766222289041304311
-ffffffc008970b82 d .str.10.llvm.1073055775120613392
-ffffffc008970ba1 d .str.27.llvm.1073055775120613392
-ffffffc008970bfa d .str.18.llvm.11819852011163720484
-ffffffc008970c02 d .str.19.llvm.11819852011163720484
-ffffffc008970c0a d .str.23.llvm.11819852011163720484
-ffffffc008970c13 d .str.93.llvm.11819852011163720484
-ffffffc008970c1f d .str.116.llvm.11819852011163720484
-ffffffc008970c27 d .str.119.llvm.11819852011163720484
-ffffffc008970c37 d .str.128.llvm.11819852011163720484
-ffffffc008970c3d d .str.150.llvm.11819852011163720484
-ffffffc008970c48 d .str.181.llvm.11819852011163720484
-ffffffc008970c5f d .str.222.llvm.11819852011163720484
-ffffffc008970c6a d .str.246.llvm.11819852011163720484
-ffffffc008970f56 d .str.1.llvm.9431308477690723053
-ffffffc008970f5f d .str.5.llvm.9431308477690723053
-ffffffc008970f77 d .str.25.llvm.5908801852165218436
-ffffffc008970f7f d .str.39.llvm.5908801852165218436
-ffffffc008971a18 d .str.5.llvm.9986405649284236011
-ffffffc0089723d1 d .str.6.llvm.2517853960844119861
-ffffffc0089723dc d .str.59.llvm.2517853960844119861
-ffffffc008972d1b d .str.271.llvm.11819852011163720484
-ffffffc008972f97 d .str.74.llvm.7766222289041304311
-ffffffc008973150 d .str.9.llvm.1554850461162813889
-ffffffc0089739c0 d .str.20.llvm.11819852011163720484
-ffffffc0089739c8 d .str.24.llvm.11819852011163720484
-ffffffc0089739d1 d .str.36.llvm.11819852011163720484
-ffffffc0089739db d .str.37.llvm.11819852011163720484
-ffffffc0089739e5 d .str.66.llvm.11819852011163720484
-ffffffc0089739f5 d .str.161.llvm.11819852011163720484
-ffffffc008973a07 d .str.200.llvm.11819852011163720484
-ffffffc008973a0c d .str.213.llvm.11819852011163720484
-ffffffc008973c1d d .str.2.llvm.5908801852165218436
-ffffffc008973c24 d .str.30.llvm.5908801852165218436
-ffffffc008974719 d .str.28.llvm.9986405649284236011
-ffffffc0089751fb d .str.62.llvm.2517853960844119861
-ffffffc008975217 d .str.23.llvm.4989201762658955791
-ffffffc0089753ea d .str.llvm.10457135627104497165
-ffffffc00897587b d .str.22.llvm.7766222289041304311
-ffffffc008975d88 d .str.77.llvm.7766222289041304311
-ffffffc008975d92 d .str.90.llvm.7766222289041304311
-ffffffc008976893 d .str.33.llvm.11819852011163720484
-ffffffc00897689f d .str.41.llvm.11819852011163720484
-ffffffc0089768a9 d .str.83.llvm.11819852011163720484
-ffffffc0089768b8 d .str.84.llvm.11819852011163720484
-ffffffc0089768be d .str.141.llvm.11819852011163720484
-ffffffc0089768c5 d .str.179.llvm.11819852011163720484
-ffffffc008976b27 d .str.6.llvm.5908801852165218436
-ffffffc008976b30 d .str.16.llvm.5908801852165218436
-ffffffc0089781ac d .str.21.llvm.7766222289041304311
-ffffffc008978210 d .str.54.llvm.2517853960844119861
-ffffffc00897821c d .str.66.llvm.2517853960844119861
-ffffffc008978568 d .str.14.llvm.1874434192752900502
-ffffffc00897856e d .str.19.llvm.1874434192752900502
-ffffffc00897909d d .str.76.llvm.7766222289041304311
-ffffffc0089790a6 d .str.79.llvm.7766222289041304311
-ffffffc0089790b1 d .str.92.llvm.7766222289041304311
-ffffffc0089790ca d .str.llvm.1681697719000778620
-ffffffc0089790d4 d .str.3.llvm.1681697719000778620
-ffffffc0089795a3 d .str.llvm.1340153322159381457
-ffffffc008979a4d d .str.4.llvm.16173149741644219321
-ffffffc008979be7 d .str.13.llvm.11819852011163720484
-ffffffc008979bf6 d .str.29.llvm.11819852011163720484
-ffffffc008979bfd d .str.42.llvm.11819852011163720484
-ffffffc008979c06 d .str.69.llvm.11819852011163720484
-ffffffc008979c10 d .str.82.llvm.11819852011163720484
-ffffffc008979c19 d .str.110.llvm.11819852011163720484
-ffffffc008979c20 d .str.174.llvm.11819852011163720484
-ffffffc008979c2b d .str.211.llvm.11819852011163720484
-ffffffc008979c35 d .str.223.llvm.11819852011163720484
-ffffffc008979c42 d .str.254.llvm.11819852011163720484
-ffffffc008979c4d d .str.276.llvm.11819852011163720484
-ffffffc008979d19 d .str.5.llvm.7217213093555417976
-ffffffc008979ecc d .str.27.llvm.5908801852165218436
-ffffffc00897aade d .str.26.llvm.9986405649284236011
-ffffffc00897b46f d .str.71.llvm.2517853960844119861
-ffffffc00897b494 d .str.2.llvm.4989201762658955791
-ffffffc00897b695 d .str.13.llvm.1874434192752900502
-ffffffc00897bda8 d .str.99.llvm.11819852011163720484
-ffffffc00897bdb0 d .str.57.llvm.7766222289041304311
-ffffffc00897c143 d .str.13.llvm.7766222289041304311
-ffffffc00897c19d d .str.4.llvm.1681697719000778620
-ffffffc00897cc48 d .str.6.llvm.1073055775120613392
-ffffffc00897cc5a d .str.21.llvm.1073055775120613392
-ffffffc00897cc8c d .str.4.llvm.11819852011163720484
-ffffffc00897cc9a d .str.59.llvm.11819852011163720484
-ffffffc00897ccaa d .str.111.llvm.11819852011163720484
-ffffffc00897ccb2 d .str.196.llvm.11819852011163720484
-ffffffc00897ccc6 d .str.201.llvm.11819852011163720484
-ffffffc00897ccd1 d .str.268.llvm.11819852011163720484
-ffffffc00897cfef d .str.35.llvm.5908801852165218436
-ffffffc00897cff8 d .str.36.llvm.5908801852165218436
-ffffffc00897e2ce d .str.31.llvm.2517853960844119861
-ffffffc00897e2ea d .str.3.llvm.4989201762658955791
-ffffffc00897e4af d .str.20.llvm.13610761371895458860
-ffffffc00897eb7e d .str.59.llvm.7766222289041304311
-ffffffc00897ec8f d .str.274.llvm.11819852011163720484
-ffffffc00897ef0a d .str.9.llvm.7766222289041304311
-ffffffc00897ef11 d .str.97.llvm.7766222289041304311
-ffffffc00897fac7 d .str.29.llvm.1073055775120613392
-ffffffc00897fad7 d .str.38.llvm.11819852011163720484
-ffffffc00897fae5 d .str.70.llvm.11819852011163720484
-ffffffc00897faed d .str.208.llvm.11819852011163720484
-ffffffc00897faf2 d .str.215.llvm.11819852011163720484
-ffffffc00897fafd d .str.224.llvm.11819852011163720484
-ffffffc00897fb04 d .str.263.llvm.11819852011163720484
-ffffffc00897fb12 d .str.277.llvm.11819852011163720484
-ffffffc00897fb21 d .str.279.llvm.11819852011163720484
-ffffffc00898012d d .str.10.llvm.11001153115515454186
-ffffffc0089802d7 d k_pad.app_map
-ffffffc008980a04 d .str.4.llvm.9986405649284236011
-ffffffc008980a08 d .str.18.llvm.9986405649284236011
-ffffffc008980a2c d .str.llvm.7244572381038782604
-ffffffc008980b51 d .str.8.llvm.15221146139721862464
-ffffffc00898124b d .str.llvm.17769982197508891136
-ffffffc008981278 d .str.53.llvm.2517853960844119861
-ffffffc0089813fa d .str.46.llvm.2517853960844119861
-ffffffc008981419 d .str.11.llvm.4989201762658955791
-ffffffc00898176c d .str.11.llvm.1874434192752900502
-ffffffc008981834 d .str.llvm.1073055775120613392
-ffffffc008981e5d d .str.39.llvm.7766222289041304311
-ffffffc00898211e d .str.85.llvm.7766222289041304311
-ffffffc00898215c d .str.2.llvm.1681697719000778620
-ffffffc008982b44 d .str.9.llvm.1073055775120613392
-ffffffc008982ba7 d .str.12.llvm.11819852011163720484
-ffffffc008982bb3 d .str.71.llvm.11819852011163720484
-ffffffc008982bbc d .str.75.llvm.11819852011163720484
-ffffffc008982bc7 d .str.79.llvm.11819852011163720484
-ffffffc008982bd0 d .str.92.llvm.11819852011163720484
-ffffffc008982bd8 d .str.145.llvm.11819852011163720484
-ffffffc008982bdf d .str.147.llvm.11819852011163720484
-ffffffc008982bea d .str.176.llvm.11819852011163720484
-ffffffc008982bf9 d .str.192.llvm.11819852011163720484
-ffffffc008982c02 d .str.225.llvm.11819852011163720484
-ffffffc008982c0e d .str.244.llvm.11819852011163720484
-ffffffc008982c19 d .str.260.llvm.11819852011163720484
-ffffffc008982f8c d .str.3.llvm.5908801852165218436
-ffffffc008982f92 d .str.4.llvm.5908801852165218436
-ffffffc008982f9d d .str.37.llvm.5908801852165218436
-ffffffc008983ba9 d .str.1.llvm.9986405649284236011
-ffffffc008983baf d .str.14.llvm.9986405649284236011
-ffffffc00898421b d .str.1.llvm.12147551461919032625
-ffffffc0089844af d .str.llvm.8773621375488764169
-ffffffc008984744 d .str.1.llvm.12117761492590953702
-ffffffc008984804 d .str.64.llvm.2517853960844119861
-ffffffc00898481a d .str.68.llvm.2517853960844119861
-ffffffc00898486b d .str.llvm.18017372600949812605
-ffffffc008984a26 d .str.17.llvm.1874434192752900502
-ffffffc008984c99 d .str.166.llvm.11819852011163720484
-ffffffc0089852d5 d .str.36.llvm.7766222289041304311
-ffffffc0089852e2 d .str.43.llvm.7766222289041304311
-ffffffc0089852ed d .str.52.llvm.7766222289041304311
-ffffffc008985301 d .str.60.llvm.7766222289041304311
-ffffffc0089856ff d .str.102.llvm.11819852011163720484
-ffffffc0089856ff d .str.70.llvm.7766222289041304311
-ffffffc008985705 d .str.71.llvm.7766222289041304311
-ffffffc00898570a d .str.72.llvm.7766222289041304311
-ffffffc008985711 d .str.73.llvm.7766222289041304311
-ffffffc00898632a d .str.3.llvm.1073055775120613392
-ffffffc00898633f d .str.4.llvm.1073055775120613392
-ffffffc008986358 d .str.7.llvm.1073055775120613392
-ffffffc008986382 d .str.90.llvm.11819852011163720484
-ffffffc008986388 d .str.95.llvm.11819852011163720484
-ffffffc008986392 d .str.107.llvm.11819852011163720484
-ffffffc008986396 d .str.117.llvm.11819852011163720484
-ffffffc0089863a2 d .str.195.llvm.11819852011163720484
-ffffffc0089863bf d .str.261.llvm.11819852011163720484
-ffffffc0089863c6 d .str.280.llvm.11819852011163720484
-ffffffc0089864d3 d .str.llvm.6571257494608389932
-ffffffc0089866e2 d .str.3.llvm.9431308477690723053
-ffffffc008986742 d .str.5.llvm.5908801852165218436
-ffffffc00898674e d .str.21.llvm.5908801852165218436
-ffffffc008986d00 d pty_line_name.ptychar
-ffffffc0089873b5 d .str.llvm.15087132370636148111
-ffffffc0089873bc d .str.5.llvm.15087132370636148111
-ffffffc0089877d6 d .str.llvm.3828863129773945406
-ffffffc008987cb2 d .str.38.llvm.2517853960844119861
-ffffffc008987ce5 d .str.4.llvm.4989201762658955791
-ffffffc008987e6c d .str.16.llvm.1874434192752900502
-ffffffc00898868d d .str.81.llvm.7766222289041304311
-ffffffc008988fdf d .str.18.llvm.1073055775120613392
-ffffffc008989065 d .str.88.llvm.11819852011163720484
-ffffffc00898906d d .str.154.llvm.11819852011163720484
-ffffffc008989075 d .str.163.llvm.11819852011163720484
-ffffffc008989131 d .str.6.llvm.7217213093555417976
-ffffffc0089892e8 d .str.1.llvm.5908801852165218436
-ffffffc0089892ee d .str.47.llvm.5908801852165218436
-ffffffc008989965 d .str.llvm.4914588615639669132
-ffffffc00898a74b d .str.41.llvm.2517853960844119861
-ffffffc00898a74f d .str.61.llvm.2517853960844119861
-ffffffc00898a791 d .str.18.llvm.4989201762658955791
-ffffffc00898b14a d .str.62.llvm.7766222289041304311
-ffffffc00898b3f2 d .str.80.llvm.7766222289041304311
-ffffffc00898b3f9 d .str.82.llvm.7766222289041304311
-ffffffc00898ba5f d .str.49.llvm.11819852011163720484
-ffffffc00898c0eb d .str.19.llvm.1073055775120613392
-ffffffc00898c100 d .str.26.llvm.1073055775120613392
-ffffffc00898c164 d .str.8.llvm.11819852011163720484
-ffffffc00898c16f d .str.148.llvm.11819852011163720484
-ffffffc00898c179 d .str.178.llvm.11819852011163720484
-ffffffc00898c190 d .str.194.llvm.11819852011163720484
-ffffffc00898c1a7 d .str.214.llvm.11819852011163720484
-ffffffc00898c1b5 d .str.227.llvm.11819852011163720484
-ffffffc00898c1c5 d .str.229.llvm.11819852011163720484
-ffffffc00898c1d0 d .str.264.llvm.11819852011163720484
-ffffffc00898c55b d .str.14.llvm.5908801852165218436
-ffffffc00898c568 d .str.28.llvm.5908801852165218436
-ffffffc00898c570 d .str.44.llvm.5908801852165218436
-ffffffc00898c579 d .str.46.llvm.5908801852165218436
-ffffffc00898d00e d .str.13.llvm.9986405649284236011
-ffffffc00898d754 d .str.3.llvm.9913964578181900507
-ffffffc00898e8aa d .str.17.llvm.1976069713084195521
-ffffffc00898f206 d .str.2.llvm.11819852011163720484
-ffffffc00898f215 d .str.27.llvm.11819852011163720484
-ffffffc00898f21d d .str.98.llvm.11819852011163720484
-ffffffc00898f223 d .str.104.llvm.11819852011163720484
-ffffffc00898f22b d .str.113.llvm.11819852011163720484
-ffffffc00898f233 d .str.151.llvm.11819852011163720484
-ffffffc00898f240 d .str.155.llvm.11819852011163720484
-ffffffc00898f247 d .str.169.llvm.11819852011163720484
-ffffffc00898f24c d .str.175.llvm.11819852011163720484
-ffffffc00898f258 d .str.177.llvm.11819852011163720484
-ffffffc00898f267 d .str.184.llvm.11819852011163720484
-ffffffc00898f273 d .str.189.llvm.11819852011163720484
-ffffffc00898f287 d .str.231.llvm.11819852011163720484
-ffffffc00898ffea d .str.12.llvm.9986405649284236011
-ffffffc008990852 d .str.llvm.4989201762658955791
-ffffffc00899087f d .str.13.llvm.4989201762658955791
-ffffffc00899098f d .str.llvm.3256704606223639197
-ffffffc008990cd6 d .str.1.llvm.8424786742087844799
-ffffffc008991cad d .str.llvm.7606753493673523951
-ffffffc0089923c7 d .str.13.llvm.1073055775120613392
-ffffffc0089923e0 d .str.23.llvm.1073055775120613392
-ffffffc008992402 d .str.10.llvm.11819852011163720484
-ffffffc00899240e d .str.47.llvm.11819852011163720484
-ffffffc00899241d d .str.55.llvm.11819852011163720484
-ffffffc008992429 d .str.72.llvm.11819852011163720484
-ffffffc008992433 d .str.130.llvm.11819852011163720484
-ffffffc008992437 d .str.134.llvm.11819852011163720484
-ffffffc008992441 d .str.221.llvm.11819852011163720484
-ffffffc008992451 d .str.232.llvm.11819852011163720484
-ffffffc00899245d d .str.267.llvm.11819852011163720484
-ffffffc0089924f4 d .str.llvm.7217213093555417976
-ffffffc008992757 d .str.9.llvm.5908801852165218436
-ffffffc00899275f d .str.48.llvm.5908801852165218436
-ffffffc008992bb7 d k_pad.pad_chars
-ffffffc008993179 d .str.6.llvm.9986405649284236011
-ffffffc008993c09 d .str.12.llvm.4989201762658955791
-ffffffc008993ce0 d .str.1.llvm.16734558914947919650
-ffffffc008993f52 d .str.3.llvm.7345523102028634210
-ffffffc008994103 d .str.212.llvm.11819852011163720484
-ffffffc00899476c d .str.llvm.5049709405517460092
-ffffffc008994980 d .str.96.llvm.7766222289041304311
-ffffffc0089953ac d .str.126.llvm.11819852011163720484
-ffffffc0089953b5 d .str.153.llvm.11819852011163720484
-ffffffc0089953bb d .str.242.llvm.11819852011163720484
-ffffffc0089953c7 d .str.247.llvm.11819852011163720484
-ffffffc008995700 d .str.13.llvm.5908801852165218436
-ffffffc008995707 d .str.15.llvm.5908801852165218436
-ffffffc008996c0e d .str.32.llvm.2517853960844119861
-ffffffc008996c1e d .str.69.llvm.2517853960844119861
-ffffffc008996f5a d task_index_to_char.state_char
-ffffffc008996f5a d task_index_to_char.state_char
-ffffffc008996f5a d task_index_to_char.state_char
-ffffffc008996f5a d task_index_to_char.state_char
-ffffffc0089975ed d .str.33.llvm.7766222289041304311
-ffffffc0089975fb d .str.35.llvm.7766222289041304311
-ffffffc008997610 d .str.40.llvm.7766222289041304311
-ffffffc008997619 d .str.45.llvm.7766222289041304311
-ffffffc008997627 d .str.64.llvm.7766222289041304311
-ffffffc008997de0 d .str.12.llvm.1340153322159381457
-ffffffc008998338 d .str.15.llvm.1073055775120613392
-ffffffc008998347 d .str.28.llvm.11819852011163720484
-ffffffc00899834e d .str.168.llvm.11819852011163720484
-ffffffc008998356 d .str.182.llvm.11819852011163720484
-ffffffc00899836b d .str.183.llvm.11819852011163720484
-ffffffc008998380 d .str.209.llvm.11819852011163720484
-ffffffc00899838c d .str.238.llvm.11819852011163720484
-ffffffc008998398 d .str.266.llvm.11819852011163720484
-ffffffc008998640 d .str.2.llvm.9431308477690723053
-ffffffc008998749 d .str.llvm.5908801852165218436
-ffffffc00899874d d .str.7.llvm.5908801852165218436
-ffffffc008998759 d .str.20.llvm.5908801852165218436
-ffffffc008998766 d .str.29.llvm.5908801852165218436
-ffffffc00899876c d .str.34.llvm.5908801852165218436
-ffffffc00899a325 d .str.llvm.14874782358546094813
-ffffffc00899a7b4 d .str.51.llvm.7766222289041304311
-ffffffc00899abce d .str.23.llvm.7766222289041304311
-ffffffc00899abd8 d .str.87.llvm.7766222289041304311
-ffffffc00899b4cf d .str.14.llvm.1073055775120613392
-ffffffc00899b4fd d .str.7.llvm.11819852011163720484
-ffffffc00899b50a d .str.22.llvm.11819852011163720484
-ffffffc00899b511 d .str.50.llvm.11819852011163720484
-ffffffc00899b51a d .str.133.llvm.11819852011163720484
-ffffffc00899b523 d .str.171.llvm.11819852011163720484
-ffffffc00899b527 d .str.190.llvm.11819852011163720484
-ffffffc00899b533 d .str.237.llvm.11819852011163720484
-ffffffc00899b53e d .str.245.llvm.11819852011163720484
-ffffffc00899b549 d .str.258.llvm.11819852011163720484
-ffffffc00899b894 d .str.11.llvm.5908801852165218436
-ffffffc00899b89c d .str.32.llvm.5908801852165218436
-ffffffc00899c3bd d .str.15.llvm.9986405649284236011
-ffffffc00899cd99 d .str.45.llvm.18413658566053092058
-ffffffc00899cdf0 d .str.44.llvm.2517853960844119861
-ffffffc00899cdfe d .str.63.llvm.2517853960844119861
-ffffffc00899ce96 d .str.1.llvm.4989201762658955791
-ffffffc00899d107 d .str.272.llvm.11819852011163720484
-ffffffc00899d2e8 d .str.22.llvm.5908801852165218436
-ffffffc00899d789 d .str.58.llvm.7766222289041304311
-ffffffc00899da4c d .str.75.llvm.7766222289041304311
-ffffffc00899e465 d .str.2.llvm.1073055775120613392
-ffffffc00899e478 d .str.20.llvm.1073055775120613392
-ffffffc00899e482 d .str.48.llvm.11819852011163720484
-ffffffc00899e494 d .str.62.llvm.11819852011163720484
-ffffffc00899e499 d .str.109.llvm.11819852011163720484
-ffffffc00899e49e d .str.120.llvm.11819852011163720484
-ffffffc00899e4aa d .str.160.llvm.11819852011163720484
-ffffffc00899e4b4 d .str.172.llvm.11819852011163720484
-ffffffc00899e4b8 d .str.226.llvm.11819852011163720484
-ffffffc00899e4bd d .str.243.llvm.11819852011163720484
-ffffffc00899e4ca d .str.248.llvm.11819852011163720484
-ffffffc00899e4d6 d .str.255.llvm.11819852011163720484
-ffffffc00899e581 d .str.4.llvm.7217213093555417976
-ffffffc00899e759 d .str.33.llvm.5908801852165218436
-ffffffc00899e75d d .str.42.llvm.5908801852165218436
-ffffffc00899e766 d .str.43.llvm.5908801852165218436
-ffffffc00899eaa9 d .str.11.llvm.11001153115515454186
-ffffffc00899f3e0 d .str.1.llvm.11214049159427782371
-ffffffc00899fc8b d .str.37.llvm.2517853960844119861
-ffffffc00899fc91 d .str.56.llvm.2517853960844119861
-ffffffc00899fca3 d .str.58.llvm.2517853960844119861
-ffffffc00899fcb8 d .str.14.llvm.4989201762658955791
-ffffffc0089a0787 d .str.55.llvm.7766222289041304311
-ffffffc0089a0bd1 d .str.12.llvm.7766222289041304311
-ffffffc0089a0bdc d .str.25.llvm.7766222289041304311
-ffffffc0089a16e9 d .str.11.llvm.1073055775120613392
-ffffffc0089a1725 d .str.30.llvm.11819852011163720484
-ffffffc0089a172b d .str.39.llvm.11819852011163720484
-ffffffc0089a1736 d .str.67.llvm.11819852011163720484
-ffffffc0089a1747 d .str.80.llvm.11819852011163720484
-ffffffc0089a1750 d .str.106.llvm.11819852011163720484
-ffffffc0089a1757 d .str.149.llvm.11819852011163720484
-ffffffc0089a1764 d .str.165.llvm.11819852011163720484
-ffffffc0089a176f d .str.234.llvm.11819852011163720484
-ffffffc0089a177a d .str.241.llvm.11819852011163720484
-ffffffc0089a1785 d .str.259.llvm.11819852011163720484
-ffffffc0089a1790 d .str.278.llvm.11819852011163720484
-ffffffc0089a1907 d .str.1.llvm.7217213093555417976
-ffffffc0089a1b49 d .str.31.llvm.5908801852165218436
-ffffffc0089a2a69 d __func__.net_ratelimit.llvm.7258037884452826503
-ffffffc0089a309a d .str.48.llvm.2517853960844119861
-ffffffc0089a32df d .str.15.llvm.1874434192752900502
-ffffffc0089a341c d .str.llvm.18308237629466808512
-ffffffc0089a3529 d .str.llvm.4630344060272964208
-ffffffc0089a396c d .str.15.llvm.7766222289041304311
-ffffffc0089a3c6f d .str.1.llvm.1681697719000778620
-ffffffc0089a4793 d .str.46.llvm.11819852011163720484
-ffffffc0089a479c d .str.58.llvm.11819852011163720484
-ffffffc0089a47a9 d .str.64.llvm.11819852011163720484
-ffffffc0089a47b0 d .str.68.llvm.11819852011163720484
-ffffffc0089a47be d .str.100.llvm.11819852011163720484
-ffffffc0089a47c4 d .str.124.llvm.11819852011163720484
-ffffffc0089a47cd d .str.135.llvm.11819852011163720484
-ffffffc0089a47d7 d .str.137.llvm.11819852011163720484
-ffffffc0089a47dc d .str.157.llvm.11819852011163720484
-ffffffc0089a47ea d .str.164.llvm.11819852011163720484
-ffffffc0089a47f4 d .str.186.llvm.11819852011163720484
-ffffffc0089a480e d .str.202.llvm.11819852011163720484
-ffffffc0089a4a8a d .str.10.llvm.5908801852165218436
-ffffffc0089a542a d .str.2.llvm.9986405649284236011
-ffffffc0089a5433 d .str.10.llvm.9986405649284236011
-ffffffc0089a5442 d .str.11.llvm.9986405649284236011
-ffffffc0089a5447 d .str.20.llvm.9986405649284236011
-ffffffc0089a61c0 d .str.15.llvm.4989201762658955791
-ffffffc0089a65bf d .str.23.llvm.5908801852165218436
-ffffffc0089a65d9 d .str.2.llvm.4630344060272964208
-ffffffc0089a6d7b d .str.20.llvm.7766222289041304311
-ffffffc0089a76d0 d .str.3.llvm.11819852011163720484
-ffffffc0089a76df d .str.21.llvm.11819852011163720484
-ffffffc0089a76e6 d .str.25.llvm.11819852011163720484
-ffffffc0089a76f1 d .str.60.llvm.11819852011163720484
-ffffffc0089a76f8 d .str.73.llvm.11819852011163720484
-ffffffc0089a7703 d .str.78.llvm.11819852011163720484
-ffffffc0089a770d d .str.91.llvm.11819852011163720484
-ffffffc0089a7715 d .str.105.llvm.11819852011163720484
-ffffffc0089a771a d .str.127.llvm.11819852011163720484
-ffffffc0089a7721 d .str.249.llvm.11819852011163720484
-ffffffc0089a772e d .str.270.llvm.11819852011163720484
-ffffffc0089a773a d .str.275.llvm.11819852011163720484
-ffffffc0089a7ac2 d .str.17.llvm.5908801852165218436
-ffffffc0089a806f d .str.22.llvm.14292633874074239881
-ffffffc0089a82c7 d .str.19.llvm.9986405649284236011
-ffffffc0089a8ca2 d .str.273.llvm.11819852011163720484
-ffffffc0089a8ca2 d .str.llvm.8424786742087844799
-ffffffc0089a8d5c d .str.55.llvm.2517853960844119861
-ffffffc0089a8dab d .str.16.llvm.4989201762658955791
-ffffffc0089a8de4 d .str.24.llvm.4989201762658955791
-ffffffc0089a8f00 d .str.llvm.13974181396667108116
-ffffffc0089a966e d .str.49.llvm.7766222289041304311
-ffffffc0089a9677 d .str.66.llvm.7766222289041304311
-ffffffc0089a9904 d .str.27.llvm.7766222289041304311
-ffffffc0089a9927 d .str.18.llvm.1976069713084195521
-ffffffc0089aa4f4 d .str.5.llvm.11819852011163720484
-ffffffc0089aa500 d .str.34.llvm.11819852011163720484
-ffffffc0089aa50b d .str.253.llvm.11819852011163720484
-ffffffc0089aa765 d .str.26.llvm.5908801852165218436
-ffffffc0089ab19d d .str.29.llvm.9986405649284236011
-ffffffc0089abbd0 d .str.36.llvm.2517853960844119861
-ffffffc0089abbdd d .str.57.llvm.2517853960844119861
-ffffffc0089abbea d .str.67.llvm.2517853960844119861
-ffffffc0089abfff d .str.11.llvm.4630344060272964208
-ffffffc0089ac534 d .str.50.llvm.7766222289041304311
-ffffffc0089ac613 d .str.llvm.13873195385027949927
-ffffffc0089ac828 d .str.28.llvm.7766222289041304311
-ffffffc0089ac833 d .str.83.llvm.7766222289041304311
-ffffffc0089ac83b d .str.95.llvm.7766222289041304311
-ffffffc0089acaba d .str.85.llvm.11819852011163720484
-ffffffc0089ad091 d .str.llvm.2694160998630654868
-ffffffc0089ad181 d .str.llvm.11819852011163720484
-ffffffc0089ad18a d .str.74.llvm.11819852011163720484
-ffffffc0089ad194 d .str.86.llvm.11819852011163720484
-ffffffc0089ad1a0 d .str.112.llvm.11819852011163720484
-ffffffc0089ad1a8 d .str.228.llvm.11819852011163720484
-ffffffc0089ad1b1 d .str.239.llvm.11819852011163720484
-ffffffc0089ad1bf d .str.265.llvm.11819852011163720484
-ffffffc0089ad35b d .str.llvm.9431308477690723053
-ffffffc0089ad367 d .str.6.llvm.9431308477690723053
-ffffffc0089aebdf d .str.7.llvm.2517853960844119861
-ffffffc0089aebeb d .str.39.llvm.2517853960844119861
-ffffffc0089aebef d .str.42.llvm.2517853960844119861
-ffffffc0089aebf9 d .str.60.llvm.2517853960844119861
-ffffffc0089aefba d .str.3.llvm.9986405649284236011
-ffffffc0089aefe4 d .str.152.llvm.11819852011163720484
-ffffffc0089af45f d .str.68.llvm.7766222289041304311
-ffffffc0089b0145 d .str.14.llvm.11819852011163720484
-ffffffc0089b014d d .str.52.llvm.11819852011163720484
-ffffffc0089b0158 d .str.65.llvm.11819852011163720484
-ffffffc0089b0160 d .str.77.llvm.11819852011163720484
-ffffffc0089b016a d .str.103.llvm.11819852011163720484
-ffffffc0089b0171 d .str.108.llvm.11819852011163720484
-ffffffc0089b0178 d .str.170.llvm.11819852011163720484
-ffffffc0089b0180 d .str.187.llvm.11819852011163720484
-ffffffc0089b0199 d .str.233.llvm.11819852011163720484
-ffffffc0089b01a5 d .str.262.llvm.11819852011163720484
-ffffffc0089b1310 d .str.2.llvm.6958494622049000337
-ffffffc0089b14e6 d str__initcall__trace_system_name
-ffffffc0089b14ef d __param_str_initcall_debug
-ffffffc0089b14fe D linux_proc_banner
-ffffffc0089b173d d mt_min_slots
-ffffffc0089b1745 d mt_pivots
-ffffffc0089b1749 d mt_slots
-ffffffc0089b1938 d btypes
-ffffffc0089b1958 d str__raw_syscalls__trace_system_name
-ffffffc0089b1968 d regoffset_table
-ffffffc0089b1ba8 d user_aarch64_view.llvm.18413658566053092058
-ffffffc0089b1bc8 d aarch64_regsets.llvm.18413658566053092058
-ffffffc0089b1e68 D sys_call_table
-ffffffc0089b2cc0 D aarch32_opcode_cond_checks
-ffffffc0089b2d40 d esr_class_str.llvm.2517853960844119861
-ffffffc0089b2f40 D cpu_psci_ops
-ffffffc0089b2f88 D cpuinfo_op
-ffffffc0089b2fa8 d hwcap_str
-ffffffc0089b32b8 d cpuregs_attr_group
-ffffffc0089b32e0 d sme_cpuregs_attr_group
-ffffffc0089b3308 D cavium_erratum_27456_cpus
-ffffffc0089b332c d workaround_clean_cache.llvm.4989201762658955791
-ffffffc0089b3350 d erratum_843419_list.llvm.4989201762658955791
-ffffffc0089b3410 d cavium_erratum_23154_cpus.llvm.4989201762658955791
-ffffffc0089b3488 d cavium_erratum_30115_cpus.llvm.4989201762658955791
-ffffffc0089b34b8 d qcom_erratum_1003_list.llvm.4989201762658955791
-ffffffc0089b3578 d arm64_repeat_tlbi_list.llvm.4989201762658955791
-ffffffc0089b3738 d erratum_speculative_at_list.llvm.4989201762658955791
-ffffffc0089b3780 d erratum_1463225.llvm.4989201762658955791
-ffffffc0089b37a4 d tx2_family_cpus.llvm.4989201762658955791
-ffffffc0089b37c8 d tsb_flush_fail_cpus.llvm.4989201762658955791
-ffffffc0089b37f0 D arm64_errata
-ffffffc0089b3e90 d ftr_ctr
-ffffffc0089b3f68 d compat_elf_hwcaps
-ffffffc0089b3fa8 d arm64_ftr_regs
-ffffffc0089b4218 d ftr_id_pfr0
-ffffffc0089b42c0 d ftr_id_pfr1
-ffffffc0089b4398 d ftr_id_dfr0
-ffffffc0089b4458 d ftr_id_mmfr0
-ffffffc0089b4530 d ftr_generic_32bits
-ffffffc0089b4608 d ftr_id_isar0
-ffffffc0089b46c8 d ftr_id_isar4
-ffffffc0089b47a0 d ftr_id_isar5
-ffffffc0089b4848 d ftr_id_mmfr4
-ffffffc0089b4920 d ftr_id_isar6
-ffffffc0089b49e0 d ftr_mvfr0
-ffffffc0089b4ab8 d ftr_mvfr1
-ffffffc0089b4b90 d ftr_mvfr2
-ffffffc0089b4bd8 d ftr_id_pfr2
-ffffffc0089b4c20 d ftr_id_dfr1
-ffffffc0089b4c50 d ftr_id_mmfr5
-ffffffc0089b4c80 d ftr_id_aa64pfr0
-ffffffc0089b4e00 d ftr_id_aa64pfr1
-ffffffc0089b4ea8 d ftr_id_aa64zfr0
-ffffffc0089b4f98 d ftr_id_aa64smfr0
-ffffffc0089b5058 d ftr_id_aa64dfr0
-ffffffc0089b5118 d ftr_raz
-ffffffc0089b5130 d ftr_id_aa64isar0
-ffffffc0089b5298 d ftr_id_aa64isar1
-ffffffc0089b5400 d ftr_id_aa64isar2
-ffffffc0089b5490 d ftr_id_aa64mmfr0
-ffffffc0089b55f8 d ftr_id_aa64mmfr1
-ffffffc0089b5730 d ftr_id_aa64mmfr2
-ffffffc0089b58b0 d ftr_zcr
-ffffffc0089b58e0 d ftr_smcr
-ffffffc0089b5910 d ftr_gmid
-ffffffc0089b5940 d ftr_dczid
-ffffffc0089b5988 d ftr_single32
-ffffffc0089b59b8 d arm64_features
-ffffffc0089b64b8 d dev_attr_aarch32_el0
-ffffffc0089b64d8 d arm64_elf_hwcaps
-ffffffc0089b7518 d ptr_auth_hwcap_addr_matches
-ffffffc0089b7618 d ptr_auth_hwcap_gen_matches
-ffffffc0089b7718 d kernel_alternatives
-ffffffc0089b7740 d str__ipi__trace_system_name
-ffffffc0089b7748 D smp_spin_table_ops
-ffffffc0089b77b0 d spectre_v4_params
-ffffffc0089b79a0 d armv8_pmu_of_device_ids
-ffffffc0089b8df0 d armv8_pmuv3_events_attr_group
-ffffffc0089b8e18 d armv8_pmuv3_format_attr_group
-ffffffc0089b8e40 d armv8_pmuv3_caps_attr_group
-ffffffc0089b8e68 d armv8_pmuv3_perf_map
-ffffffc0089b8e90 d armv8_pmuv3_perf_cache_map
-ffffffc0089b8f38 d armv8_a53_perf_cache_map
-ffffffc0089b8fe0 d armv8_a57_perf_cache_map
-ffffffc0089b9088 d armv8_a73_perf_cache_map
-ffffffc0089b9130 d armv8_thunder_perf_cache_map
-ffffffc0089b91d8 d armv8_vulcan_perf_cache_map
-ffffffc0089b94f0 d mld2_all_mcr
-ffffffc0089b9500 d kyber_batch_size
-ffffffc0089b9540 d new_state
-ffffffc0089b9560 d pcix_bus_speed
-ffffffc0089b95a0 d ext4_type_by_mode
-ffffffc0089b95a0 d fs_ftype_by_dtype
-ffffffc0089b95c0 d prio2band
-ffffffc0089b95d0 d kyber_depth
-ffffffc0089b9600 d __uuid_parse.si
-ffffffc0089b9620 d aarch64_insn_ldst_size
-ffffffc0089b9640 d ioprio_class_to_prio
-ffffffc0089b96b0 D kexec_file_loaders
-ffffffc0089b96c0 D kexec_image_ops
-ffffffc0089b96f8 d fault_info
-ffffffc0089b9d30 d str__task__trace_system_name
-ffffffc0089b9d38 D pidfd_fops
-ffffffc0089b9ec8 d vma_init.dummy_vm_ops
-ffffffc0089b9f38 d vma_init.dummy_vm_ops
-ffffffc0089b9fa8 D taint_flags
-ffffffc0089b9fe1 d __param_str_panic_print
-ffffffc0089b9fed d __param_str_pause_on_oops
-ffffffc0089b9ffb d __param_str_panic_on_warn
-ffffffc0089ba009 d __param_str_crash_kexec_post_notifiers
-ffffffc0089ba028 d clear_warn_once_fops
-ffffffc0089ba150 d str__cpuhp__trace_system_name
-ffffffc0089ba158 d cpuhp_cpu_root_attr_group
-ffffffc0089ba180 d cpuhp_cpu_attr_group
-ffffffc0089ba1a8 d cpuhp_smt_attr_group
-ffffffc0089ba1d0 D cpu_all_bits
-ffffffc0089ba1d8 D cpu_bit_bitmap
-ffffffc0089ba3f0 D softirq_to_name
-ffffffc0089ba448 d trace_raw_output_softirq.symbols
-ffffffc0089ba4f8 d resource_op
-ffffffc0089ba518 D sysctl_long_vals
-ffffffc0089ba533 d proc_wspace_sep
-ffffffc0089ba538 d ngroups_max
-ffffffc0089ba53c d cap_last_cap
-ffffffc0089ba540 d six_hundred_forty_kb
-ffffffc0089ba544 D sysctl_vals
-ffffffc0089ba574 D __cap_empty_set
-ffffffc0089ba66c d str__signal__trace_system_name
-ffffffc0089ba673 d sig_sicodes
-ffffffc0089ba810 d __param_str_disable_numa
-ffffffc0089ba827 d __param_str_power_efficient
-ffffffc0089ba841 d __param_str_debug_force_rr_cpu
-ffffffc0089ba85e d __param_str_watchdog_thresh
-ffffffc0089ba878 d wq_watchdog_thresh_ops
-ffffffc0089ba8a0 d string_get_size.divisor
-ffffffc0089ba8a8 d ref_rate
-ffffffc0089ba8b0 d resource_string.mem_spec
-ffffffc0089ba8b8 d evt_2_cmd
-ffffffc0089ba8b8 d evt_2_cmd
-ffffffc0089ba8c0 d ext4_filetype_table
-ffffffc0089ba8c0 d ext4_filetype_table
-ffffffc0089ba8c0 d fs_dtype_by_ftype
-ffffffc0089ba8c8 d bcj_x86.mask_to_bit_num
-ffffffc0089ba8d0 d resource_string.io_spec
-ffffffc0089ba8d8 d evt_2_cmd
-ffffffc0089ba8e0 d resource_string.bus_spec
-ffffffc0089ba8f8 d wq_sysfs_group
-ffffffc0089ba930 D param_ops_byte
-ffffffc0089ba950 D param_ops_short
-ffffffc0089ba970 D param_ops_ushort
-ffffffc0089ba990 D param_ops_int
-ffffffc0089ba9b0 D param_ops_uint
-ffffffc0089ba9d0 D param_ops_long
-ffffffc0089ba9f0 D param_ops_ulong
-ffffffc0089baa10 D param_ops_ullong
-ffffffc0089baa30 D param_ops_hexint
-ffffffc0089baa50 D param_ops_charp
-ffffffc0089baa70 D param_ops_bool
-ffffffc0089baa90 D param_ops_bool_enable_only
-ffffffc0089baab0 D param_ops_invbool
-ffffffc0089baad0 D param_ops_bint
-ffffffc0089baaf0 D param_array_ops
-ffffffc0089bab10 D param_ops_string
-ffffffc0089bab30 d module_sysfs_ops
-ffffffc0089bab40 d module_uevent_ops
-ffffffc0089bab58 d kthread.param
-ffffffc0089bab60 d kernel_attr_group
-ffffffc0089baba3 d reboot_cmd
-ffffffc0089babb0 d reboot_attr_group
-ffffffc0089bac24 d str__sched__trace_system_name
-ffffffc0089bac30 d trace_raw_output_sched_switch.__flags
-ffffffc0089bacc0 D sched_prio_to_weight
-ffffffc0089bad60 D sched_prio_to_wmult
-ffffffc0089baed8 d runnable_avg_yN_inv
-ffffffc0089bb060 D sched_feat_names
-ffffffc0089bb130 D sd_flag_debug
-ffffffc0089bb210 d sched_feat_fops
-ffffffc0089bb320 d sched_scaling_fops
-ffffffc0089bb430 d sched_debug_fops
-ffffffc0089bb540 d sched_debug_sops
-ffffffc0089bb560 d sd_flags_fops
-ffffffc0089bb670 d sched_tunable_scaling_names
-ffffffc0089bb688 d schedstat_sops
-ffffffc0089bb6a8 d psi_io_proc_ops
-ffffffc0089bb700 d psi_memory_proc_ops
-ffffffc0089bb758 d psi_cpu_proc_ops
-ffffffc0089bb7b0 d psi_irq_proc_ops
-ffffffc0089bb808 d str__lock__trace_system_name
-ffffffc0089bb810 d trace_raw_output_contention_begin.__flags
-ffffffc0089bb880 d suspend_stats_fops
-ffffffc0089bb990 d attr_group
-ffffffc0089bb9b8 d suspend_attr_group
-ffffffc0089bba20 D pm_labels
-ffffffc0089bba40 d mem_sleep_labels
-ffffffc0089bba60 d sysrq_poweroff_op
-ffffffc0089bbaac d str__printk__trace_system_name
-ffffffc0089bbab8 D kmsg_fops
-ffffffc0089bbbc8 d __param_str_ignore_loglevel
-ffffffc0089bbbdf d __param_str_time
-ffffffc0089bbbeb d __param_str_console_suspend
-ffffffc0089bbc02 d __param_str_console_no_auto_verbose
-ffffffc0089bbc21 d __param_str_always_kmsg_dump
-ffffffc0089bbc60 d ten_thousand
-ffffffc0089bbc68 d irq_group
-ffffffc0089bbc90 d __param_str_noirqdebug
-ffffffc0089bbca4 d __param_str_irqfixup
-ffffffc0089bbcb8 D irqchip_fwnode_ops
-ffffffc0089bbd68 D irq_domain_simple_ops
-ffffffc0089bbdb8 d irq_affinity_proc_ops
-ffffffc0089bbe10 d irq_affinity_list_proc_ops
-ffffffc0089bbe68 d default_affinity_proc_ops
-ffffffc0089bbec0 d msi_domain_ops
-ffffffc0089bbf10 d msi_irqs_group
-ffffffc0089bbf38 d str__rcu__trace_system_name
-ffffffc0089bbf3c d __param_str_rcu_expedited
-ffffffc0089bbf53 d __param_str_rcu_normal
-ffffffc0089bbf67 d __param_str_rcu_normal_after_boot
-ffffffc0089bbf86 d __param_str_rcu_cpu_stall_ftrace_dump
-ffffffc0089bbfa9 d __param_str_rcu_cpu_stall_suppress
-ffffffc0089bbfc9 d __param_str_rcu_cpu_stall_timeout
-ffffffc0089bbfe8 d __param_str_rcu_exp_cpu_stall_timeout
-ffffffc0089bc00b d __param_str_rcu_cpu_stall_suppress_at_boot
-ffffffc0089bc033 d __param_str_rcu_task_ipi_delay
-ffffffc0089bc04f d __param_str_rcu_task_stall_timeout
-ffffffc0089bc06f d __param_str_rcu_task_stall_info
-ffffffc0089bc08c d __param_str_rcu_task_stall_info_mult
-ffffffc0089bc0ae d __param_str_rcu_task_enqueue_lim
-ffffffc0089bc0cc d __param_str_rcu_task_contend_lim
-ffffffc0089bc0ea d __param_str_rcu_task_collapse_lim
-ffffffc0089bc110 d rcu_tasks_gp_state_names
-ffffffc0089bc170 d __param_str_exp_holdoff
-ffffffc0089bc185 d __param_str_counter_wrap_check
-ffffffc0089bc1a1 d __param_str_convert_to_big
-ffffffc0089bc1b9 d __param_str_big_cpu_lim
-ffffffc0089bc1ce d __param_str_small_contention_lim
-ffffffc0089bc1ec d __param_str_srcu_retry_check_delay
-ffffffc0089bc20c d __param_str_srcu_max_nodelay_phase
-ffffffc0089bc22c d __param_str_srcu_max_nodelay
-ffffffc0089bc248 d srcu_size_state_name
-ffffffc0089bc2dc d __param_str_dump_tree
-ffffffc0089bc2ee d __param_str_use_softirq
-ffffffc0089bc302 d __param_str_rcu_fanout_exact
-ffffffc0089bc31b d __param_str_rcu_fanout_leaf
-ffffffc0089bc333 d __param_str_kthread_prio
-ffffffc0089bc348 d __param_str_gp_preinit_delay
-ffffffc0089bc361 d __param_str_gp_init_delay
-ffffffc0089bc377 d __param_str_gp_cleanup_delay
-ffffffc0089bc390 d __param_str_rcu_min_cached_objs
-ffffffc0089bc3ac d __param_str_rcu_delay_page_cache_fill_msec
-ffffffc0089bc3d3 d __param_str_blimit
-ffffffc0089bc3e2 d __param_str_qhimark
-ffffffc0089bc3f2 d __param_str_qlowmark
-ffffffc0089bc403 d __param_str_qovld
-ffffffc0089bc411 d __param_str_rcu_divisor
-ffffffc0089bc425 d __param_str_rcu_resched_ns
-ffffffc0089bc43c d __param_str_jiffies_till_sched_qs
-ffffffc0089bc45a d __param_str_jiffies_to_sched_qs
-ffffffc0089bc476 d __param_str_jiffies_till_first_fqs
-ffffffc0089bc498 d first_fqs_jiffies_ops
-ffffffc0089bc4b8 d __param_str_jiffies_till_next_fqs
-ffffffc0089bc4d8 d next_fqs_jiffies_ops
-ffffffc0089bc4f8 d __param_str_rcu_kick_kthreads
-ffffffc0089bc512 d __param_str_sysrq_rcu
-ffffffc0089bc524 d __param_str_nocb_nobypass_lim_per_jiffy
-ffffffc0089bc548 d __param_str_rcu_nocb_gp_stride
-ffffffc0089bc568 d gp_state_names
-ffffffc0089bc5b0 d sysrq_rcudump_op
-ffffffc0089bc5d0 D dma_dummy_ops
-ffffffc0089bc698 d rmem_dma_ops
-ffffffc0089bc6b0 d fops_io_tlb_used
-ffffffc0089bc7c0 d rmem_swiotlb_ops
-ffffffc0089bc7d0 d profile_setup.schedstr
-ffffffc0089bc7d9 d profile_setup.sleepstr
-ffffffc0089bc7df d profile_setup.kvmstr
-ffffffc0089bc7e8 d prof_cpu_mask_proc_ops
-ffffffc0089bc840 d profile_proc_ops
-ffffffc0089bc8a0 d trace_raw_output_timer_start.__flags
-ffffffc0089bc8f0 d trace_raw_output_hrtimer_init.symbols
-ffffffc0089bc940 d trace_raw_output_hrtimer_init.symbols.39
-ffffffc0089bc9d0 d trace_raw_output_hrtimer_start.symbols
-ffffffc0089bca60 d trace_raw_output_tick_stop.symbols
-ffffffc0089bcad0 d hrtimer_clock_to_base_table
-ffffffc0089bcb10 d offsets
-ffffffc0089bcb30 d clocksource_group
-ffffffc0089bcb58 d timer_list_sops
-ffffffc0089bcb78 D alarm_clock
-ffffffc0089bcbf8 d trace_raw_output_alarmtimer_suspend.__flags
-ffffffc0089bcc48 d trace_raw_output_alarm_class.__flags
-ffffffc0089bcca8 d alarmtimer_pm_ops
-ffffffc0089bcd78 d posix_clocks
-ffffffc0089bcdd8 d clock_realtime
-ffffffc0089bce58 d clock_monotonic
-ffffffc0089bced8 d clock_monotonic_raw
-ffffffc0089bcf58 d clock_realtime_coarse
-ffffffc0089bcfd8 d clock_monotonic_coarse
-ffffffc0089bd058 d clock_boottime
-ffffffc0089bd0d8 d clock_tai
-ffffffc0089bd158 D clock_posix_cpu
-ffffffc0089bd1d8 D clock_process
-ffffffc0089bd258 D clock_thread
-ffffffc0089bd2d8 d posix_clock_file_operations
-ffffffc0089bd3e8 D clock_posix_dynamic
-ffffffc0089bd47c d __param_str_irqtime
-ffffffc0089bd488 d tk_debug_sleep_time_fops
-ffffffc0089bd638 D futex_q_init
-ffffffc0089bd6e0 d ZSTD_estimateCCtxSize_internal.srcSizeTiers
-ffffffc0089bd740 d ZSTD_fcs_fieldSize
-ffffffc0089bd780 d audit_ops
-ffffffc0089bd7a0 d ZSTD_overlapCopy8.dec64table
-ffffffc0089bd800 d nlmsg_tcpdiag_perms
-ffffffc0089bd820 d LZ4_decompress_generic.dec64table
-ffffffc0089bd840 d ZSTD_overlapCopy8.dec32table
-ffffffc0089bd860 d LZ4_decompress_generic.inc32table
-ffffffc0089bd880 d FSE_normalizeCount.rtbTable
-ffffffc0089bd8a0 d ZSTD_did_fieldSize
-ffffffc0089bd8c0 d bcj_ia64.branch_table
-ffffffc0089bd940 d kallsyms_proc_ops
-ffffffc0089bd998 d kallsyms_op
-ffffffc0089bd9b8 d config_gz_proc_ops
-ffffffc0089bda90 d audit_feature_names
-ffffffc0089be648 d audit_nfcfgs
-ffffffc0089be7a8 d audit_watch_fsnotify_ops
-ffffffc0089be7d8 d audit_mark_fsnotify_ops
-ffffffc0089be808 d audit_tree_ops
-ffffffc0089be838 d hung_task_timeout_max
-ffffffc0089be840 d sixty
-ffffffc0089bea58 d seccomp_notify_ops
-ffffffc0089beb6e d seccomp_actions_avail
-ffffffc0089bebb0 d seccomp_log_names
-ffffffc0089becd8 d trace_clocks
-ffffffc0089bedb0 D trace_min_max_fops
-ffffffc0089beec0 d print_func_help_header_irq.space
-ffffffc0089beed0 d trace_options_fops
-ffffffc0089befe0 d show_traces_fops
-ffffffc0089bf0f0 d set_tracer_fops
-ffffffc0089bf200 d tracing_cpumask_fops
-ffffffc0089bf310 d tracing_iter_fops
-ffffffc0089bf420 d tracing_fops
-ffffffc0089bf530 d tracing_pipe_fops
-ffffffc0089bf640 d tracing_entries_fops
-ffffffc0089bf750 d tracing_total_entries_fops
-ffffffc0089bf860 d tracing_free_buffer_fops
-ffffffc0089bf970 d tracing_mark_fops
-ffffffc0089bfa80 d tracing_mark_raw_fops
-ffffffc0089bfb90 d trace_clock_fops
-ffffffc0089bfca0 d rb_simple_fops
-ffffffc0089bfdb0 d trace_time_stamp_mode_fops
-ffffffc0089bfec0 d buffer_percent_fops
-ffffffc0089bffd0 d tracing_err_log_fops
-ffffffc0089c00e0 d show_traces_seq_ops
-ffffffc0089c0100 d tracer_seq_ops
-ffffffc0089c0120 d trace_options_core_fops
-ffffffc0089c0230 d tracing_err_log_seq_ops
-ffffffc0089c0250 d tracing_buffers_fops
-ffffffc0089c0360 d tracing_stats_fops
-ffffffc0089c0470 d buffer_pipe_buf_ops
-ffffffc0089c0490 d tracing_thresh_fops
-ffffffc0089c05a0 d tracing_readme_fops
-ffffffc0089c06b0 d tracing_saved_cmdlines_fops
-ffffffc0089c07c0 d tracing_saved_cmdlines_size_fops
-ffffffc0089c08d0 d tracing_saved_tgids_fops
-ffffffc0089c09e0 d readme_msg
-ffffffc0089c2e38 d tracing_saved_cmdlines_seq_ops
-ffffffc0089c2e58 d tracing_saved_tgids_seq_ops
-ffffffc0089c2e88 d mark
-ffffffc0089c2ee8 d tracing_stat_fops
-ffffffc0089c2ff8 d trace_stat_seq_ops
-ffffffc0089c3040 d ftrace_formats_fops
-ffffffc0089c3150 d show_format_seq_ops
-ffffffc0089c32b0 d ftrace_avail_fops
-ffffffc0089c33c0 d ftrace_enable_fops
-ffffffc0089c34d0 d ftrace_event_id_fops
-ffffffc0089c35e0 d ftrace_event_filter_fops
-ffffffc0089c36f0 d ftrace_event_format_fops
-ffffffc0089c3800 d ftrace_subsystem_filter_fops
-ffffffc0089c3910 d ftrace_system_enable_fops
-ffffffc0089c3a20 d trace_format_seq_ops
-ffffffc0089c3a40 d ftrace_set_event_fops
-ffffffc0089c3b50 d ftrace_tr_enable_fops
-ffffffc0089c3c60 d ftrace_set_event_pid_fops
-ffffffc0089c3d70 d ftrace_set_event_notrace_pid_fops
-ffffffc0089c3e80 d ftrace_show_header_fops
-ffffffc0089c3f90 d show_set_event_seq_ops
-ffffffc0089c3fb0 d show_set_pid_seq_ops
-ffffffc0089c3fd0 d show_set_no_pid_seq_ops
-ffffffc0089c3ff0 d show_event_seq_ops
-ffffffc0089c41b0 d event_triggers_seq_ops
-ffffffc0089c41d0 D event_trigger_fops
-ffffffc0089c4680 d synth_events_fops
-ffffffc0089c4790 d synth_events_seq_op
-ffffffc0089c4838 D event_hist_fops
-ffffffc0089c4948 d hist_trigger_elt_data_ops
-ffffffc0089c4968 d no_comm
-ffffffc0089c4988 d str__error_report__trace_system_name
-ffffffc0089c4998 d trace_raw_output_error_report_template.symbols
-ffffffc0089c49d8 d str__power__trace_system_name
-ffffffc0089c49e0 d trace_raw_output_device_pm_callback_start.symbols
-ffffffc0089c4a70 d trace_raw_output_pm_qos_update.symbols
-ffffffc0089c4ab0 d trace_raw_output_pm_qos_update_flags.symbols
-ffffffc0089c4af0 d trace_raw_output_dev_pm_qos_request.symbols
-ffffffc0089c4b20 d str__rpm__trace_system_name
-ffffffc0089c4b28 d dynamic_events_ops
-ffffffc0089c4c38 d dyn_event_seq_op
-ffffffc0089c4cca D print_type_format_u8
-ffffffc0089c4ccd D print_type_format_u16
-ffffffc0089c4cd0 D print_type_format_u32
-ffffffc0089c4cd3 D print_type_format_u64
-ffffffc0089c4cd7 D print_type_format_s8
-ffffffc0089c4cda D print_type_format_s16
-ffffffc0089c4cdd D print_type_format_s32
-ffffffc0089c4ce0 D print_type_format_s64
-ffffffc0089c4ce4 D print_type_format_x8
-ffffffc0089c4ce9 D print_type_format_x16
-ffffffc0089c4cee D print_type_format_x32
-ffffffc0089c4cf3 D print_type_format_x64
-ffffffc0089c4cf9 D print_type_format_symbol
-ffffffc0089c4cfd D print_type_format_string
-ffffffc0089c4d08 d probe_fetch_types
-ffffffc0089c5108 d uprobe_events_ops
-ffffffc0089c5218 d uprobe_profile_ops
-ffffffc0089c5328 d probes_seq_op
-ffffffc0089c5348 d profile_seq_op
-ffffffc0089c53b0 d bpf_opcode_in_insntable.public_insntable
-ffffffc0089c54b0 d interpreters_args
-ffffffc0089c5530 D bpf_tail_call_proto
-ffffffc0089c5590 d str__xdp__trace_system_name
-ffffffc0089c5598 V bpf_map_lookup_elem_proto
-ffffffc0089c55f8 V bpf_map_update_elem_proto
-ffffffc0089c5658 V bpf_map_delete_elem_proto
-ffffffc0089c56b8 V bpf_map_push_elem_proto
-ffffffc0089c5718 V bpf_map_pop_elem_proto
-ffffffc0089c5778 V bpf_map_peek_elem_proto
-ffffffc0089c57d8 V bpf_map_lookup_percpu_elem_proto
-ffffffc0089c5838 V bpf_spin_lock_proto
-ffffffc0089c5898 V bpf_spin_unlock_proto
-ffffffc0089c58f8 V bpf_jiffies64_proto
-ffffffc0089c5958 V bpf_get_prandom_u32_proto
-ffffffc0089c59b8 V bpf_get_smp_processor_id_proto
-ffffffc0089c5a18 V bpf_get_numa_node_id_proto
-ffffffc0089c5a78 V bpf_ktime_get_ns_proto
-ffffffc0089c5ad8 V bpf_ktime_get_boot_ns_proto
-ffffffc0089c5b38 V bpf_ktime_get_coarse_ns_proto
-ffffffc0089c5b98 V bpf_ktime_get_tai_ns_proto
-ffffffc0089c5bf8 V bpf_get_current_pid_tgid_proto
-ffffffc0089c5c58 V bpf_get_current_uid_gid_proto
-ffffffc0089c5cb8 V bpf_get_current_comm_proto
-ffffffc0089c5d18 V bpf_get_current_cgroup_id_proto
-ffffffc0089c5d78 V bpf_get_current_ancestor_cgroup_id_proto
-ffffffc0089c5dd8 V bpf_get_local_storage_proto
-ffffffc0089c5e38 V bpf_get_ns_current_pid_tgid_proto
-ffffffc0089c5e98 V bpf_snprintf_btf_proto
-ffffffc0089c5ef8 V bpf_seq_printf_btf_proto
-ffffffc0089c5f58 V bpf_set_retval_proto
-ffffffc0089c5fb8 V bpf_get_retval_proto
-ffffffc0089c6018 d ___bpf_prog_run.jumptable
-ffffffc0089c6818 d interpreters
-ffffffc0089c6898 d trace_raw_output_xdp_exception.symbols
-ffffffc0089c6908 d trace_raw_output_xdp_bulk_tx.symbols
-ffffffc0089c6978 d trace_raw_output_xdp_redirect_template.symbols
-ffffffc0089c69e8 d trace_raw_output_xdp_cpumap_kthread.symbols
-ffffffc0089c6a58 d trace_raw_output_xdp_cpumap_enqueue.symbols
-ffffffc0089c6ac8 d trace_raw_output_xdp_devmap_xmit.symbols
-ffffffc0089c6b38 d trace_raw_output_mem_disconnect.symbols
-ffffffc0089c6b98 d trace_raw_output_mem_connect.symbols
-ffffffc0089c6bf8 d trace_raw_output_mem_return_failed.symbols
-ffffffc0089c6ca0 d perf_fops
-ffffffc0089c6db0 d pmu_dev_group
-ffffffc0089c6dd8 d perf_event_parse_addr_filter.actions
-ffffffc0089c6e10 d if_tokens
-ffffffc0089c6e90 d perf_mmap_vmops
-ffffffc0089c6f00 d task_bps_ht_params
-ffffffc0089c6f2d d str__filemap__trace_system_name
-ffffffc0089c6f38 D generic_file_vm_ops
-ffffffc0089c6fa8 d str__oom__trace_system_name
-ffffffc0089c6fb0 d trace_raw_output_reclaim_retry_zone.symbols
-ffffffc0089c7000 d trace_raw_output_compact_retry.symbols
-ffffffc0089c7040 d trace_raw_output_compact_retry.symbols.59
-ffffffc0089c7080 d oom_constraint_text
-ffffffc0089c70c0 d dirty_bytes_min
-ffffffc0089c70c8 d str__pagemap__trace_system_name
-ffffffc0089c70d0 d str__vmscan__trace_system_name
-ffffffc0089c70d8 d trace_raw_output_mm_vmscan_wakeup_kswapd.__flags
-ffffffc0089c7358 d trace_raw_output_mm_vmscan_direct_reclaim_begin_template.__flags
-ffffffc0089c75d8 d trace_raw_output_mm_shrink_slab_start.__flags
-ffffffc0089c7858 d trace_raw_output_mm_vmscan_lru_isolate.symbols
-ffffffc0089c78b8 d trace_raw_output_mm_vmscan_write_folio.__flags
-ffffffc0089c7918 d trace_raw_output_mm_vmscan_lru_shrink_inactive.__flags
-ffffffc0089c7978 d trace_raw_output_mm_vmscan_lru_shrink_active.__flags
-ffffffc0089c79d8 d trace_raw_output_mm_vmscan_node_reclaim_begin.__flags
-ffffffc0089c7c58 d trace_raw_output_mm_vmscan_throttled.__flags
-ffffffc0089c7ca8 d lru_gen_rw_fops
-ffffffc0089c7db8 d lru_gen_ro_fops
-ffffffc0089c7ec8 d walk_mm.mm_walk_ops
-ffffffc0089c7f18 d lru_gen_seq_ops
-ffffffc0089c7f70 d shmem_vm_ops.llvm.5160499398316230129
-ffffffc0089c7fe0 d shmem_param_enums_huge
-ffffffc0089c8030 D shmem_fs_parameters
-ffffffc0089c8190 d shmem_fs_context_ops
-ffffffc0089c81c0 d shmem_export_ops
-ffffffc0089c8218 d shmem_ops
-ffffffc0089c8300 d shmem_special_inode_operations
-ffffffc0089c83c0 d shmem_inode_operations
-ffffffc0089c8480 d shmem_file_operations
-ffffffc0089c85c0 d shmem_dir_inode_operations
-ffffffc0089c8680 d shmem_short_symlink_operations
-ffffffc0089c8740 d shmem_symlink_inode_operations
-ffffffc0089c8800 D shmem_aops
-ffffffc0089c88a0 D vmstat_text
-ffffffc0089c8d38 d fragmentation_op
-ffffffc0089c8d58 d pagetypeinfo_op
-ffffffc0089c8d78 d vmstat_op
-ffffffc0089c8d98 d zoneinfo_op
-ffffffc0089c8db8 d unusable_fops
-ffffffc0089c8ec8 d extfrag_fops
-ffffffc0089c8fd8 d unusable_sops
-ffffffc0089c8ff8 d extfrag_sops
-ffffffc0089c9018 d bdi_dev_group
-ffffffc0089c9040 d bdi_debug_stats_fops
-ffffffc0089c9150 d str__percpu__trace_system_name
-ffffffc0089c9158 d trace_raw_output_percpu_alloc_percpu.__flags
-ffffffc0089c93d8 d str__kmem__trace_system_name
-ffffffc0089c93e0 d trace_raw_output_kmem_cache_alloc.__flags
-ffffffc0089c9660 d trace_raw_output_kmalloc.__flags
-ffffffc0089c98e0 d trace_raw_output_mm_page_alloc.__flags
-ffffffc0089c9b60 d trace_raw_output_rss_stat.symbols
-ffffffc0089c9bb0 d slabinfo_proc_ops
-ffffffc0089c9c08 d slabinfo_op
-ffffffc0089c9c28 d str__compaction__trace_system_name
-ffffffc0089c9c38 d trace_raw_output_mm_compaction_end.symbols
-ffffffc0089c9cd8 d trace_raw_output_mm_compaction_try_to_compact_pages.__flags
-ffffffc0089c9f58 d trace_raw_output_mm_compaction_suitable_template.symbols
-ffffffc0089c9fa8 d trace_raw_output_mm_compaction_suitable_template.symbols.106
-ffffffc0089ca048 d trace_raw_output_mm_compaction_defer_template.symbols
-ffffffc0089ca098 d trace_raw_output_kcompactd_wake_template.symbols
-ffffffc0089ca100 D pageflag_names
-ffffffc0089ca290 D gfpflag_names
-ffffffc0089ca4e0 D vmaflag_names
-ffffffc0089ca6f8 d str__mmap_lock__trace_system_name
-ffffffc0089ca708 d fault_around_bytes_fops
-ffffffc0089ca818 d mincore_walk_ops
-ffffffc0089ca868 d mlock_vma_pages_range.mlock_walk_ops
-ffffffc0089ca8b8 d str__mmap__trace_system_name
-ffffffc0089ca8c0 D mmap_rnd_bits_min
-ffffffc0089ca8c4 D mmap_rnd_bits_max
-ffffffc0089ca8c8 d __param_str_ignore_rlimit_data
-ffffffc0089ca8e0 d special_mapping_vmops.llvm.14341741251261317029
-ffffffc0089ca950 d legacy_special_mapping_vmops
-ffffffc0089ca9c0 d str__tlb__trace_system_name
-ffffffc0089ca9c4 d str__migrate__trace_system_name
-ffffffc0089ca9d0 d trace_raw_output_tlb_flush.symbols
-ffffffc0089caa30 d trace_raw_output_mm_migrate_pages.symbols
-ffffffc0089caa70 d trace_raw_output_mm_migrate_pages.symbols.37
-ffffffc0089cab10 d trace_raw_output_mm_migrate_pages_start.symbols
-ffffffc0089cab50 d trace_raw_output_mm_migrate_pages_start.symbols.48
-ffffffc0089cac10 d vmalloc_op
-ffffffc0089cac50 D compound_page_dtors
-ffffffc0089cac68 d fallbacks
-ffffffc0089caca8 d zone_names
-ffffffc0089cacc8 D migratetype_names
-ffffffc0089cacf0 d __param_str_shuffle
-ffffffc0089cad08 d shuffle_param_ops
-ffffffc0089cad28 d memblock_debug_fops
-ffffffc0089cae38 d __param_str_memmap_on_memory
-ffffffc0089cae58 d __param_str_online_policy
-ffffffc0089cae78 d online_policy_ops
-ffffffc0089cae98 d __param_str_auto_movable_ratio
-ffffffc0089caec0 d online_policy_to_str
-ffffffc0089caf88 d swapin_walk_ops
-ffffffc0089cafd8 d cold_walk_ops
-ffffffc0089cb028 d madvise_free_walk_ops
-ffffffc0089cb078 d swap_aops
-ffffffc0089cb118 d swap_attr_group
-ffffffc0089cb140 d Bad_file
-ffffffc0089cb155 d Bad_offset
-ffffffc0089cb16c d Unused_offset
-ffffffc0089cb186 d Unused_file
-ffffffc0089cb1a0 d swaps_proc_ops
-ffffffc0089cb1f8 d swaps_op
-ffffffc0089cb288 d slab_attr_group
-ffffffc0089cb2b0 d slab_sysfs_ops
-ffffffc0089cb2c0 d slab_debugfs_fops
-ffffffc0089cb3d0 d slab_debugfs_sops
-ffffffc0089cb3f0 d str__thp__trace_system_name
-ffffffc0089cb3f8 d hugepage_attr_group
-ffffffc0089cb420 d split_huge_pages_fops
-ffffffc0089cb530 d str__huge_memory__trace_system_name
-ffffffc0089cb540 d trace_raw_output_mm_khugepaged_scan_pmd.symbols
-ffffffc0089cb720 d trace_raw_output_mm_collapse_huge_page.symbols
-ffffffc0089cb900 d trace_raw_output_mm_collapse_huge_page_isolate.symbols
-ffffffc0089cbae0 d trace_raw_output_mm_khugepaged_scan_file.symbols
-ffffffc0089cbcf0 d proc_page_owner_operations
-ffffffc0089cbe00 d str__page_isolation__trace_system_name
-ffffffc0089cbe10 d zsmalloc_mops
-ffffffc0089cbe28 D balloon_mops
-ffffffc0089cbe40 d __param_str_enable
-ffffffc0089cbe58 d secretmem_vm_ops.llvm.5214621307697465951
-ffffffc0089cbec8 D secretmem_aops
-ffffffc0089cbf68 d secretmem_fops
-ffffffc0089cc080 d secretmem_iops
-ffffffc0089cc140 d __param_str_page_reporting_order
-ffffffc0089cc168 d do_dentry_open.empty_fops
-ffffffc0089cc280 D generic_ro_fops
-ffffffc0089cc3c0 d alloc_file_pseudo.anon_ops
-ffffffc0089cc440 d alloc_super.default_op
-ffffffc0089cc510 D def_chr_fops
-ffffffc0089cc638 D pipefifo_fops
-ffffffc0089cc748 d anon_pipe_buf_ops
-ffffffc0089cc768 d pipefs_ops
-ffffffc0089cc840 d pipefs_dentry_operations
-ffffffc0089cc900 D page_symlink_inode_operations
-ffffffc0089cca9c d band_table
-ffffffc0089ccb78 D empty_name
-ffffffc0089ccb88 D slash_name
-ffffffc0089ccb98 D dotdot_name
-ffffffc0089ccba8 D empty_aops
-ffffffc0089ccc80 d inode_init_always.empty_iops
-ffffffc0089ccd40 d inode_init_always.no_open_fops
-ffffffc0089cce80 d bad_inode_ops.llvm.2577810683248593255
-ffffffc0089ccf40 d bad_file_ops
-ffffffc0089cd050 D mounts_op
-ffffffc0089cd070 D mntns_operations
-ffffffc0089cd0c0 D simple_dentry_operations
-ffffffc0089cd140 D simple_dir_operations
-ffffffc0089cd280 D simple_dir_inode_operations
-ffffffc0089cd340 d pseudo_fs_context_ops
-ffffffc0089cd370 D ram_aops
-ffffffc0089cd410 d simple_super_operations
-ffffffc0089cd4c0 d alloc_anon_inode.anon_aops
-ffffffc0089cd580 D simple_symlink_inode_operations
-ffffffc0089cd640 d empty_dir_inode_operations
-ffffffc0089cd700 d empty_dir_operations
-ffffffc0089cd840 d generic_ci_dentry_ops
-ffffffc0089cd8c0 d str__writeback__trace_system_name
-ffffffc0089cd8d0 d trace_raw_output_writeback_dirty_inode_template.__flags
-ffffffc0089cd980 d trace_raw_output_writeback_dirty_inode_template.__flags.30
-ffffffc0089cda30 d trace_raw_output_writeback_work_class.symbols
-ffffffc0089cdac0 d trace_raw_output_writeback_queue_io.symbols
-ffffffc0089cdb50 d trace_raw_output_writeback_sb_inodes_requeue.__flags
-ffffffc0089cdc00 d trace_raw_output_writeback_single_inode_template.__flags
-ffffffc0089cdcb0 d trace_raw_output_writeback_inode_template.__flags
-ffffffc0089cdd60 D nosteal_pipe_buf_ops
-ffffffc0089cdd80 d user_page_pipe_buf_ops
-ffffffc0089cdda0 D default_pipe_buf_ops
-ffffffc0089cddc0 D page_cache_pipe_buf_ops
-ffffffc0089cde00 D ns_dentry_operations
-ffffffc0089cde80 d ns_file_operations.llvm.8731451816729554399
-ffffffc0089cdf90 d nsfs_ops
-ffffffc0089ce040 D legacy_fs_context_ops
-ffffffc0089ce070 d common_set_sb_flag
-ffffffc0089ce0d0 d common_clear_sb_flag
-ffffffc0089ce120 d bool_names
-ffffffc0089ce1a0 D fscontext_fops
-ffffffc0089ce2c0 D proc_mounts_operations
-ffffffc0089ce3d0 D proc_mountinfo_operations
-ffffffc0089ce4e0 D proc_mountstats_operations
-ffffffc0089ce658 D inotify_fsnotify_ops
-ffffffc0089ce688 d inotify_fops
-ffffffc0089ce798 d eventpoll_fops
-ffffffc0089ce8a8 d path_limits
-ffffffc0089ce8c0 d anon_inodefs_dentry_operations
-ffffffc0089ce970 d signalfd_fops
-ffffffc0089cea80 d timerfd_fops
-ffffffc0089ceb90 d eventfd_fops
-ffffffc0089ceca0 d userfaultfd_fops
-ffffffc0089cedb0 d userfaultfd_dev_fops
-ffffffc0089ceee8 d aio_ctx_aops
-ffffffc0089cef88 d aio_ring_fops
-ffffffc0089cf098 d aio_ring_vm_ops
-ffffffc0089cf108 d str__filelock__trace_system_name
-ffffffc0089cf118 d trace_raw_output_locks_get_lock_context.symbols
-ffffffc0089cf158 d trace_raw_output_filelock_lock.__flags
-ffffffc0089cf218 d trace_raw_output_filelock_lock.symbols
-ffffffc0089cf258 d trace_raw_output_filelock_lease.__flags
-ffffffc0089cf318 d trace_raw_output_filelock_lease.symbols
-ffffffc0089cf358 d trace_raw_output_generic_add_lease.__flags
-ffffffc0089cf418 d trace_raw_output_generic_add_lease.symbols
-ffffffc0089cf458 d trace_raw_output_leases_conflict.__flags
-ffffffc0089cf518 d trace_raw_output_leases_conflict.symbols
-ffffffc0089cf558 d trace_raw_output_leases_conflict.__flags.60
-ffffffc0089cf618 d trace_raw_output_leases_conflict.symbols.61
-ffffffc0089cf658 d lease_manager_ops
-ffffffc0089cf6b0 d locks_seq_operations
-ffffffc0089cf6e0 d bm_context_ops
-ffffffc0089cf710 d bm_fill_super.bm_files
-ffffffc0089cf788 d bm_status_operations
-ffffffc0089cf898 d bm_register_operations
-ffffffc0089cf9a8 d s_ops
-ffffffc0089cfa58 d bm_entry_operations
-ffffffc0089cfcc8 D posix_acl_access_xattr_handler
-ffffffc0089cfcf8 D posix_acl_default_xattr_handler
-ffffffc0089cff00 d str__iomap__trace_system_name
-ffffffc0089cff08 d trace_raw_output_iomap_class.symbols
-ffffffc0089cff68 d trace_raw_output_iomap_class.__flags
-ffffffc0089cffd8 d trace_raw_output_iomap_iter.__flags
-ffffffc0089d00a8 D proc_pid_maps_operations
-ffffffc0089d01b8 D proc_pid_smaps_operations
-ffffffc0089d02c8 D proc_pid_smaps_rollup_operations
-ffffffc0089d03d8 D proc_clear_refs_operations
-ffffffc0089d04e8 D proc_pagemap_operations
-ffffffc0089d05f8 d proc_pid_maps_op
-ffffffc0089d0618 d proc_pid_smaps_op
-ffffffc0089d0638 d smaps_walk_ops
-ffffffc0089d0688 d smaps_shmem_walk_ops
-ffffffc0089d06d8 d show_smap_vma_flags.mnemonics
-ffffffc0089d0758 d clear_refs_walk_ops
-ffffffc0089d07a8 d pagemap_ops
-ffffffc0089d0810 D proc_sops
-ffffffc0089d08c0 d proc_iter_file_ops
-ffffffc0089d09d0 d proc_reg_file_ops
-ffffffc0089d0b00 D proc_link_inode_operations
-ffffffc0089d0bc0 d proc_root_inode_operations
-ffffffc0089d0c80 d proc_root_operations
-ffffffc0089d0d90 d proc_fs_parameters
-ffffffc0089d0e10 d proc_fs_context_ops
-ffffffc0089d0e80 D proc_pid_link_inode_operations
-ffffffc0089d0f40 d proc_def_inode_operations
-ffffffc0089d1000 D pid_dentry_operations
-ffffffc0089d1080 d proc_tgid_base_operations
-ffffffc0089d1190 d tid_base_stuff
-ffffffc0089d1708 d tgid_base_stuff
-ffffffc0089d1d80 d proc_tgid_base_inode_operations
-ffffffc0089d1e40 d proc_environ_operations
-ffffffc0089d1f50 d proc_auxv_operations
-ffffffc0089d2060 d proc_single_file_operations
-ffffffc0089d2170 d proc_pid_sched_operations
-ffffffc0089d2280 d proc_tid_comm_inode_operations
-ffffffc0089d2340 d proc_pid_set_comm_operations
-ffffffc0089d2450 d proc_pid_cmdline_ops
-ffffffc0089d2560 d proc_mem_operations
-ffffffc0089d2680 d proc_attr_dir_inode_operations
-ffffffc0089d2740 d proc_attr_dir_operations
-ffffffc0089d2850 d proc_oom_adj_operations
-ffffffc0089d2960 d proc_oom_score_adj_operations
-ffffffc0089d2a70 d proc_loginuid_operations
-ffffffc0089d2b80 d proc_sessionid_operations
-ffffffc0089d2c90 d lnames
-ffffffc0089d2d90 d attr_dir_stuff
-ffffffc0089d2e80 d proc_pid_attr_operations
-ffffffc0089d2fc0 d proc_task_inode_operations
-ffffffc0089d3080 d proc_task_operations
-ffffffc0089d31c0 d proc_map_files_inode_operations
-ffffffc0089d3280 d proc_map_files_operations
-ffffffc0089d3390 d proc_coredump_filter_operations
-ffffffc0089d34a0 d proc_pid_set_timerslack_ns_operations
-ffffffc0089d35c0 d proc_tid_base_inode_operations
-ffffffc0089d3680 d proc_tid_base_operations
-ffffffc0089d37c0 d proc_map_files_link_inode_operations
-ffffffc0089d3880 d tid_map_files_dentry_operations
-ffffffc0089d3900 D proc_net_dentry_ops
-ffffffc0089d3980 d proc_dir_operations
-ffffffc0089d3ac0 d proc_dir_inode_operations
-ffffffc0089d3b80 d proc_file_inode_operations
-ffffffc0089d3c40 d proc_seq_ops
-ffffffc0089d3c98 d proc_single_ops
-ffffffc0089d3d00 d proc_misc_dentry_ops
-ffffffc0089d3e80 d task_state_array
-ffffffc0089d3f00 d tid_fd_dentry_operations
-ffffffc0089d3f80 d proc_fdinfo_file_operations
-ffffffc0089d40c0 D proc_fd_inode_operations
-ffffffc0089d4180 D proc_fd_operations
-ffffffc0089d42c0 D proc_fdinfo_inode_operations
-ffffffc0089d4380 D proc_fdinfo_operations
-ffffffc0089d4498 d tty_drivers_op
-ffffffc0089d44b8 d consoles_op
-ffffffc0089d44d8 d cpuinfo_proc_ops
-ffffffc0089d4530 d devinfo_ops
-ffffffc0089d4550 d int_seq_ops
-ffffffc0089d4570 d stat_proc_ops
-ffffffc0089d45c8 d show_irq_gap.zeros
-ffffffc0089d4600 d proc_ns_link_inode_operations
-ffffffc0089d46c0 D proc_ns_dir_inode_operations
-ffffffc0089d4780 D proc_ns_dir_operations
-ffffffc0089d48c0 d proc_self_inode_operations
-ffffffc0089d4980 d proc_thread_self_inode_operations
-ffffffc0089d4a40 d register_sysctl_table.null_path.llvm.5398338340430645451
-ffffffc0089d4a80 d proc_sys_dir_operations
-ffffffc0089d4b40 d proc_sys_dir_file_operations
-ffffffc0089d4c80 d proc_sys_dentry_operations
-ffffffc0089d4d00 d proc_sys_inode_operations
-ffffffc0089d4dc0 d proc_sys_file_operations
-ffffffc0089d4ed0 d sysctl_aliases
-ffffffc0089d4f30 d proc_net_seq_ops
-ffffffc0089d4f88 d proc_net_single_ops
-ffffffc0089d5000 D proc_net_inode_operations
-ffffffc0089d50c0 D proc_net_operations
-ffffffc0089d51d0 d kmsg_proc_ops
-ffffffc0089d5228 d kpagecount_proc_ops
-ffffffc0089d5280 d kpageflags_proc_ops
-ffffffc0089d52d8 d kernfs_export_ops
-ffffffc0089d5330 D kernfs_sops
-ffffffc0089d53e0 d kernfs_trusted_xattr_handler
-ffffffc0089d5410 d kernfs_security_xattr_handler
-ffffffc0089d5440 d kernfs_user_xattr_handler
-ffffffc0089d5480 d kernfs_iops
-ffffffc0089d5540 D kernfs_dir_iops
-ffffffc0089d5600 D kernfs_dir_fops
-ffffffc0089d5740 D kernfs_dops
-ffffffc0089d57c0 D kernfs_file_fops
-ffffffc0089d58d0 d kernfs_vm_ops
-ffffffc0089d5940 d kernfs_seq_ops
-ffffffc0089d5980 D kernfs_symlink_iops
-ffffffc0089d5a40 d sysfs_prealloc_kfops_rw
-ffffffc0089d5aa0 d sysfs_prealloc_kfops_ro
-ffffffc0089d5b00 d sysfs_prealloc_kfops_wo
-ffffffc0089d5b60 d sysfs_file_kfops_rw
-ffffffc0089d5bc0 d sysfs_file_kfops_ro
-ffffffc0089d5c20 d sysfs_file_kfops_wo
-ffffffc0089d5c80 d sysfs_file_kfops_empty
-ffffffc0089d5ce0 d sysfs_bin_kfops_mmap
-ffffffc0089d5d40 d sysfs_bin_kfops_rw
-ffffffc0089d5da0 d sysfs_bin_kfops_ro
-ffffffc0089d5e00 d sysfs_bin_kfops_wo
-ffffffc0089d5e60 d sysfs_fs_context_ops
-ffffffc0089d5ea8 d devpts_sops
-ffffffc0089d5f58 d tokens
-ffffffc0089d5fc8 d tokens
-ffffffc0089d6008 d tokens
-ffffffc0089d6048 d tokens
-ffffffc0089d60c0 D ext4_dir_operations
-ffffffc0089d61d0 d ext4_iomap_xattr_ops
-ffffffc0089d61e0 d ext4_dio_write_ops
-ffffffc0089d61f8 d ext4_file_vm_ops
-ffffffc0089d6280 D ext4_file_inode_operations
-ffffffc0089d6340 D ext4_file_operations
-ffffffc0089d64f0 d ext4_journalled_aops
-ffffffc0089d6590 d ext4_da_aops
-ffffffc0089d6630 d ext4_aops
-ffffffc0089d66d0 D ext4_iomap_report_ops
-ffffffc0089d66e0 D ext4_iomap_ops
-ffffffc0089d66f0 D ext4_iomap_overwrite_ops
-ffffffc0089d6790 D ext4_mb_seq_groups_ops
-ffffffc0089d67b0 D ext4_mb_seq_structs_summary_ops
-ffffffc0089d67d0 d ext4_groupinfo_slab_names
-ffffffc0089d6840 D ext4_dir_inode_operations
-ffffffc0089d6900 D ext4_special_inode_operations
-ffffffc0089d6b50 d trace_raw_output_ext4_da_write_pages_extent.__flags
-ffffffc0089d6ba0 d trace_raw_output_ext4_request_blocks.__flags
-ffffffc0089d6ca0 d trace_raw_output_ext4_allocate_blocks.__flags
-ffffffc0089d6da0 d trace_raw_output_ext4_free_blocks.__flags
-ffffffc0089d6e10 d trace_raw_output_ext4_mballoc_alloc.__flags
-ffffffc0089d6f10 d trace_raw_output_ext4__fallocate_mode.__flags
-ffffffc0089d6f70 d trace_raw_output_ext4__map_blocks_enter.__flags
-ffffffc0089d7030 d trace_raw_output_ext4__map_blocks_exit.__flags
-ffffffc0089d70f0 d trace_raw_output_ext4__map_blocks_exit.__flags.252
-ffffffc0089d7140 d trace_raw_output_ext4_ext_handle_unwritten_extents.__flags
-ffffffc0089d7200 d trace_raw_output_ext4_get_implied_cluster_alloc_exit.__flags
-ffffffc0089d7250 d trace_raw_output_ext4__es_extent.__flags
-ffffffc0089d72b0 d trace_raw_output_ext4_es_find_extent_range_exit.__flags
-ffffffc0089d7310 d trace_raw_output_ext4_es_lookup_extent_exit.__flags
-ffffffc0089d7370 d trace_raw_output_ext4_es_insert_delayed_block.__flags
-ffffffc0089d73d0 d trace_raw_output_ext4_fc_stats.symbols
-ffffffc0089d7480 d trace_raw_output_ext4_fc_stats.symbols.355
-ffffffc0089d7530 d trace_raw_output_ext4_fc_stats.symbols.356
-ffffffc0089d75e0 d trace_raw_output_ext4_fc_stats.symbols.357
-ffffffc0089d7690 d trace_raw_output_ext4_fc_stats.symbols.358
-ffffffc0089d7740 d trace_raw_output_ext4_fc_stats.symbols.359
-ffffffc0089d77f0 d trace_raw_output_ext4_fc_stats.symbols.360
-ffffffc0089d78a0 d trace_raw_output_ext4_fc_stats.symbols.361
-ffffffc0089d7950 d trace_raw_output_ext4_fc_stats.symbols.362
-ffffffc0089d7a00 d trace_raw_output_ext4_fc_stats.symbols.363
-ffffffc0089d7ab0 d err_translation
-ffffffc0089d7b30 d ext4_mount_opts
-ffffffc0089d7d50 d ext4_param_specs
-ffffffc0089d87b0 d ext4_param_errors
-ffffffc0089d87f0 d ext4_param_data
-ffffffc0089d8830 d ext4_param_data_err
-ffffffc0089d8860 d ext4_param_jqfmt
-ffffffc0089d88a0 d ext4_param_dax
-ffffffc0089d88e0 d ext4_context_ops
-ffffffc0089d8910 d ext4_sops
-ffffffc0089d89c0 d ext4_export_ops
-ffffffc0089d8a40 D ext4_encrypted_symlink_inode_operations
-ffffffc0089d8b00 D ext4_symlink_inode_operations
-ffffffc0089d8bc0 D ext4_fast_symlink_inode_operations
-ffffffc0089d8ccd d proc_dirname
-ffffffc0089d8cd8 d ext4_attr_ops
-ffffffc0089d8ce8 d ext4_group
-ffffffc0089d8d10 d ext4_feat_group
-ffffffc0089d8d38 d ext4_xattr_handler_map
-ffffffc0089d8d90 D ext4_xattr_hurd_handler
-ffffffc0089d8dc0 D ext4_xattr_trusted_handler
-ffffffc0089d8df0 D ext4_xattr_user_handler
-ffffffc0089d8e68 D ext4_xattr_security_handler
-ffffffc0089d8ec0 d str__jbd2__trace_system_name
-ffffffc0089d8ec8 d jbd2_info_proc_ops
-ffffffc0089d8f20 d jbd2_seq_info_ops
-ffffffc0089d8f40 d jbd2_slab_names
-ffffffc0089d8f80 d ramfs_dir_inode_operations
-ffffffc0089d9040 D ramfs_fs_parameters
-ffffffc0089d9080 d ramfs_context_ops
-ffffffc0089d90b0 d ramfs_ops
-ffffffc0089d9160 D ramfs_file_operations
-ffffffc0089d9280 D ramfs_file_inode_operations
-ffffffc0089d9340 d utf8agetab
-ffffffc0089d939c d utf8nfdicfdata
-ffffffc0089d9454 d utf8nfdidata
-ffffffc0089d950c d utf8data
-ffffffc0089e9028 D fuse_dev_fiq_ops
-ffffffc0089e9048 D fuse_dev_operations
-ffffffc0089e9158 d __param_str_allow_sys_admin_access
-ffffffc0089e9180 d fuse_common_inode_operations.llvm.8207005740200979764
-ffffffc0089e9240 d fuse_dir_inode_operations
-ffffffc0089e9300 d fuse_dir_operations
-ffffffc0089e9440 d fuse_symlink_inode_operations
-ffffffc0089e9500 d fuse_symlink_aops
-ffffffc0089e95c0 D fuse_root_dentry_operations
-ffffffc0089e9640 D fuse_dentry_operations
-ffffffc0089e96c0 d fuse_file_operations
-ffffffc0089e97d0 d fuse_file_aops
-ffffffc0089e9870 d fuse_file_vm_ops
-ffffffc0089e9929 d __param_str_max_user_bgreq
-ffffffc0089e9940 d __param_ops_max_user_bgreq
-ffffffc0089e9960 d __param_str_max_user_congthresh
-ffffffc0089e9980 d __param_ops_max_user_congthresh
-ffffffc0089e99a0 d fuse_context_submount_ops
-ffffffc0089e99d0 d fuse_super_operations
-ffffffc0089e9a80 d fuse_export_operations
-ffffffc0089e9af8 d bpf_features_group
-ffffffc0089e9b20 d bpf_attr_group
-ffffffc0089e9b48 d fuse_fs_parameters
-ffffffc0089e9d08 d fuse_context_ops
-ffffffc0089e9d38 d fuse_ctl_waiting_ops
-ffffffc0089e9e48 d fuse_ctl_abort_ops
-ffffffc0089e9f58 d fuse_conn_max_background_ops
-ffffffc0089ea068 d fuse_conn_congestion_threshold_ops
-ffffffc0089ea178 d fuse_ctl_context_ops
-ffffffc0089ea1a8 d fuse_ctl_fill_super.empty_descr
-ffffffc0089ea1c0 d fuse_xattr_handler
-ffffffc0089ea1f0 d fuse_no_acl_access_xattr_handler
-ffffffc0089ea220 d fuse_no_acl_default_xattr_handler
-ffffffc0089ea280 d debugfs_dir_inode_operations
-ffffffc0089ea340 d debugfs_symlink_inode_operations
-ffffffc0089ea400 d debugfs_file_inode_operations
-ffffffc0089ea4c0 d debug_fill_super.debug_files
-ffffffc0089ea4d8 d debugfs_super_operations
-ffffffc0089ea5c0 d debugfs_dops
-ffffffc0089ea640 d fops_u8
-ffffffc0089ea750 d fops_u8_ro
-ffffffc0089ea860 d fops_u8_wo
-ffffffc0089ea970 d fops_u16
-ffffffc0089eaa80 d fops_u16_ro
-ffffffc0089eab90 d fops_u16_wo
-ffffffc0089eaca0 d fops_u32
-ffffffc0089eadb0 d fops_u32_ro
-ffffffc0089eaec0 d fops_u32_wo
-ffffffc0089eafd0 d fops_u64
-ffffffc0089eb0e0 d fops_u64_ro
-ffffffc0089eb1f0 d fops_u64_wo
-ffffffc0089eb300 d fops_ulong
-ffffffc0089eb410 d fops_ulong_ro
-ffffffc0089eb520 d fops_ulong_wo
-ffffffc0089eb630 d fops_x8
-ffffffc0089eb740 d fops_x8_ro
-ffffffc0089eb850 d fops_x8_wo
-ffffffc0089eb960 d fops_x16
-ffffffc0089eba70 d fops_x16_ro
-ffffffc0089ebb80 d fops_x16_wo
-ffffffc0089ebc90 d fops_x32
-ffffffc0089ebda0 d fops_x32_ro
-ffffffc0089ebeb0 d fops_x32_wo
-ffffffc0089ebfc0 d fops_x64
-ffffffc0089ec0d0 d fops_x64_ro
-ffffffc0089ec1e0 d fops_x64_wo
-ffffffc0089ec2f0 d fops_size_t
-ffffffc0089ec400 d fops_size_t_ro
-ffffffc0089ec510 d fops_size_t_wo
-ffffffc0089ec620 d fops_atomic_t
-ffffffc0089ec730 d fops_atomic_t_ro
-ffffffc0089ec840 d fops_atomic_t_wo
-ffffffc0089ec950 d fops_bool
-ffffffc0089eca60 d fops_bool_ro
-ffffffc0089ecb70 d fops_bool_wo
-ffffffc0089ecc80 d fops_str
-ffffffc0089ecd90 d fops_str_ro
-ffffffc0089ecea0 d fops_str_wo
-ffffffc0089ecfb0 d fops_blob
-ffffffc0089ed0c0 d u32_array_fops
-ffffffc0089ed1d0 d debugfs_regset32_fops
-ffffffc0089ed2e0 d debugfs_devm_entry_ops
-ffffffc0089ed3f0 D debugfs_full_proxy_file_operations
-ffffffc0089ed500 D debugfs_noop_file_operations
-ffffffc0089ed610 D debugfs_open_proxy_file_operations
-ffffffc0089ed720 d tracefs_file_operations
-ffffffc0089ed840 d tracefs_dir_inode_operations
-ffffffc0089ed900 d trace_fill_super.trace_files
-ffffffc0089ed918 d tracefs_super_operations
-ffffffc0089ed9d8 D erofs_sops
-ffffffc0089eda88 d trace_raw_output_erofs_readpage.symbols
-ffffffc0089edab8 d trace_raw_output_erofs__map_blocks_enter.__flags
-ffffffc0089edad8 d trace_raw_output_erofs__map_blocks_exit.__flags
-ffffffc0089edaf8 d trace_raw_output_erofs__map_blocks_exit.__flags.43
-ffffffc0089edb38 d erofs_anon_context_ops
-ffffffc0089edb68 d erofs_context_ops
-ffffffc0089edb98 d erofs_fc_fill_pseudo_super.empty_descr
-ffffffc0089edbb0 d erofs_fs_parameters
-ffffffc0089edcd0 d erofs_param_cache_strategy
-ffffffc0089edd10 d erofs_dax_param_enums
-ffffffc0089edd40 d erofs_export_ops
-ffffffc0089edd98 d managed_cache_aops
-ffffffc0089ede80 D erofs_generic_iops
-ffffffc0089edf40 D erofs_symlink_iops
-ffffffc0089ee000 D erofs_fast_symlink_iops
-ffffffc0089ee0c0 d erofs_iomap_ops
-ffffffc0089ee0d0 D erofs_raw_access_aops
-ffffffc0089ee170 D erofs_file_fops
-ffffffc0089ee280 D erofs_dir_iops
-ffffffc0089ee340 D erofs_dir_fops
-ffffffc0089ee450 d erofs_attr_ops
-ffffffc0089ee460 d erofs_group
-ffffffc0089ee488 d erofs_feat_group
-ffffffc0089ee4b0 D erofs_xattr_user_handler
-ffffffc0089ee4e0 D erofs_xattr_trusted_handler
-ffffffc0089ee510 D erofs_xattr_security_handler
-ffffffc0089ee540 d find_xattr_handlers
-ffffffc0089ee560 d list_xattr_handlers
-ffffffc0089ee580 d erofs_xattr_handler.xattr_handler_map
-ffffffc0089ee5b8 d decompressors
-ffffffc0089ee5f8 D z_erofs_iomap_report_ops
-ffffffc0089ee608 D z_erofs_aops
-ffffffc0089ee750 D lockdown_reasons
-ffffffc0089ee840 d securityfs_context_ops
-ffffffc0089ee870 d securityfs_fill_super.files
-ffffffc0089ee888 d securityfs_super_operations
-ffffffc0089ee938 d lsm_ops
-ffffffc0089eeac8 d str__avc__trace_system_name
-ffffffc0089eead0 D secclass_map
-ffffffc0089f5498 d selinux_fs_parameters
-ffffffc0089f5620 d sel_context_ops
-ffffffc0089f5650 d sel_fill_super.selinux_files
-ffffffc0089f5878 d sel_load_ops
-ffffffc0089f5988 d sel_enforce_ops
-ffffffc0089f5a98 d transaction_ops
-ffffffc0089f5ba8 d sel_policyvers_ops
-ffffffc0089f5cb8 d sel_commit_bools_ops
-ffffffc0089f5dc8 d sel_mls_ops
-ffffffc0089f5ed8 d sel_disable_ops
-ffffffc0089f5fe8 d sel_checkreqprot_ops
-ffffffc0089f60f8 d sel_handle_unknown_ops
-ffffffc0089f6208 d sel_handle_status_ops
-ffffffc0089f6318 d sel_policy_ops
-ffffffc0089f6428 d sel_transition_ops
-ffffffc0089f6538 d sel_bool_ops
-ffffffc0089f6648 d sel_class_ops
-ffffffc0089f6758 d sel_perm_ops
-ffffffc0089f6868 d write_op
-ffffffc0089f68e0 d sel_mmap_policy_ops
-ffffffc0089f6950 d sel_avc_cache_threshold_ops
-ffffffc0089f6a60 d sel_avc_hash_stats_ops
-ffffffc0089f6b70 d sel_avc_cache_stats_ops
-ffffffc0089f6c80 d sel_avc_cache_stats_seq_ops
-ffffffc0089f6ca0 d sel_sidtab_hash_stats_ops
-ffffffc0089f6db0 d sel_initcon_ops
-ffffffc0089f6ec0 d sel_policycap_ops
-ffffffc0089f6fd8 d nlmsg_xfrm_perms
-ffffffc0089f70a0 d nlmsg_audit_perms
-ffffffc0089f71c0 d spec_order
-ffffffc0089f71f0 d read_f
-ffffffc0089f7230 d write_f
-ffffffc0089f7270 d policydb_compat
-ffffffc0089f7358 d index_f
-ffffffc0089f7690 D selinux_policycap_names
-ffffffc0089f76d0 d initial_sid_to_string
-ffffffc0089f7808 d crypto_seq_ops.llvm.6571257494608389932
-ffffffc0089f7828 d crypto_aead_type.llvm.12973332287016857763
-ffffffc0089f7870 d crypto_skcipher_type.llvm.16962796483729331777
-ffffffc0089f78b8 d crypto_ahash_type.llvm.13513438439668096230
-ffffffc0089f7900 d crypto_shash_type.llvm.13171256970635599027
-ffffffc0089f7948 d crypto_akcipher_type
-ffffffc0089f7990 d crypto_kpp_type
-ffffffc0089f79d8 d crypto_acomp_type
-ffffffc0089f7a20 d crypto_scomp_type
-ffffffc0089f7a68 d __param_str_notests
-ffffffc0089f7a7a d __param_str_panic_on_fail
-ffffffc0089f7a92 D md5_zero_message_hash
-ffffffc0089f7aa2 D sha1_zero_message_hash
-ffffffc0089f7ab6 D sha224_zero_message_hash
-ffffffc0089f7ad2 D sha256_zero_message_hash
-ffffffc0089f7af2 D sha384_zero_message_hash
-ffffffc0089f7b22 D sha512_zero_message_hash
-ffffffc0089f7b68 d sha512_K
-ffffffc0089f7de8 d gf128mul_table_be
-ffffffc0089f7fe8 d gf128mul_table_le
-ffffffc0089f81e8 d hctr2_hash_message.padding
-ffffffc0089f8240 D crypto_ft_tab
-ffffffc0089f9240 D crypto_it_tab
-ffffffc0089fa240 d crypto_fl_tab
-ffffffc0089fb240 d crypto_il_tab
-ffffffc0089fc240 d crypto_rng_type.llvm.2679959179737813036
-ffffffc0089fc288 d __param_str_dbg
-ffffffc0089fc298 d drbg_cores
-ffffffc0089fc6b8 d drbg_hmac_ops
-ffffffc0089fc6d8 d bdev_sops
-ffffffc0089fc788 D def_blk_fops
-ffffffc0089fc898 D def_blk_aops
-ffffffc0089fcd18 d elv_sysfs_ops
-ffffffc0089fcde0 d blk_op_name
-ffffffc0089fcf00 d blk_errors
-ffffffc0089fd030 d queue_sysfs_ops
-ffffffc0089fd0a0 d blk_mq_hw_sysfs_ops
-ffffffc0089fd0b0 d default_hw_ctx_group
-ffffffc0089fd178 D disk_type
-ffffffc0089fd1a8 d diskstats_op
-ffffffc0089fd1c8 d partitions_op
-ffffffc0089fd1fc d __param_str_events_dfl_poll_msecs
-ffffffc0089fd218 d disk_events_dfl_poll_msecs_param_ops
-ffffffc0089fd238 d blk_ia_range_sysfs_ops
-ffffffc0089fd248 d blk_ia_range_group
-ffffffc0089fd270 d deadline_queue_debugfs_attrs
-ffffffc0089fd5b8 d deadline_read0_fifo_seq_ops
-ffffffc0089fd5d8 d deadline_write0_fifo_seq_ops
-ffffffc0089fd5f8 d deadline_read1_fifo_seq_ops
-ffffffc0089fd618 d deadline_write1_fifo_seq_ops
-ffffffc0089fd638 d deadline_read2_fifo_seq_ops
-ffffffc0089fd658 d deadline_write2_fifo_seq_ops
-ffffffc0089fd678 d deadline_dispatch0_seq_ops
-ffffffc0089fd698 d deadline_dispatch1_seq_ops
-ffffffc0089fd6b8 d deadline_dispatch2_seq_ops
-ffffffc0089fd6d8 d kyber_queue_debugfs_attrs
-ffffffc0089fd7c8 d kyber_hctx_debugfs_attrs
-ffffffc0089fd980 d kyber_latency_targets
-ffffffc0089fd998 d kyber_domain_names
-ffffffc0089fd9b8 d kyber_latency_type_names
-ffffffc0089fd9c8 d kyber_read_rqs_seq_ops
-ffffffc0089fd9e8 d kyber_write_rqs_seq_ops
-ffffffc0089fda08 d kyber_discard_rqs_seq_ops
-ffffffc0089fda28 d kyber_other_rqs_seq_ops
-ffffffc0089fda78 D bfq_timeout
-ffffffc0089fda98 d zone_cond_name
-ffffffc0089fdb18 d cmd_flag_name
-ffffffc0089fdbf8 d rqf_name
-ffffffc0089fdcb8 d blk_mq_debugfs_queue_attrs
-ffffffc0089fdda8 d blk_mq_debugfs_hctx_attrs
-ffffffc0089fdfd8 d blk_mq_rq_state_name_array
-ffffffc0089fdff0 d blk_mq_debugfs_fops
-ffffffc0089fe100 d queue_requeue_list_seq_ops
-ffffffc0089fe120 d blk_queue_flag_name
-ffffffc0089fe210 d hctx_dispatch_seq_ops
-ffffffc0089fe230 d alloc_policy_name
-ffffffc0089fe240 d hctx_flag_name
-ffffffc0089fe278 d hctx_types
-ffffffc0089fe290 d blk_mq_debugfs_ctx_attrs
-ffffffc0089fe330 d ctx_default_rq_list_seq_ops
-ffffffc0089fe350 d ctx_read_rq_list_seq_ops
-ffffffc0089fe370 d ctx_poll_rq_list_seq_ops
-ffffffc0089fe3a8 d __param_str_num_prealloc_crypt_ctxs
-ffffffc0089fe3d0 D blk_crypto_modes
-ffffffc0089fe470 d blk_crypto_attr_ops
-ffffffc0089fe480 d blk_crypto_attr_group
-ffffffc0089fe4a8 d blk_crypto_modes_attr_group
-ffffffc0089fe4d0 d __param_str_num_prealloc_bounce_pg
-ffffffc0089fe4fb d __param_str_num_keyslots
-ffffffc0089fe51c d __param_str_num_prealloc_fallback_crypt_ctxs
-ffffffc0089fe558 d blk_crypto_fallback_ll_ops
-ffffffc0089fe5dc d str__io_uring__trace_system_name
-ffffffc0089fe5e8 d io_uring_fops.llvm.6253150211813178604
-ffffffc0089fe700 D io_op_defs
-ffffffc0089ff1f5 D guid_index
-ffffffc0089ff205 D uuid_index
-ffffffc0089ff215 D guid_null
-ffffffc0089ff225 D uuid_null
-ffffffc0089ff2fd d base64_table
-ffffffc0089ff358 d string_get_size.units_10
-ffffffc0089ff3a0 d string_get_size.units_2
-ffffffc0089ff3e8 d string_get_size.units_str
-ffffffc0089ff3f8 d string_get_size.rounding
-ffffffc0089ff40d D hex_asc
-ffffffc0089ff41e D hex_asc_upper
-ffffffc0089ff47c d S8
-ffffffc0089ff57c d S6
-ffffffc0089ff67c d S7
-ffffffc0089ff77c d S5
-ffffffc0089ff87c d S4
-ffffffc0089ff97c d S2
-ffffffc0089ffa7c d S3
-ffffffc0089ffb7c d S1
-ffffffc0089ffc7c d pc2
-ffffffc008a00c7c d pc1
-ffffffc008a00d7c d rs
-ffffffc008a00e7c d SHA256_K
-ffffffc008a00f7c d __sha256_final.padding
-ffffffc008a00fbc d str__rwmmio__trace_system_name
-ffffffc008a00fc4 D crc16_table
-ffffffc008a01200 d crc32table_le
-ffffffc008a03200 d crc32ctable_le
-ffffffc008a05200 d crc32table_be
-ffffffc008a0723e d zlib_inflate.order
-ffffffc008a07264 d zlib_fixedtables.lenfix
-ffffffc008a07a64 d zlib_fixedtables.distfix
-ffffffc008a07ae4 d zlib_inflate_table.lbase
-ffffffc008a07b22 d zlib_inflate_table.lext
-ffffffc008a07b60 d zlib_inflate_table.dbase
-ffffffc008a07ba0 d zlib_inflate_table.dext
-ffffffc008a07be0 d configuration_table
-ffffffc008a07c80 d extra_dbits
-ffffffc008a07cf8 d extra_lbits
-ffffffc008a07d6c d extra_blbits
-ffffffc008a07db8 d bl_order
-ffffffc008a07dcc d BIT_mask
-ffffffc008a07e4c d BIT_mask
-ffffffc008a07ecc d BIT_mask
-ffffffc008a07f4c d BIT_mask
-ffffffc008a08130 d ZSTD_defaultCMem
-ffffffc008a08148 d repStartValue
-ffffffc008a08154 d repStartValue
-ffffffc008a08160 d ZSTD_selectBlockCompressor.blockCompressor
-ffffffc008a082a0 d ZSTD_LLcode.LL_Code
-ffffffc008a082e0 d ZSTD_LLcode.LL_Code
-ffffffc008a08320 d ZSTD_MLcode.ML_Code
-ffffffc008a083a0 d ZSTD_MLcode.ML_Code
-ffffffc008a08420 d LL_defaultNorm
-ffffffc008a08468 d LL_defaultNorm
-ffffffc008a084b0 d OF_defaultNorm
-ffffffc008a084ea d OF_defaultNorm
-ffffffc008a08524 d ML_defaultNorm
-ffffffc008a0858e d ML_defaultNorm
-ffffffc008a085f8 d attachDictSizeCutoffs
-ffffffc008a08648 d ZSTD_defaultCParameters
-ffffffc008a0905c d kInverseProbabilityLog256
-ffffffc008a0945c d LL_bits
-ffffffc008a094ec d LL_bits
-ffffffc008a0957c d LL_bits
-ffffffc008a0960c d LL_bits
-ffffffc008a0969c d LL_bits
-ffffffc008a0972c d ML_bits
-ffffffc008a09800 d ML_bits
-ffffffc008a098d4 d ML_bits
-ffffffc008a099a8 d ML_bits
-ffffffc008a09a7c d ML_bits
-ffffffc008a09b70 d ZSTD_ldm_gearTab
-ffffffc008a0a3c8 d algoTime
-ffffffc008a0a564 d OF_base
-ffffffc008a0a5e4 d OF_base
-ffffffc008a0a664 d OF_bits
-ffffffc008a0a6e4 d OF_bits
-ffffffc008a0a764 d ML_base
-ffffffc008a0a838 d ML_base
-ffffffc008a0a90c d LL_base
-ffffffc008a0a99c d LL_base
-ffffffc008a0aa58 d LL_defaultDTable
-ffffffc008a0ac60 d OF_defaultDTable
-ffffffc008a0ad68 d ML_defaultDTable
-ffffffc008a0b120 d __param_str_verbose
-ffffffc008a0b138 D param_ops_dyndbg_classes
-ffffffc008a0b158 d opt_array
-ffffffc008a0b170 d ddebug_proc_fops
-ffffffc008a0b280 d proc_fops
-ffffffc008a0b2d8 d ddebug_proc_seqops
-ffffffc008a0b328 d names_0
-ffffffc008a0b758 d names_512
-ffffffc008a0b944 d nla_attr_len
-ffffffc008a0b958 d nla_attr_minlen
-ffffffc008a0b96c d __nla_validate_parse.__msg
-ffffffc008a0b994 d __nla_validate_parse.__msg.1
-ffffffc008a0b9ab d __nla_validate_parse.__msg.2
-ffffffc008a0b9d3 d validate_nla.__msg
-ffffffc008a0b9ec d validate_nla.__msg.4
-ffffffc008a0ba04 d validate_nla.__msg.5
-ffffffc008a0ba1e d validate_nla.__msg.6
-ffffffc008a0ba34 d validate_nla.__msg.7
-ffffffc008a0ba57 d nla_validate_array.__msg
-ffffffc008a0ba6f d nla_validate_range_unsigned.__msg
-ffffffc008a0ba88 d nla_validate_range_unsigned.__msg.8
-ffffffc008a0baab d nla_validate_range_unsigned.__msg.9
-ffffffc008a0bac0 d nla_validate_int_range_signed.__msg
-ffffffc008a0bad5 d nla_validate_mask.__msg
-ffffffc008a0bb88 d gic_quirks
-ffffffc008a0bbc8 d gic_quirks
-ffffffc008a0bc68 d gic_irq_domain_hierarchy_ops
-ffffffc008a0bcb8 d gic_irq_domain_ops
-ffffffc008a0bd08 d gic_irq_domain_ops
-ffffffc008a0bd58 d gic_chip_mode1
-ffffffc008a0be60 d gic_chip
-ffffffc008a0bf68 d gicv2m_device_id
-ffffffc008a0c0f8 d gicv2m_domain_ops
-ffffffc008a0c188 d partition_domain_ops
-ffffffc008a0c1d8 d mbi_domain_ops
-ffffffc008a0c248 d its_sgi_domain_ops
-ffffffc008a0c298 d its_vpe_domain_ops
-ffffffc008a0c2e8 d its_device_id
-ffffffc008a0c478 d its_device_id
-ffffffc008a0c608 d its_quirks
-ffffffc008a0c6a8 d its_base_type_string
-ffffffc008a0c6e8 d its_domain_ops
-ffffffc008a0c748 d simple_pm_bus_of_match
-ffffffc008a0cc38 d pci_speed_string.speed_strings
-ffffffc008a0cd08 d agp_speeds
-ffffffc008a0cd0d D pcie_link_speed
-ffffffc008a0cd20 D pci_dev_reset_method_attr_group
-ffffffc008a0cd48 d pci_reset_fn_methods
-ffffffc008a0ce18 d pci_dev_pm_ops
-ffffffc008a0ced0 d pci_drv_group
-ffffffc008a0cef8 d pci_device_id_any
-ffffffc008a0cf20 d pci_bus_group
-ffffffc008a0cf48 d pcibus_group
-ffffffc008a0cf70 d pci_dev_group
-ffffffc008a0cf98 d pci_dev_config_attr_group
-ffffffc008a0cfc0 d pci_dev_rom_attr_group
-ffffffc008a0cfe8 d pci_dev_reset_attr_group
-ffffffc008a0d010 d pci_dev_resource_resize_group
-ffffffc008a0d038 d pci_dev_attr_group
-ffffffc008a0d060 d pci_dev_hp_attr_group
-ffffffc008a0d088 d pci_bridge_attr_group
-ffffffc008a0d0b0 d pcie_dev_attr_group
-ffffffc008a0d0d8 D pci_dev_type
-ffffffc008a0d108 D pci_dev_vpd_attr_group
-ffffffc008a0d130 d vc_caps
-ffffffc008a0d160 d pci_phys_vm_ops
-ffffffc008a0d1d0 d port_pci_ids
-ffffffc008a0d270 d pcie_portdrv_err_handler
-ffffffc008a0d2a0 d pcie_portdrv_pm_ops
-ffffffc008a0d358 d __param_str_policy
-ffffffc008a0d370 d __param_ops_policy
-ffffffc008a0d390 D aspm_ctrl_attr_group
-ffffffc008a0d3b8 d aspm_ctrl_attrs_are_visible.aspm_state_map
-ffffffc008a0d3c0 D aer_stats_attr_group
-ffffffc008a0d3e8 d aer_error_severity_string
-ffffffc008a0d400 d aer_error_layer
-ffffffc008a0d418 d aer_agent_string
-ffffffc008a0d438 d aer_correctable_error_string
-ffffffc008a0d538 d aer_uncorrectable_error_string
-ffffffc008a0d660 d proc_bus_pci_ops
-ffffffc008a0d6b8 d proc_bus_pci_devices_op
-ffffffc008a0d6d8 d pci_slot_sysfs_ops
-ffffffc008a0d6e8 d pci_slot_default_group
-ffffffc008a0d810 d pci_dev_acs_enabled
-ffffffc008a0df90 d fixed_dma_alias_tbl
-ffffffc008a0e008 d pci_quirk_intel_pch_acs_ids
-ffffffc008a0e0f8 D sriov_vf_dev_attr_group
-ffffffc008a0e120 D sriov_pf_dev_attr_group
-ffffffc008a0e148 D pci_generic_ecam_ops
-ffffffc008a0e180 d vga_arb_device_fops
-ffffffc008a0e2a8 d pci_epf_type
-ffffffc008a0e2d8 d gen_pci_of_match
-ffffffc008a0e788 d gen_pci_cfg_cam_bus_ops
-ffffffc008a0e7c0 d pci_dw_ecam_bus_ops
-ffffffc008a0e808 d dw_pcie_msi_domain_ops
-ffffffc008a0e858 d epc_ops
-ffffffc008a0e8d0 d dw_plat_pcie_of_match
-ffffffc008a0eb28 d pcie_ep_ops
-ffffffc008a0eb48 d dw_plat_pcie_epc_features
-ffffffc008a0eb88 d dw_plat_pcie_rc_of_data
-ffffffc008a0eb8c d dw_plat_pcie_ep_of_data
-ffffffc008a0eb90 d kirin_pcie_match
-ffffffc008a0ede8 d kirin_dw_pcie_ops
-ffffffc008a0ee20 d kirin_pcie_host_ops
-ffffffc008a0ee38 d pcie_kirin_regmap_conf
-ffffffc008a0ef78 d kirin_960_data
-ffffffc008a0ef7c d kirin_970_data
-ffffffc008a0ef80 D dummy_con
-ffffffc008a0f050 d amba_pm
-ffffffc008a0f108 d amba_dev_group
-ffffffc008a0f130 d clk_nodrv_ops
-ffffffc008a0f210 d clk_summary_fops
-ffffffc008a0f320 d clk_dump_fops
-ffffffc008a0f430 d clk_rate_fops
-ffffffc008a0f540 d clk_min_rate_fops
-ffffffc008a0f650 d clk_max_rate_fops
-ffffffc008a0f760 d clk_flags_fops
-ffffffc008a0f870 d clk_duty_cycle_fops
-ffffffc008a0f980 d clk_prepare_enable_fops
-ffffffc008a0fa90 d current_parent_rw_fops
-ffffffc008a0fba0 d current_parent_fops
-ffffffc008a0fcb0 d possible_parents_fops
-ffffffc008a0fdc0 d clk_flags
-ffffffc008a0fe80 D clk_divider_ops
-ffffffc008a0ff58 D clk_divider_ro_ops
-ffffffc008a10030 D clk_fixed_factor_ops
-ffffffc008a10108 d of_fixed_factor_clk_ids
-ffffffc008a10298 D clk_fixed_rate_ops
-ffffffc008a10370 d of_fixed_clk_ids
-ffffffc008a10500 D clk_gate_ops
-ffffffc008a105d8 D clk_multiplier_ops
-ffffffc008a106b0 D clk_mux_ops
-ffffffc008a10788 D clk_mux_ro_ops
-ffffffc008a10860 D clk_fractional_divider_ops
-ffffffc008a10938 d gpio_clk_match_table
-ffffffc008a10b90 d virtio_dev_group
-ffffffc008a10bf8 d virtio_pci_config_ops
-ffffffc008a10c80 d virtio_pci_config_ops
-ffffffc008a10d08 d virtio_pci_config_nodev_ops
-ffffffc008a10d90 d __param_str_force_legacy
-ffffffc008a10da8 d virtio_pci_id_table
-ffffffc008a10df8 d virtio_pci_pm_ops
-ffffffc008a10eb0 d id_table
-ffffffc008a10ec0 d id_table
-ffffffc008a10ed0 d id_table
-ffffffc008a110b0 d hung_up_tty_fops
-ffffffc008a111c0 d tty_fops.llvm.10326077018985032395
-ffffffc008a112d0 d console_fops
-ffffffc008a113e0 d cons_dev_group
-ffffffc008a11588 D tty_ldiscs_seq_ops
-ffffffc008a115a8 D tty_port_default_client_ops
-ffffffc008a115c0 d baud_table
-ffffffc008a1163c d baud_bits
-ffffffc008a11728 d ptm_unix98_ops
-ffffffc008a11830 d pty_unix98_ops
-ffffffc008a11938 d sysrq_reboot_op
-ffffffc008a11958 d __param_str_reset_seq
-ffffffc008a11968 d __param_arr_reset_seq
-ffffffc008a11988 d __param_str_sysrq_downtime_ms
-ffffffc008a119a0 d sysrq_loglevel_op
-ffffffc008a119c0 d sysrq_crash_op
-ffffffc008a119e0 d sysrq_term_op
-ffffffc008a11a00 d sysrq_moom_op
-ffffffc008a11a20 d sysrq_kill_op
-ffffffc008a11a40 d sysrq_thaw_op
-ffffffc008a11a60 d sysrq_SAK_op
-ffffffc008a11a80 d sysrq_showallcpus_op
-ffffffc008a11aa0 d sysrq_showmem_op
-ffffffc008a11ac0 d sysrq_unrt_op
-ffffffc008a11ae0 d sysrq_showregs_op
-ffffffc008a11b00 d sysrq_show_timers_op
-ffffffc008a11b20 d sysrq_unraw_op
-ffffffc008a11b40 d sysrq_sync_op
-ffffffc008a11b60 d sysrq_showstate_op
-ffffffc008a11b80 d sysrq_mountro_op
-ffffffc008a11ba0 d sysrq_showstate_blocked_op
-ffffffc008a11bc0 d sysrq_ftrace_dump_op
-ffffffc008a11be0 d param_ops_sysrq_reset_seq
-ffffffc008a11c00 d sysrq_xlate
-ffffffc008a11f00 d sysrq_ids
-ffffffc008a12090 d sysrq_trigger_proc_ops
-ffffffc008a12528 d vcs_fops
-ffffffc008a12666 d __param_str_brl_timeout
-ffffffc008a1267b d __param_str_brl_nbchords
-ffffffc008a12698 d kbd_ids
-ffffffc008a128f0 d k_handler
-ffffffc008a12970 d fn_handler
-ffffffc008a12a10 d k_dead.ret_diacr
-ffffffc008a12a2b d max_vals
-ffffffc008a12fe5 d __param_str_default_utf8
-ffffffc008a12ff5 d __param_str_global_cursor_default
-ffffffc008a1300e d __param_str_cur_default
-ffffffc008a1301d d __param_str_consoleblank
-ffffffc008a13030 d vc_port_ops
-ffffffc008a13058 D color_table
-ffffffc008a13068 d __param_str_default_red
-ffffffc008a13078 d __param_arr_default_red
-ffffffc008a13098 d __param_str_default_grn
-ffffffc008a130a8 d __param_arr_default_grn
-ffffffc008a130c8 d __param_str_default_blu
-ffffffc008a130d8 d __param_arr_default_blu
-ffffffc008a130f8 d __param_str_color
-ffffffc008a13101 d __param_str_italic
-ffffffc008a1310b d __param_str_underline
-ffffffc008a13118 d con_ops
-ffffffc008a13220 d vt_dev_group
-ffffffc008a13248 d vc_translate_unicode.utf8_length_changes
-ffffffc008a13260 d respond_ID.vt102_id
-ffffffc008a13266 d status_report.teminal_ok
-ffffffc008a1326c d is_double_width.double_width
-ffffffc008a132d0 d con_dev_group
-ffffffc008a132f8 d hvc_port_ops
-ffffffc008a13320 d hvc_ops
-ffffffc008a13428 d uart_ops
-ffffffc008a13530 d uart_port_ops
-ffffffc008a13558 d tty_dev_attr_group
-ffffffc008a13588 d __param_str_share_irqs
-ffffffc008a13598 d __param_str_nr_uarts
-ffffffc008a135a6 d __param_str_skip_txen_test
-ffffffc008a135c0 d univ8250_driver_ops
-ffffffc008a135f0 d uart_config
-ffffffc008a14160 d serial8250_pops
-ffffffc008a142d0 d pericom8250_pci_ids
-ffffffc008a148c0 d of_platform_serial_table
-ffffffc008a15798 d of_serial_pm_ops
-ffffffc008a15850 d ttynull_port_ops
-ffffffc008a15878 d ttynull_ops
-ffffffc008a15980 d memory_fops
-ffffffc008a15a90 d devlist
-ffffffc008a15c10 d null_fops
-ffffffc008a15d20 d zero_fops
-ffffffc008a15e30 d full_fops
-ffffffc008a15f40 d __param_str_ratelimit_disable
-ffffffc008a15f60 D random_fops
-ffffffc008a16070 D urandom_fops
-ffffffc008a16180 d misc_seq_ops
-ffffffc008a161a0 d misc_fops
-ffffffc008a162b8 d hv_ops
-ffffffc008a16300 d features
-ffffffc008a16308 d portdev_fops
-ffffffc008a16418 d port_attribute_group
-ffffffc008a16440 d port_fops
-ffffffc008a16550 d port_debugfs_fops
-ffffffc008a16660 d rproc_serial_id_table
-ffffffc008a16668 d __param_str_current_quality
-ffffffc008a16668 d rproc_serial_features
-ffffffc008a16681 d __param_str_default_quality
-ffffffc008a166a0 d rng_chrdev_ops
-ffffffc008a167b0 d rng_dev_group
-ffffffc008a167d8 d arm_cctrng_dt_match
-ffffffc008a16a30 d cctrng_pm
-ffffffc008a16ae8 d cn10k_rng_id_table
-ffffffc008a16b50 d iommu_buses
-ffffffc008a16b68 d iommu_group_sysfs_ops
-ffffffc008a16b78 d iommu_group_resv_type_string
-ffffffc008a16c60 d str__iommu__trace_system_name
-ffffffc008a16c68 d devices_attr_group
-ffffffc008a16c90 d iommu_dma_ops
-ffffffc008a16d58 d component_devices_fops
-ffffffc008a16e68 d device_uevent_ops
-ffffffc008a16e80 d devlink_group
-ffffffc008a16ea8 d dev_sysfs_ops
-ffffffc008a16eb8 d dev_attr_physical_location_group
-ffffffc008a16f10 d bus_uevent_ops
-ffffffc008a16f28 d driver_sysfs_ops
-ffffffc008a16f38 d bus_sysfs_ops
-ffffffc008a16f48 d deferred_devs_fops
-ffffffc008a17058 d class_sysfs_ops
-ffffffc008a17068 d platform_dev_pm_ops
-ffffffc008a17120 d platform_dev_group
-ffffffc008a17148 d cpu_root_attr_group
-ffffffc008a17170 d cpu_root_vulnerabilities_group
-ffffffc008a17198 d topology_attr_group
-ffffffc008a172c0 d cache_type_info
-ffffffc008a17320 d cache_default_group
-ffffffc008a17348 d software_node_ops
-ffffffc008a173f8 D power_group_name
-ffffffc008a17400 d pm_attr_group
-ffffffc008a17428 d pm_runtime_attr_group.llvm.12130046193727004250
-ffffffc008a17450 d pm_wakeup_attr_group.llvm.12130046193727004250
-ffffffc008a17478 d pm_qos_latency_tolerance_attr_group.llvm.12130046193727004250
-ffffffc008a174a0 d pm_qos_resume_latency_attr_group.llvm.12130046193727004250
-ffffffc008a174c8 d pm_qos_flags_attr_group.llvm.12130046193727004250
-ffffffc008a174f0 d ctrl_on
-ffffffc008a174f3 d _enabled
-ffffffc008a174fb d _disabled
-ffffffc008a17f48 d wakeup_sources_stats_fops
-ffffffc008a18058 d wakeup_sources_stats_seq_ops
-ffffffc008a18078 d wakeup_source_group
-ffffffc008a180a4 d __param_str_path
-ffffffc008a180b8 d firmware_param_ops
-ffffffc008a180d8 d fw_path
-ffffffc008a18148 d firmware_class_group
-ffffffc008a18170 d fw_dev_attr_group
-ffffffc008a18198 d online_type_to_str
-ffffffc008a181b8 d memory_memblk_attr_group
-ffffffc008a181e0 d memory_root_attr_group
-ffffffc008a182b8 d str__regmap__trace_system_name
-ffffffc008a18380 d cache_types
-ffffffc008a18390 d rbtree_fops
-ffffffc008a184a0 d regmap_name_fops
-ffffffc008a185b0 d regmap_reg_ranges_fops
-ffffffc008a186c0 d regmap_map_fops
-ffffffc008a187d0 d regmap_access_fops
-ffffffc008a188e0 d regmap_cache_only_fops
-ffffffc008a189f0 d regmap_cache_bypass_fops
-ffffffc008a18b00 d regmap_range_fops
-ffffffc008a18c50 d regmap_mmio
-ffffffc008a18cd8 d soc_attr_group
-ffffffc008a18d15 d __param_str_rd_nr
-ffffffc008a18d1f d __param_str_rd_size
-ffffffc008a18d2b d __param_str_max_part
-ffffffc008a18d38 d __param_str_max_part
-ffffffc008a18d48 d brd_fops
-ffffffc008a18e34 d __param_str_max_loop
-ffffffc008a18e42 d __param_str_hw_queue_depth
-ffffffc008a18e58 d loop_hw_qdepth_param_ops
-ffffffc008a18e78 d loop_ctl_fops
-ffffffc008a18f88 d loop_mq_ops
-ffffffc008a19018 d lo_fops
-ffffffc008a1913c d __param_str_num_request_queues
-ffffffc008a1915a d __param_str_poll_queues
-ffffffc008a19171 d __param_str_queue_depth
-ffffffc008a19188 d virtio_mq_ops
-ffffffc008a19218 d virtblk_fops
-ffffffc008a192b0 d virtblk_attr_group
-ffffffc008a192d8 d virtblk_cache_types
-ffffffc008a192e8 d __param_str_num_devices
-ffffffc008a19300 d zram_control_class_group
-ffffffc008a19328 d zram_devops
-ffffffc008a193c0 d zram_disk_group
-ffffffc008a193e8 d open_dice_of_match
-ffffffc008a19578 d open_dice_fops
-ffffffc008a19688 d vcpu_stall_detect_of_match
-ffffffc008a19818 d syscon_regmap_config
-ffffffc008a19958 d syscon_ids
-ffffffc008a19998 d dma_buf_fops
-ffffffc008a19ac0 d dma_buf_dentry_ops
-ffffffc008a19b40 d dma_buf_debug_fops
-ffffffc008a19c5c d str__dma_fence__trace_system_name
-ffffffc008a19c68 d dma_fence_stub_ops
-ffffffc008a19cb0 D dma_fence_array_ops
-ffffffc008a19cf8 D dma_fence_chain_ops
-ffffffc008a19d40 d dma_resv_describe.usage
-ffffffc008a19d60 d dma_heap_fops
-ffffffc008a19e70 d dma_heap_sysfs_group
-ffffffc008a19e98 d dmabuf_sysfs_no_uevent_ops
-ffffffc008a19eb0 d dma_buf_stats_sysfs_ops
-ffffffc008a19ec0 d dma_buf_stats_default_group
-ffffffc008a19ee8 d loopback_ethtool_ops
-ffffffc008a1a118 d loopback_ops
-ffffffc008a1a378 d blackhole_netdev_ops
-ffffffc008a1a5e8 d uio_group
-ffffffc008a1a610 d map_sysfs_ops
-ffffffc008a1a620 d map_group
-ffffffc008a1a648 d portio_sysfs_ops
-ffffffc008a1a658 d portio_group
-ffffffc008a1a6a0 d uio_fops
-ffffffc008a1a7b0 d uio_physical_vm_ops
-ffffffc008a1a820 d uio_logical_vm_ops
-ffffffc008a1a8a8 d serio_pm_ops
-ffffffc008a1a960 d serio_id_attr_group
-ffffffc008a1a988 d serio_device_attr_group
-ffffffc008a1a9b0 d serio_driver_group
-ffffffc008a1aa08 d input_dev_type
-ffffffc008a1aa38 d input_dev_pm_ops
-ffffffc008a1aaf0 d input_dev_attr_group
-ffffffc008a1ab18 d input_dev_id_attr_group
-ffffffc008a1ab40 d input_dev_caps_attr_group
-ffffffc008a1ab68 d input_max_code
-ffffffc008a1abe8 d input_devices_proc_ops
-ffffffc008a1ac40 d input_handlers_proc_ops
-ffffffc008a1ac98 d input_devices_seq_ops
-ffffffc008a1acb8 d input_handlers_seq_ops
-ffffffc008a1acd8 d rtc_days_in_month
-ffffffc008a1ace4 d rtc_ydays
-ffffffc008a1ad18 d rtc_class_dev_pm_ops
-ffffffc008a1add0 d str__rtc__trace_system_name
-ffffffc008a1adf0 d rtc_dev_fops
-ffffffc008a1af00 d pl030_ops
-ffffffc008a1af58 d pl031_ids
-ffffffc008a1af98 d syscon_reboot_of_match
-ffffffc008a1b128 d POWER_SUPPLY_CHARGE_BEHAVIOUR_TEXT
-ffffffc008a1b140 d power_supply_attr_group
-ffffffc008a1b168 d POWER_SUPPLY_STATUS_TEXT
-ffffffc008a1b190 d POWER_SUPPLY_CHARGE_TYPE_TEXT
-ffffffc008a1b328 d POWER_SUPPLY_HEALTH_TEXT
-ffffffc008a1b3a0 d POWER_SUPPLY_TECHNOLOGY_TEXT
-ffffffc008a1b3d8 d POWER_SUPPLY_CAPACITY_LEVEL_TEXT
-ffffffc008a1b408 d POWER_SUPPLY_TYPE_TEXT
-ffffffc008a1b470 d POWER_SUPPLY_SCOPE_TEXT
-ffffffc008a1b488 d POWER_SUPPLY_USB_TYPE_TEXT
-ffffffc008a1b4d8 d __param_str_stop_on_reboot
-ffffffc008a1b524 d __param_str_handle_boot_enabled
-ffffffc008a1b541 d __param_str_open_timeout
-ffffffc008a1b558 d watchdog_fops
-ffffffc008a1b668 d __param_str_create
-ffffffc008a1b678 d _dm_uevent_type_names
-ffffffc008a1b728 d _exits
-ffffffc008a1b768 d dm_rq_blk_dops
-ffffffc008a1b800 d __param_str_major
-ffffffc008a1b80d d __param_str_reserved_bio_based_ios
-ffffffc008a1b82b d __param_str_dm_numa_node
-ffffffc008a1b83f d __param_str_swap_bios
-ffffffc008a1b850 d dm_blk_dops
-ffffffc008a1b8e8 d dm_pr_ops
-ffffffc008a1b910 d _ctl_fops
-ffffffc008a1ba20 d lookup_ioctl._ioctls
-ffffffc008a1bb50 d __param_str_kcopyd_subjob_size_kb
-ffffffc008a1bb70 d dm_sysfs_ops
-ffffffc008a1bb80 d dm_group
-ffffffc008a1bba8 d __param_str_stats_current_allocated_bytes
-ffffffc008a1bbf8 d dm_mq_ops
-ffffffc008a1bc88 d __param_str_reserved_rq_based_ios
-ffffffc008a1bca5 d __param_str_use_blk_mq
-ffffffc008a1bcb7 d __param_str_dm_mq_nr_hw_queues
-ffffffc008a1bcd1 d __param_str_dm_mq_queue_depth
-ffffffc008a1bcea d __param_str_max_cache_size_bytes
-ffffffc008a1bd08 d __param_str_max_age_seconds
-ffffffc008a1bd21 d __param_str_retain_bytes
-ffffffc008a1bd37 d __param_str_peak_allocated_bytes
-ffffffc008a1bd55 d __param_str_allocated_kmem_cache_bytes
-ffffffc008a1bd79 d __param_str_allocated_get_free_pages_bytes
-ffffffc008a1bda1 d __param_str_allocated_vmalloc_bytes
-ffffffc008a1bdc2 d __param_str_current_allocated_bytes
-ffffffc008a1bde8 d adjust_total_allocated.class_ptr
-ffffffc008a1be00 d crypt_ctr_optional._args
-ffffffc008a1be10 d crypt_iv_plain_ops
-ffffffc008a1be40 d crypt_iv_plain64_ops
-ffffffc008a1be70 d crypt_iv_plain64be_ops
-ffffffc008a1bea0 d crypt_iv_essiv_ops
-ffffffc008a1bed0 d crypt_iv_benbi_ops
-ffffffc008a1bf00 d crypt_iv_null_ops
-ffffffc008a1bf30 d crypt_iv_eboiv_ops
-ffffffc008a1bf60 d crypt_iv_elephant_ops
-ffffffc008a1bf90 d crypt_iv_lmk_ops
-ffffffc008a1bfc0 d crypt_iv_tcw_ops
-ffffffc008a1bff0 d crypt_iv_random_ops
-ffffffc008a1c020 d __param_str_prefetch_cluster
-ffffffc008a1c040 d verity_parse_opt_args._args
-ffffffc008a1c050 d __param_str_dm_user_daemon_timeout_msec
-ffffffc008a1c078 d file_operations
-ffffffc008a1c1d8 D edac_mem_types
-ffffffc008a1c2c0 d __param_str_edac_mc_panic_on_ue
-ffffffc008a1c2de d __param_str_edac_mc_log_ue
-ffffffc008a1c2f7 d __param_str_edac_mc_log_ce
-ffffffc008a1c310 d __param_str_edac_mc_poll_msec
-ffffffc008a1c330 d __param_ops_edac_mc_poll_msec
-ffffffc008a1c350 d mci_attr_type
-ffffffc008a1c380 d mci_attr_grp
-ffffffc008a1c3a8 d dimm_attr_type
-ffffffc008a1c3d8 d dimm_attr_grp
-ffffffc008a1c400 d dev_types
-ffffffc008a1c440 d edac_caps
-ffffffc008a1c490 d csrow_attr_type
-ffffffc008a1c4c0 d csrow_attr_grp
-ffffffc008a1c4e8 d csrow_dev_dimm_group
-ffffffc008a1c510 d csrow_dev_ce_count_group
-ffffffc008a1c538 d device_ctl_info_ops
-ffffffc008a1c548 d device_ctrl_group
-ffffffc008a1c570 d device_instance_ops
-ffffffc008a1c580 d device_instance_group
-ffffffc008a1c5a8 d device_block_ops
-ffffffc008a1c5b8 d device_block_group
-ffffffc008a1c5e0 d __param_str_check_pci_errors
-ffffffc008a1c5fb d __param_str_edac_pci_panic_on_pe
-ffffffc008a1c620 d edac_pci_sysfs_ops
-ffffffc008a1c630 d edac_pci_group
-ffffffc008a1c658 d pci_instance_ops
-ffffffc008a1c668 d pci_instance_group
-ffffffc008a1c690 d str__scmi__trace_system_name
-ffffffc008a1c698 d xfer_ops
-ffffffc008a1c6c8 d helpers_ops
-ffffffc008a1c6f0 d scmi_linux_errmap
-ffffffc008a1c720 d scmi_of_match
-ffffffc008a1c8b0 d versions_group
-ffffffc008a1c8d8 d notify_ops
-ffffffc008a1c8f8 d scmi_base.llvm.6461659484339344196
-ffffffc008a1c928 d base_protocol_events.llvm.6461659484339344196
-ffffffc008a1c948 d base_event_ops.llvm.6461659484339344196
-ffffffc008a1c960 d base_events.llvm.6461659484339344196
-ffffffc008a1c978 d scmi_clock.llvm.10887612381844139604
-ffffffc008a1c9a8 d clk_proto_ops.llvm.10887612381844139604
-ffffffc008a1c9e8 d clk_protocol_events.llvm.10887612381844139604
-ffffffc008a1ca20 d clk_event_ops.llvm.10887612381844139604
-ffffffc008a1ca38 d clk_events.llvm.10887612381844139604
-ffffffc008a1ca68 d scmi_perf.llvm.423969258469136037
-ffffffc008a1ca98 d perf_proto_ops.llvm.423969258469136037
-ffffffc008a1caf8 d perf_protocol_events.llvm.423969258469136037
-ffffffc008a1cb30 d perf_event_ops.llvm.423969258469136037
-ffffffc008a1cb48 d perf_events.llvm.423969258469136037
-ffffffc008a1cb78 d scmi_power.llvm.18437665301673030446
-ffffffc008a1cba8 d power_proto_ops.llvm.18437665301673030446
-ffffffc008a1cbc8 d power_protocol_events.llvm.18437665301673030446
-ffffffc008a1cbe8 d power_event_ops.llvm.18437665301673030446
-ffffffc008a1cc00 d power_events.llvm.18437665301673030446
-ffffffc008a1cc18 d scmi_reset.llvm.8626441867815144245
-ffffffc008a1cc48 d reset_proto_ops.llvm.8626441867815144245
-ffffffc008a1cc78 d reset_protocol_events.llvm.8626441867815144245
-ffffffc008a1cc98 d reset_event_ops.llvm.8626441867815144245
-ffffffc008a1ccb0 d reset_events.llvm.8626441867815144245
-ffffffc008a1ccc8 d scmi_sensors.llvm.2789683505039508702
-ffffffc008a1ccf8 d sensor_proto_ops.llvm.2789683505039508702
-ffffffc008a1cd30 d sensor_protocol_events.llvm.2789683505039508702
-ffffffc008a1cdb0 d sensor_event_ops.llvm.2789683505039508702
-ffffffc008a1cdc8 d sensor_events.llvm.2789683505039508702
-ffffffc008a1cdf8 d scmi_system.llvm.6934767400188389257
-ffffffc008a1ce28 d system_protocol_events.llvm.6934767400188389257
-ffffffc008a1ce48 d system_event_ops.llvm.6934767400188389257
-ffffffc008a1ce60 d system_events.llvm.6934767400188389257
-ffffffc008a1ce78 d scmi_voltage.llvm.17251444390686833384
-ffffffc008a1cec0 d scmi_powercap.llvm.11797613555507468437
-ffffffc008a1cef0 d powercap_proto_ops.llvm.11797613555507468437
-ffffffc008a1cf38 d powercap_protocol_events.llvm.11797613555507468437
-ffffffc008a1cf58 d powercap_event_ops.llvm.11797613555507468437
-ffffffc008a1cf70 d powercap_events.llvm.11797613555507468437
-ffffffc008a1cfa0 d scmi_smc_ops.llvm.17695492939047414862
-ffffffc008a1cff8 D scmi_smc_desc
-ffffffc008a1d020 d psci_debugfs_ops
-ffffffc008a1d130 d psci_fn_ids
-ffffffc008a1d200 d psci_suspend_ops
-ffffffc008a1d250 d arch_timer_ppi_names
-ffffffc008a1d278 d ool_workarounds
-ffffffc008a1d378 d of_parse_phandle_with_args_map.dummy_mask
-ffffffc008a1d3bc d of_parse_phandle_with_args_map.dummy_pass
-ffffffc008a1d400 D of_default_bus_match_table
-ffffffc008a1d7e8 d of_skipped_node_table
-ffffffc008a1d978 d reserved_mem_matches
-ffffffc008a1dfc0 d of_supplier_bindings
-ffffffc008a1e1e0 D of_fwnode_ops
-ffffffc008a1e2a0 d of_irq_imap_abusers
-ffffffc008a1e2e0 d pmuirq_ops
-ffffffc008a1e2f8 d pmunmi_ops
-ffffffc008a1e310 d percpu_pmuirq_ops
-ffffffc008a1e328 d percpu_pmunmi_ops
-ffffffc008a1e340 d armpmu_common_attr_group
-ffffffc008a1e368 d str__ras__trace_system_name
-ffffffc008a1e370 d trace_raw_output_aer_event.__flags
-ffffffc008a1e400 d trace_raw_output_aer_event.__flags.62
-ffffffc008a1e540 d trace_fops
-ffffffc008a1e790 d socket_file_ops
-ffffffc008a1e8c0 d sockfs_inode_ops
-ffffffc008a1e980 d pf_family_names
-ffffffc008a1eaf0 d sockfs_ops
-ffffffc008a1ebc0 d sockfs_dentry_operations
-ffffffc008a1ec40 d sockfs_xattr_handler
-ffffffc008a1ec70 d sockfs_security_xattr_handler
-ffffffc008a1ef20 d proto_seq_ops
-ffffffc008a1ef58 D drop_reasons
-ffffffc008a1f168 d __const.skb_checksum.ops.llvm.5703560699642077560
-ffffffc008a1f178 d default_crc32c_ops
-ffffffc008a1f188 d rtnl_net_policy
-ffffffc008a1f1e8 d rtnl_net_newid.__msg
-ffffffc008a1f1f8 d rtnl_net_newid.__msg.7
-ffffffc008a1f218 d rtnl_net_newid.__msg.8
-ffffffc008a1f238 d rtnl_net_newid.__msg.9
-ffffffc008a1f25f d rtnl_net_newid.__msg.10
-ffffffc008a1f282 d __nlmsg_parse.__msg
-ffffffc008a1f298 d __nlmsg_parse.__msg
-ffffffc008a1f2ae d __nlmsg_parse.__msg
-ffffffc008a1f2c4 d __nlmsg_parse.__msg
-ffffffc008a1f2da d __nlmsg_parse.__msg
-ffffffc008a1f2f0 d __nlmsg_parse.__msg
-ffffffc008a1f306 d __nlmsg_parse.__msg
-ffffffc008a1f31c d __nlmsg_parse.__msg
-ffffffc008a1f332 d __nlmsg_parse.__msg
-ffffffc008a1f348 d __nlmsg_parse.__msg
-ffffffc008a1f35e d __nlmsg_parse.__msg
-ffffffc008a1f374 d __nlmsg_parse.__msg
-ffffffc008a1f38a d __nlmsg_parse.__msg
-ffffffc008a1f3a0 d rtnl_net_getid.__msg
-ffffffc008a1f3c0 d rtnl_net_getid.__msg.11
-ffffffc008a1f3e0 d rtnl_net_getid.__msg.12
-ffffffc008a1f402 d rtnl_net_valid_getid_req.__msg
-ffffffc008a1f434 d rtnl_valid_dump_net_req.__msg
-ffffffc008a1f458 d rtnl_valid_dump_net_req.__msg.13
-ffffffc008a1f5b0 d flow_keys_dissector_keys
-ffffffc008a1f640 d flow_keys_dissector_symmetric_keys
-ffffffc008a1f690 d flow_keys_basic_dissector_keys
-ffffffc008a1f6b0 d dev_validate_mtu.__msg
-ffffffc008a1f6cd d dev_validate_mtu.__msg.57
-ffffffc008a1f6f0 d default_ethtool_ops
-ffffffc008a1f920 d skb_warn_bad_offload.null_features
-ffffffc008a1f928 d dev_xdp_attach.__msg.106
-ffffffc008a1f94a d dev_xdp_attach.__msg.107
-ffffffc008a1f980 d dev_xdp_attach.__msg.109
-ffffffc008a1f9a2 d dev_xdp_attach.__msg.110
-ffffffc008a1f9db d dev_xdp_attach.__msg.112
-ffffffc008a1fa02 d dev_xdp_attach.__msg.118
-ffffffc008a1fbc8 D dst_default_metrics
-ffffffc008a1fc50 d neigh_stat_seq_ops
-ffffffc008a1fc70 d __neigh_update.__msg
-ffffffc008a1fc8b d __neigh_update.__msg.15
-ffffffc008a1fca7 d neigh_add.__msg
-ffffffc008a1fcc5 d neigh_add.__msg.39
-ffffffc008a1fcda d neigh_add.__msg.40
-ffffffc008a1fcf2 d neigh_add.__msg.41
-ffffffc008a1fd11 d neigh_add.__msg.42
-ffffffc008a1fd26 d neigh_add.__msg.43
-ffffffc008a1fd4d d neigh_delete.__msg
-ffffffc008a1fd6b d neigh_delete.__msg.44
-ffffffc008a1fd83 d neigh_get.__msg
-ffffffc008a1fd9a d neigh_get.__msg.45
-ffffffc008a1fdb8 d neigh_get.__msg.46
-ffffffc008a1fdd8 d neigh_get.__msg.47
-ffffffc008a1fdec d neigh_get.__msg.48
-ffffffc008a1fe06 d neigh_valid_get_req.__msg
-ffffffc008a1fe2e d neigh_valid_get_req.__msg.49
-ffffffc008a1fe60 d neigh_valid_get_req.__msg.50
-ffffffc008a1fe91 d neigh_valid_get_req.__msg.51
-ffffffc008a1fec7 d neigh_valid_get_req.__msg.52
-ffffffc008a1fef7 d neigh_valid_get_req.__msg.53
-ffffffc008a1ff25 d neigh_valid_dump_req.__msg
-ffffffc008a1ff4e d neigh_valid_dump_req.__msg.54
-ffffffc008a1ff81 d neigh_valid_dump_req.__msg.55
-ffffffc008a1ffb3 d neigh_valid_dump_req.__msg.56
-ffffffc008a1ffe2 d neightbl_valid_dump_info.__msg
-ffffffc008a20011 d neightbl_valid_dump_info.__msg.57
-ffffffc008a2004a d neightbl_valid_dump_info.__msg.58
-ffffffc008a20088 d nl_neightbl_policy
-ffffffc008a20128 d nl_ntbl_parm_policy
-ffffffc008a20268 D nda_policy
-ffffffc008a203b5 d rtnl_create_link.__msg
-ffffffc008a203d7 d rtnl_create_link.__msg.2
-ffffffc008a203f8 d ifla_policy
-ffffffc008a20808 d rtnetlink_rcv_msg.__msg
-ffffffc008a20825 d rtnl_valid_getlink_req.__msg
-ffffffc008a20841 d rtnl_valid_getlink_req.__msg.9
-ffffffc008a2086f d rtnl_valid_getlink_req.__msg.10
-ffffffc008a20899 d rtnl_ensure_unique_netns.__msg
-ffffffc008a208c1 d rtnl_ensure_unique_netns.__msg.11
-ffffffc008a208f1 d rtnl_dump_ifinfo.__msg
-ffffffc008a20915 d rtnl_dump_ifinfo.__msg.12
-ffffffc008a20940 d rtnl_valid_dump_ifinfo_req.__msg
-ffffffc008a2095d d rtnl_valid_dump_ifinfo_req.__msg.13
-ffffffc008a2098c d rtnl_valid_dump_ifinfo_req.__msg.14
-ffffffc008a209c0 d ifla_info_policy
-ffffffc008a20a20 d ifla_vf_policy
-ffffffc008a20b00 d ifla_port_policy
-ffffffc008a20b80 d do_set_proto_down.__msg
-ffffffc008a20ba8 d ifla_proto_down_reason_policy
-ffffffc008a20bd8 d do_set_proto_down.__msg.16
-ffffffc008a20bf7 d do_set_proto_down.__msg.17
-ffffffc008a20c20 d ifla_xdp_policy
-ffffffc008a20cb0 d __rtnl_newlink.__msg
-ffffffc008a20cc4 d rtnl_newlink_create.__msg
-ffffffc008a20ce1 d rtnl_alt_ifname.__msg
-ffffffc008a20d02 d rtnl_fdb_add.__msg
-ffffffc008a20d12 d rtnl_fdb_add.__msg.20
-ffffffc008a20d22 d rtnl_fdb_add.__msg.21
-ffffffc008a20d32 d rtnl_fdb_add.__msg.22
-ffffffc008a20d5e d fdb_vid_parse.__msg
-ffffffc008a20d7a d fdb_vid_parse.__msg.23
-ffffffc008a20d8a d rtnl_fdb_del.__msg
-ffffffc008a20d9a d rtnl_fdb_del.__msg.24
-ffffffc008a20daa d rtnl_fdb_del.__msg.25
-ffffffc008a20dba d rtnl_fdb_del.__msg.26
-ffffffc008a20df0 d fdb_del_bulk_policy
-ffffffc008a20f10 d rtnl_fdb_get.__msg
-ffffffc008a20f3b d rtnl_fdb_get.__msg.28
-ffffffc008a20f52 d rtnl_fdb_get.__msg.29
-ffffffc008a20f7b d rtnl_fdb_get.__msg.30
-ffffffc008a20f92 d rtnl_fdb_get.__msg.31
-ffffffc008a20fae d rtnl_fdb_get.__msg.32
-ffffffc008a20fc9 d rtnl_fdb_get.__msg.33
-ffffffc008a20fda d rtnl_fdb_get.__msg.34
-ffffffc008a20fee d rtnl_fdb_get.__msg.35
-ffffffc008a21018 d valid_fdb_get_strict.__msg
-ffffffc008a2103b d valid_fdb_get_strict.__msg.36
-ffffffc008a21068 d valid_fdb_get_strict.__msg.37
-ffffffc008a21094 d valid_fdb_get_strict.__msg.38
-ffffffc008a210b7 d valid_fdb_get_strict.__msg.39
-ffffffc008a210e0 d valid_fdb_dump_strict.__msg
-ffffffc008a21104 d valid_fdb_dump_strict.__msg.40
-ffffffc008a21132 d valid_fdb_dump_strict.__msg.41
-ffffffc008a21160 d valid_fdb_dump_strict.__msg.42
-ffffffc008a2118d d valid_fdb_dump_strict.__msg.43
-ffffffc008a211b7 d valid_bridge_getlink_req.__msg
-ffffffc008a211db d valid_bridge_getlink_req.__msg.44
-ffffffc008a21211 d valid_bridge_getlink_req.__msg.45
-ffffffc008a21243 d rtnl_bridge_dellink.__msg
-ffffffc008a21253 d rtnl_bridge_setlink.__msg
-ffffffc008a21263 d rtnl_stats_get.__msg
-ffffffc008a21289 d rtnl_valid_stats_req.__msg
-ffffffc008a212a7 d rtnl_valid_stats_req.__msg.46
-ffffffc008a212d7 d rtnl_valid_stats_req.__msg.47
-ffffffc008a21308 d rtnl_stats_get_policy
-ffffffc008a21338 d rtnl_stats_get_policy_filters
-ffffffc008a21398 d rtnl_stats_get_parse_filters.__msg
-ffffffc008a213c6 d nla_parse_nested.__msg
-ffffffc008a213de d nla_parse_nested.__msg
-ffffffc008a213f6 d nla_parse_nested.__msg
-ffffffc008a2140e d nla_parse_nested.__msg
-ffffffc008a21426 d nla_parse_nested.__msg
-ffffffc008a2143e d nla_parse_nested.__msg
-ffffffc008a21456 d rtnl_stats_dump.__msg
-ffffffc008a2147d d rtnl_stats_set.__msg
-ffffffc008a214a0 d rtnl_stats_set.__msg.49
-ffffffc008a214c8 d ifla_stats_set_policy
-ffffffc008a22d68 D bpf_xdp_get_buff_len_trace_proto
-ffffffc008a22dc8 D bpf_skb_output_proto
-ffffffc008a22e28 D bpf_xdp_output_proto
-ffffffc008a22e88 D bpf_get_socket_ptr_cookie_proto
-ffffffc008a22ee8 D bpf_sk_setsockopt_proto
-ffffffc008a22f48 D bpf_sk_getsockopt_proto
-ffffffc008a22fa8 D bpf_unlocked_sk_setsockopt_proto
-ffffffc008a23008 D bpf_unlocked_sk_getsockopt_proto
-ffffffc008a23068 D bpf_tcp_sock_proto
-ffffffc008a230c8 D sk_filter_verifier_ops
-ffffffc008a230f8 D sk_filter_prog_ops
-ffffffc008a23100 D tc_cls_act_verifier_ops
-ffffffc008a23130 D tc_cls_act_prog_ops
-ffffffc008a23138 D xdp_verifier_ops
-ffffffc008a23168 D xdp_prog_ops
-ffffffc008a23170 D cg_skb_verifier_ops
-ffffffc008a231a0 D cg_skb_prog_ops
-ffffffc008a231a8 D lwt_in_verifier_ops
-ffffffc008a231d8 D lwt_in_prog_ops
-ffffffc008a231e0 D lwt_out_verifier_ops
-ffffffc008a23210 D lwt_out_prog_ops
-ffffffc008a23218 D lwt_xmit_verifier_ops
-ffffffc008a23248 D lwt_xmit_prog_ops
-ffffffc008a23250 D lwt_seg6local_verifier_ops
-ffffffc008a23280 D lwt_seg6local_prog_ops
-ffffffc008a23288 D cg_sock_verifier_ops
-ffffffc008a232b8 D cg_sock_prog_ops
-ffffffc008a232c0 D cg_sock_addr_verifier_ops
-ffffffc008a232f0 D cg_sock_addr_prog_ops
-ffffffc008a232f8 D sock_ops_verifier_ops
-ffffffc008a23328 D sock_ops_prog_ops
-ffffffc008a23330 D sk_skb_verifier_ops
-ffffffc008a23360 D sk_skb_prog_ops
-ffffffc008a23368 D sk_msg_verifier_ops
-ffffffc008a23398 D sk_msg_prog_ops
-ffffffc008a233a0 D flow_dissector_verifier_ops
-ffffffc008a233d0 D flow_dissector_prog_ops
-ffffffc008a233d8 D sk_reuseport_verifier_ops
-ffffffc008a23408 D sk_reuseport_prog_ops
-ffffffc008a23410 D sk_lookup_prog_ops
-ffffffc008a23418 D sk_lookup_verifier_ops
-ffffffc008a23448 D bpf_skc_to_tcp6_sock_proto
-ffffffc008a234a8 D bpf_skc_to_tcp_sock_proto
-ffffffc008a23508 D bpf_skc_to_tcp_timewait_sock_proto
-ffffffc008a23568 D bpf_skc_to_tcp_request_sock_proto
-ffffffc008a235c8 D bpf_skc_to_udp6_sock_proto
-ffffffc008a23628 D bpf_skc_to_unix_sock_proto
-ffffffc008a23688 D bpf_skc_to_mptcp_sock_proto
-ffffffc008a236e8 D bpf_sock_from_file_proto
-ffffffc008a23748 V bpf_event_output_data_proto
-ffffffc008a237a8 V bpf_sk_storage_get_cg_sock_proto
-ffffffc008a23808 V bpf_sk_storage_get_proto
-ffffffc008a23868 V bpf_sk_storage_delete_proto
-ffffffc008a238c8 V bpf_sock_map_update_proto
-ffffffc008a23928 V bpf_sock_hash_update_proto
-ffffffc008a23988 V bpf_msg_redirect_map_proto
-ffffffc008a239e8 V bpf_msg_redirect_hash_proto
-ffffffc008a23a48 V bpf_sk_redirect_map_proto
-ffffffc008a23aa8 V bpf_sk_redirect_hash_proto
-ffffffc008a23b08 d chk_code_allowed.codes
-ffffffc008a23bc0 d bpf_skb_load_bytes_proto
-ffffffc008a23c20 d bpf_skb_load_bytes_relative_proto
-ffffffc008a23c80 d bpf_get_socket_cookie_proto
-ffffffc008a23ce0 d bpf_get_socket_uid_proto
-ffffffc008a23d40 d bpf_skb_event_output_proto
-ffffffc008a23da0 d bpf_skb_store_bytes_proto
-ffffffc008a23e00 d bpf_skb_pull_data_proto
-ffffffc008a23e60 d bpf_csum_diff_proto
-ffffffc008a23ec0 d bpf_csum_update_proto
-ffffffc008a23f20 d bpf_csum_level_proto
-ffffffc008a23f80 d bpf_l3_csum_replace_proto
-ffffffc008a23fe0 d bpf_l4_csum_replace_proto
-ffffffc008a24040 d bpf_clone_redirect_proto
-ffffffc008a240a0 d bpf_get_cgroup_classid_proto
-ffffffc008a24100 d bpf_skb_vlan_push_proto
-ffffffc008a24160 d bpf_skb_vlan_pop_proto
-ffffffc008a241c0 d bpf_skb_change_proto_proto
-ffffffc008a24220 d bpf_skb_change_type_proto
-ffffffc008a24280 d bpf_skb_adjust_room_proto
-ffffffc008a242e0 d bpf_skb_change_tail_proto
-ffffffc008a24340 d bpf_skb_change_head_proto
-ffffffc008a243a0 d bpf_skb_get_tunnel_key_proto
-ffffffc008a24400 d bpf_skb_get_tunnel_opt_proto
-ffffffc008a24460 d bpf_redirect_proto
-ffffffc008a244c0 d bpf_redirect_neigh_proto
-ffffffc008a24520 d bpf_redirect_peer_proto
-ffffffc008a24580 d bpf_get_route_realm_proto
-ffffffc008a245e0 d bpf_get_hash_recalc_proto
-ffffffc008a24640 d bpf_set_hash_invalid_proto
-ffffffc008a246a0 d bpf_set_hash_proto
-ffffffc008a24700 d bpf_skb_under_cgroup_proto
-ffffffc008a24760 d bpf_skb_fib_lookup_proto
-ffffffc008a247c0 d bpf_skb_check_mtu_proto
-ffffffc008a24820 d bpf_sk_fullsock_proto
-ffffffc008a24880 d bpf_skb_get_xfrm_state_proto
-ffffffc008a248e0 d bpf_sk_lookup_tcp_proto
-ffffffc008a24940 d bpf_sk_lookup_udp_proto
-ffffffc008a249a0 d bpf_sk_release_proto
-ffffffc008a24a00 d bpf_get_listener_sock_proto
-ffffffc008a24a60 d bpf_skc_lookup_tcp_proto
-ffffffc008a24ac0 d bpf_tcp_check_syncookie_proto
-ffffffc008a24b20 d bpf_skb_ecn_set_ce_proto
-ffffffc008a24b80 d bpf_tcp_gen_syncookie_proto
-ffffffc008a24be0 d bpf_sk_assign_proto
-ffffffc008a24c40 d bpf_skb_set_tstamp_proto
-ffffffc008a24ca0 d bpf_skb_set_tunnel_key_proto
-ffffffc008a24d00 d bpf_skb_set_tunnel_opt_proto
-ffffffc008a24d60 d bpf_xdp_event_output_proto
-ffffffc008a24dc0 d bpf_xdp_adjust_head_proto
-ffffffc008a24e20 d bpf_xdp_adjust_meta_proto
-ffffffc008a24e80 d bpf_xdp_redirect_proto
-ffffffc008a24ee0 d bpf_xdp_redirect_map_proto
-ffffffc008a24f40 d bpf_xdp_adjust_tail_proto
-ffffffc008a24fa0 d bpf_xdp_get_buff_len_proto
-ffffffc008a25000 d bpf_xdp_load_bytes_proto
-ffffffc008a25060 d bpf_xdp_store_bytes_proto
-ffffffc008a250c0 d bpf_xdp_fib_lookup_proto
-ffffffc008a25120 d bpf_xdp_check_mtu_proto
-ffffffc008a25180 d bpf_xdp_sk_lookup_udp_proto
-ffffffc008a251e0 d bpf_xdp_sk_lookup_tcp_proto
-ffffffc008a25240 d bpf_xdp_skc_lookup_tcp_proto
-ffffffc008a252a0 d bpf_lwt_in_push_encap_proto
-ffffffc008a25300 d bpf_lwt_xmit_push_encap_proto
-ffffffc008a25360 d bpf_get_socket_cookie_sock_proto
-ffffffc008a253c0 d bpf_get_netns_cookie_sock_proto
-ffffffc008a25420 d bpf_bind_proto
-ffffffc008a25480 d bpf_get_socket_cookie_sock_addr_proto
-ffffffc008a254e0 d bpf_get_netns_cookie_sock_addr_proto
-ffffffc008a25540 d bpf_sock_addr_sk_lookup_tcp_proto
-ffffffc008a255a0 d bpf_sock_addr_sk_lookup_udp_proto
-ffffffc008a25600 d bpf_sock_addr_skc_lookup_tcp_proto
-ffffffc008a25660 d bpf_sock_addr_setsockopt_proto
-ffffffc008a256c0 d bpf_sock_addr_getsockopt_proto
-ffffffc008a25720 d bpf_sock_ops_setsockopt_proto
-ffffffc008a25780 d bpf_sock_ops_getsockopt_proto
-ffffffc008a257e0 d bpf_sock_ops_cb_flags_set_proto
-ffffffc008a25840 d bpf_get_socket_cookie_sock_ops_proto
-ffffffc008a258a0 d bpf_get_netns_cookie_sock_ops_proto
-ffffffc008a25900 d bpf_sock_ops_load_hdr_opt_proto
-ffffffc008a25960 d bpf_sock_ops_store_hdr_opt_proto
-ffffffc008a259c0 d bpf_sock_ops_reserve_hdr_opt_proto
-ffffffc008a25a20 d sk_skb_pull_data_proto
-ffffffc008a25a80 d sk_skb_change_tail_proto
-ffffffc008a25ae0 d sk_skb_change_head_proto
-ffffffc008a25b40 d sk_skb_adjust_room_proto
-ffffffc008a25ba0 d bpf_msg_apply_bytes_proto
-ffffffc008a25c00 d bpf_msg_cork_bytes_proto
-ffffffc008a25c60 d bpf_msg_pull_data_proto
-ffffffc008a25cc0 d bpf_msg_push_data_proto
-ffffffc008a25d20 d bpf_msg_pop_data_proto
-ffffffc008a25d80 d bpf_get_netns_cookie_sk_msg_proto
-ffffffc008a25de0 d bpf_flow_dissector_load_bytes_proto
-ffffffc008a25e40 d sk_select_reuseport_proto
-ffffffc008a25ea0 d sk_reuseport_load_bytes_proto
-ffffffc008a25f00 d sk_reuseport_load_bytes_relative_proto
-ffffffc008a25f60 d bpf_sk_lookup_assign_proto
-ffffffc008a266a8 d mem_id_rht_params
-ffffffc008a266f8 d dql_group
-ffffffc008a26720 D net_ns_type_operations
-ffffffc008a26750 d netstat_group
-ffffffc008a26778 d wireless_group
-ffffffc008a267a0 d rx_queue_sysfs_ops
-ffffffc008a267b0 d rx_queue_default_group
-ffffffc008a267d8 d netdev_queue_sysfs_ops
-ffffffc008a267e8 d netdev_queue_default_group
-ffffffc008a26818 d net_class_group
-ffffffc008a26840 d fmt_hex
-ffffffc008a26848 d operstates
-ffffffc008a26880 d fmt_u64
-ffffffc008a26888 d dev_seq_ops
-ffffffc008a268a8 d softnet_seq_ops
-ffffffc008a268c8 d ptype_seq_ops
-ffffffc008a268e8 d dev_mc_seq_ops
-ffffffc008a26908 d fib_nl_newrule.__msg
-ffffffc008a2691b d fib_nl_newrule.__msg.2
-ffffffc008a26935 d fib_nl_newrule.__msg.3
-ffffffc008a26947 d fib_nl_delrule.__msg
-ffffffc008a2695a d fib_nl_delrule.__msg.4
-ffffffc008a26974 d fib_nl_delrule.__msg.5
-ffffffc008a26988 d fib_rule_policy
-ffffffc008a26b18 d fib_nl2rule.__msg
-ffffffc008a26b2f d fib_nl2rule.__msg.7
-ffffffc008a26b43 d fib_nl2rule.__msg.8
-ffffffc008a26b53 d fib_nl2rule.__msg.9
-ffffffc008a26b6f d fib_nl2rule.__msg.10
-ffffffc008a26b93 d fib_nl2rule.__msg.11
-ffffffc008a26bbb d fib_nl2rule.__msg.12
-ffffffc008a26bd4 d fib_nl2rule.__msg.13
-ffffffc008a26be6 d fib_nl2rule.__msg.14
-ffffffc008a26bfa d fib_nl2rule.__msg.15
-ffffffc008a26c0e d fib_nl2rule_l3mdev.__msg
-ffffffc008a26c36 d fib_valid_dumprule_req.__msg
-ffffffc008a26c5f d fib_valid_dumprule_req.__msg.17
-ffffffc008a26c92 d fib_valid_dumprule_req.__msg.18
-ffffffc008a26cc5 d str__skb__trace_system_name
-ffffffc008a26cc9 d str__net__trace_system_name
-ffffffc008a26ccd d str__sock__trace_system_name
-ffffffc008a26cd2 d str__udp__trace_system_name
-ffffffc008a26cd6 d str__tcp__trace_system_name
-ffffffc008a26cda d str__fib__trace_system_name
-ffffffc008a26cde d str__bridge__trace_system_name
-ffffffc008a26ce5 d str__neigh__trace_system_name
-ffffffc008a26cf0 d trace_raw_output_kfree_skb.symbols
-ffffffc008a27118 d trace_raw_output_sock_exceed_buf_limit.symbols
-ffffffc008a27148 d trace_raw_output_inet_sock_set_state.symbols
-ffffffc008a27178 d trace_raw_output_inet_sock_set_state.symbols.241
-ffffffc008a271c8 d trace_raw_output_inet_sock_set_state.symbols.242
-ffffffc008a27298 d trace_raw_output_inet_sock_set_state.symbols.243
-ffffffc008a27368 d trace_raw_output_inet_sk_error_report.symbols
-ffffffc008a27398 d trace_raw_output_inet_sk_error_report.symbols.246
-ffffffc008a273e8 d trace_raw_output_tcp_event_sk_skb.symbols
-ffffffc008a27418 d trace_raw_output_tcp_event_sk_skb.symbols.251
-ffffffc008a274e8 d trace_raw_output_tcp_event_sk.symbols
-ffffffc008a27518 d trace_raw_output_tcp_retransmit_synack.symbols
-ffffffc008a27548 d trace_raw_output_tcp_probe.symbols
-ffffffc008a27580 d trace_raw_output_neigh_update.symbols
-ffffffc008a27610 d trace_raw_output_neigh_update.symbols.346
-ffffffc008a276a0 d trace_raw_output_neigh__update.symbols
-ffffffc008a27840 D eth_header_ops
-ffffffc008a27870 d qdisc_alloc.__msg
-ffffffc008a27888 d mq_class_ops
-ffffffc008a27950 d netlink_ops
-ffffffc008a27a30 d netlink_rhashtable_params
-ffffffc008a27a58 d netlink_family_ops
-ffffffc008a27a78 d netlink_seq_ops
-ffffffc008a27a98 d genl_ctrl_ops
-ffffffc008a27af8 d genl_ctrl_groups
-ffffffc008a27b10 d ctrl_policy_family
-ffffffc008a27b40 d ctrl_policy_policy
-ffffffc008a27c20 d genl_header_check.__msg
-ffffffc008a27c43 d genl_header_check.__msg.6
-ffffffc008a28088 D link_mode_params
-ffffffc008a28370 D netif_msg_class_names
-ffffffc008a28550 D wol_mode_names
-ffffffc008a28650 D sof_timestamping_names
-ffffffc008a28850 D ts_tx_type_names
-ffffffc008a288d0 D ts_rx_filter_names
-ffffffc008a28ad0 D udp_tunnel_type_names
-ffffffc008a28b30 D netdev_features_strings
-ffffffc008a29330 D rss_hash_func_strings
-ffffffc008a29390 D tunable_strings
-ffffffc008a29430 D phy_tunable_strings
-ffffffc008a294b0 D link_mode_names
-ffffffc008a2a050 D ethnl_header_policy
-ffffffc008a2a090 D ethnl_header_policy_stats
-ffffffc008a2a0d0 d ethnl_parse_header_dev_get.__msg
-ffffffc008a2a0e7 d ethnl_parse_header_dev_get.__msg.1
-ffffffc008a2a101 d ethnl_parse_header_dev_get.__msg.2
-ffffffc008a2a11f d ethnl_parse_header_dev_get.__msg.3
-ffffffc008a2a136 d ethnl_parse_header_dev_get.__msg.4
-ffffffc008a2a159 d ethnl_reply_init.__msg
-ffffffc008a2a178 d ethnl_notify_handlers
-ffffffc008a2a2a0 d ethnl_default_notify_ops
-ffffffc008a2a3d0 d ethtool_genl_ops
-ffffffc008a2aac0 d ethtool_nl_mcgrps
-ffffffc008a2aad8 d ethnl_default_requests
-ffffffc008a2ac08 d ethnl_parse_bitset.__msg
-ffffffc008a2ac2d d ethnl_parse_bitset.__msg.1
-ffffffc008a2ac58 d bitset_policy
-ffffffc008a2acb8 d ethnl_update_bitset32_verbose.__msg
-ffffffc008a2acdd d ethnl_update_bitset32_verbose.__msg.3
-ffffffc008a2ad01 d ethnl_update_bitset32_verbose.__msg.4
-ffffffc008a2ad41 d ethnl_compact_sanity_checks.__msg
-ffffffc008a2ad61 d ethnl_compact_sanity_checks.__msg.5
-ffffffc008a2ad80 d ethnl_compact_sanity_checks.__msg.6
-ffffffc008a2ada0 d ethnl_compact_sanity_checks.__msg.7
-ffffffc008a2adc7 d ethnl_compact_sanity_checks.__msg.8
-ffffffc008a2adef d ethnl_compact_sanity_checks.__msg.9
-ffffffc008a2ae16 d ethnl_compact_sanity_checks.__msg.10
-ffffffc008a2ae48 d bit_policy
-ffffffc008a2ae88 d ethnl_parse_bit.__msg
-ffffffc008a2ae9b d ethnl_parse_bit.__msg.11
-ffffffc008a2aeb7 d ethnl_parse_bit.__msg.12
-ffffffc008a2aeca d ethnl_parse_bit.__msg.13
-ffffffc008a2aef0 D ethnl_strset_get_policy
-ffffffc008a2af30 D ethnl_strset_request_ops
-ffffffc008a2af68 d strset_stringsets_policy
-ffffffc008a2af88 d strset_parse_request.__msg
-ffffffc008a2afa0 d get_stringset_policy
-ffffffc008a2afc0 d info_template
-ffffffc008a2b110 d strset_prepare_data.__msg
-ffffffc008a2b140 D ethnl_linkinfo_get_policy
-ffffffc008a2b160 D ethnl_linkinfo_request_ops
-ffffffc008a2b198 D ethnl_linkinfo_set_policy
-ffffffc008a2b1f8 d ethnl_set_linkinfo.__msg
-ffffffc008a2b219 d ethnl_set_linkinfo.__msg.1
-ffffffc008a2b235 d linkinfo_prepare_data.__msg
-ffffffc008a2b258 D ethnl_linkmodes_get_policy
-ffffffc008a2b278 D ethnl_linkmodes_request_ops
-ffffffc008a2b2b0 D ethnl_linkmodes_set_policy
-ffffffc008a2b350 d ethnl_set_linkmodes.__msg
-ffffffc008a2b371 d ethnl_set_linkmodes.__msg.1
-ffffffc008a2b38d d linkmodes_prepare_data.__msg
-ffffffc008a2b3ae d ethnl_check_linkmodes.__msg
-ffffffc008a2b3cc d ethnl_check_linkmodes.__msg.2
-ffffffc008a2b3e3 d ethnl_update_linkmodes.__msg
-ffffffc008a2b416 d ethnl_update_linkmodes.__msg.3
-ffffffc008a2b448 D ethnl_linkstate_get_policy
-ffffffc008a2b468 D ethnl_linkstate_request_ops
-ffffffc008a2b4a0 D ethnl_debug_get_policy
-ffffffc008a2b4c0 D ethnl_debug_request_ops
-ffffffc008a2b4f8 D ethnl_debug_set_policy
-ffffffc008a2b528 D ethnl_wol_get_policy
-ffffffc008a2b548 D ethnl_wol_request_ops
-ffffffc008a2b580 D ethnl_wol_set_policy
-ffffffc008a2b5d4 d ethnl_set_wol.__msg
-ffffffc008a2b5f7 d ethnl_set_wol.__msg.1
-ffffffc008a2b628 D ethnl_features_get_policy
-ffffffc008a2b648 D ethnl_features_request_ops
-ffffffc008a2b680 D ethnl_features_set_policy
-ffffffc008a2b6c0 d ethnl_set_features.__msg
-ffffffc008a2b6e7 d features_send_reply.__msg
-ffffffc008a2b708 D ethnl_privflags_get_policy
-ffffffc008a2b728 D ethnl_privflags_request_ops
-ffffffc008a2b760 D ethnl_privflags_set_policy
-ffffffc008a2b790 D ethnl_rings_get_policy
-ffffffc008a2b7b0 D ethnl_rings_request_ops
-ffffffc008a2b7e8 D ethnl_rings_set_policy
-ffffffc008a2b8c8 d ethnl_set_rings.__msg
-ffffffc008a2b8e9 d ethnl_set_rings.__msg.1
-ffffffc008a2b908 d ethnl_set_rings.__msg.2
-ffffffc008a2b926 d ethnl_set_rings.__msg.3
-ffffffc008a2b950 D ethnl_channels_get_policy
-ffffffc008a2b970 D ethnl_channels_request_ops
-ffffffc008a2b9a8 D ethnl_channels_set_policy
-ffffffc008a2ba48 d ethnl_set_channels.__msg
-ffffffc008a2ba70 d ethnl_set_channels.__msg.1
-ffffffc008a2babe d ethnl_set_channels.__msg.2
-ffffffc008a2bb10 D ethnl_coalesce_get_policy
-ffffffc008a2bb30 D ethnl_coalesce_request_ops
-ffffffc008a2bb68 D ethnl_coalesce_set_policy
-ffffffc008a2bd08 d ethnl_set_coalesce.__msg
-ffffffc008a2bd30 D ethnl_pause_get_policy
-ffffffc008a2bd50 D ethnl_pause_request_ops
-ffffffc008a2bd88 D ethnl_pause_set_policy
-ffffffc008a2bdd8 D ethnl_eee_get_policy
-ffffffc008a2bdf8 D ethnl_eee_request_ops
-ffffffc008a2be30 D ethnl_eee_set_policy
-ffffffc008a2beb0 D ethnl_tsinfo_get_policy
-ffffffc008a2bed0 D ethnl_tsinfo_request_ops
-ffffffc008a2bf08 D ethnl_cable_test_act_policy
-ffffffc008a2bf28 D ethnl_cable_test_tdr_act_policy
-ffffffc008a2bf58 d cable_test_tdr_act_cfg_policy
-ffffffc008a2bfa8 d ethnl_act_cable_test_tdr_cfg.__msg
-ffffffc008a2bfbf d ethnl_act_cable_test_tdr_cfg.__msg.1
-ffffffc008a2bfd7 d ethnl_act_cable_test_tdr_cfg.__msg.2
-ffffffc008a2bfee d ethnl_act_cable_test_tdr_cfg.__msg.3
-ffffffc008a2c00b d ethnl_act_cable_test_tdr_cfg.__msg.4
-ffffffc008a2c022 d ethnl_act_cable_test_tdr_cfg.__msg.5
-ffffffc008a2c040 D ethnl_tunnel_info_get_policy
-ffffffc008a2c060 d ethnl_tunnel_info_reply_size.__msg
-ffffffc008a2c090 D ethnl_fec_get_policy
-ffffffc008a2c0b0 D ethnl_fec_request_ops
-ffffffc008a2c0e8 D ethnl_fec_set_policy
-ffffffc008a2c128 d ethnl_set_fec.__msg
-ffffffc008a2c144 d ethnl_set_fec.__msg.1
-ffffffc008a2c158 D ethnl_module_eeprom_request_ops
-ffffffc008a2c190 D ethnl_module_eeprom_get_policy
-ffffffc008a2c200 d eeprom_parse_request.__msg
-ffffffc008a2c238 d eeprom_parse_request.__msg.1
-ffffffc008a2c264 d eeprom_parse_request.__msg.2
-ffffffc008a2c28b D stats_std_names
-ffffffc008a2c30b D stats_eth_phy_names
-ffffffc008a2c32b D stats_eth_mac_names
-ffffffc008a2c5eb D stats_eth_ctrl_names
-ffffffc008a2c64b D stats_rmon_names
-ffffffc008a2c6d0 D ethnl_stats_get_policy
-ffffffc008a2c710 D ethnl_stats_request_ops
-ffffffc008a2c748 d stats_parse_request.__msg
-ffffffc008a2c760 D ethnl_phc_vclocks_get_policy
-ffffffc008a2c780 D ethnl_phc_vclocks_request_ops
-ffffffc008a2c7b8 D ethnl_module_get_policy
-ffffffc008a2c7d8 D ethnl_module_request_ops
-ffffffc008a2c810 D ethnl_module_set_policy
-ffffffc008a2c840 d module_set_power_mode.__msg
-ffffffc008a2c880 D ethnl_pse_get_policy
-ffffffc008a2c8a0 D ethnl_pse_request_ops
-ffffffc008a2c8d8 D ethnl_pse_set_policy
-ffffffc008a2c928 d pse_get_pse_attributes.__msg
-ffffffc008a2c93b d pse_get_pse_attributes.__msg.1
-ffffffc008a2c94e d pse_set_pse_config.__msg
-ffffffc008a2c961 d pse_set_pse_config.__msg.2
-ffffffc008a2c974 D ip_tos2prio
-ffffffc008a2c988 d rt_cache_seq_ops
-ffffffc008a2c9a8 d rt_cpu_seq_ops
-ffffffc008a2c9c8 d inet_rtm_valid_getroute_req.__msg
-ffffffc008a2c9f3 d inet_rtm_valid_getroute_req.__msg.15
-ffffffc008a2ca28 d inet_rtm_valid_getroute_req.__msg.16
-ffffffc008a2ca5a d inet_rtm_valid_getroute_req.__msg.17
-ffffffc008a2ca90 d inet_rtm_valid_getroute_req.__msg.18
-ffffffc008a2cac1 d ipv4_route_flush_procname
-ffffffc008a2cac7 d ip_frag_cache_name
-ffffffc008a2cad8 d ip4_rhash_params
-ffffffc008a2cde0 d tcp_vm_ops
-ffffffc008a2cf80 D tcp_request_sock_ipv4_ops
-ffffffc008a2cfa8 D ipv4_specific
-ffffffc008a2d000 d tcp4_seq_ops
-ffffffc008a2d020 d tcp_metrics_nl_ops
-ffffffc008a2d050 d tcp_metrics_nl_policy
-ffffffc008a2d148 d tcpv4_offload.llvm.11141352021969888563
-ffffffc008a2d168 d raw_seq_ops
-ffffffc008a2d1d8 D udp_seq_ops
-ffffffc008a2d1f8 d udplite_protocol
-ffffffc008a2d210 d udpv4_offload.llvm.11753955602471872112
-ffffffc008a2d258 d arp_direct_ops
-ffffffc008a2d280 d arp_hh_ops
-ffffffc008a2d2a8 d arp_generic_ops
-ffffffc008a2d2d0 d arp_seq_ops
-ffffffc008a2d2f0 D icmp_err_convert
-ffffffc008a2d370 d icmp_pointers
-ffffffc008a2d598 d inet_af_policy
-ffffffc008a2d5b8 d ifa_ipv4_policy
-ffffffc008a2d678 d inet_valid_dump_ifaddr_req.__msg
-ffffffc008a2d6a6 d inet_valid_dump_ifaddr_req.__msg.44
-ffffffc008a2d6de d inet_valid_dump_ifaddr_req.__msg.45
-ffffffc008a2d708 d inet_valid_dump_ifaddr_req.__msg.46
-ffffffc008a2d734 d inet_netconf_valid_get_req.__msg
-ffffffc008a2d768 d devconf_ipv4_policy
-ffffffc008a2d7f8 d inet_netconf_valid_get_req.__msg.47
-ffffffc008a2d82b d inet_netconf_dump_devconf.__msg
-ffffffc008a2d859 d inet_netconf_dump_devconf.__msg.48
-ffffffc008a2d9c0 D inet_stream_ops
-ffffffc008a2daa0 D inet_dgram_ops
-ffffffc008a2db80 d ipip_offload
-ffffffc008a2dba0 d inet_family_ops
-ffffffc008a2dbb8 d icmp_protocol
-ffffffc008a2dbd0 d udp_protocol
-ffffffc008a2dbe8 d tcp_protocol
-ffffffc008a2dc00 d igmp_protocol
-ffffffc008a2dc18 d inet_sockraw_ops
-ffffffc008a2dd18 d igmp_mc_seq_ops
-ffffffc008a2dd38 d igmp_mcf_seq_ops
-ffffffc008a2ddd0 D rtm_ipv4_policy
-ffffffc008a2dfc0 d fib_gw_from_via.__msg
-ffffffc008a2dfe5 d fib_gw_from_via.__msg.1
-ffffffc008a2e005 d fib_gw_from_via.__msg.2
-ffffffc008a2e025 d fib_gw_from_via.__msg.3
-ffffffc008a2e04b d ip_valid_fib_dump_req.__msg
-ffffffc008a2e06f d ip_valid_fib_dump_req.__msg.5
-ffffffc008a2e09d d ip_valid_fib_dump_req.__msg.6
-ffffffc008a2e0c0 d ip_valid_fib_dump_req.__msg.7
-ffffffc008a2e118 d rtm_to_fib_config.__msg
-ffffffc008a2e142 d rtm_to_fib_config.__msg.12
-ffffffc008a2e155 d rtm_to_fib_config.__msg.13
-ffffffc008a2e191 d rtm_to_fib_config.__msg.14
-ffffffc008a2e1cc d lwtunnel_valid_encap_type.__msg
-ffffffc008a2e1fa d lwtunnel_valid_encap_type.__msg
-ffffffc008a2e228 d lwtunnel_valid_encap_type.__msg
-ffffffc008a2e256 d inet_rtm_delroute.__msg
-ffffffc008a2e270 d inet_rtm_delroute.__msg.15
-ffffffc008a2e2a8 d inet_dump_fib.__msg
-ffffffc008a2e2c8 D fib_props
-ffffffc008a2e328 d fib_nh_common_init.__msg
-ffffffc008a2e345 d fib_create_info.__msg
-ffffffc008a2e353 d fib_create_info.__msg.1
-ffffffc008a2e388 d fib_create_info.__msg.2
-ffffffc008a2e3a2 d fib_create_info.__msg.3
-ffffffc008a2e3bb d fib_create_info.__msg.4
-ffffffc008a2e402 d fib_create_info.__msg.5
-ffffffc008a2e415 d fib_create_info.__msg.6
-ffffffc008a2e423 d fib_create_info.__msg.7
-ffffffc008a2e458 d fib_create_info.__msg.8
-ffffffc008a2e485 d fib_create_info.__msg.9
-ffffffc008a2e49d d fib_check_nh_v4_gw.__msg
-ffffffc008a2e4b7 d fib_check_nh_v4_gw.__msg.10
-ffffffc008a2e4da d fib_check_nh_v4_gw.__msg.11
-ffffffc008a2e4f3 d fib_check_nh_v4_gw.__msg.12
-ffffffc008a2e50f d fib_check_nh_v4_gw.__msg.13
-ffffffc008a2e52b d fib_check_nh_v4_gw.__msg.14
-ffffffc008a2e547 d fib_check_nh_v4_gw.__msg.15
-ffffffc008a2e56c d fib_check_nh_nongw.__msg
-ffffffc008a2e5ac d fib_check_nh_nongw.__msg.16
-ffffffc008a2e5c9 d fib_get_nhs.__msg
-ffffffc008a2e5f8 d fib_trie_seq_ops
-ffffffc008a2e618 d fib_route_seq_ops
-ffffffc008a2e638 d fib_valid_key_len.__msg
-ffffffc008a2e64e d fib_valid_key_len.__msg.5
-ffffffc008a2e678 d rtn_type_names
-ffffffc008a2e6d8 d fib4_notifier_ops_template
-ffffffc008a2e718 D ip_frag_ecn_table
-ffffffc008a2e750 d ping_v4_seq_ops
-ffffffc008a2e770 D ip_tunnel_header_ops
-ffffffc008a2e7a0 d gre_offload
-ffffffc008a2e7c0 d ip_metrics_convert.__msg
-ffffffc008a2e7d4 d ip_metrics_convert.__msg.1
-ffffffc008a2e7f5 d ip_metrics_convert.__msg.2
-ffffffc008a2e812 d ip_metrics_convert.__msg.3
-ffffffc008a2e848 d rtm_getroute_parse_ip_proto.__msg
-ffffffc008a2e863 d fib6_check_nexthop.__msg
-ffffffc008a2e887 d fib6_check_nexthop.__msg.1
-ffffffc008a2e8af d fib_check_nexthop.__msg
-ffffffc008a2e8d3 d fib_check_nexthop.__msg.2
-ffffffc008a2e908 d fib_check_nexthop.__msg.3
-ffffffc008a2e92c d check_src_addr.__msg
-ffffffc008a2e969 d nexthop_check_scope.__msg
-ffffffc008a2e996 d nexthop_check_scope.__msg.4
-ffffffc008a2e9b2 d call_nexthop_notifiers.__msg
-ffffffc008a2e9e0 d rtm_nh_policy_new
-ffffffc008a2eab0 d rtm_to_nh_config.__msg
-ffffffc008a2ead3 d rtm_to_nh_config.__msg.8
-ffffffc008a2eafd d rtm_to_nh_config.__msg.10
-ffffffc008a2eb14 d rtm_to_nh_config.__msg.11
-ffffffc008a2eb4f d rtm_to_nh_config.__msg.12
-ffffffc008a2eb7d d rtm_to_nh_config.__msg.13
-ffffffc008a2eb96 d rtm_to_nh_config.__msg.14
-ffffffc008a2eba9 d rtm_to_nh_config.__msg.15
-ffffffc008a2ebed d rtm_to_nh_config.__msg.16
-ffffffc008a2ec2e d rtm_to_nh_config.__msg.17
-ffffffc008a2ec43 d rtm_to_nh_config.__msg.18
-ffffffc008a2ec5c d rtm_to_nh_config.__msg.19
-ffffffc008a2ec7f d rtm_to_nh_config.__msg.20
-ffffffc008a2ec8f d rtm_to_nh_config.__msg.21
-ffffffc008a2ec9f d rtm_to_nh_config.__msg.22
-ffffffc008a2ecc2 d rtm_to_nh_config.__msg.23
-ffffffc008a2ecfb d rtm_to_nh_config.__msg.24
-ffffffc008a2ed1d d rtm_to_nh_config.__msg.25
-ffffffc008a2ed44 d nh_check_attr_group.__msg
-ffffffc008a2ed6f d nh_check_attr_group.__msg.26
-ffffffc008a2ed98 d nh_check_attr_group.__msg.27
-ffffffc008a2edb1 d nh_check_attr_group.__msg.28
-ffffffc008a2eddd d nh_check_attr_group.__msg.29
-ffffffc008a2edf0 d nh_check_attr_group.__msg.30
-ffffffc008a2ee1f d nh_check_attr_group.__msg.31
-ffffffc008a2ee50 d valid_group_nh.__msg
-ffffffc008a2ee89 d valid_group_nh.__msg.32
-ffffffc008a2eebd d valid_group_nh.__msg.33
-ffffffc008a2ef00 d nh_check_attr_fdb_group.__msg
-ffffffc008a2ef2d d nh_check_attr_fdb_group.__msg.34
-ffffffc008a2ef68 d rtm_nh_res_policy_new
-ffffffc008a2efa8 d rtm_to_nh_config_grp_res.__msg
-ffffffc008a2efcc d rtm_nh_get_timer.__msg
-ffffffc008a2efe2 d nexthop_add.__msg
-ffffffc008a2effe d nexthop_add.__msg.35
-ffffffc008a2f00b d insert_nexthop.__msg
-ffffffc008a2f040 d insert_nexthop.__msg.36
-ffffffc008a2f07c d replace_nexthop.__msg
-ffffffc008a2f0c5 d replace_nexthop_grp.__msg
-ffffffc008a2f0f5 d replace_nexthop_grp.__msg.37
-ffffffc008a2f133 d replace_nexthop_grp.__msg.38
-ffffffc008a2f172 d call_nexthop_res_table_notifiers.__msg
-ffffffc008a2f19d d replace_nexthop_single.__msg
-ffffffc008a2f1d0 d rtm_nh_policy_get
-ffffffc008a2f1f0 d __nh_valid_get_del_req.__msg
-ffffffc008a2f209 d __nh_valid_get_del_req.__msg.39
-ffffffc008a2f21f d __nh_valid_get_del_req.__msg.40
-ffffffc008a2f238 d rtm_nh_policy_dump
-ffffffc008a2f2f8 d __nh_valid_dump_req.__msg
-ffffffc008a2f30d d __nh_valid_dump_req.__msg.41
-ffffffc008a2f329 d __nh_valid_dump_req.__msg.42
-ffffffc008a2f35b d rtm_get_nexthop_bucket.__msg
-ffffffc008a2f378 d rtm_nh_policy_get_bucket
-ffffffc008a2f458 d nh_valid_get_bucket_req.__msg
-ffffffc008a2f478 d rtm_nh_res_bucket_policy_get
-ffffffc008a2f498 d nh_valid_get_bucket_req_res_bucket.__msg
-ffffffc008a2f4b0 d nexthop_find_group_resilient.__msg
-ffffffc008a2f4c4 d nexthop_find_group_resilient.__msg.43
-ffffffc008a2f4e8 d rtm_nh_policy_dump_bucket
-ffffffc008a2f5c8 d rtm_nh_res_bucket_policy_dump
-ffffffc008a2f608 d nh_valid_dump_nhid.__msg
-ffffffc008a2f630 d snmp4_net_list
-ffffffc008a2fe10 d snmp4_ipextstats_list
-ffffffc008a2ff40 d fib4_rule_configure.__msg
-ffffffc008a2ff6a d fib4_rule_configure.__msg.1
-ffffffc008a2ff76 d __param_str_log_ecn_error
-ffffffc008a2ff89 d __param_str_log_ecn_error
-ffffffc008a2ff9e d __param_str_log_ecn_error
-ffffffc008a2ffb0 d __param_str_log_ecn_error
-ffffffc008a2ffc9 d __param_str_log_ecn_error
-ffffffc008a2ffe0 d ipip_policy
-ffffffc008a30130 d ipip_netdev_ops
-ffffffc008a30390 d ipip_tpi
-ffffffc008a303a0 d ipip_tpi
-ffffffc008a303b0 d net_gre_protocol
-ffffffc008a303c8 d ipgre_protocol
-ffffffc008a303d8 d ipgre_policy
-ffffffc008a30568 d gre_tap_netdev_ops
-ffffffc008a307c8 d ipgre_netdev_ops
-ffffffc008a30a28 d ipgre_header_ops
-ffffffc008a30a58 d erspan_netdev_ops
-ffffffc008a30cb8 d vti_policy
-ffffffc008a30d28 d vti_netdev_ops
-ffffffc008a30f88 d esp_type
-ffffffc008a30fc0 d esp_init_state.__msg
-ffffffc008a30fe4 d esp_init_state.__msg.4
-ffffffc008a3100b d esp_init_aead.__msg
-ffffffc008a31026 d esp_init_aead.__msg
-ffffffc008a31041 d esp_init_aead.__msg.6
-ffffffc008a3107a d esp_init_aead.__msg.6
-ffffffc008a310b3 d esp_init_authenc.__msg
-ffffffc008a310ce d esp_init_authenc.__msg
-ffffffc008a310e9 d esp_init_authenc.__msg.13
-ffffffc008a31104 d esp_init_authenc.__msg.13
-ffffffc008a3111f d esp_init_authenc.__msg.14
-ffffffc008a31158 d esp_init_authenc.__msg.14
-ffffffc008a31191 d esp_init_authenc.__msg.15
-ffffffc008a311ca d esp_init_authenc.__msg.15
-ffffffc008a31203 d esp_init_authenc.__msg.16
-ffffffc008a3123c d esp_init_authenc.__msg.16
-ffffffc008a31278 d tunnel64_protocol
-ffffffc008a31290 d tunnel4_protocol
-ffffffc008a312c8 d inet6_diag_handler
-ffffffc008a312e8 d inet_diag_handler
-ffffffc008a31368 d tcp_diag_handler
-ffffffc008a313a0 d udplite_diag_handler
-ffffffc008a313d8 d udp_diag_handler
-ffffffc008a31410 d __param_str_fast_convergence
-ffffffc008a3142b d __param_str_beta
-ffffffc008a3143a d __param_str_initial_ssthresh
-ffffffc008a31455 d __param_str_bic_scale
-ffffffc008a31469 d __param_str_tcp_friendliness
-ffffffc008a31484 d __param_str_hystart
-ffffffc008a31496 d __param_str_hystart_detect
-ffffffc008a314af d __param_str_hystart_low_window
-ffffffc008a314cc d __param_str_hystart_ack_delta_us
-ffffffc008a314eb d cubic_root.v
-ffffffc008a31530 d xfrm4_policy_afinfo
-ffffffc008a31558 d xfrm4_input_afinfo.llvm.3570133116230810083
-ffffffc008a31568 d esp4_protocol
-ffffffc008a31580 d ah4_protocol
-ffffffc008a31598 d ipcomp4_protocol
-ffffffc008a31620 d xfrm_pol_inexact_params
-ffffffc008a319d8 d __xfrm_init_state.__msg
-ffffffc008a319f1 d __xfrm_init_state.__msg.1
-ffffffc008a31a26 d __xfrm_init_state.__msg.2
-ffffffc008a31a3f d __xfrm_init_state.__msg.3
-ffffffc008a31a58 d __xfrm_init_state.__msg.4
-ffffffc008a31a71 d xfrm4_mode_map
-ffffffc008a31a80 d xfrm6_mode_map
-ffffffc008a31ab8 d xfrm_init_replay.__msg
-ffffffc008a31af2 d xfrm_init_replay.__msg.1
-ffffffc008a31b20 d xfrm_mib_list
-ffffffc008a31da0 D xfrm_msg_min
-ffffffc008a31e08 D xfrma_policy
-ffffffc008a32018 d verify_newpolicy_info.__msg
-ffffffc008a3202d d verify_newpolicy_info.__msg.1
-ffffffc008a32043 d verify_newpolicy_info.__msg.2
-ffffffc008a3207e d verify_newpolicy_info.__msg.3
-ffffffc008a320ba d verify_newpolicy_info.__msg.4
-ffffffc008a320d2 d verify_newpolicy_info.__msg.5
-ffffffc008a320f7 d verify_policy_dir.__msg
-ffffffc008a32110 d validate_tmpl.__msg
-ffffffc008a3213d d validate_tmpl.__msg.6
-ffffffc008a3216e d validate_tmpl.__msg.7
-ffffffc008a3219b d validate_tmpl.__msg.8
-ffffffc008a321b6 d validate_tmpl.__msg.9
-ffffffc008a32208 d xfrm_dispatch
-ffffffc008a326b8 d xfrma_spd_policy
-ffffffc008a32708 d verify_newsa_info.__msg
-ffffffc008a3271f d verify_newsa_info.__msg.11
-ffffffc008a3275a d verify_newsa_info.__msg.12
-ffffffc008a32796 d verify_newsa_info.__msg.13
-ffffffc008a327b9 d verify_newsa_info.__msg.14
-ffffffc008a327ef d verify_newsa_info.__msg.15
-ffffffc008a32824 d verify_newsa_info.__msg.16
-ffffffc008a32844 d verify_newsa_info.__msg.17
-ffffffc008a32896 d verify_newsa_info.__msg.18
-ffffffc008a328ed d verify_newsa_info.__msg.19
-ffffffc008a32919 d verify_newsa_info.__msg.20
-ffffffc008a32943 d verify_newsa_info.__msg.21
-ffffffc008a32986 d verify_newsa_info.__msg.22
-ffffffc008a329b4 d verify_newsa_info.__msg.23
-ffffffc008a329db d verify_newsa_info.__msg.24
-ffffffc008a32a11 d verify_newsa_info.__msg.25
-ffffffc008a32a26 d verify_newsa_info.__msg.26
-ffffffc008a32a37 d verify_newsa_info.__msg.27
-ffffffc008a32a6f d verify_aead.__msg
-ffffffc008a32a8d d verify_auth_trunc.__msg
-ffffffc008a32ab1 d verify_one_alg.__msg
-ffffffc008a32ada d verify_sec_ctx_len.__msg
-ffffffc008a32afa d verify_replay.__msg
-ffffffc008a32b1d d verify_replay.__msg.29
-ffffffc008a32b3e d verify_replay.__msg.30
-ffffffc008a32b77 d verify_replay.__msg.31
-ffffffc008a32b99 d verify_replay.__msg.32
-ffffffc008a32bc6 d attach_aead.__msg
-ffffffc008a32be9 d attach_auth_trunc.__msg
-ffffffc008a32c12 d attach_auth_trunc.__msg.33
-ffffffc008a32c3d d attach_auth.__msg
-ffffffc008a32c60 d attach_crypt.__msg
-ffffffc008a32c84 d attach_one_algo.__msg
-ffffffc008a32ca7 d verify_policy_type.__msg
-ffffffc008a32cbb d ipcomp_init_state.__msg
-ffffffc008a32ce2 d ipcomp_init_state.__msg.1
-ffffffc008a32d10 d xfrmi_netdev_ops
-ffffffc008a32f70 d xfrmi_policy
-ffffffc008a32fb0 d xfrmi_newlink.__msg
-ffffffc008a32fcc d xfrmi_newlink.__msg.5
-ffffffc008a32fe3 d xfrmi_changelink.__msg
-ffffffc008a32ffa d xfrmi_changelink.__msg.6
-ffffffc008a33016 d xfrmi_changelink.__msg.7
-ffffffc008a33040 d xfrm_if_cb
-ffffffc008a33050 d unix_seq_ops
-ffffffc008a33070 d unix_family_ops
-ffffffc008a33088 d unix_stream_ops
-ffffffc008a33168 d unix_dgram_ops
-ffffffc008a33248 d unix_seqpacket_ops
-ffffffc008a333d8 d __param_str_disable
-ffffffc008a333e5 d __param_str_disable_ipv6
-ffffffc008a333f7 d __param_str_autoconf
-ffffffc008a33408 d inet6_family_ops
-ffffffc008a33420 d ipv6_stub_impl
-ffffffc008a334d8 d ipv6_bpf_stub_impl
-ffffffc008a334f8 D inet6_stream_ops
-ffffffc008a335d8 D inet6_dgram_ops
-ffffffc008a336b8 d ac6_seq_ops
-ffffffc008a337b8 d if6_seq_ops
-ffffffc008a337d8 d addrconf_sysctl
-ffffffc008a34658 d two_five_five
-ffffffc008a34660 d inet6_af_policy
-ffffffc008a34700 d inet6_set_iftoken.__msg
-ffffffc008a34719 d inet6_set_iftoken.__msg.86
-ffffffc008a34746 d inet6_set_iftoken.__msg.87
-ffffffc008a34777 d inet6_set_iftoken.__msg.88
-ffffffc008a347a1 d inet6_valid_dump_ifinfo.__msg
-ffffffc008a347cc d inet6_valid_dump_ifinfo.__msg.89
-ffffffc008a347ec d inet6_valid_dump_ifinfo.__msg.90
-ffffffc008a34820 d ifa_ipv6_policy
-ffffffc008a348e0 d inet6_rtm_newaddr.__msg
-ffffffc008a34918 d inet6_rtm_valid_getaddr_req.__msg
-ffffffc008a34945 d inet6_rtm_valid_getaddr_req.__msg.91
-ffffffc008a3497c d inet6_rtm_valid_getaddr_req.__msg.92
-ffffffc008a349af d inet6_valid_dump_ifaddr_req.__msg
-ffffffc008a349dd d inet6_valid_dump_ifaddr_req.__msg.93
-ffffffc008a34a15 d inet6_valid_dump_ifaddr_req.__msg.94
-ffffffc008a34a3f d inet6_valid_dump_ifaddr_req.__msg.95
-ffffffc008a34a6b d inet6_netconf_valid_get_req.__msg
-ffffffc008a34a98 d devconf_ipv6_policy
-ffffffc008a34b28 d inet6_netconf_valid_get_req.__msg.96
-ffffffc008a34b5b d inet6_netconf_dump_devconf.__msg
-ffffffc008a34b89 d inet6_netconf_dump_devconf.__msg.97
-ffffffc008a34bc8 d ifal_policy
-ffffffc008a34bf8 d ip6addrlbl_valid_get_req.__msg
-ffffffc008a34c27 d ip6addrlbl_valid_get_req.__msg.9
-ffffffc008a34c60 d ip6addrlbl_valid_get_req.__msg.10
-ffffffc008a34c95 d ip6addrlbl_valid_dump_req.__msg
-ffffffc008a34cc9 d ip6addrlbl_valid_dump_req.__msg.11
-ffffffc008a34d07 d ip6addrlbl_valid_dump_req.__msg.12
-ffffffc008a34d4a d str__fib6__trace_system_name
-ffffffc008a34d4f d fib6_nh_init.__msg
-ffffffc008a34d72 d fib6_nh_init.__msg.1
-ffffffc008a34d8b d fib6_nh_init.__msg.2
-ffffffc008a34dae d fib6_nh_init.__msg.3
-ffffffc008a34dc8 d fib6_prop
-ffffffc008a34df8 d ip6_validate_gw.__msg
-ffffffc008a34e1b d ip6_validate_gw.__msg.32
-ffffffc008a34e33 d ip6_validate_gw.__msg.33
-ffffffc008a34e4f d ip6_validate_gw.__msg.34
-ffffffc008a34e87 d ip6_validate_gw.__msg.35
-ffffffc008a34eaa d ip6_route_check_nh_onlink.__msg
-ffffffc008a34ed9 d ip6_route_info_create.__msg
-ffffffc008a34ef8 d ip6_route_info_create.__msg.36
-ffffffc008a34f18 d ip6_route_info_create.__msg.37
-ffffffc008a34f2b d ip6_route_info_create.__msg.38
-ffffffc008a34f41 d ip6_route_info_create.__msg.39
-ffffffc008a34f5f d ip6_route_info_create.__msg.40
-ffffffc008a34f9e d ip6_route_info_create.__msg.41
-ffffffc008a34fb8 d ip6_route_info_create.__msg.43
-ffffffc008a34fe5 d ip6_route_info_create.__msg.44
-ffffffc008a34ffe d ip6_route_info_create.__msg.45
-ffffffc008a35015 d ip6_route_del.__msg
-ffffffc008a35030 d fib6_null_entry_template
-ffffffc008a350d8 d ip6_null_entry_template
-ffffffc008a351c0 d ip6_template_metrics
-ffffffc008a35208 d ip6_prohibit_entry_template
-ffffffc008a352f0 d ip6_blk_hole_entry_template
-ffffffc008a353d8 d rtm_to_fib6_config.__msg
-ffffffc008a3540d d rtm_to_fib6_config.__msg.60
-ffffffc008a35449 d rtm_to_fib6_config.__msg.61
-ffffffc008a35478 d rtm_ipv6_policy
-ffffffc008a35668 d ip6_route_multipath_add.__msg
-ffffffc008a356ae d ip6_route_multipath_add.__msg.63
-ffffffc008a356e0 d ip6_route_multipath_add.__msg.64
-ffffffc008a3572d d fib6_gw_from_attr.__msg
-ffffffc008a35751 d inet6_rtm_delroute.__msg
-ffffffc008a3576b d inet6_rtm_valid_getroute_req.__msg
-ffffffc008a35796 d inet6_rtm_valid_getroute_req.__msg.65
-ffffffc008a357cb d inet6_rtm_valid_getroute_req.__msg.66
-ffffffc008a357f5 d inet6_rtm_valid_getroute_req.__msg.67
-ffffffc008a3582c d inet6_rtm_valid_getroute_req.__msg.68
-ffffffc008a35870 D ipv6_route_seq_ops
-ffffffc008a35890 d fib6_add_1.__msg
-ffffffc008a358b7 d fib6_add_1.__msg.5
-ffffffc008a358de d inet6_dump_fib.__msg
-ffffffc008a35c30 d ndisc_direct_ops
-ffffffc008a35c58 d ndisc_hh_ops
-ffffffc008a35c80 d ndisc_generic_ops
-ffffffc008a35ca8 d ndisc_allow_add.__msg
-ffffffc008a35cc8 D udp6_seq_ops
-ffffffc008a35ce8 d udpv6_protocol.llvm.9913964578181900507
-ffffffc008a35d00 d udplitev6_protocol.llvm.14437120263099764322
-ffffffc008a35d18 D inet6_sockraw_ops
-ffffffc008a35df8 d raw6_seq_ops
-ffffffc008a360a0 d icmpv6_protocol.llvm.1368796449358034995
-ffffffc008a360b8 d tab_unreach
-ffffffc008a360f0 d igmp6_mc_seq_ops
-ffffffc008a36110 d igmp6_mcf_seq_ops
-ffffffc008a36130 d ip6_frag_cache_name
-ffffffc008a36140 d ip6_rhash_params
-ffffffc008a36168 d frag_protocol
-ffffffc008a36180 D tcp_request_sock_ipv6_ops
-ffffffc008a361a8 D ipv6_specific
-ffffffc008a36200 d tcp6_seq_ops
-ffffffc008a36220 d tcpv6_protocol.llvm.15915789915913877141
-ffffffc008a36238 d ipv6_mapped
-ffffffc008a36290 d ping_v6_seq_ops
-ffffffc008a362b0 d rthdr_protocol.llvm.3847476208427795014
-ffffffc008a362c8 d destopt_protocol.llvm.3847476208427795014
-ffffffc008a362e0 d nodata_protocol.llvm.3847476208427795014
-ffffffc008a36400 d ip6fl_seq_ops
-ffffffc008a36420 d udpv6_offload.llvm.270510906152393565
-ffffffc008a36440 d seg6_genl_policy
-ffffffc008a364c0 d seg6_genl_ops
-ffffffc008a36580 d fib6_notifier_ops_template
-ffffffc008a365c0 d rht_ns_params
-ffffffc008a365e8 d rht_sc_params
-ffffffc008a36610 d ioam6_genl_ops
-ffffffc008a36760 d ioam6_genl_policy_addns
-ffffffc008a367a0 d ioam6_genl_policy_delns
-ffffffc008a367c0 d ioam6_genl_policy_addsc
-ffffffc008a36820 d ioam6_genl_policy_delsc
-ffffffc008a36870 d ioam6_genl_policy_ns_sc
-ffffffc008a368e0 d xfrm6_policy_afinfo.llvm.18395030132298963905
-ffffffc008a36908 d xfrm6_input_afinfo.llvm.5847106438338651049
-ffffffc008a36918 d esp6_protocol
-ffffffc008a36930 d ah6_protocol
-ffffffc008a36948 d ipcomp6_protocol
-ffffffc008a36960 d fib6_rule_configure.__msg
-ffffffc008a3698a d fib6_rule_configure.__msg.1
-ffffffc008a36998 d snmp6_ipstats_list
-ffffffc008a36ba8 d snmp6_icmp6_list
-ffffffc008a36c08 d icmp6type2name
-ffffffc008a37408 d snmp6_udp6_list
-ffffffc008a374a8 d snmp6_udplite6_list
-ffffffc008a37538 d esp6_type
-ffffffc008a37570 d esp6_init_state.__msg
-ffffffc008a37594 d esp6_init_state.__msg.4
-ffffffc008a375c0 d ipcomp6_type
-ffffffc008a375f8 d ipcomp6_init_state.__msg
-ffffffc008a37619 d ipcomp6_init_state.__msg.1
-ffffffc008a37658 d xfrm6_tunnel_type
-ffffffc008a37690 d xfrm6_tunnel_init_state.__msg
-ffffffc008a376be d xfrm6_tunnel_init_state.__msg.1
-ffffffc008a376f0 d tunnel6_input_afinfo
-ffffffc008a37700 d tunnel46_protocol
-ffffffc008a37718 d tunnel6_protocol
-ffffffc008a37730 d mip6_rthdr_type
-ffffffc008a37768 d mip6_destopt_type
-ffffffc008a377a0 d mip6_rthdr_init_state.__msg
-ffffffc008a377ae d mip6_rthdr_init_state.__msg.1
-ffffffc008a377dc d mip6_destopt_init_state.__msg
-ffffffc008a377ea d mip6_destopt_init_state.__msg.2
-ffffffc008a37848 d vti6_policy
-ffffffc008a378b8 d vti6_netdev_ops
-ffffffc008a37b28 d ipip6_policy
-ffffffc008a37c78 d ipip6_netdev_ops
-ffffffc008a37ef8 d ip6_tnl_policy
-ffffffc008a38048 d ip6_tnl_netdev_ops
-ffffffc008a382a8 d tpi_v4
-ffffffc008a382b8 d tpi_v6
-ffffffc008a382e0 d ip6gre_policy
-ffffffc008a38470 d ip6gre_tap_netdev_ops
-ffffffc008a386d0 d ip6gre_netdev_ops
-ffffffc008a38930 d ip6gre_header_ops
-ffffffc008a38960 d ip6erspan_netdev_ops
-ffffffc008a38bc0 D in6addr_loopback
-ffffffc008a38bd0 D in6addr_any
-ffffffc008a38be0 D in6addr_linklocal_allnodes
-ffffffc008a38bf0 D in6addr_linklocal_allrouters
-ffffffc008a38c00 D in6addr_interfacelocal_allnodes
-ffffffc008a38c10 D in6addr_interfacelocal_allrouters
-ffffffc008a38c20 D in6addr_sitelocal_allrouters
-ffffffc008a38c30 d eafnosupport_fib6_nh_init.__msg
-ffffffc008a38c58 d sit_offload
-ffffffc008a38c78 d ip6ip6_offload
-ffffffc008a38c98 d ip4ip6_offload
-ffffffc008a38cb8 d tcpv6_offload.llvm.17960813922259317057
-ffffffc008a38cd8 d rthdr_offload
-ffffffc008a38cf8 d dstopt_offload
-ffffffc008a38e00 d packet_seq_ops
-ffffffc008a38e20 d packet_family_ops
-ffffffc008a38e38 d packet_ops
-ffffffc008a38f18 d packet_ops_spkt
-ffffffc008a38ff8 d packet_mmap_ops
-ffffffc008a39110 d pfkey_seq_ops
-ffffffc008a39130 d pfkey_family_ops
-ffffffc008a39148 d pfkey_ops
-ffffffc008a39228 d pfkey_funcs
-ffffffc008a392f0 d sadb_ext_min_len
-ffffffc008a3930c d dummy_mark
-ffffffc008a39360 d vsock_device_ops
-ffffffc008a39470 d vsock_family_ops
-ffffffc008a39488 d vsock_dgram_ops
-ffffffc008a39568 d vsock_stream_ops
-ffffffc008a39648 d vsock_seqpacket_ops
-ffffffc008a39728 d vsock_diag_handler
-ffffffc008a39778 d virtio_vsock_vqs_init.names
-ffffffc008a397e8 d str__vsock__trace_system_name
-ffffffc008a397ee d __param_str_virtio_transport_max_vsock_pkt_buf_size
-ffffffc008a39838 d trace_raw_output_virtio_transport_alloc_pkt.symbols
-ffffffc008a39868 d trace_raw_output_virtio_transport_alloc_pkt.symbols.23
-ffffffc008a398f8 d trace_raw_output_virtio_transport_recv_pkt.symbols
-ffffffc008a39928 d trace_raw_output_virtio_transport_recv_pkt.symbols.35
-ffffffc008a399e0 d aarch64_insn_encoding_class
-ffffffc008a39aec D _ctype
-ffffffc008a39bf8 D kobj_sysfs_ops
-ffffffc008a39c18 d kobject_actions
-ffffffc008a39c58 d zap_modalias_env.modalias_prefix
-ffffffc008a39c98 d uevent_net_rcv_skb.__msg
-ffffffc008a39cb9 d uevent_net_broadcast.__msg
-ffffffc008a39cd5 d str__maple_tree__trace_system_name
-ffffffc008a3a286 d decpair
-ffffffc008a3a34e d default_dec_spec
-ffffffc008a3a356 d default_flag_spec
-ffffffc008a3a360 d pff
-ffffffc008a3a400 D linux_banner
-ffffffc008a3a560 D __sched_class_highest
-ffffffc008a3a560 D stop_sched_class
-ffffffc008a3a628 D dl_sched_class
-ffffffc008a3a6f0 D rt_sched_class
-ffffffc008a3a7b8 D fair_sched_class
-ffffffc008a3a880 D idle_sched_class
-ffffffc008a3a948 D __sched_class_lowest
-ffffffc008a3a948 D __start_ro_after_init
-ffffffc008a3a948 D randomize_kstack_offset
-ffffffc008a3a958 D rodata_enabled
-ffffffc008a3a960 D handle_arch_irq
-ffffffc008a3a968 D handle_arch_fiq
-ffffffc008a3a970 D vl_info
-ffffffc008a3aab0 D signal_minsigstksz
-ffffffc008a3aab8 d aarch64_vdso_maps
-ffffffc008a3aaf8 d vdso_info.2
-ffffffc008a3ab00 d vdso_info.3
-ffffffc008a3ab08 d vdso_info.4
-ffffffc008a3ab10 d cpu_ops
-ffffffc008a3ac10 d no_override
-ffffffc008a3ac20 d cpu_hwcaps_ptrs
-ffffffc008a3aeb0 D id_aa64mmfr1_override
-ffffffc008a3aec0 D id_aa64pfr0_override
-ffffffc008a3aed0 D id_aa64pfr1_override
-ffffffc008a3aee0 D id_aa64zfr0_override
-ffffffc008a3aef0 D id_aa64smfr0_override
-ffffffc008a3af00 D id_aa64isar1_override
-ffffffc008a3af10 D id_aa64isar2_override
-ffffffc008a3af20 D module_alloc_base
-ffffffc008a3af28 d memory_limit
-ffffffc008a3af30 d disable_dma32
-ffffffc008a3af38 D memstart_addr
-ffffffc008a3af40 D arm64_dma_phys_limit
-ffffffc008a3af48 d protection_map
-ffffffc008a3afc8 D idmap_t0sz
-ffffffc008a3afd0 D kimage_vaddr
-ffffffc008a3afd8 D kimage_voffset
-ffffffc008a3afe0 D rodata_full
-ffffffc008a3afe4 d cpu_mitigations
-ffffffc008a3afe8 d notes_attr
-ffffffc008a3b028 d __printk_percpu_data_ready
-ffffffc008a3b02c D zone_dma_bits
-ffffffc008a3b030 d atomic_pool_kernel
-ffffffc008a3b038 d atomic_pool_dma
-ffffffc008a3b040 d atomic_pool_dma32
-ffffffc008a3b048 d kheaders_attr
-ffffffc008a3b088 d constraints_initialized
-ffffffc008a3b08c d __nr_bp_slots
-ffffffc008a3b098 D pcpu_base_addr
-ffffffc008a3b0a0 d pcpu_unit_size
-ffffffc008a3b0a8 D pcpu_chunk_lists
-ffffffc008a3b0b0 d pcpu_free_slot
-ffffffc008a3b0b4 d pcpu_low_unit_cpu
-ffffffc008a3b0b8 d pcpu_high_unit_cpu
-ffffffc008a3b0bc d pcpu_unit_pages
-ffffffc008a3b0c0 d pcpu_nr_units
-ffffffc008a3b0c4 d pcpu_nr_groups
-ffffffc008a3b0c8 d pcpu_group_offsets
-ffffffc008a3b0d0 d pcpu_group_sizes
-ffffffc008a3b0d8 d pcpu_unit_map
-ffffffc008a3b0e0 D pcpu_unit_offsets
-ffffffc008a3b0e8 d pcpu_atom_size
-ffffffc008a3b0f0 d pcpu_chunk_struct_size
-ffffffc008a3b0f8 D pcpu_sidelined_slot
-ffffffc008a3b0fc D pcpu_to_depopulate_slot
-ffffffc008a3b100 D pcpu_nr_slots
-ffffffc008a3b108 D pcpu_reserved_chunk
-ffffffc008a3b110 D pcpu_first_chunk
-ffffffc008a3b118 d size_index
-ffffffc008a3b130 D kmalloc_caches
-ffffffc008a3b280 d ioremap_max_page_shift
-ffffffc008a3b281 d vmap_allow_huge
-ffffffc008a3b282 d memmap_on_memory
-ffffffc008a3b284 d kasan_arg_fault
-ffffffc008a3b288 d kasan_arg
-ffffffc008a3b28c d kasan_arg_mode
-ffffffc008a3b290 D kasan_mode
-ffffffc008a3b294 d secretmem_enable
-ffffffc008a3b298 d bypass_usercopy_checks
-ffffffc008a3b2a8 d seq_file_cache
-ffffffc008a3b2b0 d proc_inode_cachep
-ffffffc008a3b2b8 d pde_opener_cache
-ffffffc008a3b2c0 d nlink_tid
-ffffffc008a3b2c1 d nlink_tgid
-ffffffc008a3b2c8 D proc_dir_entry_cache
-ffffffc008a3b2d0 d self_inum
-ffffffc008a3b2d4 d thread_self_inum
-ffffffc008a3b2d8 d debugfs_allow
-ffffffc008a3b2e0 d tracefs_ops.0
-ffffffc008a3b2e8 d tracefs_ops.1
-ffffffc008a3b2f0 d capability_hooks
-ffffffc008a3b5c0 D security_hook_heads
-ffffffc008a3bc20 d blob_sizes.0
-ffffffc008a3bc24 d blob_sizes.1
-ffffffc008a3bc28 d blob_sizes.2
-ffffffc008a3bc2c d blob_sizes.3
-ffffffc008a3bc30 d blob_sizes.4
-ffffffc008a3bc34 d blob_sizes.5
-ffffffc008a3bc38 d blob_sizes.6
-ffffffc008a3bc40 d avc_node_cachep
-ffffffc008a3bc48 d avc_xperms_cachep
-ffffffc008a3bc50 d avc_xperms_decision_cachep
-ffffffc008a3bc58 d avc_xperms_data_cachep
-ffffffc008a3bc60 d avc_callbacks
-ffffffc008a3bc68 d default_noexec
-ffffffc008a3bc70 d selinux_hooks
-ffffffc008a3d8b8 D selinux_blob_sizes
-ffffffc008a3d8d8 d selinuxfs_mount
-ffffffc008a3d8e0 D selinux_null
-ffffffc008a3d8f0 d selnl
-ffffffc008a3d8f8 d ebitmap_node_cachep
-ffffffc008a3d900 d hashtab_node_cachep
-ffffffc008a3d908 d avtab_xperms_cachep
-ffffffc008a3d910 d avtab_node_cachep
-ffffffc008a3d918 d aer_stats_attrs
-ffffffc008a3d950 d ptmx_fops
-ffffffc008a3da60 D smccc_trng_available
-ffffffc008a3da68 D smccc_has_sve_hint
-ffffffc008a3da70 d __kvm_arm_hyp_services
-ffffffc008a3da80 D arch_timer_read_counter
-ffffffc008a3da88 d arch_timer_rate
-ffffffc008a3da8c d arch_timer_uses_ppi
-ffffffc008a3da90 d evtstrm_enable
-ffffffc008a3da94 d arch_timer_ppi
-ffffffc008a3daa8 d arch_timer_c3stop
-ffffffc008a3daa9 d arch_counter_suspend_stop
-ffffffc008a3daaa d arch_timer_mem_use_virtual
-ffffffc008a3dab0 d cyclecounter
-ffffffc008a3dac8 d arch_timer_mem
-ffffffc008a3dad0 D initial_boot_params
-ffffffc008a3dad8 d sock_inode_cachep
-ffffffc008a3dae0 D skbuff_head_cache
-ffffffc008a3dae8 d skbuff_fclone_cache
-ffffffc008a3daf0 d skbuff_ext_cache
-ffffffc008a3daf8 d net_class
-ffffffc008a3db70 d rx_queue_ktype
-ffffffc008a3dba0 d rx_queue_default_attrs
-ffffffc008a3dbb8 d rps_cpus_attribute
-ffffffc008a3dbd8 d rps_dev_flow_table_cnt_attribute
-ffffffc008a3dbf8 d netdev_queue_ktype
-ffffffc008a3dc28 d netdev_queue_default_attrs
-ffffffc008a3dc58 d queue_trans_timeout
-ffffffc008a3dc78 d queue_traffic_class
-ffffffc008a3dc98 d xps_cpus_attribute
-ffffffc008a3dcb8 d xps_rxqs_attribute
-ffffffc008a3dcd8 d queue_tx_maxrate
-ffffffc008a3dcf8 d dql_attrs
-ffffffc008a3dd28 d bql_limit_attribute
-ffffffc008a3dd48 d bql_limit_max_attribute
-ffffffc008a3dd68 d bql_limit_min_attribute
-ffffffc008a3dd88 d bql_hold_time_attribute
-ffffffc008a3dda8 d bql_inflight_attribute
-ffffffc008a3ddc8 d net_class_attrs
-ffffffc008a3ded0 d netstat_attrs
-ffffffc008a3df98 d genl_ctrl
-ffffffc008a3e000 d ethtool_genl_family
-ffffffc008a3e068 d peer_cachep
-ffffffc008a3e070 d tcp_metrics_nl_family
-ffffffc008a3e0d8 d fn_alias_kmem
-ffffffc008a3e0e0 d trie_leaf_kmem
-ffffffc008a3e0e8 d xfrm_dst_cache
-ffffffc008a3e0f0 d xfrm_state_cache
-ffffffc008a3e0f8 d seg6_genl_family
-ffffffc008a3e160 d ioam6_genl_family
-ffffffc008a3e1c8 D vmlinux_build_id
-ffffffc008a3e1dc D no_hash_pointers
-ffffffc008a3e1e0 d debug_boot_weak_hash
-ffffffc008a3e1e8 D __start___jump_table
-ffffffc008a4fb38 D __end_ro_after_init
-ffffffc008a4fb38 D __start___tracepoints_ptrs
-ffffffc008a4fb38 D __stop___jump_table
-ffffffc008a504b0 D __stop___tracepoints_ptrs
-ffffffc008a504b0 d __tpstrtab_initcall_level
-ffffffc008a504bf d __tpstrtab_initcall_start
-ffffffc008a504ce d __tpstrtab_initcall_finish
-ffffffc008a504de d __tpstrtab_sys_enter
-ffffffc008a504e8 d __tpstrtab_sys_exit
-ffffffc008a504f1 d __tpstrtab_ipi_raise
-ffffffc008a504fb d __tpstrtab_ipi_entry
-ffffffc008a50505 d __tpstrtab_ipi_exit
-ffffffc008a5050e d __tpstrtab_task_newtask
-ffffffc008a5051b d __tpstrtab_task_rename
-ffffffc008a50527 d __tpstrtab_cpuhp_enter
-ffffffc008a50533 d __tpstrtab_cpuhp_multi_enter
-ffffffc008a50545 d __tpstrtab_cpuhp_exit
-ffffffc008a50550 d __tpstrtab_irq_handler_entry
-ffffffc008a50562 d __tpstrtab_irq_handler_exit
-ffffffc008a50573 d __tpstrtab_softirq_entry
-ffffffc008a50581 d __tpstrtab_softirq_exit
-ffffffc008a5058e d __tpstrtab_softirq_raise
-ffffffc008a5059c d __tpstrtab_tasklet_entry
-ffffffc008a505aa d __tpstrtab_tasklet_exit
-ffffffc008a505b7 d __tpstrtab_signal_generate
-ffffffc008a505c7 d __tpstrtab_signal_deliver
-ffffffc008a505d6 d __tpstrtab_workqueue_queue_work
-ffffffc008a505eb d __tpstrtab_workqueue_activate_work
-ffffffc008a50603 d __tpstrtab_workqueue_execute_start
-ffffffc008a5061b d __tpstrtab_workqueue_execute_end
-ffffffc008a50631 d __tpstrtab_sched_kthread_stop
-ffffffc008a50644 d __tpstrtab_sched_kthread_stop_ret
-ffffffc008a5065b d __tpstrtab_sched_kthread_work_queue_work
-ffffffc008a50679 d __tpstrtab_sched_kthread_work_execute_start
-ffffffc008a5069a d __tpstrtab_sched_kthread_work_execute_end
-ffffffc008a506b9 d __tpstrtab_sched_waking
-ffffffc008a506c6 d __tpstrtab_sched_wakeup
-ffffffc008a506d3 d __tpstrtab_sched_wakeup_new
-ffffffc008a506e4 d __tpstrtab_sched_switch
-ffffffc008a506f1 d __tpstrtab_sched_migrate_task
-ffffffc008a50704 d __tpstrtab_sched_process_free
-ffffffc008a50717 d __tpstrtab_sched_process_exit
-ffffffc008a5072a d __tpstrtab_sched_wait_task
-ffffffc008a5073a d __tpstrtab_sched_process_wait
-ffffffc008a5074d d __tpstrtab_sched_process_fork
-ffffffc008a50760 d __tpstrtab_sched_process_exec
-ffffffc008a50773 d __tpstrtab_sched_stat_wait
-ffffffc008a50783 d __tpstrtab_sched_stat_sleep
-ffffffc008a50794 d __tpstrtab_sched_stat_iowait
-ffffffc008a507a6 d __tpstrtab_sched_stat_blocked
-ffffffc008a507b9 d __tpstrtab_sched_blocked_reason
-ffffffc008a507ce d __tpstrtab_sched_stat_runtime
-ffffffc008a507e1 d __tpstrtab_sched_pi_setprio
-ffffffc008a507f2 d __tpstrtab_sched_process_hang
-ffffffc008a50805 d __tpstrtab_sched_move_numa
-ffffffc008a50815 d __tpstrtab_sched_stick_numa
-ffffffc008a50826 d __tpstrtab_sched_swap_numa
-ffffffc008a50836 d __tpstrtab_sched_wake_idle_without_ipi
-ffffffc008a50852 d __tpstrtab_pelt_cfs_tp
-ffffffc008a5085e d __tpstrtab_pelt_rt_tp
-ffffffc008a50869 d __tpstrtab_pelt_dl_tp
-ffffffc008a50874 d __tpstrtab_pelt_thermal_tp
-ffffffc008a50884 d __tpstrtab_pelt_irq_tp
-ffffffc008a50890 d __tpstrtab_pelt_se_tp
-ffffffc008a5089b d __tpstrtab_sched_cpu_capacity_tp
-ffffffc008a508b1 d __tpstrtab_sched_overutilized_tp
-ffffffc008a508c7 d __tpstrtab_sched_util_est_cfs_tp
-ffffffc008a508dd d __tpstrtab_sched_util_est_se_tp
-ffffffc008a508f2 d __tpstrtab_sched_update_nr_running_tp
-ffffffc008a5090d d __tpstrtab_contention_begin
-ffffffc008a5091e d __tpstrtab_contention_end
-ffffffc008a5092d d __tpstrtab_console
-ffffffc008a50935 d __tpstrtab_rcu_utilization
-ffffffc008a50945 d __tpstrtab_rcu_grace_period
-ffffffc008a50956 d __tpstrtab_rcu_future_grace_period
-ffffffc008a5096e d __tpstrtab_rcu_grace_period_init
-ffffffc008a50984 d __tpstrtab_rcu_exp_grace_period
-ffffffc008a50999 d __tpstrtab_rcu_exp_funnel_lock
-ffffffc008a509ad d __tpstrtab_rcu_nocb_wake
-ffffffc008a509bb d __tpstrtab_rcu_preempt_task
-ffffffc008a509cc d __tpstrtab_rcu_unlock_preempted_task
-ffffffc008a509e6 d __tpstrtab_rcu_quiescent_state_report
-ffffffc008a50a01 d __tpstrtab_rcu_fqs
-ffffffc008a50a09 d __tpstrtab_rcu_stall_warning
-ffffffc008a50a1b d __tpstrtab_rcu_dyntick
-ffffffc008a50a27 d __tpstrtab_rcu_callback
-ffffffc008a50a34 d __tpstrtab_rcu_segcb_stats
-ffffffc008a50a44 d __tpstrtab_rcu_kvfree_callback
-ffffffc008a50a58 d __tpstrtab_rcu_batch_start
-ffffffc008a50a68 d __tpstrtab_rcu_invoke_callback
-ffffffc008a50a7c d __tpstrtab_rcu_invoke_kvfree_callback
-ffffffc008a50a97 d __tpstrtab_rcu_invoke_kfree_bulk_callback
-ffffffc008a50ab6 d __tpstrtab_rcu_batch_end
-ffffffc008a50ac4 d __tpstrtab_rcu_torture_read
-ffffffc008a50ad5 d __tpstrtab_rcu_barrier
-ffffffc008a50ae1 d __tpstrtab_swiotlb_bounced
-ffffffc008a50af1 d __tpstrtab_timer_init
-ffffffc008a50afc d __tpstrtab_timer_start
-ffffffc008a50b08 d __tpstrtab_timer_expire_entry
-ffffffc008a50b1b d __tpstrtab_timer_expire_exit
-ffffffc008a50b2d d __tpstrtab_timer_cancel
-ffffffc008a50b3a d __tpstrtab_hrtimer_init
-ffffffc008a50b47 d __tpstrtab_hrtimer_start
-ffffffc008a50b55 d __tpstrtab_hrtimer_expire_entry
-ffffffc008a50b6a d __tpstrtab_hrtimer_expire_exit
-ffffffc008a50b7e d __tpstrtab_hrtimer_cancel
-ffffffc008a50b8d d __tpstrtab_itimer_state
-ffffffc008a50b9a d __tpstrtab_itimer_expire
-ffffffc008a50ba8 d __tpstrtab_tick_stop
-ffffffc008a50bb2 d __tpstrtab_alarmtimer_suspend
-ffffffc008a50bc5 d __tpstrtab_alarmtimer_fired
-ffffffc008a50bd6 d __tpstrtab_alarmtimer_start
-ffffffc008a50be7 d __tpstrtab_alarmtimer_cancel
-ffffffc008a50bf9 d __tpstrtab_error_report_end
-ffffffc008a50c0a d __tpstrtab_cpu_idle
-ffffffc008a50c13 d __tpstrtab_cpu_idle_miss
-ffffffc008a50c21 d __tpstrtab_powernv_throttle
-ffffffc008a50c32 d __tpstrtab_pstate_sample
-ffffffc008a50c40 d __tpstrtab_cpu_frequency
-ffffffc008a50c4e d __tpstrtab_cpu_frequency_limits
-ffffffc008a50c63 d __tpstrtab_device_pm_callback_start
-ffffffc008a50c7c d __tpstrtab_device_pm_callback_end
-ffffffc008a50c93 d __tpstrtab_suspend_resume
-ffffffc008a50ca2 d __tpstrtab_wakeup_source_activate
-ffffffc008a50cb9 d __tpstrtab_wakeup_source_deactivate
-ffffffc008a50cd2 d __tpstrtab_clock_enable
-ffffffc008a50cdf d __tpstrtab_clock_disable
-ffffffc008a50ced d __tpstrtab_clock_set_rate
-ffffffc008a50cfc d __tpstrtab_power_domain_target
-ffffffc008a50d10 d __tpstrtab_pm_qos_add_request
-ffffffc008a50d23 d __tpstrtab_pm_qos_update_request
-ffffffc008a50d39 d __tpstrtab_pm_qos_remove_request
-ffffffc008a50d4f d __tpstrtab_pm_qos_update_target
-ffffffc008a50d64 d __tpstrtab_pm_qos_update_flags
-ffffffc008a50d78 d __tpstrtab_dev_pm_qos_add_request
-ffffffc008a50d8f d __tpstrtab_dev_pm_qos_update_request
-ffffffc008a50da9 d __tpstrtab_dev_pm_qos_remove_request
-ffffffc008a50dc3 d __tpstrtab_guest_halt_poll_ns
-ffffffc008a50dd6 d __tpstrtab_rpm_suspend
-ffffffc008a50de2 d __tpstrtab_rpm_resume
-ffffffc008a50ded d __tpstrtab_rpm_idle
-ffffffc008a50df6 d __tpstrtab_rpm_usage
-ffffffc008a50e00 d __tpstrtab_rpm_return_int
-ffffffc008a50e0f d __tpstrtab_xdp_exception
-ffffffc008a50e1d d __tpstrtab_xdp_bulk_tx
-ffffffc008a50e29 d __tpstrtab_xdp_redirect
-ffffffc008a50e36 d __tpstrtab_xdp_redirect_err
-ffffffc008a50e47 d __tpstrtab_xdp_redirect_map
-ffffffc008a50e58 d __tpstrtab_xdp_redirect_map_err
-ffffffc008a50e6d d __tpstrtab_xdp_cpumap_kthread
-ffffffc008a50e80 d __tpstrtab_xdp_cpumap_enqueue
-ffffffc008a50e93 d __tpstrtab_xdp_devmap_xmit
-ffffffc008a50ea3 d __tpstrtab_mem_disconnect
-ffffffc008a50eb2 d __tpstrtab_mem_connect
-ffffffc008a50ebe d __tpstrtab_mem_return_failed
-ffffffc008a50ed0 d __tpstrtab_rseq_update
-ffffffc008a50edc d __tpstrtab_rseq_ip_fixup
-ffffffc008a50eea d __tpstrtab_mm_filemap_delete_from_page_cache
-ffffffc008a50f0c d __tpstrtab_mm_filemap_add_to_page_cache
-ffffffc008a50f29 d __tpstrtab_filemap_set_wb_err
-ffffffc008a50f3c d __tpstrtab_file_check_and_advance_wb_err
-ffffffc008a50f5a d __tpstrtab_oom_score_adj_update
-ffffffc008a50f6f d __tpstrtab_reclaim_retry_zone
-ffffffc008a50f82 d __tpstrtab_mark_victim
-ffffffc008a50f8e d __tpstrtab_wake_reaper
-ffffffc008a50f9a d __tpstrtab_start_task_reaping
-ffffffc008a50fad d __tpstrtab_finish_task_reaping
-ffffffc008a50fc1 d __tpstrtab_skip_task_reaping
-ffffffc008a50fd3 d __tpstrtab_compact_retry
-ffffffc008a50fe1 d __tpstrtab_mm_lru_insertion
-ffffffc008a50ff2 d __tpstrtab_mm_lru_activate
-ffffffc008a51002 d __tpstrtab_mm_vmscan_kswapd_sleep
-ffffffc008a51019 d __tpstrtab_mm_vmscan_kswapd_wake
-ffffffc008a5102f d __tpstrtab_mm_vmscan_wakeup_kswapd
-ffffffc008a51047 d __tpstrtab_mm_vmscan_direct_reclaim_begin
-ffffffc008a51066 d __tpstrtab_mm_vmscan_direct_reclaim_end
-ffffffc008a51083 d __tpstrtab_mm_shrink_slab_start
-ffffffc008a51098 d __tpstrtab_mm_shrink_slab_end
-ffffffc008a510ab d __tpstrtab_mm_vmscan_lru_isolate
-ffffffc008a510c1 d __tpstrtab_mm_vmscan_write_folio
-ffffffc008a510d7 d __tpstrtab_mm_vmscan_lru_shrink_inactive
-ffffffc008a510f5 d __tpstrtab_mm_vmscan_lru_shrink_active
-ffffffc008a51111 d __tpstrtab_mm_vmscan_node_reclaim_begin
-ffffffc008a5112e d __tpstrtab_mm_vmscan_node_reclaim_end
-ffffffc008a51149 d __tpstrtab_mm_vmscan_throttled
-ffffffc008a5115d d __tpstrtab_percpu_alloc_percpu
-ffffffc008a51171 d __tpstrtab_percpu_free_percpu
-ffffffc008a51184 d __tpstrtab_percpu_alloc_percpu_fail
-ffffffc008a5119d d __tpstrtab_percpu_create_chunk
-ffffffc008a511b1 d __tpstrtab_percpu_destroy_chunk
-ffffffc008a511c6 d __tpstrtab_kmem_cache_alloc
-ffffffc008a511d7 d __tpstrtab_kmalloc
-ffffffc008a511df d __tpstrtab_kfree
-ffffffc008a511e5 d __tpstrtab_kmem_cache_free
-ffffffc008a511f5 d __tpstrtab_mm_page_free
-ffffffc008a51202 d __tpstrtab_mm_page_free_batched
-ffffffc008a51217 d __tpstrtab_mm_page_alloc
-ffffffc008a51225 d __tpstrtab_mm_page_alloc_zone_locked
-ffffffc008a5123f d __tpstrtab_mm_page_pcpu_drain
-ffffffc008a51252 d __tpstrtab_mm_page_alloc_extfrag
-ffffffc008a51268 d __tpstrtab_rss_stat
-ffffffc008a51271 d __tpstrtab_mm_compaction_isolate_migratepages
-ffffffc008a51294 d __tpstrtab_mm_compaction_isolate_freepages
-ffffffc008a512b4 d __tpstrtab_mm_compaction_migratepages
-ffffffc008a512cf d __tpstrtab_mm_compaction_begin
-ffffffc008a512e3 d __tpstrtab_mm_compaction_end
-ffffffc008a512f5 d __tpstrtab_mm_compaction_try_to_compact_pages
-ffffffc008a51318 d __tpstrtab_mm_compaction_finished
-ffffffc008a5132f d __tpstrtab_mm_compaction_suitable
-ffffffc008a51346 d __tpstrtab_mm_compaction_deferred
-ffffffc008a5135d d __tpstrtab_mm_compaction_defer_compaction
-ffffffc008a5137c d __tpstrtab_mm_compaction_defer_reset
-ffffffc008a51396 d __tpstrtab_mm_compaction_kcompactd_sleep
-ffffffc008a513b4 d __tpstrtab_mm_compaction_wakeup_kcompactd
-ffffffc008a513d3 d __tpstrtab_mm_compaction_kcompactd_wake
-ffffffc008a513f0 d __tpstrtab_mmap_lock_start_locking
-ffffffc008a51408 d __tpstrtab_mmap_lock_released
-ffffffc008a5141b d __tpstrtab_mmap_lock_acquire_returned
-ffffffc008a51436 d __tpstrtab_vm_unmapped_area
-ffffffc008a51447 d __tpstrtab_vma_mas_szero
-ffffffc008a51455 d __tpstrtab_vma_store
-ffffffc008a5145f d __tpstrtab_exit_mmap
-ffffffc008a51469 d __tpstrtab_tlb_flush
-ffffffc008a51473 d __tpstrtab_mm_migrate_pages
-ffffffc008a51484 d __tpstrtab_mm_migrate_pages_start
-ffffffc008a5149b d __tpstrtab_set_migration_pte
-ffffffc008a514ad d __tpstrtab_remove_migration_pte
-ffffffc008a514c2 d __tpstrtab_hugepage_set_pmd
-ffffffc008a514d3 d __tpstrtab_hugepage_update
-ffffffc008a514e3 d __tpstrtab_set_migration_pmd
-ffffffc008a514f5 d __tpstrtab_remove_migration_pmd
-ffffffc008a5150a d __tpstrtab_mm_khugepaged_scan_pmd
-ffffffc008a51521 d __tpstrtab_mm_collapse_huge_page
-ffffffc008a51537 d __tpstrtab_mm_collapse_huge_page_isolate
-ffffffc008a51555 d __tpstrtab_mm_collapse_huge_page_swapin
-ffffffc008a51572 d __tpstrtab_mm_khugepaged_scan_file
-ffffffc008a5158a d __tpstrtab_test_pages_isolated
-ffffffc008a5159e d __tpstrtab_writeback_dirty_folio
-ffffffc008a515b4 d __tpstrtab_folio_wait_writeback
-ffffffc008a515c9 d __tpstrtab_writeback_mark_inode_dirty
-ffffffc008a515e4 d __tpstrtab_writeback_dirty_inode_start
-ffffffc008a51600 d __tpstrtab_writeback_dirty_inode
-ffffffc008a51616 d __tpstrtab_writeback_write_inode_start
-ffffffc008a51632 d __tpstrtab_writeback_write_inode
-ffffffc008a51648 d __tpstrtab_writeback_queue
-ffffffc008a51658 d __tpstrtab_writeback_exec
-ffffffc008a51667 d __tpstrtab_writeback_start
-ffffffc008a51677 d __tpstrtab_writeback_written
-ffffffc008a51689 d __tpstrtab_writeback_wait
-ffffffc008a51698 d __tpstrtab_writeback_pages_written
-ffffffc008a516b0 d __tpstrtab_writeback_wake_background
-ffffffc008a516ca d __tpstrtab_writeback_bdi_register
-ffffffc008a516e1 d __tpstrtab_wbc_writepage
-ffffffc008a516ef d __tpstrtab_writeback_queue_io
-ffffffc008a51702 d __tpstrtab_global_dirty_state
-ffffffc008a51715 d __tpstrtab_bdi_dirty_ratelimit
-ffffffc008a51729 d __tpstrtab_balance_dirty_pages
-ffffffc008a5173d d __tpstrtab_writeback_sb_inodes_requeue
-ffffffc008a51759 d __tpstrtab_writeback_single_inode_start
-ffffffc008a51776 d __tpstrtab_writeback_single_inode
-ffffffc008a5178d d __tpstrtab_writeback_lazytime
-ffffffc008a517a0 d __tpstrtab_writeback_lazytime_iput
-ffffffc008a517b8 d __tpstrtab_writeback_dirty_inode_enqueue
-ffffffc008a517d6 d __tpstrtab_sb_mark_inode_writeback
-ffffffc008a517ee d __tpstrtab_sb_clear_inode_writeback
-ffffffc008a51807 d __tpstrtab_locks_get_lock_context
-ffffffc008a5181e d __tpstrtab_posix_lock_inode
-ffffffc008a5182f d __tpstrtab_fcntl_setlk
-ffffffc008a5183b d __tpstrtab_locks_remove_posix
-ffffffc008a5184e d __tpstrtab_flock_lock_inode
-ffffffc008a5185f d __tpstrtab_break_lease_noblock
-ffffffc008a51873 d __tpstrtab_break_lease_block
-ffffffc008a51885 d __tpstrtab_break_lease_unblock
-ffffffc008a51899 d __tpstrtab_generic_delete_lease
-ffffffc008a518ae d __tpstrtab_time_out_leases
-ffffffc008a518be d __tpstrtab_generic_add_lease
-ffffffc008a518d0 d __tpstrtab_leases_conflict
-ffffffc008a518e0 d __tpstrtab_iomap_readpage
-ffffffc008a518ef d __tpstrtab_iomap_readahead
-ffffffc008a518ff d __tpstrtab_iomap_writepage
-ffffffc008a5190f d __tpstrtab_iomap_release_folio
-ffffffc008a51923 d __tpstrtab_iomap_invalidate_folio
-ffffffc008a5193a d __tpstrtab_iomap_dio_invalidate_fail
-ffffffc008a51954 d __tpstrtab_iomap_iter_dstmap
-ffffffc008a51966 d __tpstrtab_iomap_iter_srcmap
-ffffffc008a51978 d __tpstrtab_iomap_writepage_map
-ffffffc008a5198c d __tpstrtab_iomap_iter
-ffffffc008a51997 d __tpstrtab_ext4_other_inode_update_time
-ffffffc008a519b4 d __tpstrtab_ext4_free_inode
-ffffffc008a519c4 d __tpstrtab_ext4_request_inode
-ffffffc008a519d7 d __tpstrtab_ext4_allocate_inode
-ffffffc008a519eb d __tpstrtab_ext4_evict_inode
-ffffffc008a519fc d __tpstrtab_ext4_drop_inode
-ffffffc008a51a0c d __tpstrtab_ext4_nfs_commit_metadata
-ffffffc008a51a25 d __tpstrtab_ext4_mark_inode_dirty
-ffffffc008a51a3b d __tpstrtab_ext4_begin_ordered_truncate
-ffffffc008a51a57 d __tpstrtab_ext4_write_begin
-ffffffc008a51a68 d __tpstrtab_ext4_da_write_begin
-ffffffc008a51a7c d __tpstrtab_ext4_write_end
-ffffffc008a51a8b d __tpstrtab_ext4_journalled_write_end
-ffffffc008a51aa5 d __tpstrtab_ext4_da_write_end
-ffffffc008a51ab7 d __tpstrtab_ext4_writepages
-ffffffc008a51ac7 d __tpstrtab_ext4_da_write_pages
-ffffffc008a51adb d __tpstrtab_ext4_da_write_pages_extent
-ffffffc008a51af6 d __tpstrtab_ext4_writepages_result
-ffffffc008a51b0d d __tpstrtab_ext4_writepage
-ffffffc008a51b1c d __tpstrtab_ext4_readpage
-ffffffc008a51b2a d __tpstrtab_ext4_releasepage
-ffffffc008a51b3b d __tpstrtab_ext4_invalidate_folio
-ffffffc008a51b51 d __tpstrtab_ext4_journalled_invalidate_folio
-ffffffc008a51b72 d __tpstrtab_ext4_discard_blocks
-ffffffc008a51b86 d __tpstrtab_ext4_mb_new_inode_pa
-ffffffc008a51b9b d __tpstrtab_ext4_mb_new_group_pa
-ffffffc008a51bb0 d __tpstrtab_ext4_mb_release_inode_pa
-ffffffc008a51bc9 d __tpstrtab_ext4_mb_release_group_pa
-ffffffc008a51be2 d __tpstrtab_ext4_discard_preallocations
-ffffffc008a51bfe d __tpstrtab_ext4_mb_discard_preallocations
-ffffffc008a51c1d d __tpstrtab_ext4_request_blocks
-ffffffc008a51c31 d __tpstrtab_ext4_allocate_blocks
-ffffffc008a51c46 d __tpstrtab_ext4_free_blocks
-ffffffc008a51c57 d __tpstrtab_ext4_sync_file_enter
-ffffffc008a51c6c d __tpstrtab_ext4_sync_file_exit
-ffffffc008a51c80 d __tpstrtab_ext4_sync_fs
-ffffffc008a51c8d d __tpstrtab_ext4_alloc_da_blocks
-ffffffc008a51ca2 d __tpstrtab_ext4_mballoc_alloc
-ffffffc008a51cb5 d __tpstrtab_ext4_mballoc_prealloc
-ffffffc008a51ccb d __tpstrtab_ext4_mballoc_discard
-ffffffc008a51ce0 d __tpstrtab_ext4_mballoc_free
-ffffffc008a51cf2 d __tpstrtab_ext4_forget
-ffffffc008a51cfe d __tpstrtab_ext4_da_update_reserve_space
-ffffffc008a51d1b d __tpstrtab_ext4_da_reserve_space
-ffffffc008a51d31 d __tpstrtab_ext4_da_release_space
-ffffffc008a51d47 d __tpstrtab_ext4_mb_bitmap_load
-ffffffc008a51d5b d __tpstrtab_ext4_mb_buddy_bitmap_load
-ffffffc008a51d75 d __tpstrtab_ext4_load_inode_bitmap
-ffffffc008a51d8c d __tpstrtab_ext4_read_block_bitmap_load
-ffffffc008a51da8 d __tpstrtab_ext4_fallocate_enter
-ffffffc008a51dbd d __tpstrtab_ext4_punch_hole
-ffffffc008a51dcd d __tpstrtab_ext4_zero_range
-ffffffc008a51ddd d __tpstrtab_ext4_fallocate_exit
-ffffffc008a51df1 d __tpstrtab_ext4_unlink_enter
-ffffffc008a51e03 d __tpstrtab_ext4_unlink_exit
-ffffffc008a51e14 d __tpstrtab_ext4_truncate_enter
-ffffffc008a51e28 d __tpstrtab_ext4_truncate_exit
-ffffffc008a51e3b d __tpstrtab_ext4_ext_convert_to_initialized_enter
-ffffffc008a51e61 d __tpstrtab_ext4_ext_convert_to_initialized_fastpath
-ffffffc008a51e8a d __tpstrtab_ext4_ext_map_blocks_enter
-ffffffc008a51ea4 d __tpstrtab_ext4_ind_map_blocks_enter
-ffffffc008a51ebe d __tpstrtab_ext4_ext_map_blocks_exit
-ffffffc008a51ed7 d __tpstrtab_ext4_ind_map_blocks_exit
-ffffffc008a51ef0 d __tpstrtab_ext4_ext_load_extent
-ffffffc008a51f05 d __tpstrtab_ext4_load_inode
-ffffffc008a51f15 d __tpstrtab_ext4_journal_start
-ffffffc008a51f28 d __tpstrtab_ext4_journal_start_reserved
-ffffffc008a51f44 d __tpstrtab_ext4_trim_extent
-ffffffc008a51f55 d __tpstrtab_ext4_trim_all_free
-ffffffc008a51f68 d __tpstrtab_ext4_ext_handle_unwritten_extents
-ffffffc008a51f8a d __tpstrtab_ext4_get_implied_cluster_alloc_exit
-ffffffc008a51fae d __tpstrtab_ext4_ext_show_extent
-ffffffc008a51fc3 d __tpstrtab_ext4_remove_blocks
-ffffffc008a51fd6 d __tpstrtab_ext4_ext_rm_leaf
-ffffffc008a51fe7 d __tpstrtab_ext4_ext_rm_idx
-ffffffc008a51ff7 d __tpstrtab_ext4_ext_remove_space
-ffffffc008a5200d d __tpstrtab_ext4_ext_remove_space_done
-ffffffc008a52028 d __tpstrtab_ext4_es_insert_extent
-ffffffc008a5203e d __tpstrtab_ext4_es_cache_extent
-ffffffc008a52053 d __tpstrtab_ext4_es_remove_extent
-ffffffc008a52069 d __tpstrtab_ext4_es_find_extent_range_enter
-ffffffc008a52089 d __tpstrtab_ext4_es_find_extent_range_exit
-ffffffc008a520a8 d __tpstrtab_ext4_es_lookup_extent_enter
-ffffffc008a520c4 d __tpstrtab_ext4_es_lookup_extent_exit
-ffffffc008a520df d __tpstrtab_ext4_es_shrink_count
-ffffffc008a520f4 d __tpstrtab_ext4_es_shrink_scan_enter
-ffffffc008a5210e d __tpstrtab_ext4_es_shrink_scan_exit
-ffffffc008a52127 d __tpstrtab_ext4_collapse_range
-ffffffc008a5213b d __tpstrtab_ext4_insert_range
-ffffffc008a5214d d __tpstrtab_ext4_es_shrink
-ffffffc008a5215c d __tpstrtab_ext4_es_insert_delayed_block
-ffffffc008a52179 d __tpstrtab_ext4_fsmap_low_key
-ffffffc008a5218c d __tpstrtab_ext4_fsmap_high_key
-ffffffc008a521a0 d __tpstrtab_ext4_fsmap_mapping
-ffffffc008a521b3 d __tpstrtab_ext4_getfsmap_low_key
-ffffffc008a521c9 d __tpstrtab_ext4_getfsmap_high_key
-ffffffc008a521e0 d __tpstrtab_ext4_getfsmap_mapping
-ffffffc008a521f6 d __tpstrtab_ext4_shutdown
-ffffffc008a52204 d __tpstrtab_ext4_error
-ffffffc008a5220f d __tpstrtab_ext4_prefetch_bitmaps
-ffffffc008a52225 d __tpstrtab_ext4_lazy_itable_init
-ffffffc008a5223b d __tpstrtab_ext4_fc_replay_scan
-ffffffc008a5224f d __tpstrtab_ext4_fc_replay
-ffffffc008a5225e d __tpstrtab_ext4_fc_commit_start
-ffffffc008a52273 d __tpstrtab_ext4_fc_commit_stop
-ffffffc008a52287 d __tpstrtab_ext4_fc_stats
-ffffffc008a52295 d __tpstrtab_ext4_fc_track_create
-ffffffc008a522aa d __tpstrtab_ext4_fc_track_link
-ffffffc008a522bd d __tpstrtab_ext4_fc_track_unlink
-ffffffc008a522d2 d __tpstrtab_ext4_fc_track_inode
-ffffffc008a522e6 d __tpstrtab_ext4_fc_track_range
-ffffffc008a522fa d __tpstrtab_ext4_fc_cleanup
-ffffffc008a5230a d __tpstrtab_ext4_update_sb
-ffffffc008a52319 d __tpstrtab_jbd2_checkpoint
-ffffffc008a52329 d __tpstrtab_jbd2_start_commit
-ffffffc008a5233b d __tpstrtab_jbd2_commit_locking
-ffffffc008a5234f d __tpstrtab_jbd2_commit_flushing
-ffffffc008a52364 d __tpstrtab_jbd2_commit_logging
-ffffffc008a52378 d __tpstrtab_jbd2_drop_transaction
-ffffffc008a5238e d __tpstrtab_jbd2_end_commit
-ffffffc008a5239e d __tpstrtab_jbd2_submit_inode_data
-ffffffc008a523b5 d __tpstrtab_jbd2_handle_start
-ffffffc008a523c7 d __tpstrtab_jbd2_handle_restart
-ffffffc008a523db d __tpstrtab_jbd2_handle_extend
-ffffffc008a523ee d __tpstrtab_jbd2_handle_stats
-ffffffc008a52400 d __tpstrtab_jbd2_run_stats
-ffffffc008a5240f d __tpstrtab_jbd2_checkpoint_stats
-ffffffc008a52425 d __tpstrtab_jbd2_update_log_tail
-ffffffc008a5243a d __tpstrtab_jbd2_write_superblock
-ffffffc008a52450 d __tpstrtab_jbd2_lock_buffer_stall
-ffffffc008a52467 d __tpstrtab_jbd2_shrink_count
-ffffffc008a52479 d __tpstrtab_jbd2_shrink_scan_enter
-ffffffc008a52490 d __tpstrtab_jbd2_shrink_scan_exit
-ffffffc008a524a6 d __tpstrtab_jbd2_shrink_checkpoint_list
-ffffffc008a524c2 d __tpstrtab_erofs_lookup
-ffffffc008a524cf d __tpstrtab_erofs_fill_inode
-ffffffc008a524e0 d __tpstrtab_erofs_readpage
-ffffffc008a524ef d __tpstrtab_erofs_readpages
-ffffffc008a524ff d __tpstrtab_erofs_map_blocks_enter
-ffffffc008a52516 d __tpstrtab_z_erofs_map_blocks_iter_enter
-ffffffc008a52534 d __tpstrtab_erofs_map_blocks_exit
-ffffffc008a5254a d __tpstrtab_z_erofs_map_blocks_iter_exit
-ffffffc008a52567 d __tpstrtab_erofs_destroy_inode
-ffffffc008a5257b d __tpstrtab_selinux_audited
-ffffffc008a5258b d __tpstrtab_block_touch_buffer
-ffffffc008a5259e d __tpstrtab_block_dirty_buffer
-ffffffc008a525b1 d __tpstrtab_block_rq_requeue
-ffffffc008a525c2 d __tpstrtab_block_rq_complete
-ffffffc008a525d4 d __tpstrtab_block_rq_error
-ffffffc008a525e3 d __tpstrtab_block_rq_insert
-ffffffc008a525f3 d __tpstrtab_block_rq_issue
-ffffffc008a52602 d __tpstrtab_block_rq_merge
-ffffffc008a52611 d __tpstrtab_block_bio_complete
-ffffffc008a52624 d __tpstrtab_block_bio_bounce
-ffffffc008a52635 d __tpstrtab_block_bio_backmerge
-ffffffc008a52649 d __tpstrtab_block_bio_frontmerge
-ffffffc008a5265e d __tpstrtab_block_bio_queue
-ffffffc008a5266e d __tpstrtab_block_getrq
-ffffffc008a5267a d __tpstrtab_block_plug
-ffffffc008a52685 d __tpstrtab_block_unplug
-ffffffc008a52692 d __tpstrtab_block_split
-ffffffc008a5269e d __tpstrtab_block_bio_remap
-ffffffc008a526ae d __tpstrtab_block_rq_remap
-ffffffc008a526bd d __tpstrtab_kyber_latency
-ffffffc008a526cb d __tpstrtab_kyber_adjust
-ffffffc008a526d8 d __tpstrtab_kyber_throttled
-ffffffc008a526e8 d __tpstrtab_io_uring_create
-ffffffc008a526f8 d __tpstrtab_io_uring_register
-ffffffc008a5270a d __tpstrtab_io_uring_file_get
-ffffffc008a5271c d __tpstrtab_io_uring_queue_async_work
-ffffffc008a52736 d __tpstrtab_io_uring_defer
-ffffffc008a52745 d __tpstrtab_io_uring_link
-ffffffc008a52753 d __tpstrtab_io_uring_cqring_wait
-ffffffc008a52768 d __tpstrtab_io_uring_fail_link
-ffffffc008a5277b d __tpstrtab_io_uring_complete
-ffffffc008a5278d d __tpstrtab_io_uring_submit_sqe
-ffffffc008a527a1 d __tpstrtab_io_uring_poll_arm
-ffffffc008a527b3 d __tpstrtab_io_uring_task_add
-ffffffc008a527c5 d __tpstrtab_io_uring_req_failed
-ffffffc008a527d9 d __tpstrtab_io_uring_cqe_overflow
-ffffffc008a527ef d __tpstrtab_io_uring_task_work_run
-ffffffc008a52806 d __tpstrtab_io_uring_short_write
-ffffffc008a5281b d __tpstrtab_io_uring_local_work_run
-ffffffc008a52833 d __tpstrtab_rwmmio_write
-ffffffc008a52840 d __tpstrtab_rwmmio_post_write
-ffffffc008a52852 d __tpstrtab_rwmmio_read
-ffffffc008a5285e d __tpstrtab_rwmmio_post_read
-ffffffc008a5286f d __tpstrtab_clk_enable
-ffffffc008a5287a d __tpstrtab_clk_enable_complete
-ffffffc008a5288e d __tpstrtab_clk_disable
-ffffffc008a5289a d __tpstrtab_clk_disable_complete
-ffffffc008a528af d __tpstrtab_clk_prepare
-ffffffc008a528bb d __tpstrtab_clk_prepare_complete
-ffffffc008a528d0 d __tpstrtab_clk_unprepare
-ffffffc008a528de d __tpstrtab_clk_unprepare_complete
-ffffffc008a528f5 d __tpstrtab_clk_set_rate
-ffffffc008a52902 d __tpstrtab_clk_set_rate_complete
-ffffffc008a52918 d __tpstrtab_clk_set_min_rate
-ffffffc008a52929 d __tpstrtab_clk_set_max_rate
-ffffffc008a5293a d __tpstrtab_clk_set_rate_range
-ffffffc008a5294d d __tpstrtab_clk_set_parent
-ffffffc008a5295c d __tpstrtab_clk_set_parent_complete
-ffffffc008a52974 d __tpstrtab_clk_set_phase
-ffffffc008a52982 d __tpstrtab_clk_set_phase_complete
-ffffffc008a52999 d __tpstrtab_clk_set_duty_cycle
-ffffffc008a529ac d __tpstrtab_clk_set_duty_cycle_complete
-ffffffc008a529c8 d __tpstrtab_add_device_to_group
-ffffffc008a529dc d __tpstrtab_remove_device_from_group
-ffffffc008a529f5 d __tpstrtab_attach_device_to_domain
-ffffffc008a52a0d d __tpstrtab_detach_device_from_domain
-ffffffc008a52a27 d __tpstrtab_map
-ffffffc008a52a2b d __tpstrtab_unmap
-ffffffc008a52a31 d __tpstrtab_io_page_fault
-ffffffc008a52a3f d __tpstrtab_regmap_reg_write
-ffffffc008a52a50 d __tpstrtab_regmap_reg_read
-ffffffc008a52a60 d __tpstrtab_regmap_reg_read_cache
-ffffffc008a52a76 d __tpstrtab_regmap_bulk_write
-ffffffc008a52a88 d __tpstrtab_regmap_bulk_read
-ffffffc008a52a99 d __tpstrtab_regmap_hw_read_start
-ffffffc008a52aae d __tpstrtab_regmap_hw_read_done
-ffffffc008a52ac2 d __tpstrtab_regmap_hw_write_start
-ffffffc008a52ad8 d __tpstrtab_regmap_hw_write_done
-ffffffc008a52aed d __tpstrtab_regcache_sync
-ffffffc008a52afb d __tpstrtab_regmap_cache_only
-ffffffc008a52b0d d __tpstrtab_regmap_cache_bypass
-ffffffc008a52b21 d __tpstrtab_regmap_async_write_start
-ffffffc008a52b3a d __tpstrtab_regmap_async_io_complete
-ffffffc008a52b53 d __tpstrtab_regmap_async_complete_start
-ffffffc008a52b6f d __tpstrtab_regmap_async_complete_done
-ffffffc008a52b8a d __tpstrtab_regcache_drop_region
-ffffffc008a52b9f d __tpstrtab_thermal_pressure_update
-ffffffc008a52bb7 d __tpstrtab_devres_log
-ffffffc008a52bc2 d __tpstrtab_dma_fence_emit
-ffffffc008a52bd1 d __tpstrtab_dma_fence_init
-ffffffc008a52be0 d __tpstrtab_dma_fence_destroy
-ffffffc008a52bf2 d __tpstrtab_dma_fence_enable_signal
-ffffffc008a52c0a d __tpstrtab_dma_fence_signaled
-ffffffc008a52c1d d __tpstrtab_dma_fence_wait_start
-ffffffc008a52c32 d __tpstrtab_dma_fence_wait_end
-ffffffc008a52c45 d __tpstrtab_rtc_set_time
-ffffffc008a52c52 d __tpstrtab_rtc_read_time
-ffffffc008a52c60 d __tpstrtab_rtc_set_alarm
-ffffffc008a52c6e d __tpstrtab_rtc_read_alarm
-ffffffc008a52c7d d __tpstrtab_rtc_irq_set_freq
-ffffffc008a52c8e d __tpstrtab_rtc_irq_set_state
-ffffffc008a52ca0 d __tpstrtab_rtc_alarm_irq_enable
-ffffffc008a52cb5 d __tpstrtab_rtc_set_offset
-ffffffc008a52cc4 d __tpstrtab_rtc_read_offset
-ffffffc008a52cd4 d __tpstrtab_rtc_timer_enqueue
-ffffffc008a52ce6 d __tpstrtab_rtc_timer_dequeue
-ffffffc008a52cf8 d __tpstrtab_rtc_timer_fired
-ffffffc008a52d08 d __tpstrtab_watchdog_start
-ffffffc008a52d17 d __tpstrtab_watchdog_ping
-ffffffc008a52d25 d __tpstrtab_watchdog_stop
-ffffffc008a52d33 d __tpstrtab_watchdog_set_timeout
-ffffffc008a52d48 d __tpstrtab_scmi_fc_call
-ffffffc008a52d55 d __tpstrtab_scmi_xfer_begin
-ffffffc008a52d65 d __tpstrtab_scmi_xfer_response_wait
-ffffffc008a52d7d d __tpstrtab_scmi_xfer_end
-ffffffc008a52d8b d __tpstrtab_scmi_rx_done
-ffffffc008a52d98 d __tpstrtab_scmi_msg_dump
-ffffffc008a52da6 d __tpstrtab_mc_event
-ffffffc008a52daf d __tpstrtab_arm_event
-ffffffc008a52db9 d __tpstrtab_non_standard_event
-ffffffc008a52dcc d __tpstrtab_aer_event
-ffffffc008a52dd6 d __tpstrtab_kfree_skb
-ffffffc008a52de0 d __tpstrtab_consume_skb
-ffffffc008a52dec d __tpstrtab_skb_copy_datagram_iovec
-ffffffc008a52e04 d __tpstrtab_net_dev_start_xmit
-ffffffc008a52e17 d __tpstrtab_net_dev_xmit
-ffffffc008a52e24 d __tpstrtab_net_dev_xmit_timeout
-ffffffc008a52e39 d __tpstrtab_net_dev_queue
-ffffffc008a52e47 d __tpstrtab_netif_receive_skb
-ffffffc008a52e59 d __tpstrtab_netif_rx
-ffffffc008a52e62 d __tpstrtab_napi_gro_frags_entry
-ffffffc008a52e77 d __tpstrtab_napi_gro_receive_entry
-ffffffc008a52e8e d __tpstrtab_netif_receive_skb_entry
-ffffffc008a52ea6 d __tpstrtab_netif_receive_skb_list_entry
-ffffffc008a52ec3 d __tpstrtab_netif_rx_entry
-ffffffc008a52ed2 d __tpstrtab_napi_gro_frags_exit
-ffffffc008a52ee6 d __tpstrtab_napi_gro_receive_exit
-ffffffc008a52efc d __tpstrtab_netif_receive_skb_exit
-ffffffc008a52f13 d __tpstrtab_netif_rx_exit
-ffffffc008a52f21 d __tpstrtab_netif_receive_skb_list_exit
-ffffffc008a52f3d d __tpstrtab_napi_poll
-ffffffc008a52f47 d __tpstrtab_sock_rcvqueue_full
-ffffffc008a52f5a d __tpstrtab_sock_exceed_buf_limit
-ffffffc008a52f70 d __tpstrtab_inet_sock_set_state
-ffffffc008a52f84 d __tpstrtab_inet_sk_error_report
-ffffffc008a52f99 d __tpstrtab_udp_fail_queue_rcv_skb
-ffffffc008a52fb0 d __tpstrtab_tcp_retransmit_skb
-ffffffc008a52fc3 d __tpstrtab_tcp_send_reset
-ffffffc008a52fd2 d __tpstrtab_tcp_receive_reset
-ffffffc008a52fe4 d __tpstrtab_tcp_destroy_sock
-ffffffc008a52ff5 d __tpstrtab_tcp_rcv_space_adjust
-ffffffc008a5300a d __tpstrtab_tcp_retransmit_synack
-ffffffc008a53020 d __tpstrtab_tcp_probe
-ffffffc008a5302a d __tpstrtab_tcp_bad_csum
-ffffffc008a53037 d __tpstrtab_tcp_cong_state_set
-ffffffc008a5304a d __tpstrtab_fib_table_lookup
-ffffffc008a5305b d __tpstrtab_qdisc_dequeue
-ffffffc008a53069 d __tpstrtab_qdisc_enqueue
-ffffffc008a53077 d __tpstrtab_qdisc_reset
-ffffffc008a53083 d __tpstrtab_qdisc_destroy
-ffffffc008a53091 d __tpstrtab_qdisc_create
-ffffffc008a5309e d __tpstrtab_br_fdb_add
-ffffffc008a530a9 d __tpstrtab_br_fdb_external_learn_add
-ffffffc008a530c3 d __tpstrtab_fdb_delete
-ffffffc008a530ce d __tpstrtab_br_fdb_update
-ffffffc008a530dc d __tpstrtab_neigh_create
-ffffffc008a530e9 d __tpstrtab_neigh_update
-ffffffc008a530f6 d __tpstrtab_neigh_update_done
-ffffffc008a53108 d __tpstrtab_neigh_timer_handler
-ffffffc008a5311c d __tpstrtab_neigh_event_send_done
-ffffffc008a53132 d __tpstrtab_neigh_event_send_dead
-ffffffc008a53148 d __tpstrtab_neigh_cleanup_and_release
-ffffffc008a53162 d __tpstrtab_netlink_extack
-ffffffc008a53171 d __tpstrtab_fib6_table_lookup
-ffffffc008a53183 d __tpstrtab_virtio_transport_alloc_pkt
-ffffffc008a5319e d __tpstrtab_virtio_transport_recv_pkt
-ffffffc008a531b8 d __tpstrtab_ma_op
-ffffffc008a531be d __tpstrtab_ma_read
-ffffffc008a531c6 d __tpstrtab_ma_write
-ffffffc008a531d0 R __start_pci_fixups_early
-ffffffc008a53790 R __end_pci_fixups_early
-ffffffc008a53790 R __start_pci_fixups_header
-ffffffc008a54550 R __end_pci_fixups_header
-ffffffc008a54550 R __start_pci_fixups_final
-ffffffc008a556c0 R __end_pci_fixups_final
-ffffffc008a556c0 R __start_pci_fixups_enable
-ffffffc008a55710 R __end_pci_fixups_enable
-ffffffc008a55710 R __start_pci_fixups_resume
-ffffffc008a557a0 R __end_pci_fixups_resume
-ffffffc008a557a0 R __start_pci_fixups_resume_early
-ffffffc008a55930 R __end_pci_fixups_resume_early
-ffffffc008a55930 R __start_pci_fixups_suspend
-ffffffc008a55940 R __end_builtin_fw
-ffffffc008a55940 R __end_pci_fixups_suspend
-ffffffc008a55940 R __end_pci_fixups_suspend_late
-ffffffc008a55940 r __param_initcall_debug
-ffffffc008a55940 R __start___kcrctab
-ffffffc008a55940 R __start___kcrctab_gpl
-ffffffc008a55940 R __start___ksymtab
-ffffffc008a55940 R __start___ksymtab_gpl
-ffffffc008a55940 R __start___param
-ffffffc008a55940 R __start_builtin_fw
-ffffffc008a55940 R __start_pci_fixups_suspend_late
-ffffffc008a55940 R __stop___kcrctab
-ffffffc008a55940 R __stop___kcrctab_gpl
-ffffffc008a55940 R __stop___ksymtab
-ffffffc008a55940 R __stop___ksymtab_gpl
-ffffffc008a55968 r __param_panic
-ffffffc008a55990 r __param_panic_print
-ffffffc008a559b8 r __param_pause_on_oops
-ffffffc008a559e0 r __param_panic_on_warn
-ffffffc008a55a08 r __param_crash_kexec_post_notifiers
-ffffffc008a55a30 r __param_disable_numa
-ffffffc008a55a58 r __param_power_efficient
-ffffffc008a55a80 r __param_debug_force_rr_cpu
-ffffffc008a55aa8 r __param_watchdog_thresh
-ffffffc008a55ad0 r __param_ignore_loglevel
-ffffffc008a55af8 r __param_time
-ffffffc008a55b20 r __param_console_suspend
-ffffffc008a55b48 r __param_console_no_auto_verbose
-ffffffc008a55b70 r __param_always_kmsg_dump
-ffffffc008a55b98 r __param_noirqdebug
-ffffffc008a55bc0 r __param_irqfixup
-ffffffc008a55be8 r __param_rcu_expedited
-ffffffc008a55c10 r __param_rcu_normal
-ffffffc008a55c38 r __param_rcu_normal_after_boot
-ffffffc008a55c60 r __param_rcu_cpu_stall_ftrace_dump
-ffffffc008a55c88 r __param_rcu_cpu_stall_suppress
-ffffffc008a55cb0 r __param_rcu_cpu_stall_timeout
-ffffffc008a55cd8 r __param_rcu_exp_cpu_stall_timeout
-ffffffc008a55d00 r __param_rcu_cpu_stall_suppress_at_boot
-ffffffc008a55d28 r __param_rcu_task_ipi_delay
-ffffffc008a55d50 r __param_rcu_task_stall_timeout
-ffffffc008a55d78 r __param_rcu_task_stall_info
-ffffffc008a55da0 r __param_rcu_task_stall_info_mult
-ffffffc008a55dc8 r __param_rcu_task_enqueue_lim
-ffffffc008a55df0 r __param_rcu_task_contend_lim
-ffffffc008a55e18 r __param_rcu_task_collapse_lim
-ffffffc008a55e40 r __param_exp_holdoff
-ffffffc008a55e68 r __param_counter_wrap_check
-ffffffc008a55e90 r __param_convert_to_big
-ffffffc008a55eb8 r __param_big_cpu_lim
-ffffffc008a55ee0 r __param_small_contention_lim
-ffffffc008a55f08 r __param_srcu_retry_check_delay
-ffffffc008a55f30 r __param_srcu_max_nodelay_phase
-ffffffc008a55f58 r __param_srcu_max_nodelay
-ffffffc008a55f80 r __param_dump_tree
-ffffffc008a55fa8 r __param_use_softirq
-ffffffc008a55fd0 r __param_rcu_fanout_exact
-ffffffc008a55ff8 r __param_rcu_fanout_leaf
-ffffffc008a56020 r __param_kthread_prio
-ffffffc008a56048 r __param_gp_preinit_delay
-ffffffc008a56070 r __param_gp_init_delay
-ffffffc008a56098 r __param_gp_cleanup_delay
-ffffffc008a560c0 r __param_rcu_min_cached_objs
-ffffffc008a560e8 r __param_rcu_delay_page_cache_fill_msec
-ffffffc008a56110 r __param_blimit
-ffffffc008a56138 r __param_qhimark
-ffffffc008a56160 r __param_qlowmark
-ffffffc008a56188 r __param_qovld
-ffffffc008a561b0 r __param_rcu_divisor
-ffffffc008a561d8 r __param_rcu_resched_ns
-ffffffc008a56200 r __param_jiffies_till_sched_qs
-ffffffc008a56228 r __param_jiffies_to_sched_qs
-ffffffc008a56250 r __param_jiffies_till_first_fqs
-ffffffc008a56278 r __param_jiffies_till_next_fqs
-ffffffc008a562a0 r __param_rcu_kick_kthreads
-ffffffc008a562c8 r __param_sysrq_rcu
-ffffffc008a562f0 r __param_nocb_nobypass_lim_per_jiffy
-ffffffc008a56318 r __param_rcu_nocb_gp_stride
-ffffffc008a56340 r __param_irqtime
-ffffffc008a56368 r __param_ignore_rlimit_data
-ffffffc008a56390 r __param_shuffle
-ffffffc008a563b8 r __param_memmap_on_memory
-ffffffc008a563e0 r __param_online_policy
-ffffffc008a56408 r __param_auto_movable_ratio
-ffffffc008a56430 r __param_enable
-ffffffc008a56458 r __param_page_reporting_order
-ffffffc008a56480 r __param_allow_sys_admin_access
-ffffffc008a564a8 r __param_max_user_bgreq
-ffffffc008a564d0 r __param_max_user_congthresh
-ffffffc008a564f8 r __param_notests
-ffffffc008a56520 r __param_panic_on_fail
-ffffffc008a56548 r __param_dbg
-ffffffc008a56570 r __param_events_dfl_poll_msecs
-ffffffc008a56598 r __param_num_prealloc_crypt_ctxs
-ffffffc008a565c0 r __param_num_prealloc_bounce_pg
-ffffffc008a565e8 r __param_num_keyslots
-ffffffc008a56610 r __param_num_prealloc_fallback_crypt_ctxs
-ffffffc008a56638 r __param_verbose
-ffffffc008a56660 r __param_policy
-ffffffc008a56688 r __param_force_legacy
-ffffffc008a566b0 r __param_reset_seq
-ffffffc008a566d8 r __param_sysrq_downtime_ms
-ffffffc008a56700 r __param_brl_timeout
-ffffffc008a56728 r __param_brl_nbchords
-ffffffc008a56750 r __param_default_utf8
-ffffffc008a56778 r __param_global_cursor_default
-ffffffc008a567a0 r __param_cur_default
-ffffffc008a567c8 r __param_consoleblank
-ffffffc008a567f0 r __param_default_red
-ffffffc008a56818 r __param_default_grn
-ffffffc008a56840 r __param_default_blu
-ffffffc008a56868 r __param_color
-ffffffc008a56890 r __param_italic
-ffffffc008a568b8 r __param_underline
-ffffffc008a568e0 r __param_share_irqs
-ffffffc008a56908 r __param_nr_uarts
-ffffffc008a56930 r __param_skip_txen_test
-ffffffc008a56958 r __param_ratelimit_disable
-ffffffc008a56980 r __param_current_quality
-ffffffc008a569a8 r __param_default_quality
-ffffffc008a569d0 r __param_path
-ffffffc008a569f8 r __param_rd_nr
-ffffffc008a56a20 r __param_rd_size
-ffffffc008a56a48 r __param_max_part
-ffffffc008a56a70 r __param_max_loop
-ffffffc008a56a98 r __param_max_part
-ffffffc008a56ac0 r __param_hw_queue_depth
-ffffffc008a56ae8 r __param_num_request_queues
-ffffffc008a56b10 r __param_poll_queues
-ffffffc008a56b38 r __param_queue_depth
-ffffffc008a56b60 r __param_num_devices
-ffffffc008a56b88 r __param_stop_on_reboot
-ffffffc008a56bb0 r __param_handle_boot_enabled
-ffffffc008a56bd8 r __param_open_timeout
-ffffffc008a56c00 r __param_create
-ffffffc008a56c28 r __param_major
-ffffffc008a56c50 r __param_reserved_bio_based_ios
-ffffffc008a56c78 r __param_dm_numa_node
-ffffffc008a56ca0 r __param_swap_bios
-ffffffc008a56cc8 r __param_kcopyd_subjob_size_kb
-ffffffc008a56cf0 r __param_stats_current_allocated_bytes
-ffffffc008a56d18 r __param_reserved_rq_based_ios
-ffffffc008a56d40 r __param_use_blk_mq
-ffffffc008a56d68 r __param_dm_mq_nr_hw_queues
-ffffffc008a56d90 r __param_dm_mq_queue_depth
-ffffffc008a56db8 r __param_max_cache_size_bytes
-ffffffc008a56de0 r __param_max_age_seconds
-ffffffc008a56e08 r __param_retain_bytes
-ffffffc008a56e30 r __param_peak_allocated_bytes
-ffffffc008a56e58 r __param_allocated_kmem_cache_bytes
-ffffffc008a56e80 r __param_allocated_get_free_pages_bytes
-ffffffc008a56ea8 r __param_allocated_vmalloc_bytes
-ffffffc008a56ed0 r __param_current_allocated_bytes
-ffffffc008a56ef8 r __param_prefetch_cluster
-ffffffc008a56f20 r __param_dm_user_daemon_timeout_msec
-ffffffc008a56f48 r __param_edac_mc_panic_on_ue
-ffffffc008a56f70 r __param_edac_mc_log_ue
-ffffffc008a56f98 r __param_edac_mc_log_ce
-ffffffc008a56fc0 r __param_edac_mc_poll_msec
-ffffffc008a56fe8 r __param_check_pci_errors
-ffffffc008a57010 r __param_edac_pci_panic_on_pe
-ffffffc008a57038 r __param_log_ecn_error
-ffffffc008a57060 r __param_log_ecn_error
-ffffffc008a57088 r __param_fast_convergence
-ffffffc008a570b0 r __param_beta
-ffffffc008a570d8 r __param_initial_ssthresh
-ffffffc008a57100 r __param_bic_scale
-ffffffc008a57128 r __param_tcp_friendliness
-ffffffc008a57150 r __param_hystart
-ffffffc008a57178 r __param_hystart_detect
-ffffffc008a571a0 r __param_hystart_low_window
-ffffffc008a571c8 r __param_hystart_ack_delta_us
-ffffffc008a571f0 r __param_disable
-ffffffc008a57218 r __param_disable_ipv6
-ffffffc008a57240 r __param_autoconf
-ffffffc008a57268 r __param_log_ecn_error
-ffffffc008a57290 r __param_log_ecn_error
-ffffffc008a572b8 r __param_log_ecn_error
-ffffffc008a572e0 r __param_virtio_transport_max_vsock_pkt_buf_size
-ffffffc008a57308 d __modver_attr
-ffffffc008a57308 D __start___modver
-ffffffc008a57308 R __stop___param
-ffffffc008a57350 d __modver_attr
-ffffffc008a57398 d __modver_attr
-ffffffc008a573e0 d __modver_attr
-ffffffc008a57428 d __modver_attr
-ffffffc008a57470 d __modver_attr
-ffffffc008a574b8 R __start___ex_table
-ffffffc008a574b8 D __stop___modver
-ffffffc008a58afc R __start_notes
-ffffffc008a58afc R __stop___ex_table
-ffffffc008a58afc r _note_41
-ffffffc008a58b14 r _note_42
-ffffffc008a58b50 R __stop_notes
-ffffffc008a59000 R __end_rodata
-ffffffc008a59000 T __entry_tramp_text_start
-ffffffc008a59000 R __hyp_events_end
-ffffffc008a59000 R __hyp_events_start
-ffffffc008a59000 T tramp_vectors
-ffffffc008a5b000 T tramp_exit_native
-ffffffc008a5b038 T tramp_exit_compat
-ffffffc008a5c000 T __entry_tramp_text_end
-ffffffc008a5c010 T __relocate_new_kernel_start
-ffffffc008a5c010 T arm64_relocate_new_kernel
-ffffffc008a5c130 T __relocate_new_kernel_end
-ffffffc008a5d000 T idmap_pg_dir
-ffffffc008a5e000 T tramp_pg_dir
-ffffffc008a5f000 T reserved_pg_dir
-ffffffc008a60000 T swapper_pg_dir
-ffffffc008a70000 T __init_begin
-ffffffc008a70000 T __inittext_begin
-ffffffc008a70000 t __pi_$d.0
-ffffffc008a70000 T _sinittext
-ffffffc008a70004 t __pi_$x.1
-ffffffc008a70004 t __pi_kaslr_early_init
-ffffffc008a700e4 t __pi_cmdline_contains_nokaslr
-ffffffc008a70194 t __pi_$d.0
-ffffffc008a70198 t __pi_$x.1
-ffffffc008a70198 t __pi_fdt_ro_probe_
-ffffffc008a7022c t __pi_$d.2
-ffffffc008a70230 t __pi_$x.3
-ffffffc008a70230 t __pi_fdt_header_size_
-ffffffc008a70270 t __pi_$d.4
-ffffffc008a70274 t __pi_$x.5
-ffffffc008a70274 t __pi_fdt_header_size
-ffffffc008a702bc t __pi_$d.6
-ffffffc008a702c0 t __pi_$x.7
-ffffffc008a702c0 t __pi_fdt_check_header
-ffffffc008a703fc t __pi_$d.8
-ffffffc008a70400 t __pi_$x.9
-ffffffc008a70400 t __pi_fdt_offset_ptr
-ffffffc008a704a0 t __pi_$d.10
-ffffffc008a704a4 t __pi_$x.11
-ffffffc008a704a4 t __pi_fdt_next_tag
-ffffffc008a705c4 t __pi_$d.13
-ffffffc008a705c8 t __pi_$x.14
-ffffffc008a705c8 t __pi_fdt_check_node_offset_
-ffffffc008a70608 t __pi_$d.15
-ffffffc008a7060c t __pi_$x.16
-ffffffc008a7060c t __pi_fdt_check_prop_offset_
-ffffffc008a7064c t __pi_$d.17
-ffffffc008a70650 t __pi_$x.18
-ffffffc008a70650 t __pi_fdt_next_node
-ffffffc008a70740 t __pi_$d.19
-ffffffc008a70744 t __pi_$x.20
-ffffffc008a70744 t __pi_fdt_first_subnode
-ffffffc008a70778 t __pi_$d.21
-ffffffc008a7077c t __pi_$x.22
-ffffffc008a7077c t __pi_fdt_next_subnode
-ffffffc008a707cc t __pi_$d.23
-ffffffc008a707d0 t __pi_$x.24
-ffffffc008a707d0 t __pi_fdt_find_string_
-ffffffc008a70844 t __pi_$d.25
-ffffffc008a70848 t __pi_$x.26
-ffffffc008a70848 t __pi_fdt_move
-ffffffc008a708a8 t __pi_$d.0
-ffffffc008a708ac t __pi_$x.1
-ffffffc008a708ac t __pi_fdt_get_string
-ffffffc008a709b4 t __pi_$d.2
-ffffffc008a709b8 t __pi_$x.3
-ffffffc008a709b8 t __pi_fdt_string
-ffffffc008a709d0 t __pi_$d.4
-ffffffc008a709d4 t __pi_$x.5
-ffffffc008a709d4 t __pi_fdt_find_max_phandle
-ffffffc008a70a58 t __pi_$d.6
-ffffffc008a70a5c t __pi_$x.7
-ffffffc008a70a5c t __pi_fdt_get_phandle
-ffffffc008a70b08 t __pi_$d.8
-ffffffc008a70b0c t __pi_$x.9
-ffffffc008a70b0c t __pi_fdt_generate_phandle
-ffffffc008a70b64 t __pi_$d.10
-ffffffc008a70b68 t __pi_$x.11
-ffffffc008a70b68 t __pi_fdt_get_mem_rsv
-ffffffc008a70bd4 t __pi_fdt_mem_rsv
-ffffffc008a70c38 t __pi_$d.12
-ffffffc008a70c3c t __pi_$x.13
-ffffffc008a70c3c t __pi_fdt_num_mem_rsv
-ffffffc008a70c8c t __pi_$d.14
-ffffffc008a70c90 t __pi_$x.15
-ffffffc008a70c90 t __pi_fdt_subnode_offset_namelen
-ffffffc008a70d84 t __pi_$d.16
-ffffffc008a70d88 t __pi_$x.17
-ffffffc008a70d88 t __pi_fdt_subnode_offset
-ffffffc008a70dd0 t __pi_$d.18
-ffffffc008a70dd4 t __pi_$x.19
-ffffffc008a70dd4 t __pi_fdt_path_offset_namelen
-ffffffc008a70eec t __pi_$d.20
-ffffffc008a70ef0 t __pi_$x.21
-ffffffc008a70ef0 t __pi_fdt_get_alias_namelen
-ffffffc008a70f60 t __pi_$d.22
-ffffffc008a70f64 t __pi_$x.23
-ffffffc008a70f64 t __pi_fdt_path_offset
-ffffffc008a70f9c t __pi_$d.24
-ffffffc008a70fa0 t __pi_$x.25
-ffffffc008a70fa0 t __pi_fdt_get_name
-ffffffc008a71040 t __pi_$d.26
-ffffffc008a71044 t __pi_$x.27
-ffffffc008a71044 t __pi_fdt_first_property_offset
-ffffffc008a7107c t __pi_nextprop_
-ffffffc008a710f0 t __pi_$d.28
-ffffffc008a710f4 t __pi_$x.29
-ffffffc008a710f4 t __pi_fdt_next_property_offset
-ffffffc008a7112c t __pi_$d.30
-ffffffc008a71130 t __pi_$x.31
-ffffffc008a71130 t __pi_fdt_get_property_by_offset
-ffffffc008a71170 t __pi_fdt_get_property_by_offset_
-ffffffc008a711d4 t __pi_$d.32
-ffffffc008a711d8 t __pi_$x.33
-ffffffc008a711d8 t __pi_fdt_get_property_namelen
-ffffffc008a7121c t __pi_fdt_get_property_namelen_
-ffffffc008a71300 t __pi_$d.34
-ffffffc008a71304 t __pi_$x.35
-ffffffc008a71304 t __pi_fdt_get_property
-ffffffc008a71354 t __pi_$d.36
-ffffffc008a71358 t __pi_$x.37
-ffffffc008a71358 t __pi_fdt_getprop_namelen
-ffffffc008a713c0 t __pi_$d.38
-ffffffc008a713c4 t __pi_$x.39
-ffffffc008a713c4 t __pi_fdt_getprop_by_offset
-ffffffc008a7147c t __pi_$d.40
-ffffffc008a71480 t __pi_$x.41
-ffffffc008a71480 t __pi_fdt_getprop
-ffffffc008a714d0 t __pi_$d.42
-ffffffc008a714d4 t __pi_$x.43
-ffffffc008a714d4 t __pi_fdt_get_alias
-ffffffc008a7150c t __pi_$d.44
-ffffffc008a71510 t __pi_$x.45
-ffffffc008a71510 t __pi_fdt_get_path
-ffffffc008a7167c t __pi_$d.46
-ffffffc008a71680 t __pi_$x.47
-ffffffc008a71680 t __pi_fdt_supernode_atdepth_offset
-ffffffc008a7173c t __pi_$d.48
-ffffffc008a71740 t __pi_$x.49
-ffffffc008a71740 t __pi_fdt_node_depth
-ffffffc008a7177c t __pi_$d.50
-ffffffc008a71780 t __pi_$x.51
-ffffffc008a71780 t __pi_fdt_parent_offset
-ffffffc008a717e4 t __pi_$d.52
-ffffffc008a717e8 t __pi_$x.53
-ffffffc008a717e8 t __pi_fdt_node_offset_by_prop_value
-ffffffc008a718b8 t __pi_$d.54
-ffffffc008a718bc t __pi_$x.55
-ffffffc008a718bc t __pi_fdt_node_offset_by_phandle
-ffffffc008a71940 t __pi_$d.56
-ffffffc008a71944 t __pi_$x.57
-ffffffc008a71944 t __pi_fdt_stringlist_contains
-ffffffc008a719e0 t __pi_$d.58
-ffffffc008a719e4 t __pi_$x.59
-ffffffc008a719e4 t __pi_fdt_stringlist_count
-ffffffc008a71a90 t __pi_$d.60
-ffffffc008a71a94 t __pi_$x.61
-ffffffc008a71a94 t __pi_fdt_stringlist_search
-ffffffc008a71b80 t __pi_$d.62
-ffffffc008a71b84 t __pi_$x.63
-ffffffc008a71b84 t __pi_fdt_stringlist_get
-ffffffc008a71c70 t __pi_$d.64
-ffffffc008a71c74 t __pi_$x.65
-ffffffc008a71c74 t __pi_fdt_node_check_compatible
-ffffffc008a71cf0 t __pi_$d.66
-ffffffc008a71cf4 t __pi_$x.67
-ffffffc008a71cf4 t __pi_fdt_node_offset_by_compatible
-ffffffc008a71d70 T primary_entry
-ffffffc008a71d88 t preserve_boot_args
-ffffffc008a71da8 t clear_page_tables
-ffffffc008a71dc0 t remap_region
-ffffffc008a71e08 t create_idmap
-ffffffc008a71f20 t create_kernel_mapping
-ffffffc008a71fc4 t __primary_switched
-ffffffc008a72090 t set_reset_devices
-ffffffc008a720b0 t debug_kernel
-ffffffc008a720d0 t quiet_kernel
-ffffffc008a720f0 t loglevel
-ffffffc008a72174 t warn_bootconfig
-ffffffc008a72188 t init_setup
-ffffffc008a721d0 t rdinit_setup
-ffffffc008a72218 T parse_early_options
-ffffffc008a7226c t do_early_param
-ffffffc008a72378 T parse_early_param
-ffffffc008a72404 W arch_post_acpi_subsys_init
-ffffffc008a72414 W thread_stack_cache_init
-ffffffc008a72424 W mem_encrypt_init
-ffffffc008a72434 W poking_init
-ffffffc008a72444 t early_randomize_kstack_offset
-ffffffc008a724dc W arch_call_rest_init
-ffffffc008a724f8 T start_kernel
-ffffffc008a72a1c t setup_boot_config
-ffffffc008a72bc0 t setup_command_line
-ffffffc008a72da0 t unknown_bootoption
-ffffffc008a72ed8 t print_unknown_bootoptions
-ffffffc008a73048 t set_init_arg
-ffffffc008a730dc t mm_init
-ffffffc008a73130 t initcall_debug_enable
-ffffffc008a731b8 t initcall_blacklist
-ffffffc008a7332c T do_one_initcall
-ffffffc008a735cc t initcall_blacklisted
-ffffffc008a736b8 t set_debug_rodata
-ffffffc008a73774 T console_on_rootfs
-ffffffc008a737ec t get_boot_config_from_initrd
-ffffffc008a738e4 t bootconfig_params
-ffffffc008a73928 t xbc_make_cmdline
-ffffffc008a73a0c t xbc_snprint_cmdline
-ffffffc008a73b60 t repair_env_string
-ffffffc008a73bec t obsolete_checksetup
-ffffffc008a73cd8 t report_meminit
-ffffffc008a73d60 t trace_initcall_start_cb
-ffffffc008a73db0 t trace_initcall_finish_cb
-ffffffc008a73e2c t kernel_init_freeable
-ffffffc008a73f28 t do_pre_smp_initcalls
-ffffffc008a7404c t do_basic_setup
-ffffffc008a7407c t do_initcalls
-ffffffc008a7411c t do_initcall_level
-ffffffc008a742bc t ignore_unknown_bootoption
-ffffffc008a74370 t early_hostname
-ffffffc008a743cc t load_ramdisk
-ffffffc008a74404 t readonly
-ffffffc008a74438 t readwrite
-ffffffc008a7446c t root_dev_setup
-ffffffc008a744ac t rootwait_setup
-ffffffc008a744d8 t root_data_setup
-ffffffc008a744f8 t fs_names_setup
-ffffffc008a74518 t root_delay_setup
-ffffffc008a7455c T mount_block_root
-ffffffc008a747d8 t split_fs_names
-ffffffc008a74838 t do_mount_root
-ffffffc008a749e4 T mount_root
-ffffffc008a74a78 t mount_nodev_root
-ffffffc008a74b68 t create_dev
-ffffffc008a74bdc T prepare_namespace
-ffffffc008a74d78 T init_rootfs
-ffffffc008a74de4 t prompt_ramdisk
-ffffffc008a74e1c t ramdisk_start_setup
-ffffffc008a74e60 T rd_load_image
-ffffffc008a75170 t identify_ramdisk_image
-ffffffc008a75418 t crd_load
-ffffffc008a754b4 T rd_load_disk
-ffffffc008a75514 t create_dev
-ffffffc008a75580 t compr_fill
-ffffffc008a755f8 t compr_flush
-ffffffc008a75684 t error
-ffffffc008a756c8 T __initstub__kmod_mounts__425_40_kernel_do_mounts_initrd_sysctls_init7
-ffffffc008a75710 t no_initrd
-ffffffc008a75730 t early_initrdmem
-ffffffc008a757cc t early_initrd
-ffffffc008a757fc T initrd_load
-ffffffc008a758c0 t handle_initrd
-ffffffc008a75abc t init_linuxrc
-ffffffc008a75b38 t retain_initrd_param
-ffffffc008a75b64 t keepinitrd_setup
-ffffffc008a75b84 t initramfs_async_setup
-ffffffc008a75bbc T reserve_initrd_mem
-ffffffc008a75ccc W free_initrd_mem
-ffffffc008a75d30 T __initstub__kmod_initramfs__395_762_populate_rootfsrootfs
-ffffffc008a75d5c t populate_rootfs
-ffffffc008a75dc0 t do_populate_rootfs
-ffffffc008a75e88 t unpack_to_rootfs
-ffffffc008a76178 t populate_initrd_image
-ffffffc008a76274 t kexec_free_initrd
-ffffffc008a7633c t flush_buffer
-ffffffc008a76444 t error
-ffffffc008a76460 t dir_utime
-ffffffc008a76530 t do_start
-ffffffc008a765bc t do_collect
-ffffffc008a76698 t do_header
-ffffffc008a7689c t do_skip
-ffffffc008a76920 t do_name
-ffffffc008a76b38 t do_copy
-ffffffc008a76d00 t do_symlink
-ffffffc008a76e00 t do_reset
-ffffffc008a76e80 t parse_header
-ffffffc008a76fc0 t free_hash
-ffffffc008a77020 t clean_path
-ffffffc008a770e0 t maybe_link
-ffffffc008a77178 t dir_add
-ffffffc008a77224 t find_link
-ffffffc008a77338 t xwrite
-ffffffc008a77424 t lpj_setup
-ffffffc008a77468 T __initstub__kmod_debug_monitors__396_63_create_debug_debugfs_entry5
-ffffffc008a774b0 t early_debug_disable
-ffffffc008a774cc T __initstub__kmod_debug_monitors__398_139_debug_monitors_init2
-ffffffc008a77530 T debug_traps_init
-ffffffc008a77598 T set_handle_irq
-ffffffc008a775f8 T set_handle_fiq
-ffffffc008a77658 T init_IRQ
-ffffffc008a777d0 T vec_init_vq_map
-ffffffc008a7783c T sve_setup
-ffffffc008a77a1c T sme_setup
-ffffffc008a77b5c T __initstub__kmod_fpsimd__392_2058_fpsimd_init1
-ffffffc008a77b88 t fpsimd_init
-ffffffc008a77c44 t sve_sysctl_init
-ffffffc008a77ca4 t sme_sysctl_init
-ffffffc008a77d20 T __initstub__kmod_process__401_746_tagged_addr_init1
-ffffffc008a77d70 T __initstub__kmod_ptrace__409_42_trace_init_flags_sys_enterearly
-ffffffc008a77d94 T __initstub__kmod_ptrace__411_66_trace_init_flags_sys_exitearly
-ffffffc008a77db8 T smp_setup_processor_id
-ffffffc008a77e04 T get_early_fdt_ptr
-ffffffc008a77e1c T early_fdt_map
-ffffffc008a77eb4 T __initstub__kmod_setup__401_283_reserve_memblock_reserved_regions3
-ffffffc008a77ee0 t reserve_memblock_reserved_regions
-ffffffc008a78034 T setup_arch
-ffffffc008a78230 t setup_machine_fdt
-ffffffc008a78354 t request_standard_resources
-ffffffc008a7852c t smp_build_mpidr_hash
-ffffffc008a786d4 T __initstub__kmod_setup__403_408_topology_init4
-ffffffc008a78700 t topology_init
-ffffffc008a787ec T __initstub__kmod_setup__405_442_register_arm64_panic_block6
-ffffffc008a78838 T minsigstksz_setup
-ffffffc008a788e4 T time_init
-ffffffc008a78980 T early_brk64
-ffffffc008a789cc T trap_init
-ffffffc008a78a1c T __initstub__kmod_vdso__399_461_vdso_init3
-ffffffc008a78a60 t __vdso_init
-ffffffc008a78b60 t cpu_psci_cpu_init
-ffffffc008a78b74 t cpu_psci_cpu_prepare
-ffffffc008a78bc4 T init_cpu_ops
-ffffffc008a78c88 t cpu_read_enable_method
-ffffffc008a78d10 T __initstub__kmod_cpuinfo__341_359_cpuinfo_regs_init6
-ffffffc008a78d38 t cpuinfo_regs_init
-ffffffc008a78e38 T cpuinfo_store_boot_cpu
-ffffffc008a78ea4 T init_cpu_features
-ffffffc008a79090 t sort_ftr_regs
-ffffffc008a791e0 t parse_32bit_el0_param
-ffffffc008a79200 T __initstub__kmod_cpufeature__403_1486_aarch32_el0_sysfs_init6
-ffffffc008a79254 t parse_kpti
-ffffffc008a792d0 T setup_cpu_features
-ffffffc008a793cc T __initstub__kmod_cpufeature__405_3360_init_32bit_el0_mask4s
-ffffffc008a793f4 t init_32bit_el0_mask
-ffffffc008a79494 T __initstub__kmod_cpufeature__407_3468_enable_mrs_emulation1
-ffffffc008a794c8 t init_cpu_hwcaps_indirect_list_from_array
-ffffffc008a7956c t enable_cpu_capabilities
-ffffffc008a79664 T apply_alternatives_all
-ffffffc008a796bc T apply_boot_alternatives
-ffffffc008a79724 T smp_cpus_done
-ffffffc008a79770 t hyp_mode_check
-ffffffc008a797e8 T smp_prepare_boot_cpu
-ffffffc008a79848 T smp_init_cpus
-ffffffc008a79924 t of_parse_and_init_cpus
-ffffffc008a79a44 t smp_cpu_setup
-ffffffc008a79b08 T smp_prepare_cpus
-ffffffc008a79c4c T set_smp_ipi_range
-ffffffc008a79d68 t is_mpidr_duplicate
-ffffffc008a79e34 T __initstub__kmod_topology__341_252_init_amu_fie1
-ffffffc008a79e48 t parse_spectre_v2_param
-ffffffc008a79e68 t parse_spectre_v4_param
-ffffffc008a79f00 T spectre_v4_patch_fw_mitigation_enable
-ffffffc008a79fb0 T smccc_patch_fw_mitigation_conduit
-ffffffc008a7a008 t parse_spectre_bhb_param
-ffffffc008a7a028 T spectre_bhb_patch_clearbhb
-ffffffc008a7a068 T init_feature_override
-ffffffc008a7a0f4 t parse_cmdline
-ffffffc008a7a150 t mmfr1_vh_filter
-ffffffc008a7a17c t pfr0_sve_filter
-ffffffc008a7a1a8 t pfr1_sme_filter
-ffffffc008a7a1d0 t get_bootargs_cmdline
-ffffffc008a7a24c t __parse_cmdline
-ffffffc008a7a3d8 t match_options
-ffffffc008a7a578 t find_field
-ffffffc008a7a640 T __initstub__kmod_perf_event__418_1398_armv8_pmu_driver_init6
-ffffffc008a7a678 T __initstub__kmod_hw_breakpoint__394_1018_arch_hw_breakpoint_init3
-ffffffc008a7a6a0 t arch_hw_breakpoint_init
-ffffffc008a7a7b0 T cpu_suspend_set_dbg_restorer
-ffffffc008a7a7d8 T __initstub__kmod_suspend__397_163_cpu_suspend_initearly
-ffffffc008a7a800 t cpu_suspend_init
-ffffffc008a7a860 t parse_no_stealacc
-ffffffc008a7a880 T pv_time_init
-ffffffc008a7a940 t has_pv_steal_clock
-ffffffc008a7aa28 T __initstub__kmod_kaslr__299_93_kaslr_init4
-ffffffc008a7aa54 t kaslr_init
-ffffffc008a7ab28 T kasan_hw_tags_enable
-ffffffc008a7ab5c T __initstub__kmod_mte__433_605_register_mte_tcf_preferred_sysctl4
-ffffffc008a7ac44 T __initstub__kmod_uprobes__402_208_arch_init_uprobes6
-ffffffc008a7ac88 T hook_debug_fault_code
-ffffffc008a7acc4 t early_disable_dma32
-ffffffc008a7ad1c t early_mem
-ffffffc008a7ada8 T arm64_memblock_init
-ffffffc008a7b02c t reserve_crashkernel
-ffffffc008a7b1d0 T bootmem_init
-ffffffc008a7b240 t zone_sizes_init
-ffffffc008a7b340 T mem_init
-ffffffc008a7b38c t reserve_crashkernel_low
-ffffffc008a7b434 t max_zone_phys
-ffffffc008a7b4a8 t ioremap_guard_setup
-ffffffc008a7b4c8 T early_ioremap_init
-ffffffc008a7b4f4 T __initstub__kmod_mmap__371_78_adjust_protection_map3
-ffffffc008a7b544 T pgtable_cache_init
-ffffffc008a7b554 T create_pgd_mapping
-ffffffc008a7b60c T mark_linear_text_alias_ro
-ffffffc008a7b788 t enable_crash_mem_map
-ffffffc008a7b7a8 T __initstub__kmod_mmu__431_677_map_entry_trampoline1
-ffffffc008a7b7d4 t map_entry_trampoline
-ffffffc008a7b920 T paging_init
-ffffffc008a7bc98 t map_kernel
-ffffffc008a7bf6c t map_mem
-ffffffc008a7c120 t create_idmap
-ffffffc008a7c390 T early_fixmap_init
-ffffffc008a7c6c0 T fixmap_remap_fdt
-ffffffc008a7c7a0 t create_mapping_noalloc
-ffffffc008a7c834 T __initstub__kmod_mmu__470_1718_prevent_bootmem_remove_initearly
-ffffffc008a7c85c t prevent_bootmem_remove_init
-ffffffc008a7c8c4 t map_kernel_segment
-ffffffc008a7c9d0 t early_pgtable_alloc
-ffffffc008a7cac0 t __map_memblock
-ffffffc008a7cc08 T __initstub__kmod_context__403_399_asids_update_limit3
-ffffffc008a7ccfc T __initstub__kmod_context__405_422_asids_initearly
-ffffffc008a7ce00 W arch_task_cache_init
-ffffffc008a7ce10 T fork_init
-ffffffc008a7cf3c t coredump_filter_setup
-ffffffc008a7cf80 T fork_idle
-ffffffc008a7d070 T proc_caches_init
-ffffffc008a7d21c T __initstub__kmod_exec_domain__392_35_proc_execdomains_init6
-ffffffc008a7d268 T __initstub__kmod_panic__393_109_kernel_panic_sysctls_init7
-ffffffc008a7d2b0 T __initstub__kmod_panic__395_128_kernel_panic_sysfs_init7
-ffffffc008a7d2f4 T __initstub__kmod_panic__399_746_register_warn_debugfs6
-ffffffc008a7d348 t oops_setup
-ffffffc008a7d3a0 t panic_on_taint_setup
-ffffffc008a7d498 T cpuhp_threads_init
-ffffffc008a7d530 t cpuhp_init_state
-ffffffc008a7d60c T __initstub__kmod_cpu__431_1624_alloc_frozen_cpus1
-ffffffc008a7d620 T __initstub__kmod_cpu__433_1671_cpu_hotplug_pm_sync_init1
-ffffffc008a7d660 T __initstub__kmod_cpu__435_2600_cpuhp_sysfs_init6
-ffffffc008a7d688 t cpuhp_sysfs_init
-ffffffc008a7d754 T boot_cpu_init
-ffffffc008a7d868 T boot_cpu_hotplug_init
-ffffffc008a7d930 t mitigations_parse_cmdline
-ffffffc008a7da04 T __initstub__kmod_exit__465_100_kernel_exit_sysctls_init7
-ffffffc008a7da4c T __initstub__kmod_exit__467_119_kernel_exit_sysfs_init7
-ffffffc008a7da90 T softirq_init
-ffffffc008a7db60 T __initstub__kmod_softirq__414_1038_spawn_ksoftirqdearly
-ffffffc008a7db8c t spawn_ksoftirqd
-ffffffc008a7dbf4 W arch_probe_nr_irqs
-ffffffc008a7dc08 W arch_early_irq_init
-ffffffc008a7dc1c T __initstub__kmod_resource__380_149_ioresources_init6
-ffffffc008a7dc48 t ioresources_init
-ffffffc008a7dcc8 T reserve_region_with_split
-ffffffc008a7ddc0 t __reserve_region_with_split
-ffffffc008a7df88 t reserve_setup
-ffffffc008a7e0c4 T __initstub__kmod_resource__389_2015_iomem_init_inode5
-ffffffc008a7e0ec t iomem_init_inode
-ffffffc008a7e1ac t strict_iomem
-ffffffc008a7e218 T sysctl_init_bases
-ffffffc008a7e2ac t file_caps_disable
-ffffffc008a7e2c8 T __initstub__kmod_user__372_257_uid_cache_init4
-ffffffc008a7e2f4 t uid_cache_init
-ffffffc008a7e3d8 t setup_print_fatal_signals
-ffffffc008a7e444 T signals_init
-ffffffc008a7e498 T __initstub__kmod_workqueue__468_5698_wq_sysfs_init1
-ffffffc008a7e4c0 t wq_sysfs_init
-ffffffc008a7e510 T workqueue_init_early
-ffffffc008a7e890 T workqueue_init
-ffffffc008a7eb5c T pid_idr_init
-ffffffc008a7ec54 T sort_main_extable
-ffffffc008a7ecc4 T __initstub__kmod_params__380_974_param_sysfs_init4
-ffffffc008a7ecec t param_sysfs_init
-ffffffc008a7ed6c t version_sysfs_builtin
-ffffffc008a7ee10 t param_sysfs_builtin
-ffffffc008a7ef20 t locate_module_kobject
-ffffffc008a7eff0 t kernel_add_sysfs_param
-ffffffc008a7f0a0 t add_sysfs_param
-ffffffc008a7f280 T nsproxy_cache_init
-ffffffc008a7f2dc T __initstub__kmod_ksysfs__388_273_ksysfs_init1
-ffffffc008a7f304 t ksysfs_init
-ffffffc008a7f3d0 T cred_init
-ffffffc008a7f428 t reboot_setup
-ffffffc008a7f61c T __initstub__kmod_reboot__411_1310_reboot_ksysfs_init7
-ffffffc008a7f644 t reboot_ksysfs_init
-ffffffc008a7f6dc T idle_thread_set_boot_cpu
-ffffffc008a7f724 T idle_threads_init
-ffffffc008a7f820 T __initstub__kmod_ucount__310_376_user_namespace_sysctl_init4
-ffffffc008a7f84c t user_namespace_sysctl_init
-ffffffc008a7f934 t setup_schedstats
-ffffffc008a7f9d0 T __initstub__kmod_core__651_4682_sched_core_sysctl_init7
-ffffffc008a7fa18 t setup_resched_latency_warn_ms
-ffffffc008a7faa0 T init_idle
-ffffffc008a7fcd0 T sched_init_smp
-ffffffc008a7fdb4 T __initstub__kmod_core__697_9776_migration_initearly
-ffffffc008a7fde0 t migration_init
-ffffffc008a7fe4c T sched_init
-ffffffc008a801f8 t setup_sched_thermal_decay_shift
-ffffffc008a80294 T __initstub__kmod_fair__435_213_sched_fair_sysctl_init7
-ffffffc008a802dc T sched_init_granularity
-ffffffc008a80308 T init_sched_fair_class
-ffffffc008a80420 t cpu_idle_poll_setup
-ffffffc008a80440 t cpu_idle_nopoll_setup
-ffffffc008a8045c T __initstub__kmod_build_policy__437_65_sched_rt_sysctl_init7
-ffffffc008a804a4 T init_sched_rt_class
-ffffffc008a80558 T __initstub__kmod_build_policy__455_534_sched_pelt_sysctl_init7
-ffffffc008a805a0 T __initstub__kmod_build_policy__463_52_sched_dl_sysctl_init7
-ffffffc008a805e8 T init_sched_dl_class
-ffffffc008a8069c T sched_clock_init
-ffffffc008a806fc T __initstub__kmod_build_utility__431_345_sched_init_debug7
-ffffffc008a80728 t sched_init_debug
-ffffffc008a80904 T __initstub__kmod_build_utility__442_231_proc_schedstat_init4
-ffffffc008a80954 T wait_bit_init
-ffffffc008a80988 t sched_debug_setup
-ffffffc008a809a8 t setup_relax_domain_level
-ffffffc008a809f8 t setup_psi
-ffffffc008a80a34 T psi_init
-ffffffc008a80bf8 T __initstub__kmod_build_utility__512_1575_psi_proc_init6
-ffffffc008a80c24 t psi_proc_init
-ffffffc008a80cd8 T housekeeping_init
-ffffffc008a80dac t housekeeping_nohz_full_setup
-ffffffc008a80ddc t housekeeping_isolcpus_setup
-ffffffc008a80f74 t housekeeping_setup
-ffffffc008a8121c T __initstub__kmod_main__412_467_pm_debugfs_init7
-ffffffc008a81270 T __initstub__kmod_main__414_940_pm_init1
-ffffffc008a81298 t pm_init
-ffffffc008a81340 T pm_states_init
-ffffffc008a81380 t mem_sleep_default_setup
-ffffffc008a813f4 T __initstub__kmod_poweroff__207_45_pm_sysrq_init4
-ffffffc008a81434 T __initstub__kmod_wakeup_reason__407_438_wakeup_reason_init7
-ffffffc008a8145c t wakeup_reason_init
-ffffffc008a81588 t control_devkmsg
-ffffffc008a81660 t log_buf_len_setup
-ffffffc008a816d4 T setup_log_buf
-ffffffc008a81a48 t log_buf_add_cpu
-ffffffc008a81aec t add_to_rb
-ffffffc008a81c14 t ignore_loglevel_setup
-ffffffc008a81c58 t console_msg_format_setup
-ffffffc008a81cc8 t console_setup
-ffffffc008a81e14 t console_suspend_disable
-ffffffc008a81e30 t keep_bootcon_setup
-ffffffc008a81e74 T console_init
-ffffffc008a82074 T __initstub__kmod_printk__409_3362_printk_late_init7
-ffffffc008a820a0 t printk_late_init
-ffffffc008a8222c t log_buf_len_update
-ffffffc008a822e8 T printk_sysctl_init
-ffffffc008a8232c t irq_affinity_setup
-ffffffc008a823c0 T __initstub__kmod_irqdesc__371_334_irq_sysfs_init2
-ffffffc008a823e8 t irq_sysfs_init
-ffffffc008a82518 T early_irq_init
-ffffffc008a82660 t init_irq_default_affinity
-ffffffc008a826d4 t setup_forced_irqthreads
-ffffffc008a82714 t irqfixup_setup
-ffffffc008a82764 t irqpoll_setup
-ffffffc008a827b4 T __initstub__kmod_pm__408_248_irq_pm_init_ops6
-ffffffc008a827ec T __initstub__kmod_update__479_240_rcu_set_runtime_mode1
-ffffffc008a82828 T rcu_init_tasks_generic
-ffffffc008a82850 t rcu_spawn_tasks_kthread
-ffffffc008a828d0 T rcupdate_announce_bootup_oddness
-ffffffc008a82974 t rcu_tasks_bootup_oddness
-ffffffc008a82a04 t rcu_spawn_tasks_kthread_generic
-ffffffc008a82aa0 T __initstub__kmod_srcutree__423_1730_srcu_bootup_announceearly
-ffffffc008a82acc t srcu_bootup_announce
-ffffffc008a82b6c T srcu_init
-ffffffc008a82c94 T kfree_rcu_scheduler_running
-ffffffc008a82dcc T __initstub__kmod_tree__609_4466_rcu_spawn_gp_kthreadearly
-ffffffc008a82df8 t rcu_spawn_gp_kthread
-ffffffc008a82f90 T rcu_init
-ffffffc008a830e4 t kfree_rcu_batch_init
-ffffffc008a832a8 t sanitize_kthread_prio
-ffffffc008a8330c t rcu_init_one
-ffffffc008a83790 t rcu_dump_rcu_node_tree
-ffffffc008a838a8 T __initstub__kmod_tree__626_135_check_cpu_stall_initearly
-ffffffc008a838e8 T __initstub__kmod_tree__714_1025_rcu_sysrq_initearly
-ffffffc008a83938 t rcu_nocb_setup
-ffffffc008a839d0 t parse_rcu_nocb_poll
-ffffffc008a839f0 T rcu_init_nohz
-ffffffc008a83b7c t rcu_organize_nocb_kthreads
-ffffffc008a83db0 t rcu_spawn_core_kthreads
-ffffffc008a83e8c t rcu_start_exp_gp_kworkers
-ffffffc008a83f98 t rcu_boot_init_percpu_data
-ffffffc008a840a0 t rcu_boot_init_nocb_percpu_data
-ffffffc008a84160 t rcu_bootup_announce_oddness
-ffffffc008a84398 t rmem_dma_setup
-ffffffc008a8441c t setup_io_tlb_npages
-ffffffc008a84550 T swiotlb_adjust_size
-ffffffc008a84624 T swiotlb_update_mem_attributes
-ffffffc008a84728 T swiotlb_init_remap
-ffffffc008a84a6c T swiotlb_init
-ffffffc008a84a9c T swiotlb_exit
-ffffffc008a84c6c T __initstub__kmod_swiotlb__421_946_swiotlb_create_default_debugfs7
-ffffffc008a84d04 t rmem_swiotlb_setup
-ffffffc008a84de8 t early_coherent_pool
-ffffffc008a84e54 T __initstub__kmod_pool__392_222_dma_atomic_pool_init2
-ffffffc008a84e7c t dma_atomic_pool_init
-ffffffc008a84f8c t __dma_atomic_pool_init
-ffffffc008a85074 t dma_atomic_pool_debugfs_init
-ffffffc008a85114 T __initstub__kmod_profile__412_553_create_proc_profile4
-ffffffc008a85140 T __initstub__kmod_timer__450_276_timer_sysctl_init6
-ffffffc008a85188 T init_timers
-ffffffc008a851c4 t init_timer_cpus
-ffffffc008a852a4 t setup_hrtimer_hres
-ffffffc008a852e0 T hrtimers_init
-ffffffc008a85330 W read_persistent_wall_and_boot_offset
-ffffffc008a85374 T timekeeping_init
-ffffffc008a855b8 T __initstub__kmod_timekeeping__387_1928_timekeeping_init_ops6
-ffffffc008a855f0 t ntp_tick_adj_setup
-ffffffc008a85640 T ntp_init
-ffffffc008a85738 T __initstub__kmod_clocksource__372_1057_clocksource_done_booting5
-ffffffc008a85764 t clocksource_done_booting
-ffffffc008a857cc T __initstub__kmod_clocksource__378_1458_init_clocksource_sysfs6
-ffffffc008a857f4 t init_clocksource_sysfs
-ffffffc008a8585c t boot_override_clocksource
-ffffffc008a858c4 t boot_override_clock
-ffffffc008a85938 T __initstub__kmod_jiffies__362_69_init_jiffies_clocksource1
-ffffffc008a85974 W clocksource_default_clock
-ffffffc008a8598c T __initstub__kmod_timer_list__380_359_init_timer_list_procfs6
-ffffffc008a859e4 T __initstub__kmod_alarmtimer__406_964_alarmtimer_init6
-ffffffc008a85a0c t alarmtimer_init
-ffffffc008a85ae4 T __initstub__kmod_posix_timers__396_280_init_posix_timers6
-ffffffc008a85b40 T posix_cputimers_init_work
-ffffffc008a85b68 T __initstub__kmod_clockevents__374_777_clockevents_init_sysfs6
-ffffffc008a85b90 t clockevents_init_sysfs
-ffffffc008a85bdc t tick_init_sysfs
-ffffffc008a85cdc t tick_broadcast_init_sysfs
-ffffffc008a85d3c T tick_init
-ffffffc008a85d68 T tick_broadcast_init
-ffffffc008a85e24 T generic_sched_clock_init
-ffffffc008a85f58 T __initstub__kmod_sched_clock__371_299_sched_clock_syscore_init6
-ffffffc008a85f90 t setup_tick_nohz
-ffffffc008a85fcc t skew_tick
-ffffffc008a86038 T __initstub__kmod_timekeeping_debug__407_44_tk_debug_sleep_time_init7
-ffffffc008a8608c T __initstub__kmod_core__418_1153_futex_init1
-ffffffc008a860b8 t futex_init
-ffffffc008a861a8 T call_function_init
-ffffffc008a8624c t nosmp
-ffffffc008a86284 t nrcpus
-ffffffc008a86314 t maxcpus
-ffffffc008a86398 T setup_nr_cpu_ids
-ffffffc008a863d0 T smp_init
-ffffffc008a86464 T __initstub__kmod_kallsyms__512_961_kallsyms_init6
-ffffffc008a864ac T parse_crashkernel
-ffffffc008a864d8 t __parse_crashkernel
-ffffffc008a865c0 T parse_crashkernel_high
-ffffffc008a865f4 T parse_crashkernel_low
-ffffffc008a86628 t parse_crashkernel_dummy
-ffffffc008a8663c T __initstub__kmod_crash_core__379_514_crash_save_vmcoreinfo_init4
-ffffffc008a86664 t crash_save_vmcoreinfo_init
-ffffffc008a86d20 t get_last_crashkernel
-ffffffc008a86e30 t parse_crashkernel_suffix
-ffffffc008a86f1c t parse_crashkernel_mem
-ffffffc008a87148 t parse_crashkernel_simple
-ffffffc008a8722c T __initstub__kmod_kexec_core__422_952_kexec_core_sysctl_init7
-ffffffc008a87274 T __initstub__kmod_kexec_core__427_1128_crash_notes_memory_init4
-ffffffc008a8729c t crash_notes_memory_init
-ffffffc008a87300 T __initstub__kmod_configs__331_75_ikconfig_init6
-ffffffc008a87370 T __initstub__kmod_kheaders__331_61_ikheaders_init6
-ffffffc008a873c4 T __initstub__kmod_stop_machine__382_586_cpu_stop_initearly
-ffffffc008a873f0 t cpu_stop_init
-ffffffc008a874e4 T __initstub__kmod_audit__602_1712_audit_init2
-ffffffc008a87510 t audit_init
-ffffffc008a876b0 t audit_enable
-ffffffc008a877f4 t audit_backlog_limit_set
-ffffffc008a878b0 t audit_net_init
-ffffffc008a87984 T audit_register_class
-ffffffc008a87a54 T __initstub__kmod_audit_watch__433_503_audit_watch_init6
-ffffffc008a87a80 t audit_watch_init
-ffffffc008a87ad8 T __initstub__kmod_audit_fsnotify__433_193_audit_fsnotify_init6
-ffffffc008a87b04 t audit_fsnotify_init
-ffffffc008a87b5c T __initstub__kmod_audit_tree__438_1086_audit_tree_init6
-ffffffc008a87b88 t audit_tree_init
-ffffffc008a87c2c T __initstub__kmod_hung_task__415_406_hung_task_init4
-ffffffc008a87c58 t hung_task_init
-ffffffc008a87d0c W watchdog_nmi_probe
-ffffffc008a87d20 t nowatchdog_setup
-ffffffc008a87d3c t nosoftlockup_setup
-ffffffc008a87d58 t watchdog_thresh_setup
-ffffffc008a87dc4 T lockup_detector_init
-ffffffc008a87e48 t lockup_detector_setup
-ffffffc008a87ef0 T __initstub__kmod_seccomp__526_2406_seccomp_sysctl_init6
-ffffffc008a87f1c t seccomp_sysctl_init
-ffffffc008a87f74 T __initstub__kmod_utsname_sysctl__256_154_utsname_sysctl_init6
-ffffffc008a87fbc T __initstub__kmod_tracepoint__340_140_release_early_probes2
-ffffffc008a87fe8 t release_early_probes
-ffffffc008a88050 t set_cmdline_ftrace
-ffffffc008a880b0 t set_ftrace_dump_on_oops
-ffffffc008a88154 t stop_trace_on_warning
-ffffffc008a881bc t boot_alloc_snapshot
-ffffffc008a881dc t boot_snapshot
-ffffffc008a88204 t set_trace_boot_options
-ffffffc008a88244 t set_trace_boot_clock
-ffffffc008a88298 t set_tracepoint_printk
-ffffffc008a8831c t set_tracepoint_printk_stop
-ffffffc008a8833c t set_buf_size
-ffffffc008a883b8 t set_tracing_thresh
-ffffffc008a88444 T register_tracer
-ffffffc008a88638 t apply_trace_boot_options
-ffffffc008a88704 T __initstub__kmod_trace__435_9737_trace_eval_init4
-ffffffc008a8872c t trace_eval_init
-ffffffc008a887ec T __initstub__kmod_trace__437_9747_trace_eval_sync7s
-ffffffc008a88828 T __initstub__kmod_trace__439_9882_tracer_init_tracefs5
-ffffffc008a88854 t tracer_init_tracefs
-ffffffc008a88960 T ftrace_boot_snapshot
-ffffffc008a889e4 T early_trace_init
-ffffffc008a88a7c t tracer_alloc_buffers
-ffffffc008a88dd8 T trace_init
-ffffffc008a88e04 T __initstub__kmod_trace__442_10396_late_trace_init7s
-ffffffc008a88e30 t late_trace_init
-ffffffc008a88eb4 t eval_map_work_func
-ffffffc008a88f00 t tracer_init_tracefs_work_func
-ffffffc008a89034 t create_trace_instances
-ffffffc008a8914c T init_events
-ffffffc008a891f4 T __initstub__kmod_trace_printk__393_393_init_trace_printk_function_export5
-ffffffc008a89220 t init_trace_printk_function_export
-ffffffc008a89270 T __initstub__kmod_trace_printk__395_400_init_trace_printkearly
-ffffffc008a89284 t setup_trace_event
-ffffffc008a892d0 T __initstub__kmod_trace_events__437_3801_event_trace_enable_againearly
-ffffffc008a892f8 t event_trace_enable_again
-ffffffc008a89364 T event_trace_init
-ffffffc008a89400 t early_event_add_tracer
-ffffffc008a8948c T trace_event_init
-ffffffc008a894bc t event_trace_memsetup
-ffffffc008a89538 t event_trace_enable
-ffffffc008a896c0 t event_trace_init_fields
-ffffffc008a89a58 t early_enable_events
-ffffffc008a89b74 T register_event_command
-ffffffc008a89c28 T unregister_event_command
-ffffffc008a89cd4 T register_trigger_cmds
-ffffffc008a89d24 t register_trigger_traceon_traceoff_cmds
-ffffffc008a89d90 t register_trigger_enable_disable_cmds
-ffffffc008a89e00 T __initstub__kmod_trace_eprobe__401_1081_trace_events_eprobe_init_early1
-ffffffc008a89e28 t trace_events_eprobe_init_early
-ffffffc008a89e80 T __initstub__kmod_trace_events_synth__398_2249_trace_events_synth_init_early1
-ffffffc008a89ea8 t trace_events_synth_init_early
-ffffffc008a89f00 T __initstub__kmod_trace_events_synth__400_2273_trace_events_synth_init5
-ffffffc008a89f28 t trace_events_synth_init
-ffffffc008a89fa8 T register_trigger_hist_cmd
-ffffffc008a89fe8 T register_trigger_hist_enable_disable_cmds
-ffffffc008a8a06c T __initstub__kmod_trace_dynevent__393_271_init_dynamic_event5
-ffffffc008a8a098 t init_dynamic_event
-ffffffc008a8a0e8 T __initstub__kmod_trace_uprobe__623_1667_init_uprobe_trace5
-ffffffc008a8a110 t init_uprobe_trace
-ffffffc008a8a1a0 T __initstub__kmod_irq_work__371_318_irq_work_init_threadsearly
-ffffffc008a8a1b4 T __initstub__kmod_cpu_pm__331_213_cpu_pm_init1
-ffffffc008a8a1ec T scs_init
-ffffffc008a8a240 T perf_event_init
-ffffffc008a8a378 t perf_event_init_all_cpus
-ffffffc008a8a4bc T __initstub__kmod_core__676_13622_perf_event_sysfs_init6
-ffffffc008a8a4e4 t perf_event_sysfs_init
-ffffffc008a8a5c0 T init_hw_breakpoint
-ffffffc008a8a64c t init_breakpoint_slots
-ffffffc008a8a860 T uprobes_init
-ffffffc008a8a8e4 T jump_label_init
-ffffffc008a8aa3c T pagecache_init
-ffffffc008a8aab0 T __initstub__kmod_oom_kill__451_741_oom_init4
-ffffffc008a8aadc t oom_init
-ffffffc008a8ab68 T page_writeback_init
-ffffffc008a8ac60 T swap_setup
-ffffffc008a8ac94 T __initstub__kmod_vmscan__627_6167_init_lru_gen7
-ffffffc008a8acc0 t init_lru_gen
-ffffffc008a8ad6c T __initstub__kmod_vmscan__660_7858_kswapd_init6
-ffffffc008a8ada4 T shmem_init
-ffffffc008a8ae9c T init_mm_internals
-ffffffc008a8b018 t start_shepherd_timer
-ffffffc008a8b138 T __initstub__kmod_vmstat__431_2248_extfrag_debug_init6
-ffffffc008a8b164 t extfrag_debug_init
-ffffffc008a8b1f8 T __initstub__kmod_backing_dev__423_232_bdi_class_init2
-ffffffc008a8b220 t bdi_class_init
-ffffffc008a8b29c T __initstub__kmod_backing_dev__425_242_default_bdi_init4
-ffffffc008a8b2f0 T mminit_verify_zonelist
-ffffffc008a8b424 T mminit_verify_pageflags_layout
-ffffffc008a8b548 t set_mminit_loglevel
-ffffffc008a8b5b4 T __initstub__kmod_mm_init__422_194_mm_compute_batch_init6
-ffffffc008a8b5e0 t mm_compute_batch_init
-ffffffc008a8b628 T __initstub__kmod_mm_init__424_206_mm_sysfs_init2
-ffffffc008a8b67c T pcpu_alloc_alloc_info
-ffffffc008a8b74c T pcpu_free_alloc_info
-ffffffc008a8b77c T pcpu_setup_first_chunk
-ffffffc008a8c100 t pcpu_alloc_first_chunk
-ffffffc008a8c46c t percpu_alloc_setup
-ffffffc008a8c4b4 T pcpu_embed_first_chunk
-ffffffc008a8c7f8 t pcpu_build_alloc_info
-ffffffc008a8cdf0 T setup_per_cpu_areas
-ffffffc008a8cec8 T __initstub__kmod_percpu__460_3463_percpu_enable_async4
-ffffffc008a8cf00 t setup_slab_nomerge
-ffffffc008a8cf1c t setup_slab_merge
-ffffffc008a8cf3c T create_boot_cache
-ffffffc008a8d038 T create_kmalloc_cache
-ffffffc008a8d118 T setup_kmalloc_cache_index_table
-ffffffc008a8d144 T create_kmalloc_caches
-ffffffc008a8d218 t new_kmalloc_cache
-ffffffc008a8d2d4 T __initstub__kmod_slab_common__451_1324_slab_proc_init6
-ffffffc008a8d31c T __initstub__kmod_compaction__514_3091_kcompactd_init4
-ffffffc008a8d344 t kcompactd_init
-ffffffc008a8d3c8 T __initstub__kmod_workingset__442_748_workingset_init6
-ffffffc008a8d3f0 t workingset_init
-ffffffc008a8d4d0 t disable_randmaps
-ffffffc008a8d4ec T __initstub__kmod_memory__429_164_init_zero_pfnearly
-ffffffc008a8d520 T __initstub__kmod_memory__447_4481_fault_around_debugfs7
-ffffffc008a8d574 t cmdline_parse_stack_guard_gap
-ffffffc008a8d5f4 T mmap_init
-ffffffc008a8d638 T __initstub__kmod_mmap__457_3678_init_user_reserve4
-ffffffc008a8d67c T __initstub__kmod_mmap__461_3699_init_admin_reserve4
-ffffffc008a8d6c0 T __initstub__kmod_mmap__463_3769_init_reserve_notifier4
-ffffffc008a8d6f8 T anon_vma_init
-ffffffc008a8d77c t set_nohugeiomap
-ffffffc008a8d79c t set_nohugevmalloc
-ffffffc008a8d7bc T vm_area_add_early
-ffffffc008a8d830 T vm_area_register_early
-ffffffc008a8d8ec T vmalloc_init
-ffffffc008a8dae4 T __initstub__kmod_vmalloc__454_4201_proc_vmalloc_init6
-ffffffc008a8db34 t early_init_on_alloc
-ffffffc008a8db68 t early_init_on_free
-ffffffc008a8db9c T init_mem_debugging_and_hardening
-ffffffc008a8dc1c T memblock_free_pages
-ffffffc008a8dc4c T page_alloc_init_late
-ffffffc008a8dcbc t build_all_zonelists_init
-ffffffc008a8ddb4 T memmap_alloc
-ffffffc008a8ddfc T setup_per_cpu_pageset
-ffffffc008a8de78 T get_pfn_range_for_nid
-ffffffc008a8df5c T __absent_pages_in_range
-ffffffc008a8e034 T absent_pages_in_range
-ffffffc008a8e06c T set_pageblock_order
-ffffffc008a8e07c T node_map_pfn_alignment
-ffffffc008a8e194 T free_area_init
-ffffffc008a8e3f0 t find_zone_movable_pfns_for_nodes
-ffffffc008a8e7dc t free_area_init_node
-ffffffc008a8e8d0 t memmap_init
-ffffffc008a8ea10 t cmdline_parse_kernelcore
-ffffffc008a8ea80 t cmdline_parse_movablecore
-ffffffc008a8eabc T mem_init_print_info
-ffffffc008a8ec78 T set_dma_reserve
-ffffffc008a8ec90 T page_alloc_init
-ffffffc008a8ed00 T __initstub__kmod_page_alloc__592_8942_init_per_zone_wmark_min2
-ffffffc008a8ed30 T alloc_large_system_hash
-ffffffc008a8efe0 t early_calculate_totalpages
-ffffffc008a8f0a0 t calculate_node_totalpages
-ffffffc008a8f1a8 t free_area_init_core
-ffffffc008a8f31c t zone_spanned_pages_in_node
-ffffffc008a8f408 t zone_absent_pages_in_node
-ffffffc008a8f5a8 t adjust_zone_range_for_zone_movable
-ffffffc008a8f638 t memmap_init_zone_range
-ffffffc008a8f704 t init_unavailable_range
-ffffffc008a8f864 t cmdline_parse_core
-ffffffc008a8f93c T memblock_alloc_range_nid
-ffffffc008a8faf8 T memblock_phys_alloc_range
-ffffffc008a8fbc0 T memblock_phys_alloc_try_nid
-ffffffc008a8fbfc T memblock_alloc_exact_nid_raw
-ffffffc008a8fcd0 t memblock_alloc_internal
-ffffffc008a8fdb0 T memblock_alloc_try_nid_raw
-ffffffc008a8fe88 T memblock_alloc_try_nid
-ffffffc008a8ff7c T memblock_free_late
-ffffffc008a900c4 T memblock_enforce_memory_limit
-ffffffc008a90160 T memblock_cap_memory_range
-ffffffc008a902cc T memblock_mem_limit_remove_map
-ffffffc008a9034c T memblock_allow_resize
-ffffffc008a90368 t early_memblock
-ffffffc008a903b4 T reset_all_zones_managed_pages
-ffffffc008a903f8 T memblock_free_all
-ffffffc008a90488 t free_low_memory_core_early
-ffffffc008a905d0 T __initstub__kmod_memblock__447_2177_memblock_init_debugfs6
-ffffffc008a905fc t memblock_init_debugfs
-ffffffc008a9069c t memmap_init_reserved_pages
-ffffffc008a90780 t __free_pages_memory
-ffffffc008a90828 t setup_memhp_default_state
-ffffffc008a90864 t cmdline_parse_movable_node
-ffffffc008a90884 T __initstub__kmod_swap_state__444_909_swap_init_sysfs4
-ffffffc008a908ac t swap_init_sysfs
-ffffffc008a90944 T __initstub__kmod_swapfile__459_2688_procswaps_init6
-ffffffc008a9098c T __initstub__kmod_swapfile__462_2697_max_swapfiles_check7
-ffffffc008a909a0 T __initstub__kmod_swapfile__485_3687_swapfile_init4
-ffffffc008a909c8 t swapfile_init
-ffffffc008a90a58 T subsection_map_init
-ffffffc008a90b44 T sparse_init
-ffffffc008a90cf8 t memblocks_present
-ffffffc008a90d84 t sparse_init_nid
-ffffffc008a91060 t memory_present
-ffffffc008a911e0 t sparse_early_usemaps_alloc_pgdat_section
-ffffffc008a9125c t sparse_buffer_init
-ffffffc008a912cc t sparse_buffer_fini
-ffffffc008a91320 t check_usemap_section_nr
-ffffffc008a91444 t setup_slub_debug
-ffffffc008a915d4 t setup_slub_min_order
-ffffffc008a91640 t setup_slub_max_order
-ffffffc008a916cc t setup_slub_min_objects
-ffffffc008a91738 T kmem_cache_init
-ffffffc008a918c4 t bootstrap
-ffffffc008a919f4 t init_freelist_randomization
-ffffffc008a91ad4 T kmem_cache_init_late
-ffffffc008a91b24 T __initstub__kmod_slub__448_6078_slab_sysfs_init6
-ffffffc008a91b4c t slab_sysfs_init
-ffffffc008a91cec T __initstub__kmod_slub__451_6293_slab_debugfs_init6
-ffffffc008a91d18 t slab_debugfs_init
-ffffffc008a91e1c t early_kasan_fault
-ffffffc008a91e98 t kasan_set_multi_shot
-ffffffc008a91ee4 t early_kasan_flag
-ffffffc008a91f60 t early_kasan_mode
-ffffffc008a91ff8 t early_kasan_flag_vmalloc
-ffffffc008a92074 t early_kasan_flag_page_alloc_sample
-ffffffc008a920e0 t early_kasan_flag_page_alloc_sample_order
-ffffffc008a92148 T kasan_init_hw_tags
-ffffffc008a92288 t early_kasan_flag_stacktrace
-ffffffc008a92304 t early_kasan_flag_stack_ring_size
-ffffffc008a92348 T kasan_init_tags
-ffffffc008a92404 T __initstub__kmod_huge_memory__451_521_hugepage_init4
-ffffffc008a9242c t hugepage_init
-ffffffc008a92544 t setup_transparent_hugepage
-ffffffc008a92724 T __initstub__kmod_huge_memory__465_3193_split_huge_pages_debugfs7
-ffffffc008a92774 t hugepage_init_sysfs
-ffffffc008a92850 t hugepage_exit_sysfs
-ffffffc008a928ac T khugepaged_init
-ffffffc008a92940 T khugepaged_destroy
-ffffffc008a92974 t early_page_owner_param
-ffffffc008a929cc t need_page_owner
-ffffffc008a929e4 t init_page_owner
-ffffffc008a92ca4 T __initstub__kmod_page_owner__421_745_pageowner_init7
-ffffffc008a92cd0 t pageowner_init
-ffffffc008a92d3c T __initstub__kmod_zsmalloc__431_2366_zs_init6
-ffffffc008a92da4 t early_ioremap_debug_setup
-ffffffc008a92dc4 W early_memremap_pgprot_adjust
-ffffffc008a92dd8 T early_ioremap_reset
-ffffffc008a92de8 T early_ioremap_setup
-ffffffc008a92e4c T __initstub__kmod_early_ioremap__407_99_check_early_ioremap_leak7
-ffffffc008a92e74 t check_early_ioremap_leak
-ffffffc008a92ef0 T early_iounmap
-ffffffc008a9304c T early_ioremap
-ffffffc008a93090 t __early_ioremap
-ffffffc008a93258 T early_memremap
-ffffffc008a932c0 T early_memremap_ro
-ffffffc008a93328 T copy_from_early_mem
-ffffffc008a933d4 T early_memunmap
-ffffffc008a93400 t setup_early_page_ext
-ffffffc008a93420 T page_ext_init
-ffffffc008a935a4 T __initstub__kmod_secretmem__414_293_secretmem_init5
-ffffffc008a935cc t secretmem_init
-ffffffc008a9362c t parse_hardened_usercopy
-ffffffc008a93688 T __initstub__kmod_usercopy__405_276_set_hardened_usercopy7
-ffffffc008a936d4 T __initstub__kmod_file_table__416_130_init_fs_stat_sysctls5
-ffffffc008a93700 t init_fs_stat_sysctls
-ffffffc008a93760 T files_init
-ffffffc008a937d4 T files_maxfiles_init
-ffffffc008a93850 T chrdev_init
-ffffffc008a93894 T __initstub__kmod_exec__446_2157_init_fs_exec_sysctls5
-ffffffc008a938dc T __initstub__kmod_pipe__426_1511_init_pipe_fs5
-ffffffc008a93904 t init_pipe_fs
-ffffffc008a9399c T __initstub__kmod_namei__442_1076_init_fs_namei_sysctls5
-ffffffc008a939e4 T __initstub__kmod_fcntl__416_1041_fcntl_init6
-ffffffc008a93a40 T __initstub__kmod_dcache__380_202_init_fs_dcache_sysctls5
-ffffffc008a93a88 t set_dhash_entries
-ffffffc008a93b00 T vfs_caches_init_early
-ffffffc008a93b40 t dcache_init_early
-ffffffc008a93bc8 T vfs_caches_init
-ffffffc008a93c7c T __initstub__kmod_inode__409_140_init_fs_inode_sysctlsearly
-ffffffc008a93cc4 t set_ihash_entries
-ffffffc008a93d3c T inode_init_early
-ffffffc008a93dac T inode_init
-ffffffc008a93e04 T list_bdev_fs_names
-ffffffc008a93ed8 T __initstub__kmod_filesystems__392_258_proc_filesystems_init6
-ffffffc008a93f24 t set_mhash_entries
-ffffffc008a93f9c t set_mphash_entries
-ffffffc008a94014 T mnt_init
-ffffffc008a94170 t init_mount_tree
-ffffffc008a94308 T __initstub__kmod_namespace__428_4719_init_fs_namespace_sysctls5
-ffffffc008a94350 T seq_file_init
-ffffffc008a943a4 T __initstub__kmod_fs_writeback__524_2339_start_dirtytime_writeback6
-ffffffc008a943f8 T nsfs_init
-ffffffc008a94458 T init_mount
-ffffffc008a94518 T init_umount
-ffffffc008a945a0 T init_chdir
-ffffffc008a94654 T init_chroot
-ffffffc008a94728 T init_chown
-ffffffc008a947f4 T init_chmod
-ffffffc008a94888 T init_eaccess
-ffffffc008a94928 T init_stat
-ffffffc008a949d4 T init_mknod
-ffffffc008a94b08 T init_link
-ffffffc008a94c18 T init_symlink
-ffffffc008a94cd0 T init_unlink
-ffffffc008a94d08 T init_mkdir
-ffffffc008a94de4 T init_rmdir
-ffffffc008a94e1c T init_utimes
-ffffffc008a94eb0 T init_dup
-ffffffc008a94f2c T buffer_init
-ffffffc008a94ff8 T __initstub__kmod_direct_io__424_1346_dio_init6
-ffffffc008a95054 T __initstub__kmod_fsnotify__395_601_fsnotify_init1
-ffffffc008a95080 t fsnotify_init
-ffffffc008a950f8 T __initstub__kmod_inotify_user__435_891_inotify_user_setup5
-ffffffc008a95124 t inotify_user_setup
-ffffffc008a95258 T __initstub__kmod_eventpoll__664_2419_eventpoll_init5
-ffffffc008a95284 t eventpoll_init
-ffffffc008a953e4 T __initstub__kmod_anon_inodes__380_270_anon_inode_init5
-ffffffc008a95410 t anon_inode_init
-ffffffc008a9548c T __initstub__kmod_userfaultfd__450_2196_userfaultfd_init6
-ffffffc008a954b4 t userfaultfd_init
-ffffffc008a95530 T __initstub__kmod_aio__429_307_aio_setup6
-ffffffc008a9555c t aio_setup
-ffffffc008a95628 T __initstub__kmod_locks__434_121_init_fs_locks_sysctlsearly
-ffffffc008a95670 T __initstub__kmod_locks__452_2916_proc_locks_init5
-ffffffc008a956c0 T __initstub__kmod_locks__454_2939_filelock_init1
-ffffffc008a956ec t filelock_init
-ffffffc008a957e8 T __initstub__kmod_binfmt_misc__411_834_init_misc_binfmt1
-ffffffc008a95810 t init_misc_binfmt
-ffffffc008a95868 T __initstub__kmod_binfmt_script__331_156_init_script_binfmt1
-ffffffc008a958a4 T __initstub__kmod_binfmt_elf__433_2345_init_elf_binfmt1
-ffffffc008a958e0 T __initstub__kmod_mbcache__331_440_mbcache_init6
-ffffffc008a95944 T __initstub__kmod_coredump__426_985_init_fs_coredump_sysctls5
-ffffffc008a9598c T __initstub__kmod_iomap__447_1553_iomap_init5
-ffffffc008a959cc T proc_init_kmemcache
-ffffffc008a95a7c T proc_root_init
-ffffffc008a95b20 T set_proc_pid_nlink
-ffffffc008a95b44 T proc_tty_init
-ffffffc008a95bf4 T __initstub__kmod_proc__322_19_proc_cmdline_init5
-ffffffc008a95c40 T __initstub__kmod_proc__339_98_proc_consoles_init5
-ffffffc008a95c90 T __initstub__kmod_proc__339_28_proc_cpuinfo_init5
-ffffffc008a95cd8 T __initstub__kmod_proc__420_64_proc_devices_init5
-ffffffc008a95d04 t proc_devices_init
-ffffffc008a95d5c T __initstub__kmod_proc__356_42_proc_interrupts_init5
-ffffffc008a95dac T __initstub__kmod_proc__373_37_proc_loadavg_init5
-ffffffc008a95e08 T __initstub__kmod_proc__408_173_proc_meminfo_init5
-ffffffc008a95e64 T __initstub__kmod_proc__359_242_proc_stat_init5
-ffffffc008a95eac T __initstub__kmod_proc__356_49_proc_uptime_init5
-ffffffc008a95f08 T __initstub__kmod_proc__322_27_proc_version_init5
-ffffffc008a95f64 T __initstub__kmod_proc__356_37_proc_softirqs_init5
-ffffffc008a95fc0 T proc_self_init
-ffffffc008a95ff4 T proc_thread_self_init
-ffffffc008a96028 T __register_sysctl_init
-ffffffc008a96090 T proc_sys_init
-ffffffc008a960e4 T proc_net_init
-ffffffc008a96130 t proc_net_ns_init
-ffffffc008a9620c T __initstub__kmod_proc__353_63_proc_kmsg_init5
-ffffffc008a96254 T __initstub__kmod_proc__414_342_proc_page_init5
-ffffffc008a96280 t proc_page_init
-ffffffc008a962e0 T __initstub__kmod_proc__322_96_proc_boot_config_init5
-ffffffc008a96308 t proc_boot_config_init
-ffffffc008a963b8 t copy_xbc_key_value_list
-ffffffc008a965bc T kernfs_init
-ffffffc008a9663c t kernfs_lock_init
-ffffffc008a966c8 T sysfs_init
-ffffffc008a96748 T __initstub__kmod_devpts__389_637_init_devpts_fs6
-ffffffc008a96770 t init_devpts_fs
-ffffffc008a967d4 T ext4_init_system_zone
-ffffffc008a96838 T ext4_init_es
-ffffffc008a9689c T ext4_init_pending
-ffffffc008a96900 T ext4_init_mballoc
-ffffffc008a969dc T ext4_init_pageio
-ffffffc008a96a80 T ext4_init_post_read_processing
-ffffffc008a96b1c T __initstub__kmod_ext4__838_7312_ext4_init_fs6
-ffffffc008a96b44 t ext4_init_fs
-ffffffc008a96ce0 t init_inodecache
-ffffffc008a96d48 T ext4_init_sysfs
-ffffffc008a96e28 T ext4_fc_init_dentry_cache
-ffffffc008a96e8c T jbd2_journal_init_transaction_cache
-ffffffc008a96f18 T jbd2_journal_init_revoke_record_cache
-ffffffc008a96fa4 T jbd2_journal_init_revoke_table_cache
-ffffffc008a9702c T __initstub__kmod_jbd2__498_3198_journal_init6
-ffffffc008a97054 t journal_init
-ffffffc008a970b0 t journal_init_caches
-ffffffc008a97104 t jbd2_journal_init_journal_head_cache
-ffffffc008a97188 t jbd2_journal_init_handle_cache
-ffffffc008a9720c t jbd2_journal_init_inode_cache
-ffffffc008a97294 T __initstub__kmod_ramfs__405_299_init_ramfs_fs5
-ffffffc008a972c8 T fuse_dev_init
-ffffffc008a97350 T __initstub__kmod_fuse__551_2237_fuse_init6
-ffffffc008a97378 t fuse_init
-ffffffc008a97530 t fuse_fs_init
-ffffffc008a975e8 T fuse_ctl_init
-ffffffc008a9761c t debugfs_kernel
-ffffffc008a976ac T __initstub__kmod_debugfs__408_906_debugfs_init1
-ffffffc008a976d4 t debugfs_init
-ffffffc008a97774 T tracefs_create_instance_dir
-ffffffc008a977f0 T __initstub__kmod_tracefs__390_645_tracefs_init1
-ffffffc008a97818 t tracefs_init
-ffffffc008a9787c T __initstub__kmod_erofs__478_1121_erofs_module_init6
-ffffffc008a978a4 t erofs_module_init
-ffffffc008a97998 T erofs_init_shrinker
-ffffffc008a979d4 T erofs_init_sysfs
-ffffffc008a97a7c T z_erofs_init_zip_subsystem
-ffffffc008a97cd8 t capability_init
-ffffffc008a97d1c T __initstub__kmod_min_addr__371_53_init_mmap_min_addr0
-ffffffc008a97d4c T early_security_init
-ffffffc008a97de8 t prepare_lsm
-ffffffc008a97ec0 t initialize_lsm
-ffffffc008a97f68 T security_init
-ffffffc008a97fe4 t ordered_lsm_init
-ffffffc008a98254 t choose_major_lsm
-ffffffc008a98274 t choose_lsm_order
-ffffffc008a98294 t enable_debug
-ffffffc008a982b4 T security_add_hooks
-ffffffc008a98380 t lsm_allowed
-ffffffc008a983f8 t lsm_set_blob_sizes
-ffffffc008a984f8 t ordered_lsm_parse
-ffffffc008a98860 t lsm_early_cred
-ffffffc008a988c8 t lsm_early_task
-ffffffc008a98930 t append_ordered_lsm
-ffffffc008a98a28 T __initstub__kmod_inode__405_350_securityfs_init1
-ffffffc008a98a50 t securityfs_init
-ffffffc008a98afc T avc_init
-ffffffc008a98bd4 T avc_add_callback
-ffffffc008a98c4c t enforcing_setup
-ffffffc008a98ccc t checkreqprot_setup
-ffffffc008a98d60 t selinux_init
-ffffffc008a98ec8 T __initstub__kmod_selinux__633_2251_init_sel_fs6
-ffffffc008a98ef0 t init_sel_fs
-ffffffc008a99040 T __initstub__kmod_selinux__446_121_selnl_init6
-ffffffc008a9906c t selnl_init
-ffffffc008a99100 T __initstub__kmod_selinux__632_279_sel_netif_init6
-ffffffc008a9912c t sel_netif_init
-ffffffc008a99190 T __initstub__kmod_selinux__633_305_sel_netnode_init6
-ffffffc008a991d4 T __initstub__kmod_selinux__633_238_sel_netport_init6
-ffffffc008a99218 T ebitmap_cache_init
-ffffffc008a9926c T hashtab_cache_init
-ffffffc008a992c0 T avtab_cache_init
-ffffffc008a99340 T __initstub__kmod_selinux__708_3831_aurule_init6
-ffffffc008a9936c t aurule_init
-ffffffc008a993b8 t integrity_iintcache_init
-ffffffc008a99418 T integrity_load_keys
-ffffffc008a99428 T __initstub__kmod_integrity__379_232_integrity_fs_init7
-ffffffc008a99450 t integrity_fs_init
-ffffffc008a994e0 t integrity_audit_setup
-ffffffc008a99560 T __initstub__kmod_crypto_algapi__475_1311_crypto_algapi_init7
-ffffffc008a995b0 T crypto_init_proc
-ffffffc008a995fc T __initstub__kmod_seqiv__402_183_seqiv_module_init4
-ffffffc008a99630 T __initstub__kmod_echainiv__402_160_echainiv_module_init4
-ffffffc008a99664 T __initstub__kmod_cryptomgr__474_257_cryptomgr_init3
-ffffffc008a996a0 T __initstub__kmod_hmac__402_258_hmac_module_init4
-ffffffc008a996d4 T __initstub__kmod_xcbc__331_270_crypto_xcbc_module_init4
-ffffffc008a99708 T __initstub__kmod_crypto_null__386_221_crypto_null_mod_init4
-ffffffc008a99730 t crypto_null_mod_init
-ffffffc008a997d0 T __initstub__kmod_md5__331_245_md5_mod_init4
-ffffffc008a99804 T __initstub__kmod_sha1_generic__380_89_sha1_generic_mod_init4
-ffffffc008a99838 T __initstub__kmod_sha256_generic__380_101_sha256_generic_mod_init4
-ffffffc008a99870 T __initstub__kmod_sha512_generic__380_218_sha512_generic_mod_init4
-ffffffc008a998a8 T __initstub__kmod_blake2b_generic__331_174_blake2b_mod_init4
-ffffffc008a998e0 T __initstub__kmod_cbc__331_218_crypto_cbc_module_init4
-ffffffc008a99914 T __initstub__kmod_ctr__333_355_crypto_ctr_module_init4
-ffffffc008a9994c T __initstub__kmod_xctr__331_185_crypto_xctr_module_init4
-ffffffc008a99980 T __initstub__kmod_hctr2__407_575_hctr2_module_init4
-ffffffc008a999b8 T __initstub__kmod_adiantum__411_613_adiantum_module_init4
-ffffffc008a999ec T __initstub__kmod_nhpoly1305__340_248_nhpoly1305_mod_init4
-ffffffc008a99a20 T __initstub__kmod_gcm__404_1159_crypto_gcm_module_init4
-ffffffc008a99a48 t crypto_gcm_module_init
-ffffffc008a99ad4 T __initstub__kmod_chacha20poly1305__404_671_chacha20poly1305_module_init4
-ffffffc008a99b0c T __initstub__kmod_des_generic__331_125_des_generic_mod_init4
-ffffffc008a99b44 T __initstub__kmod_aes_generic__331_1314_aes_init4
-ffffffc008a99b78 T __initstub__kmod_chacha_generic__331_128_chacha_generic_mod_init4
-ffffffc008a99bb0 T __initstub__kmod_poly1305_generic__333_142_poly1305_mod_init4
-ffffffc008a99be4 T __initstub__kmod_deflate__384_334_deflate_mod_init4
-ffffffc008a99c0c t deflate_mod_init
-ffffffc008a99c78 T __initstub__kmod_crc32c_generic__331_161_crc32c_mod_init4
-ffffffc008a99cac T __initstub__kmod_authenc__478_464_crypto_authenc_module_init4
-ffffffc008a99ce0 T __initstub__kmod_authencesn__477_479_crypto_authenc_esn_module_init4
-ffffffc008a99d14 T __initstub__kmod_lzo__380_158_lzo_mod_init4
-ffffffc008a99d3c t lzo_mod_init
-ffffffc008a99da4 T __initstub__kmod_lzo_rle__380_158_lzorle_mod_init4
-ffffffc008a99dcc t lzorle_mod_init
-ffffffc008a99e34 T __initstub__kmod_lz4__359_155_lz4_mod_init4
-ffffffc008a99e5c t lz4_mod_init
-ffffffc008a99ec4 T __initstub__kmod_ansi_cprng__337_470_prng_mod_init4
-ffffffc008a99efc T __initstub__kmod_drbg__396_2148_drbg_init4
-ffffffc008a99f24 t drbg_init
-ffffffc008a99fc4 t drbg_fill_array
-ffffffc008a9a0cc T __initstub__kmod_jitterentropy_rng__331_211_jent_mod_init6
-ffffffc008a9a0f4 t jent_mod_init
-ffffffc008a9a148 T __initstub__kmod_ghash_generic__334_178_ghash_mod_init4
-ffffffc008a9a17c T __initstub__kmod_polyval_generic__334_239_polyval_mod_init4
-ffffffc008a9a1b0 T __initstub__kmod_zstd__384_253_zstd_mod_init4
-ffffffc008a9a1d8 t zstd_mod_init
-ffffffc008a9a240 T __initstub__kmod_essiv__403_646_essiv_module_init4
-ffffffc008a9a274 T bdev_cache_init
-ffffffc008a9a320 T __initstub__kmod_fops__446_712_blkdev_init6
-ffffffc008a9a360 T __initstub__kmod_bio__463_1762_init_bio4
-ffffffc008a9a38c t init_bio
-ffffffc008a9a460 t elevator_setup
-ffffffc008a9a498 T blk_dev_init
-ffffffc008a9a564 T __initstub__kmod_blk_ioc__443_457_blk_ioc_init4
-ffffffc008a9a5c0 T __initstub__kmod_blk_timeout__434_99_blk_timeout_init7
-ffffffc008a9a5e0 T __initstub__kmod_blk_mq__461_4953_blk_mq_init4
-ffffffc008a9a60c t blk_mq_init
-ffffffc008a9a734 T printk_all_partitions
-ffffffc008a9a97c T __initstub__kmod_genhd__435_923_genhd_device_init4
-ffffffc008a9a9a4 t genhd_device_init
-ffffffc008a9aa30 T __initstub__kmod_genhd__437_1335_proc_genhd_init6
-ffffffc008a9aa5c t proc_genhd_init
-ffffffc008a9aacc t force_gpt_fn
-ffffffc008a9aaec T __initstub__kmod_mq_deadline__441_1242_deadline_init6
-ffffffc008a9ab20 T __initstub__kmod_kyber_iosched__461_1051_kyber_init6
-ffffffc008a9ab54 T __initstub__kmod_bfq__513_7527_bfq_init6
-ffffffc008a9ab7c t bfq_init
-ffffffc008a9ac18 T __initstub__kmod_blk_crypto__434_99_bio_crypt_ctx_init4
-ffffffc008a9ac44 t bio_crypt_ctx_init
-ffffffc008a9ad00 T __initstub__kmod_blk_crypto_sysfs__432_173_blk_crypto_sysfs_init4
-ffffffc008a9ad60 T __initstub__kmod_io_uring__827_4146_io_uring_init6
-ffffffc008a9ad8c t io_uring_init
-ffffffc008a9ade8 T io_uring_optable_init
-ffffffc008a9ae58 T __initstub__kmod_io_wq__463_1417_io_wq_init4
-ffffffc008a9ae80 t io_wq_init
-ffffffc008a9aef8 T __initstub__kmod_libblake2s__331_69_blake2s_mod_init6
-ffffffc008a9af0c T __initstub__kmod_libcrc32c__331_74_libcrc32c_mod_init6
-ffffffc008a9af68 T __initstub__kmod_percpu_counter__341_257_percpu_counter_startup6
-ffffffc008a9af94 t percpu_counter_startup
-ffffffc008a9b03c T __initstub__kmod_audit__379_89_audit_classes_init6
-ffffffc008a9b068 t audit_classes_init
-ffffffc008a9b0e0 t dyndbg_setup
-ffffffc008a9b0f4 T __initstub__kmod_dynamic_debug__617_1453_dynamic_debug_initearly
-ffffffc008a9b120 t dynamic_debug_init
-ffffffc008a9b3b0 T __initstub__kmod_dynamic_debug__619_1456_dynamic_debug_init_control5
-ffffffc008a9b3d8 t dynamic_debug_init_control
-ffffffc008a9b49c T __initstub__kmod_sg_pool__371_180_sg_pool_init4
-ffffffc008a9b4c4 t sg_pool_init
-ffffffc008a9b5d0 t is_stack_depot_disabled
-ffffffc008a9b638 T stack_depot_want_early_init
-ffffffc008a9b660 T stack_depot_early_init
-ffffffc008a9b750 T xbc_get_info
-ffffffc008a9b7a0 T xbc_root_node
-ffffffc008a9b7c8 T xbc_node_index
-ffffffc008a9b7e8 T xbc_node_get_parent
-ffffffc008a9b810 T xbc_node_get_child
-ffffffc008a9b838 T xbc_node_get_next
-ffffffc008a9b860 T xbc_node_get_data
-ffffffc008a9b8a0 T xbc_node_find_subkey
-ffffffc008a9b9cc t xbc_node_match_prefix
-ffffffc008a9ba84 T xbc_node_find_value
-ffffffc008a9bb3c T xbc_node_compose_key_after
-ffffffc008a9bd4c T xbc_node_find_next_leaf
-ffffffc008a9be34 T xbc_node_find_next_key_value
-ffffffc008a9bed8 T xbc_exit
-ffffffc008a9bf50 T xbc_init
-ffffffc008a9c0fc t xbc_parse_tree
-ffffffc008a9c2c0 t xbc_verify_tree
-ffffffc008a9c5b4 t xbc_parse_kv
-ffffffc008a9c780 t xbc_parse_key
-ffffffc008a9c7f0 t xbc_close_brace
-ffffffc008a9c834 t __xbc_parse_keys
-ffffffc008a9c89c t __xbc_parse_value
-ffffffc008a9ca8c t xbc_parse_array
-ffffffc008a9cb60 t __xbc_close_brace
-ffffffc008a9cc08 t __xbc_add_key
-ffffffc008a9cd04 t xbc_valid_keyword
-ffffffc008a9cd58 t find_match_node
-ffffffc008a9ce04 t __xbc_add_sibling
-ffffffc008a9cf04 t xbc_add_node
-ffffffc008a9cf6c t __xbc_open_brace
-ffffffc008a9cff4 T irqchip_init
-ffffffc008a9d028 T gic_cascade_irq
-ffffffc008a9d074 T gic_init
-ffffffc008a9d0d0 t __gic_init_bases
-ffffffc008a9d168 t gicv2_force_probe_cfg
-ffffffc008a9d19c T gic_of_init
-ffffffc008a9d508 t gic_of_setup_kvm_info
-ffffffc008a9d594 t gic_smp_init
-ffffffc008a9d680 T gicv2m_init
-ffffffc008a9d6d8 t gicv2m_of_init
-ffffffc008a9d9dc t gicv2m_init_one
-ffffffc008a9dbf4 t gicv3_nolpi_cfg
-ffffffc008a9dc28 t gic_of_init
-ffffffc008a9dea8 t gic_init_bases
-ffffffc008a9e1ec t gic_populate_ppi_partitions
-ffffffc008a9e500 t gic_of_setup_kvm_info
-ffffffc008a9e5f0 t gic_dist_init
-ffffffc008a9e8ac t gic_smp_init
-ffffffc008a9e99c T mbi_init
-ffffffc008a9ec54 T its_lpi_memreserve_init
-ffffffc008a9ec68 T its_init
-ffffffc008a9eec0 t its_of_probe
-ffffffc008a9f080 t allocate_lpi_tables
-ffffffc008a9f1cc t its_reset_one
-ffffffc008a9f268 t its_probe_one
-ffffffc008a9fe00 t its_map_one
-ffffffc008a9ff4c t its_compute_its_list_map
-ffffffc008aa005c t its_setup_lpi_prop_table
-ffffffc008aa0230 t its_lpi_init
-ffffffc008aa02d4 T __initstub__kmod_irq_gic_v3_its_platform_msi__372_163_its_pmsi_initearly
-ffffffc008aa0300 t its_pmsi_of_init
-ffffffc008aa03ac t its_pmsi_init_one
-ffffffc008aa0480 T __initstub__kmod_irq_gic_v3_its_pci_msi__394_202_its_pci_msi_initearly
-ffffffc008aa04ac t its_pci_of_msi_init
-ffffffc008aa0570 t its_pci_msi_init_one
-ffffffc008aa064c T __initstub__kmod_simple_pm_bus__340_91_simple_pm_bus_driver_init6
-ffffffc008aa0684 T __initstub__kmod_probe__385_109_pcibus_class_init2
-ffffffc008aa06c0 T pci_sort_breadthfirst
-ffffffc008aa06fc t pci_sort_bf_cmp
-ffffffc008aa0760 t pcie_port_pm_setup
-ffffffc008aa07d8 W pcibios_setup
-ffffffc008aa07e8 T pci_register_set_vga_state
-ffffffc008aa0800 T __initstub__kmod_pci__396_6732_pci_resource_alignment_sysfs_init7
-ffffffc008aa083c t pci_setup
-ffffffc008aa0cf4 T __initstub__kmod_pci__398_6907_pci_realloc_setup_params0
-ffffffc008aa0d20 t pci_realloc_setup_params
-ffffffc008aa0d7c T __initstub__kmod_pci_driver__412_1726_pci_driver_init2
-ffffffc008aa0da4 t pci_driver_init
-ffffffc008aa0de8 T __initstub__kmod_pci_sysfs__385_1530_pci_sysfs_init7
-ffffffc008aa0e10 t pci_sysfs_init
-ffffffc008aa0e90 T pci_realloc_get_opt
-ffffffc008aa0f04 T pci_assign_unassigned_resources
-ffffffc008aa0f58 t pcie_port_setup
-ffffffc008aa0ffc T __initstub__kmod_pcieportdrv__385_252_pcie_portdrv_init6
-ffffffc008aa1024 t pcie_portdrv_init
-ffffffc008aa1088 t pcie_aspm_disable
-ffffffc008aa1128 T pcie_aer_init
-ffffffc008aa117c t pcie_pme_setup
-ffffffc008aa11c8 T pcie_pme_init
-ffffffc008aa11fc T __initstub__kmod_proc__394_472_pci_proc_init6
-ffffffc008aa1228 t pci_proc_init
-ffffffc008aa12d8 T __initstub__kmod_slot__384_381_pci_slot_init4
-ffffffc008aa1340 T __initstub__kmod_quirks__412_195_pci_apply_final_quirks5s
-ffffffc008aa136c t pci_apply_final_quirks
-ffffffc008aa14ec T __initstub__kmod_vgaarb__386_1564_vga_arb_device_init4s
-ffffffc008aa1514 t vga_arb_device_init
-ffffffc008aa15d8 T __initstub__kmod_pci_epc_core__384_849_pci_epc_init6
-ffffffc008aa1600 t pci_epc_init
-ffffffc008aa1674 T __initstub__kmod_pci_epf_core__384_561_pci_epf_init6
-ffffffc008aa169c t pci_epf_init
-ffffffc008aa16f8 T __initstub__kmod_pci_host_generic__384_87_gen_pci_driver_init6
-ffffffc008aa1730 T __initstub__kmod_pcie_designware_plat__384_187_dw_plat_pcie_driver_init6
-ffffffc008aa1768 T __initstub__kmod_pcie_kirin__412_829_kirin_pcie_driver_init6
-ffffffc008aa17a0 T __initstub__kmod_bus__410_462_amba_init2
-ffffffc008aa17d4 T __initstub__kmod_bus__412_498_amba_stub_drv_init7s
-ffffffc008aa17e8 t clk_ignore_unused_setup
-ffffffc008aa1808 T __initstub__kmod_clk__454_1416_clk_disable_unused7s
-ffffffc008aa1834 t clk_disable_unused
-ffffffc008aa19dc T __initstub__kmod_clk__464_3662_clk_debug_init7
-ffffffc008aa1a08 t clk_debug_init
-ffffffc008aa1b54 T of_clk_init
-ffffffc008aa1e2c t clk_disable_unused_subtree
-ffffffc008aa2268 t clk_unprepare_unused_subtree
-ffffffc008aa2534 T of_fixed_factor_clk_setup
-ffffffc008aa2560 T __initstub__kmod_clk_fixed_factor__339_341_of_fixed_factor_clk_driver_init6
-ffffffc008aa2598 T of_fixed_clk_setup
-ffffffc008aa25c4 T __initstub__kmod_clk_fixed_rate__370_239_of_fixed_clk_driver_init6
-ffffffc008aa25fc T __initstub__kmod_clk_gpio__339_249_gpio_clk_driver_init6
-ffffffc008aa2634 T __initstub__kmod_virtio__383_568_virtio_init1
-ffffffc008aa2678 T __initstub__kmod_virtio_pci__410_647_virtio_pci_driver_init6
-ffffffc008aa26b8 T __initstub__kmod_virtio_balloon__420_1128_virtio_balloon_driver_init6
-ffffffc008aa26ec T __initstub__kmod_tty_io__401_3518_tty_class_init2
-ffffffc008aa274c T tty_init
-ffffffc008aa28a8 T n_tty_init
-ffffffc008aa28dc T __initstub__kmod_n_null__380_63_n_null_init6
-ffffffc008aa2918 T __initstub__kmod_pty__387_947_pty_init6
-ffffffc008aa2944 t unix98_pty_init
-ffffffc008aa2b6c t sysrq_always_enabled_setup
-ffffffc008aa2bb0 T __initstub__kmod_sysrq__415_1202_sysrq_init6
-ffffffc008aa2bdc t sysrq_init
-ffffffc008aa2c50 T vcs_init
-ffffffc008aa2d3c T kbd_init
-ffffffc008aa2e78 T console_map_init
-ffffffc008aa2ee4 T __initstub__kmod_vt__413_3548_con_initcon
-ffffffc008aa2f10 t con_init
-ffffffc008aa3258 T vty_init
-ffffffc008aa33c4 T __initstub__kmod_vt__419_4325_vtconsole_class_init2
-ffffffc008aa33f0 t vtconsole_class_init
-ffffffc008aa3518 T __initstub__kmod_hvc_console__383_246_hvc_console_initcon
-ffffffc008aa3550 T uart_get_console
-ffffffc008aa35d8 T setup_earlycon
-ffffffc008aa36d4 t register_earlycon
-ffffffc008aa37ec t param_setup_earlycon
-ffffffc008aa3840 T of_setup_earlycon
-ffffffc008aa3b0c t earlycon_init
-ffffffc008aa3bb8 t earlycon_print_info
-ffffffc008aa3c88 t parse_options
-ffffffc008aa3ddc T __initstub__kmod_8250__386_690_univ8250_console_initcon
-ffffffc008aa3e04 t univ8250_console_init
-ffffffc008aa3e54 T early_serial_setup
-ffffffc008aa4020 t serial8250_isa_init_ports
-ffffffc008aa4168 T __initstub__kmod_8250__388_1249_serial8250_init6
-ffffffc008aa4190 t serial8250_init
-ffffffc008aa4298 t serial8250_register_ports
-ffffffc008aa43c8 T early_serial8250_setup
-ffffffc008aa4460 t init_port
-ffffffc008aa4558 T __initstub__kmod_8250_pericom__391_211_pericom8250_pci_driver_init6
-ffffffc008aa4598 T __initstub__kmod_8250_of__386_353_of_platform_serial_driver_init6
-ffffffc008aa45d0 T __initstub__kmod_ttynull__380_106_ttynull_init6
-ffffffc008aa45f8 t ttynull_init
-ffffffc008aa4704 T __initstub__kmod_mem__415_787_chr_dev_init5
-ffffffc008aa472c t chr_dev_init
-ffffffc008aa4810 t parse_trust_cpu
-ffffffc008aa4844 t parse_trust_bootloader
-ffffffc008aa4878 T random_init_early
-ffffffc008aa4a1c t arch_get_random_seed_longs_early
-ffffffc008aa4b2c T random_init
-ffffffc008aa4cd8 T add_bootloader_randomness
-ffffffc008aa4d40 T __initstub__kmod_random__471_1642_random_sysctls_init6
-ffffffc008aa4d94 T __initstub__kmod_misc__380_293_misc_init4
-ffffffc008aa4dbc t misc_init
-ffffffc008aa4ec0 T virtio_cons_early_init
-ffffffc008aa4f04 T __initstub__kmod_virtio_console__419_2293_virtio_console_init6
-ffffffc008aa4f2c t virtio_console_init
-ffffffc008aa504c T __initstub__kmod_rng_core__343_718_hwrng_modinit5
-ffffffc008aa5074 t hwrng_modinit
-ffffffc008aa5120 T __initstub__kmod_cctrng__397_709_cctrng_mod_init6
-ffffffc008aa5158 T __initstub__kmod_arm_smccc_trng__347_119_smccc_trng_driver_init6
-ffffffc008aa5190 T __initstub__kmod_cn10k_rng__384_181_cn10k_rng_driver_init6
-ffffffc008aa51d0 T __initstub__kmod_iommu__412_195_iommu_subsys_init4
-ffffffc008aa51f8 t iommu_subsys_init
-ffffffc008aa5348 t iommu_set_def_domain_type
-ffffffc008aa53d4 t iommu_dma_setup
-ffffffc008aa541c T __initstub__kmod_iommu__418_2590_iommu_init1
-ffffffc008aa5470 T __initstub__kmod_iommu_sysfs__380_47_iommu_dev_init2
-ffffffc008aa54ac t iommu_dma_forcedac_setup
-ffffffc008aa5510 T __initstub__kmod_dma_iommu__405_1712_iommu_dma_init3
-ffffffc008aa553c T __initstub__kmod_component__339_118_component_debug_init1
-ffffffc008aa5584 T __initstub__kmod_core__494_700_devlink_class_init2
-ffffffc008aa55ac t devlink_class_init
-ffffffc008aa561c T __initstub__kmod_core__499_1269_sync_state_resume_initcall7
-ffffffc008aa564c t fw_devlink_setup
-ffffffc008aa5708 t fw_devlink_strict_setup
-ffffffc008aa573c T wait_for_init_devices_probe
-ffffffc008aa57ac T devices_init
-ffffffc008aa5880 T buses_init
-ffffffc008aa5908 t deferred_probe_timeout_setup
-ffffffc008aa5980 T __initstub__kmod_dd__383_371_deferred_probe_initcall7
-ffffffc008aa5b88 t save_async_options
-ffffffc008aa5c18 T classes_init
-ffffffc008aa5c6c T __platform_driver_probe
-ffffffc008aa5d5c T __platform_create_bundle
-ffffffc008aa5e58 W early_platform_cleanup
-ffffffc008aa5e68 T platform_bus_init
-ffffffc008aa5ef4 T cpu_dev_init
-ffffffc008aa5f4c t cpu_register_vulnerabilities
-ffffffc008aa5fa0 T firmware_init
-ffffffc008aa5ff0 T driver_init
-ffffffc008aa6074 T __initstub__kmod_topology__380_194_topology_sysfs_init6
-ffffffc008aa60dc T container_dev_init
-ffffffc008aa6140 T __initstub__kmod_cacheinfo__339_723_cacheinfo_sysfs_init6
-ffffffc008aa61a8 T __initstub__kmod_swnode__341_1167_software_node_init2
-ffffffc008aa6200 T __initstub__kmod_wakeup__426_1240_wakeup_sources_debugfs_init2
-ffffffc008aa6254 T __initstub__kmod_wakeup_stats__339_217_wakeup_sources_sysfs_init2
-ffffffc008aa62a8 T __initstub__kmod_firmware_class__416_1659_firmware_class_init5
-ffffffc008aa62d0 t firmware_class_init
-ffffffc008aa6330 T memory_dev_init
-ffffffc008aa6438 t add_boot_memory_block
-ffffffc008aa64ec T __initstub__kmod_regmap__445_3513_regmap_initcall2
-ffffffc008aa651c T __initstub__kmod_soc__339_192_soc_bus_register1
-ffffffc008aa6544 t soc_bus_register
-ffffffc008aa658c T __initstub__kmod_arch_topology__412_250_register_cpu_capacity_sysctl4
-ffffffc008aa6648 T topology_parse_cpu_capacity
-ffffffc008aa6808 T __initstub__kmod_arch_topology__416_479_free_raw_capacity1
-ffffffc008aa684c T reset_cpu_topology
-ffffffc008aa68f4 W parse_acpi_topology
-ffffffc008aa6908 T init_cpu_topology
-ffffffc008aa6954 t parse_dt_topology
-ffffffc008aa6a40 t parse_socket
-ffffffc008aa6b34 t parse_cluster
-ffffffc008aa6d44 t parse_core
-ffffffc008aa6f38 t get_cpu_for_node
-ffffffc008aa7020 t ramdisk_size
-ffffffc008aa7064 T __initstub__kmod_brd__447_528_brd_init6
-ffffffc008aa708c t brd_init
-ffffffc008aa71bc T __initstub__kmod_loop__457_2273_loop_init6
-ffffffc008aa71e4 t loop_init
-ffffffc008aa72fc t max_loop_setup
-ffffffc008aa7340 T __initstub__kmod_virtio_blk__456_1307_virtio_blk_init6
-ffffffc008aa7368 t virtio_blk_init
-ffffffc008aa7420 T __initstub__kmod_zram__438_2162_zram_init6
-ffffffc008aa7448 t zram_init
-ffffffc008aa759c T __initstub__kmod_open_dice__380_204_open_dice_init6
-ffffffc008aa75e4 t open_dice_probe
-ffffffc008aa7740 T __initstub__kmod_vcpu_stall_detector__370_219_vcpu_stall_detect_driver_init6
-ffffffc008aa7778 T __initstub__kmod_syscon__370_329_syscon_init2
-ffffffc008aa77b0 T __initstub__kmod_dma_buf__389_1667_dma_buf_init4
-ffffffc008aa77d8 t dma_buf_init
-ffffffc008aa78bc T __initstub__kmod_dma_heap__404_470_dma_heap_init4
-ffffffc008aa79ac t loopback_net_init
-ffffffc008aa7a50 T __initstub__kmod_loopback__611_280_blackhole_netdev_init6
-ffffffc008aa7a78 t blackhole_netdev_init
-ffffffc008aa7b18 T __initstub__kmod_uio__383_1086_uio_init6
-ffffffc008aa7b40 t uio_init
-ffffffc008aa7c98 T __initstub__kmod_serio__374_1048_serio_init4
-ffffffc008aa7cc0 t serio_init
-ffffffc008aa7d1c T __initstub__kmod_serport__388_308_serport_init6
-ffffffc008aa7d44 t serport_init
-ffffffc008aa7d9c T __initstub__kmod_input_core__399_2695_input_init4
-ffffffc008aa7dc4 t input_init
-ffffffc008aa7e70 t input_proc_init
-ffffffc008aa7f28 T __initstub__kmod_rtc_core__370_487_rtc_init4
-ffffffc008aa7f50 t rtc_init
-ffffffc008aa7fd0 T rtc_dev_init
-ffffffc008aa8028 T __initstub__kmod_rtc_pl030__407_170_pl030_driver_init6
-ffffffc008aa805c T __initstub__kmod_rtc_pl031__407_466_pl031_driver_init6
-ffffffc008aa8090 T __initstub__kmod_syscon_reboot__370_100_syscon_reboot_driver_init6
-ffffffc008aa80c8 T __initstub__kmod_power_supply__339_1560_power_supply_class_init4
-ffffffc008aa80f0 t power_supply_class_init
-ffffffc008aa815c T __initstub__kmod_watchdog__425_479_watchdog_init4s
-ffffffc008aa8194 t watchdog_deferred_registration
-ffffffc008aa825c T watchdog_dev_init
-ffffffc008aa8350 T __initstub__kmod_dm_mod__420_300_dm_init_init7
-ffffffc008aa8378 t dm_init_init
-ffffffc008aa84a0 t dm_parse_devices
-ffffffc008aa8594 t dm_setup_cleanup
-ffffffc008aa8680 t dm_parse_device_entry
-ffffffc008aa87d4 t str_field_delimit
-ffffffc008aa8854 t dm_parse_table
-ffffffc008aa88e0 t dm_parse_table_entry
-ffffffc008aa8a80 T __initstub__kmod_dm_mod__454_3395_dm_init6
-ffffffc008aa8aa8 t dm_init
-ffffffc008aa8b70 t local_init
-ffffffc008aa8c30 T dm_target_init
-ffffffc008aa8c64 T dm_linear_init
-ffffffc008aa8cc0 T dm_stripe_init
-ffffffc008aa8d18 T dm_interface_init
-ffffffc008aa8d98 T dm_early_create
-ffffffc008aa9014 T dm_io_init
-ffffffc008aa9078 T dm_kcopyd_init
-ffffffc008aa911c T dm_statistics_init
-ffffffc008aa9140 T __initstub__kmod_dm_bufio__433_2145_dm_bufio_init6
-ffffffc008aa9168 t dm_bufio_init
-ffffffc008aa9388 T __initstub__kmod_dm_crypt__538_3674_dm_crypt_init6
-ffffffc008aa93b0 t dm_crypt_init
-ffffffc008aa940c T __initstub__kmod_dm_verity__433_1515_dm_verity_init6
-ffffffc008aa9434 t dm_verity_init
-ffffffc008aa9490 T __initstub__kmod_dm_user__438_1282_dm_user_init6
-ffffffc008aa94b8 t dm_user_init
-ffffffc008aa9514 T edac_mc_sysfs_init
-ffffffc008aa95c0 T __initstub__kmod_edac_core__384_163_edac_init4
-ffffffc008aa95e8 t edac_init
-ffffffc008aa96c4 T scmi_bus_init
-ffffffc008aa9720 T __initstub__kmod_scmi_module__517_2672_scmi_driver_init4
-ffffffc008aa9748 t scmi_driver_init
-ffffffc008aa97f0 T scmi_base_register
-ffffffc008aa9824 T scmi_clock_register
-ffffffc008aa9858 T scmi_perf_register
-ffffffc008aa988c T scmi_power_register
-ffffffc008aa98c0 T scmi_reset_register
-ffffffc008aa98f4 T scmi_sensors_register
-ffffffc008aa9928 T scmi_system_register
-ffffffc008aa995c T scmi_voltage_register
-ffffffc008aa9990 T scmi_powercap_register
-ffffffc008aa99c4 T __initstub__kmod_psci__407_454_psci_debugfs_init7
-ffffffc008aa99ec t psci_debugfs_init
-ffffffc008aa9a68 T psci_dt_init
-ffffffc008aa9b1c t psci_0_1_init
-ffffffc008aa9ca0 t psci_0_2_init
-ffffffc008aa9cd8 t psci_1_0_init
-ffffffc008aa9d38 t psci_probe
-ffffffc008aa9e9c t psci_0_2_set_functions
-ffffffc008aa9f40 t psci_init_migrate
-ffffffc008aaa088 t psci_init_smccc
-ffffffc008aaa15c t psci_init_system_suspend
-ffffffc008aaa1d4 T arm_smccc_version_init
-ffffffc008aaa240 t smccc_probe_trng
-ffffffc008aaa2bc T __initstub__kmod_smccc__339_61_smccc_devices_init6
-ffffffc008aaa2e8 t smccc_devices_init
-ffffffc008aaa39c T kvm_init_hyp_services
-ffffffc008aaa51c T __initstub__kmod_soc_id__354_106_smccc_soc_init6
-ffffffc008aaa544 t smccc_soc_init
-ffffffc008aaa7e4 T timer_probe
-ffffffc008aaa90c t early_evtstrm_cfg
-ffffffc008aaa940 t arch_timer_of_init
-ffffffc008aaab10 t arch_timer_mem_of_init
-ffffffc008aaad34 t arch_timer_of_configure_rate
-ffffffc008aaadd0 t arch_timer_register
-ffffffc008aaaf2c t arch_timer_needs_of_probing
-ffffffc008aaaf9c t arch_timer_common_init
-ffffffc008aaafdc t arch_timer_banner
-ffffffc008aab0d8 t arch_counter_register
-ffffffc008aab26c t arch_timer_mem_find_best_frame
-ffffffc008aab38c t arch_timer_mem_frame_get_cntfrq
-ffffffc008aab418 t arch_timer_mem_frame_register
-ffffffc008aab52c t arch_timer_mem_register
-ffffffc008aab614 T __initstub__kmod_dummy_timer__370_37_dummy_timer_registerearly
-ffffffc008aab678 T of_core_init
-ffffffc008aab78c T __initstub__kmod_platform__409_604_of_platform_default_populate_init3s
-ffffffc008aab7b4 t of_platform_default_populate_init
-ffffffc008aab8b0 T __initstub__kmod_platform__411_611_of_platform_sync_state_init7s
-ffffffc008aab8e0 T of_fdt_limit_memory
-ffffffc008aaba38 T early_init_fdt_scan_reserved_mem
-ffffffc008aabaf0 t fdt_scan_reserved_mem
-ffffffc008aabc08 T early_init_fdt_reserve_self
-ffffffc008aabc7c T of_scan_flat_dt
-ffffffc008aabd98 T of_scan_flat_dt_subnodes
-ffffffc008aabe48 T of_get_flat_dt_subnode_by_name
-ffffffc008aabeac T of_get_flat_dt_root
-ffffffc008aabec0 T of_get_flat_dt_prop
-ffffffc008aabf00 T of_flat_dt_is_compatible
-ffffffc008aabf3c T of_get_flat_dt_phandle
-ffffffc008aabf74 T of_flat_dt_get_machine_name
-ffffffc008aabfdc T of_flat_dt_match_machine
-ffffffc008aac174 t of_flat_dt_match
-ffffffc008aac1f4 T early_init_dt_check_for_usable_mem_range
-ffffffc008aac388 T dt_mem_next_cell
-ffffffc008aac3c4 T early_init_dt_scan_chosen_stdout
-ffffffc008aac59c T early_init_dt_scan_root
-ffffffc008aac66c T early_init_dt_scan_memory
-ffffffc008aac8b8 W early_init_dt_add_memory_arch
-ffffffc008aac92c T early_init_dt_scan_chosen
-ffffffc008aacadc t early_init_dt_check_for_initrd
-ffffffc008aacc14 T early_init_dt_verify
-ffffffc008aacc88 T early_init_dt_scan_nodes
-ffffffc008aaccc8 T early_init_dt_scan
-ffffffc008aacd10 T unflatten_device_tree
-ffffffc008aacd70 t early_init_dt_alloc_memory_arch
-ffffffc008aacdd8 T unflatten_and_copy_device_tree
-ffffffc008aace74 T __initstub__kmod_fdt__393_1416_of_fdt_raw_init7
-ffffffc008aace9c t of_fdt_raw_init
-ffffffc008aacf24 t __reserved_mem_check_root
-ffffffc008aacff8 t __reserved_mem_reserve_reg
-ffffffc008aad1f0 t early_init_dt_reserve_memory
-ffffffc008aad280 T of_flat_dt_translate_address
-ffffffc008aad2b4 t fdt_translate_address
-ffffffc008aad494 t fdt_translate_one
-ffffffc008aad618 t fdt_bus_default_count_cells
-ffffffc008aad6d0 t fdt_bus_default_map
-ffffffc008aad758 t fdt_bus_default_translate
-ffffffc008aad808 T of_dma_get_max_cpu_address
-ffffffc008aad940 T of_irq_init
-ffffffc008aadd58 T fdt_reserved_mem_save_node
-ffffffc008aaddcc T fdt_init_reserved_mem
-ffffffc008aadfdc t __rmem_check_for_overlap
-ffffffc008aae138 t __reserved_mem_alloc_size
-ffffffc008aae3a4 t __reserved_mem_init_node
-ffffffc008aae480 t __rmem_cmp
-ffffffc008aae4c4 t early_init_dt_alloc_reserved_memory_arch
-ffffffc008aae56c T __initstub__kmod_arm_pmu__389_977_arm_pmu_hp_init4
-ffffffc008aae5ec T __initstub__kmod_ras__412_38_ras_init4
-ffffffc008aae630 t parse_ras_param
-ffffffc008aae644 T ras_add_daemon_trace
-ffffffc008aae6b0 T ras_debugfs_init
-ffffffc008aae6f0 T __initstub__kmod_socket__697_3209_sock_init1
-ffffffc008aae718 t sock_init
-ffffffc008aae7e0 T __initstub__kmod_sock__812_3772_net_inuse_init1
-ffffffc008aae80c t net_inuse_init
-ffffffc008aae850 T __initstub__kmod_sock__816_4089_proto_init4
-ffffffc008aae884 t sock_inuse_init_net
-ffffffc008aae8e0 t proto_init_net
-ffffffc008aae938 T skb_init
-ffffffc008aae9f0 T __initstub__kmod_net_namespace__580_385_net_defaults_init1
-ffffffc008aaea1c t net_defaults_init
-ffffffc008aaea60 T net_ns_init
-ffffffc008aaeb50 t setup_net
-ffffffc008aaefa4 t net_defaults_init_net
-ffffffc008aaefcc t net_ns_net_init
-ffffffc008aaf018 T __initstub__kmod_flow_dissector__759_1961_init_default_flow_dissectors1
-ffffffc008aaf044 t init_default_flow_dissectors
-ffffffc008aaf0b4 t fb_tunnels_only_for_init_net_sysctl_setup
-ffffffc008aaf12c T __initstub__kmod_sysctl_net_core__681_687_sysctl_core_init5
-ffffffc008aaf154 t sysctl_core_init
-ffffffc008aaf1a4 t sysctl_core_net_init
-ffffffc008aaf204 T __initstub__kmod_dev__948_11438_net_dev_init4
-ffffffc008aaf22c t net_dev_init
-ffffffc008aaf4e0 t netdev_init
-ffffffc008aaf5a0 T __initstub__kmod_neighbour__670_3906_neigh_init4
-ffffffc008aaf5cc t neigh_init
-ffffffc008aaf684 T rtnetlink_init
-ffffffc008aaf8c0 t rtnetlink_net_init
-ffffffc008aaf960 T __initstub__kmod_sock_diag__633_340_sock_diag_init6
-ffffffc008aaf988 t sock_diag_init
-ffffffc008aaf9e0 t diag_net_init
-ffffffc008aafa78 T __initstub__kmod_fib_notifier__481_199_fib_notifier_init4
-ffffffc008aafaac t fib_notifier_net_init
-ffffffc008aafb14 T netdev_kobject_init
-ffffffc008aafb5c T dev_proc_init
-ffffffc008aafba0 t dev_proc_net_init
-ffffffc008aafc78 t dev_mc_net_init
-ffffffc008aafcd0 T __initstub__kmod_fib_rules__699_1319_fib_rules_init4
-ffffffc008aafcf8 t fib_rules_init
-ffffffc008aafdfc t fib_rules_net_init
-ffffffc008aafe24 T __initstub__kmod_eth__657_492_eth_offload_init5
-ffffffc008aafe5c T __initstub__kmod_af_netlink__724_2962_netlink_proto_init1
-ffffffc008aafe84 t netlink_proto_init
-ffffffc008aaffb4 t netlink_add_usersock_entry
-ffffffc008ab0070 t netlink_net_init
-ffffffc008ab00c8 t netlink_tap_init_net
-ffffffc008ab0140 T __initstub__kmod_genetlink__583_1498_genl_init1
-ffffffc008ab016c t genl_init
-ffffffc008ab01c4 t genl_pernet_init
-ffffffc008ab0264 T __initstub__kmod_ethtool_nl__577_1077_ethnl_init4
-ffffffc008ab028c t ethnl_init
-ffffffc008ab031c T ip_rt_init
-ffffffc008ab0560 T ip_static_sysctl_init
-ffffffc008ab05a4 t ip_rt_do_proc_init
-ffffffc008ab0644 t sysctl_route_net_init
-ffffffc008ab06a8 t netns_ip_rt_init
-ffffffc008ab06d8 t rt_genid_init
-ffffffc008ab0724 t ipv4_inetpeer_init
-ffffffc008ab078c T inet_initpeers
-ffffffc008ab0834 T ipfrag_init
-ffffffc008ab08f4 t ipv4_frags_init_net
-ffffffc008ab099c t ip4_frags_ns_ctl_register
-ffffffc008ab0a28 T ip_init
-ffffffc008ab0a5c T inet_hashinfo2_init
-ffffffc008ab0b30 t set_thash_entries
-ffffffc008ab0b74 T tcp_init
-ffffffc008ab0e9c T tcp_tasklet_init
-ffffffc008ab0f54 T tcp4_proc_init
-ffffffc008ab0f88 T tcp_v4_init
-ffffffc008ab10b4 t tcp4_proc_init_net
-ffffffc008ab1110 t tcp_sk_init
-ffffffc008ab12c0 T __initstub__kmod_tcp_cong__707_266_tcp_congestion_default7
-ffffffc008ab12fc t set_tcpmhash_entries
-ffffffc008ab1340 T tcp_metrics_init
-ffffffc008ab13a0 t tcp_net_metrics_init
-ffffffc008ab1448 T tcpv4_offload_init
-ffffffc008ab1480 T raw_proc_init
-ffffffc008ab14b4 T raw_proc_exit
-ffffffc008ab1508 T raw_init
-ffffffc008ab154c t raw_init_net
-ffffffc008ab15a8 t raw_sysctl_init
-ffffffc008ab15bc T udp4_proc_init
-ffffffc008ab15f0 t set_uhash_entries
-ffffffc008ab1660 T udp_table_init
-ffffffc008ab1754 T udp_init
-ffffffc008ab1864 t udp4_proc_init_net
-ffffffc008ab18c0 t udp_sysctl_init
-ffffffc008ab18e0 T udplite4_register
-ffffffc008ab1990 t udplite4_proc_init_net
-ffffffc008ab19ec T udpv4_offload_init
-ffffffc008ab1a24 T arp_init
-ffffffc008ab1a9c t arp_net_init
-ffffffc008ab1af4 T icmp_init
-ffffffc008ab1c1c t icmp_sk_init
-ffffffc008ab1c4c T devinet_init
-ffffffc008ab1d3c t devinet_init_net
-ffffffc008ab1eac T __initstub__kmod_af_inet__807_1923_ipv4_offload_init5
-ffffffc008ab1ed8 t ipv4_offload_init
-ffffffc008ab1f90 T __initstub__kmod_af_inet__810_2056_inet_init5
-ffffffc008ab1fb8 t inet_init
-ffffffc008ab2228 t ipv4_proc_init
-ffffffc008ab22b8 t ipv4_mib_init_net
-ffffffc008ab2588 t inet_init_net
-ffffffc008ab2684 T igmp_mc_init
-ffffffc008ab2704 t igmp_net_init
-ffffffc008ab27dc T ip_fib_init
-ffffffc008ab2888 t fib_net_init
-ffffffc008ab2964 t ip_fib_net_init
-ffffffc008ab29f4 T fib_trie_init
-ffffffc008ab2a74 T fib_proc_init
-ffffffc008ab2b48 T fib4_notifier_init
-ffffffc008ab2ba0 T __initstub__kmod_inet_fragment__656_216_inet_frag_wq_init0
-ffffffc008ab2bcc t inet_frag_wq_init
-ffffffc008ab2c2c T ping_proc_init
-ffffffc008ab2c60 T ping_init
-ffffffc008ab2c94 t ping_v4_proc_init_net
-ffffffc008ab2cec T ip_tunnel_core_init
-ffffffc008ab2cfc T __initstub__kmod_gre_offload__694_286_gre_offload_init6
-ffffffc008ab2d24 t gre_offload_init
-ffffffc008ab2d98 T __initstub__kmod_nexthop__751_3789_nexthop_init4
-ffffffc008ab2dc4 t nexthop_init
-ffffffc008ab2eec t nexthop_net_init
-ffffffc008ab2f68 T __initstub__kmod_sysctl_net_ipv4__705_1470_sysctl_ipv4_init6
-ffffffc008ab2f90 t sysctl_ipv4_init
-ffffffc008ab3000 t ipv4_sysctl_init_net
-ffffffc008ab3084 T ip_misc_proc_init
-ffffffc008ab30b8 t ip_proc_init_net
-ffffffc008ab3184 T fib4_rules_init
-ffffffc008ab3258 T __initstub__kmod_ipip__696_658_ipip_init6
-ffffffc008ab3280 t ipip_init
-ffffffc008ab3338 t ipip_init_net
-ffffffc008ab337c T __initstub__kmod_gre__698_216_gre_init6
-ffffffc008ab33a4 t gre_init
-ffffffc008ab3404 T __initstub__kmod_ip_gre__702_1789_ipgre_init6
-ffffffc008ab342c t ipgre_init
-ffffffc008ab357c t ipgre_tap_init_net
-ffffffc008ab35c0 t ipgre_init_net
-ffffffc008ab3600 t erspan_init_net
-ffffffc008ab3644 T __initstub__kmod_ip_vti__694_722_vti_init6
-ffffffc008ab366c t vti_init
-ffffffc008ab37a0 t vti_init_net
-ffffffc008ab3838 T __initstub__kmod_esp4__725_1246_esp4_init6
-ffffffc008ab3860 t esp4_init
-ffffffc008ab38f8 T __initstub__kmod_tunnel4__645_295_tunnel4_init6
-ffffffc008ab3920 t tunnel4_init
-ffffffc008ab399c T __initstub__kmod_inet_diag__715_1481_inet_diag_init6
-ffffffc008ab39c4 t inet_diag_init
-ffffffc008ab3a8c T __initstub__kmod_tcp_diag__708_247_tcp_diag_init6
-ffffffc008ab3ac0 T __initstub__kmod_udp_diag__616_296_udp_diag_init6
-ffffffc008ab3ae8 t udp_diag_init
-ffffffc008ab3b50 T __initstub__kmod_tcp_cubic__731_551_cubictcp_register6
-ffffffc008ab3b78 t cubictcp_register
-ffffffc008ab3c10 T xfrm4_init
-ffffffc008ab3c6c t xfrm4_net_init
-ffffffc008ab3d0c T xfrm4_state_init
-ffffffc008ab3d40 T xfrm4_protocol_init
-ffffffc008ab3d74 T xfrm_init
-ffffffc008ab3db8 t xfrm_net_init
-ffffffc008ab3e98 t xfrm_statistics_init
-ffffffc008ab3f08 t xfrm_policy_init
-ffffffc008ab40ac T xfrm_state_init
-ffffffc008ab41b8 T xfrm_input_init
-ffffffc008ab42ac T xfrm_sysctl_init
-ffffffc008ab437c T xfrm_dev_init
-ffffffc008ab43b0 T xfrm_proc_init
-ffffffc008ab4404 T __initstub__kmod_xfrm_user__636_3816_xfrm_user_init6
-ffffffc008ab442c t xfrm_user_init
-ffffffc008ab4480 t xfrm_user_net_init
-ffffffc008ab4524 T __initstub__kmod_xfrm_interface__793_1192_xfrmi_init6
-ffffffc008ab454c t xfrmi_init
-ffffffc008ab4628 t xfrmi4_init
-ffffffc008ab46d0 t xfrmi6_init
-ffffffc008ab47d4 T __initstub__kmod_unix__652_3782_af_unix_init5
-ffffffc008ab47fc t af_unix_init
-ffffffc008ab48dc t unix_net_init
-ffffffc008ab49c4 T unix_sysctl_register
-ffffffc008ab4a24 T __initstub__kmod_ipv6__805_1328_inet6_init6
-ffffffc008ab4a4c t inet6_init
-ffffffc008ab4e18 t inet6_net_init
-ffffffc008ab4f44 t ipv6_init_mibs
-ffffffc008ab5074 T ac6_proc_init
-ffffffc008ab50cc T ipv6_anycast_init
-ffffffc008ab510c T if6_proc_init
-ffffffc008ab5140 T addrconf_init
-ffffffc008ab53b4 t if6_proc_net_init
-ffffffc008ab540c t addrconf_init_net
-ffffffc008ab55c4 T ipv6_addr_label_init
-ffffffc008ab55f8 T ipv6_addr_label_rtnl_register
-ffffffc008ab568c t ip6addrlbl_net_init
-ffffffc008ab5764 T ipv6_route_sysctl_init
-ffffffc008ab5824 T ip6_route_init_special_entries
-ffffffc008ab59e0 T ip6_route_init
-ffffffc008ab5c68 t ipv6_inetpeer_init
-ffffffc008ab5cd0 t ip6_route_net_init
-ffffffc008ab5e98 t ip6_route_net_init_late
-ffffffc008ab5f40 T fib6_init
-ffffffc008ab6030 t fib6_net_init
-ffffffc008ab619c t fib6_tables_init
-ffffffc008ab6204 T ndisc_init
-ffffffc008ab62a0 T ndisc_late_init
-ffffffc008ab62d4 t ndisc_net_init
-ffffffc008ab63c8 T udp6_proc_init
-ffffffc008ab6424 T udpv6_init
-ffffffc008ab6494 T udplitev6_init
-ffffffc008ab6504 T udplite6_proc_init
-ffffffc008ab6538 t udplite6_proc_init_net
-ffffffc008ab6594 T raw6_proc_init
-ffffffc008ab65c8 T rawv6_init
-ffffffc008ab65fc t raw6_init_net
-ffffffc008ab6658 T icmpv6_init
-ffffffc008ab67ac T ipv6_icmp_sysctl_init
-ffffffc008ab6824 T igmp6_init
-ffffffc008ab68c0 T igmp6_late_init
-ffffffc008ab68f4 t igmp6_net_init
-ffffffc008ab6a14 t igmp6_proc_init
-ffffffc008ab6ab4 T ipv6_frag_init
-ffffffc008ab6bc0 t ipv6_frags_init_net
-ffffffc008ab6c5c t ip6_frags_ns_sysctl_register
-ffffffc008ab6ce0 T tcp6_proc_init
-ffffffc008ab6d3c T tcpv6_init
-ffffffc008ab6dcc t tcpv6_net_init
-ffffffc008ab6e0c T pingv6_init
-ffffffc008ab6e94 t ping_v6_proc_init_net
-ffffffc008ab6eec T ipv6_exthdrs_init
-ffffffc008ab6f88 t ip6_flowlabel_proc_init
-ffffffc008ab6fe0 T seg6_init
-ffffffc008ab7058 t seg6_net_init
-ffffffc008ab70f4 T fib6_notifier_init
-ffffffc008ab7148 T ioam6_init
-ffffffc008ab71d8 t ioam6_net_init
-ffffffc008ab72a4 t ipv6_sysctl_net_init
-ffffffc008ab73d8 T xfrm6_init
-ffffffc008ab7484 t xfrm6_net_init
-ffffffc008ab7524 T xfrm6_state_init
-ffffffc008ab7558 T xfrm6_protocol_init
-ffffffc008ab758c T fib6_rules_init
-ffffffc008ab75c0 t fib6_rules_net_init
-ffffffc008ab7670 T ipv6_misc_proc_init
-ffffffc008ab76a4 t ipv6_proc_init_net
-ffffffc008ab7764 T __initstub__kmod_esp6__785_1299_esp6_init6
-ffffffc008ab778c t esp6_init
-ffffffc008ab7824 T __initstub__kmod_ipcomp6__686_216_ipcomp6_init6
-ffffffc008ab784c t ipcomp6_init
-ffffffc008ab78e4 T __initstub__kmod_xfrm6_tunnel__633_402_xfrm6_tunnel_init6
-ffffffc008ab790c t xfrm6_tunnel_init
-ffffffc008ab7a3c t xfrm6_tunnel_net_init
-ffffffc008ab7aa4 T __initstub__kmod_tunnel6__657_303_tunnel6_init6
-ffffffc008ab7acc t tunnel6_init
-ffffffc008ab7ba4 T __initstub__kmod_mip6__628_405_mip6_init6
-ffffffc008ab7bcc t mip6_init
-ffffffc008ab7ca8 T __initstub__kmod_ip6_vti__811_1329_vti6_tunnel_init6
-ffffffc008ab7cd0 t vti6_tunnel_init
-ffffffc008ab7e64 t vti6_init_net
-ffffffc008ab7f48 t vti6_fb_tnl_dev_init
-ffffffc008ab7fc4 T __initstub__kmod_sit__736_1955_sit_init6
-ffffffc008ab7fec t sit_init
-ffffffc008ab80e4 t sit_init_net
-ffffffc008ab81e0 t ipip6_fb_tunnel_init
-ffffffc008ab8264 T __initstub__kmod_ip6_tunnel__831_2366_ip6_tunnel_init6
-ffffffc008ab828c t ip6_tunnel_init
-ffffffc008ab8394 t ip6_tnl_init_net
-ffffffc008ab8488 t ip6_fb_tnl_dev_init
-ffffffc008ab8504 T __initstub__kmod_ip6_gre__743_2424_ip6gre_init6
-ffffffc008ab852c t ip6gre_init
-ffffffc008ab862c t ip6gre_init_net
-ffffffc008ab8750 T __initstub__kmod_ip6_offload__715_488_ipv6_offload_init5
-ffffffc008ab877c t ipv6_offload_init
-ffffffc008ab882c T tcpv6_offload_init
-ffffffc008ab8864 T ipv6_exthdrs_offload_init
-ffffffc008ab88d8 T __initstub__kmod_af_packet__741_4761_packet_init6
-ffffffc008ab8900 t packet_init
-ffffffc008ab89c4 t packet_net_init
-ffffffc008ab8a44 T __initstub__kmod_af_key__639_3923_ipsec_pfkey_init6
-ffffffc008ab8a6c t ipsec_pfkey_init
-ffffffc008ab8b20 t pfkey_net_init
-ffffffc008ab8bac T net_sysctl_init
-ffffffc008ab8c30 t sysctl_net_init
-ffffffc008ab8c74 T __initstub__kmod_vsock__580_2450_vsock_init6
-ffffffc008ab8c9c t vsock_init
-ffffffc008ab8db8 T __initstub__kmod_vsock_diag__575_174_vsock_diag_init6
-ffffffc008ab8dec T __initstub__kmod_vmw_vsock_virtio_transport__594_845_virtio_vsock_init6
-ffffffc008ab8e14 t virtio_vsock_init
-ffffffc008ab8eb0 T __initstub__kmod_vsock_loopback__578_187_vsock_loopback_init6
-ffffffc008ab8ed8 t vsock_loopback_init
-ffffffc008ab8f8c T init_vmlinux_build_id
-ffffffc008ab8fd4 T decompress_method
-ffffffc008ab905c T unlz4
-ffffffc008ab9434 T dump_stack_set_arch_desc
-ffffffc008ab94d4 T __initstub__kmod_kobject_uevent__575_814_kobject_uevent_init2
-ffffffc008ab9508 T maple_tree_init
-ffffffc008ab955c T radix_tree_init
-ffffffc008ab95f8 t debug_boot_weak_hash_enable
-ffffffc008ab963c T __initstub__kmod_vsprintf__622_777_vsprintf_init_hashval4
-ffffffc008ab966c T no_hash_pointers_enable
-ffffffc008ab9754 T __exittext_begin
-ffffffc008ab9754 T _einittext
-ffffffc008ab9758 t ikconfig_cleanup
-ffffffc008ab9790 t ikheaders_cleanup
-ffffffc008ab97d0 t zs_stat_exit
-ffffffc008ab97e0 t zs_exit
-ffffffc008ab981c t exit_misc_binfmt
-ffffffc008ab985c t exit_script_binfmt
-ffffffc008ab9890 t exit_elf_binfmt
-ffffffc008ab98c4 t mbcache_exit
-ffffffc008ab98f8 t ext4_exit_fs
-ffffffc008ab99d0 t jbd2_remove_jbd_stats_proc_entry
-ffffffc008ab9a14 t journal_exit
-ffffffc008ab9a5c t fuse_exit
-ffffffc008ab9ab0 t erofs_module_exit
-ffffffc008ab9b20 t crypto_algapi_exit
-ffffffc008ab9b58 T crypto_exit_proc
-ffffffc008ab9b90 t seqiv_module_exit
-ffffffc008ab9bc4 t echainiv_module_exit
-ffffffc008ab9bf8 t cryptomgr_exit
-ffffffc008ab9c3c t hmac_module_exit
-ffffffc008ab9c70 t crypto_xcbc_module_exit
-ffffffc008ab9ca4 t crypto_null_mod_fini
-ffffffc008ab9cf4 t md5_mod_fini
-ffffffc008ab9d28 t sha1_generic_mod_fini
-ffffffc008ab9d5c t sha256_generic_mod_fini
-ffffffc008ab9d94 t sha512_generic_mod_fini
-ffffffc008ab9dcc t blake2b_mod_fini
-ffffffc008ab9e04 t crypto_cbc_module_exit
-ffffffc008ab9e38 t crypto_ctr_module_exit
-ffffffc008ab9e70 t crypto_xctr_module_exit
-ffffffc008ab9ea4 t hctr2_module_exit
-ffffffc008ab9edc t adiantum_module_exit
-ffffffc008ab9f10 t nhpoly1305_mod_exit
-ffffffc008ab9f44 t crypto_gcm_module_exit
-ffffffc008ab9f88 t chacha20poly1305_module_exit
-ffffffc008ab9fc0 t des_generic_mod_fini
-ffffffc008ab9ff8 t aes_fini
-ffffffc008aba02c t chacha_generic_mod_fini
-ffffffc008aba064 t poly1305_mod_exit
-ffffffc008aba098 t deflate_mod_fini
-ffffffc008aba0dc t crc32c_mod_fini
-ffffffc008aba110 t crypto_authenc_module_exit
-ffffffc008aba144 t crypto_authenc_esn_module_exit
-ffffffc008aba178 t lzo_mod_fini
-ffffffc008aba1b8 t lzorle_mod_fini
-ffffffc008aba1f8 t lz4_mod_fini
-ffffffc008aba238 t prng_mod_fini
-ffffffc008aba270 t drbg_exit
-ffffffc008aba2a8 t jent_mod_exit
-ffffffc008aba2dc t ghash_mod_exit
-ffffffc008aba310 t polyval_mod_exit
-ffffffc008aba344 t zstd_mod_fini
-ffffffc008aba384 t essiv_module_exit
-ffffffc008aba3b8 t deadline_exit
-ffffffc008aba3ec t kyber_exit
-ffffffc008aba420 t bfq_exit
-ffffffc008aba460 t libcrc32c_mod_fini
-ffffffc008aba498 t simple_pm_bus_driver_exit
-ffffffc008aba4cc t pci_epc_exit
-ffffffc008aba500 t pci_epf_exit
-ffffffc008aba534 t gen_pci_driver_exit
-ffffffc008aba564 t kirin_pcie_remove
-ffffffc008aba638 t kirin_pcie_driver_exit
-ffffffc008aba66c t virtio_exit
-ffffffc008aba6ac t virtio_pci_driver_exit
-ffffffc008aba6e0 t virtio_balloon_driver_exit
-ffffffc008aba714 t n_null_exit
-ffffffc008aba748 t serial8250_exit
-ffffffc008aba7a4 t pericom8250_pci_driver_exit
-ffffffc008aba7d8 t of_platform_serial_driver_exit
-ffffffc008aba80c t ttynull_exit
-ffffffc008aba878 t virtio_console_fini
-ffffffc008aba8d8 t unregister_miscdev
-ffffffc008aba90c t hwrng_modexit
-ffffffc008aba980 t cctrng_mod_exit
-ffffffc008aba9b4 t smccc_trng_driver_exit
-ffffffc008aba9e8 t cn10k_rng_driver_exit
-ffffffc008abaa1c t deferred_probe_exit
-ffffffc008abaa54 t software_node_exit
-ffffffc008abaa94 t firmware_class_exit
-ffffffc008abaae0 t brd_exit
-ffffffc008abab28 t loop_exit
-ffffffc008abac34 t virtio_blk_fini
-ffffffc008abac88 t zram_exit
-ffffffc008abacb4 t open_dice_exit
-ffffffc008abace8 t vcpu_stall_detect_driver_exit
-ffffffc008abad1c t dma_buf_deinit
-ffffffc008abad74 t uio_exit
-ffffffc008abaddc t serio_exit
-ffffffc008abae20 t serport_exit
-ffffffc008abae54 t input_exit
-ffffffc008abae98 t pl030_driver_exit
-ffffffc008abaecc t pl031_driver_exit
-ffffffc008abaf00 t power_supply_class_exit
-ffffffc008abaf34 t watchdog_exit
-ffffffc008abaf6c T watchdog_dev_exit
-ffffffc008abafbc t dm_exit
-ffffffc008abb030 t dm_bufio_exit
-ffffffc008abb11c t dm_crypt_exit
-ffffffc008abb150 t dm_verity_exit
-ffffffc008abb184 t dm_user_exit
-ffffffc008abb1b8 t edac_exit
-ffffffc008abb210 T scmi_bus_exit
-ffffffc008abb270 t scmi_transports_exit
-ffffffc008abb280 t scmi_driver_exit
-ffffffc008abb324 T scmi_base_unregister
-ffffffc008abb358 T scmi_clock_unregister
-ffffffc008abb38c T scmi_perf_unregister
-ffffffc008abb3c0 T scmi_power_unregister
-ffffffc008abb3f4 T scmi_reset_unregister
-ffffffc008abb428 T scmi_sensors_unregister
-ffffffc008abb45c T scmi_system_unregister
-ffffffc008abb490 T scmi_voltage_unregister
-ffffffc008abb4c4 T scmi_powercap_unregister
-ffffffc008abb4f8 t smccc_soc_exit
-ffffffc008abb544 t ipip_fini
-ffffffc008abb5b0 t gre_exit
-ffffffc008abb5e8 t ipgre_fini
-ffffffc008abb668 t vti_fini
-ffffffc008abb6d8 t esp4_fini
-ffffffc008abb73c t tunnel4_fini
-ffffffc008abb7ac t inet_diag_exit
-ffffffc008abb820 t tcp_diag_exit
-ffffffc008abb854 t udp_diag_exit
-ffffffc008abb894 t cubictcp_unregister
-ffffffc008abb8c8 t xfrm_user_exit
-ffffffc008abb928 t xfrmi_fini
-ffffffc008abb974 t af_unix_exit
-ffffffc008abb9e8 t esp6_fini
-ffffffc008abba4c t ipcomp6_fini
-ffffffc008abbab0 t xfrm6_tunnel_fini
-ffffffc008abbb44 t tunnel6_fini
-ffffffc008abbbec t mip6_fini
-ffffffc008abbc5c t vti6_tunnel_cleanup
-ffffffc008abbcec t sit_cleanup
-ffffffc008abbd50 t ip6_tunnel_cleanup
-ffffffc008abbde8 t ip6gre_fini
-ffffffc008abbe50 t packet_exit
-ffffffc008abbec4 t ipsec_pfkey_exit
-ffffffc008abbf38 t vsock_exit
-ffffffc008abbf80 t vsock_diag_exit
-ffffffc008abbfb4 t virtio_vsock_exit
-ffffffc008abc000 t vsock_loopback_exit
-ffffffc008abc0e8 R __alt_instructions
-ffffffc008abc0e8 T __exittext_end
-ffffffc008b4eb6c R __alt_instructions_end
-ffffffc008b50000 R __initdata_begin
-ffffffc008b50000 R __inittext_end
-ffffffc008b50000 R init_idmap_pg_dir
-ffffffc008b55000 R init_idmap_pg_end
-ffffffc008b55000 d kthreadd_done
-ffffffc008b55020 d parse_early_param.done
-ffffffc008b55021 d parse_early_param.tmp_cmdline
-ffffffc008b55828 D late_time_init
-ffffffc008b55830 d setup_boot_config.tmp_cmdline
-ffffffc008b56030 d xbc_namebuf
-ffffffc008b56130 d blacklisted_initcalls
-ffffffc008b56140 D boot_command_line
-ffffffc008b56940 d initcall_level_names
-ffffffc008b56980 d initcall_levels
-ffffffc008b569c8 d root_fs_names
-ffffffc008b569d0 d root_mount_data
-ffffffc008b569d8 d root_device_name
-ffffffc008b569e0 d root_delay
-ffffffc008b569e4 d saved_root_name
-ffffffc008b56a24 D rd_image_start
-ffffffc008b56a28 d mount_initrd
-ffffffc008b56a30 D phys_initrd_start
-ffffffc008b56a38 D phys_initrd_size
-ffffffc008b56a40 d do_retain_initrd
-ffffffc008b56a41 d initramfs_async
-ffffffc008b56a42 d unpack_to_rootfs.msg_buf
-ffffffc008b56a88 d header_buf
-ffffffc008b56a90 d symlink_buf
-ffffffc008b56a98 d name_buf
-ffffffc008b56aa0 d state
-ffffffc008b56aa8 d this_header
-ffffffc008b56ab0 d message
-ffffffc008b56ab8 d my_inptr
-ffffffc008b56ac0 d byte_count
-ffffffc008b56ac8 d victim
-ffffffc008b56ad0 d collected
-ffffffc008b56ad8 d collect
-ffffffc008b56ae0 d remains
-ffffffc008b56ae8 d next_state
-ffffffc008b56aec d csum_present
-ffffffc008b56af0 d name_len
-ffffffc008b56af8 d body_len
-ffffffc008b56b00 d next_header
-ffffffc008b56b08 d mode
-ffffffc008b56b10 d ino
-ffffffc008b56b18 d uid
-ffffffc008b56b1c d gid
-ffffffc008b56b20 d nlink
-ffffffc008b56b28 d mtime
-ffffffc008b56b30 d major
-ffffffc008b56b38 d minor
-ffffffc008b56b40 d rdev
-ffffffc008b56b44 d hdr_csum
-ffffffc008b56b48 d wfile
-ffffffc008b56b50 d wfile_pos
-ffffffc008b56b58 d io_csum
-ffffffc008b56b60 d head
-ffffffc008b56c60 d dir_list
-ffffffc008b56c70 d actions
-ffffffc008b56cb0 d early_fdt_ptr
-ffffffc008b56cb8 D __fdt_pointer
-ffffffc008b56cc0 d bootcpu_valid
-ffffffc008b56cc8 d __boot_status
-ffffffc008b56cd0 D memstart_offset_seed
-ffffffc008b56cd8 D kaslr_feature_override
-ffffffc008b56ce8 d crash_mem_map
-ffffffc008b56cf0 d __TRACE_SYSTEM_HI_SOFTIRQ
-ffffffc008b56d08 d __TRACE_SYSTEM_TIMER_SOFTIRQ
-ffffffc008b56d20 d __TRACE_SYSTEM_NET_TX_SOFTIRQ
-ffffffc008b56d38 d __TRACE_SYSTEM_NET_RX_SOFTIRQ
-ffffffc008b56d50 d __TRACE_SYSTEM_BLOCK_SOFTIRQ
-ffffffc008b56d68 d __TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
-ffffffc008b56d80 d __TRACE_SYSTEM_TASKLET_SOFTIRQ
-ffffffc008b56d98 d __TRACE_SYSTEM_SCHED_SOFTIRQ
-ffffffc008b56db0 d __TRACE_SYSTEM_HRTIMER_SOFTIRQ
-ffffffc008b56dc8 d __TRACE_SYSTEM_RCU_SOFTIRQ
-ffffffc008b56de0 D main_extable_sort_needed
-ffffffc008b56de8 d new_log_buf_len
-ffffffc008b56df0 d setup_text_buf
-ffffffc008b571c0 d __TRACE_SYSTEM_TICK_DEP_MASK_NONE
-ffffffc008b571d8 d __TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
-ffffffc008b571f0 d __TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
-ffffffc008b57208 d __TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
-ffffffc008b57220 d __TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
-ffffffc008b57238 d __TRACE_SYSTEM_TICK_DEP_BIT_SCHED
-ffffffc008b57250 d __TRACE_SYSTEM_TICK_DEP_MASK_SCHED
-ffffffc008b57268 d __TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
-ffffffc008b57280 d __TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
-ffffffc008b57298 d __TRACE_SYSTEM_TICK_DEP_BIT_RCU
-ffffffc008b572b0 d __TRACE_SYSTEM_TICK_DEP_MASK_RCU
-ffffffc008b572c8 d __TRACE_SYSTEM_ALARM_REALTIME
-ffffffc008b572e0 d __TRACE_SYSTEM_ALARM_BOOTTIME
-ffffffc008b572f8 d __TRACE_SYSTEM_ALARM_REALTIME_FREEZER
-ffffffc008b57310 d __TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
-ffffffc008b57328 d suffix_tbl
-ffffffc008b57340 d audit_net_ops
-ffffffc008b57380 d bootup_tracer_buf
-ffffffc008b573e4 d trace_boot_options_buf
-ffffffc008b57448 d trace_boot_clock_buf
-ffffffc008b574b0 d trace_boot_clock
-ffffffc008b574b8 d tracepoint_printk_stop_on_boot
-ffffffc008b574c0 d eval_map_work
-ffffffc008b574e0 d eval_map_wq
-ffffffc008b574e8 d tracerfs_init_work
-ffffffc008b57508 d events
-ffffffc008b57578 d bootup_event_buf
-ffffffc008b57d78 d __TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
-ffffffc008b57d90 d __TRACE_SYSTEM_ERROR_DETECTOR_KASAN
-ffffffc008b57da8 d __TRACE_SYSTEM_ERROR_DETECTOR_WARN
-ffffffc008b57dc0 d __TRACE_SYSTEM_XDP_ABORTED
-ffffffc008b57dd8 d __TRACE_SYSTEM_XDP_DROP
-ffffffc008b57df0 d __TRACE_SYSTEM_XDP_PASS
-ffffffc008b57e08 d __TRACE_SYSTEM_XDP_TX
-ffffffc008b57e20 d __TRACE_SYSTEM_XDP_REDIRECT
-ffffffc008b57e38 d __TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
-ffffffc008b57e50 d __TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
-ffffffc008b57e68 d __TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
-ffffffc008b57e80 d __TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
-ffffffc008b57e98 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b57eb0 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b57ec8 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b57ee0 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b57ef8 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b57f10 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b57f28 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b57f40 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b57f58 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b57f70 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b57f88 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b57fa0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b57fb8 d __TRACE_SYSTEM_ZONE_DMA
-ffffffc008b57fd0 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b57fe8 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b58000 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b58018 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b58030 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b58048 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b58060 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b58078 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b58090 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b580a8 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b580c0 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b580d8 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b580f0 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b58108 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b58120 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b58138 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b58150 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b58168 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b58180 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b58198 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b581b0 d __TRACE_SYSTEM_ZONE_DMA
-ffffffc008b581c8 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b581e0 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b581f8 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b58210 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b58228 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b58240 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b58258 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b58270 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b58288 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b582a0 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b582b8 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b582d0 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b582e8 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b58300 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b58318 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b58330 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b58348 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b58360 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b58378 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b58390 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b583a8 d __TRACE_SYSTEM_ZONE_DMA
-ffffffc008b583c0 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b583d8 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b583f0 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b58408 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b58420 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b58438 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b58450 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b58468 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b58480 D pcpu_chosen_fc
-ffffffc008b58484 d pcpu_build_alloc_info.group_map
-ffffffc008b58504 d pcpu_build_alloc_info.group_cnt
-ffffffc008b58588 d pcpu_build_alloc_info.mask
-ffffffc008b58590 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b585a8 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b585c0 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b585d8 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b585f0 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b58608 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b58620 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b58638 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b58650 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b58668 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b58680 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b58698 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b586b0 d __TRACE_SYSTEM_ZONE_DMA
-ffffffc008b586c8 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b586e0 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b586f8 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b58710 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b58728 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b58740 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b58758 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b58770 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b58788 d __TRACE_SYSTEM_MM_FILEPAGES
-ffffffc008b587a0 d __TRACE_SYSTEM_MM_ANONPAGES
-ffffffc008b587b8 d __TRACE_SYSTEM_MM_SWAPENTS
-ffffffc008b587d0 d __TRACE_SYSTEM_MM_SHMEMPAGES
-ffffffc008b587e8 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b58800 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b58818 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b58830 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b58848 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b58860 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b58878 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b58890 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b588a8 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b588c0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b588d8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b588f0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b58908 d __TRACE_SYSTEM_ZONE_DMA
-ffffffc008b58920 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b58938 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b58950 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b58968 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b58980 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b58998 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b589b0 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b589c8 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b589e0 d __TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
-ffffffc008b589f8 d __TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
-ffffffc008b58a10 d __TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
-ffffffc008b58a28 d __TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
-ffffffc008b58a40 d __TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
-ffffffc008b58a58 d __TRACE_SYSTEM_MIGRATE_ASYNC
-ffffffc008b58a70 d __TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
-ffffffc008b58a88 d __TRACE_SYSTEM_MIGRATE_SYNC
-ffffffc008b58aa0 d __TRACE_SYSTEM_MR_COMPACTION
-ffffffc008b58ab8 d __TRACE_SYSTEM_MR_MEMORY_FAILURE
-ffffffc008b58ad0 d __TRACE_SYSTEM_MR_MEMORY_HOTPLUG
-ffffffc008b58ae8 d __TRACE_SYSTEM_MR_SYSCALL
-ffffffc008b58b00 d __TRACE_SYSTEM_MR_MEMPOLICY_MBIND
-ffffffc008b58b18 d __TRACE_SYSTEM_MR_NUMA_MISPLACED
-ffffffc008b58b30 d __TRACE_SYSTEM_MR_CONTIG_RANGE
-ffffffc008b58b48 d __TRACE_SYSTEM_MR_LONGTERM_PIN
-ffffffc008b58b60 d __TRACE_SYSTEM_MR_DEMOTION
-ffffffc008b58b78 d vmlist
-ffffffc008b58b80 d arch_zone_lowest_possible_pfn
-ffffffc008b58ba0 d arch_zone_highest_possible_pfn
-ffffffc008b58bc0 d zone_movable_pfn.0
-ffffffc008b58bc8 d dma_reserve
-ffffffc008b58bd0 d nr_kernel_pages
-ffffffc008b58bd8 d nr_all_pages
-ffffffc008b58be0 d required_kernelcore_percent
-ffffffc008b58be8 d required_kernelcore
-ffffffc008b58bf0 d required_movablecore_percent
-ffffffc008b58bf8 d required_movablecore
-ffffffc008b58c00 d reset_managed_pages_done
-ffffffc008b58c08 d kmem_cache_init.boot_kmem_cache
-ffffffc008b58ce8 d kmem_cache_init.boot_kmem_cache_node
-ffffffc008b58dc8 d kasan_arg_vmalloc
-ffffffc008b58dcc d kasan_arg_stacktrace
-ffffffc008b58dd0 d __TRACE_SYSTEM_SCAN_FAIL
-ffffffc008b58de8 d __TRACE_SYSTEM_SCAN_SUCCEED
-ffffffc008b58e00 d __TRACE_SYSTEM_SCAN_PMD_NULL
-ffffffc008b58e18 d __TRACE_SYSTEM_SCAN_PMD_NONE
-ffffffc008b58e30 d __TRACE_SYSTEM_SCAN_PMD_MAPPED
-ffffffc008b58e48 d __TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
-ffffffc008b58e60 d __TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
-ffffffc008b58e78 d __TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
-ffffffc008b58e90 d __TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
-ffffffc008b58ea8 d __TRACE_SYSTEM_SCAN_PTE_UFFD_WP
-ffffffc008b58ec0 d __TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
-ffffffc008b58ed8 d __TRACE_SYSTEM_SCAN_PAGE_RO
-ffffffc008b58ef0 d __TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
-ffffffc008b58f08 d __TRACE_SYSTEM_SCAN_PAGE_NULL
-ffffffc008b58f20 d __TRACE_SYSTEM_SCAN_SCAN_ABORT
-ffffffc008b58f38 d __TRACE_SYSTEM_SCAN_PAGE_COUNT
-ffffffc008b58f50 d __TRACE_SYSTEM_SCAN_PAGE_LRU
-ffffffc008b58f68 d __TRACE_SYSTEM_SCAN_PAGE_LOCK
-ffffffc008b58f80 d __TRACE_SYSTEM_SCAN_PAGE_ANON
-ffffffc008b58f98 d __TRACE_SYSTEM_SCAN_PAGE_COMPOUND
-ffffffc008b58fb0 d __TRACE_SYSTEM_SCAN_ANY_PROCESS
-ffffffc008b58fc8 d __TRACE_SYSTEM_SCAN_VMA_NULL
-ffffffc008b58fe0 d __TRACE_SYSTEM_SCAN_VMA_CHECK
-ffffffc008b58ff8 d __TRACE_SYSTEM_SCAN_ADDRESS_RANGE
-ffffffc008b59010 d __TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
-ffffffc008b59028 d __TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
-ffffffc008b59040 d __TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
-ffffffc008b59058 d __TRACE_SYSTEM_SCAN_TRUNCATED
-ffffffc008b59070 d __TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
-ffffffc008b59088 d page_owner_enabled
-ffffffc008b59090 d prev_map
-ffffffc008b590c8 d slot_virt
-ffffffc008b59100 d prev_size
-ffffffc008b59138 d early_ioremap_debug
-ffffffc008b59139 d enable_checks
-ffffffc008b59140 d dhash_entries
-ffffffc008b59148 d ihash_entries
-ffffffc008b59150 d mhash_entries
-ffffffc008b59158 d mphash_entries
-ffffffc008b59160 d __TRACE_SYSTEM_WB_REASON_BACKGROUND
-ffffffc008b59178 d __TRACE_SYSTEM_WB_REASON_VMSCAN
-ffffffc008b59190 d __TRACE_SYSTEM_WB_REASON_SYNC
-ffffffc008b591a8 d __TRACE_SYSTEM_WB_REASON_PERIODIC
-ffffffc008b591c0 d __TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
-ffffffc008b591d8 d __TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
-ffffffc008b591f0 d __TRACE_SYSTEM_WB_REASON_FORKER_THREAD
-ffffffc008b59208 d __TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
-ffffffc008b59220 d proc_net_ns_ops
-ffffffc008b59260 d __TRACE_SYSTEM_BH_New
-ffffffc008b59278 d __TRACE_SYSTEM_BH_Mapped
-ffffffc008b59290 d __TRACE_SYSTEM_BH_Unwritten
-ffffffc008b592a8 d __TRACE_SYSTEM_BH_Boundary
-ffffffc008b592c0 d __TRACE_SYSTEM_ES_WRITTEN_B
-ffffffc008b592d8 d __TRACE_SYSTEM_ES_UNWRITTEN_B
-ffffffc008b592f0 d __TRACE_SYSTEM_ES_DELAYED_B
-ffffffc008b59308 d __TRACE_SYSTEM_ES_HOLE_B
-ffffffc008b59320 d __TRACE_SYSTEM_ES_REFERENCED_B
-ffffffc008b59338 d __TRACE_SYSTEM_EXT4_FC_REASON_XATTR
-ffffffc008b59350 d __TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
-ffffffc008b59368 d __TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
-ffffffc008b59380 d __TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
-ffffffc008b59398 d __TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
-ffffffc008b593b0 d __TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
-ffffffc008b593c8 d __TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
-ffffffc008b593e0 d __TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
-ffffffc008b593f8 d __TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
-ffffffc008b59410 d __TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
-ffffffc008b59428 d __TRACE_SYSTEM_EXT4_FC_REASON_MAX
-ffffffc008b59440 d lsm_enabled_true
-ffffffc008b59448 d exclusive
-ffffffc008b59450 d debug
-ffffffc008b59454 d lsm_enabled_false
-ffffffc008b59458 d ordered_lsms
-ffffffc008b59460 d chosen_lsm_order
-ffffffc008b59468 d chosen_major_lsm
-ffffffc008b59470 d last_lsm
-ffffffc008b59474 d selinux_enforcing_boot
-ffffffc008b59478 D selinux_enabled_boot
-ffffffc008b5947c d ddebug_init_success
-ffffffc008b5947d d __stack_depot_early_init_passed
-ffffffc008b59480 d xbc_data
-ffffffc008b59488 d xbc_node_num
-ffffffc008b59490 d xbc_data_size
-ffffffc008b59498 d xbc_nodes
-ffffffc008b594a0 d brace_index
-ffffffc008b594a4 d xbc_err_pos
-ffffffc008b594a8 d xbc_err_msg
-ffffffc008b594b0 d last_parent
-ffffffc008b594b8 d open_brace
-ffffffc008b594f8 d gic_cnt
-ffffffc008b59500 d gic_v2_kvm_info
-ffffffc008b59598 d gic_v3_kvm_info
-ffffffc008b59630 d clk_ignore_unused
-ffffffc008b59631 D earlycon_acpi_spcr_enable
-ffffffc008b59632 d trust_cpu
-ffffffc008b59633 d trust_bootloader
-ffffffc008b59638 D loopback_net_ops
-ffffffc008b59678 d _inits
-ffffffc008b596b8 d arch_timers_present
-ffffffc008b596bc D dt_root_addr_cells
-ffffffc008b596c0 D dt_root_size_cells
-ffffffc008b596c8 d proto_net_ops
-ffffffc008b59708 d net_ns_ops
-ffffffc008b59748 d sysctl_core_ops
-ffffffc008b59788 d netdev_net_ops
-ffffffc008b597c8 d default_device_ops
-ffffffc008b59808 d dev_proc_ops
-ffffffc008b59848 d dev_mc_net_ops
-ffffffc008b59888 d __TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
-ffffffc008b598a0 d __TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
-ffffffc008b598b8 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
-ffffffc008b598d0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
-ffffffc008b598e8 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
-ffffffc008b59900 d __TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
-ffffffc008b59918 d __TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
-ffffffc008b59930 d __TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
-ffffffc008b59948 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
-ffffffc008b59960 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
-ffffffc008b59978 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
-ffffffc008b59990 d __TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
-ffffffc008b599a8 d __TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
-ffffffc008b599c0 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
-ffffffc008b599d8 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
-ffffffc008b599f0 d __TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
-ffffffc008b59a08 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
-ffffffc008b59a20 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
-ffffffc008b59a38 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
-ffffffc008b59a50 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
-ffffffc008b59a68 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
-ffffffc008b59a80 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
-ffffffc008b59a98 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
-ffffffc008b59ab0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
-ffffffc008b59ac8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
-ffffffc008b59ae0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
-ffffffc008b59af8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
-ffffffc008b59b10 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
-ffffffc008b59b28 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
-ffffffc008b59b40 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
-ffffffc008b59b58 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
-ffffffc008b59b70 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
-ffffffc008b59b88 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
-ffffffc008b59ba0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
-ffffffc008b59bb8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
-ffffffc008b59bd0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
-ffffffc008b59be8 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
-ffffffc008b59c00 d __TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
-ffffffc008b59c18 d __TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
-ffffffc008b59c30 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
-ffffffc008b59c48 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
-ffffffc008b59c60 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
-ffffffc008b59c78 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
-ffffffc008b59c90 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
-ffffffc008b59ca8 d __TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
-ffffffc008b59cc0 d __TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
-ffffffc008b59cd8 d __TRACE_SYSTEM_SKB_DROP_REASON_XDP
-ffffffc008b59cf0 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
-ffffffc008b59d08 d __TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
-ffffffc008b59d20 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
-ffffffc008b59d38 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
-ffffffc008b59d50 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
-ffffffc008b59d68 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
-ffffffc008b59d80 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
-ffffffc008b59d98 d __TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
-ffffffc008b59db0 d __TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
-ffffffc008b59dc8 d __TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
-ffffffc008b59de0 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
-ffffffc008b59df8 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
-ffffffc008b59e10 d __TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
-ffffffc008b59e28 d __TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
-ffffffc008b59e40 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
-ffffffc008b59e58 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
-ffffffc008b59e70 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
-ffffffc008b59e88 d __TRACE_SYSTEM_SKB_DROP_REASON_MAX
-ffffffc008b59ea0 d __TRACE_SYSTEM_2
-ffffffc008b59eb8 d __TRACE_SYSTEM_10
-ffffffc008b59ed0 d __TRACE_SYSTEM_IPPROTO_TCP
-ffffffc008b59ee8 d __TRACE_SYSTEM_IPPROTO_DCCP
-ffffffc008b59f00 d __TRACE_SYSTEM_IPPROTO_SCTP
-ffffffc008b59f18 d __TRACE_SYSTEM_IPPROTO_MPTCP
-ffffffc008b59f30 d __TRACE_SYSTEM_TCP_ESTABLISHED
-ffffffc008b59f48 d __TRACE_SYSTEM_TCP_SYN_SENT
-ffffffc008b59f60 d __TRACE_SYSTEM_TCP_SYN_RECV
-ffffffc008b59f78 d __TRACE_SYSTEM_TCP_FIN_WAIT1
-ffffffc008b59f90 d __TRACE_SYSTEM_TCP_FIN_WAIT2
-ffffffc008b59fa8 d __TRACE_SYSTEM_TCP_TIME_WAIT
-ffffffc008b59fc0 d __TRACE_SYSTEM_TCP_CLOSE
-ffffffc008b59fd8 d __TRACE_SYSTEM_TCP_CLOSE_WAIT
-ffffffc008b59ff0 d __TRACE_SYSTEM_TCP_LAST_ACK
-ffffffc008b5a008 d __TRACE_SYSTEM_TCP_LISTEN
-ffffffc008b5a020 d __TRACE_SYSTEM_TCP_CLOSING
-ffffffc008b5a038 d __TRACE_SYSTEM_TCP_NEW_SYN_RECV
-ffffffc008b5a050 d __TRACE_SYSTEM_0
-ffffffc008b5a068 d __TRACE_SYSTEM_1
-ffffffc008b5a080 d netlink_net_ops
-ffffffc008b5a0c0 d sysctl_route_ops
-ffffffc008b5a100 d ip_rt_ops
-ffffffc008b5a140 d rt_genid_ops
-ffffffc008b5a180 d ipv4_inetpeer_ops
-ffffffc008b5a1c0 d ip_rt_proc_ops
-ffffffc008b5a200 d thash_entries
-ffffffc008b5a208 d tcp_sk_ops
-ffffffc008b5a248 d tcp_net_metrics_ops
-ffffffc008b5a288 d raw_net_ops
-ffffffc008b5a2c8 d raw_sysctl_ops
-ffffffc008b5a308 d uhash_entries
-ffffffc008b5a310 d udp_sysctl_ops
-ffffffc008b5a350 d icmp_sk_ops
-ffffffc008b5a390 d devinet_ops
-ffffffc008b5a3d0 d ipv4_mib_ops
-ffffffc008b5a410 d af_inet_ops
-ffffffc008b5a450 d ipv4_sysctl_ops
-ffffffc008b5a490 d ip_proc_ops
-ffffffc008b5a4d0 d xfrm4_net_ops
-ffffffc008b5a510 d xfrm_net_ops
-ffffffc008b5a550 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
-ffffffc008b5a568 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
-ffffffc008b5a580 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
-ffffffc008b5a598 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
-ffffffc008b5a5b0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
-ffffffc008b5a5c8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
-ffffffc008b5a5e0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
-ffffffc008b5a5f8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
-ffffffc008b5a610 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
-ffffffc008b5a628 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
-ffffffc008b5a6d1 d __pi_$d.2
-ffffffc008b5a6e4 d __pi_$d.68
-ffffffc008b5a6f8 d __pi_$d.12
-ffffffc008b5a701 d __setup_str_set_reset_devices
-ffffffc008b5a70f d __setup_str_debug_kernel
-ffffffc008b5a715 d __setup_str_quiet_kernel
-ffffffc008b5a71b d __setup_str_loglevel
-ffffffc008b5a724 d __setup_str_warn_bootconfig
-ffffffc008b5a72f d __setup_str_init_setup
-ffffffc008b5a735 d __setup_str_rdinit_setup
-ffffffc008b5a73d d __setup_str_early_randomize_kstack_offset
-ffffffc008b5a755 d __setup_str_initcall_blacklist
-ffffffc008b5a769 d __setup_str_set_debug_rodata
-ffffffc008b5a770 d __setup_str_early_hostname
-ffffffc008b5a779 d __setup_str_load_ramdisk
-ffffffc008b5a787 d __setup_str_readonly
-ffffffc008b5a78a d __setup_str_readwrite
-ffffffc008b5a78d d __setup_str_root_dev_setup
-ffffffc008b5a793 d __setup_str_rootwait_setup
-ffffffc008b5a79c d __setup_str_root_data_setup
-ffffffc008b5a7a7 d __setup_str_fs_names_setup
-ffffffc008b5a7b3 d __setup_str_root_delay_setup
-ffffffc008b5a7be d __setup_str_prompt_ramdisk
-ffffffc008b5a7ce d __setup_str_ramdisk_start_setup
-ffffffc008b5a7dd d __setup_str_no_initrd
-ffffffc008b5a7e6 d __setup_str_early_initrdmem
-ffffffc008b5a7f0 d __setup_str_early_initrd
-ffffffc008b5a7f7 d __setup_str_retain_initrd_param
-ffffffc008b5a805 d __setup_str_keepinitrd_setup
-ffffffc008b5a810 d __setup_str_initramfs_async_setup
-ffffffc008b5a821 d __setup_str_lpj_setup
-ffffffc008b5a826 d __setup_str_early_debug_disable
-ffffffc008b5a838 d dt_supported_cpu_ops
-ffffffc008b5a850 d __setup_str_parse_32bit_el0_param
-ffffffc008b5a86b d __setup_str_parse_kpti
-ffffffc008b5a870 d __setup_str_parse_spectre_v2_param
-ffffffc008b5a87d d __setup_str_parse_spectre_v4_param
-ffffffc008b5a882 d __setup_str_parse_spectre_bhb_param
-ffffffc008b5a890 d regs
-ffffffc008b5a8c8 d mmfr1
-ffffffc008b5a918 d pfr0
-ffffffc008b5a968 d pfr1
-ffffffc008b5a9e8 d isar1
-ffffffc008b5aa80 d isar2
-ffffffc008b5aae8 d smfr0
-ffffffc008b5ab38 d kaslr
-ffffffc008b5ab88 d aliases
-ffffffc008b5b018 d __setup_str_parse_no_stealacc
-ffffffc008b5b025 d __setup_str_early_disable_dma32
-ffffffc008b5b033 d __setup_str_early_mem
-ffffffc008b5b037 d __setup_str_ioremap_guard_setup
-ffffffc008b5b045 d __setup_str_enable_crash_mem_map
-ffffffc008b5b051 d __setup_str_coredump_filter_setup
-ffffffc008b5b062 d __setup_str_oops_setup
-ffffffc008b5b067 d __setup_str_panic_on_taint_setup
-ffffffc008b5b076 d __setup_str_mitigations_parse_cmdline
-ffffffc008b5b082 d __setup_str_reserve_setup
-ffffffc008b5b08b d __setup_str_strict_iomem
-ffffffc008b5b092 d __setup_str_file_caps_disable
-ffffffc008b5b09f d __setup_str_setup_print_fatal_signals
-ffffffc008b5b0b4 d __setup_str_reboot_setup
-ffffffc008b5b0bc d __setup_str_setup_schedstats
-ffffffc008b5b0c8 d __setup_str_setup_resched_latency_warn_ms
-ffffffc008b5b0e1 d __setup_str_setup_sched_thermal_decay_shift
-ffffffc008b5b0fc d __setup_str_cpu_idle_poll_setup
-ffffffc008b5b102 d __setup_str_cpu_idle_nopoll_setup
-ffffffc008b5b106 d __setup_str_sched_debug_setup
-ffffffc008b5b114 d __setup_str_setup_relax_domain_level
-ffffffc008b5b128 d __setup_str_setup_psi
-ffffffc008b5b12d d __setup_str_housekeeping_nohz_full_setup
-ffffffc008b5b138 d __setup_str_housekeeping_isolcpus_setup
-ffffffc008b5b142 d __setup_str_mem_sleep_default_setup
-ffffffc008b5b155 d __setup_str_control_devkmsg
-ffffffc008b5b165 d __setup_str_log_buf_len_setup
-ffffffc008b5b171 d __setup_str_ignore_loglevel_setup
-ffffffc008b5b181 d __setup_str_console_msg_format_setup
-ffffffc008b5b195 d __setup_str_console_setup
-ffffffc008b5b19e d __setup_str_console_suspend_disable
-ffffffc008b5b1b1 d __setup_str_keep_bootcon_setup
-ffffffc008b5b1be d __setup_str_irq_affinity_setup
-ffffffc008b5b1cb d __setup_str_setup_forced_irqthreads
-ffffffc008b5b1d6 d __setup_str_noirqdebug_setup
-ffffffc008b5b1e1 d __setup_str_irqfixup_setup
-ffffffc008b5b1ea d __setup_str_irqpoll_setup
-ffffffc008b5b1f2 d __setup_str_rcu_nocb_setup
-ffffffc008b5b1fc d __setup_str_parse_rcu_nocb_poll
-ffffffc008b5b20a d __setup_str_setup_io_tlb_npages
-ffffffc008b5b212 d __setup_str_early_coherent_pool
-ffffffc008b5b220 d __setup_str_profile_setup
-ffffffc008b5b229 d __setup_str_setup_hrtimer_hres
-ffffffc008b5b232 d __setup_str_ntp_tick_adj_setup
-ffffffc008b5b240 d __setup_str_boot_override_clocksource
-ffffffc008b5b24d d __setup_str_boot_override_clock
-ffffffc008b5b254 d __setup_str_setup_tick_nohz
-ffffffc008b5b25a d __setup_str_skew_tick
-ffffffc008b5b264 d __setup_str_nosmp
-ffffffc008b5b26a d __setup_str_nrcpus
-ffffffc008b5b272 d __setup_str_maxcpus
-ffffffc008b5b27a d __setup_str_parse_crashkernel_dummy
-ffffffc008b5b286 d __setup_str_audit_enable
-ffffffc008b5b28d d __setup_str_audit_backlog_limit_set
-ffffffc008b5b2a2 d __setup_str_nowatchdog_setup
-ffffffc008b5b2ad d __setup_str_nosoftlockup_setup
-ffffffc008b5b2ba d __setup_str_watchdog_thresh_setup
-ffffffc008b5b2cb d __setup_str_set_cmdline_ftrace
-ffffffc008b5b2d3 d __setup_str_set_ftrace_dump_on_oops
-ffffffc008b5b2e7 d __setup_str_stop_trace_on_warning
-ffffffc008b5b2fb d __setup_str_boot_alloc_snapshot
-ffffffc008b5b30a d __setup_str_boot_snapshot
-ffffffc008b5b31f d __setup_str_set_trace_boot_options
-ffffffc008b5b32e d __setup_str_set_trace_boot_clock
-ffffffc008b5b33b d __setup_str_set_tracepoint_printk
-ffffffc008b5b345 d __setup_str_set_tracepoint_printk_stop
-ffffffc008b5b35c d __setup_str_set_buf_size
-ffffffc008b5b36c d __setup_str_set_tracing_thresh
-ffffffc008b5b37c d __setup_str_setup_trace_event
-ffffffc008b5b389 d __setup_str_set_mminit_loglevel
-ffffffc008b5b3a0 D pcpu_fc_names
-ffffffc008b5b3b8 d __setup_str_percpu_alloc_setup
-ffffffc008b5b3c8 d __setup_str_slub_nomerge
-ffffffc008b5b3d5 d __setup_str_slub_merge
-ffffffc008b5b3e0 d __setup_str_setup_slab_nomerge
-ffffffc008b5b3ed d __setup_str_setup_slab_merge
-ffffffc008b5b3f8 D kmalloc_info
-ffffffc008b5b6b8 d __setup_str_disable_randmaps
-ffffffc008b5b6c3 d __setup_str_cmdline_parse_stack_guard_gap
-ffffffc008b5b6d4 d __setup_str_set_nohugeiomap
-ffffffc008b5b6e0 d __setup_str_set_nohugevmalloc
-ffffffc008b5b6ee d __setup_str_early_init_on_alloc
-ffffffc008b5b6fc d __setup_str_early_init_on_free
-ffffffc008b5b709 d __setup_str_cmdline_parse_kernelcore
-ffffffc008b5b714 d __setup_str_cmdline_parse_movablecore
-ffffffc008b5b720 d __setup_str_early_memblock
-ffffffc008b5b729 d __setup_str_setup_memhp_default_state
-ffffffc008b5b73e d __setup_str_cmdline_parse_movable_node
-ffffffc008b5b74b d __setup_str_setup_slub_debug
-ffffffc008b5b756 d __setup_str_setup_slub_min_order
-ffffffc008b5b766 d __setup_str_setup_slub_max_order
-ffffffc008b5b776 d __setup_str_setup_slub_min_objects
-ffffffc008b5b788 d __setup_str_early_kasan_fault
-ffffffc008b5b794 d __setup_str_kasan_set_multi_shot
-ffffffc008b5b7a5 d __setup_str_early_kasan_flag
-ffffffc008b5b7ab d __setup_str_early_kasan_mode
-ffffffc008b5b7b6 d __setup_str_early_kasan_flag_vmalloc
-ffffffc008b5b7c4 d __setup_str_early_kasan_flag_page_alloc_sample
-ffffffc008b5b7dc d __setup_str_early_kasan_flag_page_alloc_sample_order
-ffffffc008b5b7fa d __setup_str_early_kasan_flag_stacktrace
-ffffffc008b5b80b d __setup_str_early_kasan_flag_stack_ring_size
-ffffffc008b5b821 d __setup_str_setup_transparent_hugepage
-ffffffc008b5b837 d __setup_str_early_page_owner_param
-ffffffc008b5b842 d __setup_str_early_ioremap_debug_setup
-ffffffc008b5b856 d __setup_str_setup_early_page_ext
-ffffffc008b5b865 d __setup_str_parse_hardened_usercopy
-ffffffc008b5b878 d __setup_str_set_dhash_entries
-ffffffc008b5b887 d __setup_str_set_ihash_entries
-ffffffc008b5b896 d __setup_str_set_mhash_entries
-ffffffc008b5b8a5 d __setup_str_set_mphash_entries
-ffffffc008b5b8b5 d __setup_str_debugfs_kernel
-ffffffc008b5b8bd d __setup_str_choose_major_lsm
-ffffffc008b5b8c7 d __setup_str_choose_lsm_order
-ffffffc008b5b8cc d __setup_str_enable_debug
-ffffffc008b5b8d6 d __setup_str_enforcing_setup
-ffffffc008b5b8e1 d __setup_str_checkreqprot_setup
-ffffffc008b5b8ef d __setup_str_integrity_audit_setup
-ffffffc008b5b900 d __setup_str_elevator_setup
-ffffffc008b5b90a d __setup_str_force_gpt_fn
-ffffffc008b5b90e d __setup_str_dyndbg_setup
-ffffffc008b5b916 d __setup_str_is_stack_depot_disabled
-ffffffc008b5b92a d __setup_str_gicv2_force_probe_cfg
-ffffffc008b5b944 d __setup_str_gicv3_nolpi_cfg
-ffffffc008b5b958 d __setup_str_pcie_port_pm_setup
-ffffffc008b5b966 d __setup_str_pci_setup
-ffffffc008b5b96a d __setup_str_pcie_port_setup
-ffffffc008b5b976 d __setup_str_pcie_aspm_disable
-ffffffc008b5b981 d __setup_str_pcie_pme_setup
-ffffffc008b5b98b d __setup_str_clk_ignore_unused_setup
-ffffffc008b5b99d d __setup_str_sysrq_always_enabled_setup
-ffffffc008b5b9b2 d __setup_str_param_setup_earlycon
-ffffffc008b5b9bb d __setup_str_parse_trust_cpu
-ffffffc008b5b9cc d __setup_str_parse_trust_bootloader
-ffffffc008b5b9e4 d __setup_str_iommu_set_def_domain_type
-ffffffc008b5b9f6 d __setup_str_iommu_dma_setup
-ffffffc008b5ba03 d __setup_str_iommu_dma_forcedac_setup
-ffffffc008b5ba12 d __setup_str_fw_devlink_setup
-ffffffc008b5ba1d d __setup_str_fw_devlink_strict_setup
-ffffffc008b5ba2f d __setup_str_deferred_probe_timeout_setup
-ffffffc008b5ba47 d __setup_str_save_async_options
-ffffffc008b5ba5b d __setup_str_ramdisk_size
-ffffffc008b5ba69 d __setup_str_max_loop_setup
-ffffffc008b5ba78 d dm_allowed_targets
-ffffffc008b5baa8 d psci_of_match
-ffffffc008b5bdc8 d __setup_str_early_evtstrm_cfg
-ffffffc008b5bdf0 d arch_timer_mem_of_match
-ffffffc008b5bf80 d arch_timer_of_match
-ffffffc008b5c1d8 d __setup_str_parse_ras_param
-ffffffc008b5c1dc d __setup_str_fb_tunnels_only_for_init_net_sysctl_setup
-ffffffc008b5c1e8 d __setup_str_set_thash_entries
-ffffffc008b5c1f7 d __setup_str_set_tcpmhash_entries
-ffffffc008b5c209 d __setup_str_set_uhash_entries
-ffffffc008b5c218 d fib4_rules_ops_template
-ffffffc008b5c2c8 d ip6addrlbl_init_table
-ffffffc008b5c368 d fib6_rules_ops_template
-ffffffc008b5c418 d compressed_formats
-ffffffc008b5c4f0 d __setup_str_debug_boot_weak_hash_enable
-ffffffc008b5c505 d __setup_str_no_hash_pointers_enable
-ffffffc008b5c518 d __event_initcall_level
-ffffffc008b5c518 D __start_ftrace_events
-ffffffc008b5c520 d __event_initcall_start
-ffffffc008b5c528 d __event_initcall_finish
-ffffffc008b5c530 d __event_sys_enter
-ffffffc008b5c538 d __event_sys_exit
-ffffffc008b5c540 d __event_ipi_raise
-ffffffc008b5c548 d __event_ipi_entry
-ffffffc008b5c550 d __event_ipi_exit
-ffffffc008b5c558 d __event_task_newtask
-ffffffc008b5c560 d __event_task_rename
-ffffffc008b5c568 d __event_cpuhp_enter
-ffffffc008b5c570 d __event_cpuhp_multi_enter
-ffffffc008b5c578 d __event_cpuhp_exit
-ffffffc008b5c580 d __event_irq_handler_entry
-ffffffc008b5c588 d __event_irq_handler_exit
-ffffffc008b5c590 d __event_softirq_entry
-ffffffc008b5c598 d __event_softirq_exit
-ffffffc008b5c5a0 d __event_softirq_raise
-ffffffc008b5c5a8 d __event_tasklet_entry
-ffffffc008b5c5b0 d __event_tasklet_exit
-ffffffc008b5c5b8 d __event_signal_generate
-ffffffc008b5c5c0 d __event_signal_deliver
-ffffffc008b5c5c8 d __event_workqueue_queue_work
-ffffffc008b5c5d0 d __event_workqueue_activate_work
-ffffffc008b5c5d8 d __event_workqueue_execute_start
-ffffffc008b5c5e0 d __event_workqueue_execute_end
-ffffffc008b5c5e8 d __event_sched_kthread_stop
-ffffffc008b5c5f0 d __event_sched_kthread_stop_ret
-ffffffc008b5c5f8 d __event_sched_kthread_work_queue_work
-ffffffc008b5c600 d __event_sched_kthread_work_execute_start
-ffffffc008b5c608 d __event_sched_kthread_work_execute_end
-ffffffc008b5c610 d __event_sched_waking
-ffffffc008b5c618 d __event_sched_wakeup
-ffffffc008b5c620 d __event_sched_wakeup_new
-ffffffc008b5c628 d __event_sched_switch
-ffffffc008b5c630 d __event_sched_migrate_task
-ffffffc008b5c638 d __event_sched_process_free
-ffffffc008b5c640 d __event_sched_process_exit
-ffffffc008b5c648 d __event_sched_wait_task
-ffffffc008b5c650 d __event_sched_process_wait
-ffffffc008b5c658 d __event_sched_process_fork
-ffffffc008b5c660 d __event_sched_process_exec
-ffffffc008b5c668 d __event_sched_stat_wait
-ffffffc008b5c670 d __event_sched_stat_sleep
-ffffffc008b5c678 d __event_sched_stat_iowait
-ffffffc008b5c680 d __event_sched_stat_blocked
-ffffffc008b5c688 d __event_sched_blocked_reason
-ffffffc008b5c690 d __event_sched_stat_runtime
-ffffffc008b5c698 d __event_sched_pi_setprio
-ffffffc008b5c6a0 d __event_sched_process_hang
-ffffffc008b5c6a8 d __event_sched_move_numa
-ffffffc008b5c6b0 d __event_sched_stick_numa
-ffffffc008b5c6b8 d __event_sched_swap_numa
-ffffffc008b5c6c0 d __event_sched_wake_idle_without_ipi
-ffffffc008b5c6c8 d __event_contention_begin
-ffffffc008b5c6d0 d __event_contention_end
-ffffffc008b5c6d8 d __event_console
-ffffffc008b5c6e0 d __event_rcu_utilization
-ffffffc008b5c6e8 d __event_rcu_grace_period
-ffffffc008b5c6f0 d __event_rcu_future_grace_period
-ffffffc008b5c6f8 d __event_rcu_grace_period_init
-ffffffc008b5c700 d __event_rcu_exp_grace_period
-ffffffc008b5c708 d __event_rcu_exp_funnel_lock
-ffffffc008b5c710 d __event_rcu_nocb_wake
-ffffffc008b5c718 d __event_rcu_preempt_task
-ffffffc008b5c720 d __event_rcu_unlock_preempted_task
-ffffffc008b5c728 d __event_rcu_quiescent_state_report
-ffffffc008b5c730 d __event_rcu_fqs
-ffffffc008b5c738 d __event_rcu_stall_warning
-ffffffc008b5c740 d __event_rcu_dyntick
-ffffffc008b5c748 d __event_rcu_callback
-ffffffc008b5c750 d __event_rcu_segcb_stats
-ffffffc008b5c758 d __event_rcu_kvfree_callback
-ffffffc008b5c760 d __event_rcu_batch_start
-ffffffc008b5c768 d __event_rcu_invoke_callback
-ffffffc008b5c770 d __event_rcu_invoke_kvfree_callback
-ffffffc008b5c778 d __event_rcu_invoke_kfree_bulk_callback
-ffffffc008b5c780 d __event_rcu_batch_end
-ffffffc008b5c788 d __event_rcu_torture_read
-ffffffc008b5c790 d __event_rcu_barrier
-ffffffc008b5c798 d __event_swiotlb_bounced
-ffffffc008b5c7a0 d __event_timer_init
-ffffffc008b5c7a8 d __event_timer_start
-ffffffc008b5c7b0 d __event_timer_expire_entry
-ffffffc008b5c7b8 d __event_timer_expire_exit
-ffffffc008b5c7c0 d __event_timer_cancel
-ffffffc008b5c7c8 d __event_hrtimer_init
-ffffffc008b5c7d0 d __event_hrtimer_start
-ffffffc008b5c7d8 d __event_hrtimer_expire_entry
-ffffffc008b5c7e0 d __event_hrtimer_expire_exit
-ffffffc008b5c7e8 d __event_hrtimer_cancel
-ffffffc008b5c7f0 d __event_itimer_state
-ffffffc008b5c7f8 d __event_itimer_expire
-ffffffc008b5c800 d __event_tick_stop
-ffffffc008b5c808 d __event_alarmtimer_suspend
-ffffffc008b5c810 d __event_alarmtimer_fired
-ffffffc008b5c818 d __event_alarmtimer_start
-ffffffc008b5c820 d __event_alarmtimer_cancel
-ffffffc008b5c828 d __event_function
-ffffffc008b5c830 d __event_funcgraph_entry
-ffffffc008b5c838 d __event_funcgraph_exit
-ffffffc008b5c840 d __event_context_switch
-ffffffc008b5c848 d __event_wakeup
-ffffffc008b5c850 d __event_kernel_stack
-ffffffc008b5c858 d __event_user_stack
-ffffffc008b5c860 d __event_bprint
-ffffffc008b5c868 d __event_print
-ffffffc008b5c870 d __event_raw_data
-ffffffc008b5c878 d __event_bputs
-ffffffc008b5c880 d __event_mmiotrace_rw
-ffffffc008b5c888 d __event_mmiotrace_map
-ffffffc008b5c890 d __event_branch
-ffffffc008b5c898 d __event_hwlat
-ffffffc008b5c8a0 d __event_func_repeats
-ffffffc008b5c8a8 d __event_osnoise
-ffffffc008b5c8b0 d __event_timerlat
-ffffffc008b5c8b8 d __event_error_report_end
-ffffffc008b5c8c0 d __event_cpu_idle
-ffffffc008b5c8c8 d __event_cpu_idle_miss
-ffffffc008b5c8d0 d __event_powernv_throttle
-ffffffc008b5c8d8 d __event_pstate_sample
-ffffffc008b5c8e0 d __event_cpu_frequency
-ffffffc008b5c8e8 d __event_cpu_frequency_limits
-ffffffc008b5c8f0 d __event_device_pm_callback_start
-ffffffc008b5c8f8 d __event_device_pm_callback_end
-ffffffc008b5c900 d __event_suspend_resume
-ffffffc008b5c908 d __event_wakeup_source_activate
-ffffffc008b5c910 d __event_wakeup_source_deactivate
-ffffffc008b5c918 d __event_clock_enable
-ffffffc008b5c920 d __event_clock_disable
-ffffffc008b5c928 d __event_clock_set_rate
-ffffffc008b5c930 d __event_power_domain_target
-ffffffc008b5c938 d __event_pm_qos_add_request
-ffffffc008b5c940 d __event_pm_qos_update_request
-ffffffc008b5c948 d __event_pm_qos_remove_request
-ffffffc008b5c950 d __event_pm_qos_update_target
-ffffffc008b5c958 d __event_pm_qos_update_flags
-ffffffc008b5c960 d __event_dev_pm_qos_add_request
-ffffffc008b5c968 d __event_dev_pm_qos_update_request
-ffffffc008b5c970 d __event_dev_pm_qos_remove_request
-ffffffc008b5c978 d __event_guest_halt_poll_ns
-ffffffc008b5c980 d __event_rpm_suspend
-ffffffc008b5c988 d __event_rpm_resume
-ffffffc008b5c990 d __event_rpm_idle
-ffffffc008b5c998 d __event_rpm_usage
-ffffffc008b5c9a0 d __event_rpm_return_int
-ffffffc008b5c9a8 d __event_xdp_exception
-ffffffc008b5c9b0 d __event_xdp_bulk_tx
-ffffffc008b5c9b8 d __event_xdp_redirect
-ffffffc008b5c9c0 d __event_xdp_redirect_err
-ffffffc008b5c9c8 d __event_xdp_redirect_map
-ffffffc008b5c9d0 d __event_xdp_redirect_map_err
-ffffffc008b5c9d8 d __event_xdp_cpumap_kthread
-ffffffc008b5c9e0 d __event_xdp_cpumap_enqueue
-ffffffc008b5c9e8 d __event_xdp_devmap_xmit
-ffffffc008b5c9f0 d __event_mem_disconnect
-ffffffc008b5c9f8 d __event_mem_connect
-ffffffc008b5ca00 d __event_mem_return_failed
-ffffffc008b5ca08 d __event_rseq_update
-ffffffc008b5ca10 d __event_rseq_ip_fixup
-ffffffc008b5ca18 d __event_mm_filemap_delete_from_page_cache
-ffffffc008b5ca20 d __event_mm_filemap_add_to_page_cache
-ffffffc008b5ca28 d __event_filemap_set_wb_err
-ffffffc008b5ca30 d __event_file_check_and_advance_wb_err
-ffffffc008b5ca38 d __event_oom_score_adj_update
-ffffffc008b5ca40 d __event_reclaim_retry_zone
-ffffffc008b5ca48 d __event_mark_victim
-ffffffc008b5ca50 d __event_wake_reaper
-ffffffc008b5ca58 d __event_start_task_reaping
-ffffffc008b5ca60 d __event_finish_task_reaping
-ffffffc008b5ca68 d __event_skip_task_reaping
-ffffffc008b5ca70 d __event_compact_retry
-ffffffc008b5ca78 d __event_mm_lru_insertion
-ffffffc008b5ca80 d __event_mm_lru_activate
-ffffffc008b5ca88 d __event_mm_vmscan_kswapd_sleep
-ffffffc008b5ca90 d __event_mm_vmscan_kswapd_wake
-ffffffc008b5ca98 d __event_mm_vmscan_wakeup_kswapd
-ffffffc008b5caa0 d __event_mm_vmscan_direct_reclaim_begin
-ffffffc008b5caa8 d __event_mm_vmscan_direct_reclaim_end
-ffffffc008b5cab0 d __event_mm_shrink_slab_start
-ffffffc008b5cab8 d __event_mm_shrink_slab_end
-ffffffc008b5cac0 d __event_mm_vmscan_lru_isolate
-ffffffc008b5cac8 d __event_mm_vmscan_write_folio
-ffffffc008b5cad0 d __event_mm_vmscan_lru_shrink_inactive
-ffffffc008b5cad8 d __event_mm_vmscan_lru_shrink_active
-ffffffc008b5cae0 d __event_mm_vmscan_node_reclaim_begin
-ffffffc008b5cae8 d __event_mm_vmscan_node_reclaim_end
-ffffffc008b5caf0 d __event_mm_vmscan_throttled
-ffffffc008b5caf8 d __event_percpu_alloc_percpu
-ffffffc008b5cb00 d __event_percpu_free_percpu
-ffffffc008b5cb08 d __event_percpu_alloc_percpu_fail
-ffffffc008b5cb10 d __event_percpu_create_chunk
-ffffffc008b5cb18 d __event_percpu_destroy_chunk
-ffffffc008b5cb20 d __event_kmem_cache_alloc
-ffffffc008b5cb28 d __event_kmalloc
-ffffffc008b5cb30 d __event_kfree
-ffffffc008b5cb38 d __event_kmem_cache_free
-ffffffc008b5cb40 d __event_mm_page_free
-ffffffc008b5cb48 d __event_mm_page_free_batched
-ffffffc008b5cb50 d __event_mm_page_alloc
-ffffffc008b5cb58 d __event_mm_page_alloc_zone_locked
-ffffffc008b5cb60 d __event_mm_page_pcpu_drain
-ffffffc008b5cb68 d __event_mm_page_alloc_extfrag
-ffffffc008b5cb70 d __event_rss_stat
-ffffffc008b5cb78 d __event_mm_compaction_isolate_migratepages
-ffffffc008b5cb80 d __event_mm_compaction_isolate_freepages
-ffffffc008b5cb88 d __event_mm_compaction_migratepages
-ffffffc008b5cb90 d __event_mm_compaction_begin
-ffffffc008b5cb98 d __event_mm_compaction_end
-ffffffc008b5cba0 d __event_mm_compaction_try_to_compact_pages
-ffffffc008b5cba8 d __event_mm_compaction_finished
-ffffffc008b5cbb0 d __event_mm_compaction_suitable
-ffffffc008b5cbb8 d __event_mm_compaction_deferred
-ffffffc008b5cbc0 d __event_mm_compaction_defer_compaction
-ffffffc008b5cbc8 d __event_mm_compaction_defer_reset
-ffffffc008b5cbd0 d __event_mm_compaction_kcompactd_sleep
-ffffffc008b5cbd8 d __event_mm_compaction_wakeup_kcompactd
-ffffffc008b5cbe0 d __event_mm_compaction_kcompactd_wake
-ffffffc008b5cbe8 d __event_mmap_lock_start_locking
-ffffffc008b5cbf0 d __event_mmap_lock_released
-ffffffc008b5cbf8 d __event_mmap_lock_acquire_returned
-ffffffc008b5cc00 d __event_vm_unmapped_area
-ffffffc008b5cc08 d __event_vma_mas_szero
-ffffffc008b5cc10 d __event_vma_store
-ffffffc008b5cc18 d __event_exit_mmap
-ffffffc008b5cc20 d __event_tlb_flush
-ffffffc008b5cc28 d __event_mm_migrate_pages
-ffffffc008b5cc30 d __event_mm_migrate_pages_start
-ffffffc008b5cc38 d __event_set_migration_pte
-ffffffc008b5cc40 d __event_remove_migration_pte
-ffffffc008b5cc48 d __event_hugepage_set_pmd
-ffffffc008b5cc50 d __event_hugepage_update
-ffffffc008b5cc58 d __event_set_migration_pmd
-ffffffc008b5cc60 d __event_remove_migration_pmd
-ffffffc008b5cc68 d __event_mm_khugepaged_scan_pmd
-ffffffc008b5cc70 d __event_mm_collapse_huge_page
-ffffffc008b5cc78 d __event_mm_collapse_huge_page_isolate
-ffffffc008b5cc80 d __event_mm_collapse_huge_page_swapin
-ffffffc008b5cc88 d __event_mm_khugepaged_scan_file
-ffffffc008b5cc90 d __event_test_pages_isolated
-ffffffc008b5cc98 d __event_writeback_dirty_folio
-ffffffc008b5cca0 d __event_folio_wait_writeback
-ffffffc008b5cca8 d __event_writeback_mark_inode_dirty
-ffffffc008b5ccb0 d __event_writeback_dirty_inode_start
-ffffffc008b5ccb8 d __event_writeback_dirty_inode
-ffffffc008b5ccc0 d __event_writeback_write_inode_start
-ffffffc008b5ccc8 d __event_writeback_write_inode
-ffffffc008b5ccd0 d __event_writeback_queue
-ffffffc008b5ccd8 d __event_writeback_exec
-ffffffc008b5cce0 d __event_writeback_start
-ffffffc008b5cce8 d __event_writeback_written
-ffffffc008b5ccf0 d __event_writeback_wait
-ffffffc008b5ccf8 d __event_writeback_pages_written
-ffffffc008b5cd00 d __event_writeback_wake_background
-ffffffc008b5cd08 d __event_writeback_bdi_register
-ffffffc008b5cd10 d __event_wbc_writepage
-ffffffc008b5cd18 d __event_writeback_queue_io
-ffffffc008b5cd20 d __event_global_dirty_state
-ffffffc008b5cd28 d __event_bdi_dirty_ratelimit
-ffffffc008b5cd30 d __event_balance_dirty_pages
-ffffffc008b5cd38 d __event_writeback_sb_inodes_requeue
-ffffffc008b5cd40 d __event_writeback_single_inode_start
-ffffffc008b5cd48 d __event_writeback_single_inode
-ffffffc008b5cd50 d __event_writeback_lazytime
-ffffffc008b5cd58 d __event_writeback_lazytime_iput
-ffffffc008b5cd60 d __event_writeback_dirty_inode_enqueue
-ffffffc008b5cd68 d __event_sb_mark_inode_writeback
-ffffffc008b5cd70 d __event_sb_clear_inode_writeback
-ffffffc008b5cd78 d __event_locks_get_lock_context
-ffffffc008b5cd80 d __event_posix_lock_inode
-ffffffc008b5cd88 d __event_fcntl_setlk
-ffffffc008b5cd90 d __event_locks_remove_posix
-ffffffc008b5cd98 d __event_flock_lock_inode
-ffffffc008b5cda0 d __event_break_lease_noblock
-ffffffc008b5cda8 d __event_break_lease_block
-ffffffc008b5cdb0 d __event_break_lease_unblock
-ffffffc008b5cdb8 d __event_generic_delete_lease
-ffffffc008b5cdc0 d __event_time_out_leases
-ffffffc008b5cdc8 d __event_generic_add_lease
-ffffffc008b5cdd0 d __event_leases_conflict
-ffffffc008b5cdd8 d __event_iomap_readpage
-ffffffc008b5cde0 d __event_iomap_readahead
-ffffffc008b5cde8 d __event_iomap_writepage
-ffffffc008b5cdf0 d __event_iomap_release_folio
-ffffffc008b5cdf8 d __event_iomap_invalidate_folio
-ffffffc008b5ce00 d __event_iomap_dio_invalidate_fail
-ffffffc008b5ce08 d __event_iomap_iter_dstmap
-ffffffc008b5ce10 d __event_iomap_iter_srcmap
-ffffffc008b5ce18 d __event_iomap_writepage_map
-ffffffc008b5ce20 d __event_iomap_iter
-ffffffc008b5ce28 d __event_ext4_other_inode_update_time
-ffffffc008b5ce30 d __event_ext4_free_inode
-ffffffc008b5ce38 d __event_ext4_request_inode
-ffffffc008b5ce40 d __event_ext4_allocate_inode
-ffffffc008b5ce48 d __event_ext4_evict_inode
-ffffffc008b5ce50 d __event_ext4_drop_inode
-ffffffc008b5ce58 d __event_ext4_nfs_commit_metadata
-ffffffc008b5ce60 d __event_ext4_mark_inode_dirty
-ffffffc008b5ce68 d __event_ext4_begin_ordered_truncate
-ffffffc008b5ce70 d __event_ext4_write_begin
-ffffffc008b5ce78 d __event_ext4_da_write_begin
-ffffffc008b5ce80 d __event_ext4_write_end
-ffffffc008b5ce88 d __event_ext4_journalled_write_end
-ffffffc008b5ce90 d __event_ext4_da_write_end
-ffffffc008b5ce98 d __event_ext4_writepages
-ffffffc008b5cea0 d __event_ext4_da_write_pages
-ffffffc008b5cea8 d __event_ext4_da_write_pages_extent
-ffffffc008b5ceb0 d __event_ext4_writepages_result
-ffffffc008b5ceb8 d __event_ext4_writepage
-ffffffc008b5cec0 d __event_ext4_readpage
-ffffffc008b5cec8 d __event_ext4_releasepage
-ffffffc008b5ced0 d __event_ext4_invalidate_folio
-ffffffc008b5ced8 d __event_ext4_journalled_invalidate_folio
-ffffffc008b5cee0 d __event_ext4_discard_blocks
-ffffffc008b5cee8 d __event_ext4_mb_new_inode_pa
-ffffffc008b5cef0 d __event_ext4_mb_new_group_pa
-ffffffc008b5cef8 d __event_ext4_mb_release_inode_pa
-ffffffc008b5cf00 d __event_ext4_mb_release_group_pa
-ffffffc008b5cf08 d __event_ext4_discard_preallocations
-ffffffc008b5cf10 d __event_ext4_mb_discard_preallocations
-ffffffc008b5cf18 d __event_ext4_request_blocks
-ffffffc008b5cf20 d __event_ext4_allocate_blocks
-ffffffc008b5cf28 d __event_ext4_free_blocks
-ffffffc008b5cf30 d __event_ext4_sync_file_enter
-ffffffc008b5cf38 d __event_ext4_sync_file_exit
-ffffffc008b5cf40 d __event_ext4_sync_fs
-ffffffc008b5cf48 d __event_ext4_alloc_da_blocks
-ffffffc008b5cf50 d __event_ext4_mballoc_alloc
-ffffffc008b5cf58 d __event_ext4_mballoc_prealloc
-ffffffc008b5cf60 d __event_ext4_mballoc_discard
-ffffffc008b5cf68 d __event_ext4_mballoc_free
-ffffffc008b5cf70 d __event_ext4_forget
-ffffffc008b5cf78 d __event_ext4_da_update_reserve_space
-ffffffc008b5cf80 d __event_ext4_da_reserve_space
-ffffffc008b5cf88 d __event_ext4_da_release_space
-ffffffc008b5cf90 d __event_ext4_mb_bitmap_load
-ffffffc008b5cf98 d __event_ext4_mb_buddy_bitmap_load
-ffffffc008b5cfa0 d __event_ext4_load_inode_bitmap
-ffffffc008b5cfa8 d __event_ext4_read_block_bitmap_load
-ffffffc008b5cfb0 d __event_ext4_fallocate_enter
-ffffffc008b5cfb8 d __event_ext4_punch_hole
-ffffffc008b5cfc0 d __event_ext4_zero_range
-ffffffc008b5cfc8 d __event_ext4_fallocate_exit
-ffffffc008b5cfd0 d __event_ext4_unlink_enter
-ffffffc008b5cfd8 d __event_ext4_unlink_exit
-ffffffc008b5cfe0 d __event_ext4_truncate_enter
-ffffffc008b5cfe8 d __event_ext4_truncate_exit
-ffffffc008b5cff0 d __event_ext4_ext_convert_to_initialized_enter
-ffffffc008b5cff8 d __event_ext4_ext_convert_to_initialized_fastpath
-ffffffc008b5d000 d __event_ext4_ext_map_blocks_enter
-ffffffc008b5d008 d __event_ext4_ind_map_blocks_enter
-ffffffc008b5d010 d __event_ext4_ext_map_blocks_exit
-ffffffc008b5d018 d __event_ext4_ind_map_blocks_exit
-ffffffc008b5d020 d __event_ext4_ext_load_extent
-ffffffc008b5d028 d __event_ext4_load_inode
-ffffffc008b5d030 d __event_ext4_journal_start
-ffffffc008b5d038 d __event_ext4_journal_start_reserved
-ffffffc008b5d040 d __event_ext4_trim_extent
-ffffffc008b5d048 d __event_ext4_trim_all_free
-ffffffc008b5d050 d __event_ext4_ext_handle_unwritten_extents
-ffffffc008b5d058 d __event_ext4_get_implied_cluster_alloc_exit
-ffffffc008b5d060 d __event_ext4_ext_show_extent
-ffffffc008b5d068 d __event_ext4_remove_blocks
-ffffffc008b5d070 d __event_ext4_ext_rm_leaf
-ffffffc008b5d078 d __event_ext4_ext_rm_idx
-ffffffc008b5d080 d __event_ext4_ext_remove_space
-ffffffc008b5d088 d __event_ext4_ext_remove_space_done
-ffffffc008b5d090 d __event_ext4_es_insert_extent
-ffffffc008b5d098 d __event_ext4_es_cache_extent
-ffffffc008b5d0a0 d __event_ext4_es_remove_extent
-ffffffc008b5d0a8 d __event_ext4_es_find_extent_range_enter
-ffffffc008b5d0b0 d __event_ext4_es_find_extent_range_exit
-ffffffc008b5d0b8 d __event_ext4_es_lookup_extent_enter
-ffffffc008b5d0c0 d __event_ext4_es_lookup_extent_exit
-ffffffc008b5d0c8 d __event_ext4_es_shrink_count
-ffffffc008b5d0d0 d __event_ext4_es_shrink_scan_enter
-ffffffc008b5d0d8 d __event_ext4_es_shrink_scan_exit
-ffffffc008b5d0e0 d __event_ext4_collapse_range
-ffffffc008b5d0e8 d __event_ext4_insert_range
-ffffffc008b5d0f0 d __event_ext4_es_shrink
-ffffffc008b5d0f8 d __event_ext4_es_insert_delayed_block
-ffffffc008b5d100 d __event_ext4_fsmap_low_key
-ffffffc008b5d108 d __event_ext4_fsmap_high_key
-ffffffc008b5d110 d __event_ext4_fsmap_mapping
-ffffffc008b5d118 d __event_ext4_getfsmap_low_key
-ffffffc008b5d120 d __event_ext4_getfsmap_high_key
-ffffffc008b5d128 d __event_ext4_getfsmap_mapping
-ffffffc008b5d130 d __event_ext4_shutdown
-ffffffc008b5d138 d __event_ext4_error
-ffffffc008b5d140 d __event_ext4_prefetch_bitmaps
-ffffffc008b5d148 d __event_ext4_lazy_itable_init
-ffffffc008b5d150 d __event_ext4_fc_replay_scan
-ffffffc008b5d158 d __event_ext4_fc_replay
-ffffffc008b5d160 d __event_ext4_fc_commit_start
-ffffffc008b5d168 d __event_ext4_fc_commit_stop
-ffffffc008b5d170 d __event_ext4_fc_stats
-ffffffc008b5d178 d __event_ext4_fc_track_create
-ffffffc008b5d180 d __event_ext4_fc_track_link
-ffffffc008b5d188 d __event_ext4_fc_track_unlink
-ffffffc008b5d190 d __event_ext4_fc_track_inode
-ffffffc008b5d198 d __event_ext4_fc_track_range
-ffffffc008b5d1a0 d __event_ext4_fc_cleanup
-ffffffc008b5d1a8 d __event_ext4_update_sb
-ffffffc008b5d1b0 d __event_jbd2_checkpoint
-ffffffc008b5d1b8 d __event_jbd2_start_commit
-ffffffc008b5d1c0 d __event_jbd2_commit_locking
-ffffffc008b5d1c8 d __event_jbd2_commit_flushing
-ffffffc008b5d1d0 d __event_jbd2_commit_logging
-ffffffc008b5d1d8 d __event_jbd2_drop_transaction
-ffffffc008b5d1e0 d __event_jbd2_end_commit
-ffffffc008b5d1e8 d __event_jbd2_submit_inode_data
-ffffffc008b5d1f0 d __event_jbd2_handle_start
-ffffffc008b5d1f8 d __event_jbd2_handle_restart
-ffffffc008b5d200 d __event_jbd2_handle_extend
-ffffffc008b5d208 d __event_jbd2_handle_stats
-ffffffc008b5d210 d __event_jbd2_run_stats
-ffffffc008b5d218 d __event_jbd2_checkpoint_stats
-ffffffc008b5d220 d __event_jbd2_update_log_tail
-ffffffc008b5d228 d __event_jbd2_write_superblock
-ffffffc008b5d230 d __event_jbd2_lock_buffer_stall
-ffffffc008b5d238 d __event_jbd2_shrink_count
-ffffffc008b5d240 d __event_jbd2_shrink_scan_enter
-ffffffc008b5d248 d __event_jbd2_shrink_scan_exit
-ffffffc008b5d250 d __event_jbd2_shrink_checkpoint_list
-ffffffc008b5d258 d __event_erofs_lookup
-ffffffc008b5d260 d __event_erofs_fill_inode
-ffffffc008b5d268 d __event_erofs_readpage
-ffffffc008b5d270 d __event_erofs_readpages
-ffffffc008b5d278 d __event_erofs_map_blocks_enter
-ffffffc008b5d280 d __event_z_erofs_map_blocks_iter_enter
-ffffffc008b5d288 d __event_erofs_map_blocks_exit
-ffffffc008b5d290 d __event_z_erofs_map_blocks_iter_exit
-ffffffc008b5d298 d __event_erofs_destroy_inode
-ffffffc008b5d2a0 d __event_selinux_audited
-ffffffc008b5d2a8 d __event_block_touch_buffer
-ffffffc008b5d2b0 d __event_block_dirty_buffer
-ffffffc008b5d2b8 d __event_block_rq_requeue
-ffffffc008b5d2c0 d __event_block_rq_complete
-ffffffc008b5d2c8 d __event_block_rq_error
-ffffffc008b5d2d0 d __event_block_rq_insert
-ffffffc008b5d2d8 d __event_block_rq_issue
-ffffffc008b5d2e0 d __event_block_rq_merge
-ffffffc008b5d2e8 d __event_block_bio_complete
-ffffffc008b5d2f0 d __event_block_bio_bounce
-ffffffc008b5d2f8 d __event_block_bio_backmerge
-ffffffc008b5d300 d __event_block_bio_frontmerge
-ffffffc008b5d308 d __event_block_bio_queue
-ffffffc008b5d310 d __event_block_getrq
-ffffffc008b5d318 d __event_block_plug
-ffffffc008b5d320 d __event_block_unplug
-ffffffc008b5d328 d __event_block_split
-ffffffc008b5d330 d __event_block_bio_remap
-ffffffc008b5d338 d __event_block_rq_remap
-ffffffc008b5d340 d __event_kyber_latency
-ffffffc008b5d348 d __event_kyber_adjust
-ffffffc008b5d350 d __event_kyber_throttled
-ffffffc008b5d358 d __event_io_uring_create
-ffffffc008b5d360 d __event_io_uring_register
-ffffffc008b5d368 d __event_io_uring_file_get
-ffffffc008b5d370 d __event_io_uring_queue_async_work
-ffffffc008b5d378 d __event_io_uring_defer
-ffffffc008b5d380 d __event_io_uring_link
-ffffffc008b5d388 d __event_io_uring_cqring_wait
-ffffffc008b5d390 d __event_io_uring_fail_link
-ffffffc008b5d398 d __event_io_uring_complete
-ffffffc008b5d3a0 d __event_io_uring_submit_sqe
-ffffffc008b5d3a8 d __event_io_uring_poll_arm
-ffffffc008b5d3b0 d __event_io_uring_task_add
-ffffffc008b5d3b8 d __event_io_uring_req_failed
-ffffffc008b5d3c0 d __event_io_uring_cqe_overflow
-ffffffc008b5d3c8 d __event_io_uring_task_work_run
-ffffffc008b5d3d0 d __event_io_uring_short_write
-ffffffc008b5d3d8 d __event_io_uring_local_work_run
-ffffffc008b5d3e0 d __event_rwmmio_write
-ffffffc008b5d3e8 d __event_rwmmio_post_write
-ffffffc008b5d3f0 d __event_rwmmio_read
-ffffffc008b5d3f8 d __event_rwmmio_post_read
-ffffffc008b5d400 d __event_clk_enable
-ffffffc008b5d408 d __event_clk_enable_complete
-ffffffc008b5d410 d __event_clk_disable
-ffffffc008b5d418 d __event_clk_disable_complete
-ffffffc008b5d420 d __event_clk_prepare
-ffffffc008b5d428 d __event_clk_prepare_complete
-ffffffc008b5d430 d __event_clk_unprepare
-ffffffc008b5d438 d __event_clk_unprepare_complete
-ffffffc008b5d440 d __event_clk_set_rate
-ffffffc008b5d448 d __event_clk_set_rate_complete
-ffffffc008b5d450 d __event_clk_set_min_rate
-ffffffc008b5d458 d __event_clk_set_max_rate
-ffffffc008b5d460 d __event_clk_set_rate_range
-ffffffc008b5d468 d __event_clk_set_parent
-ffffffc008b5d470 d __event_clk_set_parent_complete
-ffffffc008b5d478 d __event_clk_set_phase
-ffffffc008b5d480 d __event_clk_set_phase_complete
-ffffffc008b5d488 d __event_clk_set_duty_cycle
-ffffffc008b5d490 d __event_clk_set_duty_cycle_complete
-ffffffc008b5d498 d __event_add_device_to_group
-ffffffc008b5d4a0 d __event_remove_device_from_group
-ffffffc008b5d4a8 d __event_attach_device_to_domain
-ffffffc008b5d4b0 d __event_detach_device_from_domain
-ffffffc008b5d4b8 d __event_map
-ffffffc008b5d4c0 d __event_unmap
-ffffffc008b5d4c8 d __event_io_page_fault
-ffffffc008b5d4d0 d __event_regmap_reg_write
-ffffffc008b5d4d8 d __event_regmap_reg_read
-ffffffc008b5d4e0 d __event_regmap_reg_read_cache
-ffffffc008b5d4e8 d __event_regmap_bulk_write
-ffffffc008b5d4f0 d __event_regmap_bulk_read
-ffffffc008b5d4f8 d __event_regmap_hw_read_start
-ffffffc008b5d500 d __event_regmap_hw_read_done
-ffffffc008b5d508 d __event_regmap_hw_write_start
-ffffffc008b5d510 d __event_regmap_hw_write_done
-ffffffc008b5d518 d __event_regcache_sync
-ffffffc008b5d520 d __event_regmap_cache_only
-ffffffc008b5d528 d __event_regmap_cache_bypass
-ffffffc008b5d530 d __event_regmap_async_write_start
-ffffffc008b5d538 d __event_regmap_async_io_complete
-ffffffc008b5d540 d __event_regmap_async_complete_start
-ffffffc008b5d548 d __event_regmap_async_complete_done
-ffffffc008b5d550 d __event_regcache_drop_region
-ffffffc008b5d558 d __event_thermal_pressure_update
-ffffffc008b5d560 d __event_devres_log
-ffffffc008b5d568 d __event_dma_fence_emit
-ffffffc008b5d570 d __event_dma_fence_init
-ffffffc008b5d578 d __event_dma_fence_destroy
-ffffffc008b5d580 d __event_dma_fence_enable_signal
-ffffffc008b5d588 d __event_dma_fence_signaled
-ffffffc008b5d590 d __event_dma_fence_wait_start
-ffffffc008b5d598 d __event_dma_fence_wait_end
-ffffffc008b5d5a0 d __event_rtc_set_time
-ffffffc008b5d5a8 d __event_rtc_read_time
-ffffffc008b5d5b0 d __event_rtc_set_alarm
-ffffffc008b5d5b8 d __event_rtc_read_alarm
-ffffffc008b5d5c0 d __event_rtc_irq_set_freq
-ffffffc008b5d5c8 d __event_rtc_irq_set_state
-ffffffc008b5d5d0 d __event_rtc_alarm_irq_enable
-ffffffc008b5d5d8 d __event_rtc_set_offset
-ffffffc008b5d5e0 d __event_rtc_read_offset
-ffffffc008b5d5e8 d __event_rtc_timer_enqueue
-ffffffc008b5d5f0 d __event_rtc_timer_dequeue
-ffffffc008b5d5f8 d __event_rtc_timer_fired
-ffffffc008b5d600 d __event_watchdog_start
-ffffffc008b5d608 d __event_watchdog_ping
-ffffffc008b5d610 d __event_watchdog_stop
-ffffffc008b5d618 d __event_watchdog_set_timeout
-ffffffc008b5d620 d __event_scmi_fc_call
-ffffffc008b5d628 d __event_scmi_xfer_begin
-ffffffc008b5d630 d __event_scmi_xfer_response_wait
-ffffffc008b5d638 d __event_scmi_xfer_end
-ffffffc008b5d640 d __event_scmi_rx_done
-ffffffc008b5d648 d __event_scmi_msg_dump
-ffffffc008b5d650 d __event_mc_event
-ffffffc008b5d658 d __event_arm_event
-ffffffc008b5d660 d __event_non_standard_event
-ffffffc008b5d668 d __event_aer_event
-ffffffc008b5d670 d __event_kfree_skb
-ffffffc008b5d678 d __event_consume_skb
-ffffffc008b5d680 d __event_skb_copy_datagram_iovec
-ffffffc008b5d688 d __event_net_dev_start_xmit
-ffffffc008b5d690 d __event_net_dev_xmit
-ffffffc008b5d698 d __event_net_dev_xmit_timeout
-ffffffc008b5d6a0 d __event_net_dev_queue
-ffffffc008b5d6a8 d __event_netif_receive_skb
-ffffffc008b5d6b0 d __event_netif_rx
-ffffffc008b5d6b8 d __event_napi_gro_frags_entry
-ffffffc008b5d6c0 d __event_napi_gro_receive_entry
-ffffffc008b5d6c8 d __event_netif_receive_skb_entry
-ffffffc008b5d6d0 d __event_netif_receive_skb_list_entry
-ffffffc008b5d6d8 d __event_netif_rx_entry
-ffffffc008b5d6e0 d __event_napi_gro_frags_exit
-ffffffc008b5d6e8 d __event_napi_gro_receive_exit
-ffffffc008b5d6f0 d __event_netif_receive_skb_exit
-ffffffc008b5d6f8 d __event_netif_rx_exit
-ffffffc008b5d700 d __event_netif_receive_skb_list_exit
-ffffffc008b5d708 d __event_napi_poll
-ffffffc008b5d710 d __event_sock_rcvqueue_full
-ffffffc008b5d718 d __event_sock_exceed_buf_limit
-ffffffc008b5d720 d __event_inet_sock_set_state
-ffffffc008b5d728 d __event_inet_sk_error_report
-ffffffc008b5d730 d __event_udp_fail_queue_rcv_skb
-ffffffc008b5d738 d __event_tcp_retransmit_skb
-ffffffc008b5d740 d __event_tcp_send_reset
-ffffffc008b5d748 d __event_tcp_receive_reset
-ffffffc008b5d750 d __event_tcp_destroy_sock
-ffffffc008b5d758 d __event_tcp_rcv_space_adjust
-ffffffc008b5d760 d __event_tcp_retransmit_synack
-ffffffc008b5d768 d __event_tcp_probe
-ffffffc008b5d770 d __event_tcp_bad_csum
-ffffffc008b5d778 d __event_tcp_cong_state_set
-ffffffc008b5d780 d __event_fib_table_lookup
-ffffffc008b5d788 d __event_qdisc_dequeue
-ffffffc008b5d790 d __event_qdisc_enqueue
-ffffffc008b5d798 d __event_qdisc_reset
-ffffffc008b5d7a0 d __event_qdisc_destroy
-ffffffc008b5d7a8 d __event_qdisc_create
-ffffffc008b5d7b0 d __event_br_fdb_add
-ffffffc008b5d7b8 d __event_br_fdb_external_learn_add
-ffffffc008b5d7c0 d __event_fdb_delete
-ffffffc008b5d7c8 d __event_br_fdb_update
-ffffffc008b5d7d0 d __event_neigh_create
-ffffffc008b5d7d8 d __event_neigh_update
-ffffffc008b5d7e0 d __event_neigh_update_done
-ffffffc008b5d7e8 d __event_neigh_timer_handler
-ffffffc008b5d7f0 d __event_neigh_event_send_done
-ffffffc008b5d7f8 d __event_neigh_event_send_dead
-ffffffc008b5d800 d __event_neigh_cleanup_and_release
-ffffffc008b5d808 d __event_netlink_extack
-ffffffc008b5d810 d __event_fib6_table_lookup
-ffffffc008b5d818 d __event_virtio_transport_alloc_pkt
-ffffffc008b5d820 d __event_virtio_transport_recv_pkt
-ffffffc008b5d828 d __event_ma_op
-ffffffc008b5d830 d __event_ma_read
-ffffffc008b5d838 d __event_ma_write
-ffffffc008b5d840 d TRACE_SYSTEM_HI_SOFTIRQ
-ffffffc008b5d840 D __start_ftrace_eval_maps
-ffffffc008b5d840 D __stop_ftrace_events
-ffffffc008b5d848 d TRACE_SYSTEM_TIMER_SOFTIRQ
-ffffffc008b5d850 d TRACE_SYSTEM_NET_TX_SOFTIRQ
-ffffffc008b5d858 d TRACE_SYSTEM_NET_RX_SOFTIRQ
-ffffffc008b5d860 d TRACE_SYSTEM_BLOCK_SOFTIRQ
-ffffffc008b5d868 d TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
-ffffffc008b5d870 d TRACE_SYSTEM_TASKLET_SOFTIRQ
-ffffffc008b5d878 d TRACE_SYSTEM_SCHED_SOFTIRQ
-ffffffc008b5d880 d TRACE_SYSTEM_HRTIMER_SOFTIRQ
-ffffffc008b5d888 d TRACE_SYSTEM_RCU_SOFTIRQ
-ffffffc008b5d890 d TRACE_SYSTEM_TICK_DEP_MASK_NONE
-ffffffc008b5d898 d TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
-ffffffc008b5d8a0 d TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
-ffffffc008b5d8a8 d TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
-ffffffc008b5d8b0 d TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
-ffffffc008b5d8b8 d TRACE_SYSTEM_TICK_DEP_BIT_SCHED
-ffffffc008b5d8c0 d TRACE_SYSTEM_TICK_DEP_MASK_SCHED
-ffffffc008b5d8c8 d TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
-ffffffc008b5d8d0 d TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
-ffffffc008b5d8d8 d TRACE_SYSTEM_TICK_DEP_BIT_RCU
-ffffffc008b5d8e0 d TRACE_SYSTEM_TICK_DEP_MASK_RCU
-ffffffc008b5d8e8 d TRACE_SYSTEM_ALARM_REALTIME
-ffffffc008b5d8f0 d TRACE_SYSTEM_ALARM_BOOTTIME
-ffffffc008b5d8f8 d TRACE_SYSTEM_ALARM_REALTIME_FREEZER
-ffffffc008b5d900 d TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
-ffffffc008b5d908 d TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
-ffffffc008b5d910 d TRACE_SYSTEM_ERROR_DETECTOR_KASAN
-ffffffc008b5d918 d TRACE_SYSTEM_ERROR_DETECTOR_WARN
-ffffffc008b5d920 d TRACE_SYSTEM_XDP_ABORTED
-ffffffc008b5d928 d TRACE_SYSTEM_XDP_DROP
-ffffffc008b5d930 d TRACE_SYSTEM_XDP_PASS
-ffffffc008b5d938 d TRACE_SYSTEM_XDP_TX
-ffffffc008b5d940 d TRACE_SYSTEM_XDP_REDIRECT
-ffffffc008b5d948 d TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
-ffffffc008b5d950 d TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
-ffffffc008b5d958 d TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
-ffffffc008b5d960 d TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
-ffffffc008b5d968 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b5d970 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b5d978 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b5d980 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b5d988 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b5d990 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b5d998 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b5d9a0 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b5d9a8 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b5d9b0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b5d9b8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b5d9c0 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b5d9c8 d TRACE_SYSTEM_ZONE_DMA
-ffffffc008b5d9d0 d TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b5d9d8 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b5d9e0 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b5d9e8 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b5d9f0 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b5d9f8 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b5da00 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b5da08 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b5da10 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b5da18 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b5da20 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b5da28 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b5da30 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b5da38 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b5da40 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b5da48 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b5da50 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b5da58 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b5da60 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b5da68 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b5da70 d TRACE_SYSTEM_ZONE_DMA
-ffffffc008b5da78 d TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b5da80 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b5da88 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b5da90 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b5da98 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b5daa0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b5daa8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b5dab0 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b5dab8 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b5dac0 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b5dac8 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b5dad0 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b5dad8 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b5dae0 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b5dae8 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b5daf0 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b5daf8 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b5db00 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b5db08 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b5db10 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b5db18 d TRACE_SYSTEM_ZONE_DMA
-ffffffc008b5db20 d TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b5db28 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b5db30 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b5db38 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b5db40 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b5db48 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b5db50 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b5db58 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b5db60 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b5db68 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b5db70 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b5db78 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b5db80 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b5db88 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b5db90 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b5db98 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b5dba0 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b5dba8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b5dbb0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b5dbb8 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b5dbc0 d TRACE_SYSTEM_ZONE_DMA
-ffffffc008b5dbc8 d TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b5dbd0 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b5dbd8 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b5dbe0 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b5dbe8 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b5dbf0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b5dbf8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b5dc00 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b5dc08 d TRACE_SYSTEM_MM_FILEPAGES
-ffffffc008b5dc10 d TRACE_SYSTEM_MM_ANONPAGES
-ffffffc008b5dc18 d TRACE_SYSTEM_MM_SWAPENTS
-ffffffc008b5dc20 d TRACE_SYSTEM_MM_SHMEMPAGES
-ffffffc008b5dc28 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffc008b5dc30 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffc008b5dc38 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffc008b5dc40 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffc008b5dc48 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffc008b5dc50 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffc008b5dc58 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffc008b5dc60 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffc008b5dc68 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffc008b5dc70 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffc008b5dc78 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffc008b5dc80 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffc008b5dc88 d TRACE_SYSTEM_ZONE_DMA
-ffffffc008b5dc90 d TRACE_SYSTEM_ZONE_DMA32
-ffffffc008b5dc98 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffc008b5dca0 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffc008b5dca8 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffc008b5dcb0 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffc008b5dcb8 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffc008b5dcc0 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffc008b5dcc8 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffc008b5dcd0 d TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
-ffffffc008b5dcd8 d TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
-ffffffc008b5dce0 d TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
-ffffffc008b5dce8 d TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
-ffffffc008b5dcf0 d TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
-ffffffc008b5dcf8 d TRACE_SYSTEM_MIGRATE_ASYNC
-ffffffc008b5dd00 d TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
-ffffffc008b5dd08 d TRACE_SYSTEM_MIGRATE_SYNC
-ffffffc008b5dd10 d TRACE_SYSTEM_MR_COMPACTION
-ffffffc008b5dd18 d TRACE_SYSTEM_MR_MEMORY_FAILURE
-ffffffc008b5dd20 d TRACE_SYSTEM_MR_MEMORY_HOTPLUG
-ffffffc008b5dd28 d TRACE_SYSTEM_MR_SYSCALL
-ffffffc008b5dd30 d TRACE_SYSTEM_MR_MEMPOLICY_MBIND
-ffffffc008b5dd38 d TRACE_SYSTEM_MR_NUMA_MISPLACED
-ffffffc008b5dd40 d TRACE_SYSTEM_MR_CONTIG_RANGE
-ffffffc008b5dd48 d TRACE_SYSTEM_MR_LONGTERM_PIN
-ffffffc008b5dd50 d TRACE_SYSTEM_MR_DEMOTION
-ffffffc008b5dd58 d TRACE_SYSTEM_SCAN_FAIL
-ffffffc008b5dd60 d TRACE_SYSTEM_SCAN_SUCCEED
-ffffffc008b5dd68 d TRACE_SYSTEM_SCAN_PMD_NULL
-ffffffc008b5dd70 d TRACE_SYSTEM_SCAN_PMD_NONE
-ffffffc008b5dd78 d TRACE_SYSTEM_SCAN_PMD_MAPPED
-ffffffc008b5dd80 d TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
-ffffffc008b5dd88 d TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
-ffffffc008b5dd90 d TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
-ffffffc008b5dd98 d TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
-ffffffc008b5dda0 d TRACE_SYSTEM_SCAN_PTE_UFFD_WP
-ffffffc008b5dda8 d TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
-ffffffc008b5ddb0 d TRACE_SYSTEM_SCAN_PAGE_RO
-ffffffc008b5ddb8 d TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
-ffffffc008b5ddc0 d TRACE_SYSTEM_SCAN_PAGE_NULL
-ffffffc008b5ddc8 d TRACE_SYSTEM_SCAN_SCAN_ABORT
-ffffffc008b5ddd0 d TRACE_SYSTEM_SCAN_PAGE_COUNT
-ffffffc008b5ddd8 d TRACE_SYSTEM_SCAN_PAGE_LRU
-ffffffc008b5dde0 d TRACE_SYSTEM_SCAN_PAGE_LOCK
-ffffffc008b5dde8 d TRACE_SYSTEM_SCAN_PAGE_ANON
-ffffffc008b5ddf0 d TRACE_SYSTEM_SCAN_PAGE_COMPOUND
-ffffffc008b5ddf8 d TRACE_SYSTEM_SCAN_ANY_PROCESS
-ffffffc008b5de00 d TRACE_SYSTEM_SCAN_VMA_NULL
-ffffffc008b5de08 d TRACE_SYSTEM_SCAN_VMA_CHECK
-ffffffc008b5de10 d TRACE_SYSTEM_SCAN_ADDRESS_RANGE
-ffffffc008b5de18 d TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
-ffffffc008b5de20 d TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
-ffffffc008b5de28 d TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
-ffffffc008b5de30 d TRACE_SYSTEM_SCAN_TRUNCATED
-ffffffc008b5de38 d TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
-ffffffc008b5de40 d TRACE_SYSTEM_WB_REASON_BACKGROUND
-ffffffc008b5de48 d TRACE_SYSTEM_WB_REASON_VMSCAN
-ffffffc008b5de50 d TRACE_SYSTEM_WB_REASON_SYNC
-ffffffc008b5de58 d TRACE_SYSTEM_WB_REASON_PERIODIC
-ffffffc008b5de60 d TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
-ffffffc008b5de68 d TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
-ffffffc008b5de70 d TRACE_SYSTEM_WB_REASON_FORKER_THREAD
-ffffffc008b5de78 d TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
-ffffffc008b5de80 d TRACE_SYSTEM_BH_New
-ffffffc008b5de88 d TRACE_SYSTEM_BH_Mapped
-ffffffc008b5de90 d TRACE_SYSTEM_BH_Unwritten
-ffffffc008b5de98 d TRACE_SYSTEM_BH_Boundary
-ffffffc008b5dea0 d TRACE_SYSTEM_ES_WRITTEN_B
-ffffffc008b5dea8 d TRACE_SYSTEM_ES_UNWRITTEN_B
-ffffffc008b5deb0 d TRACE_SYSTEM_ES_DELAYED_B
-ffffffc008b5deb8 d TRACE_SYSTEM_ES_HOLE_B
-ffffffc008b5dec0 d TRACE_SYSTEM_ES_REFERENCED_B
-ffffffc008b5dec8 d TRACE_SYSTEM_EXT4_FC_REASON_XATTR
-ffffffc008b5ded0 d TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
-ffffffc008b5ded8 d TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
-ffffffc008b5dee0 d TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
-ffffffc008b5dee8 d TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
-ffffffc008b5def0 d TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
-ffffffc008b5def8 d TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
-ffffffc008b5df00 d TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
-ffffffc008b5df08 d TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
-ffffffc008b5df10 d TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
-ffffffc008b5df18 d TRACE_SYSTEM_EXT4_FC_REASON_MAX
-ffffffc008b5df20 d TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
-ffffffc008b5df28 d TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
-ffffffc008b5df30 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
-ffffffc008b5df38 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
-ffffffc008b5df40 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
-ffffffc008b5df48 d TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
-ffffffc008b5df50 d TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
-ffffffc008b5df58 d TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
-ffffffc008b5df60 d TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
-ffffffc008b5df68 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
-ffffffc008b5df70 d TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
-ffffffc008b5df78 d TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
-ffffffc008b5df80 d TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
-ffffffc008b5df88 d TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
-ffffffc008b5df90 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
-ffffffc008b5df98 d TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
-ffffffc008b5dfa0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
-ffffffc008b5dfa8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
-ffffffc008b5dfb0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
-ffffffc008b5dfb8 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
-ffffffc008b5dfc0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
-ffffffc008b5dfc8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
-ffffffc008b5dfd0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
-ffffffc008b5dfd8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
-ffffffc008b5dfe0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
-ffffffc008b5dfe8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
-ffffffc008b5dff0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
-ffffffc008b5dff8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
-ffffffc008b5e000 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
-ffffffc008b5e008 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
-ffffffc008b5e010 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
-ffffffc008b5e018 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
-ffffffc008b5e020 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
-ffffffc008b5e028 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
-ffffffc008b5e030 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
-ffffffc008b5e038 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
-ffffffc008b5e040 d TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
-ffffffc008b5e048 d TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
-ffffffc008b5e050 d TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
-ffffffc008b5e058 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
-ffffffc008b5e060 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
-ffffffc008b5e068 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
-ffffffc008b5e070 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
-ffffffc008b5e078 d TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
-ffffffc008b5e080 d TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
-ffffffc008b5e088 d TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
-ffffffc008b5e090 d TRACE_SYSTEM_SKB_DROP_REASON_XDP
-ffffffc008b5e098 d TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
-ffffffc008b5e0a0 d TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
-ffffffc008b5e0a8 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
-ffffffc008b5e0b0 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
-ffffffc008b5e0b8 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
-ffffffc008b5e0c0 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
-ffffffc008b5e0c8 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
-ffffffc008b5e0d0 d TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
-ffffffc008b5e0d8 d TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
-ffffffc008b5e0e0 d TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
-ffffffc008b5e0e8 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
-ffffffc008b5e0f0 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
-ffffffc008b5e0f8 d TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
-ffffffc008b5e100 d TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
-ffffffc008b5e108 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
-ffffffc008b5e110 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
-ffffffc008b5e118 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
-ffffffc008b5e120 d TRACE_SYSTEM_SKB_DROP_REASON_MAX
-ffffffc008b5e128 d TRACE_SYSTEM_2
-ffffffc008b5e130 d TRACE_SYSTEM_10
-ffffffc008b5e138 d TRACE_SYSTEM_IPPROTO_TCP
-ffffffc008b5e140 d TRACE_SYSTEM_IPPROTO_DCCP
-ffffffc008b5e148 d TRACE_SYSTEM_IPPROTO_SCTP
-ffffffc008b5e150 d TRACE_SYSTEM_IPPROTO_MPTCP
-ffffffc008b5e158 d TRACE_SYSTEM_TCP_ESTABLISHED
-ffffffc008b5e160 d TRACE_SYSTEM_TCP_SYN_SENT
-ffffffc008b5e168 d TRACE_SYSTEM_TCP_SYN_RECV
-ffffffc008b5e170 d TRACE_SYSTEM_TCP_FIN_WAIT1
-ffffffc008b5e178 d TRACE_SYSTEM_TCP_FIN_WAIT2
-ffffffc008b5e180 d TRACE_SYSTEM_TCP_TIME_WAIT
-ffffffc008b5e188 d TRACE_SYSTEM_TCP_CLOSE
-ffffffc008b5e190 d TRACE_SYSTEM_TCP_CLOSE_WAIT
-ffffffc008b5e198 d TRACE_SYSTEM_TCP_LAST_ACK
-ffffffc008b5e1a0 d TRACE_SYSTEM_TCP_LISTEN
-ffffffc008b5e1a8 d TRACE_SYSTEM_TCP_CLOSING
-ffffffc008b5e1b0 d TRACE_SYSTEM_TCP_NEW_SYN_RECV
-ffffffc008b5e1b8 d TRACE_SYSTEM_0
-ffffffc008b5e1c0 d TRACE_SYSTEM_1
-ffffffc008b5e1c8 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
-ffffffc008b5e1d0 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
-ffffffc008b5e1d8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
-ffffffc008b5e1e0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
-ffffffc008b5e1e8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
-ffffffc008b5e1f0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
-ffffffc008b5e1f8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
-ffffffc008b5e200 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
-ffffffc008b5e208 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
-ffffffc008b5e210 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
-ffffffc008b5e218 D __clk_of_table
-ffffffc008b5e218 d __of_table_fixed_factor_clk
-ffffffc008b5e218 D __stop_ftrace_eval_maps
-ffffffc008b5e2e0 d __of_table_fixed_clk
-ffffffc008b5e3a8 d __clk_of_table_sentinel
-ffffffc008b5e470 d __of_table_dma
-ffffffc008b5e470 D __reservedmem_of_table
-ffffffc008b5e538 d __of_table_dma
-ffffffc008b5e600 d __rmem_of_table_sentinel
-ffffffc008b5e6c8 d __of_table_armv7_arch_timer
-ffffffc008b5e6c8 D __timer_of_table
-ffffffc008b5e790 d __of_table_armv8_arch_timer
-ffffffc008b5e858 d __of_table_armv7_arch_timer_mem
-ffffffc008b5e920 d __timer_of_table_sentinel
-ffffffc008b5e9e8 D __cpu_method_of_table
-ffffffc008b5ea00 D __dtb_end
-ffffffc008b5ea00 D __dtb_start
-ffffffc008b5ea00 D __irqchip_of_table
-ffffffc008b5ea00 d __of_table_gic_400
-ffffffc008b5eac8 d __of_table_arm11mp_gic
-ffffffc008b5eb90 d __of_table_arm1176jzf_dc_gic
-ffffffc008b5ec58 d __of_table_cortex_a15_gic
-ffffffc008b5ed20 d __of_table_cortex_a9_gic
-ffffffc008b5ede8 d __of_table_cortex_a7_gic
-ffffffc008b5eeb0 d __of_table_msm_8660_qgic
-ffffffc008b5ef78 d __of_table_msm_qgic2
-ffffffc008b5f040 d __of_table_pl390
-ffffffc008b5f108 d __of_table_gic_v3
-ffffffc008b5f1d0 d irqchip_of_match_end
-ffffffc008b5f298 d __UNIQUE_ID___earlycon_uart8250383
-ffffffc008b5f298 D __earlycon_table
-ffffffc008b5f330 d __UNIQUE_ID___earlycon_uart384
-ffffffc008b5f3c8 d __UNIQUE_ID___earlycon_ns16550385
-ffffffc008b5f460 d __UNIQUE_ID___earlycon_ns16550a386
-ffffffc008b5f4f8 d __UNIQUE_ID___earlycon_uart387
-ffffffc008b5f590 d __UNIQUE_ID___earlycon_uart388
-ffffffc008b5f628 D __earlycon_table_end
-ffffffc008b5f628 d __lsm_capability
-ffffffc008b5f628 D __start_lsm_info
-ffffffc008b5f658 d __lsm_selinux
-ffffffc008b5f688 d __lsm_integrity
-ffffffc008b5f6b8 D __end_early_lsm_info
-ffffffc008b5f6b8 D __end_lsm_info
-ffffffc008b5f6b8 D __kunit_suites_end
-ffffffc008b5f6b8 D __kunit_suites_start
-ffffffc008b5f6b8 D __start_early_lsm_info
-ffffffc008b5f6c0 d __setup_set_reset_devices
-ffffffc008b5f6c0 D __setup_start
-ffffffc008b5f6d8 d __setup_debug_kernel
-ffffffc008b5f6f0 d __setup_quiet_kernel
-ffffffc008b5f708 d __setup_loglevel
-ffffffc008b5f720 d __setup_warn_bootconfig
-ffffffc008b5f738 d __setup_init_setup
-ffffffc008b5f750 d __setup_rdinit_setup
-ffffffc008b5f768 d __setup_early_randomize_kstack_offset
-ffffffc008b5f780 d __setup_initcall_blacklist
-ffffffc008b5f798 d __setup_set_debug_rodata
-ffffffc008b5f7b0 d __setup_early_hostname
-ffffffc008b5f7c8 d __setup_load_ramdisk
-ffffffc008b5f7e0 d __setup_readonly
-ffffffc008b5f7f8 d __setup_readwrite
-ffffffc008b5f810 d __setup_root_dev_setup
-ffffffc008b5f828 d __setup_rootwait_setup
-ffffffc008b5f840 d __setup_root_data_setup
-ffffffc008b5f858 d __setup_fs_names_setup
-ffffffc008b5f870 d __setup_root_delay_setup
-ffffffc008b5f888 d __setup_prompt_ramdisk
-ffffffc008b5f8a0 d __setup_ramdisk_start_setup
-ffffffc008b5f8b8 d __setup_no_initrd
-ffffffc008b5f8d0 d __setup_early_initrdmem
-ffffffc008b5f8e8 d __setup_early_initrd
-ffffffc008b5f900 d __setup_retain_initrd_param
-ffffffc008b5f918 d __setup_keepinitrd_setup
-ffffffc008b5f930 d __setup_initramfs_async_setup
-ffffffc008b5f948 d __setup_lpj_setup
-ffffffc008b5f960 d __setup_early_debug_disable
-ffffffc008b5f978 d __setup_parse_32bit_el0_param
-ffffffc008b5f990 d __setup_parse_kpti
-ffffffc008b5f9a8 d __setup_parse_spectre_v2_param
-ffffffc008b5f9c0 d __setup_parse_spectre_v4_param
-ffffffc008b5f9d8 d __setup_parse_spectre_bhb_param
-ffffffc008b5f9f0 d __setup_parse_no_stealacc
-ffffffc008b5fa08 d __setup_early_disable_dma32
-ffffffc008b5fa20 d __setup_early_mem
-ffffffc008b5fa38 d __setup_ioremap_guard_setup
-ffffffc008b5fa50 d __setup_enable_crash_mem_map
-ffffffc008b5fa68 d __setup_coredump_filter_setup
-ffffffc008b5fa80 d __setup_oops_setup
-ffffffc008b5fa98 d __setup_panic_on_taint_setup
-ffffffc008b5fab0 d __setup_mitigations_parse_cmdline
-ffffffc008b5fac8 d __setup_reserve_setup
-ffffffc008b5fae0 d __setup_strict_iomem
-ffffffc008b5faf8 d __setup_file_caps_disable
-ffffffc008b5fb10 d __setup_setup_print_fatal_signals
-ffffffc008b5fb28 d __setup_reboot_setup
-ffffffc008b5fb40 d __setup_setup_schedstats
-ffffffc008b5fb58 d __setup_setup_resched_latency_warn_ms
-ffffffc008b5fb70 d __setup_setup_sched_thermal_decay_shift
-ffffffc008b5fb88 d __setup_cpu_idle_poll_setup
-ffffffc008b5fba0 d __setup_cpu_idle_nopoll_setup
-ffffffc008b5fbb8 d __setup_sched_debug_setup
-ffffffc008b5fbd0 d __setup_setup_relax_domain_level
-ffffffc008b5fbe8 d __setup_setup_psi
-ffffffc008b5fc00 d __setup_housekeeping_nohz_full_setup
-ffffffc008b5fc18 d __setup_housekeeping_isolcpus_setup
-ffffffc008b5fc30 d __setup_mem_sleep_default_setup
-ffffffc008b5fc48 d __setup_control_devkmsg
-ffffffc008b5fc60 d __setup_log_buf_len_setup
-ffffffc008b5fc78 d __setup_ignore_loglevel_setup
-ffffffc008b5fc90 d __setup_console_msg_format_setup
-ffffffc008b5fca8 d __setup_console_setup
-ffffffc008b5fcc0 d __setup_console_suspend_disable
-ffffffc008b5fcd8 d __setup_keep_bootcon_setup
-ffffffc008b5fcf0 d __setup_irq_affinity_setup
-ffffffc008b5fd08 d __setup_setup_forced_irqthreads
-ffffffc008b5fd20 d __setup_noirqdebug_setup
-ffffffc008b5fd38 d __setup_irqfixup_setup
-ffffffc008b5fd50 d __setup_irqpoll_setup
-ffffffc008b5fd68 d __setup_rcu_nocb_setup
-ffffffc008b5fd80 d __setup_parse_rcu_nocb_poll
-ffffffc008b5fd98 d __setup_setup_io_tlb_npages
-ffffffc008b5fdb0 d __setup_early_coherent_pool
-ffffffc008b5fdc8 d __setup_profile_setup
-ffffffc008b5fde0 d __setup_setup_hrtimer_hres
-ffffffc008b5fdf8 d __setup_ntp_tick_adj_setup
-ffffffc008b5fe10 d __setup_boot_override_clocksource
-ffffffc008b5fe28 d __setup_boot_override_clock
-ffffffc008b5fe40 d __setup_setup_tick_nohz
-ffffffc008b5fe58 d __setup_skew_tick
-ffffffc008b5fe70 d __setup_nosmp
-ffffffc008b5fe88 d __setup_nrcpus
-ffffffc008b5fea0 d __setup_maxcpus
-ffffffc008b5feb8 d __setup_parse_crashkernel_dummy
-ffffffc008b5fed0 d __setup_audit_enable
-ffffffc008b5fee8 d __setup_audit_backlog_limit_set
-ffffffc008b5ff00 d __setup_nowatchdog_setup
-ffffffc008b5ff18 d __setup_nosoftlockup_setup
-ffffffc008b5ff30 d __setup_watchdog_thresh_setup
-ffffffc008b5ff48 d __setup_set_cmdline_ftrace
-ffffffc008b5ff60 d __setup_set_ftrace_dump_on_oops
-ffffffc008b5ff78 d __setup_stop_trace_on_warning
-ffffffc008b5ff90 d __setup_boot_alloc_snapshot
-ffffffc008b5ffa8 d __setup_boot_snapshot
-ffffffc008b5ffc0 d __setup_set_trace_boot_options
-ffffffc008b5ffd8 d __setup_set_trace_boot_clock
-ffffffc008b5fff0 d __setup_set_tracepoint_printk
-ffffffc008b60008 d __setup_set_tracepoint_printk_stop
-ffffffc008b60020 d __setup_set_buf_size
-ffffffc008b60038 d __setup_set_tracing_thresh
-ffffffc008b60050 d __setup_setup_trace_event
-ffffffc008b60068 d __setup_set_mminit_loglevel
-ffffffc008b60080 d __setup_percpu_alloc_setup
-ffffffc008b60098 d __setup_slub_nomerge
-ffffffc008b600b0 d __setup_slub_merge
-ffffffc008b600c8 d __setup_setup_slab_nomerge
-ffffffc008b600e0 d __setup_setup_slab_merge
-ffffffc008b600f8 d __setup_disable_randmaps
-ffffffc008b60110 d __setup_cmdline_parse_stack_guard_gap
-ffffffc008b60128 d __setup_set_nohugeiomap
-ffffffc008b60140 d __setup_set_nohugevmalloc
-ffffffc008b60158 d __setup_early_init_on_alloc
-ffffffc008b60170 d __setup_early_init_on_free
-ffffffc008b60188 d __setup_cmdline_parse_kernelcore
-ffffffc008b601a0 d __setup_cmdline_parse_movablecore
-ffffffc008b601b8 d __setup_early_memblock
-ffffffc008b601d0 d __setup_setup_memhp_default_state
-ffffffc008b601e8 d __setup_cmdline_parse_movable_node
-ffffffc008b60200 d __setup_setup_slub_debug
-ffffffc008b60218 d __setup_setup_slub_min_order
-ffffffc008b60230 d __setup_setup_slub_max_order
-ffffffc008b60248 d __setup_setup_slub_min_objects
-ffffffc008b60260 d __setup_early_kasan_fault
-ffffffc008b60278 d __setup_kasan_set_multi_shot
-ffffffc008b60290 d __setup_early_kasan_flag
-ffffffc008b602a8 d __setup_early_kasan_mode
-ffffffc008b602c0 d __setup_early_kasan_flag_vmalloc
-ffffffc008b602d8 d __setup_early_kasan_flag_page_alloc_sample
-ffffffc008b602f0 d __setup_early_kasan_flag_page_alloc_sample_order
-ffffffc008b60308 d __setup_early_kasan_flag_stacktrace
-ffffffc008b60320 d __setup_early_kasan_flag_stack_ring_size
-ffffffc008b60338 d __setup_setup_transparent_hugepage
-ffffffc008b60350 d __setup_early_page_owner_param
-ffffffc008b60368 d __setup_early_ioremap_debug_setup
-ffffffc008b60380 d __setup_setup_early_page_ext
-ffffffc008b60398 d __setup_parse_hardened_usercopy
-ffffffc008b603b0 d __setup_set_dhash_entries
-ffffffc008b603c8 d __setup_set_ihash_entries
-ffffffc008b603e0 d __setup_set_mhash_entries
-ffffffc008b603f8 d __setup_set_mphash_entries
-ffffffc008b60410 d __setup_debugfs_kernel
-ffffffc008b60428 d __setup_choose_major_lsm
-ffffffc008b60440 d __setup_choose_lsm_order
-ffffffc008b60458 d __setup_enable_debug
-ffffffc008b60470 d __setup_enforcing_setup
-ffffffc008b60488 d __setup_checkreqprot_setup
-ffffffc008b604a0 d __setup_integrity_audit_setup
-ffffffc008b604b8 d __setup_elevator_setup
-ffffffc008b604d0 d __setup_force_gpt_fn
-ffffffc008b604e8 d __setup_dyndbg_setup
-ffffffc008b60500 d __setup_is_stack_depot_disabled
-ffffffc008b60518 d __setup_gicv2_force_probe_cfg
-ffffffc008b60530 d __setup_gicv3_nolpi_cfg
-ffffffc008b60548 d __setup_pcie_port_pm_setup
-ffffffc008b60560 d __setup_pci_setup
-ffffffc008b60578 d __setup_pcie_port_setup
-ffffffc008b60590 d __setup_pcie_aspm_disable
-ffffffc008b605a8 d __setup_pcie_pme_setup
-ffffffc008b605c0 d __setup_clk_ignore_unused_setup
-ffffffc008b605d8 d __setup_sysrq_always_enabled_setup
-ffffffc008b605f0 d __setup_param_setup_earlycon
-ffffffc008b60608 d __setup_parse_trust_cpu
-ffffffc008b60620 d __setup_parse_trust_bootloader
-ffffffc008b60638 d __setup_iommu_set_def_domain_type
-ffffffc008b60650 d __setup_iommu_dma_setup
-ffffffc008b60668 d __setup_iommu_dma_forcedac_setup
-ffffffc008b60680 d __setup_fw_devlink_setup
-ffffffc008b60698 d __setup_fw_devlink_strict_setup
-ffffffc008b606b0 d __setup_deferred_probe_timeout_setup
-ffffffc008b606c8 d __setup_save_async_options
-ffffffc008b606e0 d __setup_ramdisk_size
-ffffffc008b606f8 d __setup_max_loop_setup
-ffffffc008b60710 d __setup_early_evtstrm_cfg
-ffffffc008b60728 d __setup_parse_ras_param
-ffffffc008b60740 d __setup_fb_tunnels_only_for_init_net_sysctl_setup
-ffffffc008b60758 d __setup_set_thash_entries
-ffffffc008b60770 d __setup_set_tcpmhash_entries
-ffffffc008b60788 d __setup_set_uhash_entries
-ffffffc008b607a0 d __setup_debug_boot_weak_hash_enable
-ffffffc008b607b8 d __setup_no_hash_pointers_enable
-ffffffc008b607d0 d __initcall__kmod_ptrace__409_42_trace_init_flags_sys_enterearly
-ffffffc008b607d0 D __initcall_start
-ffffffc008b607d0 D __setup_end
-ffffffc008b607d4 d __initcall__kmod_ptrace__411_66_trace_init_flags_sys_exitearly
-ffffffc008b607d8 d __initcall__kmod_suspend__397_163_cpu_suspend_initearly
-ffffffc008b607dc d __initcall__kmod_mmu__470_1718_prevent_bootmem_remove_initearly
-ffffffc008b607e0 d __initcall__kmod_context__405_422_asids_initearly
-ffffffc008b607e4 d __initcall__kmod_softirq__414_1038_spawn_ksoftirqdearly
-ffffffc008b607e8 d __initcall__kmod_core__697_9776_migration_initearly
-ffffffc008b607ec d __initcall__kmod_srcutree__423_1730_srcu_bootup_announceearly
-ffffffc008b607f0 d __initcall__kmod_tree__609_4466_rcu_spawn_gp_kthreadearly
-ffffffc008b607f4 d __initcall__kmod_tree__626_135_check_cpu_stall_initearly
-ffffffc008b607f8 d __initcall__kmod_tree__714_1025_rcu_sysrq_initearly
-ffffffc008b607fc d __initcall__kmod_stop_machine__382_586_cpu_stop_initearly
-ffffffc008b60800 d __initcall__kmod_trace_printk__395_400_init_trace_printkearly
-ffffffc008b60804 d __initcall__kmod_trace_events__437_3801_event_trace_enable_againearly
-ffffffc008b60808 d __initcall__kmod_irq_work__371_318_irq_work_init_threadsearly
-ffffffc008b6080c d __initcall__kmod_memory__429_164_init_zero_pfnearly
-ffffffc008b60810 d __initcall__kmod_inode__409_140_init_fs_inode_sysctlsearly
-ffffffc008b60814 d __initcall__kmod_locks__434_121_init_fs_locks_sysctlsearly
-ffffffc008b60818 d __initcall__kmod_dynamic_debug__617_1453_dynamic_debug_initearly
-ffffffc008b6081c d __initcall__kmod_irq_gic_v3_its_platform_msi__372_163_its_pmsi_initearly
-ffffffc008b60820 d __initcall__kmod_irq_gic_v3_its_pci_msi__394_202_its_pci_msi_initearly
-ffffffc008b60824 d __initcall__kmod_dummy_timer__370_37_dummy_timer_registerearly
-ffffffc008b60828 D __initcall0_start
-ffffffc008b60828 d __initcall__kmod_min_addr__371_53_init_mmap_min_addr0
-ffffffc008b6082c d __initcall__kmod_pci__398_6907_pci_realloc_setup_params0
-ffffffc008b60830 d __initcall__kmod_inet_fragment__656_216_inet_frag_wq_init0
-ffffffc008b60834 D __initcall1_start
-ffffffc008b60834 d __initcall__kmod_fpsimd__392_2058_fpsimd_init1
-ffffffc008b60838 d __initcall__kmod_process__401_746_tagged_addr_init1
-ffffffc008b6083c d __initcall__kmod_cpufeature__407_3468_enable_mrs_emulation1
-ffffffc008b60840 d __initcall__kmod_topology__341_252_init_amu_fie1
-ffffffc008b60844 d __initcall__kmod_mmu__431_677_map_entry_trampoline1
-ffffffc008b60848 d __initcall__kmod_cpu__431_1624_alloc_frozen_cpus1
-ffffffc008b6084c d __initcall__kmod_cpu__433_1671_cpu_hotplug_pm_sync_init1
-ffffffc008b60850 d __initcall__kmod_workqueue__468_5698_wq_sysfs_init1
-ffffffc008b60854 d __initcall__kmod_ksysfs__388_273_ksysfs_init1
-ffffffc008b60858 d __initcall__kmod_main__414_940_pm_init1
-ffffffc008b6085c d __initcall__kmod_update__479_240_rcu_set_runtime_mode1
-ffffffc008b60860 d __initcall__kmod_jiffies__362_69_init_jiffies_clocksource1
-ffffffc008b60864 d __initcall__kmod_core__418_1153_futex_init1
-ffffffc008b60868 d __initcall__kmod_trace_eprobe__401_1081_trace_events_eprobe_init_early1
-ffffffc008b6086c d __initcall__kmod_trace_events_synth__398_2249_trace_events_synth_init_early1
-ffffffc008b60870 d __initcall__kmod_cpu_pm__331_213_cpu_pm_init1
-ffffffc008b60874 d __initcall__kmod_fsnotify__395_601_fsnotify_init1
-ffffffc008b60878 d __initcall__kmod_locks__454_2939_filelock_init1
-ffffffc008b6087c d __initcall__kmod_binfmt_misc__411_834_init_misc_binfmt1
-ffffffc008b60880 d __initcall__kmod_binfmt_script__331_156_init_script_binfmt1
-ffffffc008b60884 d __initcall__kmod_binfmt_elf__433_2345_init_elf_binfmt1
-ffffffc008b60888 d __initcall__kmod_debugfs__408_906_debugfs_init1
-ffffffc008b6088c d __initcall__kmod_tracefs__390_645_tracefs_init1
-ffffffc008b60890 d __initcall__kmod_inode__405_350_securityfs_init1
-ffffffc008b60894 d __initcall__kmod_virtio__383_568_virtio_init1
-ffffffc008b60898 d __initcall__kmod_iommu__418_2590_iommu_init1
-ffffffc008b6089c d __initcall__kmod_component__339_118_component_debug_init1
-ffffffc008b608a0 d __initcall__kmod_soc__339_192_soc_bus_register1
-ffffffc008b608a4 d __initcall__kmod_arch_topology__416_479_free_raw_capacity1
-ffffffc008b608a8 d __initcall__kmod_socket__697_3209_sock_init1
-ffffffc008b608ac d __initcall__kmod_sock__812_3772_net_inuse_init1
-ffffffc008b608b0 d __initcall__kmod_net_namespace__580_385_net_defaults_init1
-ffffffc008b608b4 d __initcall__kmod_flow_dissector__759_1961_init_default_flow_dissectors1
-ffffffc008b608b8 d __initcall__kmod_af_netlink__724_2962_netlink_proto_init1
-ffffffc008b608bc d __initcall__kmod_genetlink__583_1498_genl_init1
-ffffffc008b608c0 D __initcall2_start
-ffffffc008b608c0 d __initcall__kmod_debug_monitors__398_139_debug_monitors_init2
-ffffffc008b608c4 d __initcall__kmod_irqdesc__371_334_irq_sysfs_init2
-ffffffc008b608c8 d __initcall__kmod_pool__392_222_dma_atomic_pool_init2
-ffffffc008b608cc d __initcall__kmod_audit__602_1712_audit_init2
-ffffffc008b608d0 d __initcall__kmod_tracepoint__340_140_release_early_probes2
-ffffffc008b608d4 d __initcall__kmod_backing_dev__423_232_bdi_class_init2
-ffffffc008b608d8 d __initcall__kmod_mm_init__424_206_mm_sysfs_init2
-ffffffc008b608dc d __initcall__kmod_page_alloc__592_8942_init_per_zone_wmark_min2
-ffffffc008b608e0 d __initcall__kmod_probe__385_109_pcibus_class_init2
-ffffffc008b608e4 d __initcall__kmod_pci_driver__412_1726_pci_driver_init2
-ffffffc008b608e8 d __initcall__kmod_bus__410_462_amba_init2
-ffffffc008b608ec d __initcall__kmod_tty_io__401_3518_tty_class_init2
-ffffffc008b608f0 d __initcall__kmod_vt__419_4325_vtconsole_class_init2
-ffffffc008b608f4 d __initcall__kmod_iommu_sysfs__380_47_iommu_dev_init2
-ffffffc008b608f8 d __initcall__kmod_core__494_700_devlink_class_init2
-ffffffc008b608fc d __initcall__kmod_swnode__341_1167_software_node_init2
-ffffffc008b60900 d __initcall__kmod_wakeup__426_1240_wakeup_sources_debugfs_init2
-ffffffc008b60904 d __initcall__kmod_wakeup_stats__339_217_wakeup_sources_sysfs_init2
-ffffffc008b60908 d __initcall__kmod_regmap__445_3513_regmap_initcall2
-ffffffc008b6090c d __initcall__kmod_syscon__370_329_syscon_init2
-ffffffc008b60910 d __initcall__kmod_kobject_uevent__575_814_kobject_uevent_init2
-ffffffc008b60914 D __initcall3_start
-ffffffc008b60914 d __initcall__kmod_setup__401_283_reserve_memblock_reserved_regions3
-ffffffc008b60918 d __initcall__kmod_vdso__399_461_vdso_init3
-ffffffc008b6091c d __initcall__kmod_hw_breakpoint__394_1018_arch_hw_breakpoint_init3
-ffffffc008b60920 d __initcall__kmod_mmap__371_78_adjust_protection_map3
-ffffffc008b60924 d __initcall__kmod_context__403_399_asids_update_limit3
-ffffffc008b60928 d __initcall__kmod_cryptomgr__474_257_cryptomgr_init3
-ffffffc008b6092c d __initcall__kmod_dma_iommu__405_1712_iommu_dma_init3
-ffffffc008b60930 d __initcall__kmod_platform__409_604_of_platform_default_populate_init3s
-ffffffc008b60934 D __initcall4_start
-ffffffc008b60934 d __initcall__kmod_setup__403_408_topology_init4
-ffffffc008b60938 d __initcall__kmod_kaslr__299_93_kaslr_init4
-ffffffc008b6093c d __initcall__kmod_mte__433_605_register_mte_tcf_preferred_sysctl4
-ffffffc008b60940 d __initcall__kmod_user__372_257_uid_cache_init4
-ffffffc008b60944 d __initcall__kmod_params__380_974_param_sysfs_init4
-ffffffc008b60948 d __initcall__kmod_ucount__310_376_user_namespace_sysctl_init4
-ffffffc008b6094c d __initcall__kmod_build_utility__442_231_proc_schedstat_init4
-ffffffc008b60950 d __initcall__kmod_poweroff__207_45_pm_sysrq_init4
-ffffffc008b60954 d __initcall__kmod_profile__412_553_create_proc_profile4
-ffffffc008b60958 d __initcall__kmod_crash_core__379_514_crash_save_vmcoreinfo_init4
-ffffffc008b6095c d __initcall__kmod_kexec_core__427_1128_crash_notes_memory_init4
-ffffffc008b60960 d __initcall__kmod_hung_task__415_406_hung_task_init4
-ffffffc008b60964 d __initcall__kmod_trace__435_9737_trace_eval_init4
-ffffffc008b60968 d __initcall__kmod_oom_kill__451_741_oom_init4
-ffffffc008b6096c d __initcall__kmod_backing_dev__425_242_default_bdi_init4
-ffffffc008b60970 d __initcall__kmod_percpu__460_3463_percpu_enable_async4
-ffffffc008b60974 d __initcall__kmod_compaction__514_3091_kcompactd_init4
-ffffffc008b60978 d __initcall__kmod_mmap__457_3678_init_user_reserve4
-ffffffc008b6097c d __initcall__kmod_mmap__461_3699_init_admin_reserve4
-ffffffc008b60980 d __initcall__kmod_mmap__463_3769_init_reserve_notifier4
-ffffffc008b60984 d __initcall__kmod_swap_state__444_909_swap_init_sysfs4
-ffffffc008b60988 d __initcall__kmod_swapfile__485_3687_swapfile_init4
-ffffffc008b6098c d __initcall__kmod_huge_memory__451_521_hugepage_init4
-ffffffc008b60990 d __initcall__kmod_seqiv__402_183_seqiv_module_init4
-ffffffc008b60994 d __initcall__kmod_echainiv__402_160_echainiv_module_init4
-ffffffc008b60998 d __initcall__kmod_hmac__402_258_hmac_module_init4
-ffffffc008b6099c d __initcall__kmod_xcbc__331_270_crypto_xcbc_module_init4
-ffffffc008b609a0 d __initcall__kmod_crypto_null__386_221_crypto_null_mod_init4
-ffffffc008b609a4 d __initcall__kmod_md5__331_245_md5_mod_init4
-ffffffc008b609a8 d __initcall__kmod_sha1_generic__380_89_sha1_generic_mod_init4
-ffffffc008b609ac d __initcall__kmod_sha256_generic__380_101_sha256_generic_mod_init4
-ffffffc008b609b0 d __initcall__kmod_sha512_generic__380_218_sha512_generic_mod_init4
-ffffffc008b609b4 d __initcall__kmod_blake2b_generic__331_174_blake2b_mod_init4
-ffffffc008b609b8 d __initcall__kmod_cbc__331_218_crypto_cbc_module_init4
-ffffffc008b609bc d __initcall__kmod_ctr__333_355_crypto_ctr_module_init4
-ffffffc008b609c0 d __initcall__kmod_xctr__331_185_crypto_xctr_module_init4
-ffffffc008b609c4 d __initcall__kmod_hctr2__407_575_hctr2_module_init4
-ffffffc008b609c8 d __initcall__kmod_adiantum__411_613_adiantum_module_init4
-ffffffc008b609cc d __initcall__kmod_nhpoly1305__340_248_nhpoly1305_mod_init4
-ffffffc008b609d0 d __initcall__kmod_gcm__404_1159_crypto_gcm_module_init4
-ffffffc008b609d4 d __initcall__kmod_chacha20poly1305__404_671_chacha20poly1305_module_init4
-ffffffc008b609d8 d __initcall__kmod_des_generic__331_125_des_generic_mod_init4
-ffffffc008b609dc d __initcall__kmod_aes_generic__331_1314_aes_init4
-ffffffc008b609e0 d __initcall__kmod_chacha_generic__331_128_chacha_generic_mod_init4
-ffffffc008b609e4 d __initcall__kmod_poly1305_generic__333_142_poly1305_mod_init4
-ffffffc008b609e8 d __initcall__kmod_deflate__384_334_deflate_mod_init4
-ffffffc008b609ec d __initcall__kmod_crc32c_generic__331_161_crc32c_mod_init4
-ffffffc008b609f0 d __initcall__kmod_authenc__478_464_crypto_authenc_module_init4
-ffffffc008b609f4 d __initcall__kmod_authencesn__477_479_crypto_authenc_esn_module_init4
-ffffffc008b609f8 d __initcall__kmod_lzo__380_158_lzo_mod_init4
-ffffffc008b609fc d __initcall__kmod_lzo_rle__380_158_lzorle_mod_init4
-ffffffc008b60a00 d __initcall__kmod_lz4__359_155_lz4_mod_init4
-ffffffc008b60a04 d __initcall__kmod_ansi_cprng__337_470_prng_mod_init4
-ffffffc008b60a08 d __initcall__kmod_drbg__396_2148_drbg_init4
-ffffffc008b60a0c d __initcall__kmod_ghash_generic__334_178_ghash_mod_init4
-ffffffc008b60a10 d __initcall__kmod_polyval_generic__334_239_polyval_mod_init4
-ffffffc008b60a14 d __initcall__kmod_zstd__384_253_zstd_mod_init4
-ffffffc008b60a18 d __initcall__kmod_essiv__403_646_essiv_module_init4
-ffffffc008b60a1c d __initcall__kmod_bio__463_1762_init_bio4
-ffffffc008b60a20 d __initcall__kmod_blk_ioc__443_457_blk_ioc_init4
-ffffffc008b60a24 d __initcall__kmod_blk_mq__461_4953_blk_mq_init4
-ffffffc008b60a28 d __initcall__kmod_genhd__435_923_genhd_device_init4
-ffffffc008b60a2c d __initcall__kmod_blk_crypto__434_99_bio_crypt_ctx_init4
-ffffffc008b60a30 d __initcall__kmod_blk_crypto_sysfs__432_173_blk_crypto_sysfs_init4
-ffffffc008b60a34 d __initcall__kmod_io_wq__463_1417_io_wq_init4
-ffffffc008b60a38 d __initcall__kmod_sg_pool__371_180_sg_pool_init4
-ffffffc008b60a3c d __initcall__kmod_slot__384_381_pci_slot_init4
-ffffffc008b60a40 d __initcall__kmod_misc__380_293_misc_init4
-ffffffc008b60a44 d __initcall__kmod_iommu__412_195_iommu_subsys_init4
-ffffffc008b60a48 d __initcall__kmod_arch_topology__412_250_register_cpu_capacity_sysctl4
-ffffffc008b60a4c d __initcall__kmod_dma_buf__389_1667_dma_buf_init4
-ffffffc008b60a50 d __initcall__kmod_dma_heap__404_470_dma_heap_init4
-ffffffc008b60a54 d __initcall__kmod_serio__374_1048_serio_init4
-ffffffc008b60a58 d __initcall__kmod_input_core__399_2695_input_init4
-ffffffc008b60a5c d __initcall__kmod_rtc_core__370_487_rtc_init4
-ffffffc008b60a60 d __initcall__kmod_power_supply__339_1560_power_supply_class_init4
-ffffffc008b60a64 d __initcall__kmod_edac_core__384_163_edac_init4
-ffffffc008b60a68 d __initcall__kmod_scmi_module__517_2672_scmi_driver_init4
-ffffffc008b60a6c d __initcall__kmod_arm_pmu__389_977_arm_pmu_hp_init4
-ffffffc008b60a70 d __initcall__kmod_ras__412_38_ras_init4
-ffffffc008b60a74 d __initcall__kmod_sock__816_4089_proto_init4
-ffffffc008b60a78 d __initcall__kmod_dev__948_11438_net_dev_init4
-ffffffc008b60a7c d __initcall__kmod_neighbour__670_3906_neigh_init4
-ffffffc008b60a80 d __initcall__kmod_fib_notifier__481_199_fib_notifier_init4
-ffffffc008b60a84 d __initcall__kmod_fib_rules__699_1319_fib_rules_init4
-ffffffc008b60a88 d __initcall__kmod_ethtool_nl__577_1077_ethnl_init4
-ffffffc008b60a8c d __initcall__kmod_nexthop__751_3789_nexthop_init4
-ffffffc008b60a90 d __initcall__kmod_vsprintf__622_777_vsprintf_init_hashval4
-ffffffc008b60a94 d __initcall__kmod_cpufeature__405_3360_init_32bit_el0_mask4s
-ffffffc008b60a98 d __initcall__kmod_vgaarb__386_1564_vga_arb_device_init4s
-ffffffc008b60a9c d __initcall__kmod_watchdog__425_479_watchdog_init4s
-ffffffc008b60aa0 D __initcall5_start
-ffffffc008b60aa0 d __initcall__kmod_debug_monitors__396_63_create_debug_debugfs_entry5
-ffffffc008b60aa4 d __initcall__kmod_resource__389_2015_iomem_init_inode5
-ffffffc008b60aa8 d __initcall__kmod_clocksource__372_1057_clocksource_done_booting5
-ffffffc008b60aac d __initcall__kmod_trace__439_9882_tracer_init_tracefs5
-ffffffc008b60ab0 d __initcall__kmod_trace_printk__393_393_init_trace_printk_function_export5
-ffffffc008b60ab4 d __initcall__kmod_trace_events_synth__400_2273_trace_events_synth_init5
-ffffffc008b60ab8 d __initcall__kmod_trace_dynevent__393_271_init_dynamic_event5
-ffffffc008b60abc d __initcall__kmod_trace_uprobe__623_1667_init_uprobe_trace5
-ffffffc008b60ac0 d __initcall__kmod_secretmem__414_293_secretmem_init5
-ffffffc008b60ac4 d __initcall__kmod_file_table__416_130_init_fs_stat_sysctls5
-ffffffc008b60ac8 d __initcall__kmod_exec__446_2157_init_fs_exec_sysctls5
-ffffffc008b60acc d __initcall__kmod_pipe__426_1511_init_pipe_fs5
-ffffffc008b60ad0 d __initcall__kmod_namei__442_1076_init_fs_namei_sysctls5
-ffffffc008b60ad4 d __initcall__kmod_dcache__380_202_init_fs_dcache_sysctls5
-ffffffc008b60ad8 d __initcall__kmod_namespace__428_4719_init_fs_namespace_sysctls5
-ffffffc008b60adc d __initcall__kmod_inotify_user__435_891_inotify_user_setup5
-ffffffc008b60ae0 d __initcall__kmod_eventpoll__664_2419_eventpoll_init5
-ffffffc008b60ae4 d __initcall__kmod_anon_inodes__380_270_anon_inode_init5
-ffffffc008b60ae8 d __initcall__kmod_locks__452_2916_proc_locks_init5
-ffffffc008b60aec d __initcall__kmod_coredump__426_985_init_fs_coredump_sysctls5
-ffffffc008b60af0 d __initcall__kmod_iomap__447_1553_iomap_init5
-ffffffc008b60af4 d __initcall__kmod_proc__322_19_proc_cmdline_init5
-ffffffc008b60af8 d __initcall__kmod_proc__339_98_proc_consoles_init5
-ffffffc008b60afc d __initcall__kmod_proc__339_28_proc_cpuinfo_init5
-ffffffc008b60b00 d __initcall__kmod_proc__420_64_proc_devices_init5
-ffffffc008b60b04 d __initcall__kmod_proc__356_42_proc_interrupts_init5
-ffffffc008b60b08 d __initcall__kmod_proc__373_37_proc_loadavg_init5
-ffffffc008b60b0c d __initcall__kmod_proc__408_173_proc_meminfo_init5
-ffffffc008b60b10 d __initcall__kmod_proc__359_242_proc_stat_init5
-ffffffc008b60b14 d __initcall__kmod_proc__356_49_proc_uptime_init5
-ffffffc008b60b18 d __initcall__kmod_proc__322_27_proc_version_init5
-ffffffc008b60b1c d __initcall__kmod_proc__356_37_proc_softirqs_init5
-ffffffc008b60b20 d __initcall__kmod_proc__353_63_proc_kmsg_init5
-ffffffc008b60b24 d __initcall__kmod_proc__414_342_proc_page_init5
-ffffffc008b60b28 d __initcall__kmod_proc__322_96_proc_boot_config_init5
-ffffffc008b60b2c d __initcall__kmod_ramfs__405_299_init_ramfs_fs5
-ffffffc008b60b30 d __initcall__kmod_dynamic_debug__619_1456_dynamic_debug_init_control5
-ffffffc008b60b34 d __initcall__kmod_mem__415_787_chr_dev_init5
-ffffffc008b60b38 d __initcall__kmod_rng_core__343_718_hwrng_modinit5
-ffffffc008b60b3c d __initcall__kmod_firmware_class__416_1659_firmware_class_init5
-ffffffc008b60b40 d __initcall__kmod_sysctl_net_core__681_687_sysctl_core_init5
-ffffffc008b60b44 d __initcall__kmod_eth__657_492_eth_offload_init5
-ffffffc008b60b48 d __initcall__kmod_af_inet__807_1923_ipv4_offload_init5
-ffffffc008b60b4c d __initcall__kmod_af_inet__810_2056_inet_init5
-ffffffc008b60b50 d __initcall__kmod_unix__652_3782_af_unix_init5
-ffffffc008b60b54 d __initcall__kmod_ip6_offload__715_488_ipv6_offload_init5
-ffffffc008b60b58 d __initcall__kmod_quirks__412_195_pci_apply_final_quirks5s
-ffffffc008b60b5c d __initcall__kmod_initramfs__395_762_populate_rootfsrootfs
-ffffffc008b60b5c D __initcallrootfs_start
-ffffffc008b60b60 D __initcall6_start
-ffffffc008b60b60 d __initcall__kmod_setup__405_442_register_arm64_panic_block6
-ffffffc008b60b64 d __initcall__kmod_cpuinfo__341_359_cpuinfo_regs_init6
-ffffffc008b60b68 d __initcall__kmod_cpufeature__403_1486_aarch32_el0_sysfs_init6
-ffffffc008b60b6c d __initcall__kmod_perf_event__418_1398_armv8_pmu_driver_init6
-ffffffc008b60b70 d __initcall__kmod_uprobes__402_208_arch_init_uprobes6
-ffffffc008b60b74 d __initcall__kmod_exec_domain__392_35_proc_execdomains_init6
-ffffffc008b60b78 d __initcall__kmod_panic__399_746_register_warn_debugfs6
-ffffffc008b60b7c d __initcall__kmod_cpu__435_2600_cpuhp_sysfs_init6
-ffffffc008b60b80 d __initcall__kmod_resource__380_149_ioresources_init6
-ffffffc008b60b84 d __initcall__kmod_build_utility__512_1575_psi_proc_init6
-ffffffc008b60b88 d __initcall__kmod_pm__408_248_irq_pm_init_ops6
-ffffffc008b60b8c d __initcall__kmod_timer__450_276_timer_sysctl_init6
-ffffffc008b60b90 d __initcall__kmod_timekeeping__387_1928_timekeeping_init_ops6
-ffffffc008b60b94 d __initcall__kmod_clocksource__378_1458_init_clocksource_sysfs6
-ffffffc008b60b98 d __initcall__kmod_timer_list__380_359_init_timer_list_procfs6
-ffffffc008b60b9c d __initcall__kmod_alarmtimer__406_964_alarmtimer_init6
-ffffffc008b60ba0 d __initcall__kmod_posix_timers__396_280_init_posix_timers6
-ffffffc008b60ba4 d __initcall__kmod_clockevents__374_777_clockevents_init_sysfs6
-ffffffc008b60ba8 d __initcall__kmod_sched_clock__371_299_sched_clock_syscore_init6
-ffffffc008b60bac d __initcall__kmod_kallsyms__512_961_kallsyms_init6
-ffffffc008b60bb0 d __initcall__kmod_configs__331_75_ikconfig_init6
-ffffffc008b60bb4 d __initcall__kmod_kheaders__331_61_ikheaders_init6
-ffffffc008b60bb8 d __initcall__kmod_audit_watch__433_503_audit_watch_init6
-ffffffc008b60bbc d __initcall__kmod_audit_fsnotify__433_193_audit_fsnotify_init6
-ffffffc008b60bc0 d __initcall__kmod_audit_tree__438_1086_audit_tree_init6
-ffffffc008b60bc4 d __initcall__kmod_seccomp__526_2406_seccomp_sysctl_init6
-ffffffc008b60bc8 d __initcall__kmod_utsname_sysctl__256_154_utsname_sysctl_init6
-ffffffc008b60bcc d __initcall__kmod_core__676_13622_perf_event_sysfs_init6
-ffffffc008b60bd0 d __initcall__kmod_vmscan__660_7858_kswapd_init6
-ffffffc008b60bd4 d __initcall__kmod_vmstat__431_2248_extfrag_debug_init6
-ffffffc008b60bd8 d __initcall__kmod_mm_init__422_194_mm_compute_batch_init6
-ffffffc008b60bdc d __initcall__kmod_slab_common__451_1324_slab_proc_init6
-ffffffc008b60be0 d __initcall__kmod_workingset__442_748_workingset_init6
-ffffffc008b60be4 d __initcall__kmod_vmalloc__454_4201_proc_vmalloc_init6
-ffffffc008b60be8 d __initcall__kmod_memblock__447_2177_memblock_init_debugfs6
-ffffffc008b60bec d __initcall__kmod_swapfile__459_2688_procswaps_init6
-ffffffc008b60bf0 d __initcall__kmod_slub__448_6078_slab_sysfs_init6
-ffffffc008b60bf4 d __initcall__kmod_slub__451_6293_slab_debugfs_init6
-ffffffc008b60bf8 d __initcall__kmod_zsmalloc__431_2366_zs_init6
-ffffffc008b60bfc d __initcall__kmod_fcntl__416_1041_fcntl_init6
-ffffffc008b60c00 d __initcall__kmod_filesystems__392_258_proc_filesystems_init6
-ffffffc008b60c04 d __initcall__kmod_fs_writeback__524_2339_start_dirtytime_writeback6
-ffffffc008b60c08 d __initcall__kmod_direct_io__424_1346_dio_init6
-ffffffc008b60c0c d __initcall__kmod_userfaultfd__450_2196_userfaultfd_init6
-ffffffc008b60c10 d __initcall__kmod_aio__429_307_aio_setup6
-ffffffc008b60c14 d __initcall__kmod_mbcache__331_440_mbcache_init6
-ffffffc008b60c18 d __initcall__kmod_devpts__389_637_init_devpts_fs6
-ffffffc008b60c1c d __initcall__kmod_ext4__838_7312_ext4_init_fs6
-ffffffc008b60c20 d __initcall__kmod_jbd2__498_3198_journal_init6
-ffffffc008b60c24 d __initcall__kmod_fuse__551_2237_fuse_init6
-ffffffc008b60c28 d __initcall__kmod_erofs__478_1121_erofs_module_init6
-ffffffc008b60c2c d __initcall__kmod_selinux__633_2251_init_sel_fs6
-ffffffc008b60c30 d __initcall__kmod_selinux__446_121_selnl_init6
-ffffffc008b60c34 d __initcall__kmod_selinux__632_279_sel_netif_init6
-ffffffc008b60c38 d __initcall__kmod_selinux__633_305_sel_netnode_init6
-ffffffc008b60c3c d __initcall__kmod_selinux__633_238_sel_netport_init6
-ffffffc008b60c40 d __initcall__kmod_selinux__708_3831_aurule_init6
-ffffffc008b60c44 d __initcall__kmod_jitterentropy_rng__331_211_jent_mod_init6
-ffffffc008b60c48 d __initcall__kmod_fops__446_712_blkdev_init6
-ffffffc008b60c4c d __initcall__kmod_genhd__437_1335_proc_genhd_init6
-ffffffc008b60c50 d __initcall__kmod_mq_deadline__441_1242_deadline_init6
-ffffffc008b60c54 d __initcall__kmod_kyber_iosched__461_1051_kyber_init6
-ffffffc008b60c58 d __initcall__kmod_bfq__513_7527_bfq_init6
-ffffffc008b60c5c d __initcall__kmod_io_uring__827_4146_io_uring_init6
-ffffffc008b60c60 d __initcall__kmod_libblake2s__331_69_blake2s_mod_init6
-ffffffc008b60c64 d __initcall__kmod_libcrc32c__331_74_libcrc32c_mod_init6
-ffffffc008b60c68 d __initcall__kmod_percpu_counter__341_257_percpu_counter_startup6
-ffffffc008b60c6c d __initcall__kmod_audit__379_89_audit_classes_init6
-ffffffc008b60c70 d __initcall__kmod_simple_pm_bus__340_91_simple_pm_bus_driver_init6
-ffffffc008b60c74 d __initcall__kmod_pcieportdrv__385_252_pcie_portdrv_init6
-ffffffc008b60c78 d __initcall__kmod_proc__394_472_pci_proc_init6
-ffffffc008b60c7c d __initcall__kmod_pci_epc_core__384_849_pci_epc_init6
-ffffffc008b60c80 d __initcall__kmod_pci_epf_core__384_561_pci_epf_init6
-ffffffc008b60c84 d __initcall__kmod_pci_host_generic__384_87_gen_pci_driver_init6
-ffffffc008b60c88 d __initcall__kmod_pcie_designware_plat__384_187_dw_plat_pcie_driver_init6
-ffffffc008b60c8c d __initcall__kmod_pcie_kirin__412_829_kirin_pcie_driver_init6
-ffffffc008b60c90 d __initcall__kmod_clk_fixed_factor__339_341_of_fixed_factor_clk_driver_init6
-ffffffc008b60c94 d __initcall__kmod_clk_fixed_rate__370_239_of_fixed_clk_driver_init6
-ffffffc008b60c98 d __initcall__kmod_clk_gpio__339_249_gpio_clk_driver_init6
-ffffffc008b60c9c d __initcall__kmod_virtio_pci__410_647_virtio_pci_driver_init6
-ffffffc008b60ca0 d __initcall__kmod_virtio_balloon__420_1128_virtio_balloon_driver_init6
-ffffffc008b60ca4 d __initcall__kmod_n_null__380_63_n_null_init6
-ffffffc008b60ca8 d __initcall__kmod_pty__387_947_pty_init6
-ffffffc008b60cac d __initcall__kmod_sysrq__415_1202_sysrq_init6
-ffffffc008b60cb0 d __initcall__kmod_8250__388_1249_serial8250_init6
-ffffffc008b60cb4 d __initcall__kmod_8250_pericom__391_211_pericom8250_pci_driver_init6
-ffffffc008b60cb8 d __initcall__kmod_8250_of__386_353_of_platform_serial_driver_init6
-ffffffc008b60cbc d __initcall__kmod_ttynull__380_106_ttynull_init6
-ffffffc008b60cc0 d __initcall__kmod_random__471_1642_random_sysctls_init6
-ffffffc008b60cc4 d __initcall__kmod_virtio_console__419_2293_virtio_console_init6
-ffffffc008b60cc8 d __initcall__kmod_cctrng__397_709_cctrng_mod_init6
-ffffffc008b60ccc d __initcall__kmod_arm_smccc_trng__347_119_smccc_trng_driver_init6
-ffffffc008b60cd0 d __initcall__kmod_cn10k_rng__384_181_cn10k_rng_driver_init6
-ffffffc008b60cd4 d __initcall__kmod_topology__380_194_topology_sysfs_init6
-ffffffc008b60cd8 d __initcall__kmod_cacheinfo__339_723_cacheinfo_sysfs_init6
-ffffffc008b60cdc d __initcall__kmod_brd__447_528_brd_init6
-ffffffc008b60ce0 d __initcall__kmod_loop__457_2273_loop_init6
-ffffffc008b60ce4 d __initcall__kmod_virtio_blk__456_1307_virtio_blk_init6
-ffffffc008b60ce8 d __initcall__kmod_zram__438_2162_zram_init6
-ffffffc008b60cec d __initcall__kmod_open_dice__380_204_open_dice_init6
-ffffffc008b60cf0 d __initcall__kmod_vcpu_stall_detector__370_219_vcpu_stall_detect_driver_init6
-ffffffc008b60cf4 d __initcall__kmod_loopback__611_280_blackhole_netdev_init6
-ffffffc008b60cf8 d __initcall__kmod_uio__383_1086_uio_init6
-ffffffc008b60cfc d __initcall__kmod_serport__388_308_serport_init6
-ffffffc008b60d00 d __initcall__kmod_rtc_pl030__407_170_pl030_driver_init6
-ffffffc008b60d04 d __initcall__kmod_rtc_pl031__407_466_pl031_driver_init6
-ffffffc008b60d08 d __initcall__kmod_syscon_reboot__370_100_syscon_reboot_driver_init6
-ffffffc008b60d0c d __initcall__kmod_dm_mod__454_3395_dm_init6
-ffffffc008b60d10 d __initcall__kmod_dm_bufio__433_2145_dm_bufio_init6
-ffffffc008b60d14 d __initcall__kmod_dm_crypt__538_3674_dm_crypt_init6
-ffffffc008b60d18 d __initcall__kmod_dm_verity__433_1515_dm_verity_init6
-ffffffc008b60d1c d __initcall__kmod_dm_user__438_1282_dm_user_init6
-ffffffc008b60d20 d __initcall__kmod_smccc__339_61_smccc_devices_init6
-ffffffc008b60d24 d __initcall__kmod_soc_id__354_106_smccc_soc_init6
-ffffffc008b60d28 d __initcall__kmod_sock_diag__633_340_sock_diag_init6
-ffffffc008b60d2c d __initcall__kmod_gre_offload__694_286_gre_offload_init6
-ffffffc008b60d30 d __initcall__kmod_sysctl_net_ipv4__705_1470_sysctl_ipv4_init6
-ffffffc008b60d34 d __initcall__kmod_ipip__696_658_ipip_init6
-ffffffc008b60d38 d __initcall__kmod_gre__698_216_gre_init6
-ffffffc008b60d3c d __initcall__kmod_ip_gre__702_1789_ipgre_init6
-ffffffc008b60d40 d __initcall__kmod_ip_vti__694_722_vti_init6
-ffffffc008b60d44 d __initcall__kmod_esp4__725_1246_esp4_init6
-ffffffc008b60d48 d __initcall__kmod_tunnel4__645_295_tunnel4_init6
-ffffffc008b60d4c d __initcall__kmod_inet_diag__715_1481_inet_diag_init6
-ffffffc008b60d50 d __initcall__kmod_tcp_diag__708_247_tcp_diag_init6
-ffffffc008b60d54 d __initcall__kmod_udp_diag__616_296_udp_diag_init6
-ffffffc008b60d58 d __initcall__kmod_tcp_cubic__731_551_cubictcp_register6
-ffffffc008b60d5c d __initcall__kmod_xfrm_user__636_3816_xfrm_user_init6
-ffffffc008b60d60 d __initcall__kmod_xfrm_interface__793_1192_xfrmi_init6
-ffffffc008b60d64 d __initcall__kmod_ipv6__805_1328_inet6_init6
-ffffffc008b60d68 d __initcall__kmod_esp6__785_1299_esp6_init6
-ffffffc008b60d6c d __initcall__kmod_ipcomp6__686_216_ipcomp6_init6
-ffffffc008b60d70 d __initcall__kmod_xfrm6_tunnel__633_402_xfrm6_tunnel_init6
-ffffffc008b60d74 d __initcall__kmod_tunnel6__657_303_tunnel6_init6
-ffffffc008b60d78 d __initcall__kmod_mip6__628_405_mip6_init6
-ffffffc008b60d7c d __initcall__kmod_ip6_vti__811_1329_vti6_tunnel_init6
-ffffffc008b60d80 d __initcall__kmod_sit__736_1955_sit_init6
-ffffffc008b60d84 d __initcall__kmod_ip6_tunnel__831_2366_ip6_tunnel_init6
-ffffffc008b60d88 d __initcall__kmod_ip6_gre__743_2424_ip6gre_init6
-ffffffc008b60d8c d __initcall__kmod_af_packet__741_4761_packet_init6
-ffffffc008b60d90 d __initcall__kmod_af_key__639_3923_ipsec_pfkey_init6
-ffffffc008b60d94 d __initcall__kmod_vsock__580_2450_vsock_init6
-ffffffc008b60d98 d __initcall__kmod_vsock_diag__575_174_vsock_diag_init6
-ffffffc008b60d9c d __initcall__kmod_vmw_vsock_virtio_transport__594_845_virtio_vsock_init6
-ffffffc008b60da0 d __initcall__kmod_vsock_loopback__578_187_vsock_loopback_init6
-ffffffc008b60da4 D __initcall7_start
-ffffffc008b60da4 d __initcall__kmod_mounts__425_40_kernel_do_mounts_initrd_sysctls_init7
-ffffffc008b60da8 d __initcall__kmod_panic__393_109_kernel_panic_sysctls_init7
-ffffffc008b60dac d __initcall__kmod_panic__395_128_kernel_panic_sysfs_init7
-ffffffc008b60db0 d __initcall__kmod_exit__465_100_kernel_exit_sysctls_init7
-ffffffc008b60db4 d __initcall__kmod_exit__467_119_kernel_exit_sysfs_init7
-ffffffc008b60db8 d __initcall__kmod_reboot__411_1310_reboot_ksysfs_init7
-ffffffc008b60dbc d __initcall__kmod_core__651_4682_sched_core_sysctl_init7
-ffffffc008b60dc0 d __initcall__kmod_fair__435_213_sched_fair_sysctl_init7
-ffffffc008b60dc4 d __initcall__kmod_build_policy__437_65_sched_rt_sysctl_init7
-ffffffc008b60dc8 d __initcall__kmod_build_policy__455_534_sched_pelt_sysctl_init7
-ffffffc008b60dcc d __initcall__kmod_build_policy__463_52_sched_dl_sysctl_init7
-ffffffc008b60dd0 d __initcall__kmod_build_utility__431_345_sched_init_debug7
-ffffffc008b60dd4 d __initcall__kmod_main__412_467_pm_debugfs_init7
-ffffffc008b60dd8 d __initcall__kmod_wakeup_reason__407_438_wakeup_reason_init7
-ffffffc008b60ddc d __initcall__kmod_printk__409_3362_printk_late_init7
-ffffffc008b60de0 d __initcall__kmod_swiotlb__421_946_swiotlb_create_default_debugfs7
-ffffffc008b60de4 d __initcall__kmod_timekeeping_debug__407_44_tk_debug_sleep_time_init7
-ffffffc008b60de8 d __initcall__kmod_kexec_core__422_952_kexec_core_sysctl_init7
-ffffffc008b60dec d __initcall__kmod_vmscan__627_6167_init_lru_gen7
-ffffffc008b60df0 d __initcall__kmod_memory__447_4481_fault_around_debugfs7
-ffffffc008b60df4 d __initcall__kmod_swapfile__462_2697_max_swapfiles_check7
-ffffffc008b60df8 d __initcall__kmod_huge_memory__465_3193_split_huge_pages_debugfs7
-ffffffc008b60dfc d __initcall__kmod_page_owner__421_745_pageowner_init7
-ffffffc008b60e00 d __initcall__kmod_early_ioremap__407_99_check_early_ioremap_leak7
-ffffffc008b60e04 d __initcall__kmod_usercopy__405_276_set_hardened_usercopy7
-ffffffc008b60e08 d __initcall__kmod_integrity__379_232_integrity_fs_init7
-ffffffc008b60e0c d __initcall__kmod_crypto_algapi__475_1311_crypto_algapi_init7
-ffffffc008b60e10 d __initcall__kmod_blk_timeout__434_99_blk_timeout_init7
-ffffffc008b60e14 d __initcall__kmod_pci__396_6732_pci_resource_alignment_sysfs_init7
-ffffffc008b60e18 d __initcall__kmod_pci_sysfs__385_1530_pci_sysfs_init7
-ffffffc008b60e1c d __initcall__kmod_clk__464_3662_clk_debug_init7
-ffffffc008b60e20 d __initcall__kmod_core__499_1269_sync_state_resume_initcall7
-ffffffc008b60e24 d __initcall__kmod_dd__383_371_deferred_probe_initcall7
-ffffffc008b60e28 d __initcall__kmod_dm_mod__420_300_dm_init_init7
-ffffffc008b60e2c d __initcall__kmod_psci__407_454_psci_debugfs_init7
-ffffffc008b60e30 d __initcall__kmod_fdt__393_1416_of_fdt_raw_init7
-ffffffc008b60e34 d __initcall__kmod_tcp_cong__707_266_tcp_congestion_default7
-ffffffc008b60e38 d __initcall__kmod_trace__437_9747_trace_eval_sync7s
-ffffffc008b60e3c d __initcall__kmod_trace__442_10396_late_trace_init7s
-ffffffc008b60e40 d __initcall__kmod_bus__412_498_amba_stub_drv_init7s
-ffffffc008b60e44 d __initcall__kmod_clk__454_1416_clk_disable_unused7s
-ffffffc008b60e48 d __initcall__kmod_platform__411_611_of_platform_sync_state_init7s
-ffffffc008b60e4c D __con_initcall_start
-ffffffc008b60e4c d __initcall__kmod_vt__413_3548_con_initcon
-ffffffc008b60e4c D __initcall_end
-ffffffc008b60e50 d __initcall__kmod_hvc_console__383_246_hvc_console_initcon
-ffffffc008b60e54 d __initcall__kmod_8250__386_690_univ8250_console_initcon
-ffffffc008b60e58 D __con_initcall_end
-ffffffc008b60e58 D __initramfs_start
-ffffffc008b60e58 d __irf_start
-ffffffc008b61058 D __initramfs_size
-ffffffc008b61058 d __irf_end
-ffffffc008b62000 D __per_cpu_load
-ffffffc008b62000 D __per_cpu_start
-ffffffc008b62000 D this_cpu_vector
-ffffffc008b62008 D cpu_number
-ffffffc008b62010 D bp_hardening_data
-ffffffc008b62020 D arm64_ssbd_callback_required
-ffffffc008b62028 d mte_tcf_preferred
-ffffffc008b62040 D kstack_offset
-ffffffc008b62048 d cpu_loops_per_jiffy
-ffffffc008b62050 d mde_ref_count
-ffffffc008b62054 d kde_ref_count
-ffffffc008b62058 D nmi_contexts
-ffffffc008b62068 D irq_stack_ptr
-ffffffc008b62070 D irq_shadow_call_stack_ptr
-ffffffc008b62078 d fpsimd_last_state
-ffffffc008b620a0 D fpsimd_context_busy
-ffffffc008b620a4 d __in_cortex_a76_erratum_1463225_wa
-ffffffc008b620a8 D __entry_task
-ffffffc008b620b0 D overflow_stack
-ffffffc008b630b0 D cpu_data
-ffffffc008b634d8 d arch_core_cycles_prev
-ffffffc008b634e0 d arch_const_cycles_prev
-ffffffc008b634e8 d stepping_kernel_bp
-ffffffc008b634f0 d bp_on_reg
-ffffffc008b63570 d wp_on_reg
-ffffffc008b635f0 d stolen_time_region
-ffffffc008b635f8 d active_asids
-ffffffc008b63600 d reserved_asids
-ffffffc008b63608 D process_counts
-ffffffc008b63610 d cached_stacks
-ffffffc008b63620 d cpuhp_state
-ffffffc008b63698 d __percpu_rwsem_rc_cpu_hotplug_lock
-ffffffc008b636a0 D ksoftirqd
-ffffffc008b636a8 d tasklet_vec
-ffffffc008b636b8 d tasklet_hi_vec
-ffffffc008b636c8 d wq_watchdog_touched_cpu
-ffffffc008b636d0 d wq_rr_cpu_last
-ffffffc008b636d8 d idle_threads
-ffffffc008b636e0 d cpu_hotplug_state
-ffffffc008b636e8 D kstat
-ffffffc008b63718 d push_work
-ffffffc008b63748 D kernel_cpustat
-ffffffc008b63798 d load_balance_mask
-ffffffc008b637a0 d select_rq_mask
-ffffffc008b637a8 d local_cpu_mask
-ffffffc008b637b0 d local_cpu_mask_dl
-ffffffc008b637b8 d rt_push_head
-ffffffc008b637c8 d rt_pull_head
-ffffffc008b637d8 d dl_push_head
-ffffffc008b637e8 d dl_pull_head
-ffffffc008b637f8 D cpu_irqtime
-ffffffc008b63840 d system_group_pcpu
-ffffffc008b638c0 D sd_numa
-ffffffc008b638c8 D sd_llc_id
-ffffffc008b638d0 D sd_llc
-ffffffc008b638d8 D sd_llc_size
-ffffffc008b638e0 D sd_llc_shared
-ffffffc008b638e8 D sd_asym_packing
-ffffffc008b638f0 D sd_asym_cpucapacity
-ffffffc008b638f8 d printk_count_nmi
-ffffffc008b638f9 d printk_count
-ffffffc008b638fc d printk_pending
-ffffffc008b63900 d wake_up_klogd_work
-ffffffc008b63920 d printk_context
-ffffffc008b63940 d rcu_tasks__percpu
-ffffffc008b63a40 d tasks_rcu_exit_srcu_srcu_data
-ffffffc008b63bc0 d krc
-ffffffc008b63da0 d cpu_profile_hits
-ffffffc008b63db0 d cpu_profile_flip
-ffffffc008b63dc0 d timer_bases
-ffffffc008b662c0 D hrtimer_bases
-ffffffc008b66500 d tick_percpu_dev
-ffffffc008b667e0 D tick_cpu_device
-ffffffc008b667f0 d tick_oneshot_wakeup_device
-ffffffc008b667f8 d tick_cpu_sched
-ffffffc008b668d8 d cpu_stopper
-ffffffc008b66938 d watchdog_report_ts
-ffffffc008b66940 d softlockup_touch_sync
-ffffffc008b66948 d hrtimer_interrupts
-ffffffc008b66950 d hrtimer_interrupts_saved
-ffffffc008b66958 d watchdog_hrtimer
-ffffffc008b66998 d softlockup_completion
-ffffffc008b669b8 d softlockup_stop_work
-ffffffc008b669e8 d watchdog_touch_ts
-ffffffc008b66a00 d tracepoint_srcu_srcu_data
-ffffffc008b66b80 d trace_taskinfo_save
-ffffffc008b66b88 D trace_buffered_event
-ffffffc008b66b90 D trace_buffered_event_cnt
-ffffffc008b66b94 d ftrace_stack_reserve
-ffffffc008b66b98 d ftrace_stacks
-ffffffc008b6eb98 d cpu_access_lock
-ffffffc008b6ebb8 d raised_list
-ffffffc008b6ebc0 d lazy_list
-ffffffc008b6ebc8 d bpf_user_rnd_state
-ffffffc008b6ebd8 d scs_cache
-ffffffc008b6ebe8 d running_sample_length
-ffffffc008b6ebf0 d perf_sched_cb_usages
-ffffffc008b6ebf8 d sched_cb_list
-ffffffc008b6ec08 d perf_cgroup_events
-ffffffc008b6ec10 d active_ctx_list
-ffffffc008b6ec20 d perf_throttled_seq
-ffffffc008b6ec28 d perf_throttled_count
-ffffffc008b6ec30 d swevent_htable
-ffffffc008b6ec70 D __perf_regs
-ffffffc008b6f1b0 d pmu_sb_events
-ffffffc008b6f1c8 d nop_txn_flags
-ffffffc008b6f1cc d callchain_recursion
-ffffffc008b6f1e0 d __percpu_rwsem_rc_bp_cpuinfo_sem
-ffffffc008b6f1e8 d bp_cpuinfo
-ffffffc008b6f208 d __percpu_rwsem_rc_dup_mmap_sem
-ffffffc008b6f210 D context_tracking
-ffffffc008b6f228 D dirty_throttle_leaks
-ffffffc008b6f22c d bdp_ratelimits
-ffffffc008b6f230 d lru_rotate
-ffffffc008b6f2b0 d cpu_fbatches
-ffffffc008b6f530 d lru_add_drain_work
-ffffffc008b6f550 d vmstat_work
-ffffffc008b6f5a8 D vm_event_states
-ffffffc008b6f888 d mlock_pvec
-ffffffc008b6f908 d vmap_block_queue
-ffffffc008b6f920 d vfree_deferred
-ffffffc008b6f948 d ne_fit_preload_node
-ffffffc008b6f980 d boot_nodestats
-ffffffc008b6f9c0 d boot_pageset
-ffffffc008b6fac0 d boot_zonestats
-ffffffc008b6facc d __percpu_rwsem_rc_mem_hotplug_lock
-ffffffc008b6fad0 d swp_slots
-ffffffc008b6fb20 d slub_flush
-ffffffc008b6fb50 D kasan_page_alloc_skip
-ffffffc008b6fb58 d zs_map_area
-ffffffc008b6fb70 d nr_dentry
-ffffffc008b6fb78 d nr_dentry_unused
-ffffffc008b6fb80 d nr_dentry_negative
-ffffffc008b6fb88 d nr_inodes
-ffffffc008b6fb90 d last_ino
-ffffffc008b6fb98 d nr_unused
-ffffffc008b6fba0 d bh_lrus
-ffffffc008b6fc20 d bh_accounting
-ffffffc008b6fc28 d file_lock_list
-ffffffc008b6fc38 d __percpu_rwsem_rc_file_rwsem
-ffffffc008b6fc40 d discard_pa_seq
-ffffffc008b6fc48 d erofs_pcb
-ffffffc008b6fc68 D avc_cache_stats
-ffffffc008b6fc80 d scomp_scratch
-ffffffc008b6fc98 d blk_cpu_done
-ffffffc008b6fca0 d sgi_intid
-ffffffc008b6fca4 d has_rss
-ffffffc008b6fca8 d cpu_lpi_count
-ffffffc008b6fcb0 d batched_entropy_u8
-ffffffc008b6fd20 d batched_entropy_u16
-ffffffc008b6fd90 d batched_entropy_u32
-ffffffc008b6fe00 d batched_entropy_u64
-ffffffc008b6fe70 d crngs
-ffffffc008b6fe98 d irq_randomness
-ffffffc008b6ff00 d device_links_srcu_srcu_data
-ffffffc008b70080 d cpu_sys_devices
-ffffffc008b70088 d ci_cpu_cacheinfo
-ffffffc008b700a0 d ci_cache_dev
-ffffffc008b700a8 d ci_index_dev
-ffffffc008b700c0 d wakeup_srcu_srcu_data
-ffffffc008b70240 d sft_data
-ffffffc008b70248 D arch_freq_scale
-ffffffc008b70250 D cpu_scale
-ffffffc008b70258 d freq_factor
-ffffffc008b70260 D thermal_pressure
-ffffffc008b70268 D timer_unstable_counter_workaround
-ffffffc008b70270 d saved_cntkctl
-ffffffc008b70280 d dummy_timer_evt
-ffffffc008b70380 d cpu_irq
-ffffffc008b70388 d cpu_irq_ops
-ffffffc008b70390 d cpu_armpmu
-ffffffc008b70398 d napi_alloc_cache
-ffffffc008b705c8 d netdev_alloc_cache
-ffffffc008b705e0 d __net_cookie
-ffffffc008b705f0 d flush_works
-ffffffc008b70610 D bpf_redirect_info
-ffffffc008b70648 d bpf_sp
-ffffffc008b70850 d __sock_cookie
-ffffffc008b70860 d sch_frag_data_storage
-ffffffc008b708b0 d rt_cache_stat
-ffffffc008b708d0 D tcp_memory_per_cpu_fw_alloc
-ffffffc008b708d4 D tcp_orphan_count
-ffffffc008b708d8 d tsq_tasklet
-ffffffc008b70910 d ipv4_tcp_sk
-ffffffc008b70918 D udp_memory_per_cpu_fw_alloc
-ffffffc008b70920 d ipv4_icmp_sk
-ffffffc008b70928 d xfrm_trans_tasklet
-ffffffc008b70968 d ipv6_icmp_sk
-ffffffc008b70970 d distribute_cpu_mask_prev
-ffffffc008b70978 D __irq_regs
-ffffffc008b70980 D radix_tree_preloads
-ffffffc008b709c0 D irq_stat
-ffffffc008b70a00 d cpu_worker_pools
-ffffffc008b71000 D runqueues
-ffffffc008b71c00 d osq_node
-ffffffc008b71c40 d qnodes
-ffffffc008b71c80 d rcu_data
-ffffffc008b72000 d cfd_data
-ffffffc008b72040 d call_single_queue
-ffffffc008b72080 d csd_data
-ffffffc008b720c0 D softnet_data
-ffffffc008b723c0 d rt_uncached_list
-ffffffc008b72400 d rt6_uncached_list
-ffffffc008b72428 D __per_cpu_end
-ffffffc008b72428 R __rela_end
-ffffffc008b72428 R __rela_start
-ffffffc008b72428 R __relr_start
-ffffffc008b76448 R __relr_end
-ffffffc008b80000 R __init_end
-ffffffc008b80000 R __initdata_end
-ffffffc008b80000 D __start_init_task
-ffffffc008b80000 R _data
-ffffffc008b80000 R _sdata
-ffffffc008b80000 D init_stack
-ffffffc008b80000 D init_thread_union
-ffffffc008b84000 D __end_init_task
-ffffffc008b84000 D __nosave_begin
-ffffffc008b84000 D __nosave_end
-ffffffc008b84000 d vdso_data_store
-ffffffc008b85000 D boot_args
-ffffffc008b85040 D mmlist_lock
-ffffffc008b85080 D tasklist_lock
-ffffffc008b850c0 d softirq_vec
-ffffffc008b85140 d pidmap_lock
-ffffffc008b85180 d bit_wait_table
-ffffffc008b86980 D jiffies
-ffffffc008b86980 D jiffies_64
-ffffffc008b869c0 D jiffies_lock
-ffffffc008b86a00 D jiffies_seq
-ffffffc008b86a40 d tick_broadcast_lock
-ffffffc008b86a80 d hash_lock
-ffffffc008b86ac0 d folio_wait_table
-ffffffc008b882c0 D vm_numa_event
-ffffffc008b882c0 D vm_zone_stat
-ffffffc008b88340 D vm_node_stat
-ffffffc008b884c0 d nr_files
-ffffffc008b88500 D rename_lock
-ffffffc008b88540 d inode_hash_lock
-ffffffc008b88580 D mount_lock
-ffffffc008b885c0 d bdev_lock
-ffffffc008b88600 d aes_sbox
-ffffffc008b88600 D crypto_aes_sbox
-ffffffc008b88700 d aes_inv_sbox
-ffffffc008b88700 D crypto_aes_inv_sbox
-ffffffc008b88800 D early_boot_irqs_disabled
-ffffffc008b88801 D static_key_initialized
-ffffffc008b88804 D system_state
-ffffffc008b88808 d amu_cpus
-ffffffc008b88810 d elf_hwcap
-ffffffc008b88820 d allow_mismatched_32bit_el0
-ffffffc008b88828 d ipi_desc
-ffffffc008b88860 d nr_ipi
-ffffffc008b88864 d ipi_irq_base
-ffffffc008b88868 d __nospectre_bhb
-ffffffc008b88869 d __nospectre_v2
-ffffffc008b8886c d __spectre_v4_policy
-ffffffc008b88870 d sysctl_perf_user_access
-ffffffc008b88874 D panic_on_warn
-ffffffc008b88878 d warn_limit
-ffffffc008b8887c d sysctl_oops_all_cpu_backtrace
-ffffffc008b88880 D __cpu_active_mask
-ffffffc008b88888 D __cpu_dying_mask
-ffffffc008b88890 D __cpu_present_mask
-ffffffc008b88898 D __cpu_online_mask
-ffffffc008b888a0 D __num_online_cpus
-ffffffc008b888a8 D __cpu_possible_mask
-ffffffc008b888b0 D print_fatal_signals
-ffffffc008b888b8 D system_highpri_wq
-ffffffc008b888c0 D system_unbound_wq
-ffffffc008b888c8 D system_freezable_wq
-ffffffc008b888d0 D system_power_efficient_wq
-ffffffc008b888d8 D system_freezable_power_efficient_wq
-ffffffc008b888e0 D system_long_wq
-ffffffc008b888e8 D system_wq
-ffffffc008b888f0 D scheduler_running
-ffffffc008b888f4 D sched_smp_initialized
-ffffffc008b888f8 D sysctl_resched_latency_warn_ms
-ffffffc008b888fc D sysctl_resched_latency_warn_once
-ffffffc008b88900 D sysctl_sched_features
-ffffffc008b88904 D sysctl_sched_nr_migrate
-ffffffc008b88908 D max_load_balance_interval
-ffffffc008b88910 D sysctl_sched_child_runs_first
-ffffffc008b88914 D sysctl_sched_migration_cost
-ffffffc008b88918 d cpu_idle_force_poll
-ffffffc008b8891c D sched_pelt_lshift
-ffffffc008b88920 d psi_period
-ffffffc008b88921 D sched_debug_verbose
-ffffffc008b88924 d psi_bug
-ffffffc008b88928 D freeze_timeout_msecs
-ffffffc008b8892c D s2idle_state
-ffffffc008b88930 D ignore_console_lock_warning
-ffffffc008b88934 d devkmsg_log
-ffffffc008b88938 d ignore_loglevel
-ffffffc008b8893c d suppress_panic_printk
-ffffffc008b88940 d keep_bootcon
-ffffffc008b88944 D suppress_printk
-ffffffc008b88948 D printk_delay_msec
-ffffffc008b8894c D noirqdebug
-ffffffc008b88950 d irqfixup
-ffffffc008b88954 d rcu_boot_ended
-ffffffc008b88958 d rcu_task_ipi_delay
-ffffffc008b8895c d rcu_task_stall_timeout
-ffffffc008b88960 d rcu_task_stall_info
-ffffffc008b88964 d rcu_task_stall_info_mult
-ffffffc008b88968 d rcu_task_enqueue_lim
-ffffffc008b8896c d rcu_task_contend_lim
-ffffffc008b88970 d rcu_task_collapse_lim
-ffffffc008b88974 D rcu_exp_cpu_stall_timeout
-ffffffc008b88978 D rcu_cpu_stall_timeout
-ffffffc008b8897c D rcu_cpu_stall_suppress
-ffffffc008b88980 D rcu_cpu_stall_ftrace_dump
-ffffffc008b88984 D rcu_cpu_stall_suppress_at_boot
-ffffffc008b88988 d big_cpu_lim
-ffffffc008b8898c d small_contention_lim
-ffffffc008b88990 d srcu_init_done
-ffffffc008b88994 D rcu_num_lvls
-ffffffc008b88998 D rcu_num_nodes
-ffffffc008b8899c d rcu_nocb_poll
-ffffffc008b889a0 D sysctl_panic_on_rcu_stall
-ffffffc008b889a4 D sysctl_max_rcu_stall_to_panic
-ffffffc008b889a8 d rcu_scheduler_fully_active
-ffffffc008b889ac D rcu_scheduler_active
-ffffffc008b889b0 d dma_direct_map_resource.__print_once
-ffffffc008b889b1 d swiotlb_tbl_map_single.__print_once
-ffffffc008b889b4 D prof_on
-ffffffc008b889b8 D hrtimer_resolution
-ffffffc008b889bc d hrtimer_hres_enabled
-ffffffc008b889c0 D timekeeping_suspended
-ffffffc008b889c4 D tick_do_timer_cpu
-ffffffc008b889c8 D tick_nohz_enabled
-ffffffc008b889d0 D tick_nohz_active
-ffffffc008b889e0 d __futex_data.0
-ffffffc008b889f0 d __futex_data.1
-ffffffc008b889f8 D nr_cpu_ids
-ffffffc008b88a00 d audit_tree_mark_cachep
-ffffffc008b88a08 D sysctl_hung_task_check_count
-ffffffc008b88a10 D sysctl_hung_task_timeout_secs
-ffffffc008b88a18 D sysctl_hung_task_warnings
-ffffffc008b88a1c D sysctl_hung_task_panic
-ffffffc008b88a20 D sysctl_hung_task_check_interval_secs
-ffffffc008b88a28 d did_panic
-ffffffc008b88a2c d sysctl_hung_task_all_cpu_backtrace
-ffffffc008b88a30 D watchdog_user_enabled
-ffffffc008b88a34 D nmi_watchdog_user_enabled
-ffffffc008b88a38 D soft_watchdog_user_enabled
-ffffffc008b88a3c D watchdog_thresh
-ffffffc008b88a40 D watchdog_cpumask
-ffffffc008b88a48 D softlockup_panic
-ffffffc008b88a50 d watchdog_allowed_mask
-ffffffc008b88a58 D watchdog_enabled
-ffffffc008b88a60 d nmi_watchdog_available
-ffffffc008b88a64 D sysctl_softlockup_all_cpu_backtrace
-ffffffc008b88a68 d sample_period
-ffffffc008b88a70 d softlockup_initialized
-ffffffc008b88a78 d ftrace_exports_list
-ffffffc008b88a80 d tracing_selftest_running
-ffffffc008b88a88 d trace_types
-ffffffc008b88a90 D tracing_buffer_mask
-ffffffc008b88a98 D tracing_selftest_disabled
-ffffffc008b88aa0 D tracing_thresh
-ffffffc008b88aa8 d event_hash
-ffffffc008b88ea8 d trace_printk_enabled
-ffffffc008b88eb0 D nop_trace
-ffffffc008b88f48 D sysctl_perf_event_paranoid
-ffffffc008b88f4c D sysctl_perf_event_mlock
-ffffffc008b88f50 D sysctl_perf_event_sample_rate
-ffffffc008b88f54 D sysctl_perf_cpu_time_max_percent
-ffffffc008b88f58 d max_samples_per_tick
-ffffffc008b88f5c d perf_sample_period_ns
-ffffffc008b88f60 d perf_sample_allowed_ns
-ffffffc008b88f64 d nr_switch_events
-ffffffc008b88f68 d nr_comm_events
-ffffffc008b88f6c d nr_namespaces_events
-ffffffc008b88f70 d nr_mmap_events
-ffffffc008b88f74 d nr_ksymbol_events
-ffffffc008b88f78 d nr_bpf_events
-ffffffc008b88f7c d nr_text_poke_events
-ffffffc008b88f80 d nr_build_id_events
-ffffffc008b88f84 d nr_cgroup_events
-ffffffc008b88f88 d nr_task_events
-ffffffc008b88f8c d nr_freq_events
-ffffffc008b88f90 D sysctl_perf_event_max_stack
-ffffffc008b88f94 D sysctl_perf_event_max_contexts_per_stack
-ffffffc008b88f98 d oom_killer_disabled
-ffffffc008b88fa0 d lru_gen_min_ttl
-ffffffc008b88fa8 d shmem_huge
-ffffffc008b88fb0 D sysctl_overcommit_memory
-ffffffc008b88fb4 D sysctl_overcommit_ratio
-ffffffc008b88fb8 D sysctl_overcommit_kbytes
-ffffffc008b88fc0 D sysctl_max_map_count
-ffffffc008b88fc8 D sysctl_user_reserve_kbytes
-ffffffc008b88fd0 D sysctl_admin_reserve_kbytes
-ffffffc008b88fd8 D sysctl_stat_interval
-ffffffc008b88fdc d stable_pages_required_show.__print_once
-ffffffc008b88fe0 d pcpu_async_enabled
-ffffffc008b88fe8 D __per_cpu_offset
-ffffffc008b890e8 D sysctl_compact_unevictable_allowed
-ffffffc008b890ec D sysctl_compaction_proactiveness
-ffffffc008b890f0 d bucket_order
-ffffffc008b890f8 D randomize_va_space
-ffffffc008b89100 D highest_memmap_pfn
-ffffffc008b89108 d fault_around_bytes
-ffffffc008b89110 D zero_pfn
-ffffffc008b89118 D mmap_rnd_bits
-ffffffc008b8911c d vmap_initialized
-ffffffc008b89120 D watermark_boost_factor
-ffffffc008b89124 d _init_on_alloc_enabled_early
-ffffffc008b89125 d _init_on_free_enabled_early
-ffffffc008b89128 D totalreserve_pages
-ffffffc008b89130 D totalcma_pages
-ffffffc008b89138 D gfp_allowed_mask
-ffffffc008b89140 D node_states
-ffffffc008b89170 D page_group_by_mobility_disabled
-ffffffc008b89178 D _totalram_pages
-ffffffc008b89180 d online_policy
-ffffffc008b89184 d auto_movable_ratio
-ffffffc008b89188 d enable_vma_readahead
-ffffffc008b89190 D swapper_spaces
-ffffffc008b89270 D transparent_hugepage_flags
-ffffffc008b89278 D huge_zero_pfn
-ffffffc008b89280 D huge_zero_page
-ffffffc008b89288 d mm_slot_cache
-ffffffc008b89290 d khugepaged_pages_to_scan
-ffffffc008b89294 d khugepaged_max_ptes_none
-ffffffc008b89298 d khugepaged_max_ptes_swap
-ffffffc008b8929c d khugepaged_max_ptes_shared
-ffffffc008b892a0 d mm_slots_hash
-ffffffc008b8b2a0 d khugepaged_thread
-ffffffc008b8b2a8 d khugepaged_scan_sleep_millisecs
-ffffffc008b8b2ac d khugepaged_alloc_sleep_millisecs
-ffffffc008b8b2b0 d pr_dev_info
-ffffffc008b8b2b8 d filp_cachep
-ffffffc008b8b2c0 d pipe_mnt
-ffffffc008b8b2c8 d sysctl_protected_hardlinks
-ffffffc008b8b2cc d sysctl_protected_symlinks
-ffffffc008b8b2d0 d sysctl_protected_fifos
-ffffffc008b8b2d4 d sysctl_protected_regular
-ffffffc008b8b2d8 d fasync_cache
-ffffffc008b8b2e0 D names_cachep
-ffffffc008b8b2e8 d dentry_cache
-ffffffc008b8b2f0 d dentry_hashtable
-ffffffc008b8b2f8 d d_hash_shift
-ffffffc008b8b2fc D sysctl_vfs_cache_pressure
-ffffffc008b8b300 d inode_cachep
-ffffffc008b8b308 d inode_hashtable
-ffffffc008b8b310 d i_hash_shift
-ffffffc008b8b314 d i_hash_mask
-ffffffc008b8b318 D sysctl_nr_open
-ffffffc008b8b320 d sysctl_mount_max
-ffffffc008b8b328 d mnt_cache
-ffffffc008b8b330 d m_hash_shift
-ffffffc008b8b334 d m_hash_mask
-ffffffc008b8b338 d mount_hashtable
-ffffffc008b8b340 d mp_hash_shift
-ffffffc008b8b344 d mp_hash_mask
-ffffffc008b8b348 d mountpoint_hashtable
-ffffffc008b8b350 d bh_cachep
-ffffffc008b8b358 d dio_cache
-ffffffc008b8b360 d inotify_max_queued_events
-ffffffc008b8b368 D inotify_inode_mark_cachep
-ffffffc008b8b370 d pwq_cache
-ffffffc008b8b378 d ephead_cache
-ffffffc008b8b380 d epi_cache
-ffffffc008b8b388 d max_user_watches
-ffffffc008b8b390 d anon_inode_mnt
-ffffffc008b8b398 d userfaultfd_ctx_cachep
-ffffffc008b8b3a0 D sysctl_unprivileged_userfaultfd
-ffffffc008b8b3a8 d flctx_cache
-ffffffc008b8b3b0 d filelock_cache
-ffffffc008b8b3b8 d allow_sys_admin_access
-ffffffc008b8b3c0 d erofs_inode_cachep
-ffffffc008b8b3c8 d z_erofs_workqueue
-ffffffc008b8b3d0 d pcluster_pool
-ffffffc008b8b550 d iint_cache
-ffffffc008b8b558 d bdev_cachep
-ffffffc008b8b560 D blockdev_superblock
-ffffffc008b8b568 d bvec_slabs
-ffffffc008b8b5c8 d blk_timeout_mask
-ffffffc008b8b5cc D debug_locks
-ffffffc008b8b5d0 D debug_locks_silent
-ffffffc008b8b5d4 D percpu_counter_batch
-ffffffc008b8b5d8 d gic_data
-ffffffc008b8bc20 d gic_cpu_map
-ffffffc008b8bc28 d gic_data
-ffffffc008b8bca0 d sysrq_always_enabled
-ffffffc008b8bca4 d sysrq_enabled
-ffffffc008b8bca8 d hvc_needs_init
-ffffffc008b8bcac d ratelimit_disable
-ffffffc008b8bcb0 d crng_init
-ffffffc008b8bcb4 d iommu_dma_strict
-ffffffc008b8bcb8 d iommu_def_domain_type
-ffffffc008b8bcbc d iommu_cmd_line
-ffffffc008b8bcc0 D iommu_dma_forcedac
-ffffffc008b8bcc1 d iommu_dma_map_page.__print_once
-ffffffc008b8bcc4 D events_check_enabled
-ffffffc008b8bcc8 d pm_abort_suspend
-ffffffc008b8bccc d wakeup_irq.0
-ffffffc008b8bcd0 d wakeup_irq.1
-ffffffc008b8bcd4 d do_xfer.__print_once
-ffffffc008b8bcd8 d sock_mnt
-ffffffc008b8bce0 d net_families
-ffffffc008b8be50 D sysctl_net_busy_poll
-ffffffc008b8be54 D sysctl_net_busy_read
-ffffffc008b8be58 D sysctl_wmem_max
-ffffffc008b8be5c D sysctl_rmem_max
-ffffffc008b8be60 D sysctl_wmem_default
-ffffffc008b8be64 D sysctl_rmem_default
-ffffffc008b8be68 D sysctl_optmem_max
-ffffffc008b8be6c D sysctl_tstamp_allow_data
-ffffffc008b8be70 d sock_set_timeout.warned
-ffffffc008b8be78 D sysctl_max_skb_frags
-ffffffc008b8be80 D crc32c_csum_stub
-ffffffc008b8be88 d flow_keys_dissector_symmetric
-ffffffc008b8becc D flow_keys_dissector
-ffffffc008b8bf10 D flow_keys_basic_dissector
-ffffffc008b8bf54 D sysctl_fb_tunnels_only_for_init_net
-ffffffc008b8bf58 D sysctl_devconf_inherit_init_net
-ffffffc008b8bf60 D ptype_all
-ffffffc008b8bf70 d xps_needed
-ffffffc008b8bf80 d xps_rxqs_needed
-ffffffc008b8bf90 D netdev_max_backlog
-ffffffc008b8bf94 D netdev_tstamp_prequeue
-ffffffc008b8bf98 D netdev_budget
-ffffffc008b8bf9c D netdev_budget_usecs
-ffffffc008b8bfa0 D weight_p
-ffffffc008b8bfa4 D dev_weight_rx_bias
-ffffffc008b8bfa8 D dev_weight_tx_bias
-ffffffc008b8bfac D dev_rx_weight
-ffffffc008b8bfb0 D dev_tx_weight
-ffffffc008b8bfb4 D netdev_flow_limit_table_len
-ffffffc008b8bfb8 D rps_needed
-ffffffc008b8bfc8 D netdev_unregister_timeout_secs
-ffffffc008b8bfd0 D ptype_base
-ffffffc008b8c0d0 D rps_sock_flow_table
-ffffffc008b8c0d8 D rps_cpu_mask
-ffffffc008b8c0e0 D rfs_needed
-ffffffc008b8c0f0 d napi_hash
-ffffffc008b8c8f0 D sysctl_skb_defer_max
-ffffffc008b8c8f8 d neigh_tables
-ffffffc008b8c910 d neigh_sysctl_template
-ffffffc008b8ce98 D ipv6_bpf_stub
-ffffffc008b8cea0 D gro_normal_batch
-ffffffc008b8cea8 d offload_base
-ffffffc008b8ceb8 d eth_packet_offload
-ffffffc008b8cee8 D pfifo_fast_ops
-ffffffc008b8cf98 D noop_qdisc_ops
-ffffffc008b8d048 D noqueue_qdisc_ops
-ffffffc008b8d0f8 D mq_qdisc_ops
-ffffffc008b8d1a8 D nl_table
-ffffffc008b8d1b0 D netdev_rss_key
-ffffffc008b8d1e4 d ethnl_ok
-ffffffc008b8d1e8 d ip_rt_redirect_silence
-ffffffc008b8d1ec d ip_rt_redirect_number
-ffffffc008b8d1f0 d ip_rt_redirect_load
-ffffffc008b8d1f4 d ip_idents_mask
-ffffffc008b8d1f8 d ip_idents
-ffffffc008b8d200 d ip_tstamps
-ffffffc008b8d208 d ip_rt_gc_timeout
-ffffffc008b8d20c d ip_rt_error_burst
-ffffffc008b8d210 d ip_rt_error_cost
-ffffffc008b8d214 d ip_min_valid_pmtu
-ffffffc008b8d218 d ip_rt_gc_min_interval
-ffffffc008b8d21c d ip_rt_gc_interval
-ffffffc008b8d220 d ip_rt_gc_elasticity
-ffffffc008b8d224 D inet_peer_minttl
-ffffffc008b8d228 D inet_peer_maxttl
-ffffffc008b8d22c D inet_peer_threshold
-ffffffc008b8d230 D inet_protos
-ffffffc008b8da30 D inet_offloads
-ffffffc008b8e230 d inet_ehashfn.inet_ehash_secret
-ffffffc008b8e238 D sysctl_tcp_mem
-ffffffc008b8e250 D tcp_memory_pressure
-ffffffc008b8e258 d tcp_gro_dev_warn.__once
-ffffffc008b8e25c D sysctl_tcp_max_orphans
-ffffffc008b8e260 D tcp_request_sock_ops
-ffffffc008b8e2a0 d tcp_metrics_hash_log
-ffffffc008b8e2a8 d tcp_metrics_hash
-ffffffc008b8e2b0 D sysctl_udp_mem
-ffffffc008b8e2c8 d udp_flow_hashrnd.hashrnd
-ffffffc008b8e2cc d udp_busylocks_log
-ffffffc008b8e2d0 d udp_busylocks
-ffffffc008b8e2d8 d udp_ehashfn.udp_ehash_secret
-ffffffc008b8e2e0 D udp_table
-ffffffc008b8e2f8 D udplite_table
-ffffffc008b8e310 d arp_packet_type
-ffffffc008b8e358 D sysctl_icmp_msgs_per_sec
-ffffffc008b8e35c D sysctl_icmp_msgs_burst
-ffffffc008b8e360 d inet_af_ops
-ffffffc008b8e3a8 d ip_packet_offload
-ffffffc008b8e3d8 d ip_packet_type
-ffffffc008b8e420 D iptun_encaps
-ffffffc008b8e460 D ip6tun_encaps
-ffffffc008b8e4a0 d sysctl_tcp_low_latency
-ffffffc008b8e4a8 d ipip_link_ops
-ffffffc008b8e578 d ipip_handler
-ffffffc008b8e5a0 d ipip_net_id
-ffffffc008b8e5a8 d gre_proto
-ffffffc008b8e5b8 d ipgre_tap_ops
-ffffffc008b8e688 d ipgre_link_ops
-ffffffc008b8e758 d erspan_link_ops
-ffffffc008b8e828 d gre_tap_net_id
-ffffffc008b8e82c d ipgre_net_id
-ffffffc008b8e830 d erspan_net_id
-ffffffc008b8e838 d vti_link_ops
-ffffffc008b8e908 d vti_ipcomp4_protocol
-ffffffc008b8e938 d vti_ah4_protocol
-ffffffc008b8e968 d vti_esp4_protocol
-ffffffc008b8e998 d vti_net_id
-ffffffc008b8e9a0 d tunnel4_handlers
-ffffffc008b8e9a8 d tunnel64_handlers
-ffffffc008b8e9b0 d tunnelmpls4_handlers
-ffffffc008b8e9c0 d fast_convergence
-ffffffc008b8e9c4 d beta
-ffffffc008b8e9c8 d initial_ssthresh
-ffffffc008b8e9cc d bic_scale
-ffffffc008b8e9d0 d tcp_friendliness
-ffffffc008b8e9d4 d hystart
-ffffffc008b8e9d8 d hystart_detect
-ffffffc008b8e9dc d hystart_low_window
-ffffffc008b8e9e0 d hystart_ack_delta_us
-ffffffc008b8ea00 d cubictcp
-ffffffc008b8eac0 d cube_factor
-ffffffc008b8eac8 d cube_rtt_scale
-ffffffc008b8eacc d beta_scale
-ffffffc008b8ead0 d esp4_handlers
-ffffffc008b8ead8 d ah4_handlers
-ffffffc008b8eae0 d ipcomp4_handlers
-ffffffc008b8eae8 d xfrm_policy_afinfo
-ffffffc008b8eb40 d xfrm_if_cb
-ffffffc008b8eb48 d xfrmi_link_ops
-ffffffc008b8ec18 d xfrmi_net_id
-ffffffc008b8ec20 d xfrmi_ipcomp4_protocol
-ffffffc008b8ec50 d xfrmi_ah4_protocol
-ffffffc008b8ec80 d xfrmi_esp4_protocol
-ffffffc008b8ecb0 d xfrmi_ip6ip_handler
-ffffffc008b8ecd8 d xfrmi_ipv6_handler
-ffffffc008b8ed00 d xfrmi_ipcomp6_protocol
-ffffffc008b8ed30 d xfrmi_ah6_protocol
-ffffffc008b8ed60 d xfrmi_esp6_protocol
-ffffffc008b8ed90 d ipv6_packet_type
-ffffffc008b8edd8 d inet6_ops
-ffffffc008b8ee20 d ipv6_devconf
-ffffffc008b8ef18 d ipv6_devconf_dflt
-ffffffc008b8f010 d fib6_node_kmem
-ffffffc008b8f018 d udp6_ehashfn.udp6_ehash_secret
-ffffffc008b8f01c d udp6_ehashfn.udp_ipv6_hash_secret
-ffffffc008b8f020 d mh_filter
-ffffffc008b8f028 D sysctl_mld_max_msf
-ffffffc008b8f02c D sysctl_mld_qrv
-ffffffc008b8f030 D tcp6_request_sock_ops
-ffffffc008b8f070 d esp6_handlers
-ffffffc008b8f078 d ah6_handlers
-ffffffc008b8f080 d ipcomp6_handlers
-ffffffc008b8f088 d xfrm46_tunnel_handler
-ffffffc008b8f0b0 d xfrm6_tunnel_handler
-ffffffc008b8f0d8 d xfrm6_tunnel_spi_kmem
-ffffffc008b8f0e0 d xfrm6_tunnel_net_id
-ffffffc008b8f0e8 d tunnel6_handlers
-ffffffc008b8f0f0 d tunnel46_handlers
-ffffffc008b8f0f8 d tunnelmpls6_handlers
-ffffffc008b8f100 d vti6_link_ops
-ffffffc008b8f1d0 d vti_ip6ip_handler
-ffffffc008b8f1f8 d vti_ipv6_handler
-ffffffc008b8f220 d vti_ipcomp6_protocol
-ffffffc008b8f250 d vti_ah6_protocol
-ffffffc008b8f280 d vti_esp6_protocol
-ffffffc008b8f2b0 d vti6_net_id
-ffffffc008b8f2b8 d sit_link_ops
-ffffffc008b8f388 d sit_handler
-ffffffc008b8f3b0 d ipip_handler
-ffffffc008b8f3d8 d sit_net_id
-ffffffc008b8f3e0 d ip6_link_ops
-ffffffc008b8f4b0 d ip4ip6_handler
-ffffffc008b8f4d8 d ip6ip6_handler
-ffffffc008b8f500 d ip6_tnl_net_id
-ffffffc008b8f508 d ip6gre_tap_ops
-ffffffc008b8f5d8 d ip6gre_link_ops
-ffffffc008b8f6a8 d ip6erspan_tap_ops
-ffffffc008b8f778 d ip6gre_protocol
-ffffffc008b8f790 d ip6gre_net_id
-ffffffc008b8f798 D ipv6_stub
-ffffffc008b8f7a0 D inet6_protos
-ffffffc008b8ffa0 D inet6_offloads
-ffffffc008b907a0 d ipv6_packet_offload
-ffffffc008b907d0 d inet6_ehashfn.inet6_ehash_secret
-ffffffc008b907d4 d inet6_ehashfn.ipv6_hash_secret
-ffffffc008b907d8 d pfkey_net_id
-ffffffc008b907e0 d vsock_tap_all
-ffffffc008b907f0 d ptr_key
-ffffffc008b90800 d filled_random_ptr_key
-ffffffc008b90804 D kptr_restrict
-ffffffc008b90840 D __idmap_kpti_flag
-ffffffc008b90848 D __SCK__tp_func_initcall_level
-ffffffc008b90850 D __SCK__tp_func_initcall_start
-ffffffc008b90858 D __SCK__tp_func_initcall_finish
-ffffffc008b90860 d trace_event_fields_initcall_level
-ffffffc008b908b0 d trace_event_type_funcs_initcall_level
-ffffffc008b908d0 d print_fmt_initcall_level
-ffffffc008b908f0 d event_initcall_level
-ffffffc008b90980 d trace_event_fields_initcall_start
-ffffffc008b909d0 d trace_event_type_funcs_initcall_start
-ffffffc008b909f0 d print_fmt_initcall_start
-ffffffc008b90a08 d event_initcall_start
-ffffffc008b90a98 d trace_event_fields_initcall_finish
-ffffffc008b90b10 d trace_event_type_funcs_initcall_finish
-ffffffc008b90b30 d print_fmt_initcall_finish
-ffffffc008b90b58 d event_initcall_finish
-ffffffc008b90be8 D loops_per_jiffy
-ffffffc008b90bf0 d argv_init
-ffffffc008b90d00 d ramdisk_execute_command
-ffffffc008b90d08 D envp_init
-ffffffc008b90fc8 D root_mountflags
-ffffffc008b90fd0 D rootfs_fs_type
-ffffffc008b91018 d kern_do_mounts_initrd_table
-ffffffc008b91098 d handle_initrd.argv
-ffffffc008b910a8 d wait_for_initramfs.__already_done
-ffffffc008b910a9 d update_cpu_features.__already_done
-ffffffc008b910aa d has_useable_gicv3_cpuif.__already_done
-ffffffc008b910ab d unmap_kernel_at_el0.__already_done
-ffffffc008b910ac d spectre_bhb_enable_mitigation.__already_done
-ffffffc008b910ad d spectre_v2_mitigations_off.__already_done
-ffffffc008b910ae d spectre_v4_mitigations_off.__already_done
-ffffffc008b910af d hw_breakpoint_control.__already_done
-ffffffc008b910b0 d hw_breakpoint_slot_setup.__already_done
-ffffffc008b910b1 d stolen_time_cpu_online.__already_done
-ffffffc008b910b2 d mte_enable_kernel_sync.__already_done
-ffffffc008b910b3 d __mte_enable_kernel.__already_done
-ffffffc008b910b4 d dup_mm_exe_file.__already_done
-ffffffc008b910b5 d __cpu_hotplug_enable.__already_done
-ffffffc008b910b6 d tasklet_clear_sched.__already_done
-ffffffc008b910b7 d warn_sysctl_write.__already_done
-ffffffc008b910b8 d warn_legacy_capability_use.__already_done
-ffffffc008b910b9 d warn_deprecated_v2.__already_done
-ffffffc008b910ba d __queue_work.__already_done
-ffffffc008b910bb d check_flush_dependency.__already_done
-ffffffc008b910bc d check_flush_dependency.__already_done.39
-ffffffc008b910bd d update_rq_clock.__already_done
-ffffffc008b910be d rq_pin_lock.__already_done
-ffffffc008b910bf d assert_clock_updated.__already_done
-ffffffc008b910c0 d __do_set_cpus_allowed.__already_done
-ffffffc008b910c1 d finish_task_switch.__already_done
-ffffffc008b910c2 d sched_submit_work.__already_done
-ffffffc008b910c3 d nohz_balance_exit_idle.__already_done
-ffffffc008b910c4 d nohz_balance_enter_idle.__already_done
-ffffffc008b910c5 d assert_clock_updated.__already_done
-ffffffc008b910c6 d hrtick_start_fair.__already_done
-ffffffc008b910c7 d _nohz_idle_balance.__already_done
-ffffffc008b910c8 d rq_pin_lock.__already_done
-ffffffc008b910c9 d check_schedstat_required.__already_done
-ffffffc008b910ca d set_next_buddy.__already_done
-ffffffc008b910cb d set_last_buddy.__already_done
-ffffffc008b910cc d load_avg_is_decayed.__already_done
-ffffffc008b910cd d rq_pin_lock.__already_done
-ffffffc008b910ce d check_schedstat_required.__already_done
-ffffffc008b910cf d assert_clock_updated.__already_done
-ffffffc008b910d0 d pick_next_rt_entity.__already_done
-ffffffc008b910d1 d sched_rt_runtime_exceeded.__already_done
-ffffffc008b910d2 d replenish_dl_entity.__already_done
-ffffffc008b910d3 d __sub_running_bw.__already_done
-ffffffc008b910d4 d __sub_rq_bw.__already_done
-ffffffc008b910d5 d __sub_rq_bw.__already_done.28
-ffffffc008b910d6 d __add_rq_bw.__already_done
-ffffffc008b910d7 d __add_running_bw.__already_done
-ffffffc008b910d8 d __add_running_bw.__already_done.32
-ffffffc008b910d9 d enqueue_task_dl.__already_done
-ffffffc008b910da d assert_clock_updated.__already_done
-ffffffc008b910db d asym_cpu_capacity_update_data.__already_done
-ffffffc008b910dc d sd_init.__already_done
-ffffffc008b910dd d sd_init.__already_done.270
-ffffffc008b910de d rq_pin_lock.__already_done
-ffffffc008b910df d check_syslog_permissions.__already_done
-ffffffc008b910e0 d console_emit_next_record.__already_done
-ffffffc008b910e1 d prb_reserve_in_last.__already_done
-ffffffc008b910e2 d prb_reserve_in_last.__already_done.1
-ffffffc008b910e3 d __handle_irq_event_percpu.__already_done
-ffffffc008b910e4 d irq_validate_effective_affinity.__already_done
-ffffffc008b910e5 d irq_wait_for_poll.__already_done
-ffffffc008b910e6 d handle_percpu_devid_irq.__already_done
-ffffffc008b910e7 d bad_chained_irq.__already_done
-ffffffc008b910e8 d synchronize_rcu_tasks_generic.__already_done
-ffffffc008b910e9 d rcu_spawn_tasks_kthread_generic.__already_done
-ffffffc008b910ea d rcutree_migrate_callbacks.__already_done
-ffffffc008b910eb d rcu_note_context_switch.__already_done
-ffffffc008b910ec d rcu_stall_kick_kthreads.__already_done
-ffffffc008b910ed d rcu_spawn_gp_kthread.__already_done
-ffffffc008b910ee d rcu_spawn_core_kthreads.__already_done
-ffffffc008b910ef d rcu_spawn_cpu_nocb_kthread.__already_done
-ffffffc008b910f0 d rcu_spawn_cpu_nocb_kthread.__already_done.271
-ffffffc008b910f1 d dma_direct_map_page.__already_done
-ffffffc008b910f2 d dma_direct_map_page.__already_done
-ffffffc008b910f3 d swiotlb_map.__already_done
-ffffffc008b910f4 d swiotlb_bounce.__already_done
-ffffffc008b910f5 d swiotlb_bounce.__already_done.34
-ffffffc008b910f6 d swiotlb_bounce.__already_done.36
-ffffffc008b910f7 d call_timer_fn.__already_done
-ffffffc008b910f8 d hrtimer_interrupt.__already_done
-ffffffc008b910f9 d timekeeping_adjust.__already_done
-ffffffc008b910fa d clocksource_start_suspend_timing.__already_done
-ffffffc008b910fb d __clocksource_update_freq_scale.__already_done
-ffffffc008b910fc d alarmtimer_freezerset.__already_done
-ffffffc008b910fd d __do_sys_setitimer.__already_done
-ffffffc008b910fe d clockevents_program_event.__already_done
-ffffffc008b910ff d __clockevents_switch_state.__already_done
-ffffffc008b91100 d tick_nohz_stop_tick.__already_done
-ffffffc008b91101 d cpu_stopper_thread.__already_done
-ffffffc008b91102 d ring_buffer_event_time_stamp.__already_done
-ffffffc008b91103 d rb_check_timestamp.__already_done
-ffffffc008b91104 d tracing_snapshot.__already_done
-ffffffc008b91105 d tracing_snapshot_cond.__already_done
-ffffffc008b91106 d tracing_alloc_snapshot.__already_done
-ffffffc008b91107 d trace_check_vprintf.__already_done
-ffffffc008b91108 d early_trace_init.__already_done
-ffffffc008b91109 d alloc_percpu_trace_buffer.__already_done
-ffffffc008b9110a d create_trace_option_files.__already_done
-ffffffc008b9110b d tracing_read_pipe.__already_done
-ffffffc008b9110c d tracing_dentry_percpu.__already_done
-ffffffc008b9110d d create_trace_instances.__already_done
-ffffffc008b9110e d create_trace_instances.__already_done.207
-ffffffc008b9110f d tracer_alloc_buffers.__already_done
-ffffffc008b91110 d init_events.__already_done
-ffffffc008b91111 d detect_dups.__already_done
-ffffffc008b91112 d test_event_printk.__already_done
-ffffffc008b91113 d test_event_printk.__already_done.5
-ffffffc008b91114 d perf_trace_buf_alloc.__already_done
-ffffffc008b91115 d __uprobe_perf_func.__already_done
-ffffffc008b91116 d bpf_user_rnd_init_once.___done
-ffffffc008b91117 d perf_event_ksymbol.__already_done
-ffffffc008b91118 d jump_label_can_update.__already_done
-ffffffc008b91119 d memremap.__already_done
-ffffffc008b9111a d memremap.__already_done.1
-ffffffc008b9111b d rseq_warn_flags.__already_done
-ffffffc008b9111c d rseq_warn_flags.__already_done.14
-ffffffc008b9111d d free_large_kmalloc.__already_done
-ffffffc008b9111e d may_expand_vm.__already_done
-ffffffc008b9111f d __do_sys_remap_file_pages.__already_done
-ffffffc008b91120 d vma_to_resize.__already_done
-ffffffc008b91121 d __alloc_pages.__warned
-ffffffc008b91122 d __alloc_pages_slowpath.__warned
-ffffffc008b91123 d __alloc_pages_slowpath.__warned.54
-ffffffc008b91124 d __alloc_pages_slowpath.__warned.55
-ffffffc008b91125 d __alloc_pages_may_oom.__warned
-ffffffc008b91126 d __next_mem_range.__already_done
-ffffffc008b91127 d __next_mem_range_rev.__already_done
-ffffffc008b91128 d memblock_alloc_range_nid.__already_done
-ffffffc008b91129 d __add_pages.__already_done
-ffffffc008b9112a d madvise_populate.__already_done
-ffffffc008b9112b d enable_swap_slots_cache.__already_done
-ffffffc008b9112c d vmemmap_verify.__already_done
-ffffffc008b9112d d altmap_alloc_block_buf.__already_done
-ffffffc008b9112e d virt_to_cache.__already_done
-ffffffc008b9112f d setup_arg_pages.__already_done
-ffffffc008b91130 d do_execveat_common.__already_done
-ffffffc008b91131 d warn_mandlock.__already_done
-ffffffc008b91132 d mount_too_revealing.__already_done
-ffffffc008b91133 d show_mark_fhandle.__already_done
-ffffffc008b91134 d inotify_remove_from_idr.__already_done
-ffffffc008b91135 d inotify_remove_from_idr.__already_done.1
-ffffffc008b91136 d inotify_remove_from_idr.__already_done.2
-ffffffc008b91137 d __do_sys_flock.__already_done
-ffffffc008b91138 d hidepid2str.__already_done
-ffffffc008b91139 d __set_oom_adj.__already_done
-ffffffc008b9113a d find_next_ancestor.__already_done
-ffffffc008b9113b d kernfs_put.__already_done
-ffffffc008b9113c d ext4_end_bio.__already_done
-ffffffc008b9113d d ext4_journal_data_mode_check.__already_done
-ffffffc008b9113e d ext4_xattr_inode_update_ref.__already_done
-ffffffc008b9113f d ext4_xattr_inode_update_ref.__already_done.14
-ffffffc008b91140 d ext4_xattr_inode_update_ref.__already_done.16
-ffffffc008b91141 d ext4_xattr_inode_update_ref.__already_done.17
-ffffffc008b91142 d __jbd2_log_start_commit.__already_done
-ffffffc008b91143 d selinux_audit_rule_match.__already_done
-ffffffc008b91144 d selinux_audit_rule_match.__already_done.24
-ffffffc008b91145 d bvec_iter_advance.__already_done
-ffffffc008b91146 d dd_exit_sched.__already_done
-ffffffc008b91147 d blk_crypto_start_using_key.__already_done
-ffffffc008b91148 d blk_crypto_fallback_start_using_mode.__already_done
-ffffffc008b91149 d io_epoll_ctl_prep.__already_done
-ffffffc008b9114a d io_wqe_create_worker.__already_done
-ffffffc008b9114b d percpu_ref_kill_and_confirm.__already_done
-ffffffc008b9114c d percpu_ref_switch_to_atomic_rcu.__already_done
-ffffffc008b9114d d refcount_warn_saturate.__already_done
-ffffffc008b9114e d refcount_warn_saturate.__already_done.1
-ffffffc008b9114f d refcount_warn_saturate.__already_done.2
-ffffffc008b91150 d refcount_warn_saturate.__already_done.4
-ffffffc008b91151 d refcount_warn_saturate.__already_done.6
-ffffffc008b91152 d refcount_warn_saturate.__already_done.8
-ffffffc008b91153 d refcount_dec_not_one.__already_done
-ffffffc008b91154 d netdev_reg_state.__already_done
-ffffffc008b91155 d depot_alloc_stack.__already_done
-ffffffc008b91156 d gic_check_cpu_features.__already_done
-ffffffc008b91157 d gic_request_region.__already_done
-ffffffc008b91158 d __gic_handle_irq.__already_done
-ffffffc008b91159 d gic_cpu_sys_reg_init.__already_done
-ffffffc008b9115a d its_cpu_init_lpis.__already_done
-ffffffc008b9115b d its_msi_prepare.__already_done
-ffffffc008b9115c d pci_disable_device.__already_done
-ffffffc008b9115d d pci_disable_acs_redir.__already_done
-ffffffc008b9115e d pci_specified_resource_alignment.__already_done
-ffffffc008b9115f d pci_pm_suspend.__already_done
-ffffffc008b91160 d pci_legacy_suspend.__already_done
-ffffffc008b91161 d pci_pm_suspend_noirq.__already_done
-ffffffc008b91162 d pci_pm_runtime_suspend.__already_done
-ffffffc008b91163 d of_irq_parse_pci.__already_done
-ffffffc008b91164 d quirk_intel_mc_errata.__already_done
-ffffffc008b91165 d devm_pci_epc_destroy.__already_done
-ffffffc008b91166 d dma_map_single_attrs.__already_done
-ffffffc008b91167 d do_con_write.__already_done
-ffffffc008b91168 d syscore_suspend.__already_done
-ffffffc008b91169 d syscore_suspend.__already_done.2
-ffffffc008b9116a d syscore_resume.__already_done
-ffffffc008b9116b d syscore_resume.__already_done.9
-ffffffc008b9116c d dev_pm_attach_wake_irq.__already_done
-ffffffc008b9116d d wakeup_source_activate.__already_done
-ffffffc008b9116e d fw_run_sysfs_fallback.__already_done
-ffffffc008b9116f d regmap_register_patch.__already_done
-ffffffc008b91170 d regmap_field_init.__already_done
-ffffffc008b91171 d loop_control_remove.__already_done
-ffffffc008b91172 d bvec_iter_advance.__already_done
-ffffffc008b91173 d dm_bvec_iter_rewind.__already_done
-ffffffc008b91174 d bvec_iter_advance.__already_done
-ffffffc008b91175 d bvec_iter_advance.__already_done
-ffffffc008b91176 d csrow_dev_is_visible.__already_done
-ffffffc008b91177 d scmi_rx_callback.__already_done
-ffffffc008b91178 d __arch_timer_check_delta.__already_done
-ffffffc008b91179 d of_graph_parse_endpoint.__already_done
-ffffffc008b9117a d of_graph_get_next_endpoint.__already_done
-ffffffc008b9117b d of_node_is_pcie.__already_done
-ffffffc008b9117c d __sock_create.__already_done
-ffffffc008b9117d d kernel_sendpage.__already_done
-ffffffc008b9117e d skb_expand_head.__already_done
-ffffffc008b9117f d __skb_vlan_pop.__already_done
-ffffffc008b91180 d skb_vlan_push.__already_done
-ffffffc008b91181 d ts_secret_init.___done
-ffffffc008b91182 d net_secret_init.___done
-ffffffc008b91183 d __flow_hash_secret_init.___done
-ffffffc008b91184 d __dev_get_by_flags.__already_done
-ffffffc008b91185 d dev_change_name.__already_done
-ffffffc008b91186 d __netdev_notify_peers.__already_done
-ffffffc008b91187 d netif_set_real_num_tx_queues.__already_done
-ffffffc008b91188 d netif_set_real_num_rx_queues.__already_done
-ffffffc008b91189 d skb_checksum_help.__already_done
-ffffffc008b9118a d skb_checksum_help.__already_done.52
-ffffffc008b9118b d netdev_rx_csum_fault.__already_done
-ffffffc008b9118c d netdev_is_rx_handler_busy.__already_done
-ffffffc008b9118d d netdev_rx_handler_unregister.__already_done
-ffffffc008b9118e d netif_napi_add_weight.__print_once
-ffffffc008b9118f d netdev_has_upper_dev.__already_done
-ffffffc008b91190 d netdev_has_any_upper_dev.__already_done
-ffffffc008b91191 d netdev_master_upper_dev_get.__already_done
-ffffffc008b91192 d netdev_offload_xstats_enable.__already_done
-ffffffc008b91193 d netdev_offload_xstats_disable.__already_done
-ffffffc008b91194 d netdev_offload_xstats_enabled.__already_done
-ffffffc008b91195 d netdev_offload_xstats_get.__already_done
-ffffffc008b91196 d netdev_offload_xstats_push_delta.__already_done
-ffffffc008b91197 d netdev_lower_state_changed.__already_done
-ffffffc008b91198 d __dev_change_flags.__already_done
-ffffffc008b91199 d dev_change_xdp_fd.__already_done
-ffffffc008b9119a d __netdev_update_features.__already_done
-ffffffc008b9119b d register_netdevice.__already_done
-ffffffc008b9119c d free_netdev.__already_done
-ffffffc008b9119d d unregister_netdevice_queue.__already_done
-ffffffc008b9119e d unregister_netdevice_many.__already_done
-ffffffc008b9119f d __dev_change_net_namespace.__already_done
-ffffffc008b911a0 d __dev_open.__already_done
-ffffffc008b911a1 d __dev_close_many.__already_done
-ffffffc008b911a2 d netdev_reg_state.__already_done
-ffffffc008b911a3 d call_netdevice_notifiers_info.__already_done
-ffffffc008b911a4 d netif_get_rxqueue.__already_done
-ffffffc008b911a5 d get_rps_cpu.__already_done
-ffffffc008b911a6 d __napi_poll.__print_once
-ffffffc008b911a7 d __napi_poll.__already_done
-ffffffc008b911a8 d __netdev_upper_dev_link.__already_done
-ffffffc008b911a9 d __netdev_has_upper_dev.__already_done
-ffffffc008b911aa d __netdev_master_upper_dev_get.__already_done
-ffffffc008b911ab d __netdev_upper_dev_unlink.__already_done
-ffffffc008b911ac d call_netdevice_notifiers_info_robust.__already_done
-ffffffc008b911ad d __dev_set_promiscuity.__already_done
-ffffffc008b911ae d __dev_set_allmulti.__already_done
-ffffffc008b911af d dev_xdp_attach.__already_done
-ffffffc008b911b0 d udp_tunnel_get_rx_info.__already_done
-ffffffc008b911b1 d udp_tunnel_drop_rx_info.__already_done
-ffffffc008b911b2 d vlan_get_rx_ctag_filter_info.__already_done
-ffffffc008b911b3 d vlan_drop_rx_ctag_filter_info.__already_done
-ffffffc008b911b4 d vlan_get_rx_stag_filter_info.__already_done
-ffffffc008b911b5 d vlan_drop_rx_stag_filter_info.__already_done
-ffffffc008b911b6 d list_netdevice.__already_done
-ffffffc008b911b7 d unlist_netdevice.__already_done
-ffffffc008b911b8 d flush_all_backlogs.__already_done
-ffffffc008b911b9 d dev_xdp_uninstall.__already_done
-ffffffc008b911ba d netdev_has_any_lower_dev.__already_done
-ffffffc008b911bb d default_device_exit_net.__already_done
-ffffffc008b911bc d dev_addr_add.__already_done
-ffffffc008b911bd d dev_addr_del.__already_done
-ffffffc008b911be d netdev_reg_state.__already_done
-ffffffc008b911bf d dst_release.__already_done
-ffffffc008b911c0 d dst_release_immediate.__already_done
-ffffffc008b911c1 d pneigh_lookup.__already_done
-ffffffc008b911c2 d neigh_add.__already_done
-ffffffc008b911c3 d neigh_delete.__already_done
-ffffffc008b911c4 d rtnl_offload_xstats_notify.__already_done
-ffffffc008b911c5 d rtnl_fill_ifinfo.__already_done
-ffffffc008b911c6 d rtnl_xdp_prog_skb.__already_done
-ffffffc008b911c7 d rtnl_fill_statsinfo.__already_done
-ffffffc008b911c8 d rtnl_af_lookup.__already_done
-ffffffc008b911c9 d bpf_warn_invalid_xdp_action.__already_done
-ffffffc008b911ca d ____bpf_xdp_adjust_tail.__already_done
-ffffffc008b911cb d sk_lookup.__already_done
-ffffffc008b911cc d bpf_sk_lookup.__already_done
-ffffffc008b911cd d __bpf_sk_lookup.__already_done
-ffffffc008b911ce d fib_rules_seq_read.__already_done
-ffffffc008b911cf d fib_rules_event.__already_done
-ffffffc008b911d0 d dev_watchdog.__already_done
-ffffffc008b911d1 d netlink_sendmsg.__already_done
-ffffffc008b911d2 d __ethtool_get_link_ksettings.__already_done
-ffffffc008b911d3 d netdev_rss_key_fill.___done
-ffffffc008b911d4 d ethtool_get_settings.__already_done
-ffffffc008b911d5 d ethtool_set_settings.__already_done
-ffffffc008b911d6 d ethtool_get_link_ksettings.__already_done
-ffffffc008b911d7 d ethtool_set_link_ksettings.__already_done
-ffffffc008b911d8 d ethtool_notify.__already_done
-ffffffc008b911d9 d ethtool_notify.__already_done.6
-ffffffc008b911da d ethnl_default_notify.__already_done
-ffffffc008b911db d ethnl_default_notify.__already_done.9
-ffffffc008b911dc d ethnl_default_doit.__already_done
-ffffffc008b911dd d ethnl_default_doit.__already_done.15
-ffffffc008b911de d ethnl_default_doit.__already_done.17
-ffffffc008b911df d ethnl_default_start.__already_done
-ffffffc008b911e0 d strset_parse_request.__already_done
-ffffffc008b911e1 d features_send_reply.__already_done
-ffffffc008b911e2 d ethnl_get_priv_flags_info.__already_done
-ffffffc008b911e3 d fnhe_hashfun.___done
-ffffffc008b911e4 d __inet_hash_connect.___done
-ffffffc008b911e5 d inet_ehashfn.___done
-ffffffc008b911e6 d tcp_recv_skb.__already_done
-ffffffc008b911e7 d tcp_recvmsg_locked.__already_done
-ffffffc008b911e8 d tcp_send_loss_probe.__already_done
-ffffffc008b911e9 d raw_sendmsg.__already_done
-ffffffc008b911ea d udp_flow_hashrnd.___done
-ffffffc008b911eb d udp_ehashfn.___done
-ffffffc008b911ec d inet_ifa_byprefix.__already_done
-ffffffc008b911ed d __inet_del_ifa.__already_done
-ffffffc008b911ee d inet_hash_remove.__already_done
-ffffffc008b911ef d inet_set_ifa.__already_done
-ffffffc008b911f0 d __inet_insert_ifa.__already_done
-ffffffc008b911f1 d inet_hash_insert.__already_done
-ffffffc008b911f2 d inetdev_event.__already_done
-ffffffc008b911f3 d inetdev_init.__already_done
-ffffffc008b911f4 d inetdev_destroy.__already_done
-ffffffc008b911f5 d inet_rtm_newaddr.__already_done
-ffffffc008b911f6 d ip_mc_autojoin_config.__already_done
-ffffffc008b911f7 d inet_rtm_deladdr.__already_done
-ffffffc008b911f8 d __ip_mc_dec_group.__already_done
-ffffffc008b911f9 d ip_mc_unmap.__already_done
-ffffffc008b911fa d ip_mc_remap.__already_done
-ffffffc008b911fb d ip_mc_down.__already_done
-ffffffc008b911fc d ip_mc_init_dev.__already_done
-ffffffc008b911fd d ip_mc_up.__already_done
-ffffffc008b911fe d ip_mc_destroy_dev.__already_done
-ffffffc008b911ff d ip_mc_leave_group.__already_done
-ffffffc008b91200 d ip_mc_source.__already_done
-ffffffc008b91201 d ip_mc_msfilter.__already_done
-ffffffc008b91202 d ip_mc_msfget.__already_done
-ffffffc008b91203 d ip_mc_gsfget.__already_done
-ffffffc008b91204 d ____ip_mc_inc_group.__already_done
-ffffffc008b91205 d __ip_mc_join_group.__already_done
-ffffffc008b91206 d ip_mc_rejoin_groups.__already_done
-ffffffc008b91207 d ip_valid_fib_dump_req.__already_done
-ffffffc008b91208 d ip_fib_net_exit.__already_done
-ffffffc008b91209 d call_fib4_notifiers.__already_done
-ffffffc008b9120a d fib4_seq_read.__already_done
-ffffffc008b9120b d call_nexthop_notifiers.__already_done
-ffffffc008b9120c d call_nexthop_res_table_notifiers.__already_done
-ffffffc008b9120d d __ip_tunnel_create.__already_done
-ffffffc008b9120e d xfrm_hash_rebuild.__already_done
-ffffffc008b9120f d ipv6_sock_ac_join.__already_done
-ffffffc008b91210 d ipv6_sock_ac_drop.__already_done
-ffffffc008b91211 d __ipv6_sock_ac_close.__already_done
-ffffffc008b91212 d __ipv6_dev_ac_inc.__already_done
-ffffffc008b91213 d __ipv6_dev_ac_dec.__already_done
-ffffffc008b91214 d ipv6_del_addr.__already_done
-ffffffc008b91215 d addrconf_verify_rtnl.__already_done
-ffffffc008b91216 d inet6_addr_add.__already_done
-ffffffc008b91217 d addrconf_add_dev.__already_done
-ffffffc008b91218 d ipv6_find_idev.__already_done
-ffffffc008b91219 d ipv6_mc_config.__already_done
-ffffffc008b9121a d __ipv6_ifa_notify.__already_done
-ffffffc008b9121b d addrconf_sit_config.__already_done
-ffffffc008b9121c d add_v4_addrs.__already_done
-ffffffc008b9121d d addrconf_gre_config.__already_done
-ffffffc008b9121e d init_loopback.__already_done
-ffffffc008b9121f d addrconf_dev_config.__already_done
-ffffffc008b91220 d addrconf_type_change.__already_done
-ffffffc008b91221 d ipv6_add_dev.__already_done
-ffffffc008b91222 d inet6_set_iftoken.__already_done
-ffffffc008b91223 d inet6_addr_modify.__already_done
-ffffffc008b91224 d addrconf_ifdown.__already_done
-ffffffc008b91225 d rt6_exception_hash.___done
-ffffffc008b91226 d udp6_ehashfn.___done
-ffffffc008b91227 d udp6_ehashfn.___done.4
-ffffffc008b91228 d ipv6_sock_mc_drop.__already_done
-ffffffc008b91229 d __ipv6_sock_mc_close.__already_done
-ffffffc008b9122a d __ipv6_dev_mc_dec.__already_done
-ffffffc008b9122b d ipv6_dev_mc_dec.__already_done
-ffffffc008b9122c d __ipv6_sock_mc_join.__already_done
-ffffffc008b9122d d __ipv6_dev_mc_inc.__already_done
-ffffffc008b9122e d ipv6_mc_rejoin_groups.__already_done
-ffffffc008b9122f d ipip6_tunnel_del_prl.__already_done
-ffffffc008b91230 d ipip6_tunnel_add_prl.__already_done
-ffffffc008b91231 d inet6_ehashfn.___done
-ffffffc008b91232 d inet6_ehashfn.___done.1
-ffffffc008b91233 d tpacket_rcv.__already_done
-ffffffc008b91234 d tpacket_parse_header.__already_done
-ffffffc008b91235 d format_decode.__already_done
-ffffffc008b91236 d set_field_width.__already_done
-ffffffc008b91237 d set_precision.__already_done
-ffffffc008b91238 d pointer.__already_done
-ffffffc008b91240 d initramfs_domain
-ffffffc008b91258 D init_shadow_call_stack
-ffffffc008b92280 D init_task
-ffffffc008b932c0 d init_signals
-ffffffc008b93698 d init_sighand
-ffffffc008b93eb8 d debug_enabled
-ffffffc008b93ec0 d user_step_hook
-ffffffc008b93ed0 d kernel_step_hook
-ffffffc008b93ee0 d user_break_hook
-ffffffc008b93ef0 d kernel_break_hook
-ffffffc008b93f00 d fpsimd_cpu_pm_notifier_block
-ffffffc008b93f18 d sve_default_vl_table
-ffffffc008b93f98 d sme_default_vl_table
-ffffffc008b94018 d tagged_addr_sysctl_table
-ffffffc008b94098 D __SCK__tp_func_sys_enter
-ffffffc008b940a0 D __SCK__tp_func_sys_exit
-ffffffc008b940a8 d trace_event_fields_sys_enter
-ffffffc008b94120 d trace_event_type_funcs_sys_enter
-ffffffc008b94140 d print_fmt_sys_enter
-ffffffc008b941c8 d event_sys_enter
-ffffffc008b94258 d trace_event_fields_sys_exit
-ffffffc008b942d0 d trace_event_type_funcs_sys_exit
-ffffffc008b942f0 d print_fmt_sys_exit
-ffffffc008b94318 d event_sys_exit
-ffffffc008b943a8 D __cpu_logical_map
-ffffffc008b944a8 d mem_res
-ffffffc008b94528 d arm64_panic_block
-ffffffc008b94540 d undef_hook
-ffffffc008b94550 d bug_break_hook
-ffffffc008b94570 d cfi_break_hook
-ffffffc008b94590 d fault_break_hook
-ffffffc008b945b0 d arm64_show_signal.rs
-ffffffc008b945d8 D vdso_data
-ffffffc008b945e0 d cpuregs_kobj_type
-ffffffc008b94610 d cpuregs_id_attrs
-ffffffc008b94628 d cpuregs_attr_midr_el1
-ffffffc008b94648 d cpuregs_attr_revidr_el1
-ffffffc008b94668 d sme_cpuregs_id_attrs
-ffffffc008b94678 d cpuregs_attr_smidr_el1
-ffffffc008b94698 d .compoundliteral.llvm.4989201762658955791
-ffffffc008b946a8 d .compoundliteral.25.llvm.4989201762658955791
-ffffffc008b946b8 d .compoundliteral
-ffffffc008b946f0 d .compoundliteral
-ffffffc008b94720 d .compoundliteral
-ffffffc008b94730 d .compoundliteral
-ffffffc008b947e8 d .compoundliteral.10
-ffffffc008b94820 d .compoundliteral.12
-ffffffc008b94858 d .compoundliteral.14
-ffffffc008b94890 d .compoundliteral.16
-ffffffc008b948c8 d .compoundliteral.18
-ffffffc008b94900 d .compoundliteral.20
-ffffffc008b94938 d .compoundliteral.22
-ffffffc008b94970 d .compoundliteral.24
-ffffffc008b949a8 d .compoundliteral.26
-ffffffc008b949e0 d .compoundliteral.28
-ffffffc008b94a18 d .compoundliteral.30
-ffffffc008b94a50 d .compoundliteral.32
-ffffffc008b94a88 d .compoundliteral.34
-ffffffc008b94ac0 d .compoundliteral.36
-ffffffc008b94af8 d .compoundliteral.38
-ffffffc008b94b30 d .compoundliteral.40
-ffffffc008b94b68 d .compoundliteral.42
-ffffffc008b94ba0 d .compoundliteral.44
-ffffffc008b94bd8 d .compoundliteral.46
-ffffffc008b94c10 d .compoundliteral.48
-ffffffc008b94c48 d .compoundliteral.50
-ffffffc008b94c80 d .compoundliteral.52
-ffffffc008b94cb8 d .compoundliteral.54
-ffffffc008b94cf0 d .compoundliteral.56
-ffffffc008b94d28 d .compoundliteral.58
-ffffffc008b94d60 d .compoundliteral.60
-ffffffc008b94d98 d .compoundliteral.62
-ffffffc008b94dd0 d .compoundliteral.64
-ffffffc008b94e08 d .compoundliteral.66
-ffffffc008b94e40 d .compoundliteral.68
-ffffffc008b94e78 d .compoundliteral.70
-ffffffc008b94eb0 d .compoundliteral.72
-ffffffc008b94ee8 d .compoundliteral.74
-ffffffc008b94f20 d .compoundliteral.76
-ffffffc008b94f58 d .compoundliteral.78
-ffffffc008b94f90 d .compoundliteral.80
-ffffffc008b94fc8 d .compoundliteral.82
-ffffffc008b95000 d enable_mismatched_32bit_el0.lucky_winner
-ffffffc008b95008 d mrs_hook
-ffffffc008b95038 D arm64_ftr_reg_ctrel0
-ffffffc008b95070 D __SCK__tp_func_ipi_raise
-ffffffc008b95078 D __SCK__tp_func_ipi_entry
-ffffffc008b95080 D __SCK__tp_func_ipi_exit
-ffffffc008b95088 d trace_event_fields_ipi_raise
-ffffffc008b95100 d trace_event_type_funcs_ipi_raise
-ffffffc008b95120 d print_fmt_ipi_raise
-ffffffc008b95160 d event_ipi_raise
-ffffffc008b951f0 d trace_event_fields_ipi_handler
-ffffffc008b95240 d trace_event_type_funcs_ipi_handler
-ffffffc008b95260 d print_fmt_ipi_handler
-ffffffc008b95278 d event_ipi_entry
-ffffffc008b95308 d event_ipi_exit
-ffffffc008b95398 d cpu_running
-ffffffc008b953b8 d cpu_count
-ffffffc008b953c0 d ssbs_emulation_hook
-ffffffc008b953f0 d armv8_pmu_driver
-ffffffc008b954b8 d armv8_pmuv3_event_attrs
-ffffffc008b95788 d .compoundliteral.7
-ffffffc008b957b8 d .compoundliteral.7
-ffffffc008b957c8 d .compoundliteral.9
-ffffffc008b957f8 d .compoundliteral.11
-ffffffc008b95828 d .compoundliteral.13
-ffffffc008b95858 d .compoundliteral.15
-ffffffc008b95888 d .compoundliteral.17
-ffffffc008b958b8 d .compoundliteral.19
-ffffffc008b958e8 d .compoundliteral.21
-ffffffc008b95918 d .compoundliteral.23
-ffffffc008b95948 d .compoundliteral.25
-ffffffc008b95978 d .compoundliteral.27
-ffffffc008b959a8 d .compoundliteral.29
-ffffffc008b959d8 d .compoundliteral.31
-ffffffc008b95a08 d .compoundliteral.33
-ffffffc008b95a38 d .compoundliteral.35
-ffffffc008b95a68 d .compoundliteral.37
-ffffffc008b95a98 d .compoundliteral.39
-ffffffc008b95ac8 d .compoundliteral.41
-ffffffc008b95af8 d .compoundliteral.43
-ffffffc008b95b28 d .compoundliteral.45
-ffffffc008b95b58 d .compoundliteral.47
-ffffffc008b95b88 d .compoundliteral.49
-ffffffc008b95bb8 d .compoundliteral.51
-ffffffc008b95be8 d .compoundliteral.53
-ffffffc008b95c18 d .compoundliteral.55
-ffffffc008b95c48 d .compoundliteral.57
-ffffffc008b95c78 d .compoundliteral.59
-ffffffc008b95ca8 d .compoundliteral.61
-ffffffc008b95cd8 d .compoundliteral.63
-ffffffc008b95d08 d .compoundliteral.65
-ffffffc008b95d38 d .compoundliteral.67
-ffffffc008b95d68 d .compoundliteral.69
-ffffffc008b95d98 d .compoundliteral.71
-ffffffc008b95dc8 d .compoundliteral.73
-ffffffc008b95df8 d .compoundliteral.75
-ffffffc008b95e28 d .compoundliteral.77
-ffffffc008b95e58 d .compoundliteral.79
-ffffffc008b95e88 d .compoundliteral.81
-ffffffc008b95eb8 d .compoundliteral.83
-ffffffc008b95ee8 d .compoundliteral.85
-ffffffc008b95f18 d .compoundliteral.87
-ffffffc008b95f48 d .compoundliteral.89
-ffffffc008b95f78 d .compoundliteral.91
-ffffffc008b95fa8 d .compoundliteral.93
-ffffffc008b95fd8 d .compoundliteral.95
-ffffffc008b96008 d .compoundliteral.97
-ffffffc008b96038 d .compoundliteral.99
-ffffffc008b96068 d .compoundliteral.101
-ffffffc008b96098 d .compoundliteral.103
-ffffffc008b960c8 d .compoundliteral.105
-ffffffc008b960f8 d .compoundliteral.107
-ffffffc008b96128 d .compoundliteral.109
-ffffffc008b96158 d .compoundliteral.111
-ffffffc008b96188 d .compoundliteral.113
-ffffffc008b961b8 d .compoundliteral.115
-ffffffc008b961e8 d .compoundliteral.117
-ffffffc008b96218 d .compoundliteral.119
-ffffffc008b96248 d .compoundliteral.121
-ffffffc008b96278 d .compoundliteral.123
-ffffffc008b962a8 d .compoundliteral.125
-ffffffc008b962d8 d .compoundliteral.127
-ffffffc008b96308 d .compoundliteral.129
-ffffffc008b96338 d .compoundliteral.131
-ffffffc008b96368 d .compoundliteral.133
-ffffffc008b96398 d .compoundliteral.135
-ffffffc008b963c8 d .compoundliteral.137
-ffffffc008b963f8 d .compoundliteral.139
-ffffffc008b96428 d .compoundliteral.141
-ffffffc008b96458 d .compoundliteral.143
-ffffffc008b96488 d .compoundliteral.145
-ffffffc008b964b8 d .compoundliteral.147
-ffffffc008b964e8 d .compoundliteral.149
-ffffffc008b96518 d .compoundliteral.151
-ffffffc008b96548 d .compoundliteral.153
-ffffffc008b96578 d .compoundliteral.155
-ffffffc008b965a8 d .compoundliteral.157
-ffffffc008b965d8 d .compoundliteral.159
-ffffffc008b96608 d .compoundliteral.161
-ffffffc008b96638 d .compoundliteral.163
-ffffffc008b96668 d .compoundliteral.165
-ffffffc008b96698 d .compoundliteral.167
-ffffffc008b966c8 d .compoundliteral.169
-ffffffc008b966f8 d .compoundliteral.171
-ffffffc008b96728 d .compoundliteral.173
-ffffffc008b96758 d .compoundliteral.175
-ffffffc008b96788 d .compoundliteral.177
-ffffffc008b967b8 d .compoundliteral.179
-ffffffc008b967e8 d .compoundliteral.181
-ffffffc008b96818 d armv8_pmuv3_format_attrs
-ffffffc008b96838 d format_attr_event
-ffffffc008b96858 d format_attr_long
-ffffffc008b96878 d format_attr_rdpmc
-ffffffc008b96898 d armv8_pmuv3_caps_attrs
-ffffffc008b968b8 d dev_attr_slots
-ffffffc008b968d8 d dev_attr_bus_slots
-ffffffc008b968f8 d dev_attr_bus_width
-ffffffc008b96918 d armv8_pmu_sysctl_table
-ffffffc008b96998 D __SCK__pv_steal_clock
-ffffffc008b969a0 d dev_attr_mte_tcf_preferred
-ffffffc008b969c0 d uprobes_break_hook
-ffffffc008b969e0 d uprobes_step_hook
-ffffffc008b969f8 d __do_kernel_fault._rs
-ffffffc008b96a20 d ioremap_guard_lock
-ffffffc008b96a40 d ioremap_phys_range_hook._rs
-ffffffc008b96a68 d iounmap_phys_range_hook._rs
-ffffffc008b96a90 d iounmap_phys_range_hook._rs.5
-ffffffc008b96ab8 D __boot_cpu_mode
-ffffffc008b96ac0 d fixmap_lock
-ffffffc008b96ae0 d prevent_bootmem_remove_nb
-ffffffc008b96af8 d new_context.cur_idx
-ffffffc008b96b00 D __SCK__tp_func_task_newtask
-ffffffc008b96b08 D __SCK__tp_func_task_rename
-ffffffc008b96b10 d trace_event_fields_task_newtask
-ffffffc008b96bd8 d trace_event_type_funcs_task_newtask
-ffffffc008b96bf8 d print_fmt_task_newtask
-ffffffc008b96c68 d event_task_newtask
-ffffffc008b96cf8 d trace_event_fields_task_rename
-ffffffc008b96dc0 d trace_event_type_funcs_task_rename
-ffffffc008b96de0 d print_fmt_task_rename
-ffffffc008b96e50 d event_task_rename
-ffffffc008b96ee0 d default_dump_filter
-ffffffc008b96ee8 D panic_on_oops
-ffffffc008b96eec D panic_timeout
-ffffffc008b96ef0 d kern_panic_table
-ffffffc008b96fb0 d warn_count_attr
-ffffffc008b96fd0 D panic_cpu
-ffffffc008b96fd8 D __SCK__tp_func_cpuhp_enter
-ffffffc008b96fe0 D __SCK__tp_func_cpuhp_multi_enter
-ffffffc008b96fe8 D __SCK__tp_func_cpuhp_exit
-ffffffc008b96ff0 d trace_event_fields_cpuhp_enter
-ffffffc008b970b8 d trace_event_type_funcs_cpuhp_enter
-ffffffc008b970d8 d print_fmt_cpuhp_enter
-ffffffc008b97130 d event_cpuhp_enter
-ffffffc008b971c0 d trace_event_fields_cpuhp_multi_enter
-ffffffc008b97288 d trace_event_type_funcs_cpuhp_multi_enter
-ffffffc008b972a8 d print_fmt_cpuhp_multi_enter
-ffffffc008b97300 d event_cpuhp_multi_enter
-ffffffc008b97390 d trace_event_fields_cpuhp_exit
-ffffffc008b97458 d trace_event_type_funcs_cpuhp_exit
-ffffffc008b97478 d print_fmt_cpuhp_exit
-ffffffc008b974d0 d event_cpuhp_exit
-ffffffc008b97560 d cpu_add_remove_lock
-ffffffc008b97580 d cpu_hotplug_lock
-ffffffc008b975e0 d cpuhp_threads
-ffffffc008b97640 d cpuhp_state_mutex
-ffffffc008b97660 d cpu_hotplug_pm_sync_init.cpu_hotplug_pm_callback_nb
-ffffffc008b97678 d cpuhp_hp_states
-ffffffc008b99b80 d cpuhp_smt_attrs
-ffffffc008b99b98 d dev_attr_control
-ffffffc008b99bb8 d dev_attr_control
-ffffffc008b99bd8 d dev_attr_active
-ffffffc008b99bf8 d dev_attr_active
-ffffffc008b99c18 d dev_attr_active
-ffffffc008b99c38 d cpuhp_cpu_root_attrs
-ffffffc008b99c48 d dev_attr_states
-ffffffc008b99c68 d cpuhp_cpu_attrs
-ffffffc008b99c88 d dev_attr_state
-ffffffc008b99ca8 d dev_attr_state
-ffffffc008b99cc8 d dev_attr_target
-ffffffc008b99ce8 d dev_attr_fail
-ffffffc008b99d08 d oops_limit
-ffffffc008b99d10 d kern_exit_table
-ffffffc008b99d90 d oops_count_attr
-ffffffc008b99db0 d check_stack_usage.lowest_to_date
-ffffffc008b99db8 D __SCK__tp_func_irq_handler_entry
-ffffffc008b99dc0 D __SCK__tp_func_irq_handler_exit
-ffffffc008b99dc8 D __SCK__tp_func_softirq_entry
-ffffffc008b99dd0 D __SCK__tp_func_softirq_exit
-ffffffc008b99dd8 D __SCK__tp_func_softirq_raise
-ffffffc008b99de0 D __SCK__tp_func_tasklet_entry
-ffffffc008b99de8 D __SCK__tp_func_tasklet_exit
-ffffffc008b99df0 d trace_event_fields_irq_handler_entry
-ffffffc008b99e68 d trace_event_type_funcs_irq_handler_entry
-ffffffc008b99e88 d print_fmt_irq_handler_entry
-ffffffc008b99eb8 d event_irq_handler_entry
-ffffffc008b99f48 d trace_event_fields_irq_handler_exit
-ffffffc008b99fc0 d trace_event_type_funcs_irq_handler_exit
-ffffffc008b99fe0 d print_fmt_irq_handler_exit
-ffffffc008b9a020 d event_irq_handler_exit
-ffffffc008b9a0b0 d trace_event_fields_softirq
-ffffffc008b9a100 d trace_event_type_funcs_softirq
-ffffffc008b9a120 d print_fmt_softirq
-ffffffc008b9a280 d event_softirq_entry
-ffffffc008b9a310 d event_softirq_exit
-ffffffc008b9a3a0 d event_softirq_raise
-ffffffc008b9a430 d trace_event_fields_tasklet
-ffffffc008b9a480 d trace_event_type_funcs_tasklet
-ffffffc008b9a4a0 d print_fmt_tasklet
-ffffffc008b9a4c0 d event_tasklet_entry
-ffffffc008b9a550 d event_tasklet_exit
-ffffffc008b9a5e0 d softirq_threads
-ffffffc008b9a640 D ioport_resource
-ffffffc008b9a680 D iomem_resource
-ffffffc008b9a6c0 d muxed_resource_wait
-ffffffc008b9a6d8 d iomem_fs_type
-ffffffc008b9a720 d proc_do_static_key.static_key_mutex
-ffffffc008b9a740 d kernel_base_table.llvm.11239895258556977041
-ffffffc008b9a7c0 d vm_base_table.llvm.11239895258556977041
-ffffffc008b9a840 d debug_base_table.llvm.11239895258556977041
-ffffffc008b9a8c0 d dev_base_table.llvm.11239895258556977041
-ffffffc008b9a940 d sysctl_writes_strict
-ffffffc008b9a948 d kern_table
-ffffffc008b9b0c8 d vm_table
-ffffffc008b9b7c8 d debug_table
-ffffffc008b9b848 D file_caps_enabled
-ffffffc008b9b850 D init_user_ns
-ffffffc008b9ba68 D root_user
-ffffffc008b9bb00 D __SCK__tp_func_signal_generate
-ffffffc008b9bb08 D __SCK__tp_func_signal_deliver
-ffffffc008b9bb10 d trace_event_fields_signal_generate
-ffffffc008b9bc50 d trace_event_type_funcs_signal_generate
-ffffffc008b9bc70 d print_fmt_signal_generate
-ffffffc008b9bcf8 d event_signal_generate
-ffffffc008b9bd88 d trace_event_fields_signal_deliver
-ffffffc008b9be78 d trace_event_type_funcs_signal_deliver
-ffffffc008b9be98 d print_fmt_signal_deliver
-ffffffc008b9bf10 d event_signal_deliver
-ffffffc008b9bfa0 d print_dropped_signal.ratelimit_state
-ffffffc008b9bfc8 D overflowuid
-ffffffc008b9bfcc D overflowgid
-ffffffc008b9bfd0 D fs_overflowuid
-ffffffc008b9bfd4 D fs_overflowgid
-ffffffc008b9bfd8 D uts_sem
-ffffffc008b9c008 d umhelper_sem.llvm.3644098234326173554
-ffffffc008b9c038 d usermodehelper_disabled_waitq.llvm.3644098234326173554
-ffffffc008b9c050 d usermodehelper_disabled.llvm.3644098234326173554
-ffffffc008b9c058 d running_helpers_waitq
-ffffffc008b9c070 d usermodehelper_bset
-ffffffc008b9c078 d usermodehelper_inheritable
-ffffffc008b9c080 D usermodehelper_table
-ffffffc008b9c140 D __SCK__tp_func_workqueue_queue_work
-ffffffc008b9c148 D __SCK__tp_func_workqueue_activate_work
-ffffffc008b9c150 D __SCK__tp_func_workqueue_execute_start
-ffffffc008b9c158 D __SCK__tp_func_workqueue_execute_end
-ffffffc008b9c160 d trace_event_fields_workqueue_queue_work
-ffffffc008b9c250 d trace_event_type_funcs_workqueue_queue_work
-ffffffc008b9c270 d print_fmt_workqueue_queue_work
-ffffffc008b9c2f8 d event_workqueue_queue_work
-ffffffc008b9c388 d trace_event_fields_workqueue_activate_work
-ffffffc008b9c3d8 d trace_event_type_funcs_workqueue_activate_work
-ffffffc008b9c3f8 d print_fmt_workqueue_activate_work
-ffffffc008b9c418 d event_workqueue_activate_work
-ffffffc008b9c4a8 d trace_event_fields_workqueue_execute_start
-ffffffc008b9c520 d trace_event_type_funcs_workqueue_execute_start
-ffffffc008b9c540 d print_fmt_workqueue_execute_start
-ffffffc008b9c580 d event_workqueue_execute_start
-ffffffc008b9c610 d trace_event_fields_workqueue_execute_end
-ffffffc008b9c688 d trace_event_type_funcs_workqueue_execute_end
-ffffffc008b9c6a8 d print_fmt_workqueue_execute_end
-ffffffc008b9c6e8 d event_workqueue_execute_end
-ffffffc008b9c778 d wq_pool_mutex
-ffffffc008b9c798 d workqueues
-ffffffc008b9c7a8 d worker_pool_idr
-ffffffc008b9c7c0 d wq_pool_attach_mutex
-ffffffc008b9c7e0 d wq_subsys
-ffffffc008b9c898 d wq_sysfs_unbound_attrs
-ffffffc008b9c938 d wq_watchdog_touched
-ffffffc008b9c940 d wq_watchdog_thresh
-ffffffc008b9c948 d __cancel_work_timer.cancel_waitq
-ffffffc008b9c960 d wq_sysfs_cpumask_attr
-ffffffc008b9c980 d wq_sysfs_groups
-ffffffc008b9c990 d wq_sysfs_attrs
-ffffffc008b9c9a8 d dev_attr_per_cpu
-ffffffc008b9c9c8 d dev_attr_max_active
-ffffffc008b9c9e8 D init_pid_ns
-ffffffc008b9ca68 D pid_max
-ffffffc008b9ca6c D pid_max_min
-ffffffc008b9ca70 D pid_max_max
-ffffffc008b9ca78 D init_struct_pid
-ffffffc008b9cae8 D text_mutex
-ffffffc008b9cb08 d param_lock
-ffffffc008b9cb28 D module_ktype
-ffffffc008b9cb58 d kmalloced_params
-ffffffc008b9cb68 d kthread_create_list
-ffffffc008b9cb78 D init_nsproxy
-ffffffc008b9cbc0 D reboot_notifier_list
-ffffffc008b9cbf8 d kernel_attrs
-ffffffc008b9cc48 d fscaps_attr
-ffffffc008b9cc68 d uevent_seqnum_attr
-ffffffc008b9cc88 d profiling_attr
-ffffffc008b9cca8 d kexec_loaded_attr
-ffffffc008b9ccc8 d kexec_crash_loaded_attr
-ffffffc008b9cce8 d kexec_crash_size_attr
-ffffffc008b9cd08 d vmcoreinfo_attr
-ffffffc008b9cd28 d rcu_expedited_attr
-ffffffc008b9cd48 d rcu_normal_attr
-ffffffc008b9cd68 d init_groups
-ffffffc008b9cd70 D init_cred
-ffffffc008b9cdf8 D panic_reboot_mode
-ffffffc008b9cdfc D reboot_default
-ffffffc008b9ce00 D reboot_type
-ffffffc008b9ce08 d power_off_prep_handler_list
-ffffffc008b9ce40 d restart_prep_handler_list
-ffffffc008b9ce78 D system_transition_mutex
-ffffffc008b9ce98 d ctrl_alt_del.cad_work
-ffffffc008b9ceb8 d C_A_D
-ffffffc008b9cec0 d poweroff_work
-ffffffc008b9cee0 d poweroff_work
-ffffffc008b9cf00 d reboot_work.llvm.5055213281200411774
-ffffffc008b9cf20 d hw_protection_shutdown.allow_proceed
-ffffffc008b9cf24 d poweroff_cmd
-ffffffc008b9d028 d run_cmd.envp
-ffffffc008b9d040 d hw_failure_emergency_poweroff_work
-ffffffc008b9d098 d reboot_attrs
-ffffffc008b9d0b0 d reboot_mode_attr
-ffffffc008b9d0d0 d reboot_cpu_attr
-ffffffc008b9d0f0 d kern_reboot_table
-ffffffc008b9d1b0 d next_cookie
-ffffffc008b9d1b8 d async_global_pending
-ffffffc008b9d1c8 d async_dfl_domain.llvm.15499227471348059562
-ffffffc008b9d1e0 d async_done
-ffffffc008b9d1f8 d smpboot_threads_lock
-ffffffc008b9d218 d hotplug_threads
-ffffffc008b9d228 D init_ucounts
-ffffffc008b9d2b8 d set_root
-ffffffc008b9d330 d user_table
-ffffffc008b9d5f0 d ue_int_max
-ffffffc008b9d5f8 D __SCK__tp_func_sched_kthread_stop
-ffffffc008b9d600 D __SCK__tp_func_sched_kthread_stop_ret
-ffffffc008b9d608 D __SCK__tp_func_sched_kthread_work_queue_work
-ffffffc008b9d610 D __SCK__tp_func_sched_kthread_work_execute_start
-ffffffc008b9d618 D __SCK__tp_func_sched_kthread_work_execute_end
-ffffffc008b9d620 D __SCK__tp_func_sched_waking
-ffffffc008b9d628 D __SCK__tp_func_sched_wakeup
-ffffffc008b9d630 D __SCK__tp_func_sched_wakeup_new
-ffffffc008b9d638 D __SCK__tp_func_sched_switch
-ffffffc008b9d640 D __SCK__tp_func_sched_migrate_task
-ffffffc008b9d648 D __SCK__tp_func_sched_process_free
-ffffffc008b9d650 D __SCK__tp_func_sched_process_exit
-ffffffc008b9d658 D __SCK__tp_func_sched_wait_task
-ffffffc008b9d660 D __SCK__tp_func_sched_process_wait
-ffffffc008b9d668 D __SCK__tp_func_sched_process_fork
-ffffffc008b9d670 D __SCK__tp_func_sched_process_exec
-ffffffc008b9d678 D __SCK__tp_func_sched_stat_wait
-ffffffc008b9d680 D __SCK__tp_func_sched_stat_sleep
-ffffffc008b9d688 D __SCK__tp_func_sched_stat_iowait
-ffffffc008b9d690 D __SCK__tp_func_sched_stat_blocked
-ffffffc008b9d698 D __SCK__tp_func_sched_blocked_reason
-ffffffc008b9d6a0 D __SCK__tp_func_sched_stat_runtime
-ffffffc008b9d6a8 D __SCK__tp_func_sched_pi_setprio
-ffffffc008b9d6b0 D __SCK__tp_func_sched_process_hang
-ffffffc008b9d6b8 D __SCK__tp_func_sched_move_numa
-ffffffc008b9d6c0 D __SCK__tp_func_sched_stick_numa
-ffffffc008b9d6c8 D __SCK__tp_func_sched_swap_numa
-ffffffc008b9d6d0 D __SCK__tp_func_sched_wake_idle_without_ipi
-ffffffc008b9d6d8 D __SCK__tp_func_pelt_cfs_tp
-ffffffc008b9d6e0 D __SCK__tp_func_pelt_rt_tp
-ffffffc008b9d6e8 D __SCK__tp_func_pelt_dl_tp
-ffffffc008b9d6f0 D __SCK__tp_func_pelt_thermal_tp
-ffffffc008b9d6f8 D __SCK__tp_func_pelt_irq_tp
-ffffffc008b9d700 D __SCK__tp_func_pelt_se_tp
-ffffffc008b9d708 D __SCK__tp_func_sched_cpu_capacity_tp
-ffffffc008b9d710 D __SCK__tp_func_sched_overutilized_tp
-ffffffc008b9d718 D __SCK__tp_func_sched_util_est_cfs_tp
-ffffffc008b9d720 D __SCK__tp_func_sched_util_est_se_tp
-ffffffc008b9d728 D __SCK__tp_func_sched_update_nr_running_tp
-ffffffc008b9d730 d trace_event_fields_sched_kthread_stop
-ffffffc008b9d7a8 d trace_event_type_funcs_sched_kthread_stop
-ffffffc008b9d7c8 d print_fmt_sched_kthread_stop
-ffffffc008b9d7f0 d event_sched_kthread_stop
-ffffffc008b9d880 d trace_event_fields_sched_kthread_stop_ret
-ffffffc008b9d8d0 d trace_event_type_funcs_sched_kthread_stop_ret
-ffffffc008b9d8f0 d print_fmt_sched_kthread_stop_ret
-ffffffc008b9d908 d event_sched_kthread_stop_ret
-ffffffc008b9d998 d trace_event_fields_sched_kthread_work_queue_work
-ffffffc008b9da38 d trace_event_type_funcs_sched_kthread_work_queue_work
-ffffffc008b9da58 d print_fmt_sched_kthread_work_queue_work
-ffffffc008b9daa8 d event_sched_kthread_work_queue_work
-ffffffc008b9db38 d trace_event_fields_sched_kthread_work_execute_start
-ffffffc008b9dbb0 d trace_event_type_funcs_sched_kthread_work_execute_start
-ffffffc008b9dbd0 d print_fmt_sched_kthread_work_execute_start
-ffffffc008b9dc10 d event_sched_kthread_work_execute_start
-ffffffc008b9dca0 d trace_event_fields_sched_kthread_work_execute_end
-ffffffc008b9dd18 d trace_event_type_funcs_sched_kthread_work_execute_end
-ffffffc008b9dd38 d print_fmt_sched_kthread_work_execute_end
-ffffffc008b9dd78 d event_sched_kthread_work_execute_end
-ffffffc008b9de08 d trace_event_fields_sched_wakeup_template
-ffffffc008b9ded0 d trace_event_type_funcs_sched_wakeup_template
-ffffffc008b9def0 d print_fmt_sched_wakeup_template
-ffffffc008b9df50 d event_sched_waking
-ffffffc008b9dfe0 d event_sched_wakeup
-ffffffc008b9e070 d event_sched_wakeup_new
-ffffffc008b9e100 d trace_event_fields_sched_switch
-ffffffc008b9e240 d trace_event_type_funcs_sched_switch
-ffffffc008b9e260 d print_fmt_sched_switch
-ffffffc008b9e598 d event_sched_switch
-ffffffc008b9e628 d trace_event_fields_sched_migrate_task
-ffffffc008b9e718 d trace_event_type_funcs_sched_migrate_task
-ffffffc008b9e738 d print_fmt_sched_migrate_task
-ffffffc008b9e7a8 d event_sched_migrate_task
-ffffffc008b9e838 d trace_event_fields_sched_process_template
-ffffffc008b9e8d8 d trace_event_type_funcs_sched_process_template
-ffffffc008b9e8f8 d print_fmt_sched_process_template
-ffffffc008b9e938 d event_sched_process_free
-ffffffc008b9e9c8 d event_sched_process_exit
-ffffffc008b9ea58 d event_sched_wait_task
-ffffffc008b9eae8 d trace_event_fields_sched_process_wait
-ffffffc008b9eb88 d trace_event_type_funcs_sched_process_wait
-ffffffc008b9eba8 d print_fmt_sched_process_wait
-ffffffc008b9ebe8 d event_sched_process_wait
-ffffffc008b9ec78 d trace_event_fields_sched_process_fork
-ffffffc008b9ed40 d trace_event_type_funcs_sched_process_fork
-ffffffc008b9ed60 d print_fmt_sched_process_fork
-ffffffc008b9edd0 d event_sched_process_fork
-ffffffc008b9ee60 d trace_event_fields_sched_process_exec
-ffffffc008b9ef00 d trace_event_type_funcs_sched_process_exec
-ffffffc008b9ef20 d print_fmt_sched_process_exec
-ffffffc008b9ef70 d event_sched_process_exec
-ffffffc008b9f000 d trace_event_fields_sched_stat_template
-ffffffc008b9f0a0 d trace_event_type_funcs_sched_stat_template
-ffffffc008b9f0c0 d print_fmt_sched_stat_template
-ffffffc008b9f118 d event_sched_stat_wait
-ffffffc008b9f1a8 d event_sched_stat_sleep
-ffffffc008b9f238 d event_sched_stat_iowait
-ffffffc008b9f2c8 d event_sched_stat_blocked
-ffffffc008b9f358 d trace_event_fields_sched_blocked_reason
-ffffffc008b9f3f8 d trace_event_type_funcs_sched_blocked_reason
-ffffffc008b9f418 d print_fmt_sched_blocked_reason
-ffffffc008b9f460 d event_sched_blocked_reason
-ffffffc008b9f4f0 d trace_event_fields_sched_stat_runtime
-ffffffc008b9f5b8 d trace_event_type_funcs_sched_stat_runtime
-ffffffc008b9f5d8 d print_fmt_sched_stat_runtime
-ffffffc008b9f668 d event_sched_stat_runtime
-ffffffc008b9f6f8 d trace_event_fields_sched_pi_setprio
-ffffffc008b9f7c0 d trace_event_type_funcs_sched_pi_setprio
-ffffffc008b9f7e0 d print_fmt_sched_pi_setprio
-ffffffc008b9f838 d event_sched_pi_setprio
-ffffffc008b9f8c8 d trace_event_fields_sched_process_hang
-ffffffc008b9f940 d trace_event_type_funcs_sched_process_hang
-ffffffc008b9f960 d print_fmt_sched_process_hang
-ffffffc008b9f988 d event_sched_process_hang
-ffffffc008b9fa18 d trace_event_fields_sched_move_numa
-ffffffc008b9fb58 d trace_event_type_funcs_sched_move_numa
-ffffffc008b9fb78 d print_fmt_sched_move_numa
-ffffffc008b9fc18 d event_sched_move_numa
-ffffffc008b9fca8 d trace_event_fields_sched_numa_pair_template
-ffffffc008b9fe60 d trace_event_type_funcs_sched_numa_pair_template
-ffffffc008b9fe80 d print_fmt_sched_numa_pair_template
-ffffffc008b9ff88 d event_sched_stick_numa
-ffffffc008ba0018 d event_sched_swap_numa
-ffffffc008ba00a8 d trace_event_fields_sched_wake_idle_without_ipi
-ffffffc008ba00f8 d trace_event_type_funcs_sched_wake_idle_without_ipi
-ffffffc008ba0118 d print_fmt_sched_wake_idle_without_ipi
-ffffffc008ba0130 d event_sched_wake_idle_without_ipi
-ffffffc008ba01c0 d sched_core_sysctls
-ffffffc008ba0240 D balance_push_callback
-ffffffc008ba0250 d sched_nr_latency
-ffffffc008ba0254 d normalized_sysctl_sched_min_granularity
-ffffffc008ba0258 d normalized_sysctl_sched_latency
-ffffffc008ba025c d normalized_sysctl_sched_wakeup_granularity
-ffffffc008ba0260 d sched_fair_sysctls
-ffffffc008ba02e0 D sysctl_sched_latency
-ffffffc008ba02e4 D sysctl_sched_min_granularity
-ffffffc008ba02e8 D sysctl_sched_idle_min_granularity
-ffffffc008ba02ec D sysctl_sched_wakeup_granularity
-ffffffc008ba02f0 D sysctl_sched_tunable_scaling
-ffffffc008ba02f8 d sched_pelt_multiplier.mutex
-ffffffc008ba0318 d sysctl_sched_pelt_multiplier
-ffffffc008ba031c d sysctl_sched_dl_period_max
-ffffffc008ba0320 d sysctl_sched_dl_period_min
-ffffffc008ba0328 d sched_rt_sysctls
-ffffffc008ba0428 d sysctl_sched_rr_timeslice
-ffffffc008ba0430 d sched_rt_handler.mutex
-ffffffc008ba0450 d sched_rr_handler.mutex
-ffffffc008ba0470 d sched_pelt_sysctls
-ffffffc008ba04f0 d sched_dl_sysctls
-ffffffc008ba05b0 D sched_rr_timeslice
-ffffffc008ba05b4 D sysctl_sched_rt_runtime
-ffffffc008ba05b8 D sysctl_sched_rt_period
-ffffffc008ba05c0 d resched_latency_warn.latency_check_ratelimit
-ffffffc008ba05e8 d sched_domain_topology
-ffffffc008ba05f0 D psi_cgroups_enabled
-ffffffc008ba0600 D psi_system
-ffffffc008ba08e0 d psi_enable
-ffffffc008ba08e4 d default_relax_domain_level
-ffffffc008ba08e8 d default_topology
-ffffffc008ba09a8 d asym_cap_list
-ffffffc008ba09b8 D sched_domains_mutex
-ffffffc008ba09d8 D sched_feat_keys
-ffffffc008ba0b78 D __SCK__tp_func_contention_begin
-ffffffc008ba0b80 D __SCK__tp_func_contention_end
-ffffffc008ba0b88 d trace_event_fields_contention_begin
-ffffffc008ba0c00 d trace_event_type_funcs_contention_begin
-ffffffc008ba0c20 d print_fmt_contention_begin
-ffffffc008ba0cf0 d event_contention_begin
-ffffffc008ba0d80 d trace_event_fields_contention_end
-ffffffc008ba0df8 d trace_event_type_funcs_contention_end
-ffffffc008ba0e18 d print_fmt_contention_end
-ffffffc008ba0e40 d event_contention_end
-ffffffc008ba0ed0 D max_lock_depth
-ffffffc008ba0ed8 d pm_chain_head.llvm.7432309336602959548
-ffffffc008ba0f10 d attr_groups
-ffffffc008ba0f28 d g
-ffffffc008ba0f70 d state_attr
-ffffffc008ba0f90 d pm_async_attr
-ffffffc008ba0fb0 d wakeup_count_attr
-ffffffc008ba0fd0 d mem_sleep_attr
-ffffffc008ba0ff0 d sync_on_suspend_attr
-ffffffc008ba1010 d wake_lock_attr
-ffffffc008ba1030 d wake_unlock_attr
-ffffffc008ba1050 d pm_freeze_timeout_attr
-ffffffc008ba1070 d suspend_attrs
-ffffffc008ba10e0 d success
-ffffffc008ba1100 d fail
-ffffffc008ba1120 d failed_freeze
-ffffffc008ba1140 d failed_prepare
-ffffffc008ba1160 d failed_suspend
-ffffffc008ba1180 d failed_suspend_late
-ffffffc008ba11a0 d failed_suspend_noirq
-ffffffc008ba11c0 d failed_resume
-ffffffc008ba11e0 d failed_resume_early
-ffffffc008ba1200 d failed_resume_noirq
-ffffffc008ba1220 d last_failed_dev
-ffffffc008ba1240 d last_failed_errno
-ffffffc008ba1260 d last_failed_step
-ffffffc008ba1280 D pm_async_enabled
-ffffffc008ba1284 D sync_on_suspend_enabled
-ffffffc008ba1288 d vt_switch_mutex
-ffffffc008ba12a8 d pm_vt_switch_list
-ffffffc008ba12b8 D mem_sleep_default
-ffffffc008ba12c0 d s2idle_wait_head
-ffffffc008ba12d8 D mem_sleep_current
-ffffffc008ba12e0 d wakelocks_lock
-ffffffc008ba1300 d parent_irqs
-ffffffc008ba1310 d leaf_irqs
-ffffffc008ba1320 d wakeup_reason_pm_notifier_block
-ffffffc008ba1338 d attr_group
-ffffffc008ba1360 d attrs
-ffffffc008ba1378 d resume_reason
-ffffffc008ba1398 d suspend_time
-ffffffc008ba13b8 D __SCK__tp_func_console
-ffffffc008ba13c0 d trace_event_fields_console
-ffffffc008ba1410 d trace_event_type_funcs_console
-ffffffc008ba1430 d print_fmt_console
-ffffffc008ba1448 d event_console
-ffffffc008ba14d8 D log_wait
-ffffffc008ba14f0 d log_buf
-ffffffc008ba14f8 d log_buf_len
-ffffffc008ba1500 d prb
-ffffffc008ba1508 d printk_rb_static
-ffffffc008ba1560 d printk_time
-ffffffc008ba1564 d do_syslog.saved_console_loglevel
-ffffffc008ba1568 d syslog_lock
-ffffffc008ba1588 D console_suspend_enabled
-ffffffc008ba1590 d console_sem
-ffffffc008ba15a8 d preferred_console
-ffffffc008ba15b0 d dump_list
-ffffffc008ba15c0 d printk_cpu_sync_owner
-ffffffc008ba15c8 d _printk_rb_static_descs
-ffffffc008bb95c8 d _printk_rb_static_infos
-ffffffc008c115c8 D console_printk
-ffffffc008c115d8 D printk_ratelimit_state
-ffffffc008c11600 D devkmsg_log_str
-ffffffc008c11610 d printk_sysctls.llvm.8424786742087844799
-ffffffc008c11810 D nr_irqs
-ffffffc008c11818 d irq_desc_tree.llvm.13732933371526211367
-ffffffc008c11828 d sparse_irq_lock.llvm.13732933371526211367
-ffffffc008c11848 d irq_kobj_type
-ffffffc008c11878 d irq_groups
-ffffffc008c11888 d irq_attrs
-ffffffc008c118c8 d per_cpu_count_attr
-ffffffc008c118e8 d chip_name_attr
-ffffffc008c11908 d hwirq_attr
-ffffffc008c11928 d type_attr
-ffffffc008c11948 d wakeup_attr
-ffffffc008c11968 d name_attr
-ffffffc008c11988 d actions_attr
-ffffffc008c119a8 d print_irq_desc.ratelimit
-ffffffc008c119d0 d print_irq_desc.ratelimit
-ffffffc008c119f8 d poll_spurious_irq_timer
-ffffffc008c11a20 d report_bad_irq.count
-ffffffc008c11a28 d resend_tasklet
-ffffffc008c11a80 D chained_action
-ffffffc008c11b00 D no_irq_chip
-ffffffc008c11c08 D dummy_irq_chip
-ffffffc008c11d10 d probing_active
-ffffffc008c11d30 d irq_domain_mutex
-ffffffc008c11d50 d irq_domain_list
-ffffffc008c11d60 d register_irq_proc.register_lock
-ffffffc008c11d80 d migrate_one_irq._rs
-ffffffc008c11da8 d irq_pm_syscore_ops
-ffffffc008c11dd0 d msi_domain_ops_default
-ffffffc008c11e10 D __SCK__tp_func_rcu_utilization
-ffffffc008c11e18 D __SCK__tp_func_rcu_grace_period
-ffffffc008c11e20 D __SCK__tp_func_rcu_future_grace_period
-ffffffc008c11e28 D __SCK__tp_func_rcu_grace_period_init
-ffffffc008c11e30 D __SCK__tp_func_rcu_exp_grace_period
-ffffffc008c11e38 D __SCK__tp_func_rcu_exp_funnel_lock
-ffffffc008c11e40 D __SCK__tp_func_rcu_nocb_wake
-ffffffc008c11e48 D __SCK__tp_func_rcu_preempt_task
-ffffffc008c11e50 D __SCK__tp_func_rcu_unlock_preempted_task
-ffffffc008c11e58 D __SCK__tp_func_rcu_quiescent_state_report
-ffffffc008c11e60 D __SCK__tp_func_rcu_fqs
-ffffffc008c11e68 D __SCK__tp_func_rcu_stall_warning
-ffffffc008c11e70 D __SCK__tp_func_rcu_dyntick
-ffffffc008c11e78 D __SCK__tp_func_rcu_callback
-ffffffc008c11e80 D __SCK__tp_func_rcu_segcb_stats
-ffffffc008c11e88 D __SCK__tp_func_rcu_kvfree_callback
-ffffffc008c11e90 D __SCK__tp_func_rcu_batch_start
-ffffffc008c11e98 D __SCK__tp_func_rcu_invoke_callback
-ffffffc008c11ea0 D __SCK__tp_func_rcu_invoke_kvfree_callback
-ffffffc008c11ea8 D __SCK__tp_func_rcu_invoke_kfree_bulk_callback
-ffffffc008c11eb0 D __SCK__tp_func_rcu_batch_end
-ffffffc008c11eb8 D __SCK__tp_func_rcu_torture_read
-ffffffc008c11ec0 D __SCK__tp_func_rcu_barrier
-ffffffc008c11ec8 d trace_event_fields_rcu_utilization
-ffffffc008c11f18 d trace_event_type_funcs_rcu_utilization
-ffffffc008c11f38 d print_fmt_rcu_utilization
-ffffffc008c11f48 d event_rcu_utilization
-ffffffc008c11fd8 d trace_event_fields_rcu_grace_period
-ffffffc008c12078 d trace_event_type_funcs_rcu_grace_period
-ffffffc008c12098 d print_fmt_rcu_grace_period
-ffffffc008c120d0 d event_rcu_grace_period
-ffffffc008c12160 d trace_event_fields_rcu_future_grace_period
-ffffffc008c122a0 d trace_event_type_funcs_rcu_future_grace_period
-ffffffc008c122c0 d print_fmt_rcu_future_grace_period
-ffffffc008c12348 d event_rcu_future_grace_period
-ffffffc008c123d8 d trace_event_fields_rcu_grace_period_init
-ffffffc008c124f0 d trace_event_type_funcs_rcu_grace_period_init
-ffffffc008c12510 d print_fmt_rcu_grace_period_init
-ffffffc008c12578 d event_rcu_grace_period_init
-ffffffc008c12608 d trace_event_fields_rcu_exp_grace_period
-ffffffc008c126a8 d trace_event_type_funcs_rcu_exp_grace_period
-ffffffc008c126c8 d print_fmt_rcu_exp_grace_period
-ffffffc008c12700 d event_rcu_exp_grace_period
-ffffffc008c12790 d trace_event_fields_rcu_exp_funnel_lock
-ffffffc008c12880 d trace_event_type_funcs_rcu_exp_funnel_lock
-ffffffc008c128a0 d print_fmt_rcu_exp_funnel_lock
-ffffffc008c128f8 d event_rcu_exp_funnel_lock
-ffffffc008c12988 d trace_event_fields_rcu_nocb_wake
-ffffffc008c12a28 d trace_event_type_funcs_rcu_nocb_wake
-ffffffc008c12a48 d print_fmt_rcu_nocb_wake
-ffffffc008c12a78 d event_rcu_nocb_wake
-ffffffc008c12b08 d trace_event_fields_rcu_preempt_task
-ffffffc008c12ba8 d trace_event_type_funcs_rcu_preempt_task
-ffffffc008c12bc8 d print_fmt_rcu_preempt_task
-ffffffc008c12c00 d event_rcu_preempt_task
-ffffffc008c12c90 d trace_event_fields_rcu_unlock_preempted_task
-ffffffc008c12d30 d trace_event_type_funcs_rcu_unlock_preempted_task
-ffffffc008c12d50 d print_fmt_rcu_unlock_preempted_task
-ffffffc008c12d88 d event_rcu_unlock_preempted_task
-ffffffc008c12e18 d trace_event_fields_rcu_quiescent_state_report
-ffffffc008c12f80 d trace_event_type_funcs_rcu_quiescent_state_report
-ffffffc008c12fa0 d print_fmt_rcu_quiescent_state_report
-ffffffc008c13028 d event_rcu_quiescent_state_report
-ffffffc008c130b8 d trace_event_fields_rcu_fqs
-ffffffc008c13180 d trace_event_type_funcs_rcu_fqs
-ffffffc008c131a0 d print_fmt_rcu_fqs
-ffffffc008c131e8 d event_rcu_fqs
-ffffffc008c13278 d trace_event_fields_rcu_stall_warning
-ffffffc008c132f0 d trace_event_type_funcs_rcu_stall_warning
-ffffffc008c13310 d print_fmt_rcu_stall_warning
-ffffffc008c13330 d event_rcu_stall_warning
-ffffffc008c133c0 d trace_event_fields_rcu_dyntick
-ffffffc008c13488 d trace_event_type_funcs_rcu_dyntick
-ffffffc008c134a8 d print_fmt_rcu_dyntick
-ffffffc008c13508 d event_rcu_dyntick
-ffffffc008c13598 d trace_event_fields_rcu_callback
-ffffffc008c13660 d trace_event_type_funcs_rcu_callback
-ffffffc008c13680 d print_fmt_rcu_callback
-ffffffc008c136c8 d event_rcu_callback
-ffffffc008c13758 d trace_event_fields_rcu_segcb_stats
-ffffffc008c137f8 d trace_event_type_funcs_rcu_segcb_stats
-ffffffc008c13818 d print_fmt_rcu_segcb_stats
-ffffffc008c13918 d event_rcu_segcb_stats
-ffffffc008c139a8 d trace_event_fields_rcu_kvfree_callback
-ffffffc008c13a70 d trace_event_type_funcs_rcu_kvfree_callback
-ffffffc008c13a90 d print_fmt_rcu_kvfree_callback
-ffffffc008c13ae0 d event_rcu_kvfree_callback
-ffffffc008c13b70 d trace_event_fields_rcu_batch_start
-ffffffc008c13c10 d trace_event_type_funcs_rcu_batch_start
-ffffffc008c13c30 d print_fmt_rcu_batch_start
-ffffffc008c13c70 d event_rcu_batch_start
-ffffffc008c13d00 d trace_event_fields_rcu_invoke_callback
-ffffffc008c13da0 d trace_event_type_funcs_rcu_invoke_callback
-ffffffc008c13dc0 d print_fmt_rcu_invoke_callback
-ffffffc008c13df8 d event_rcu_invoke_callback
-ffffffc008c13e88 d trace_event_fields_rcu_invoke_kvfree_callback
-ffffffc008c13f28 d trace_event_type_funcs_rcu_invoke_kvfree_callback
-ffffffc008c13f48 d print_fmt_rcu_invoke_kvfree_callback
-ffffffc008c13f88 d event_rcu_invoke_kvfree_callback
-ffffffc008c14018 d trace_event_fields_rcu_invoke_kfree_bulk_callback
-ffffffc008c140b8 d trace_event_type_funcs_rcu_invoke_kfree_bulk_callback
-ffffffc008c140d8 d print_fmt_rcu_invoke_kfree_bulk_callback
-ffffffc008c14120 d event_rcu_invoke_kfree_bulk_callback
-ffffffc008c141b0 d trace_event_fields_rcu_batch_end
-ffffffc008c142c8 d trace_event_type_funcs_rcu_batch_end
-ffffffc008c142e8 d print_fmt_rcu_batch_end
-ffffffc008c14388 d event_rcu_batch_end
-ffffffc008c14418 d trace_event_fields_rcu_torture_read
-ffffffc008c14508 d trace_event_type_funcs_rcu_torture_read
-ffffffc008c14528 d print_fmt_rcu_torture_read
-ffffffc008c14590 d event_rcu_torture_read
-ffffffc008c14620 d trace_event_fields_rcu_barrier
-ffffffc008c14710 d trace_event_type_funcs_rcu_barrier
-ffffffc008c14730 d print_fmt_rcu_barrier
-ffffffc008c14788 d event_rcu_barrier
-ffffffc008c14818 d rcu_expedited_nesting
-ffffffc008c14820 d rcu_tasks
-ffffffc008c14948 d tasks_rcu_exit_srcu
-ffffffc008c14ac8 d exp_holdoff
-ffffffc008c14ad0 d counter_wrap_check
-ffffffc008c14ad8 d convert_to_big
-ffffffc008c14ae0 d srcu_retry_check_delay
-ffffffc008c14ae8 d srcu_max_nodelay_phase
-ffffffc008c14af0 d srcu_max_nodelay
-ffffffc008c14af8 d srcu_boot_list
-ffffffc008c14b08 d rcu_name
-ffffffc008c14b14 d use_softirq
-ffffffc008c14b18 d rcu_fanout_leaf
-ffffffc008c14b1c D num_rcu_lvl
-ffffffc008c14b24 d kthread_prio
-ffffffc008c14b28 d rcu_min_cached_objs
-ffffffc008c14b2c d rcu_delay_page_cache_fill_msec
-ffffffc008c14b30 d blimit
-ffffffc008c14b38 d qhimark
-ffffffc008c14b40 d qlowmark
-ffffffc008c14b48 d qovld
-ffffffc008c14b50 d rcu_divisor
-ffffffc008c14b58 d rcu_resched_ns
-ffffffc008c14b60 d jiffies_till_sched_qs
-ffffffc008c14b68 d jiffies_till_first_fqs
-ffffffc008c14b70 d jiffies_till_next_fqs
-ffffffc008c14b80 d rcu_state
-ffffffc008c15540 d rcu_init.rcu_pm_notify_nb
-ffffffc008c15558 d qovld_calc
-ffffffc008c15560 d nocb_nobypass_lim_per_jiffy
-ffffffc008c15564 d rcu_nocb_gp_stride
-ffffffc008c15568 d rcu_cpu_thread_spec
-ffffffc008c155c8 d kfree_rcu_shrinker
-ffffffc008c15600 d rcu_panic_block
-ffffffc008c15618 D __SCK__tp_func_swiotlb_bounced
-ffffffc008c15620 d trace_event_fields_swiotlb_bounced
-ffffffc008c15710 d trace_event_type_funcs_swiotlb_bounced
-ffffffc008c15730 d print_fmt_swiotlb_bounced
-ffffffc008c157e0 d event_swiotlb_bounced
-ffffffc008c15870 d default_nslabs
-ffffffc008c15878 d swiotlb_tbl_map_single._rs
-ffffffc008c158a0 d swiotlb_tbl_map_single._rs.12
-ffffffc008c158c8 d task_exit_notifier.llvm.6352543502869275871
-ffffffc008c15900 d munmap_notifier.llvm.6352543502869275871
-ffffffc008c15938 d profile_flip_mutex
-ffffffc008c15958 D __SCK__tp_func_timer_init
-ffffffc008c15960 D __SCK__tp_func_timer_start
-ffffffc008c15968 D __SCK__tp_func_timer_expire_entry
-ffffffc008c15970 D __SCK__tp_func_timer_expire_exit
-ffffffc008c15978 D __SCK__tp_func_timer_cancel
-ffffffc008c15980 D __SCK__tp_func_hrtimer_init
-ffffffc008c15988 D __SCK__tp_func_hrtimer_start
-ffffffc008c15990 D __SCK__tp_func_hrtimer_expire_entry
-ffffffc008c15998 D __SCK__tp_func_hrtimer_expire_exit
-ffffffc008c159a0 D __SCK__tp_func_hrtimer_cancel
-ffffffc008c159a8 D __SCK__tp_func_itimer_state
-ffffffc008c159b0 D __SCK__tp_func_itimer_expire
-ffffffc008c159b8 D __SCK__tp_func_tick_stop
-ffffffc008c159c0 d trace_event_fields_timer_class
-ffffffc008c15a10 d trace_event_type_funcs_timer_class
-ffffffc008c15a30 d print_fmt_timer_class
-ffffffc008c15a48 d event_timer_init
-ffffffc008c15ad8 d trace_event_fields_timer_start
-ffffffc008c15bc8 d trace_event_type_funcs_timer_start
-ffffffc008c15be8 d print_fmt_timer_start
-ffffffc008c15d50 d event_timer_start
-ffffffc008c15de0 d trace_event_fields_timer_expire_entry
-ffffffc008c15ea8 d trace_event_type_funcs_timer_expire_entry
-ffffffc008c15ec8 d print_fmt_timer_expire_entry
-ffffffc008c15f28 d event_timer_expire_entry
-ffffffc008c15fb8 d event_timer_expire_exit
-ffffffc008c16048 d event_timer_cancel
-ffffffc008c160d8 d trace_event_fields_hrtimer_init
-ffffffc008c16178 d trace_event_type_funcs_hrtimer_init
-ffffffc008c16198 d print_fmt_hrtimer_init
-ffffffc008c163b0 d event_hrtimer_init
-ffffffc008c16440 d trace_event_fields_hrtimer_start
-ffffffc008c16530 d trace_event_type_funcs_hrtimer_start
-ffffffc008c16550 d print_fmt_hrtimer_start
-ffffffc008c16760 d event_hrtimer_start
-ffffffc008c167f0 d trace_event_fields_hrtimer_expire_entry
-ffffffc008c16890 d trace_event_type_funcs_hrtimer_expire_entry
-ffffffc008c168b0 d print_fmt_hrtimer_expire_entry
-ffffffc008c16910 d event_hrtimer_expire_entry
-ffffffc008c169a0 d trace_event_fields_hrtimer_class
-ffffffc008c169f0 d trace_event_type_funcs_hrtimer_class
-ffffffc008c16a10 d print_fmt_hrtimer_class
-ffffffc008c16a30 d event_hrtimer_expire_exit
-ffffffc008c16ac0 d event_hrtimer_cancel
-ffffffc008c16b50 d trace_event_fields_itimer_state
-ffffffc008c16c68 d trace_event_type_funcs_itimer_state
-ffffffc008c16c88 d print_fmt_itimer_state
-ffffffc008c16d40 d event_itimer_state
-ffffffc008c16dd0 d trace_event_fields_itimer_expire
-ffffffc008c16e70 d trace_event_type_funcs_itimer_expire
-ffffffc008c16e90 d print_fmt_itimer_expire
-ffffffc008c16ed8 d event_itimer_expire
-ffffffc008c16f68 d trace_event_fields_tick_stop
-ffffffc008c16fe0 d trace_event_type_funcs_tick_stop
-ffffffc008c17000 d print_fmt_tick_stop
-ffffffc008c17150 d event_tick_stop
-ffffffc008c171e0 d timer_update_work.llvm.2351303816454466117
-ffffffc008c17200 d timer_sysctl
-ffffffc008c17280 d sysctl_timer_migration
-ffffffc008c17288 d timer_keys_mutex
-ffffffc008c172a8 d hrtimer_work.llvm.12745106318145583229
-ffffffc008c17300 d migration_cpu_base
-ffffffc008c17540 d tk_fast_mono
-ffffffc008c175c0 d tk_fast_raw
-ffffffc008c17638 d dummy_clock
-ffffffc008c176d0 d timekeeping_syscore_ops
-ffffffc008c176f8 D tick_usec
-ffffffc008c17700 d time_status
-ffffffc008c17708 d time_maxerror
-ffffffc008c17710 d time_esterror
-ffffffc008c17718 d ntp_next_leap_sec
-ffffffc008c17720 d sync_work
-ffffffc008c17740 d time_constant
-ffffffc008c17748 d sync_hw_clock.offset_nsec
-ffffffc008c17750 d clocksource_list
-ffffffc008c17760 d clocksource_mutex
-ffffffc008c17780 d clocksource_subsys
-ffffffc008c17838 d device_clocksource
-ffffffc008c17b18 d clocksource_groups
-ffffffc008c17b28 d clocksource_attrs
-ffffffc008c17b48 d dev_attr_current_clocksource
-ffffffc008c17b68 d dev_attr_unbind_clocksource
-ffffffc008c17b88 d dev_attr_available_clocksource
-ffffffc008c17ba8 d clocksource_jiffies
-ffffffc008c17c40 D __SCK__tp_func_alarmtimer_suspend
-ffffffc008c17c48 D __SCK__tp_func_alarmtimer_fired
-ffffffc008c17c50 D __SCK__tp_func_alarmtimer_start
-ffffffc008c17c58 D __SCK__tp_func_alarmtimer_cancel
-ffffffc008c17c60 d trace_event_fields_alarmtimer_suspend
-ffffffc008c17cd8 d trace_event_type_funcs_alarmtimer_suspend
-ffffffc008c17cf8 d print_fmt_alarmtimer_suspend
-ffffffc008c17e10 d event_alarmtimer_suspend
-ffffffc008c17ea0 d trace_event_fields_alarm_class
-ffffffc008c17f68 d trace_event_type_funcs_alarm_class
-ffffffc008c17f88 d print_fmt_alarm_class
-ffffffc008c180c0 d event_alarmtimer_fired
-ffffffc008c18150 d event_alarmtimer_start
-ffffffc008c181e0 d event_alarmtimer_cancel
-ffffffc008c18270 d alarmtimer_driver
-ffffffc008c18338 d alarmtimer_rtc_interface
-ffffffc008c18360 d clockevents_mutex
-ffffffc008c18380 d clockevent_devices
-ffffffc008c18390 d clockevents_released
-ffffffc008c183a0 d clockevents_subsys
-ffffffc008c18458 d dev_attr_current_device
-ffffffc008c18478 d dev_attr_unbind_device
-ffffffc008c18498 d tick_bc_dev
-ffffffc008c18780 d ce_broadcast_hrtimer.llvm.9703126556494539923
-ffffffc008c18880 d irqtime
-ffffffc008c188c0 d cd
-ffffffc008c18930 d sched_clock_ops
-ffffffc008c18958 d futex_atomic_op_inuser._rs
-ffffffc008c18980 D setup_max_cpus
-ffffffc008c18988 d kexec_core_sysctls
-ffffffc008c18a08 D crashk_low_res
-ffffffc008c18a48 D crashk_res
-ffffffc008c18a88 d stop_cpus_mutex
-ffffffc008c18aa8 d cpu_stop_threads
-ffffffc008c18b08 d audit_failure
-ffffffc008c18b0c d audit_backlog_limit
-ffffffc008c18b10 d audit_backlog_wait_time
-ffffffc008c18b18 d kauditd_wait
-ffffffc008c18b30 d audit_backlog_wait
-ffffffc008c18b48 d audit_sig_pid
-ffffffc008c18b4c d audit_sig_uid.0
-ffffffc008c18b50 d af
-ffffffc008c18b60 d audit_rules_list
-ffffffc008c18be0 d prio_high
-ffffffc008c18be8 d prio_low
-ffffffc008c18bf0 D audit_filter_mutex
-ffffffc008c18c10 D audit_filter_list
-ffffffc008c18c90 d prune_list
-ffffffc008c18ca0 d tree_list
-ffffffc008c18cb0 d panic_block
-ffffffc008c18cc8 d hung_task_init.hungtask_pm_notify_nb
-ffffffc008c18ce0 d hung_task_sysctls
-ffffffc008c18ea0 D watchdog_cpumask_bits
-ffffffc008c18ea8 d watchdog_mutex.llvm.10472157664211895871
-ffffffc008c18ec8 d watchdog_sysctls
-ffffffc008c190c8 d seccomp_actions_logged
-ffffffc008c190d0 d seccomp_sysctl_path
-ffffffc008c190e8 d seccomp_sysctl_table
-ffffffc008c191a8 d uts_kern_table
-ffffffc008c19368 d hostname_poll
-ffffffc008c19388 d domainname_poll
-ffffffc008c193a8 d uts_root_table
-ffffffc008c19428 D tracepoint_srcu
-ffffffc008c195a8 d tracepoints_mutex
-ffffffc008c195c8 d ftrace_export_lock
-ffffffc008c195e8 D ftrace_trace_arrays
-ffffffc008c195f8 D trace_types_lock
-ffffffc008c19618 d global_trace
-ffffffc008c19750 d tracepoint_printk_mutex
-ffffffc008c19770 d trace_options
-ffffffc008c19840 d trace_buf_size
-ffffffc008c19848 d tracing_err_log_lock
-ffffffc008c19868 d all_cpu_access_lock
-ffffffc008c19898 d trace_panic_notifier
-ffffffc008c198b0 d trace_die_notifier
-ffffffc008c198c8 D trace_event_sem
-ffffffc008c198f8 d next_event_type
-ffffffc008c19900 d ftrace_event_list
-ffffffc008c19910 d trace_fn_event
-ffffffc008c19940 d trace_ctx_event
-ffffffc008c19970 d trace_wake_event
-ffffffc008c199a0 d trace_stack_event
-ffffffc008c199d0 d trace_user_stack_event
-ffffffc008c19a00 d trace_bputs_event
-ffffffc008c19a30 d trace_bprint_event
-ffffffc008c19a60 d trace_print_event
-ffffffc008c19a90 d trace_hwlat_event
-ffffffc008c19ac0 d trace_osnoise_event
-ffffffc008c19af0 d trace_timerlat_event
-ffffffc008c19b20 d trace_raw_data_event
-ffffffc008c19b50 d trace_func_repeats_event
-ffffffc008c19b80 d trace_fn_funcs
-ffffffc008c19ba0 d trace_ctx_funcs
-ffffffc008c19bc0 d trace_wake_funcs
-ffffffc008c19be0 d trace_stack_funcs
-ffffffc008c19c00 d trace_user_stack_funcs
-ffffffc008c19c20 d trace_bputs_funcs
-ffffffc008c19c40 d trace_bprint_funcs
-ffffffc008c19c60 d trace_print_funcs
-ffffffc008c19c80 d trace_hwlat_funcs
-ffffffc008c19ca0 d trace_osnoise_funcs
-ffffffc008c19cc0 d trace_timerlat_funcs
-ffffffc008c19ce0 d trace_raw_data_funcs
-ffffffc008c19d00 d trace_func_repeats_funcs
-ffffffc008c19d20 d all_stat_sessions_mutex
-ffffffc008c19d40 d all_stat_sessions
-ffffffc008c19d50 d sched_register_mutex
-ffffffc008c19d70 d nop_flags
-ffffffc008c19d88 d nop_opts
-ffffffc008c19db8 D ftrace_events
-ffffffc008c19dc8 d ftrace_generic_fields
-ffffffc008c19dd8 d ftrace_common_fields
-ffffffc008c19de8 d module_strings
-ffffffc008c19df8 d event_subsystems
-ffffffc008c19e08 D event_mutex
-ffffffc008c19e28 D event_function
-ffffffc008c19eb8 D event_funcgraph_entry
-ffffffc008c19f48 D event_funcgraph_exit
-ffffffc008c19fd8 D event_context_switch
-ffffffc008c1a068 D event_wakeup
-ffffffc008c1a0f8 D event_kernel_stack
-ffffffc008c1a188 D event_user_stack
-ffffffc008c1a218 D event_bprint
-ffffffc008c1a2a8 D event_print
-ffffffc008c1a338 D event_raw_data
-ffffffc008c1a3c8 D event_bputs
-ffffffc008c1a458 D event_mmiotrace_rw
-ffffffc008c1a4e8 D event_mmiotrace_map
-ffffffc008c1a578 D event_branch
-ffffffc008c1a608 D event_hwlat
-ffffffc008c1a698 D event_func_repeats
-ffffffc008c1a728 D event_osnoise
-ffffffc008c1a7b8 D event_timerlat
-ffffffc008c1a848 d ftrace_event_fields_function
-ffffffc008c1a8c0 d ftrace_event_fields_funcgraph_entry
-ffffffc008c1a938 d ftrace_event_fields_funcgraph_exit
-ffffffc008c1aa28 d ftrace_event_fields_context_switch
-ffffffc008c1ab68 d ftrace_event_fields_wakeup
-ffffffc008c1aca8 d ftrace_event_fields_kernel_stack
-ffffffc008c1ad20 d ftrace_event_fields_user_stack
-ffffffc008c1ad98 d ftrace_event_fields_bprint
-ffffffc008c1ae38 d ftrace_event_fields_print
-ffffffc008c1aeb0 d ftrace_event_fields_raw_data
-ffffffc008c1af28 d ftrace_event_fields_bputs
-ffffffc008c1afa0 d ftrace_event_fields_mmiotrace_rw
-ffffffc008c1b0b8 d ftrace_event_fields_mmiotrace_map
-ffffffc008c1b1a8 d ftrace_event_fields_branch
-ffffffc008c1b298 d ftrace_event_fields_hwlat
-ffffffc008c1b400 d ftrace_event_fields_func_repeats
-ffffffc008c1b4f0 d ftrace_event_fields_osnoise
-ffffffc008c1b658 d ftrace_event_fields_timerlat
-ffffffc008c1b6f8 d err_text
-ffffffc008c1b788 d err_text
-ffffffc008c1b7d0 d err_text
-ffffffc008c1b950 d trigger_cmd_mutex
-ffffffc008c1b970 d trigger_commands
-ffffffc008c1b980 d named_triggers
-ffffffc008c1b990 d trigger_traceon_cmd
-ffffffc008c1b9e0 d trigger_traceoff_cmd
-ffffffc008c1ba30 d traceon_count_trigger_ops
-ffffffc008c1ba50 d traceon_trigger_ops
-ffffffc008c1ba70 d traceoff_count_trigger_ops
-ffffffc008c1ba90 d traceoff_trigger_ops
-ffffffc008c1bab0 d trigger_stacktrace_cmd
-ffffffc008c1bb00 d stacktrace_count_trigger_ops
-ffffffc008c1bb20 d stacktrace_trigger_ops
-ffffffc008c1bb40 d trigger_enable_cmd
-ffffffc008c1bb90 d trigger_disable_cmd
-ffffffc008c1bbe0 d event_enable_count_trigger_ops
-ffffffc008c1bc00 d event_enable_trigger_ops
-ffffffc008c1bc20 d event_disable_count_trigger_ops
-ffffffc008c1bc40 d event_disable_trigger_ops
-ffffffc008c1bc60 d eprobe_dyn_event_ops
-ffffffc008c1bc98 d eprobe_funcs
-ffffffc008c1bcb8 d eprobe_fields_array
-ffffffc008c1bd08 d eprobe_trigger_ops
-ffffffc008c1bd28 d event_trigger_cmd
-ffffffc008c1bd78 d synth_event_ops
-ffffffc008c1bdb0 d lastcmd_mutex
-ffffffc008c1bdd0 d synth_event_funcs
-ffffffc008c1bdf0 d synth_event_fields_array
-ffffffc008c1be40 d trigger_hist_cmd
-ffffffc008c1be90 d trigger_hist_enable_cmd
-ffffffc008c1bee0 d trigger_hist_disable_cmd
-ffffffc008c1bf30 d event_hist_trigger_named_ops
-ffffffc008c1bf50 d event_hist_trigger_ops
-ffffffc008c1bf70 d hist_enable_count_trigger_ops
-ffffffc008c1bf90 d hist_enable_trigger_ops
-ffffffc008c1bfb0 d hist_disable_count_trigger_ops
-ffffffc008c1bfd0 d hist_disable_trigger_ops
-ffffffc008c1bff0 D __SCK__tp_func_error_report_end
-ffffffc008c1bff8 d trace_event_fields_error_report_template
-ffffffc008c1c070 d trace_event_type_funcs_error_report_template
-ffffffc008c1c090 d print_fmt_error_report_template
-ffffffc008c1c138 d event_error_report_end
-ffffffc008c1c1c8 D __SCK__tp_func_cpu_idle
-ffffffc008c1c1d0 D __SCK__tp_func_cpu_idle_miss
-ffffffc008c1c1d8 D __SCK__tp_func_powernv_throttle
-ffffffc008c1c1e0 D __SCK__tp_func_pstate_sample
-ffffffc008c1c1e8 D __SCK__tp_func_cpu_frequency
-ffffffc008c1c1f0 D __SCK__tp_func_cpu_frequency_limits
-ffffffc008c1c1f8 D __SCK__tp_func_device_pm_callback_start
-ffffffc008c1c200 D __SCK__tp_func_device_pm_callback_end
-ffffffc008c1c208 D __SCK__tp_func_suspend_resume
-ffffffc008c1c210 D __SCK__tp_func_wakeup_source_activate
-ffffffc008c1c218 D __SCK__tp_func_wakeup_source_deactivate
-ffffffc008c1c220 D __SCK__tp_func_clock_enable
-ffffffc008c1c228 D __SCK__tp_func_clock_disable
-ffffffc008c1c230 D __SCK__tp_func_clock_set_rate
-ffffffc008c1c238 D __SCK__tp_func_power_domain_target
-ffffffc008c1c240 D __SCK__tp_func_pm_qos_add_request
-ffffffc008c1c248 D __SCK__tp_func_pm_qos_update_request
-ffffffc008c1c250 D __SCK__tp_func_pm_qos_remove_request
-ffffffc008c1c258 D __SCK__tp_func_pm_qos_update_target
-ffffffc008c1c260 D __SCK__tp_func_pm_qos_update_flags
-ffffffc008c1c268 D __SCK__tp_func_dev_pm_qos_add_request
-ffffffc008c1c270 D __SCK__tp_func_dev_pm_qos_update_request
-ffffffc008c1c278 D __SCK__tp_func_dev_pm_qos_remove_request
-ffffffc008c1c280 D __SCK__tp_func_guest_halt_poll_ns
-ffffffc008c1c288 d trace_event_fields_cpu
-ffffffc008c1c300 d trace_event_type_funcs_cpu
-ffffffc008c1c320 d print_fmt_cpu
-ffffffc008c1c370 d event_cpu_idle
-ffffffc008c1c400 d trace_event_fields_cpu_idle_miss
-ffffffc008c1c4a0 d trace_event_type_funcs_cpu_idle_miss
-ffffffc008c1c4c0 d print_fmt_cpu_idle_miss
-ffffffc008c1c538 d event_cpu_idle_miss
-ffffffc008c1c5c8 d trace_event_fields_powernv_throttle
-ffffffc008c1c668 d trace_event_type_funcs_powernv_throttle
-ffffffc008c1c688 d print_fmt_powernv_throttle
-ffffffc008c1c6d0 d event_powernv_throttle
-ffffffc008c1c760 d trace_event_fields_pstate_sample
-ffffffc008c1c8f0 d trace_event_type_funcs_pstate_sample
-ffffffc008c1c910 d print_fmt_pstate_sample
-ffffffc008c1ca78 d event_pstate_sample
-ffffffc008c1cb08 d event_cpu_frequency
-ffffffc008c1cb98 d trace_event_fields_cpu_frequency_limits
-ffffffc008c1cc38 d trace_event_type_funcs_cpu_frequency_limits
-ffffffc008c1cc58 d print_fmt_cpu_frequency_limits
-ffffffc008c1ccd0 d event_cpu_frequency_limits
-ffffffc008c1cd60 d trace_event_fields_device_pm_callback_start
-ffffffc008c1ce50 d trace_event_type_funcs_device_pm_callback_start
-ffffffc008c1ce70 d print_fmt_device_pm_callback_start
-ffffffc008c1cfb0 d event_device_pm_callback_start
-ffffffc008c1d040 d trace_event_fields_device_pm_callback_end
-ffffffc008c1d0e0 d trace_event_type_funcs_device_pm_callback_end
-ffffffc008c1d100 d print_fmt_device_pm_callback_end
-ffffffc008c1d148 d event_device_pm_callback_end
-ffffffc008c1d1d8 d trace_event_fields_suspend_resume
-ffffffc008c1d278 d trace_event_type_funcs_suspend_resume
-ffffffc008c1d298 d print_fmt_suspend_resume
-ffffffc008c1d2e8 d event_suspend_resume
-ffffffc008c1d378 d trace_event_fields_wakeup_source
-ffffffc008c1d3f0 d trace_event_type_funcs_wakeup_source
-ffffffc008c1d410 d print_fmt_wakeup_source
-ffffffc008c1d450 d event_wakeup_source_activate
-ffffffc008c1d4e0 d event_wakeup_source_deactivate
-ffffffc008c1d570 d trace_event_fields_clock
-ffffffc008c1d610 d trace_event_type_funcs_clock
-ffffffc008c1d630 d print_fmt_clock
-ffffffc008c1d698 d event_clock_enable
-ffffffc008c1d728 d event_clock_disable
-ffffffc008c1d7b8 d event_clock_set_rate
-ffffffc008c1d848 d trace_event_fields_power_domain
-ffffffc008c1d8e8 d trace_event_type_funcs_power_domain
-ffffffc008c1d908 d print_fmt_power_domain
-ffffffc008c1d970 d event_power_domain_target
-ffffffc008c1da00 d trace_event_fields_cpu_latency_qos_request
-ffffffc008c1da50 d trace_event_type_funcs_cpu_latency_qos_request
-ffffffc008c1da70 d print_fmt_cpu_latency_qos_request
-ffffffc008c1da98 d event_pm_qos_add_request
-ffffffc008c1db28 d event_pm_qos_update_request
-ffffffc008c1dbb8 d event_pm_qos_remove_request
-ffffffc008c1dc48 d trace_event_fields_pm_qos_update
-ffffffc008c1dce8 d trace_event_type_funcs_pm_qos_update
-ffffffc008c1dd08 d print_fmt_pm_qos_update
-ffffffc008c1dde0 d event_pm_qos_update_target
-ffffffc008c1de70 d trace_event_type_funcs_pm_qos_update_flags
-ffffffc008c1de90 d print_fmt_pm_qos_update_flags
-ffffffc008c1df68 d event_pm_qos_update_flags
-ffffffc008c1dff8 d trace_event_fields_dev_pm_qos_request
-ffffffc008c1e098 d trace_event_type_funcs_dev_pm_qos_request
-ffffffc008c1e0b8 d print_fmt_dev_pm_qos_request
-ffffffc008c1e180 d event_dev_pm_qos_add_request
-ffffffc008c1e210 d event_dev_pm_qos_update_request
-ffffffc008c1e2a0 d event_dev_pm_qos_remove_request
-ffffffc008c1e330 d trace_event_fields_guest_halt_poll_ns
-ffffffc008c1e3d0 d trace_event_type_funcs_guest_halt_poll_ns
-ffffffc008c1e3f0 d print_fmt_guest_halt_poll_ns
-ffffffc008c1e440 d event_guest_halt_poll_ns
-ffffffc008c1e4d0 D __SCK__tp_func_rpm_suspend
-ffffffc008c1e4d8 D __SCK__tp_func_rpm_resume
-ffffffc008c1e4e0 D __SCK__tp_func_rpm_idle
-ffffffc008c1e4e8 D __SCK__tp_func_rpm_usage
-ffffffc008c1e4f0 D __SCK__tp_func_rpm_return_int
-ffffffc008c1e4f8 d trace_event_fields_rpm_internal
-ffffffc008c1e660 d trace_event_type_funcs_rpm_internal
-ffffffc008c1e680 d print_fmt_rpm_internal
-ffffffc008c1e750 d event_rpm_suspend
-ffffffc008c1e7e0 d event_rpm_resume
-ffffffc008c1e870 d event_rpm_idle
-ffffffc008c1e900 d event_rpm_usage
-ffffffc008c1e990 d trace_event_fields_rpm_return_int
-ffffffc008c1ea30 d trace_event_type_funcs_rpm_return_int
-ffffffc008c1ea50 d print_fmt_rpm_return_int
-ffffffc008c1ea90 d event_rpm_return_int
-ffffffc008c1eb20 d dyn_event_ops_mutex
-ffffffc008c1eb40 d dyn_event_ops_list
-ffffffc008c1eb50 D dyn_event_list
-ffffffc008c1eb60 d trace_probe_err_text
-ffffffc008c1ed30 d trace_uprobe_ops
-ffffffc008c1ed68 d uprobe_funcs
-ffffffc008c1ed88 d uprobe_fields_array
-ffffffc008c1edd8 d cpu_pm_syscore_ops
-ffffffc008c1ee00 d bpf_user_rnd_init_once.___once_key
-ffffffc008c1ee10 D __SCK__tp_func_xdp_exception
-ffffffc008c1ee18 D __SCK__tp_func_xdp_bulk_tx
-ffffffc008c1ee20 D __SCK__tp_func_xdp_redirect
-ffffffc008c1ee28 D __SCK__tp_func_xdp_redirect_err
-ffffffc008c1ee30 D __SCK__tp_func_xdp_redirect_map
-ffffffc008c1ee38 D __SCK__tp_func_xdp_redirect_map_err
-ffffffc008c1ee40 D __SCK__tp_func_xdp_cpumap_kthread
-ffffffc008c1ee48 D __SCK__tp_func_xdp_cpumap_enqueue
-ffffffc008c1ee50 D __SCK__tp_func_xdp_devmap_xmit
-ffffffc008c1ee58 D __SCK__tp_func_mem_disconnect
-ffffffc008c1ee60 D __SCK__tp_func_mem_connect
-ffffffc008c1ee68 D __SCK__tp_func_mem_return_failed
-ffffffc008c1ee70 d trace_event_fields_xdp_exception
-ffffffc008c1ef10 d trace_event_type_funcs_xdp_exception
-ffffffc008c1ef30 d print_fmt_xdp_exception
-ffffffc008c1f018 d event_xdp_exception
-ffffffc008c1f0a8 d trace_event_fields_xdp_bulk_tx
-ffffffc008c1f198 d trace_event_type_funcs_xdp_bulk_tx
-ffffffc008c1f1b8 d print_fmt_xdp_bulk_tx
-ffffffc008c1f2c0 d event_xdp_bulk_tx
-ffffffc008c1f350 d trace_event_fields_xdp_redirect_template
-ffffffc008c1f490 d trace_event_type_funcs_xdp_redirect_template
-ffffffc008c1f4b0 d print_fmt_xdp_redirect_template
-ffffffc008c1f600 d event_xdp_redirect
-ffffffc008c1f690 d event_xdp_redirect_err
-ffffffc008c1f720 d event_xdp_redirect_map
-ffffffc008c1f7b0 d event_xdp_redirect_map_err
-ffffffc008c1f840 d trace_event_fields_xdp_cpumap_kthread
-ffffffc008c1f9d0 d trace_event_type_funcs_xdp_cpumap_kthread
-ffffffc008c1f9f0 d print_fmt_xdp_cpumap_kthread
-ffffffc008c1fb78 d event_xdp_cpumap_kthread
-ffffffc008c1fc08 d trace_event_fields_xdp_cpumap_enqueue
-ffffffc008c1fd20 d trace_event_type_funcs_xdp_cpumap_enqueue
-ffffffc008c1fd40 d print_fmt_xdp_cpumap_enqueue
-ffffffc008c1fe70 d event_xdp_cpumap_enqueue
-ffffffc008c1ff00 d trace_event_fields_xdp_devmap_xmit
-ffffffc008c20018 d trace_event_type_funcs_xdp_devmap_xmit
-ffffffc008c20038 d print_fmt_xdp_devmap_xmit
-ffffffc008c20178 d event_xdp_devmap_xmit
-ffffffc008c20208 d trace_event_fields_mem_disconnect
-ffffffc008c202d0 d trace_event_type_funcs_mem_disconnect
-ffffffc008c202f0 d print_fmt_mem_disconnect
-ffffffc008c20408 d event_mem_disconnect
-ffffffc008c20498 d trace_event_fields_mem_connect
-ffffffc008c205b0 d trace_event_type_funcs_mem_connect
-ffffffc008c205d0 d print_fmt_mem_connect
-ffffffc008c20700 d event_mem_connect
-ffffffc008c20790 d trace_event_fields_mem_return_failed
-ffffffc008c20830 d trace_event_type_funcs_mem_return_failed
-ffffffc008c20850 d print_fmt_mem_return_failed
-ffffffc008c20958 d event_mem_return_failed
-ffffffc008c209e8 d dummy_bpf_prog
-ffffffc008c20a30 d perf_duration_work
-ffffffc008c20a50 D dev_attr_nr_addr_filters
-ffffffc008c20a70 d pmus_lock
-ffffffc008c20a90 d pmus
-ffffffc008c20aa0 d perf_swevent
-ffffffc008c20bc8 d perf_cpu_clock
-ffffffc008c20cf0 d perf_task_clock
-ffffffc008c20e18 d perf_reboot_notifier
-ffffffc008c20e30 D __SCK__perf_snapshot_branch_stack
-ffffffc008c20e38 d perf_duration_warn._rs
-ffffffc008c20e60 d perf_sched_work
-ffffffc008c20eb8 d perf_sched_mutex
-ffffffc008c20ed8 d perf_tracepoint
-ffffffc008c21000 d perf_uprobe
-ffffffc008c21128 d uprobe_attr_groups
-ffffffc008c21138 d uprobe_format_group
-ffffffc008c21160 d uprobe_attrs
-ffffffc008c21178 d format_attr_retprobe
-ffffffc008c21198 d format_attr_ref_ctr_offset
-ffffffc008c211b8 d pmu_bus
-ffffffc008c21270 d pmu_dev_groups
-ffffffc008c21280 d pmu_dev_attrs
-ffffffc008c21298 d dev_attr_type
-ffffffc008c212b8 d dev_attr_type
-ffffffc008c212d8 d dev_attr_type
-ffffffc008c212f8 d dev_attr_type
-ffffffc008c21318 d dev_attr_type
-ffffffc008c21338 d dev_attr_perf_event_mux_interval_ms
-ffffffc008c21358 d mux_interval_mutex
-ffffffc008c21378 d callchain_mutex
-ffffffc008c21398 d perf_breakpoint
-ffffffc008c214c0 d hw_breakpoint_exceptions_nb
-ffffffc008c214d8 d bp_cpuinfo_sem
-ffffffc008c21538 d delayed_uprobe_lock
-ffffffc008c21558 d dup_mmap_sem
-ffffffc008c215b8 d uprobe_exception_nb
-ffffffc008c215d0 d delayed_uprobe_list
-ffffffc008c215e0 d prepare_uretprobe._rs
-ffffffc008c21608 d jump_label_mutex
-ffffffc008c21628 D __SCK__tp_func_rseq_update
-ffffffc008c21630 D __SCK__tp_func_rseq_ip_fixup
-ffffffc008c21638 d trace_event_fields_rseq_update
-ffffffc008c21688 d trace_event_type_funcs_rseq_update
-ffffffc008c216a8 d print_fmt_rseq_update
-ffffffc008c216c8 d event_rseq_update
-ffffffc008c21758 d trace_event_fields_rseq_ip_fixup
-ffffffc008c21820 d trace_event_type_funcs_rseq_ip_fixup
-ffffffc008c21840 d print_fmt_rseq_ip_fixup
-ffffffc008c218d0 d event_rseq_ip_fixup
-ffffffc008c21960 d rseq_get_rseq_cs._rs
-ffffffc008c21988 D __SCK__tp_func_mm_filemap_delete_from_page_cache
-ffffffc008c21990 D __SCK__tp_func_mm_filemap_add_to_page_cache
-ffffffc008c21998 D __SCK__tp_func_filemap_set_wb_err
-ffffffc008c219a0 D __SCK__tp_func_file_check_and_advance_wb_err
-ffffffc008c219a8 d trace_event_fields_mm_filemap_op_page_cache
-ffffffc008c21a98 d trace_event_type_funcs_mm_filemap_op_page_cache
-ffffffc008c21ab8 d print_fmt_mm_filemap_op_page_cache
-ffffffc008c21b78 d event_mm_filemap_delete_from_page_cache
-ffffffc008c21c08 d event_mm_filemap_add_to_page_cache
-ffffffc008c21c98 d trace_event_fields_filemap_set_wb_err
-ffffffc008c21d38 d trace_event_type_funcs_filemap_set_wb_err
-ffffffc008c21d58 d print_fmt_filemap_set_wb_err
-ffffffc008c21df0 d event_filemap_set_wb_err
-ffffffc008c21e80 d trace_event_fields_file_check_and_advance_wb_err
-ffffffc008c21f70 d trace_event_type_funcs_file_check_and_advance_wb_err
-ffffffc008c21f90 d print_fmt_file_check_and_advance_wb_err
-ffffffc008c22048 d event_file_check_and_advance_wb_err
-ffffffc008c220d8 D sysctl_page_lock_unfairness
-ffffffc008c220e0 d dio_warn_stale_pagecache._rs
-ffffffc008c22108 D __SCK__tp_func_oom_score_adj_update
-ffffffc008c22110 D __SCK__tp_func_reclaim_retry_zone
-ffffffc008c22118 D __SCK__tp_func_mark_victim
-ffffffc008c22120 D __SCK__tp_func_wake_reaper
-ffffffc008c22128 D __SCK__tp_func_start_task_reaping
-ffffffc008c22130 D __SCK__tp_func_finish_task_reaping
-ffffffc008c22138 D __SCK__tp_func_skip_task_reaping
-ffffffc008c22140 D __SCK__tp_func_compact_retry
-ffffffc008c22148 d trace_event_fields_oom_score_adj_update
-ffffffc008c221e8 d trace_event_type_funcs_oom_score_adj_update
-ffffffc008c22208 d print_fmt_oom_score_adj_update
-ffffffc008c22258 d event_oom_score_adj_update
-ffffffc008c222e8 d trace_event_fields_reclaim_retry_zone
-ffffffc008c22450 d trace_event_type_funcs_reclaim_retry_zone
-ffffffc008c22470 d print_fmt_reclaim_retry_zone
-ffffffc008c225d0 d event_reclaim_retry_zone
-ffffffc008c22660 d trace_event_fields_mark_victim
-ffffffc008c226b0 d trace_event_type_funcs_mark_victim
-ffffffc008c226d0 d print_fmt_mark_victim
-ffffffc008c226e8 d event_mark_victim
-ffffffc008c22778 d trace_event_fields_wake_reaper
-ffffffc008c227c8 d trace_event_type_funcs_wake_reaper
-ffffffc008c227e8 d print_fmt_wake_reaper
-ffffffc008c22800 d event_wake_reaper
-ffffffc008c22890 d trace_event_fields_start_task_reaping
-ffffffc008c228e0 d trace_event_type_funcs_start_task_reaping
-ffffffc008c22900 d print_fmt_start_task_reaping
-ffffffc008c22918 d event_start_task_reaping
-ffffffc008c229a8 d trace_event_fields_finish_task_reaping
-ffffffc008c229f8 d trace_event_type_funcs_finish_task_reaping
-ffffffc008c22a18 d print_fmt_finish_task_reaping
-ffffffc008c22a30 d event_finish_task_reaping
-ffffffc008c22ac0 d trace_event_fields_skip_task_reaping
-ffffffc008c22b10 d trace_event_type_funcs_skip_task_reaping
-ffffffc008c22b30 d print_fmt_skip_task_reaping
-ffffffc008c22b48 d event_skip_task_reaping
-ffffffc008c22bd8 d trace_event_fields_compact_retry
-ffffffc008c22cf0 d trace_event_type_funcs_compact_retry
-ffffffc008c22d10 d print_fmt_compact_retry
-ffffffc008c22ea8 d event_compact_retry
-ffffffc008c22f38 D oom_adj_mutex
-ffffffc008c22f58 d oom_victims_wait
-ffffffc008c22f70 d oom_notify_list.llvm.8945982212414483876
-ffffffc008c22fa8 d pagefault_out_of_memory.pfoom_rs
-ffffffc008c22fd0 d vm_oom_kill_table
-ffffffc008c230d0 d oom_reaper_wait
-ffffffc008c230e8 d sysctl_oom_dump_tasks
-ffffffc008c230f0 d oom_kill_process.oom_rs
-ffffffc008c23118 D oom_lock
-ffffffc008c23138 d ratelimit_pages
-ffffffc008c23140 d vm_page_writeback_sysctls
-ffffffc008c23340 d vm_dirty_ratio
-ffffffc008c23344 d dirty_background_ratio
-ffffffc008c23348 D dirty_writeback_interval
-ffffffc008c2334c D dirty_expire_interval
-ffffffc008c23350 d isolate_lru_page._rs
-ffffffc008c23378 D __SCK__tp_func_mm_lru_insertion
-ffffffc008c23380 D __SCK__tp_func_mm_lru_activate
-ffffffc008c23388 d trace_event_fields_mm_lru_insertion
-ffffffc008c23450 d trace_event_type_funcs_mm_lru_insertion
-ffffffc008c23470 d print_fmt_mm_lru_insertion
-ffffffc008c23590 d event_mm_lru_insertion
-ffffffc008c23620 d trace_event_fields_mm_lru_activate
-ffffffc008c23698 d trace_event_type_funcs_mm_lru_activate
-ffffffc008c236b8 d print_fmt_mm_lru_activate
-ffffffc008c236e8 d event_mm_lru_activate
-ffffffc008c23778 d __lru_add_drain_all.lock
-ffffffc008c23798 D __SCK__tp_func_mm_vmscan_kswapd_sleep
-ffffffc008c237a0 D __SCK__tp_func_mm_vmscan_kswapd_wake
-ffffffc008c237a8 D __SCK__tp_func_mm_vmscan_wakeup_kswapd
-ffffffc008c237b0 D __SCK__tp_func_mm_vmscan_direct_reclaim_begin
-ffffffc008c237b8 D __SCK__tp_func_mm_vmscan_direct_reclaim_end
-ffffffc008c237c0 D __SCK__tp_func_mm_shrink_slab_start
-ffffffc008c237c8 D __SCK__tp_func_mm_shrink_slab_end
-ffffffc008c237d0 D __SCK__tp_func_mm_vmscan_lru_isolate
-ffffffc008c237d8 D __SCK__tp_func_mm_vmscan_write_folio
-ffffffc008c237e0 D __SCK__tp_func_mm_vmscan_lru_shrink_inactive
-ffffffc008c237e8 D __SCK__tp_func_mm_vmscan_lru_shrink_active
-ffffffc008c237f0 D __SCK__tp_func_mm_vmscan_node_reclaim_begin
-ffffffc008c237f8 D __SCK__tp_func_mm_vmscan_node_reclaim_end
-ffffffc008c23800 D __SCK__tp_func_mm_vmscan_throttled
-ffffffc008c23808 d trace_event_fields_mm_vmscan_kswapd_sleep
-ffffffc008c23858 d trace_event_type_funcs_mm_vmscan_kswapd_sleep
-ffffffc008c23878 d print_fmt_mm_vmscan_kswapd_sleep
-ffffffc008c23890 d event_mm_vmscan_kswapd_sleep
-ffffffc008c23920 d trace_event_fields_mm_vmscan_kswapd_wake
-ffffffc008c239c0 d trace_event_type_funcs_mm_vmscan_kswapd_wake
-ffffffc008c239e0 d print_fmt_mm_vmscan_kswapd_wake
-ffffffc008c23a08 d event_mm_vmscan_kswapd_wake
-ffffffc008c23a98 d trace_event_fields_mm_vmscan_wakeup_kswapd
-ffffffc008c23b60 d trace_event_type_funcs_mm_vmscan_wakeup_kswapd
-ffffffc008c23b80 d print_fmt_mm_vmscan_wakeup_kswapd
-ffffffc008c24848 d event_mm_vmscan_wakeup_kswapd
-ffffffc008c248d8 d trace_event_fields_mm_vmscan_direct_reclaim_begin_template
-ffffffc008c24950 d trace_event_type_funcs_mm_vmscan_direct_reclaim_begin_template
-ffffffc008c24970 d print_fmt_mm_vmscan_direct_reclaim_begin_template
-ffffffc008c25628 d event_mm_vmscan_direct_reclaim_begin
-ffffffc008c256b8 d trace_event_fields_mm_vmscan_direct_reclaim_end_template
-ffffffc008c25708 d trace_event_type_funcs_mm_vmscan_direct_reclaim_end_template
-ffffffc008c25728 d print_fmt_mm_vmscan_direct_reclaim_end_template
-ffffffc008c25750 d event_mm_vmscan_direct_reclaim_end
-ffffffc008c257e0 d trace_event_fields_mm_shrink_slab_start
-ffffffc008c25970 d trace_event_type_funcs_mm_shrink_slab_start
-ffffffc008c25990 d print_fmt_mm_shrink_slab_start
-ffffffc008c26708 d event_mm_shrink_slab_start
-ffffffc008c26798 d trace_event_fields_mm_shrink_slab_end
-ffffffc008c268d8 d trace_event_type_funcs_mm_shrink_slab_end
-ffffffc008c268f8 d print_fmt_mm_shrink_slab_end
-ffffffc008c269c0 d event_mm_shrink_slab_end
-ffffffc008c26a50 d trace_event_fields_mm_vmscan_lru_isolate
-ffffffc008c26bb8 d trace_event_type_funcs_mm_vmscan_lru_isolate
-ffffffc008c26bd8 d print_fmt_mm_vmscan_lru_isolate
-ffffffc008c26d90 d event_mm_vmscan_lru_isolate
-ffffffc008c26e20 d trace_event_fields_mm_vmscan_write_folio
-ffffffc008c26e98 d trace_event_type_funcs_mm_vmscan_write_folio
-ffffffc008c26eb8 d print_fmt_mm_vmscan_write_folio
-ffffffc008c271d8 d event_mm_vmscan_write_folio
-ffffffc008c27268 d trace_event_fields_mm_vmscan_lru_shrink_inactive
-ffffffc008c27498 d trace_event_type_funcs_mm_vmscan_lru_shrink_inactive
-ffffffc008c274b8 d print_fmt_mm_vmscan_lru_shrink_inactive
-ffffffc008c27740 d event_mm_vmscan_lru_shrink_inactive
-ffffffc008c277d0 d trace_event_fields_mm_vmscan_lru_shrink_active
-ffffffc008c27910 d trace_event_type_funcs_mm_vmscan_lru_shrink_active
-ffffffc008c27930 d print_fmt_mm_vmscan_lru_shrink_active
-ffffffc008c27ae0 d event_mm_vmscan_lru_shrink_active
-ffffffc008c27b70 d trace_event_fields_mm_vmscan_node_reclaim_begin
-ffffffc008c27c10 d trace_event_type_funcs_mm_vmscan_node_reclaim_begin
-ffffffc008c27c30 d print_fmt_mm_vmscan_node_reclaim_begin
-ffffffc008c288f8 d event_mm_vmscan_node_reclaim_begin
-ffffffc008c28988 d event_mm_vmscan_node_reclaim_end
-ffffffc008c28a18 d trace_event_fields_mm_vmscan_throttled
-ffffffc008c28ae0 d trace_event_type_funcs_mm_vmscan_throttled
-ffffffc008c28b00 d print_fmt_mm_vmscan_throttled
-ffffffc008c28cb8 d event_mm_vmscan_throttled
-ffffffc008c28d48 D vm_swappiness
-ffffffc008c28d50 D shrinker_list
-ffffffc008c28d60 D shrinker_rwsem
-ffffffc008c28d90 d get_mm_list.mm_list
-ffffffc008c28da8 d lru_gen_attr_group
-ffffffc008c28dd0 d lru_gen_attrs
-ffffffc008c28de8 d lru_gen_min_ttl_attr
-ffffffc008c28e08 d lru_gen_enabled_attr
-ffffffc008c28e28 d lru_gen_change_state.state_mutex
-ffffffc008c28e48 d shmem_swaplist
-ffffffc008c28e58 d shmem_swaplist_mutex
-ffffffc008c28e78 d shmem_fs_type
-ffffffc008c28ec0 D shmem_enabled_attr
-ffffffc008c28ee0 d __vm_enough_memory._rs
-ffffffc008c28f08 d page_offline_rwsem
-ffffffc008c28f38 d shepherd
-ffffffc008c28f90 d bdi_dev_groups
-ffffffc008c28fa0 d bdi_dev_attrs
-ffffffc008c28fc8 d dev_attr_read_ahead_kb
-ffffffc008c28fe8 d dev_attr_min_ratio
-ffffffc008c29008 d dev_attr_max_ratio
-ffffffc008c29028 d dev_attr_stable_pages_required
-ffffffc008c29048 D bdi_list
-ffffffc008c29058 D vm_committed_as_batch
-ffffffc008c29060 D __SCK__tp_func_percpu_alloc_percpu
-ffffffc008c29068 D __SCK__tp_func_percpu_free_percpu
-ffffffc008c29070 D __SCK__tp_func_percpu_alloc_percpu_fail
-ffffffc008c29078 D __SCK__tp_func_percpu_create_chunk
-ffffffc008c29080 D __SCK__tp_func_percpu_destroy_chunk
-ffffffc008c29088 d trace_event_fields_percpu_alloc_percpu
-ffffffc008c29240 d trace_event_type_funcs_percpu_alloc_percpu
-ffffffc008c29260 d print_fmt_percpu_alloc_percpu
-ffffffc008c29fe8 d event_percpu_alloc_percpu
-ffffffc008c2a078 d trace_event_fields_percpu_free_percpu
-ffffffc008c2a118 d trace_event_type_funcs_percpu_free_percpu
-ffffffc008c2a138 d print_fmt_percpu_free_percpu
-ffffffc008c2a180 d event_percpu_free_percpu
-ffffffc008c2a210 d trace_event_fields_percpu_alloc_percpu_fail
-ffffffc008c2a2d8 d trace_event_type_funcs_percpu_alloc_percpu_fail
-ffffffc008c2a2f8 d print_fmt_percpu_alloc_percpu_fail
-ffffffc008c2a360 d event_percpu_alloc_percpu_fail
-ffffffc008c2a3f0 d trace_event_fields_percpu_create_chunk
-ffffffc008c2a440 d trace_event_type_funcs_percpu_create_chunk
-ffffffc008c2a460 d print_fmt_percpu_create_chunk
-ffffffc008c2a480 d event_percpu_create_chunk
-ffffffc008c2a510 d trace_event_fields_percpu_destroy_chunk
-ffffffc008c2a560 d trace_event_type_funcs_percpu_destroy_chunk
-ffffffc008c2a580 d print_fmt_percpu_destroy_chunk
-ffffffc008c2a5a0 d event_percpu_destroy_chunk
-ffffffc008c2a630 d pcpu_alloc.warn_limit
-ffffffc008c2a638 d pcpu_alloc_mutex
-ffffffc008c2a658 d pcpu_balance_work
-ffffffc008c2a678 D __SCK__tp_func_kmem_cache_alloc
-ffffffc008c2a680 D __SCK__tp_func_kmalloc
-ffffffc008c2a688 D __SCK__tp_func_kfree
-ffffffc008c2a690 D __SCK__tp_func_kmem_cache_free
-ffffffc008c2a698 D __SCK__tp_func_mm_page_free
-ffffffc008c2a6a0 D __SCK__tp_func_mm_page_free_batched
-ffffffc008c2a6a8 D __SCK__tp_func_mm_page_alloc
-ffffffc008c2a6b0 D __SCK__tp_func_mm_page_alloc_zone_locked
-ffffffc008c2a6b8 D __SCK__tp_func_mm_page_pcpu_drain
-ffffffc008c2a6c0 D __SCK__tp_func_mm_page_alloc_extfrag
-ffffffc008c2a6c8 D __SCK__tp_func_rss_stat
-ffffffc008c2a6d0 d trace_event_fields_kmem_cache_alloc
-ffffffc008c2a810 d trace_event_type_funcs_kmem_cache_alloc
-ffffffc008c2a830 d print_fmt_kmem_cache_alloc
-ffffffc008c2b588 d event_kmem_cache_alloc
-ffffffc008c2b618 d trace_event_fields_kmalloc
-ffffffc008c2b730 d trace_event_type_funcs_kmalloc
-ffffffc008c2b750 d print_fmt_kmalloc
-ffffffc008c2c4d8 d event_kmalloc
-ffffffc008c2c568 d trace_event_fields_kfree
-ffffffc008c2c5e0 d trace_event_type_funcs_kfree
-ffffffc008c2c600 d print_fmt_kfree
-ffffffc008c2c640 d event_kfree
-ffffffc008c2c6d0 d trace_event_fields_kmem_cache_free
-ffffffc008c2c770 d trace_event_type_funcs_kmem_cache_free
-ffffffc008c2c790 d print_fmt_kmem_cache_free
-ffffffc008c2c7e8 d event_kmem_cache_free
-ffffffc008c2c878 d trace_event_fields_mm_page_free
-ffffffc008c2c8f0 d trace_event_type_funcs_mm_page_free
-ffffffc008c2c910 d print_fmt_mm_page_free
-ffffffc008c2cb50 d event_mm_page_free
-ffffffc008c2cbe0 d trace_event_fields_mm_page_free_batched
-ffffffc008c2cc30 d trace_event_type_funcs_mm_page_free_batched
-ffffffc008c2cc50 d print_fmt_mm_page_free_batched
-ffffffc008c2ce80 d event_mm_page_free_batched
-ffffffc008c2cf10 d trace_event_fields_mm_page_alloc
-ffffffc008c2cfd8 d trace_event_type_funcs_mm_page_alloc
-ffffffc008c2cff8 d print_fmt_mm_page_alloc
-ffffffc008c2df28 d event_mm_page_alloc
-ffffffc008c2dfb8 d trace_event_fields_mm_page
-ffffffc008c2e080 d trace_event_type_funcs_mm_page
-ffffffc008c2e0a0 d print_fmt_mm_page
-ffffffc008c2e358 d event_mm_page_alloc_zone_locked
-ffffffc008c2e3e8 d trace_event_fields_mm_page_pcpu_drain
-ffffffc008c2e488 d trace_event_type_funcs_mm_page_pcpu_drain
-ffffffc008c2e4a8 d print_fmt_mm_page_pcpu_drain
-ffffffc008c2e708 d event_mm_page_pcpu_drain
-ffffffc008c2e798 d trace_event_fields_mm_page_alloc_extfrag
-ffffffc008c2e8b0 d trace_event_type_funcs_mm_page_alloc_extfrag
-ffffffc008c2e8d0 d print_fmt_mm_page_alloc_extfrag
-ffffffc008c2ec10 d event_mm_page_alloc_extfrag
-ffffffc008c2eca0 d trace_event_fields_rss_stat
-ffffffc008c2ed68 d trace_event_type_funcs_rss_stat
-ffffffc008c2ed88 d print_fmt_rss_stat
-ffffffc008c2ee78 d event_rss_stat
-ffffffc008c2ef08 d slab_caches_to_rcu_destroy
-ffffffc008c2ef18 d slab_caches_to_rcu_destroy_work
-ffffffc008c2ef38 D slab_mutex
-ffffffc008c2ef58 D slab_caches
-ffffffc008c2ef68 D __SCK__tp_func_mm_compaction_isolate_migratepages
-ffffffc008c2ef70 D __SCK__tp_func_mm_compaction_isolate_freepages
-ffffffc008c2ef78 D __SCK__tp_func_mm_compaction_migratepages
-ffffffc008c2ef80 D __SCK__tp_func_mm_compaction_begin
-ffffffc008c2ef88 D __SCK__tp_func_mm_compaction_end
-ffffffc008c2ef90 D __SCK__tp_func_mm_compaction_try_to_compact_pages
-ffffffc008c2ef98 D __SCK__tp_func_mm_compaction_finished
-ffffffc008c2efa0 D __SCK__tp_func_mm_compaction_suitable
-ffffffc008c2efa8 D __SCK__tp_func_mm_compaction_deferred
-ffffffc008c2efb0 D __SCK__tp_func_mm_compaction_defer_compaction
-ffffffc008c2efb8 D __SCK__tp_func_mm_compaction_defer_reset
-ffffffc008c2efc0 D __SCK__tp_func_mm_compaction_kcompactd_sleep
-ffffffc008c2efc8 D __SCK__tp_func_mm_compaction_wakeup_kcompactd
-ffffffc008c2efd0 D __SCK__tp_func_mm_compaction_kcompactd_wake
-ffffffc008c2efd8 d trace_event_fields_mm_compaction_isolate_template
-ffffffc008c2f0a0 d trace_event_type_funcs_mm_compaction_isolate_template
-ffffffc008c2f0c0 d print_fmt_mm_compaction_isolate_template
-ffffffc008c2f138 d event_mm_compaction_isolate_migratepages
-ffffffc008c2f1c8 d event_mm_compaction_isolate_freepages
-ffffffc008c2f258 d trace_event_fields_mm_compaction_migratepages
-ffffffc008c2f2d0 d trace_event_type_funcs_mm_compaction_migratepages
-ffffffc008c2f2f0 d print_fmt_mm_compaction_migratepages
-ffffffc008c2f338 d event_mm_compaction_migratepages
-ffffffc008c2f3c8 d trace_event_fields_mm_compaction_begin
-ffffffc008c2f4b8 d trace_event_type_funcs_mm_compaction_begin
-ffffffc008c2f4d8 d print_fmt_mm_compaction_begin
-ffffffc008c2f588 d event_mm_compaction_begin
-ffffffc008c2f618 d trace_event_fields_mm_compaction_end
-ffffffc008c2f730 d trace_event_type_funcs_mm_compaction_end
-ffffffc008c2f750 d print_fmt_mm_compaction_end
-ffffffc008c2f978 d event_mm_compaction_end
-ffffffc008c2fa08 d trace_event_fields_mm_compaction_try_to_compact_pages
-ffffffc008c2faa8 d trace_event_type_funcs_mm_compaction_try_to_compact_pages
-ffffffc008c2fac8 d print_fmt_mm_compaction_try_to_compact_pages
-ffffffc008c30790 d event_mm_compaction_try_to_compact_pages
-ffffffc008c30820 d trace_event_fields_mm_compaction_suitable_template
-ffffffc008c308e8 d trace_event_type_funcs_mm_compaction_suitable_template
-ffffffc008c30908 d print_fmt_mm_compaction_suitable_template
-ffffffc008c30b28 d event_mm_compaction_finished
-ffffffc008c30bb8 d event_mm_compaction_suitable
-ffffffc008c30c48 d trace_event_fields_mm_compaction_defer_template
-ffffffc008c30d60 d trace_event_type_funcs_mm_compaction_defer_template
-ffffffc008c30d80 d print_fmt_mm_compaction_defer_template
-ffffffc008c30e90 d event_mm_compaction_deferred
-ffffffc008c30f20 d event_mm_compaction_defer_compaction
-ffffffc008c30fb0 d event_mm_compaction_defer_reset
-ffffffc008c31040 d trace_event_fields_mm_compaction_kcompactd_sleep
-ffffffc008c31090 d trace_event_type_funcs_mm_compaction_kcompactd_sleep
-ffffffc008c310b0 d print_fmt_mm_compaction_kcompactd_sleep
-ffffffc008c310c8 d event_mm_compaction_kcompactd_sleep
-ffffffc008c31158 d trace_event_fields_kcompactd_wake_template
-ffffffc008c311f8 d trace_event_type_funcs_kcompactd_wake_template
-ffffffc008c31218 d print_fmt_kcompactd_wake_template
-ffffffc008c312e0 d event_mm_compaction_wakeup_kcompactd
-ffffffc008c31370 d event_mm_compaction_kcompactd_wake
-ffffffc008c31400 D sysctl_extfrag_threshold
-ffffffc008c31408 d workingset_shadow_shrinker
-ffffffc008c31440 D migrate_reason_names
-ffffffc008c31488 D __SCK__tp_func_mmap_lock_start_locking
-ffffffc008c31490 D __SCK__tp_func_mmap_lock_released
-ffffffc008c31498 D __SCK__tp_func_mmap_lock_acquire_returned
-ffffffc008c314a0 d trace_event_fields_mmap_lock
-ffffffc008c31540 d trace_event_type_funcs_mmap_lock
-ffffffc008c31560 d print_fmt_mmap_lock
-ffffffc008c315c0 d event_mmap_lock_start_locking
-ffffffc008c31650 d event_mmap_lock_released
-ffffffc008c316e0 d trace_event_fields_mmap_lock_acquire_returned
-ffffffc008c317a8 d trace_event_type_funcs_mmap_lock_acquire_returned
-ffffffc008c317c8 d print_fmt_mmap_lock_acquire_returned
-ffffffc008c31858 d event_mmap_lock_acquire_returned
-ffffffc008c318e8 D __SCK__tp_func_vm_unmapped_area
-ffffffc008c318f0 D __SCK__tp_func_vma_mas_szero
-ffffffc008c318f8 D __SCK__tp_func_vma_store
-ffffffc008c31900 D __SCK__tp_func_exit_mmap
-ffffffc008c31908 d trace_event_fields_vm_unmapped_area
-ffffffc008c31a70 d trace_event_type_funcs_vm_unmapped_area
-ffffffc008c31a90 d print_fmt_vm_unmapped_area
-ffffffc008c31c30 d event_vm_unmapped_area
-ffffffc008c31cc0 d trace_event_fields_vma_mas_szero
-ffffffc008c31d60 d trace_event_type_funcs_vma_mas_szero
-ffffffc008c31d80 d print_fmt_vma_mas_szero
-ffffffc008c31de8 d event_vma_mas_szero
-ffffffc008c31e78 d trace_event_fields_vma_store
-ffffffc008c31f40 d trace_event_type_funcs_vma_store
-ffffffc008c31f60 d print_fmt_vma_store
-ffffffc008c31fd8 d event_vma_store
-ffffffc008c32068 d trace_event_fields_exit_mmap
-ffffffc008c320e0 d trace_event_type_funcs_exit_mmap
-ffffffc008c32100 d print_fmt_exit_mmap
-ffffffc008c32120 d event_exit_mmap
-ffffffc008c321b0 d mm_all_locks_mutex
-ffffffc008c321d0 d reserve_mem_nb
-ffffffc008c321e8 D stack_guard_gap
-ffffffc008c321f0 D __SCK__tp_func_tlb_flush
-ffffffc008c321f8 d trace_event_fields_tlb_flush
-ffffffc008c32270 d trace_event_type_funcs_tlb_flush
-ffffffc008c32290 d print_fmt_tlb_flush
-ffffffc008c323d8 d event_tlb_flush
-ffffffc008c32468 D __SCK__tp_func_mm_migrate_pages
-ffffffc008c32470 D __SCK__tp_func_mm_migrate_pages_start
-ffffffc008c32478 D __SCK__tp_func_set_migration_pte
-ffffffc008c32480 D __SCK__tp_func_remove_migration_pte
-ffffffc008c32488 d trace_event_fields_mm_migrate_pages
-ffffffc008c325c8 d trace_event_type_funcs_mm_migrate_pages
-ffffffc008c325e8 d print_fmt_mm_migrate_pages
-ffffffc008c32890 d event_mm_migrate_pages
-ffffffc008c32920 d trace_event_fields_mm_migrate_pages_start
-ffffffc008c32998 d trace_event_type_funcs_mm_migrate_pages_start
-ffffffc008c329b8 d print_fmt_mm_migrate_pages_start
-ffffffc008c32bb8 d event_mm_migrate_pages_start
-ffffffc008c32c48 d trace_event_fields_migration_pte
-ffffffc008c32ce8 d trace_event_type_funcs_migration_pte
-ffffffc008c32d08 d print_fmt_migration_pte
-ffffffc008c32d48 d event_set_migration_pte
-ffffffc008c32dd8 d event_remove_migration_pte
-ffffffc008c32e68 D vmap_area_list
-ffffffc008c32e78 d vmap_notify_list
-ffffffc008c32eb0 d free_vmap_area_list
-ffffffc008c32ec0 d vmap_purge_lock
-ffffffc008c32ee0 d purge_vmap_area_list
-ffffffc008c32ef0 d drain_vmap_work
-ffffffc008c32f10 D vm_numa_stat_key
-ffffffc008c32f20 D sysctl_lowmem_reserve_ratio
-ffffffc008c32f30 D min_free_kbytes
-ffffffc008c32f34 D user_min_free_kbytes
-ffffffc008c32f38 D watermark_scale_factor
-ffffffc008c32f40 d warn_alloc.nopage_rs
-ffffffc008c32f68 d pcp_batch_high_lock
-ffffffc008c32f88 d pcpu_drain_mutex
-ffffffc008c32fa8 D init_on_alloc
-ffffffc008c32fb8 D init_mm
-ffffffc008c33330 d memblock_alloc_range_nid._rs
-ffffffc008c33358 d memblock_find_in_range._rs
-ffffffc008c33380 D memblock
-ffffffc008c333e0 d mem_hotplug_lock
-ffffffc008c33440 D max_mem_size
-ffffffc008c33448 d online_page_callback_lock
-ffffffc008c33468 d online_page_callback
-ffffffc008c33470 d do_migrate_range.migrate_rs
-ffffffc008c33498 d end_swap_bio_write._rs
-ffffffc008c334c0 d sio_write_complete._rs
-ffffffc008c334e8 d end_swap_bio_read._rs
-ffffffc008c33510 d sio_read_complete._rs
-ffffffc008c33538 d swapin_readahead_hits
-ffffffc008c33540 d swap_attrs
-ffffffc008c33550 d vma_ra_enabled_attr
-ffffffc008c33570 d swap_active_head
-ffffffc008c33580 d least_priority
-ffffffc008c33588 d swapon_mutex
-ffffffc008c335a8 d proc_poll_wait
-ffffffc008c335c0 d swap_slots_cache_enable_mutex.llvm.2883468982230103152
-ffffffc008c335e0 d swap_slots_cache_mutex
-ffffffc008c33600 d pools_reg_lock
-ffffffc008c33620 d pools_lock
-ffffffc008c33640 d dev_attr_pools
-ffffffc008c33660 d slub_max_order
-ffffffc008c33668 d slab_memory_callback_nb
-ffffffc008c33680 d slab_out_of_memory.slub_oom_rs
-ffffffc008c336a8 d flush_lock
-ffffffc008c336c8 d slab_ktype
-ffffffc008c336f8 d slab_attrs
-ffffffc008c337e0 d slab_size_attr
-ffffffc008c33800 d object_size_attr
-ffffffc008c33820 d objs_per_slab_attr
-ffffffc008c33840 d order_attr
-ffffffc008c33860 d min_partial_attr
-ffffffc008c33880 d cpu_partial_attr
-ffffffc008c338a0 d objects_attr
-ffffffc008c338c0 d objects_partial_attr
-ffffffc008c338e0 d partial_attr
-ffffffc008c33900 d cpu_slabs_attr
-ffffffc008c33920 d ctor_attr
-ffffffc008c33940 d aliases_attr
-ffffffc008c33960 d align_attr
-ffffffc008c33980 d hwcache_align_attr
-ffffffc008c339a0 d reclaim_account_attr
-ffffffc008c339c0 d destroy_by_rcu_attr
-ffffffc008c339e0 d shrink_attr
-ffffffc008c33a00 d slabs_cpu_partial_attr
-ffffffc008c33a20 d total_objects_attr
-ffffffc008c33a40 d slabs_attr
-ffffffc008c33a60 d sanity_checks_attr
-ffffffc008c33a80 d trace_attr
-ffffffc008c33aa0 d red_zone_attr
-ffffffc008c33ac0 d poison_attr
-ffffffc008c33ae0 d store_user_attr
-ffffffc008c33b00 d validate_attr
-ffffffc008c33b20 d cache_dma_attr
-ffffffc008c33b40 d usersize_attr
-ffffffc008c33b60 D kasan_flag_vmalloc
-ffffffc008c33b70 D kasan_page_alloc_sample
-ffffffc008c33b78 D kasan_page_alloc_sample_order
-ffffffc008c33b80 D kasan_flag_stacktrace
-ffffffc008c33b90 D __SCK__tp_func_hugepage_set_pmd
-ffffffc008c33b98 D __SCK__tp_func_hugepage_update
-ffffffc008c33ba0 D __SCK__tp_func_set_migration_pmd
-ffffffc008c33ba8 D __SCK__tp_func_remove_migration_pmd
-ffffffc008c33bb0 d trace_event_fields_hugepage_set_pmd
-ffffffc008c33c28 d trace_event_type_funcs_hugepage_set_pmd
-ffffffc008c33c48 d print_fmt_hugepage_set_pmd
-ffffffc008c33c80 d event_hugepage_set_pmd
-ffffffc008c33d10 d trace_event_fields_hugepage_update
-ffffffc008c33dd8 d trace_event_type_funcs_hugepage_update
-ffffffc008c33df8 d print_fmt_hugepage_update
-ffffffc008c33e70 d event_hugepage_update
-ffffffc008c33f00 d trace_event_fields_migration_pmd
-ffffffc008c33f78 d trace_event_type_funcs_migration_pmd
-ffffffc008c33f98 d print_fmt_migration_pmd
-ffffffc008c33fc8 d event_set_migration_pmd
-ffffffc008c34058 d event_remove_migration_pmd
-ffffffc008c340e8 d huge_zero_page_shrinker
-ffffffc008c34120 d deferred_split_shrinker
-ffffffc008c34158 d hugepage_attr
-ffffffc008c34188 d enabled_attr
-ffffffc008c341a8 d defrag_attr
-ffffffc008c341c8 d use_zero_page_attr
-ffffffc008c341e8 d hpage_pmd_size_attr
-ffffffc008c34208 d split_huge_pages_write.split_debug_mutex
-ffffffc008c34228 D __SCK__tp_func_mm_khugepaged_scan_pmd
-ffffffc008c34230 D __SCK__tp_func_mm_collapse_huge_page
-ffffffc008c34238 D __SCK__tp_func_mm_collapse_huge_page_isolate
-ffffffc008c34240 D __SCK__tp_func_mm_collapse_huge_page_swapin
-ffffffc008c34248 D __SCK__tp_func_mm_khugepaged_scan_file
-ffffffc008c34250 d trace_event_fields_mm_khugepaged_scan_pmd
-ffffffc008c34390 d trace_event_type_funcs_mm_khugepaged_scan_pmd
-ffffffc008c343b0 d print_fmt_mm_khugepaged_scan_pmd
-ffffffc008c34908 d event_mm_khugepaged_scan_pmd
-ffffffc008c34998 d trace_event_fields_mm_collapse_huge_page
-ffffffc008c34a38 d trace_event_type_funcs_mm_collapse_huge_page
-ffffffc008c34a58 d print_fmt_mm_collapse_huge_page
-ffffffc008c34f38 d event_mm_collapse_huge_page
-ffffffc008c34fc8 d trace_event_fields_mm_collapse_huge_page_isolate
-ffffffc008c350b8 d trace_event_type_funcs_mm_collapse_huge_page_isolate
-ffffffc008c350d8 d print_fmt_mm_collapse_huge_page_isolate
-ffffffc008c35600 d event_mm_collapse_huge_page_isolate
-ffffffc008c35690 d trace_event_fields_mm_collapse_huge_page_swapin
-ffffffc008c35758 d trace_event_type_funcs_mm_collapse_huge_page_swapin
-ffffffc008c35778 d print_fmt_mm_collapse_huge_page_swapin
-ffffffc008c357e0 d event_mm_collapse_huge_page_swapin
-ffffffc008c35870 d trace_event_fields_mm_khugepaged_scan_file
-ffffffc008c35988 d trace_event_type_funcs_mm_khugepaged_scan_file
-ffffffc008c359a8 d print_fmt_mm_khugepaged_scan_file
-ffffffc008c35ed0 d event_mm_khugepaged_scan_file
-ffffffc008c35f60 d khugepaged_attr
-ffffffc008c35fb0 d khugepaged_scan
-ffffffc008c35fd0 d khugepaged_wait
-ffffffc008c35fe8 D khugepaged_collapse_control
-ffffffc008c35ff8 d khugepaged_mutex
-ffffffc008c36018 d khugepaged_defrag_attr
-ffffffc008c36038 d khugepaged_max_ptes_none_attr
-ffffffc008c36058 d khugepaged_max_ptes_swap_attr
-ffffffc008c36078 d khugepaged_max_ptes_shared_attr
-ffffffc008c36098 d pages_to_scan_attr
-ffffffc008c360b8 d pages_collapsed_attr
-ffffffc008c360d8 d full_scans_attr
-ffffffc008c360f8 d scan_sleep_millisecs_attr
-ffffffc008c36118 d alloc_sleep_millisecs_attr
-ffffffc008c36138 D khugepaged_attr_group
-ffffffc008c36160 D page_owner_ops
-ffffffc008c36180 D __SCK__tp_func_test_pages_isolated
-ffffffc008c36188 d trace_event_fields_test_pages_isolated
-ffffffc008c36228 d trace_event_type_funcs_test_pages_isolated
-ffffffc008c36248 d print_fmt_test_pages_isolated
-ffffffc008c362e0 d event_test_pages_isolated
-ffffffc008c36370 D page_ext_size
-ffffffc008c36378 d secretmem_fs
-ffffffc008c363c0 D page_reporting_order
-ffffffc008c363c8 d page_reporting_mutex
-ffffffc008c363e8 d warn_unsupported._rs
-ffffffc008c36410 d files_stat.llvm.13366073759329851100
-ffffffc008c36428 d delayed_fput_work
-ffffffc008c36480 d fs_stat_sysctls
-ffffffc008c36580 d super_blocks
-ffffffc008c36590 d unnamed_dev_ida
-ffffffc008c365a0 d chrdevs_lock.llvm.15562309049154878701
-ffffffc008c365c0 d ktype_cdev_dynamic
-ffffffc008c365f0 d ktype_cdev_default
-ffffffc008c36620 d formats
-ffffffc008c36630 d fs_exec_sysctls
-ffffffc008c366b0 d pipe_user_pages_soft
-ffffffc008c366b8 d pipe_max_size
-ffffffc008c366c0 d pipe_fs_type
-ffffffc008c36708 d fs_pipe_sysctls
-ffffffc008c36808 d namei_sysctls
-ffffffc008c36948 d ioctl_fibmap._rs
-ffffffc008c36970 d d_splice_alias._rs
-ffffffc008c36998 d fs_dcache_sysctls
-ffffffc008c36a18 d dentry_stat
-ffffffc008c36a48 d inodes_sysctls
-ffffffc008c36b08 D sysctl_nr_open_min
-ffffffc008c36b0c D sysctl_nr_open_max
-ffffffc008c36b40 D init_files
-ffffffc008c36e00 d mnt_group_ida.llvm.1554850461162813889
-ffffffc008c36e10 d namespace_sem
-ffffffc008c36e40 d ex_mountpoints
-ffffffc008c36e50 d mnt_id_ida
-ffffffc008c36e60 d delayed_mntput_work
-ffffffc008c36eb8 d mnt_ns_seq
-ffffffc008c36ec0 d fs_namespace_sysctls
-ffffffc008c36f40 d seq_read_iter._rs
-ffffffc008c36f68 D dirtytime_expire_interval
-ffffffc008c36f70 D __SCK__tp_func_writeback_dirty_folio
-ffffffc008c36f78 D __SCK__tp_func_folio_wait_writeback
-ffffffc008c36f80 D __SCK__tp_func_writeback_mark_inode_dirty
-ffffffc008c36f88 D __SCK__tp_func_writeback_dirty_inode_start
-ffffffc008c36f90 D __SCK__tp_func_writeback_dirty_inode
-ffffffc008c36f98 D __SCK__tp_func_writeback_write_inode_start
-ffffffc008c36fa0 D __SCK__tp_func_writeback_write_inode
-ffffffc008c36fa8 D __SCK__tp_func_writeback_queue
-ffffffc008c36fb0 D __SCK__tp_func_writeback_exec
-ffffffc008c36fb8 D __SCK__tp_func_writeback_start
-ffffffc008c36fc0 D __SCK__tp_func_writeback_written
-ffffffc008c36fc8 D __SCK__tp_func_writeback_wait
-ffffffc008c36fd0 D __SCK__tp_func_writeback_pages_written
-ffffffc008c36fd8 D __SCK__tp_func_writeback_wake_background
-ffffffc008c36fe0 D __SCK__tp_func_writeback_bdi_register
-ffffffc008c36fe8 D __SCK__tp_func_wbc_writepage
-ffffffc008c36ff0 D __SCK__tp_func_writeback_queue_io
-ffffffc008c36ff8 D __SCK__tp_func_global_dirty_state
-ffffffc008c37000 D __SCK__tp_func_bdi_dirty_ratelimit
-ffffffc008c37008 D __SCK__tp_func_balance_dirty_pages
-ffffffc008c37010 D __SCK__tp_func_writeback_sb_inodes_requeue
-ffffffc008c37018 D __SCK__tp_func_writeback_single_inode_start
-ffffffc008c37020 D __SCK__tp_func_writeback_single_inode
-ffffffc008c37028 D __SCK__tp_func_writeback_lazytime
-ffffffc008c37030 D __SCK__tp_func_writeback_lazytime_iput
-ffffffc008c37038 D __SCK__tp_func_writeback_dirty_inode_enqueue
-ffffffc008c37040 D __SCK__tp_func_sb_mark_inode_writeback
-ffffffc008c37048 D __SCK__tp_func_sb_clear_inode_writeback
-ffffffc008c37050 d trace_event_fields_writeback_folio_template
-ffffffc008c370f0 d trace_event_type_funcs_writeback_folio_template
-ffffffc008c37110 d print_fmt_writeback_folio_template
-ffffffc008c37160 d event_writeback_dirty_folio
-ffffffc008c371f0 d event_folio_wait_writeback
-ffffffc008c37280 d trace_event_fields_writeback_dirty_inode_template
-ffffffc008c37348 d trace_event_type_funcs_writeback_dirty_inode_template
-ffffffc008c37368 d print_fmt_writeback_dirty_inode_template
-ffffffc008c37608 d event_writeback_mark_inode_dirty
-ffffffc008c37698 d event_writeback_dirty_inode_start
-ffffffc008c37728 d event_writeback_dirty_inode
-ffffffc008c377b8 d trace_event_fields_writeback_write_inode_template
-ffffffc008c37880 d trace_event_type_funcs_writeback_write_inode_template
-ffffffc008c378a0 d print_fmt_writeback_write_inode_template
-ffffffc008c37928 d event_writeback_write_inode_start
-ffffffc008c379b8 d event_writeback_write_inode
-ffffffc008c37a48 d trace_event_fields_writeback_work_class
-ffffffc008c37bd8 d trace_event_type_funcs_writeback_work_class
-ffffffc008c37bf8 d print_fmt_writeback_work_class
-ffffffc008c37eb0 d event_writeback_queue
-ffffffc008c37f40 d event_writeback_exec
-ffffffc008c37fd0 d event_writeback_start
-ffffffc008c38060 d event_writeback_written
-ffffffc008c380f0 d event_writeback_wait
-ffffffc008c38180 d trace_event_fields_writeback_pages_written
-ffffffc008c381d0 d trace_event_type_funcs_writeback_pages_written
-ffffffc008c381f0 d print_fmt_writeback_pages_written
-ffffffc008c38208 d event_writeback_pages_written
-ffffffc008c38298 d trace_event_fields_writeback_class
-ffffffc008c38310 d trace_event_type_funcs_writeback_class
-ffffffc008c38330 d print_fmt_writeback_class
-ffffffc008c38378 d event_writeback_wake_background
-ffffffc008c38408 d trace_event_fields_writeback_bdi_register
-ffffffc008c38458 d trace_event_type_funcs_writeback_bdi_register
-ffffffc008c38478 d print_fmt_writeback_bdi_register
-ffffffc008c38490 d event_writeback_bdi_register
-ffffffc008c38520 d trace_event_fields_wbc_class
-ffffffc008c38700 d trace_event_type_funcs_wbc_class
-ffffffc008c38720 d print_fmt_wbc_class
-ffffffc008c38860 d event_wbc_writepage
-ffffffc008c388f0 d trace_event_fields_writeback_queue_io
-ffffffc008c38a08 d trace_event_type_funcs_writeback_queue_io
-ffffffc008c38a28 d print_fmt_writeback_queue_io
-ffffffc008c38c18 d event_writeback_queue_io
-ffffffc008c38ca8 d trace_event_fields_global_dirty_state
-ffffffc008c38de8 d trace_event_type_funcs_global_dirty_state
-ffffffc008c38e08 d print_fmt_global_dirty_state
-ffffffc008c38ee0 d event_global_dirty_state
-ffffffc008c38f70 d trace_event_fields_bdi_dirty_ratelimit
-ffffffc008c390d8 d trace_event_type_funcs_bdi_dirty_ratelimit
-ffffffc008c390f8 d print_fmt_bdi_dirty_ratelimit
-ffffffc008c39228 d event_bdi_dirty_ratelimit
-ffffffc008c392b8 d trace_event_fields_balance_dirty_pages
-ffffffc008c39538 d trace_event_type_funcs_balance_dirty_pages
-ffffffc008c39558 d print_fmt_balance_dirty_pages
-ffffffc008c39718 d event_balance_dirty_pages
-ffffffc008c397a8 d trace_event_fields_writeback_sb_inodes_requeue
-ffffffc008c39898 d trace_event_type_funcs_writeback_sb_inodes_requeue
-ffffffc008c398b8 d print_fmt_writeback_sb_inodes_requeue
-ffffffc008c39aa0 d event_writeback_sb_inodes_requeue
-ffffffc008c39b30 d trace_event_fields_writeback_single_inode_template
-ffffffc008c39c98 d trace_event_type_funcs_writeback_single_inode_template
-ffffffc008c39cb8 d print_fmt_writeback_single_inode_template
-ffffffc008c39ef8 d event_writeback_single_inode_start
-ffffffc008c39f88 d event_writeback_single_inode
-ffffffc008c3a018 d trace_event_fields_writeback_inode_template
-ffffffc008c3a108 d trace_event_type_funcs_writeback_inode_template
-ffffffc008c3a128 d print_fmt_writeback_inode_template
-ffffffc008c3a318 d event_writeback_lazytime
-ffffffc008c3a3a8 d event_writeback_lazytime_iput
-ffffffc008c3a438 d event_writeback_dirty_inode_enqueue
-ffffffc008c3a4c8 d event_sb_mark_inode_writeback
-ffffffc008c3a558 d event_sb_clear_inode_writeback
-ffffffc008c3a5e8 d dirtytime_work
-ffffffc008c3a640 D init_fs
-ffffffc008c3a678 d nsfs
-ffffffc008c3a6c0 d buffer_io_error._rs
-ffffffc008c3a6e8 d buffer_io_error._rs
-ffffffc008c3a710 d __find_get_block_slow.last_warned
-ffffffc008c3a738 d connector_reaper_work
-ffffffc008c3a758 d destroy_list
-ffffffc008c3a768 d reaper_work.llvm.18119161325752488112
-ffffffc008c3a7c0 d fsnotify_add_mark_list._rs
-ffffffc008c3a7e8 d inotify_table
-ffffffc008c3a8e8 d it_int_max
-ffffffc008c3a8f0 d epmutex
-ffffffc008c3a910 d tfile_check_list
-ffffffc008c3a918 d epoll_table
-ffffffc008c3a998 d long_max
-ffffffc008c3a9a0 d anon_inode_fs_type
-ffffffc008c3a9e8 d cancel_list
-ffffffc008c3a9f8 d timerfd_work.llvm.17785486314389451125
-ffffffc008c3aa18 d eventfd_ida
-ffffffc008c3aa28 d userfaultfd_misc
-ffffffc008c3aa78 d aio_setup.aio_fs
-ffffffc008c3aac0 d aio_sysctls
-ffffffc008c3ab80 d aio_max_nr
-ffffffc008c3ab88 D __SCK__tp_func_locks_get_lock_context
-ffffffc008c3ab90 D __SCK__tp_func_posix_lock_inode
-ffffffc008c3ab98 D __SCK__tp_func_fcntl_setlk
-ffffffc008c3aba0 D __SCK__tp_func_locks_remove_posix
-ffffffc008c3aba8 D __SCK__tp_func_flock_lock_inode
-ffffffc008c3abb0 D __SCK__tp_func_break_lease_noblock
-ffffffc008c3abb8 D __SCK__tp_func_break_lease_block
-ffffffc008c3abc0 D __SCK__tp_func_break_lease_unblock
-ffffffc008c3abc8 D __SCK__tp_func_generic_delete_lease
-ffffffc008c3abd0 D __SCK__tp_func_time_out_leases
-ffffffc008c3abd8 D __SCK__tp_func_generic_add_lease
-ffffffc008c3abe0 D __SCK__tp_func_leases_conflict
-ffffffc008c3abe8 d trace_event_fields_locks_get_lock_context
-ffffffc008c3acb0 d trace_event_type_funcs_locks_get_lock_context
-ffffffc008c3acd0 d print_fmt_locks_get_lock_context
-ffffffc008c3adc0 d event_locks_get_lock_context
-ffffffc008c3ae50 d trace_event_fields_filelock_lock
-ffffffc008c3b030 d trace_event_type_funcs_filelock_lock
-ffffffc008c3b050 d print_fmt_filelock_lock
-ffffffc008c3b300 d event_posix_lock_inode
-ffffffc008c3b390 d event_fcntl_setlk
-ffffffc008c3b420 d event_locks_remove_posix
-ffffffc008c3b4b0 d event_flock_lock_inode
-ffffffc008c3b540 d trace_event_fields_filelock_lease
-ffffffc008c3b6d0 d trace_event_type_funcs_filelock_lease
-ffffffc008c3b6f0 d print_fmt_filelock_lease
-ffffffc008c3b998 d event_break_lease_noblock
-ffffffc008c3ba28 d event_break_lease_block
-ffffffc008c3bab8 d event_break_lease_unblock
-ffffffc008c3bb48 d event_generic_delete_lease
-ffffffc008c3bbd8 d event_time_out_leases
-ffffffc008c3bc68 d trace_event_fields_generic_add_lease
-ffffffc008c3bdd0 d trace_event_type_funcs_generic_add_lease
-ffffffc008c3bdf0 d print_fmt_generic_add_lease
-ffffffc008c3c058 d event_generic_add_lease
-ffffffc008c3c0e8 d trace_event_fields_leases_conflict
-ffffffc008c3c228 d trace_event_type_funcs_leases_conflict
-ffffffc008c3c248 d print_fmt_leases_conflict
-ffffffc008c3c5a8 d event_leases_conflict
-ffffffc008c3c638 d file_rwsem
-ffffffc008c3c698 d lease_break_time
-ffffffc008c3c6a0 d locks_sysctls
-ffffffc008c3c760 d leases_enable
-ffffffc008c3c768 d misc_format
-ffffffc008c3c7a0 d bm_fs_type
-ffffffc008c3c7e8 d entries
-ffffffc008c3c7f8 d script_format
-ffffffc008c3c830 d elf_format
-ffffffc008c3c868 d do_coredump._rs
-ffffffc008c3c890 d do_coredump._rs.9
-ffffffc008c3c8b8 d core_pattern
-ffffffc008c3c938 d core_name_size
-ffffffc008c3c940 d coredump_sysctls
-ffffffc008c3ca40 D __SCK__tp_func_iomap_readpage
-ffffffc008c3ca48 D __SCK__tp_func_iomap_readahead
-ffffffc008c3ca50 D __SCK__tp_func_iomap_writepage
-ffffffc008c3ca58 D __SCK__tp_func_iomap_release_folio
-ffffffc008c3ca60 D __SCK__tp_func_iomap_invalidate_folio
-ffffffc008c3ca68 D __SCK__tp_func_iomap_dio_invalidate_fail
-ffffffc008c3ca70 D __SCK__tp_func_iomap_iter_dstmap
-ffffffc008c3ca78 D __SCK__tp_func_iomap_iter_srcmap
-ffffffc008c3ca80 D __SCK__tp_func_iomap_writepage_map
-ffffffc008c3ca88 D __SCK__tp_func_iomap_iter
-ffffffc008c3ca90 d trace_event_fields_iomap_readpage_class
-ffffffc008c3cb30 d trace_event_type_funcs_iomap_readpage_class
-ffffffc008c3cb50 d print_fmt_iomap_readpage_class
-ffffffc008c3cbe8 d event_iomap_readpage
-ffffffc008c3cc78 d event_iomap_readahead
-ffffffc008c3cd08 d trace_event_fields_iomap_range_class
-ffffffc008c3cdf8 d trace_event_type_funcs_iomap_range_class
-ffffffc008c3ce18 d print_fmt_iomap_range_class
-ffffffc008c3cee0 d event_iomap_writepage
-ffffffc008c3cf70 d event_iomap_release_folio
-ffffffc008c3d000 d event_iomap_invalidate_folio
-ffffffc008c3d090 d event_iomap_dio_invalidate_fail
-ffffffc008c3d120 d trace_event_fields_iomap_class
-ffffffc008c3d288 d trace_event_type_funcs_iomap_class
-ffffffc008c3d2a8 d print_fmt_iomap_class
-ffffffc008c3d4f0 d event_iomap_iter_dstmap
-ffffffc008c3d580 d event_iomap_iter_srcmap
-ffffffc008c3d610 d event_iomap_writepage_map
-ffffffc008c3d6a0 d trace_event_fields_iomap_iter
-ffffffc008c3d7e0 d trace_event_type_funcs_iomap_iter
-ffffffc008c3d800 d print_fmt_iomap_iter
-ffffffc008c3d9a8 d event_iomap_iter
-ffffffc008c3da38 d iomap_finish_ioend._rs
-ffffffc008c3da60 d iomap_dio_iter._rs
-ffffffc008c3da88 d proc_fs_type
-ffffffc008c3dad0 D proc_root
-ffffffc008c3db80 d proc_inum_ida.llvm.3954255675701154021
-ffffffc008c3db90 d sysctl_table_root.llvm.5398338340430645451
-ffffffc008c3dc08 d root_table
-ffffffc008c3dc88 d __kernfs_iattrs.iattr_mutex
-ffffffc008c3dca8 D kernfs_xattr_handlers
-ffffffc008c3dcc8 d kernfs_notify.kernfs_notify_work
-ffffffc008c3dce8 d kernfs_notify_list
-ffffffc008c3dcf0 d sysfs_fs_type
-ffffffc008c3dd38 d pty_limit
-ffffffc008c3dd3c d pty_reserve
-ffffffc008c3dd40 d devpts_fs_type
-ffffffc008c3dd88 d pty_root_table
-ffffffc008c3de08 d pty_kern_table
-ffffffc008c3de88 d pty_table
-ffffffc008c3df88 d pty_limit_max
-ffffffc008c3df90 d es_reclaim_extents._rs
-ffffffc008c3dfb8 d ext4_ioctl_checkpoint._rs
-ffffffc008c3dfe0 d ext4_groupinfo_create_slab.ext4_grpinfo_slab_create_mutex
-ffffffc008c3e000 D __SCK__tp_func_ext4_other_inode_update_time
-ffffffc008c3e008 D __SCK__tp_func_ext4_free_inode
-ffffffc008c3e010 D __SCK__tp_func_ext4_request_inode
-ffffffc008c3e018 D __SCK__tp_func_ext4_allocate_inode
-ffffffc008c3e020 D __SCK__tp_func_ext4_evict_inode
-ffffffc008c3e028 D __SCK__tp_func_ext4_drop_inode
-ffffffc008c3e030 D __SCK__tp_func_ext4_nfs_commit_metadata
-ffffffc008c3e038 D __SCK__tp_func_ext4_mark_inode_dirty
-ffffffc008c3e040 D __SCK__tp_func_ext4_begin_ordered_truncate
-ffffffc008c3e048 D __SCK__tp_func_ext4_write_begin
-ffffffc008c3e050 D __SCK__tp_func_ext4_da_write_begin
-ffffffc008c3e058 D __SCK__tp_func_ext4_write_end
-ffffffc008c3e060 D __SCK__tp_func_ext4_journalled_write_end
-ffffffc008c3e068 D __SCK__tp_func_ext4_da_write_end
-ffffffc008c3e070 D __SCK__tp_func_ext4_writepages
-ffffffc008c3e078 D __SCK__tp_func_ext4_da_write_pages
-ffffffc008c3e080 D __SCK__tp_func_ext4_da_write_pages_extent
-ffffffc008c3e088 D __SCK__tp_func_ext4_writepages_result
-ffffffc008c3e090 D __SCK__tp_func_ext4_writepage
-ffffffc008c3e098 D __SCK__tp_func_ext4_readpage
-ffffffc008c3e0a0 D __SCK__tp_func_ext4_releasepage
-ffffffc008c3e0a8 D __SCK__tp_func_ext4_invalidate_folio
-ffffffc008c3e0b0 D __SCK__tp_func_ext4_journalled_invalidate_folio
-ffffffc008c3e0b8 D __SCK__tp_func_ext4_discard_blocks
-ffffffc008c3e0c0 D __SCK__tp_func_ext4_mb_new_inode_pa
-ffffffc008c3e0c8 D __SCK__tp_func_ext4_mb_new_group_pa
-ffffffc008c3e0d0 D __SCK__tp_func_ext4_mb_release_inode_pa
-ffffffc008c3e0d8 D __SCK__tp_func_ext4_mb_release_group_pa
-ffffffc008c3e0e0 D __SCK__tp_func_ext4_discard_preallocations
-ffffffc008c3e0e8 D __SCK__tp_func_ext4_mb_discard_preallocations
-ffffffc008c3e0f0 D __SCK__tp_func_ext4_request_blocks
-ffffffc008c3e0f8 D __SCK__tp_func_ext4_allocate_blocks
-ffffffc008c3e100 D __SCK__tp_func_ext4_free_blocks
-ffffffc008c3e108 D __SCK__tp_func_ext4_sync_file_enter
-ffffffc008c3e110 D __SCK__tp_func_ext4_sync_file_exit
-ffffffc008c3e118 D __SCK__tp_func_ext4_sync_fs
-ffffffc008c3e120 D __SCK__tp_func_ext4_alloc_da_blocks
-ffffffc008c3e128 D __SCK__tp_func_ext4_mballoc_alloc
-ffffffc008c3e130 D __SCK__tp_func_ext4_mballoc_prealloc
-ffffffc008c3e138 D __SCK__tp_func_ext4_mballoc_discard
-ffffffc008c3e140 D __SCK__tp_func_ext4_mballoc_free
-ffffffc008c3e148 D __SCK__tp_func_ext4_forget
-ffffffc008c3e150 D __SCK__tp_func_ext4_da_update_reserve_space
-ffffffc008c3e158 D __SCK__tp_func_ext4_da_reserve_space
-ffffffc008c3e160 D __SCK__tp_func_ext4_da_release_space
-ffffffc008c3e168 D __SCK__tp_func_ext4_mb_bitmap_load
-ffffffc008c3e170 D __SCK__tp_func_ext4_mb_buddy_bitmap_load
-ffffffc008c3e178 D __SCK__tp_func_ext4_load_inode_bitmap
-ffffffc008c3e180 D __SCK__tp_func_ext4_read_block_bitmap_load
-ffffffc008c3e188 D __SCK__tp_func_ext4_fallocate_enter
-ffffffc008c3e190 D __SCK__tp_func_ext4_punch_hole
-ffffffc008c3e198 D __SCK__tp_func_ext4_zero_range
-ffffffc008c3e1a0 D __SCK__tp_func_ext4_fallocate_exit
-ffffffc008c3e1a8 D __SCK__tp_func_ext4_unlink_enter
-ffffffc008c3e1b0 D __SCK__tp_func_ext4_unlink_exit
-ffffffc008c3e1b8 D __SCK__tp_func_ext4_truncate_enter
-ffffffc008c3e1c0 D __SCK__tp_func_ext4_truncate_exit
-ffffffc008c3e1c8 D __SCK__tp_func_ext4_ext_convert_to_initialized_enter
-ffffffc008c3e1d0 D __SCK__tp_func_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c3e1d8 D __SCK__tp_func_ext4_ext_map_blocks_enter
-ffffffc008c3e1e0 D __SCK__tp_func_ext4_ind_map_blocks_enter
-ffffffc008c3e1e8 D __SCK__tp_func_ext4_ext_map_blocks_exit
-ffffffc008c3e1f0 D __SCK__tp_func_ext4_ind_map_blocks_exit
-ffffffc008c3e1f8 D __SCK__tp_func_ext4_ext_load_extent
-ffffffc008c3e200 D __SCK__tp_func_ext4_load_inode
-ffffffc008c3e208 D __SCK__tp_func_ext4_journal_start
-ffffffc008c3e210 D __SCK__tp_func_ext4_journal_start_reserved
-ffffffc008c3e218 D __SCK__tp_func_ext4_trim_extent
-ffffffc008c3e220 D __SCK__tp_func_ext4_trim_all_free
-ffffffc008c3e228 D __SCK__tp_func_ext4_ext_handle_unwritten_extents
-ffffffc008c3e230 D __SCK__tp_func_ext4_get_implied_cluster_alloc_exit
-ffffffc008c3e238 D __SCK__tp_func_ext4_ext_show_extent
-ffffffc008c3e240 D __SCK__tp_func_ext4_remove_blocks
-ffffffc008c3e248 D __SCK__tp_func_ext4_ext_rm_leaf
-ffffffc008c3e250 D __SCK__tp_func_ext4_ext_rm_idx
-ffffffc008c3e258 D __SCK__tp_func_ext4_ext_remove_space
-ffffffc008c3e260 D __SCK__tp_func_ext4_ext_remove_space_done
-ffffffc008c3e268 D __SCK__tp_func_ext4_es_insert_extent
-ffffffc008c3e270 D __SCK__tp_func_ext4_es_cache_extent
-ffffffc008c3e278 D __SCK__tp_func_ext4_es_remove_extent
-ffffffc008c3e280 D __SCK__tp_func_ext4_es_find_extent_range_enter
-ffffffc008c3e288 D __SCK__tp_func_ext4_es_find_extent_range_exit
-ffffffc008c3e290 D __SCK__tp_func_ext4_es_lookup_extent_enter
-ffffffc008c3e298 D __SCK__tp_func_ext4_es_lookup_extent_exit
-ffffffc008c3e2a0 D __SCK__tp_func_ext4_es_shrink_count
-ffffffc008c3e2a8 D __SCK__tp_func_ext4_es_shrink_scan_enter
-ffffffc008c3e2b0 D __SCK__tp_func_ext4_es_shrink_scan_exit
-ffffffc008c3e2b8 D __SCK__tp_func_ext4_collapse_range
-ffffffc008c3e2c0 D __SCK__tp_func_ext4_insert_range
-ffffffc008c3e2c8 D __SCK__tp_func_ext4_es_shrink
-ffffffc008c3e2d0 D __SCK__tp_func_ext4_es_insert_delayed_block
-ffffffc008c3e2d8 D __SCK__tp_func_ext4_fsmap_low_key
-ffffffc008c3e2e0 D __SCK__tp_func_ext4_fsmap_high_key
-ffffffc008c3e2e8 D __SCK__tp_func_ext4_fsmap_mapping
-ffffffc008c3e2f0 D __SCK__tp_func_ext4_getfsmap_low_key
-ffffffc008c3e2f8 D __SCK__tp_func_ext4_getfsmap_high_key
-ffffffc008c3e300 D __SCK__tp_func_ext4_getfsmap_mapping
-ffffffc008c3e308 D __SCK__tp_func_ext4_shutdown
-ffffffc008c3e310 D __SCK__tp_func_ext4_error
-ffffffc008c3e318 D __SCK__tp_func_ext4_prefetch_bitmaps
-ffffffc008c3e320 D __SCK__tp_func_ext4_lazy_itable_init
-ffffffc008c3e328 D __SCK__tp_func_ext4_fc_replay_scan
-ffffffc008c3e330 D __SCK__tp_func_ext4_fc_replay
-ffffffc008c3e338 D __SCK__tp_func_ext4_fc_commit_start
-ffffffc008c3e340 D __SCK__tp_func_ext4_fc_commit_stop
-ffffffc008c3e348 D __SCK__tp_func_ext4_fc_stats
-ffffffc008c3e350 D __SCK__tp_func_ext4_fc_track_create
-ffffffc008c3e358 D __SCK__tp_func_ext4_fc_track_link
-ffffffc008c3e360 D __SCK__tp_func_ext4_fc_track_unlink
-ffffffc008c3e368 D __SCK__tp_func_ext4_fc_track_inode
-ffffffc008c3e370 D __SCK__tp_func_ext4_fc_track_range
-ffffffc008c3e378 D __SCK__tp_func_ext4_fc_cleanup
-ffffffc008c3e380 D __SCK__tp_func_ext4_update_sb
-ffffffc008c3e388 d trace_event_fields_ext4_other_inode_update_time
-ffffffc008c3e4a0 d trace_event_type_funcs_ext4_other_inode_update_time
-ffffffc008c3e4c0 d print_fmt_ext4_other_inode_update_time
-ffffffc008c3e5a8 d event_ext4_other_inode_update_time
-ffffffc008c3e638 d trace_event_fields_ext4_free_inode
-ffffffc008c3e750 d trace_event_type_funcs_ext4_free_inode
-ffffffc008c3e770 d print_fmt_ext4_free_inode
-ffffffc008c3e848 d event_ext4_free_inode
-ffffffc008c3e8d8 d trace_event_fields_ext4_request_inode
-ffffffc008c3e978 d trace_event_type_funcs_ext4_request_inode
-ffffffc008c3e998 d print_fmt_ext4_request_inode
-ffffffc008c3ea38 d event_ext4_request_inode
-ffffffc008c3eac8 d trace_event_fields_ext4_allocate_inode
-ffffffc008c3eb90 d trace_event_type_funcs_ext4_allocate_inode
-ffffffc008c3ebb0 d print_fmt_ext4_allocate_inode
-ffffffc008c3ec70 d event_ext4_allocate_inode
-ffffffc008c3ed00 d trace_event_fields_ext4_evict_inode
-ffffffc008c3eda0 d trace_event_type_funcs_ext4_evict_inode
-ffffffc008c3edc0 d print_fmt_ext4_evict_inode
-ffffffc008c3ee60 d event_ext4_evict_inode
-ffffffc008c3eef0 d trace_event_fields_ext4_drop_inode
-ffffffc008c3ef90 d trace_event_type_funcs_ext4_drop_inode
-ffffffc008c3efb0 d print_fmt_ext4_drop_inode
-ffffffc008c3f048 d event_ext4_drop_inode
-ffffffc008c3f0d8 d trace_event_fields_ext4_nfs_commit_metadata
-ffffffc008c3f150 d trace_event_type_funcs_ext4_nfs_commit_metadata
-ffffffc008c3f170 d print_fmt_ext4_nfs_commit_metadata
-ffffffc008c3f1f8 d event_ext4_nfs_commit_metadata
-ffffffc008c3f288 d trace_event_fields_ext4_mark_inode_dirty
-ffffffc008c3f328 d trace_event_type_funcs_ext4_mark_inode_dirty
-ffffffc008c3f348 d print_fmt_ext4_mark_inode_dirty
-ffffffc008c3f3f0 d event_ext4_mark_inode_dirty
-ffffffc008c3f480 d trace_event_fields_ext4_begin_ordered_truncate
-ffffffc008c3f520 d trace_event_type_funcs_ext4_begin_ordered_truncate
-ffffffc008c3f540 d print_fmt_ext4_begin_ordered_truncate
-ffffffc008c3f5e8 d event_ext4_begin_ordered_truncate
-ffffffc008c3f678 d trace_event_fields_ext4__write_begin
-ffffffc008c3f740 d trace_event_type_funcs_ext4__write_begin
-ffffffc008c3f760 d print_fmt_ext4__write_begin
-ffffffc008c3f810 d event_ext4_write_begin
-ffffffc008c3f8a0 d event_ext4_da_write_begin
-ffffffc008c3f930 d trace_event_fields_ext4__write_end
-ffffffc008c3fa20 d trace_event_type_funcs_ext4__write_end
-ffffffc008c3fa40 d print_fmt_ext4__write_end
-ffffffc008c3fb00 d event_ext4_write_end
-ffffffc008c3fb90 d event_ext4_journalled_write_end
-ffffffc008c3fc20 d event_ext4_da_write_end
-ffffffc008c3fcb0 d trace_event_fields_ext4_writepages
-ffffffc008c3fe68 d trace_event_type_funcs_ext4_writepages
-ffffffc008c3fe88 d print_fmt_ext4_writepages
-ffffffc008c40038 d event_ext4_writepages
-ffffffc008c400c8 d trace_event_fields_ext4_da_write_pages
-ffffffc008c401b8 d trace_event_type_funcs_ext4_da_write_pages
-ffffffc008c401d8 d print_fmt_ext4_da_write_pages
-ffffffc008c402c0 d event_ext4_da_write_pages
-ffffffc008c40350 d trace_event_fields_ext4_da_write_pages_extent
-ffffffc008c40440 d trace_event_type_funcs_ext4_da_write_pages_extent
-ffffffc008c40460 d print_fmt_ext4_da_write_pages_extent
-ffffffc008c405d0 d event_ext4_da_write_pages_extent
-ffffffc008c40660 d trace_event_fields_ext4_writepages_result
-ffffffc008c407a0 d trace_event_type_funcs_ext4_writepages_result
-ffffffc008c407c0 d print_fmt_ext4_writepages_result
-ffffffc008c408f8 d event_ext4_writepages_result
-ffffffc008c40988 d trace_event_fields_ext4__page_op
-ffffffc008c40a28 d trace_event_type_funcs_ext4__page_op
-ffffffc008c40a48 d print_fmt_ext4__page_op
-ffffffc008c40af8 d event_ext4_writepage
-ffffffc008c40b88 d event_ext4_readpage
-ffffffc008c40c18 d event_ext4_releasepage
-ffffffc008c40ca8 d trace_event_fields_ext4_invalidate_folio_op
-ffffffc008c40d98 d trace_event_type_funcs_ext4_invalidate_folio_op
-ffffffc008c40db8 d print_fmt_ext4_invalidate_folio_op
-ffffffc008c40ea0 d event_ext4_invalidate_folio
-ffffffc008c40f30 d event_ext4_journalled_invalidate_folio
-ffffffc008c40fc0 d trace_event_fields_ext4_discard_blocks
-ffffffc008c41060 d trace_event_type_funcs_ext4_discard_blocks
-ffffffc008c41080 d print_fmt_ext4_discard_blocks
-ffffffc008c41110 d event_ext4_discard_blocks
-ffffffc008c411a0 d trace_event_fields_ext4__mb_new_pa
-ffffffc008c41290 d trace_event_type_funcs_ext4__mb_new_pa
-ffffffc008c412b0 d print_fmt_ext4__mb_new_pa
-ffffffc008c41388 d event_ext4_mb_new_inode_pa
-ffffffc008c41418 d event_ext4_mb_new_group_pa
-ffffffc008c414a8 d trace_event_fields_ext4_mb_release_inode_pa
-ffffffc008c41570 d trace_event_type_funcs_ext4_mb_release_inode_pa
-ffffffc008c41590 d print_fmt_ext4_mb_release_inode_pa
-ffffffc008c41648 d event_ext4_mb_release_inode_pa
-ffffffc008c416d8 d trace_event_fields_ext4_mb_release_group_pa
-ffffffc008c41778 d trace_event_type_funcs_ext4_mb_release_group_pa
-ffffffc008c41798 d print_fmt_ext4_mb_release_group_pa
-ffffffc008c41830 d event_ext4_mb_release_group_pa
-ffffffc008c418c0 d trace_event_fields_ext4_discard_preallocations
-ffffffc008c41988 d trace_event_type_funcs_ext4_discard_preallocations
-ffffffc008c419a8 d print_fmt_ext4_discard_preallocations
-ffffffc008c41a58 d event_ext4_discard_preallocations
-ffffffc008c41ae8 d trace_event_fields_ext4_mb_discard_preallocations
-ffffffc008c41b60 d trace_event_type_funcs_ext4_mb_discard_preallocations
-ffffffc008c41b80 d print_fmt_ext4_mb_discard_preallocations
-ffffffc008c41c00 d event_ext4_mb_discard_preallocations
-ffffffc008c41c90 d trace_event_fields_ext4_request_blocks
-ffffffc008c41e48 d trace_event_type_funcs_ext4_request_blocks
-ffffffc008c41e68 d print_fmt_ext4_request_blocks
-ffffffc008c42150 d event_ext4_request_blocks
-ffffffc008c421e0 d trace_event_fields_ext4_allocate_blocks
-ffffffc008c423c0 d trace_event_type_funcs_ext4_allocate_blocks
-ffffffc008c423e0 d print_fmt_ext4_allocate_blocks
-ffffffc008c426d8 d event_ext4_allocate_blocks
-ffffffc008c42768 d trace_event_fields_ext4_free_blocks
-ffffffc008c42880 d trace_event_type_funcs_ext4_free_blocks
-ffffffc008c428a0 d print_fmt_ext4_free_blocks
-ffffffc008c42a28 d event_ext4_free_blocks
-ffffffc008c42ab8 d trace_event_fields_ext4_sync_file_enter
-ffffffc008c42b80 d trace_event_type_funcs_ext4_sync_file_enter
-ffffffc008c42ba0 d print_fmt_ext4_sync_file_enter
-ffffffc008c42c70 d event_ext4_sync_file_enter
-ffffffc008c42d00 d trace_event_fields_ext4_sync_file_exit
-ffffffc008c42da0 d trace_event_type_funcs_ext4_sync_file_exit
-ffffffc008c42dc0 d print_fmt_ext4_sync_file_exit
-ffffffc008c42e58 d event_ext4_sync_file_exit
-ffffffc008c42ee8 d trace_event_fields_ext4_sync_fs
-ffffffc008c42f60 d trace_event_type_funcs_ext4_sync_fs
-ffffffc008c42f80 d print_fmt_ext4_sync_fs
-ffffffc008c42ff8 d event_ext4_sync_fs
-ffffffc008c43088 d trace_event_fields_ext4_alloc_da_blocks
-ffffffc008c43128 d trace_event_type_funcs_ext4_alloc_da_blocks
-ffffffc008c43148 d print_fmt_ext4_alloc_da_blocks
-ffffffc008c431f8 d event_ext4_alloc_da_blocks
-ffffffc008c43288 d trace_event_fields_ext4_mballoc_alloc
-ffffffc008c435d0 d trace_event_type_funcs_ext4_mballoc_alloc
-ffffffc008c435f0 d print_fmt_ext4_mballoc_alloc
-ffffffc008c439c0 d event_ext4_mballoc_alloc
-ffffffc008c43a50 d trace_event_fields_ext4_mballoc_prealloc
-ffffffc008c43c08 d trace_event_type_funcs_ext4_mballoc_prealloc
-ffffffc008c43c28 d print_fmt_ext4_mballoc_prealloc
-ffffffc008c43d68 d event_ext4_mballoc_prealloc
-ffffffc008c43df8 d trace_event_fields_ext4__mballoc
-ffffffc008c43ee8 d trace_event_type_funcs_ext4__mballoc
-ffffffc008c43f08 d print_fmt_ext4__mballoc
-ffffffc008c43fd8 d event_ext4_mballoc_discard
-ffffffc008c44068 d event_ext4_mballoc_free
-ffffffc008c440f8 d trace_event_fields_ext4_forget
-ffffffc008c441e8 d trace_event_type_funcs_ext4_forget
-ffffffc008c44208 d print_fmt_ext4_forget
-ffffffc008c442e0 d event_ext4_forget
-ffffffc008c44370 d trace_event_fields_ext4_da_update_reserve_space
-ffffffc008c444b0 d trace_event_type_funcs_ext4_da_update_reserve_space
-ffffffc008c444d0 d print_fmt_ext4_da_update_reserve_space
-ffffffc008c44600 d event_ext4_da_update_reserve_space
-ffffffc008c44690 d trace_event_fields_ext4_da_reserve_space
-ffffffc008c44780 d trace_event_type_funcs_ext4_da_reserve_space
-ffffffc008c447a0 d print_fmt_ext4_da_reserve_space
-ffffffc008c44890 d event_ext4_da_reserve_space
-ffffffc008c44920 d trace_event_fields_ext4_da_release_space
-ffffffc008c44a38 d trace_event_type_funcs_ext4_da_release_space
-ffffffc008c44a58 d print_fmt_ext4_da_release_space
-ffffffc008c44b68 d event_ext4_da_release_space
-ffffffc008c44bf8 d trace_event_fields_ext4__bitmap_load
-ffffffc008c44c70 d trace_event_type_funcs_ext4__bitmap_load
-ffffffc008c44c90 d print_fmt_ext4__bitmap_load
-ffffffc008c44d08 d event_ext4_mb_bitmap_load
-ffffffc008c44d98 d event_ext4_mb_buddy_bitmap_load
-ffffffc008c44e28 d event_ext4_load_inode_bitmap
-ffffffc008c44eb8 d trace_event_fields_ext4_read_block_bitmap_load
-ffffffc008c44f58 d trace_event_type_funcs_ext4_read_block_bitmap_load
-ffffffc008c44f78 d print_fmt_ext4_read_block_bitmap_load
-ffffffc008c45010 d event_ext4_read_block_bitmap_load
-ffffffc008c450a0 d trace_event_fields_ext4__fallocate_mode
-ffffffc008c45190 d trace_event_type_funcs_ext4__fallocate_mode
-ffffffc008c451b0 d print_fmt_ext4__fallocate_mode
-ffffffc008c45308 d event_ext4_fallocate_enter
-ffffffc008c45398 d event_ext4_punch_hole
-ffffffc008c45428 d event_ext4_zero_range
-ffffffc008c454b8 d trace_event_fields_ext4_fallocate_exit
-ffffffc008c455a8 d trace_event_type_funcs_ext4_fallocate_exit
-ffffffc008c455c8 d print_fmt_ext4_fallocate_exit
-ffffffc008c45688 d event_ext4_fallocate_exit
-ffffffc008c45718 d trace_event_fields_ext4_unlink_enter
-ffffffc008c457e0 d trace_event_type_funcs_ext4_unlink_enter
-ffffffc008c45800 d print_fmt_ext4_unlink_enter
-ffffffc008c458c8 d event_ext4_unlink_enter
-ffffffc008c45958 d trace_event_fields_ext4_unlink_exit
-ffffffc008c459f8 d trace_event_type_funcs_ext4_unlink_exit
-ffffffc008c45a18 d print_fmt_ext4_unlink_exit
-ffffffc008c45ab0 d event_ext4_unlink_exit
-ffffffc008c45b40 d trace_event_fields_ext4__truncate
-ffffffc008c45be0 d trace_event_type_funcs_ext4__truncate
-ffffffc008c45c00 d print_fmt_ext4__truncate
-ffffffc008c45ca0 d event_ext4_truncate_enter
-ffffffc008c45d30 d event_ext4_truncate_exit
-ffffffc008c45dc0 d trace_event_fields_ext4_ext_convert_to_initialized_enter
-ffffffc008c45f00 d trace_event_type_funcs_ext4_ext_convert_to_initialized_enter
-ffffffc008c45f20 d print_fmt_ext4_ext_convert_to_initialized_enter
-ffffffc008c46018 d event_ext4_ext_convert_to_initialized_enter
-ffffffc008c460a8 d trace_event_fields_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c46260 d trace_event_type_funcs_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c46280 d print_fmt_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c463c0 d event_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c46450 d trace_event_fields_ext4__map_blocks_enter
-ffffffc008c46540 d trace_event_type_funcs_ext4__map_blocks_enter
-ffffffc008c46560 d print_fmt_ext4__map_blocks_enter
-ffffffc008c46750 d event_ext4_ext_map_blocks_enter
-ffffffc008c467e0 d event_ext4_ind_map_blocks_enter
-ffffffc008c46870 d trace_event_fields_ext4__map_blocks_exit
-ffffffc008c469d8 d trace_event_type_funcs_ext4__map_blocks_exit
-ffffffc008c469f8 d print_fmt_ext4__map_blocks_exit
-ffffffc008c46cc8 d event_ext4_ext_map_blocks_exit
-ffffffc008c46d58 d event_ext4_ind_map_blocks_exit
-ffffffc008c46de8 d trace_event_fields_ext4_ext_load_extent
-ffffffc008c46eb0 d trace_event_type_funcs_ext4_ext_load_extent
-ffffffc008c46ed0 d print_fmt_ext4_ext_load_extent
-ffffffc008c46f80 d event_ext4_ext_load_extent
-ffffffc008c47010 d trace_event_fields_ext4_load_inode
-ffffffc008c47088 d trace_event_type_funcs_ext4_load_inode
-ffffffc008c470a8 d print_fmt_ext4_load_inode
-ffffffc008c47130 d event_ext4_load_inode
-ffffffc008c471c0 d trace_event_fields_ext4_journal_start
-ffffffc008c472b0 d trace_event_type_funcs_ext4_journal_start
-ffffffc008c472d0 d print_fmt_ext4_journal_start
-ffffffc008c473b0 d event_ext4_journal_start
-ffffffc008c47440 d trace_event_fields_ext4_journal_start_reserved
-ffffffc008c474e0 d trace_event_type_funcs_ext4_journal_start_reserved
-ffffffc008c47500 d print_fmt_ext4_journal_start_reserved
-ffffffc008c47598 d event_ext4_journal_start_reserved
-ffffffc008c47628 d trace_event_fields_ext4__trim
-ffffffc008c47718 d trace_event_type_funcs_ext4__trim
-ffffffc008c47738 d print_fmt_ext4__trim
-ffffffc008c477a8 d event_ext4_trim_extent
-ffffffc008c47838 d event_ext4_trim_all_free
-ffffffc008c478c8 d trace_event_fields_ext4_ext_handle_unwritten_extents
-ffffffc008c47a30 d trace_event_type_funcs_ext4_ext_handle_unwritten_extents
-ffffffc008c47a50 d print_fmt_ext4_ext_handle_unwritten_extents
-ffffffc008c47cd8 d event_ext4_ext_handle_unwritten_extents
-ffffffc008c47d68 d trace_event_fields_ext4_get_implied_cluster_alloc_exit
-ffffffc008c47e80 d trace_event_type_funcs_ext4_get_implied_cluster_alloc_exit
-ffffffc008c47ea0 d print_fmt_ext4_get_implied_cluster_alloc_exit
-ffffffc008c48028 d event_ext4_get_implied_cluster_alloc_exit
-ffffffc008c480b8 d trace_event_fields_ext4_ext_show_extent
-ffffffc008c481a8 d trace_event_type_funcs_ext4_ext_show_extent
-ffffffc008c481c8 d print_fmt_ext4_ext_show_extent
-ffffffc008c482b8 d event_ext4_ext_show_extent
-ffffffc008c48348 d trace_event_fields_ext4_remove_blocks
-ffffffc008c48500 d trace_event_type_funcs_ext4_remove_blocks
-ffffffc008c48520 d print_fmt_ext4_remove_blocks
-ffffffc008c486c0 d event_ext4_remove_blocks
-ffffffc008c48750 d trace_event_fields_ext4_ext_rm_leaf
-ffffffc008c488e0 d trace_event_type_funcs_ext4_ext_rm_leaf
-ffffffc008c48900 d print_fmt_ext4_ext_rm_leaf
-ffffffc008c48a90 d event_ext4_ext_rm_leaf
-ffffffc008c48b20 d trace_event_fields_ext4_ext_rm_idx
-ffffffc008c48bc0 d trace_event_type_funcs_ext4_ext_rm_idx
-ffffffc008c48be0 d print_fmt_ext4_ext_rm_idx
-ffffffc008c48c98 d event_ext4_ext_rm_idx
-ffffffc008c48d28 d trace_event_fields_ext4_ext_remove_space
-ffffffc008c48e18 d trace_event_type_funcs_ext4_ext_remove_space
-ffffffc008c48e38 d print_fmt_ext4_ext_remove_space
-ffffffc008c48f10 d event_ext4_ext_remove_space
-ffffffc008c48fa0 d trace_event_fields_ext4_ext_remove_space_done
-ffffffc008c49130 d trace_event_type_funcs_ext4_ext_remove_space_done
-ffffffc008c49150 d print_fmt_ext4_ext_remove_space_done
-ffffffc008c492d0 d event_ext4_ext_remove_space_done
-ffffffc008c49360 d trace_event_fields_ext4__es_extent
-ffffffc008c49478 d trace_event_type_funcs_ext4__es_extent
-ffffffc008c49498 d print_fmt_ext4__es_extent
-ffffffc008c49618 d event_ext4_es_insert_extent
-ffffffc008c496a8 d event_ext4_es_cache_extent
-ffffffc008c49738 d trace_event_fields_ext4_es_remove_extent
-ffffffc008c49800 d trace_event_type_funcs_ext4_es_remove_extent
-ffffffc008c49820 d print_fmt_ext4_es_remove_extent
-ffffffc008c498d0 d event_ext4_es_remove_extent
-ffffffc008c49960 d trace_event_fields_ext4_es_find_extent_range_enter
-ffffffc008c49a00 d trace_event_type_funcs_ext4_es_find_extent_range_enter
-ffffffc008c49a20 d print_fmt_ext4_es_find_extent_range_enter
-ffffffc008c49ab8 d event_ext4_es_find_extent_range_enter
-ffffffc008c49b48 d trace_event_fields_ext4_es_find_extent_range_exit
-ffffffc008c49c60 d trace_event_type_funcs_ext4_es_find_extent_range_exit
-ffffffc008c49c80 d print_fmt_ext4_es_find_extent_range_exit
-ffffffc008c49e00 d event_ext4_es_find_extent_range_exit
-ffffffc008c49e90 d trace_event_fields_ext4_es_lookup_extent_enter
-ffffffc008c49f30 d trace_event_type_funcs_ext4_es_lookup_extent_enter
-ffffffc008c49f50 d print_fmt_ext4_es_lookup_extent_enter
-ffffffc008c49fe8 d event_ext4_es_lookup_extent_enter
-ffffffc008c4a078 d trace_event_fields_ext4_es_lookup_extent_exit
-ffffffc008c4a1b8 d trace_event_type_funcs_ext4_es_lookup_extent_exit
-ffffffc008c4a1d8 d print_fmt_ext4_es_lookup_extent_exit
-ffffffc008c4a380 d event_ext4_es_lookup_extent_exit
-ffffffc008c4a410 d trace_event_fields_ext4__es_shrink_enter
-ffffffc008c4a4b0 d trace_event_type_funcs_ext4__es_shrink_enter
-ffffffc008c4a4d0 d print_fmt_ext4__es_shrink_enter
-ffffffc008c4a570 d event_ext4_es_shrink_count
-ffffffc008c4a600 d event_ext4_es_shrink_scan_enter
-ffffffc008c4a690 d trace_event_fields_ext4_es_shrink_scan_exit
-ffffffc008c4a730 d trace_event_type_funcs_ext4_es_shrink_scan_exit
-ffffffc008c4a750 d print_fmt_ext4_es_shrink_scan_exit
-ffffffc008c4a7f0 d event_ext4_es_shrink_scan_exit
-ffffffc008c4a880 d trace_event_fields_ext4_collapse_range
-ffffffc008c4a948 d trace_event_type_funcs_ext4_collapse_range
-ffffffc008c4a968 d print_fmt_ext4_collapse_range
-ffffffc008c4aa20 d event_ext4_collapse_range
-ffffffc008c4aab0 d trace_event_fields_ext4_insert_range
-ffffffc008c4ab78 d trace_event_type_funcs_ext4_insert_range
-ffffffc008c4ab98 d print_fmt_ext4_insert_range
-ffffffc008c4ac50 d event_ext4_insert_range
-ffffffc008c4ace0 d trace_event_fields_ext4_es_shrink
-ffffffc008c4add0 d trace_event_type_funcs_ext4_es_shrink
-ffffffc008c4adf0 d print_fmt_ext4_es_shrink
-ffffffc008c4aec8 d event_ext4_es_shrink
-ffffffc008c4af58 d trace_event_fields_ext4_es_insert_delayed_block
-ffffffc008c4b098 d trace_event_type_funcs_ext4_es_insert_delayed_block
-ffffffc008c4b0b8 d print_fmt_ext4_es_insert_delayed_block
-ffffffc008c4b258 d event_ext4_es_insert_delayed_block
-ffffffc008c4b2e8 d trace_event_fields_ext4_fsmap_class
-ffffffc008c4b400 d trace_event_type_funcs_ext4_fsmap_class
-ffffffc008c4b420 d print_fmt_ext4_fsmap_class
-ffffffc008c4b540 d event_ext4_fsmap_low_key
-ffffffc008c4b5d0 d event_ext4_fsmap_high_key
-ffffffc008c4b660 d event_ext4_fsmap_mapping
-ffffffc008c4b6f0 d trace_event_fields_ext4_getfsmap_class
-ffffffc008c4b808 d trace_event_type_funcs_ext4_getfsmap_class
-ffffffc008c4b828 d print_fmt_ext4_getfsmap_class
-ffffffc008c4b950 d event_ext4_getfsmap_low_key
-ffffffc008c4b9e0 d event_ext4_getfsmap_high_key
-ffffffc008c4ba70 d event_ext4_getfsmap_mapping
-ffffffc008c4bb00 d trace_event_fields_ext4_shutdown
-ffffffc008c4bb78 d trace_event_type_funcs_ext4_shutdown
-ffffffc008c4bb98 d print_fmt_ext4_shutdown
-ffffffc008c4bc10 d event_ext4_shutdown
-ffffffc008c4bca0 d trace_event_fields_ext4_error
-ffffffc008c4bd40 d trace_event_type_funcs_ext4_error
-ffffffc008c4bd60 d print_fmt_ext4_error
-ffffffc008c4bdf8 d event_ext4_error
-ffffffc008c4be88 d trace_event_fields_ext4_prefetch_bitmaps
-ffffffc008c4bf50 d trace_event_type_funcs_ext4_prefetch_bitmaps
-ffffffc008c4bf70 d print_fmt_ext4_prefetch_bitmaps
-ffffffc008c4c010 d event_ext4_prefetch_bitmaps
-ffffffc008c4c0a0 d trace_event_fields_ext4_lazy_itable_init
-ffffffc008c4c118 d trace_event_type_funcs_ext4_lazy_itable_init
-ffffffc008c4c138 d print_fmt_ext4_lazy_itable_init
-ffffffc008c4c1b0 d event_ext4_lazy_itable_init
-ffffffc008c4c240 d trace_event_fields_ext4_fc_replay_scan
-ffffffc008c4c2e0 d trace_event_type_funcs_ext4_fc_replay_scan
-ffffffc008c4c300 d print_fmt_ext4_fc_replay_scan
-ffffffc008c4c390 d event_ext4_fc_replay_scan
-ffffffc008c4c420 d trace_event_fields_ext4_fc_replay
-ffffffc008c4c510 d trace_event_type_funcs_ext4_fc_replay
-ffffffc008c4c530 d print_fmt_ext4_fc_replay
-ffffffc008c4c5e8 d event_ext4_fc_replay
-ffffffc008c4c678 d trace_event_fields_ext4_fc_commit_start
-ffffffc008c4c6f0 d trace_event_type_funcs_ext4_fc_commit_start
-ffffffc008c4c710 d print_fmt_ext4_fc_commit_start
-ffffffc008c4c788 d event_ext4_fc_commit_start
-ffffffc008c4c818 d trace_event_fields_ext4_fc_commit_stop
-ffffffc008c4c958 d trace_event_type_funcs_ext4_fc_commit_stop
-ffffffc008c4c978 d print_fmt_ext4_fc_commit_stop
-ffffffc008c4ca78 d event_ext4_fc_commit_stop
-ffffffc008c4cb08 d trace_event_fields_ext4_fc_stats
-ffffffc008c4cbf8 d trace_event_type_funcs_ext4_fc_stats
-ffffffc008c4cc18 d print_fmt_ext4_fc_stats
-ffffffc008c4e368 d event_ext4_fc_stats
-ffffffc008c4e3f8 d trace_event_fields_ext4_fc_track_dentry
-ffffffc008c4e4e8 d trace_event_type_funcs_ext4_fc_track_dentry
-ffffffc008c4e508 d print_fmt_ext4_fc_track_dentry
-ffffffc008c4e5d0 d event_ext4_fc_track_create
-ffffffc008c4e660 d event_ext4_fc_track_link
-ffffffc008c4e6f0 d event_ext4_fc_track_unlink
-ffffffc008c4e780 d trace_event_fields_ext4_fc_track_inode
-ffffffc008c4e870 d trace_event_type_funcs_ext4_fc_track_inode
-ffffffc008c4e890 d print_fmt_ext4_fc_track_inode
-ffffffc008c4e958 d event_ext4_fc_track_inode
-ffffffc008c4e9e8 d trace_event_fields_ext4_fc_track_range
-ffffffc008c4eb28 d trace_event_type_funcs_ext4_fc_track_range
-ffffffc008c4eb48 d print_fmt_ext4_fc_track_range
-ffffffc008c4ec38 d event_ext4_fc_track_range
-ffffffc008c4ecc8 d trace_event_fields_ext4_fc_cleanup
-ffffffc008c4ed90 d trace_event_type_funcs_ext4_fc_cleanup
-ffffffc008c4edb0 d print_fmt_ext4_fc_cleanup
-ffffffc008c4ee58 d event_ext4_fc_cleanup
-ffffffc008c4eee8 d trace_event_fields_ext4_update_sb
-ffffffc008c4ef88 d trace_event_type_funcs_ext4_update_sb
-ffffffc008c4efa8 d print_fmt_ext4_update_sb
-ffffffc008c4f038 d event_ext4_update_sb
-ffffffc008c4f0c8 d ext4_li_mtx
-ffffffc008c4f0e8 d ext4_fs_type
-ffffffc008c4f130 d ext3_fs_type
-ffffffc008c4f178 d ext4_sb_ktype
-ffffffc008c4f1a8 d ext4_feat_ktype
-ffffffc008c4f1d8 d ext4_groups
-ffffffc008c4f1e8 d ext4_attrs
-ffffffc008c4f348 d ext4_attr_delayed_allocation_blocks
-ffffffc008c4f368 d ext4_attr_session_write_kbytes
-ffffffc008c4f388 d ext4_attr_lifetime_write_kbytes
-ffffffc008c4f3a8 d ext4_attr_reserved_clusters
-ffffffc008c4f3c8 d ext4_attr_sra_exceeded_retry_limit
-ffffffc008c4f3e8 d ext4_attr_max_writeback_mb_bump
-ffffffc008c4f408 d ext4_attr_trigger_fs_error
-ffffffc008c4f428 d ext4_attr_first_error_time
-ffffffc008c4f448 d ext4_attr_last_error_time
-ffffffc008c4f468 d ext4_attr_journal_task
-ffffffc008c4f488 d ext4_attr_inode_readahead_blks
-ffffffc008c4f4a8 d ext4_attr_inode_goal
-ffffffc008c4f4c8 d ext4_attr_mb_stats
-ffffffc008c4f4e8 d ext4_attr_mb_max_to_scan
-ffffffc008c4f508 d ext4_attr_mb_min_to_scan
-ffffffc008c4f528 d ext4_attr_mb_order2_req
-ffffffc008c4f548 d ext4_attr_mb_stream_req
-ffffffc008c4f568 d ext4_attr_mb_group_prealloc
-ffffffc008c4f588 d ext4_attr_mb_max_inode_prealloc
-ffffffc008c4f5a8 d ext4_attr_mb_max_linear_groups
-ffffffc008c4f5c8 d old_bump_val
-ffffffc008c4f5d0 d ext4_attr_extent_max_zeroout_kb
-ffffffc008c4f5f0 d ext4_attr_err_ratelimit_interval_ms
-ffffffc008c4f610 d ext4_attr_err_ratelimit_burst
-ffffffc008c4f630 d ext4_attr_warning_ratelimit_interval_ms
-ffffffc008c4f650 d ext4_attr_warning_ratelimit_burst
-ffffffc008c4f670 d ext4_attr_msg_ratelimit_interval_ms
-ffffffc008c4f690 d ext4_attr_msg_ratelimit_burst
-ffffffc008c4f6b0 d ext4_attr_errors_count
-ffffffc008c4f6d0 d ext4_attr_warning_count
-ffffffc008c4f6f0 d ext4_attr_msg_count
-ffffffc008c4f710 d ext4_attr_first_error_ino
-ffffffc008c4f730 d ext4_attr_last_error_ino
-ffffffc008c4f750 d ext4_attr_first_error_block
-ffffffc008c4f770 d ext4_attr_last_error_block
-ffffffc008c4f790 d ext4_attr_first_error_line
-ffffffc008c4f7b0 d ext4_attr_last_error_line
-ffffffc008c4f7d0 d ext4_attr_first_error_func
-ffffffc008c4f7f0 d ext4_attr_last_error_func
-ffffffc008c4f810 d ext4_attr_first_error_errcode
-ffffffc008c4f830 d ext4_attr_last_error_errcode
-ffffffc008c4f850 d ext4_attr_mb_prefetch
-ffffffc008c4f870 d ext4_attr_mb_prefetch_limit
-ffffffc008c4f890 d ext4_attr_last_trim_minblks
-ffffffc008c4f8b0 d ext4_feat_groups
-ffffffc008c4f8c0 d ext4_feat_attrs
-ffffffc008c4f8f8 d ext4_attr_lazy_itable_init
-ffffffc008c4f918 d ext4_attr_batched_discard
-ffffffc008c4f938 d ext4_attr_meta_bg_resize
-ffffffc008c4f958 d ext4_attr_casefold
-ffffffc008c4f978 d ext4_attr_metadata_csum_seed
-ffffffc008c4f998 d ext4_attr_fast_commit
-ffffffc008c4f9b8 D ext4_xattr_handlers
-ffffffc008c4f9f0 D __SCK__tp_func_jbd2_checkpoint
-ffffffc008c4f9f8 D __SCK__tp_func_jbd2_start_commit
-ffffffc008c4fa00 D __SCK__tp_func_jbd2_commit_locking
-ffffffc008c4fa08 D __SCK__tp_func_jbd2_commit_flushing
-ffffffc008c4fa10 D __SCK__tp_func_jbd2_commit_logging
-ffffffc008c4fa18 D __SCK__tp_func_jbd2_drop_transaction
-ffffffc008c4fa20 D __SCK__tp_func_jbd2_end_commit
-ffffffc008c4fa28 D __SCK__tp_func_jbd2_submit_inode_data
-ffffffc008c4fa30 D __SCK__tp_func_jbd2_handle_start
-ffffffc008c4fa38 D __SCK__tp_func_jbd2_handle_restart
-ffffffc008c4fa40 D __SCK__tp_func_jbd2_handle_extend
-ffffffc008c4fa48 D __SCK__tp_func_jbd2_handle_stats
-ffffffc008c4fa50 D __SCK__tp_func_jbd2_run_stats
-ffffffc008c4fa58 D __SCK__tp_func_jbd2_checkpoint_stats
-ffffffc008c4fa60 D __SCK__tp_func_jbd2_update_log_tail
-ffffffc008c4fa68 D __SCK__tp_func_jbd2_write_superblock
-ffffffc008c4fa70 D __SCK__tp_func_jbd2_lock_buffer_stall
-ffffffc008c4fa78 D __SCK__tp_func_jbd2_shrink_count
-ffffffc008c4fa80 D __SCK__tp_func_jbd2_shrink_scan_enter
-ffffffc008c4fa88 D __SCK__tp_func_jbd2_shrink_scan_exit
-ffffffc008c4fa90 D __SCK__tp_func_jbd2_shrink_checkpoint_list
-ffffffc008c4fa98 d trace_event_fields_jbd2_checkpoint
-ffffffc008c4fb10 d trace_event_type_funcs_jbd2_checkpoint
-ffffffc008c4fb30 d print_fmt_jbd2_checkpoint
-ffffffc008c4fbb0 d event_jbd2_checkpoint
-ffffffc008c4fc40 d trace_event_fields_jbd2_commit
-ffffffc008c4fce0 d trace_event_type_funcs_jbd2_commit
-ffffffc008c4fd00 d print_fmt_jbd2_commit
-ffffffc008c4fda0 d event_jbd2_start_commit
-ffffffc008c4fe30 d event_jbd2_commit_locking
-ffffffc008c4fec0 d event_jbd2_commit_flushing
-ffffffc008c4ff50 d event_jbd2_commit_logging
-ffffffc008c4ffe0 d event_jbd2_drop_transaction
-ffffffc008c50070 d trace_event_fields_jbd2_end_commit
-ffffffc008c50138 d trace_event_type_funcs_jbd2_end_commit
-ffffffc008c50158 d print_fmt_jbd2_end_commit
-ffffffc008c50210 d event_jbd2_end_commit
-ffffffc008c502a0 d trace_event_fields_jbd2_submit_inode_data
-ffffffc008c50318 d trace_event_type_funcs_jbd2_submit_inode_data
-ffffffc008c50338 d print_fmt_jbd2_submit_inode_data
-ffffffc008c503c0 d event_jbd2_submit_inode_data
-ffffffc008c50450 d trace_event_fields_jbd2_handle_start_class
-ffffffc008c50540 d trace_event_type_funcs_jbd2_handle_start_class
-ffffffc008c50560 d print_fmt_jbd2_handle_start_class
-ffffffc008c50630 d event_jbd2_handle_start
-ffffffc008c506c0 d event_jbd2_handle_restart
-ffffffc008c50750 d trace_event_fields_jbd2_handle_extend
-ffffffc008c50868 d trace_event_type_funcs_jbd2_handle_extend
-ffffffc008c50888 d print_fmt_jbd2_handle_extend
-ffffffc008c50980 d event_jbd2_handle_extend
-ffffffc008c50a10 d trace_event_fields_jbd2_handle_stats
-ffffffc008c50b78 d trace_event_type_funcs_jbd2_handle_stats
-ffffffc008c50b98 d print_fmt_jbd2_handle_stats
-ffffffc008c50cb8 d event_jbd2_handle_stats
-ffffffc008c50d48 d trace_event_fields_jbd2_run_stats
-ffffffc008c50f28 d trace_event_type_funcs_jbd2_run_stats
-ffffffc008c50f48 d print_fmt_jbd2_run_stats
-ffffffc008c51128 d event_jbd2_run_stats
-ffffffc008c511b8 d trace_event_fields_jbd2_checkpoint_stats
-ffffffc008c512d0 d trace_event_type_funcs_jbd2_checkpoint_stats
-ffffffc008c512f0 d print_fmt_jbd2_checkpoint_stats
-ffffffc008c513f0 d event_jbd2_checkpoint_stats
-ffffffc008c51480 d trace_event_fields_jbd2_update_log_tail
-ffffffc008c51570 d trace_event_type_funcs_jbd2_update_log_tail
-ffffffc008c51590 d print_fmt_jbd2_update_log_tail
-ffffffc008c51658 d event_jbd2_update_log_tail
-ffffffc008c516e8 d trace_event_fields_jbd2_write_superblock
-ffffffc008c51760 d trace_event_type_funcs_jbd2_write_superblock
-ffffffc008c51780 d print_fmt_jbd2_write_superblock
-ffffffc008c51810 d event_jbd2_write_superblock
-ffffffc008c518a0 d trace_event_fields_jbd2_lock_buffer_stall
-ffffffc008c51918 d trace_event_type_funcs_jbd2_lock_buffer_stall
-ffffffc008c51938 d print_fmt_jbd2_lock_buffer_stall
-ffffffc008c519b8 d event_jbd2_lock_buffer_stall
-ffffffc008c51a48 d trace_event_fields_jbd2_journal_shrink
-ffffffc008c51ae8 d trace_event_type_funcs_jbd2_journal_shrink
-ffffffc008c51b08 d print_fmt_jbd2_journal_shrink
-ffffffc008c51ba8 d event_jbd2_shrink_count
-ffffffc008c51c38 d event_jbd2_shrink_scan_enter
-ffffffc008c51cc8 d trace_event_fields_jbd2_shrink_scan_exit
-ffffffc008c51d90 d trace_event_type_funcs_jbd2_shrink_scan_exit
-ffffffc008c51db0 d print_fmt_jbd2_shrink_scan_exit
-ffffffc008c51e68 d event_jbd2_shrink_scan_exit
-ffffffc008c51ef8 d trace_event_fields_jbd2_shrink_checkpoint_list
-ffffffc008c52038 d trace_event_type_funcs_jbd2_shrink_checkpoint_list
-ffffffc008c52058 d print_fmt_jbd2_shrink_checkpoint_list
-ffffffc008c52160 d event_jbd2_shrink_checkpoint_list
-ffffffc008c521f0 d jbd2_journal_create_slab.jbd2_slab_create_mutex
-ffffffc008c52210 d journal_alloc_journal_head._rs
-ffffffc008c52238 d ramfs_fs_type
-ffffffc008c52280 d utf8_data_table
-ffffffc008c522b8 d fuse_miscdevice.llvm.1135597134864729590
-ffffffc008c52308 d attribute_groups
-ffffffc008c52320 d bpf_features
-ffffffc008c52330 d fuse_bpf_attr
-ffffffc008c52350 d bpf_attributes
-ffffffc008c52360 d bpf_prog_type_fuse_attr
-ffffffc008c52380 d fuse_fs_type
-ffffffc008c523c8 d fuseblk_fs_type
-ffffffc008c52410 D fuse_mutex
-ffffffc008c52430 d fuse_ctl_fs_type.llvm.9827935713704803051
-ffffffc008c52478 D fuse_xattr_handlers
-ffffffc008c52488 D fuse_acl_xattr_handlers
-ffffffc008c524a8 D fuse_no_acl_xattr_handlers
-ffffffc008c524c8 d debug_fs_type
-ffffffc008c52510 d trace_fs_type
-ffffffc008c52558 D __SCK__tp_func_erofs_lookup
-ffffffc008c52560 D __SCK__tp_func_erofs_fill_inode
-ffffffc008c52568 D __SCK__tp_func_erofs_readpage
-ffffffc008c52570 D __SCK__tp_func_erofs_readpages
-ffffffc008c52578 D __SCK__tp_func_erofs_map_blocks_enter
-ffffffc008c52580 D __SCK__tp_func_z_erofs_map_blocks_iter_enter
-ffffffc008c52588 D __SCK__tp_func_erofs_map_blocks_exit
-ffffffc008c52590 D __SCK__tp_func_z_erofs_map_blocks_iter_exit
-ffffffc008c52598 D __SCK__tp_func_erofs_destroy_inode
-ffffffc008c525a0 d trace_event_fields_erofs_lookup
-ffffffc008c52668 d trace_event_type_funcs_erofs_lookup
-ffffffc008c52688 d print_fmt_erofs_lookup
-ffffffc008c52738 d event_erofs_lookup
-ffffffc008c527c8 d trace_event_fields_erofs_fill_inode
-ffffffc008c52890 d trace_event_type_funcs_erofs_fill_inode
-ffffffc008c528b0 d print_fmt_erofs_fill_inode
-ffffffc008c52958 d event_erofs_fill_inode
-ffffffc008c529e8 d trace_event_fields_erofs_readpage
-ffffffc008c52b00 d trace_event_type_funcs_erofs_readpage
-ffffffc008c52b20 d print_fmt_erofs_readpage
-ffffffc008c52c38 d event_erofs_readpage
-ffffffc008c52cc8 d trace_event_fields_erofs_readpages
-ffffffc008c52db8 d trace_event_type_funcs_erofs_readpages
-ffffffc008c52dd8 d print_fmt_erofs_readpages
-ffffffc008c52eb0 d event_erofs_readpages
-ffffffc008c52f40 d trace_event_fields_erofs__map_blocks_enter
-ffffffc008c53030 d trace_event_type_funcs_erofs__map_blocks_enter
-ffffffc008c53050 d print_fmt_erofs__map_blocks_enter
-ffffffc008c53148 d event_erofs_map_blocks_enter
-ffffffc008c531d8 d event_z_erofs_map_blocks_iter_enter
-ffffffc008c53268 d trace_event_fields_erofs__map_blocks_exit
-ffffffc008c533f8 d trace_event_type_funcs_erofs__map_blocks_exit
-ffffffc008c53418 d print_fmt_erofs__map_blocks_exit
-ffffffc008c535c0 d event_erofs_map_blocks_exit
-ffffffc008c53650 d event_z_erofs_map_blocks_iter_exit
-ffffffc008c536e0 d trace_event_fields_erofs_destroy_inode
-ffffffc008c53758 d trace_event_type_funcs_erofs_destroy_inode
-ffffffc008c53778 d print_fmt_erofs_destroy_inode
-ffffffc008c537f8 d event_erofs_destroy_inode
-ffffffc008c53888 D erofs_fs_type
-ffffffc008c538d0 d erofs_sb_list
-ffffffc008c538e0 d erofs_shrinker_info.llvm.4043046093166785384
-ffffffc008c53918 d erofs_pcpubuf_growsize.pcb_resize_mutex
-ffffffc008c53938 d erofs_root.llvm.2000873698860157242
-ffffffc008c53998 d erofs_sb_ktype
-ffffffc008c539c8 d erofs_feat.llvm.2000873698860157242
-ffffffc008c53a08 d erofs_feat_ktype
-ffffffc008c53a38 d erofs_ktype
-ffffffc008c53a68 d erofs_groups
-ffffffc008c53a78 d erofs_attrs
-ffffffc008c53a88 d erofs_attr_sync_decompress
-ffffffc008c53aa8 d erofs_feat_groups
-ffffffc008c53ab8 d erofs_feat_attrs
-ffffffc008c53b10 d erofs_attr_zero_padding
-ffffffc008c53b30 d erofs_attr_compr_cfgs
-ffffffc008c53b50 d erofs_attr_big_pcluster
-ffffffc008c53b70 d erofs_attr_chunked_file
-ffffffc008c53b90 d erofs_attr_device_table
-ffffffc008c53bb0 d erofs_attr_compr_head2
-ffffffc008c53bd0 d erofs_attr_sb_chksum
-ffffffc008c53bf0 d erofs_attr_ztailpacking
-ffffffc008c53c10 d erofs_attr_fragments
-ffffffc008c53c30 d erofs_attr_dedupe
-ffffffc008c53c50 D erofs_xattr_handlers
-ffffffc008c53c80 D dac_mmap_min_addr
-ffffffc008c53c88 d blocking_lsm_notifier_chain.llvm.1073055775120613392
-ffffffc008c53cc0 d fs_type
-ffffffc008c53d08 D __SCK__tp_func_selinux_audited
-ffffffc008c53d10 d trace_event_fields_selinux_audited
-ffffffc008c53e50 d trace_event_type_funcs_selinux_audited
-ffffffc008c53e70 d print_fmt_selinux_audited
-ffffffc008c53f40 d event_selinux_audited
-ffffffc008c53fd0 d inode_doinit_use_xattr._rs
-ffffffc008c53ff8 d selinux_netlink_send._rs
-ffffffc008c54020 d sel_fs_type
-ffffffc008c54068 d sel_write_load._rs
-ffffffc008c54090 d sel_write_load._rs.33
-ffffffc008c540b8 d sel_make_bools._rs
-ffffffc008c540e0 d nlmsg_route_perms
-ffffffc008c54300 d sel_netif_netdev_notifier
-ffffffc008c54318 d security_compute_xperms_decision._rs
-ffffffc008c54340 D crypto_alg_list
-ffffffc008c54350 D crypto_alg_sem
-ffffffc008c54380 D crypto_chain
-ffffffc008c543b8 d crypto_template_list
-ffffffc008c543c8 d seqiv_tmpl
-ffffffc008c54470 d echainiv_tmpl
-ffffffc008c54518 d scomp_lock
-ffffffc008c54538 d cryptomgr_notifier
-ffffffc008c54550 d hmac_tmpl
-ffffffc008c545f8 d crypto_xcbc_tmpl
-ffffffc008c546a0 d ks
-ffffffc008c546d0 d crypto_default_null_skcipher_lock
-ffffffc008c54700 d digest_null
-ffffffc008c54940 d skcipher_null
-ffffffc008c54b00 d null_algs
-ffffffc008c54e00 d alg
-ffffffc008c55040 d alg
-ffffffc008c55280 d alg
-ffffffc008c55400 d alg
-ffffffc008c55640 d alg
-ffffffc008c557c0 d alg
-ffffffc008c55940 d alg
-ffffffc008c55ac0 d sha256_algs
-ffffffc008c55f40 d sha512_algs
-ffffffc008c563c0 d blake2b_algs
-ffffffc008c56cc0 d crypto_cbc_tmpl
-ffffffc008c56d68 d crypto_ctr_tmpls
-ffffffc008c56eb8 d crypto_xctr_tmpl
-ffffffc008c56f60 d hctr2_tmpls
-ffffffc008c570b0 d adiantum_tmpl
-ffffffc008c57180 d nhpoly1305_alg
-ffffffc008c573c0 d crypto_gcm_tmpls
-ffffffc008c57660 d rfc7539_tmpls
-ffffffc008c577c0 d des_algs
-ffffffc008c57ac0 d aes_alg
-ffffffc008c57c40 d algs
-ffffffc008c58180 d poly1305_alg
-ffffffc008c583c0 d scomp
-ffffffc008c58740 d scomp
-ffffffc008c58900 d scomp
-ffffffc008c58ac0 d scomp
-ffffffc008c58c80 d scomp
-ffffffc008c58e40 d crypto_authenc_tmpl
-ffffffc008c58ee8 d crypto_authenc_esn_tmpl
-ffffffc008c58fc0 d alg_lz4
-ffffffc008c59140 d crypto_default_rng_lock
-ffffffc008c59180 d rng_algs
-ffffffc008c59340 d drbg_fill_array.priority
-ffffffc008c59380 d jent_alg
-ffffffc008c59540 d jent_kcapi_random._rs
-ffffffc008c59580 d ghash_alg
-ffffffc008c597c0 d polyval_alg
-ffffffc008c59a00 d essiv_tmpl
-ffffffc008c59aa8 d bd_type
-ffffffc008c59af0 d blkdev_get_no_open._rs
-ffffffc008c59b18 d bdev_write_inode._rs
-ffffffc008c59b40 d bio_dirty_work
-ffffffc008c59b60 d bio_slab_lock
-ffffffc008c59b80 d elv_ktype
-ffffffc008c59bb0 d elv_list
-ffffffc008c59bc0 D __SCK__tp_func_block_touch_buffer
-ffffffc008c59bc8 D __SCK__tp_func_block_dirty_buffer
-ffffffc008c59bd0 D __SCK__tp_func_block_rq_requeue
-ffffffc008c59bd8 D __SCK__tp_func_block_rq_complete
-ffffffc008c59be0 D __SCK__tp_func_block_rq_error
-ffffffc008c59be8 D __SCK__tp_func_block_rq_insert
-ffffffc008c59bf0 D __SCK__tp_func_block_rq_issue
-ffffffc008c59bf8 D __SCK__tp_func_block_rq_merge
-ffffffc008c59c00 D __SCK__tp_func_block_bio_complete
-ffffffc008c59c08 D __SCK__tp_func_block_bio_bounce
-ffffffc008c59c10 D __SCK__tp_func_block_bio_backmerge
-ffffffc008c59c18 D __SCK__tp_func_block_bio_frontmerge
-ffffffc008c59c20 D __SCK__tp_func_block_bio_queue
-ffffffc008c59c28 D __SCK__tp_func_block_getrq
-ffffffc008c59c30 D __SCK__tp_func_block_plug
-ffffffc008c59c38 D __SCK__tp_func_block_unplug
-ffffffc008c59c40 D __SCK__tp_func_block_split
-ffffffc008c59c48 D __SCK__tp_func_block_bio_remap
-ffffffc008c59c50 D __SCK__tp_func_block_rq_remap
-ffffffc008c59c58 d trace_event_fields_block_buffer
-ffffffc008c59cf8 d trace_event_type_funcs_block_buffer
-ffffffc008c59d18 d print_fmt_block_buffer
-ffffffc008c59db8 d event_block_touch_buffer
-ffffffc008c59e48 d event_block_dirty_buffer
-ffffffc008c59ed8 d trace_event_fields_block_rq_requeue
-ffffffc008c59fc8 d trace_event_type_funcs_block_rq_requeue
-ffffffc008c59fe8 d print_fmt_block_rq_requeue
-ffffffc008c5a0b0 d event_block_rq_requeue
-ffffffc008c5a140 d trace_event_fields_block_rq_completion
-ffffffc008c5a258 d trace_event_type_funcs_block_rq_completion
-ffffffc008c5a278 d print_fmt_block_rq_completion
-ffffffc008c5a348 d event_block_rq_complete
-ffffffc008c5a3d8 d event_block_rq_error
-ffffffc008c5a468 d trace_event_fields_block_rq
-ffffffc008c5a5a8 d trace_event_type_funcs_block_rq
-ffffffc008c5a5c8 d print_fmt_block_rq
-ffffffc008c5a6a8 d event_block_rq_insert
-ffffffc008c5a738 d event_block_rq_issue
-ffffffc008c5a7c8 d event_block_rq_merge
-ffffffc008c5a858 d trace_event_fields_block_bio_complete
-ffffffc008c5a948 d trace_event_type_funcs_block_bio_complete
-ffffffc008c5a968 d print_fmt_block_bio_complete
-ffffffc008c5aa28 d event_block_bio_complete
-ffffffc008c5aab8 d trace_event_fields_block_bio
-ffffffc008c5aba8 d trace_event_type_funcs_block_bio
-ffffffc008c5abc8 d print_fmt_block_bio
-ffffffc008c5ac80 d event_block_bio_bounce
-ffffffc008c5ad10 d event_block_bio_backmerge
-ffffffc008c5ada0 d event_block_bio_frontmerge
-ffffffc008c5ae30 d event_block_bio_queue
-ffffffc008c5aec0 d event_block_getrq
-ffffffc008c5af50 d trace_event_fields_block_plug
-ffffffc008c5afa0 d trace_event_type_funcs_block_plug
-ffffffc008c5afc0 d print_fmt_block_plug
-ffffffc008c5afd8 d event_block_plug
-ffffffc008c5b068 d trace_event_fields_block_unplug
-ffffffc008c5b0e0 d trace_event_type_funcs_block_unplug
-ffffffc008c5b100 d print_fmt_block_unplug
-ffffffc008c5b128 d event_block_unplug
-ffffffc008c5b1b8 d trace_event_fields_block_split
-ffffffc008c5b2a8 d trace_event_type_funcs_block_split
-ffffffc008c5b2c8 d print_fmt_block_split
-ffffffc008c5b398 d event_block_split
-ffffffc008c5b428 d trace_event_fields_block_bio_remap
-ffffffc008c5b540 d trace_event_type_funcs_block_bio_remap
-ffffffc008c5b560 d print_fmt_block_bio_remap
-ffffffc008c5b6a0 d event_block_bio_remap
-ffffffc008c5b730 d trace_event_fields_block_rq_remap
-ffffffc008c5b870 d trace_event_type_funcs_block_rq_remap
-ffffffc008c5b890 d print_fmt_block_rq_remap
-ffffffc008c5b9e0 d event_block_rq_remap
-ffffffc008c5ba70 D blk_queue_ida
-ffffffc008c5ba80 d bio_check_eod._rs
-ffffffc008c5baa8 d blk_queue_attr_groups
-ffffffc008c5bab8 d queue_attr_group
-ffffffc008c5bae0 d queue_attrs
-ffffffc008c5bc38 d queue_io_timeout_entry
-ffffffc008c5bc58 d queue_max_open_zones_entry
-ffffffc008c5bc78 d queue_max_active_zones_entry
-ffffffc008c5bc98 d queue_requests_entry
-ffffffc008c5bcb8 d queue_ra_entry
-ffffffc008c5bcd8 d queue_max_hw_sectors_entry
-ffffffc008c5bcf8 d queue_max_sectors_entry
-ffffffc008c5bd18 d queue_max_segments_entry
-ffffffc008c5bd38 d queue_max_discard_segments_entry
-ffffffc008c5bd58 d queue_max_integrity_segments_entry
-ffffffc008c5bd78 d queue_max_segment_size_entry
-ffffffc008c5bd98 d elv_iosched_entry
-ffffffc008c5bdb8 d queue_hw_sector_size_entry
-ffffffc008c5bdd8 d queue_logical_block_size_entry
-ffffffc008c5bdf8 d queue_physical_block_size_entry
-ffffffc008c5be18 d queue_chunk_sectors_entry
-ffffffc008c5be38 d queue_io_min_entry
-ffffffc008c5be58 d queue_io_opt_entry
-ffffffc008c5be78 d queue_discard_granularity_entry
-ffffffc008c5be98 d queue_discard_max_entry
-ffffffc008c5beb8 d queue_discard_max_hw_entry
-ffffffc008c5bed8 d queue_discard_zeroes_data_entry
-ffffffc008c5bef8 d queue_write_same_max_entry
-ffffffc008c5bf18 d queue_write_zeroes_max_entry
-ffffffc008c5bf38 d queue_zone_append_max_entry
-ffffffc008c5bf58 d queue_zone_write_granularity_entry
-ffffffc008c5bf78 d queue_nonrot_entry
-ffffffc008c5bf98 d queue_zoned_entry
-ffffffc008c5bfb8 d queue_nr_zones_entry
-ffffffc008c5bfd8 d queue_nomerges_entry
-ffffffc008c5bff8 d queue_rq_affinity_entry
-ffffffc008c5c018 d queue_iostats_entry
-ffffffc008c5c038 d queue_stable_writes_entry
-ffffffc008c5c058 d queue_random_entry
-ffffffc008c5c078 d queue_poll_entry
-ffffffc008c5c098 d queue_wc_entry
-ffffffc008c5c0b8 d queue_fua_entry
-ffffffc008c5c0d8 d queue_dax_entry
-ffffffc008c5c0f8 d queue_wb_lat_entry
-ffffffc008c5c118 d queue_poll_delay_entry
-ffffffc008c5c138 d queue_virt_boundary_mask_entry
-ffffffc008c5c158 d queue_dma_alignment_entry
-ffffffc008c5c178 d queue_poll_store._rs
-ffffffc008c5c1a0 d queue_poll_store._rs.43
-ffffffc008c5c1c8 D blk_queue_ktype
-ffffffc008c5c1f8 d __blkdev_issue_discard._rs
-ffffffc008c5c220 d blk_print_req_error._rs
-ffffffc008c5c248 d blk_mq_hw_ktype.llvm.4831212724972471400
-ffffffc008c5c278 d blk_mq_ktype
-ffffffc008c5c2a8 d blk_mq_ctx_ktype
-ffffffc008c5c2d8 d default_hw_ctx_groups
-ffffffc008c5c2e8 d default_hw_ctx_attrs
-ffffffc008c5c308 d blk_mq_hw_sysfs_nr_tags
-ffffffc008c5c328 d blk_mq_hw_sysfs_nr_reserved_tags
-ffffffc008c5c348 d blk_mq_hw_sysfs_cpus
-ffffffc008c5c368 d major_names_lock
-ffffffc008c5c388 d ext_devt_ida.llvm.10999454407847218611
-ffffffc008c5c398 D block_class
-ffffffc008c5c410 d disk_attr_groups
-ffffffc008c5c420 d disk_attr_group
-ffffffc008c5c448 d disk_attrs
-ffffffc008c5c4d0 d dev_attr_badblocks
-ffffffc008c5c4f0 d dev_attr_range
-ffffffc008c5c510 d dev_attr_range
-ffffffc008c5c530 d dev_attr_ext_range
-ffffffc008c5c550 d dev_attr_removable
-ffffffc008c5c570 d dev_attr_removable
-ffffffc008c5c590 d dev_attr_removable
-ffffffc008c5c5b0 d dev_attr_hidden
-ffffffc008c5c5d0 d dev_attr_ro
-ffffffc008c5c5f0 d dev_attr_ro
-ffffffc008c5c610 d dev_attr_size
-ffffffc008c5c630 d dev_attr_size
-ffffffc008c5c650 d dev_attr_size
-ffffffc008c5c670 d dev_attr_size
-ffffffc008c5c690 d dev_attr_alignment_offset
-ffffffc008c5c6b0 d dev_attr_alignment_offset
-ffffffc008c5c6d0 d dev_attr_discard_alignment
-ffffffc008c5c6f0 d dev_attr_discard_alignment
-ffffffc008c5c710 d dev_attr_capability
-ffffffc008c5c730 d dev_attr_stat
-ffffffc008c5c750 d dev_attr_stat
-ffffffc008c5c770 d dev_attr_inflight
-ffffffc008c5c790 d dev_attr_inflight
-ffffffc008c5c7b0 d dev_attr_diskseq
-ffffffc008c5c7d0 d part_attr_groups
-ffffffc008c5c7e0 d part_attr_group
-ffffffc008c5c808 d part_attrs
-ffffffc008c5c850 d dev_attr_partition
-ffffffc008c5c870 d dev_attr_start
-ffffffc008c5c890 d dev_attr_whole_disk
-ffffffc008c5c8b0 D part_type
-ffffffc008c5c8e0 D dev_attr_events
-ffffffc008c5c900 D dev_attr_events_async
-ffffffc008c5c920 D dev_attr_events_poll_msecs
-ffffffc008c5c940 d disk_events_mutex
-ffffffc008c5c960 d disk_events
-ffffffc008c5c970 d blk_ia_ranges_ktype
-ffffffc008c5c9a0 d blk_ia_range_ktype
-ffffffc008c5c9d0 d blk_ia_range_groups
-ffffffc008c5c9e0 d blk_ia_range_attrs
-ffffffc008c5c9f8 d blk_ia_range_sector_entry
-ffffffc008c5ca10 d blk_ia_range_nr_sectors_entry
-ffffffc008c5ca28 d mq_deadline
-ffffffc008c5cb50 d deadline_attrs
-ffffffc008c5cc50 D __SCK__tp_func_kyber_latency
-ffffffc008c5cc58 D __SCK__tp_func_kyber_adjust
-ffffffc008c5cc60 D __SCK__tp_func_kyber_throttled
-ffffffc008c5cc68 d trace_event_fields_kyber_latency
-ffffffc008c5cda8 d trace_event_type_funcs_kyber_latency
-ffffffc008c5cdc8 d print_fmt_kyber_latency
-ffffffc008c5cea0 d event_kyber_latency
-ffffffc008c5cf30 d trace_event_fields_kyber_adjust
-ffffffc008c5cfd0 d trace_event_type_funcs_kyber_adjust
-ffffffc008c5cff0 d print_fmt_kyber_adjust
-ffffffc008c5d070 d event_kyber_adjust
-ffffffc008c5d100 d trace_event_fields_kyber_throttled
-ffffffc008c5d178 d trace_event_type_funcs_kyber_throttled
-ffffffc008c5d198 d print_fmt_kyber_throttled
-ffffffc008c5d208 d event_kyber_throttled
-ffffffc008c5d298 d kyber_sched
-ffffffc008c5d3c0 d kyber_sched_attrs
-ffffffc008c5d420 d iosched_bfq_mq
-ffffffc008c5d548 d bfq_attrs
-ffffffc008c5d6a8 d blk_zone_cond_str.zone_cond_str
-ffffffc008c5d6b0 d num_prealloc_crypt_ctxs
-ffffffc008c5d6b8 d blk_crypto_evict_key._rs
-ffffffc008c5d6e0 d blk_crypto_ktype
-ffffffc008c5d710 d blk_crypto_attr_groups
-ffffffc008c5d728 d blk_crypto_attrs
-ffffffc008c5d740 d max_dun_bits_attr
-ffffffc008c5d758 d num_keyslots_attr
-ffffffc008c5d770 d num_prealloc_bounce_pg
-ffffffc008c5d774 d blk_crypto_num_keyslots
-ffffffc008c5d778 d num_prealloc_fallback_crypt_ctxs
-ffffffc008c5d780 d tfms_init_lock
-ffffffc008c5d7a0 D __SCK__tp_func_io_uring_create
-ffffffc008c5d7a8 D __SCK__tp_func_io_uring_register
-ffffffc008c5d7b0 D __SCK__tp_func_io_uring_file_get
-ffffffc008c5d7b8 D __SCK__tp_func_io_uring_queue_async_work
-ffffffc008c5d7c0 D __SCK__tp_func_io_uring_defer
-ffffffc008c5d7c8 D __SCK__tp_func_io_uring_link
-ffffffc008c5d7d0 D __SCK__tp_func_io_uring_cqring_wait
-ffffffc008c5d7d8 D __SCK__tp_func_io_uring_fail_link
-ffffffc008c5d7e0 D __SCK__tp_func_io_uring_complete
-ffffffc008c5d7e8 D __SCK__tp_func_io_uring_submit_sqe
-ffffffc008c5d7f0 D __SCK__tp_func_io_uring_poll_arm
-ffffffc008c5d7f8 D __SCK__tp_func_io_uring_task_add
-ffffffc008c5d800 D __SCK__tp_func_io_uring_req_failed
-ffffffc008c5d808 D __SCK__tp_func_io_uring_cqe_overflow
-ffffffc008c5d810 D __SCK__tp_func_io_uring_task_work_run
-ffffffc008c5d818 D __SCK__tp_func_io_uring_short_write
-ffffffc008c5d820 D __SCK__tp_func_io_uring_local_work_run
-ffffffc008c5d828 d trace_event_fields_io_uring_create
-ffffffc008c5d918 d trace_event_type_funcs_io_uring_create
-ffffffc008c5d938 d print_fmt_io_uring_create
-ffffffc008c5d9b0 d event_io_uring_create
-ffffffc008c5da40 d trace_event_fields_io_uring_register
-ffffffc008c5db30 d trace_event_type_funcs_io_uring_register
-ffffffc008c5db50 d print_fmt_io_uring_register
-ffffffc008c5dbd0 d event_io_uring_register
-ffffffc008c5dc60 d trace_event_fields_io_uring_file_get
-ffffffc008c5dd28 d trace_event_type_funcs_io_uring_file_get
-ffffffc008c5dd48 d print_fmt_io_uring_file_get
-ffffffc008c5dda0 d event_io_uring_file_get
-ffffffc008c5de30 d trace_event_fields_io_uring_queue_async_work
-ffffffc008c5df98 d trace_event_type_funcs_io_uring_queue_async_work
-ffffffc008c5dfb8 d print_fmt_io_uring_queue_async_work
-ffffffc008c5e078 d event_io_uring_queue_async_work
-ffffffc008c5e108 d trace_event_fields_io_uring_defer
-ffffffc008c5e1f8 d trace_event_type_funcs_io_uring_defer
-ffffffc008c5e218 d print_fmt_io_uring_defer
-ffffffc008c5e280 d event_io_uring_defer
-ffffffc008c5e310 d trace_event_fields_io_uring_link
-ffffffc008c5e3b0 d trace_event_type_funcs_io_uring_link
-ffffffc008c5e3d0 d print_fmt_io_uring_link
-ffffffc008c5e420 d event_io_uring_link
-ffffffc008c5e4b0 d trace_event_fields_io_uring_cqring_wait
-ffffffc008c5e528 d trace_event_type_funcs_io_uring_cqring_wait
-ffffffc008c5e548 d print_fmt_io_uring_cqring_wait
-ffffffc008c5e580 d event_io_uring_cqring_wait
-ffffffc008c5e610 d trace_event_fields_io_uring_fail_link
-ffffffc008c5e728 d trace_event_type_funcs_io_uring_fail_link
-ffffffc008c5e748 d print_fmt_io_uring_fail_link
-ffffffc008c5e7c8 d event_io_uring_fail_link
-ffffffc008c5e858 d trace_event_fields_io_uring_complete
-ffffffc008c5e998 d trace_event_type_funcs_io_uring_complete
-ffffffc008c5e9b8 d print_fmt_io_uring_complete
-ffffffc008c5ea90 d event_io_uring_complete
-ffffffc008c5eb20 d trace_event_fields_io_uring_submit_sqe
-ffffffc008c5ec88 d trace_event_type_funcs_io_uring_submit_sqe
-ffffffc008c5eca8 d print_fmt_io_uring_submit_sqe
-ffffffc008c5ed68 d event_io_uring_submit_sqe
-ffffffc008c5edf8 d trace_event_fields_io_uring_poll_arm
-ffffffc008c5ef38 d trace_event_type_funcs_io_uring_poll_arm
-ffffffc008c5ef58 d print_fmt_io_uring_poll_arm
-ffffffc008c5eff0 d event_io_uring_poll_arm
-ffffffc008c5f080 d trace_event_fields_io_uring_task_add
-ffffffc008c5f198 d trace_event_type_funcs_io_uring_task_add
-ffffffc008c5f1b8 d print_fmt_io_uring_task_add
-ffffffc008c5f238 d event_io_uring_task_add
-ffffffc008c5f2c8 d trace_event_fields_io_uring_req_failed
-ffffffc008c5f598 d trace_event_type_funcs_io_uring_req_failed
-ffffffc008c5f5b8 d print_fmt_io_uring_req_failed
-ffffffc008c5f7a0 d event_io_uring_req_failed
-ffffffc008c5f830 d trace_event_fields_io_uring_cqe_overflow
-ffffffc008c5f920 d trace_event_type_funcs_io_uring_cqe_overflow
-ffffffc008c5f940 d print_fmt_io_uring_cqe_overflow
-ffffffc008c5f9c0 d event_io_uring_cqe_overflow
-ffffffc008c5fa50 d trace_event_fields_io_uring_task_work_run
-ffffffc008c5faf0 d trace_event_type_funcs_io_uring_task_work_run
-ffffffc008c5fb10 d print_fmt_io_uring_task_work_run
-ffffffc008c5fb58 d event_io_uring_task_work_run
-ffffffc008c5fbe8 d trace_event_fields_io_uring_short_write
-ffffffc008c5fcb0 d trace_event_type_funcs_io_uring_short_write
-ffffffc008c5fcd0 d print_fmt_io_uring_short_write
-ffffffc008c5fd28 d event_io_uring_short_write
-ffffffc008c5fdb8 d trace_event_fields_io_uring_local_work_run
-ffffffc008c5fe58 d trace_event_type_funcs_io_uring_local_work_run
-ffffffc008c5fe78 d print_fmt_io_uring_local_work_run
-ffffffc008c5feb8 d event_io_uring_local_work_run
-ffffffc008c5ff48 d percpu_ref_switch_waitq
-ffffffc008c5ff60 d once_mutex
-ffffffc008c5ff80 D __SCK__tp_func_rwmmio_write
-ffffffc008c5ff88 D __SCK__tp_func_rwmmio_post_write
-ffffffc008c5ff90 D __SCK__tp_func_rwmmio_read
-ffffffc008c5ff98 D __SCK__tp_func_rwmmio_post_read
-ffffffc008c5ffa0 d trace_event_fields_rwmmio_rw_template
-ffffffc008c60090 d trace_event_type_funcs_rwmmio_rw_template
-ffffffc008c600b0 d print_fmt_rwmmio_rw_template
-ffffffc008c60128 d event_rwmmio_write
-ffffffc008c601b8 d event_rwmmio_post_write
-ffffffc008c60248 d trace_event_fields_rwmmio_read
-ffffffc008c60310 d trace_event_type_funcs_rwmmio_read
-ffffffc008c60330 d print_fmt_rwmmio_read
-ffffffc008c60398 d event_rwmmio_read
-ffffffc008c60428 d trace_event_fields_rwmmio_post_read
-ffffffc008c60518 d trace_event_type_funcs_rwmmio_post_read
-ffffffc008c60538 d print_fmt_rwmmio_post_read
-ffffffc008c605b0 d event_rwmmio_post_read
-ffffffc008c60640 d static_l_desc
-ffffffc008c60660 d static_d_desc
-ffffffc008c60680 d static_bl_desc
-ffffffc008c606a0 d rslistlock
-ffffffc008c606c0 d codec_list
-ffffffc008c606d0 d percpu_counters
-ffffffc008c606e0 d write_class
-ffffffc008c6071c d read_class
-ffffffc008c60740 d dir_class
-ffffffc008c60760 d chattr_class
-ffffffc008c60790 d signal_class
-ffffffc008c607a0 d ddebug_lock
-ffffffc008c607c0 d ddebug_tables
-ffffffc008c607d0 d __nla_validate_parse._rs
-ffffffc008c607f8 d validate_nla._rs
-ffffffc008c60820 d nla_validate_range_unsigned._rs
-ffffffc008c60848 d sg_pools
-ffffffc008c608e8 d stack_depot_init.stack_depot_init_mutex
-ffffffc008c60908 d supports_deactivate_key
-ffffffc008c60918 d supports_deactivate_key
-ffffffc008c60928 d gic_notifier_block
-ffffffc008c60940 d v2m_nodes
-ffffffc008c60950 d gicv2m_msi_domain_info
-ffffffc008c60990 d gicv2m_pmsi_domain_info
-ffffffc008c609d0 d gicv2m_irq_chip
-ffffffc008c60ad8 d gicv2m_msi_irq_chip
-ffffffc008c60be0 d gicv2m_pmsi_irq_chip
-ffffffc008c60ce8 d gic_chip
-ffffffc008c60df0 d gic_eoimode1_chip
-ffffffc008c60ef8 d gic_do_wait_for_rwp._rs
-ffffffc008c60f20 d gic_enable_redist._rs
-ffffffc008c60f48 d gic_cpu_pm_notifier_block
-ffffffc008c60f60 d gic_syscore_ops
-ffffffc008c60f88 d mbi_pmsi_domain_info
-ffffffc008c60fc8 d mbi_lock
-ffffffc008c60fe8 d mbi_irq_chip
-ffffffc008c610f0 d mbi_msi_domain_info
-ffffffc008c61130 d mbi_msi_irq_chip
-ffffffc008c61238 d mbi_pmsi_irq_chip
-ffffffc008c61340 d its_nodes
-ffffffc008c61350 d its_syscore_ops
-ffffffc008c61378 d read_vpend_dirty_clear._rs
-ffffffc008c613a0 d its_send_single_command._rs
-ffffffc008c613c8 d its_allocate_entry._rs
-ffffffc008c613f0 d its_wait_for_range_completion._rs
-ffffffc008c61418 d its_msi_domain_ops
-ffffffc008c61458 d its_irq_chip
-ffffffc008c61560 d its_send_single_vcommand._rs
-ffffffc008c61588 d lpi_range_lock
-ffffffc008c615a8 d lpi_range_list
-ffffffc008c615b8 d its_sgi_irq_chip
-ffffffc008c616c0 d its_sgi_get_irqchip_state._rs
-ffffffc008c616e8 d its_vpe_irq_chip
-ffffffc008c617f0 d its_vpe_4_1_irq_chip
-ffffffc008c618f8 d its_vpeid_ida
-ffffffc008c61908 d its_pmsi_domain_info
-ffffffc008c61948 d its_pmsi_ops
-ffffffc008c61988 d its_pmsi_irq_chip
-ffffffc008c61a90 d its_device_id
-ffffffc008c61c20 d its_pci_msi_domain_info
-ffffffc008c61c60 d its_pci_msi_ops
-ffffffc008c61ca0 d its_msi_irq_chip
-ffffffc008c61da8 d partition_irq_chip
-ffffffc008c61eb0 d simple_pm_bus_driver
-ffffffc008c61f78 d pci_cfg_wait
-ffffffc008c61f90 d pci_high
-ffffffc008c61fa0 d pci_64_bit
-ffffffc008c61fb0 d pci_32_bit
-ffffffc008c61fc0 d busn_resource
-ffffffc008c62000 d pci_rescan_remove_lock.llvm.4126018918990247055
-ffffffc008c62020 d pcibus_class
-ffffffc008c62098 d pci_domain_busn_res_list
-ffffffc008c620a8 D pci_root_buses
-ffffffc008c620b8 D pci_slot_mutex
-ffffffc008c620d8 D pci_power_names
-ffffffc008c62110 D pci_domains_supported
-ffffffc008c62114 D pci_dfl_cache_line_size
-ffffffc008c62118 D pcibios_max_latency
-ffffffc008c62120 d pci_pme_list_mutex
-ffffffc008c62140 d pci_pme_list
-ffffffc008c62150 d pci_pme_work
-ffffffc008c621a8 d pci_dev_reset_method_attrs
-ffffffc008c621b8 d pci_set_full_power_state._rs
-ffffffc008c621e0 d pci_set_low_power_state._rs
-ffffffc008c62208 d dev_attr_reset_method
-ffffffc008c62228 d bus_attr_resource_alignment
-ffffffc008c62248 d of_pci_bus_find_domain_nr.use_dt_domains
-ffffffc008c6224c d __domain_nr
-ffffffc008c62250 D pcie_bus_config
-ffffffc008c62258 D pci_hotplug_bus_size
-ffffffc008c62260 D pci_cardbus_io_size
-ffffffc008c62268 D pci_cardbus_mem_size
-ffffffc008c62270 D pci_hotplug_io_size
-ffffffc008c62278 D pci_hotplug_mmio_size
-ffffffc008c62280 D pci_hotplug_mmio_pref_size
-ffffffc008c62288 d pci_compat_driver
-ffffffc008c623b0 d pci_drv_groups
-ffffffc008c623c0 D pcie_port_bus_type
-ffffffc008c62478 d pci_drv_attrs
-ffffffc008c62490 d driver_attr_new_id
-ffffffc008c624b0 d driver_attr_remove_id
-ffffffc008c624d0 D pci_bus_type
-ffffffc008c62588 D pci_bus_sem
-ffffffc008c625b8 D pci_bus_groups
-ffffffc008c625c8 D pci_dev_groups
-ffffffc008c62608 d pci_dev_attr_groups.llvm.12253162920323991028
-ffffffc008c62650 d pci_bus_attrs
-ffffffc008c62660 d bus_attr_rescan
-ffffffc008c62680 d pcibus_attrs
-ffffffc008c626a0 d dev_attr_bus_rescan
-ffffffc008c626c0 d dev_attr_cpuaffinity
-ffffffc008c626e0 d dev_attr_cpulistaffinity
-ffffffc008c62700 d pci_dev_attrs
-ffffffc008c627a8 d dev_attr_power_state
-ffffffc008c627c8 d dev_attr_resource
-ffffffc008c627e8 d dev_attr_resource
-ffffffc008c62808 d dev_attr_vendor
-ffffffc008c62828 d dev_attr_vendor
-ffffffc008c62848 d dev_attr_vendor
-ffffffc008c62868 d dev_attr_device
-ffffffc008c62888 d dev_attr_device
-ffffffc008c628a8 d dev_attr_subsystem_vendor
-ffffffc008c628c8 d dev_attr_subsystem_device
-ffffffc008c628e8 d dev_attr_revision
-ffffffc008c62908 d dev_attr_revision
-ffffffc008c62928 d dev_attr_class
-ffffffc008c62948 d dev_attr_irq
-ffffffc008c62968 d dev_attr_irq
-ffffffc008c62988 d dev_attr_local_cpus
-ffffffc008c629a8 d dev_attr_local_cpulist
-ffffffc008c629c8 d dev_attr_modalias
-ffffffc008c629e8 d dev_attr_modalias
-ffffffc008c62a08 d dev_attr_modalias
-ffffffc008c62a28 d dev_attr_modalias
-ffffffc008c62a48 d dev_attr_modalias
-ffffffc008c62a68 d dev_attr_modalias
-ffffffc008c62a88 d dev_attr_dma_mask_bits
-ffffffc008c62aa8 d dev_attr_consistent_dma_mask_bits
-ffffffc008c62ac8 d dev_attr_enable
-ffffffc008c62ae8 d dev_attr_broken_parity_status
-ffffffc008c62b08 d dev_attr_msi_bus
-ffffffc008c62b28 d dev_attr_devspec
-ffffffc008c62b48 d dev_attr_driver_override
-ffffffc008c62b68 d dev_attr_driver_override
-ffffffc008c62b88 d dev_attr_driver_override
-ffffffc008c62ba8 d dev_attr_ari_enabled
-ffffffc008c62bc8 d pci_dev_config_attrs
-ffffffc008c62bd8 d bin_attr_config
-ffffffc008c62c18 d pci_dev_rom_attrs
-ffffffc008c62c28 d bin_attr_rom
-ffffffc008c62c68 d pci_dev_reset_attrs
-ffffffc008c62c78 d dev_attr_reset
-ffffffc008c62c98 d dev_attr_reset
-ffffffc008c62cb8 d resource_resize_attrs
-ffffffc008c62cf0 d dev_attr_resource0_resize
-ffffffc008c62d10 d dev_attr_resource1_resize
-ffffffc008c62d30 d dev_attr_resource2_resize
-ffffffc008c62d50 d dev_attr_resource3_resize
-ffffffc008c62d70 d dev_attr_resource4_resize
-ffffffc008c62d90 d dev_attr_resource5_resize
-ffffffc008c62db0 d pci_dev_dev_attrs
-ffffffc008c62dc0 d dev_attr_boot_vga
-ffffffc008c62de0 d pci_dev_hp_attrs
-ffffffc008c62df8 d dev_attr_remove
-ffffffc008c62e18 d dev_attr_dev_rescan
-ffffffc008c62e38 d pci_bridge_attrs
-ffffffc008c62e50 d dev_attr_subordinate_bus_number
-ffffffc008c62e70 d dev_attr_secondary_bus_number
-ffffffc008c62e90 d pcie_dev_attrs
-ffffffc008c62eb8 d dev_attr_current_link_speed
-ffffffc008c62ed8 d dev_attr_current_link_width
-ffffffc008c62ef8 d dev_attr_max_link_width
-ffffffc008c62f18 d dev_attr_max_link_speed
-ffffffc008c62f38 D pcibus_groups
-ffffffc008c62f48 d vpd_attrs
-ffffffc008c62f58 d bin_attr_vpd
-ffffffc008c62f98 d pci_realloc_enable
-ffffffc008c62fa0 d pci_msi_domain_ops_default
-ffffffc008c62fe0 d pcie_portdriver
-ffffffc008c63108 d aspm_lock
-ffffffc008c63128 d aspm_ctrl_attrs
-ffffffc008c63168 d link_list
-ffffffc008c63178 d policy_str
-ffffffc008c63198 d dev_attr_clkpm
-ffffffc008c631b8 d dev_attr_l0s_aspm
-ffffffc008c631d8 d dev_attr_l1_aspm
-ffffffc008c631f8 d dev_attr_l1_1_aspm
-ffffffc008c63218 d dev_attr_l1_2_aspm
-ffffffc008c63238 d dev_attr_l1_1_pcipm
-ffffffc008c63258 d dev_attr_l1_2_pcipm
-ffffffc008c63278 d aerdriver
-ffffffc008c63358 d dev_attr_aer_rootport_total_err_cor
-ffffffc008c63378 d dev_attr_aer_rootport_total_err_fatal
-ffffffc008c63398 d dev_attr_aer_rootport_total_err_nonfatal
-ffffffc008c633b8 d dev_attr_aer_dev_correctable
-ffffffc008c633d8 d dev_attr_aer_dev_fatal
-ffffffc008c633f8 d dev_attr_aer_dev_nonfatal
-ffffffc008c63418 d pcie_pme_driver.llvm.18413638922837641227
-ffffffc008c634f8 d pci_slot_ktype
-ffffffc008c63528 d pci_slot_default_groups
-ffffffc008c63538 d pci_slot_default_attrs
-ffffffc008c63558 d pci_slot_attr_address
-ffffffc008c63578 d pci_slot_attr_max_speed
-ffffffc008c63598 d pci_slot_attr_cur_speed
-ffffffc008c635b8 d via_vlink_dev_lo
-ffffffc008c635bc d via_vlink_dev_hi
-ffffffc008c635c0 d sriov_vf_dev_attrs
-ffffffc008c635d0 d sriov_pf_dev_attrs
-ffffffc008c63610 d dev_attr_sriov_vf_msix_count
-ffffffc008c63630 d dev_attr_sriov_totalvfs
-ffffffc008c63650 d dev_attr_sriov_numvfs
-ffffffc008c63670 d dev_attr_sriov_offset
-ffffffc008c63690 d dev_attr_sriov_stride
-ffffffc008c636b0 d dev_attr_sriov_vf_device
-ffffffc008c636d0 d dev_attr_sriov_drivers_autoprobe
-ffffffc008c636f0 d dev_attr_sriov_vf_total_msix
-ffffffc008c63710 d vga_wait_queue
-ffffffc008c63728 d vga_list
-ffffffc008c63738 d vga_arb_device
-ffffffc008c63788 d pci_notifier
-ffffffc008c637a0 d vga_user_list
-ffffffc008c637b0 d pci_epf_bus_type
-ffffffc008c63868 d gen_pci_driver
-ffffffc008c63930 d dw_pcie_msi_domain_info
-ffffffc008c63970 d dw_pcie_ops
-ffffffc008c63998 d dw_child_pcie_ops
-ffffffc008c639c0 d dw_pcie_msi_irq_chip
-ffffffc008c63ac8 d dw_pci_msi_bottom_irq_chip
-ffffffc008c63bd0 d dw_plat_pcie_driver
-ffffffc008c63c98 d kirin_pcie_driver
-ffffffc008c63d60 d kirin_pci_ops
-ffffffc008c63d88 d amba_dev_groups
-ffffffc008c63d98 D amba_bustype
-ffffffc008c63e50 d amba_dev_attrs
-ffffffc008c63e70 d dev_attr_id
-ffffffc008c63e90 d dev_attr_id
-ffffffc008c63eb0 d dev_attr_id
-ffffffc008c63ed0 d clocks_mutex
-ffffffc008c63ef0 d clocks
-ffffffc008c63f00 D __SCK__tp_func_clk_enable
-ffffffc008c63f08 D __SCK__tp_func_clk_enable_complete
-ffffffc008c63f10 D __SCK__tp_func_clk_disable
-ffffffc008c63f18 D __SCK__tp_func_clk_disable_complete
-ffffffc008c63f20 D __SCK__tp_func_clk_prepare
-ffffffc008c63f28 D __SCK__tp_func_clk_prepare_complete
-ffffffc008c63f30 D __SCK__tp_func_clk_unprepare
-ffffffc008c63f38 D __SCK__tp_func_clk_unprepare_complete
-ffffffc008c63f40 D __SCK__tp_func_clk_set_rate
-ffffffc008c63f48 D __SCK__tp_func_clk_set_rate_complete
-ffffffc008c63f50 D __SCK__tp_func_clk_set_min_rate
-ffffffc008c63f58 D __SCK__tp_func_clk_set_max_rate
-ffffffc008c63f60 D __SCK__tp_func_clk_set_rate_range
-ffffffc008c63f68 D __SCK__tp_func_clk_set_parent
-ffffffc008c63f70 D __SCK__tp_func_clk_set_parent_complete
-ffffffc008c63f78 D __SCK__tp_func_clk_set_phase
-ffffffc008c63f80 D __SCK__tp_func_clk_set_phase_complete
-ffffffc008c63f88 D __SCK__tp_func_clk_set_duty_cycle
-ffffffc008c63f90 D __SCK__tp_func_clk_set_duty_cycle_complete
-ffffffc008c63f98 d trace_event_fields_clk
-ffffffc008c63fe8 d trace_event_type_funcs_clk
-ffffffc008c64008 d print_fmt_clk
-ffffffc008c64020 d event_clk_enable
-ffffffc008c640b0 d event_clk_enable_complete
-ffffffc008c64140 d event_clk_disable
-ffffffc008c641d0 d event_clk_disable_complete
-ffffffc008c64260 d event_clk_prepare
-ffffffc008c642f0 d event_clk_prepare_complete
-ffffffc008c64380 d event_clk_unprepare
-ffffffc008c64410 d event_clk_unprepare_complete
-ffffffc008c644a0 d trace_event_fields_clk_rate
-ffffffc008c64518 d trace_event_type_funcs_clk_rate
-ffffffc008c64538 d print_fmt_clk_rate
-ffffffc008c64570 d event_clk_set_rate
-ffffffc008c64600 d event_clk_set_rate_complete
-ffffffc008c64690 d event_clk_set_min_rate
-ffffffc008c64720 d event_clk_set_max_rate
-ffffffc008c647b0 d trace_event_fields_clk_rate_range
-ffffffc008c64850 d trace_event_type_funcs_clk_rate_range
-ffffffc008c64870 d print_fmt_clk_rate_range
-ffffffc008c648c8 d event_clk_set_rate_range
-ffffffc008c64958 d trace_event_fields_clk_parent
-ffffffc008c649d0 d trace_event_type_funcs_clk_parent
-ffffffc008c649f0 d print_fmt_clk_parent
-ffffffc008c64a20 d event_clk_set_parent
-ffffffc008c64ab0 d event_clk_set_parent_complete
-ffffffc008c64b40 d trace_event_fields_clk_phase
-ffffffc008c64bb8 d trace_event_type_funcs_clk_phase
-ffffffc008c64bd8 d print_fmt_clk_phase
-ffffffc008c64c08 d event_clk_set_phase
-ffffffc008c64c98 d event_clk_set_phase_complete
-ffffffc008c64d28 d trace_event_fields_clk_duty_cycle
-ffffffc008c64dc8 d trace_event_type_funcs_clk_duty_cycle
-ffffffc008c64de8 d print_fmt_clk_duty_cycle
-ffffffc008c64e38 d event_clk_set_duty_cycle
-ffffffc008c64ec8 d event_clk_set_duty_cycle_complete
-ffffffc008c64f58 d clk_notifier_list
-ffffffc008c64f68 d of_clk_mutex
-ffffffc008c64f88 d of_clk_providers
-ffffffc008c64f98 d prepare_lock
-ffffffc008c64fb8 d all_lists
-ffffffc008c64fd0 d orphan_list
-ffffffc008c64fe0 d clk_debug_lock
-ffffffc008c65000 d of_fixed_factor_clk_driver
-ffffffc008c650c8 d of_fixed_clk_driver
-ffffffc008c65190 d gpio_clk_driver
-ffffffc008c65258 d virtio_bus
-ffffffc008c65310 d virtio_index_ida.llvm.18134648182176841696
-ffffffc008c65320 d virtio_dev_groups
-ffffffc008c65330 d virtio_dev_attrs
-ffffffc008c65360 d dev_attr_status
-ffffffc008c65380 d dev_attr_status
-ffffffc008c653a0 d dev_attr_features
-ffffffc008c653c0 D virtio_check_mem_acc_cb
-ffffffc008c653c8 d virtio_pci_driver
-ffffffc008c654f0 d virtio_balloon_driver
-ffffffc008c655e0 d features
-ffffffc008c655f8 d features
-ffffffc008c65628 d features
-ffffffc008c65630 d fill_balloon._rs
-ffffffc008c65658 D tty_drivers
-ffffffc008c65668 D tty_mutex
-ffffffc008c65688 d tty_init_dev._rs
-ffffffc008c656b0 d tty_init_dev._rs.3
-ffffffc008c656d8 d cons_dev_groups
-ffffffc008c656e8 d tty_set_serial._rs
-ffffffc008c65710 d cons_dev_attrs
-ffffffc008c65720 D tty_std_termios
-ffffffc008c65750 d n_tty_ops.llvm.11929033096552206123
-ffffffc008c657e0 d n_tty_kick_worker._rs
-ffffffc008c65808 d n_tty_kick_worker._rs.5
-ffffffc008c65830 d tty_root_table.llvm.10697298482216717977
-ffffffc008c658b0 d tty_ldisc_autoload
-ffffffc008c658b8 d tty_dir_table
-ffffffc008c65938 d tty_table
-ffffffc008c659b8 d null_ldisc
-ffffffc008c65a48 d devpts_mutex
-ffffffc008c65a68 D __sysrq_reboot_op
-ffffffc008c65a70 d sysrq_key_table
-ffffffc008c65c60 d moom_work
-ffffffc008c65c80 d sysrq_showallcpus
-ffffffc008c65ca0 d sysrq_reset_seq_version
-ffffffc008c65ca8 d sysrq_handler
-ffffffc008c65d20 d vt_events
-ffffffc008c65d30 d vt_event_waitqueue
-ffffffc008c65d48 d vc_sel.llvm.15893154166767225269
-ffffffc008c65d88 d inwordLut
-ffffffc008c65d98 d kd_mksound_timer
-ffffffc008c65dc0 d kbd_handler
-ffffffc008c65e38 d brl_timeout
-ffffffc008c65e3c d brl_nbchords
-ffffffc008c65e40 d keyboard_tasklet
-ffffffc008c65e68 d kbd
-ffffffc008c65e70 d applkey.buf
-ffffffc008c65e74 d ledstate
-ffffffc008c65e78 d translations
-ffffffc008c66678 D dfont_unicount
-ffffffc008c66778 D dfont_unitable
-ffffffc008c669d8 D global_cursor_default
-ffffffc008c669dc d cur_default
-ffffffc008c669e0 d console_work.llvm.16410117752014341364
-ffffffc008c66a00 d complement_pos.old_offset
-ffffffc008c66a04 D default_red
-ffffffc008c66a14 D default_grn
-ffffffc008c66a24 D default_blu
-ffffffc008c66a34 d default_color
-ffffffc008c66a38 d default_italic_color
-ffffffc008c66a3c d default_underline_color
-ffffffc008c66a40 d vt_dev_groups
-ffffffc008c66a50 d con_driver_unregister_work
-ffffffc008c66a70 d console_timer
-ffffffc008c66a98 d softcursor_original
-ffffffc008c66aa0 d vt_console_driver
-ffffffc008c66b18 d vt_dev_attrs
-ffffffc008c66b28 d con_dev_groups
-ffffffc008c66b38 d con_dev_attrs
-ffffffc008c66b50 d dev_attr_bind
-ffffffc008c66b70 d dev_attr_name
-ffffffc008c66b90 d dev_attr_name
-ffffffc008c66bb0 d dev_attr_name
-ffffffc008c66bd0 d dev_attr_name
-ffffffc008c66bf0 d dev_attr_name
-ffffffc008c66c10 d dev_attr_name
-ffffffc008c66c30 D default_utf8
-ffffffc008c66c34 D want_console
-ffffffc008c66c38 D plain_map
-ffffffc008c66e38 D key_maps
-ffffffc008c67638 D keymap_count
-ffffffc008c6763c D func_buf
-ffffffc008c676d8 D funcbufptr
-ffffffc008c676e0 D funcbufsize
-ffffffc008c676e8 D func_table
-ffffffc008c67ee8 D accent_table
-ffffffc008c68ae8 D accent_table_size
-ffffffc008c68aec d shift_map
-ffffffc008c68cec d altgr_map
-ffffffc008c68eec d ctrl_map
-ffffffc008c690ec d shift_ctrl_map
-ffffffc008c692ec d alt_map
-ffffffc008c694ec d ctrl_alt_map
-ffffffc008c696ec d vtermnos
-ffffffc008c69730 d hvc_structs_mutex
-ffffffc008c69750 d last_hvc
-ffffffc008c69758 d hvc_structs
-ffffffc008c69768 d hvc_console
-ffffffc008c697e0 d timeout
-ffffffc008c697e8 d port_mutex
-ffffffc008c69808 d uart_sanitize_serial_rs485._rs
-ffffffc008c69830 d uart_set_info._rs
-ffffffc008c69858 d tty_dev_attrs
-ffffffc008c698d0 d dev_attr_uartclk
-ffffffc008c698f0 d dev_attr_line
-ffffffc008c69910 d dev_attr_port
-ffffffc008c69930 d dev_attr_flags
-ffffffc008c69950 d dev_attr_flags
-ffffffc008c69970 d dev_attr_xmit_fifo_size
-ffffffc008c69990 d dev_attr_close_delay
-ffffffc008c699b0 d dev_attr_closing_wait
-ffffffc008c699d0 d dev_attr_custom_divisor
-ffffffc008c699f0 d dev_attr_io_type
-ffffffc008c69a10 d dev_attr_iomem_base
-ffffffc008c69a30 d dev_attr_iomem_reg_shift
-ffffffc008c69a50 d dev_attr_console
-ffffffc008c69a70 d uart_sanitize_serial_rs485_delays._rs
-ffffffc008c69a98 d uart_sanitize_serial_rs485_delays._rs.68
-ffffffc008c69ac0 d uart_sanitize_serial_rs485_delays._rs.70
-ffffffc008c69ae8 d uart_sanitize_serial_rs485_delays._rs.72
-ffffffc008c69b10 d early_con
-ffffffc008c69b88 d early_console_dev
-ffffffc008c69da8 d serial8250_reg
-ffffffc008c69de8 d serial_mutex
-ffffffc008c69e08 d serial8250_isa_driver
-ffffffc008c69ed0 d univ8250_console
-ffffffc008c69f48 d hash_mutex
-ffffffc008c69f68 D serial8250_em485_supported
-ffffffc008c69f88 d serial8250_do_startup._rs
-ffffffc008c69fb0 d serial8250_do_startup._rs.4
-ffffffc008c69fd8 d serial8250_dev_attr_group
-ffffffc008c6a000 d serial8250_dev_attrs
-ffffffc008c6a010 d dev_attr_rx_trig_bytes
-ffffffc008c6a030 d pericom8250_pci_driver
-ffffffc008c6a158 d of_platform_serial_driver
-ffffffc008c6a220 d ttynull_console
-ffffffc008c6a298 d crng_init_wait
-ffffffc008c6a2b0 d pm_notifier
-ffffffc008c6a2c8 d input_pool
-ffffffc008c6a348 d add_input_randomness.input_timer_state
-ffffffc008c6a360 d urandom_warning
-ffffffc008c6a388 d crng_reseed_interval.early_boot
-ffffffc008c6a38c d urandom_read_iter.maxwarn
-ffffffc008c6a390 d random_table
-ffffffc008c6a550 d sysctl_poolsize
-ffffffc008c6a554 d sysctl_random_write_wakeup_bits
-ffffffc008c6a558 d sysctl_random_min_urandom_seed
-ffffffc008c6a560 d misc_mtx
-ffffffc008c6a580 d misc_list
-ffffffc008c6a590 d virtio_console
-ffffffc008c6a680 d virtio_rproc_serial
-ffffffc008c6a770 d pdrvdata
-ffffffc008c6a7a8 d pending_free_dma_bufs
-ffffffc008c6a7b8 d early_console_added
-ffffffc008c6a7d8 d port_sysfs_entries
-ffffffc008c6a7e8 d rng_miscdev
-ffffffc008c6a838 d rng_mutex
-ffffffc008c6a858 d rng_list
-ffffffc008c6a868 d rng_dev_groups
-ffffffc008c6a878 d reading_mutex
-ffffffc008c6a898 d rng_dev_attrs
-ffffffc008c6a8c0 d dev_attr_rng_current
-ffffffc008c6a8e0 d dev_attr_rng_available
-ffffffc008c6a900 d dev_attr_rng_selected
-ffffffc008c6a920 d dev_attr_rng_quality
-ffffffc008c6a940 d cctrng_driver
-ffffffc008c6aa08 d smccc_trng_driver
-ffffffc008c6aad0 d cn10k_rng_driver
-ffffffc008c6abf8 d iommu_device_list
-ffffffc008c6ac08 d iommu_group_ida
-ffffffc008c6ac18 d iommu_group_ktype
-ffffffc008c6ac48 d iommu_group_attr_reserved_regions
-ffffffc008c6ac68 d iommu_group_attr_type
-ffffffc008c6ac88 d iommu_group_attr_name
-ffffffc008c6aca8 d iommu_page_response._rs
-ffffffc008c6acd0 d __iommu_probe_device.iommu_probe_device_lock
-ffffffc008c6acf0 d iommu_group_store_type._rs
-ffffffc008c6ad18 d iommu_group_store_type._rs.44
-ffffffc008c6ad40 d iommu_change_dev_def_domain._rs
-ffffffc008c6ad68 d iommu_change_dev_def_domain._rs.47
-ffffffc008c6ad90 d iommu_change_dev_def_domain._rs.49
-ffffffc008c6adb8 d iommu_change_dev_def_domain._rs.51
-ffffffc008c6ade0 D __SCK__tp_func_add_device_to_group
-ffffffc008c6ade8 D __SCK__tp_func_remove_device_from_group
-ffffffc008c6adf0 D __SCK__tp_func_attach_device_to_domain
-ffffffc008c6adf8 D __SCK__tp_func_detach_device_from_domain
-ffffffc008c6ae00 D __SCK__tp_func_map
-ffffffc008c6ae08 D __SCK__tp_func_unmap
-ffffffc008c6ae10 D __SCK__tp_func_io_page_fault
-ffffffc008c6ae18 d trace_event_fields_iommu_group_event
-ffffffc008c6ae90 d trace_event_type_funcs_iommu_group_event
-ffffffc008c6aeb0 d print_fmt_iommu_group_event
-ffffffc008c6aef0 d event_add_device_to_group
-ffffffc008c6af80 d event_remove_device_from_group
-ffffffc008c6b010 d trace_event_fields_iommu_device_event
-ffffffc008c6b060 d trace_event_type_funcs_iommu_device_event
-ffffffc008c6b080 d print_fmt_iommu_device_event
-ffffffc008c6b0a8 d event_attach_device_to_domain
-ffffffc008c6b138 d event_detach_device_from_domain
-ffffffc008c6b1c8 d trace_event_fields_map
-ffffffc008c6b268 d trace_event_type_funcs_map
-ffffffc008c6b288 d print_fmt_map
-ffffffc008c6b300 d event_map
-ffffffc008c6b390 d trace_event_fields_unmap
-ffffffc008c6b430 d trace_event_type_funcs_unmap
-ffffffc008c6b450 d print_fmt_unmap
-ffffffc008c6b4d0 d event_unmap
-ffffffc008c6b560 d trace_event_fields_iommu_error
-ffffffc008c6b628 d trace_event_type_funcs_iommu_error
-ffffffc008c6b648 d print_fmt_iommu_error
-ffffffc008c6b6b0 d event_io_page_fault
-ffffffc008c6b740 d iommu_class
-ffffffc008c6b7b8 d dev_groups
-ffffffc008c6b7c8 d iommu_dma_prepare_msi.msi_prepare_lock
-ffffffc008c6b7e8 d iova_cache_mutex
-ffffffc008c6b808 d component_mutex
-ffffffc008c6b828 d aggregate_devices
-ffffffc008c6b838 d component_list
-ffffffc008c6b848 d fwnode_link_lock.llvm.13135352369394788123
-ffffffc008c6b868 d device_links_srcu.llvm.13135352369394788123
-ffffffc008c6b9e8 d devlink_class.llvm.13135352369394788123
-ffffffc008c6ba60 d defer_sync_state_count
-ffffffc008c6ba68 d deferred_sync
-ffffffc008c6ba78 d dev_attr_waiting_for_supplier
-ffffffc008c6ba98 d fw_devlink_flags
-ffffffc008c6baa0 d device_hotplug_lock.llvm.13135352369394788123
-ffffffc008c6bac0 d device_ktype
-ffffffc008c6baf0 d dev_attr_uevent
-ffffffc008c6bb10 d dev_attr_dev
-ffffffc008c6bb30 d devlink_class_intf
-ffffffc008c6bb58 d device_links_lock.llvm.13135352369394788123
-ffffffc008c6bb78 d devlink_groups
-ffffffc008c6bb88 d devlink_attrs
-ffffffc008c6bbb0 d dev_attr_auto_remove_on
-ffffffc008c6bbd0 d dev_attr_runtime_pm
-ffffffc008c6bbf0 d dev_attr_sync_state_only
-ffffffc008c6bc10 d gdp_mutex
-ffffffc008c6bc30 d class_dir_ktype
-ffffffc008c6bc60 d dev_attr_online
-ffffffc008c6bc80 d driver_ktype
-ffffffc008c6bcb0 d driver_attr_uevent
-ffffffc008c6bcd0 d bus_ktype
-ffffffc008c6bd00 d bus_attr_uevent
-ffffffc008c6bd20 d driver_attr_unbind
-ffffffc008c6bd40 d driver_attr_bind
-ffffffc008c6bd60 d bus_attr_drivers_probe
-ffffffc008c6bd80 d bus_attr_drivers_autoprobe
-ffffffc008c6bda0 d deferred_probe_mutex
-ffffffc008c6bdc0 d deferred_probe_pending_list
-ffffffc008c6bdd0 d deferred_probe_active_list
-ffffffc008c6bde0 d deferred_probe_work
-ffffffc008c6be00 d deferred_probe_timeout_work
-ffffffc008c6be58 d probe_waitqueue
-ffffffc008c6be70 d dev_attr_state_synced
-ffffffc008c6be90 d dev_attr_coredump
-ffffffc008c6beb0 d syscore_ops_lock
-ffffffc008c6bed0 d syscore_ops_list
-ffffffc008c6bee0 d class_ktype
-ffffffc008c6bf10 D platform_bus
-ffffffc008c6c1f0 D platform_bus_type
-ffffffc008c6c2a8 d platform_devid_ida
-ffffffc008c6c2b8 d platform_dev_groups
-ffffffc008c6c2c8 d platform_dev_attrs
-ffffffc008c6c2e8 d dev_attr_numa_node
-ffffffc008c6c308 d cpu_root_attr_groups
-ffffffc008c6c318 d cpu_root_attrs
-ffffffc008c6c358 d cpu_attrs
-ffffffc008c6c3d0 d dev_attr_kernel_max
-ffffffc008c6c3f0 d dev_attr_offline
-ffffffc008c6c410 d dev_attr_isolated
-ffffffc008c6c430 d cpu_root_vulnerabilities_attrs
-ffffffc008c6c490 d dev_attr_meltdown
-ffffffc008c6c4b0 d dev_attr_spectre_v1
-ffffffc008c6c4d0 d dev_attr_spectre_v2
-ffffffc008c6c4f0 d dev_attr_spec_store_bypass
-ffffffc008c6c510 d dev_attr_l1tf
-ffffffc008c6c530 d dev_attr_mds
-ffffffc008c6c550 d dev_attr_tsx_async_abort
-ffffffc008c6c570 d dev_attr_itlb_multihit
-ffffffc008c6c590 d dev_attr_srbds
-ffffffc008c6c5b0 d dev_attr_mmio_stale_data
-ffffffc008c6c5d0 d dev_attr_retbleed
-ffffffc008c6c5f0 D cpu_subsys
-ffffffc008c6c6a8 d attribute_container_mutex
-ffffffc008c6c6c8 d attribute_container_list
-ffffffc008c6c6d8 d default_attrs
-ffffffc008c6c700 d bin_attrs
-ffffffc008c6c758 d dev_attr_ppin
-ffffffc008c6c778 d dev_attr_physical_package_id
-ffffffc008c6c798 d dev_attr_cluster_id
-ffffffc008c6c7b8 d dev_attr_core_id
-ffffffc008c6c7d8 d bin_attr_core_cpus
-ffffffc008c6c818 d bin_attr_core_cpus_list
-ffffffc008c6c858 d bin_attr_thread_siblings
-ffffffc008c6c898 d bin_attr_thread_siblings_list
-ffffffc008c6c8d8 d bin_attr_core_siblings
-ffffffc008c6c918 d bin_attr_core_siblings_list
-ffffffc008c6c958 d bin_attr_cluster_cpus
-ffffffc008c6c998 d bin_attr_cluster_cpus_list
-ffffffc008c6c9d8 d bin_attr_package_cpus
-ffffffc008c6ca18 d bin_attr_package_cpus_list
-ffffffc008c6ca58 D container_subsys
-ffffffc008c6cb10 d cache_default_groups
-ffffffc008c6cb20 d cache_private_groups
-ffffffc008c6cb38 d cache_default_attrs
-ffffffc008c6cba0 d dev_attr_level
-ffffffc008c6cbc0 d dev_attr_shared_cpu_map
-ffffffc008c6cbe0 d dev_attr_shared_cpu_list
-ffffffc008c6cc00 d dev_attr_coherency_line_size
-ffffffc008c6cc20 d dev_attr_ways_of_associativity
-ffffffc008c6cc40 d dev_attr_number_of_sets
-ffffffc008c6cc60 d dev_attr_write_policy
-ffffffc008c6cc80 d dev_attr_allocation_policy
-ffffffc008c6cca0 d dev_attr_physical_line_partition
-ffffffc008c6ccc0 d swnode_root_ids
-ffffffc008c6ccd0 d software_node_type
-ffffffc008c6cd00 d runtime_attrs.llvm.12130046193727004250
-ffffffc008c6cd30 d dev_attr_runtime_status
-ffffffc008c6cd50 d dev_attr_runtime_suspended_time
-ffffffc008c6cd70 d dev_attr_runtime_active_time
-ffffffc008c6cd90 d dev_attr_autosuspend_delay_ms
-ffffffc008c6cdb0 d wakeup_attrs.llvm.12130046193727004250
-ffffffc008c6ce00 d dev_attr_wakeup
-ffffffc008c6ce20 d dev_attr_wakeup_count
-ffffffc008c6ce40 d dev_attr_wakeup_count
-ffffffc008c6ce60 d dev_attr_wakeup_active_count
-ffffffc008c6ce80 d dev_attr_wakeup_abort_count
-ffffffc008c6cea0 d dev_attr_wakeup_expire_count
-ffffffc008c6cec0 d dev_attr_wakeup_active
-ffffffc008c6cee0 d dev_attr_wakeup_total_time_ms
-ffffffc008c6cf00 d dev_attr_wakeup_max_time_ms
-ffffffc008c6cf20 d dev_attr_wakeup_last_time_ms
-ffffffc008c6cf40 d pm_qos_latency_tolerance_attrs.llvm.12130046193727004250
-ffffffc008c6cf50 d dev_attr_pm_qos_latency_tolerance_us
-ffffffc008c6cf70 d pm_qos_resume_latency_attrs.llvm.12130046193727004250
-ffffffc008c6cf80 d dev_attr_pm_qos_resume_latency_us
-ffffffc008c6cfa0 d pm_qos_flags_attrs.llvm.12130046193727004250
-ffffffc008c6cfb0 d dev_attr_pm_qos_no_power_off
-ffffffc008c6cfd0 d dev_pm_qos_sysfs_mtx
-ffffffc008c6cff0 d dev_pm_qos_mtx.llvm.12987161892590686082
-ffffffc008c6d010 d pm_runtime_set_memalloc_noio.dev_hotplug_mutex
-ffffffc008c6d030 D dpm_list
-ffffffc008c6d040 d dpm_list_mtx.llvm.14292633874074239881
-ffffffc008c6d060 d dpm_late_early_list
-ffffffc008c6d070 d dpm_suspended_list
-ffffffc008c6d080 d dpm_prepared_list
-ffffffc008c6d090 d dpm_noirq_list
-ffffffc008c6d0a0 d wakeup_ida
-ffffffc008c6d0b0 d wakeup_sources
-ffffffc008c6d0c0 d wakeup_srcu
-ffffffc008c6d240 d wakeup_count_wait_queue
-ffffffc008c6d258 d deleted_ws
-ffffffc008c6d318 d wakeup_source_groups
-ffffffc008c6d328 d wakeup_source_attrs
-ffffffc008c6d380 d dev_attr_active_count
-ffffffc008c6d3a0 d dev_attr_event_count
-ffffffc008c6d3c0 d dev_attr_expire_count
-ffffffc008c6d3e0 d dev_attr_active_time_ms
-ffffffc008c6d400 d dev_attr_total_time_ms
-ffffffc008c6d420 d dev_attr_max_time_ms
-ffffffc008c6d440 d dev_attr_last_change_ms
-ffffffc008c6d460 d dev_attr_prevent_suspend_time_ms
-ffffffc008c6d480 D fw_fallback_config
-ffffffc008c6d490 d firmware_config_table.llvm.4914588615639669132
-ffffffc008c6d550 d fw_shutdown_nb
-ffffffc008c6d568 D fw_lock
-ffffffc008c6d588 d pending_fw_head
-ffffffc008c6d598 d firmware_class.llvm.15796993928851433100
-ffffffc008c6d610 D dev_attr_loading
-ffffffc008c6d630 d fw_dev_attr_groups
-ffffffc008c6d640 d firmware_class_groups
-ffffffc008c6d650 d firmware_class_attrs
-ffffffc008c6d660 d class_attr_timeout
-ffffffc008c6d680 d fw_dev_attrs
-ffffffc008c6d690 d fw_dev_bin_attrs
-ffffffc008c6d6a0 d firmware_attr_data
-ffffffc008c6d6e0 d memory_chain.llvm.3781657825922351579
-ffffffc008c6d718 d memory_subsys
-ffffffc008c6d7d0 d memory_root_attr_groups
-ffffffc008c6d7e0 d memory_groups.llvm.3781657825922351579
-ffffffc008c6d7f0 d memory_memblk_attr_groups
-ffffffc008c6d800 d memory_memblk_attrs
-ffffffc008c6d830 d dev_attr_phys_index
-ffffffc008c6d850 d dev_attr_phys_device
-ffffffc008c6d870 d dev_attr_valid_zones
-ffffffc008c6d890 d memory_root_attrs
-ffffffc008c6d8a8 d dev_attr_block_size_bytes
-ffffffc008c6d8c8 d dev_attr_auto_online_blocks
-ffffffc008c6d8e8 D __SCK__tp_func_regmap_reg_write
-ffffffc008c6d8f0 D __SCK__tp_func_regmap_reg_read
-ffffffc008c6d8f8 D __SCK__tp_func_regmap_reg_read_cache
-ffffffc008c6d900 D __SCK__tp_func_regmap_bulk_write
-ffffffc008c6d908 D __SCK__tp_func_regmap_bulk_read
-ffffffc008c6d910 D __SCK__tp_func_regmap_hw_read_start
-ffffffc008c6d918 D __SCK__tp_func_regmap_hw_read_done
-ffffffc008c6d920 D __SCK__tp_func_regmap_hw_write_start
-ffffffc008c6d928 D __SCK__tp_func_regmap_hw_write_done
-ffffffc008c6d930 D __SCK__tp_func_regcache_sync
-ffffffc008c6d938 D __SCK__tp_func_regmap_cache_only
-ffffffc008c6d940 D __SCK__tp_func_regmap_cache_bypass
-ffffffc008c6d948 D __SCK__tp_func_regmap_async_write_start
-ffffffc008c6d950 D __SCK__tp_func_regmap_async_io_complete
-ffffffc008c6d958 D __SCK__tp_func_regmap_async_complete_start
-ffffffc008c6d960 D __SCK__tp_func_regmap_async_complete_done
-ffffffc008c6d968 D __SCK__tp_func_regcache_drop_region
-ffffffc008c6d970 d trace_event_fields_regmap_reg
-ffffffc008c6da10 d trace_event_type_funcs_regmap_reg
-ffffffc008c6da30 d print_fmt_regmap_reg
-ffffffc008c6da68 d event_regmap_reg_write
-ffffffc008c6daf8 d event_regmap_reg_read
-ffffffc008c6db88 d event_regmap_reg_read_cache
-ffffffc008c6dc18 d trace_event_fields_regmap_bulk
-ffffffc008c6dce0 d trace_event_type_funcs_regmap_bulk
-ffffffc008c6dd00 d print_fmt_regmap_bulk
-ffffffc008c6dd68 d event_regmap_bulk_write
-ffffffc008c6ddf8 d event_regmap_bulk_read
-ffffffc008c6de88 d trace_event_fields_regmap_block
-ffffffc008c6df28 d trace_event_type_funcs_regmap_block
-ffffffc008c6df48 d print_fmt_regmap_block
-ffffffc008c6df88 d event_regmap_hw_read_start
-ffffffc008c6e018 d event_regmap_hw_read_done
-ffffffc008c6e0a8 d event_regmap_hw_write_start
-ffffffc008c6e138 d event_regmap_hw_write_done
-ffffffc008c6e1c8 d trace_event_fields_regcache_sync
-ffffffc008c6e268 d trace_event_type_funcs_regcache_sync
-ffffffc008c6e288 d print_fmt_regcache_sync
-ffffffc008c6e2d8 d event_regcache_sync
-ffffffc008c6e368 d trace_event_fields_regmap_bool
-ffffffc008c6e3e0 d trace_event_type_funcs_regmap_bool
-ffffffc008c6e400 d print_fmt_regmap_bool
-ffffffc008c6e430 d event_regmap_cache_only
-ffffffc008c6e4c0 d event_regmap_cache_bypass
-ffffffc008c6e550 d trace_event_fields_regmap_async
-ffffffc008c6e5a0 d event_regmap_async_write_start
-ffffffc008c6e630 d trace_event_type_funcs_regmap_async
-ffffffc008c6e650 d print_fmt_regmap_async
-ffffffc008c6e668 d event_regmap_async_io_complete
-ffffffc008c6e6f8 d event_regmap_async_complete_start
-ffffffc008c6e788 d event_regmap_async_complete_done
-ffffffc008c6e818 d trace_event_fields_regcache_drop_region
-ffffffc008c6e8b8 d trace_event_type_funcs_regcache_drop_region
-ffffffc008c6e8d8 d print_fmt_regcache_drop_region
-ffffffc008c6e908 d event_regcache_drop_region
-ffffffc008c6e998 D regcache_rbtree_ops
-ffffffc008c6e9e0 D regcache_flat_ops
-ffffffc008c6ea28 d regmap_debugfs_early_lock
-ffffffc008c6ea48 d regmap_debugfs_early_list
-ffffffc008c6ea58 d soc_bus_type
-ffffffc008c6eb10 d soc_ida
-ffffffc008c6eb20 d soc_attr
-ffffffc008c6eb50 d dev_attr_machine
-ffffffc008c6eb70 d dev_attr_family
-ffffffc008c6eb90 d dev_attr_serial_number
-ffffffc008c6ebb0 d dev_attr_soc_id
-ffffffc008c6ebd0 d platform_msi_devid_ida
-ffffffc008c6ebe0 D __SCK__tp_func_thermal_pressure_update
-ffffffc008c6ebe8 d trace_event_fields_thermal_pressure_update
-ffffffc008c6ec60 d trace_event_type_funcs_thermal_pressure_update
-ffffffc008c6ec80 d print_fmt_thermal_pressure_update
-ffffffc008c6ecc0 d event_thermal_pressure_update
-ffffffc008c6ed50 d dev_attr_cpu_capacity
-ffffffc008c6ed70 D __SCK__tp_func_devres_log
-ffffffc008c6ed78 d trace_event_fields_devres
-ffffffc008c6ee90 d trace_event_type_funcs_devres
-ffffffc008c6eeb0 d print_fmt_devres
-ffffffc008c6ef10 d event_devres_log
-ffffffc008c6efa0 d rd_nr
-ffffffc008c6efa8 D rd_size
-ffffffc008c6efb0 d max_part
-ffffffc008c6efb8 d brd_devices
-ffffffc008c6efc8 d max_loop
-ffffffc008c6efcc d hw_queue_depth
-ffffffc008c6efd0 d loop_misc
-ffffffc008c6f020 d loop_index_idr
-ffffffc008c6f038 d loop_ctl_mutex
-ffffffc008c6f058 d lo_write_bvec._rs
-ffffffc008c6f080 d loop_attribute_group
-ffffffc008c6f0a8 d loop_attrs
-ffffffc008c6f0e0 d loop_attr_backing_file
-ffffffc008c6f100 d loop_attr_offset
-ffffffc008c6f120 d loop_attr_sizelimit
-ffffffc008c6f140 d loop_attr_autoclear
-ffffffc008c6f160 d loop_attr_partscan
-ffffffc008c6f180 d loop_attr_dio
-ffffffc008c6f1a0 d loop_validate_mutex
-ffffffc008c6f1c0 d virtio_blk
-ffffffc008c6f2b0 d features_legacy
-ffffffc008c6f2e0 d vd_index_ida
-ffffffc008c6f2f0 d virtblk_attr_groups
-ffffffc008c6f300 d virtblk_attrs
-ffffffc008c6f318 d dev_attr_cache_type
-ffffffc008c6f338 d dev_attr_serial
-ffffffc008c6f358 d num_devices
-ffffffc008c6f360 d zram_control_class
-ffffffc008c6f3d8 d zram_index_idr
-ffffffc008c6f3f0 d zram_control_class_groups
-ffffffc008c6f400 d zram_control_class_attrs
-ffffffc008c6f418 d class_attr_hot_add
-ffffffc008c6f438 d class_attr_hot_remove
-ffffffc008c6f458 d zram_index_mutex
-ffffffc008c6f478 d zram_disk_groups
-ffffffc008c6f488 d zram_disk_attrs
-ffffffc008c6f4f0 d dev_attr_disksize
-ffffffc008c6f510 d dev_attr_initstate
-ffffffc008c6f530 d dev_attr_compact
-ffffffc008c6f550 d dev_attr_mem_limit
-ffffffc008c6f570 d dev_attr_mem_used_max
-ffffffc008c6f590 d dev_attr_idle
-ffffffc008c6f5b0 d dev_attr_max_comp_streams
-ffffffc008c6f5d0 d dev_attr_comp_algorithm
-ffffffc008c6f5f0 d dev_attr_io_stat
-ffffffc008c6f610 d dev_attr_mm_stat
-ffffffc008c6f630 d dev_attr_debug_stat
-ffffffc008c6f650 d open_dice_driver
-ffffffc008c6f718 d vcpu_stall_detect_driver
-ffffffc008c6f7e0 d syscon_list
-ffffffc008c6f7f0 d syscon_driver
-ffffffc008c6f8b8 d dma_buf_fs_type
-ffffffc008c6f900 D __SCK__tp_func_dma_fence_emit
-ffffffc008c6f908 D __SCK__tp_func_dma_fence_init
-ffffffc008c6f910 D __SCK__tp_func_dma_fence_destroy
-ffffffc008c6f918 D __SCK__tp_func_dma_fence_enable_signal
-ffffffc008c6f920 D __SCK__tp_func_dma_fence_signaled
-ffffffc008c6f928 D __SCK__tp_func_dma_fence_wait_start
-ffffffc008c6f930 D __SCK__tp_func_dma_fence_wait_end
-ffffffc008c6f938 d trace_event_fields_dma_fence
-ffffffc008c6fa00 d trace_event_type_funcs_dma_fence
-ffffffc008c6fa20 d print_fmt_dma_fence
-ffffffc008c6fa90 d event_dma_fence_emit
-ffffffc008c6fb20 d event_dma_fence_init
-ffffffc008c6fbb0 d event_dma_fence_destroy
-ffffffc008c6fc40 d event_dma_fence_enable_signal
-ffffffc008c6fcd0 d event_dma_fence_signaled
-ffffffc008c6fd60 d event_dma_fence_wait_start
-ffffffc008c6fdf0 d event_dma_fence_wait_end
-ffffffc008c6fe80 d dma_fence_context_counter
-ffffffc008c6fe88 D reservation_ww_class
-ffffffc008c6fea8 d heap_list_lock
-ffffffc008c6fec8 d heap_list
-ffffffc008c6fed8 d dma_heap_minors
-ffffffc008c6fee8 d dma_heap_sysfs_groups
-ffffffc008c6fef8 d dma_heap_sysfs_attrs
-ffffffc008c6ff08 d total_pools_kb_attr
-ffffffc008c6ff28 d dma_buf_ktype
-ffffffc008c6ff58 d dma_buf_stats_default_groups
-ffffffc008c6ff68 d dma_buf_stats_default_attrs
-ffffffc008c6ff80 d exporter_name_attribute
-ffffffc008c6ff98 d size_attribute
-ffffffc008c6ffb0 d size_attribute
-ffffffc008c6ffd0 d uio_class
-ffffffc008c70048 d uio_idr
-ffffffc008c70060 d minor_lock
-ffffffc008c70080 d uio_groups
-ffffffc008c70090 d uio_attrs
-ffffffc008c700b0 d dev_attr_version
-ffffffc008c700d0 d dev_attr_version
-ffffffc008c700f0 d dev_attr_event
-ffffffc008c70110 d map_attr_type
-ffffffc008c70140 d portio_attr_type
-ffffffc008c70170 d map_groups
-ffffffc008c70180 d map_attrs
-ffffffc008c701a8 d name_attribute
-ffffffc008c701c8 d addr_attribute
-ffffffc008c701e8 d offset_attribute
-ffffffc008c70208 d portio_groups
-ffffffc008c70218 d portio_attrs
-ffffffc008c70240 d portio_name_attribute
-ffffffc008c70260 d portio_start_attribute
-ffffffc008c70280 d portio_size_attribute
-ffffffc008c702a0 d portio_porttype_attribute
-ffffffc008c702c0 d serio_mutex
-ffffffc008c702e0 D serio_bus
-ffffffc008c70398 d serio_list
-ffffffc008c703a8 d serio_driver_groups
-ffffffc008c703b8 d serio_event_work
-ffffffc008c703d8 d serio_event_list
-ffffffc008c703e8 d serio_init_port.serio_no
-ffffffc008c703f0 d serio_device_attr_groups
-ffffffc008c70408 d serio_device_id_attrs
-ffffffc008c70430 d dev_attr_proto
-ffffffc008c70450 d dev_attr_extra
-ffffffc008c70470 d serio_device_attrs
-ffffffc008c704a0 d dev_attr_description
-ffffffc008c704c0 d dev_attr_drvctl
-ffffffc008c704e0 d dev_attr_bind_mode
-ffffffc008c70500 d dev_attr_firmware_id
-ffffffc008c70520 d serio_driver_attrs
-ffffffc008c70538 d driver_attr_description
-ffffffc008c70558 d driver_attr_bind_mode
-ffffffc008c70578 d serport_ldisc
-ffffffc008c70608 D input_class
-ffffffc008c70680 d input_allocate_device.input_no
-ffffffc008c70688 d input_mutex
-ffffffc008c706a8 d input_dev_list
-ffffffc008c706b8 d input_handler_list
-ffffffc008c706c8 d input_ida
-ffffffc008c706d8 d input_dev_attr_groups
-ffffffc008c70700 d input_dev_attrs
-ffffffc008c70738 d dev_attr_phys
-ffffffc008c70758 d dev_attr_uniq
-ffffffc008c70778 d dev_attr_properties
-ffffffc008c70798 d dev_attr_inhibited
-ffffffc008c707b8 d input_dev_id_attrs
-ffffffc008c707e0 d dev_attr_bustype
-ffffffc008c70800 d dev_attr_product
-ffffffc008c70820 d input_dev_caps_attrs
-ffffffc008c70870 d dev_attr_ev
-ffffffc008c70890 d dev_attr_key
-ffffffc008c708b0 d dev_attr_rel
-ffffffc008c708d0 d dev_attr_abs
-ffffffc008c708f0 d dev_attr_msc
-ffffffc008c70910 d dev_attr_led
-ffffffc008c70930 d dev_attr_snd
-ffffffc008c70950 d dev_attr_ff
-ffffffc008c70970 d dev_attr_sw
-ffffffc008c70990 d input_devices_poll_wait
-ffffffc008c709a8 d input_poller_attrs
-ffffffc008c709c8 D input_poller_attribute_group
-ffffffc008c709f0 d dev_attr_poll
-ffffffc008c70a10 d dev_attr_max
-ffffffc008c70a30 d dev_attr_min
-ffffffc008c70a50 d rtc_ida
-ffffffc008c70a60 D rtc_hctosys_ret
-ffffffc008c70a68 D __SCK__tp_func_rtc_set_time
-ffffffc008c70a70 D __SCK__tp_func_rtc_read_time
-ffffffc008c70a78 D __SCK__tp_func_rtc_set_alarm
-ffffffc008c70a80 D __SCK__tp_func_rtc_read_alarm
-ffffffc008c70a88 D __SCK__tp_func_rtc_irq_set_freq
-ffffffc008c70a90 D __SCK__tp_func_rtc_irq_set_state
-ffffffc008c70a98 D __SCK__tp_func_rtc_alarm_irq_enable
-ffffffc008c70aa0 D __SCK__tp_func_rtc_set_offset
-ffffffc008c70aa8 D __SCK__tp_func_rtc_read_offset
-ffffffc008c70ab0 D __SCK__tp_func_rtc_timer_enqueue
-ffffffc008c70ab8 D __SCK__tp_func_rtc_timer_dequeue
-ffffffc008c70ac0 D __SCK__tp_func_rtc_timer_fired
-ffffffc008c70ac8 d trace_event_fields_rtc_time_alarm_class
-ffffffc008c70b40 d trace_event_type_funcs_rtc_time_alarm_class
-ffffffc008c70b60 d print_fmt_rtc_time_alarm_class
-ffffffc008c70b88 d event_rtc_set_time
-ffffffc008c70c18 d event_rtc_read_time
-ffffffc008c70ca8 d event_rtc_set_alarm
-ffffffc008c70d38 d event_rtc_read_alarm
-ffffffc008c70dc8 d trace_event_fields_rtc_irq_set_freq
-ffffffc008c70e40 d trace_event_type_funcs_rtc_irq_set_freq
-ffffffc008c70e60 d print_fmt_rtc_irq_set_freq
-ffffffc008c70ea0 d event_rtc_irq_set_freq
-ffffffc008c70f30 d trace_event_fields_rtc_irq_set_state
-ffffffc008c70fa8 d trace_event_type_funcs_rtc_irq_set_state
-ffffffc008c70fc8 d print_fmt_rtc_irq_set_state
-ffffffc008c71020 d event_rtc_irq_set_state
-ffffffc008c710b0 d trace_event_fields_rtc_alarm_irq_enable
-ffffffc008c71128 d trace_event_type_funcs_rtc_alarm_irq_enable
-ffffffc008c71148 d print_fmt_rtc_alarm_irq_enable
-ffffffc008c71190 d event_rtc_alarm_irq_enable
-ffffffc008c71220 d trace_event_fields_rtc_offset_class
-ffffffc008c71298 d trace_event_type_funcs_rtc_offset_class
-ffffffc008c712b8 d print_fmt_rtc_offset_class
-ffffffc008c712e8 d event_rtc_set_offset
-ffffffc008c71378 d event_rtc_read_offset
-ffffffc008c71408 d trace_event_fields_rtc_timer_class
-ffffffc008c714a8 d trace_event_type_funcs_rtc_timer_class
-ffffffc008c714c8 d print_fmt_rtc_timer_class
-ffffffc008c71520 d event_rtc_timer_enqueue
-ffffffc008c715b0 d event_rtc_timer_dequeue
-ffffffc008c71640 d event_rtc_timer_fired
-ffffffc008c716d0 d rtc_attr_groups.llvm.5454776614842526913
-ffffffc008c716e0 d rtc_attr_group
-ffffffc008c71708 d rtc_attrs
-ffffffc008c71758 d dev_attr_wakealarm
-ffffffc008c71778 d dev_attr_offset
-ffffffc008c71798 d dev_attr_date
-ffffffc008c717b8 d dev_attr_time
-ffffffc008c717d8 d dev_attr_since_epoch
-ffffffc008c717f8 d dev_attr_max_user_freq
-ffffffc008c71818 d dev_attr_hctosys
-ffffffc008c71838 d pl030_driver
-ffffffc008c718f0 d pl030_ids
-ffffffc008c71910 d pl031_driver
-ffffffc008c719c8 d arm_pl031
-ffffffc008c71a40 d stv1_pl031
-ffffffc008c71ab8 d stv2_pl031
-ffffffc008c71b30 d syscon_reboot_driver
-ffffffc008c71bf8 d power_supply_attr_groups
-ffffffc008c71c08 d power_supply_attrs
-ffffffc008c73628 d power_supply_show_property._rs
-ffffffc008c73650 D __SCK__tp_func_watchdog_start
-ffffffc008c73658 D __SCK__tp_func_watchdog_ping
-ffffffc008c73660 D __SCK__tp_func_watchdog_stop
-ffffffc008c73668 D __SCK__tp_func_watchdog_set_timeout
-ffffffc008c73670 d trace_event_fields_watchdog_template
-ffffffc008c736e8 d trace_event_type_funcs_watchdog_template
-ffffffc008c73708 d print_fmt_watchdog_template
-ffffffc008c73730 d event_watchdog_start
-ffffffc008c737c0 d event_watchdog_ping
-ffffffc008c73850 d event_watchdog_stop
-ffffffc008c738e0 d trace_event_fields_watchdog_set_timeout
-ffffffc008c73980 d trace_event_type_funcs_watchdog_set_timeout
-ffffffc008c739a0 d print_fmt_watchdog_set_timeout
-ffffffc008c739e0 d event_watchdog_set_timeout
-ffffffc008c73a70 d stop_on_reboot
-ffffffc008c73a78 d wtd_deferred_reg_mutex
-ffffffc008c73a98 d watchdog_ida
-ffffffc008c73aa8 d wtd_deferred_reg_list
-ffffffc008c73ab8 d handle_boot_enabled
-ffffffc008c73ac0 d watchdog_class
-ffffffc008c73b38 d watchdog_miscdev
-ffffffc008c73b88 d dm_zone_map_bio_begin._rs
-ffffffc008c73bb0 d dm_zone_map_bio_end._rs
-ffffffc008c73bd8 d dm_zone_map_bio_end._rs.4
-ffffffc008c73c00 d reserved_bio_based_ios
-ffffffc008c73c08 d _minor_idr
-ffffffc008c73c20 d dm_numa_node
-ffffffc008c73c24 d swap_bios
-ffffffc008c73c28 d deferred_remove_work
-ffffffc008c73c48 D dm_global_eventq
-ffffffc008c73c60 d _event_lock
-ffffffc008c73c80 d _lock.llvm.11395087097953572424
-ffffffc008c73cb0 d _targets
-ffffffc008c73cc0 d error_target
-ffffffc008c73da8 d linear_target
-ffffffc008c73e90 d stripe_target
-ffffffc008c73f78 d _dm_misc
-ffffffc008c73fc8 d dm_hash_cells_mutex
-ffffffc008c73fe8 d _hash_lock
-ffffffc008c74018 d kcopyd_subjob_size_kb
-ffffffc008c74020 d dm_ktype
-ffffffc008c74050 d dm_groups
-ffffffc008c74060 d dm_attrs
-ffffffc008c74090 d dm_attr_name
-ffffffc008c740b0 d dm_attr_uuid
-ffffffc008c740d0 d dm_attr_suspended
-ffffffc008c740f0 d dm_attr_use_blk_mq
-ffffffc008c74110 d dm_attr_rq_based_seq_io_merge_deadline
-ffffffc008c74130 d reserved_rq_based_ios.llvm.7697403380358172522
-ffffffc008c74134 d use_blk_mq
-ffffffc008c74138 d dm_mq_nr_hw_queues
-ffffffc008c7413c d dm_mq_queue_depth
-ffffffc008c74140 d dm_bufio_clients_lock
-ffffffc008c74160 d dm_bufio_all_clients
-ffffffc008c74170 d dm_bufio_max_age
-ffffffc008c74178 d dm_bufio_retain_bytes
-ffffffc008c74180 d global_queue
-ffffffc008c74190 d crypt_target
-ffffffc008c74278 d kcryptd_async_done._rs
-ffffffc008c742a0 d crypt_convert_block_aead._rs
-ffffffc008c742c8 d verity_fec_decode._rs
-ffffffc008c742f0 d fec_decode_rsb._rs
-ffffffc008c74318 d fec_read_bufs._rs
-ffffffc008c74340 d fec_decode_bufs._rs
-ffffffc008c74368 d fec_decode_bufs._rs.33
-ffffffc008c74390 d dm_verity_prefetch_cluster
-ffffffc008c74398 d verity_target
-ffffffc008c74480 d verity_handle_err._rs
-ffffffc008c744a8 d verity_map._rs
-ffffffc008c744d0 d verity_map._rs.57
-ffffffc008c744f8 d daemon_timeout_msec
-ffffffc008c74500 d user_target
-ffffffc008c745e8 D edac_op_state
-ffffffc008c745f0 d mem_ctls_mutex
-ffffffc008c74610 d mc_devices
-ffffffc008c74620 D edac_layer_name
-ffffffc008c74648 d device_ctls_mutex
-ffffffc008c74668 d edac_device_list
-ffffffc008c74678 d edac_mc_log_ue.llvm.14253691785021452348
-ffffffc008c7467c d edac_mc_log_ce.llvm.14253691785021452348
-ffffffc008c74680 d edac_mc_poll_msec.llvm.14253691785021452348
-ffffffc008c74688 d mci_attr_groups
-ffffffc008c74698 d mci_attrs
-ffffffc008c746f0 d dev_attr_sdram_scrub_rate
-ffffffc008c74710 d dev_attr_reset_counters
-ffffffc008c74730 d dev_attr_mc_name
-ffffffc008c74750 d dev_attr_size_mb
-ffffffc008c74770 d dev_attr_seconds_since_reset
-ffffffc008c74790 d dev_attr_ue_noinfo_count
-ffffffc008c747b0 d dev_attr_ce_noinfo_count
-ffffffc008c747d0 d dev_attr_ue_count
-ffffffc008c747f0 d dev_attr_ce_count
-ffffffc008c74810 d dev_attr_max_location
-ffffffc008c74830 d dimm_attr_groups
-ffffffc008c74840 d dimm_attrs
-ffffffc008c74888 d dev_attr_dimm_label
-ffffffc008c748a8 d dev_attr_dimm_location
-ffffffc008c748c8 d dev_attr_dimm_mem_type
-ffffffc008c748e8 d dev_attr_dimm_dev_type
-ffffffc008c74908 d dev_attr_dimm_edac_mode
-ffffffc008c74928 d dev_attr_dimm_ce_count
-ffffffc008c74948 d dev_attr_dimm_ue_count
-ffffffc008c74968 d csrow_dev_groups
-ffffffc008c74980 d csrow_attr_groups
-ffffffc008c74990 d csrow_attrs
-ffffffc008c749c8 d dev_attr_legacy_dev_type
-ffffffc008c749e8 d dev_attr_legacy_mem_type
-ffffffc008c74a08 d dev_attr_legacy_edac_mode
-ffffffc008c74a28 d dev_attr_legacy_size_mb
-ffffffc008c74a48 d dev_attr_legacy_ue_count
-ffffffc008c74a68 d dev_attr_legacy_ce_count
-ffffffc008c74a88 d dynamic_csrow_dimm_attr
-ffffffc008c74af0 d dev_attr_legacy_ch0_dimm_label
-ffffffc008c74b18 d dev_attr_legacy_ch1_dimm_label
-ffffffc008c74b40 d dev_attr_legacy_ch2_dimm_label
-ffffffc008c74b68 d dev_attr_legacy_ch3_dimm_label
-ffffffc008c74b90 d dev_attr_legacy_ch4_dimm_label
-ffffffc008c74bb8 d dev_attr_legacy_ch5_dimm_label
-ffffffc008c74be0 d dev_attr_legacy_ch6_dimm_label
-ffffffc008c74c08 d dev_attr_legacy_ch7_dimm_label
-ffffffc008c74c30 d dev_attr_legacy_ch8_dimm_label
-ffffffc008c74c58 d dev_attr_legacy_ch9_dimm_label
-ffffffc008c74c80 d dev_attr_legacy_ch10_dimm_label
-ffffffc008c74ca8 d dev_attr_legacy_ch11_dimm_label
-ffffffc008c74cd0 d dynamic_csrow_ce_count_attr
-ffffffc008c74d38 d dev_attr_legacy_ch0_ce_count
-ffffffc008c74d60 d dev_attr_legacy_ch1_ce_count
-ffffffc008c74d88 d dev_attr_legacy_ch2_ce_count
-ffffffc008c74db0 d dev_attr_legacy_ch3_ce_count
-ffffffc008c74dd8 d dev_attr_legacy_ch4_ce_count
-ffffffc008c74e00 d dev_attr_legacy_ch5_ce_count
-ffffffc008c74e28 d dev_attr_legacy_ch6_ce_count
-ffffffc008c74e50 d dev_attr_legacy_ch7_ce_count
-ffffffc008c74e78 d dev_attr_legacy_ch8_ce_count
-ffffffc008c74ea0 d dev_attr_legacy_ch9_ce_count
-ffffffc008c74ec8 d dev_attr_legacy_ch10_ce_count
-ffffffc008c74ef0 d dev_attr_legacy_ch11_ce_count
-ffffffc008c74f18 d edac_subsys.llvm.4634266918727457142
-ffffffc008c74fd0 d ktype_device_ctrl
-ffffffc008c75000 d device_ctrl_groups
-ffffffc008c75010 d device_ctrl_attrs
-ffffffc008c75038 d attr_ctl_info_panic_on_ue
-ffffffc008c75058 d attr_ctl_info_log_ue
-ffffffc008c75078 d attr_ctl_info_log_ce
-ffffffc008c75098 d attr_ctl_info_poll_msec
-ffffffc008c750b8 d ktype_instance_ctrl
-ffffffc008c750e8 d device_instance_groups
-ffffffc008c750f8 d device_instance_attrs
-ffffffc008c75110 d attr_instance_ce_count
-ffffffc008c75130 d attr_instance_ue_count
-ffffffc008c75150 d ktype_block_ctrl
-ffffffc008c75180 d device_block_groups
-ffffffc008c75190 d device_block_attrs
-ffffffc008c751a8 d attr_block_ce_count
-ffffffc008c751d8 d attr_block_ue_count
-ffffffc008c75208 d edac_pci_ctls_mutex
-ffffffc008c75228 d edac_pci_list
-ffffffc008c75238 d ktype_edac_pci_main_kobj
-ffffffc008c75268 d edac_pci_groups
-ffffffc008c75278 d edac_pci_attrs
-ffffffc008c752b0 d edac_pci_attr_check_pci_errors
-ffffffc008c752d8 d edac_pci_attr_edac_pci_log_pe
-ffffffc008c75300 d edac_pci_attr_edac_pci_log_npe
-ffffffc008c75328 d edac_pci_attr_edac_pci_panic_on_pe
-ffffffc008c75350 d edac_pci_attr_pci_parity_count
-ffffffc008c75378 d edac_pci_attr_pci_nonparity_count
-ffffffc008c753a0 d edac_pci_log_pe
-ffffffc008c753a4 d edac_pci_log_npe
-ffffffc008c753a8 d ktype_pci_instance
-ffffffc008c753d8 d pci_instance_groups
-ffffffc008c753e8 d pci_instance_attrs
-ffffffc008c75400 d attr_instance_pe_count
-ffffffc008c75420 d attr_instance_npe_count
-ffffffc008c75440 d scmi_protocols.llvm.16749271512714693888
-ffffffc008c75458 d scmi_bus_type.llvm.16749271512714693888
-ffffffc008c75510 d scmi_bus_id.llvm.16749271512714693888
-ffffffc008c75520 D __SCK__tp_func_scmi_fc_call
-ffffffc008c75528 D __SCK__tp_func_scmi_xfer_begin
-ffffffc008c75530 D __SCK__tp_func_scmi_xfer_response_wait
-ffffffc008c75538 D __SCK__tp_func_scmi_xfer_end
-ffffffc008c75540 D __SCK__tp_func_scmi_rx_done
-ffffffc008c75548 D __SCK__tp_func_scmi_msg_dump
-ffffffc008c75550 d trace_event_fields_scmi_fc_call
-ffffffc008c75640 d trace_event_type_funcs_scmi_fc_call
-ffffffc008c75660 d print_fmt_scmi_fc_call
-ffffffc008c756d0 d event_scmi_fc_call
-ffffffc008c75760 d trace_event_fields_scmi_xfer_begin
-ffffffc008c75850 d trace_event_type_funcs_scmi_xfer_begin
-ffffffc008c75870 d print_fmt_scmi_xfer_begin
-ffffffc008c758f0 d event_scmi_xfer_begin
-ffffffc008c75980 d trace_event_fields_scmi_xfer_response_wait
-ffffffc008c75a98 d trace_event_type_funcs_scmi_xfer_response_wait
-ffffffc008c75ab8 d print_fmt_scmi_xfer_response_wait
-ffffffc008c75b50 d event_scmi_xfer_response_wait
-ffffffc008c75be0 d trace_event_fields_scmi_xfer_end
-ffffffc008c75cd0 d trace_event_type_funcs_scmi_xfer_end
-ffffffc008c75cf0 d print_fmt_scmi_xfer_end
-ffffffc008c75d70 d event_scmi_xfer_end
-ffffffc008c75e00 d trace_event_fields_scmi_rx_done
-ffffffc008c75ef0 d trace_event_type_funcs_scmi_rx_done
-ffffffc008c75f10 d print_fmt_scmi_rx_done
-ffffffc008c75f98 d event_scmi_rx_done
-ffffffc008c76028 d trace_event_fields_scmi_msg_dump
-ffffffc008c76168 d trace_event_type_funcs_scmi_msg_dump
-ffffffc008c76188 d print_fmt_scmi_msg_dump
-ffffffc008c76230 d event_scmi_msg_dump
-ffffffc008c762c0 d scmi_list_mutex
-ffffffc008c762e0 d scmi_list
-ffffffc008c762f0 d scmi_requested_devices_mtx
-ffffffc008c76310 d scmi_requested_devices
-ffffffc008c76328 d scmi_driver
-ffffffc008c763f0 d scmi_syspower_mtx
-ffffffc008c76410 d versions_groups
-ffffffc008c76420 d versions_attrs
-ffffffc008c76448 d dev_attr_firmware_version
-ffffffc008c76468 d dev_attr_protocol_version
-ffffffc008c76488 d dev_attr_vendor_id
-ffffffc008c764a8 d dev_attr_sub_vendor_id
-ffffffc008c764c8 d voltage_proto_ops.llvm.17251444390686833384
-ffffffc008c764f8 d resident_cpu.llvm.279283135120607909
-ffffffc008c76500 d psci_sys_reset_nb
-ffffffc008c76518 d smccc_version.llvm.8965879884718085293
-ffffffc008c76520 d clocksource_counter
-ffffffc008c765b8 d hisi_161010101_oem_info
-ffffffc008c76608 d vdso_default
-ffffffc008c76610 d arch_timer_cpu_pm_notifier
-ffffffc008c76628 D aliases_lookup
-ffffffc008c76638 D of_mutex
-ffffffc008c76658 D of_node_ktype
-ffffffc008c76688 d of_fdt_unflatten_mutex
-ffffffc008c766a8 d chosen_node_offset
-ffffffc008c766b0 d of_fdt_raw_init.of_fdt_raw_attr
-ffffffc008c766f0 d of_busses
-ffffffc008c767b0 d of_rmem_assigned_device_mutex
-ffffffc008c767d0 d of_rmem_assigned_device_list
-ffffffc008c767e0 d hwspinlock_tree
-ffffffc008c767f0 d hwspinlock_tree_lock
-ffffffc008c76810 d armpmu_common_attrs
-ffffffc008c76820 d dev_attr_cpus
-ffffffc008c76840 D __SCK__tp_func_mc_event
-ffffffc008c76848 D __SCK__tp_func_arm_event
-ffffffc008c76850 D __SCK__tp_func_non_standard_event
-ffffffc008c76858 D __SCK__tp_func_aer_event
-ffffffc008c76860 d trace_event_fields_mc_event
-ffffffc008c76a68 d trace_event_type_funcs_mc_event
-ffffffc008c76a88 d print_fmt_mc_event
-ffffffc008c76c40 d event_mc_event
-ffffffc008c76cd0 d trace_event_fields_arm_event
-ffffffc008c76dc0 d trace_event_type_funcs_arm_event
-ffffffc008c76de0 d print_fmt_arm_event
-ffffffc008c76e88 d event_arm_event
-ffffffc008c76f18 d trace_event_fields_non_standard_event
-ffffffc008c77030 d trace_event_type_funcs_non_standard_event
-ffffffc008c77050 d print_fmt_non_standard_event
-ffffffc008c77110 d event_non_standard_event
-ffffffc008c771a0 d trace_event_fields_aer_event
-ffffffc008c77290 d trace_event_type_funcs_aer_event
-ffffffc008c772b0 d print_fmt_aer_event
-ffffffc008c77780 d event_aer_event
-ffffffc008c77810 d br_ioctl_mutex
-ffffffc008c77830 d vlan_ioctl_mutex
-ffffffc008c77850 d sock_fs_type
-ffffffc008c77898 d sockfs_xattr_handlers
-ffffffc008c778b0 d proto_list_mutex
-ffffffc008c778d0 d proto_list
-ffffffc008c778e0 d net_inuse_ops
-ffffffc008c77920 D net_rwsem
-ffffffc008c77950 d first_device.llvm.3226367713801314403
-ffffffc008c77958 d pernet_list
-ffffffc008c77968 d net_defaults_ops
-ffffffc008c779a8 d max_gen_ptrs
-ffffffc008c779c0 d net_cookie
-ffffffc008c77a40 d net_generic_ids
-ffffffc008c77a50 D net_namespace_list
-ffffffc008c77a60 D pernet_ops_rwsem
-ffffffc008c77a90 d ts_secret_init.___once_key
-ffffffc008c77aa0 d net_secret_init.___once_key
-ffffffc008c77ab0 d __flow_hash_secret_init.___once_key
-ffffffc008c77ac0 d net_core_table
-ffffffc008c78240 d min_sndbuf
-ffffffc008c78244 d min_rcvbuf
-ffffffc008c78248 d max_skb_frags
-ffffffc008c7824c d int_3600
-ffffffc008c78250 d proc_do_dev_weight.dev_weight_mutex
-ffffffc008c78270 d rps_sock_flow_sysctl.sock_flow_mutex
-ffffffc008c78290 d flow_limit_update_mutex
-ffffffc008c782b0 d netns_core_table
-ffffffc008c78370 d devnet_rename_sem
-ffffffc008c783a0 d ifalias_mutex
-ffffffc008c783c0 d netstamp_work
-ffffffc008c783e0 d xps_map_mutex
-ffffffc008c78400 d dev_addr_sem.llvm.2095161062931864242
-ffffffc008c78430 d napi_gen_id
-ffffffc008c78438 D net_todo_list
-ffffffc008c78448 D netdev_unregistering_wq
-ffffffc008c78460 d dst_alloc._rs
-ffffffc008c784c0 d dst_blackhole_ops
-ffffffc008c78580 d unres_qlen_max
-ffffffc008c78588 d rtnl_mutex.llvm.5063184057130584605
-ffffffc008c785a8 d link_ops
-ffffffc008c785b8 d rtnl_af_ops
-ffffffc008c785c8 d rtnetlink_net_ops
-ffffffc008c78608 d rtnetlink_dev_notifier
-ffffffc008c78620 D net_ratelimit_state
-ffffffc008c78648 d lweventlist
-ffffffc008c78658 d linkwatch_work
-ffffffc008c786b0 D nf_conn_btf_access_lock
-ffffffc008c78700 d sock_cookie
-ffffffc008c78780 d sock_diag_table_mutex.llvm.6715881128868966678
-ffffffc008c787a0 d diag_net_ops
-ffffffc008c787e0 d sock_diag_mutex
-ffffffc008c78800 d reuseport_ida
-ffffffc008c78810 d fib_notifier_net_ops
-ffffffc008c78850 d mem_id_lock
-ffffffc008c78870 d mem_id_pool
-ffffffc008c78880 d mem_id_next
-ffffffc008c78888 d flow_indr_block_lock
-ffffffc008c788a8 d flow_block_indr_dev_list
-ffffffc008c788b8 d flow_block_indr_list
-ffffffc008c788c8 d flow_indir_dev_list
-ffffffc008c788d8 d rx_queue_default_groups
-ffffffc008c788e8 d store_rps_map.rps_map_mutex
-ffffffc008c78908 d netdev_queue_default_groups
-ffffffc008c78918 d net_class_groups
-ffffffc008c78928 d dev_attr_netdev_group
-ffffffc008c78948 d dev_attr_dev_id
-ffffffc008c78968 d dev_attr_dev_port
-ffffffc008c78988 d dev_attr_iflink
-ffffffc008c789a8 d dev_attr_ifindex
-ffffffc008c789c8 d dev_attr_name_assign_type
-ffffffc008c789e8 d dev_attr_addr_assign_type
-ffffffc008c78a08 d dev_attr_addr_len
-ffffffc008c78a28 d dev_attr_link_mode
-ffffffc008c78a48 d dev_attr_address
-ffffffc008c78a68 d dev_attr_broadcast
-ffffffc008c78a88 d dev_attr_speed
-ffffffc008c78aa8 d dev_attr_duplex
-ffffffc008c78ac8 d dev_attr_dormant
-ffffffc008c78ae8 d dev_attr_testing
-ffffffc008c78b08 d dev_attr_operstate
-ffffffc008c78b28 d dev_attr_carrier_changes
-ffffffc008c78b48 d dev_attr_ifalias
-ffffffc008c78b68 d dev_attr_carrier
-ffffffc008c78b88 d dev_attr_mtu
-ffffffc008c78ba8 d dev_attr_tx_queue_len
-ffffffc008c78bc8 d dev_attr_gro_flush_timeout
-ffffffc008c78be8 d dev_attr_napi_defer_hard_irqs
-ffffffc008c78c08 d dev_attr_phys_port_id
-ffffffc008c78c28 d dev_attr_phys_port_name
-ffffffc008c78c48 d dev_attr_phys_switch_id
-ffffffc008c78c68 d dev_attr_proto_down
-ffffffc008c78c88 d dev_attr_carrier_up_count
-ffffffc008c78ca8 d dev_attr_carrier_down_count
-ffffffc008c78cc8 d dev_attr_threaded
-ffffffc008c78ce8 d dev_attr_rx_packets
-ffffffc008c78d08 d dev_attr_tx_packets
-ffffffc008c78d28 d dev_attr_rx_bytes
-ffffffc008c78d48 d dev_attr_tx_bytes
-ffffffc008c78d68 d dev_attr_rx_errors
-ffffffc008c78d88 d dev_attr_tx_errors
-ffffffc008c78da8 d dev_attr_rx_dropped
-ffffffc008c78dc8 d dev_attr_tx_dropped
-ffffffc008c78de8 d dev_attr_multicast
-ffffffc008c78e08 d dev_attr_collisions
-ffffffc008c78e28 d dev_attr_rx_length_errors
-ffffffc008c78e48 d dev_attr_rx_over_errors
-ffffffc008c78e68 d dev_attr_rx_crc_errors
-ffffffc008c78e88 d dev_attr_rx_frame_errors
-ffffffc008c78ea8 d dev_attr_rx_fifo_errors
-ffffffc008c78ec8 d dev_attr_rx_missed_errors
-ffffffc008c78ee8 d dev_attr_tx_aborted_errors
-ffffffc008c78f08 d dev_attr_tx_carrier_errors
-ffffffc008c78f28 d dev_attr_tx_fifo_errors
-ffffffc008c78f48 d dev_attr_tx_heartbeat_errors
-ffffffc008c78f68 d dev_attr_tx_window_errors
-ffffffc008c78f88 d dev_attr_rx_compressed
-ffffffc008c78fa8 d dev_attr_tx_compressed
-ffffffc008c78fc8 d dev_attr_rx_nohandler
-ffffffc008c78fe8 d fib_rules_net_ops
-ffffffc008c79028 d fib_rules_notifier
-ffffffc008c79040 D __SCK__tp_func_kfree_skb
-ffffffc008c79048 D __SCK__tp_func_consume_skb
-ffffffc008c79050 D __SCK__tp_func_skb_copy_datagram_iovec
-ffffffc008c79058 d trace_event_fields_kfree_skb
-ffffffc008c79120 d trace_event_type_funcs_kfree_skb
-ffffffc008c79140 d print_fmt_kfree_skb
-ffffffc008c79e60 d event_kfree_skb
-ffffffc008c79ef0 d trace_event_fields_consume_skb
-ffffffc008c79f40 d trace_event_type_funcs_consume_skb
-ffffffc008c79f60 d print_fmt_consume_skb
-ffffffc008c79f80 d event_consume_skb
-ffffffc008c7a010 d trace_event_fields_skb_copy_datagram_iovec
-ffffffc008c7a088 d trace_event_type_funcs_skb_copy_datagram_iovec
-ffffffc008c7a0a8 d print_fmt_skb_copy_datagram_iovec
-ffffffc008c7a0d8 d event_skb_copy_datagram_iovec
-ffffffc008c7a168 D __SCK__tp_func_net_dev_start_xmit
-ffffffc008c7a170 D __SCK__tp_func_net_dev_xmit
-ffffffc008c7a178 D __SCK__tp_func_net_dev_xmit_timeout
-ffffffc008c7a180 D __SCK__tp_func_net_dev_queue
-ffffffc008c7a188 D __SCK__tp_func_netif_receive_skb
-ffffffc008c7a190 D __SCK__tp_func_netif_rx
-ffffffc008c7a198 D __SCK__tp_func_napi_gro_frags_entry
-ffffffc008c7a1a0 D __SCK__tp_func_napi_gro_receive_entry
-ffffffc008c7a1a8 D __SCK__tp_func_netif_receive_skb_entry
-ffffffc008c7a1b0 D __SCK__tp_func_netif_receive_skb_list_entry
-ffffffc008c7a1b8 D __SCK__tp_func_netif_rx_entry
-ffffffc008c7a1c0 D __SCK__tp_func_napi_gro_frags_exit
-ffffffc008c7a1c8 D __SCK__tp_func_napi_gro_receive_exit
-ffffffc008c7a1d0 D __SCK__tp_func_netif_receive_skb_exit
-ffffffc008c7a1d8 D __SCK__tp_func_netif_rx_exit
-ffffffc008c7a1e0 D __SCK__tp_func_netif_receive_skb_list_exit
-ffffffc008c7a1e8 d trace_event_fields_net_dev_start_xmit
-ffffffc008c7a4b8 d trace_event_type_funcs_net_dev_start_xmit
-ffffffc008c7a4d8 d print_fmt_net_dev_start_xmit
-ffffffc008c7a6f8 d event_net_dev_start_xmit
-ffffffc008c7a788 d trace_event_fields_net_dev_xmit
-ffffffc008c7a850 d trace_event_type_funcs_net_dev_xmit
-ffffffc008c7a870 d print_fmt_net_dev_xmit
-ffffffc008c7a8c8 d event_net_dev_xmit
-ffffffc008c7a958 d trace_event_fields_net_dev_xmit_timeout
-ffffffc008c7a9f8 d trace_event_type_funcs_net_dev_xmit_timeout
-ffffffc008c7aa18 d print_fmt_net_dev_xmit_timeout
-ffffffc008c7aa70 d event_net_dev_xmit_timeout
-ffffffc008c7ab00 d trace_event_fields_net_dev_template
-ffffffc008c7aba0 d trace_event_type_funcs_net_dev_template
-ffffffc008c7abc0 d print_fmt_net_dev_template
-ffffffc008c7ac08 d event_net_dev_queue
-ffffffc008c7ac98 d event_netif_receive_skb
-ffffffc008c7ad28 d event_netif_rx
-ffffffc008c7adb8 d trace_event_fields_net_dev_rx_verbose_template
-ffffffc008c7b0d8 d trace_event_type_funcs_net_dev_rx_verbose_template
-ffffffc008c7b0f8 d print_fmt_net_dev_rx_verbose_template
-ffffffc008c7b320 d event_napi_gro_frags_entry
-ffffffc008c7b3b0 d event_napi_gro_receive_entry
-ffffffc008c7b440 d event_netif_receive_skb_entry
-ffffffc008c7b4d0 d event_netif_receive_skb_list_entry
-ffffffc008c7b560 d event_netif_rx_entry
-ffffffc008c7b5f0 d trace_event_fields_net_dev_rx_exit_template
-ffffffc008c7b640 d trace_event_type_funcs_net_dev_rx_exit_template
-ffffffc008c7b660 d print_fmt_net_dev_rx_exit_template
-ffffffc008c7b678 d event_napi_gro_frags_exit
-ffffffc008c7b708 d event_napi_gro_receive_exit
-ffffffc008c7b798 d event_netif_receive_skb_exit
-ffffffc008c7b828 d event_netif_rx_exit
-ffffffc008c7b8b8 d event_netif_receive_skb_list_exit
-ffffffc008c7b948 D __SCK__tp_func_napi_poll
-ffffffc008c7b950 d trace_event_fields_napi_poll
-ffffffc008c7ba18 d trace_event_type_funcs_napi_poll
-ffffffc008c7ba38 d print_fmt_napi_poll
-ffffffc008c7bab0 d event_napi_poll
-ffffffc008c7bb40 D __SCK__tp_func_sock_rcvqueue_full
-ffffffc008c7bb48 D __SCK__tp_func_sock_exceed_buf_limit
-ffffffc008c7bb50 D __SCK__tp_func_inet_sock_set_state
-ffffffc008c7bb58 D __SCK__tp_func_inet_sk_error_report
-ffffffc008c7bb60 d trace_event_fields_sock_rcvqueue_full
-ffffffc008c7bc00 d trace_event_type_funcs_sock_rcvqueue_full
-ffffffc008c7bc20 d print_fmt_sock_rcvqueue_full
-ffffffc008c7bc80 d event_sock_rcvqueue_full
-ffffffc008c7bd10 d trace_event_fields_sock_exceed_buf_limit
-ffffffc008c7bea0 d trace_event_type_funcs_sock_exceed_buf_limit
-ffffffc008c7bec0 d print_fmt_sock_exceed_buf_limit
-ffffffc008c7c040 d event_sock_exceed_buf_limit
-ffffffc008c7c0d0 d trace_event_fields_inet_sock_set_state
-ffffffc008c7c2b0 d trace_event_type_funcs_inet_sock_set_state
-ffffffc008c7c2d0 d print_fmt_inet_sock_set_state
-ffffffc008c7c810 d event_inet_sock_set_state
-ffffffc008c7c8a0 d trace_event_fields_inet_sk_error_report
-ffffffc008c7ca30 d trace_event_type_funcs_inet_sk_error_report
-ffffffc008c7ca50 d print_fmt_inet_sk_error_report
-ffffffc008c7cc00 d event_inet_sk_error_report
-ffffffc008c7cc90 D __SCK__tp_func_udp_fail_queue_rcv_skb
-ffffffc008c7cc98 d trace_event_fields_udp_fail_queue_rcv_skb
-ffffffc008c7cd10 d trace_event_type_funcs_udp_fail_queue_rcv_skb
-ffffffc008c7cd30 d print_fmt_udp_fail_queue_rcv_skb
-ffffffc008c7cd58 d event_udp_fail_queue_rcv_skb
-ffffffc008c7cde8 D __SCK__tp_func_tcp_retransmit_skb
-ffffffc008c7cdf0 D __SCK__tp_func_tcp_send_reset
-ffffffc008c7cdf8 D __SCK__tp_func_tcp_receive_reset
-ffffffc008c7ce00 D __SCK__tp_func_tcp_destroy_sock
-ffffffc008c7ce08 D __SCK__tp_func_tcp_rcv_space_adjust
-ffffffc008c7ce10 D __SCK__tp_func_tcp_retransmit_synack
-ffffffc008c7ce18 D __SCK__tp_func_tcp_probe
-ffffffc008c7ce20 D __SCK__tp_func_tcp_bad_csum
-ffffffc008c7ce28 D __SCK__tp_func_tcp_cong_state_set
-ffffffc008c7ce30 d trace_event_fields_tcp_event_sk_skb
-ffffffc008c7cfe8 d trace_event_type_funcs_tcp_event_sk_skb
-ffffffc008c7d008 d print_fmt_tcp_event_sk_skb
-ffffffc008c7d2b8 d event_tcp_retransmit_skb
-ffffffc008c7d348 d event_tcp_send_reset
-ffffffc008c7d3d8 d trace_event_fields_tcp_event_sk
-ffffffc008c7d568 d trace_event_type_funcs_tcp_event_sk
-ffffffc008c7d588 d print_fmt_tcp_event_sk
-ffffffc008c7d690 d event_tcp_receive_reset
-ffffffc008c7d720 d event_tcp_destroy_sock
-ffffffc008c7d7b0 d event_tcp_rcv_space_adjust
-ffffffc008c7d840 d trace_event_fields_tcp_retransmit_synack
-ffffffc008c7d9d0 d trace_event_type_funcs_tcp_retransmit_synack
-ffffffc008c7d9f0 d print_fmt_tcp_retransmit_synack
-ffffffc008c7dad8 d event_tcp_retransmit_synack
-ffffffc008c7db68 d trace_event_fields_tcp_probe
-ffffffc008c7dde8 d trace_event_type_funcs_tcp_probe
-ffffffc008c7de08 d print_fmt_tcp_probe
-ffffffc008c7df90 d event_tcp_probe
-ffffffc008c7e020 d trace_event_fields_tcp_event_skb
-ffffffc008c7e0c0 d trace_event_type_funcs_tcp_event_skb
-ffffffc008c7e0e0 d print_fmt_tcp_event_skb
-ffffffc008c7e118 d event_tcp_bad_csum
-ffffffc008c7e1a8 d trace_event_fields_tcp_cong_state_set
-ffffffc008c7e310 d trace_event_type_funcs_tcp_cong_state_set
-ffffffc008c7e330 d print_fmt_tcp_cong_state_set
-ffffffc008c7e3e8 d event_tcp_cong_state_set
-ffffffc008c7e478 D __SCK__tp_func_fib_table_lookup
-ffffffc008c7e480 d trace_event_fields_fib_table_lookup
-ffffffc008c7e700 d trace_event_type_funcs_fib_table_lookup
-ffffffc008c7e720 d print_fmt_fib_table_lookup
-ffffffc008c7e838 d event_fib_table_lookup
-ffffffc008c7e8c8 D __SCK__tp_func_qdisc_dequeue
-ffffffc008c7e8d0 D __SCK__tp_func_qdisc_enqueue
-ffffffc008c7e8d8 D __SCK__tp_func_qdisc_reset
-ffffffc008c7e8e0 D __SCK__tp_func_qdisc_destroy
-ffffffc008c7e8e8 D __SCK__tp_func_qdisc_create
-ffffffc008c7e8f0 d trace_event_fields_qdisc_dequeue
-ffffffc008c7ea58 d trace_event_type_funcs_qdisc_dequeue
-ffffffc008c7ea78 d print_fmt_qdisc_dequeue
-ffffffc008c7eb28 d event_qdisc_dequeue
-ffffffc008c7ebb8 d trace_event_fields_qdisc_enqueue
-ffffffc008c7ecd0 d trace_event_type_funcs_qdisc_enqueue
-ffffffc008c7ecf0 d print_fmt_qdisc_enqueue
-ffffffc008c7ed68 d event_qdisc_enqueue
-ffffffc008c7edf8 d trace_event_fields_qdisc_reset
-ffffffc008c7eec0 d trace_event_type_funcs_qdisc_reset
-ffffffc008c7eee0 d print_fmt_qdisc_reset
-ffffffc008c7efb8 d event_qdisc_reset
-ffffffc008c7f048 d trace_event_fields_qdisc_destroy
-ffffffc008c7f110 d trace_event_type_funcs_qdisc_destroy
-ffffffc008c7f130 d print_fmt_qdisc_destroy
-ffffffc008c7f208 d event_qdisc_destroy
-ffffffc008c7f298 d trace_event_fields_qdisc_create
-ffffffc008c7f338 d trace_event_type_funcs_qdisc_create
-ffffffc008c7f358 d print_fmt_qdisc_create
-ffffffc008c7f3e0 d event_qdisc_create
-ffffffc008c7f470 D __SCK__tp_func_br_fdb_add
-ffffffc008c7f478 D __SCK__tp_func_br_fdb_external_learn_add
-ffffffc008c7f480 D __SCK__tp_func_fdb_delete
-ffffffc008c7f488 D __SCK__tp_func_br_fdb_update
-ffffffc008c7f490 d trace_event_fields_br_fdb_add
-ffffffc008c7f580 d trace_event_type_funcs_br_fdb_add
-ffffffc008c7f5a0 d print_fmt_br_fdb_add
-ffffffc008c7f680 d event_br_fdb_add
-ffffffc008c7f710 d trace_event_fields_br_fdb_external_learn_add
-ffffffc008c7f7d8 d trace_event_type_funcs_br_fdb_external_learn_add
-ffffffc008c7f7f8 d print_fmt_br_fdb_external_learn_add
-ffffffc008c7f8b8 d event_br_fdb_external_learn_add
-ffffffc008c7f948 d trace_event_fields_fdb_delete
-ffffffc008c7fa10 d trace_event_type_funcs_fdb_delete
-ffffffc008c7fa30 d print_fmt_fdb_delete
-ffffffc008c7faf0 d event_fdb_delete
-ffffffc008c7fb80 d trace_event_fields_br_fdb_update
-ffffffc008c7fc70 d trace_event_type_funcs_br_fdb_update
-ffffffc008c7fc90 d print_fmt_br_fdb_update
-ffffffc008c7fd70 d event_br_fdb_update
-ffffffc008c7fe00 D __SCK__tp_func_neigh_create
-ffffffc008c7fe08 D __SCK__tp_func_neigh_update
-ffffffc008c7fe10 D __SCK__tp_func_neigh_update_done
-ffffffc008c7fe18 D __SCK__tp_func_neigh_timer_handler
-ffffffc008c7fe20 D __SCK__tp_func_neigh_event_send_done
-ffffffc008c7fe28 D __SCK__tp_func_neigh_event_send_dead
-ffffffc008c7fe30 D __SCK__tp_func_neigh_cleanup_and_release
-ffffffc008c7fe38 d trace_event_fields_neigh_create
-ffffffc008c7ff78 d trace_event_type_funcs_neigh_create
-ffffffc008c7ff98 d print_fmt_neigh_create
-ffffffc008c80068 d event_neigh_create
-ffffffc008c800f8 d trace_event_fields_neigh_update
-ffffffc008c803f0 d trace_event_type_funcs_neigh_update
-ffffffc008c80410 d print_fmt_neigh_update
-ffffffc008c80788 d event_neigh_update
-ffffffc008c80818 d trace_event_fields_neigh__update
-ffffffc008c80a98 d trace_event_type_funcs_neigh__update
-ffffffc008c80ab8 d print_fmt_neigh__update
-ffffffc008c80cf8 d event_neigh_update_done
-ffffffc008c80d88 d event_neigh_timer_handler
-ffffffc008c80e18 d event_neigh_event_send_done
-ffffffc008c80ea8 d event_neigh_event_send_dead
-ffffffc008c80f38 d event_neigh_cleanup_and_release
-ffffffc008c80fc8 D default_qdisc_ops
-ffffffc008c81000 d noop_netdev_queue
-ffffffc008c81140 D noop_qdisc
-ffffffc008c812c0 d sch_frag_dst_ops
-ffffffc008c81380 D __SCK__tp_func_netlink_extack
-ffffffc008c81388 d trace_event_fields_netlink_extack
-ffffffc008c813d8 d trace_event_type_funcs_netlink_extack
-ffffffc008c813f8 d print_fmt_netlink_extack
-ffffffc008c81418 d event_netlink_extack
-ffffffc008c814a8 d nl_table_wait.llvm.17422879240037786481
-ffffffc008c814c0 d netlink_chain
-ffffffc008c814f8 d netlink_proto
-ffffffc008c816a8 d netlink_tap_net_ops
-ffffffc008c816e8 d genl_mutex
-ffffffc008c81708 d genl_fam_idr
-ffffffc008c81720 d cb_lock
-ffffffc008c81750 d genl_policy_reject_all
-ffffffc008c81770 d mc_groups_longs
-ffffffc008c81778 d mc_groups
-ffffffc008c81780 d mc_group_start
-ffffffc008c81788 d genl_pernet_ops
-ffffffc008c817c8 D genl_sk_destructing_waitq
-ffffffc008c817e0 d netdev_rss_key_fill.___once_key
-ffffffc008c817f0 d ethnl_netdev_notifier
-ffffffc008c81840 d ipv4_dst_ops
-ffffffc008c81900 d ipv4_dst_blackhole_ops
-ffffffc008c819c0 d ipv4_route_table.llvm.16916475078941735260
-ffffffc008c81d00 d fnhe_hashfun.___once_key
-ffffffc008c81d10 d ipv4_route_netns_table
-ffffffc008c81e50 d ip4_frags_ops
-ffffffc008c81e90 d ip4_frags_ctl_table
-ffffffc008c81f10 d ip4_frags_ns_ctl_table
-ffffffc008c82050 d __inet_hash_connect.___once_key
-ffffffc008c82060 d inet_ehashfn.___once_key
-ffffffc008c82070 d tcp4_net_ops.llvm.11195233548388785470
-ffffffc008c820b0 d tcp_timewait_sock_ops
-ffffffc008c820d8 D tcp_prot
-ffffffc008c82288 d tcp4_seq_afinfo
-ffffffc008c82290 d tcp_cong_list
-ffffffc008c822c0 D tcp_reno
-ffffffc008c82380 d tcp_ulp_list
-ffffffc008c82390 D raw_prot
-ffffffc008c82540 D udp_prot
-ffffffc008c826f0 d udp4_net_ops.llvm.11785315111903250415
-ffffffc008c82730 d udp_flow_hashrnd.___once_key
-ffffffc008c82740 d udp_ehashfn.___once_key
-ffffffc008c82750 d udp4_seq_afinfo
-ffffffc008c82760 D udplite_prot
-ffffffc008c82910 d udplite4_protosw
-ffffffc008c82940 d udplite4_net_ops
-ffffffc008c82980 d udplite4_seq_afinfo
-ffffffc008c82990 d arp_net_ops
-ffffffc008c829d0 d arp_netdev_notifier
-ffffffc008c829e8 D arp_tbl
-ffffffc008c82c38 d inetaddr_chain.llvm.1950057434247162064
-ffffffc008c82c70 d inetaddr_validator_chain
-ffffffc008c82ca8 d ip_netdev_notifier
-ffffffc008c82cc0 d check_lifetime_work
-ffffffc008c82d18 d ipv4_devconf
-ffffffc008c82db0 d ipv4_devconf_dflt
-ffffffc008c82e48 d ctl_forward_entry
-ffffffc008c82ec8 d devinet_sysctl
-ffffffc008c83750 d inetsw_array
-ffffffc008c83810 d igmp_net_ops
-ffffffc008c83850 d igmp_notifier
-ffffffc008c83868 d fib_net_ops
-ffffffc008c838a8 d fib_netdev_notifier
-ffffffc008c838c0 d fib_inetaddr_notifier
-ffffffc008c838d8 D sysctl_fib_sync_mem
-ffffffc008c838dc D sysctl_fib_sync_mem_min
-ffffffc008c838e0 D sysctl_fib_sync_mem_max
-ffffffc008c838e8 d fqdir_free_work
-ffffffc008c83908 D ping_prot
-ffffffc008c83ab8 d ping_v4_net_ops.llvm.17782715431919925296
-ffffffc008c83af8 d nexthop_net_ops
-ffffffc008c83b38 d nh_netdev_notifier
-ffffffc008c83b50 d nh_res_bucket_migrate._rs
-ffffffc008c83b78 d ipv4_table
-ffffffc008c83e78 d ipv4_net_table
-ffffffc008c85778 d ip_ttl_min
-ffffffc008c8577c d ip_ttl_max
-ffffffc008c85780 d tcp_min_snd_mss_min
-ffffffc008c85784 d tcp_min_snd_mss_max
-ffffffc008c85788 d u32_max_div_HZ
-ffffffc008c8578c d tcp_syn_retries_min
-ffffffc008c85790 d tcp_syn_retries_max
-ffffffc008c85794 d tcp_retr1_max
-ffffffc008c85798 d tcp_app_win_max
-ffffffc008c8579c d tcp_adv_win_scale_min
-ffffffc008c857a0 d tcp_adv_win_scale_max
-ffffffc008c857a4 d one_day_secs
-ffffffc008c857a8 d tcp_child_ehash_entries_max
-ffffffc008c857ac d ip_ping_group_range_max
-ffffffc008c857b4 d ip_local_port_range_min
-ffffffc008c857bc d ip_local_port_range_max
-ffffffc008c857c8 d set_local_port_range._rs
-ffffffc008c857f0 d ip_privileged_port_max
-ffffffc008c857f4 d log_ecn_error
-ffffffc008c857f8 d log_ecn_error
-ffffffc008c857fc d log_ecn_error
-ffffffc008c85800 d log_ecn_error
-ffffffc008c85804 d log_ecn_error
-ffffffc008c85808 d ipip_net_ops
-ffffffc008c85848 d ipgre_tap_net_ops
-ffffffc008c85888 d ipgre_net_ops
-ffffffc008c858c8 d erspan_net_ops
-ffffffc008c85908 d vti_net_ops
-ffffffc008c85948 d esp4_protocol
-ffffffc008c85978 d tunnel4_mutex
-ffffffc008c85998 d inet_diag_table_mutex
-ffffffc008c859c0 d xfrm4_dst_ops_template
-ffffffc008c85a80 d xfrm4_policy_table
-ffffffc008c85b00 d xfrm4_state_afinfo.llvm.15638703257664986085
-ffffffc008c85b60 d xfrm4_protocol_mutex
-ffffffc008c85b80 d hash_resize_mutex
-ffffffc008c85ba0 d xfrm_state_gc_work.llvm.8745382501215250633
-ffffffc008c85bc0 d xfrm_km_list
-ffffffc008c85bd0 d xfrm_table
-ffffffc008c85d10 d xfrm_dev_notifier.llvm.13555639508757163504
-ffffffc008c85d28 d aead_list
-ffffffc008c85ea8 d aalg_list.llvm.534249979016641277
-ffffffc008c86088 d ealg_list.llvm.534249979016641277
-ffffffc008c86298 d calg_list
-ffffffc008c86328 d netlink_mgr
-ffffffc008c86378 d xfrm_user_net_ops
-ffffffc008c863b8 d ipcomp_resource_mutex
-ffffffc008c863d8 d ipcomp_tfms_list
-ffffffc008c863e8 d xfrmi_net_ops
-ffffffc008c86428 D unix_dgram_proto
-ffffffc008c865d8 D unix_stream_proto
-ffffffc008c86788 d unix_net_ops
-ffffffc008c867c8 d unix_gc_wait
-ffffffc008c867e0 d gc_candidates
-ffffffc008c867f0 d unix_table
-ffffffc008c86870 D gc_inflight_list
-ffffffc008c86880 d inet6_net_ops
-ffffffc008c868c0 D ipv6_defaults
-ffffffc008c868c8 d if6_proc_net_ops.llvm.8811642673737084415
-ffffffc008c86908 d addrconf_ops
-ffffffc008c86948 d ipv6_dev_notf
-ffffffc008c86960 d minus_one
-ffffffc008c86964 d ioam6_if_id_max
-ffffffc008c86968 d ipv6_addr_label_ops.llvm.2581082965378988205
-ffffffc008c869a8 d .compoundliteral.3
-ffffffc008c869b8 d .compoundliteral.4
-ffffffc008c869c8 d .compoundliteral.5
-ffffffc008c869d8 d .compoundliteral.6
-ffffffc008c869e8 d .compoundliteral.8
-ffffffc008c869f8 D __SCK__tp_func_fib6_table_lookup
-ffffffc008c86a00 d trace_event_fields_fib6_table_lookup
-ffffffc008c86c80 d trace_event_type_funcs_fib6_table_lookup
-ffffffc008c86ca0 d print_fmt_fib6_table_lookup
-ffffffc008c86da8 d event_fib6_table_lookup
-ffffffc008c86e40 d ip6_dst_blackhole_ops
-ffffffc008c86f00 d ipv6_route_table_template
-ffffffc008c87200 d ip6_dst_ops_template
-ffffffc008c872c0 d ipv6_inetpeer_ops
-ffffffc008c87300 d ip6_route_net_ops
-ffffffc008c87340 d ip6_route_net_late_ops
-ffffffc008c87380 d ip6_route_dev_notifier
-ffffffc008c87398 d rt6_exception_hash.___once_key
-ffffffc008c873a8 d fib6_net_ops
-ffffffc008c873e8 d ndisc_net_ops.llvm.11385253128615249679
-ffffffc008c87428 d ndisc_netdev_notifier.llvm.11385253128615249679
-ffffffc008c87440 D nd_tbl
-ffffffc008c87690 d udp6_seq_afinfo
-ffffffc008c876a0 d udpv6_protosw.llvm.9913964578181900507
-ffffffc008c876d0 d udp6_ehashfn.___once_key
-ffffffc008c876e0 d udp6_ehashfn.___once_key.5
-ffffffc008c876f0 D udpv6_prot
-ffffffc008c878a0 D udplitev6_prot
-ffffffc008c87a50 d udplite6_protosw.llvm.14437120263099764322
-ffffffc008c87a80 d udplite6_net_ops.llvm.14437120263099764322
-ffffffc008c87ac0 d udplite6_seq_afinfo
-ffffffc008c87ad0 D rawv6_prot
-ffffffc008c87c80 d raw6_net_ops.llvm.15578382269198925380
-ffffffc008c87cc0 d rawv6_protosw.llvm.15578382269198925380
-ffffffc008c87cf0 d ipv6_icmp_table_template
-ffffffc008c87e70 d igmp6_net_ops.llvm.7779032959901987520
-ffffffc008c87eb0 d igmp6_netdev_notifier.llvm.7779032959901987520
-ffffffc008c87ec8 d ip6_frags_ops
-ffffffc008c87f08 d ip6_frags_ctl_table
-ffffffc008c87f88 d ip6_frags_ns_ctl_table
-ffffffc008c88088 d tcp6_seq_afinfo
-ffffffc008c88090 d tcp6_timewait_sock_ops
-ffffffc008c880b8 d tcpv6_protosw.llvm.15915789915913877141
-ffffffc008c880e8 d tcpv6_net_ops.llvm.15915789915913877141
-ffffffc008c88128 D tcpv6_prot
-ffffffc008c882d8 D pingv6_prot
-ffffffc008c88488 d ping_v6_net_ops
-ffffffc008c884c8 d pingv6_protosw
-ffffffc008c884f8 D ipv6_flowlabel_exclusive
-ffffffc008c88568 d ip6_flowlabel_net_ops.llvm.2681943469143796893
-ffffffc008c885a8 d ip6_fl_gc_timer.llvm.2681943469143796893
-ffffffc008c885d0 d ip6_segments_ops
-ffffffc008c88610 d ioam6_net_ops
-ffffffc008c88650 d ipv6_rotable
-ffffffc008c88710 d ipv6_sysctl_net_ops
-ffffffc008c88750 d ipv6_table_template
-ffffffc008c88c90 d auto_flowlabels_max
-ffffffc008c88c94 d flowlabel_reflect_max
-ffffffc008c88c98 d rt6_multipath_hash_fields_all_mask
-ffffffc008c88c9c d ioam6_id_max
-ffffffc008c88ca0 d ioam6_id_wide_max
-ffffffc008c88ca8 d xfrm6_net_ops.llvm.18395030132298963905
-ffffffc008c88d00 d xfrm6_dst_ops_template.llvm.18395030132298963905
-ffffffc008c88dc0 d xfrm6_policy_table
-ffffffc008c88e40 d xfrm6_state_afinfo.llvm.9214771351646430586
-ffffffc008c88ea0 d xfrm6_protocol_mutex
-ffffffc008c88ec0 d fib6_rules_net_ops.llvm.1032837996139634604
-ffffffc008c88f00 d ipv6_proc_ops.llvm.7734122870991869746
-ffffffc008c88f40 d esp6_protocol
-ffffffc008c88f70 d ipcomp6_protocol
-ffffffc008c88fa0 d xfrm6_tunnel_net_ops
-ffffffc008c88fe0 d tunnel6_mutex
-ffffffc008c89000 d vti6_net_ops
-ffffffc008c89040 d sit_net_ops
-ffffffc008c89080 d ip6_tnl_xmit_ctl._rs
-ffffffc008c890a8 d ip6_tnl_xmit_ctl._rs.1
-ffffffc008c890d0 d ip6_tnl_net_ops
-ffffffc008c89110 d ip6gre_net_ops
-ffffffc008c89150 d inet6addr_validator_chain.llvm.12701357735756845290
-ffffffc008c89188 d inet6_ehashfn.___once_key
-ffffffc008c89198 d inet6_ehashfn.___once_key.2
-ffffffc008c891a8 D fanout_mutex
-ffffffc008c891c8 d packet_proto
-ffffffc008c89378 d packet_netdev_notifier
-ffffffc008c89390 d packet_net_ops
-ffffffc008c893d0 d fanout_list
-ffffffc008c893e0 d pfkeyv2_mgr
-ffffffc008c89430 d pfkey_net_ops
-ffffffc008c89470 d key_proto
-ffffffc008c89620 d gen_reqid.reqid
-ffffffc008c89628 d pfkey_mutex
-ffffffc008c89648 d sysctl_pernet_ops
-ffffffc008c89688 d net_sysctl_root
-ffffffc008c89700 d vsock_device
-ffffffc008c89750 d vsock_proto
-ffffffc008c89900 d vsock_register_mutex
-ffffffc008c89920 d virtio_vsock_driver
-ffffffc008c89a10 d virtio_transport
-ffffffc008c89b30 d id_table
-ffffffc008c89b40 d the_virtio_vsock_mutex
-ffffffc008c89b60 D __SCK__tp_func_virtio_transport_alloc_pkt
-ffffffc008c89b68 D __SCK__tp_func_virtio_transport_recv_pkt
-ffffffc008c89b70 d trace_event_fields_virtio_transport_alloc_pkt
-ffffffc008c89cd8 d trace_event_type_funcs_virtio_transport_alloc_pkt
-ffffffc008c89cf8 d print_fmt_virtio_transport_alloc_pkt
-ffffffc008c89f58 d event_virtio_transport_alloc_pkt
-ffffffc008c89fe8 d trace_event_fields_virtio_transport_recv_pkt
-ffffffc008c8a1a0 d trace_event_type_funcs_virtio_transport_recv_pkt
-ffffffc008c8a1c0 d print_fmt_virtio_transport_recv_pkt
-ffffffc008c8a450 d event_virtio_transport_recv_pkt
-ffffffc008c8a4e0 D virtio_transport_max_vsock_pkt_buf_size
-ffffffc008c8a4e8 d loopback_transport
-ffffffc008c8a608 d klist_remove_waiters
-ffffffc008c8a618 d dynamic_kobj_ktype
-ffffffc008c8a648 d kset_ktype
-ffffffc008c8a678 d uevent_sock_mutex
-ffffffc008c8a698 d uevent_sock_list
-ffffffc008c8a6a8 d uevent_net_ops
-ffffffc008c8a6e8 d io_range_mutex
-ffffffc008c8a708 d io_range_list
-ffffffc008c8a718 D __SCK__tp_func_ma_op
-ffffffc008c8a720 D __SCK__tp_func_ma_read
-ffffffc008c8a728 D __SCK__tp_func_ma_write
-ffffffc008c8a730 d trace_event_fields_ma_op
-ffffffc008c8a848 d trace_event_type_funcs_ma_op
-ffffffc008c8a868 d print_fmt_ma_op
-ffffffc008c8a918 d event_ma_op
-ffffffc008c8a9a8 d trace_event_fields_ma_read
-ffffffc008c8aac0 d trace_event_type_funcs_ma_read
-ffffffc008c8aae0 d print_fmt_ma_read
-ffffffc008c8ab90 d event_ma_read
-ffffffc008c8ac20 d trace_event_fields_ma_write
-ffffffc008c8ad88 d trace_event_type_funcs_ma_write
-ffffffc008c8ada8 d print_fmt_ma_write
-ffffffc008c8ae98 d event_ma_write
-ffffffc008c8af28 d fill_ptr_key_work
-ffffffc008c8af80 D init_uts_ns
-ffffffc008c8b140 d event_class_initcall_level
-ffffffc008c8b188 d event_class_initcall_start
-ffffffc008c8b1d0 d event_class_initcall_finish
-ffffffc008c8b218 d event_class_sys_enter
-ffffffc008c8b260 d event_class_sys_exit
-ffffffc008c8b2a8 d event_class_ipi_raise
-ffffffc008c8b2f0 d event_class_ipi_handler
-ffffffc008c8b338 d debug_fault_info
-ffffffc008c8b3f8 d event_class_task_newtask
-ffffffc008c8b440 d event_class_task_rename
-ffffffc008c8b488 d event_class_cpuhp_enter
-ffffffc008c8b4d0 d event_class_cpuhp_multi_enter
-ffffffc008c8b518 d event_class_cpuhp_exit
-ffffffc008c8b560 d event_class_irq_handler_entry
-ffffffc008c8b5a8 d event_class_irq_handler_exit
-ffffffc008c8b5f0 d event_class_softirq
-ffffffc008c8b638 d event_class_tasklet
-ffffffc008c8b680 d event_class_signal_generate
-ffffffc008c8b6c8 d event_class_signal_deliver
-ffffffc008c8b710 d event_class_workqueue_queue_work
-ffffffc008c8b758 d event_class_workqueue_activate_work
-ffffffc008c8b7a0 d event_class_workqueue_execute_start
-ffffffc008c8b7e8 d event_class_workqueue_execute_end
-ffffffc008c8b830 d event_class_sched_kthread_stop
-ffffffc008c8b878 d event_class_sched_kthread_stop_ret
-ffffffc008c8b8c0 d event_class_sched_kthread_work_queue_work
-ffffffc008c8b908 d event_class_sched_kthread_work_execute_start
-ffffffc008c8b950 d event_class_sched_kthread_work_execute_end
-ffffffc008c8b998 d event_class_sched_wakeup_template
-ffffffc008c8b9e0 d event_class_sched_switch
-ffffffc008c8ba28 d event_class_sched_migrate_task
-ffffffc008c8ba70 d event_class_sched_process_template
-ffffffc008c8bab8 d event_class_sched_process_wait
-ffffffc008c8bb00 d event_class_sched_process_fork
-ffffffc008c8bb48 d event_class_sched_process_exec
-ffffffc008c8bb90 d event_class_sched_stat_template
-ffffffc008c8bbd8 d event_class_sched_blocked_reason
-ffffffc008c8bc20 d event_class_sched_stat_runtime
-ffffffc008c8bc68 d event_class_sched_pi_setprio
-ffffffc008c8bcb0 d event_class_sched_process_hang
-ffffffc008c8bcf8 d event_class_sched_move_numa
-ffffffc008c8bd40 d event_class_sched_numa_pair_template
-ffffffc008c8bd88 d event_class_sched_wake_idle_without_ipi
-ffffffc008c8bdd0 d event_class_contention_begin
-ffffffc008c8be18 d event_class_contention_end
-ffffffc008c8be60 d event_class_console
-ffffffc008c8bea8 d event_class_rcu_utilization
-ffffffc008c8bef0 d event_class_rcu_grace_period
-ffffffc008c8bf38 d event_class_rcu_future_grace_period
-ffffffc008c8bf80 d event_class_rcu_grace_period_init
-ffffffc008c8bfc8 d event_class_rcu_exp_grace_period
-ffffffc008c8c010 d event_class_rcu_exp_funnel_lock
-ffffffc008c8c058 d event_class_rcu_nocb_wake
-ffffffc008c8c0a0 d event_class_rcu_preempt_task
-ffffffc008c8c0e8 d event_class_rcu_unlock_preempted_task
-ffffffc008c8c130 d event_class_rcu_quiescent_state_report
-ffffffc008c8c178 d event_class_rcu_fqs
-ffffffc008c8c1c0 d event_class_rcu_stall_warning
-ffffffc008c8c208 d event_class_rcu_dyntick
-ffffffc008c8c250 d event_class_rcu_callback
-ffffffc008c8c298 d event_class_rcu_segcb_stats
-ffffffc008c8c2e0 d event_class_rcu_kvfree_callback
-ffffffc008c8c328 d event_class_rcu_batch_start
-ffffffc008c8c370 d event_class_rcu_invoke_callback
-ffffffc008c8c3b8 d event_class_rcu_invoke_kvfree_callback
-ffffffc008c8c400 d event_class_rcu_invoke_kfree_bulk_callback
-ffffffc008c8c448 d event_class_rcu_batch_end
-ffffffc008c8c490 d event_class_rcu_torture_read
-ffffffc008c8c4d8 d event_class_rcu_barrier
-ffffffc008c8c520 d event_class_swiotlb_bounced
-ffffffc008c8c568 d event_class_timer_class
-ffffffc008c8c5b0 d event_class_timer_start
-ffffffc008c8c5f8 d event_class_timer_expire_entry
-ffffffc008c8c640 d event_class_hrtimer_init
-ffffffc008c8c688 d event_class_hrtimer_start
-ffffffc008c8c6d0 d event_class_hrtimer_expire_entry
-ffffffc008c8c718 d event_class_hrtimer_class
-ffffffc008c8c760 d event_class_itimer_state
-ffffffc008c8c7a8 d event_class_itimer_expire
-ffffffc008c8c7f0 d event_class_tick_stop
-ffffffc008c8c838 d event_class_alarmtimer_suspend
-ffffffc008c8c880 d event_class_alarm_class
-ffffffc008c8c8c8 d event_class_ftrace_function
-ffffffc008c8c910 d event_class_ftrace_funcgraph_entry
-ffffffc008c8c958 d event_class_ftrace_funcgraph_exit
-ffffffc008c8c9a0 d event_class_ftrace_context_switch
-ffffffc008c8c9e8 d event_class_ftrace_wakeup
-ffffffc008c8ca30 d event_class_ftrace_kernel_stack
-ffffffc008c8ca78 d event_class_ftrace_user_stack
-ffffffc008c8cac0 d event_class_ftrace_bprint
-ffffffc008c8cb08 d event_class_ftrace_print
-ffffffc008c8cb50 d event_class_ftrace_raw_data
-ffffffc008c8cb98 d event_class_ftrace_bputs
-ffffffc008c8cbe0 d event_class_ftrace_mmiotrace_rw
-ffffffc008c8cc28 d event_class_ftrace_mmiotrace_map
-ffffffc008c8cc70 d event_class_ftrace_branch
-ffffffc008c8ccb8 d event_class_ftrace_hwlat
-ffffffc008c8cd00 d event_class_ftrace_func_repeats
-ffffffc008c8cd48 d event_class_ftrace_osnoise
-ffffffc008c8cd90 d event_class_ftrace_timerlat
-ffffffc008c8cdd8 d event_class_error_report_template
-ffffffc008c8ce20 d event_class_cpu
-ffffffc008c8ce68 d event_class_cpu_idle_miss
-ffffffc008c8ceb0 d event_class_powernv_throttle
-ffffffc008c8cef8 d event_class_pstate_sample
-ffffffc008c8cf40 d event_class_cpu_frequency_limits
-ffffffc008c8cf88 d event_class_device_pm_callback_start
-ffffffc008c8cfd0 d event_class_device_pm_callback_end
-ffffffc008c8d018 d event_class_suspend_resume
-ffffffc008c8d060 d event_class_wakeup_source
-ffffffc008c8d0a8 d event_class_clock
-ffffffc008c8d0f0 d event_class_power_domain
-ffffffc008c8d138 d event_class_cpu_latency_qos_request
-ffffffc008c8d180 d event_class_pm_qos_update
-ffffffc008c8d1c8 d event_class_dev_pm_qos_request
-ffffffc008c8d210 d event_class_guest_halt_poll_ns
-ffffffc008c8d258 d event_class_rpm_internal
-ffffffc008c8d2a0 d event_class_rpm_return_int
-ffffffc008c8d2e8 d event_class_xdp_exception
-ffffffc008c8d330 d event_class_xdp_bulk_tx
-ffffffc008c8d378 d event_class_xdp_redirect_template
-ffffffc008c8d3c0 d event_class_xdp_cpumap_kthread
-ffffffc008c8d408 d event_class_xdp_cpumap_enqueue
-ffffffc008c8d450 d event_class_xdp_devmap_xmit
-ffffffc008c8d498 d event_class_mem_disconnect
-ffffffc008c8d4e0 d event_class_mem_connect
-ffffffc008c8d528 d event_class_mem_return_failed
-ffffffc008c8d570 d event_class_rseq_update
-ffffffc008c8d5b8 d event_class_rseq_ip_fixup
-ffffffc008c8d600 d event_class_mm_filemap_op_page_cache
-ffffffc008c8d648 d event_class_filemap_set_wb_err
-ffffffc008c8d690 d event_class_file_check_and_advance_wb_err
-ffffffc008c8d6d8 d event_class_oom_score_adj_update
-ffffffc008c8d720 d event_class_reclaim_retry_zone
-ffffffc008c8d768 d event_class_mark_victim
-ffffffc008c8d7b0 d event_class_wake_reaper
-ffffffc008c8d7f8 d event_class_start_task_reaping
-ffffffc008c8d840 d event_class_finish_task_reaping
-ffffffc008c8d888 d event_class_skip_task_reaping
-ffffffc008c8d8d0 d event_class_compact_retry
-ffffffc008c8d918 d event_class_mm_lru_insertion
-ffffffc008c8d960 d event_class_mm_lru_activate
-ffffffc008c8d9a8 d event_class_mm_vmscan_kswapd_sleep
-ffffffc008c8d9f0 d event_class_mm_vmscan_kswapd_wake
-ffffffc008c8da38 d event_class_mm_vmscan_wakeup_kswapd
-ffffffc008c8da80 d event_class_mm_vmscan_direct_reclaim_begin_template
-ffffffc008c8dac8 d event_class_mm_vmscan_direct_reclaim_end_template
-ffffffc008c8db10 d event_class_mm_shrink_slab_start
-ffffffc008c8db58 d event_class_mm_shrink_slab_end
-ffffffc008c8dba0 d event_class_mm_vmscan_lru_isolate
-ffffffc008c8dbe8 d event_class_mm_vmscan_write_folio
-ffffffc008c8dc30 d event_class_mm_vmscan_lru_shrink_inactive
-ffffffc008c8dc78 d event_class_mm_vmscan_lru_shrink_active
-ffffffc008c8dcc0 d event_class_mm_vmscan_node_reclaim_begin
-ffffffc008c8dd08 d event_class_mm_vmscan_throttled
-ffffffc008c8dd50 d event_class_percpu_alloc_percpu
-ffffffc008c8dd98 d event_class_percpu_free_percpu
-ffffffc008c8dde0 d event_class_percpu_alloc_percpu_fail
-ffffffc008c8de28 d event_class_percpu_create_chunk
-ffffffc008c8de70 d event_class_percpu_destroy_chunk
-ffffffc008c8deb8 d event_class_kmem_cache_alloc
-ffffffc008c8df00 d event_class_kmalloc
-ffffffc008c8df48 d event_class_kfree
-ffffffc008c8df90 d event_class_kmem_cache_free
-ffffffc008c8dfd8 d event_class_mm_page_free
-ffffffc008c8e020 d event_class_mm_page_free_batched
-ffffffc008c8e068 d event_class_mm_page_alloc
-ffffffc008c8e0b0 d event_class_mm_page
-ffffffc008c8e0f8 d event_class_mm_page_pcpu_drain
-ffffffc008c8e140 d event_class_mm_page_alloc_extfrag
-ffffffc008c8e188 d event_class_rss_stat
-ffffffc008c8e1d0 d event_class_mm_compaction_isolate_template
-ffffffc008c8e218 d event_class_mm_compaction_migratepages
-ffffffc008c8e260 d event_class_mm_compaction_begin
-ffffffc008c8e2a8 d event_class_mm_compaction_end
-ffffffc008c8e2f0 d event_class_mm_compaction_try_to_compact_pages
-ffffffc008c8e338 d event_class_mm_compaction_suitable_template
-ffffffc008c8e380 d event_class_mm_compaction_defer_template
-ffffffc008c8e3c8 d event_class_mm_compaction_kcompactd_sleep
-ffffffc008c8e410 d event_class_kcompactd_wake_template
-ffffffc008c8e458 d event_class_mmap_lock
-ffffffc008c8e4a0 d event_class_mmap_lock_acquire_returned
-ffffffc008c8e4e8 d event_class_vm_unmapped_area
-ffffffc008c8e530 d event_class_vma_mas_szero
-ffffffc008c8e578 d event_class_vma_store
-ffffffc008c8e5c0 d event_class_exit_mmap
-ffffffc008c8e608 d event_class_tlb_flush
-ffffffc008c8e650 d event_class_mm_migrate_pages
-ffffffc008c8e698 d event_class_mm_migrate_pages_start
-ffffffc008c8e6e0 d event_class_migration_pte
-ffffffc008c8e740 D contig_page_data
-ffffffc008c90780 d event_class_hugepage_set_pmd
-ffffffc008c907c8 d event_class_hugepage_update
-ffffffc008c90810 d event_class_migration_pmd
-ffffffc008c90858 d event_class_mm_khugepaged_scan_pmd
-ffffffc008c908a0 d event_class_mm_collapse_huge_page
-ffffffc008c908e8 d event_class_mm_collapse_huge_page_isolate
-ffffffc008c90930 d event_class_mm_collapse_huge_page_swapin
-ffffffc008c90978 d event_class_mm_khugepaged_scan_file
-ffffffc008c909c0 d event_class_test_pages_isolated
-ffffffc008c90a08 d event_class_writeback_folio_template
-ffffffc008c90a50 d event_class_writeback_dirty_inode_template
-ffffffc008c90a98 d event_class_writeback_write_inode_template
-ffffffc008c90ae0 d event_class_writeback_work_class
-ffffffc008c90b28 d event_class_writeback_pages_written
-ffffffc008c90b70 d event_class_writeback_class
-ffffffc008c90bb8 d event_class_writeback_bdi_register
-ffffffc008c90c00 d event_class_wbc_class
-ffffffc008c90c48 d event_class_writeback_queue_io
-ffffffc008c90c90 d event_class_global_dirty_state
-ffffffc008c90cd8 d event_class_bdi_dirty_ratelimit
-ffffffc008c90d20 d event_class_balance_dirty_pages
-ffffffc008c90d68 d event_class_writeback_sb_inodes_requeue
-ffffffc008c90db0 d event_class_writeback_single_inode_template
-ffffffc008c90df8 d event_class_writeback_inode_template
-ffffffc008c90e40 d event_class_locks_get_lock_context
-ffffffc008c90e88 d event_class_filelock_lock
-ffffffc008c90ed0 d event_class_filelock_lease
-ffffffc008c90f18 d event_class_generic_add_lease
-ffffffc008c90f60 d event_class_leases_conflict
-ffffffc008c90fa8 d event_class_iomap_readpage_class
-ffffffc008c90ff0 d event_class_iomap_range_class
-ffffffc008c91038 d event_class_iomap_class
-ffffffc008c91080 d event_class_iomap_iter
-ffffffc008c910c8 d event_class_ext4_other_inode_update_time
-ffffffc008c91110 d event_class_ext4_free_inode
-ffffffc008c91158 d event_class_ext4_request_inode
-ffffffc008c911a0 d event_class_ext4_allocate_inode
-ffffffc008c911e8 d event_class_ext4_evict_inode
-ffffffc008c91230 d event_class_ext4_drop_inode
-ffffffc008c91278 d event_class_ext4_nfs_commit_metadata
-ffffffc008c912c0 d event_class_ext4_mark_inode_dirty
-ffffffc008c91308 d event_class_ext4_begin_ordered_truncate
-ffffffc008c91350 d event_class_ext4__write_begin
-ffffffc008c91398 d event_class_ext4__write_end
-ffffffc008c913e0 d event_class_ext4_writepages
-ffffffc008c91428 d event_class_ext4_da_write_pages
-ffffffc008c91470 d event_class_ext4_da_write_pages_extent
-ffffffc008c914b8 d event_class_ext4_writepages_result
-ffffffc008c91500 d event_class_ext4__page_op
-ffffffc008c91548 d event_class_ext4_invalidate_folio_op
-ffffffc008c91590 d event_class_ext4_discard_blocks
-ffffffc008c915d8 d event_class_ext4__mb_new_pa
-ffffffc008c91620 d event_class_ext4_mb_release_inode_pa
-ffffffc008c91668 d event_class_ext4_mb_release_group_pa
-ffffffc008c916b0 d event_class_ext4_discard_preallocations
-ffffffc008c916f8 d event_class_ext4_mb_discard_preallocations
-ffffffc008c91740 d event_class_ext4_request_blocks
-ffffffc008c91788 d event_class_ext4_allocate_blocks
-ffffffc008c917d0 d event_class_ext4_free_blocks
-ffffffc008c91818 d event_class_ext4_sync_file_enter
-ffffffc008c91860 d event_class_ext4_sync_file_exit
-ffffffc008c918a8 d event_class_ext4_sync_fs
-ffffffc008c918f0 d event_class_ext4_alloc_da_blocks
-ffffffc008c91938 d event_class_ext4_mballoc_alloc
-ffffffc008c91980 d event_class_ext4_mballoc_prealloc
-ffffffc008c919c8 d event_class_ext4__mballoc
-ffffffc008c91a10 d event_class_ext4_forget
-ffffffc008c91a58 d event_class_ext4_da_update_reserve_space
-ffffffc008c91aa0 d event_class_ext4_da_reserve_space
-ffffffc008c91ae8 d event_class_ext4_da_release_space
-ffffffc008c91b30 d event_class_ext4__bitmap_load
-ffffffc008c91b78 d event_class_ext4_read_block_bitmap_load
-ffffffc008c91bc0 d event_class_ext4__fallocate_mode
-ffffffc008c91c08 d event_class_ext4_fallocate_exit
-ffffffc008c91c50 d event_class_ext4_unlink_enter
-ffffffc008c91c98 d event_class_ext4_unlink_exit
-ffffffc008c91ce0 d event_class_ext4__truncate
-ffffffc008c91d28 d event_class_ext4_ext_convert_to_initialized_enter
-ffffffc008c91d70 d event_class_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c91db8 d event_class_ext4__map_blocks_enter
-ffffffc008c91e00 d event_class_ext4__map_blocks_exit
-ffffffc008c91e48 d event_class_ext4_ext_load_extent
-ffffffc008c91e90 d event_class_ext4_load_inode
-ffffffc008c91ed8 d event_class_ext4_journal_start
-ffffffc008c91f20 d event_class_ext4_journal_start_reserved
-ffffffc008c91f68 d event_class_ext4__trim
-ffffffc008c91fb0 d event_class_ext4_ext_handle_unwritten_extents
-ffffffc008c91ff8 d event_class_ext4_get_implied_cluster_alloc_exit
-ffffffc008c92040 d event_class_ext4_ext_show_extent
-ffffffc008c92088 d event_class_ext4_remove_blocks
-ffffffc008c920d0 d event_class_ext4_ext_rm_leaf
-ffffffc008c92118 d event_class_ext4_ext_rm_idx
-ffffffc008c92160 d event_class_ext4_ext_remove_space
-ffffffc008c921a8 d event_class_ext4_ext_remove_space_done
-ffffffc008c921f0 d event_class_ext4__es_extent
-ffffffc008c92238 d event_class_ext4_es_remove_extent
-ffffffc008c92280 d event_class_ext4_es_find_extent_range_enter
-ffffffc008c922c8 d event_class_ext4_es_find_extent_range_exit
-ffffffc008c92310 d event_class_ext4_es_lookup_extent_enter
-ffffffc008c92358 d event_class_ext4_es_lookup_extent_exit
-ffffffc008c923a0 d event_class_ext4__es_shrink_enter
-ffffffc008c923e8 d event_class_ext4_es_shrink_scan_exit
-ffffffc008c92430 d event_class_ext4_collapse_range
-ffffffc008c92478 d event_class_ext4_insert_range
-ffffffc008c924c0 d event_class_ext4_es_shrink
-ffffffc008c92508 d event_class_ext4_es_insert_delayed_block
-ffffffc008c92550 d event_class_ext4_fsmap_class
-ffffffc008c92598 d event_class_ext4_getfsmap_class
-ffffffc008c925e0 d event_class_ext4_shutdown
-ffffffc008c92628 d event_class_ext4_error
-ffffffc008c92670 d event_class_ext4_prefetch_bitmaps
-ffffffc008c926b8 d event_class_ext4_lazy_itable_init
-ffffffc008c92700 d event_class_ext4_fc_replay_scan
-ffffffc008c92748 d event_class_ext4_fc_replay
-ffffffc008c92790 d event_class_ext4_fc_commit_start
-ffffffc008c927d8 d event_class_ext4_fc_commit_stop
-ffffffc008c92820 d event_class_ext4_fc_stats
-ffffffc008c92868 d event_class_ext4_fc_track_dentry
-ffffffc008c928b0 d event_class_ext4_fc_track_inode
-ffffffc008c928f8 d event_class_ext4_fc_track_range
-ffffffc008c92940 d event_class_ext4_fc_cleanup
-ffffffc008c92988 d event_class_ext4_update_sb
-ffffffc008c929d0 d event_class_jbd2_checkpoint
-ffffffc008c92a18 d event_class_jbd2_commit
-ffffffc008c92a60 d event_class_jbd2_end_commit
-ffffffc008c92aa8 d event_class_jbd2_submit_inode_data
-ffffffc008c92af0 d event_class_jbd2_handle_start_class
-ffffffc008c92b38 d event_class_jbd2_handle_extend
-ffffffc008c92b80 d event_class_jbd2_handle_stats
-ffffffc008c92bc8 d event_class_jbd2_run_stats
-ffffffc008c92c10 d event_class_jbd2_checkpoint_stats
-ffffffc008c92c58 d event_class_jbd2_update_log_tail
-ffffffc008c92ca0 d event_class_jbd2_write_superblock
-ffffffc008c92ce8 d event_class_jbd2_lock_buffer_stall
-ffffffc008c92d30 d event_class_jbd2_journal_shrink
-ffffffc008c92d78 d event_class_jbd2_shrink_scan_exit
-ffffffc008c92dc0 d event_class_jbd2_shrink_checkpoint_list
-ffffffc008c92e08 d event_class_erofs_lookup
-ffffffc008c92e50 d event_class_erofs_fill_inode
-ffffffc008c92e98 d event_class_erofs_readpage
-ffffffc008c92ee0 d event_class_erofs_readpages
-ffffffc008c92f28 d event_class_erofs__map_blocks_enter
-ffffffc008c92f70 d event_class_erofs__map_blocks_exit
-ffffffc008c92fb8 d event_class_erofs_destroy_inode
-ffffffc008c93000 d event_class_selinux_audited
-ffffffc008c93048 d event_class_block_buffer
-ffffffc008c93090 d event_class_block_rq_requeue
-ffffffc008c930d8 d event_class_block_rq_completion
-ffffffc008c93120 d event_class_block_rq
-ffffffc008c93168 d event_class_block_bio_complete
-ffffffc008c931b0 d event_class_block_bio
-ffffffc008c931f8 d event_class_block_plug
-ffffffc008c93240 d event_class_block_unplug
-ffffffc008c93288 d event_class_block_split
-ffffffc008c932d0 d event_class_block_bio_remap
-ffffffc008c93318 d event_class_block_rq_remap
-ffffffc008c93360 d event_class_kyber_latency
-ffffffc008c933a8 d event_class_kyber_adjust
-ffffffc008c933f0 d event_class_kyber_throttled
-ffffffc008c93438 d event_class_io_uring_create
-ffffffc008c93480 d event_class_io_uring_register
-ffffffc008c934c8 d event_class_io_uring_file_get
-ffffffc008c93510 d event_class_io_uring_queue_async_work
-ffffffc008c93558 d event_class_io_uring_defer
-ffffffc008c935a0 d event_class_io_uring_link
-ffffffc008c935e8 d event_class_io_uring_cqring_wait
-ffffffc008c93630 d event_class_io_uring_fail_link
-ffffffc008c93678 d event_class_io_uring_complete
-ffffffc008c936c0 d event_class_io_uring_submit_sqe
-ffffffc008c93708 d event_class_io_uring_poll_arm
-ffffffc008c93750 d event_class_io_uring_task_add
-ffffffc008c93798 d event_class_io_uring_req_failed
-ffffffc008c937e0 d event_class_io_uring_cqe_overflow
-ffffffc008c93828 d event_class_io_uring_task_work_run
-ffffffc008c93870 d event_class_io_uring_short_write
-ffffffc008c938b8 d event_class_io_uring_local_work_run
-ffffffc008c93900 d event_class_rwmmio_rw_template
-ffffffc008c93948 d event_class_rwmmio_read
-ffffffc008c93990 d event_class_rwmmio_post_read
-ffffffc008c939d8 d event_class_clk
-ffffffc008c93a20 d event_class_clk_rate
-ffffffc008c93a68 d event_class_clk_rate_range
-ffffffc008c93ab0 d event_class_clk_parent
-ffffffc008c93af8 d event_class_clk_phase
-ffffffc008c93b40 d event_class_clk_duty_cycle
-ffffffc008c93b88 d event_class_iommu_group_event
-ffffffc008c93bd0 d event_class_iommu_device_event
-ffffffc008c93c18 d event_class_map
-ffffffc008c93c60 d event_class_unmap
-ffffffc008c93ca8 d event_class_iommu_error
-ffffffc008c93cf0 d event_class_regmap_reg
-ffffffc008c93d38 d event_class_regmap_bulk
-ffffffc008c93d80 d event_class_regmap_block
-ffffffc008c93dc8 d event_class_regcache_sync
-ffffffc008c93e10 d event_class_regmap_bool
-ffffffc008c93e58 d event_class_regmap_async
-ffffffc008c93ea0 d event_class_regcache_drop_region
-ffffffc008c93ee8 d event_class_thermal_pressure_update
-ffffffc008c93f30 d event_class_devres
-ffffffc008c93f78 d event_class_dma_fence
-ffffffc008c93fc0 d event_class_rtc_time_alarm_class
-ffffffc008c94008 d event_class_rtc_irq_set_freq
-ffffffc008c94050 d event_class_rtc_irq_set_state
-ffffffc008c94098 d event_class_rtc_alarm_irq_enable
-ffffffc008c940e0 d event_class_rtc_offset_class
-ffffffc008c94128 d event_class_rtc_timer_class
-ffffffc008c94170 d event_class_watchdog_template
-ffffffc008c941b8 d event_class_watchdog_set_timeout
-ffffffc008c94200 d event_class_scmi_fc_call
-ffffffc008c94248 d event_class_scmi_xfer_begin
-ffffffc008c94290 d event_class_scmi_xfer_response_wait
-ffffffc008c942d8 d event_class_scmi_xfer_end
-ffffffc008c94320 d event_class_scmi_rx_done
-ffffffc008c94368 d event_class_scmi_msg_dump
-ffffffc008c943b0 d event_class_mc_event
-ffffffc008c943f8 d event_class_arm_event
-ffffffc008c94440 d event_class_non_standard_event
-ffffffc008c94488 d event_class_aer_event
-ffffffc008c944d0 d event_class_kfree_skb
-ffffffc008c94518 d event_class_consume_skb
-ffffffc008c94560 d event_class_skb_copy_datagram_iovec
-ffffffc008c945a8 d event_class_net_dev_start_xmit
-ffffffc008c945f0 d event_class_net_dev_xmit
-ffffffc008c94638 d event_class_net_dev_xmit_timeout
-ffffffc008c94680 d event_class_net_dev_template
-ffffffc008c946c8 d event_class_net_dev_rx_verbose_template
-ffffffc008c94710 d event_class_net_dev_rx_exit_template
-ffffffc008c94758 d event_class_napi_poll
-ffffffc008c947a0 d event_class_sock_rcvqueue_full
-ffffffc008c947e8 d event_class_sock_exceed_buf_limit
-ffffffc008c94830 d event_class_inet_sock_set_state
-ffffffc008c94878 d event_class_inet_sk_error_report
-ffffffc008c948c0 d event_class_udp_fail_queue_rcv_skb
-ffffffc008c94908 d event_class_tcp_event_sk_skb
-ffffffc008c94950 d event_class_tcp_event_sk
-ffffffc008c94998 d event_class_tcp_retransmit_synack
-ffffffc008c949e0 d event_class_tcp_probe
-ffffffc008c94a28 d event_class_tcp_event_skb
-ffffffc008c94a70 d event_class_tcp_cong_state_set
-ffffffc008c94ab8 d event_class_fib_table_lookup
-ffffffc008c94b00 d event_class_qdisc_dequeue
-ffffffc008c94b48 d event_class_qdisc_enqueue
-ffffffc008c94b90 d event_class_qdisc_reset
-ffffffc008c94bd8 d event_class_qdisc_destroy
-ffffffc008c94c20 d event_class_qdisc_create
-ffffffc008c94c68 d event_class_br_fdb_add
-ffffffc008c94cb0 d event_class_br_fdb_external_learn_add
-ffffffc008c94cf8 d event_class_fdb_delete
-ffffffc008c94d40 d event_class_br_fdb_update
-ffffffc008c94d88 d event_class_neigh_create
-ffffffc008c94dd0 d event_class_neigh_update
-ffffffc008c94e18 d event_class_neigh__update
-ffffffc008c94e60 d event_class_netlink_extack
-ffffffc008c94ea8 d event_class_fib6_table_lookup
-ffffffc008c94ef0 d event_class_virtio_transport_alloc_pkt
-ffffffc008c94f38 d event_class_virtio_transport_recv_pkt
-ffffffc008c94f80 d event_class_ma_op
-ffffffc008c94fc8 d event_class_ma_read
-ffffffc008c95010 d event_class_ma_write
-ffffffc008c95058 d compute_batch_nb
-ffffffc008c95070 D mminit_loglevel
-ffffffc008c95078 d sparsemap_buf
-ffffffc008c95080 d sparsemap_buf_end
-ffffffc008c95088 d page_ext_init.page_ext_callback_mem_nb
-ffffffc008c950a0 D __end_once
-ffffffc008c950a0 D __start_once
-ffffffc008c950a0 D __tracepoint_initcall_level
-ffffffc008c950e8 D __tracepoint_initcall_start
-ffffffc008c95130 D __tracepoint_initcall_finish
-ffffffc008c95178 D __tracepoint_sys_enter
-ffffffc008c951c0 D __tracepoint_sys_exit
-ffffffc008c95208 D __tracepoint_ipi_raise
-ffffffc008c95250 D __tracepoint_ipi_entry
-ffffffc008c95298 D __tracepoint_ipi_exit
-ffffffc008c952e0 D __tracepoint_task_newtask
-ffffffc008c95328 D __tracepoint_task_rename
-ffffffc008c95370 D __tracepoint_cpuhp_enter
-ffffffc008c953b8 D __tracepoint_cpuhp_multi_enter
-ffffffc008c95400 D __tracepoint_cpuhp_exit
-ffffffc008c95448 D __tracepoint_irq_handler_entry
-ffffffc008c95490 D __tracepoint_irq_handler_exit
-ffffffc008c954d8 D __tracepoint_softirq_entry
-ffffffc008c95520 D __tracepoint_softirq_exit
-ffffffc008c95568 D __tracepoint_softirq_raise
-ffffffc008c955b0 D __tracepoint_tasklet_entry
-ffffffc008c955f8 D __tracepoint_tasklet_exit
-ffffffc008c95640 D __tracepoint_signal_generate
-ffffffc008c95688 D __tracepoint_signal_deliver
-ffffffc008c956d0 D __tracepoint_workqueue_queue_work
-ffffffc008c95718 D __tracepoint_workqueue_activate_work
-ffffffc008c95760 D __tracepoint_workqueue_execute_start
-ffffffc008c957a8 D __tracepoint_workqueue_execute_end
-ffffffc008c957f0 D __tracepoint_sched_kthread_stop
-ffffffc008c95838 D __tracepoint_sched_kthread_stop_ret
-ffffffc008c95880 D __tracepoint_sched_kthread_work_queue_work
-ffffffc008c958c8 D __tracepoint_sched_kthread_work_execute_start
-ffffffc008c95910 D __tracepoint_sched_kthread_work_execute_end
-ffffffc008c95958 D __tracepoint_sched_waking
-ffffffc008c959a0 D __tracepoint_sched_wakeup
-ffffffc008c959e8 D __tracepoint_sched_wakeup_new
-ffffffc008c95a30 D __tracepoint_sched_switch
-ffffffc008c95a78 D __tracepoint_sched_migrate_task
-ffffffc008c95ac0 D __tracepoint_sched_process_free
-ffffffc008c95b08 D __tracepoint_sched_process_exit
-ffffffc008c95b50 D __tracepoint_sched_wait_task
-ffffffc008c95b98 D __tracepoint_sched_process_wait
-ffffffc008c95be0 D __tracepoint_sched_process_exec
-ffffffc008c95c28 D __tracepoint_sched_blocked_reason
-ffffffc008c95c70 D __tracepoint_sched_pi_setprio
-ffffffc008c95cb8 D __tracepoint_sched_process_hang
-ffffffc008c95d00 D __tracepoint_sched_move_numa
-ffffffc008c95d48 D __tracepoint_sched_stick_numa
-ffffffc008c95d90 D __tracepoint_sched_swap_numa
-ffffffc008c95dd8 D __tracepoint_sched_wake_idle_without_ipi
-ffffffc008c95e20 D __tracepoint_pelt_thermal_tp
-ffffffc008c95e68 D __tracepoint_pelt_se_tp
-ffffffc008c95eb0 D __tracepoint_pelt_rt_tp
-ffffffc008c95ef8 D __tracepoint_pelt_dl_tp
-ffffffc008c95f40 D __tracepoint_pelt_irq_tp
-ffffffc008c95f88 D __tracepoint_sched_stat_runtime
-ffffffc008c95fd0 D __tracepoint_pelt_cfs_tp
-ffffffc008c96018 D __tracepoint_sched_cpu_capacity_tp
-ffffffc008c96060 D __tracepoint_sched_overutilized_tp
-ffffffc008c960a8 D __tracepoint_sched_util_est_cfs_tp
-ffffffc008c960f0 D __tracepoint_sched_stat_wait
-ffffffc008c96138 D __tracepoint_sched_stat_sleep
-ffffffc008c96180 D __tracepoint_sched_stat_iowait
-ffffffc008c961c8 D __tracepoint_sched_stat_blocked
-ffffffc008c96210 D __tracepoint_sched_update_nr_running_tp
-ffffffc008c96258 D __tracepoint_sched_util_est_se_tp
-ffffffc008c962a0 D __tracepoint_sched_process_fork
-ffffffc008c962e8 D __tracepoint_contention_begin
-ffffffc008c96330 D __tracepoint_contention_end
-ffffffc008c96378 D __tracepoint_console
-ffffffc008c963c0 D __tracepoint_rcu_dyntick
-ffffffc008c96408 D __tracepoint_rcu_torture_read
-ffffffc008c96450 D __tracepoint_rcu_grace_period
-ffffffc008c96498 D __tracepoint_rcu_utilization
-ffffffc008c964e0 D __tracepoint_rcu_kvfree_callback
-ffffffc008c96528 D __tracepoint_rcu_callback
-ffffffc008c96570 D __tracepoint_rcu_segcb_stats
-ffffffc008c965b8 D __tracepoint_rcu_future_grace_period
-ffffffc008c96600 D __tracepoint_rcu_stall_warning
-ffffffc008c96648 D __tracepoint_rcu_barrier
-ffffffc008c96690 D __tracepoint_rcu_quiescent_state_report
-ffffffc008c966d8 D __tracepoint_rcu_unlock_preempted_task
-ffffffc008c96720 D __tracepoint_rcu_grace_period_init
-ffffffc008c96768 D __tracepoint_rcu_fqs
-ffffffc008c967b0 D __tracepoint_rcu_batch_start
-ffffffc008c967f8 D __tracepoint_rcu_batch_end
-ffffffc008c96840 D __tracepoint_rcu_invoke_callback
-ffffffc008c96888 D __tracepoint_rcu_invoke_kfree_bulk_callback
-ffffffc008c968d0 D __tracepoint_rcu_invoke_kvfree_callback
-ffffffc008c96918 D __tracepoint_rcu_nocb_wake
-ffffffc008c96960 D __tracepoint_rcu_exp_grace_period
-ffffffc008c969a8 D __tracepoint_rcu_exp_funnel_lock
-ffffffc008c969f0 D __tracepoint_rcu_preempt_task
-ffffffc008c96a38 D __tracepoint_swiotlb_bounced
-ffffffc008c96a80 D __tracepoint_timer_init
-ffffffc008c96ac8 D __tracepoint_timer_start
-ffffffc008c96b10 D __tracepoint_timer_expire_entry
-ffffffc008c96b58 D __tracepoint_timer_expire_exit
-ffffffc008c96ba0 D __tracepoint_timer_cancel
-ffffffc008c96be8 D __tracepoint_itimer_state
-ffffffc008c96c30 D __tracepoint_itimer_expire
-ffffffc008c96c78 D __tracepoint_hrtimer_start
-ffffffc008c96cc0 D __tracepoint_hrtimer_cancel
-ffffffc008c96d08 D __tracepoint_hrtimer_init
-ffffffc008c96d50 D __tracepoint_hrtimer_expire_entry
-ffffffc008c96d98 D __tracepoint_hrtimer_expire_exit
-ffffffc008c96de0 D __tracepoint_tick_stop
-ffffffc008c96e28 D __tracepoint_alarmtimer_suspend
-ffffffc008c96e70 D __tracepoint_alarmtimer_fired
-ffffffc008c96eb8 D __tracepoint_alarmtimer_start
-ffffffc008c96f00 D __tracepoint_alarmtimer_cancel
-ffffffc008c96f48 D __tracepoint_error_report_end
-ffffffc008c96f90 D __tracepoint_cpu_idle
-ffffffc008c96fd8 D __tracepoint_cpu_idle_miss
-ffffffc008c97020 D __tracepoint_powernv_throttle
-ffffffc008c97068 D __tracepoint_pstate_sample
-ffffffc008c970b0 D __tracepoint_cpu_frequency
-ffffffc008c970f8 D __tracepoint_cpu_frequency_limits
-ffffffc008c97140 D __tracepoint_device_pm_callback_start
-ffffffc008c97188 D __tracepoint_device_pm_callback_end
-ffffffc008c971d0 D __tracepoint_suspend_resume
-ffffffc008c97218 D __tracepoint_wakeup_source_activate
-ffffffc008c97260 D __tracepoint_wakeup_source_deactivate
-ffffffc008c972a8 D __tracepoint_clock_enable
-ffffffc008c972f0 D __tracepoint_clock_disable
-ffffffc008c97338 D __tracepoint_clock_set_rate
-ffffffc008c97380 D __tracepoint_power_domain_target
-ffffffc008c973c8 D __tracepoint_pm_qos_add_request
-ffffffc008c97410 D __tracepoint_pm_qos_update_request
-ffffffc008c97458 D __tracepoint_pm_qos_remove_request
-ffffffc008c974a0 D __tracepoint_pm_qos_update_target
-ffffffc008c974e8 D __tracepoint_pm_qos_update_flags
-ffffffc008c97530 D __tracepoint_dev_pm_qos_add_request
-ffffffc008c97578 D __tracepoint_dev_pm_qos_update_request
-ffffffc008c975c0 D __tracepoint_dev_pm_qos_remove_request
-ffffffc008c97608 D __tracepoint_guest_halt_poll_ns
-ffffffc008c97650 D __tracepoint_rpm_suspend
-ffffffc008c97698 D __tracepoint_rpm_resume
-ffffffc008c976e0 D __tracepoint_rpm_idle
-ffffffc008c97728 D __tracepoint_rpm_usage
-ffffffc008c97770 D __tracepoint_rpm_return_int
-ffffffc008c977b8 D __tracepoint_xdp_exception
-ffffffc008c97800 D __tracepoint_xdp_bulk_tx
-ffffffc008c97848 D __tracepoint_xdp_redirect
-ffffffc008c97890 D __tracepoint_xdp_redirect_err
-ffffffc008c978d8 D __tracepoint_xdp_redirect_map
-ffffffc008c97920 D __tracepoint_xdp_redirect_map_err
-ffffffc008c97968 D __tracepoint_xdp_cpumap_kthread
-ffffffc008c979b0 D __tracepoint_xdp_cpumap_enqueue
-ffffffc008c979f8 D __tracepoint_xdp_devmap_xmit
-ffffffc008c97a40 D __tracepoint_mem_disconnect
-ffffffc008c97a88 D __tracepoint_mem_connect
-ffffffc008c97ad0 D __tracepoint_mem_return_failed
-ffffffc008c97b18 D __tracepoint_rseq_update
-ffffffc008c97b60 D __tracepoint_rseq_ip_fixup
-ffffffc008c97ba8 D __tracepoint_mm_filemap_delete_from_page_cache
-ffffffc008c97bf0 D __tracepoint_mm_filemap_add_to_page_cache
-ffffffc008c97c38 D __tracepoint_filemap_set_wb_err
-ffffffc008c97c80 D __tracepoint_file_check_and_advance_wb_err
-ffffffc008c97cc8 D __tracepoint_oom_score_adj_update
-ffffffc008c97d10 D __tracepoint_mark_victim
-ffffffc008c97d58 D __tracepoint_wake_reaper
-ffffffc008c97da0 D __tracepoint_start_task_reaping
-ffffffc008c97de8 D __tracepoint_finish_task_reaping
-ffffffc008c97e30 D __tracepoint_skip_task_reaping
-ffffffc008c97e78 D __tracepoint_reclaim_retry_zone
-ffffffc008c97ec0 D __tracepoint_compact_retry
-ffffffc008c97f08 D __tracepoint_mm_lru_insertion
-ffffffc008c97f50 D __tracepoint_mm_lru_activate
-ffffffc008c97f98 D __tracepoint_mm_vmscan_kswapd_sleep
-ffffffc008c97fe0 D __tracepoint_mm_vmscan_kswapd_wake
-ffffffc008c98028 D __tracepoint_mm_vmscan_wakeup_kswapd
-ffffffc008c98070 D __tracepoint_mm_vmscan_direct_reclaim_begin
-ffffffc008c980b8 D __tracepoint_mm_vmscan_direct_reclaim_end
-ffffffc008c98100 D __tracepoint_mm_shrink_slab_start
-ffffffc008c98148 D __tracepoint_mm_shrink_slab_end
-ffffffc008c98190 D __tracepoint_mm_vmscan_lru_isolate
-ffffffc008c981d8 D __tracepoint_mm_vmscan_write_folio
-ffffffc008c98220 D __tracepoint_mm_vmscan_lru_shrink_inactive
-ffffffc008c98268 D __tracepoint_mm_vmscan_lru_shrink_active
-ffffffc008c982b0 D __tracepoint_mm_vmscan_node_reclaim_begin
-ffffffc008c982f8 D __tracepoint_mm_vmscan_node_reclaim_end
-ffffffc008c98340 D __tracepoint_mm_vmscan_throttled
-ffffffc008c98388 D __tracepoint_percpu_alloc_percpu
-ffffffc008c983d0 D __tracepoint_percpu_free_percpu
-ffffffc008c98418 D __tracepoint_percpu_alloc_percpu_fail
-ffffffc008c98460 D __tracepoint_percpu_create_chunk
-ffffffc008c984a8 D __tracepoint_percpu_destroy_chunk
-ffffffc008c984f0 D __tracepoint_kmalloc
-ffffffc008c98538 D __tracepoint_kfree
-ffffffc008c98580 D __tracepoint_mm_page_free
-ffffffc008c985c8 D __tracepoint_mm_page_free_batched
-ffffffc008c98610 D __tracepoint_mm_page_alloc
-ffffffc008c98658 D __tracepoint_mm_page_alloc_zone_locked
-ffffffc008c986a0 D __tracepoint_mm_page_pcpu_drain
-ffffffc008c986e8 D __tracepoint_mm_page_alloc_extfrag
-ffffffc008c98730 D __tracepoint_rss_stat
-ffffffc008c98778 D __tracepoint_kmem_cache_alloc
-ffffffc008c987c0 D __tracepoint_kmem_cache_free
-ffffffc008c98808 D __tracepoint_mm_compaction_isolate_migratepages
-ffffffc008c98850 D __tracepoint_mm_compaction_isolate_freepages
-ffffffc008c98898 D __tracepoint_mm_compaction_migratepages
-ffffffc008c988e0 D __tracepoint_mm_compaction_begin
-ffffffc008c98928 D __tracepoint_mm_compaction_end
-ffffffc008c98970 D __tracepoint_mm_compaction_try_to_compact_pages
-ffffffc008c989b8 D __tracepoint_mm_compaction_finished
-ffffffc008c98a00 D __tracepoint_mm_compaction_suitable
-ffffffc008c98a48 D __tracepoint_mm_compaction_deferred
-ffffffc008c98a90 D __tracepoint_mm_compaction_defer_compaction
-ffffffc008c98ad8 D __tracepoint_mm_compaction_defer_reset
-ffffffc008c98b20 D __tracepoint_mm_compaction_kcompactd_sleep
-ffffffc008c98b68 D __tracepoint_mm_compaction_wakeup_kcompactd
-ffffffc008c98bb0 D __tracepoint_mm_compaction_kcompactd_wake
-ffffffc008c98bf8 D __tracepoint_mmap_lock_start_locking
-ffffffc008c98c40 D __tracepoint_mmap_lock_released
-ffffffc008c98c88 D __tracepoint_mmap_lock_acquire_returned
-ffffffc008c98cd0 D __tracepoint_vm_unmapped_area
-ffffffc008c98d18 D __tracepoint_vma_mas_szero
-ffffffc008c98d60 D __tracepoint_vma_store
-ffffffc008c98da8 D __tracepoint_exit_mmap
-ffffffc008c98df0 D __tracepoint_tlb_flush
-ffffffc008c98e38 D __tracepoint_mm_migrate_pages
-ffffffc008c98e80 D __tracepoint_mm_migrate_pages_start
-ffffffc008c98ec8 D __tracepoint_set_migration_pte
-ffffffc008c98f10 D __tracepoint_remove_migration_pte
-ffffffc008c98f58 D __tracepoint_hugepage_set_pmd
-ffffffc008c98fa0 D __tracepoint_hugepage_update
-ffffffc008c98fe8 D __tracepoint_set_migration_pmd
-ffffffc008c99030 D __tracepoint_remove_migration_pmd
-ffffffc008c99078 D __tracepoint_mm_khugepaged_scan_pmd
-ffffffc008c990c0 D __tracepoint_mm_collapse_huge_page
-ffffffc008c99108 D __tracepoint_mm_collapse_huge_page_isolate
-ffffffc008c99150 D __tracepoint_mm_collapse_huge_page_swapin
-ffffffc008c99198 D __tracepoint_mm_khugepaged_scan_file
-ffffffc008c991e0 D __tracepoint_test_pages_isolated
-ffffffc008c99228 D __tracepoint_writeback_mark_inode_dirty
-ffffffc008c99270 D __tracepoint_writeback_dirty_inode_start
-ffffffc008c992b8 D __tracepoint_writeback_dirty_inode
-ffffffc008c99300 D __tracepoint_writeback_write_inode_start
-ffffffc008c99348 D __tracepoint_writeback_write_inode
-ffffffc008c99390 D __tracepoint_writeback_queue
-ffffffc008c993d8 D __tracepoint_writeback_exec
-ffffffc008c99420 D __tracepoint_writeback_start
-ffffffc008c99468 D __tracepoint_writeback_written
-ffffffc008c994b0 D __tracepoint_writeback_wait
-ffffffc008c994f8 D __tracepoint_writeback_pages_written
-ffffffc008c99540 D __tracepoint_writeback_wake_background
-ffffffc008c99588 D __tracepoint_writeback_queue_io
-ffffffc008c995d0 D __tracepoint_writeback_sb_inodes_requeue
-ffffffc008c99618 D __tracepoint_writeback_single_inode_start
-ffffffc008c99660 D __tracepoint_writeback_single_inode
-ffffffc008c996a8 D __tracepoint_writeback_lazytime
-ffffffc008c996f0 D __tracepoint_writeback_dirty_inode_enqueue
-ffffffc008c99738 D __tracepoint_sb_mark_inode_writeback
-ffffffc008c99780 D __tracepoint_sb_clear_inode_writeback
-ffffffc008c997c8 D __tracepoint_writeback_bdi_register
-ffffffc008c99810 D __tracepoint_writeback_lazytime_iput
-ffffffc008c99858 D __tracepoint_global_dirty_state
-ffffffc008c998a0 D __tracepoint_bdi_dirty_ratelimit
-ffffffc008c998e8 D __tracepoint_balance_dirty_pages
-ffffffc008c99930 D __tracepoint_wbc_writepage
-ffffffc008c99978 D __tracepoint_writeback_dirty_folio
-ffffffc008c999c0 D __tracepoint_folio_wait_writeback
-ffffffc008c99a08 D __tracepoint_locks_get_lock_context
-ffffffc008c99a50 D __tracepoint_posix_lock_inode
-ffffffc008c99a98 D __tracepoint_fcntl_setlk
-ffffffc008c99ae0 D __tracepoint_locks_remove_posix
-ffffffc008c99b28 D __tracepoint_flock_lock_inode
-ffffffc008c99b70 D __tracepoint_break_lease_noblock
-ffffffc008c99bb8 D __tracepoint_break_lease_block
-ffffffc008c99c00 D __tracepoint_break_lease_unblock
-ffffffc008c99c48 D __tracepoint_generic_delete_lease
-ffffffc008c99c90 D __tracepoint_time_out_leases
-ffffffc008c99cd8 D __tracepoint_generic_add_lease
-ffffffc008c99d20 D __tracepoint_leases_conflict
-ffffffc008c99d68 D __tracepoint_iomap_readpage
-ffffffc008c99db0 D __tracepoint_iomap_readahead
-ffffffc008c99df8 D __tracepoint_iomap_writepage
-ffffffc008c99e40 D __tracepoint_iomap_release_folio
-ffffffc008c99e88 D __tracepoint_iomap_invalidate_folio
-ffffffc008c99ed0 D __tracepoint_iomap_dio_invalidate_fail
-ffffffc008c99f18 D __tracepoint_iomap_iter_dstmap
-ffffffc008c99f60 D __tracepoint_iomap_iter_srcmap
-ffffffc008c99fa8 D __tracepoint_iomap_writepage_map
-ffffffc008c99ff0 D __tracepoint_iomap_iter
-ffffffc008c9a038 D __tracepoint_ext4_other_inode_update_time
-ffffffc008c9a080 D __tracepoint_ext4_free_inode
-ffffffc008c9a0c8 D __tracepoint_ext4_request_inode
-ffffffc008c9a110 D __tracepoint_ext4_allocate_inode
-ffffffc008c9a158 D __tracepoint_ext4_evict_inode
-ffffffc008c9a1a0 D __tracepoint_ext4_drop_inode
-ffffffc008c9a1e8 D __tracepoint_ext4_nfs_commit_metadata
-ffffffc008c9a230 D __tracepoint_ext4_mark_inode_dirty
-ffffffc008c9a278 D __tracepoint_ext4_begin_ordered_truncate
-ffffffc008c9a2c0 D __tracepoint_ext4_write_begin
-ffffffc008c9a308 D __tracepoint_ext4_da_write_begin
-ffffffc008c9a350 D __tracepoint_ext4_write_end
-ffffffc008c9a398 D __tracepoint_ext4_journalled_write_end
-ffffffc008c9a3e0 D __tracepoint_ext4_da_write_end
-ffffffc008c9a428 D __tracepoint_ext4_writepages
-ffffffc008c9a470 D __tracepoint_ext4_da_write_pages
-ffffffc008c9a4b8 D __tracepoint_ext4_da_write_pages_extent
-ffffffc008c9a500 D __tracepoint_ext4_writepages_result
-ffffffc008c9a548 D __tracepoint_ext4_writepage
-ffffffc008c9a590 D __tracepoint_ext4_readpage
-ffffffc008c9a5d8 D __tracepoint_ext4_releasepage
-ffffffc008c9a620 D __tracepoint_ext4_invalidate_folio
-ffffffc008c9a668 D __tracepoint_ext4_journalled_invalidate_folio
-ffffffc008c9a6b0 D __tracepoint_ext4_discard_blocks
-ffffffc008c9a6f8 D __tracepoint_ext4_mb_new_inode_pa
-ffffffc008c9a740 D __tracepoint_ext4_mb_new_group_pa
-ffffffc008c9a788 D __tracepoint_ext4_mb_release_inode_pa
-ffffffc008c9a7d0 D __tracepoint_ext4_mb_release_group_pa
-ffffffc008c9a818 D __tracepoint_ext4_discard_preallocations
-ffffffc008c9a860 D __tracepoint_ext4_mb_discard_preallocations
-ffffffc008c9a8a8 D __tracepoint_ext4_request_blocks
-ffffffc008c9a8f0 D __tracepoint_ext4_allocate_blocks
-ffffffc008c9a938 D __tracepoint_ext4_free_blocks
-ffffffc008c9a980 D __tracepoint_ext4_sync_file_enter
-ffffffc008c9a9c8 D __tracepoint_ext4_sync_file_exit
-ffffffc008c9aa10 D __tracepoint_ext4_sync_fs
-ffffffc008c9aa58 D __tracepoint_ext4_alloc_da_blocks
-ffffffc008c9aaa0 D __tracepoint_ext4_mballoc_alloc
-ffffffc008c9aae8 D __tracepoint_ext4_mballoc_prealloc
-ffffffc008c9ab30 D __tracepoint_ext4_mballoc_discard
-ffffffc008c9ab78 D __tracepoint_ext4_mballoc_free
-ffffffc008c9abc0 D __tracepoint_ext4_forget
-ffffffc008c9ac08 D __tracepoint_ext4_da_update_reserve_space
-ffffffc008c9ac50 D __tracepoint_ext4_da_reserve_space
-ffffffc008c9ac98 D __tracepoint_ext4_da_release_space
-ffffffc008c9ace0 D __tracepoint_ext4_mb_bitmap_load
-ffffffc008c9ad28 D __tracepoint_ext4_mb_buddy_bitmap_load
-ffffffc008c9ad70 D __tracepoint_ext4_load_inode_bitmap
-ffffffc008c9adb8 D __tracepoint_ext4_read_block_bitmap_load
-ffffffc008c9ae00 D __tracepoint_ext4_punch_hole
-ffffffc008c9ae48 D __tracepoint_ext4_unlink_enter
-ffffffc008c9ae90 D __tracepoint_ext4_unlink_exit
-ffffffc008c9aed8 D __tracepoint_ext4_truncate_enter
-ffffffc008c9af20 D __tracepoint_ext4_truncate_exit
-ffffffc008c9af68 D __tracepoint_ext4_ind_map_blocks_enter
-ffffffc008c9afb0 D __tracepoint_ext4_ind_map_blocks_exit
-ffffffc008c9aff8 D __tracepoint_ext4_load_inode
-ffffffc008c9b040 D __tracepoint_ext4_journal_start
-ffffffc008c9b088 D __tracepoint_ext4_journal_start_reserved
-ffffffc008c9b0d0 D __tracepoint_ext4_trim_extent
-ffffffc008c9b118 D __tracepoint_ext4_trim_all_free
-ffffffc008c9b160 D __tracepoint_ext4_fsmap_low_key
-ffffffc008c9b1a8 D __tracepoint_ext4_fsmap_high_key
-ffffffc008c9b1f0 D __tracepoint_ext4_fsmap_mapping
-ffffffc008c9b238 D __tracepoint_ext4_getfsmap_low_key
-ffffffc008c9b280 D __tracepoint_ext4_getfsmap_high_key
-ffffffc008c9b2c8 D __tracepoint_ext4_getfsmap_mapping
-ffffffc008c9b310 D __tracepoint_ext4_shutdown
-ffffffc008c9b358 D __tracepoint_ext4_error
-ffffffc008c9b3a0 D __tracepoint_ext4_prefetch_bitmaps
-ffffffc008c9b3e8 D __tracepoint_ext4_lazy_itable_init
-ffffffc008c9b430 D __tracepoint_ext4_update_sb
-ffffffc008c9b478 D __tracepoint_ext4_ext_load_extent
-ffffffc008c9b4c0 D __tracepoint_ext4_ext_remove_space
-ffffffc008c9b508 D __tracepoint_ext4_ext_rm_leaf
-ffffffc008c9b550 D __tracepoint_ext4_remove_blocks
-ffffffc008c9b598 D __tracepoint_ext4_ext_rm_idx
-ffffffc008c9b5e0 D __tracepoint_ext4_ext_remove_space_done
-ffffffc008c9b628 D __tracepoint_ext4_ext_map_blocks_enter
-ffffffc008c9b670 D __tracepoint_ext4_ext_show_extent
-ffffffc008c9b6b8 D __tracepoint_ext4_ext_handle_unwritten_extents
-ffffffc008c9b700 D __tracepoint_ext4_ext_convert_to_initialized_enter
-ffffffc008c9b748 D __tracepoint_ext4_ext_convert_to_initialized_fastpath
-ffffffc008c9b790 D __tracepoint_ext4_get_implied_cluster_alloc_exit
-ffffffc008c9b7d8 D __tracepoint_ext4_ext_map_blocks_exit
-ffffffc008c9b820 D __tracepoint_ext4_zero_range
-ffffffc008c9b868 D __tracepoint_ext4_fallocate_enter
-ffffffc008c9b8b0 D __tracepoint_ext4_fallocate_exit
-ffffffc008c9b8f8 D __tracepoint_ext4_collapse_range
-ffffffc008c9b940 D __tracepoint_ext4_insert_range
-ffffffc008c9b988 D __tracepoint_ext4_es_find_extent_range_enter
-ffffffc008c9b9d0 D __tracepoint_ext4_es_find_extent_range_exit
-ffffffc008c9ba18 D __tracepoint_ext4_es_insert_extent
-ffffffc008c9ba60 D __tracepoint_ext4_es_cache_extent
-ffffffc008c9baa8 D __tracepoint_ext4_es_lookup_extent_enter
-ffffffc008c9baf0 D __tracepoint_ext4_es_lookup_extent_exit
-ffffffc008c9bb38 D __tracepoint_ext4_es_remove_extent
-ffffffc008c9bb80 D __tracepoint_ext4_es_shrink
-ffffffc008c9bbc8 D __tracepoint_ext4_es_shrink_scan_enter
-ffffffc008c9bc10 D __tracepoint_ext4_es_shrink_scan_exit
-ffffffc008c9bc58 D __tracepoint_ext4_es_shrink_count
-ffffffc008c9bca0 D __tracepoint_ext4_es_insert_delayed_block
-ffffffc008c9bce8 D __tracepoint_ext4_fc_track_unlink
-ffffffc008c9bd30 D __tracepoint_ext4_fc_track_link
-ffffffc008c9bd78 D __tracepoint_ext4_fc_track_create
-ffffffc008c9bdc0 D __tracepoint_ext4_fc_track_inode
-ffffffc008c9be08 D __tracepoint_ext4_fc_track_range
-ffffffc008c9be50 D __tracepoint_ext4_fc_commit_start
-ffffffc008c9be98 D __tracepoint_ext4_fc_commit_stop
-ffffffc008c9bee0 D __tracepoint_ext4_fc_replay_scan
-ffffffc008c9bf28 D __tracepoint_ext4_fc_replay
-ffffffc008c9bf70 D __tracepoint_ext4_fc_cleanup
-ffffffc008c9bfb8 D __tracepoint_ext4_fc_stats
-ffffffc008c9c000 D __tracepoint_jbd2_checkpoint
-ffffffc008c9c048 D __tracepoint_jbd2_start_commit
-ffffffc008c9c090 D __tracepoint_jbd2_commit_locking
-ffffffc008c9c0d8 D __tracepoint_jbd2_commit_flushing
-ffffffc008c9c120 D __tracepoint_jbd2_commit_logging
-ffffffc008c9c168 D __tracepoint_jbd2_drop_transaction
-ffffffc008c9c1b0 D __tracepoint_jbd2_end_commit
-ffffffc008c9c1f8 D __tracepoint_jbd2_submit_inode_data
-ffffffc008c9c240 D __tracepoint_jbd2_run_stats
-ffffffc008c9c288 D __tracepoint_jbd2_checkpoint_stats
-ffffffc008c9c2d0 D __tracepoint_jbd2_update_log_tail
-ffffffc008c9c318 D __tracepoint_jbd2_write_superblock
-ffffffc008c9c360 D __tracepoint_jbd2_shrink_count
-ffffffc008c9c3a8 D __tracepoint_jbd2_shrink_scan_enter
-ffffffc008c9c3f0 D __tracepoint_jbd2_shrink_scan_exit
-ffffffc008c9c438 D __tracepoint_jbd2_shrink_checkpoint_list
-ffffffc008c9c480 D __tracepoint_jbd2_handle_start
-ffffffc008c9c4c8 D __tracepoint_jbd2_handle_extend
-ffffffc008c9c510 D __tracepoint_jbd2_handle_restart
-ffffffc008c9c558 D __tracepoint_jbd2_lock_buffer_stall
-ffffffc008c9c5a0 D __tracepoint_jbd2_handle_stats
-ffffffc008c9c5e8 D __tracepoint_erofs_lookup
-ffffffc008c9c630 D __tracepoint_erofs_readpage
-ffffffc008c9c678 D __tracepoint_erofs_readpages
-ffffffc008c9c6c0 D __tracepoint_erofs_map_blocks_enter
-ffffffc008c9c708 D __tracepoint_z_erofs_map_blocks_iter_enter
-ffffffc008c9c750 D __tracepoint_erofs_map_blocks_exit
-ffffffc008c9c798 D __tracepoint_z_erofs_map_blocks_iter_exit
-ffffffc008c9c7e0 D __tracepoint_erofs_destroy_inode
-ffffffc008c9c828 D __tracepoint_erofs_fill_inode
-ffffffc008c9c870 D __tracepoint_selinux_audited
-ffffffc008c9c8b8 D __tracepoint_block_touch_buffer
-ffffffc008c9c900 D __tracepoint_block_dirty_buffer
-ffffffc008c9c948 D __tracepoint_block_rq_requeue
-ffffffc008c9c990 D __tracepoint_block_rq_complete
-ffffffc008c9c9d8 D __tracepoint_block_rq_error
-ffffffc008c9ca20 D __tracepoint_block_rq_insert
-ffffffc008c9ca68 D __tracepoint_block_rq_issue
-ffffffc008c9cab0 D __tracepoint_block_rq_merge
-ffffffc008c9caf8 D __tracepoint_block_bio_complete
-ffffffc008c9cb40 D __tracepoint_block_bio_bounce
-ffffffc008c9cb88 D __tracepoint_block_bio_backmerge
-ffffffc008c9cbd0 D __tracepoint_block_bio_frontmerge
-ffffffc008c9cc18 D __tracepoint_block_bio_queue
-ffffffc008c9cc60 D __tracepoint_block_getrq
-ffffffc008c9cca8 D __tracepoint_block_plug
-ffffffc008c9ccf0 D __tracepoint_block_unplug
-ffffffc008c9cd38 D __tracepoint_block_split
-ffffffc008c9cd80 D __tracepoint_block_bio_remap
-ffffffc008c9cdc8 D __tracepoint_block_rq_remap
-ffffffc008c9ce10 D __tracepoint_kyber_latency
-ffffffc008c9ce58 D __tracepoint_kyber_adjust
-ffffffc008c9cea0 D __tracepoint_kyber_throttled
-ffffffc008c9cee8 D __tracepoint_io_uring_create
-ffffffc008c9cf30 D __tracepoint_io_uring_register
-ffffffc008c9cf78 D __tracepoint_io_uring_file_get
-ffffffc008c9cfc0 D __tracepoint_io_uring_queue_async_work
-ffffffc008c9d008 D __tracepoint_io_uring_defer
-ffffffc008c9d050 D __tracepoint_io_uring_link
-ffffffc008c9d098 D __tracepoint_io_uring_cqring_wait
-ffffffc008c9d0e0 D __tracepoint_io_uring_fail_link
-ffffffc008c9d128 D __tracepoint_io_uring_complete
-ffffffc008c9d170 D __tracepoint_io_uring_submit_sqe
-ffffffc008c9d1b8 D __tracepoint_io_uring_req_failed
-ffffffc008c9d200 D __tracepoint_io_uring_cqe_overflow
-ffffffc008c9d248 D __tracepoint_io_uring_task_work_run
-ffffffc008c9d290 D __tracepoint_io_uring_short_write
-ffffffc008c9d2d8 D __tracepoint_io_uring_local_work_run
-ffffffc008c9d320 D __tracepoint_io_uring_task_add
-ffffffc008c9d368 D __tracepoint_io_uring_poll_arm
-ffffffc008c9d3b0 D __tracepoint_rwmmio_write
-ffffffc008c9d3f8 D __tracepoint_rwmmio_post_write
-ffffffc008c9d440 D __tracepoint_rwmmio_read
-ffffffc008c9d488 D __tracepoint_rwmmio_post_read
-ffffffc008c9d4d0 D __tracepoint_clk_enable
-ffffffc008c9d518 D __tracepoint_clk_enable_complete
-ffffffc008c9d560 D __tracepoint_clk_disable
-ffffffc008c9d5a8 D __tracepoint_clk_disable_complete
-ffffffc008c9d5f0 D __tracepoint_clk_prepare
-ffffffc008c9d638 D __tracepoint_clk_prepare_complete
-ffffffc008c9d680 D __tracepoint_clk_unprepare
-ffffffc008c9d6c8 D __tracepoint_clk_unprepare_complete
-ffffffc008c9d710 D __tracepoint_clk_set_rate
-ffffffc008c9d758 D __tracepoint_clk_set_rate_complete
-ffffffc008c9d7a0 D __tracepoint_clk_set_min_rate
-ffffffc008c9d7e8 D __tracepoint_clk_set_max_rate
-ffffffc008c9d830 D __tracepoint_clk_set_rate_range
-ffffffc008c9d878 D __tracepoint_clk_set_parent
-ffffffc008c9d8c0 D __tracepoint_clk_set_parent_complete
-ffffffc008c9d908 D __tracepoint_clk_set_phase
-ffffffc008c9d950 D __tracepoint_clk_set_phase_complete
-ffffffc008c9d998 D __tracepoint_clk_set_duty_cycle
-ffffffc008c9d9e0 D __tracepoint_clk_set_duty_cycle_complete
-ffffffc008c9da28 D __tracepoint_add_device_to_group
-ffffffc008c9da70 D __tracepoint_remove_device_from_group
-ffffffc008c9dab8 D __tracepoint_attach_device_to_domain
-ffffffc008c9db00 D __tracepoint_detach_device_from_domain
-ffffffc008c9db48 D __tracepoint_map
-ffffffc008c9db90 D __tracepoint_unmap
-ffffffc008c9dbd8 D __tracepoint_io_page_fault
-ffffffc008c9dc20 D __tracepoint_regmap_reg_write
-ffffffc008c9dc68 D __tracepoint_regmap_reg_read
-ffffffc008c9dcb0 D __tracepoint_regmap_reg_read_cache
-ffffffc008c9dcf8 D __tracepoint_regmap_bulk_write
-ffffffc008c9dd40 D __tracepoint_regmap_bulk_read
-ffffffc008c9dd88 D __tracepoint_regmap_hw_read_start
-ffffffc008c9ddd0 D __tracepoint_regmap_hw_read_done
-ffffffc008c9de18 D __tracepoint_regmap_hw_write_start
-ffffffc008c9de60 D __tracepoint_regmap_hw_write_done
-ffffffc008c9dea8 D __tracepoint_regcache_sync
-ffffffc008c9def0 D __tracepoint_regmap_cache_only
-ffffffc008c9df38 D __tracepoint_regmap_cache_bypass
-ffffffc008c9df80 D __tracepoint_regmap_async_write_start
-ffffffc008c9dfc8 D __tracepoint_regmap_async_io_complete
-ffffffc008c9e010 D __tracepoint_regmap_async_complete_start
-ffffffc008c9e058 D __tracepoint_regmap_async_complete_done
-ffffffc008c9e0a0 D __tracepoint_regcache_drop_region
-ffffffc008c9e0e8 D __tracepoint_thermal_pressure_update
-ffffffc008c9e130 D __tracepoint_devres_log
-ffffffc008c9e178 D __tracepoint_dma_fence_emit
-ffffffc008c9e1c0 D __tracepoint_dma_fence_init
-ffffffc008c9e208 D __tracepoint_dma_fence_destroy
-ffffffc008c9e250 D __tracepoint_dma_fence_enable_signal
-ffffffc008c9e298 D __tracepoint_dma_fence_signaled
-ffffffc008c9e2e0 D __tracepoint_dma_fence_wait_start
-ffffffc008c9e328 D __tracepoint_dma_fence_wait_end
-ffffffc008c9e370 D __tracepoint_rtc_set_time
-ffffffc008c9e3b8 D __tracepoint_rtc_read_time
-ffffffc008c9e400 D __tracepoint_rtc_set_alarm
-ffffffc008c9e448 D __tracepoint_rtc_read_alarm
-ffffffc008c9e490 D __tracepoint_rtc_irq_set_freq
-ffffffc008c9e4d8 D __tracepoint_rtc_irq_set_state
-ffffffc008c9e520 D __tracepoint_rtc_alarm_irq_enable
-ffffffc008c9e568 D __tracepoint_rtc_set_offset
-ffffffc008c9e5b0 D __tracepoint_rtc_read_offset
-ffffffc008c9e5f8 D __tracepoint_rtc_timer_enqueue
-ffffffc008c9e640 D __tracepoint_rtc_timer_dequeue
-ffffffc008c9e688 D __tracepoint_rtc_timer_fired
-ffffffc008c9e6d0 D __tracepoint_watchdog_start
-ffffffc008c9e718 D __tracepoint_watchdog_ping
-ffffffc008c9e760 D __tracepoint_watchdog_stop
-ffffffc008c9e7a8 D __tracepoint_watchdog_set_timeout
-ffffffc008c9e7f0 D __tracepoint_scmi_xfer_begin
-ffffffc008c9e838 D __tracepoint_scmi_xfer_response_wait
-ffffffc008c9e880 D __tracepoint_scmi_xfer_end
-ffffffc008c9e8c8 D __tracepoint_scmi_rx_done
-ffffffc008c9e910 D __tracepoint_scmi_msg_dump
-ffffffc008c9e958 D __tracepoint_scmi_fc_call
-ffffffc008c9e9a0 D __tracepoint_mc_event
-ffffffc008c9e9e8 D __tracepoint_arm_event
-ffffffc008c9ea30 D __tracepoint_non_standard_event
-ffffffc008c9ea78 D __tracepoint_aer_event
-ffffffc008c9eac0 D __tracepoint_kfree_skb
-ffffffc008c9eb08 D __tracepoint_consume_skb
-ffffffc008c9eb50 D __tracepoint_skb_copy_datagram_iovec
-ffffffc008c9eb98 D __tracepoint_net_dev_start_xmit
-ffffffc008c9ebe0 D __tracepoint_net_dev_xmit
-ffffffc008c9ec28 D __tracepoint_net_dev_xmit_timeout
-ffffffc008c9ec70 D __tracepoint_net_dev_queue
-ffffffc008c9ecb8 D __tracepoint_netif_receive_skb
-ffffffc008c9ed00 D __tracepoint_netif_rx
-ffffffc008c9ed48 D __tracepoint_napi_gro_frags_entry
-ffffffc008c9ed90 D __tracepoint_napi_gro_receive_entry
-ffffffc008c9edd8 D __tracepoint_netif_receive_skb_entry
-ffffffc008c9ee20 D __tracepoint_netif_receive_skb_list_entry
-ffffffc008c9ee68 D __tracepoint_netif_rx_entry
-ffffffc008c9eeb0 D __tracepoint_napi_gro_frags_exit
-ffffffc008c9eef8 D __tracepoint_napi_gro_receive_exit
-ffffffc008c9ef40 D __tracepoint_netif_receive_skb_exit
-ffffffc008c9ef88 D __tracepoint_netif_rx_exit
-ffffffc008c9efd0 D __tracepoint_netif_receive_skb_list_exit
-ffffffc008c9f018 D __tracepoint_napi_poll
-ffffffc008c9f060 D __tracepoint_sock_rcvqueue_full
-ffffffc008c9f0a8 D __tracepoint_sock_exceed_buf_limit
-ffffffc008c9f0f0 D __tracepoint_inet_sock_set_state
-ffffffc008c9f138 D __tracepoint_inet_sk_error_report
-ffffffc008c9f180 D __tracepoint_udp_fail_queue_rcv_skb
-ffffffc008c9f1c8 D __tracepoint_tcp_retransmit_skb
-ffffffc008c9f210 D __tracepoint_tcp_send_reset
-ffffffc008c9f258 D __tracepoint_tcp_receive_reset
-ffffffc008c9f2a0 D __tracepoint_tcp_destroy_sock
-ffffffc008c9f2e8 D __tracepoint_tcp_rcv_space_adjust
-ffffffc008c9f330 D __tracepoint_tcp_retransmit_synack
-ffffffc008c9f378 D __tracepoint_tcp_probe
-ffffffc008c9f3c0 D __tracepoint_tcp_bad_csum
-ffffffc008c9f408 D __tracepoint_tcp_cong_state_set
-ffffffc008c9f450 D __tracepoint_fib_table_lookup
-ffffffc008c9f498 D __tracepoint_qdisc_dequeue
-ffffffc008c9f4e0 D __tracepoint_qdisc_enqueue
-ffffffc008c9f528 D __tracepoint_qdisc_reset
-ffffffc008c9f570 D __tracepoint_qdisc_destroy
-ffffffc008c9f5b8 D __tracepoint_qdisc_create
-ffffffc008c9f600 D __tracepoint_br_fdb_add
-ffffffc008c9f648 D __tracepoint_br_fdb_external_learn_add
-ffffffc008c9f690 D __tracepoint_fdb_delete
-ffffffc008c9f6d8 D __tracepoint_br_fdb_update
-ffffffc008c9f720 D __tracepoint_neigh_create
-ffffffc008c9f768 D __tracepoint_neigh_update
-ffffffc008c9f7b0 D __tracepoint_neigh_update_done
-ffffffc008c9f7f8 D __tracepoint_neigh_timer_handler
-ffffffc008c9f840 D __tracepoint_neigh_event_send_done
-ffffffc008c9f888 D __tracepoint_neigh_event_send_dead
-ffffffc008c9f8d0 D __tracepoint_neigh_cleanup_and_release
-ffffffc008c9f918 D __tracepoint_netlink_extack
-ffffffc008c9f960 D __tracepoint_fib6_table_lookup
-ffffffc008c9f9a8 D __tracepoint_virtio_transport_alloc_pkt
-ffffffc008c9f9f0 D __tracepoint_virtio_transport_recv_pkt
-ffffffc008c9fa38 D __tracepoint_ma_op
-ffffffc008c9fa80 D __tracepoint_ma_read
-ffffffc008c9fac8 D __tracepoint_ma_write
-ffffffc008c9fb10 D __start___dyndbg
-ffffffc008c9fb10 D __start___dyndbg_classes
-ffffffc008c9fb10 D __start___trace_bprintk_fmt
-ffffffc008c9fb10 D __start___tracepoint_str
-ffffffc008c9fb10 D __stop___dyndbg
-ffffffc008c9fb10 D __stop___dyndbg_classes
-ffffffc008c9fb10 D __stop___trace_bprintk_fmt
-ffffffc008c9fb10 d ipi_types
-ffffffc008c9fb48 d freeze_secondary_cpus.___tp_str
-ffffffc008c9fb50 d freeze_secondary_cpus.___tp_str.6
-ffffffc008c9fb58 d thaw_secondary_cpus.___tp_str
-ffffffc008c9fb60 d thaw_secondary_cpus.___tp_str.11
-ffffffc008c9fb68 d thaw_processes.___tp_str
-ffffffc008c9fb70 d thaw_processes.___tp_str.3
-ffffffc008c9fb78 d suspend_devices_and_enter.___tp_str
-ffffffc008c9fb80 d suspend_devices_and_enter.___tp_str.8
-ffffffc008c9fb88 d suspend_enter.___tp_str
-ffffffc008c9fb90 d suspend_enter.___tp_str.20
-ffffffc008c9fb98 d s2idle_enter.___tp_str
-ffffffc008c9fba0 d s2idle_enter.___tp_str.21
-ffffffc008c9fba8 d enter_state.___tp_str
-ffffffc008c9fbb0 d enter_state.___tp_str.23
-ffffffc008c9fbb8 d enter_state.___tp_str.25
-ffffffc008c9fbc0 d enter_state.___tp_str.26
-ffffffc008c9fbc8 d suspend_prepare.___tp_str
-ffffffc008c9fbd0 d suspend_prepare.___tp_str.28
-ffffffc008c9fbd8 d tp_rcu_varname
-ffffffc008c9fbe0 d rcutree_dying_cpu.___tp_str
-ffffffc008c9fbe8 d rcutree_dying_cpu.___tp_str.1
-ffffffc008c9fbf0 d rcu_sched_clock_irq.___tp_str
-ffffffc008c9fbf8 d rcu_sched_clock_irq.___tp_str.5
-ffffffc008c9fc00 d call_rcu.___tp_str
-ffffffc008c9fc08 d rcu_barrier.___tp_str
-ffffffc008c9fc10 d rcu_barrier.___tp_str.11
-ffffffc008c9fc18 d rcu_barrier.___tp_str.13
-ffffffc008c9fc20 d rcu_barrier.___tp_str.15
-ffffffc008c9fc28 d rcu_barrier.___tp_str.17
-ffffffc008c9fc30 d rcu_barrier.___tp_str.19
-ffffffc008c9fc38 d rcu_barrier.___tp_str.21
-ffffffc008c9fc40 d rcutree_prepare_cpu.___tp_str
-ffffffc008c9fc48 d rcu_note_context_switch.___tp_str
-ffffffc008c9fc50 d rcu_note_context_switch.___tp_str.52
-ffffffc008c9fc58 d __note_gp_changes.___tp_str
-ffffffc008c9fc60 d __note_gp_changes.___tp_str.57
-ffffffc008c9fc68 d rcu_accelerate_cbs.___tp_str
-ffffffc008c9fc70 d rcu_accelerate_cbs.___tp_str.60
-ffffffc008c9fc78 d rcu_accelerate_cbs.___tp_str.62
-ffffffc008c9fc80 d rcu_accelerate_cbs.___tp_str.64
-ffffffc008c9fc88 d rcu_start_this_gp.___tp_str
-ffffffc008c9fc90 d rcu_start_this_gp.___tp_str.67
-ffffffc008c9fc98 d rcu_start_this_gp.___tp_str.69
-ffffffc008c9fca0 d rcu_start_this_gp.___tp_str.71
-ffffffc008c9fca8 d rcu_start_this_gp.___tp_str.73
-ffffffc008c9fcb0 d rcu_start_this_gp.___tp_str.75
-ffffffc008c9fcb8 d rcu_start_this_gp.___tp_str.77
-ffffffc008c9fcc0 d print_cpu_stall.___tp_str
-ffffffc008c9fcc8 d print_other_cpu_stall.___tp_str
-ffffffc008c9fcd0 d rcu_barrier_entrain.___tp_str
-ffffffc008c9fcd8 d rcu_barrier_entrain.___tp_str.118
-ffffffc008c9fce0 d rcu_barrier_callback.___tp_str
-ffffffc008c9fce8 d rcu_barrier_callback.___tp_str.121
-ffffffc008c9fcf0 d rcu_gp_kthread.___tp_str
-ffffffc008c9fcf8 d rcu_gp_kthread.___tp_str.127
-ffffffc008c9fd00 d rcu_gp_init.___tp_str
-ffffffc008c9fd08 d rcu_preempt_check_blocked_tasks.___tp_str
-ffffffc008c9fd10 d rcu_gp_fqs_loop.___tp_str
-ffffffc008c9fd18 d rcu_gp_fqs_loop.___tp_str.140
-ffffffc008c9fd20 d rcu_gp_fqs_loop.___tp_str.142
-ffffffc008c9fd28 d rcu_gp_fqs_loop.___tp_str.144
-ffffffc008c9fd30 d dyntick_save_progress_counter.___tp_str
-ffffffc008c9fd38 d rcu_implicit_dynticks_qs.___tp_str
-ffffffc008c9fd40 d rcu_gp_cleanup.___tp_str
-ffffffc008c9fd48 d rcu_gp_cleanup.___tp_str.150
-ffffffc008c9fd50 d rcu_gp_cleanup.___tp_str.152
-ffffffc008c9fd58 d rcu_future_gp_cleanup.___tp_str
-ffffffc008c9fd60 d rcu_future_gp_cleanup.___tp_str.153
-ffffffc008c9fd68 d rcu_cpu_kthread.___tp_str
-ffffffc008c9fd70 d rcu_cpu_kthread.___tp_str.158
-ffffffc008c9fd78 d rcu_cpu_kthread.___tp_str.160
-ffffffc008c9fd80 d rcu_cpu_kthread.___tp_str.162
-ffffffc008c9fd88 d rcu_core.___tp_str
-ffffffc008c9fd90 d rcu_core.___tp_str.165
-ffffffc008c9fd98 d rcu_do_batch.___tp_str
-ffffffc008c9fda0 d do_nocb_deferred_wakeup_timer.___tp_str
-ffffffc008c9fda8 d do_nocb_deferred_wakeup_common.___tp_str
-ffffffc008c9fdb0 d __wake_nocb_gp.___tp_str
-ffffffc008c9fdb8 d __wake_nocb_gp.___tp_str.208
-ffffffc008c9fdc0 d rcu_exp_gp_seq_snap.___tp_str
-ffffffc008c9fdc8 d exp_funnel_lock.___tp_str
-ffffffc008c9fdd0 d exp_funnel_lock.___tp_str.227
-ffffffc008c9fdd8 d exp_funnel_lock.___tp_str.229
-ffffffc008c9fde0 d sync_rcu_exp_select_cpus.___tp_str
-ffffffc008c9fde8 d sync_rcu_exp_select_cpus.___tp_str.231
-ffffffc008c9fdf0 d __sync_rcu_exp_select_node_cpus.___tp_str
-ffffffc008c9fdf8 d rcu_exp_wait_wake.___tp_str
-ffffffc008c9fe00 d rcu_exp_wait_wake.___tp_str.234
-ffffffc008c9fe08 d synchronize_rcu_expedited_wait.___tp_str
-ffffffc008c9fe10 d synchronize_rcu_expedited_wait.___tp_str.237
-ffffffc008c9fe18 d sync_exp_work_done.___tp_str
-ffffffc008c9fe20 d rcu_nocb_try_bypass.___tp_str
-ffffffc008c9fe28 d rcu_nocb_try_bypass.___tp_str.249
-ffffffc008c9fe30 d rcu_nocb_try_bypass.___tp_str.250
-ffffffc008c9fe38 d rcu_nocb_try_bypass.___tp_str.252
-ffffffc008c9fe40 d rcu_nocb_try_bypass.___tp_str.254
-ffffffc008c9fe48 d __call_rcu_nocb_wake.___tp_str
-ffffffc008c9fe50 d __call_rcu_nocb_wake.___tp_str.257
-ffffffc008c9fe58 d __call_rcu_nocb_wake.___tp_str.259
-ffffffc008c9fe60 d __call_rcu_nocb_wake.___tp_str.261
-ffffffc008c9fe68 d __call_rcu_nocb_wake.___tp_str.263
-ffffffc008c9fe70 d __call_rcu_nocb_wake.___tp_str.265
-ffffffc008c9fe78 d nocb_gp_wait.___tp_str
-ffffffc008c9fe80 d nocb_gp_wait.___tp_str.275
-ffffffc008c9fe88 d nocb_gp_wait.___tp_str.277
-ffffffc008c9fe90 d nocb_gp_wait.___tp_str.279
-ffffffc008c9fe98 d nocb_gp_wait.___tp_str.281
-ffffffc008c9fea0 d nocb_gp_wait.___tp_str.283
-ffffffc008c9fea8 d nocb_gp_wait.___tp_str.285
-ffffffc008c9feb0 d nocb_gp_sleep.___tp_str
-ffffffc008c9feb8 d nocb_gp_sleep.___tp_str.288
-ffffffc008c9fec0 d nocb_cb_wait.___tp_str
-ffffffc008c9fec8 d nocb_cb_wait.___tp_str.291
-ffffffc008c9fed0 d rcu_qs.___tp_str
-ffffffc008c9fed8 d rcu_qs.___tp_str.333
-ffffffc008c9fee0 d rcu_preempt_deferred_qs_irqrestore.___tp_str
-ffffffc008c9fee8 d rcu_preempt_deferred_qs_irqrestore.___tp_str.335
-ffffffc008c9fef0 d rcu_boost_kthread.___tp_str
-ffffffc008c9fef8 d rcu_boost_kthread.___tp_str.339
-ffffffc008c9ff00 d rcu_boost_kthread.___tp_str.341
-ffffffc008c9ff08 d rcu_boost_kthread.___tp_str.343
-ffffffc008c9ff10 d rcu_boost_kthread.___tp_str.345
-ffffffc008c9ff18 d tick_freeze.___tp_str
-ffffffc008c9ff20 d tick_unfreeze.___tp_str
-ffffffc008c9ff28 d ct_nmi_exit.___tp_str
-ffffffc008c9ff30 d ct_nmi_exit.___tp_str.1
-ffffffc008c9ff38 d ct_nmi_enter.___tp_str
-ffffffc008c9ff40 d ct_nmi_enter.___tp_str.4
-ffffffc008c9ff48 d ct_kernel_exit.___tp_str
-ffffffc008c9ff50 d ct_kernel_enter.___tp_str
-ffffffc008c9ff58 d syscore_suspend.___tp_str
-ffffffc008c9ff60 d syscore_suspend.___tp_str.4
-ffffffc008c9ff68 d syscore_resume.___tp_str
-ffffffc008c9ff70 d syscore_resume.___tp_str.10
-ffffffc008c9ff78 d dpm_resume_early.___tp_str
-ffffffc008c9ff80 d dpm_resume_early.___tp_str.4
-ffffffc008c9ff88 d dpm_resume.___tp_str
-ffffffc008c9ff90 d dpm_resume.___tp_str.7
-ffffffc008c9ff98 d dpm_complete.___tp_str
-ffffffc008c9ffa0 d dpm_complete.___tp_str.9
-ffffffc008c9ffa8 d dpm_suspend_late.___tp_str
-ffffffc008c9ffb0 d dpm_suspend_late.___tp_str.13
-ffffffc008c9ffb8 d dpm_suspend.___tp_str
-ffffffc008c9ffc0 d dpm_suspend.___tp_str.16
-ffffffc008c9ffc8 d dpm_prepare.___tp_str
-ffffffc008c9ffd0 d dpm_prepare.___tp_str.20
-ffffffc008c9ffd8 d dpm_noirq_resume_devices.___tp_str
-ffffffc008c9ffe0 d dpm_noirq_resume_devices.___tp_str.27
-ffffffc008c9ffe8 d dpm_noirq_suspend_devices.___tp_str
-ffffffc008c9fff0 d dpm_noirq_suspend_devices.___tp_str.61
-ffffffc008c9fff8 D __start___bug_table
-ffffffc008c9fff8 D __stop___tracepoint_str
-ffffffc008cb51b4 D __stop___bug_table
-ffffffc008cb5800 D __early_cpu_boot_status
-ffffffc008cb5800 D __mmuoff_data_start
-ffffffc008cb6000 D secondary_holding_pen_release
-ffffffc008cb6008 D __bss_start
-ffffffc008cb6008 D __mmuoff_data_end
-ffffffc008cb6008 D _edata
-ffffffc008cb7000 b bm_pmd
-ffffffc008cb8000 b bm_pte
-ffffffc008cb9000 B empty_zero_page
-ffffffc008cba000 B initcall_debug
-ffffffc008cba008 B saved_command_line
-ffffffc008cba010 b static_command_line
-ffffffc008cba018 b extra_init_args
-ffffffc008cba020 b panic_later
-ffffffc008cba028 b panic_param
-ffffffc008cba030 B reset_devices
-ffffffc008cba038 b execute_command
-ffffffc008cba040 b bootconfig_found
-ffffffc008cba048 b initargs_offs
-ffffffc008cba050 b extra_command_line
-ffffffc008cba058 b initcall_calltime
-ffffffc008cba060 B ROOT_DEV
-ffffffc008cba064 b root_wait
-ffffffc008cba065 b is_tmpfs
-ffffffc008cba068 b out_file
-ffffffc008cba070 b in_file
-ffffffc008cba078 b in_pos
-ffffffc008cba080 b out_pos
-ffffffc008cba088 b decompress_error
-ffffffc008cba090 B initrd_start
-ffffffc008cba098 B initrd_end
-ffffffc008cba0a0 B initrd_below_start_ok
-ffffffc008cba0a4 b real_root_dev
-ffffffc008cba0a8 b initramfs_cookie
-ffffffc008cba0b0 b calibrate_delay.printed
-ffffffc008cba0b8 B preset_lpj
-ffffffc008cba0c0 B lpj_fine
-ffffffc008cba0c8 b debug_hook_lock
-ffffffc008cba0cc b vl_config
-ffffffc008cba0d4 b tagged_addr_disabled
-ffffffc008cba0d8 B pm_power_off
-ffffffc008cba0e0 B mpidr_hash
-ffffffc008cba100 b num_standard_resources
-ffffffc008cba108 b standard_resources
-ffffffc008cba110 B show_unhandled_signals
-ffffffc008cba114 b die_lock
-ffffffc008cba118 b undef_lock
-ffffffc008cba11c b __die.die_counter
-ffffffc008cba120 b boot_cpu_data
-ffffffc008cba548 B __icache_flags
-ffffffc008cba550 b reg_user_mask_modification
-ffffffc008cba558 B arm64_mismatched_32bit_el0
-ffffffc008cba568 b cpu_32bit_el0_mask
-ffffffc008cba570 b __meltdown_safe
-ffffffc008cba578 B boot_capabilities
-ffffffc008cba588 b __kpti_forced
-ffffffc008cba590 b kpti_ng_temp_alloc
-ffffffc008cba598 b has_hw_dbm.detected
-ffffffc008cba599 b lazy_init_32bit_cpu_features.boot_cpu_32bit_regs_overridden
-ffffffc008cba5a0 B cpu_hwcaps
-ffffffc008cba5b0 B arm64_use_ng_mappings
-ffffffc008cba5b8 b applied_alternatives
-ffffffc008cba5c8 b all_alternatives_applied
-ffffffc008cba5d0 B secondary_data
-ffffffc008cba5e0 b cpus_stuck_in_kernel
-ffffffc008cba5e8 B irq_err_count
-ffffffc008cba5f0 b crash_smp_send_stop.cpus_stopped
-ffffffc008cba5f4 b waiting_for_crash_ipi
-ffffffc008cba5f8 b cpu_release_addr
-ffffffc008cba6f8 b spectre_v2_state
-ffffffc008cba6fc b spectre_v4_state
-ffffffc008cba700 b spectre_bhb_state
-ffffffc008cba704 b spectre_bhb_loop_affected.max_bhb_k
-ffffffc008cba708 b system_bhb_mitigations
-ffffffc008cba710 b spectre_v4_enable_hw_mitigation.undef_hook_registered
-ffffffc008cba714 b spectre_v4_enable_hw_mitigation.hook_lock
-ffffffc008cba718 b is_spectre_bhb_fw_affected.system_affected
-ffffffc008cba71c b patch_lock
-ffffffc008cba720 b armv8_pmu_register_sysctl_table.tbl_registered
-ffffffc008cba724 b core_num_brps
-ffffffc008cba728 b core_num_wrps
-ffffffc008cba730 b hw_breakpoint_restore
-ffffffc008cba738 B sleep_save_stash
-ffffffc008cba740 B paravirt_steal_enabled
-ffffffc008cba750 b steal_acc
-ffffffc008cba758 B paravirt_steal_rq_enabled
-ffffffc008cba768 B mte_async_or_asymm_mode
-ffffffc008cba778 b ioremap_guard
-ffffffc008cba780 b guard_granule
-ffffffc008cba788 b ioremap_guard_key
-ffffffc008cba798 b ioremap_guard_array
-ffffffc008cba7a8 b memshare_granule_sz
-ffffffc008cba7b0 b memshare_granule_sz
-ffffffc008cba7b8 b swapper_pgdir_lock
-ffffffc008cba7c0 b map_kernel.vmlinux_text
-ffffffc008cba800 b map_kernel.vmlinux_rodata
-ffffffc008cba840 b map_kernel.vmlinux_inittext
-ffffffc008cba880 b map_kernel.vmlinux_initdata
-ffffffc008cba8c0 b map_kernel.vmlinux_data
-ffffffc008cba900 b asid_bits
-ffffffc008cba908 b asid_generation
-ffffffc008cba910 b cpu_asid_lock
-ffffffc008cba918 b tlb_flush_pending
-ffffffc008cba920 b pinned_asid_map
-ffffffc008cba928 b nr_pinned_asids
-ffffffc008cba930 b max_pinned_asids
-ffffffc008cba938 b asid_map
-ffffffc008cba940 b mte_pages
-ffffffc008cba950 b vm_area_cachep
-ffffffc008cba958 b mm_cachep
-ffffffc008cba960 b task_struct_cachep
-ffffffc008cba968 b max_threads
-ffffffc008cba970 B sighand_cachep
-ffffffc008cba978 b signal_cachep
-ffffffc008cba980 B files_cachep
-ffffffc008cba988 B fs_cachep
-ffffffc008cba990 B total_forks
-ffffffc008cba998 B nr_threads
-ffffffc008cba99c b copy_signal.__key
-ffffffc008cba99c b copy_signal.__key.35
-ffffffc008cba99c b copy_signal.__key.37
-ffffffc008cba99c b futex_init_task.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b init_completion.__key
-ffffffc008cba99c b mmap_init_lock.__key
-ffffffc008cba99c B panic_on_taint_nousertaint
-ffffffc008cba99c b sighand_ctor.__key
-ffffffc008cba9a0 B panic_notifier_list
-ffffffc008cba9b0 b warn_count
-ffffffc008cba9b4 b panic.buf
-ffffffc008cbadb4 B crash_kexec_post_notifiers
-ffffffc008cbadb8 B panic_blink
-ffffffc008cbadc0 b print_tainted.buf
-ffffffc008cbade0 b tainted_mask.llvm.13610761371895458860
-ffffffc008cbade8 B panic_on_taint
-ffffffc008cbadf0 b pause_on_oops_flag
-ffffffc008cbadf8 B panic_print
-ffffffc008cbae00 b pause_on_oops
-ffffffc008cbae04 b do_oops_enter_exit.spin_counter
-ffffffc008cbae08 b pause_on_oops_lock
-ffffffc008cbae0c b cpu_hotplug_disabled
-ffffffc008cbae10 B cpus_booted_once_mask
-ffffffc008cbae18 b frozen_cpus
-ffffffc008cbae20 B cpuhp_tasks_frozen
-ffffffc008cbae24 B __boot_cpu_id
-ffffffc008cbae28 b oops_count
-ffffffc008cbae2c b check_stack_usage.low_water_lock
-ffffffc008cbae30 b resource_lock.llvm.4601101039909387224
-ffffffc008cbae38 b iomem_inode
-ffffffc008cbae40 b strict_iomem_checks
-ffffffc008cbae44 b reserve_setup.reserved
-ffffffc008cbae48 b reserve_setup.reserve
-ffffffc008cbaf48 b iomem_init_inode.iomem_vfs_mount
-ffffffc008cbaf50 b iomem_init_inode.iomem_fs_cnt
-ffffffc008cbaf54 B sysctl_legacy_va_layout
-ffffffc008cbaf58 b dev_table
-ffffffc008cbaf98 b uidhash_lock
-ffffffc008cbafa0 b uidhash_table
-ffffffc008cbb3a0 b uid_cachep
-ffffffc008cbb3a8 b sigqueue_cachep.llvm.186136977001172786
-ffffffc008cbb3a8 b user_epoll_alloc.__key
-ffffffc008cbb3b0 b running_helpers
-ffffffc008cbb3b4 b umh_sysctl_lock
-ffffffc008cbb3b8 b wq_disable_numa
-ffffffc008cbb3bc b wq_power_efficient
-ffffffc008cbb3c0 b wq_debug_force_rr_cpu
-ffffffc008cbb3c1 b wq_online
-ffffffc008cbb3c2 b alloc_workqueue.__key
-ffffffc008cbb3c4 b wq_mayday_lock
-ffffffc008cbb3c8 b workqueue_freezing
-ffffffc008cbb3d0 b wq_unbound_cpumask
-ffffffc008cbb3d8 b pwq_cache
-ffffffc008cbb3e0 b unbound_std_wq_attrs
-ffffffc008cbb3f0 b ordered_wq_attrs
-ffffffc008cbb400 b unbound_pool_hash
-ffffffc008cbb600 b wq_select_unbound_cpu.printed_dbg_warning
-ffffffc008cbb608 b manager_wait
-ffffffc008cbb610 b restore_unbound_workers_cpumask.cpumask
-ffffffc008cbb618 b wq_watchdog_timer
-ffffffc008cbb640 b alloc_pid.__key
-ffffffc008cbb640 b work_exited
-ffffffc008cbb650 B module_kset
-ffffffc008cbb658 B module_sysfs_initialized
-ffffffc008cbb65c b kmalloced_params_lock
-ffffffc008cbb660 b kthread_create_lock
-ffffffc008cbb668 B kthreadd_task
-ffffffc008cbb670 b nsproxy_cachep.llvm.10457135627104497165
-ffffffc008cbb678 b die_chain
-ffffffc008cbb678 b srcu_init_notifier_head.__key
-ffffffc008cbb688 B rcu_expedited
-ffffffc008cbb68c B rcu_normal
-ffffffc008cbb690 B kernel_kobj
-ffffffc008cbb698 b cred_jar.llvm.18308237629466808512
-ffffffc008cbb6a0 b restart_handler_list.llvm.5055213281200411774
-ffffffc008cbb6b0 B reboot_mode
-ffffffc008cbb6b8 b power_off_handler_list
-ffffffc008cbb6c8 b platform_power_off_handler
-ffffffc008cbb6d0 b poweroff_force
-ffffffc008cbb6d4 B reboot_force
-ffffffc008cbb6d8 b platform_sys_off_handler
-ffffffc008cbb710 B cad_pid
-ffffffc008cbb718 B reboot_cpu
-ffffffc008cbb71c b entry_count
-ffffffc008cbb720 b entry_count
-ffffffc008cbb724 b async_lock
-ffffffc008cbb728 b ucounts_hashtable
-ffffffc008cbd728 b ucounts_lock
-ffffffc008cbd730 b ue_zero
-ffffffc008cbd738 b user_namespace_sysctl_init.user_header
-ffffffc008cbd740 b user_namespace_sysctl_init.empty
-ffffffc008cbd780 b cpu_resched_latency.warned_once
-ffffffc008cbd784 b num_cpus_frozen
-ffffffc008cbd788 B sched_schedstats
-ffffffc008cbd798 B sched_numa_balancing
-ffffffc008cbd7c0 b nohz
-ffffffc008cbd7e8 B sched_thermal_decay_shift
-ffffffc008cbd7ec b balancing
-ffffffc008cbd7f0 b sched_clock_irqtime.llvm.8670909280109898872
-ffffffc008cbd7f8 b dl_generation
-ffffffc008cbd800 B def_rt_bandwidth
-ffffffc008cbd860 b sched_clock_running.llvm.17644312806107487156
-ffffffc008cbd870 b debugfs_sched
-ffffffc008cbd878 b sd_sysctl_cpus
-ffffffc008cbd880 b sd_dentry
-ffffffc008cbd888 B avenrun
-ffffffc008cbd8a0 b sched_domains_tmpmask
-ffffffc008cbd8a8 b sched_domains_tmpmask2
-ffffffc008cbd8b0 b fallback_doms
-ffffffc008cbd8b8 b ndoms_cur
-ffffffc008cbd8c0 b doms_cur
-ffffffc008cbd8c8 b dattr_cur
-ffffffc008cbd8d0 b housekeeping
-ffffffc008cbd920 B sched_domain_level_max
-ffffffc008cbd928 b calc_load_nohz
-ffffffc008cbd938 b calc_load_idx
-ffffffc008cbd93c b group_init.__key
-ffffffc008cbd93c b group_init.__key.295
-ffffffc008cbd940 B def_root_domain
-ffffffc008cbe068 B calc_load_update
-ffffffc008cbe070 B psi_disabled
-ffffffc008cbe080 B calc_load_tasks
-ffffffc008cbe088 B sched_asym_cpucapacity
-ffffffc008cbe098 B housekeeping_overridden
-ffffffc008cbe0a8 b __percpu_init_rwsem.__key
-ffffffc008cbe0a8 b rt_mutex_adjust_prio_chain.prev_max
-ffffffc008cbe0ac b pm_qos_lock
-ffffffc008cbe0b0 b freq_constraints_init.__key
-ffffffc008cbe0b0 b freq_constraints_init.__key.1
-ffffffc008cbe0b0 B power_kobj
-ffffffc008cbe0b8 B pm_wq
-ffffffc008cbe0c0 b orig_fgconsole
-ffffffc008cbe0c4 b orig_kmsg
-ffffffc008cbe0c8 b s2idle_ops
-ffffffc008cbe0d0 b s2idle_lock
-ffffffc008cbe0d8 b suspend_ops
-ffffffc008cbe0e0 B pm_suspend_target_state
-ffffffc008cbe0e4 B pm_suspend_global_flags
-ffffffc008cbe0e8 B pm_states
-ffffffc008cbe108 B mem_sleep_states
-ffffffc008cbe128 b wakelocks_tree
-ffffffc008cbe130 b wakeup_reason_lock
-ffffffc008cbe134 b wakeup_reason
-ffffffc008cbe138 b capture_reasons
-ffffffc008cbe140 b wakeup_irq_nodes_cache
-ffffffc008cbe148 b non_irq_wake_reason
-ffffffc008cbe248 b kobj
-ffffffc008cbe250 b last_monotime
-ffffffc008cbe258 b last_stime
-ffffffc008cbe260 b curr_monotime
-ffffffc008cbe268 b curr_stime
-ffffffc008cbe270 b clear_seq
-ffffffc008cbe288 b __log_buf
-ffffffc008cde288 b printk_rb_dynamic
-ffffffc008cde2e0 b syslog_seq
-ffffffc008cde2e8 b syslog_partial
-ffffffc008cde2f0 b syslog_time
-ffffffc008cde2f4 b printk_console_no_auto_verbose
-ffffffc008cde2f8 b console_suspended
-ffffffc008cde2fc b console_locked.llvm.7470064045475957992
-ffffffc008cde300 B console_drivers
-ffffffc008cde308 b dump_list_lock
-ffffffc008cde30c b always_kmsg_dump
-ffffffc008cde310 b printk_cpu_sync_nested
-ffffffc008cde314 B console_set_on_cmdline
-ffffffc008cde318 b devkmsg_open.__key
-ffffffc008cde318 b printk_count_nmi_early
-ffffffc008cde319 b printk_count_early
-ffffffc008cde31c b console_owner_lock
-ffffffc008cde320 b console_owner
-ffffffc008cde328 b console_waiter
-ffffffc008cde32c b console_msg_format
-ffffffc008cde330 b console_cmdline
-ffffffc008cde430 b console_flush_all.dropped_text
-ffffffc008cde470 b console_flush_all.ext_text
-ffffffc008ce0470 b console_flush_all.text
-ffffffc008ce0870 b console_emit_next_record.panic_console_dropped
-ffffffc008ce0874 B oops_in_progress
-ffffffc008ce0878 B dmesg_restrict
-ffffffc008ce0880 b allocated_irqs
-ffffffc008ce0c90 b irq_kobj_base
-ffffffc008ce0c98 b alloc_desc.__key
-ffffffc008ce0c98 b alloc_desc.__key.5
-ffffffc008ce0c98 B force_irqthreads_key
-ffffffc008ce0ca8 b irq_do_set_affinity.tmp_mask_lock
-ffffffc008ce0cb0 b irq_do_set_affinity.tmp_mask
-ffffffc008ce0cb8 b irq_setup_affinity.mask_lock
-ffffffc008ce0cc0 b irq_setup_affinity.mask
-ffffffc008ce0cc8 B irq_default_affinity
-ffffffc008ce0cd0 b irq_poll_cpu
-ffffffc008ce0cd4 b irq_poll_active
-ffffffc008ce0cd8 b irqs_resend
-ffffffc008ce10e8 b irq_default_domain
-ffffffc008ce10f0 b __irq_domain_create.unknown_domains
-ffffffc008ce10f4 b __irq_domain_create.__key
-ffffffc008ce10f8 b root_irq_dir
-ffffffc008ce1100 b show_interrupts.prec
-ffffffc008ce1104 B no_irq_affinity
-ffffffc008ce1108 b msi_dev_attrs
-ffffffc008ce1108 b msi_setup_device_data.__key
-ffffffc008ce1110 b rcu_normal_after_boot
-ffffffc008ce1114 b rcu_task_cb_adjust
-ffffffc008ce1115 b init_srcu_struct_fields.__key
-ffffffc008ce1115 b init_srcu_struct_fields.__key.10
-ffffffc008ce1115 b init_srcu_struct_fields.__key.12
-ffffffc008ce1115 b rcu_sync_init.__key.llvm.14874782358546094813
-ffffffc008ce1118 b dump_tree
-ffffffc008ce111c b rcu_fanout_exact
-ffffffc008ce1120 b gp_preinit_delay
-ffffffc008ce1124 b gp_init_delay
-ffffffc008ce1128 b gp_cleanup_delay
-ffffffc008ce1130 b jiffies_to_sched_qs
-ffffffc008ce1138 b rcu_kick_kthreads
-ffffffc008ce1140 b rcu_gp_slow_suppress
-ffffffc008ce1148 b rcu_init_geometry.old_nr_cpu_ids
-ffffffc008ce1150 b rcu_init_geometry.initialized
-ffffffc008ce1158 B rcu_gp_wq
-ffffffc008ce1160 b sysrq_rcu
-ffffffc008ce1168 b rcu_nocb_mask
-ffffffc008ce1170 B rcu_exp_gp_kworker
-ffffffc008ce1178 B rcu_exp_par_gp_kworker
-ffffffc008ce1180 b check_cpu_stall.___rfd_beenhere
-ffffffc008ce1184 b check_cpu_stall.___rfd_beenhere.81
-ffffffc008ce1188 b rcu_stall_kick_kthreads.___rfd_beenhere
-ffffffc008ce118c b panic_on_rcu_stall.cpu_stall
-ffffffc008ce1190 B dma_default_coherent
-ffffffc008ce1190 b rcu_boot_init_nocb_percpu_data.__key
-ffffffc008ce1190 b rcu_boot_init_nocb_percpu_data.__key.199
-ffffffc008ce1190 b rcu_boot_init_nocb_percpu_data.__key.201
-ffffffc008ce1190 b rcu_boot_init_nocb_percpu_data.__key.203
-ffffffc008ce1190 b rcu_init_one.__key
-ffffffc008ce1190 b rcu_init_one.__key.182
-ffffffc008ce1190 b rcu_init_one.__key.184
-ffffffc008ce1190 b rcu_init_one.__key.186
-ffffffc008ce1190 b rcu_init_one.__key.188
-ffffffc008ce1190 b rcu_init_one.__key.190
-ffffffc008ce1190 b rcu_init_one.__key.192
-ffffffc008ce1190 b rcu_init_one_nocb.__key
-ffffffc008ce1190 b rcu_init_one_nocb.__key.195
-ffffffc008ce1198 B io_tlb_default_mem
-ffffffc008ce11e8 b swiotlb_force_bounce
-ffffffc008ce11e9 b swiotlb_force_disable
-ffffffc008ce11f0 b default_nareas
-ffffffc008ce11f8 B swiotlb_unencrypted_base
-ffffffc008ce1200 b atomic_pool_size
-ffffffc008ce1208 b atomic_pool_work
-ffffffc008ce1228 b pool_size_dma
-ffffffc008ce1230 b pool_size_dma32
-ffffffc008ce1238 b pool_size_kernel
-ffffffc008ce1240 B freezer_active
-ffffffc008ce1250 B pm_nosig_freezing
-ffffffc008ce1254 B pm_freezing
-ffffffc008ce1258 b freezer_lock
-ffffffc008ce125c b prof_shift
-ffffffc008ce1260 b prof_len
-ffffffc008ce1268 b prof_cpu_mask
-ffffffc008ce1270 b prof_buffer
-ffffffc008ce1278 b do_sys_settimeofday64.firsttime
-ffffffc008ce1280 B sys_tz
-ffffffc008ce1288 b timers_nohz_active
-ffffffc008ce1298 B timers_migration_enabled
-ffffffc008ce12a8 B timekeeper_lock
-ffffffc008ce12c0 b tk_core.llvm.3066161404414456893
-ffffffc008ce13e0 b pvclock_gtod_chain
-ffffffc008ce13e8 b persistent_clock_exists.llvm.3066161404414456893
-ffffffc008ce13e9 b suspend_timing_needed.llvm.3066161404414456893
-ffffffc008ce13f0 b timekeeping_suspend_time
-ffffffc008ce1400 b timekeeping_suspend.old_delta.0
-ffffffc008ce1408 b timekeeping_suspend.old_delta.1
-ffffffc008ce1410 b cycles_at_suspend
-ffffffc008ce1418 b shadow_timekeeper
-ffffffc008ce1530 b halt_fast_timekeeper.tkr_dummy
-ffffffc008ce1568 B persistent_clock_is_local
-ffffffc008ce1570 b time_adjust
-ffffffc008ce1578 b tick_length_base
-ffffffc008ce1580 b tick_length.llvm.10747868378048409577
-ffffffc008ce1588 b time_offset
-ffffffc008ce1590 b time_state
-ffffffc008ce1598 b sync_hrtimer
-ffffffc008ce15d8 b time_freq
-ffffffc008ce15e0 B tick_nsec
-ffffffc008ce15e8 b ntp_tick_adj
-ffffffc008ce15f0 b time_reftime
-ffffffc008ce15f8 b suspend_clocksource
-ffffffc008ce1600 b suspend_start
-ffffffc008ce1608 b curr_clocksource
-ffffffc008ce1610 b finished_booting
-ffffffc008ce1614 b override_name
-ffffffc008ce1638 b refined_jiffies
-ffffffc008ce16d0 b rtcdev_lock
-ffffffc008ce16d8 b rtcdev
-ffffffc008ce16e0 b alarm_bases
-ffffffc008ce1740 b freezer_delta_lock
-ffffffc008ce1748 b freezer_delta
-ffffffc008ce1750 b freezer_expires
-ffffffc008ce1758 b freezer_alarmtype
-ffffffc008ce1760 b rtctimer
-ffffffc008ce17a0 b posix_timers_cache
-ffffffc008ce17a8 b hash_lock
-ffffffc008ce17b0 b posix_timers_hashtable
-ffffffc008ce27b0 b do_cpu_nanosleep.zero_it
-ffffffc008ce27d0 b clockevents_lock.llvm.15992265338819810985
-ffffffc008ce27d0 b posix_clock_register.__key
-ffffffc008ce27d4 b tick_freeze_lock
-ffffffc008ce27d8 b tick_freeze_depth
-ffffffc008ce27e0 B tick_next_period
-ffffffc008ce27e8 b tick_broadcast_device.llvm.11202321255406620967
-ffffffc008ce27f8 b tick_broadcast_mask.llvm.11202321255406620967
-ffffffc008ce2800 b tick_broadcast_on
-ffffffc008ce2808 b tick_broadcast_forced
-ffffffc008ce2810 b tick_broadcast_oneshot_mask.llvm.11202321255406620967
-ffffffc008ce2818 b tick_broadcast_force_mask
-ffffffc008ce2820 b tmpmask
-ffffffc008ce2828 b tick_broadcast_pending_mask
-ffffffc008ce2830 b bctimer.llvm.9703126556494539923
-ffffffc008ce2870 b sched_clock_timer
-ffffffc008ce28b0 b sched_skew_tick
-ffffffc008ce28b8 b last_jiffies_update
-ffffffc008ce28c0 b sleep_time_bin
-ffffffc008ce2940 b get_inode_sequence_number.i_seq
-ffffffc008ce2948 b __flush_smp_call_function_queue.warned
-ffffffc008ce2950 B vmcoreinfo_data
-ffffffc008ce2958 B vmcoreinfo_size
-ffffffc008ce2960 b vmcoreinfo_data_safecopy
-ffffffc008ce2968 B vmcoreinfo_note
-ffffffc008ce2970 B __kexec_lock
-ffffffc008ce2974 B kexec_in_progress
-ffffffc008ce2978 B crash_notes
-ffffffc008ce2980 B kexec_image
-ffffffc008ce2988 B kexec_load_disabled
-ffffffc008ce2990 B kexec_crash_image
-ffffffc008ce2998 b stop_machine_initialized
-ffffffc008ce2999 b stop_cpus_in_progress
-ffffffc008ce299c B audit_enabled
-ffffffc008ce29a0 B audit_ever_enabled
-ffffffc008ce29a8 b auditd_conn
-ffffffc008ce29b0 b audit_cmd_mutex.llvm.12768406111065956142
-ffffffc008ce29d8 b audit_log_lost.last_msg
-ffffffc008ce29e0 b audit_log_lost.lock
-ffffffc008ce29e4 b audit_lost
-ffffffc008ce29e8 b audit_rate_limit
-ffffffc008ce29ec b audit_serial.serial
-ffffffc008ce29f0 b audit_initialized
-ffffffc008ce29f8 b audit_queue
-ffffffc008ce2a10 b audit_backlog_wait_time_actual
-ffffffc008ce2a14 b session_id
-ffffffc008ce2a18 b audit_sig_sid
-ffffffc008ce2a20 B audit_inode_hash
-ffffffc008ce2c20 b audit_net_id
-ffffffc008ce2c28 b audit_buffer_cache
-ffffffc008ce2c30 b audit_retry_queue
-ffffffc008ce2c48 b audit_hold_queue
-ffffffc008ce2c60 b audit_default
-ffffffc008ce2c60 b audit_init.__key
-ffffffc008ce2c68 b kauditd_task
-ffffffc008ce2c70 b auditd_conn_lock
-ffffffc008ce2c78 b audit_rate_check.last_check
-ffffffc008ce2c80 b audit_rate_check.messages
-ffffffc008ce2c84 b audit_rate_check.lock
-ffffffc008ce2c88 b classes
-ffffffc008ce2d08 B audit_n_rules
-ffffffc008ce2d0c B audit_signals
-ffffffc008ce2d10 b audit_watch_group
-ffffffc008ce2d18 b audit_fsnotify_group.llvm.8460651931890714316
-ffffffc008ce2d20 b prune_thread
-ffffffc008ce2d28 b chunk_hash_heads
-ffffffc008ce3528 b audit_tree_group
-ffffffc008ce3530 b reset_hung_task
-ffffffc008ce3538 b watchdog_task
-ffffffc008ce3540 b hung_detector_suspended
-ffffffc008ce3541 b hung_task_show_all_bt
-ffffffc008ce3542 b hung_task_call_panic
-ffffffc008ce3548 b soft_lockup_nmi_warn
-ffffffc008ce3550 b seccomp_prepare_filter.__key
-ffffffc008ce3550 b seccomp_prepare_filter.__key.3
-ffffffc008ce3550 b sys_tracepoint_refcount
-ffffffc008ce3554 b ok_to_free_tracepoints
-ffffffc008ce3558 b early_probes
-ffffffc008ce3560 b tp_transition_snapshot.0
-ffffffc008ce3568 b tp_transition_snapshot.1
-ffffffc008ce3570 b tp_transition_snapshot.2
-ffffffc008ce3578 b tp_transition_snapshot.3
-ffffffc008ce3580 b tp_transition_snapshot.4
-ffffffc008ce3588 b tp_transition_snapshot.5
-ffffffc008ce35c0 b trace_clock_struct
-ffffffc008ce35d0 b trace_counter
-ffffffc008ce35d8 b __ring_buffer_alloc.__key
-ffffffc008ce35d8 b __ring_buffer_alloc.__key.14
-ffffffc008ce35d8 b rb_add_timestamp.once
-ffffffc008ce35d8 b rb_allocate_cpu_buffer.__key
-ffffffc008ce35d8 b rb_allocate_cpu_buffer.__key.18
-ffffffc008ce35d8 b ring_buffer_alloc_ext.__key
-ffffffc008ce35dc b tracing_disabled.llvm.4124659504309116263
-ffffffc008ce35e0 b dummy_tracer_opt
-ffffffc008ce35f0 b default_bootup_tracer
-ffffffc008ce35f8 b trace_cmdline_lock
-ffffffc008ce35fc b trace_buffered_event_ref
-ffffffc008ce3600 b temp_buffer
-ffffffc008ce3608 B tracepoint_print_iter
-ffffffc008ce3610 b tracepoint_printk_key
-ffffffc008ce3620 b trace_event_exports_enabled
-ffffffc008ce3630 b trace_function_exports_enabled
-ffffffc008ce3640 b buffers_allocated.llvm.4124659504309116263
-ffffffc008ce3648 b trace_no_verify
-ffffffc008ce3658 b static_fmt_buf
-ffffffc008ce36d8 b static_temp_buf
-ffffffc008ce3758 b tgid_map
-ffffffc008ce3760 b tgid_map_max
-ffffffc008ce3768 B ring_buffer_expanded
-ffffffc008ce3770 b ftrace_dump.iter
-ffffffc008ce5888 b ftrace_dump.dump_running
-ffffffc008ce588c b snapshot_at_boot
-ffffffc008ce5890 b trace_marker_exports_enabled
-ffffffc008ce58a0 b savedcmd
-ffffffc008ce58a8 b tracepoint_iter_lock
-ffffffc008ce58b0 b trace_percpu_buffer
-ffffffc008ce58b8 b tracer_options_updated
-ffffffc008ce58c0 b trace_instance_dir
-ffffffc008ce58c8 b __tracing_open.__key
-ffffffc008ce58c8 b allocate_trace_buffer.__key
-ffffffc008ce58c8 B ftrace_dump_on_oops
-ffffffc008ce58c8 b trace_access_lock_init.__key
-ffffffc008ce58c8 b tracer_alloc_buffers.__key
-ffffffc008ce58c8 b tracing_open_pipe.__key
-ffffffc008ce58cc B __disable_trace_on_warning
-ffffffc008ce58d0 B tracepoint_printk
-ffffffc008ce58d4 b register_stat_tracer.__key
-ffffffc008ce58d8 b stat_dir
-ffffffc008ce58e0 b sched_cmdline_ref
-ffffffc008ce58e4 b sched_tgid_ref
-ffffffc008ce58e8 b eventdir_initialized
-ffffffc008ce58f0 b field_cachep
-ffffffc008ce58f8 b file_cachep
-ffffffc008ce5900 b perf_trace_buf
-ffffffc008ce5920 b total_ref_count
-ffffffc008ce5928 b ustring_per_cpu
-ffffffc008ce5930 b last_cmd
-ffffffc008ce5938 b last_cmd
-ffffffc008ce5940 b hist_field_name.full_name
-ffffffc008ce5a40 b last_cmd_loc
-ffffffc008ce5b40 b trace_probe_log.llvm.3959838237490661074
-ffffffc008ce5b58 b uprobe_cpu_buffer
-ffffffc008ce5b60 b uprobe_buffer_refcnt
-ffffffc008ce5b64 b uprobe_buffer_init.__key
-ffffffc008ce5b68 b cpu_pm_notifier.llvm.7901857668358786443
-ffffffc008ce5b78 B bpf_empty_prog_array
-ffffffc008ce5b78 b bpf_prog_alloc_no_stats.__key
-ffffffc008ce5b78 b bpf_prog_alloc_no_stats.__key.1
-ffffffc008ce5b90 B bpf_stats_enabled_key
-ffffffc008ce5ba0 b scs_check_usage.highest
-ffffffc008ce5ba8 B perf_sched_events
-ffffffc008ce5bb8 b __report_avg
-ffffffc008ce5bc0 b __report_allowed
-ffffffc008ce5bc8 b __empty_callchain
-ffffffc008ce5bd0 b pmu_idr
-ffffffc008ce5be8 b pmu_bus_running
-ffffffc008ce5bec b perf_pmu_register.hw_context_taken
-ffffffc008ce5bf0 b perf_online_mask
-ffffffc008ce5bf8 b pmus_srcu
-ffffffc008ce5d78 b perf_event_cache
-ffffffc008ce5d78 b perf_event_init_task.__key
-ffffffc008ce5d80 B perf_swevent_enabled
-ffffffc008ce5e40 b perf_sched_count
-ffffffc008ce5e44 b __perf_event_init_context.__key
-ffffffc008ce5e44 b perf_event_alloc.__key
-ffffffc008ce5e44 b perf_event_alloc.__key.37
-ffffffc008ce5e44 b perf_event_alloc.__key.39
-ffffffc008ce5e48 b perf_event_id
-ffffffc008ce5e50 b nr_callchain_events
-ffffffc008ce5e50 b perf_event_init_all_cpus.__key
-ffffffc008ce5e58 b callchain_cpus_entries
-ffffffc008ce5e60 b cpu_pinned
-ffffffc008ce5e70 b tsk_pinned_all
-ffffffc008ce5e80 b task_bps_ht
-ffffffc008ce5f08 b uprobes_tree
-ffffffc008ce5f10 b uprobes_mmap_mutex
-ffffffc008ce60b0 b uprobes_init.__key
-ffffffc008ce60b0 b uprobes_treelock
-ffffffc008ce60b4 b __create_xol_area.__key
-ffffffc008ce60b4 b alloc_uprobe.__key
-ffffffc008ce60b4 b alloc_uprobe.__key.11
-ffffffc008ce60b4 b mempool_init_node.__key
-ffffffc008ce60b4 b oom_victims
-ffffffc008ce60b4 b pagecache_init.__key
-ffffffc008ce60b8 b sysctl_oom_kill_allocating_task
-ffffffc008ce60c0 b oom_reaper_th
-ffffffc008ce60c8 b oom_reaper_list
-ffffffc008ce60d0 b oom_reaper_lock
-ffffffc008ce60d4 b sysctl_panic_on_oom
-ffffffc008ce60d8 b bdi_min_ratio
-ffffffc008ce60dc B laptop_mode
-ffffffc008ce60e0 b vm_dirty_bytes
-ffffffc008ce60e8 b dirty_background_bytes
-ffffffc008ce60f0 B global_wb_domain
-ffffffc008ce6168 B page_cluster
-ffffffc008ce616c b __lru_add_drain_all.lru_drain_gen
-ffffffc008ce6170 b __lru_add_drain_all.has_work
-ffffffc008ce6178 B lru_disable_count
-ffffffc008ce6180 B lru_gen_caps
-ffffffc008ce61b0 b lru_gen_init_lruvec.__key
-ffffffc008ce61b0 b shm_mnt.llvm.5160499398316230129
-ffffffc008ce61b8 b shmem_encode_fh.lock
-ffffffc008ce61b8 b shmem_fill_super.__key
-ffffffc008ce61c0 b shmem_inode_cachep
-ffffffc008ce6200 B vm_committed_as
-ffffffc008ce6228 B mm_percpu_wq
-ffffffc008ce6230 b bdi_class
-ffffffc008ce6230 b bdi_init.__key
-ffffffc008ce6238 b bdi_id_cursor
-ffffffc008ce6240 b bdi_tree
-ffffffc008ce6248 B noop_backing_dev_info
-ffffffc008ce65a0 b bdi_class_init.__key
-ffffffc008ce65a0 b bdi_debug_root
-ffffffc008ce65a8 B bdi_lock
-ffffffc008ce65a8 b wb_init.__key
-ffffffc008ce65b0 B bdi_wq
-ffffffc008ce65b8 B mm_kobj
-ffffffc008ce65c0 B pcpu_lock
-ffffffc008ce65c4 B pcpu_nr_empty_pop_pages
-ffffffc008ce65c8 b pcpu_nr_populated
-ffffffc008ce65d0 b pcpu_atomic_alloc_failed
-ffffffc008ce65d8 b pcpu_get_pages.pages
-ffffffc008ce65e0 b slab_nomerge
-ffffffc008ce65e8 B kmem_cache
-ffffffc008ce65f0 B slab_state
-ffffffc008ce65f8 B shadow_nodes
-ffffffc008ce6600 B max_mapnr
-ffffffc008ce6600 b shadow_nodes_key
-ffffffc008ce6608 B mem_map
-ffffffc008ce6610 b print_bad_pte.resume
-ffffffc008ce6618 b print_bad_pte.nr_shown
-ffffffc008ce6620 b print_bad_pte.nr_unshown
-ffffffc008ce6628 B high_memory
-ffffffc008ce6630 b shmlock_user_lock
-ffffffc008ce6634 b ignore_rlimit_data
-ffffffc008ce6635 b mmap_init.__key.llvm.14341741251261317029
-ffffffc008ce6638 b anon_vma_cachep.llvm.1976069713084195521
-ffffffc008ce6640 b anon_vma_chain_cachep.llvm.1976069713084195521
-ffffffc008ce6648 b anon_vma_ctor.__key
-ffffffc008ce6648 b nr_vmalloc_pages
-ffffffc008ce6650 b vmap_area_lock
-ffffffc008ce6658 b vmap_area_root
-ffffffc008ce6660 b vmap_area_cachep
-ffffffc008ce6668 b free_vmap_area_lock
-ffffffc008ce6670 b free_vmap_area_root
-ffffffc008ce6678 b vmap_blocks
-ffffffc008ce6688 b vmap_lazy_nr
-ffffffc008ce6690 b purge_vmap_area_lock
-ffffffc008ce6698 b purge_vmap_area_root
-ffffffc008ce66a0 b saved_gfp_mask
-ffffffc008ce66a4 b setup_per_zone_wmarks.lock
-ffffffc008ce66a8 B percpu_pagelist_high_fraction
-ffffffc008ce66ac B movable_zone
-ffffffc008ce66b0 b bad_page.resume
-ffffffc008ce66b8 b bad_page.nr_shown
-ffffffc008ce66c0 b bad_page.nr_unshown
-ffffffc008ce66c8 b __drain_all_pages.cpus_with_pcps
-ffffffc008ce66d0 b zonelist_update_seq
-ffffffc008ce66d8 b overlap_memmap_init.r
-ffffffc008ce66e0 B init_on_free
-ffffffc008ce66e0 b pgdat_init_internals.__key
-ffffffc008ce66e0 b pgdat_init_internals.__key.60
-ffffffc008ce66e0 b pgdat_init_internals.__key.62
-ffffffc008ce66e0 b pgdat_init_kcompactd.__key
-ffffffc008ce66e0 b pgdat_kswapd_lock_init.__key
-ffffffc008ce66f0 B mirrored_kernelcore
-ffffffc008ce66f8 B page_alloc_shuffle_key
-ffffffc008ce6708 b shuffle_param
-ffffffc008ce6710 b shuffle_pick_tail.rand
-ffffffc008ce6718 b shuffle_pick_tail.rand_bits
-ffffffc008ce6720 b memblock_memory_init_regions
-ffffffc008ce7320 b memblock_reserved_init_regions
-ffffffc008ce7f20 b memblock_debug
-ffffffc008ce7f21 b system_has_some_mirror
-ffffffc008ce7f24 b memblock_can_resize.llvm.12518458754768191236
-ffffffc008ce7f28 B max_possible_pfn
-ffffffc008ce7f30 b memblock_memory_in_slab
-ffffffc008ce7f34 b memblock_reserved_in_slab
-ffffffc008ce7f38 B min_low_pfn
-ffffffc008ce7f40 B max_pfn
-ffffffc008ce7f48 B max_low_pfn
-ffffffc008ce7f50 B mhp_default_online_type
-ffffffc008ce7f54 B movable_node_enabled
-ffffffc008ce7f58 b sio_pool
-ffffffc008ce7f60 b swapin_nr_pages.prev_offset
-ffffffc008ce7f68 b swapin_nr_pages.last_readahead_pages
-ffffffc008ce7f6c b swap_avail_lock
-ffffffc008ce7f70 b swap_avail_heads
-ffffffc008ce7f78 b nr_swapfiles
-ffffffc008ce7f7c b swap_lock
-ffffffc008ce7f80 B swap_info
-ffffffc008ce8060 B swapfile_maximum_size
-ffffffc008ce8068 B swap_migration_ad_supported
-ffffffc008ce806c b proc_poll_event
-ffffffc008ce8070 B nr_swap_pages
-ffffffc008ce8078 B nr_rotate_swap
-ffffffc008ce8080 B total_swap_pages
-ffffffc008ce8088 B swap_slot_cache_enabled
-ffffffc008ce8089 b swap_slot_cache_initialized
-ffffffc008ce808a b swap_slot_cache_active
-ffffffc008ce808b b alloc_swap_slot_cache.__key
-ffffffc008ce8090 B __highest_present_section_nr
-ffffffc008ce8098 b check_usemap_section_nr.old_usemap_snr
-ffffffc008ce80a0 b check_usemap_section_nr.old_pgdat_snr
-ffffffc008ce80a8 B mem_section
-ffffffc008ce80b0 b vmemmap_alloc_block.warned
-ffffffc008ce80b4 b slub_debug
-ffffffc008ce80b8 b slub_debug_string
-ffffffc008ce80c0 b kmem_cache_node
-ffffffc008ce80c8 b slab_nodes
-ffffffc008ce80d0 b slub_min_order
-ffffffc008ce80d4 b slub_min_objects
-ffffffc008ce80d8 b flushwq
-ffffffc008ce80e0 b slab_debugfs_root
-ffffffc008ce80e8 b disable_higher_order_debug
-ffffffc008ce80ec b object_map_lock
-ffffffc008ce80f0 b object_map
-ffffffc008ce90f0 b slab_kset
-ffffffc008ce90f8 b alias_list
-ffffffc008ce9100 B slub_debug_enabled
-ffffffc008ce9110 b kasan_flags
-ffffffc008ce9118 b report_lock
-ffffffc008ce9120 B kasan_flag_enabled
-ffffffc008ce9130 B stack_ring
-ffffffc008ce9150 b huge_zero_refcount
-ffffffc008ce9154 b khugepaged_mm_lock
-ffffffc008ce9158 b khugepaged_pages_collapsed
-ffffffc008ce915c b khugepaged_full_scans
-ffffffc008ce9160 b khugepaged_sleep_expire
-ffffffc008ce9168 b dummy_handle
-ffffffc008ce916c b failure_handle
-ffffffc008ce9170 b early_handle
-ffffffc008ce9178 B page_owner_inited
-ffffffc008ce9188 b huge_class_size.llvm.15805756645815651063
-ffffffc008ce9190 b total_usage
-ffffffc008ce9198 B early_page_ext
-ffffffc008ce919c b secretmem_users
-ffffffc008ce91a0 b secretmem_mnt
-ffffffc008ce91a8 B page_reporting_enabled
-ffffffc008ce91b8 b alloc_empty_file.old_max
-ffffffc008ce91c0 b delayed_fput_list
-ffffffc008ce91c8 b __alloc_file.__key
-ffffffc008ce91c8 b files_init.__key
-ffffffc008ce91c8 b sb_lock
-ffffffc008ce91d0 b super_setup_bdi.bdi_seq
-ffffffc008ce91d8 b alloc_super.__key
-ffffffc008ce91d8 b alloc_super.__key.13
-ffffffc008ce91d8 b alloc_super.__key.15
-ffffffc008ce91d8 b alloc_super.__key.17
-ffffffc008ce91d8 b alloc_super.__key.19
-ffffffc008ce91d8 b chrdevs
-ffffffc008ce99d0 b cdev_lock
-ffffffc008ce99d8 b cdev_map.llvm.15562309049154878701
-ffffffc008ce99e0 B suid_dumpable
-ffffffc008ce99e4 b binfmt_lock
-ffffffc008ce99f0 b pipe_user_pages_hard
-ffffffc008ce99f8 b alloc_pipe_info.__key
-ffffffc008ce99f8 b alloc_pipe_info.__key.1
-ffffffc008ce99f8 b alloc_pipe_info.__key.3
-ffffffc008ce99f8 b fasync_lock
-ffffffc008ce9a00 b in_lookup_hashtable
-ffffffc008ceba00 b get_next_ino.shared_last_ino
-ffffffc008ceba00 b inode_init_always.__key
-ffffffc008ceba00 b inode_init_always.__key.1
-ffffffc008ceba04 b iunique.iunique_lock
-ffffffc008ceba08 b iunique.counter
-ffffffc008ceba10 b inodes_stat
-ffffffc008ceba48 b __address_space_init_once.__key
-ffffffc008ceba48 b dup_fd.__key
-ffffffc008ceba48 b file_systems_lock
-ffffffc008ceba50 b file_systems
-ffffffc008ceba58 b event
-ffffffc008ceba60 b unmounted
-ffffffc008ceba68 B fs_kobj
-ffffffc008ceba70 b delayed_mntput_list
-ffffffc008ceba78 b alloc_mnt_ns.__key
-ffffffc008ceba78 b pin_fs_lock
-ffffffc008ceba78 b seq_open.__key
-ffffffc008ceba7c b simple_transaction_get.simple_transaction_lock
-ffffffc008ceba80 b last_dest
-ffffffc008ceba80 b simple_attr_open.__key
-ffffffc008ceba88 b first_source
-ffffffc008ceba90 b last_source
-ffffffc008ceba98 b mp
-ffffffc008cebaa0 b list
-ffffffc008cebaa8 b dest_master
-ffffffc008cebab0 b pin_lock
-ffffffc008cebab8 b nsfs_mnt
-ffffffc008cebac0 b alloc_fs_context.__key
-ffffffc008cebac0 b max_buffer_heads
-ffffffc008cebac0 b vfs_dup_fs_context.__key
-ffffffc008cebac8 B buffer_heads_over_limit
-ffffffc008cebacc b fsnotify_sync_cookie
-ffffffc008cebad0 b __fsnotify_alloc_group.__key
-ffffffc008cebad0 b __fsnotify_alloc_group.__key.1
-ffffffc008cebad0 b destroy_lock
-ffffffc008cebad8 b connector_destroy_list
-ffffffc008cebae0 B fsnotify_mark_srcu
-ffffffc008cebc60 B fsnotify_mark_connector_cachep
-ffffffc008cebc68 b idr_callback.warned
-ffffffc008cebc70 b it_zero
-ffffffc008cebc78 b loop_check_gen
-ffffffc008cebc80 b ep_alloc.__key
-ffffffc008cebc80 b ep_alloc.__key.2
-ffffffc008cebc80 b ep_alloc.__key.4
-ffffffc008cebc80 b inserting_into
-ffffffc008cebc88 b path_count
-ffffffc008cebca0 b long_zero
-ffffffc008cebca8 b anon_inode_inode
-ffffffc008cebcb0 b __do_sys_timerfd_create.__key
-ffffffc008cebcb0 b cancel_lock
-ffffffc008cebcb4 b do_eventfd.__key
-ffffffc008cebcb4 b init_once_userfaultfd_ctx.__key
-ffffffc008cebcb4 b init_once_userfaultfd_ctx.__key.11
-ffffffc008cebcb4 b init_once_userfaultfd_ctx.__key.7
-ffffffc008cebcb4 b init_once_userfaultfd_ctx.__key.9
-ffffffc008cebcb8 b aio_mnt
-ffffffc008cebcc0 b kiocb_cachep
-ffffffc008cebcc8 b kioctx_cachep
-ffffffc008cebcd0 b aio_nr
-ffffffc008cebcd8 b aio_nr_lock
-ffffffc008cebcdc b blocked_lock_lock
-ffffffc008cebcdc b ioctx_alloc.__key
-ffffffc008cebcdc b ioctx_alloc.__key.10
-ffffffc008cebce0 b lease_notifier_chain
-ffffffc008cebe88 b blocked_hash
-ffffffc008cebe88 b locks_init_lock_heads.__key
-ffffffc008cec288 b enabled
-ffffffc008cec28c b entries_lock
-ffffffc008cec298 b bm_mnt
-ffffffc008cec2a0 b mb_entry_cache
-ffffffc008cec2a8 b do_coredump.core_dump_count
-ffffffc008cec2ac b core_pipe_limit
-ffffffc008cec2b0 b core_uses_pid
-ffffffc008cec2b4 b __dump_skip.zeroes
-ffffffc008ced2b4 b drop_caches_sysctl_handler.stfu
-ffffffc008ced2b8 B sysctl_drop_caches
-ffffffc008ced2c0 b iomap_ioend_bioset
-ffffffc008ced3b8 b proc_subdir_lock
-ffffffc008ced3c0 b proc_tty_driver
-ffffffc008ced3c8 B sysctl_mount_point
-ffffffc008ced408 b sysctl_lock
-ffffffc008ced410 b saved_boot_config
-ffffffc008ced418 B kernfs_locks
-ffffffc008ced420 B kernfs_iattrs_cache
-ffffffc008ced420 b kernfs_mutex_init.__key
-ffffffc008ced428 B kernfs_node_cache
-ffffffc008ced430 b kernfs_rename_lock
-ffffffc008ced434 b kernfs_pr_cont_lock
-ffffffc008ced438 b kernfs_pr_cont_buf
-ffffffc008cee438 b kernfs_idr_lock
-ffffffc008cee43c b kernfs_create_root.__key
-ffffffc008cee43c b kernfs_create_root.__key.9
-ffffffc008cee43c b kernfs_notify_lock
-ffffffc008cee440 b kernfs_fop_open.__key
-ffffffc008cee440 b kernfs_fop_open.__key.1
-ffffffc008cee440 b kernfs_fop_open.__key.2
-ffffffc008cee440 b kernfs_get_open_node.__key
-ffffffc008cee440 B sysfs_symlink_target_lock
-ffffffc008cee448 b sysfs_root
-ffffffc008cee450 B sysfs_root_kn
-ffffffc008cee458 b pty_count
-ffffffc008cee45c b pty_limit_min
-ffffffc008cee460 b ext4_system_zone_cachep.llvm.7606753493673523951
-ffffffc008cee468 b ext4_es_cachep.llvm.1340153322159381457
-ffffffc008cee470 b ext4_es_register_shrinker.__key
-ffffffc008cee470 b ext4_es_register_shrinker.__key.10
-ffffffc008cee470 b ext4_es_register_shrinker.__key.8
-ffffffc008cee470 b ext4_es_register_shrinker.__key.9
-ffffffc008cee470 b ext4_pending_cachep.llvm.1340153322159381457
-ffffffc008cee478 b ext4_free_data_cachep
-ffffffc008cee478 b ext4_mb_add_groupinfo.__key
-ffffffc008cee478 b ext4_mb_init.__key
-ffffffc008cee480 b ext4_pspace_cachep
-ffffffc008cee488 b ext4_ac_cachep
-ffffffc008cee490 b ext4_groupinfo_caches
-ffffffc008cee4d0 b io_end_cachep.llvm.5448093041912278564
-ffffffc008cee4d8 b io_end_vec_cachep.llvm.5448093041912278564
-ffffffc008cee4e0 b bio_post_read_ctx_cache.llvm.2874138457976687813
-ffffffc008cee4e8 b bio_post_read_ctx_pool.llvm.2874138457976687813
-ffffffc008cee4f0 b ext4_li_info
-ffffffc008cee4f8 b ext4_lazyinit_task
-ffffffc008cee4f8 b ext4_li_info_new.__key
-ffffffc008cee500 b ext4_mount_msg_ratelimit
-ffffffc008cee528 b __ext4_fill_super.__key
-ffffffc008cee528 b __ext4_fill_super.__key.552
-ffffffc008cee528 b __ext4_fill_super.__key.553
-ffffffc008cee528 b __ext4_fill_super.__key.554
-ffffffc008cee528 b __ext4_fill_super.__key.555
-ffffffc008cee528 b __ext4_fill_super.__key.556
-ffffffc008cee528 b __ext4_fill_super.rwsem_key
-ffffffc008cee528 b ext4_inode_cachep
-ffffffc008cee530 B ext4__ioend_wq
-ffffffc008cee530 b ext4_alloc_inode.__key
-ffffffc008cee530 b ext4_init_fs.__key
-ffffffc008cee530 b init_once.__key
-ffffffc008cee530 b init_once.__key
-ffffffc008cee530 b init_once.__key.693
-ffffffc008cee8a8 b ext4_root
-ffffffc008cee8b0 b ext4_proc_root
-ffffffc008cee8b8 b ext4_feat
-ffffffc008cee8c0 b ext4_expand_extra_isize_ea.mnt_count
-ffffffc008cee8c4 b ext4_fc_init_inode.__key
-ffffffc008cee8c8 b ext4_fc_dentry_cachep.llvm.16173149741644219321
-ffffffc008cee8d0 b transaction_cache.llvm.14968637876460384430
-ffffffc008cee8d8 b jbd2_revoke_record_cache.llvm.4408231716263711155
-ffffffc008cee8e0 b jbd2_revoke_table_cache.llvm.4408231716263711155
-ffffffc008cee8e8 b proc_jbd2_stats
-ffffffc008cee8f0 B jbd2_inode_cache
-ffffffc008cee8f8 b jbd2_slab
-ffffffc008cee8f8 b journal_init_common.__key
-ffffffc008cee8f8 b journal_init_common.__key.81
-ffffffc008cee8f8 b journal_init_common.__key.83
-ffffffc008cee8f8 b journal_init_common.__key.85
-ffffffc008cee8f8 b journal_init_common.__key.87
-ffffffc008cee8f8 b journal_init_common.__key.89
-ffffffc008cee8f8 b journal_init_common.__key.91
-ffffffc008cee8f8 b journal_init_common.__key.93
-ffffffc008cee8f8 b journal_init_common.__key.95
-ffffffc008cee8f8 b journal_init_common.__key.99
-ffffffc008cee938 b jbd2_journal_head_cache
-ffffffc008cee940 B jbd2_handle_cache
-ffffffc008cee948 b fuse_req_cachep.llvm.1135597134864729590
-ffffffc008cee950 b fuse_conn_init.__key
-ffffffc008cee950 b fuse_conn_init.__key.1
-ffffffc008cee950 b fuse_file_alloc.__key
-ffffffc008cee950 b fuse_file_alloc.__key.1
-ffffffc008cee950 b fuse_init_file_inode.__key
-ffffffc008cee950 b fuse_inode_cachep
-ffffffc008cee950 b fuse_iqueue_init.__key
-ffffffc008cee950 b fuse_request_init.__key
-ffffffc008cee950 b fuse_sync_bucket_alloc.__key
-ffffffc008cee958 b fuse_alloc_inode.__key
-ffffffc008cee958 b fuse_kobj
-ffffffc008cee960 B max_user_bgreq
-ffffffc008cee964 B max_user_congthresh
-ffffffc008cee968 B fuse_conn_list
-ffffffc008cee978 b fuse_control_sb
-ffffffc008cee980 b debugfs_mount
-ffffffc008cee988 b debugfs_mount_count
-ffffffc008cee98c b debugfs_registered.llvm.1402617647776800421
-ffffffc008cee990 b tracefs_mount
-ffffffc008cee998 b tracefs_mount_count
-ffffffc008cee99c b tracefs_registered.llvm.6782123164241347245
-ffffffc008cee99d b erofs_init_fs_context.__key
-ffffffc008cee9a0 b erofs_global_shrink_cnt
-ffffffc008cee9a8 b erofs_sb_list_lock
-ffffffc008cee9a8 b erofs_shrinker_register.__key
-ffffffc008cee9ac b shrinker_run_no
-ffffffc008cee9b0 b erofs_pcpubuf_growsize.pcb_nrpages
-ffffffc008cee9b4 b warn_setuid_and_fcaps_mixed.warned
-ffffffc008cee9b4 b z_erofs_register_pcluster.__key
-ffffffc008cee9b8 B mmap_min_addr
-ffffffc008cee9c0 B lsm_names
-ffffffc008cee9c8 b lsm_inode_cache
-ffffffc008cee9d0 b lsm_file_cache
-ffffffc008cee9d8 b mount
-ffffffc008cee9e0 b mount_count
-ffffffc008cee9e8 b lsm_dentry
-ffffffc008cee9f0 b selinux_avc
-ffffffc008cf0208 b avc_latest_notif_update.notif_lock
-ffffffc008cf020c b selinux_checkreqprot_boot
-ffffffc008cf0210 b selinux_init.__key
-ffffffc008cf0210 b selinux_init.__key.33
-ffffffc008cf0210 b selinux_secmark_refcount
-ffffffc008cf0214 b selinux_sb_alloc_security.__key
-ffffffc008cf0218 B selinux_state
-ffffffc008cf0280 b sel_netif_lock
-ffffffc008cf0288 b sel_netif_hash
-ffffffc008cf0688 b sel_netif_total
-ffffffc008cf068c b sel_netnode_lock
-ffffffc008cf0690 b sel_netnode_hash
-ffffffc008cf1e90 b sel_netport_lock
-ffffffc008cf1e98 b sel_netport_hash
-ffffffc008cf3698 b integrity_iint_lock
-ffffffc008cf36a0 b integrity_iint_tree
-ffffffc008cf36a8 B integrity_dir
-ffffffc008cf36b0 b integrity_audit_info
-ffffffc008cf36b4 b scomp_scratch_users
-ffffffc008cf36b8 b notests
-ffffffc008cf36b9 b panic_on_fail
-ffffffc008cf36c0 b crypto_default_null_skcipher
-ffffffc008cf36c8 b crypto_default_null_skcipher_refcnt
-ffffffc008cf36d0 b gcm_zeroes
-ffffffc008cf36d8 B crypto_default_rng
-ffffffc008cf36e0 b crypto_default_rng_refcnt
-ffffffc008cf36e4 b dbg
-ffffffc008cf3700 b drbg_algs
-ffffffc008cf5d80 b bdev_cache_init.bd_mnt
-ffffffc008cf5d80 b drbg_kcapi_init.__key
-ffffffc008cf5d88 b bdev_alloc.__key
-ffffffc008cf5d88 b blkdev_dio_pool
-ffffffc008cf5e80 b bio_dirty_lock
-ffffffc008cf5e88 b bio_dirty_list
-ffffffc008cf5e90 B fs_bio_set
-ffffffc008cf5f88 b bio_slabs
-ffffffc008cf5f98 b elevator_alloc.__key
-ffffffc008cf5f98 b elv_list_lock
-ffffffc008cf5f9c b blk_alloc_queue.__key
-ffffffc008cf5f9c b blk_alloc_queue.__key.3
-ffffffc008cf5f9c b blk_alloc_queue.__key.5
-ffffffc008cf5f9c b blk_alloc_queue.__key.7
-ffffffc008cf5f9c b blk_alloc_queue.__key.9
-ffffffc008cf5fa0 b kblockd_workqueue.llvm.11888440844937340040
-ffffffc008cf5fa8 B blk_requestq_cachep
-ffffffc008cf5fb0 B blk_requestq_srcu_cachep
-ffffffc008cf5fb8 B blk_debugfs_root
-ffffffc008cf5fc0 b iocontext_cachep
-ffffffc008cf5fc8 b blk_mq_alloc_tag_set.__key
-ffffffc008cf5fc8 b major_names_spinlock
-ffffffc008cf5fd0 b major_names
-ffffffc008cf67c8 b block_depr
-ffffffc008cf67d0 b __alloc_disk_node.__key
-ffffffc008cf67d0 b diskseq
-ffffffc008cf67d8 b force_gpt
-ffffffc008cf67d8 b genhd_device_init.__key
-ffffffc008cf67e0 b disk_events_dfl_poll_msecs
-ffffffc008cf67e8 b bfq_pool
-ffffffc008cf67e8 b disk_alloc_events.__key
-ffffffc008cf67f0 b ref_wr_duration
-ffffffc008cf67f8 b bio_crypt_ctx_pool
-ffffffc008cf6800 b bio_crypt_ctx_cache
-ffffffc008cf6808 b blk_crypto_mode_attrs
-ffffffc008cf6808 b blk_crypto_profile_init.__key
-ffffffc008cf6808 b blk_crypto_profile_init.__key.1
-ffffffc008cf6838 b __blk_crypto_mode_attrs
-ffffffc008cf68b0 b tfms_inited
-ffffffc008cf68b8 b blk_crypto_fallback_profile.llvm.13955689725588841049
-ffffffc008cf6978 b bio_fallback_crypt_ctx_pool
-ffffffc008cf6980 b blk_crypto_keyslots
-ffffffc008cf6988 b blk_crypto_bounce_page_pool
-ffffffc008cf6990 b crypto_bio_split
-ffffffc008cf6a88 b blk_crypto_wq
-ffffffc008cf6a90 b blk_crypto_fallback_inited
-ffffffc008cf6a91 b blank_key
-ffffffc008cf6ad8 b bio_fallback_crypt_ctx_cache
-ffffffc008cf6ae0 b req_cachep
-ffffffc008cf6ae8 b io_get_sq_data.__key
-ffffffc008cf6ae8 b io_get_sq_data.__key.1
-ffffffc008cf6ae8 b io_init_wq_offload.__key
-ffffffc008cf6ae8 b io_ring_ctx_alloc.__key
-ffffffc008cf6ae8 b io_ring_ctx_alloc.__key.83
-ffffffc008cf6ae8 b io_ring_ctx_alloc.__key.85
-ffffffc008cf6ae8 b io_uring_alloc_task_context.__key
-ffffffc008cf6ae8 b io_uring_alloc_task_context.__key.1
-ffffffc008cf6ae8 b io_wq_online
-ffffffc008cf6aec b percpu_ref_switch_lock
-ffffffc008cf6af0 b percpu_ref_switch_to_atomic_rcu.underflows
-ffffffc008cf6af4 b rhashtable_init.__key
-ffffffc008cf6af8 b rht_bucket_nested.rhnull
-ffffffc008cf6b00 b once_lock
-ffffffc008cf6b08 b tfm
-ffffffc008cf6b10 b static_ltree
-ffffffc008cf6f90 b static_dtree
-ffffffc008cf7008 b length_code
-ffffffc008cf7108 b dist_code
-ffffffc008cf7308 b tr_static_init.static_init_done
-ffffffc008cf730c b base_length
-ffffffc008cf7380 b base_dist
-ffffffc008cf73f8 B g_debuglevel
-ffffffc008cf73fc b percpu_counters_lock
-ffffffc008cf7400 b verbose
-ffffffc008cf7404 b stack_hash_order
-ffffffc008cf7408 b stack_depot_disable
-ffffffc008cf740c b stack_hash_mask
-ffffffc008cf7410 b stack_table
-ffffffc008cf7418 b depot_index
-ffffffc008cf7420 b stack_slabs
-ffffffc008d07420 b next_slab_inited
-ffffffc008d07424 b depot_lock
-ffffffc008d07428 b depot_offset
-ffffffc008d07430 b gicv2_force_probe
-ffffffc008d07430 b sbitmap_queue_init_node.__key
-ffffffc008d07438 b needs_rmw_access
-ffffffc008d07448 b rmw_writeb.rmw_lock
-ffffffc008d0744c b irq_controller_lock
-ffffffc008d07450 b v2m_lock
-ffffffc008d07458 b gicv2m_pmsi_ops
-ffffffc008d07498 B gic_pmr_sync
-ffffffc008d074a8 b gicv3_nolpi
-ffffffc008d074b0 B gic_nonsecure_priorities
-ffffffc008d074c0 b mbi_range_nr
-ffffffc008d074c8 b mbi_ranges
-ffffffc008d074d0 b mbi_phys_base
-ffffffc008d074d8 b mbi_pmsi_ops
-ffffffc008d07518 b gic_rdists
-ffffffc008d07520 b its_parent
-ffffffc008d07528 b lpi_id_bits
-ffffffc008d0752c b its_lock
-ffffffc008d07530 b its_list_map
-ffffffc008d07530 b its_probe_one.__key
-ffffffc008d07538 b its_select_cpu.tmpmask_lock
-ffffffc008d07540 b its_select_cpu.__tmpmask
-ffffffc008d07548 b vmovp_lock
-ffffffc008d07550 b vpe_proxy
-ffffffc008d07570 b find_4_1_its.its
-ffffffc008d07578 b vmovp_seq_num
-ffffffc008d07580 b gic_domain
-ffffffc008d07588 b vpe_domain_ops
-ffffffc008d07590 b sgi_domain_ops
-ffffffc008d07598 B pci_lock
-ffffffc008d0759c b pcibus_class_init.__key
-ffffffc008d0759c b pcie_ats_disabled.llvm.16921163476579471908
-ffffffc008d075a0 b pci_acs_enable.llvm.16921163476579471908
-ffffffc008d075a1 b pci_bridge_d3_disable
-ffffffc008d075a2 b pci_bridge_d3_force
-ffffffc008d075a3 b pcie_ari_disabled
-ffffffc008d075a4 B pci_cache_line_size
-ffffffc008d075a8 b arch_set_vga_state
-ffffffc008d075b0 B pci_pci_problems
-ffffffc008d075b4 B pci_pm_d3hot_delay
-ffffffc008d075b8 b disable_acs_redir_param
-ffffffc008d075c0 b resource_alignment_lock
-ffffffc008d075c8 b resource_alignment_param
-ffffffc008d075d0 B pci_early_dump
-ffffffc008d075d4 b sysfs_initialized.llvm.12253162920323991028
-ffffffc008d075d5 b pci_vpd_init.__key
-ffffffc008d075d8 B pci_flags
-ffffffc008d075dc b pci_msi_enable.llvm.14454230150567247063
-ffffffc008d075e0 B pci_msi_ignore_mask
-ffffffc008d075e4 B pcie_ports_disabled
-ffffffc008d075e8 B pcie_ports_native
-ffffffc008d075ec B pcie_ports_dpc_native
-ffffffc008d075ed b aspm_support_enabled
-ffffffc008d075f0 b aspm_policy
-ffffffc008d075f4 b aspm_disabled
-ffffffc008d075f8 b aspm_force
-ffffffc008d075fc b pcie_aer_disable.llvm.3983540417161750533
-ffffffc008d07600 B pcie_pme_msi_disabled
-ffffffc008d07604 b proc_initialized
-ffffffc008d07608 b proc_bus_pci_dir
-ffffffc008d07610 B pci_slots_kset
-ffffffc008d07618 b pci_apply_fixup_final_quirks
-ffffffc008d0761c b asus_hides_smbus
-ffffffc008d07620 b asus_rcba_base
-ffffffc008d07628 b vga_default.llvm.14722487734641294395
-ffffffc008d07630 b vga_lock
-ffffffc008d07634 b vga_arbiter_used
-ffffffc008d07638 b vga_count
-ffffffc008d0763c b vga_decode_count
-ffffffc008d07640 b vga_user_lock
-ffffffc008d07648 b pci_epc_class
-ffffffc008d07650 b __pci_epc_create.__key
-ffffffc008d07650 b amba_device_initialize.__key
-ffffffc008d07650 b clk_root_list
-ffffffc008d07650 b pci_epc_init.__key
-ffffffc008d07650 b pci_epc_multi_mem_init.__key
-ffffffc008d07650 b pci_epf_create.__key
-ffffffc008d07658 b clk_orphan_list
-ffffffc008d07660 b prepare_owner
-ffffffc008d07668 b prepare_refcnt
-ffffffc008d0766c b enable_lock
-ffffffc008d07670 b rootdir
-ffffffc008d07678 b clk_debug_list
-ffffffc008d07680 b inited
-ffffffc008d07688 b enable_owner
-ffffffc008d07690 b enable_refcnt
-ffffffc008d07694 b force_legacy
-ffffffc008d07695 b virtballoon_probe.__key
-ffffffc008d07695 b virtballoon_probe.__key.3
-ffffffc008d07698 b redirect_lock
-ffffffc008d076a0 b redirect
-ffffffc008d076a8 b alloc_tty_struct.__key
-ffffffc008d076a8 b alloc_tty_struct.__key.13
-ffffffc008d076a8 b alloc_tty_struct.__key.15
-ffffffc008d076a8 b alloc_tty_struct.__key.17
-ffffffc008d076a8 b alloc_tty_struct.__key.19
-ffffffc008d076a8 b alloc_tty_struct.__key.21
-ffffffc008d076a8 b alloc_tty_struct.__key.23
-ffffffc008d076a8 b alloc_tty_struct.__key.25
-ffffffc008d076a8 b consdev
-ffffffc008d076b0 b tty_cdev
-ffffffc008d07718 b console_cdev
-ffffffc008d07780 B tty_class
-ffffffc008d07780 b tty_class_init.__key
-ffffffc008d07788 b n_tty_open.__key
-ffffffc008d07788 b n_tty_open.__key.2
-ffffffc008d07788 b tty_ldiscs_lock
-ffffffc008d07790 b tty_ldiscs
-ffffffc008d07888 b ptm_driver
-ffffffc008d07888 b tty_buffer_init.__key
-ffffffc008d07888 b tty_port_init.__key
-ffffffc008d07888 b tty_port_init.__key.1
-ffffffc008d07888 b tty_port_init.__key.3
-ffffffc008d07888 b tty_port_init.__key.5
-ffffffc008d07890 b pts_driver
-ffffffc008d07898 b ptmx_cdev
-ffffffc008d07900 b sysrq_reset_downtime_ms
-ffffffc008d07900 b tty_audit_buf_alloc.__key
-ffffffc008d07904 b show_lock
-ffffffc008d07908 b sysrq_reset_seq_len
-ffffffc008d0790c b sysrq_reset_seq
-ffffffc008d07934 b sysrq_key_table_lock
-ffffffc008d07938 b vt_event_lock
-ffffffc008d0793c b disable_vt_switch
-ffffffc008d07940 B vt_dont_switch
-ffffffc008d07948 b vc_class
-ffffffc008d07950 b vcs_init.__key
-ffffffc008d07950 b vcs_poll_data_get.__key
-ffffffc008d07950 B vt_spawn_con
-ffffffc008d07968 b keyboard_notifier_list
-ffffffc008d07978 b vt_switch
-ffffffc008d0797c b kbd_event_lock
-ffffffc008d07980 b led_lock
-ffffffc008d07984 b ledioctl
-ffffffc008d07985 b kbd_table
-ffffffc008d07ac0 b func_buf_lock
-ffffffc008d07ac4 b shift_state.llvm.4180298346674608783
-ffffffc008d07ac8 b kd_nosound.zero
-ffffffc008d07acc b shift_down
-ffffffc008d07ad8 b key_down
-ffffffc008d07b38 b rep
-ffffffc008d07b3c b diacr
-ffffffc008d07b40 b dead_key_next
-ffffffc008d07b41 b npadch_active
-ffffffc008d07b44 b npadch_value
-ffffffc008d07b48 b k_brl.pressed
-ffffffc008d07b4c b k_brl.committing
-ffffffc008d07b50 b k_brl.releasestart
-ffffffc008d07b58 b k_brlcommit.chords
-ffffffc008d07b60 b k_brlcommit.committed
-ffffffc008d07b68 b vt_kdskbsent.is_kmalloc
-ffffffc008d07b88 b inv_translate
-ffffffc008d07c88 b dflt
-ffffffc008d07c90 b blankinterval
-ffffffc008d07c98 b vt_notifier_list.llvm.16410117752014341364
-ffffffc008d07ca8 b complement_pos.old
-ffffffc008d07cac b complement_pos.oldx
-ffffffc008d07cb0 b complement_pos.oldy
-ffffffc008d07cb8 b tty0dev
-ffffffc008d07cc0 b vt_kmsg_redirect.kmsg_con
-ffffffc008d07cc4 b ignore_poke
-ffffffc008d07cc8 B console_blanked
-ffffffc008d07cd0 b vc0_cdev
-ffffffc008d07d38 b con_driver_map
-ffffffc008d07f30 b saved_fg_console
-ffffffc008d07f34 b saved_last_console
-ffffffc008d07f38 b saved_want_console
-ffffffc008d07f3c b saved_vc_mode
-ffffffc008d07f40 b saved_console_blanked
-ffffffc008d07f48 B conswitchp
-ffffffc008d07f50 b registered_con_driver
-ffffffc008d081d0 b blank_state
-ffffffc008d081d4 b vesa_blank_mode
-ffffffc008d081d8 b blank_timer_expired
-ffffffc008d081dc b vesa_off_interval
-ffffffc008d081e0 B console_blank_hook
-ffffffc008d081e8 b scrollback_delta
-ffffffc008d081f0 b master_display_fg
-ffffffc008d081f8 b vc_init.__key
-ffffffc008d081f8 b vt_console_print.printing_lock
-ffffffc008d08200 b vtconsole_class
-ffffffc008d08208 B do_poke_blanked_console
-ffffffc008d08208 b vtconsole_class_init.__key
-ffffffc008d08210 B console_driver
-ffffffc008d08218 B fg_console
-ffffffc008d08220 B vc_cons
-ffffffc008d08bf8 B last_console
-ffffffc008d08bfc B funcbufleft
-ffffffc008d08c00 b cons_ops
-ffffffc008d08c80 b hvc_kicked.llvm.1700140598062689160
-ffffffc008d08c88 b hvc_task.llvm.1700140598062689160
-ffffffc008d08c90 b hvc_driver
-ffffffc008d08c98 b sysrq_pressed
-ffffffc008d08c9c b uart_set_options.dummy
-ffffffc008d08cc8 b serial8250_ports
-ffffffc008d08cc8 b uart_add_one_port.__key
-ffffffc008d098c8 b serial8250_isa_config
-ffffffc008d098d0 b nr_uarts
-ffffffc008d098d8 b serial8250_isa_devs
-ffffffc008d098e0 b share_irqs
-ffffffc008d098e4 b skip_txen_test
-ffffffc008d098e8 b serial8250_isa_init_ports.first
-ffffffc008d098f0 b base_ops
-ffffffc008d098f8 b univ8250_port_ops
-ffffffc008d099b8 b irq_lists
-ffffffc008d09ab8 b ttynull_driver
-ffffffc008d09ac0 b ttynull_port
-ffffffc008d09c38 b chr_dev_init.__key
-ffffffc008d09c38 b mem_class
-ffffffc008d09c40 b crng_is_ready
-ffffffc008d09c50 b base_crng
-ffffffc008d09c88 b add_input_randomness.last_value
-ffffffc008d09c90 b _credit_init_bits.set_ready
-ffffffc008d09cb0 b fasync
-ffffffc008d09cb8 b sysctl_bootid
-ffffffc008d09cc8 b proc_do_uuid.bootid_spinlock
-ffffffc008d09cd0 b misc_minors
-ffffffc008d09ce0 b misc_class
-ffffffc008d09ce8 b early_put_chars
-ffffffc008d09ce8 b misc_init.__key
-ffffffc008d09cf0 b pdrvdata_lock
-ffffffc008d09cf4 b dma_bufs_lock
-ffffffc008d09cf8 b add_port.__key
-ffffffc008d09cf8 b current_quality
-ffffffc008d09cf8 b virtio_console_init.__key
-ffffffc008d09cfc b default_quality
-ffffffc008d09d00 b current_rng
-ffffffc008d09d08 b cur_rng_set_by_user
-ffffffc008d09d10 b hwrng_fill
-ffffffc008d09d18 b rng_buffer
-ffffffc008d09d20 b rng_fillbuf
-ffffffc008d09d28 b data_avail
-ffffffc008d09d2c b iommu_device_lock
-ffffffc008d09d30 b iommu_group_kset
-ffffffc008d09d38 b dev_iommu_get.__key
-ffffffc008d09d38 b devices_attr
-ffffffc008d09d38 b iommu_dev_init.__key
-ffffffc008d09d38 b iommu_group_alloc.__key
-ffffffc008d09d38 b iommu_register_device_fault_handler.__key
-ffffffc008d09d40 b iommu_deferred_attach_enabled
-ffffffc008d09d40 b iommu_get_dma_cookie.__key
-ffffffc008d09d50 b iova_cache_users
-ffffffc008d09d58 b iova_cache
-ffffffc008d09d60 b component_debugfs_dir
-ffffffc008d09d68 b fw_devlink_strict
-ffffffc008d09d69 b fw_devlink_drv_reg_done.llvm.13135352369394788123
-ffffffc008d09d6a b fw_devlink_best_effort
-ffffffc008d09d70 B platform_notify
-ffffffc008d09d78 B platform_notify_remove
-ffffffc008d09d80 B devices_kset
-ffffffc008d09d88 b device_initialize.__key
-ffffffc008d09d88 b virtual_device_parent.virtual_dir
-ffffffc008d09d90 b dev_kobj
-ffffffc008d09d98 B sysfs_dev_block_kobj
-ffffffc008d09da0 B sysfs_dev_char_kobj
-ffffffc008d09da8 b bus_kset
-ffffffc008d09da8 b bus_register.__key
-ffffffc008d09da8 b devlink_class_init.__key
-ffffffc008d09db0 b system_kset.llvm.16381311051555132342
-ffffffc008d09db8 b driver_deferred_probe_enable
-ffffffc008d09dbc b deferred_trigger_count
-ffffffc008d09dc0 b defer_all_probes.llvm.1593265583496165218
-ffffffc008d09dc1 b initcalls_done
-ffffffc008d09dc4 B driver_deferred_probe_timeout
-ffffffc008d09dc8 b probe_count
-ffffffc008d09dcc b async_probe_drv_names
-ffffffc008d09ecc b async_probe_default
-ffffffc008d09ed0 b class_kset.llvm.7153699106138749325
-ffffffc008d09ed8 b common_cpu_attr_groups
-ffffffc008d09ee0 b hotplugable_cpu_attr_groups
-ffffffc008d09ee8 B total_cpus
-ffffffc008d09ef0 B firmware_kobj
-ffffffc008d09ef8 B coherency_max_size
-ffffffc008d09ef8 b transport_class_register.__key
-ffffffc008d09f00 b cache_dev_map
-ffffffc008d09f08 b swnode_kset
-ffffffc008d09f10 b power_attrs
-ffffffc008d09f18 b dev_pm_qos_constraints_allocate.__key
-ffffffc008d09f18 b pm_runtime_init.__key
-ffffffc008d09f18 b pm_transition.0
-ffffffc008d09f1c b async_error
-ffffffc008d09f20 B suspend_stats
-ffffffc008d09fb4 b events_lock
-ffffffc008d09fb8 b saved_count
-ffffffc008d09fbc b wakeup_irq_lock
-ffffffc008d09fc0 b combined_event_count
-ffffffc008d09fc8 b wakeup_class
-ffffffc008d09fd0 b firmware_config_sysct_table_header.llvm.4914588615639669132
-ffffffc008d09fd0 b pm_clk_init.__key
-ffffffc008d09fd0 b wakeup_sources_sysfs_init.__key
-ffffffc008d09fd8 B fw_cache
-ffffffc008d09ff8 b strpath
-ffffffc008d0a9f0 b fw_path_para
-ffffffc008d0b3e6 b register_sysfs_loader.__key
-ffffffc008d0b3e8 b sections_per_block
-ffffffc008d0b3f0 b memory_blocks
-ffffffc008d0b400 b __regmap_init.__key
-ffffffc008d0b400 b __regmap_init.__key.5
-ffffffc008d0b400 b regmap_debugfs_root
-ffffffc008d0b408 b dummy_index
-ffffffc008d0b408 b regmap_debugfs_init.__key
-ffffffc008d0b410 b early_soc_dev_attr.llvm.2478238250282218263
-ffffffc008d0b418 b scale_freq_counters_mask
-ffffffc008d0b420 b scale_freq_invariant
-ffffffc008d0b428 b raw_capacity
-ffffffc008d0b430 b topology_parse_cpu_capacity.cap_parsing_failed
-ffffffc008d0b438 B cpu_topology
-ffffffc008d0bb38 B topology_update_done
-ffffffc008d0bb40 b brd_debugfs_dir
-ffffffc008d0bb48 b brd_alloc.__key
-ffffffc008d0bb48 b max_part
-ffffffc008d0bb4c b loop_add.__key
-ffffffc008d0bb4c b part_shift
-ffffffc008d0bb50 b loop_add.__key.2
-ffffffc008d0bb50 b num_request_queues
-ffffffc008d0bb54 b poll_queues
-ffffffc008d0bb58 b virtblk_queue_depth
-ffffffc008d0bb5c b major
-ffffffc008d0bb60 b major
-ffffffc008d0bb68 b virtblk_wq
-ffffffc008d0bb70 b virtblk_probe.__key
-ffffffc008d0bb70 b virtblk_probe.__key.4
-ffffffc008d0bb70 b zram_major
-ffffffc008d0bb74 b zram_add.__key
-ffffffc008d0bb74 b zram_add.__key.5
-ffffffc008d0bb78 b huge_class_size
-ffffffc008d0bb80 b open_dice_probe.dev_idx
-ffffffc008d0bb80 b zram_init.__key
-ffffffc008d0bb88 b vcpu_stall_detectors
-ffffffc008d0bb90 b vcpu_stall_config.0
-ffffffc008d0bb98 b vcpu_stall_config.1
-ffffffc008d0bba0 b vcpu_stall_config.2
-ffffffc008d0bba8 b vcpu_stall_config.4
-ffffffc008d0bbac b syscon_list_slock
-ffffffc008d0bbb0 b db_list
-ffffffc008d0bbe0 b dma_buf_export.__key
-ffffffc008d0bbe0 b dma_buf_export.__key.1
-ffffffc008d0bbe0 b dma_buf_mnt
-ffffffc008d0bbe8 b dma_buf_getfile.dmabuf_inode
-ffffffc008d0bbf0 b dma_buf_debugfs_dir
-ffffffc008d0bbf0 b dma_buf_init.__key
-ffffffc008d0bbf8 b dma_fence_stub_lock
-ffffffc008d0bc00 b dma_fence_stub
-ffffffc008d0bc40 b dma_heap_devt
-ffffffc008d0bc48 b dma_heap_class
-ffffffc008d0bc50 b dma_heap_init.__key
-ffffffc008d0bc50 b dma_heap_kobject
-ffffffc008d0bc58 b dma_buf_stats_kset.llvm.11038582518120488096
-ffffffc008d0bc60 b dma_buf_per_buffer_stats_kset.llvm.11038582518120488096
-ffffffc008d0bc68 B blackhole_netdev
-ffffffc008d0bc70 b uio_class_registered
-ffffffc008d0bc71 b __uio_register_device.__key
-ffffffc008d0bc71 b __uio_register_device.__key.1
-ffffffc008d0bc74 b uio_major
-ffffffc008d0bc78 b uio_cdev
-ffffffc008d0bc80 b init_uio_class.__key
-ffffffc008d0bc80 b serio_event_lock
-ffffffc008d0bc84 b input_allocate_device.__key
-ffffffc008d0bc84 b input_devices_state
-ffffffc008d0bc84 b serio_init_port.__key
-ffffffc008d0bc84 b serport_ldisc_open.__key
-ffffffc008d0bc88 b proc_bus_input_dir
-ffffffc008d0bc90 b input_ff_create.__key
-ffffffc008d0bc90 b input_init.__key
-ffffffc008d0bc90 B rtc_class
-ffffffc008d0bc98 b old_system
-ffffffc008d0bc98 b rtc_allocate_device.__key
-ffffffc008d0bc98 b rtc_allocate_device.__key.7
-ffffffc008d0bc98 b rtc_init.__key
-ffffffc008d0bca8 b old_rtc.0
-ffffffc008d0bcb0 b old_delta.0
-ffffffc008d0bcb8 b old_delta.1
-ffffffc008d0bcc0 b rtc_devt
-ffffffc008d0bcc8 B power_supply_notifier
-ffffffc008d0bcd8 B power_supply_class
-ffffffc008d0bce0 b power_supply_dev_type
-ffffffc008d0bd10 b __power_supply_attrs
-ffffffc008d0bd10 b power_supply_class_init.__key
-ffffffc008d0bf78 b wtd_deferred_reg_done
-ffffffc008d0bf80 b watchdog_kworker
-ffffffc008d0bf88 b watchdog_dev_init.__key
-ffffffc008d0bf88 b watchdog_devt
-ffffffc008d0bf8c b open_timeout
-ffffffc008d0bf90 b old_wd_data
-ffffffc008d0bf90 b watchdog_cdev_register.__key
-ffffffc008d0bf98 b create
-ffffffc008d0bfa0 b _dm_event_cache.llvm.8179748640175308355
-ffffffc008d0bfa8 B stats_enabled
-ffffffc008d0bfb8 b _minor_lock
-ffffffc008d0bfbc b _major
-ffffffc008d0bfc0 b deferred_remove_workqueue
-ffffffc008d0bfc8 b alloc_dev.__key
-ffffffc008d0bfc8 b alloc_dev.__key.15
-ffffffc008d0bfc8 b alloc_dev.__key.17
-ffffffc008d0bfc8 b alloc_dev.__key.19
-ffffffc008d0bfc8 b alloc_dev.__key.20
-ffffffc008d0bfc8 b alloc_dev.__key.22
-ffffffc008d0bfc8 b alloc_dev.__key.24
-ffffffc008d0bfc8 B dm_global_event_nr
-ffffffc008d0bfd0 B swap_bios_enabled
-ffffffc008d0bfe0 B zoned_enabled
-ffffffc008d0bff0 b name_rb_tree
-ffffffc008d0bff8 b uuid_rb_tree
-ffffffc008d0c000 b _dm_io_cache
-ffffffc008d0c008 b _job_cache
-ffffffc008d0c010 b zero_page_list
-ffffffc008d0c020 b dm_kcopyd_client_create.__key
-ffffffc008d0c020 b dm_kcopyd_copy.__key
-ffffffc008d0c020 b throttle_spinlock
-ffffffc008d0c024 b dm_stats_init.__key
-ffffffc008d0c028 b shared_memory_amount
-ffffffc008d0c030 b dm_stat_need_rcu_barrier
-ffffffc008d0c034 b shared_memory_lock
-ffffffc008d0c038 b no_sleep_enabled
-ffffffc008d0c048 b dm_bufio_client_count
-ffffffc008d0c048 b dm_bufio_client_create.__key
-ffffffc008d0c048 b dm_bufio_client_create.__key.3
-ffffffc008d0c050 b dm_bufio_cleanup_old_work
-ffffffc008d0c0a8 b dm_bufio_wq
-ffffffc008d0c0b0 b dm_bufio_current_allocated
-ffffffc008d0c0b8 b dm_bufio_allocated_get_free_pages
-ffffffc008d0c0c0 b dm_bufio_allocated_vmalloc
-ffffffc008d0c0c8 b dm_bufio_cache_size
-ffffffc008d0c0d0 b dm_bufio_peak_allocated
-ffffffc008d0c0d8 b dm_bufio_allocated_kmem_cache
-ffffffc008d0c0e0 b dm_bufio_cache_size_latch
-ffffffc008d0c0e8 b global_spinlock
-ffffffc008d0c0f0 b global_num
-ffffffc008d0c0f8 b dm_bufio_replacement_work
-ffffffc008d0c118 b dm_bufio_default_cache_size
-ffffffc008d0c120 b dm_crypt_clients_lock
-ffffffc008d0c124 b dm_crypt_clients_n
-ffffffc008d0c128 b crypt_ctr.__key
-ffffffc008d0c128 b crypt_ctr.__key.7
-ffffffc008d0c128 b dm_crypt_pages_per_client
-ffffffc008d0c130 b use_tasklet_enabled
-ffffffc008d0c140 b channel_alloc.__key
-ffffffc008d0c140 b edac_mc_owner
-ffffffc008d0c140 b user_ctr.__key
-ffffffc008d0c140 b user_ctr.__key.3
-ffffffc008d0c148 b edac_device_alloc_index.device_indexes
-ffffffc008d0c14c b edac_mc_panic_on_ue.llvm.14253691785021452348
-ffffffc008d0c150 b mci_pdev.llvm.14253691785021452348
-ffffffc008d0c158 b wq.llvm.7244572381038782604
-ffffffc008d0c160 b pci_indexes
-ffffffc008d0c164 b edac_pci_idx
-ffffffc008d0c168 b check_pci_errors.llvm.7741881415625551290
-ffffffc008d0c16c b pci_parity_count
-ffffffc008d0c170 b edac_pci_panic_on_pe
-ffffffc008d0c174 b edac_pci_sysfs_refcount
-ffffffc008d0c178 b edac_pci_top_main_kobj
-ffffffc008d0c180 b pci_nonparity_count
-ffffffc008d0c184 b protocol_lock
-ffffffc008d0c188 b transfer_last_id
-ffffffc008d0c18c b scmi_syspower_registered
-ffffffc008d0c18d b scmi_allocate_event_handler.__key
-ffffffc008d0c18d b scmi_allocate_registered_events_desc.__key
-ffffffc008d0c18d b scmi_notification_init.__key
-ffffffc008d0c18d b scmi_probe.__key
-ffffffc008d0c18d b scmi_register_protocol_events.__key
-ffffffc008d0c18d b smc_channel_lock_init.__key
-ffffffc008d0c190 b psci_0_1_function_ids
-ffffffc008d0c1a0 b psci_cpu_suspend_feature
-ffffffc008d0c1a8 b invoke_psci_fn
-ffffffc008d0c1b0 B psci_ops
-ffffffc008d0c1e8 b psci_conduit
-ffffffc008d0c1ec b psci_system_reset2_supported
-ffffffc008d0c1f0 b smccc_conduit.llvm.8965879884718085293
-ffffffc008d0c1f8 b soc_dev
-ffffffc008d0c200 b soc_dev_attr
-ffffffc008d0c208 b smccc_soc_init.soc_id_str
-ffffffc008d0c21c b smccc_soc_init.soc_id_rev_str
-ffffffc008d0c228 b smccc_soc_init.soc_id_jep106_id_str
-ffffffc008d0c238 b evtstrm_available
-ffffffc008d0c240 b arch_timer_kvm_info
-ffffffc008d0c270 b timer_unstable_counter_workaround_in_use
-ffffffc008d0c278 b arch_timer_evt
-ffffffc008d0c280 B devtree_lock
-ffffffc008d0c288 b phandle_cache
-ffffffc008d0c688 B of_kset
-ffffffc008d0c690 B of_root
-ffffffc008d0c698 B of_aliases
-ffffffc008d0c6a0 B of_chosen
-ffffffc008d0c6a8 b of_stdout_options
-ffffffc008d0c6b0 B of_stdout
-ffffffc008d0c6b8 b of_fdt_crc32
-ffffffc008d0c6c0 b reserved_mem
-ffffffc008d0e2c0 b reserved_mem_count
-ffffffc008d0e2c4 b has_nmi
-ffffffc008d0e2c8 b trace_count
-ffffffc008d0e2d0 B ras_debugfs_dir
-ffffffc008d0e2d8 b br_ioctl_hook
-ffffffc008d0e2e0 b vlan_ioctl_hook
-ffffffc008d0e2e8 b net_family_lock
-ffffffc008d0e2ec b sock_alloc_inode.__key
-ffffffc008d0e2f0 B net_high_order_alloc_disable_key
-ffffffc008d0e300 b proto_inuse_idx
-ffffffc008d0e300 b sock_lock_init.__key
-ffffffc008d0e300 b sock_lock_init.__key.10
-ffffffc008d0e308 B memalloc_socks_key
-ffffffc008d0e318 b init_net_initialized
-ffffffc008d0e319 b setup_net.__key
-ffffffc008d0e340 B init_net
-ffffffc008d0ef80 b ts_secret
-ffffffc008d0ef90 b net_secret
-ffffffc008d0efa0 b hashrnd
-ffffffc008d0efb0 b net_msg_warn
-ffffffc008d0efb4 b ptype_lock
-ffffffc008d0efb8 b netdev_chain
-ffffffc008d0efc0 b dev_boot_phase
-ffffffc008d0efc8 B netstamp_needed_key
-ffffffc008d0efd8 b netstamp_wanted
-ffffffc008d0efdc b netstamp_needed_deferred
-ffffffc008d0efe0 b generic_xdp_needed_key
-ffffffc008d0eff0 b napi_hash_lock
-ffffffc008d0eff8 b flush_all_backlogs.flush_cpus
-ffffffc008d0f000 B dev_base_lock
-ffffffc008d0f008 b netevent_notif_chain.llvm.1461331811482756632
-ffffffc008d0f018 b defer_kfree_skb_list
-ffffffc008d0f020 b rtnl_msg_handlers
-ffffffc008d0f430 b lweventlist_lock
-ffffffc008d0f438 b linkwatch_nextevent
-ffffffc008d0f440 b linkwatch_flags
-ffffffc008d0f448 b bpf_xdp_get_buff_len_bpf_ids
-ffffffc008d0f44c b bpf_skb_output_btf_ids
-ffffffc008d0f450 b bpf_xdp_output_btf_ids
-ffffffc008d0f454 B btf_sock_ids
-ffffffc008d0f494 b bpf_sock_from_file_btf_ids
-ffffffc008d0f4d8 B nfct_btf_struct_access
-ffffffc008d0f4e0 b md_dst
-ffffffc008d0f4e8 B bpf_master_redirect_enabled_key
-ffffffc008d0f4f8 B bpf_sk_lookup_enabled
-ffffffc008d0f508 b broadcast_wq
-ffffffc008d0f510 b inet_rcv_compat.llvm.6715881128868966678
-ffffffc008d0f518 b sock_diag_handlers
-ffffffc008d0f688 B reuseport_lock
-ffffffc008d0f68c b fib_notifier_net_id
-ffffffc008d0f690 b mem_id_ht
-ffffffc008d0f698 b mem_id_init
-ffffffc008d0f69c b offload_lock
-ffffffc008d0f6a0 b netdev_kobject_init.__key
-ffffffc008d0f6a0 b store_rps_dev_flow_table_cnt.rps_dev_flow_lock
-ffffffc008d0f6a8 b wireless_attrs
-ffffffc008d0f6b0 B nl_table_lock
-ffffffc008d0f6b8 b netlink_tap_net_id
-ffffffc008d0f6bc b nl_table_users
-ffffffc008d0f6c0 b __netlink_create.__key
-ffffffc008d0f6c0 b __netlink_create.__key.7
-ffffffc008d0f6c0 B genl_sk_destructing_cnt
-ffffffc008d0f6c0 b netlink_tap_init_net.__key
-ffffffc008d0f6c4 b ethtool_rx_flow_rule_create.zero_addr
-ffffffc008d0f6d4 b ethtool_phys_id.busy
-ffffffc008d0f6d8 B ethtool_phy_ops
-ffffffc008d0f6e0 b ethnl_bcast_seq
-ffffffc008d0f6e4 b ip_rt_max_size
-ffffffc008d0f6e8 b fnhe_lock
-ffffffc008d0f6f0 b fnhe_hashfun.fnhe_hash_key
-ffffffc008d0f700 b dst_entries_init.__key
-ffffffc008d0f700 b dst_entries_init.__key
-ffffffc008d0f700 b dst_entries_init.__key
-ffffffc008d0f700 b dst_entries_init.__key
-ffffffc008d0f700 b ip4_frags
-ffffffc008d0f780 b ip4_frags_secret_interval_unused
-ffffffc008d0f784 b dist_min
-ffffffc008d0f788 B ip4_min_ttl
-ffffffc008d0f798 b table_perturb
-ffffffc008d0f7a0 b tcp_init.__key
-ffffffc008d0f7a0 b tcp_orphan_timer
-ffffffc008d0f7c8 b tcp_orphan_cache
-ffffffc008d0f7cc b tcp_enable_tx_delay.__tcp_tx_delay_enabled
-ffffffc008d0f800 B tcp_memory_allocated
-ffffffc008d0f840 B tcp_sockets_allocated
-ffffffc008d0f868 B tcp_tx_delay_enabled
-ffffffc008d0f878 B tcp_hashinfo
-ffffffc008d0f8c8 b tcp_cong_list_lock
-ffffffc008d0f8cc b fastopen_seqlock
-ffffffc008d0f8d4 b tcp_metrics_lock
-ffffffc008d0f8d8 b tcpmhash_entries
-ffffffc008d0f8dc b tcp_ulp_list_lock
-ffffffc008d0f900 B raw_v4_hashinfo
-ffffffc008d10140 B udp_encap_needed_key
-ffffffc008d10180 B udp_memory_allocated
-ffffffc008d10188 b icmp_global
-ffffffc008d10198 b inet_addr_lst
-ffffffc008d10998 b inetsw_lock
-ffffffc008d109a0 b inetsw
-ffffffc008d10a50 b fib_info_lock
-ffffffc008d10a54 b fib_info_cnt
-ffffffc008d10a58 b fib_info_hash_size
-ffffffc008d10a60 b fib_info_hash
-ffffffc008d10a68 b fib_info_laddrhash
-ffffffc008d10a70 b fib_info_devhash
-ffffffc008d11270 b fib_info_hash_bits
-ffffffc008d11274 b tnode_free_size
-ffffffc008d11278 b inet_frag_wq
-ffffffc008d11280 b fqdir_free_list
-ffffffc008d11288 b ping_table
-ffffffc008d11490 b ping_port_rover
-ffffffc008d11498 B pingv6_ops
-ffffffc008d114c8 B ip_tunnel_metadata_cnt
-ffffffc008d114d8 b nexthop_net_init.__key
-ffffffc008d114d8 B udp_tunnel_nic_ops
-ffffffc008d114e0 b ip_ping_group_range_min
-ffffffc008d114e8 b ip_privileged_port_min
-ffffffc008d114f0 b inet_diag_table
-ffffffc008d114f8 b __xfrm_policy_check.dummy
-ffffffc008d11550 b xfrm_policy_afinfo_lock
-ffffffc008d11554 b xfrm_if_cb_lock
-ffffffc008d11558 b xfrm_policy_inexact_table
-ffffffc008d115e0 b xfrm_gen_index.idx_generator
-ffffffc008d115e4 b xfrm_net_init.__key
-ffffffc008d115e4 b xfrm_state_gc_lock
-ffffffc008d115e8 b xfrm_state_gc_list
-ffffffc008d115f0 b xfrm_state_find.saddr_wildcard
-ffffffc008d11600 b xfrm_get_acqseq.acqseq
-ffffffc008d11604 b xfrm_km_lock
-ffffffc008d11608 b xfrm_state_afinfo_lock
-ffffffc008d11610 b xfrm_state_afinfo
-ffffffc008d11780 b xfrm_input_afinfo_lock
-ffffffc008d11788 b xfrm_input_afinfo
-ffffffc008d11838 b gro_cells
-ffffffc008d11840 b xfrm_napi_dev
-ffffffc008d12080 b ipcomp_scratches
-ffffffc008d12088 b ipcomp_scratch_users
-ffffffc008d1208c b bsd_socket_locks
-ffffffc008d12490 b bsd_socket_buckets
-ffffffc008d12c90 b unix_nr_socks
-ffffffc008d12c98 b gc_in_progress
-ffffffc008d12c98 b unix_create1.__key
-ffffffc008d12c98 b unix_create1.__key.10
-ffffffc008d12c98 b unix_create1.__key.12
-ffffffc008d12c9c B unix_gc_lock
-ffffffc008d12ca0 B unix_tot_inflight
-ffffffc008d12ca4 b disable_ipv6_mod.llvm.7951582433838837427
-ffffffc008d12ca8 b inetsw6_lock
-ffffffc008d12cb0 b inetsw6
-ffffffc008d12d60 b inet6_acaddr_lst.llvm.6958494622049000337
-ffffffc008d13560 b acaddr_hash_lock
-ffffffc008d13568 b addrconf_wq
-ffffffc008d13570 b ipv6_generate_stable_address.lock
-ffffffc008d13574 b ipv6_generate_stable_address.digest
-ffffffc008d13588 b ipv6_generate_stable_address.workspace
-ffffffc008d135c8 b ipv6_generate_stable_address.data
-ffffffc008d13608 b rt6_exception_lock
-ffffffc008d13610 b rt6_exception_hash.rt6_exception_key
-ffffffc008d13620 B ip6_ra_lock
-ffffffc008d13628 B ip6_min_hopcount
-ffffffc008d13638 B ip6_ra_chain
-ffffffc008d13640 b ndisc_warn_deprecated_sysctl.warncomm
-ffffffc008d13650 b ndisc_warn_deprecated_sysctl.warned
-ffffffc008d13658 B udpv6_encap_needed_key
-ffffffc008d13680 B raw_v6_hashinfo
-ffffffc008d13ec0 b mld_wq.llvm.7779032959901987520
-ffffffc008d13ec8 b ip6_frags
-ffffffc008d13ec8 b ipv6_mc_init_dev.__key
-ffffffc008d13f48 b ip6_ctl_header
-ffffffc008d13f50 b ip6_frags_secret_interval_unused
-ffffffc008d13f54 b ip6_sk_fl_lock
-ffffffc008d13f58 b ip6_fl_lock
-ffffffc008d13f60 b fl_ht
-ffffffc008d14760 b fl_size
-ffffffc008d14764 b ioam6_net_init.__key
-ffffffc008d14764 b seg6_net_init.__key
-ffffffc008d14768 b ip6_header
-ffffffc008d14770 b xfrm6_tunnel_spi_lock
-ffffffc008d14778 b mip6_report_rl
-ffffffc008d147b0 b inet6addr_chain.llvm.12701357735756845290
-ffffffc008d147c0 B __fib6_flush_trees
-ffffffc008d147c8 b fanout_next_id
-ffffffc008d147c8 b packet_create.__key
-ffffffc008d147c8 b packet_net_init.__key
-ffffffc008d147cc b get_acqseq.acqseq
-ffffffc008d147d0 b net_sysctl_init.empty
-ffffffc008d147d0 b pfkey_create.__key
-ffffffc008d14810 b net_header
-ffffffc008d14818 B vsock_table_lock
-ffffffc008d14820 B vsock_connected_table
-ffffffc008d157d0 b transport_dgram
-ffffffc008d157d8 b transport_local
-ffffffc008d157e0 b transport_h2g
-ffffffc008d157e8 b transport_g2h
-ffffffc008d157f0 B vsock_bind_table
-ffffffc008d167b0 b __vsock_bind_connectible.port
-ffffffc008d167b4 b vsock_tap_lock
-ffffffc008d167b8 b virtio_vsock_workqueue
-ffffffc008d167c0 b the_virtio_vsock
-ffffffc008d167c8 b the_vsock_loopback
-ffffffc008d167c8 b virtio_vsock_probe.__key
-ffffffc008d167c8 b virtio_vsock_probe.__key.2
-ffffffc008d167c8 b virtio_vsock_probe.__key.4
-ffffffc008d16808 b dump_stack_arch_desc_str
-ffffffc008d16888 b fprop_global_init.__key
-ffffffc008d16888 b fprop_local_init_percpu.__key
-ffffffc008d16888 b klist_remove_lock
-ffffffc008d1688c b kobj_ns_type_lock
-ffffffc008d16890 b kobj_ns_ops_tbl.0
-ffffffc008d16898 B uevent_seqnum
-ffffffc008d168a0 b maple_node_cache.llvm.8773621375488764169
-ffffffc008d168a8 B radix_tree_node_cachep
-ffffffc008d168b0 B __bss_stop
-ffffffc008d17000 B init_pg_dir
-ffffffc008d1a000 B init_pg_end
-ffffffc008d20000 B _end
+ffffffc008017564 T __ashlti3
+ffffffc0080175a8 T __ashrti3
+ffffffc0080175ec T __lshrti3
+ffffffc008017634 T __traceiter_initcall_level
+ffffffc0080176b4 T __traceiter_initcall_start
+ffffffc008017734 T __traceiter_initcall_finish
+ffffffc0080177c4 t trace_event_raw_event_initcall_level
+ffffffc0080178bc t perf_trace_initcall_level
+ffffffc008017a18 t trace_event_raw_event_initcall_start
+ffffffc008017ad0 t perf_trace_initcall_start
+ffffffc008017bdc t trace_event_raw_event_initcall_finish
+ffffffc008017c9c t perf_trace_initcall_finish
+ffffffc008017db4 t rcu_read_unlock
+ffffffc008017ddc t rcu_read_unlock
+ffffffc008017e04 t rcu_read_unlock
+ffffffc008017e30 T do_one_initcall
+ffffffc008018194 t trace_raw_output_initcall_level
+ffffffc00801820c t trace_raw_output_initcall_start
+ffffffc008018280 t trace_raw_output_initcall_finish
+ffffffc0080182f8 t trace_initcall_start_cb
+ffffffc008018348 t trace_initcall_finish_cb
+ffffffc0080183c4 t run_init_process
+ffffffc00801849c T name_to_dev_t
+ffffffc008018cd4 t rootfs_init_fs_context
+ffffffc008018d18 t match_dev_by_uuid
+ffffffc008018d68 t match_dev_by_label
+ffffffc008018db8 T wait_for_initramfs
+ffffffc008018e20 t panic_show_mem
+ffffffc008018e8c t show_mem
+ffffffc008018ec4 W calibrate_delay_is_known
+ffffffc008018ed8 W calibration_delay_done
+ffffffc008018ee8 T calibrate_delay
+ffffffc00801915c T debug_monitors_arch
+ffffffc008019194 T enable_debug_monitors
+ffffffc008019330 T disable_debug_monitors
+ffffffc0080194c4 T register_user_step_hook
+ffffffc008019544 T unregister_user_step_hook
+ffffffc0080195b8 T register_kernel_step_hook
+ffffffc008019638 T unregister_kernel_step_hook
+ffffffc0080196ac T register_user_break_hook
+ffffffc00801972c T unregister_user_break_hook
+ffffffc0080197a0 T register_kernel_break_hook
+ffffffc008019820 T unregister_kernel_break_hook
+ffffffc008019894 T aarch32_break_handler
+ffffffc008019a68 t single_step_handler.llvm.15306848999799627490
+ffffffc008019bac t brk_handler.llvm.15306848999799627490
+ffffffc008019cd8 T user_rewind_single_step
+ffffffc008019d00 T user_fastforward_single_step
+ffffffc008019d28 T user_regs_reset_single_step
+ffffffc008019d4c T kernel_enable_single_step
+ffffffc008019dc0 T kernel_disable_single_step
+ffffffc008019e24 T kernel_active_single_step
+ffffffc008019e58 T user_enable_single_step
+ffffffc008019eac T user_disable_single_step
+ffffffc008019eec t clear_os_lock
+ffffffc008019f10 T do_softirq_own_stack
+ffffffc008019f48 t ____do_softirq.llvm.15992536773497516589
+ffffffc008019f74 t default_handle_irq
+ffffffc008019f98 t default_handle_fiq
+ffffffc008019fbc T task_get_vl
+ffffffc008019fe4 T task_set_vl
+ffffffc00801a00c T task_get_vl_onexec
+ffffffc00801a034 T task_set_vl_onexec
+ffffffc00801a05c T sve_state_size
+ffffffc00801a0dc T sve_alloc
+ffffffc00801a214 T fpsimd_force_sync_to_sve
+ffffffc00801a2b8 T fpsimd_sync_to_sve
+ffffffc00801a394 T sve_sync_to_fpsimd
+ffffffc00801a470 T sve_sync_from_fpsimd_zeropad
+ffffffc00801a53c T vec_set_vector_length
+ffffffc00801a8e8 t find_supported_vector_length
+ffffffc00801aa18 t get_cpu_fpsimd_context
+ffffffc00801aa68 t fpsimd_save
+ffffffc00801ac30 T fpsimd_flush_task_state
+ffffffc00801ac90 t put_cpu_fpsimd_context
+ffffffc00801ace0 T sve_set_current_vl
+ffffffc00801ad80 T sve_get_current_vl
+ffffffc00801add4 T sme_set_current_vl
+ffffffc00801ae74 T sme_get_current_vl
+ffffffc00801aec4 t vec_probe_vqs
+ffffffc00801afe0 T vec_update_vq_map
+ffffffc00801b09c T vec_verify_vq_map
+ffffffc00801b1b4 T sve_kernel_enable
+ffffffc00801b1d4 T read_zcr_features
+ffffffc00801b234 T fpsimd_release_task
+ffffffc00801b280 T sme_alloc
+ffffffc00801b2e4 T sme_kernel_enable
+ffffffc00801b320 T fa64_kernel_enable
+ffffffc00801b33c T read_smcr_features
+ffffffc00801b3c4 T do_sve_acc
+ffffffc00801b5b4 T do_sme_acc
+ffffffc00801b7a4 t fpsimd_bind_task_to_cpu
+ffffffc00801b8f0 T do_fpsimd_acc
+ffffffc00801b904 T do_fpsimd_exc
+ffffffc00801b98c T fpsimd_thread_switch
+ffffffc00801babc T fpsimd_flush_thread
+ffffffc00801becc T fpsimd_preserve_current_state
+ffffffc00801bf84 T fpsimd_signal_preserve_current_state
+ffffffc00801c0dc T fpsimd_bind_state_to_cpu
+ffffffc00801c168 T fpsimd_restore_current_state
+ffffffc00801c288 t task_fpsimd_load
+ffffffc00801c4b8 T fpsimd_update_current_state
+ffffffc00801c658 T fpsimd_save_and_flush_cpu_state
+ffffffc00801c7b0 T kernel_neon_begin
+ffffffc00801c97c T kernel_neon_end
+ffffffc00801c9ec t local_bh_enable
+ffffffc00801ca24 t local_bh_enable
+ffffffc00801ca5c t local_bh_enable
+ffffffc00801ca94 t local_bh_enable
+ffffffc00801cacc t local_bh_enable
+ffffffc00801cb04 t local_bh_enable
+ffffffc00801cb3c t local_bh_enable
+ffffffc00801cb74 t local_bh_enable
+ffffffc00801cbac t local_bh_enable
+ffffffc00801cbe4 t local_bh_enable
+ffffffc00801cc1c t local_bh_enable
+ffffffc00801cc54 t local_bh_enable
+ffffffc00801cc8c t local_bh_enable
+ffffffc00801ccc4 t local_bh_enable
+ffffffc00801ccfc t local_bh_enable
+ffffffc00801cd34 t local_bh_enable
+ffffffc00801cd6c t local_bh_enable
+ffffffc00801cda4 t local_bh_enable
+ffffffc00801cddc t local_bh_enable
+ffffffc00801ce14 t local_bh_enable
+ffffffc00801ce4c t local_bh_enable
+ffffffc00801ce84 t local_bh_enable
+ffffffc00801cebc t local_bh_enable
+ffffffc00801cef4 t local_bh_enable
+ffffffc00801cf2c t local_bh_enable
+ffffffc00801cf64 t local_bh_enable
+ffffffc00801cf9c t local_bh_enable
+ffffffc00801cfd4 t local_bh_enable
+ffffffc00801d00c t local_bh_enable
+ffffffc00801d044 t local_bh_enable
+ffffffc00801d07c t local_bh_enable
+ffffffc00801d0b4 t local_bh_enable
+ffffffc00801d0ec t local_bh_enable
+ffffffc00801d124 t local_bh_enable
+ffffffc00801d15c t local_bh_enable
+ffffffc00801d194 t local_bh_enable
+ffffffc00801d1cc t local_bh_enable
+ffffffc00801d204 t local_bh_enable
+ffffffc00801d23c t local_bh_enable
+ffffffc00801d278 t fpsimd_cpu_pm_notifier
+ffffffc00801d2bc t fpsimd_cpu_dead
+ffffffc00801d2f8 t vec_proc_do_default_vl
+ffffffc00801d414 t local_daif_restore
+ffffffc00801d424 t mte_check_tfsr_exit
+ffffffc00801d478 t local_daif_mask
+ffffffc00801d488 t __kern_my_cpu_offset
+ffffffc00801d49c t __kern_my_cpu_offset
+ffffffc00801d4b0 t local_daif_inherit
+ffffffc00801d4c8 t mte_check_tfsr_entry
+ffffffc00801d514 t mte_disable_tco_entry
+ffffffc00801d564 t do_interrupt_handler
+ffffffc00801d5fc t is_kernel_in_hyp_mode
+ffffffc00801d614 t preempt_count
+ffffffc00801d630 t preempt_count
+ffffffc00801d64c t preempt_count
+ffffffc00801d668 t __preempt_count_add
+ffffffc00801d68c t __preempt_count_sub
+ffffffc00801d6b0 t cortex_a76_erratum_1463225_svc_handler
+ffffffc00801d738 t instruction_pointer
+ffffffc00801d74c T arch_cpu_idle_dead
+ffffffc00801d778 T machine_shutdown
+ffffffc00801d7ac T machine_halt
+ffffffc00801d7e8 T machine_power_off
+ffffffc00801d834 T machine_restart
+ffffffc00801d89c T __show_regs
+ffffffc00801dc24 T show_regs
+ffffffc00801dc70 T flush_thread
+ffffffc00801dd10 T arch_release_task_struct
+ffffffc00801dd3c T arch_dup_task_struct
+ffffffc00801deb8 T copy_thread
+ffffffc00801e064 T tls_preserve_current_state
+ffffffc00801e0b0 T update_sctlr_el1
+ffffffc00801e0ec T __get_wchan
+ffffffc00801e214 t get_wchan_cb
+ffffffc00801e274 T arch_align_stack
+ffffffc00801e2d0 T arch_setup_new_exec
+ffffffc00801e4d4 T set_tagged_addr_ctrl
+ffffffc00801e5d0 T get_tagged_addr_ctrl
+ffffffc00801e610 T arch_elf_adjust_prot
+ffffffc00801e640 T __traceiter_sys_enter
+ffffffc00801e6d0 T __traceiter_sys_exit
+ffffffc00801e760 t trace_event_raw_event_sys_enter
+ffffffc00801e83c t perf_trace_sys_enter
+ffffffc00801e974 t trace_event_raw_event_sys_exit
+ffffffc00801ea34 t perf_trace_sys_exit
+ffffffc00801eb50 T regs_query_register_offset
+ffffffc00801ebb4 T regs_get_kernel_stack_nth
+ffffffc00801ec24 T ptrace_disable
+ffffffc00801ec50 T flush_ptrace_hw_breakpoint
+ffffffc00801ee84 T ptrace_hw_copy_thread
+ffffffc00801eebc T task_user_regset_view
+ffffffc00801eed4 T arch_ptrace
+ffffffc00801ef18 T syscall_trace_enter
+ffffffc00801f0e4 T syscall_trace_exit
+ffffffc00801f2dc T valid_user_regs
+ffffffc00801f33c t trace_raw_output_sys_enter
+ffffffc00801f3c8 t trace_raw_output_sys_exit
+ffffffc00801f43c t gpr_get.llvm.7237144372136711134
+ffffffc00801f4a4 t gpr_set.llvm.7237144372136711134
+ffffffc00801f5a0 t fpr_get.llvm.7237144372136711134
+ffffffc00801f650 t fpr_set.llvm.7237144372136711134
+ffffffc00801f750 t fpr_active.llvm.7237144372136711134
+ffffffc00801f790 t tls_get.llvm.7237144372136711134
+ffffffc00801f8d8 t tls_set.llvm.7237144372136711134
+ffffffc00801f9cc t hw_break_get.llvm.7237144372136711134
+ffffffc00801fcdc t hw_break_set.llvm.7237144372136711134
+ffffffc00802004c t system_call_get.llvm.7237144372136711134
+ffffffc0080200f0 t system_call_set.llvm.7237144372136711134
+ffffffc008020194 t sve_get.llvm.7237144372136711134
+ffffffc0080201f4 t sve_set.llvm.7237144372136711134
+ffffffc00802025c t ssve_get.llvm.7237144372136711134
+ffffffc0080202bc t ssve_set.llvm.7237144372136711134
+ffffffc008020324 t za_get.llvm.7237144372136711134
+ffffffc00802052c t za_set.llvm.7237144372136711134
+ffffffc008020720 t pac_mask_get.llvm.7237144372136711134
+ffffffc0080207e0 t pac_enabled_keys_get.llvm.7237144372136711134
+ffffffc00802088c t pac_enabled_keys_set.llvm.7237144372136711134
+ffffffc00802093c t tagged_addr_ctrl_get.llvm.7237144372136711134
+ffffffc0080209e4 t tagged_addr_ctrl_set.llvm.7237144372136711134
+ffffffc008020a7c t user_regset_copyin
+ffffffc008020c7c t ptrace_hbp_get_initialised_bp
+ffffffc008020e20 t ptrace_hbptriggered
+ffffffc008020e5c t sve_get_common
+ffffffc008021144 t sve_set_common
+ffffffc0080214bc T arch_match_cpu_phys_id
+ffffffc0080214f0 T cpu_logical_map
+ffffffc00802151c T kvm_arm_init_hyp_services
+ffffffc008021550 t arm64_panic_block_dump
+ffffffc0080215e4 T __arm64_sys_rt_sigreturn
+ffffffc00802371c T do_notify_resume
+ffffffc008023a88 t setup_sigframe_layout
+ffffffc008023e30 t setup_rt_frame
+ffffffc008026fc4 T __arm64_sys_mmap
+ffffffc008027014 T __arm64_sys_arm64_personality
+ffffffc0080270a8 T __arm64_sys_ni_syscall
+ffffffc0080270bc T dump_backtrace
+ffffffc0080271e8 t dump_backtrace_entry
+ffffffc008027228 T show_stack
+ffffffc008027258 t stackinfo_get_task
+ffffffc00802726c t arch_local_save_flags
+ffffffc008027280 t arch_irqs_disabled_flags
+ffffffc008027298 t stackinfo_get_irq
+ffffffc0080272bc t stackinfo_get_overflow
+ffffffc0080272e0 t unwind
+ffffffc008027450 T profile_pc
+ffffffc0080274c4 t profile_pc_cb
+ffffffc008027500 t __check_eq.llvm.17157443236990872785
+ffffffc008027514 t __check_ne.llvm.17157443236990872785
+ffffffc00802752c t __check_cs.llvm.17157443236990872785
+ffffffc008027540 t __check_cc.llvm.17157443236990872785
+ffffffc008027558 t __check_mi.llvm.17157443236990872785
+ffffffc00802756c t __check_pl.llvm.17157443236990872785
+ffffffc008027584 t __check_vs.llvm.17157443236990872785
+ffffffc008027598 t __check_vc.llvm.17157443236990872785
+ffffffc0080275b0 t __check_hi.llvm.17157443236990872785
+ffffffc0080275c8 t __check_ls.llvm.17157443236990872785
+ffffffc0080275e4 t __check_ge.llvm.17157443236990872785
+ffffffc0080275fc t __check_lt.llvm.17157443236990872785
+ffffffc008027614 t __check_gt.llvm.17157443236990872785
+ffffffc008027634 t __check_le.llvm.17157443236990872785
+ffffffc008027650 t __check_al.llvm.17157443236990872785
+ffffffc008027664 T die
+ffffffc008027980 T arm64_force_sig_fault
+ffffffc0080279ec t arm64_show_signal.llvm.17157443236990872785
+ffffffc008027ae8 T arm64_force_sig_mceerr
+ffffffc008027b48 T arm64_force_sig_ptrace_errno_trap
+ffffffc008027b98 T arm64_notify_die
+ffffffc008027c54 T arm64_skip_faulting_instruction
+ffffffc008027cbc T register_undef_hook
+ffffffc008027d48 T unregister_undef_hook
+ffffffc008027dc8 T force_signal_inject
+ffffffc008027f04 T arm64_notify_segfault
+ffffffc008027fe0 T do_undefinstr
+ffffffc008028298 T do_el0_bti
+ffffffc0080282d4 T do_el1_bti
+ffffffc008028310 T do_el0_fpac
+ffffffc00802834c T do_el1_fpac
+ffffffc008028388 T do_sysinstr
+ffffffc0080284c0 T esr_get_class_string
+ffffffc0080284e0 T bad_el0_sync
+ffffffc008028540 T panic_bad_stack
+ffffffc008028684 T arm64_serror_panic
+ffffffc008028708 T arm64_is_fatal_ras_serror
+ffffffc0080287d8 T do_serror
+ffffffc0080288dc T is_valid_bugaddr
+ffffffc0080288f0 t cfi_handler
+ffffffc008028a08 t bug_handler
+ffffffc008028ab8 t user_cache_maint_handler
+ffffffc008029208 t ctr_read_handler
+ffffffc0080292cc t cntvct_read_handler
+ffffffc008029368 t cntfrq_read_handler
+ffffffc0080293e8 t mrs_handler
+ffffffc008029464 t wfi_handler
+ffffffc0080294cc t reserved_fault_handler
+ffffffc008029510 T __memcpy_fromio
+ffffffc0080296a4 T __memcpy_toio
+ffffffc008029824 T __memset_io
+ffffffc008029970 T arch_setup_additional_pages
+ffffffc008029b2c t vvar_fault
+ffffffc008029b90 t vdso_mremap
+ffffffc008029bb4 t cpu_psci_cpu_boot
+ffffffc008029c54 t cpu_psci_cpu_can_disable
+ffffffc008029c74 t cpu_psci_cpu_disable
+ffffffc008029ca8 t cpu_psci_cpu_die
+ffffffc008029cf8 t cpu_psci_cpu_kill
+ffffffc008029dec T get_cpu_ops
+ffffffc008029e18 T return_address
+ffffffc008029ea0 t save_return_addr
+ffffffc008029ed0 t c_start.llvm.16241995296713248929
+ffffffc008029eec t c_stop.llvm.16241995296713248929
+ffffffc008029efc t c_next.llvm.16241995296713248929
+ffffffc008029f1c t c_show.llvm.16241995296713248929
+ffffffc00802a1b8 T cpuinfo_store_cpu
+ffffffc00802a224 t __cpuinfo_store_cpu
+ffffffc00802a4a4 t cpuid_cpu_online
+ffffffc00802a588 t cpuid_cpu_offline
+ffffffc00802a614 t midr_el1_show
+ffffffc00802a664 t revidr_el1_show
+ffffffc00802a6b8 t smidr_el1_show
+ffffffc00802a70c t is_affected_midr_range_list.llvm.10184764501973911476
+ffffffc00802a7a0 t cpu_enable_cache_maint_trap.llvm.10184764501973911476
+ffffffc00802a7c4 t is_affected_midr_range.llvm.10184764501973911476
+ffffffc00802a884 t cpucap_multi_entry_cap_matches.llvm.10184764501973911476
+ffffffc00802a904 t has_mismatched_cache_type.llvm.10184764501973911476
+ffffffc00802a99c t cpu_enable_trap_ctr_access.llvm.10184764501973911476
+ffffffc00802a9f8 t has_cortex_a76_erratum_1463225.llvm.10184764501973911476
+ffffffc00802aa9c t needs_tx2_tvm_workaround.llvm.10184764501973911476
+ffffffc00802abc8 t has_neoverse_n1_erratum_1542419.llvm.10184764501973911476
+ffffffc00802ac30 t cpu_clear_bf16_from_user_emulation.llvm.10184764501973911476
+ffffffc00802aca0 t is_kryo_midr.llvm.10184764501973911476
+ffffffc00802acfc T dump_cpu_features
+ffffffc00802ad3c T get_arm64_ftr_reg
+ffffffc00802ad94 t init_cpu_ftr_reg
+ffffffc00802b054 t init_32bit_cpu_features
+ffffffc00802b1a8 T read_sanitised_ftr_reg
+ffffffc00802b20c T update_cpu_features
+ffffffc00802bc94 t check_update_ftr_reg
+ffffffc00802be50 T __read_sysreg_by_encoding
+ffffffc00802c314 T system_32bit_el0_cpumask
+ffffffc00802c3b8 T kaslr_requires_kpti
+ffffffc00802c438 T cpu_has_amu_feat
+ffffffc00802c468 T get_cpu_with_amu_feat
+ffffffc00802c4a4 T check_local_cpu_capabilities
+ffffffc00802c6f0 t update_cpu_capabilities
+ffffffc00802c878 T this_cpu_has_cap
+ffffffc00802c91c T cpu_set_feature
+ffffffc00802c97c T cpu_have_feature
+ffffffc00802c9ac T cpu_get_elf_hwcap
+ffffffc00802c9c4 T cpu_get_elf_hwcap2
+ffffffc00802c9d8 t setup_elf_hwcaps
+ffffffc00802caf0 T do_emulate_mrs
+ffffffc00802cc2c T arm64_get_meltdown_state
+ffffffc00802cc88 T cpu_show_meltdown
+ffffffc00802cd2c t search_cmp_ftr_reg
+ffffffc00802cd44 t has_always
+ffffffc00802cd58 t has_useable_gicv3_cpuif
+ffffffc00802cde8 t has_cpuid_feature
+ffffffc00802cef0 t cpu_enable_pan
+ffffffc00802cf58 t has_no_hw_prefetch
+ffffffc00802cf90 t runs_at_el2
+ffffffc00802cfac t cpu_copy_el2regs
+ffffffc00802cfe8 t has_32bit_el0
+ffffffc00802d04c t unmap_kernel_at_el0
+ffffffc00802d32c t kpti_install_ng_mappings
+ffffffc00802d6b4 t has_no_fpsimd
+ffffffc00802d720 t cpu_clear_disr
+ffffffc00802d738 t has_amu
+ffffffc00802d74c t cpu_amu_enable
+ffffffc00802d8e0 t has_cache_idc
+ffffffc00802d938 t cpu_emulate_effective_ctr
+ffffffc00802d964 t has_cache_dic
+ffffffc00802d99c t has_hw_dbm
+ffffffc00802dac4 t cpu_enable_hw_dbm
+ffffffc00802dbf4 t has_useable_cnp
+ffffffc00802dc54 t cpu_enable_cnp
+ffffffc00802deec t has_address_auth_cpucap
+ffffffc00802dfe8 t has_address_auth_metacap
+ffffffc00802e060 t has_generic_auth
+ffffffc00802e144 t cpu_enable_e0pd
+ffffffc00802e1e4 t bti_enable
+ffffffc00802e210 t cpu_enable_mte
+ffffffc00802e2fc t cpu_trap_el0_impdef
+ffffffc00802e320 t kpti_ng_pgd_alloc
+ffffffc00802e340 t aarch32_el0_show
+ffffffc00802e408 t verify_local_cpu_caps
+ffffffc00802e570 t cpu_enable_non_boot_scope_capabilities
+ffffffc00802e65c t has_user_cpuid_feature
+ffffffc00802e7c8 t cpucap_multi_entry_cap_matches
+ffffffc00802e848 t enable_mismatched_32bit_el0
+ffffffc00802e9c0 t emulate_mrs
+ffffffc00802ea28 T alternative_is_applied
+ffffffc00802ea70 T apply_alternatives_vdso
+ffffffc00802eb5c t __apply_alternatives
+ffffffc00802ed44 t __apply_alternatives_multi_stop.llvm.10074570819090284717
+ffffffc00802ee1c T apply_alternatives_module
+ffffffc00802ef60 T cache_line_size
+ffffffc00802efa0 T init_cache_level
+ffffffc00802f0f4 T populate_cache_leaves
+ffffffc00802f1cc T __traceiter_ipi_raise
+ffffffc00802f25c T __traceiter_ipi_entry
+ffffffc00802f2dc T __traceiter_ipi_exit
+ffffffc00802f35c t trace_event_raw_event_ipi_raise
+ffffffc00802f470 t perf_trace_ipi_raise
+ffffffc00802f5f4 t trace_event_raw_event_ipi_handler
+ffffffc00802f6ac t perf_trace_ipi_handler
+ffffffc00802f7b8 T __cpu_up
+ffffffc00802f9c4 T secondary_start_kernel
+ffffffc00802fb3c t ipi_setup
+ffffffc00802fbbc T __cpu_disable
+ffffffc00802fcb0 T __cpu_die
+ffffffc00802fd50 T cpu_die
+ffffffc00802fdc0 T cpu_die_early
+ffffffc00802feac T arch_show_interrupts
+ffffffc008030028 T arch_send_call_function_ipi_mask
+ffffffc008030054 t smp_cross_call.llvm.17381161589190348304
+ffffffc0080301a8 T arch_send_call_function_single_ipi
+ffffffc0080301f4 T arch_irq_work_raise
+ffffffc008030258 T panic_smp_self_stop
+ffffffc00803029c t ipi_handler
+ffffffc0080305f4 T smp_send_reschedule
+ffffffc008030640 T tick_broadcast
+ffffffc008030670 T smp_send_stop
+ffffffc008030864 T crash_smp_send_stop
+ffffffc008030a5c T smp_crash_stop_failed
+ffffffc008030a84 T cpus_are_stuck_in_kernel
+ffffffc008030b30 T nr_ipi_get
+ffffffc008030b48 T ipi_desc_get
+ffffffc008030b60 t trace_raw_output_ipi_raise
+ffffffc008030bec t trace_raw_output_ipi_handler
+ffffffc008030c5c t ipi_cpu_crash_stop
+ffffffc008030d20 t smp_spin_table_cpu_init.llvm.13294162302897432044
+ffffffc008030da8 t smp_spin_table_cpu_prepare.llvm.13294162302897432044
+ffffffc008030e8c t smp_spin_table_cpu_boot.llvm.13294162302897432044
+ffffffc008030ed4 t writeq_relaxed
+ffffffc008030f64 t writeq_relaxed
+ffffffc008030ff4 t writeq_relaxed
+ffffffc008031084 t writeq_relaxed
+ffffffc008031118 T update_freq_counters_refs
+ffffffc0080311f4 T do_el0_svc
+ffffffc008031368 t invoke_syscall
+ffffffc008031468 T cpu_show_spectre_v1
+ffffffc0080314a4 T cpu_show_spectre_v2
+ffffffc008031584 T arm64_get_spectre_bhb_state
+ffffffc00803159c T has_spectre_v2
+ffffffc00803170c T arm64_get_spectre_v2_state
+ffffffc008031724 T spectre_v2_enable_mitigation
+ffffffc008031a10 T has_spectre_v3a
+ffffffc008031a74 T spectre_v3a_enable_mitigation
+ffffffc008031acc T cpu_show_spec_store_bypass
+ffffffc008031b70 T arm64_get_spectre_v4_state
+ffffffc008031b88 T has_spectre_v4
+ffffffc008031cd0 T spectre_v4_enable_mitigation
+ffffffc0080320a0 T spectre_v4_enable_task_mitigation
+ffffffc0080321a4 T arch_prctl_spec_ctrl_set
+ffffffc00803255c T arch_prctl_spec_ctrl_get
+ffffffc008032678 T spectre_bhb_loop_affected
+ffffffc0080327e4 T is_spectre_bhb_affected
+ffffffc008032abc t is_spectre_bhb_fw_affected
+ffffffc008032b84 T spectre_bhb_enable_mitigation
+ffffffc008032e70 t this_cpu_set_vectors
+ffffffc008032f0c t spectre_bhb_get_cpu_fw_mitigation_state
+ffffffc008032f98 t ssbs_emulation_handler
+ffffffc008032ff0 t arch_local_irq_enable
+ffffffc00803300c T aarch64_insn_read
+ffffffc00803308c T aarch64_insn_write
+ffffffc0080330ec t __aarch64_text_write
+ffffffc008033258 T aarch64_addr_write
+ffffffc0080332bc T aarch64_insn_patch_text_nosync
+ffffffc008033350 T aarch64_insn_patch_text
+ffffffc0080333d4 t aarch64_insn_patch_text_cb
+ffffffc00803357c T module_alloc
+ffffffc008033660 T apply_relocate_add
+ffffffc008033c34 T module_finalize
+ffffffc008033cd0 T get_plt_entry
+ffffffc008033d68 T module_emit_plt_entry
+ffffffc008033f4c T module_emit_veneer_for_adrp
+ffffffc0080340ac T module_frob_arch_sections
+ffffffc0080345cc t cmp_rela
+ffffffc00803462c T perf_reg_value
+ffffffc008034748 T perf_reg_validate
+ffffffc008034798 T perf_reg_abi
+ffffffc0080347ac T perf_get_regs_user
+ffffffc0080347d4 T perf_callchain_user
+ffffffc008034a80 T perf_callchain_kernel
+ffffffc008034ac0 t callchain_trace
+ffffffc008034b18 T perf_instruction_pointer
+ffffffc008034b2c T perf_misc_flags
+ffffffc008034b4c W arch_perf_update_userpage
+ffffffc008034cbc t armv8_pmu_device_probe
+ffffffc008034cf4 t armv8_pmuv3_pmu_init
+ffffffc008034d30 t armv8_cortex_a34_pmu_init
+ffffffc008034d6c t armv8_a35_pmu_init
+ffffffc008034da8 t armv8_a53_pmu_init
+ffffffc008034de4 t armv8_cortex_a55_pmu_init
+ffffffc008034e20 t armv8_a57_pmu_init
+ffffffc008034e5c t armv8_cortex_a65_pmu_init
+ffffffc008034e98 t armv8_a72_pmu_init
+ffffffc008034ed4 t armv8_a73_pmu_init
+ffffffc008034f10 t armv8_cortex_a75_pmu_init
+ffffffc008034f4c t armv8_cortex_a76_pmu_init
+ffffffc008034f88 t armv8_cortex_a77_pmu_init
+ffffffc008034fc4 t armv8_cortex_a78_pmu_init
+ffffffc008035000 t armv9_cortex_a510_pmu_init
+ffffffc00803503c t armv9_cortex_a710_pmu_init
+ffffffc008035078 t armv8_cortex_x1_pmu_init
+ffffffc0080350b4 t armv9_cortex_x2_pmu_init
+ffffffc0080350f0 t armv8_neoverse_e1_pmu_init
+ffffffc00803512c t armv8_neoverse_n1_pmu_init
+ffffffc008035168 t armv9_neoverse_n2_pmu_init
+ffffffc0080351a4 t armv8_neoverse_v1_pmu_init
+ffffffc0080351e0 t armv8_thunder_pmu_init
+ffffffc00803521c t armv8_vulcan_pmu_init
+ffffffc008035258 t armv8_nvidia_carmel_pmu_init
+ffffffc008035294 t armv8_nvidia_denver_pmu_init
+ffffffc0080352cc t armv8_pmu_init_nogroups
+ffffffc00803549c t armv8_pmuv3_map_event
+ffffffc00803557c t armv8pmu_handle_irq
+ffffffc008035734 t armv8pmu_enable_event
+ffffffc0080358cc t armv8pmu_disable_event
+ffffffc008035978 t armv8pmu_read_counter
+ffffffc008035a34 t armv8pmu_write_counter
+ffffffc008035ae0 t armv8pmu_get_event_idx
+ffffffc008035cf4 t armv8pmu_clear_event_idx
+ffffffc008035dbc t armv8pmu_start
+ffffffc008035eb0 t armv8pmu_stop
+ffffffc008035ed0 t armv8pmu_reset
+ffffffc008035f18 t armv8pmu_set_event_filter
+ffffffc008035f8c t armv8pmu_filter_match
+ffffffc008035fa8 t armv8pmu_user_event_idx
+ffffffc008035fe8 t __armv8pmu_probe_pmu
+ffffffc0080360cc t armv8pmu_write_evtype
+ffffffc0080362a4 t armv8pmu_read_evcntr
+ffffffc008036478 t armv8pmu_write_evcntr
+ffffffc00803664c t armv8pmu_event_attr_is_visible
+ffffffc0080366a8 t armv8pmu_events_sysfs_show
+ffffffc0080366e8 t event_show
+ffffffc008036714 t event_show
+ffffffc008036764 t long_show
+ffffffc008036794 t rdpmc_show
+ffffffc0080367c4 t slots_show
+ffffffc00803680c t bus_slots_show
+ffffffc008036854 t bus_width_show
+ffffffc0080368b8 t armv8pmu_proc_user_access_handler
+ffffffc00803692c t armv8pmu_disable_user_access_ipi
+ffffffc008036944 t armv8_a53_map_event
+ffffffc008036a28 t armv8_a57_map_event
+ffffffc008036b0c t armv8_a73_map_event
+ffffffc008036bf0 t armv8_thunder_map_event
+ffffffc008036cd4 t armv8_vulcan_map_event
+ffffffc008036db8 T hw_breakpoint_slots
+ffffffc008036e2c T arch_install_hw_breakpoint
+ffffffc008036e58 t hw_breakpoint_control.llvm.12159380819037073804
+ffffffc0080370b8 T arch_uninstall_hw_breakpoint
+ffffffc0080370e8 T arch_check_bp_in_kernelspace
+ffffffc0080371bc T arch_bp_generic_fields
+ffffffc0080372a0 T hw_breakpoint_arch_parse
+ffffffc008037528 T reinstall_suspended_bps
+ffffffc0080378c4 T hw_breakpoint_thread_switch
+ffffffc008037a64 T hw_breakpoint_pmu_read
+ffffffc008037a74 T hw_breakpoint_exceptions_notify
+ffffffc008037a84 t write_wb_reg
+ffffffc008037ddc t read_wb_reg
+ffffffc008038138 t breakpoint_handler
+ffffffc0080383ec t watchpoint_handler
+ffffffc0080387b0 t hw_breakpoint_reset
+ffffffc0080388cc T __cpu_suspend_exit
+ffffffc008038d84 T cpu_suspend
+ffffffc008038e80 T arch_jump_label_transform
+ffffffc008038eec T raw_pci_read
+ffffffc008038f78 T raw_pci_write
+ffffffc008039004 t native_steal_clock
+ffffffc008039018 t para_steal_clock
+ffffffc008039098 t stolen_time_cpu_online
+ffffffc0080391ac t stolen_time_cpu_down_prepare
+ffffffc008039214 T elf_core_extra_phdrs
+ffffffc0080392f0 T elf_core_write_extra_phdrs
+ffffffc008039430 T elf_core_extra_data_size
+ffffffc0080394b0 T elf_core_write_extra_data
+ffffffc00803977c T machine_kexec_cleanup
+ffffffc00803978c T machine_kexec_prepare
+ffffffc0080397dc T machine_kexec_post_load
+ffffffc008039a70 t kexec_page_alloc
+ffffffc008039ae8 T machine_kexec
+ffffffc008039d88 T machine_crash_shutdown
+ffffffc008039f18 T arch_kexec_protect_crashkres
+ffffffc008039fb0 T arch_kexec_unprotect_crashkres
+ffffffc00803a048 T arch_kimage_file_post_load_cleanup
+ffffffc00803a0a0 T load_other_segments
+ffffffc00803a460 t image_probe.llvm.11781187501894303154
+ffffffc00803a4a0 t image_load.llvm.11781187501894303154
+ffffffc00803a680 T arch_crash_save_vmcoreinfo
+ffffffc00803a7bc T ptrauth_prctl_reset_keys
+ffffffc00803ab2c T ptrauth_set_enabled_keys
+ffffffc00803ac60 T ptrauth_get_enabled_keys
+ffffffc00803acc4 T mte_sync_tags
+ffffffc00803adbc T memcmp_pages
+ffffffc00803aea8 T mte_enable_kernel_sync
+ffffffc00803af48 T mte_enable_kernel_async
+ffffffc00803afd4 T mte_enable_kernel_asymm
+ffffffc00803b0e0 T mte_check_tfsr_el1
+ffffffc00803b120 T mte_thread_init_user
+ffffffc00803b1b0 T set_mte_ctrl
+ffffffc00803b304 T mte_thread_switch
+ffffffc00803b410 T mte_cpu_setup
+ffffffc00803b4a0 T mte_suspend_enter
+ffffffc00803b508 T mte_suspend_exit
+ffffffc00803b5bc T get_mte_ctrl
+ffffffc00803b610 T mte_ptrace_copy_tags
+ffffffc00803bc70 t uaccess_ttbr0_enable
+ffffffc00803bd04 t uaccess_ttbr0_enable
+ffffffc00803bd98 t uaccess_ttbr0_enable
+ffffffc00803be2c t uaccess_ttbr0_enable
+ffffffc00803bec0 t uaccess_ttbr0_enable
+ffffffc00803bf54 t uaccess_ttbr0_enable
+ffffffc00803bfe8 t uaccess_ttbr0_enable
+ffffffc00803c07c t uaccess_ttbr0_enable
+ffffffc00803c110 t uaccess_ttbr0_enable
+ffffffc00803c1a4 t uaccess_ttbr0_enable
+ffffffc00803c238 t uaccess_ttbr0_enable
+ffffffc00803c2cc t uaccess_ttbr0_enable
+ffffffc00803c360 t uaccess_ttbr0_enable
+ffffffc00803c3f4 t uaccess_ttbr0_enable
+ffffffc00803c488 t uaccess_ttbr0_enable
+ffffffc00803c51c t uaccess_ttbr0_enable
+ffffffc00803c5b0 t uaccess_ttbr0_disable
+ffffffc00803c634 t uaccess_ttbr0_disable
+ffffffc00803c6b8 t uaccess_ttbr0_disable
+ffffffc00803c73c t uaccess_ttbr0_disable
+ffffffc00803c7c0 t uaccess_ttbr0_disable
+ffffffc00803c844 t uaccess_ttbr0_disable
+ffffffc00803c8c8 t uaccess_ttbr0_disable
+ffffffc00803c94c t uaccess_ttbr0_disable
+ffffffc00803c9d0 t uaccess_ttbr0_disable
+ffffffc00803ca54 t uaccess_ttbr0_disable
+ffffffc00803cad8 t uaccess_ttbr0_disable
+ffffffc00803cb5c t uaccess_ttbr0_disable
+ffffffc00803cbe0 t uaccess_ttbr0_disable
+ffffffc00803cc64 t uaccess_ttbr0_disable
+ffffffc00803cce8 t uaccess_ttbr0_disable
+ffffffc00803cd6c t uaccess_ttbr0_disable
+ffffffc00803cdf4 T mte_probe_user_range
+ffffffc00803d050 t mte_tcf_preferred_show
+ffffffc00803d0f0 t mte_tcf_preferred_store
+ffffffc00803d1d8 T arch_uprobe_copy_ixol
+ffffffc00803d2b4 T uprobe_get_swbp_addr
+ffffffc00803d2c8 T arch_uprobe_analyze_insn
+ffffffc00803d340 T arch_uprobe_pre_xol
+ffffffc00803d388 T arch_uprobe_post_xol
+ffffffc00803d3e4 T arch_uprobe_xol_was_trapped
+ffffffc00803d404 T arch_uprobe_skip_sstep
+ffffffc00803d474 T arch_uprobe_abort_xol
+ffffffc00803d4b0 T arch_uretprobe_is_alive
+ffffffc00803d4dc T arch_uretprobe_hijack_return_addr
+ffffffc00803d4fc T arch_uprobe_exception_notify
+ffffffc00803d510 t uprobe_breakpoint_handler
+ffffffc00803d544 t uprobe_single_step_handler
+ffffffc00803d5a0 T arm_probe_decode_insn
+ffffffc00803d7b0 T simulate_adr_adrp
+ffffffc00803d800 T simulate_b_bl
+ffffffc00803d828 T simulate_b_cond
+ffffffc00803d8bc T simulate_br_blr_ret
+ffffffc00803d8fc T simulate_cbz_cbnz
+ffffffc00803d974 T simulate_tbz_tbnz
+ffffffc00803d9f0 T simulate_ldr_literal
+ffffffc00803da3c T simulate_ldrsw_literal
+ffffffc00803da78 T arch_sync_dma_for_device
+ffffffc00803dab8 T arch_sync_dma_for_cpu
+ffffffc00803db00 T arch_dma_prep_coherent
+ffffffc00803db50 T arch_teardown_dma_ops
+ffffffc00803db64 T arch_setup_dma_ops
+ffffffc00803dc1c T fixup_exception
+ffffffc00803dd08 T ptep_set_access_flags
+ffffffc00803de18 T do_mem_abort
+ffffffc00803df2c T do_sp_pc_abort
+ffffffc00803df74 T do_debug_exception
+ffffffc00803e0cc T alloc_zeroed_user_highpage_movable
+ffffffc00803e124 T tag_clear_highpage
+ffffffc00803e1a8 t do_bad
+ffffffc00803e1bc t do_translation_fault
+ffffffc00803e204 t do_page_fault
+ffffffc00803e710 t do_sea
+ffffffc00803e77c t do_tag_check_fault
+ffffffc00803e7b8 t do_alignment_fault
+ffffffc00803e7e4 t do_bad_area
+ffffffc00803e8b8 t set_thread_esr
+ffffffc00803e940 t __do_kernel_fault
+ffffffc00803eba4 t mem_abort_decode
+ffffffc00803ecf4 t show_pte
+ffffffc00803eed0 T pfn_is_map_memory
+ffffffc00803ef14 T free_initmem
+ffffffc00803ef94 T dump_mem_limit
+ffffffc00803efec T copy_highpage
+ffffffc00803f144 T copy_user_highpage
+ffffffc00803f184 T sync_icache_aliases
+ffffffc00803f1f0 T copy_to_user_page
+ffffffc00803f298 T __sync_icache_dcache
+ffffffc00803f3b4 T flush_dcache_page
+ffffffc00803f404 T kvm_init_ioremap_services
+ffffffc00803f5c8 T ioremap_phys_range_hook
+ffffffc00803f83c T iounmap_phys_range_hook
+ffffffc00803fa04 T ioremap_allowed
+ffffffc00803fa60 T arch_memremap_can_ram_remap
+ffffffc00803fa98 T mem_encrypt_active
+ffffffc00803fab8 T kvm_init_memshare_services
+ffffffc00803fb90 T set_memory_encrypted
+ffffffc00803fcc4 T set_memory_decrypted
+ffffffc00803fdf8 T valid_phys_addr_range
+ffffffc00803fe48 T valid_mmap_phys_addr_range
+ffffffc00803fe68 T vm_get_page_prot
+ffffffc00803fe9c T pgd_alloc
+ffffffc00803fed4 T pgd_free
+ffffffc00803ff08 T set_swapper_pgd
+ffffffc008040038 T __set_fixmap
+ffffffc00804016c T phys_mem_access_prot
+ffffffc0080401f0 t __create_pgd_mapping_locked
+ffffffc0080401f0 T create_kpti_ng_temp_pgd
+ffffffc008040aac t pgd_pgtable_alloc
+ffffffc008040b9c T mark_rodata_ro
+ffffffc008040d1c T kern_addr_valid
+ffffffc008040eb4 T pmd_set_huge
+ffffffc008040f4c T vmemmap_free
+ffffffc008040fc8 t unmap_hotplug_range
+ffffffc008041528 t free_empty_tables
+ffffffc008041998 T __get_fixmap_pte
+ffffffc0080419dc T pud_set_huge
+ffffffc008041ba4 T pud_clear_huge
+ffffffc008041d24 T pmd_clear_huge
+ffffffc008041d74 T pmd_free_pte_page
+ffffffc008041e24 T pud_free_pmd_page
+ffffffc0080420e8 T arch_get_mappable_range
+ffffffc008042114 T arch_add_memory
+ffffffc008042298 t __pgd_pgtable_alloc
+ffffffc008042308 T arch_remove_memory
+ffffffc0080423bc t prevent_bootmem_remove_notifier
+ffffffc0080424b0 T verify_cpu_asid_bits
+ffffffc008042564 T check_and_switch_context
+ffffffc0080428cc t new_context
+ffffffc008042c68 T arm64_mm_context_get
+ffffffc008042e64 T arm64_mm_context_put
+ffffffc008042f78 T post_ttbr_update_workaround
+ffffffc008042fa0 T cpu_do_switch_mm
+ffffffc008043030 T can_set_direct_map
+ffffffc00804305c T set_memory_ro
+ffffffc00804308c t change_memory_common.llvm.12361526810777029045
+ffffffc0080432f4 T set_memory_rw
+ffffffc008043328 T set_memory_nx
+ffffffc008043384 T set_memory_x
+ffffffc0080433e0 T set_memory_valid
+ffffffc008043578 T arch_set_direct_map_range_uncached
+ffffffc00804369c T set_direct_map_invalid_noflush
+ffffffc00804375c t change_page_range
+ffffffc0080437b8 T set_direct_map_default_noflush
+ffffffc00804387c T kernel_page_present
+ffffffc008043964 T kvm_init_memrelinquish_services
+ffffffc008043a30 T kvm_has_memrelinquish_services
+ffffffc008043a50 T page_relinquish
+ffffffc008043b3c T trans_pgd_create_copy
+ffffffc008043f0c T trans_pgd_idmap_page
+ffffffc008044164 T trans_pgd_copy_el2_vectors
+ffffffc00804422c T mte_allocate_tag_storage
+ffffffc008044268 T mte_free_tag_storage
+ffffffc008044294 T mte_save_tags
+ffffffc0080443a4 T mte_restore_tags
+ffffffc008044448 T mte_invalidate_tags
+ffffffc008044484 T mte_invalidate_tags_area
+ffffffc0080445f8 T __traceiter_task_newtask
+ffffffc008044688 T __traceiter_task_rename
+ffffffc008044718 t trace_event_raw_event_task_newtask
+ffffffc0080447f8 t perf_trace_task_newtask
+ffffffc008044934 t trace_event_raw_event_task_rename
+ffffffc008044a2c t perf_trace_task_rename
+ffffffc008044b7c T nr_processes
+ffffffc008044c20 T vm_area_alloc
+ffffffc008044d14 T vm_area_dup
+ffffffc008044e50 T __vm_area_free
+ffffffc008044f0c T vm_area_free
+ffffffc008044f40 t vm_area_free_rcu_cb.llvm.15509968505927416488
+ffffffc008044f6c T exit_task_stack_account
+ffffffc008044ff4 T put_task_stack
+ffffffc0080450c8 T free_task
+ffffffc008045160 T __mmdrop
+ffffffc0080452c8 T __put_task_struct
+ffffffc0080454bc t free_vm_stack_cache
+ffffffc00804553c T set_task_stack_end_magic
+ffffffc00804555c T mm_alloc
+ffffffc0080455b4 t mm_init
+ffffffc00804571c T mmput
+ffffffc008045788 t __mmput
+ffffffc0080458e4 T mmput_async
+ffffffc008045984 t mmput_async_fn
+ffffffc0080459b4 T set_mm_exe_file
+ffffffc008045ae4 T replace_mm_exe_file
+ffffffc008045e18 T get_mm_exe_file
+ffffffc008045ec8 T get_task_exe_file
+ffffffc008045fac T get_task_mm
+ffffffc008046048 T mm_access
+ffffffc008046184 T exit_mm_release
+ffffffc0080461c8 t mm_release.llvm.15509968505927416488
+ffffffc0080463a8 T exec_mm_release
+ffffffc0080463f0 T __cleanup_sighand
+ffffffc008046494 T __arm64_sys_set_tid_address
+ffffffc0080464d8 T pidfd_pid
+ffffffc00804650c t pidfd_poll.llvm.15509968505927416488
+ffffffc00804658c t pidfd_release.llvm.15509968505927416488
+ffffffc0080465c4 t pidfd_show_fdinfo.llvm.15509968505927416488
+ffffffc008046650 t idle_dummy
+ffffffc008046660 t copy_process
+ffffffc00804725c T copy_init_mm
+ffffffc00804728c t dup_mm
+ffffffc008047a1c T create_io_thread
+ffffffc008047ab0 T kernel_clone
+ffffffc008047f54 t ptrace_event_pid
+ffffffc008047ff0 T kernel_thread
+ffffffc00804808c T user_mode_thread
+ffffffc008048120 T __arm64_sys_clone
+ffffffc0080481b8 T __arm64_sys_clone3
+ffffffc008048310 T walk_process_tree
+ffffffc008048424 t sighand_ctor
+ffffffc008048464 T unshare_fd
+ffffffc008048518 T ksys_unshare
+ffffffc008048794 T __arm64_sys_unshare
+ffffffc0080487c8 T unshare_files
+ffffffc008048898 T sysctl_max_threads
+ffffffc008048958 t trace_raw_output_task_newtask
+ffffffc0080489d8 t trace_raw_output_task_rename
+ffffffc008048a54 t refcount_inc
+ffffffc008048ac4 t refcount_inc
+ffffffc008048b34 t refcount_inc
+ffffffc008048ba4 t refcount_inc
+ffffffc008048c14 t refcount_inc
+ffffffc008048c84 t refcount_inc
+ffffffc008048cf4 t refcount_inc
+ffffffc008048d64 t refcount_inc
+ffffffc008048dd4 t try_release_thread_stack_to_cache
+ffffffc008048f50 t thread_stack_free_rcu
+ffffffc008048f94 t free_signal_struct
+ffffffc008049058 t mmdrop_async_fn
+ffffffc008049084 t dup_task_struct
+ffffffc008049478 t copy_files
+ffffffc00804954c t copy_fs
+ffffffc0080495e4 t copy_sighand
+ffffffc0080496ec t copy_signal
+ffffffc008049870 t copy_mm
+ffffffc00804992c t get_pid
+ffffffc0080499b4 t get_pid
+ffffffc008049a38 t get_pid
+ffffffc008049ac0 t copy_seccomp
+ffffffc008049b94 t ptrace_init_task
+ffffffc008049c3c t tty_kref_get
+ffffffc008049cc4 t list_add_tail_rcu
+ffffffc008049d20 t list_add_tail_rcu
+ffffffc008049d7c t list_add_tail_rcu
+ffffffc008049dd8 t syscall_tracepoint_update
+ffffffc008049e54 t trace_task_newtask
+ffffffc008049f60 t copy_oom_score_adj
+ffffffc00804a01c t copy_clone_args_from_user
+ffffffc00804a498 T __arm64_sys_personality
+ffffffc00804a4c0 t execdomains_proc_show
+ffffffc00804a4f8 W nmi_panic_self_stop
+ffffffc00804a524 T nmi_panic
+ffffffc00804a5e0 T panic
+ffffffc00804a9a8 T check_panic_on_warn
+ffffffc00804aa54 T test_taint
+ffffffc00804aa80 t panic_print_sys_info
+ffffffc00804ab08 t no_blink
+ffffffc00804ab1c T print_tainted
+ffffffc00804abc8 T get_taint
+ffffffc00804abe0 T add_taint
+ffffffc00804acd8 T oops_may_print
+ffffffc00804acf8 T oops_enter
+ffffffc00804ad28 t do_oops_enter_exit.llvm.13573170903030736903
+ffffffc00804ae38 T oops_exit
+ffffffc00804ae7c T __warn
+ffffffc00804b1a8 T __warn_printk
+ffffffc00804b388 t warn_count_show
+ffffffc00804b3d8 t clear_warn_once_fops_open
+ffffffc00804b418 t clear_warn_once_set
+ffffffc00804b464 T __traceiter_cpuhp_enter
+ffffffc00804b50c T __traceiter_cpuhp_multi_enter
+ffffffc00804b5bc T __traceiter_cpuhp_exit
+ffffffc00804b664 t trace_event_raw_event_cpuhp_enter
+ffffffc00804b73c t perf_trace_cpuhp_enter
+ffffffc00804b86c t trace_event_raw_event_cpuhp_multi_enter
+ffffffc00804b944 t perf_trace_cpuhp_multi_enter
+ffffffc00804ba74 t trace_event_raw_event_cpuhp_exit
+ffffffc00804bb48 t perf_trace_cpuhp_exit
+ffffffc00804bc74 T cpu_maps_update_begin
+ffffffc00804bca8 T cpu_maps_update_done
+ffffffc00804bcdc T cpus_read_lock
+ffffffc00804bdf4 T cpus_read_trylock
+ffffffc00804bf20 T cpus_read_unlock
+ffffffc00804c0a4 T cpus_write_lock
+ffffffc00804c0d8 T cpus_write_unlock
+ffffffc00804c10c T lockdep_assert_cpus_held
+ffffffc00804c11c T cpu_hotplug_disable
+ffffffc00804c174 T cpu_hotplug_enable
+ffffffc00804c1f4 W arch_smt_update
+ffffffc00804c204 T clear_tasks_mm_cpumask
+ffffffc00804c2e8 T cpuhp_report_idle_dead
+ffffffc00804c384 t cpuhp_complete_idle_dead
+ffffffc00804c3b4 T cpu_device_down
+ffffffc00804c428 t cpu_down
+ffffffc00804c4a4 T remove_cpu
+ffffffc00804c504 T smp_shutdown_nonboot_cpus
+ffffffc00804c644 T notify_cpu_starting
+ffffffc00804c7cc T cpuhp_online_idle
+ffffffc00804c838 T cpu_device_up
+ffffffc00804c8f4 T add_cpu
+ffffffc00804c954 T bringup_hibernate_cpu
+ffffffc00804ca70 T bringup_nonboot_cpus
+ffffffc00804cba4 T freeze_secondary_cpus
+ffffffc00804cedc W arch_thaw_secondary_cpus_begin
+ffffffc00804ceec W arch_thaw_secondary_cpus_end
+ffffffc00804cefc T thaw_secondary_cpus
+ffffffc00804d1ac t _cpu_up
+ffffffc00804d520 T __cpuhp_state_add_instance_cpuslocked
+ffffffc00804d76c t cpuhp_issue_call
+ffffffc00804d938 T __cpuhp_state_add_instance
+ffffffc00804d99c T __cpuhp_setup_state_cpuslocked
+ffffffc00804dd50 T __cpuhp_setup_state
+ffffffc00804ddd4 T __cpuhp_state_remove_instance
+ffffffc00804df70 T __cpuhp_remove_state_cpuslocked
+ffffffc00804e170 T __cpuhp_remove_state
+ffffffc00804e1bc T init_cpu_present
+ffffffc00804e208 T init_cpu_possible
+ffffffc00804e254 T init_cpu_online
+ffffffc00804e2a0 T set_cpu_online
+ffffffc00804e3ec T cpu_mitigations_off
+ffffffc00804e40c T cpu_mitigations_auto_nosmt
+ffffffc00804e42c t trace_raw_output_cpuhp_enter
+ffffffc00804e4a8 t trace_raw_output_cpuhp_multi_enter
+ffffffc00804e524 t trace_raw_output_cpuhp_exit
+ffffffc00804e59c t cpuhp_should_run
+ffffffc00804e5c4 t cpuhp_thread_fun
+ffffffc00804e7a0 t cpuhp_invoke_callback
+ffffffc00804f198 t cpuhp_kick_ap_work
+ffffffc00804f3d4 t cpuhp_kick_ap
+ffffffc00804f62c t cpu_hotplug_pm_callback
+ffffffc00804f700 t bringup_cpu
+ffffffc00804f7f0 t finish_cpu
+ffffffc00804f884 t takedown_cpu
+ffffffc00804f998 t take_cpu_down
+ffffffc00804fb20 t control_show
+ffffffc00804fb68 t control_show
+ffffffc00804fbc4 t control_store
+ffffffc00804fbd8 t control_store
+ffffffc00804fc78 t active_show
+ffffffc00804fcbc t states_show
+ffffffc00804fd70 t state_show
+ffffffc00804fdd8 t state_show
+ffffffc00804fe80 t state_show
+ffffffc00804ff10 t target_show
+ffffffc00804ff7c t target_store
+ffffffc0080501dc t fail_show
+ffffffc008050248 t fail_show
+ffffffc00805028c t fail_store
+ffffffc008050410 T put_task_struct_rcu_user
+ffffffc00805049c t delayed_put_task_struct
+ffffffc0080505c8 W release_thread
+ffffffc0080505d8 T release_task
+ffffffc008050b9c T rcuwait_wake_up
+ffffffc008050c04 T is_current_pgrp_orphaned
+ffffffc008050cf8 T do_exit
+ffffffc008051878 T make_task_dead
+ffffffc0080519fc T __arm64_sys_exit
+ffffffc008051a20 T do_group_exit
+ffffffc008051ac4 T __arm64_sys_exit_group
+ffffffc008051ae8 T __wake_up_parent
+ffffffc008051b24 T __arm64_sys_waitid
+ffffffc008052638 T kernel_wait4
+ffffffc0080528c0 t do_wait
+ffffffc008052b88 T kernel_wait
+ffffffc008052c3c T __arm64_sys_wait4
+ffffffc008052e38 T thread_group_exited
+ffffffc008052ebc W abort
+ffffffc008052ec8 t oops_count_show
+ffffffc008052f14 t put_task_struct
+ffffffc008052f9c t put_task_struct
+ffffffc008053024 t kill_orphaned_pgrp
+ffffffc008053178 t child_wait_callback
+ffffffc008053200 t wait_consider_task
+ffffffc008053a24 t get_task_struct
+ffffffc008053aa8 t get_task_struct
+ffffffc008053b2c t get_task_struct
+ffffffc008053bb4 T __traceiter_irq_handler_entry
+ffffffc008053c44 T __traceiter_irq_handler_exit
+ffffffc008053cdc T __traceiter_softirq_entry
+ffffffc008053d5c T __traceiter_softirq_exit
+ffffffc008053ddc T __traceiter_softirq_raise
+ffffffc008053e5c T __traceiter_tasklet_entry
+ffffffc008053edc T __traceiter_tasklet_exit
+ffffffc008053f5c t trace_event_raw_event_irq_handler_entry
+ffffffc008054060 t perf_trace_irq_handler_entry
+ffffffc0080541d8 t trace_event_raw_event_irq_handler_exit
+ffffffc008054294 t perf_trace_irq_handler_exit
+ffffffc0080543ac t trace_event_raw_event_softirq
+ffffffc008054464 t perf_trace_softirq
+ffffffc008054570 t trace_event_raw_event_tasklet
+ffffffc008054628 t perf_trace_tasklet
+ffffffc008054734 T _local_bh_enable
+ffffffc008054784 T __local_bh_enable_ip
+ffffffc008054864 T do_softirq
+ffffffc008054960 T irq_enter_rcu
+ffffffc0080549fc T irq_enter
+ffffffc008054a9c T irq_exit_rcu
+ffffffc008054ac4 t __irq_exit_rcu.llvm.119440109613296993
+ffffffc008054c08 T irq_exit
+ffffffc008054c38 T raise_softirq_irqoff
+ffffffc008054cc0 T __raise_softirq_irqoff
+ffffffc008054dec T raise_softirq
+ffffffc008054eb4 T open_softirq
+ffffffc008054ee0 T __tasklet_schedule
+ffffffc008054f14 t __tasklet_schedule_common
+ffffffc008054ffc T __tasklet_hi_schedule
+ffffffc008055034 T tasklet_setup
+ffffffc008055058 T tasklet_init
+ffffffc008055078 T tasklet_unlock_spin_wait
+ffffffc00805509c T tasklet_kill
+ffffffc0080552e0 T tasklet_unlock_wait
+ffffffc0080553b0 T tasklet_unlock
+ffffffc008055414 t tasklet_action
+ffffffc008055458 t tasklet_hi_action
+ffffffc00805549c W arch_dynirq_lower_bound
+ffffffc0080554ac t trace_raw_output_irq_handler_entry
+ffffffc008055528 t trace_raw_output_irq_handler_exit
+ffffffc0080555ac t trace_raw_output_softirq
+ffffffc00805563c t trace_raw_output_tasklet
+ffffffc0080556ac t tasklet_action_common
+ffffffc008055c7c t takeover_tasklets
+ffffffc008055e80 t ksoftirqd_should_run
+ffffffc008055ea4 t run_ksoftirqd
+ffffffc008055f20 T release_child_resources
+ffffffc008055f70 t __release_child_resources.llvm.15783908483843992535
+ffffffc008055fec T request_resource_conflict
+ffffffc0080560b0 T request_resource
+ffffffc00805617c T release_resource
+ffffffc008056210 T walk_iomem_res_desc
+ffffffc008056250 t __walk_iomem_res_desc
+ffffffc008056420 T walk_system_ram_res
+ffffffc008056460 T walk_mem_res
+ffffffc0080564a0 T walk_system_ram_range
+ffffffc008056604 W page_is_ram
+ffffffc008056704 T region_intersects
+ffffffc0080567f4 W arch_remove_reservations
+ffffffc008056804 T allocate_resource
+ffffffc008056b0c t simple_align_resource
+ffffffc008056b20 T lookup_resource
+ffffffc008056b90 T insert_resource_conflict
+ffffffc008056bf8 t __insert_resource
+ffffffc008056d44 T insert_resource
+ffffffc008056db8 T insert_resource_expand_to_fit
+ffffffc008056e88 T remove_resource
+ffffffc008056f48 T adjust_resource
+ffffffc008057040 t __adjust_resource
+ffffffc0080570f0 T resource_alignment
+ffffffc00805713c T iomem_get_mapping
+ffffffc00805715c T __request_region
+ffffffc0080573f4 t free_resource
+ffffffc008057484 T __release_region
+ffffffc0080575f8 T release_mem_region_adjustable
+ffffffc0080578ac T merge_system_ram_resource
+ffffffc008057ae8 T devm_request_resource
+ffffffc008057c38 t devm_resource_release
+ffffffc008057cbc T devm_release_resource
+ffffffc008057d08 t devm_resource_match
+ffffffc008057d24 T __devm_request_region
+ffffffc008057dec t devm_region_release
+ffffffc008057e24 T __devm_release_region
+ffffffc008057ec4 t devm_region_match
+ffffffc008057f10 T iomem_map_sanity_check
+ffffffc008057ffc t r_next
+ffffffc008058040 T iomem_is_exclusive
+ffffffc008058148 T resource_list_create_entry
+ffffffc0080581a4 T resource_list_free
+ffffffc008058234 t r_start
+ffffffc0080582dc t r_stop
+ffffffc008058310 t r_show
+ffffffc008058438 t __find_resource
+ffffffc008058688 t iomem_fs_init_fs_context
+ffffffc0080586c8 T proc_dostring
+ffffffc0080588b0 T do_proc_douintvec
+ffffffc008058b60 T proc_dobool
+ffffffc008058bb4 t do_proc_dobool_conv
+ffffffc008058bec T proc_dointvec
+ffffffc008058c3c T proc_douintvec
+ffffffc008058c74 t do_proc_douintvec_conv.llvm.13241536184444368231
+ffffffc008058cbc T proc_dointvec_minmax
+ffffffc008058d44 t do_proc_dointvec_minmax_conv
+ffffffc008058e4c T proc_douintvec_minmax
+ffffffc008058eb8 t do_proc_douintvec_minmax_conv
+ffffffc008058f98 T proc_dou8vec_minmax
+ffffffc0080590c8 T proc_doulongvec_minmax
+ffffffc0080590f8 t do_proc_doulongvec_minmax.llvm.13241536184444368231
+ffffffc00805953c T proc_doulongvec_ms_jiffies_minmax
+ffffffc008059570 T proc_dointvec_jiffies
+ffffffc0080595c4 t do_proc_dointvec_jiffies_conv.llvm.13241536184444368231
+ffffffc00805964c T proc_dointvec_ms_jiffies_minmax
+ffffffc0080596d4 t do_proc_dointvec_ms_jiffies_minmax_conv
+ffffffc0080597e8 T proc_dointvec_userhz_jiffies
+ffffffc00805983c t do_proc_dointvec_userhz_jiffies_conv.llvm.13241536184444368231
+ffffffc0080598f4 T proc_dointvec_ms_jiffies
+ffffffc008059948 t do_proc_dointvec_ms_jiffies_conv.llvm.13241536184444368231
+ffffffc0080599d4 T proc_do_large_bitmap
+ffffffc008059fa4 t proc_get_long
+ffffffc00805a140 T proc_do_static_key
+ffffffc00805a298 t __do_proc_dointvec.llvm.13241536184444368231
+ffffffc00805a654 t do_proc_dointvec_conv
+ffffffc00805a6d4 t proc_taint
+ffffffc00805a820 t sysrq_sysctl_handler
+ffffffc00805a8e4 t proc_do_cad_pid
+ffffffc00805a9f0 t proc_dointvec_minmax_warn_RT_change
+ffffffc00805aa78 T __arm64_sys_capget
+ffffffc00805ae7c T __arm64_sys_capset
+ffffffc00805b2bc T has_ns_capability
+ffffffc00805b330 T has_capability
+ffffffc00805b39c T has_ns_capability_noaudit
+ffffffc00805b410 T has_capability_noaudit
+ffffffc00805b47c T ns_capable
+ffffffc00805b4f8 T ns_capable_noaudit
+ffffffc00805b574 T ns_capable_setid
+ffffffc00805b5f0 T capable
+ffffffc00805b670 T file_ns_capable
+ffffffc00805b6c0 T privileged_wrt_inode_uidgid
+ffffffc00805b6f4 T capable_wrt_inode_uidgid
+ffffffc00805b794 T ptracer_capable
+ffffffc00805b804 t cap_validate_magic
+ffffffc00805bba8 T ptrace_access_vm
+ffffffc00805bc78 T __ptrace_link
+ffffffc00805bd40 T __ptrace_unlink
+ffffffc00805bef8 T ptrace_may_access
+ffffffc00805bf60 t __ptrace_may_access
+ffffffc00805c0e0 T exit_ptrace
+ffffffc00805c1a4 t __ptrace_detach
+ffffffc00805c298 T ptrace_readdata
+ffffffc00805c570 T ptrace_writedata
+ffffffc00805c834 T ptrace_request
+ffffffc00805da10 T generic_ptrace_peekdata
+ffffffc00805dc4c T generic_ptrace_pokedata
+ffffffc00805dd3c t ptrace_setsiginfo
+ffffffc00805ddf8 t ptrace_regset
+ffffffc00805dfe4 T __arm64_sys_ptrace
+ffffffc00805e560 T find_user
+ffffffc00805e668 T free_uid
+ffffffc00805e72c T alloc_uid
+ffffffc00805e968 T __traceiter_signal_generate
+ffffffc00805ea18 T __traceiter_signal_deliver
+ffffffc00805eab0 t trace_event_raw_event_signal_generate
+ffffffc00805ebdc t perf_trace_signal_generate
+ffffffc00805ed58 t trace_event_raw_event_signal_deliver
+ffffffc00805ee68 t perf_trace_signal_deliver
+ffffffc00805efc8 T recalc_sigpending_and_wake
+ffffffc00805f09c T recalc_sigpending
+ffffffc00805f17c T calculate_sigpending
+ffffffc00805f28c T next_signal
+ffffffc00805f2d4 T task_set_jobctl_pending
+ffffffc00805f350 T task_clear_jobctl_trapping
+ffffffc00805f39c T task_clear_jobctl_pending
+ffffffc00805f41c T task_join_group_stop
+ffffffc00805f494 T flush_sigqueue
+ffffffc00805f550 T flush_signals
+ffffffc00805f6d0 T flush_itimer_signals
+ffffffc00805f8a0 T ignore_signals
+ffffffc00805f8e8 T flush_signal_handlers
+ffffffc00805f938 T unhandled_signal
+ffffffc00805f994 T dequeue_signal
+ffffffc00805fbd4 t __dequeue_signal
+ffffffc00805fd5c T signal_wake_up_state
+ffffffc00805fdd4 T send_signal_locked
+ffffffc00805ffc4 t __send_signal_locked
+ffffffc008060374 T do_send_sig_info
+ffffffc008060450 T force_sig_info
+ffffffc008060480 t force_sig_info_to_task
+ffffffc008060594 T zap_other_threads
+ffffffc0080606cc T __lock_task_sighand
+ffffffc008060760 T group_send_sig_info
+ffffffc0080607ec t check_kill_permission
+ffffffc008060914 T __kill_pgrp_info
+ffffffc0080609f4 T kill_pid_info
+ffffffc008060ab0 T kill_pid_usb_asyncio
+ffffffc008060c54 T send_sig_info
+ffffffc008060c94 T send_sig
+ffffffc008060ce4 T force_sig
+ffffffc008060d60 T force_fatal_sig
+ffffffc008060ddc T force_exit_sig
+ffffffc008060e58 T force_sigsegv
+ffffffc008060f00 T force_sig_fault_to_task
+ffffffc008060f78 T force_sig_fault
+ffffffc008060ff0 T send_sig_fault
+ffffffc008061078 T force_sig_mceerr
+ffffffc008061108 T send_sig_mceerr
+ffffffc00806119c T force_sig_bnderr
+ffffffc008061218 T force_sig_pkuerr
+ffffffc00806129c T send_sig_perf
+ffffffc00806132c T force_sig_seccomp
+ffffffc0080613d4 T force_sig_ptrace_errno_trap
+ffffffc008061458 T force_sig_fault_trapno
+ffffffc0080614d4 T send_sig_fault_trapno
+ffffffc008061560 T kill_pgrp
+ffffffc0080615d8 T kill_pid
+ffffffc00806161c T sigqueue_alloc
+ffffffc008061658 t __sigqueue_alloc
+ffffffc008061748 T sigqueue_free
+ffffffc0080617fc T send_sigqueue
+ffffffc008061ad0 t prepare_signal
+ffffffc008061db8 t complete_signal
+ffffffc0080620a8 T do_notify_parent
+ffffffc008062368 T ptrace_notify
+ffffffc008062474 T get_signal
+ffffffc008062d4c t do_notify_parent_cldstop
+ffffffc008062f04 t do_signal_stop
+ffffffc00806320c t do_jobctl_trap
+ffffffc008063314 t do_freezer_trap
+ffffffc00806339c t ptrace_signal
+ffffffc0080634b4 T signal_setup_done
+ffffffc008063630 T exit_signals
+ffffffc008063744 t retarget_shared_pending
+ffffffc00806383c t task_participate_group_stop
+ffffffc00806391c T __arm64_sys_restart_syscall
+ffffffc00806396c T do_no_restart_syscall
+ffffffc008063980 T set_current_blocked
+ffffffc0080639f4 T __set_current_blocked
+ffffffc008063a54 t __set_task_blocked
+ffffffc008063ba4 T sigprocmask
+ffffffc008063c80 T set_user_sigmask
+ffffffc008063ea4 T __arm64_sys_rt_sigprocmask
+ffffffc008064224 T __arm64_sys_rt_sigpending
+ffffffc008064428 T siginfo_layout
+ffffffc008064538 T copy_siginfo_to_user
+ffffffc0080647f4 T copy_siginfo_from_user
+ffffffc008064994 t post_copy_siginfo_from_user
+ffffffc008064bec T __arm64_sys_rt_sigtimedwait
+ffffffc008064fd8 T __arm64_sys_kill
+ffffffc0080651f0 T __arm64_sys_pidfd_send_signal
+ffffffc0080653c4 T __arm64_sys_tgkill
+ffffffc0080654b0 T __arm64_sys_tkill
+ffffffc0080655dc T __arm64_sys_rt_sigqueueinfo
+ffffffc0080656c8 T __arm64_sys_rt_tgsigqueueinfo
+ffffffc0080657b4 T kernel_sigaction
+ffffffc008065918 t flush_sigqueue_mask
+ffffffc008065a00 W sigaction_compat_abi
+ffffffc008065a10 T do_sigaction
+ffffffc008065be8 T __arm64_sys_sigaltstack
+ffffffc008066000 T restore_altstack
+ffffffc00806625c T __save_altstack
+ffffffc008066628 T __arm64_sys_rt_sigaction
+ffffffc008066968 T __arm64_sys_rt_sigsuspend
+ffffffc008066bb0 W arch_vma_name
+ffffffc008066bc4 t trace_raw_output_signal_generate
+ffffffc008066c54 t trace_raw_output_signal_deliver
+ffffffc008066ccc t print_dropped_signal
+ffffffc008066d40 t ptrace_trap_notify
+ffffffc008066e08 t ptrace_stop
+ffffffc00806711c t do_send_specific
+ffffffc0080671d8 t __copy_siginfo_from_user
+ffffffc00806738c T __arm64_sys_setpriority
+ffffffc008067618 T __arm64_sys_getpriority
+ffffffc0080678b0 T __sys_setregid
+ffffffc0080679f0 T __arm64_sys_setregid
+ffffffc008067a28 T __sys_setgid
+ffffffc008067b18 T __arm64_sys_setgid
+ffffffc008067b48 T __sys_setreuid
+ffffffc008067d24 T __arm64_sys_setreuid
+ffffffc008067d5c T __sys_setuid
+ffffffc008067edc T __arm64_sys_setuid
+ffffffc008067f0c T __sys_setresuid
+ffffffc008068190 T __arm64_sys_setresuid
+ffffffc0080681cc T __arm64_sys_getresuid
+ffffffc0080685cc T __sys_setresgid
+ffffffc0080687b8 T __arm64_sys_setresgid
+ffffffc0080687f4 T __arm64_sys_getresgid
+ffffffc008068be4 T __sys_setfsuid
+ffffffc008068cd0 T __arm64_sys_setfsuid
+ffffffc008068d00 T __sys_setfsgid
+ffffffc008068dec T __arm64_sys_setfsgid
+ffffffc008068e1c T __arm64_sys_getpid
+ffffffc008068e58 T __arm64_sys_gettid
+ffffffc008068e94 T __arm64_sys_getppid
+ffffffc008068ef0 T __arm64_sys_getuid
+ffffffc008068f1c T __arm64_sys_geteuid
+ffffffc008068f48 T __arm64_sys_getgid
+ffffffc008068f74 T __arm64_sys_getegid
+ffffffc008068fa0 T __arm64_sys_times
+ffffffc0080691a8 T __arm64_sys_setpgid
+ffffffc008069330 T __arm64_sys_getpgid
+ffffffc0080693bc T __arm64_sys_getsid
+ffffffc008069448 T ksys_setsid
+ffffffc008069530 T __arm64_sys_setsid
+ffffffc008069560 T __arm64_sys_newuname
+ffffffc008069940 T __arm64_sys_sethostname
+ffffffc008069ba8 T __arm64_sys_setdomainname
+ffffffc008069e10 T __arm64_sys_getrlimit
+ffffffc00806a018 T __arm64_sys_prlimit64
+ffffffc00806a510 T __arm64_sys_setrlimit
+ffffffc00806a6d4 T getrusage
+ffffffc00806aa00 T __arm64_sys_getrusage
+ffffffc00806abf8 T __arm64_sys_umask
+ffffffc00806ac48 T __arm64_sys_prctl
+ffffffc00806bd38 T __arm64_sys_getcpu
+ffffffc00806bfec T __arm64_sys_sysinfo
+ffffffc00806c288 t set_one_prio
+ffffffc00806c364 t do_prlimit
+ffffffc00806c4c4 t propagate_has_child_subreaper
+ffffffc00806c510 T usermodehelper_read_trylock
+ffffffc00806c650 T usermodehelper_read_lock_wait
+ffffffc00806c744 T usermodehelper_read_unlock
+ffffffc00806c778 T __usermodehelper_set_disable_depth
+ffffffc00806c7e4 T __usermodehelper_disable
+ffffffc00806c97c T call_usermodehelper_setup
+ffffffc00806ca44 t call_usermodehelper_exec_work
+ffffffc00806cb7c T call_usermodehelper_exec
+ffffffc00806cdd8 T call_usermodehelper
+ffffffc00806ce88 t proc_cap_handler
+ffffffc00806d034 t call_usermodehelper_exec_async
+ffffffc00806d1e4 T __traceiter_workqueue_queue_work
+ffffffc00806d27c T __traceiter_workqueue_activate_work
+ffffffc00806d2fc T __traceiter_workqueue_execute_start
+ffffffc00806d37c T __traceiter_workqueue_execute_end
+ffffffc00806d40c t trace_event_raw_event_workqueue_queue_work
+ffffffc00806d530 t perf_trace_workqueue_queue_work
+ffffffc00806d6c4 t trace_event_raw_event_workqueue_activate_work
+ffffffc00806d77c t perf_trace_workqueue_activate_work
+ffffffc00806d888 t trace_event_raw_event_workqueue_execute_start
+ffffffc00806d948 t perf_trace_workqueue_execute_start
+ffffffc00806da5c t trace_event_raw_event_workqueue_execute_end
+ffffffc00806db18 t perf_trace_workqueue_execute_end
+ffffffc00806dc30 T wq_worker_running
+ffffffc00806dcd8 T wq_worker_sleeping
+ffffffc00806ddac T wq_worker_last_func
+ffffffc00806dddc T queue_work_on
+ffffffc00806de80 t __queue_work
+ffffffc00806e460 T queue_work_node
+ffffffc00806e51c T delayed_work_timer_fn
+ffffffc00806e558 T queue_delayed_work_on
+ffffffc00806e6a0 T mod_delayed_work_on
+ffffffc00806e7f8 t try_to_grab_pending
+ffffffc00806e9ec T queue_rcu_work
+ffffffc00806ea70 t rcu_work_rcufn
+ffffffc00806ead0 T __flush_workqueue
+ffffffc00806efb0 t flush_workqueue_prep_pwqs
+ffffffc00806f164 t check_flush_dependency
+ffffffc00806f2b8 T drain_workqueue
+ffffffc00806f448 T flush_work
+ffffffc00806f474 t __flush_work.llvm.6423879192790161528
+ffffffc00806f75c T cancel_work_sync
+ffffffc00806f78c t __cancel_work_timer.llvm.6423879192790161528
+ffffffc00806f964 T flush_delayed_work
+ffffffc00806f9e8 T flush_rcu_work
+ffffffc00806fa44 T cancel_work
+ffffffc00806fb20 T cancel_delayed_work
+ffffffc00806fbfc T cancel_delayed_work_sync
+ffffffc00806fc30 T schedule_on_each_cpu
+ffffffc00806fdf4 T execute_in_process_context
+ffffffc00806ff20 t schedule_work
+ffffffc00806ffd0 T free_workqueue_attrs
+ffffffc008070000 T alloc_workqueue_attrs
+ffffffc008070074 T apply_workqueue_attrs
+ffffffc0080700dc t apply_workqueue_attrs_locked
+ffffffc008070194 T alloc_workqueue
+ffffffc008070718 t init_rescuer
+ffffffc008070818 T workqueue_sysfs_register
+ffffffc008070964 t pwq_adjust_max_active
+ffffffc008070a94 T destroy_workqueue
+ffffffc008070ce0 t show_pwq
+ffffffc00807108c T show_one_workqueue
+ffffffc008071184 t rcu_free_wq
+ffffffc0080711dc t put_pwq_unlocked
+ffffffc0080712cc T workqueue_set_max_active
+ffffffc0080713d0 T current_work
+ffffffc00807144c T current_is_workqueue_rescuer
+ffffffc0080714d0 T workqueue_congested
+ffffffc0080715c0 T work_busy
+ffffffc0080716c0 T set_worker_desc
+ffffffc0080717bc T print_worker_info
+ffffffc0080718f8 T show_all_workqueues
+ffffffc008071b48 T wq_worker_comm
+ffffffc008071c24 T workqueue_prepare_cpu
+ffffffc008071ccc t create_worker
+ffffffc008071eac T workqueue_online_cpu
+ffffffc0080720d4 T workqueue_offline_cpu
+ffffffc0080722e0 T work_on_cpu
+ffffffc0080723f8 t work_for_cpu_fn
+ffffffc008072450 T work_on_cpu_safe
+ffffffc0080725b4 T freeze_workqueues_begin
+ffffffc008072690 T freeze_workqueues_busy
+ffffffc008072774 T thaw_workqueues
+ffffffc008072844 T workqueue_set_unbound_cpumask
+ffffffc008072a68 t wq_device_release
+ffffffc008072a98 T wq_watchdog_touch
+ffffffc008072ae0 t init_worker_pool
+ffffffc008072c14 T __warn_flushing_systemwide_wq
+ffffffc008072c24 t trace_raw_output_workqueue_queue_work
+ffffffc008072ca4 t trace_raw_output_workqueue_activate_work
+ffffffc008072d18 t trace_raw_output_workqueue_execute_start
+ffffffc008072d8c t trace_raw_output_workqueue_execute_end
+ffffffc008072dfc t is_chained_work
+ffffffc008072e90 t pwq_activate_inactive_work
+ffffffc008073064 t pwq_dec_nr_in_flight
+ffffffc008073188 t wq_barrier_func
+ffffffc0080731b8 t cwt_wakefn
+ffffffc0080731f4 t apply_wqattrs_prepare
+ffffffc0080738e4 t apply_wqattrs_commit
+ffffffc008073a40 t put_unbound_pool
+ffffffc008073cd4 t rcu_free_pool
+ffffffc008073d24 t pwq_unbound_release_workfn
+ffffffc008073e48 t rcu_free_pwq
+ffffffc008073e80 t rescuer_thread
+ffffffc008074304 t worker_attach_to_pool
+ffffffc0080743d4 t worker_detach_from_pool
+ffffffc008074498 t process_one_work
+ffffffc008074974 t worker_clr_flags
+ffffffc0080749d4 t worker_thread
+ffffffc008074e60 t worker_enter_idle
+ffffffc008074fa0 t wq_unbound_cpumask_show
+ffffffc008075018 t wq_unbound_cpumask_store
+ffffffc0080750d4 t per_cpu_show
+ffffffc008075128 t max_active_show
+ffffffc008075174 t max_active_store
+ffffffc00807521c t wq_pool_ids_show
+ffffffc0080752c8 t wq_nice_show
+ffffffc008075340 t wq_nice_store
+ffffffc008075484 t wq_cpumask_show
+ffffffc008075504 t wq_cpumask_store
+ffffffc008075630 t wq_numa_show
+ffffffc0080756b0 t wq_numa_store
+ffffffc008075800 t wq_watchdog_param_set_thresh
+ffffffc008075950 t idle_worker_timeout
+ffffffc008075ab0 t pool_mayday_timeout
+ffffffc008075c18 t wq_watchdog_timer_fn
+ffffffc008075e94 T put_pid
+ffffffc008075f30 T free_pid
+ffffffc008076028 t delayed_put_pid
+ffffffc0080760c4 T alloc_pid
+ffffffc008076418 T disable_pid_allocation
+ffffffc008076470 T find_pid_ns
+ffffffc0080764a8 T find_vpid
+ffffffc0080764f4 T task_active_pid_ns
+ffffffc008076524 T attach_pid
+ffffffc008076588 T detach_pid
+ffffffc008076650 T change_pid
+ffffffc008076770 T exchange_tids
+ffffffc0080767d0 T transfer_pid
+ffffffc008076838 T pid_task
+ffffffc00807687c T find_task_by_pid_ns
+ffffffc0080768d0 T find_task_by_vpid
+ffffffc008076938 T find_get_task_by_vpid
+ffffffc008076a18 T get_task_pid
+ffffffc008076ae8 T get_pid_task
+ffffffc008076bb4 T find_get_pid
+ffffffc008076c74 T pid_nr_ns
+ffffffc008076cb8 T pid_vnr
+ffffffc008076d14 T __task_pid_nr_ns
+ffffffc008076df8 T find_ge_pid
+ffffffc008076e60 T pidfd_get_pid
+ffffffc008076f34 T pidfd_get_task
+ffffffc0080770d0 T pidfd_create
+ffffffc00807722c T __arm64_sys_pidfd_open
+ffffffc008077314 T __arm64_sys_pidfd_getfd
+ffffffc00807752c T task_work_add
+ffffffc0080776f8 T task_work_cancel_match
+ffffffc008077814 T task_work_cancel
+ffffffc008077908 T task_work_run
+ffffffc008077a10 T search_kernel_exception_table
+ffffffc008077aa0 T search_exception_tables
+ffffffc008077b48 T core_kernel_text
+ffffffc008077bb0 T __kernel_text_address
+ffffffc008077c78 T kernel_text_address
+ffffffc008077d2c T func_ptr_is_kernel_text
+ffffffc008077dac T parameqn
+ffffffc008077e38 T parameq
+ffffffc008077efc T parse_args
+ffffffc0080782d0 T param_set_byte
+ffffffc008078304 T param_get_byte
+ffffffc008078344 T param_set_short
+ffffffc008078378 T param_get_short
+ffffffc0080783b8 T param_set_ushort
+ffffffc0080783ec T param_get_ushort
+ffffffc00807842c T param_set_int
+ffffffc008078460 T param_get_int
+ffffffc0080784a0 T param_set_uint
+ffffffc0080784d4 T param_get_uint
+ffffffc008078514 T param_set_long
+ffffffc008078548 T param_get_long
+ffffffc008078588 T param_set_ulong
+ffffffc0080785bc T param_get_ulong
+ffffffc0080785fc T param_set_ullong
+ffffffc008078630 T param_get_ullong
+ffffffc008078670 T param_set_hexint
+ffffffc0080786a4 T param_get_hexint
+ffffffc0080786e4 T param_set_uint_minmax
+ffffffc008078798 T param_set_charp
+ffffffc00807892c T param_get_charp
+ffffffc00807896c T param_free_charp
+ffffffc008078a10 T param_set_bool
+ffffffc008078a50 T param_get_bool
+ffffffc008078a9c T param_set_bool_enable_only
+ffffffc008078b54 T param_set_invbool
+ffffffc008078be4 T param_get_invbool
+ffffffc008078c30 T param_set_bint
+ffffffc008078cbc t param_array_set
+ffffffc008078e74 t param_array_get
+ffffffc008079028 t param_array_free
+ffffffc0080790cc T param_set_copystring
+ffffffc008079150 T param_get_string
+ffffffc008079190 T kernel_param_lock
+ffffffc0080791d0 T kernel_param_unlock
+ffffffc008079210 T module_param_sysfs_setup
+ffffffc008079320 t add_sysfs_param
+ffffffc008079500 T module_param_sysfs_remove
+ffffffc00807956c T destroy_params
+ffffffc0080795e8 T __modver_version_show
+ffffffc008079630 t module_kobj_release
+ffffffc008079660 t param_attr_show
+ffffffc008079720 t param_attr_store
+ffffffc00807983c t module_attr_show
+ffffffc0080798a0 t module_attr_store
+ffffffc008079904 t uevent_filter
+ffffffc008079928 T get_kthread_comm
+ffffffc00807998c T set_kthread_struct
+ffffffc008079a5c T free_kthread_struct
+ffffffc008079ac0 T kthread_should_stop
+ffffffc008079af0 T __kthread_should_park
+ffffffc008079b1c T kthread_should_park
+ffffffc008079b4c T kthread_freezable_should_stop
+ffffffc008079be4 T kthread_func
+ffffffc008079c14 T kthread_data
+ffffffc008079c3c T kthread_probe_data
+ffffffc008079cc0 T kthread_parkme
+ffffffc008079d00 t __kthread_parkme
+ffffffc008079dc0 T kthread_exit
+ffffffc008079dfc T kthread_complete_and_exit
+ffffffc008079e2c T tsk_fork_get_node
+ffffffc008079e40 T kthread_create_on_node
+ffffffc008079ec0 t __kthread_create_on_node
+ffffffc00807a0d0 T kthread_bind_mask
+ffffffc00807a158 T kthread_bind
+ffffffc00807a1fc T kthread_create_on_cpu
+ffffffc00807a2e0 T kthread_set_per_cpu
+ffffffc00807a390 T kthread_is_per_cpu
+ffffffc00807a3c4 T kthread_unpark
+ffffffc00807a4cc T kthread_park
+ffffffc00807a5b0 T kthread_stop
+ffffffc00807a838 T kthreadd
+ffffffc00807a9b4 T __kthread_init_worker
+ffffffc00807a9f4 T kthread_worker_fn
+ffffffc00807ac84 T kthread_create_worker
+ffffffc00807add4 T kthread_create_worker_on_cpu
+ffffffc00807af9c T kthread_queue_work
+ffffffc00807b02c t kthread_insert_work
+ffffffc00807b17c T kthread_delayed_work_timer_fn
+ffffffc00807b254 T kthread_queue_delayed_work
+ffffffc00807b398 T kthread_flush_work
+ffffffc00807b4b4 t kthread_flush_work_fn
+ffffffc00807b4e4 T kthread_mod_delayed_work
+ffffffc00807b6b4 T kthread_cancel_work_sync
+ffffffc00807b6e4 t __kthread_cancel_work_sync.llvm.6282801144154581423
+ffffffc00807b830 T kthread_cancel_delayed_work_sync
+ffffffc00807b864 T kthread_flush_worker
+ffffffc00807b954 T kthread_destroy_worker
+ffffffc00807b9c8 T kthread_use_mm
+ffffffc00807bc88 T kthread_unuse_mm
+ffffffc00807bd7c t kthread
+ffffffc00807becc W compat_sys_epoll_pwait
+ffffffc00807becc W compat_sys_epoll_pwait2
+ffffffc00807becc W compat_sys_fadvise64_64
+ffffffc00807becc W compat_sys_fanotify_mark
+ffffffc00807becc W compat_sys_get_robust_list
+ffffffc00807becc W compat_sys_getsockopt
+ffffffc00807becc W compat_sys_io_pgetevents
+ffffffc00807becc W compat_sys_io_pgetevents_time32
+ffffffc00807becc W compat_sys_io_setup
+ffffffc00807becc W compat_sys_io_submit
+ffffffc00807becc W compat_sys_ipc
+ffffffc00807becc W compat_sys_kexec_load
+ffffffc00807becc W compat_sys_keyctl
+ffffffc00807becc W compat_sys_lookup_dcookie
+ffffffc00807becc W compat_sys_mq_getsetattr
+ffffffc00807becc W compat_sys_mq_notify
+ffffffc00807becc W compat_sys_mq_open
+ffffffc00807becc W compat_sys_msgctl
+ffffffc00807becc W compat_sys_msgrcv
+ffffffc00807becc W compat_sys_msgsnd
+ffffffc00807becc W compat_sys_old_msgctl
+ffffffc00807becc W compat_sys_old_semctl
+ffffffc00807becc W compat_sys_old_shmctl
+ffffffc00807becc W compat_sys_open_by_handle_at
+ffffffc00807becc W compat_sys_ppoll_time32
+ffffffc00807becc W compat_sys_process_vm_readv
+ffffffc00807becc W compat_sys_process_vm_writev
+ffffffc00807becc W compat_sys_pselect6_time32
+ffffffc00807becc W compat_sys_recv
+ffffffc00807becc W compat_sys_recvfrom
+ffffffc00807becc W compat_sys_recvmmsg_time32
+ffffffc00807becc W compat_sys_recvmmsg_time64
+ffffffc00807becc W compat_sys_recvmsg
+ffffffc00807becc W compat_sys_rt_sigtimedwait_time32
+ffffffc00807becc W compat_sys_s390_ipc
+ffffffc00807becc W compat_sys_semctl
+ffffffc00807becc W compat_sys_sendmmsg
+ffffffc00807becc W compat_sys_sendmsg
+ffffffc00807becc W compat_sys_set_robust_list
+ffffffc00807becc W compat_sys_setsockopt
+ffffffc00807becc W compat_sys_shmat
+ffffffc00807becc W compat_sys_shmctl
+ffffffc00807becc W compat_sys_signalfd
+ffffffc00807becc W compat_sys_signalfd4
+ffffffc00807becc W compat_sys_socketcall
+ffffffc00807becc T sys_ni_syscall
+ffffffc00807bee0 W __arm64_sys_io_getevents_time32
+ffffffc00807bef4 W __arm64_sys_io_pgetevents_time32
+ffffffc00807bf08 W __arm64_sys_lookup_dcookie
+ffffffc00807bf1c W __arm64_sys_quotactl
+ffffffc00807bf30 W __arm64_sys_quotactl_fd
+ffffffc00807bf44 W __arm64_sys_timerfd_settime32
+ffffffc00807bf58 W __arm64_sys_timerfd_gettime32
+ffffffc00807bf6c W __arm64_sys_acct
+ffffffc00807bf80 W __arm64_sys_futex_time32
+ffffffc00807bf94 W __arm64_sys_kexec_load
+ffffffc00807bfa8 W __arm64_sys_delete_module
+ffffffc00807bfbc W __arm64_sys_mq_open
+ffffffc00807bfd0 W __arm64_sys_mq_unlink
+ffffffc00807bfe4 W __arm64_sys_mq_timedsend
+ffffffc00807bff8 W __arm64_sys_mq_timedsend_time32
+ffffffc00807c00c W __arm64_sys_mq_timedreceive
+ffffffc00807c020 W __arm64_sys_mq_timedreceive_time32
+ffffffc00807c034 W __arm64_sys_mq_notify
+ffffffc00807c048 W __arm64_sys_mq_getsetattr
+ffffffc00807c05c W __arm64_sys_msgget
+ffffffc00807c070 W __arm64_sys_old_msgctl
+ffffffc00807c084 W __arm64_sys_msgctl
+ffffffc00807c098 W __arm64_sys_msgrcv
+ffffffc00807c0ac W __arm64_sys_msgsnd
+ffffffc00807c0c0 W __arm64_sys_semget
+ffffffc00807c0d4 W __arm64_sys_old_semctl
+ffffffc00807c0e8 W __arm64_sys_semctl
+ffffffc00807c0fc W __arm64_sys_semtimedop
+ffffffc00807c110 W __arm64_sys_semtimedop_time32
+ffffffc00807c124 W __arm64_sys_semop
+ffffffc00807c138 W __arm64_sys_shmget
+ffffffc00807c14c W __arm64_sys_old_shmctl
+ffffffc00807c160 W __arm64_sys_shmctl
+ffffffc00807c174 W __arm64_sys_shmat
+ffffffc00807c188 W __arm64_sys_shmdt
+ffffffc00807c19c W __arm64_sys_add_key
+ffffffc00807c1b0 W __arm64_sys_request_key
+ffffffc00807c1c4 W __arm64_sys_keyctl
+ffffffc00807c1d8 W __arm64_sys_landlock_create_ruleset
+ffffffc00807c1ec W __arm64_sys_landlock_add_rule
+ffffffc00807c200 W __arm64_sys_landlock_restrict_self
+ffffffc00807c214 W __arm64_sys_mbind
+ffffffc00807c228 W __arm64_sys_get_mempolicy
+ffffffc00807c23c W __arm64_sys_set_mempolicy
+ffffffc00807c250 W __arm64_sys_migrate_pages
+ffffffc00807c264 W __arm64_sys_move_pages
+ffffffc00807c278 W __arm64_sys_set_mempolicy_home_node
+ffffffc00807c28c W __arm64_sys_recvmmsg_time32
+ffffffc00807c2a0 W __arm64_sys_fanotify_init
+ffffffc00807c2b4 W __arm64_sys_fanotify_mark
+ffffffc00807c2c8 W __arm64_sys_kcmp
+ffffffc00807c2dc W __arm64_sys_bpf
+ffffffc00807c2f0 W __arm64_sys_pkey_mprotect
+ffffffc00807c304 W __arm64_sys_pkey_alloc
+ffffffc00807c318 W __arm64_sys_pkey_free
+ffffffc00807c32c W __arm64_sys_pciconfig_iobase
+ffffffc00807c340 W __arm64_sys_socketcall
+ffffffc00807c354 W __arm64_sys_vm86old
+ffffffc00807c368 W __arm64_sys_modify_ldt
+ffffffc00807c37c W __arm64_sys_vm86
+ffffffc00807c390 W __arm64_sys_s390_pci_mmio_read
+ffffffc00807c3a4 W __arm64_sys_s390_pci_mmio_write
+ffffffc00807c3b8 W __arm64_sys_s390_ipc
+ffffffc00807c3cc W __arm64_sys_rtas
+ffffffc00807c3e0 W __arm64_sys_spu_run
+ffffffc00807c3f4 W __arm64_sys_spu_create
+ffffffc00807c408 W __arm64_sys_subpage_prot
+ffffffc00807c41c W __arm64_sys_fadvise64
+ffffffc00807c430 W __arm64_sys_uselib
+ffffffc00807c444 W __arm64_sys_time32
+ffffffc00807c458 W __arm64_sys_stime32
+ffffffc00807c46c W __arm64_sys_utime32
+ffffffc00807c480 W __arm64_sys_adjtimex_time32
+ffffffc00807c494 W __arm64_sys_sched_rr_get_interval_time32
+ffffffc00807c4a8 W __arm64_sys_nanosleep_time32
+ffffffc00807c4bc W __arm64_sys_rt_sigtimedwait_time32
+ffffffc00807c4d0 W __arm64_sys_timer_settime32
+ffffffc00807c4e4 W __arm64_sys_timer_gettime32
+ffffffc00807c4f8 W __arm64_sys_clock_settime32
+ffffffc00807c50c W __arm64_sys_clock_gettime32
+ffffffc00807c520 W __arm64_sys_clock_getres_time32
+ffffffc00807c534 W __arm64_sys_clock_nanosleep_time32
+ffffffc00807c548 W __arm64_sys_utimes_time32
+ffffffc00807c55c W __arm64_sys_futimesat_time32
+ffffffc00807c570 W __arm64_sys_pselect6_time32
+ffffffc00807c584 W __arm64_sys_ppoll_time32
+ffffffc00807c598 W __arm64_sys_utimensat_time32
+ffffffc00807c5ac W __arm64_sys_clock_adjtime32
+ffffffc00807c5c0 W __arm64_sys_sgetmask
+ffffffc00807c5d4 W __arm64_sys_ssetmask
+ffffffc00807c5e8 W __arm64_sys_ipc
+ffffffc00807c5fc W __arm64_sys_chown16
+ffffffc00807c610 W __arm64_sys_fchown16
+ffffffc00807c624 W __arm64_sys_getegid16
+ffffffc00807c638 W __arm64_sys_geteuid16
+ffffffc00807c64c W __arm64_sys_getgid16
+ffffffc00807c660 W __arm64_sys_getgroups16
+ffffffc00807c674 W __arm64_sys_getresgid16
+ffffffc00807c688 W __arm64_sys_getresuid16
+ffffffc00807c69c W __arm64_sys_getuid16
+ffffffc00807c6b0 W __arm64_sys_lchown16
+ffffffc00807c6c4 W __arm64_sys_setfsgid16
+ffffffc00807c6d8 W __arm64_sys_setfsuid16
+ffffffc00807c6ec W __arm64_sys_setgid16
+ffffffc00807c700 W __arm64_sys_setgroups16
+ffffffc00807c714 W __arm64_sys_setregid16
+ffffffc00807c728 W __arm64_sys_setresgid16
+ffffffc00807c73c W __arm64_sys_setresuid16
+ffffffc00807c750 W __arm64_sys_setreuid16
+ffffffc00807c764 W __arm64_sys_setuid16
+ffffffc00807c778 T copy_namespaces
+ffffffc00807c86c t create_new_namespaces
+ffffffc00807c9dc T free_nsproxy
+ffffffc00807ca88 t put_cgroup_ns
+ffffffc00807cb0c T unshare_nsproxy_namespaces
+ffffffc00807cbb8 T switch_task_namespaces
+ffffffc00807ccd0 T exit_task_namespaces
+ffffffc00807cd00 T __arm64_sys_setns
+ffffffc00807d1b4 T atomic_notifier_chain_register
+ffffffc00807d264 t notifier_chain_register
+ffffffc00807d2e4 T atomic_notifier_chain_register_unique_prio
+ffffffc00807d3a4 T atomic_notifier_chain_unregister
+ffffffc00807d434 T atomic_notifier_call_chain
+ffffffc00807d4fc T atomic_notifier_call_chain_is_empty
+ffffffc00807d520 T blocking_notifier_chain_register
+ffffffc00807d630 T blocking_notifier_chain_register_unique_prio
+ffffffc00807d758 T blocking_notifier_chain_unregister
+ffffffc00807d830 T blocking_notifier_call_chain_robust
+ffffffc00807d988 T blocking_notifier_call_chain
+ffffffc00807da68 T raw_notifier_chain_register
+ffffffc00807dae8 T raw_notifier_chain_unregister
+ffffffc00807db38 T raw_notifier_call_chain_robust
+ffffffc00807dc68 T raw_notifier_call_chain
+ffffffc00807dd18 T srcu_notifier_chain_register
+ffffffc00807dde0 T srcu_notifier_chain_unregister
+ffffffc00807decc T srcu_notifier_call_chain
+ffffffc00807dfc4 T srcu_init_notifier_head
+ffffffc00807e028 T notify_die
+ffffffc00807e120 T register_die_notifier
+ffffffc00807e1e4 T unregister_die_notifier
+ffffffc00807e288 t fscaps_show
+ffffffc00807e2cc t uevent_seqnum_show
+ffffffc00807e310 t profiling_show
+ffffffc00807e354 t profiling_store
+ffffffc00807e3c4 t kexec_loaded_show
+ffffffc00807e410 t kexec_crash_loaded_show
+ffffffc00807e45c t kexec_crash_size_show
+ffffffc00807e4b4 t kexec_crash_size_store
+ffffffc00807e548 t vmcoreinfo_show
+ffffffc00807e5cc t rcu_expedited_show
+ffffffc00807e61c t rcu_expedited_store
+ffffffc00807e670 t rcu_normal_show
+ffffffc00807e6c0 t rcu_normal_store
+ffffffc00807e714 t notes_read
+ffffffc00807e764 T __put_cred
+ffffffc00807e7dc t put_cred_rcu
+ffffffc00807e8b0 T exit_creds
+ffffffc00807ea14 T get_task_cred
+ffffffc00807eadc T cred_alloc_blank
+ffffffc00807ebf0 T abort_creds
+ffffffc00807ecbc T prepare_creds
+ffffffc00807ee88 T prepare_exec_creds
+ffffffc00807eec4 T copy_creds
+ffffffc00807f09c T set_cred_ucounts
+ffffffc00807f11c T commit_creds
+ffffffc00807f400 T override_creds
+ffffffc00807f44c T revert_creds
+ffffffc00807f514 T cred_fscmp
+ffffffc00807f5dc T prepare_kernel_cred
+ffffffc00807f99c T set_security_override
+ffffffc00807f9c8 T set_security_override_from_ctx
+ffffffc00807fa58 T set_create_files_as
+ffffffc00807fab0 T emergency_restart
+ffffffc00807fae8 T kernel_restart_prepare
+ffffffc00807fb3c T register_reboot_notifier
+ffffffc00807fb74 T unregister_reboot_notifier
+ffffffc00807fbac T devm_register_reboot_notifier
+ffffffc00807fc54 t devm_unregister_reboot_notifier
+ffffffc00807fc98 T register_restart_handler
+ffffffc00807fcd0 T unregister_restart_handler
+ffffffc00807fd08 T do_kernel_restart
+ffffffc00807fd48 T migrate_to_reboot_cpu
+ffffffc00807fde8 T kernel_restart
+ffffffc00807ff04 T kernel_halt
+ffffffc00807ffec T register_sys_off_handler
+ffffffc0080801e4 t sys_off_notify
+ffffffc008080268 T unregister_sys_off_handler
+ffffffc0080802fc T devm_register_sys_off_handler
+ffffffc0080803d0 t devm_unregister_sys_off_handler
+ffffffc008080464 T devm_register_power_off_handler
+ffffffc0080804a0 T devm_register_restart_handler
+ffffffc0080804dc T register_platform_power_off
+ffffffc0080805bc t platform_power_off_notify
+ffffffc008080608 T unregister_platform_power_off
+ffffffc0080806b0 T do_kernel_power_off
+ffffffc008080784 t legacy_pm_power_off
+ffffffc0080807d8 T kernel_can_power_off
+ffffffc008080824 T kernel_power_off
+ffffffc008080920 T __arm64_sys_reboot
+ffffffc008080ba0 T ctrl_alt_del
+ffffffc008080c04 t deferred_cad
+ffffffc008080c34 T orderly_poweroff
+ffffffc008080c84 T orderly_reboot
+ffffffc008080cc4 T hw_protection_shutdown
+ffffffc008080da0 t poweroff_work_func
+ffffffc008080e5c t reboot_work_func
+ffffffc008080ef4 t hw_failure_emergency_poweroff_func
+ffffffc008080f48 t mode_show
+ffffffc008080fac t mode_store
+ffffffc0080810ac t cpu_show
+ffffffc0080810f0 t cpu_store
+ffffffc0080811c8 T async_schedule_node_domain
+ffffffc0080813cc t async_run_entry_fn
+ffffffc0080814f4 T async_schedule_node
+ffffffc008081528 T async_synchronize_full
+ffffffc00808155c T async_synchronize_full_domain
+ffffffc008081590 T async_synchronize_cookie_domain
+ffffffc008081754 T async_synchronize_cookie
+ffffffc008081788 T current_is_async
+ffffffc008081814 T add_range
+ffffffc008081848 T add_range_with_merge
+ffffffc008081944 T subtract_range
+ffffffc008081a70 T clean_sort_range
+ffffffc008081b88 t cmp_range
+ffffffc008081bac T sort_range
+ffffffc008081bec T idle_thread_get
+ffffffc008081c30 T smpboot_create_threads
+ffffffc008081cb8 t __smpboot_create_thread
+ffffffc008081e4c T smpboot_unpark_threads
+ffffffc008081efc T smpboot_park_threads
+ffffffc008081fb0 T smpboot_register_percpu_thread
+ffffffc0080820d0 t smpboot_destroy_threads
+ffffffc0080821fc T smpboot_unregister_percpu_thread
+ffffffc008082284 T cpu_report_state
+ffffffc0080822c4 T cpu_check_up_prepare
+ffffffc00808237c T cpu_set_state_online
+ffffffc0080823e0 T cpu_wait_death
+ffffffc008082578 T cpu_report_death
+ffffffc008082638 t smpboot_thread_fn
+ffffffc00808297c T setup_userns_sysctls
+ffffffc008082a84 t set_is_seen
+ffffffc008082aa4 T retire_userns_sysctls
+ffffffc008082af4 T get_ucounts
+ffffffc008082be4 T put_ucounts
+ffffffc008082c94 T alloc_ucounts
+ffffffc008082eb0 T inc_ucount
+ffffffc008083070 T dec_ucount
+ffffffc0080831a4 T inc_rlimit_ucounts
+ffffffc00808324c T dec_rlimit_ucounts
+ffffffc0080832d4 T dec_rlimit_put_ucounts
+ffffffc008083304 t do_dec_rlimit_put_ucounts.llvm.4443838274408533463
+ffffffc00808344c T inc_rlimit_get_ucounts
+ffffffc008083630 T is_rlimit_overlimit
+ffffffc0080836ac t set_lookup
+ffffffc0080836c4 t set_permissions
+ffffffc008083724 T regset_get
+ffffffc0080837fc T regset_get_alloc
+ffffffc0080838d8 T copy_regset_to_user
+ffffffc008083b38 T __request_module
+ffffffc00808405c t free_modprobe_argv
+ffffffc0080840a4 T groups_alloc
+ffffffc00808410c T groups_free
+ffffffc008084138 T groups_sort
+ffffffc008084180 t gid_cmp
+ffffffc0080841a8 T groups_search
+ffffffc008084208 T set_groups
+ffffffc0080842b4 T set_current_groups
+ffffffc0080843b0 T __arm64_sys_getgroups
+ffffffc00808456c T may_setgroups
+ffffffc0080845a8 T __arm64_sys_setgroups
+ffffffc008084888 T in_group_p
+ffffffc008084904 T in_egroup_p
+ffffffc008084980 T __traceiter_sched_kthread_stop
+ffffffc008084a00 T __traceiter_sched_kthread_stop_ret
+ffffffc008084a80 T __traceiter_sched_kthread_work_queue_work
+ffffffc008084b10 T __traceiter_sched_kthread_work_execute_start
+ffffffc008084b90 T __traceiter_sched_kthread_work_execute_end
+ffffffc008084c20 T __traceiter_sched_waking
+ffffffc008084ca0 T __traceiter_sched_wakeup
+ffffffc008084d20 T __traceiter_sched_wakeup_new
+ffffffc008084da0 T __traceiter_sched_switch
+ffffffc008084e48 T __traceiter_sched_migrate_task
+ffffffc008084ed8 T __traceiter_sched_process_free
+ffffffc008084f58 T __traceiter_sched_process_exit
+ffffffc008084fd8 T __traceiter_sched_wait_task
+ffffffc008085058 T __traceiter_sched_process_wait
+ffffffc0080850d8 T __traceiter_sched_process_fork
+ffffffc008085168 T __traceiter_sched_process_exec
+ffffffc008085200 T __traceiter_sched_stat_wait
+ffffffc008085290 T __traceiter_sched_stat_sleep
+ffffffc008085320 T __traceiter_sched_stat_iowait
+ffffffc0080853b0 T __traceiter_sched_stat_blocked
+ffffffc008085440 T __traceiter_sched_blocked_reason
+ffffffc0080854c0 T __traceiter_sched_stat_runtime
+ffffffc008085558 T __traceiter_sched_pi_setprio
+ffffffc0080855e8 T __traceiter_sched_process_hang
+ffffffc008085668 T __traceiter_sched_move_numa
+ffffffc008085700 T __traceiter_sched_stick_numa
+ffffffc0080857a8 T __traceiter_sched_swap_numa
+ffffffc008085850 T __traceiter_sched_wake_idle_without_ipi
+ffffffc0080858d0 T __traceiter_pelt_cfs_tp
+ffffffc008085950 T __traceiter_pelt_rt_tp
+ffffffc0080859d0 T __traceiter_pelt_dl_tp
+ffffffc008085a50 T __traceiter_pelt_thermal_tp
+ffffffc008085ad0 T __traceiter_pelt_irq_tp
+ffffffc008085b50 T __traceiter_pelt_se_tp
+ffffffc008085bd0 T __traceiter_sched_cpu_capacity_tp
+ffffffc008085c50 T __traceiter_sched_overutilized_tp
+ffffffc008085ce0 T __traceiter_sched_util_est_cfs_tp
+ffffffc008085d60 T __traceiter_sched_util_est_se_tp
+ffffffc008085de0 T __traceiter_sched_update_nr_running_tp
+ffffffc008085e70 t trace_event_raw_event_sched_kthread_stop
+ffffffc008085f38 t perf_trace_sched_kthread_stop
+ffffffc008086054 t trace_event_raw_event_sched_kthread_stop_ret
+ffffffc00808610c t perf_trace_sched_kthread_stop_ret
+ffffffc008086218 t trace_event_raw_event_sched_kthread_work_queue_work
+ffffffc0080862dc t perf_trace_sched_kthread_work_queue_work
+ffffffc0080863fc t trace_event_raw_event_sched_kthread_work_execute_start
+ffffffc0080864bc t perf_trace_sched_kthread_work_execute_start
+ffffffc0080865d0 t trace_event_raw_event_sched_kthread_work_execute_end
+ffffffc00808668c t perf_trace_sched_kthread_work_execute_end
+ffffffc0080867a4 t trace_event_raw_event_sched_wakeup_template
+ffffffc008086884 t perf_trace_sched_wakeup_template
+ffffffc0080869ac t trace_event_raw_event_sched_switch
+ffffffc008086b1c t perf_trace_sched_switch
+ffffffc008086ce4 t trace_event_raw_event_sched_migrate_task
+ffffffc008086dc8 t perf_trace_sched_migrate_task
+ffffffc008086f08 t trace_event_raw_event_sched_process_template
+ffffffc008086fd8 t perf_trace_sched_process_template
+ffffffc0080870fc t trace_event_raw_event_sched_process_wait
+ffffffc0080871dc t perf_trace_sched_process_wait
+ffffffc008087310 t trace_event_raw_event_sched_process_fork
+ffffffc0080873f4 t perf_trace_sched_process_fork
+ffffffc008087534 t trace_event_raw_event_sched_process_exec
+ffffffc008087648 t perf_trace_sched_process_exec
+ffffffc0080877c8 t trace_event_raw_event_sched_stat_template
+ffffffc008087898 t perf_trace_sched_stat_template
+ffffffc0080879b0 t trace_event_raw_event_sched_blocked_reason
+ffffffc008087a88 t perf_trace_sched_blocked_reason
+ffffffc008087bc0 t trace_event_raw_event_sched_stat_runtime
+ffffffc008087ca0 t perf_trace_sched_stat_runtime
+ffffffc008087dd0 t trace_event_raw_event_sched_pi_setprio
+ffffffc008087ebc t perf_trace_sched_pi_setprio
+ffffffc008088004 t trace_event_raw_event_sched_process_hang
+ffffffc0080880cc t perf_trace_sched_process_hang
+ffffffc0080881e8 t trace_event_raw_event_sched_move_numa
+ffffffc0080882c8 t perf_trace_sched_move_numa
+ffffffc0080883f8 t trace_event_raw_event_sched_numa_pair_template
+ffffffc008088500 t perf_trace_sched_numa_pair_template
+ffffffc008088660 t trace_event_raw_event_sched_wake_idle_without_ipi
+ffffffc008088718 t perf_trace_sched_wake_idle_without_ipi
+ffffffc008088824 T raw_spin_rq_lock_nested
+ffffffc008088880 T raw_spin_rq_trylock
+ffffffc008088908 T raw_spin_rq_unlock
+ffffffc008088934 T double_rq_lock
+ffffffc0080889f4 t raw_spin_rq_lock
+ffffffc008088a50 T __task_rq_lock
+ffffffc008088bd0 T task_rq_lock
+ffffffc008088d78 T update_rq_clock
+ffffffc008089018 T hrtick_start
+ffffffc0080890c0 T wake_q_add
+ffffffc0080891ac T wake_q_add_safe
+ffffffc0080892a4 T wake_up_q
+ffffffc00808938c T wake_up_process
+ffffffc0080893c0 T resched_curr
+ffffffc008089474 T resched_cpu
+ffffffc008089604 t _raw_spin_rq_lock_irqsave
+ffffffc00808969c T get_nohz_timer_target
+ffffffc008089840 T idle_cpu
+ffffffc0080898a8 T wake_up_nohz_cpu
+ffffffc008089960 T sched_task_on_rq
+ffffffc00808997c T get_wchan
+ffffffc008089a14 T activate_task
+ffffffc008089b64 T deactivate_task
+ffffffc008089c8c T task_curr
+ffffffc008089cd8 T check_preempt_curr
+ffffffc008089df8 T migrate_disable
+ffffffc008089e9c T migrate_enable
+ffffffc008089fc4 T __migrate_task
+ffffffc00808a0d4 t move_queued_task
+ffffffc00808a2fc T push_cpu_stop
+ffffffc00808a588 T set_task_cpu
+ffffffc00808a7dc T set_cpus_allowed_common
+ffffffc00808a85c T do_set_cpus_allowed
+ffffffc00808a9f8 t __do_set_cpus_allowed
+ffffffc00808abd0 T dup_user_cpus_ptr
+ffffffc00808acb0 T release_user_cpus_ptr
+ffffffc00808ace8 T set_cpus_allowed_ptr
+ffffffc00808ad70 T force_compatible_cpus_allowed_ptr
+ffffffc00808af58 T relax_compatible_cpus_allowed_ptr
+ffffffc00808afc8 t __sched_setaffinity
+ffffffc00808b1ac T migrate_swap
+ffffffc00808b37c t migrate_swap_stop
+ffffffc00808b5bc T wait_task_inactive
+ffffffc00808b810 t task_rq_unlock
+ffffffc00808b86c T kick_process
+ffffffc00808b948 T select_fallback_rq
+ffffffc00808bcf4 T sched_set_stop_task
+ffffffc00808bdf8 T sched_setscheduler_nocheck
+ffffffc00808be9c T sched_ttwu_pending
+ffffffc00808c09c t ttwu_do_activate
+ffffffc00808c1a0 T send_call_function_single_ipi
+ffffffc00808c1d8 T wake_up_if_idle
+ffffffc00808c3a0 T cpus_share_cache
+ffffffc00808c3fc T task_call_func
+ffffffc00808c55c T cpu_curr_snapshot
+ffffffc00808c5a0 t try_to_wake_up.llvm.15839233575021980101
+ffffffc00808ce8c T wake_up_state
+ffffffc00808cebc T force_schedstat_enabled
+ffffffc00808cf0c T sched_fork
+ffffffc00808d154 t set_load_weight
+ffffffc00808d1c0 T sched_cgroup_fork
+ffffffc00808d2a0 T sched_post_fork
+ffffffc00808d2b0 T to_ratio
+ffffffc00808d2e0 T wake_up_new_task
+ffffffc00808d694 t balance_push
+ffffffc00808d81c T __balance_callbacks
+ffffffc00808d890 T schedule_tail
+ffffffc00808da44 t finish_task_switch
+ffffffc00808dcb4 T nr_running
+ffffffc00808dd60 T single_task_running
+ffffffc00808dd90 T nr_context_switches
+ffffffc00808de38 T nr_iowait_cpu
+ffffffc00808de7c T nr_iowait
+ffffffc00808df2c T sched_exec
+ffffffc00808e05c t migration_cpu_stop
+ffffffc00808e340 T task_sched_runtime
+ffffffc00808e47c T scheduler_tick
+ffffffc00808e758 T do_task_dead
+ffffffc00808e7b0 T default_wake_function
+ffffffc00808e7f4 T rt_mutex_setprio
+ffffffc00808ed78 T set_user_nice
+ffffffc00808f040 T can_nice
+ffffffc00808f0a0 T task_prio
+ffffffc00808f0b8 T available_idle_cpu
+ffffffc00808f120 T idle_task
+ffffffc00808f15c T effective_cpu_util
+ffffffc00808f218 T sched_cpu_util
+ffffffc00808f2e8 T sched_setscheduler
+ffffffc00808f38c T sched_setattr
+ffffffc00808f3bc t __sched_setscheduler
+ffffffc00808fc6c T sched_setattr_nocheck
+ffffffc00808fca0 T sched_set_fifo
+ffffffc00808fd38 T sched_set_fifo_low
+ffffffc00808fdcc T sched_set_normal
+ffffffc00808fe50 T __arm64_sys_sched_setscheduler
+ffffffc00808fe98 T __arm64_sys_sched_setparam
+ffffffc00808fed8 T __arm64_sys_sched_setattr
+ffffffc00809056c T __arm64_sys_sched_getscheduler
+ffffffc0080905fc T __arm64_sys_sched_getparam
+ffffffc008090820 T __arm64_sys_sched_getattr
+ffffffc008090b10 T dl_task_check_affinity
+ffffffc008090bcc T sched_setaffinity
+ffffffc008090d9c T __arm64_sys_sched_setaffinity
+ffffffc008090fc4 T sched_getaffinity
+ffffffc008091080 T __arm64_sys_sched_getaffinity
+ffffffc0080912d4 T __arm64_sys_sched_yield
+ffffffc008091300 t do_sched_yield
+ffffffc008091460 T __cond_resched_lock
+ffffffc0080914d4 T __cond_resched_rwlock_read
+ffffffc00809154c T __cond_resched_rwlock_write
+ffffffc0080915c4 T io_schedule_prepare
+ffffffc008091618 T io_schedule_finish
+ffffffc008091640 T __arm64_sys_sched_get_priority_max
+ffffffc008091678 T __arm64_sys_sched_get_priority_min
+ffffffc0080916b0 T __arm64_sys_sched_rr_get_interval
+ffffffc0080917f0 T sched_show_task
+ffffffc0080919e8 T show_state_filter
+ffffffc008091ac4 T cpuset_cpumask_can_shrink
+ffffffc008091b30 T task_can_attach
+ffffffc008091c00 T idle_task_exit
+ffffffc008091ccc T pick_migrate_task
+ffffffc008091d94 T set_rq_online
+ffffffc008091e80 T set_rq_offline
+ffffffc008091f68 T sched_cpu_activate
+ffffffc008092214 t balance_push_set
+ffffffc008092368 T sched_cpu_deactivate
+ffffffc008092668 T sched_cpu_starting
+ffffffc0080926c8 T sched_cpu_wait_empty
+ffffffc008092754 T sched_cpu_dying
+ffffffc0080929d4 T in_sched_functions
+ffffffc008092a1c t nohz_csd_func
+ffffffc008092b0c T normalize_rt_tasks
+ffffffc008092c80 T dump_cpu_task
+ffffffc008092d5c T call_trace_sched_update_nr_running
+ffffffc008092ec0 t trace_raw_output_sched_kthread_stop
+ffffffc008092f38 t trace_raw_output_sched_kthread_stop_ret
+ffffffc008092fac t trace_raw_output_sched_kthread_work_queue_work
+ffffffc008093024 t trace_raw_output_sched_kthread_work_execute_start
+ffffffc008093098 t trace_raw_output_sched_kthread_work_execute_end
+ffffffc00809310c t trace_raw_output_sched_wakeup_template
+ffffffc008093188 t trace_raw_output_sched_switch
+ffffffc00809327c t trace_raw_output_sched_migrate_task
+ffffffc0080932f8 t trace_raw_output_sched_process_template
+ffffffc008093370 t trace_raw_output_sched_process_wait
+ffffffc0080933e8 t trace_raw_output_sched_process_fork
+ffffffc008093468 t trace_raw_output_sched_process_exec
+ffffffc0080934e4 t trace_raw_output_sched_stat_template
+ffffffc008093560 t trace_raw_output_sched_blocked_reason
+ffffffc0080935dc t trace_raw_output_sched_stat_runtime
+ffffffc008093658 t trace_raw_output_sched_pi_setprio
+ffffffc0080936d4 t trace_raw_output_sched_process_hang
+ffffffc00809374c t trace_raw_output_sched_move_numa
+ffffffc0080937d8 t trace_raw_output_sched_numa_pair_template
+ffffffc008093874 t trace_raw_output_sched_wake_idle_without_ipi
+ffffffc0080938e4 t __set_cpus_allowed_ptr_locked
+ffffffc008093ec4 t __migrate_swap_task
+ffffffc008094020 t ttwu_do_wakeup
+ffffffc008094270 t ttwu_queue_wakelist
+ffffffc0080943b4 t sysctl_schedstats
+ffffffc0080944d8 t __schedule_bug
+ffffffc008094568 t do_sched_setscheduler
+ffffffc0080947a8 t __balance_push_cpu_stop
+ffffffc008094990 t __hrtick_start
+ffffffc008094a60 t hrtick
+ffffffc008094b98 W arch_asym_cpu_priority
+ffffffc008094ba8 t update_sysctl.llvm.12821150388370989765
+ffffffc008094c40 T __pick_first_entity
+ffffffc008094c60 T __pick_last_entity
+ffffffc008094c9c T sched_update_scaling
+ffffffc008094d4c T init_entity_runnable_average
+ffffffc008094d88 T post_init_entity_util_avg
+ffffffc008094eb4 T reweight_task
+ffffffc008095080 T set_next_entity
+ffffffc0080952e8 T init_cfs_bandwidth
+ffffffc0080952f8 T pick_next_task_fair
+ffffffc00809563c t pick_next_entity
+ffffffc008095968 t hrtick_start_fair
+ffffffc008095a68 t newidle_balance
+ffffffc008095e8c T update_group_capacity
+ffffffc008096120 T update_max_interval
+ffffffc008096160 T nohz_balance_exit_idle
+ffffffc008096278 t set_cpu_sd_state_busy
+ffffffc008096324 T nohz_balance_enter_idle
+ffffffc008096520 T nohz_run_idle_balance
+ffffffc0080965d0 t _nohz_idle_balance
+ffffffc00809694c T trigger_load_balance
+ffffffc008096d20 T init_cfs_rq
+ffffffc008096d40 T free_fair_sched_group
+ffffffc008096d50 T alloc_fair_sched_group
+ffffffc008096d64 T online_fair_sched_group
+ffffffc008096d74 T unregister_fair_sched_group
+ffffffc008096d84 t enqueue_task_fair.llvm.12821150388370989765
+ffffffc0080973cc t dequeue_task_fair.llvm.12821150388370989765
+ffffffc008097ab8 t yield_task_fair.llvm.12821150388370989765
+ffffffc008097c50 t yield_to_task_fair.llvm.12821150388370989765
+ffffffc008097d20 t check_preempt_wakeup.llvm.12821150388370989765
+ffffffc008098064 t __pick_next_task_fair.llvm.12821150388370989765
+ffffffc008098098 t put_prev_task_fair.llvm.12821150388370989765
+ffffffc00809825c t set_next_task_fair.llvm.12821150388370989765
+ffffffc008098334 t balance_fair.llvm.12821150388370989765
+ffffffc00809837c t select_task_rq_fair.llvm.12821150388370989765
+ffffffc008098ef0 t pick_task_fair.llvm.12821150388370989765
+ffffffc008098f64 t migrate_task_rq_fair.llvm.12821150388370989765
+ffffffc008099104 t rq_online_fair.llvm.12821150388370989765
+ffffffc00809919c t rq_offline_fair.llvm.12821150388370989765
+ffffffc008099234 t task_tick_fair.llvm.12821150388370989765
+ffffffc00809952c t task_fork_fair.llvm.12821150388370989765
+ffffffc0080997dc t task_dead_fair.llvm.12821150388370989765
+ffffffc00809980c t switched_from_fair.llvm.12821150388370989765
+ffffffc008099a10 t switched_to_fair.llvm.12821150388370989765
+ffffffc008099bb8 t prio_changed_fair.llvm.12821150388370989765
+ffffffc008099c20 t get_rr_interval_fair.llvm.12821150388370989765
+ffffffc008099cac t update_curr_fair.llvm.12821150388370989765
+ffffffc008099d10 T print_cfs_stats
+ffffffc008099d88 t run_rebalance_domains
+ffffffc008099e04 t update_curr
+ffffffc00809a0d8 t update_cfs_rq_load_avg
+ffffffc00809a244 t attach_entity_load_avg
+ffffffc00809a3d4 t detach_entity_load_avg
+ffffffc00809a590 t sched_slice
+ffffffc00809a778 t rebalance_domains
+ffffffc00809aa60 t update_blocked_averages
+ffffffc00809acd4 t load_balance
+ffffffc00809c678 t need_active_balance
+ffffffc00809c7b0 t active_load_balance_cpu_stop
+ffffffc00809cb88 t can_migrate_task
+ffffffc00809ce60 t update_overutilized_status
+ffffffc00809cfb0 t find_idlest_cpu
+ffffffc00809d91c t remove_entity_load_avg
+ffffffc00809d9fc T sched_idle_set_state
+ffffffc00809da14 T cpu_idle_poll_ctrl
+ffffffc00809da58 W arch_cpu_idle_prepare
+ffffffc00809da68 W arch_cpu_idle_enter
+ffffffc00809da78 W arch_cpu_idle_exit
+ffffffc00809da88 T cpu_in_idle
+ffffffc00809dab4 T play_idle_precise
+ffffffc00809dc5c t idle_inject_timer_fn
+ffffffc00809dca0 t do_idle.llvm.5705703397380067588
+ffffffc00809ddec T cpu_startup_entry
+ffffffc00809de20 T pick_next_task_idle
+ffffffc00809de54 t set_next_task_idle.llvm.5705703397380067588
+ffffffc00809de80 t dequeue_task_idle.llvm.5705703397380067588
+ffffffc00809df04 t check_preempt_curr_idle.llvm.5705703397380067588
+ffffffc00809df30 t put_prev_task_idle.llvm.5705703397380067588
+ffffffc00809df40 t balance_idle.llvm.5705703397380067588
+ffffffc00809df58 t select_task_rq_idle.llvm.5705703397380067588
+ffffffc00809df74 t pick_task_idle.llvm.5705703397380067588
+ffffffc00809df88 t task_tick_idle.llvm.5705703397380067588
+ffffffc00809df98 t switched_to_idle.llvm.5705703397380067588
+ffffffc00809dfa4 t prio_changed_idle.llvm.5705703397380067588
+ffffffc00809dfb0 t update_curr_idle.llvm.5705703397380067588
+ffffffc00809dfc0 T init_rt_bandwidth
+ffffffc00809e018 t sched_rt_period_timer
+ffffffc00809e3d4 T init_rt_rq
+ffffffc00809e45c T unregister_rt_sched_group
+ffffffc00809e46c T free_rt_sched_group
+ffffffc00809e47c T alloc_rt_sched_group
+ffffffc00809e490 T sched_rt_bandwidth_account
+ffffffc00809e4f0 T pick_highest_pushable_task
+ffffffc00809e56c T rto_push_irq_work_func
+ffffffc00809e694 t push_rt_task
+ffffffc00809ea50 t enqueue_task_rt.llvm.5705703397380067588
+ffffffc00809eed0 t dequeue_task_rt.llvm.5705703397380067588
+ffffffc00809f0f0 t yield_task_rt.llvm.5705703397380067588
+ffffffc00809f1bc t check_preempt_curr_rt.llvm.5705703397380067588
+ffffffc00809f2fc t pick_next_task_rt.llvm.5705703397380067588
+ffffffc00809f3e0 t put_prev_task_rt.llvm.5705703397380067588
+ffffffc00809f504 t set_next_task_rt.llvm.5705703397380067588
+ffffffc00809f6bc t balance_rt.llvm.5705703397380067588
+ffffffc00809f774 t select_task_rq_rt.llvm.5705703397380067588
+ffffffc00809f8f0 t pick_task_rt.llvm.5705703397380067588
+ffffffc00809f9b8 t task_woken_rt.llvm.5705703397380067588
+ffffffc00809fa40 t rq_online_rt.llvm.5705703397380067588
+ffffffc00809fb64 t rq_offline_rt.llvm.5705703397380067588
+ffffffc00809fe34 t find_lock_lowest_rq.llvm.5705703397380067588
+ffffffc00809ff90 t task_tick_rt.llvm.5705703397380067588
+ffffffc0080a0170 t switched_from_rt.llvm.5705703397380067588
+ffffffc0080a01f8 t switched_to_rt.llvm.5705703397380067588
+ffffffc0080a0354 t prio_changed_rt.llvm.5705703397380067588
+ffffffc0080a0420 t get_rr_interval_rt.llvm.5705703397380067588
+ffffffc0080a0444 t update_curr_rt.llvm.5705703397380067588
+ffffffc0080a07e8 T print_rt_stats
+ffffffc0080a0860 T cpudl_find
+ffffffc0080a0ad4 T cpudl_clear
+ffffffc0080a0c00 t cpudl_heapify
+ffffffc0080a0db8 T cpudl_set
+ffffffc0080a0f80 T cpudl_set_freecpu
+ffffffc0080a0fd4 T cpudl_clear_freecpu
+ffffffc0080a1028 T cpudl_init
+ffffffc0080a10fc T cpudl_cleanup
+ffffffc0080a112c T __update_load_avg_blocked_se
+ffffffc0080a1354 T __update_load_avg_se
+ffffffc0080a1664 T __update_load_avg_cfs_rq
+ffffffc0080a1964 T update_rt_rq_load_avg
+ffffffc0080a1c40 T update_dl_rq_load_avg
+ffffffc0080a1f1c T update_irq_load_avg
+ffffffc0080a236c T sched_pelt_multiplier
+ffffffc0080a2460 T enable_sched_clock_irqtime
+ffffffc0080a247c T disable_sched_clock_irqtime
+ffffffc0080a2494 T irqtime_account_irq
+ffffffc0080a2618 T account_user_time
+ffffffc0080a26ac T account_guest_time
+ffffffc0080a2770 T account_system_index_time
+ffffffc0080a27f4 T account_system_time
+ffffffc0080a29a8 T account_steal_time
+ffffffc0080a29d8 T account_idle_time
+ffffffc0080a2a30 T thread_group_cputime
+ffffffc0080a2b64 T account_process_tick
+ffffffc0080a2db0 t irqtime_account_process_tick
+ffffffc0080a31b4 T account_idle_ticks
+ffffffc0080a3308 T cputime_adjust
+ffffffc0080a33e4 T task_cputime_adjusted
+ffffffc0080a34d4 T thread_group_cputime_adjusted
+ffffffc0080a35e4 T init_dl_bandwidth
+ffffffc0080a35fc T init_dl_bw
+ffffffc0080a3664 T init_dl_rq
+ffffffc0080a3710 T init_dl_task_timer
+ffffffc0080a3760 t dl_task_timer.llvm.5705703397380067588
+ffffffc0080a3944 T init_dl_inactive_task_timer
+ffffffc0080a3994 t inactive_task_timer.llvm.5705703397380067588
+ffffffc0080a3df0 T dl_add_task_root_domain
+ffffffc0080a3f78 T dl_clear_root_domain
+ffffffc0080a3fc8 t enqueue_task_dl.llvm.5705703397380067588
+ffffffc0080a4890 t dequeue_task_dl.llvm.5705703397380067588
+ffffffc0080a49e8 t yield_task_dl.llvm.5705703397380067588
+ffffffc0080a4a44 t check_preempt_curr_dl.llvm.5705703397380067588
+ffffffc0080a4b78 t pick_next_task_dl.llvm.5705703397380067588
+ffffffc0080a4be8 t put_prev_task_dl.llvm.5705703397380067588
+ffffffc0080a4d54 t set_next_task_dl.llvm.5705703397380067588
+ffffffc0080a4f84 t balance_dl.llvm.5705703397380067588
+ffffffc0080a5038 t select_task_rq_dl.llvm.5705703397380067588
+ffffffc0080a5168 t pick_task_dl.llvm.5705703397380067588
+ffffffc0080a51a0 t migrate_task_rq_dl.llvm.5705703397380067588
+ffffffc0080a53fc t task_woken_dl.llvm.5705703397380067588
+ffffffc0080a5480 t set_cpus_allowed_dl.llvm.5705703397380067588
+ffffffc0080a5680 t rq_online_dl.llvm.5705703397380067588
+ffffffc0080a57a0 t rq_offline_dl.llvm.5705703397380067588
+ffffffc0080a58b4 t find_lock_later_rq.llvm.5705703397380067588
+ffffffc0080a5a20 t task_tick_dl.llvm.5705703397380067588
+ffffffc0080a5b18 t task_fork_dl.llvm.5705703397380067588
+ffffffc0080a5b28 t switched_from_dl.llvm.5705703397380067588
+ffffffc0080a5d00 t switched_to_dl.llvm.5705703397380067588
+ffffffc0080a5ef4 t prio_changed_dl.llvm.5705703397380067588
+ffffffc0080a5fac t update_curr_dl.llvm.5705703397380067588
+ffffffc0080a62f0 T sched_dl_global_validate
+ffffffc0080a6514 T sched_dl_do_global
+ffffffc0080a6764 T sched_dl_overflow
+ffffffc0080a6d24 t dl_bw_capacity
+ffffffc0080a6e98 T __setparam_dl
+ffffffc0080a6f1c T __getparam_dl
+ffffffc0080a6f6c T __checkparam_dl
+ffffffc0080a7018 T __dl_clear_params
+ffffffc0080a7054 T dl_param_changed
+ffffffc0080a70b8 T dl_cpuset_cpumask_can_shrink
+ffffffc0080a7218 T dl_cpu_busy
+ffffffc0080a7458 T print_dl_stats
+ffffffc0080a74ac t sched_rt_handler
+ffffffc0080a76a8 t sched_rr_handler
+ffffffc0080a7768 t balance_runtime
+ffffffc0080a790c t find_lowest_rq
+ffffffc0080a7b30 t get_push_task
+ffffffc0080a7bf0 t rt_task_fits_cpu
+ffffffc0080a7c00 t dequeue_rt_stack
+ffffffc0080a7ea0 t update_rt_migration
+ffffffc0080a7ff8 t push_rt_tasks
+ffffffc0080a803c t pull_rt_task
+ffffffc0080a829c t tell_cpu_to_push
+ffffffc0080a8410 t replenish_dl_entity
+ffffffc0080a8608 t dl_task_offline_migration
+ffffffc0080a8ab0 t push_dl_task
+ffffffc0080a8e0c t task_contending
+ffffffc0080a8fb4 t start_dl_timer
+ffffffc0080a9128 t update_dl_revised_wakeup
+ffffffc0080a9210 t update_dl_migration
+ffffffc0080a9364 t __dequeue_task_dl
+ffffffc0080a95dc t task_non_contending
+ffffffc0080a99e0 t push_dl_tasks
+ffffffc0080a9a20 t pull_dl_task
+ffffffc0080a9c6c t pick_earliest_pushable_dl_task
+ffffffc0080a9cf4 t find_later_rq
+ffffffc0080a9eb4 T sched_clock_cpu
+ffffffc0080a9eec W running_clock
+ffffffc0080a9f18 T update_sched_domain_debugfs
+ffffffc0080aa1c4 T dirty_sched_domain_sysctl
+ffffffc0080aa214 T print_cfs_rq
+ffffffc0080aa8f4 T print_rt_rq
+ffffffc0080aab30 T print_dl_rq
+ffffffc0080aacd4 T sysrq_sched_debug_show
+ffffffc0080aad5c t sched_debug_header
+ffffffc0080ab29c t print_cpu
+ffffffc0080abc78 T proc_sched_show_task
+ffffffc0080acea0 T proc_sched_set_task
+ffffffc0080acf30 T resched_latency_warn
+ffffffc0080acfc4 T __update_stats_wait_start
+ffffffc0080ad058 T __update_stats_wait_end
+ffffffc0080ad1b0 T __update_stats_enqueue_sleeper
+ffffffc0080ad4c8 T get_avenrun
+ffffffc0080ad510 T calc_load_fold_active
+ffffffc0080ad544 T calc_load_n
+ffffffc0080ad5c4 T calc_load_nohz_start
+ffffffc0080ad684 T calc_load_nohz_remote
+ffffffc0080ad730 T calc_load_nohz_stop
+ffffffc0080ad798 T calc_global_load
+ffffffc0080adaf0 T calc_global_load_tick
+ffffffc0080adb70 T complete
+ffffffc0080adc24 T swake_up_locked
+ffffffc0080adc9c T complete_all
+ffffffc0080add60 T swake_up_all_locked
+ffffffc0080addf8 T try_wait_for_completion
+ffffffc0080ade7c T completion_done
+ffffffc0080aded8 T __init_swait_queue_head
+ffffffc0080adef8 T swake_up_one
+ffffffc0080adf90 T swake_up_all
+ffffffc0080ae0b8 T __prepare_to_swait
+ffffffc0080ae144 T prepare_to_swait_exclusive
+ffffffc0080ae1f8 T prepare_to_swait_event
+ffffffc0080ae308 T __finish_swait
+ffffffc0080ae37c T finish_swait
+ffffffc0080ae424 T bit_waitqueue
+ffffffc0080ae464 T wake_bit_function
+ffffffc0080ae514 T autoremove_wake_function
+ffffffc0080ae584 T prepare_to_wait
+ffffffc0080ae660 T finish_wait
+ffffffc0080ae708 T prepare_to_wait_exclusive
+ffffffc0080ae7e0 T __wake_up_bit
+ffffffc0080ae8c4 T __wake_up
+ffffffc0080ae9a0 T wake_up_bit
+ffffffc0080aeab0 T __var_waitqueue
+ffffffc0080aeae8 T init_wait_var_entry
+ffffffc0080aeb24 t var_wake_function
+ffffffc0080aebc0 T wake_up_var
+ffffffc0080aecc8 T __init_waitqueue_head
+ffffffc0080aece8 T add_wait_queue
+ffffffc0080aed9c T add_wait_queue_exclusive
+ffffffc0080aee30 T add_wait_queue_priority
+ffffffc0080aeee8 T remove_wait_queue
+ffffffc0080aef68 T __wake_up_locked
+ffffffc0080af01c t __wake_up_common.llvm.10092733969648268298
+ffffffc0080af188 T __wake_up_locked_key
+ffffffc0080af240 T __wake_up_locked_key_bookmark
+ffffffc0080af27c T __wake_up_sync_key
+ffffffc0080af354 T __wake_up_locked_sync_key
+ffffffc0080af40c T __wake_up_sync
+ffffffc0080af4d8 T __wake_up_pollfree
+ffffffc0080af5b8 T init_wait_entry
+ffffffc0080af5e8 T prepare_to_wait_event
+ffffffc0080af74c T do_wait_intr
+ffffffc0080af810 T do_wait_intr_irq
+ffffffc0080af8d4 T wait_woken
+ffffffc0080af95c T woken_wake_function
+ffffffc0080af998 T cpupri_find
+ffffffc0080afa94 T cpupri_find_fitness
+ffffffc0080afc7c T cpupri_set
+ffffffc0080afdec T cpupri_init
+ffffffc0080afec0 T cpupri_cleanup
+ffffffc0080afef0 t enqueue_task_stop.llvm.10092733969648268298
+ffffffc0080aff8c t dequeue_task_stop.llvm.10092733969648268298
+ffffffc0080affd4 t yield_task_stop.llvm.10092733969648268298
+ffffffc0080affe0 t check_preempt_curr_stop.llvm.10092733969648268298
+ffffffc0080afff0 t pick_next_task_stop.llvm.10092733969648268298
+ffffffc0080b0080 t put_prev_task_stop.llvm.10092733969648268298
+ffffffc0080b0170 t set_next_task_stop.llvm.10092733969648268298
+ffffffc0080b01e4 t balance_stop.llvm.10092733969648268298
+ffffffc0080b0214 t select_task_rq_stop.llvm.10092733969648268298
+ffffffc0080b0230 t pick_task_stop.llvm.10092733969648268298
+ffffffc0080b0260 t task_tick_stop.llvm.10092733969648268298
+ffffffc0080b0270 t switched_to_stop.llvm.10092733969648268298
+ffffffc0080b027c t prio_changed_stop.llvm.10092733969648268298
+ffffffc0080b0288 t update_curr_stop.llvm.10092733969648268298
+ffffffc0080b0298 T rq_attach_root
+ffffffc0080b0478 t free_rootdomain
+ffffffc0080b04c8 T sched_get_rd
+ffffffc0080b0504 T sched_put_rd
+ffffffc0080b0578 T init_defrootdomain
+ffffffc0080b05bc t init_rootdomain.llvm.10092733969648268298
+ffffffc0080b0728 T group_balance_cpu
+ffffffc0080b0764 T set_sched_topology
+ffffffc0080b0794 T alloc_sched_domains
+ffffffc0080b07c8 T free_sched_domains
+ffffffc0080b07f4 T sched_init_domains
+ffffffc0080b08f8 t asym_cpu_capacity_scan
+ffffffc0080b0b78 T housekeeping_cpumask
+ffffffc0080b0bc8 t build_sched_domains
+ffffffc0080b21c4 T partition_sched_domains_locked
+ffffffc0080b25ec T partition_sched_domains
+ffffffc0080b2658 T psi_task_change
+ffffffc0080b2754 t psi_group_change
+ffffffc0080b2b68 T psi_task_switch
+ffffffc0080b2de8 t psi_avgs_work
+ffffffc0080b2ee4 T psi_account_irqtime
+ffffffc0080b30a8 t record_times
+ffffffc0080b3138 T psi_memstall_enter
+ffffffc0080b32e4 T psi_memstall_leave
+ffffffc0080b3484 T psi_show
+ffffffc0080b3658 t collect_percpu_times
+ffffffc0080b392c t update_averages
+ffffffc0080b3bc8 T psi_trigger_create
+ffffffc0080b3e84 t psi_poll_worker
+ffffffc0080b4454 T psi_trigger_destroy
+ffffffc0080b4674 T psi_trigger_poll
+ffffffc0080b474c T membarrier_exec_mmap
+ffffffc0080b47d4 T membarrier_update_current_mm
+ffffffc0080b4828 T __arm64_sys_membarrier
+ffffffc0080b4ce4 T housekeeping_enabled
+ffffffc0080b4d04 T housekeeping_any_cpu
+ffffffc0080b4d94 T housekeeping_affine
+ffffffc0080b4df8 T housekeeping_test_cpu
+ffffffc0080b4e60 t sched_feat_write
+ffffffc0080b5144 t sched_feat_open
+ffffffc0080b5180 t sched_feat_show
+ffffffc0080b5234 t sched_scaling_write
+ffffffc0080b5460 t sched_scaling_open
+ffffffc0080b549c t sched_scaling_show
+ffffffc0080b54dc t sched_debug_open
+ffffffc0080b5514 t sched_debug_start
+ffffffc0080b55b4 t sched_debug_stop
+ffffffc0080b55c4 t sched_debug_next
+ffffffc0080b566c t sched_debug_show
+ffffffc0080b56b0 t sd_flags_open
+ffffffc0080b56f0 t sd_flags_show
+ffffffc0080b57d0 t schedstat_start
+ffffffc0080b5870 t schedstat_stop
+ffffffc0080b5880 t schedstat_next
+ffffffc0080b5928 t show_schedstat
+ffffffc0080b5b6c t cpu_core_flags
+ffffffc0080b5b80 t cpu_cpu_mask
+ffffffc0080b5b94 t cpu_attach_domain
+ffffffc0080b6360 t destroy_sched_domain
+ffffffc0080b64a8 t destroy_sched_domains_rcu
+ffffffc0080b64f0 t poll_timer_fn
+ffffffc0080b65b8 t psi_io_open
+ffffffc0080b65f4 t psi_io_write
+ffffffc0080b6624 t psi_fop_release
+ffffffc0080b6674 t psi_fop_poll
+ffffffc0080b674c t psi_io_show
+ffffffc0080b6780 t psi_write
+ffffffc0080b69fc t psi_memory_open
+ffffffc0080b6a38 t psi_memory_write
+ffffffc0080b6a68 t psi_memory_show
+ffffffc0080b6aa0 t psi_cpu_open
+ffffffc0080b6adc t psi_cpu_write
+ffffffc0080b6b0c t psi_cpu_show
+ffffffc0080b6b44 t psi_irq_open
+ffffffc0080b6b80 t psi_irq_write
+ffffffc0080b6bb0 t psi_irq_show
+ffffffc0080b6be4 t membarrier_private_expedited
+ffffffc0080b6ef0 t ipi_mb
+ffffffc0080b6f00 t sync_runqueues_membarrier_state
+ffffffc0080b70e4 t ipi_sync_rq_state
+ffffffc0080b7180 t ipi_sync_core
+ffffffc0080b7194 t ipi_rseq
+ffffffc0080b71ec T __traceiter_contention_begin
+ffffffc0080b727c T __traceiter_contention_end
+ffffffc0080b730c t trace_event_raw_event_contention_begin
+ffffffc0080b73cc t perf_trace_contention_begin
+ffffffc0080b74e8 t trace_event_raw_event_contention_end
+ffffffc0080b75a8 t perf_trace_contention_end
+ffffffc0080b76c4 T __mutex_init
+ffffffc0080b76ec T mutex_is_locked
+ffffffc0080b770c T ww_mutex_trylock
+ffffffc0080b7894 T atomic_dec_and_mutex_lock
+ffffffc0080b7a2c t trace_raw_output_contention_begin
+ffffffc0080b7ac4 t trace_raw_output_contention_end
+ffffffc0080b7b38 t __ww_mutex_check_waiters
+ffffffc0080b7c08 t trace_contention_begin
+ffffffc0080b7d08 t mutex_spin_on_owner
+ffffffc0080b7db8 T __init_rwsem
+ffffffc0080b7de4 T down_read_trylock
+ffffffc0080b7ee8 T down_write_trylock
+ffffffc0080b7fc4 T up_read
+ffffffc0080b8150 T up_write
+ffffffc0080b828c T downgrade_write
+ffffffc0080b8394 t rwsem_set_nonspinnable
+ffffffc0080b8404 t rwsem_mark_wake
+ffffffc0080b86ec t rwsem_spin_on_owner
+ffffffc0080b87c8 T _trace_android_vh_record_pcpu_rwsem_starttime
+ffffffc0080b87d8 T __percpu_init_rwsem
+ffffffc0080b887c T percpu_free_rwsem
+ffffffc0080b88c4 t __percpu_down_read_trylock
+ffffffc0080b8a04 t percpu_rwsem_wait
+ffffffc0080b8bc4 T percpu_is_read_locked
+ffffffc0080b8c84 T percpu_up_write
+ffffffc0080b8ce0 t percpu_rwsem_wake_function
+ffffffc0080b8ec8 T in_lock_functions
+ffffffc0080b8ef4 T osq_lock
+ffffffc0080b9130 t osq_wait_next
+ffffffc0080b9200 T osq_unlock
+ffffffc0080b92e8 T rt_mutex_base_init
+ffffffc0080b9304 T pm_qos_read_value
+ffffffc0080b9320 T pm_qos_update_target
+ffffffc0080b9578 T pm_qos_update_flags
+ffffffc0080b97d0 T freq_constraints_init
+ffffffc0080b9878 T freq_qos_read_value
+ffffffc0080b98ec T freq_qos_apply
+ffffffc0080b9954 T freq_qos_add_request
+ffffffc0080b9a04 T freq_qos_update_request
+ffffffc0080b9ab0 T freq_qos_remove_request
+ffffffc0080b9b58 T freq_qos_add_notifier
+ffffffc0080b9bc4 T freq_qos_remove_notifier
+ffffffc0080b9c30 T lock_system_sleep
+ffffffc0080b9c80 T unlock_system_sleep
+ffffffc0080b9cc8 T ksys_sync_helper
+ffffffc0080b9d74 T register_pm_notifier
+ffffffc0080b9dac T unregister_pm_notifier
+ffffffc0080b9de4 T pm_notifier_call_chain_robust
+ffffffc0080b9e38 T pm_notifier_call_chain
+ffffffc0080b9e74 t suspend_stats_open
+ffffffc0080b9eb4 t suspend_stats_show
+ffffffc0080ba0ec t state_store
+ffffffc0080ba238 t state_store
+ffffffc0080ba360 t pm_async_show
+ffffffc0080ba3a4 t pm_async_store
+ffffffc0080ba43c t wakeup_count_show
+ffffffc0080ba4d0 t wakeup_count_show
+ffffffc0080ba564 t wakeup_count_show
+ffffffc0080ba5ac t wakeup_count_store
+ffffffc0080ba648 t mem_sleep_show
+ffffffc0080ba720 t mem_sleep_store
+ffffffc0080ba838 t sync_on_suspend_show
+ffffffc0080ba87c t sync_on_suspend_store
+ffffffc0080ba91c t wake_lock_show
+ffffffc0080ba950 t wake_lock_store
+ffffffc0080ba998 t wake_unlock_show
+ffffffc0080ba9cc t wake_unlock_store
+ffffffc0080baa14 t pm_freeze_timeout_show
+ffffffc0080baa58 t pm_freeze_timeout_store
+ffffffc0080baae8 t success_show
+ffffffc0080bab2c t failed_freeze_show
+ffffffc0080bab70 t failed_prepare_show
+ffffffc0080babb4 t failed_suspend_show
+ffffffc0080babf8 t failed_suspend_late_show
+ffffffc0080bac3c t failed_suspend_noirq_show
+ffffffc0080bac80 t failed_resume_show
+ffffffc0080bacc4 t failed_resume_early_show
+ffffffc0080bad08 t failed_resume_noirq_show
+ffffffc0080bad4c t last_failed_dev_show
+ffffffc0080badc4 t last_failed_errno_show
+ffffffc0080bae38 t last_failed_step_show
+ffffffc0080baebc T pm_vt_switch_required
+ffffffc0080baf8c T pm_vt_switch_unregister
+ffffffc0080bb030 T pm_prepare_console
+ffffffc0080bb0e4 T pm_restore_console
+ffffffc0080bb194 T freeze_processes
+ffffffc0080bb2ac t try_to_freeze_tasks
+ffffffc0080bb57c T thaw_processes
+ffffffc0080bb840 T freeze_kernel_threads
+ffffffc0080bb8ac T thaw_kernel_threads
+ffffffc0080bb994 T pm_suspend_default_s2idle
+ffffffc0080bb9b4 T s2idle_set_ops
+ffffffc0080bb9f8 T s2idle_wake
+ffffffc0080bba68 T suspend_set_ops
+ffffffc0080bbb9c T suspend_valid_only_mem
+ffffffc0080bbbb4 W arch_suspend_disable_irqs
+ffffffc0080bbbe0 W arch_suspend_enable_irqs
+ffffffc0080bbbfc T suspend_devices_and_enter
+ffffffc0080bc6a0 T pm_suspend
+ffffffc0080bcc9c T pm_show_wakelocks
+ffffffc0080bcd88 T pm_wake_lock
+ffffffc0080bcfb4 T pm_wake_unlock
+ffffffc0080bd0b8 t handle_poweroff
+ffffffc0080bd108 t do_poweroff
+ffffffc0080bd134 T log_irq_wakeup_reason
+ffffffc0080bd1e8 t add_sibling_node_sorted
+ffffffc0080bd2f4 T log_threaded_irq_wakeup_reason
+ffffffc0080bd448 T log_suspend_abort_reason
+ffffffc0080bd534 T log_abnormal_wakeup_reason
+ffffffc0080bd620 T clear_wakeup_reasons
+ffffffc0080bd768 t wakeup_reason_pm_event
+ffffffc0080bd8bc t last_resume_reason_show
+ffffffc0080bd9e4 t last_suspend_time_show
+ffffffc0080bdac8 T __traceiter_console
+ffffffc0080bdb58 t trace_event_raw_event_console
+ffffffc0080bdc58 t perf_trace_console
+ffffffc0080bddc0 T devkmsg_sysctl_set_loglvl
+ffffffc0080bdf50 T printk_percpu_data_ready
+ffffffc0080bdf68 T log_buf_addr_get
+ffffffc0080bdf80 T log_buf_len_get
+ffffffc0080bdf98 t devkmsg_llseek
+ffffffc0080be05c t devkmsg_read
+ffffffc0080be4c8 t devkmsg_write
+ffffffc0080be638 t devkmsg_poll
+ffffffc0080be734 t devkmsg_open
+ffffffc0080be884 t devkmsg_release
+ffffffc0080be8f4 T log_buf_vmcoreinfo_setup
+ffffffc0080becec T _printk
+ffffffc0080bed78 T do_syslog
+ffffffc0080bf188 t access_ok
+ffffffc0080bf1c0 t syslog_print
+ffffffc0080bf700 t syslog_print_all
+ffffffc0080bfbc0 T __arm64_sys_syslog
+ffffffc0080bfc04 T printk_parse_prefix
+ffffffc0080bfca0 T vprintk_store
+ffffffc0080c01a0 t printk_sprint
+ffffffc0080c03d4 T vprintk_emit
+ffffffc0080c0658 T console_unlock
+ffffffc0080c08b8 T wake_up_klogd
+ffffffc0080c08e8 T vprintk_default
+ffffffc0080c0964 T add_preferred_console
+ffffffc0080c0994 t __add_preferred_console.llvm.5438971605539506167
+ffffffc0080c0c30 T console_verbose
+ffffffc0080c0c64 T suspend_console
+ffffffc0080c0d30 T console_lock
+ffffffc0080c0d7c T resume_console
+ffffffc0080c0dd0 T console_trylock
+ffffffc0080c0ecc T is_console_locked
+ffffffc0080c0ee4 T console_unblank
+ffffffc0080c0ff0 T console_flush_on_panic
+ffffffc0080c1058 T console_device
+ffffffc0080c1110 T console_stop
+ffffffc0080c1178 t __pr_flush
+ffffffc0080c12e4 T console_start
+ffffffc0080c1354 T register_console
+ffffffc0080c1644 t try_enable_preferred_console
+ffffffc0080c17e0 T unregister_console
+ffffffc0080c1918 t __wake_up_klogd.llvm.5438971605539506167
+ffffffc0080c1a44 T defer_console_output
+ffffffc0080c1a74 T printk_trigger_flush
+ffffffc0080c1aa4 T vprintk_deferred
+ffffffc0080c1bcc T _printk_deferred
+ffffffc0080c1c58 T __printk_ratelimit
+ffffffc0080c1c90 T printk_timed_ratelimit
+ffffffc0080c1d04 T kmsg_dump_register
+ffffffc0080c1dc4 T kmsg_dump_unregister
+ffffffc0080c1e64 T kmsg_dump_reason_str
+ffffffc0080c1e9c T kmsg_dump
+ffffffc0080c1f6c T kmsg_dump_get_line
+ffffffc0080c21e0 T kmsg_dump_get_buffer
+ffffffc0080c250c t find_first_fitting_seq
+ffffffc0080c26d8 T kmsg_dump_rewind
+ffffffc0080c2750 T __printk_cpu_sync_wait
+ffffffc0080c277c T __printk_cpu_sync_try_get
+ffffffc0080c284c T __printk_cpu_sync_put
+ffffffc0080c28c8 t trace_raw_output_console
+ffffffc0080c293c t msg_print_ext_body
+ffffffc0080c2a4c t msg_add_dict_text
+ffffffc0080c2bd0 t devkmsg_emit
+ffffffc0080c2c60 t info_print_prefix
+ffffffc0080c2db0 t console_emit_next_record
+ffffffc0080c3244 t console_cpu_notify
+ffffffc0080c3288 t wake_up_klogd_work_func
+ffffffc0080c3360 T __printk_safe_enter
+ffffffc0080c3400 T __printk_safe_exit
+ffffffc0080c34a0 T vprintk
+ffffffc0080c35e0 T prb_reserve_in_last
+ffffffc0080c3b8c t data_alloc
+ffffffc0080c3ce0 T prb_commit
+ffffffc0080c3dec T prb_reserve
+ffffffc0080c43d8 T prb_final_commit
+ffffffc0080c4478 T prb_read_valid
+ffffffc0080c44dc t _prb_read_valid.llvm.62352542402917051
+ffffffc0080c4988 T prb_read_valid_info
+ffffffc0080c49f8 T prb_first_valid_seq
+ffffffc0080c4a6c T prb_next_seq
+ffffffc0080c4ba0 T prb_init
+ffffffc0080c4c94 T prb_record_text_space
+ffffffc0080c4ca4 t data_push_tail
+ffffffc0080c4ec4 t proc_dointvec_minmax_sysadmin
+ffffffc0080c4f48 T irq_to_desc
+ffffffc0080c4f80 T irq_lock_sparse
+ffffffc0080c4fb4 T irq_unlock_sparse
+ffffffc0080c4fe4 t alloc_desc
+ffffffc0080c51e0 T handle_irq_desc
+ffffffc0080c5248 T generic_handle_irq
+ffffffc0080c52c0 T generic_handle_irq_safe
+ffffffc0080c5378 T generic_handle_domain_irq
+ffffffc0080c53ec T generic_handle_domain_irq_safe
+ffffffc0080c54a0 T generic_handle_domain_nmi
+ffffffc0080c5538 T irq_free_descs
+ffffffc0080c5648 T irq_get_next_irq
+ffffffc0080c5688 T __irq_get_desc_lock
+ffffffc0080c5744 T __irq_put_desc_unlock
+ffffffc0080c57b8 T irq_set_percpu_devid_partition
+ffffffc0080c5870 T irq_set_percpu_devid
+ffffffc0080c5914 T irq_get_percpu_devid_partition
+ffffffc0080c5994 T kstat_incr_irq_this_cpu
+ffffffc0080c5a0c T kstat_irqs_cpu
+ffffffc0080c5a80 T kstat_irqs_usr
+ffffffc0080c5b74 t irq_kobj_release
+ffffffc0080c5bb8 t per_cpu_count_show
+ffffffc0080c5d1c t chip_name_show
+ffffffc0080c5da4 t hwirq_show
+ffffffc0080c5e24 t type_show
+ffffffc0080c5eb0 t type_show
+ffffffc0080c5efc t type_show
+ffffffc0080c5f7c t type_show
+ffffffc0080c6004 t type_show
+ffffffc0080c6048 t type_show
+ffffffc0080c60cc t wakeup_show
+ffffffc0080c6158 t wakeup_show
+ffffffc0080c61c8 t name_show
+ffffffc0080c6248 t name_show
+ffffffc0080c6290 t name_show
+ffffffc0080c6324 t name_show
+ffffffc0080c638c t actions_show
+ffffffc0080c648c t delayed_free_desc
+ffffffc0080c64bc T handle_bad_irq
+ffffffc0080c6720 T no_action
+ffffffc0080c6734 T __irq_wake_thread
+ffffffc0080c67f4 T __handle_irq_event_percpu
+ffffffc0080c6ad0 t warn_no_thread
+ffffffc0080c6b4c T handle_irq_event_percpu
+ffffffc0080c6ba8 T handle_irq_event
+ffffffc0080c6c50 T synchronize_hardirq
+ffffffc0080c6cf0 t __synchronize_hardirq
+ffffffc0080c6e00 T synchronize_irq
+ffffffc0080c6ef8 T irq_can_set_affinity
+ffffffc0080c6f60 T irq_can_set_affinity_usr
+ffffffc0080c6fcc T irq_set_thread_affinity
+ffffffc0080c7028 T irq_do_set_affinity
+ffffffc0080c7280 T irq_set_affinity_locked
+ffffffc0080c7480 T irq_update_affinity_desc
+ffffffc0080c75a4 T irq_set_affinity
+ffffffc0080c7634 T irq_force_affinity
+ffffffc0080c76c4 T __irq_apply_affinity_hint
+ffffffc0080c77b8 T irq_set_affinity_notifier
+ffffffc0080c7978 t irq_affinity_notify
+ffffffc0080c7ae4 T irq_setup_affinity
+ffffffc0080c7c70 T irq_set_vcpu_affinity
+ffffffc0080c7d58 T __disable_irq
+ffffffc0080c7d94 T disable_irq_nosync
+ffffffc0080c7e34 T disable_irq
+ffffffc0080c7ee0 T disable_hardirq
+ffffffc0080c7ff8 T disable_nmi_nosync
+ffffffc0080c8098 T __enable_irq
+ffffffc0080c8110 T enable_irq
+ffffffc0080c8210 T enable_nmi
+ffffffc0080c823c T irq_set_irq_wake
+ffffffc0080c8420 T can_request_irq
+ffffffc0080c84d8 T __irq_set_trigger
+ffffffc0080c8660 T irq_set_parent
+ffffffc0080c86f4 T irq_wake_thread
+ffffffc0080c87a4 T free_irq
+ffffffc0080c8bf8 T free_nmi
+ffffffc0080c8ce0 t __cleanup_nmi
+ffffffc0080c8da0 T request_threaded_irq
+ffffffc0080c8f24 t irq_default_primary_handler
+ffffffc0080c8f34 t __setup_irq
+ffffffc0080c988c T request_any_context_irq
+ffffffc0080c995c T request_nmi
+ffffffc0080c9b40 T enable_percpu_irq
+ffffffc0080c9c38 T enable_percpu_nmi
+ffffffc0080c9c64 T irq_percpu_is_enabled
+ffffffc0080c9d1c T disable_percpu_irq
+ffffffc0080c9dc0 T disable_percpu_nmi
+ffffffc0080c9e64 T remove_percpu_irq
+ffffffc0080c9ec0 t __free_percpu_irq
+ffffffc0080ca03c T free_percpu_irq
+ffffffc0080ca10c T free_percpu_nmi
+ffffffc0080ca180 T setup_percpu_irq
+ffffffc0080ca22c T __request_percpu_irq
+ffffffc0080ca354 T request_percpu_nmi
+ffffffc0080ca4b8 T prepare_percpu_nmi
+ffffffc0080ca5fc T teardown_percpu_nmi
+ffffffc0080ca6f0 T __irq_get_irqchip_state
+ffffffc0080ca768 T irq_get_irqchip_state
+ffffffc0080ca86c T irq_set_irqchip_state
+ffffffc0080ca970 T irq_has_action
+ffffffc0080ca9d8 T irq_check_status_bit
+ffffffc0080caa44 t irq_nested_primary_handler
+ffffffc0080caa80 t wake_up_and_wait_for_irq_thread_ready
+ffffffc0080cab4c t irq_forced_secondary_handler
+ffffffc0080cab8c t irq_thread
+ffffffc0080caf08 t irq_forced_thread_fn
+ffffffc0080cb000 t irq_thread_fn
+ffffffc0080cb0b4 t irq_thread_dtor
+ffffffc0080cb1d0 t irq_finalize_oneshot
+ffffffc0080cb324 T irq_wait_for_poll
+ffffffc0080cb418 T note_interrupt
+ffffffc0080cb630 t misrouted_irq
+ffffffc0080cb794 t __report_bad_irq
+ffffffc0080cb88c T noirqdebug_setup
+ffffffc0080cb8cc t try_one_irq
+ffffffc0080cb9bc t poll_spurious_irqs
+ffffffc0080cbb40 T check_irq_resend
+ffffffc0080cbcb8 t resend_irqs
+ffffffc0080cbdc4 t bad_chained_irq
+ffffffc0080cbe1c T irq_set_chip
+ffffffc0080cbec0 T irq_set_irq_type
+ffffffc0080cbf64 T irq_set_handler_data
+ffffffc0080cbff8 T irq_set_msi_desc_off
+ffffffc0080cc0ac T irq_set_msi_desc
+ffffffc0080cc14c T irq_set_chip_data
+ffffffc0080cc1e0 T irq_get_irq_data
+ffffffc0080cc224 T irq_startup
+ffffffc0080cc590 T irq_enable
+ffffffc0080cc640 T irq_activate
+ffffffc0080cc688 T irq_activate_and_startup
+ffffffc0080cc6f8 T irq_shutdown
+ffffffc0080cc7fc T irq_shutdown_and_deactivate
+ffffffc0080cc910 T unmask_irq
+ffffffc0080cc98c T irq_disable
+ffffffc0080cca44 T irq_percpu_enable
+ffffffc0080ccaec T irq_percpu_disable
+ffffffc0080ccb94 T mask_irq
+ffffffc0080ccc10 T unmask_threaded_irq
+ffffffc0080cccbc T handle_nested_irq
+ffffffc0080cce1c T handle_simple_irq
+ffffffc0080ccf48 T handle_untracked_irq
+ffffffc0080cd06c T handle_level_irq
+ffffffc0080cd2b0 T handle_fasteoi_irq
+ffffffc0080cd548 T handle_fasteoi_nmi
+ffffffc0080cd72c T handle_edge_irq
+ffffffc0080cda30 T handle_percpu_irq
+ffffffc0080cdaf4 T handle_percpu_devid_irq
+ffffffc0080cdd98 T handle_percpu_devid_fasteoi_nmi
+ffffffc0080cdf8c T __irq_set_handler
+ffffffc0080ce034 t __irq_do_set_handler
+ffffffc0080ce2e4 T irq_set_chained_handler_and_data
+ffffffc0080ce390 T irq_set_chip_and_handler_name
+ffffffc0080ce58c T irq_modify_status
+ffffffc0080ce6f4 T irq_chip_set_parent_state
+ffffffc0080ce758 T irq_chip_get_parent_state
+ffffffc0080ce7b8 T irq_chip_enable_parent
+ffffffc0080ce810 T irq_chip_disable_parent
+ffffffc0080ce868 T irq_chip_ack_parent
+ffffffc0080ce8b8 T irq_chip_mask_parent
+ffffffc0080ce908 T irq_chip_mask_ack_parent
+ffffffc0080ce958 T irq_chip_unmask_parent
+ffffffc0080ce9a8 T irq_chip_eoi_parent
+ffffffc0080ce9f8 T irq_chip_set_affinity_parent
+ffffffc0080cea58 T irq_chip_set_type_parent
+ffffffc0080ceab4 T irq_chip_retrigger_hierarchy
+ffffffc0080ceb10 T irq_chip_set_vcpu_affinity_parent
+ffffffc0080ceb6c T irq_chip_set_wake_parent
+ffffffc0080cebd8 T irq_chip_request_resources_parent
+ffffffc0080cec34 T irq_chip_release_resources_parent
+ffffffc0080cec88 T irq_chip_compose_msi_msg
+ffffffc0080ced0c T irq_chip_pm_get
+ffffffc0080cedcc T irq_chip_pm_put
+ffffffc0080cee1c t noop_ret
+ffffffc0080cee30 t noop
+ffffffc0080cee40 t ack_bad
+ffffffc0080cf064 T devm_request_threaded_irq
+ffffffc0080cf150 t devm_irq_release
+ffffffc0080cf184 T devm_request_any_context_irq
+ffffffc0080cf268 T devm_free_irq
+ffffffc0080cf304 t devm_irq_match
+ffffffc0080cf340 T __devm_irq_alloc_descs
+ffffffc0080cf418 t devm_irq_desc_release
+ffffffc0080cf448 T probe_irq_on
+ffffffc0080cf6c0 T probe_irq_mask
+ffffffc0080cf7c4 T probe_irq_off
+ffffffc0080cf8e0 t irqchip_fwnode_get_name.llvm.13366066436366977995
+ffffffc0080cf8f4 T __irq_domain_alloc_fwnode
+ffffffc0080cfa0c T irq_domain_free_fwnode
+ffffffc0080cfa70 T __irq_domain_add
+ffffffc0080cfafc t __irq_domain_create
+ffffffc0080cfd28 T irq_domain_remove
+ffffffc0080cfe04 T irq_set_default_host
+ffffffc0080cfe1c T irq_domain_update_bus_token
+ffffffc0080cfebc T irq_domain_create_simple
+ffffffc0080cfff8 T irq_domain_associate_many
+ffffffc0080d0088 T irq_domain_add_legacy
+ffffffc0080d00c0 T irq_domain_create_legacy
+ffffffc0080d01bc T irq_find_matching_fwspec
+ffffffc0080d0320 T irq_domain_check_msi_remap
+ffffffc0080d03b4 T irq_domain_hierarchical_is_msi_remap
+ffffffc0080d03e8 T irq_get_default_host
+ffffffc0080d0400 T irq_domain_associate
+ffffffc0080d0470 t irq_domain_associate_locked
+ffffffc0080d0638 T irq_create_mapping_affinity
+ffffffc0080d07bc T of_phandle_args_to_fwspec
+ffffffc0080d0804 T irq_create_fwspec_mapping
+ffffffc0080d0d4c t irq_domain_alloc_irqs_locked
+ffffffc0080d1160 T irq_create_of_mapping
+ffffffc0080d1300 T irq_dispose_mapping
+ffffffc0080d14a8 T irq_domain_free_irqs
+ffffffc0080d172c T __irq_resolve_mapping
+ffffffc0080d17dc T irq_domain_get_irq_data
+ffffffc0080d1854 T irq_domain_xlate_onecell
+ffffffc0080d1888 T irq_domain_xlate_twocell
+ffffffc0080d18d8 T irq_domain_translate_twocell
+ffffffc0080d191c T irq_domain_xlate_onetwocell
+ffffffc0080d1968 T irq_domain_translate_onecell
+ffffffc0080d19a4 T irq_domain_alloc_descs
+ffffffc0080d1a50 T irq_domain_reset_irq_data
+ffffffc0080d1a74 T irq_domain_create_hierarchy
+ffffffc0080d1b44 T irq_domain_disconnect_hierarchy
+ffffffc0080d1bc4 T irq_domain_set_hwirq_and_chip
+ffffffc0080d1c6c T irq_domain_set_info
+ffffffc0080d1d44 T irq_domain_free_irqs_common
+ffffffc0080d1ea4 T irq_domain_free_irqs_parent
+ffffffc0080d1f88 T irq_domain_free_irqs_top
+ffffffc0080d201c T irq_domain_alloc_irqs_hierarchy
+ffffffc0080d2074 T __irq_domain_alloc_irqs
+ffffffc0080d2140 T irq_domain_push_irq
+ffffffc0080d2390 T irq_domain_pop_irq
+ffffffc0080d25fc T irq_domain_alloc_irqs_parent
+ffffffc0080d265c T irq_domain_activate_irq
+ffffffc0080d26b8 t __irq_domain_activate_irq
+ffffffc0080d2770 T irq_domain_deactivate_irq
+ffffffc0080d27c0 t __irq_domain_deactivate_irq
+ffffffc0080d2838 T register_handler_proc
+ffffffc0080d298c T register_irq_proc
+ffffffc0080d2b4c t irq_affinity_hint_proc_show
+ffffffc0080d2c44 t irq_node_proc_show
+ffffffc0080d2ca0 t irq_effective_aff_proc_show
+ffffffc0080d2d08 t irq_effective_aff_list_proc_show
+ffffffc0080d2d70 t irq_spurious_proc_show
+ffffffc0080d2dd4 T unregister_irq_proc
+ffffffc0080d2ee8 T unregister_handler_proc
+ffffffc0080d2f18 T init_irq_proc
+ffffffc0080d2fe8 T show_interrupts
+ffffffc0080d342c t irq_affinity_proc_open
+ffffffc0080d346c t irq_affinity_proc_write
+ffffffc0080d34a8 t irq_affinity_proc_show
+ffffffc0080d3508 t write_irq_affinity
+ffffffc0080d362c t irq_affinity_list_proc_open
+ffffffc0080d366c t irq_affinity_list_proc_write
+ffffffc0080d36a8 t irq_affinity_list_proc_show
+ffffffc0080d370c t default_affinity_open
+ffffffc0080d374c t default_affinity_write
+ffffffc0080d383c t default_affinity_show
+ffffffc0080d3884 T irq_migrate_all_off_this_cpu
+ffffffc0080d3adc T irq_affinity_online_cpu
+ffffffc0080d3c58 T irq_pm_check_wakeup
+ffffffc0080d3cc4 T irq_pm_install_action
+ffffffc0080d3d5c T irq_pm_remove_action
+ffffffc0080d3db8 T suspend_device_irqs
+ffffffc0080d3f18 T rearm_wake_irq
+ffffffc0080d3fd0 T resume_device_irqs
+ffffffc0080d3ffc t resume_irqs.llvm.16308921473053141281
+ffffffc0080d4164 t irq_pm_syscore_resume
+ffffffc0080d4194 T msi_add_msi_desc
+ffffffc0080d4298 T msi_free_msi_descs_range
+ffffffc0080d439c T __get_cached_msi_msg
+ffffffc0080d43bc T get_cached_msi_msg
+ffffffc0080d4428 T msi_setup_device_data
+ffffffc0080d44f8 t msi_device_data_release
+ffffffc0080d4548 T msi_lock_descs
+ffffffc0080d457c T msi_unlock_descs
+ffffffc0080d45bc T msi_first_desc
+ffffffc0080d4684 T msi_next_desc
+ffffffc0080d476c T msi_get_virq
+ffffffc0080d486c T msi_domain_set_affinity
+ffffffc0080d4988 T msi_create_irq_domain
+ffffffc0080d4b24 T msi_domain_prepare_irqs
+ffffffc0080d4bd4 T msi_domain_populate_irqs
+ffffffc0080d4dc4 t msi_add_simple_msi_descs
+ffffffc0080d4f60 T __msi_domain_alloc_irqs
+ffffffc0080d553c T msi_domain_alloc_irqs_descs_locked
+ffffffc0080d55f4 T msi_domain_free_irqs_descs_locked
+ffffffc0080d56e4 T msi_domain_alloc_irqs
+ffffffc0080d57c0 T __msi_domain_free_irqs
+ffffffc0080d59c4 T msi_domain_free_irqs
+ffffffc0080d5a2c T msi_get_domain_info
+ffffffc0080d5a40 t msi_domain_ops_get_hwirq
+ffffffc0080d5a54 t msi_domain_ops_init
+ffffffc0080d5ad0 t msi_domain_ops_check
+ffffffc0080d5ae4 t msi_domain_ops_prepare
+ffffffc0080d5b04 t msi_domain_ops_set_desc
+ffffffc0080d5b18 t msi_domain_alloc
+ffffffc0080d5ce0 t msi_domain_free
+ffffffc0080d5d94 t msi_domain_activate
+ffffffc0080d5e78 t msi_domain_deactivate
+ffffffc0080d5f00 t msi_mode_show
+ffffffc0080d5f7c T irq_reserve_ipi
+ffffffc0080d619c T irq_destroy_ipi
+ffffffc0080d62b4 T ipi_get_hwirq
+ffffffc0080d6384 T __ipi_send_single
+ffffffc0080d6474 T __ipi_send_mask
+ffffffc0080d65e4 T ipi_send_single
+ffffffc0080d6734 T ipi_send_mask
+ffffffc0080d67e8 T irq_create_affinity_masks
+ffffffc0080d6c74 t default_calc_sets
+ffffffc0080d6c8c T irq_calc_affinity_vectors
+ffffffc0080d6d20 t __irq_build_affinity_masks
+ffffffc0080d7194 t ncpus_cmp_func
+ffffffc0080d71b0 T __traceiter_rcu_utilization
+ffffffc0080d7230 T __traceiter_rcu_grace_period
+ffffffc0080d72c8 T __traceiter_rcu_future_grace_period
+ffffffc0080d7390 T __traceiter_rcu_grace_period_init
+ffffffc0080d7450 T __traceiter_rcu_exp_grace_period
+ffffffc0080d74e8 T __traceiter_rcu_exp_funnel_lock
+ffffffc0080d7598 T __traceiter_rcu_nocb_wake
+ffffffc0080d7630 T __traceiter_rcu_preempt_task
+ffffffc0080d76c8 T __traceiter_rcu_unlock_preempted_task
+ffffffc0080d7760 T __traceiter_rcu_quiescent_state_report
+ffffffc0080d7840 T __traceiter_rcu_fqs
+ffffffc0080d78e8 T __traceiter_rcu_stall_warning
+ffffffc0080d7978 T __traceiter_rcu_dyntick
+ffffffc0080d7a20 T __traceiter_rcu_callback
+ffffffc0080d7ab8 T __traceiter_rcu_segcb_stats
+ffffffc0080d7b48 T __traceiter_rcu_kvfree_callback
+ffffffc0080d7bf0 T __traceiter_rcu_batch_start
+ffffffc0080d7c88 T __traceiter_rcu_invoke_callback
+ffffffc0080d7d18 T __traceiter_rcu_invoke_kvfree_callback
+ffffffc0080d7db0 T __traceiter_rcu_invoke_kfree_bulk_callback
+ffffffc0080d7e48 T __traceiter_rcu_batch_end
+ffffffc0080d7f08 T __traceiter_rcu_torture_read
+ffffffc0080d7fb8 T __traceiter_rcu_barrier
+ffffffc0080d8068 t trace_event_raw_event_rcu_utilization
+ffffffc0080d8120 t perf_trace_rcu_utilization
+ffffffc0080d822c t trace_event_raw_event_rcu_grace_period
+ffffffc0080d82fc t perf_trace_rcu_grace_period
+ffffffc0080d841c t trace_event_raw_event_rcu_future_grace_period
+ffffffc0080d8518 t perf_trace_rcu_future_grace_period
+ffffffc0080d8664 t trace_event_raw_event_rcu_grace_period_init
+ffffffc0080d8750 t perf_trace_rcu_grace_period_init
+ffffffc0080d8894 t trace_event_raw_event_rcu_exp_grace_period
+ffffffc0080d8964 t perf_trace_rcu_exp_grace_period
+ffffffc0080d8a84 t trace_event_raw_event_rcu_exp_funnel_lock
+ffffffc0080d8b6c t perf_trace_rcu_exp_funnel_lock
+ffffffc0080d8ca4 t trace_event_raw_event_rcu_nocb_wake
+ffffffc0080d8d78 t perf_trace_rcu_nocb_wake
+ffffffc0080d8e9c t trace_event_raw_event_rcu_preempt_task
+ffffffc0080d8f6c t perf_trace_rcu_preempt_task
+ffffffc0080d908c t trace_event_raw_event_rcu_unlock_preempted_task
+ffffffc0080d915c t perf_trace_rcu_unlock_preempted_task
+ffffffc0080d927c t trace_event_raw_event_rcu_quiescent_state_report
+ffffffc0080d937c t perf_trace_rcu_quiescent_state_report
+ffffffc0080d94d0 t trace_event_raw_event_rcu_fqs
+ffffffc0080d95a8 t perf_trace_rcu_fqs
+ffffffc0080d96d8 t trace_event_raw_event_rcu_stall_warning
+ffffffc0080d9794 t perf_trace_rcu_stall_warning
+ffffffc0080d98ac t trace_event_raw_event_rcu_dyntick
+ffffffc0080d9984 t perf_trace_rcu_dyntick
+ffffffc0080d9ab4 t trace_event_raw_event_rcu_callback
+ffffffc0080d9b88 t perf_trace_rcu_callback
+ffffffc0080d9cac t trace_event_raw_event_rcu_segcb_stats
+ffffffc0080d9d88 t perf_trace_rcu_segcb_stats
+ffffffc0080d9ec0 t trace_event_raw_event_rcu_kvfree_callback
+ffffffc0080d9f94 t perf_trace_rcu_kvfree_callback
+ffffffc0080da0c0 t trace_event_raw_event_rcu_batch_start
+ffffffc0080da190 t perf_trace_rcu_batch_start
+ffffffc0080da2b0 t trace_event_raw_event_rcu_invoke_callback
+ffffffc0080da374 t perf_trace_rcu_invoke_callback
+ffffffc0080da494 t trace_event_raw_event_rcu_invoke_kvfree_callback
+ffffffc0080da564 t perf_trace_rcu_invoke_kvfree_callback
+ffffffc0080da684 t trace_event_raw_event_rcu_invoke_kfree_bulk_callback
+ffffffc0080da754 t perf_trace_rcu_invoke_kfree_bulk_callback
+ffffffc0080da874 t trace_event_raw_event_rcu_batch_end
+ffffffc0080da968 t perf_trace_rcu_batch_end
+ffffffc0080daab4 t trace_event_raw_event_rcu_torture_read
+ffffffc0080dabac t perf_trace_rcu_torture_read
+ffffffc0080dad00 t trace_event_raw_event_rcu_barrier
+ffffffc0080dade4 t perf_trace_rcu_barrier
+ffffffc0080daf18 T rcu_gp_is_normal
+ffffffc0080daf4c T rcu_gp_is_expedited
+ffffffc0080daf8c T rcu_expedite_gp
+ffffffc0080dafd8 T rcu_unexpedite_gp
+ffffffc0080db028 T rcu_end_inkernel_boot
+ffffffc0080db098 T rcu_inkernel_boot_has_ended
+ffffffc0080db0b0 T rcu_test_sync_prims
+ffffffc0080db0c0 T wakeme_after_rcu
+ffffffc0080db0f0 T __wait_rcu_gp
+ffffffc0080db29c T finish_rcuwait
+ffffffc0080db2b8 T do_trace_rcu_torture_read
+ffffffc0080db3dc T get_completed_synchronize_rcu
+ffffffc0080db3f0 T rcu_early_boot_tests
+ffffffc0080db400 T call_rcu_tasks
+ffffffc0080db638 T synchronize_rcu_tasks
+ffffffc0080db720 T rcu_barrier_tasks
+ffffffc0080db988 T show_rcu_tasks_classic_gp_kthread
+ffffffc0080dbafc T exit_tasks_rcu_start
+ffffffc0080dbb38 T exit_tasks_rcu_stop
+ffffffc0080dbb74 T exit_tasks_rcu_finish
+ffffffc0080dbbb0 T show_rcu_tasks_gp_kthreads
+ffffffc0080dbbdc t trace_raw_output_rcu_utilization
+ffffffc0080dbc50 t trace_raw_output_rcu_grace_period
+ffffffc0080dbcc8 t trace_raw_output_rcu_future_grace_period
+ffffffc0080dbd58 t trace_raw_output_rcu_grace_period_init
+ffffffc0080dbdd8 t trace_raw_output_rcu_exp_grace_period
+ffffffc0080dbe50 t trace_raw_output_rcu_exp_funnel_lock
+ffffffc0080dbed0 t trace_raw_output_rcu_nocb_wake
+ffffffc0080dbf4c t trace_raw_output_rcu_preempt_task
+ffffffc0080dbfc4 t trace_raw_output_rcu_unlock_preempted_task
+ffffffc0080dc03c t trace_raw_output_rcu_quiescent_state_report
+ffffffc0080dc0d0 t trace_raw_output_rcu_fqs
+ffffffc0080dc14c t trace_raw_output_rcu_stall_warning
+ffffffc0080dc1c0 t trace_raw_output_rcu_dyntick
+ffffffc0080dc240 t trace_raw_output_rcu_callback
+ffffffc0080dc2b8 t trace_raw_output_rcu_segcb_stats
+ffffffc0080dc34c t trace_raw_output_rcu_kvfree_callback
+ffffffc0080dc3c4 t trace_raw_output_rcu_batch_start
+ffffffc0080dc43c t trace_raw_output_rcu_invoke_callback
+ffffffc0080dc4b4 t trace_raw_output_rcu_invoke_kvfree_callback
+ffffffc0080dc52c t trace_raw_output_rcu_invoke_kfree_bulk_callback
+ffffffc0080dc5a4 t trace_raw_output_rcu_batch_end
+ffffffc0080dc660 t trace_raw_output_rcu_torture_read
+ffffffc0080dc6dc t trace_raw_output_rcu_barrier
+ffffffc0080dc754 t cblist_init_generic
+ffffffc0080dc95c t rcu_tasks_invoke_cbs_wq
+ffffffc0080dc98c t rcu_tasks_invoke_cbs
+ffffffc0080dcb90 t rcu_tasks_wait_gp
+ffffffc0080dceb0 t call_rcu_tasks_iw_wakeup
+ffffffc0080dcedc t rcu_tasks_one_gp
+ffffffc0080dd2c8 t rcu_barrier_tasks_generic_cb
+ffffffc0080dd340 t rcu_tasks_pregp_step
+ffffffc0080dd36c t rcu_tasks_pertask
+ffffffc0080dd464 t rcu_tasks_postscan
+ffffffc0080dd498 t check_all_holdout_tasks
+ffffffc0080dd664 t rcu_tasks_postgp
+ffffffc0080dd690 t rcu_tasks_kthread
+ffffffc0080dd6dc T rcu_sync_init
+ffffffc0080dd728 T rcu_sync_enter_start
+ffffffc0080dd748 T rcu_sync_enter
+ffffffc0080dd918 t rcu_sync_func
+ffffffc0080dd9f0 T rcu_sync_exit
+ffffffc0080ddab0 T rcu_sync_dtor
+ffffffc0080ddb68 T init_srcu_struct
+ffffffc0080ddb98 t init_srcu_struct_fields.llvm.15785009345441192995
+ffffffc0080dddfc T cleanup_srcu_struct
+ffffffc0080de118 T __srcu_read_lock
+ffffffc0080de1d8 T __srcu_read_unlock
+ffffffc0080de290 T call_srcu
+ffffffc0080de2c4 T synchronize_srcu_expedited
+ffffffc0080de304 t __synchronize_srcu
+ffffffc0080de418 T synchronize_srcu
+ffffffc0080de55c T get_state_synchronize_srcu
+ffffffc0080de588 T start_poll_synchronize_srcu
+ffffffc0080de5b8 t srcu_gp_start_if_needed.llvm.15785009345441192995
+ffffffc0080decd0 T poll_state_synchronize_srcu
+ffffffc0080ded00 T srcu_barrier
+ffffffc0080df158 T srcu_batches_completed
+ffffffc0080df178 T srcutorture_get_gp_data
+ffffffc0080df1a8 T srcu_torture_stats_print
+ffffffc0080df394 t process_srcu
+ffffffc0080dfa74 t init_srcu_struct_nodes
+ffffffc0080dfd94 t srcu_gp_start
+ffffffc0080dfec4 t try_check_zero
+ffffffc0080e00ac t srcu_invoke_callbacks
+ffffffc0080e025c t srcu_delay_timer
+ffffffc0080e0294 t srcu_funnel_exp_start
+ffffffc0080e0420 t srcu_barrier_cb
+ffffffc0080e0498 t srcu_module_notify
+ffffffc0080e0550 T rcu_get_gp_kthreads_prio
+ffffffc0080e0568 T rcu_softirq_qs
+ffffffc0080e0628 t rcu_qs
+ffffffc0080e0730 T rcu_preempt_deferred_qs
+ffffffc0080e07cc T rcu_is_idle_cpu
+ffffffc0080e0810 T rcu_dynticks_zero_in_eqs
+ffffffc0080e0894 T rcu_momentary_dyntick_idle
+ffffffc0080e099c T rcu_get_gp_seq
+ffffffc0080e09bc T rcu_exp_batches_completed
+ffffffc0080e09d4 T rcutorture_get_gp_data
+ffffffc0080e0a18 T rcu_needs_cpu
+ffffffc0080e0a78 T rcu_is_watching
+ffffffc0080e0b08 T rcu_request_urgent_qs_task
+ffffffc0080e0b7c T rcu_gp_slow_register
+ffffffc0080e0ba4 T rcu_gp_slow_unregister
+ffffffc0080e0bd4 T rcu_gp_set_torture_wait
+ffffffc0080e0be4 T rcutree_dying_cpu
+ffffffc0080e0cf4 T rcutree_dead_cpu
+ffffffc0080e0d5c t rcu_boost_kthread_setaffinity
+ffffffc0080e0f88 T rcu_sched_clock_irq
+ffffffc0080e2194 t invoke_rcu_core
+ffffffc0080e22a4 T rcu_force_quiescent_state
+ffffffc0080e242c T call_rcu
+ffffffc0080e2e08 t __call_rcu_nocb_wake
+ffffffc0080e32cc T kvfree_call_rcu
+ffffffc0080e35e0 T synchronize_rcu
+ffffffc0080e3834 T synchronize_rcu_expedited
+ffffffc0080e3f88 T get_completed_synchronize_rcu_full
+ffffffc0080e3fa0 T get_state_synchronize_rcu
+ffffffc0080e3fd0 T get_state_synchronize_rcu_full
+ffffffc0080e4020 T start_poll_synchronize_rcu
+ffffffc0080e4074 t start_poll_synchronize_rcu_common
+ffffffc0080e41b0 T start_poll_synchronize_rcu_full
+ffffffc0080e421c T poll_state_synchronize_rcu
+ffffffc0080e4268 T poll_state_synchronize_rcu_full
+ffffffc0080e42e8 T cond_synchronize_rcu
+ffffffc0080e4344 T cond_synchronize_rcu_full
+ffffffc0080e43d4 T rcu_barrier
+ffffffc0080e4b50 t rcu_barrier_entrain
+ffffffc0080e4dc0 t rcu_barrier_handler
+ffffffc0080e4e6c T rcutree_prepare_cpu
+ffffffc0080e5048 t rcu_iw_handler
+ffffffc0080e50ac t rcu_spawn_one_boost_kthread
+ffffffc0080e51cc t rcu_spawn_cpu_nocb_kthread
+ffffffc0080e542c T rcutree_online_cpu
+ffffffc0080e54e4 T rcutree_offline_cpu
+ffffffc0080e5590 T rcu_cpu_starting
+ffffffc0080e5828 t rcu_report_qs_rnp
+ffffffc0080e5ae0 T rcu_report_dead
+ffffffc0080e5d24 T rcutree_migrate_callbacks
+ffffffc0080e60e0 t rcu_nocb_flush_bypass
+ffffffc0080e62a0 T rcu_scheduler_starting
+ffffffc0080e63d4 T rcu_init_geometry
+ffffffc0080e65f8 t rcu_core_si
+ffffffc0080e6624 t rcu_pm_notify
+ffffffc0080e6688 T start_poll_synchronize_rcu_expedited
+ffffffc0080e67a4 T rcu_exp_jiffies_till_stall_check
+ffffffc0080e6858 T rcu_jiffies_till_stall_check
+ffffffc0080e68a4 T rcu_gp_might_be_stalled
+ffffffc0080e6954 T rcu_sysrq_start
+ffffffc0080e6980 T rcu_sysrq_end
+ffffffc0080e69a4 T rcu_cpu_stall_reset
+ffffffc0080e6a04 T rcu_check_boost_fail
+ffffffc0080e6bc0 T show_rcu_gp_kthreads
+ffffffc0080e7640 T rcu_fwd_progress_check
+ffffffc0080e7824 t rcu_exp_sel_wait_wake
+ffffffc0080e88a4 t sync_exp_work_done
+ffffffc0080e89a0 T start_poll_synchronize_rcu_expedited_full
+ffffffc0080e8a0c T cond_synchronize_rcu_expedited
+ffffffc0080e8a68 T cond_synchronize_rcu_expedited_full
+ffffffc0080e8af8 T rcu_nocb_flush_deferred_wakeup
+ffffffc0080e8b74 T rcu_nocb_cpu_deoffload
+ffffffc0080e8c90 t rcu_nocb_rdp_deoffload
+ffffffc0080e903c T rcu_nocb_cpu_offload
+ffffffc0080e9158 t rcu_nocb_rdp_offload
+ffffffc0080e9344 T rcu_bind_current_to_nocb
+ffffffc0080e93b4 T rcu_note_context_switch
+ffffffc0080e991c T __rcu_read_lock
+ffffffc0080e9944 T __rcu_read_unlock
+ffffffc0080e999c t rcu_read_unlock_special
+ffffffc0080e9b70 t rcu_preempt_deferred_qs_irqrestore
+ffffffc0080ea040 T exit_rcu
+ffffffc0080ea0c0 t param_set_first_fqs_jiffies
+ffffffc0080ea1bc t param_set_next_fqs_jiffies
+ffffffc0080ea2bc t note_gp_changes
+ffffffc0080ea408 t rcu_accelerate_cbs_unlocked
+ffffffc0080ea530 t __note_gp_changes
+ffffffc0080ea878 t rcu_accelerate_cbs
+ffffffc0080eab9c t rcu_start_this_gp
+ffffffc0080eadec t trace_rcu_this_gp
+ffffffc0080eaec0 t schedule_page_work_fn
+ffffffc0080eaf00 t rcu_stall_kick_kthreads
+ffffffc0080eb068 t print_cpu_stall_info
+ffffffc0080eb350 t rcu_check_gp_kthread_expired_fqs_timer
+ffffffc0080eb45c t rcu_check_gp_kthread_starvation
+ffffffc0080eb5f4 t rcu_dump_cpu_stacks
+ffffffc0080eb754 t check_slow_task
+ffffffc0080eb7c4 t rcu_barrier_callback
+ffffffc0080eb994 t rcu_gp_kthread
+ffffffc0080ebc00 t rcu_gp_init
+ffffffc0080ec4e8 t rcu_gp_fqs_loop
+ffffffc0080eccb8 t rcu_gp_cleanup
+ffffffc0080ed2a4 t dump_blkd_tasks
+ffffffc0080ed55c t dyntick_save_progress_counter
+ffffffc0080ed6d0 t rcu_implicit_dynticks_qs
+ffffffc0080eda18 t rcu_initiate_boost
+ffffffc0080edaf8 t rcu_cpu_kthread_should_run
+ffffffc0080edb20 t rcu_cpu_kthread
+ffffffc0080ede54 t rcu_cpu_kthread_setup
+ffffffc0080edefc t rcu_cpu_kthread_park
+ffffffc0080edf38 t rcu_core
+ffffffc0080ee508 t rcu_do_batch
+ffffffc0080eecfc t kfree_rcu_work
+ffffffc0080ef0d4 t kfree_rcu_monitor
+ffffffc0080ef2ac t fill_page_cache_func
+ffffffc0080ef3ac t kfree_rcu_shrink_count
+ffffffc0080ef47c t kfree_rcu_shrink_scan
+ffffffc0080ef5d8 t sync_rcu_do_polled_gp
+ffffffc0080ef73c t strict_work_handler
+ffffffc0080ef7a8 t do_nocb_deferred_wakeup_timer
+ffffffc0080ef8b4 t trace_rcu_nocb_wake
+ffffffc0080ef96c t do_nocb_deferred_wakeup_common
+ffffffc0080efa64 t __wake_nocb_gp
+ffffffc0080efc54 t rcu_panic
+ffffffc0080efc74 t sysrq_show_rcu
+ffffffc0080efc9c t rcu_report_exp_cpu_mult
+ffffffc0080efd90 t __rcu_report_exp_rnp
+ffffffc0080efe90 t sync_rcu_exp_select_node_cpus
+ffffffc0080f033c t rcu_exp_handler
+ffffffc0080f048c t wait_rcu_exp_gp
+ffffffc0080f04b8 t rcu_advance_cbs_nowake
+ffffffc0080f0578 t wake_nocb_gp_defer
+ffffffc0080f06d0 t rdp_offload_toggle
+ffffffc0080f0790 t rcu_nocb_gp_kthread
+ffffffc0080f1264 t rcu_nocb_cb_kthread
+ffffffc0080f174c t nocb_gp_sleep
+ffffffc0080f196c t rcu_preempt_deferred_qs_handler
+ffffffc0080f1980 t rcu_boost_kthread
+ffffffc0080f1d8c T rcu_cblist_init
+ffffffc0080f1da4 T rcu_cblist_enqueue
+ffffffc0080f1dcc T rcu_cblist_flush_enqueue
+ffffffc0080f1e20 T rcu_cblist_dequeue
+ffffffc0080f1e60 T rcu_segcblist_n_segment_cbs
+ffffffc0080f1eac T rcu_segcblist_add_len
+ffffffc0080f1ef0 T rcu_segcblist_inc_len
+ffffffc0080f1f38 T rcu_segcblist_init
+ffffffc0080f1f74 T rcu_segcblist_disable
+ffffffc0080f1fbc T rcu_segcblist_offload
+ffffffc0080f1fe8 T rcu_segcblist_ready_cbs
+ffffffc0080f2028 T rcu_segcblist_pend_cbs
+ffffffc0080f2070 T rcu_segcblist_first_cb
+ffffffc0080f20a0 T rcu_segcblist_first_pend_cb
+ffffffc0080f20d4 T rcu_segcblist_nextgp
+ffffffc0080f2124 T rcu_segcblist_enqueue
+ffffffc0080f2188 T rcu_segcblist_entrain
+ffffffc0080f2288 T rcu_segcblist_extract_done_cbs
+ffffffc0080f232c T rcu_segcblist_extract_pend_cbs
+ffffffc0080f23f4 T rcu_segcblist_insert_count
+ffffffc0080f243c T rcu_segcblist_insert_done_cbs
+ffffffc0080f24cc T rcu_segcblist_insert_pend_cbs
+ffffffc0080f2508 T rcu_segcblist_advance
+ffffffc0080f2608 T rcu_segcblist_accelerate
+ffffffc0080f2754 T rcu_segcblist_merge
+ffffffc0080f2a3c T dmam_free_coherent
+ffffffc0080f2b90 t dmam_release
+ffffffc0080f2c88 t dmam_match
+ffffffc0080f2ce8 T dmam_alloc_attrs
+ffffffc0080f2e60 T dma_alloc_attrs
+ffffffc0080f2f74 T dma_map_page_attrs
+ffffffc0080f31a0 T dma_unmap_page_attrs
+ffffffc0080f3374 T dma_map_sg_attrs
+ffffffc0080f343c T dma_map_sgtable
+ffffffc0080f3520 T dma_unmap_sg_attrs
+ffffffc0080f3588 T dma_map_resource
+ffffffc0080f360c T dma_unmap_resource
+ffffffc0080f366c T dma_sync_single_for_cpu
+ffffffc0080f3798 T dma_sync_single_for_device
+ffffffc0080f38a8 T dma_sync_sg_for_cpu
+ffffffc0080f3910 T dma_sync_sg_for_device
+ffffffc0080f3978 T dma_get_sgtable_attrs
+ffffffc0080f39dc T dma_pgprot
+ffffffc0080f3a1c T dma_can_mmap
+ffffffc0080f3a4c T dma_mmap_attrs
+ffffffc0080f3ab0 T dma_get_required_mask
+ffffffc0080f3b14 T dma_free_attrs
+ffffffc0080f3c10 T dma_alloc_pages
+ffffffc0080f3ca4 T dma_free_pages
+ffffffc0080f3d08 T dma_mmap_pages
+ffffffc0080f3d8c T dma_alloc_noncontiguous
+ffffffc0080f3f68 T dma_free_noncontiguous
+ffffffc0080f4044 T dma_vmap_noncontiguous
+ffffffc0080f40dc T dma_vunmap_noncontiguous
+ffffffc0080f411c T dma_mmap_noncontiguous
+ffffffc0080f41f4 T dma_pci_p2pdma_supported
+ffffffc0080f4220 T dma_set_mask
+ffffffc0080f42bc T dma_set_coherent_mask
+ffffffc0080f434c T dma_max_mapping_size
+ffffffc0080f43b0 T dma_opt_mapping_size
+ffffffc0080f4470 T dma_need_sync
+ffffffc0080f44c8 T dma_get_merge_boundary
+ffffffc0080f4524 T dma_direct_get_required_mask
+ffffffc0080f45ac T dma_direct_alloc
+ffffffc0080f4974 t __dma_direct_alloc_pages
+ffffffc0080f4c88 T dma_direct_free
+ffffffc0080f4da4 T dma_direct_alloc_pages
+ffffffc0080f4e80 T dma_direct_free_pages
+ffffffc0080f4f2c T dma_direct_sync_sg_for_device
+ffffffc0080f5044 T dma_direct_sync_sg_for_cpu
+ffffffc0080f5158 T dma_direct_unmap_sg
+ffffffc0080f5324 T dma_direct_map_sg
+ffffffc0080f5578 T dma_direct_map_resource
+ffffffc0080f5654 T dma_direct_get_sgtable
+ffffffc0080f5728 T dma_direct_can_mmap
+ffffffc0080f573c T dma_direct_mmap
+ffffffc0080f588c T dma_direct_supported
+ffffffc0080f5928 T dma_direct_max_mapping_size
+ffffffc0080f59bc T dma_direct_need_sync
+ffffffc0080f5a54 T dma_direct_set_offset
+ffffffc0080f5b04 t dma_coherent_ok
+ffffffc0080f5b90 T dma_common_get_sgtable
+ffffffc0080f5c48 T dma_common_mmap
+ffffffc0080f5dac T dma_common_alloc_pages
+ffffffc0080f5ed8 T dma_common_free_pages
+ffffffc0080f5f6c t dma_dummy_mmap
+ffffffc0080f5f80 t dma_dummy_map_page
+ffffffc0080f5f94 t dma_dummy_map_sg
+ffffffc0080f5fa8 t dma_dummy_supported
+ffffffc0080f5fbc T dma_declare_coherent_memory
+ffffffc0080f6074 t dma_init_coherent_memory
+ffffffc0080f61a8 T dma_release_coherent_memory
+ffffffc0080f620c T dma_alloc_from_dev_coherent
+ffffffc0080f635c T dma_release_from_dev_coherent
+ffffffc0080f6408 T dma_mmap_from_dev_coherent
+ffffffc0080f64e0 t rmem_dma_device_init
+ffffffc0080f6558 t rmem_dma_device_release
+ffffffc0080f6574 T __traceiter_swiotlb_bounced
+ffffffc0080f660c t trace_event_raw_event_swiotlb_bounced
+ffffffc0080f675c t perf_trace_swiotlb_bounced
+ffffffc0080f691c T swiotlb_max_segment
+ffffffc0080f6944 T swiotlb_size_or_default
+ffffffc0080f6960 T swiotlb_print_info
+ffffffc0080f69bc t swiotlb_adjust_nareas
+ffffffc0080f6ac0 T swiotlb_init_late
+ffffffc0080f6f78 T swiotlb_tbl_map_single
+ffffffc0080f7198 t swiotlb_find_slots
+ffffffc0080f7540 t swiotlb_bounce
+ffffffc0080f7724 T swiotlb_tbl_unmap_single
+ffffffc0080f7780 t swiotlb_release_slots
+ffffffc0080f7910 T swiotlb_sync_single_for_device
+ffffffc0080f7958 T swiotlb_sync_single_for_cpu
+ffffffc0080f79a0 T swiotlb_map
+ffffffc0080f7c70 T swiotlb_max_mapping_size
+ffffffc0080f7cb8 T is_swiotlb_active
+ffffffc0080f7ce8 T swiotlb_alloc
+ffffffc0080f7d6c T swiotlb_free
+ffffffc0080f7ddc t trace_raw_output_swiotlb_bounced
+ffffffc0080f7e78 t fops_io_tlb_used_open
+ffffffc0080f7eb8 t io_tlb_used_get
+ffffffc0080f7f54 t rmem_swiotlb_device_init
+ffffffc0080f818c t rmem_swiotlb_device_release
+ffffffc0080f81a8 T dma_alloc_from_pool
+ffffffc0080f83a4 T dma_free_from_pool
+ffffffc0080f8474 t atomic_pool_work_fn
+ffffffc0080f8560 t atomic_pool_expand
+ffffffc0080f8778 T dma_common_find_pages
+ffffffc0080f87c0 T dma_common_pages_remap
+ffffffc0080f8820 T dma_common_contiguous_remap
+ffffffc0080f8920 T dma_common_free_remap
+ffffffc0080f8988 T __traceiter_module_load
+ffffffc0080f8a08 T __traceiter_module_free
+ffffffc0080f8a88 T __traceiter_module_request
+ffffffc0080f8b20 t trace_event_raw_event_module_load
+ffffffc0080f8c1c t perf_trace_module_load
+ffffffc0080f8d88 t trace_event_raw_event_module_free
+ffffffc0080f8e80 t perf_trace_module_free
+ffffffc0080f8fdc t trace_event_raw_event_module_request
+ffffffc0080f90ec t perf_trace_module_request
+ffffffc0080f9268 T register_module_notifier
+ffffffc0080f92a0 T unregister_module_notifier
+ffffffc0080f92d8 T __module_put_and_kthread_exit
+ffffffc0080f92f8 T cmp_name
+ffffffc0080f932c T find_symbol
+ffffffc0080f952c T find_module_all
+ffffffc0080f95f4 T find_module
+ffffffc0080f96ac T __is_module_percpu_address
+ffffffc0080f9864 T is_module_percpu_address
+ffffffc0080f9898 T module_flags_taint
+ffffffc0080f9908 t store_uevent
+ffffffc0080f9958 T try_to_force_load
+ffffffc0080f996c W module_memfree
+ffffffc0080f99d8 W module_arch_cleanup
+ffffffc0080f99e8 W module_arch_freeing_init
+ffffffc0080f99f8 T __symbol_get
+ffffffc0080f9b20 W arch_mod_section_prepend
+ffffffc0080f9b34 T module_get_offset
+ffffffc0080f9ba4 W module_init_section
+ffffffc0080f9be4 W module_exit_section
+ffffffc0080f9c24 T __arm64_sys_init_module
+ffffffc0080f9f14 T __arm64_sys_finit_module
+ffffffc0080fa030 T module_flags
+ffffffc0080fa140 T search_module_extables
+ffffffc0080fa2a0 T __module_address
+ffffffc0080fa34c T is_module_address
+ffffffc0080fa45c T is_module_text_address
+ffffffc0080fa5a0 T __module_text_address
+ffffffc0080fa67c T print_modules
+ffffffc0080fa8dc t trace_raw_output_module_load
+ffffffc0080fa978 t trace_raw_output_module_free
+ffffffc0080fa9f0 t trace_raw_output_module_request
+ffffffc0080faa70 t show_modinfo_version
+ffffffc0080faab8 t setup_modinfo_version
+ffffffc0080faafc t modinfo_version_exists
+ffffffc0080fab18 t free_modinfo_version
+ffffffc0080fab58 t show_modinfo_srcversion
+ffffffc0080faba0 t setup_modinfo_srcversion
+ffffffc0080fabe4 t modinfo_srcversion_exists
+ffffffc0080fac00 t free_modinfo_srcversion
+ffffffc0080fac40 t show_modinfo_scmversion
+ffffffc0080fac88 t setup_modinfo_scmversion
+ffffffc0080faccc t modinfo_scmversion_exists
+ffffffc0080face8 t free_modinfo_scmversion
+ffffffc0080fad28 t show_initstate
+ffffffc0080fad84 t show_coresize
+ffffffc0080fadc8 t show_initsize
+ffffffc0080fae0c t show_taint
+ffffffc0080fae88 t load_module
+ffffffc0080fc628 t find_module_sections
+ffffffc0080fceac t check_module_license_and_versions
+ffffffc0080fcfd0 t setup_modinfo
+ffffffc0080fd114 t simplify_symbols
+ffffffc0080fd4a8 t apply_relocations
+ffffffc0080fd5b4 t post_relocation
+ffffffc0080fd6ac t flush_module_icache
+ffffffc0080fd708 t complete_formation
+ffffffc0080fd8fc t unknown_module_param_cb
+ffffffc0080fd99c t trace_module_load
+ffffffc0080fda98 t do_init_module
+ffffffc0080fddd4 t free_modinfo
+ffffffc0080fdfdc t finished_loading
+ffffffc0080fe0b4 t resolve_symbol
+ffffffc0080fe418 t do_free_init
+ffffffc0080fe49c T module_check_misalignment
+ffffffc0080fe5c8 T module_enable_x
+ffffffc0080fe638 T module_enable_ro
+ffffffc0080fe754 T module_enable_nx
+ffffffc0080fe814 T module_enforce_rwx_sections
+ffffffc0080fe898 T mod_tree_insert
+ffffffc0080fe8e8 t __mod_tree_insert
+ffffffc0080fea04 T mod_tree_remove_init
+ffffffc0080fea88 T mod_tree_remove
+ffffffc0080feb58 T mod_find
+ffffffc0080fec08 T layout_symtab
+ffffffc0080fee24 T add_kallsyms
+ffffffc0080ff138 T init_build_id
+ffffffc0080ff148 W dereference_module_function_descriptor
+ffffffc0080ff15c T module_address_lookup
+ffffffc0080ff248 t find_kallsyms_symbol
+ffffffc0080ff3f4 T lookup_module_symbol_name
+ffffffc0080ff54c T lookup_module_symbol_attrs
+ffffffc0080ff6cc T module_get_kallsym
+ffffffc0080ff8bc T find_kallsyms_symbol_value
+ffffffc0080ff950 T module_kallsyms_lookup_name
+ffffffc0080ffaf0 t modules_open
+ffffffc0080ffb64 t m_start
+ffffffc0080ffbb4 t m_start
+ffffffc0080ffe00 t m_stop
+ffffffc0080ffe34 t m_stop
+ffffffc0080fff04 t m_next
+ffffffc0080fff3c t m_next
+ffffffc0080fffac t m_show
+ffffffc0081000fc T mod_sysfs_setup
+ffffffc008100820 T mod_sysfs_teardown
+ffffffc0081009d8 T init_param_lock
+ffffffc008100a18 t module_sect_read
+ffffffc008100ae8 t module_notes_read
+ffffffc008100b34 T freezing_slow_path
+ffffffc008100b90 T frozen
+ffffffc008100bb0 T __refrigerator
+ffffffc008100d4c T freeze_task
+ffffffc008100e98 T __thaw_task
+ffffffc008100fac t __set_task_special
+ffffffc008100fe4 T set_freezable
+ffffffc00810108c t __set_task_frozen
+ffffffc008101138 T profile_setup
+ffffffc0081012f0 T profile_task_exit
+ffffffc00810132c T profile_munmap
+ffffffc008101368 T profile_event_register
+ffffffc0081013bc T profile_event_unregister
+ffffffc008101410 T profile_hits
+ffffffc008101744 T profile_tick
+ffffffc0081017ec T create_prof_cpu_mask
+ffffffc008101830 W setup_profiling_timer
+ffffffc008101844 t profile_prepare_cpu
+ffffffc008101980 t profile_dead_cpu
+ffffffc008101a90 t profile_online_cpu
+ffffffc008101af0 t prof_cpu_mask_proc_open
+ffffffc008101b2c t prof_cpu_mask_proc_write
+ffffffc008101bfc t prof_cpu_mask_proc_show
+ffffffc008101c44 t read_profile
+ffffffc008102194 t write_profile
+ffffffc0081024ac t __profile_flip_buffers
+ffffffc008102500 T stack_trace_print
+ffffffc008102578 T stack_trace_snprint
+ffffffc008102650 T stack_trace_save
+ffffffc0081026d0 t stack_trace_consume_entry
+ffffffc008102734 T stack_trace_save_tsk
+ffffffc008102870 t stack_trace_consume_entry_nosched
+ffffffc00810290c T stack_trace_save_regs
+ffffffc00810298c T filter_irq_stacks
+ffffffc008102a0c T __arm64_sys_gettimeofday
+ffffffc008102e64 T do_sys_settimeofday64
+ffffffc008102f48 T __arm64_sys_settimeofday
+ffffffc008103478 T __arm64_sys_adjtimex
+ffffffc0081037ac T jiffies_to_msecs
+ffffffc0081037c0 T jiffies_to_usecs
+ffffffc0081037d8 T mktime64
+ffffffc008103878 T ns_to_kernel_old_timeval
+ffffffc008103920 T ns_to_timespec64
+ffffffc0081039bc T set_normalized_timespec64
+ffffffc008103a60 T __msecs_to_jiffies
+ffffffc008103a88 T __usecs_to_jiffies
+ffffffc008103ac4 T timespec64_to_jiffies
+ffffffc008103b18 T jiffies_to_timespec64
+ffffffc008103b60 T jiffies_to_clock_t
+ffffffc008103b94 T clock_t_to_jiffies
+ffffffc008103be4 T jiffies_64_to_clock_t
+ffffffc008103c18 T nsec_to_clock_t
+ffffffc008103c40 T jiffies64_to_nsecs
+ffffffc008103c5c T jiffies64_to_msecs
+ffffffc008103c70 T nsecs_to_jiffies64
+ffffffc008103c98 T nsecs_to_jiffies
+ffffffc008103cc0 T timespec64_add_safe
+ffffffc008103d84 T get_timespec64
+ffffffc008103f58 T put_timespec64
+ffffffc008104100 T get_old_timespec32
+ffffffc008104128 t __get_old_timespec32.llvm.1936587174729200340
+ffffffc0081042fc T put_old_timespec32
+ffffffc008104324 t __put_old_timespec32.llvm.1936587174729200340
+ffffffc0081044cc T get_itimerspec64
+ffffffc008104518 T put_itimerspec64
+ffffffc008104564 T get_old_itimerspec32
+ffffffc0081045c8 T put_old_itimerspec32
+ffffffc00810462c T __traceiter_timer_init
+ffffffc0081046ac T __traceiter_timer_start
+ffffffc008104744 T __traceiter_timer_expire_entry
+ffffffc0081047d4 T __traceiter_timer_expire_exit
+ffffffc008104854 T __traceiter_timer_cancel
+ffffffc0081048d4 T __traceiter_hrtimer_init
+ffffffc00810496c T __traceiter_hrtimer_start
+ffffffc0081049fc T __traceiter_hrtimer_expire_entry
+ffffffc008104a8c T __traceiter_hrtimer_expire_exit
+ffffffc008104b0c T __traceiter_hrtimer_cancel
+ffffffc008104b8c T __traceiter_itimer_state
+ffffffc008104c24 T __traceiter_itimer_expire
+ffffffc008104cbc T __traceiter_tick_stop
+ffffffc008104d4c t trace_event_raw_event_timer_class
+ffffffc008104e04 t perf_trace_timer_class
+ffffffc008104f10 t trace_event_raw_event_timer_start
+ffffffc008104ff4 t perf_trace_timer_start
+ffffffc008105128 t trace_event_raw_event_timer_expire_entry
+ffffffc0081051f4 t perf_trace_timer_expire_entry
+ffffffc00810531c t trace_event_raw_event_hrtimer_init
+ffffffc0081053ec t perf_trace_hrtimer_init
+ffffffc00810550c t trace_event_raw_event_hrtimer_start
+ffffffc0081055e4 t perf_trace_hrtimer_start
+ffffffc008105718 t trace_event_raw_event_hrtimer_expire_entry
+ffffffc0081057e4 t perf_trace_hrtimer_expire_entry
+ffffffc00810590c t trace_event_raw_event_hrtimer_class
+ffffffc0081059c4 t perf_trace_hrtimer_class
+ffffffc008105ad0 t trace_event_raw_event_itimer_state
+ffffffc008105bc0 t perf_trace_itimer_state
+ffffffc008105d00 t trace_event_raw_event_itimer_expire
+ffffffc008105de4 t perf_trace_itimer_expire
+ffffffc008105f18 t trace_event_raw_event_tick_stop
+ffffffc008105fd4 t perf_trace_tick_stop
+ffffffc0081060ec T timers_update_nohz
+ffffffc00810612c T __round_jiffies
+ffffffc008106194 T __round_jiffies_relative
+ffffffc008106208 T round_jiffies
+ffffffc008106284 T round_jiffies_relative
+ffffffc00810630c T __round_jiffies_up
+ffffffc008106368 T __round_jiffies_up_relative
+ffffffc0081063d0 T round_jiffies_up
+ffffffc008106440 T round_jiffies_up_relative
+ffffffc0081064bc T init_timer_key
+ffffffc00810661c T mod_timer_pending
+ffffffc008106648 t __mod_timer.llvm.4747649932514714841
+ffffffc008106a5c T mod_timer
+ffffffc008106a8c T timer_reduce
+ffffffc008106abc T add_timer
+ffffffc008106b04 T add_timer_on
+ffffffc008106ce8 T del_timer
+ffffffc008106de4 t detach_if_pending
+ffffffc008106f8c T try_to_del_timer_sync
+ffffffc008107088 T del_timer_sync
+ffffffc0081070f4 T get_next_timer_interrupt
+ffffffc008107260 t __next_timer_interrupt
+ffffffc0081073a8 T timer_clear_idle
+ffffffc0081073d0 T update_process_times
+ffffffc008107488 t process_timeout
+ffffffc0081074c0 T timers_prepare_cpu
+ffffffc008107544 T timers_dead_cpu
+ffffffc00810785c t run_timer_softirq
+ffffffc0081078bc T msleep
+ffffffc00810790c T msleep_interruptible
+ffffffc008107978 t trace_raw_output_timer_class
+ffffffc0081079ec t trace_raw_output_timer_start
+ffffffc008107ac8 t trace_raw_output_timer_expire_entry
+ffffffc008107b40 t trace_raw_output_hrtimer_init
+ffffffc008107bf8 t trace_raw_output_hrtimer_start
+ffffffc008107ca8 t trace_raw_output_hrtimer_expire_entry
+ffffffc008107d20 t trace_raw_output_hrtimer_class
+ffffffc008107d94 t trace_raw_output_itimer_state
+ffffffc008107e3c t trace_raw_output_itimer_expire
+ffffffc008107eb4 t trace_raw_output_tick_stop
+ffffffc008107f44 t timer_migration_handler
+ffffffc008108014 t timer_update_keys
+ffffffc0081080a8 t calc_wheel_index
+ffffffc0081081ec t enqueue_timer
+ffffffc0081083a8 t __run_timers
+ffffffc008108704 t call_timer_fn
+ffffffc008108960 t ktime_get_real
+ffffffc008108990 t ktime_get_real
+ffffffc0081089c0 t ktime_get_boottime
+ffffffc0081089f0 t ktime_get_boottime
+ffffffc008108a20 t ktime_get_clocktai
+ffffffc008108a50 T ktime_add_safe
+ffffffc008108a78 T clock_was_set
+ffffffc008108d0c t retrigger_next_event.llvm.16767609905546697516
+ffffffc008108dd0 T clock_was_set_delayed
+ffffffc008108e10 T hrtimers_resume_local
+ffffffc008108e3c T hrtimer_forward
+ffffffc008108ef0 T hrtimer_start_range_ns
+ffffffc008109278 T hrtimer_try_to_cancel
+ffffffc0081093b4 T hrtimer_active
+ffffffc008109444 t remove_hrtimer
+ffffffc0081095f4 T hrtimer_cancel
+ffffffc008109640 T __hrtimer_get_remaining
+ffffffc008109700 T hrtimer_get_next_event
+ffffffc0081098c4 T hrtimer_next_event_without
+ffffffc008109a90 T hrtimer_init
+ffffffc008109c18 T hrtimer_interrupt
+ffffffc008109fc4 t __hrtimer_run_queues
+ffffffc00810a370 t hrtimer_update_next_event
+ffffffc00810a50c T hrtimer_run_queues
+ffffffc00810a650 T hrtimer_sleeper_start_expires
+ffffffc00810a688 T hrtimer_init_sleeper
+ffffffc00810a820 T nanosleep_copyout
+ffffffc00810a878 T hrtimer_nanosleep
+ffffffc00810a98c T __arm64_sys_nanosleep
+ffffffc00810aafc T hrtimers_prepare_cpu
+ffffffc00810abc0 T hrtimers_dead_cpu
+ffffffc00810ae60 t hrtimer_update_softirq_timer
+ffffffc00810b00c t hrtimer_run_softirq
+ffffffc00810b0c0 t clock_was_set_work
+ffffffc00810b0ec t enqueue_hrtimer
+ffffffc00810b1e8 t hrtimer_wakeup
+ffffffc00810b230 T ktime_get_mono_fast_ns
+ffffffc00810b2f0 T ktime_get_raw_fast_ns
+ffffffc00810b3b0 T ktime_get_boot_fast_ns
+ffffffc00810b47c T ktime_get_tai_fast_ns
+ffffffc00810b548 T ktime_get_real_fast_ns
+ffffffc00810b608 T ktime_get_fast_timestamps
+ffffffc00810b6f8 T pvclock_gtod_register_notifier
+ffffffc00810b784 T pvclock_gtod_unregister_notifier
+ffffffc00810b7f8 T ktime_get_real_ts64
+ffffffc00810b954 T ktime_get
+ffffffc00810ba34 T ktime_get_resolution_ns
+ffffffc00810baa4 T ktime_get_with_offset
+ffffffc00810bbac T ktime_get_coarse_with_offset
+ffffffc00810bc48 T ktime_mono_to_any
+ffffffc00810bcc0 T ktime_get_raw
+ffffffc00810bd8c T ktime_get_ts64
+ffffffc00810bef8 T ktime_get_seconds
+ffffffc00810bf24 T ktime_get_real_seconds
+ffffffc00810bf3c T ktime_get_snapshot
+ffffffc00810c070 T get_device_system_crosststamp
+ffffffc00810c3f4 T do_settimeofday64
+ffffffc00810c760 t timespec64_sub
+ffffffc00810c7cc t tk_set_wall_to_mono
+ffffffc00810c8c8 t timekeeping_update
+ffffffc00810cab4 T timekeeping_warp_clock
+ffffffc00810cb34 t timekeeping_inject_offset
+ffffffc00810ced4 T timekeeping_notify
+ffffffc00810cf4c t change_clocksource
+ffffffc00810d15c T ktime_get_raw_ts64
+ffffffc00810d2a4 T timekeeping_valid_for_hres
+ffffffc00810d304 T timekeeping_max_deferment
+ffffffc00810d360 W read_persistent_clock64
+ffffffc00810d370 t tk_setup_internals
+ffffffc00810d4dc T timekeeping_rtc_skipresume
+ffffffc00810d4fc T timekeeping_rtc_skipsuspend
+ffffffc00810d514 T timekeeping_inject_sleeptime64
+ffffffc00810d690 t __timekeeping_inject_sleeptime
+ffffffc00810d8b0 T timekeeping_resume
+ffffffc00810da70 T timekeeping_suspend
+ffffffc00810de94 T update_wall_time
+ffffffc00810dedc t timekeeping_advance.llvm.17293707598839633841
+ffffffc00810e55c T getboottime64
+ffffffc00810e5a8 T ktime_get_coarse_real_ts64
+ffffffc00810e610 T ktime_get_coarse_ts64
+ffffffc00810e69c T do_timer
+ffffffc00810e6d8 T ktime_get_update_offsets_now
+ffffffc00810e82c T random_get_entropy_fallback
+ffffffc00810e8a0 T do_adjtimex
+ffffffc00810ec80 t dummy_clock_read
+ffffffc00810ecc4 T ntp_clear
+ffffffc00810ed78 T ntp_tick_length
+ffffffc00810ed90 T ntp_get_next_leap
+ffffffc00810edf4 T second_overflow
+ffffffc00810f080 T ntp_notify_cmos_timer
+ffffffc00810f0e0 T __do_adjtimex
+ffffffc00810f6e8 t sync_hw_clock
+ffffffc00810f8d4 t sync_timer_callback
+ffffffc00810f918 T clocks_calc_mult_shift
+ffffffc00810f984 T clocksource_mark_unstable
+ffffffc00810f994 T clocksource_start_suspend_timing
+ffffffc00810fa64 T clocksource_stop_suspend_timing
+ffffffc00810fb64 T clocksource_suspend
+ffffffc00810fbdc T clocksource_resume
+ffffffc00810fc54 T clocksource_touch_watchdog
+ffffffc00810fc64 T clocks_calc_max_nsecs
+ffffffc00810fca4 T __clocksource_update_freq_scale
+ffffffc00810febc T __clocksource_register_scale
+ffffffc00811001c T clocksource_change_rating
+ffffffc00811017c T clocksource_unregister
+ffffffc0081101f0 t clocksource_unbind
+ffffffc008110328 T sysfs_get_uname
+ffffffc0081103a4 t __clocksource_select
+ffffffc008110530 t current_clocksource_show
+ffffffc0081105a4 t current_clocksource_store
+ffffffc008110650 t unbind_clocksource_store
+ffffffc00811076c t available_clocksource_show
+ffffffc008110858 T register_refined_jiffies
+ffffffc008110924 t jiffies_read
+ffffffc00811093c T sysrq_timer_list_show
+ffffffc008110ee8 t print_tickdevice
+ffffffc008111120 t SEQ_printf
+ffffffc0081111dc t timer_list_start
+ffffffc0081112b0 t timer_list_stop
+ffffffc0081112c0 t timer_list_next
+ffffffc008111354 t timer_list_show
+ffffffc0081118c8 T time64_to_tm
+ffffffc008111b00 T timecounter_init
+ffffffc008111b84 T timecounter_read
+ffffffc008111c18 T timecounter_cyc2time
+ffffffc008111c7c T __traceiter_alarmtimer_suspend
+ffffffc008111d0c T __traceiter_alarmtimer_fired
+ffffffc008111d9c T __traceiter_alarmtimer_start
+ffffffc008111e2c T __traceiter_alarmtimer_cancel
+ffffffc008111ebc t trace_event_raw_event_alarmtimer_suspend
+ffffffc008111f7c t perf_trace_alarmtimer_suspend
+ffffffc008112098 t trace_event_raw_event_alarm_class
+ffffffc008112164 t perf_trace_alarm_class
+ffffffc00811228c T alarmtimer_get_rtcdev
+ffffffc0081122e4 T alarm_expires_remaining
+ffffffc008112370 T alarm_init
+ffffffc0081123f8 T alarm_start
+ffffffc0081125d0 T alarm_start_relative
+ffffffc008112674 T alarm_restart
+ffffffc008112744 T alarm_try_to_cancel
+ffffffc008112904 T alarm_cancel
+ffffffc008112950 T alarm_forward
+ffffffc0081129e0 T alarm_forward_now
+ffffffc008112ad4 t alarm_clock_getres
+ffffffc008112b54 t alarm_clock_get_timespec
+ffffffc008112c30 t alarm_clock_get_ktime
+ffffffc008112d00 t alarm_timer_create
+ffffffc008112e04 t alarm_timer_nsleep
+ffffffc008113020 t alarm_timer_rearm
+ffffffc008113128 t alarm_timer_forward
+ffffffc0081131b8 t alarm_timer_remaining
+ffffffc0081131d0 t alarm_timer_try_to_cancel
+ffffffc008113200 t alarm_timer_arm
+ffffffc0081132c4 t alarm_timer_wait_running
+ffffffc0081132d8 t trace_raw_output_alarmtimer_suspend
+ffffffc008113378 t trace_raw_output_alarm_class
+ffffffc008113420 t alarmtimer_fired
+ffffffc0081136c4 t alarm_handle_timer
+ffffffc00811384c t alarmtimer_nsleep_wakeup
+ffffffc008113890 t alarmtimer_do_nsleep
+ffffffc008113ab8 t get_boottime_timespec
+ffffffc008113afc t alarmtimer_rtc_add_device
+ffffffc008113c60 t alarmtimer_suspend
+ffffffc008113f74 t alarmtimer_resume
+ffffffc008113fe0 T posixtimer_rearm
+ffffffc0081140d8 t __lock_timer
+ffffffc0081141d0 T posix_timer_event
+ffffffc008114220 T __arm64_sys_timer_create
+ffffffc0081143fc T common_timer_get
+ffffffc008114550 T __arm64_sys_timer_gettime
+ffffffc008114644 T __arm64_sys_timer_getoverrun
+ffffffc0081146dc T common_timer_set
+ffffffc008114814 T __arm64_sys_timer_settime
+ffffffc008114ad0 T common_timer_del
+ffffffc008114b40 T __arm64_sys_timer_delete
+ffffffc008114d18 T exit_itimers
+ffffffc008114ee0 T __arm64_sys_clock_settime
+ffffffc008114ffc T __arm64_sys_clock_gettime
+ffffffc008115114 T do_clock_adjtime
+ffffffc0081151c8 T __arm64_sys_clock_adjtime
+ffffffc008115590 T __arm64_sys_clock_getres
+ffffffc0081156ac T __arm64_sys_clock_nanosleep
+ffffffc008115820 t do_timer_create
+ffffffc008115e84 t k_itimer_rcu_free
+ffffffc008115ebc t posix_get_hrtimer_res
+ffffffc008115ee0 t posix_clock_realtime_set
+ffffffc008115f14 t posix_get_realtime_timespec
+ffffffc008115f48 t posix_get_realtime_ktime
+ffffffc008115f78 t posix_clock_realtime_adj
+ffffffc008115fa8 t common_timer_create
+ffffffc008115fe8 t common_nsleep
+ffffffc00811604c t common_hrtimer_rearm
+ffffffc0081160d8 t common_hrtimer_forward
+ffffffc008116110 t common_hrtimer_remaining
+ffffffc008116128 t common_hrtimer_try_to_cancel
+ffffffc008116158 t common_hrtimer_arm
+ffffffc008116240 t common_timer_wait_running
+ffffffc008116254 t posix_timer_fn
+ffffffc008116360 t posix_get_monotonic_timespec
+ffffffc008116394 t posix_get_monotonic_ktime
+ffffffc0081163c0 t common_nsleep_timens
+ffffffc008116424 t posix_get_monotonic_raw
+ffffffc008116458 t posix_get_coarse_res
+ffffffc0081164a4 t posix_get_realtime_coarse
+ffffffc0081164d8 t posix_get_monotonic_coarse
+ffffffc00811650c t posix_get_boottime_timespec
+ffffffc008116558 t posix_get_boottime_ktime
+ffffffc008116588 t posix_get_tai_timespec
+ffffffc0081165d4 t posix_get_tai_ktime
+ffffffc008116604 T posix_cputimers_group_init
+ffffffc00811664c T update_rlimit_cpu
+ffffffc00811670c T set_process_cpu_timer
+ffffffc0081167c4 T thread_group_sample_cputime
+ffffffc008116818 T posix_cpu_timers_exit
+ffffffc0081168c0 T posix_cpu_timers_exit_group
+ffffffc008116968 T clear_posix_cputimers_work
+ffffffc00811698c t posix_cpu_timers_work
+ffffffc008116dcc T run_posix_cpu_timers
+ffffffc008116ee8 t cpu_clock_sample_group
+ffffffc008117128 t posix_cpu_clock_getres.llvm.2555390852169930619
+ffffffc008117218 t posix_cpu_clock_set.llvm.2555390852169930619
+ffffffc0081172ec t posix_cpu_clock_get.llvm.2555390852169930619
+ffffffc0081174e4 t posix_cpu_timer_create.llvm.2555390852169930619
+ffffffc008117634 t posix_cpu_nsleep.llvm.2555390852169930619
+ffffffc0081176f0 t posix_cpu_timer_set.llvm.2555390852169930619
+ffffffc008117a74 t posix_cpu_timer_del.llvm.2555390852169930619
+ffffffc008117bd0 t posix_cpu_timer_get.llvm.2555390852169930619
+ffffffc008117d70 t posix_cpu_timer_rearm.llvm.2555390852169930619
+ffffffc008117f40 t process_cpu_clock_getres
+ffffffc008117fa0 t process_cpu_clock_get
+ffffffc008117fd0 t process_cpu_timer_create
+ffffffc008118004 t process_cpu_nsleep
+ffffffc008118070 t thread_cpu_clock_getres
+ffffffc0081180cc t thread_cpu_clock_get
+ffffffc008118144 t thread_cpu_timer_create
+ffffffc008118174 t cpu_timer_fire
+ffffffc008118218 t collect_posix_cputimers
+ffffffc0081183f0 t check_cpu_itimer
+ffffffc008118534 t do_cpu_nanosleep
+ffffffc008118714 t posix_cpu_nsleep_restart
+ffffffc008118794 T posix_clock_register
+ffffffc00811884c T posix_clock_unregister
+ffffffc0081188b4 t pc_clock_getres.llvm.13707347257359315228
+ffffffc00811899c t pc_clock_settime.llvm.13707347257359315228
+ffffffc008118a94 t pc_clock_gettime.llvm.13707347257359315228
+ffffffc008118b7c t pc_clock_adjtime.llvm.13707347257359315228
+ffffffc008118c74 t posix_clock_read
+ffffffc008118d38 t posix_clock_poll
+ffffffc008118dec t posix_clock_ioctl
+ffffffc008118ea0 t posix_clock_open
+ffffffc008118f58 t posix_clock_release
+ffffffc008118fe8 T __arm64_sys_getitimer
+ffffffc008119188 T it_real_fn
+ffffffc008119268 T clear_itimer
+ffffffc008119304 t do_setitimer
+ffffffc0081194f8 T __arm64_sys_setitimer
+ffffffc008119778 t put_itimerval
+ffffffc008119950 t set_cpu_itimer
+ffffffc008119b84 T clockevent_delta2ns
+ffffffc008119bec T clockevents_switch_state
+ffffffc008119d34 T clockevents_shutdown
+ffffffc008119db8 T clockevents_tick_resume
+ffffffc008119e0c T clockevents_program_event
+ffffffc00811a034 T clockevents_unbind_device
+ffffffc00811a0e0 T clockevents_register_device
+ffffffc00811a2a0 T clockevents_config_and_register
+ffffffc00811a2e0 t clockevents_config
+ffffffc00811a408 T __clockevents_update_freq
+ffffffc00811a540 T clockevents_update_freq
+ffffffc00811a5d8 T clockevents_handle_noop
+ffffffc00811a5e8 T clockevents_exchange_device
+ffffffc00811a710 T clockevents_suspend
+ffffffc00811a790 T clockevents_resume
+ffffffc00811a810 T tick_offline_cpu
+ffffffc00811a864 T tick_cleanup_dead_cpu
+ffffffc00811a9bc t __clockevents_unbind
+ffffffc00811ab0c t current_device_show
+ffffffc00811abd8 t unbind_device_store
+ffffffc00811ad84 T tick_get_device
+ffffffc00811adbc T tick_is_oneshot_available
+ffffffc00811ae20 T tick_handle_periodic
+ffffffc00811aeec t tick_periodic
+ffffffc00811afe0 T tick_setup_periodic
+ffffffc00811b0e8 T tick_install_replacement
+ffffffc00811b188 t tick_setup_device
+ffffffc00811b294 T tick_check_replacement
+ffffffc00811b3c4 T tick_check_new_device
+ffffffc00811b4c0 T tick_broadcast_oneshot_control
+ffffffc00811b510 T tick_handover_do_timer
+ffffffc00811b57c T tick_shutdown
+ffffffc00811b5fc T tick_suspend_local
+ffffffc00811b63c T tick_resume_local
+ffffffc00811b6b4 T tick_suspend
+ffffffc00811b6f8 T tick_resume
+ffffffc00811b774 T tick_freeze
+ffffffc00811b8ac T tick_unfreeze
+ffffffc00811ba24 T tick_get_broadcast_device
+ffffffc00811ba3c T tick_get_broadcast_mask
+ffffffc00811ba54 T tick_get_wakeup_device
+ffffffc00811ba8c T tick_install_broadcast_device
+ffffffc00811bc88 T tick_broadcast_oneshot_active
+ffffffc00811bca8 T tick_broadcast_switch_to_oneshot
+ffffffc00811bd18 T tick_is_broadcast_device
+ffffffc00811bd3c T tick_broadcast_update_freq
+ffffffc00811bdc0 T tick_device_uses_broadcast
+ffffffc00811c080 t tick_broadcast_setup_oneshot
+ffffffc00811c2d4 T tick_receive_broadcast
+ffffffc00811c34c T tick_broadcast_control
+ffffffc00811c5f8 T tick_set_periodic_handler
+ffffffc00811c624 t tick_handle_periodic_broadcast.llvm.11324597401090441889
+ffffffc00811c724 T tick_broadcast_offline
+ffffffc00811c938 T tick_suspend_broadcast
+ffffffc00811c99c T tick_resume_check_broadcast
+ffffffc00811c9f8 T tick_resume_broadcast
+ffffffc00811cad4 T tick_get_broadcast_oneshot_mask
+ffffffc00811caec T tick_check_broadcast_expired
+ffffffc00811cb2c T tick_check_oneshot_broadcast_this_cpu
+ffffffc00811cbb0 T __tick_broadcast_oneshot_control
+ffffffc00811cfa8 T hotplug_cpu__broadcast_tick_pull
+ffffffc00811d038 T tick_broadcast_oneshot_available
+ffffffc00811d068 t tick_oneshot_wakeup_handler
+ffffffc00811d0c8 t tick_do_broadcast
+ffffffc00811d1f8 t tick_broadcast_set_event
+ffffffc00811d2b0 t tick_handle_oneshot_broadcast
+ffffffc00811d564 T tick_setup_hrtimer_broadcast
+ffffffc00811d5c4 t bc_handler.llvm.733442964656157889
+ffffffc00811d618 t bc_set_next
+ffffffc00811d690 t bc_shutdown
+ffffffc00811d6c8 T sched_clock_read_begin
+ffffffc00811d704 T sched_clock_read_retry
+ffffffc00811d730 T sched_clock
+ffffffc00811d7d8 T sched_clock_register
+ffffffc00811da88 t jiffy_sched_clock_read
+ffffffc00811daac t sched_clock_poll
+ffffffc00811dbbc T sched_clock_suspend
+ffffffc00811dca8 t suspended_sched_clock_read
+ffffffc00811dcd8 T sched_clock_resume
+ffffffc00811dd54 T tick_program_event
+ffffffc00811ddfc T tick_resume_oneshot
+ffffffc00811de60 T tick_setup_oneshot
+ffffffc00811deb4 T tick_switch_to_oneshot
+ffffffc00811df8c T tick_oneshot_mode_active
+ffffffc00811dff4 T tick_init_highres
+ffffffc00811e028 T tick_get_tick_sched
+ffffffc00811e060 T tick_nohz_tick_stopped
+ffffffc00811e08c T tick_nohz_tick_stopped_cpu
+ffffffc00811e0cc T get_cpu_idle_time_us
+ffffffc00811e1f8 T get_cpu_iowait_time_us
+ffffffc00811e324 T tick_nohz_idle_stop_tick
+ffffffc00811e65c T tick_nohz_idle_retain_tick
+ffffffc00811e6a0 T tick_nohz_idle_enter
+ffffffc00811e73c T tick_nohz_irq_exit
+ffffffc00811e79c T tick_nohz_idle_got_tick
+ffffffc00811e7d4 T tick_nohz_get_next_hrtimer
+ffffffc00811e7fc T tick_nohz_get_sleep_length
+ffffffc00811e92c t tick_nohz_next_event
+ffffffc00811ea88 T tick_nohz_get_idle_calls_cpu
+ffffffc00811eac4 T tick_nohz_get_idle_calls
+ffffffc00811eaec T tick_nohz_idle_restart_tick
+ffffffc00811eb6c t tick_nohz_restart_sched_tick
+ffffffc00811ec1c T tick_nohz_idle_exit
+ffffffc00811ed68 T tick_irq_enter
+ffffffc00811ee78 T tick_setup_sched_timer
+ffffffc00811f028 t tick_sched_timer
+ffffffc00811f1a8 T tick_cancel_sched_timer
+ffffffc00811f248 T tick_clock_notify
+ffffffc00811f314 T tick_oneshot_notify
+ffffffc00811f36c T tick_check_oneshot_change
+ffffffc00811f564 t tick_do_update_jiffies64
+ffffffc00811f694 t tick_nohz_handler
+ffffffc00811f828 T update_vsyscall
+ffffffc00811fa88 T update_vsyscall_tz
+ffffffc00811fab0 T vdso_update_begin
+ffffffc00811fb10 T vdso_update_end
+ffffffc00811fb6c T tk_debug_account_sleep_time
+ffffffc00811fbb8 t tk_debug_sleep_time_open
+ffffffc00811fbf8 t tk_debug_sleep_time_show
+ffffffc00811fcb0 T futex_hash
+ffffffc00811fda0 T futex_setup_timer
+ffffffc00811fe1c T get_futex_key
+ffffffc00812028c t lock_page
+ffffffc008120320 t lock_page
+ffffffc0081203b4 t lock_page
+ffffffc008120448 t lock_page
+ffffffc0081204dc t put_page
+ffffffc008120560 t put_page
+ffffffc0081205e4 t put_page
+ffffffc008120668 t put_page
+ffffffc0081206ec t put_page
+ffffffc008120770 t put_page
+ffffffc0081207f4 t put_page
+ffffffc008120878 t put_page
+ffffffc0081208fc t put_page
+ffffffc008120980 t put_page
+ffffffc008120a04 t put_page
+ffffffc008120a8c T fault_in_user_writeable
+ffffffc008120b50 T futex_top_waiter
+ffffffc008120bd4 T futex_cmpxchg_value_locked
+ffffffc008120d94 T futex_get_value_locked
+ffffffc008120f10 T wait_for_owner_exiting
+ffffffc008120fd8 T __futex_unqueue
+ffffffc008121074 T futex_q_lock
+ffffffc0081211c8 T futex_q_unlock
+ffffffc008121230 T __futex_queue
+ffffffc0081212a0 T futex_unqueue
+ffffffc0081213a0 T futex_unqueue_pi
+ffffffc008121458 T futex_exit_recursive
+ffffffc0081214a8 T futex_exec_release
+ffffffc008121550 T futex_exit_release
+ffffffc0081215f8 t exit_robust_list
+ffffffc0081218c4 t exit_pi_state_list
+ffffffc008121bbc t fetch_robust_entry
+ffffffc008121d20 t handle_futex_death
+ffffffc008121f9c T __arm64_sys_set_robust_list
+ffffffc008121fd4 T __arm64_sys_get_robust_list
+ffffffc0081222dc T do_futex
+ffffffc0081224b4 T __arm64_sys_futex
+ffffffc008122604 T __arm64_sys_futex_waitv
+ffffffc0081229e4 T refill_pi_state_cache
+ffffffc008122a70 T get_pi_state
+ffffffc008122b38 T put_pi_state
+ffffffc008122c74 t pi_state_update_owner
+ffffffc008122d6c T futex_lock_pi_atomic
+ffffffc008123274 T fixup_pi_owner
+ffffffc0081232f0 t fixup_pi_state_owner
+ffffffc00812355c T futex_lock_pi
+ffffffc008123948 T futex_unlock_pi
+ffffffc008123dd4 t handle_exit_race
+ffffffc008123e78 T futex_requeue
+ffffffc008124874 t requeue_futex
+ffffffc008124954 t requeue_pi_wake_futex
+ffffffc008124a44 t futex_requeue_pi_complete
+ffffffc008124b04 T futex_wait_requeue_pi
+ffffffc008124f7c T futex_wake_mark
+ffffffc008125054 T futex_wake
+ffffffc0081251e8 T futex_wake_op
+ffffffc008125d44 T futex_wait_queue
+ffffffc008125df8 T futex_wait_multiple
+ffffffc008126208 T futex_wait_setup
+ffffffc00812645c T futex_wait
+ffffffc0081266bc t futex_wait_restart
+ffffffc008126750 T smpcfd_prepare_cpu
+ffffffc008126800 T smpcfd_dead_cpu
+ffffffc008126854 T smpcfd_dying_cpu
+ffffffc008126888 t __flush_smp_call_function_queue.llvm.18400870516101032833
+ffffffc008126b18 T __smp_call_single_queue
+ffffffc008126b84 T generic_smp_call_function_single_interrupt
+ffffffc008126bb4 T flush_smp_call_function_queue
+ffffffc008126c68 T smp_call_function_single
+ffffffc008126e6c t generic_exec_single
+ffffffc008126fc4 T smp_call_function_single_async
+ffffffc008127068 T smp_call_function_any
+ffffffc0081271b4 T smp_call_function_many
+ffffffc0081271e4 t smp_call_function_many_cond.llvm.18400870516101032833
+ffffffc008127638 T smp_call_function
+ffffffc0081276cc W arch_disable_smp_support
+ffffffc0081276dc T on_each_cpu_cond_mask
+ffffffc008127768 T kick_all_cpus_sync
+ffffffc0081277fc t do_nothing
+ffffffc00812780c T wake_up_all_idle_cpus
+ffffffc00812790c T smp_call_on_cpu
+ffffffc008127a4c t smp_call_on_cpu_callback
+ffffffc008127ab0 T kallsyms_lookup_name
+ffffffc008127cc0 T kallsyms_on_each_symbol
+ffffffc008127eb0 T kallsyms_lookup_size_offset
+ffffffc008127fa4 t get_symbol_pos
+ffffffc0081280e0 T kallsyms_lookup
+ffffffc008128110 t kallsyms_lookup_buildid.llvm.11451031098803844793
+ffffffc008128324 T lookup_symbol_name
+ffffffc0081285ac T lookup_symbol_attrs
+ffffffc0081287a0 T sprint_symbol
+ffffffc0081287d0 t __sprint_symbol.llvm.11451031098803844793
+ffffffc008128900 T sprint_symbol_build_id
+ffffffc008128934 T sprint_symbol_no_offset
+ffffffc008128968 T sprint_backtrace
+ffffffc00812899c T sprint_backtrace_build_id
+ffffffc0081289d0 W arch_get_kallsym
+ffffffc0081289e4 T kallsyms_show_value
+ffffffc008128a54 t kallsyms_open
+ffffffc008128b20 t s_start
+ffffffc008128b70 t s_start
+ffffffc008128e9c t s_start
+ffffffc008128f2c t s_start
+ffffffc008128f88 t s_stop
+ffffffc008128f98 t s_stop
+ffffffc008129020 t s_stop
+ffffffc008129060 t s_next
+ffffffc0081290b0 t s_next
+ffffffc008129250 t s_next
+ffffffc008129294 t s_next
+ffffffc0081292cc t s_show
+ffffffc008129384 t s_show
+ffffffc008129474 t s_show
+ffffffc008129674 t update_iter
+ffffffc008129980 T append_elf_note
+ffffffc008129a2c T final_note
+ffffffc008129a44 T crash_update_vmcoreinfo_safecopy
+ffffffc008129a9c T crash_save_vmcoreinfo
+ffffffc008129b68 T vmcoreinfo_append_str
+ffffffc008129c68 W paddr_vmcoreinfo_note
+ffffffc008129cb0 T kexec_should_crash
+ffffffc008129d3c T kexec_crash_loaded
+ffffffc008129d5c T sanity_check_segment_list
+ffffffc008129f20 T do_kimage_alloc_init
+ffffffc008129fa0 T kimage_is_destination_range
+ffffffc00812a00c T kimage_free_page_list
+ffffffc00812a0f4 T kimage_alloc_control_pages
+ffffffc00812a4ac T kimage_crash_copy_vmcoreinfo
+ffffffc00812a580 T kimage_terminate
+ffffffc00812a5ac T kimage_free
+ffffffc00812a9c4 T kimage_load_segment
+ffffffc00812b07c T __crash_kexec
+ffffffc00812b200 T crash_kexec
+ffffffc00812b400 T crash_get_memory_size
+ffffffc00812b494 T crash_shrink_memory
+ffffffc00812b6b0 T crash_save_cpu
+ffffffc00812b7a8 T kernel_kexec
+ffffffc00812b8c4 t kimage_alloc_page
+ffffffc00812bb9c T kexec_image_probe_default
+ffffffc00812bbec T kexec_image_load_default
+ffffffc00812bc60 T kexec_image_post_load_cleanup_default
+ffffffc00812bcc0 T kimage_file_post_load_cleanup
+ffffffc00812bd44 T __arm64_sys_kexec_file_load
+ffffffc00812c224 T kexec_locate_mem_hole
+ffffffc00812c3a4 t locate_mem_hole_callback
+ffffffc00812c518 T kexec_add_buffer
+ffffffc00812c5fc T crash_exclude_mem_range
+ffffffc00812c778 T crash_prepare_elf64_headers
+ffffffc00812cc68 T print_stop_info
+ffffffc00812cce8 T stop_one_cpu
+ffffffc00812cdbc t cpu_stop_queue_work
+ffffffc00812cf64 W stop_machine_yield
+ffffffc00812cf78 T stop_two_cpus
+ffffffc00812d290 t multi_cpu_stop
+ffffffc00812d458 T stop_one_cpu_nowait
+ffffffc00812d4ac T stop_machine_park
+ffffffc00812d504 T stop_machine_unpark
+ffffffc00812d560 T stop_machine_cpuslocked
+ffffffc00812d700 T stop_machine
+ffffffc00812d764 T stop_machine_from_inactive_cpu
+ffffffc00812d8f8 t queue_stop_cpus_work
+ffffffc00812da58 t cpu_stop_should_run
+ffffffc00812dadc t cpu_stopper_thread
+ffffffc00812dcb0 t cpu_stop_create
+ffffffc00812dd00 t cpu_stop_park
+ffffffc00812dd54 T auditd_test_task
+ffffffc00812ddc4 T audit_ctl_lock
+ffffffc00812de0c T audit_ctl_unlock
+ffffffc00812de44 T audit_panic
+ffffffc00812decc T audit_log_lost
+ffffffc00812e03c T audit_send_list_thread
+ffffffc00812e11c T audit_make_reply
+ffffffc00812e220 T audit_serial
+ffffffc00812e274 T audit_log_start
+ffffffc00812e684 T audit_log_format
+ffffffc00812e718 t audit_log_vformat
+ffffffc00812e934 T audit_log_n_hex
+ffffffc00812ea9c T audit_log_n_string
+ffffffc00812ebc0 T audit_string_contains_control
+ffffffc00812ec40 T audit_log_n_untrustedstring
+ffffffc00812ecc8 T audit_log_untrustedstring
+ffffffc00812ed7c T audit_log_d_path
+ffffffc00812eed8 T audit_log_session_info
+ffffffc00812ef18 T audit_log_key
+ffffffc00812eff0 T audit_log_task_context
+ffffffc00812f108 T audit_log_d_path_exe
+ffffffc00812f180 T audit_get_tty
+ffffffc00812f23c T audit_put_tty
+ffffffc00812f268 T audit_log_task_info
+ffffffc00812f4f4 T audit_log_path_denied
+ffffffc00812f58c T audit_log_end
+ffffffc00812f6a0 T audit_set_loginuid
+ffffffc00812f928 T audit_signal_info
+ffffffc00812fa04 T audit_log
+ffffffc00812fab8 t kauditd_thread
+ffffffc00812fe68 t audit_receive
+ffffffc008131398 t audit_multicast_bind
+ffffffc0081313f4 t audit_multicast_unbind
+ffffffc00813142c t audit_send_reply
+ffffffc008131590 t audit_log_config_change
+ffffffc008131660 t auditd_reset
+ffffffc008131718 t audit_send_reply_thread
+ffffffc0081317d4 t auditd_conn_free
+ffffffc008131818 t kauditd_hold_skb
+ffffffc00813191c t audit_log_multicast
+ffffffc008131ba0 t kauditd_send_queue
+ffffffc008131de8 t kauditd_send_multicast_skb
+ffffffc008131e90 t kauditd_retry_skb
+ffffffc008131f4c T audit_free_rule_rcu
+ffffffc008132020 T audit_unpack_string
+ffffffc0081320e0 T audit_match_class
+ffffffc008132144 T audit_dupe_rule
+ffffffc008132404 T audit_del_rule
+ffffffc008132694 T audit_rule_change
+ffffffc008132bc8 t audit_data_to_entry
+ffffffc0081334bc t audit_log_rule_change
+ffffffc008133574 T audit_list_rules_send
+ffffffc0081338fc T audit_comparator
+ffffffc0081339c8 T audit_uid_comparator
+ffffffc008133a78 T audit_gid_comparator
+ffffffc008133b28 T parent_len
+ffffffc008133bb0 T audit_compare_dname_path
+ffffffc008133c8c T audit_filter
+ffffffc00813414c T audit_update_lsm_rules
+ffffffc008134364 t audit_compare_rule
+ffffffc008134544 T audit_filter_inodes
+ffffffc00813466c T audit_alloc
+ffffffc008134774 t audit_filter_task
+ffffffc008134858 t audit_alloc_context
+ffffffc0081348d8 T __audit_free
+ffffffc0081349fc t audit_filter_syscall
+ffffffc008134af0 t audit_log_exit
+ffffffc008136068 t audit_filter_uring
+ffffffc00813615c t audit_log_uring
+ffffffc0081362a0 T __audit_uring_entry
+ffffffc008136324 T __audit_uring_exit
+ffffffc008136444 t audit_reset_context
+ffffffc008136694 T __audit_syscall_entry
+ffffffc0081367bc T __audit_syscall_exit
+ffffffc00813689c T __audit_reusename
+ffffffc0081368fc T __audit_getname
+ffffffc008136968 t audit_alloc_name
+ffffffc008136a98 T __audit_inode
+ffffffc008136ec0 T __audit_file
+ffffffc008136ef8 T __audit_inode_child
+ffffffc00813735c T auditsc_get_stamp
+ffffffc0081373f8 T __audit_mq_open
+ffffffc00813745c T __audit_mq_sendrecv
+ffffffc0081374a0 T __audit_mq_notify
+ffffffc0081374d8 T __audit_mq_getsetattr
+ffffffc00813752c T __audit_ipc_obj
+ffffffc008137590 T __audit_ipc_set_perm
+ffffffc0081375c0 T __audit_bprm
+ffffffc0081375e8 T __audit_socketcall
+ffffffc008137650 T __audit_fd_pair
+ffffffc008137670 T __audit_sockaddr
+ffffffc008137700 T __audit_ptrace
+ffffffc008137794 T audit_signal_info_syscall
+ffffffc008137958 T __audit_log_bprm_fcaps
+ffffffc008137a88 T __audit_log_capset
+ffffffc008137ad4 T __audit_mmap_fd
+ffffffc008137afc T __audit_openat2_how
+ffffffc008137b34 T __audit_log_kern_module
+ffffffc008137b90 T __audit_fanotify
+ffffffc008137bd8 T __audit_tk_injoffset
+ffffffc008137c08 T __audit_ntp_log
+ffffffc008137cb8 T __audit_log_nfcfg
+ffffffc008137df0 T audit_core_dumps
+ffffffc008137f08 T audit_seccomp
+ffffffc008138038 T audit_seccomp_actions_logged
+ffffffc0081380c4 T audit_killed_trees
+ffffffc0081380f4 t audit_filter_rules
+ffffffc008139018 t audit_log_pid_context
+ffffffc00813915c t unroll_tree_refs
+ffffffc008139250 t grow_tree_refs
+ffffffc0081392d0 T audit_get_watch
+ffffffc008139344 T audit_put_watch
+ffffffc00813940c T audit_watch_path
+ffffffc008139420 T audit_watch_compare
+ffffffc008139458 T audit_to_watch
+ffffffc008139514 t audit_init_watch
+ffffffc00813958c T audit_add_watch
+ffffffc008139aac T audit_remove_watch_rule
+ffffffc008139b6c t audit_remove_watch
+ffffffc008139c74 T audit_dupe_exe
+ffffffc008139d08 T audit_exe_compare
+ffffffc008139d70 t audit_watch_handle_event
+ffffffc00813a00c t audit_watch_free_mark
+ffffffc00813a050 t audit_update_watch
+ffffffc00813a490 T audit_mark_path
+ffffffc00813a4a4 T audit_mark_compare
+ffffffc00813a4dc T audit_alloc_mark
+ffffffc00813a65c T audit_remove_mark
+ffffffc00813a6a8 T audit_remove_mark_rule
+ffffffc00813a6f8 t audit_mark_handle_event
+ffffffc00813a834 t audit_fsnotify_free_mark
+ffffffc00813a878 T audit_tree_path
+ffffffc00813a88c T audit_put_chunk
+ffffffc00813a9b0 T audit_tree_lookup
+ffffffc00813aa48 T audit_tree_match
+ffffffc00813aab4 T audit_remove_tree_rule
+ffffffc00813ac08 T audit_trim_trees
+ffffffc00813aefc t compare_root
+ffffffc00813af1c t trim_marked
+ffffffc00813b0f8 T audit_make_tree
+ffffffc00813b194 t alloc_tree
+ffffffc00813b238 T audit_put_tree
+ffffffc00813b2c4 T audit_add_tree_rule
+ffffffc00813b74c t audit_launch_prune
+ffffffc00813b7ec t tag_mount
+ffffffc00813bf50 T audit_tag_tree
+ffffffc00813c55c T audit_kill_trees
+ffffffc00813c6bc t kill_rules
+ffffffc00813c858 t prune_tree_chunks
+ffffffc00813ccd0 t replace_chunk
+ffffffc00813ceb0 t __put_chunk
+ffffffc00813cee0 t prune_tree_thread
+ffffffc00813d038 t audit_tree_handle_event
+ffffffc00813d04c t audit_tree_freeing_mark
+ffffffc00813d368 t audit_tree_destroy_watch
+ffffffc00813d3a0 T reset_hung_task_detector
+ffffffc00813d3bc t hungtask_pm_notify
+ffffffc00813d3f0 t watchdog
+ffffffc00813d97c t hung_task_panic
+ffffffc00813d99c t proc_dohung_task_timeout_secs
+ffffffc00813da00 W watchdog_nmi_enable
+ffffffc00813da14 W watchdog_nmi_disable
+ffffffc00813da24 W watchdog_nmi_stop
+ffffffc00813da34 W watchdog_nmi_start
+ffffffc00813da44 T touch_softlockup_watchdog_sched
+ffffffc00813da6c T touch_softlockup_watchdog
+ffffffc00813dac4 T touch_all_softlockup_watchdogs
+ffffffc00813db6c T touch_softlockup_watchdog_sync
+ffffffc00813dbac T is_hardlockup
+ffffffc00813dbf0 T lockup_detector_online_cpu
+ffffffc00813dc3c t watchdog_enable
+ffffffc00813dd58 T lockup_detector_offline_cpu
+ffffffc00813de00 T lockup_detector_reconfigure
+ffffffc00813de48 t __lockup_detector_reconfigure
+ffffffc00813e008 T lockup_detector_cleanup
+ffffffc00813e050 T lockup_detector_soft_poweroff
+ffffffc00813e068 T proc_watchdog
+ffffffc00813e0a8 t proc_watchdog_common
+ffffffc00813e1c4 T proc_nmi_watchdog
+ffffffc00813e224 T proc_soft_watchdog
+ffffffc00813e268 T proc_watchdog_thresh
+ffffffc00813e348 T proc_watchdog_cpumask
+ffffffc00813e400 t watchdog_timer_fn
+ffffffc00813e6a0 t softlockup_fn
+ffffffc00813e718 t test_and_set_bit_lock
+ffffffc00813e784 t softlockup_stop_fn
+ffffffc00813e7fc t softlockup_start_fn
+ffffffc00813e840 W arch_seccomp_spec_mitigate
+ffffffc00813e850 T seccomp_filter_release
+ffffffc00813e894 t __seccomp_filter_release
+ffffffc00813e9d4 T get_seccomp_filter
+ffffffc00813eaac T __secure_computing
+ffffffc00813eb64 t __seccomp_filter
+ffffffc00813f338 T prctl_get_seccomp
+ffffffc00813f350 T __arm64_sys_seccomp
+ffffffc00813f38c T prctl_set_seccomp
+ffffffc00813f3e4 t do_seccomp
+ffffffc00813fbec t seccomp_log
+ffffffc00813fc28 t seccomp_assign_mode
+ffffffc00813fcac t init_listener
+ffffffc00813fdb4 t seccomp_attach_filter
+ffffffc008140300 t seccomp_notify_detach
+ffffffc0081403b0 t seccomp_check_filter
+ffffffc008140454 t seccomp_notify_poll
+ffffffc00814054c t seccomp_notify_ioctl
+ffffffc008140fd4 t seccomp_notify_release
+ffffffc0081410f8 t seccomp_actions_logged_handler
+ffffffc00814161c T uts_proc_notify
+ffffffc00814167c t proc_do_uts_string
+ffffffc008141840 T tracepoint_probe_register_prio_may_exist
+ffffffc0081418f8 t tracepoint_add_func
+ffffffc008141cd4 T tracepoint_probe_register_prio
+ffffffc008141d90 T tracepoint_probe_register
+ffffffc008141e40 T tracepoint_probe_unregister
+ffffffc008142274 T trace_module_has_bad_taint
+ffffffc008142298 T register_tracepoint_module_notifier
+ffffffc008142358 T unregister_tracepoint_module_notifier
+ffffffc008142418 T for_each_kernel_tracepoint
+ffffffc0081424b8 T syscall_regfunc
+ffffffc0081425ac T syscall_unregfunc
+ffffffc008142690 t rcu_free_old_probes
+ffffffc0081426d8 t srcu_free_old_probes
+ffffffc008142704 t tp_stub_func
+ffffffc008142714 t tracepoint_module_notify
+ffffffc0081428cc T trace_clock_local
+ffffffc008142950 T trace_clock
+ffffffc00814297c T trace_clock_jiffies
+ffffffc0081429c8 T trace_clock_global
+ffffffc008142b18 T trace_clock_counter
+ffffffc008142b6c T ring_buffer_print_entry_header
+ffffffc008142c58 T ring_buffer_event_length
+ffffffc008142ce0 T ring_buffer_event_data
+ffffffc008142d34 T ring_buffer_print_page_header
+ffffffc008142dec T ring_buffer_event_time_stamp
+ffffffc008142eec T ring_buffer_nr_pages
+ffffffc008142f08 T ring_buffer_nr_dirty_pages
+ffffffc008142f98 T ring_buffer_wake_waiters
+ffffffc0081430a8 t rb_wake_up_waiters
+ffffffc008143118 T ring_buffer_wait
+ffffffc0081433d8 T ring_buffer_empty
+ffffffc008143594 T ring_buffer_empty_cpu
+ffffffc008143720 T ring_buffer_poll_wait
+ffffffc0081438fc T ring_buffer_time_stamp
+ffffffc00814399c T ring_buffer_normalize_time_stamp
+ffffffc0081439ac T __ring_buffer_alloc
+ffffffc008143bf4 t rb_allocate_cpu_buffer
+ffffffc008143e70 t rb_free_cpu_buffer
+ffffffc008143f78 T ring_buffer_alloc_ext
+ffffffc008144014 T ring_buffer_free
+ffffffc0081440b8 T ring_buffer_set_clock
+ffffffc0081440cc T ring_buffer_set_time_stamp_abs
+ffffffc0081440e0 T ring_buffer_time_stamp_abs
+ffffffc0081440f4 T ring_buffer_resize
+ffffffc008144578 t __rb_allocate_pages
+ffffffc00814472c t rb_update_pages
+ffffffc008144b14 t rb_check_pages
+ffffffc008144cb0 T ring_buffer_change_overwrite
+ffffffc008144d1c T ring_buffer_nest_start
+ffffffc008144d6c T ring_buffer_nest_end
+ffffffc008144dec T ring_buffer_unlock_commit
+ffffffc008144fac t rb_commit
+ffffffc0081452c4 T ring_buffer_lock_reserve
+ffffffc008145ce8 T ring_buffer_discard_commit
+ffffffc0081463e0 T ring_buffer_write
+ffffffc008146f9c T ring_buffer_record_disable
+ffffffc008146fe0 T ring_buffer_record_enable
+ffffffc008147030 T ring_buffer_record_off
+ffffffc0081470a0 T ring_buffer_record_on
+ffffffc008147118 T ring_buffer_record_is_on
+ffffffc00814713c T ring_buffer_record_is_set_on
+ffffffc008147160 T ring_buffer_record_disable_cpu
+ffffffc0081471c8 T ring_buffer_record_enable_cpu
+ffffffc008147234 T ring_buffer_oldest_event_ts
+ffffffc0081472e4 t rb_set_head_page
+ffffffc00814746c T ring_buffer_bytes_cpu
+ffffffc0081474c0 T ring_buffer_entries_cpu
+ffffffc008147524 T ring_buffer_overrun_cpu
+ffffffc008147570 T ring_buffer_commit_overrun_cpu
+ffffffc0081475bc T ring_buffer_dropped_events_cpu
+ffffffc008147608 T ring_buffer_read_events_cpu
+ffffffc00814764c T ring_buffer_entries
+ffffffc0081476f4 T ring_buffer_overruns
+ffffffc008147784 T ring_buffer_iter_reset
+ffffffc008147828 T ring_buffer_iter_empty
+ffffffc008147900 T ring_buffer_peek
+ffffffc008147a88 T ring_buffer_iter_peek
+ffffffc008147dd0 t rb_buffer_peek
+ffffffc008147fe8 t rb_advance_reader
+ffffffc00814815c T ring_buffer_iter_dropped
+ffffffc008148180 T ring_buffer_consume
+ffffffc008148348 T ring_buffer_poke
+ffffffc0081484d4 t ring_buffer_update_view
+ffffffc0081487a8 T ring_buffer_read_prepare
+ffffffc0081488e4 T ring_buffer_read_prepare_sync
+ffffffc008148910 T ring_buffer_read_start
+ffffffc008148a24 T ring_buffer_read_finish
+ffffffc008148acc T ring_buffer_iter_advance
+ffffffc008148b2c t rb_advance_iter
+ffffffc008148c70 T ring_buffer_size
+ffffffc008148cbc T ring_buffer_reset_cpu
+ffffffc008148df4 t reset_disabled_cpu_buffer
+ffffffc008149008 T ring_buffer_reset_online_cpus
+ffffffc0081491cc T ring_buffer_reset
+ffffffc008149370 T ring_buffer_alloc_read_page
+ffffffc0081494dc T ring_buffer_free_read_page
+ffffffc008149628 T ring_buffer_read_page
+ffffffc008149a20 t rb_get_reader_page
+ffffffc008149e1c T trace_rb_cpu_prepare
+ffffffc008149f60 T trace_buffer_pack_size
+ffffffc008149fec T trace_buffer_pack
+ffffffc00814a1d8 t update_pages_handler
+ffffffc00814a218 t rb_move_tail
+ffffffc00814ad00 t rb_add_timestamp
+ffffffc00814ae34 t rb_check_timestamp
+ffffffc00814aea0 t rb_iter_head_event
+ffffffc00814aff4 t rb_swap_reader_page_ext
+ffffffc00814b198 T ns2usecs
+ffffffc00814b1c8 T register_ftrace_export
+ffffffc00814b2a0 T unregister_ftrace_export
+ffffffc00814b374 T trace_array_get
+ffffffc00814b3fc T trace_array_put
+ffffffc00814b468 T tracing_check_open_get_tr
+ffffffc00814b524 T call_filter_check_discard
+ffffffc00814b584 t __trace_event_discard_commit
+ffffffc00814b6dc T trace_find_filtered_pid
+ffffffc00814b70c T trace_ignore_this_task
+ffffffc00814b778 T trace_filter_add_remove_task
+ffffffc00814b7e4 T trace_pid_next
+ffffffc00814b85c T trace_pid_start
+ffffffc00814b918 T trace_pid_show
+ffffffc00814b954 T trace_pid_write
+ffffffc00814bb58 T trace_parser_get_init
+ffffffc00814bbbc T trace_parser_put
+ffffffc00814bbfc T trace_get_user
+ffffffc00814c124 T ftrace_now
+ffffffc00814c164 T tracing_is_enabled
+ffffffc00814c188 T tracer_tracing_on
+ffffffc00814c1d0 T tracing_on
+ffffffc00814c214 T __trace_array_puts
+ffffffc00814c588 T __trace_puts
+ffffffc00814c5c8 T __trace_bputs
+ffffffc00814c8c0 T tracing_snapshot
+ffffffc00814c910 T tracing_snapshot_cond
+ffffffc00814c960 T tracing_alloc_snapshot
+ffffffc00814c9b4 T tracing_snapshot_alloc
+ffffffc00814ca04 T tracing_cond_snapshot_data
+ffffffc00814ca18 T tracing_snapshot_cond_enable
+ffffffc00814ca2c T tracing_snapshot_cond_disable
+ffffffc00814ca40 T tracer_tracing_off
+ffffffc00814ca8c T tracing_off
+ffffffc00814cad4 T disable_trace_on_warning
+ffffffc00814cb4c T trace_array_printk_buf
+ffffffc00814cbf4 T tracer_tracing_is_on
+ffffffc00814cc40 T tracing_is_on
+ffffffc00814cc90 T nsecs_to_usecs
+ffffffc00814ccbc T trace_clock_in_ns
+ffffffc00814cce8 t dummy_set_flag
+ffffffc00814ccf8 t add_tracer_options
+ffffffc00814cf5c T tracing_set_tracer
+ffffffc00814d1b0 T tracing_reset_online_cpus
+ffffffc00814d220 T tracing_reset_all_online_cpus_unlocked
+ffffffc00814d2bc T tracing_reset_all_online_cpus
+ffffffc00814d370 T is_tracing_stopped
+ffffffc00814d388 T tracing_start
+ffffffc00814d498 T tracing_stop
+ffffffc00814d584 T trace_find_cmdline
+ffffffc00814d710 T trace_find_tgid
+ffffffc00814d758 T tracing_record_taskinfo
+ffffffc00814d910 T tracing_record_taskinfo_sched_switch
+ffffffc00814dc18 T tracing_record_cmdline
+ffffffc00814dc48 T tracing_record_tgid
+ffffffc00814dcb4 T trace_handle_return
+ffffffc00814dce8 T tracing_gen_ctx_irq_test
+ffffffc00814dd94 T trace_buffer_lock_reserve
+ffffffc00814de0c T trace_buffered_event_enable
+ffffffc00814dfa0 T trace_buffered_event_disable
+ffffffc00814e158 t disable_trace_buffered_event
+ffffffc00814e1f8 t enable_trace_buffered_event
+ffffffc00814e29c T trace_event_buffer_lock_reserve
+ffffffc00814e524 T tracepoint_printk_sysctl
+ffffffc00814e618 T trace_event_buffer_commit
+ffffffc00814e824 t ftrace_exports
+ffffffc00814e924 T trace_buffer_unlock_commit_regs
+ffffffc00814eaf4 T trace_buffer_unlock_commit_nostack
+ffffffc00814ec74 T trace_function
+ffffffc00814ee90 T __trace_stack
+ffffffc00814ef24 t __ftrace_trace_stack
+ffffffc00814f210 T trace_dump_stack
+ffffffc00814f320 T trace_last_func_repeats
+ffffffc00814f520 T trace_printk_init_buffers
+ffffffc00814f678 T tracing_update_buffers
+ffffffc00814f770 T trace_printk_start_comm
+ffffffc00814f7b0 T trace_vbprintk
+ffffffc00814fc24 T trace_array_vprintk
+ffffffc00814fc90 t __trace_array_vprintk
+ffffffc0081500f0 T trace_array_printk
+ffffffc0081501b4 T trace_array_init_printk
+ffffffc00815026c T trace_vprintk
+ffffffc0081502ec T trace_check_vprintf
+ffffffc00815079c t trace_iter_expand_format
+ffffffc008150814 t show_buffer
+ffffffc008150860 T trace_event_format
+ffffffc0081509ac T trace_find_next_entry
+ffffffc008150ab0 t __find_next_entry
+ffffffc008150d44 T trace_find_next_entry_inc
+ffffffc008150de8 T tracing_iter_reset
+ffffffc008150ef8 T trace_total_entries_cpu
+ffffffc008150f90 T trace_total_entries
+ffffffc008151078 T print_trace_header
+ffffffc008151328 T trace_empty
+ffffffc008151414 T print_trace_line
+ffffffc00815162c t print_hex_fmt
+ffffffc008151774 t print_raw_fmt
+ffffffc00815186c t print_trace_fmt
+ffffffc008151a28 T trace_latency_header
+ffffffc008151aa4 T trace_default_header
+ffffffc008151c70 T tracing_open_generic
+ffffffc008151cd8 T tracing_is_disabled
+ffffffc008151cf8 T tracing_open_generic_tr
+ffffffc008151dc0 T tracing_lseek
+ffffffc008151e08 T tracing_set_cpumask
+ffffffc008152044 T trace_keep_overwrite
+ffffffc008152074 T set_tracer_flag
+ffffffc008152240 T trace_set_options
+ffffffc008152400 T tracer_init
+ffffffc0081524a0 T tracing_resize_ring_buffer
+ffffffc0081525f4 T tracing_set_clock
+ffffffc0081527a0 T tracing_event_time_stamp
+ffffffc008152858 T tracing_set_filter_buffering
+ffffffc0081528d8 t trace_min_max_read
+ffffffc00815299c t trace_min_max_write
+ffffffc008152ad8 T err_pos
+ffffffc008152b2c T tracing_log_err
+ffffffc008152ce8 T trace_create_file
+ffffffc008152d40 T trace_array_find
+ffffffc008152dc0 T trace_array_find_get
+ffffffc008152e64 T trace_array_get_by_name
+ffffffc008152f30 t trace_array_create
+ffffffc008153128 T trace_array_destroy
+ffffffc0081531cc t __remove_instance
+ffffffc0081533d4 T tracing_init_dentry
+ffffffc008153478 t trace_automount
+ffffffc0081534f0 T trace_printk_seq
+ffffffc008153590 T trace_init_global_iter
+ffffffc008153688 T ftrace_dump
+ffffffc008153c54 T trace_parse_run_command
+ffffffc008153f34 t print_event_info
+ffffffc008154060 t trace_options_read
+ffffffc0081540c8 t trace_options_write
+ffffffc008154234 t allocate_trace_buffers
+ffffffc00815433c t init_trace_flags_index
+ffffffc008154398 t trace_array_create_dir
+ffffffc00815443c t init_tracer_tracefs
+ffffffc008154ccc t show_traces_open
+ffffffc008154e00 t show_traces_release
+ffffffc008154e88 t t_start
+ffffffc008154f4c t t_start
+ffffffc008155038 t t_start
+ffffffc0081550ec t t_start
+ffffffc00815513c t t_stop
+ffffffc008155170 t t_stop
+ffffffc0081551a4 t t_stop
+ffffffc0081551d8 t t_stop
+ffffffc00815520c t t_next
+ffffffc00815525c t t_next
+ffffffc008155358 t t_next
+ffffffc0081553b8 t t_next
+ffffffc0081553f0 t t_show
+ffffffc008155454 t t_show
+ffffffc00815557c t t_show
+ffffffc008155620 t tracing_set_trace_read
+ffffffc008155704 t tracing_set_trace_write
+ffffffc00815593c t tracing_cpumask_read
+ffffffc008155a30 t tracing_cpumask_write
+ffffffc008155af8 t tracing_release_generic_tr
+ffffffc008155b68 t tracing_trace_options_write
+ffffffc008155d8c t tracing_trace_options_open
+ffffffc008155ea0 t tracing_single_release_tr
+ffffffc008155f28 t tracing_trace_options_show
+ffffffc00815602c t tracing_write_stub
+ffffffc008156040 t tracing_open
+ffffffc00815664c t tracing_release
+ffffffc008156854 t tracing_read_pipe
+ffffffc008156c28 t tracing_poll_pipe
+ffffffc008156c94 t tracing_open_pipe
+ffffffc008156eb0 t tracing_release_pipe
+ffffffc008156f84 t tracing_splice_read_pipe
+ffffffc0081574cc t tracing_wait_pipe
+ffffffc0081575a4 t tracing_spd_release_pipe
+ffffffc0081575dc t tracing_entries_read
+ffffffc0081577b4 t tracing_entries_write
+ffffffc008157890 t tracing_total_entries_read
+ffffffc008157a1c t tracing_free_buffer_write
+ffffffc008157a3c t tracing_free_buffer_release
+ffffffc008157adc t tracing_mark_write
+ffffffc008157fb4 t tracing_mark_open
+ffffffc008158080 t tracing_mark_raw_write
+ffffffc0081584b0 t tracing_clock_write
+ffffffc0081586dc t tracing_clock_open
+ffffffc0081587f0 t tracing_clock_show
+ffffffc0081589dc t rb_simple_read
+ffffffc008158aa8 t rb_simple_write
+ffffffc008158c48 t tracing_time_stamp_mode_open
+ffffffc008158d5c t tracing_time_stamp_mode_show
+ffffffc008158de0 t buffer_percent_read
+ffffffc008158e90 t buffer_percent_write
+ffffffc008158f4c t trace_options_core_read
+ffffffc008158fb8 t trace_options_core_write
+ffffffc0081590d8 t tracing_err_log_write
+ffffffc0081590ec t tracing_err_log_open
+ffffffc0081592b4 t tracing_err_log_release
+ffffffc008159348 t tracing_err_log_seq_start
+ffffffc008159398 t tracing_err_log_seq_stop
+ffffffc0081593cc t tracing_err_log_seq_next
+ffffffc008159408 t tracing_err_log_seq_show
+ffffffc008159574 t tracing_buffers_read
+ffffffc0081598cc t tracing_buffers_poll
+ffffffc008159938 t tracing_buffers_ioctl
+ffffffc0081599b4 t tracing_buffers_open
+ffffffc008159b58 t tracing_buffers_release
+ffffffc008159c18 t tracing_buffers_splice_read
+ffffffc00815a054 t buffer_spd_release
+ffffffc00815a118 t buffer_pipe_buf_release
+ffffffc00815a1c0 t buffer_pipe_buf_get
+ffffffc00815a25c t tracing_stats_read
+ffffffc00815a510 t tracing_thresh_read
+ffffffc00815a5f0 t tracing_thresh_write
+ffffffc00815a6f4 t tracing_readme_read
+ffffffc00815a73c t tracing_saved_cmdlines_open
+ffffffc00815a7a4 t saved_cmdlines_start
+ffffffc00815a8cc t saved_cmdlines_stop
+ffffffc00815a934 t saved_cmdlines_next
+ffffffc00815a9a0 t saved_cmdlines_show
+ffffffc00815aab8 t tracing_saved_cmdlines_size_read
+ffffffc00815ac40 t tracing_saved_cmdlines_size_write
+ffffffc00815ae84 t tracing_saved_tgids_open
+ffffffc00815aeec t saved_tgids_start
+ffffffc00815af28 t saved_tgids_stop
+ffffffc00815af38 t saved_tgids_next
+ffffffc00815af7c t saved_tgids_show
+ffffffc00815afd4 t trace_module_notify
+ffffffc00815b034 t trace_module_notify
+ffffffc00815b254 t instance_mkdir
+ffffffc00815b310 t instance_rmdir
+ffffffc00815b3c8 t test_can_verify
+ffffffc00815b424 t trace_panic_handler
+ffffffc00815b460 t trace_die_handler
+ffffffc00815b4a0 t test_can_verify_check
+ffffffc00815b574 T trace_print_bputs_msg_only
+ffffffc00815b5d8 T trace_print_bprintk_msg_only
+ffffffc00815b640 T trace_print_printk_msg_only
+ffffffc00815b6a4 T trace_print_flags_seq
+ffffffc00815b7e4 T trace_print_symbols_seq
+ffffffc00815b8e4 T trace_print_bitmask_seq
+ffffffc00815b950 T trace_print_hex_seq
+ffffffc00815ba28 T trace_print_array_seq
+ffffffc00815bca4 T trace_print_hex_dump_seq
+ffffffc00815bd70 T trace_raw_output_prep
+ffffffc00815be1c T trace_event_printf
+ffffffc00815bec4 T trace_output_call
+ffffffc00815bfac T trace_seq_print_sym
+ffffffc00815c094 T seq_print_ip_sym
+ffffffc00815c1cc T trace_print_lat_fmt
+ffffffc00815c360 T trace_find_mark
+ffffffc00815c414 T trace_print_context
+ffffffc00815c5d8 T trace_print_lat_context
+ffffffc00815c8d8 T ftrace_find_event
+ffffffc00815c910 T trace_event_read_lock
+ffffffc00815c944 T trace_event_read_unlock
+ffffffc00815c978 T register_trace_event
+ffffffc00815cbf0 T trace_nop_print
+ffffffc00815cc48 T __unregister_trace_event
+ffffffc00815ccc4 T unregister_trace_event
+ffffffc00815cd58 t trace_fn_trace
+ffffffc00815ce04 t trace_fn_raw
+ffffffc00815ce70 t trace_fn_hex
+ffffffc00815cee8 t trace_fn_bin
+ffffffc00815cf60 t trace_ctx_print
+ffffffc00815cf94 t trace_ctx_raw
+ffffffc00815d030 t trace_ctx_hex
+ffffffc00815d060 t trace_ctxwake_bin
+ffffffc00815d110 t trace_ctxwake_print
+ffffffc00815d208 t trace_ctxwake_hex
+ffffffc00815d328 t trace_wake_print
+ffffffc00815d35c t trace_wake_raw
+ffffffc00815d3ec t trace_wake_hex
+ffffffc00815d41c t trace_stack_print
+ffffffc00815d52c t trace_user_stack_print
+ffffffc00815d74c t trace_bputs_print
+ffffffc00815d7d4 t trace_bputs_raw
+ffffffc00815d84c t trace_bprint_print
+ffffffc00815d8d8 t trace_bprint_raw
+ffffffc00815d954 t trace_print_print
+ffffffc00815d9d4 t trace_print_raw
+ffffffc00815da44 t trace_hwlat_print
+ffffffc00815dadc t trace_hwlat_raw
+ffffffc00815db50 t trace_osnoise_print
+ffffffc00815dc6c t trace_osnoise_raw
+ffffffc00815dcf8 t trace_timerlat_print
+ffffffc00815dd80 t trace_timerlat_raw
+ffffffc00815ddf0 t trace_raw_data
+ffffffc00815dec0 t trace_func_repeats_print
+ffffffc00815e030 t trace_func_repeats_raw
+ffffffc00815e0ac T trace_print_seq
+ffffffc00815e128 T trace_seq_printf
+ffffffc00815e220 T trace_seq_bitmask
+ffffffc00815e2bc T trace_seq_vprintf
+ffffffc00815e38c T trace_seq_bprintf
+ffffffc00815e41c T trace_seq_puts
+ffffffc00815e4c0 T trace_seq_putc
+ffffffc00815e544 T trace_seq_putmem
+ffffffc00815e5c8 T trace_seq_putmem_hex
+ffffffc00815e684 T trace_seq_path
+ffffffc00815e758 T trace_seq_to_user
+ffffffc00815e7ac T trace_seq_hex_dump
+ffffffc00815e87c T register_stat_tracer
+ffffffc00815ea80 T unregister_stat_tracer
+ffffffc00815eb98 t tracing_stat_open
+ffffffc00815ef94 t tracing_stat_release
+ffffffc00815f070 t dummy_cmp
+ffffffc00815f084 t stat_seq_start
+ffffffc00815f110 t stat_seq_stop
+ffffffc00815f144 t stat_seq_next
+ffffffc00815f198 t stat_seq_show
+ffffffc00815f218 T trace_printk_control
+ffffffc00815f230 T __trace_bprintk
+ffffffc00815f2e0 T __ftrace_vbprintk
+ffffffc00815f368 T __trace_printk
+ffffffc00815f410 T __ftrace_vprintk
+ffffffc00815f490 T trace_is_tracepoint_string
+ffffffc00815f4f0 t ftrace_formats_open
+ffffffc00815f540 t module_trace_bprintk_format_notify
+ffffffc00815f6ac T trace_pid_list_is_set
+ffffffc00815f74c T trace_pid_list_set
+ffffffc00815f8b4 T trace_pid_list_clear
+ffffffc00815f9f0 T trace_pid_list_next
+ffffffc00815fb24 T trace_pid_list_first
+ffffffc00815fb58 T trace_pid_list_alloc
+ffffffc00815fdc0 t pid_list_refill_irq
+ffffffc00815ffc4 T trace_pid_list_free
+ffffffc00816008c T tracing_map_update_sum
+ffffffc0081600d0 T tracing_map_read_sum
+ffffffc0081600f4 T tracing_map_set_var
+ffffffc00816011c T tracing_map_var_set
+ffffffc008160134 T tracing_map_read_var
+ffffffc008160154 T tracing_map_read_var_once
+ffffffc00816017c T tracing_map_cmp_string
+ffffffc0081601a8 T tracing_map_cmp_none
+ffffffc0081601bc T tracing_map_cmp_num
+ffffffc008160260 t tracing_map_cmp_s64
+ffffffc008160284 t tracing_map_cmp_u64
+ffffffc0081602a8 t tracing_map_cmp_s32
+ffffffc0081602cc t tracing_map_cmp_u32
+ffffffc0081602f0 t tracing_map_cmp_s16
+ffffffc008160314 t tracing_map_cmp_u16
+ffffffc008160338 t tracing_map_cmp_s8
+ffffffc00816035c t tracing_map_cmp_u8
+ffffffc008160380 T tracing_map_add_sum_field
+ffffffc0081603c4 t tracing_map_cmp_atomic64
+ffffffc0081603f0 T tracing_map_add_var
+ffffffc008160424 T tracing_map_add_key_field
+ffffffc008160484 T tracing_map_insert
+ffffffc0081604b0 t __tracing_map_insert.llvm.4082403648006418654
+ffffffc008160944 T tracing_map_lookup
+ffffffc008160974 T tracing_map_destroy
+ffffffc008160a10 t tracing_map_free_elts
+ffffffc008160b7c T tracing_map_clear
+ffffffc008160d00 T tracing_map_create
+ffffffc008160dd4 t tracing_map_array_alloc
+ffffffc008160f38 T tracing_map_init
+ffffffc00816137c T tracing_map_destroy_sort_entries
+ffffffc008161464 T tracing_map_sort_entries
+ffffffc0081618fc t cmp_entries_key
+ffffffc008161988 t cmp_entries_sum
+ffffffc008161a10 t cmp_entries_dup
+ffffffc008161a5c T tracing_start_cmdline_record
+ffffffc008161a88 t tracing_start_sched_switch.llvm.1944871397681333126
+ffffffc008161bd8 T tracing_stop_cmdline_record
+ffffffc008161c88 T tracing_start_tgid_record
+ffffffc008161cb8 T tracing_stop_tgid_record
+ffffffc008161d68 t probe_sched_wakeup
+ffffffc008161dc0 t probe_sched_switch
+ffffffc008161e20 t nop_trace_init
+ffffffc008161e34 t nop_trace_reset
+ffffffc008161e44 t nop_set_flag
+ffffffc008161eb0 T blk_fill_rwbs
+ffffffc008161fc0 T trace_find_event_field
+ffffffc0081620b4 T trace_define_field
+ffffffc0081621c8 T trace_event_get_offsets
+ffffffc00816222c T trace_event_raw_init
+ffffffc008162798 T trace_event_ignore_this_pid
+ffffffc0081627f4 T trace_event_buffer_reserve
+ffffffc0081628d8 T trace_event_reg
+ffffffc008162994 T trace_event_enable_cmd_record
+ffffffc008162a8c T trace_event_enable_tgid_record
+ffffffc008162b84 T trace_event_enable_disable
+ffffffc008162bac t __ftrace_event_enable_disable.llvm.16455328416518340118
+ffffffc008163038 T trace_event_follow_fork
+ffffffc0081630d4 t event_filter_pid_sched_process_fork
+ffffffc008163140 t event_filter_pid_sched_process_exit
+ffffffc0081631a8 T ftrace_set_clr_event
+ffffffc0081632ec T trace_set_clr_event
+ffffffc0081633ac T trace_array_set_clr_event
+ffffffc008163440 T trace_event_eval_update
+ffffffc008163970 T trace_add_event_call
+ffffffc008163a40 t __register_event
+ffffffc008163b50 T trace_remove_event_call
+ffffffc008163c48 T __find_event_file
+ffffffc008163d08 T find_event_file
+ffffffc008163dd8 T trace_get_event_file
+ffffffc008163f6c T trace_put_event_file
+ffffffc008163fd0 T __trace_early_add_events
+ffffffc008164094 T event_trace_add_tracer
+ffffffc0081641b0 t create_event_toplevel_files
+ffffffc0081642f8 t __trace_early_add_event_dirs
+ffffffc008164398 T event_trace_del_tracer
+ffffffc0081644a0 t __ftrace_clear_event_pids
+ffffffc0081646cc t __ftrace_set_clr_event_nolock
+ffffffc008164804 t __trace_remove_event_call
+ffffffc0081649b8 t remove_event_file_dir
+ffffffc008164b14 t __put_system
+ffffffc008164bb8 t trace_create_new_event
+ffffffc008164cb0 t event_define_fields
+ffffffc008164e90 t event_create_dir
+ffffffc0081652d0 t subsystem_filter_read
+ffffffc0081653b4 t subsystem_filter_write
+ffffffc00816545c t subsystem_open
+ffffffc008165684 t subsystem_release
+ffffffc008165744 t system_enable_read
+ffffffc0081658ac t system_enable_write
+ffffffc008165a58 t event_enable_read
+ffffffc008165b94 t event_enable_write
+ffffffc008165ca0 t event_id_read
+ffffffc008165d5c t event_filter_read
+ffffffc008165e78 t event_filter_write
+ffffffc008165f50 t trace_format_open
+ffffffc008165fa4 t f_start
+ffffffc0081660f0 t f_stop
+ffffffc008166124 t f_next
+ffffffc008166204 t f_show
+ffffffc0081663ac t ftrace_event_write
+ffffffc0081664bc t ftrace_event_set_open
+ffffffc0081665bc t ftrace_event_release
+ffffffc008166608 t system_tr_open
+ffffffc0081666a0 t ftrace_event_pid_write
+ffffffc0081666d0 t ftrace_event_set_pid_open
+ffffffc0081667a4 t event_pid_write
+ffffffc008166a54 t ignore_task_cpu
+ffffffc008166af4 t event_filter_pid_sched_switch_probe_pre
+ffffffc008166c1c t event_filter_pid_sched_switch_probe_post
+ffffffc008166cd0 t event_filter_pid_sched_wakeup_probe_pre
+ffffffc008166df0 t event_filter_pid_sched_wakeup_probe_post
+ffffffc008166f0c t p_start
+ffffffc008166f80 t p_stop
+ffffffc008166fe4 t p_next
+ffffffc008167020 t ftrace_event_npid_write
+ffffffc008167050 t ftrace_event_set_npid_open
+ffffffc008167128 t np_start
+ffffffc00816719c t np_next
+ffffffc0081671d8 t show_header
+ffffffc0081672c8 t ftrace_event_avail_open
+ffffffc00816732c T ftrace_event_is_function
+ffffffc00816734c t ftrace_event_register
+ffffffc008167360 T perf_trace_init
+ffffffc008167444 t perf_trace_event_init
+ffffffc0081677a0 T perf_trace_destroy
+ffffffc008167830 t perf_trace_event_unreg
+ffffffc008167910 T perf_uprobe_init
+ffffffc008167a00 T perf_uprobe_destroy
+ffffffc008167a9c T perf_trace_add
+ffffffc008167b58 T perf_trace_del
+ffffffc008167bdc T perf_trace_buf_alloc
+ffffffc008167cd0 T perf_trace_buf_update
+ffffffc008167d40 T filter_parse_regex
+ffffffc008167e98 T filter_match_preds
+ffffffc0081686cc T print_event_filter
+ffffffc008168724 T print_subsystem_event_filter
+ffffffc0081687a8 T free_event_filter
+ffffffc00816882c T filter_assign_type
+ffffffc008168920 T create_event_filter
+ffffffc008168a1c T apply_event_filter
+ffffffc008168c30 T apply_subsystem_event_filter
+ffffffc00816924c T ftrace_profile_free_filter
+ffffffc0081692d4 T ftrace_profile_set_filter
+ffffffc008169448 t create_filter_start
+ffffffc008169574 t process_preds
+ffffffc00816a428 t append_filter_err
+ffffffc00816a5c4 t filter_build_regex
+ffffffc00816a7cc t select_comparison_fn
+ffffffc00816a8b8 t regex_match_full
+ffffffc00816a8fc t regex_match_front
+ffffffc00816a94c t regex_match_middle
+ffffffc00816a990 t regex_match_end
+ffffffc00816a9e8 t regex_match_glob
+ffffffc00816aa24 T trigger_data_free
+ffffffc00816aaa4 T event_triggers_call
+ffffffc00816abc8 T __trace_trigger_soft_disabled
+ffffffc00816aca0 T event_triggers_post_call
+ffffffc00816ad54 T trigger_process_regex
+ffffffc00816aea0 t event_trigger_write.llvm.15045791844275835126
+ffffffc00816af98 t event_trigger_open.llvm.15045791844275835126
+ffffffc00816b0b4 t event_trigger_release.llvm.15045791844275835126
+ffffffc00816b11c T event_trigger_init
+ffffffc00816b140 T trace_event_trigger_enable_disable
+ffffffc00816b280 T clear_event_triggers
+ffffffc00816b3f8 T update_cond_flag
+ffffffc00816b4a8 T event_trigger_check_remove
+ffffffc00816b4cc T event_trigger_empty_param
+ffffffc00816b4e4 T event_trigger_separate_filter
+ffffffc00816b5d0 T event_trigger_alloc
+ffffffc00816b680 T event_trigger_parse_num
+ffffffc00816b714 T event_trigger_set_filter
+ffffffc00816b77c T event_trigger_reset_filter
+ffffffc00816b7d0 T event_trigger_register
+ffffffc00816b828 T event_trigger_unregister
+ffffffc00816b880 T set_trigger_filter
+ffffffc00816b9c0 T find_named_trigger
+ffffffc00816ba50 T is_named_trigger
+ffffffc00816ba88 T save_named_trigger
+ffffffc00816bb18 T del_named_trigger
+ffffffc00816bb84 T pause_named_trigger
+ffffffc00816bc08 T unpause_named_trigger
+ffffffc00816bc84 T set_named_trigger_data
+ffffffc00816bc98 T get_named_trigger_data
+ffffffc00816bcac T event_enable_trigger_print
+ffffffc00816bdc4 T event_enable_trigger_free
+ffffffc00816be94 T event_enable_trigger_parse
+ffffffc00816c2e4 t trace_event_try_get_ref
+ffffffc00816c33c t event_trigger_free
+ffffffc00816c3dc T event_enable_register_trigger
+ffffffc00816c6c0 T event_enable_unregister_trigger
+ffffffc00816c8c4 t trigger_start
+ffffffc00816c97c t trigger_stop
+ffffffc00816c9b0 t trigger_next
+ffffffc00816ca18 t trigger_show
+ffffffc00816cb08 t event_trigger_parse
+ffffffc00816ce34 t register_trigger
+ffffffc00816d0ec t unregister_trigger
+ffffffc00816d2c8 t onoff_get_trigger_ops
+ffffffc00816d33c t traceon_count_trigger
+ffffffc00816d3bc t traceon_trigger_print
+ffffffc00816d468 t traceon_trigger
+ffffffc00816d4c4 t traceoff_count_trigger
+ffffffc00816d544 t traceoff_trigger_print
+ffffffc00816d5f0 t traceoff_trigger
+ffffffc00816d64c t stacktrace_get_trigger_ops
+ffffffc00816d674 t stacktrace_count_trigger
+ffffffc00816d700 t stacktrace_trigger_print
+ffffffc00816d7ac t stacktrace_trigger
+ffffffc00816d820 t event_enable_get_trigger_ops
+ffffffc00816d8a8 t event_enable_count_trigger
+ffffffc00816d978 t event_enable_trigger
+ffffffc00816da0c t eprobe_dyn_event_create
+ffffffc00816da40 t eprobe_dyn_event_show
+ffffffc00816db28 t eprobe_dyn_event_is_busy
+ffffffc00816db48 t eprobe_dyn_event_release
+ffffffc00816dc18 t eprobe_dyn_event_match
+ffffffc00816dd40 t __trace_eprobe_create
+ffffffc00816e4a4 t dyn_event_add
+ffffffc00816e534 t dyn_event_add
+ffffffc00816e5b0 t trace_event_probe_cleanup
+ffffffc00816e624 t eprobe_register
+ffffffc00816e98c t print_eprobe_event
+ffffffc00816ebec t eprobe_event_define_fields
+ffffffc00816ec2c t disable_eprobe
+ffffffc00816ed24 t eprobe_trigger_func
+ffffffc00816fa64 t eprobe_trigger_init
+ffffffc00816fa78 t eprobe_trigger_free
+ffffffc00816fa88 t eprobe_trigger_print
+ffffffc00816fa9c t eprobe_trigger_cmd_parse
+ffffffc00816fab0 t eprobe_trigger_reg_func
+ffffffc00816fac4 t eprobe_trigger_unreg_func
+ffffffc00816fad4 t eprobe_trigger_get_ops
+ffffffc00816faec T find_synth_event
+ffffffc00816fb7c T synth_event_add_field
+ffffffc00816fc58 t synth_event_check_arg_fn
+ffffffc00816fcb4 T synth_event_add_field_str
+ffffffc00816fd6c T synth_event_add_fields
+ffffffc00816fe68 T __synth_event_gen_cmd_start
+ffffffc008170028 T synth_event_gen_cmd_array_start
+ffffffc008170180 T synth_event_create
+ffffffc0081702a0 T synth_event_cmd_init
+ffffffc0081702d8 T synth_event_delete
+ffffffc0081703f8 t synth_event_run_command
+ffffffc0081704b0 T synth_event_trace
+ffffffc0081707d8 t trace_string
+ffffffc0081709f0 T synth_event_trace_array
+ffffffc008170c40 T synth_event_trace_start
+ffffffc008170d38 T synth_event_add_next_val
+ffffffc008170d6c t __synth_event_add_val
+ffffffc008170f10 T synth_event_add_val
+ffffffc008170f3c T synth_event_trace_end
+ffffffc008170f8c t create_synth_event
+ffffffc0081711ac t synth_event_show
+ffffffc008171204 t synth_event_is_busy
+ffffffc008171220 t synth_event_release
+ffffffc0081712ac t synth_event_match
+ffffffc008171314 t synth_err
+ffffffc00817138c t check_command
+ffffffc008171480 t __create_synth_event
+ffffffc008171f38 t errpos
+ffffffc008171fa4 t alloc_synth_event
+ffffffc008172148 t register_synth_event
+ffffffc008172328 t free_synth_event
+ffffffc0081723f4 t synth_field_size
+ffffffc0081725b0 t synth_field_string_size
+ffffffc0081726d4 t trace_event_raw_event_synth
+ffffffc008172930 t print_synth_event
+ffffffc008172be4 t synth_field_fmt
+ffffffc008172ddc t synth_event_define_fields
+ffffffc008172ec0 t __set_synth_event_print_fmt
+ffffffc008173044 t __synth_event_show
+ffffffc008173134 t create_or_delete_synth_event
+ffffffc0081732ec t synth_events_write
+ffffffc008173320 t synth_events_open
+ffffffc008173390 t synth_events_seq_show
+ffffffc0081733d4 t event_hist_open.llvm.3600766165399949490
+ffffffc008173428 t hist_show
+ffffffc008173e84 t hist_field_name
+ffffffc008173fb4 t event_hist_trigger_parse
+ffffffc008175830 t hist_register_trigger
+ffffffc008175af8 t hist_unregister_trigger
+ffffffc008175c54 t hist_unreg_all
+ffffffc008175dc0 t event_hist_get_trigger_ops
+ffffffc008175dd4 t destroy_hist_trigger_attrs
+ffffffc00817602c t have_hist_trigger_match
+ffffffc0081760d0 t hist_trigger_check_refs
+ffffffc008176180 t existing_hist_update_only
+ffffffc0081762ac t has_hist_vars
+ffffffc008176330 t save_hist_vars
+ffffffc0081763f0 t create_actions
+ffffffc008176690 t hist_trigger_enable
+ffffffc008176750 t destroy_hist_data
+ffffffc00817696c t create_tracing_map_fields
+ffffffc008176a94 t track_data_parse
+ffffffc008176b8c t action_parse
+ffffffc008176ea0 t onmatch_destroy
+ffffffc008176f48 t parse_action_params
+ffffffc008177160 t check_track_val_max
+ffffffc008177178 t check_track_val_changed
+ffffffc008177190 t save_track_data_vars
+ffffffc008177284 t ontrack_action
+ffffffc008177390 t save_track_data_snapshot
+ffffffc0081773a0 t action_trace
+ffffffc008177470 t hist_fn_call
+ffffffc008177918 t track_data_destroy
+ffffffc0081779c4 t destroy_hist_field
+ffffffc008177a2c t __destroy_hist_field
+ffffffc008177aa0 t create_hist_field
+ffffffc008177d20 t select_value_fn
+ffffffc008177d9c t __create_val_field
+ffffffc008177ee4 t parse_expr
+ffffffc0081786b8 t parse_atom
+ffffffc008178efc t check_expr_operands
+ffffffc008179074 t expr_str
+ffffffc008179220 t find_event_var
+ffffffc008179464 t create_var_ref
+ffffffc0081795a8 t find_var_file
+ffffffc0081796f0 t init_var_ref
+ffffffc008179800 t expr_field_str
+ffffffc008179988 t find_var
+ffffffc008179aa4 t field_has_hist_vars
+ffffffc008179b24 t hist_trigger_elt_data_alloc
+ffffffc008179ce8 t hist_trigger_elt_data_free
+ffffffc008179d5c t hist_trigger_elt_data_init
+ffffffc008179ddc t hist_trigger_match
+ffffffc00817a068 t actions_match
+ffffffc00817a1ec t check_var_refs
+ffffffc00817a2e0 t hist_clear
+ffffffc00817a34c t action_create
+ffffffc00817b158 t create_target_field_var
+ffffffc00817b3b8 t find_synthetic_field_var
+ffffffc00817b470 t create_var
+ffffffc00817b578 t event_hist_trigger
+ffffffc00817bd30 t event_hist_trigger_named_init
+ffffffc00817bdbc t event_hist_trigger_named_free
+ffffffc00817be2c t event_hist_trigger_print
+ffffffc00817c474 t event_hist_trigger_init
+ffffffc00817c4e0 t event_hist_trigger_free
+ffffffc00817c654 t hist_field_print
+ffffffc00817c808 t hist_enable_unreg_all
+ffffffc00817c8e8 t hist_enable_get_trigger_ops
+ffffffc00817c95c t hist_enable_count_trigger
+ffffffc00817c9d4 t hist_enable_trigger
+ffffffc00817ca34 T __traceiter_error_report_end
+ffffffc00817cac4 t trace_event_raw_event_error_report_template
+ffffffc00817cb84 t perf_trace_error_report_template
+ffffffc00817cca0 t trace_raw_output_error_report_template
+ffffffc00817cd2c T __traceiter_cpu_idle
+ffffffc00817cdbc T __traceiter_cpu_idle_miss
+ffffffc00817ce54 T __traceiter_powernv_throttle
+ffffffc00817ceec T __traceiter_pstate_sample
+ffffffc00817cfd4 T __traceiter_cpu_frequency
+ffffffc00817d064 T __traceiter_cpu_frequency_limits
+ffffffc00817d0e4 T __traceiter_device_pm_callback_start
+ffffffc00817d17c T __traceiter_device_pm_callback_end
+ffffffc00817d20c T __traceiter_suspend_resume
+ffffffc00817d2a4 T __traceiter_wakeup_source_activate
+ffffffc00817d334 T __traceiter_wakeup_source_deactivate
+ffffffc00817d3c4 T __traceiter_clock_enable
+ffffffc00817d45c T __traceiter_clock_disable
+ffffffc00817d4f4 T __traceiter_clock_set_rate
+ffffffc00817d58c T __traceiter_power_domain_target
+ffffffc00817d624 T __traceiter_pm_qos_add_request
+ffffffc00817d6a4 T __traceiter_pm_qos_update_request
+ffffffc00817d724 T __traceiter_pm_qos_remove_request
+ffffffc00817d7a4 T __traceiter_pm_qos_update_target
+ffffffc00817d83c T __traceiter_pm_qos_update_flags
+ffffffc00817d8d4 T __traceiter_dev_pm_qos_add_request
+ffffffc00817d96c T __traceiter_dev_pm_qos_update_request
+ffffffc00817da04 T __traceiter_dev_pm_qos_remove_request
+ffffffc00817da9c T __traceiter_guest_halt_poll_ns
+ffffffc00817db34 t trace_event_raw_event_cpu
+ffffffc00817dbf0 t perf_trace_cpu
+ffffffc00817dd08 t trace_event_raw_event_cpu_idle_miss
+ffffffc00817dddc t perf_trace_cpu_idle_miss
+ffffffc00817df00 t trace_event_raw_event_powernv_throttle
+ffffffc00817e00c t perf_trace_powernv_throttle
+ffffffc00817e17c t trace_event_raw_event_pstate_sample
+ffffffc00817e280 t perf_trace_pstate_sample
+ffffffc00817e3d8 t trace_event_raw_event_cpu_frequency_limits
+ffffffc00817e4a4 t perf_trace_cpu_frequency_limits
+ffffffc00817e5c4 t trace_event_raw_event_device_pm_callback_start
+ffffffc00817e770 t perf_trace_device_pm_callback_start
+ffffffc00817e980 t trace_event_raw_event_device_pm_callback_end
+ffffffc00817eb14 t perf_trace_device_pm_callback_end
+ffffffc00817ed0c t trace_event_raw_event_suspend_resume
+ffffffc00817ede4 t perf_trace_suspend_resume
+ffffffc00817ef0c t trace_event_raw_event_wakeup_source
+ffffffc00817f010 t perf_trace_wakeup_source
+ffffffc00817f17c t trace_event_raw_event_clock
+ffffffc00817f290 t perf_trace_clock
+ffffffc00817f40c t trace_event_raw_event_power_domain
+ffffffc00817f520 t perf_trace_power_domain
+ffffffc00817f69c t trace_event_raw_event_cpu_latency_qos_request
+ffffffc00817f754 t perf_trace_cpu_latency_qos_request
+ffffffc00817f860 t trace_event_raw_event_pm_qos_update
+ffffffc00817f930 t perf_trace_pm_qos_update
+ffffffc00817fa50 t trace_event_raw_event_dev_pm_qos_request
+ffffffc00817fb5c t perf_trace_dev_pm_qos_request
+ffffffc00817fccc t trace_event_raw_event_guest_halt_poll_ns
+ffffffc00817fda0 t perf_trace_guest_halt_poll_ns
+ffffffc00817fec4 t trace_raw_output_cpu
+ffffffc00817ff38 t trace_raw_output_cpu_idle_miss
+ffffffc00817ffc8 t trace_raw_output_powernv_throttle
+ffffffc008180048 t trace_raw_output_pstate_sample
+ffffffc0081800dc t trace_raw_output_cpu_frequency_limits
+ffffffc008180150 t trace_event_get_offsets_device_pm_callback_start
+ffffffc008180278 t trace_raw_output_device_pm_callback_start
+ffffffc008180340 t trace_raw_output_device_pm_callback_end
+ffffffc0081803c4 t trace_raw_output_suspend_resume
+ffffffc008180458 t trace_raw_output_wakeup_source
+ffffffc0081804d4 t trace_raw_output_clock
+ffffffc008180550 t trace_raw_output_power_domain
+ffffffc0081805cc t trace_raw_output_cpu_latency_qos_request
+ffffffc008180640 t trace_raw_output_pm_qos_update
+ffffffc0081806cc t trace_raw_output_pm_qos_update_flags
+ffffffc008180770 t trace_raw_output_dev_pm_qos_request
+ffffffc008180808 t trace_raw_output_guest_halt_poll_ns
+ffffffc008180898 T __traceiter_rpm_suspend
+ffffffc008180928 T __traceiter_rpm_resume
+ffffffc0081809b8 T __traceiter_rpm_idle
+ffffffc008180a48 T __traceiter_rpm_usage
+ffffffc008180ad8 T __traceiter_rpm_return_int
+ffffffc008180b70 t trace_event_raw_event_rpm_internal
+ffffffc008180cdc t perf_trace_rpm_internal
+ffffffc008180eb8 t trace_event_raw_event_rpm_return_int
+ffffffc008180fe4 t perf_trace_rpm_return_int
+ffffffc008181180 t trace_raw_output_rpm_internal
+ffffffc008181218 t trace_raw_output_rpm_return_int
+ffffffc008181298 T trace_event_dyn_try_get_ref
+ffffffc008181364 T trace_event_dyn_put_ref
+ffffffc0081813e4 T trace_event_dyn_busy
+ffffffc008181408 T dyn_event_register
+ffffffc0081814c8 T dyn_event_release
+ffffffc0081816c4 T dyn_event_seq_start
+ffffffc008181714 T dyn_event_seq_next
+ffffffc00818174c T dyn_event_seq_stop
+ffffffc008181780 T dyn_events_release_all
+ffffffc0081818ac T dynevent_arg_add
+ffffffc008181944 T dynevent_arg_pair_add
+ffffffc0081819e4 T dynevent_str_add
+ffffffc008181a38 T dynevent_cmd_init
+ffffffc008181a60 T dynevent_arg_init
+ffffffc008181a84 T dynevent_arg_pair_init
+ffffffc008181ab8 T dynevent_create
+ffffffc008181b00 t dyn_event_write
+ffffffc008181b34 t dyn_event_open
+ffffffc008181c6c t create_dyn_event
+ffffffc008181d58 t dyn_event_seq_show
+ffffffc008181db4 T print_type_u8
+ffffffc008181e18 T print_type_u16
+ffffffc008181e7c T print_type_u32
+ffffffc008181ee0 T print_type_u64
+ffffffc008181f44 T print_type_s8
+ffffffc008181fa8 T print_type_s16
+ffffffc00818200c T print_type_s32
+ffffffc008182070 T print_type_s64
+ffffffc0081820d4 T print_type_x8
+ffffffc008182138 T print_type_x16
+ffffffc00818219c T print_type_x32
+ffffffc008182200 T print_type_x64
+ffffffc008182264 T print_type_symbol
+ffffffc0081822c8 T print_type_string
+ffffffc008182354 T trace_probe_log_init
+ffffffc008182374 T trace_probe_log_clear
+ffffffc008182394 T trace_probe_log_set_index
+ffffffc0081823ac T __trace_probe_log_err
+ffffffc008182530 T traceprobe_split_symbol_offset
+ffffffc0081825a0 T traceprobe_parse_event_name
+ffffffc0081827a0 T traceprobe_parse_probe_arg
+ffffffc008183120 T traceprobe_free_probe_arg
+ffffffc0081831ac T traceprobe_update_arg
+ffffffc0081832f0 T traceprobe_set_print_fmt
+ffffffc008183384 t __set_print_fmt
+ffffffc0081836a4 T traceprobe_define_arg_fields
+ffffffc008183758 T trace_probe_append
+ffffffc008183858 T trace_probe_unlink
+ffffffc0081838e8 T trace_probe_cleanup
+ffffffc008183960 T trace_probe_init
+ffffffc008183ab0 T trace_probe_register_event_call
+ffffffc008183bc8 T trace_probe_add_file
+ffffffc008183c84 T trace_probe_get_file_link
+ffffffc008183cc8 T trace_probe_remove_file
+ffffffc008183d9c T trace_probe_compare_arg_type
+ffffffc008183e80 T trace_probe_match_command_args
+ffffffc008183f70 T trace_probe_create
+ffffffc008184038 t find_fetch_type
+ffffffc0081842f0 t parse_probe_arg
+ffffffc0081848c4 t __parse_bitfield_probe_arg
+ffffffc008184a0c T bpf_get_uprobe_info
+ffffffc008184b74 T create_local_trace_uprobe
+ffffffc008184d98 t alloc_trace_uprobe
+ffffffc008184e70 t free_trace_uprobe
+ffffffc008184ec8 T destroy_local_trace_uprobe
+ffffffc008184f30 t trace_uprobe_create
+ffffffc008184f64 t trace_uprobe_show
+ffffffc00818506c t trace_uprobe_is_busy
+ffffffc00818508c t trace_uprobe_release
+ffffffc008185170 t trace_uprobe_match
+ffffffc008185310 t __trace_uprobe_create
+ffffffc008185768 t register_trace_uprobe
+ffffffc008185bc8 t uprobe_dispatcher
+ffffffc008185f14 t uretprobe_dispatcher
+ffffffc0081861b8 t process_fetch_insn
+ffffffc008186908 t probe_mem_read
+ffffffc008186acc t fetch_store_strlen
+ffffffc008186b1c t fetch_store_strlen_user
+ffffffc008186b6c t __uprobe_trace_func
+ffffffc008186cd0 t uprobe_perf_filter
+ffffffc008186d5c t __uprobe_perf_func
+ffffffc008186f68 t trace_uprobe_register
+ffffffc0081872b0 t print_uprobe_event
+ffffffc0081874f0 t uprobe_event_define_fields
+ffffffc0081875e8 t probe_event_enable
+ffffffc00818795c t uprobe_perf_close
+ffffffc008187a90 t uprobe_buffer_disable
+ffffffc008187b6c t probes_write
+ffffffc008187ba0 t probes_open
+ffffffc008187c10 t create_or_delete_trace_uprobe
+ffffffc008187c6c t probes_seq_show
+ffffffc008187cb0 t profile_open
+ffffffc008187d00 t probes_profile_seq_show
+ffffffc008187d78 T irq_work_queue
+ffffffc008187e8c T irq_work_queue_on
+ffffffc008188018 T irq_work_needs_cpu
+ffffffc00818809c T irq_work_single
+ffffffc00818814c T irq_work_run
+ffffffc008188364 T irq_work_tick
+ffffffc0081884a8 T irq_work_sync
+ffffffc0081884dc T cpu_pm_register_notifier
+ffffffc008188550 T cpu_pm_unregister_notifier
+ffffffc0081885c4 T cpu_pm_enter
+ffffffc008188654 T cpu_pm_exit
+ffffffc0081886c0 T cpu_cluster_pm_enter
+ffffffc008188750 T cpu_cluster_pm_exit
+ffffffc0081887bc t cpu_pm_suspend
+ffffffc0081888a0 t cpu_pm_resume
+ffffffc008188918 T bpf_internal_load_pointer_neg_helper
+ffffffc0081889b4 T bpf_prog_alloc_no_stats
+ffffffc008188b14 T bpf_prog_alloc
+ffffffc008188bdc T bpf_prog_alloc_jited_linfo
+ffffffc008188c5c T bpf_prog_jit_attempt_done
+ffffffc008188ccc T bpf_prog_fill_jited_linfo
+ffffffc008188d60 T bpf_prog_realloc
+ffffffc008188e28 T __bpf_prog_free
+ffffffc008188e8c T bpf_prog_calc_tag
+ffffffc0081890d0 T bpf_patch_insn_single
+ffffffc008189334 t bpf_adj_branches
+ffffffc008189534 T bpf_remove_insns
+ffffffc0081895d0 T bpf_prog_kallsyms_del_all
+ffffffc0081895e0 T __bpf_call_base
+ffffffc0081895f4 T bpf_opcode_in_insntable
+ffffffc008189614 W bpf_probe_read_kernel
+ffffffc00818964c T bpf_patch_call_args
+ffffffc0081896b0 T bpf_prog_map_compatible
+ffffffc008189794 T bpf_prog_select_runtime
+ffffffc008189a14 W bpf_int_jit_compile
+ffffffc008189a24 T bpf_prog_array_alloc
+ffffffc008189a74 T bpf_prog_array_free
+ffffffc008189ab8 T bpf_prog_array_free_sleepable
+ffffffc008189ae0 T bpf_prog_array_length
+ffffffc008189b28 T bpf_prog_array_is_empty
+ffffffc008189b58 T bpf_prog_array_copy_to_user
+ffffffc008189da4 T bpf_prog_array_delete_safe
+ffffffc008189de4 T bpf_prog_array_delete_safe_at
+ffffffc008189e4c T bpf_prog_array_update_at
+ffffffc008189eb4 T bpf_prog_array_copy
+ffffffc00818a0c4 T bpf_prog_array_copy_info
+ffffffc00818a170 T __bpf_free_used_maps
+ffffffc00818a1fc T __bpf_free_used_btfs
+ffffffc00818a20c T bpf_prog_free
+ffffffc00818a26c t bpf_prog_free_deferred
+ffffffc00818a3e4 T bpf_user_rnd_init_once
+ffffffc00818a484 T bpf_user_rnd_u32
+ffffffc00818a51c T bpf_get_raw_cpu_id
+ffffffc00818a540 W bpf_get_trace_printk_proto
+ffffffc00818a554 W bpf_get_trace_vprintk_proto
+ffffffc00818a568 W bpf_event_output
+ffffffc00818a57c W bpf_jit_compile
+ffffffc00818a58c W bpf_jit_needs_zext
+ffffffc00818a5a0 W bpf_jit_supports_subprog_tailcalls
+ffffffc00818a5b4 W bpf_jit_supports_kfunc_call
+ffffffc00818a5c8 W bpf_arch_text_poke
+ffffffc00818a5dc W bpf_arch_text_copy
+ffffffc00818a5f0 W bpf_arch_text_invalidate
+ffffffc00818a604 T __traceiter_xdp_exception
+ffffffc00818a69c T __traceiter_xdp_bulk_tx
+ffffffc00818a744 T __traceiter_xdp_redirect
+ffffffc00818a80c T __traceiter_xdp_redirect_err
+ffffffc00818a8d4 T __traceiter_xdp_redirect_map
+ffffffc00818a99c T __traceiter_xdp_redirect_map_err
+ffffffc00818aa64 T __traceiter_xdp_cpumap_kthread
+ffffffc00818ab14 T __traceiter_xdp_cpumap_enqueue
+ffffffc00818abbc T __traceiter_xdp_devmap_xmit
+ffffffc00818ac6c T __traceiter_mem_disconnect
+ffffffc00818acec T __traceiter_mem_connect
+ffffffc00818ad7c T __traceiter_mem_return_failed
+ffffffc00818ae0c t trace_event_raw_event_xdp_exception
+ffffffc00818aee8 t perf_trace_xdp_exception
+ffffffc00818b014 t trace_event_raw_event_xdp_bulk_tx
+ffffffc00818b0f4 t perf_trace_xdp_bulk_tx
+ffffffc00818b22c t trace_event_raw_event_xdp_redirect_template
+ffffffc00818b37c t perf_trace_xdp_redirect_template
+ffffffc00818b51c t trace_event_raw_event_xdp_cpumap_kthread
+ffffffc00818b630 t perf_trace_xdp_cpumap_kthread
+ffffffc00818b794 t trace_event_raw_event_xdp_cpumap_enqueue
+ffffffc00818b884 t perf_trace_xdp_cpumap_enqueue
+ffffffc00818b9cc t trace_event_raw_event_xdp_devmap_xmit
+ffffffc00818babc t perf_trace_xdp_devmap_xmit
+ffffffc00818bbfc t trace_event_raw_event_mem_disconnect
+ffffffc00818bccc t perf_trace_mem_disconnect
+ffffffc00818bdf0 t trace_event_raw_event_mem_connect
+ffffffc00818bed0 t perf_trace_mem_connect
+ffffffc00818c00c t trace_event_raw_event_mem_return_failed
+ffffffc00818c0d8 t perf_trace_mem_return_failed
+ffffffc00818c200 t __bpf_prog_run_args32
+ffffffc00818c288 t __bpf_prog_run_args64
+ffffffc00818c318 t __bpf_prog_run_args96
+ffffffc00818c3b0 t __bpf_prog_run_args128
+ffffffc00818c450 t __bpf_prog_run_args160
+ffffffc00818c500 t __bpf_prog_run_args192
+ffffffc00818c5b8 t __bpf_prog_run_args224
+ffffffc00818c678 t __bpf_prog_run_args256
+ffffffc00818c740 t __bpf_prog_run_args288
+ffffffc00818c808 t __bpf_prog_run_args320
+ffffffc00818c8d0 t __bpf_prog_run_args352
+ffffffc00818c998 t __bpf_prog_run_args384
+ffffffc00818ca60 t __bpf_prog_run_args416
+ffffffc00818cb28 t __bpf_prog_run_args448
+ffffffc00818cbf0 t __bpf_prog_run_args480
+ffffffc00818ccb8 t __bpf_prog_run_args512
+ffffffc00818cd7c t ___bpf_prog_run
+ffffffc00818f08c t __bpf_prog_run32
+ffffffc00818f110 t __bpf_prog_run64
+ffffffc00818f19c t __bpf_prog_run96
+ffffffc00818f230 t __bpf_prog_run128
+ffffffc00818f2cc t __bpf_prog_run160
+ffffffc00818f378 t __bpf_prog_run192
+ffffffc00818f42c t __bpf_prog_run224
+ffffffc00818f4e8 t __bpf_prog_run256
+ffffffc00818f5ac t __bpf_prog_run288
+ffffffc00818f654 t __bpf_prog_run320
+ffffffc00818f6fc t __bpf_prog_run352
+ffffffc00818f7a4 t __bpf_prog_run384
+ffffffc00818f84c t __bpf_prog_run416
+ffffffc00818f8f4 t __bpf_prog_run448
+ffffffc00818f99c t __bpf_prog_run480
+ffffffc00818fa44 t __bpf_prog_run512
+ffffffc00818faec t __bpf_prog_ret1
+ffffffc00818fb00 t trace_raw_output_xdp_exception
+ffffffc00818fb90 t trace_raw_output_xdp_bulk_tx
+ffffffc00818fc24 t trace_raw_output_xdp_redirect_template
+ffffffc00818fcc8 t trace_raw_output_xdp_cpumap_kthread
+ffffffc00818fd84 t trace_raw_output_xdp_cpumap_enqueue
+ffffffc00818fe28 t trace_raw_output_xdp_devmap_xmit
+ffffffc00818fecc t trace_raw_output_mem_disconnect
+ffffffc00818ff5c t trace_raw_output_mem_connect
+ffffffc00818fff0 t trace_raw_output_mem_return_failed
+ffffffc008190080 T scs_alloc
+ffffffc00819029c T scs_free
+ffffffc00819044c t scs_cleanup.llvm.6169229261187563557
+ffffffc0081904bc T scs_prepare
+ffffffc008190510 T scs_release
+ffffffc008190644 T report_cfi_failure
+ffffffc008190694 T perf_proc_update_handler
+ffffffc008190770 T perf_cpu_time_max_percent_handler
+ffffffc00819081c T perf_sample_event_took
+ffffffc008190900 W perf_event_print_debug
+ffffffc008190910 T perf_pmu_disable
+ffffffc008190974 T perf_pmu_enable
+ffffffc0081909d8 T perf_event_disable_local
+ffffffc008190b4c t __perf_event_disable
+ffffffc008190bec T perf_event_disable
+ffffffc008190c74 t _perf_event_disable
+ffffffc008190ce4 T perf_event_disable_inatomic
+ffffffc008190d20 T perf_pmu_resched
+ffffffc008190db8 t ctx_resched
+ffffffc008190f28 T perf_event_enable
+ffffffc008190fe4 t _perf_event_enable
+ffffffc008191080 T perf_event_addr_filters_sync
+ffffffc008191120 T perf_event_refresh
+ffffffc008191188 t _perf_event_refresh
+ffffffc008191268 T perf_sched_cb_dec
+ffffffc00819135c T perf_sched_cb_inc
+ffffffc008191468 T __perf_event_task_sched_out
+ffffffc008191a54 T __perf_event_task_sched_in
+ffffffc008191b7c t perf_event_context_sched_in
+ffffffc008191d44 T perf_event_task_tick
+ffffffc008192168 T perf_event_read_local
+ffffffc00819234c T perf_event_release_kernel
+ffffffc0081927a8 t perf_remove_from_owner
+ffffffc00819290c t put_ctx
+ffffffc008192a24 T perf_event_read_value
+ffffffc008192a94 t __perf_event_read_value
+ffffffc008192bd8 T perf_event_pause
+ffffffc008192c94 T perf_event_period
+ffffffc008192d9c T perf_event_task_enable
+ffffffc008192f8c T perf_event_task_disable
+ffffffc0081930ec T perf_event_update_userpage
+ffffffc0081932d8 T ring_buffer_get
+ffffffc0081933c0 T ring_buffer_put
+ffffffc008193468 t rb_free_rcu
+ffffffc008193498 T perf_event_wakeup
+ffffffc008193554 T perf_event_header__init_id
+ffffffc008193588 t __perf_event_header__init_id
+ffffffc0081936c0 T perf_event__output_id_sample
+ffffffc00819379c T perf_output_sample
+ffffffc008194234 t perf_output_read
+ffffffc0081947a0 T perf_callchain
+ffffffc008194834 T perf_prepare_sample
+ffffffc008194f08 t perf_get_page_size
+ffffffc00819509c T perf_event_output_forward
+ffffffc008195170 T perf_event_output_backward
+ffffffc008195244 T perf_event_output
+ffffffc008195320 T perf_event_exec
+ffffffc0081957f8 t perf_iterate_ctx
+ffffffc008195994 T perf_event_fork
+ffffffc008195a5c T perf_event_namespaces
+ffffffc008195b5c T perf_event_comm
+ffffffc008195c34 t perf_iterate_sb
+ffffffc008195e90 t perf_event_namespaces_output
+ffffffc008196034 T perf_event_mmap
+ffffffc00819657c T perf_event_aux_event
+ffffffc0081966a8 T perf_log_lost_samples
+ffffffc0081967d0 T perf_event_ksymbol
+ffffffc008196a14 t perf_event_ksymbol_output
+ffffffc008196bd0 T perf_event_bpf_event
+ffffffc008196d14 t perf_event_bpf_output
+ffffffc008196e3c T perf_event_text_poke
+ffffffc008196ef8 t perf_event_text_poke_output
+ffffffc0081971ec T perf_event_itrace_started
+ffffffc008197208 T perf_report_aux_output_id
+ffffffc008197338 T perf_event_account_interrupt
+ffffffc008197364 t __perf_event_account_interrupt
+ffffffc00819746c T perf_event_overflow
+ffffffc0081974a0 t __perf_event_overflow.llvm.6402366837585048988
+ffffffc0081976a8 T perf_swevent_set_period
+ffffffc008197730 T perf_swevent_get_recursion_context
+ffffffc0081977ac T perf_swevent_put_recursion_context
+ffffffc0081977e0 T ___perf_sw_event
+ffffffc0081979a0 T __perf_sw_event
+ffffffc008197a94 T perf_trace_run_bpf_submit
+ffffffc008197b2c T perf_tp_event
+ffffffc008197dbc t perf_swevent_event
+ffffffc008197f78 T perf_event_set_bpf_prog
+ffffffc008198068 T perf_event_free_bpf_prog
+ffffffc008198078 T perf_bp_event
+ffffffc008198174 t nr_addr_filters_show
+ffffffc0081981c0 T perf_pmu_register
+ffffffc008198658 t pmu_dev_alloc
+ffffffc008198774 t perf_pmu_start_txn
+ffffffc0081987f4 t perf_pmu_commit_txn
+ffffffc00819887c t perf_pmu_cancel_txn
+ffffffc008198900 t perf_pmu_nop_txn
+ffffffc008198910 t perf_pmu_nop_int
+ffffffc008198924 t perf_pmu_nop_void
+ffffffc008198934 t perf_event_nop_int
+ffffffc008198948 t perf_event_idx_default
+ffffffc00819895c T perf_pmu_unregister
+ffffffc008198a50 T __arm64_sys_perf_event_open
+ffffffc008199ed0 T perf_event_create_kernel_counter
+ffffffc00819a10c t perf_event_alloc
+ffffffc00819a888 t find_get_context
+ffffffc00819abfc t perf_install_in_context
+ffffffc00819ae28 T perf_pmu_migrate_context
+ffffffc00819b1ac T perf_event_exit_task
+ffffffc00819b568 T perf_event_free_task
+ffffffc00819b8c8 T perf_event_delayed_put
+ffffffc00819b900 T perf_event_get
+ffffffc00819b94c T perf_get_event
+ffffffc00819b980 T perf_event_attrs
+ffffffc00819b9a0 T perf_event_init_task
+ffffffc00819bc78 T perf_event_init_cpu
+ffffffc00819bdd8 T perf_event_exit_cpu
+ffffffc00819bf08 T perf_event_sysfs_show
+ffffffc00819bf58 t __static_call_return0
+ffffffc00819bf6c t perf_duration_warn
+ffffffc00819bfd0 t group_sched_out
+ffffffc00819c0e4 t event_sched_out
+ffffffc00819c3b4 t perf_event_set_state
+ffffffc00819c488 t local_clock
+ffffffc00819c4b0 t perf_event_update_time
+ffffffc00819c500 t perf_event_ctx_lock_nested
+ffffffc00819c614 t event_function_call
+ffffffc00819c7ac t event_function
+ffffffc00819c8c4 t remote_function
+ffffffc00819c95c t ctx_sched_out
+ffffffc00819cb40 t ctx_sched_in
+ffffffc00819cc08 t ctx_pinned_sched_in
+ffffffc00819cc8c t ctx_flexible_sched_in
+ffffffc00819cd10 t visit_groups_merge
+ffffffc00819d4c0 t perf_mux_hrtimer_restart
+ffffffc00819d590 t event_sched_in
+ffffffc00819d948 t perf_log_throttle
+ffffffc00819dac4 t __perf_event_enable
+ffffffc00819dcb8 t __perf_pmu_sched_task
+ffffffc00819ddec t perf_adjust_period
+ffffffc00819e02c t __perf_remove_from_context
+ffffffc00819e38c t perf_group_detach
+ffffffc00819e8cc t list_del_event
+ffffffc00819ea1c t _free_event
+ffffffc00819f080 t ring_buffer_attach
+ffffffc00819f2fc t perf_addr_filters_splice
+ffffffc00819f460 t exclusive_event_destroy
+ffffffc00819f500 t free_event_rcu
+ffffffc00819f54c t perf_sched_delayed
+ffffffc00819f5ec t __perf_event_stop
+ffffffc00819f6d0 t free_ctx
+ffffffc00819f720 t perf_event_read
+ffffffc00819f9a8 t __perf_event_read
+ffffffc00819fc18 t __perf_event_period
+ffffffc00819fd6c t perf_event_exit_event
+ffffffc00819ff48 t perf_lock_task_context
+ffffffc0081a00fc t perf_event_task_output
+ffffffc0081a0394 t perf_event_comm_output
+ffffffc0081a05cc t perf_event_mmap_output
+ffffffc0081a0a10 t perf_event_switch_output
+ffffffc0081a0bf8 t perf_tp_event_init
+ffffffc0081a0c68 t perf_swevent_start
+ffffffc0081a0c7c t perf_swevent_stop
+ffffffc0081a0c94 t perf_swevent_read
+ffffffc0081a0ca4 t tp_perf_event_destroy
+ffffffc0081a0cd0 t perf_uprobe_event_init
+ffffffc0081a0d74 t retprobe_show
+ffffffc0081a0da0 t ref_ctr_offset_show
+ffffffc0081a0dcc t pmu_dev_release
+ffffffc0081a0df8 t perf_event_mux_interval_ms_show
+ffffffc0081a0e44 t perf_event_mux_interval_ms_store
+ffffffc0081a0fd8 t perf_mux_hrtimer_handler
+ffffffc0081a140c t perf_copy_attr
+ffffffc0081a1a38 t perf_allow_kernel
+ffffffc0081a1aa4 t perf_event_set_output
+ffffffc0081a1c98 t ktime_get_real_ns
+ffffffc0081a1cc8 t ktime_get_boottime_ns
+ffffffc0081a1cf8 t ktime_get_clocktai_ns
+ffffffc0081a1d28 t perf_pending_irq
+ffffffc0081a1ee8 t perf_pending_task
+ffffffc0081a20c0 t account_event
+ffffffc0081a25d0 t perf_try_init_event
+ffffffc0081a2728 t alloc_perf_context
+ffffffc0081a283c t add_event_to_ctx
+ffffffc0081a2c1c t __perf_install_in_context
+ffffffc0081a2d80 t perf_read
+ffffffc0081a3288 t perf_poll
+ffffffc0081a3390 t perf_ioctl
+ffffffc0081a4210 t perf_mmap
+ffffffc0081a47f4 t perf_release
+ffffffc0081a4828 t perf_fasync
+ffffffc0081a48ac t __perf_read_group_add
+ffffffc0081a4a84 t _perf_event_reset
+ffffffc0081a4acc t perf_event_addr_filters_apply
+ffffffc0081a4df0 t perf_event_modify_breakpoint
+ffffffc0081a4ee8 t get_uid
+ffffffc0081a4f6c t get_uid
+ffffffc0081a4ff0 t get_uid
+ffffffc0081a5074 t perf_event_init_userpage
+ffffffc0081a50f0 t perf_mmap_open
+ffffffc0081a51f8 t perf_mmap_close
+ffffffc0081a56e4 t perf_mmap_fault
+ffffffc0081a57ec t __perf_pmu_output_stop
+ffffffc0081a58a0 t __perf_event_output_stop
+ffffffc0081a5978 t inherit_task_group
+ffffffc0081a5b9c t inherit_event
+ffffffc0081a5ffc t __perf_event_exit_context
+ffffffc0081a60a8 t perf_swevent_init
+ffffffc0081a62e8 t perf_swevent_add
+ffffffc0081a6418 t perf_swevent_del
+ffffffc0081a6444 t sw_perf_event_destroy
+ffffffc0081a6558 t cpu_clock_event_init
+ffffffc0081a6614 t cpu_clock_event_add
+ffffffc0081a66ac t cpu_clock_event_del
+ffffffc0081a6764 t cpu_clock_event_start
+ffffffc0081a67ec t cpu_clock_event_stop
+ffffffc0081a68a4 t cpu_clock_event_read
+ffffffc0081a6938 t perf_swevent_hrtimer
+ffffffc0081a6aec t task_clock_event_init
+ffffffc0081a6bac t task_clock_event_add
+ffffffc0081a6c48 t task_clock_event_del
+ffffffc0081a6d04 t task_clock_event_start
+ffffffc0081a6d88 t task_clock_event_stop
+ffffffc0081a6e44 t task_clock_event_read
+ffffffc0081a6ee8 t perf_reboot
+ffffffc0081a6f64 T perf_output_begin_forward
+ffffffc0081a72e8 T perf_output_begin_backward
+ffffffc0081a7670 T perf_output_begin
+ffffffc0081a7a20 T perf_output_copy
+ffffffc0081a7af4 T perf_output_skip
+ffffffc0081a7b7c T perf_output_end
+ffffffc0081a7ba8 t perf_output_put_handle.llvm.12442962446386139315
+ffffffc0081a7cbc T perf_aux_output_flag
+ffffffc0081a7ce8 T perf_aux_output_begin
+ffffffc0081a7f48 T rb_free_aux
+ffffffc0081a7fd4 T perf_aux_output_end
+ffffffc0081a8160 T perf_aux_output_skip
+ffffffc0081a8240 T perf_get_aux
+ffffffc0081a826c T perf_output_copy_aux
+ffffffc0081a83c8 T rb_alloc_aux
+ffffffc0081a86c4 t __rb_free_aux
+ffffffc0081a87e4 T rb_alloc
+ffffffc0081a8a28 T rb_free
+ffffffc0081a8ae0 T perf_mmap_to_page
+ffffffc0081a8b78 T get_callchain_buffers
+ffffffc0081a8d88 T put_callchain_buffers
+ffffffc0081a8dec T get_callchain_entry
+ffffffc0081a8ee8 T put_callchain_entry
+ffffffc0081a8f1c T get_perf_callchain
+ffffffc0081a9184 T perf_event_max_stack_handler
+ffffffc0081a9270 t release_callchain_buffers_rcu
+ffffffc0081a92fc W arch_reserve_bp_slot
+ffffffc0081a9310 W arch_release_bp_slot
+ffffffc0081a9320 W arch_unregister_hw_breakpoint
+ffffffc0081a9330 T reserve_bp_slot
+ffffffc0081a9384 t bp_constraints_lock
+ffffffc0081a94c8 t __reserve_bp_slot
+ffffffc0081a97e8 t bp_constraints_unlock
+ffffffc0081a998c T release_bp_slot
+ffffffc0081a9a0c T dbg_reserve_bp_slot
+ffffffc0081a9a98 T dbg_release_bp_slot
+ffffffc0081a9b4c T register_perf_hw_breakpoint
+ffffffc0081a9c8c T register_user_hw_breakpoint
+ffffffc0081a9ccc T modify_user_hw_breakpoint_check
+ffffffc0081a9ed4 T modify_user_hw_breakpoint
+ffffffc0081a9f74 T unregister_hw_breakpoint
+ffffffc0081a9fa4 T register_wide_hw_breakpoint
+ffffffc0081aa110 T unregister_wide_hw_breakpoint
+ffffffc0081aa1c0 T hw_breakpoint_is_used
+ffffffc0081aa3d4 t toggle_bp_slot
+ffffffc0081ab350 t task_bp_pinned
+ffffffc0081ab538 t hw_breakpoint_event_init
+ffffffc0081ab5a8 t hw_breakpoint_add
+ffffffc0081ab60c t hw_breakpoint_del
+ffffffc0081ab63c t hw_breakpoint_start
+ffffffc0081ab650 t hw_breakpoint_stop
+ffffffc0081ab668 t bp_perf_event_destroy
+ffffffc0081ab6e8 W is_swbp_insn
+ffffffc0081ab70c W is_trap_insn
+ffffffc0081ab73c T uprobe_write_opcode
+ffffffc0081ac10c t update_ref_ctr
+ffffffc0081ac3ec W set_swbp
+ffffffc0081ac420 W set_orig_insn
+ffffffc0081ac450 T uprobe_unregister
+ffffffc0081ac4c4 t find_uprobe
+ffffffc0081ac5ac t __uprobe_unregister
+ffffffc0081ac6a0 t put_uprobe
+ffffffc0081ac7d8 T uprobe_register
+ffffffc0081ac808 t __uprobe_register.llvm.10656600352853344462
+ffffffc0081acb28 T uprobe_register_refctr
+ffffffc0081acb54 T uprobe_apply
+ffffffc0081acc00 t register_for_each_vma
+ffffffc0081ad0c0 T uprobe_mmap
+ffffffc0081ad5d4 t install_breakpoint
+ffffffc0081ad954 T uprobe_munmap
+ffffffc0081adac0 T uprobe_clear_state
+ffffffc0081adc14 T uprobe_start_dup_mmap
+ffffffc0081add2c T uprobe_end_dup_mmap
+ffffffc0081adeb0 T uprobe_dup_mmap
+ffffffc0081adf34 T uprobe_get_trap_addr
+ffffffc0081adf68 T uprobe_free_utask
+ffffffc0081adfec t xol_free_insn_slot
+ffffffc0081ae108 T uprobe_copy_process
+ffffffc0081ae2e4 t dup_xol_work
+ffffffc0081ae360 T uprobe_deny_signal
+ffffffc0081ae460 W arch_uprobe_ignore
+ffffffc0081ae474 T uprobe_notify_resume
+ffffffc0081af284 T uprobe_pre_sstep_notifier
+ffffffc0081af2f0 T uprobe_post_sstep_notifier
+ffffffc0081af35c t __update_ref_ctr
+ffffffc0081af520 t __create_xol_area
+ffffffc0081af7a0 T jump_label_lock
+ffffffc0081af7d4 T jump_label_unlock
+ffffffc0081af808 T static_key_count
+ffffffc0081af828 T static_key_slow_inc_cpuslocked
+ffffffc0081af950 t jump_label_update
+ffffffc0081afab0 T static_key_slow_inc
+ffffffc0081afaf4 T static_key_enable_cpuslocked
+ffffffc0081afbb8 T static_key_enable
+ffffffc0081afc84 T static_key_disable_cpuslocked
+ffffffc0081afd78 T static_key_disable
+ffffffc0081afdbc T jump_label_update_timeout
+ffffffc0081afe00 T static_key_slow_dec
+ffffffc0081afe70 T static_key_slow_dec_cpuslocked
+ffffffc0081afed4 t __static_key_slow_dec_cpuslocked
+ffffffc0081affe4 T __static_key_slow_dec_deferred
+ffffffc0081b00ec T __static_key_deferred_flush
+ffffffc0081b0154 T jump_label_rate_limit
+ffffffc0081b01f4 T jump_label_init_type
+ffffffc0081b021c T jump_label_text_reserved
+ffffffc0081b03b0 t jump_label_swap
+ffffffc0081b0404 t jump_label_cmp
+ffffffc0081b0474 t jump_label_module_notify
+ffffffc0081b08d4 t __jump_label_update
+ffffffc0081b09e8 t trace_rcu_dyntick
+ffffffc0081b0aa4 t arch_local_irq_save
+ffffffc0081b0ae8 t arch_local_irq_restore
+ffffffc0081b0b00 T ct_irq_enter_irqson
+ffffffc0081b0b6c T ct_irq_exit_irqson
+ffffffc0081b0bd8 T memremap
+ffffffc0081b0e28 T memunmap
+ffffffc0081b0e6c T devm_memremap
+ffffffc0081b0f28 t devm_memremap_release
+ffffffc0081b0f70 T devm_memunmap
+ffffffc0081b0fbc t devm_memremap_match
+ffffffc0081b0fd8 T __traceiter_rseq_update
+ffffffc0081b1058 T __traceiter_rseq_ip_fixup
+ffffffc0081b1100 t trace_event_raw_event_rseq_update
+ffffffc0081b11c0 t perf_trace_rseq_update
+ffffffc0081b12dc t trace_event_raw_event_rseq_ip_fixup
+ffffffc0081b13b0 t perf_trace_rseq_ip_fixup
+ffffffc0081b14dc T __rseq_handle_notify_resume
+ffffffc0081b1fe4 T __arm64_sys_rseq
+ffffffc0081b23a8 t trace_raw_output_rseq_update
+ffffffc0081b241c t trace_raw_output_rseq_ip_fixup
+ffffffc0081b2490 t clear_rseq_cs
+ffffffc0081b25e4 T __traceiter_mm_filemap_delete_from_page_cache
+ffffffc0081b2664 T __traceiter_mm_filemap_add_to_page_cache
+ffffffc0081b26e4 T __traceiter_filemap_set_wb_err
+ffffffc0081b2774 T __traceiter_file_check_and_advance_wb_err
+ffffffc0081b2804 t trace_event_raw_event_mm_filemap_op_page_cache
+ffffffc0081b292c t perf_trace_mm_filemap_op_page_cache
+ffffffc0081b2aa8 t trace_event_raw_event_filemap_set_wb_err
+ffffffc0081b2b90 t perf_trace_filemap_set_wb_err
+ffffffc0081b2cd4 t trace_event_raw_event_file_check_and_advance_wb_err
+ffffffc0081b2dcc t perf_trace_file_check_and_advance_wb_err
+ffffffc0081b2f20 T __filemap_remove_folio
+ffffffc0081b314c t filemap_unaccount_folio
+ffffffc0081b334c T filemap_free_folio
+ffffffc0081b3410 T filemap_remove_folio
+ffffffc0081b3558 T delete_from_page_cache_batch
+ffffffc0081b3974 T filemap_check_errors
+ffffffc0081b3a30 T filemap_fdatawrite_wbc
+ffffffc0081b3a94 T __filemap_fdatawrite_range
+ffffffc0081b3b34 T filemap_fdatawrite
+ffffffc0081b3bd4 T filemap_fdatawrite_range
+ffffffc0081b3c74 T filemap_flush
+ffffffc0081b3d10 T filemap_range_has_page
+ffffffc0081b3de4 T filemap_fdatawait_range
+ffffffc0081b3ec0 t __filemap_fdatawait_range.llvm.11664650538518094531
+ffffffc0081b402c T filemap_fdatawait_range_keep_errors
+ffffffc0081b4084 T file_fdatawait_range
+ffffffc0081b40c8 T file_check_and_advance_wb_err
+ffffffc0081b4298 T filemap_fdatawait_keep_errors
+ffffffc0081b42f8 T filemap_range_has_writeback
+ffffffc0081b4480 T filemap_write_and_wait_range
+ffffffc0081b460c T __filemap_set_wb_err
+ffffffc0081b4724 T file_write_and_wait_range
+ffffffc0081b482c T replace_page_cache_page
+ffffffc0081b4a60 t folio_put
+ffffffc0081b4acc t folio_put
+ffffffc0081b4b38 t folio_put
+ffffffc0081b4ba8 T __filemap_add_folio
+ffffffc0081b5004 T filemap_add_folio
+ffffffc0081b50d4 T filemap_invalidate_lock_two
+ffffffc0081b5130 T filemap_invalidate_unlock_two
+ffffffc0081b5188 T migration_entry_wait_on_locked
+ffffffc0081b5428 t wake_page_function
+ffffffc0081b554c T folio_wait_bit
+ffffffc0081b557c t folio_wait_bit_common.llvm.11664650538518094531
+ffffffc0081b5938 T folio_wait_bit_killable
+ffffffc0081b596c T folio_add_wait_queue
+ffffffc0081b5a54 T folio_unlock
+ffffffc0081b5ab4 t folio_wake_bit
+ffffffc0081b5c0c T folio_end_private_2
+ffffffc0081b5cc4 T folio_wait_private_2
+ffffffc0081b5d1c T folio_wait_private_2_killable
+ffffffc0081b5d80 T folio_end_writeback
+ffffffc0081b5eb8 T page_endio
+ffffffc0081b60b0 T __folio_lock
+ffffffc0081b60e8 T __folio_lock_killable
+ffffffc0081b6120 T __folio_lock_or_retry
+ffffffc0081b6228 T page_cache_next_miss
+ffffffc0081b6324 T page_cache_prev_miss
+ffffffc0081b641c T __filemap_get_folio
+ffffffc0081b6878 T find_get_entries
+ffffffc0081b6948 t find_get_entry
+ffffffc0081b6ac0 T find_lock_entries
+ffffffc0081b6cd4 T filemap_get_folios
+ffffffc0081b6dd0 T filemap_get_folios_contig
+ffffffc0081b7068 T find_get_pages_range_tag
+ffffffc0081b7180 T filemap_read
+ffffffc0081b7d4c T generic_file_read_iter
+ffffffc0081b7ea8 T mapping_seek_hole_data
+ffffffc0081b829c T filemap_fault
+ffffffc0081b88fc t count_vm_event
+ffffffc0081b899c t count_vm_event
+ffffffc0081b8a3c t count_vm_event
+ffffffc0081b8adc t do_sync_mmap_readahead
+ffffffc0081b8da0 t filemap_read_folio
+ffffffc0081b8f0c T filemap_map_pages
+ffffffc0081b94b0 T filemap_page_mkwrite
+ffffffc0081b97ec T generic_file_mmap
+ffffffc0081b9858 T generic_file_readonly_mmap
+ffffffc0081b98e0 T read_cache_folio
+ffffffc0081b990c t do_read_cache_folio.llvm.11664650538518094531
+ffffffc0081b9c3c T read_cache_page
+ffffffc0081b9ca0 T read_cache_page_gfp
+ffffffc0081b9d0c T dio_warn_stale_pagecache
+ffffffc0081b9e00 T generic_file_direct_write
+ffffffc0081ba0ac T generic_perform_write
+ffffffc0081ba2b4 T __generic_file_write_iter
+ffffffc0081ba404 T generic_file_write_iter
+ffffffc0081ba4ec T filemap_release_folio
+ffffffc0081ba56c t trace_raw_output_mm_filemap_op_page_cache
+ffffffc0081ba5f8 t trace_raw_output_filemap_set_wb_err
+ffffffc0081ba678 t trace_raw_output_file_check_and_advance_wb_err
+ffffffc0081ba6f8 t page_mapcount
+ffffffc0081ba74c t filemap_get_read_batch
+ffffffc0081ba9f4 t next_uptodate_page
+ffffffc0081bacec T mempool_exit
+ffffffc0081badf8 t remove_element
+ffffffc0081baeb0 T mempool_destroy
+ffffffc0081baef4 T mempool_init_node
+ffffffc0081bb094 T mempool_init
+ffffffc0081bb0c8 T mempool_create
+ffffffc0081bb16c T mempool_create_node
+ffffffc0081bb244 T mempool_resize
+ffffffc0081bb554 T mempool_alloc
+ffffffc0081bb748 T mempool_free
+ffffffc0081bb8a8 T mempool_alloc_slab
+ffffffc0081bb8e0 T mempool_free_slab
+ffffffc0081bb918 T mempool_kmalloc
+ffffffc0081bb950 T mempool_kfree
+ffffffc0081bb97c T mempool_alloc_pages
+ffffffc0081bb9b8 T mempool_free_pages
+ffffffc0081bb9e4 T __traceiter_oom_score_adj_update
+ffffffc0081bba64 T __traceiter_reclaim_retry_zone
+ffffffc0081bbb2c T __traceiter_mark_victim
+ffffffc0081bbbac T __traceiter_wake_reaper
+ffffffc0081bbc2c T __traceiter_start_task_reaping
+ffffffc0081bbcac T __traceiter_finish_task_reaping
+ffffffc0081bbd2c T __traceiter_skip_task_reaping
+ffffffc0081bbdac T __traceiter_compact_retry
+ffffffc0081bbe6c t trace_event_raw_event_oom_score_adj_update
+ffffffc0081bbf44 t perf_trace_oom_score_adj_update
+ffffffc0081bc070 t trace_event_raw_event_reclaim_retry_zone
+ffffffc0081bc178 t perf_trace_reclaim_retry_zone
+ffffffc0081bc2d0 t trace_event_raw_event_mark_victim
+ffffffc0081bc388 t perf_trace_mark_victim
+ffffffc0081bc494 t trace_event_raw_event_wake_reaper
+ffffffc0081bc54c t perf_trace_wake_reaper
+ffffffc0081bc658 t trace_event_raw_event_start_task_reaping
+ffffffc0081bc710 t perf_trace_start_task_reaping
+ffffffc0081bc81c t trace_event_raw_event_finish_task_reaping
+ffffffc0081bc8d4 t perf_trace_finish_task_reaping
+ffffffc0081bc9e0 t trace_event_raw_event_skip_task_reaping
+ffffffc0081bca98 t perf_trace_skip_task_reaping
+ffffffc0081bcba4 t trace_event_raw_event_compact_retry
+ffffffc0081bccb4 t perf_trace_compact_retry
+ffffffc0081bce1c T find_lock_task_mm
+ffffffc0081bced0 T oom_badness
+ffffffc0081bd094 T process_shares_mm
+ffffffc0081bd100 T exit_oom_victim
+ffffffc0081bd1bc T oom_killer_enable
+ffffffc0081bd1f8 T oom_killer_disable
+ffffffc0081bd390 T register_oom_notifier
+ffffffc0081bd3c8 T unregister_oom_notifier
+ffffffc0081bd400 T out_of_memory
+ffffffc0081bd894 t task_will_free_mem
+ffffffc0081bd9f8 t mark_oom_victim
+ffffffc0081bdc10 t queue_oom_reaper
+ffffffc0081bdd0c t oom_kill_process
+ffffffc0081be32c t dump_header
+ffffffc0081be6e4 T pagefault_out_of_memory
+ffffffc0081be748 T __arm64_sys_process_mrelease
+ffffffc0081be9ec t trace_raw_output_oom_score_adj_update
+ffffffc0081bea68 t trace_raw_output_reclaim_retry_zone
+ffffffc0081beb1c t trace_raw_output_mark_victim
+ffffffc0081beb90 t trace_raw_output_wake_reaper
+ffffffc0081bec04 t trace_raw_output_start_task_reaping
+ffffffc0081bec78 t trace_raw_output_finish_task_reaping
+ffffffc0081becec t trace_raw_output_skip_task_reaping
+ffffffc0081bed60 t trace_raw_output_compact_retry
+ffffffc0081bee20 t oom_reaper
+ffffffc0081bf438 t __oom_reap_task_mm
+ffffffc0081bf578 t wake_oom_reaper
+ffffffc0081bf740 T generic_fadvise
+ffffffc0081bf9bc T vfs_fadvise
+ffffffc0081bfa14 T ksys_fadvise64_64
+ffffffc0081bfae4 T __arm64_sys_fadvise64_64
+ffffffc0081bfbb8 W copy_from_kernel_nofault_allowed
+ffffffc0081bfbcc T copy_from_kernel_nofault
+ffffffc0081bfd88 T copy_to_kernel_nofault
+ffffffc0081bfef8 T strncpy_from_kernel_nofault
+ffffffc0081bffe8 T copy_from_user_nofault
+ffffffc0081c01a8 T copy_to_user_nofault
+ffffffc0081c0368 T strncpy_from_user_nofault
+ffffffc0081c03f8 T strnlen_user_nofault
+ffffffc0081c044c T __copy_overflow
+ffffffc0081c048c T global_dirty_limits
+ffffffc0081c0578 t domain_dirty_limits
+ffffffc0081c06d8 T node_dirty_ok
+ffffffc0081c0894 T wb_writeout_inc
+ffffffc0081c0978 T wb_domain_init
+ffffffc0081c0a18 t writeout_period
+ffffffc0081c0ab4 T bdi_set_min_ratio
+ffffffc0081c0b58 T bdi_set_max_ratio
+ffffffc0081c0bf4 T wb_calc_thresh
+ffffffc0081c0ce4 T wb_update_bandwidth
+ffffffc0081c0d58 t __wb_update_bandwidth
+ffffffc0081c10d8 T balance_dirty_pages_ratelimited_flags
+ffffffc0081c1224 t balance_dirty_pages
+ffffffc0081c1b60 T balance_dirty_pages_ratelimited
+ffffffc0081c1b90 T wb_over_bg_thresh
+ffffffc0081c1d84 T laptop_mode_timer_fn
+ffffffc0081c1dcc T laptop_io_completion
+ffffffc0081c1e14 T laptop_sync_completion
+ffffffc0081c1e7c T writeback_set_ratelimit
+ffffffc0081c1f88 t page_writeback_cpu_online
+ffffffc0081c2098 T tag_pages_for_writeback
+ffffffc0081c2208 T write_cache_pages
+ffffffc0081c2698 T generic_writepages
+ffffffc0081c274c t __writepage
+ffffffc0081c2844 T do_writepages
+ffffffc0081c2a68 T folio_write_one
+ffffffc0081c2bfc T folio_wait_writeback
+ffffffc0081c2cf8 T folio_clear_dirty_for_io
+ffffffc0081c2efc T noop_dirty_folio
+ffffffc0081c2f54 T folio_account_cleaned
+ffffffc0081c3010 T __folio_mark_dirty
+ffffffc0081c3240 T filemap_dirty_folio
+ffffffc0081c32d8 T folio_account_redirty
+ffffffc0081c3398 T folio_redirty_for_writepage
+ffffffc0081c3468 T folio_mark_dirty
+ffffffc0081c3548 T set_page_dirty_lock
+ffffffc0081c3604 T __folio_cancel_dirty
+ffffffc0081c3748 T __folio_end_writeback
+ffffffc0081c3a34 T __folio_start_writeback
+ffffffc0081c3cc8 T folio_wait_writeback_killable
+ffffffc0081c3dcc T folio_wait_stable
+ffffffc0081c3e08 t wb_dirty_limits
+ffffffc0081c3f98 t dirty_background_ratio_handler
+ffffffc0081c3fe0 t dirty_background_bytes_handler
+ffffffc0081c4030 t dirty_ratio_handler
+ffffffc0081c4180 t dirty_bytes_handler
+ffffffc0081c42d8 t dirty_writeback_centisecs_handler
+ffffffc0081c436c T page_mapping
+ffffffc0081c43b0 T unlock_page
+ffffffc0081c43f4 T end_page_writeback
+ffffffc0081c4438 T wait_on_page_writeback
+ffffffc0081c447c T wait_for_stable_page
+ffffffc0081c44c0 T page_mapped
+ffffffc0081c4508 T mark_page_accessed
+ffffffc0081c454c T set_page_writeback
+ffffffc0081c4598 T set_page_dirty
+ffffffc0081c45e0 T __set_page_dirty_nobuffers
+ffffffc0081c4650 T clear_page_dirty_for_io
+ffffffc0081c4698 T redirty_page_for_writepage
+ffffffc0081c46e0 T lru_cache_add
+ffffffc0081c4724 T lru_cache_add_inactive_or_unevictable
+ffffffc0081c4768 T add_to_page_cache_lru
+ffffffc0081c47b8 T pagecache_get_page
+ffffffc0081c4820 T grab_cache_page_write_begin
+ffffffc0081c4854 T delete_from_page_cache
+ffffffc0081c4898 T try_to_release_page
+ffffffc0081c48e0 T isolate_lru_page
+ffffffc0081c4954 T putback_lru_page
+ffffffc0081c4998 T file_ra_state_init
+ffffffc0081c49e4 T readahead_gfp_mask
+ffffffc0081c4a04 T page_cache_ra_unbounded
+ffffffc0081c4c00 t read_pages
+ffffffc0081c4f70 T force_page_cache_ra
+ffffffc0081c504c t do_page_cache_ra
+ffffffc0081c50a8 T page_cache_ra_order
+ffffffc0081c5378 T page_cache_sync_ra
+ffffffc0081c5494 t ondemand_readahead
+ffffffc0081c571c T page_cache_async_ra
+ffffffc0081c5788 T ksys_readahead
+ffffffc0081c5844 T __arm64_sys_readahead
+ffffffc0081c5904 T readahead_expand
+ffffffc0081c5ba4 T __traceiter_mm_lru_insertion
+ffffffc0081c5c24 T __traceiter_mm_lru_activate
+ffffffc0081c5ca4 t trace_event_raw_event_mm_lru_insertion
+ffffffc0081c5e20 t perf_trace_mm_lru_insertion
+ffffffc0081c5ff8 t trace_event_raw_event_mm_lru_activate
+ffffffc0081c60cc t perf_trace_mm_lru_activate
+ffffffc0081c61f4 T __folio_put
+ffffffc0081c6248 T put_pages_list
+ffffffc0081c6370 T get_kernel_pages
+ffffffc0081c6448 T folio_rotate_reclaimable
+ffffffc0081c6568 t lru_move_tail_fn
+ffffffc0081c6870 T lru_note_cost
+ffffffc0081c6960 T lru_note_cost_folio
+ffffffc0081c6a74 T folio_activate
+ffffffc0081c6b9c t folio_activate_fn
+ffffffc0081c6f7c T folio_mark_accessed
+ffffffc0081c71c4 T folio_add_lru
+ffffffc0081c7320 t lru_add_fn
+ffffffc0081c760c T folio_add_lru_vma
+ffffffc0081c7658 T lru_add_drain_cpu
+ffffffc0081c77a8 t folio_batch_move_lru
+ffffffc0081c7924 t lru_deactivate_file_fn
+ffffffc0081c7da8 t lru_deactivate_fn
+ffffffc0081c8100 t lru_lazyfree_fn
+ffffffc0081c8490 T deactivate_file_folio
+ffffffc0081c85a4 T deactivate_page
+ffffffc0081c86f8 T mark_page_lazyfree
+ffffffc0081c8858 T lru_add_drain
+ffffffc0081c88ec T lru_add_drain_cpu_zone
+ffffffc0081c8998 T lru_add_drain_all
+ffffffc0081c89c4 t __lru_add_drain_all.llvm.13199406620676633072
+ffffffc0081c8bf8 T lru_cache_disable
+ffffffc0081c8c64 T release_pages
+ffffffc0081c912c t zone_stat_sub_folio
+ffffffc0081c9190 T __pagevec_release
+ffffffc0081c9250 T folio_batch_remove_exceptionals
+ffffffc0081c92a4 T pagevec_lookup_range_tag
+ffffffc0081c9300 t trace_raw_output_mm_lru_insertion
+ffffffc0081c93fc t trace_raw_output_mm_lru_activate
+ffffffc0081c946c t __page_cache_release
+ffffffc0081c96ec t count_vm_events
+ffffffc0081c9788 t lru_gen_add_folio
+ffffffc0081c9a10 t lru_gen_add_folio
+ffffffc0081c9c98 t lru_gen_update_size
+ffffffc0081c9da4 t lru_gen_update_size
+ffffffc0081c9f58 t lru_gen_update_size
+ffffffc0081ca068 t lru_add_drain_per_cpu
+ffffffc0081ca100 T folio_invalidate
+ffffffc0081ca154 T truncate_inode_folio
+ffffffc0081ca1ac t truncate_cleanup_folio
+ffffffc0081ca288 T truncate_inode_partial_folio
+ffffffc0081ca478 T generic_error_remove_page
+ffffffc0081ca50c T invalidate_inode_page
+ffffffc0081ca5dc T truncate_inode_pages_range
+ffffffc0081cac9c t truncate_folio_batch_exceptionals
+ffffffc0081cae5c T truncate_inode_pages
+ffffffc0081cae8c T truncate_inode_pages_final
+ffffffc0081caf24 T invalidate_mapping_pagevec
+ffffffc0081cb184 T invalidate_mapping_pages
+ffffffc0081cb1b4 T invalidate_inode_pages2_range
+ffffffc0081cb560 T invalidate_inode_pages2
+ffffffc0081cb594 T truncate_pagecache
+ffffffc0081cb618 T truncate_setsize
+ffffffc0081cb6c0 T pagecache_isize_extended
+ffffffc0081cb804 T truncate_pagecache_range
+ffffffc0081cb884 t clear_shadow_entry
+ffffffc0081cb98c T __traceiter_mm_vmscan_kswapd_sleep
+ffffffc0081cba0c T __traceiter_mm_vmscan_kswapd_wake
+ffffffc0081cbaa4 T __traceiter_mm_vmscan_wakeup_kswapd
+ffffffc0081cbb4c T __traceiter_mm_vmscan_direct_reclaim_begin
+ffffffc0081cbbdc T __traceiter_mm_vmscan_direct_reclaim_end
+ffffffc0081cbc5c T __traceiter_mm_shrink_slab_start
+ffffffc0081cbd24 T __traceiter_mm_shrink_slab_end
+ffffffc0081cbde4 T __traceiter_mm_vmscan_lru_isolate
+ffffffc0081cbec4 T __traceiter_mm_vmscan_write_folio
+ffffffc0081cbf44 T __traceiter_mm_vmscan_lru_shrink_inactive
+ffffffc0081cc004 T __traceiter_mm_vmscan_lru_shrink_active
+ffffffc0081cc0cc T __traceiter_mm_vmscan_node_reclaim_begin
+ffffffc0081cc164 T __traceiter_mm_vmscan_node_reclaim_end
+ffffffc0081cc1e4 T __traceiter_mm_vmscan_throttled
+ffffffc0081cc28c t trace_event_raw_event_mm_vmscan_kswapd_sleep
+ffffffc0081cc344 t perf_trace_mm_vmscan_kswapd_sleep
+ffffffc0081cc450 t trace_event_raw_event_mm_vmscan_kswapd_wake
+ffffffc0081cc520 t perf_trace_mm_vmscan_kswapd_wake
+ffffffc0081cc640 t trace_event_raw_event_mm_vmscan_wakeup_kswapd
+ffffffc0081cc71c t perf_trace_mm_vmscan_wakeup_kswapd
+ffffffc0081cc850 t trace_event_raw_event_mm_vmscan_direct_reclaim_begin_template
+ffffffc0081cc914 t perf_trace_mm_vmscan_direct_reclaim_begin_template
+ffffffc0081cca34 t trace_event_raw_event_mm_vmscan_direct_reclaim_end_template
+ffffffc0081ccaec t perf_trace_mm_vmscan_direct_reclaim_end_template
+ffffffc0081ccbf8 t trace_event_raw_event_mm_shrink_slab_start
+ffffffc0081ccd08 t perf_trace_mm_shrink_slab_start
+ffffffc0081cce68 t trace_event_raw_event_mm_shrink_slab_end
+ffffffc0081ccf60 t perf_trace_mm_shrink_slab_end
+ffffffc0081cd0b0 t trace_event_raw_event_mm_vmscan_lru_isolate
+ffffffc0081cd1ac t perf_trace_mm_vmscan_lru_isolate
+ffffffc0081cd2fc t trace_event_raw_event_mm_vmscan_write_folio
+ffffffc0081cd3e4 t perf_trace_mm_vmscan_write_folio
+ffffffc0081cd520 t trace_event_raw_event_mm_vmscan_lru_shrink_inactive
+ffffffc0081cd654 t perf_trace_mm_vmscan_lru_shrink_inactive
+ffffffc0081cd7e0 t trace_event_raw_event_mm_vmscan_lru_shrink_active
+ffffffc0081cd8e4 t perf_trace_mm_vmscan_lru_shrink_active
+ffffffc0081cda38 t trace_event_raw_event_mm_vmscan_node_reclaim_begin
+ffffffc0081cdb0c t perf_trace_mm_vmscan_node_reclaim_begin
+ffffffc0081cdc30 t trace_event_raw_event_mm_vmscan_throttled
+ffffffc0081cdd0c t perf_trace_mm_vmscan_throttled
+ffffffc0081cde40 T zone_reclaimable_pages
+ffffffc0081ce044 T prealloc_shrinker
+ffffffc0081ce0c4 T free_prealloced_shrinker
+ffffffc0081ce128 T register_shrinker_prepared
+ffffffc0081ce1b8 T register_shrinker
+ffffffc0081ce294 T unregister_shrinker
+ffffffc0081ce334 T synchronize_shrinkers
+ffffffc0081ce37c T drop_slab
+ffffffc0081ce3ec T reclaim_throttle
+ffffffc0081ce790 T __acct_reclaim_writeback
+ffffffc0081ce840 T remove_mapping
+ffffffc0081ce8a0 t __remove_mapping
+ffffffc0081ceaec T folio_putback_lru
+ffffffc0081ceb70 T reclaim_clean_pages_from_list
+ffffffc0081ced90 t shrink_folio_list
+ffffffc0081cfc58 T folio_isolate_lru
+ffffffc0081cfeb8 T reclaim_pages
+ffffffc0081d0118 T lru_gen_add_mm
+ffffffc0081d01b4 T lru_gen_del_mm
+ffffffc0081d026c T lru_gen_look_around
+ffffffc0081d0868 T lru_gen_init_lruvec
+ffffffc0081d0a44 T try_to_free_pages
+ffffffc0081d1338 T kswapd
+ffffffc0081d25c4 T wakeup_kswapd
+ffffffc0081d27f8 t pgdat_balanced
+ffffffc0081d29a8 T kswapd_run
+ffffffc0081d2a80 T kswapd_stop
+ffffffc0081d2ae0 T check_move_unevictable_pages
+ffffffc0081d2bd4 T check_move_unevictable_folios
+ffffffc0081d30a4 t trace_raw_output_mm_vmscan_kswapd_sleep
+ffffffc0081d3118 t trace_raw_output_mm_vmscan_kswapd_wake
+ffffffc0081d3190 t trace_raw_output_mm_vmscan_wakeup_kswapd
+ffffffc0081d3240 t trace_raw_output_mm_vmscan_direct_reclaim_begin_template
+ffffffc0081d32e8 t trace_raw_output_mm_vmscan_direct_reclaim_end_template
+ffffffc0081d335c t trace_raw_output_mm_shrink_slab_start
+ffffffc0081d3440 t trace_raw_output_mm_shrink_slab_end
+ffffffc0081d34d4 t trace_raw_output_mm_vmscan_lru_isolate
+ffffffc0081d35a8 t trace_raw_output_mm_vmscan_write_folio
+ffffffc0081d3670 t trace_raw_output_mm_vmscan_lru_shrink_inactive
+ffffffc0081d3798 t trace_raw_output_mm_vmscan_lru_shrink_active
+ffffffc0081d387c t trace_raw_output_mm_vmscan_node_reclaim_begin
+ffffffc0081d3928 t trace_raw_output_mm_vmscan_throttled
+ffffffc0081d39e0 t shrink_slab
+ffffffc0081d3f34 t folio_trylock
+ffffffc0081d3f8c t show_min_ttl
+ffffffc0081d3fdc t store_min_ttl
+ffffffc0081d4070 t show_enabled
+ffffffc0081d40e0 t store_enabled
+ffffffc0081d4748 t lru_gen_seq_write
+ffffffc0081d6e90 t lru_gen_seq_open
+ffffffc0081d6ec4 t try_to_inc_max_seq
+ffffffc0081d7758 t walk_pud_range
+ffffffc0081d7fd4 t should_skip_vma
+ffffffc0081d80a4 t reset_batch_size
+ffffffc0081d8304 t get_next_vma
+ffffffc0081d84c4 t walk_pmd_range_locked
+ffffffc0081d8968 t reset_ctrl_pos
+ffffffc0081d8aac t move_folios_to_lru
+ffffffc0081d8de8 t lru_gen_seq_start
+ffffffc0081d8e54 t lru_gen_seq_stop
+ffffffc0081d8e94 t lru_gen_seq_next
+ffffffc0081d8eb4 t lru_gen_seq_show
+ffffffc0081d9584 t allow_direct_reclaim
+ffffffc0081d9708 t shrink_node
+ffffffc0081dc608 t shrink_active_list
+ffffffc0081dca94 t isolate_lru_folios
+ffffffc0081dd040 t prepare_kswapd_sleep
+ffffffc0081dd194 T vma_is_shmem
+ffffffc0081dd1b8 T shmem_charge
+ffffffc0081dd328 t shmem_recalc_inode
+ffffffc0081dd3cc T shmem_uncharge
+ffffffc0081dd4f0 T shmem_is_huge
+ffffffc0081dd5a8 T shmem_partial_swap_usage
+ffffffc0081dd720 T shmem_swap_usage
+ffffffc0081dd79c T shmem_unlock_mapping
+ffffffc0081dd864 T shmem_truncate_range
+ffffffc0081dd8b8 t shmem_undo_range
+ffffffc0081ddfa0 T shmem_unuse
+ffffffc0081de48c T shmem_get_folio
+ffffffc0081de4c8 t shmem_get_folio_gfp
+ffffffc0081dee34 T shmem_get_unmapped_area
+ffffffc0081defec T shmem_lock
+ffffffc0081df0ec T shmem_mfill_atomic_pte
+ffffffc0081df6d8 t shmem_add_to_page_cache
+ffffffc0081dfa38 t shmem_writepage.llvm.16762457728046073858
+ffffffc0081dff80 t shmem_write_begin.llvm.16762457728046073858
+ffffffc0081e0074 t shmem_write_end.llvm.16762457728046073858
+ffffffc0081e0328 t shmem_error_remove_page.llvm.16762457728046073858
+ffffffc0081e033c T shmem_init_fs_context
+ffffffc0081e03cc t shmem_enabled_show
+ffffffc0081e053c t shmem_enabled_store
+ffffffc0081e0718 T shmem_kernel_file_setup
+ffffffc0081e0758 t __shmem_file_setup.llvm.16762457728046073858
+ffffffc0081e089c T shmem_file_setup
+ffffffc0081e08e0 T shmem_file_setup_with_mnt
+ffffffc0081e0910 T shmem_zero_setup
+ffffffc0081e0998 T shmem_read_mapping_page_gfp
+ffffffc0081e0a6c T reclaim_shmem_address_space
+ffffffc0081e0c48 t shmem_swapin_folio
+ffffffc0081e118c t shmem_replace_folio
+ffffffc0081e14a0 t shmem_alloc_and_acct_folio
+ffffffc0081e17cc t shmem_unused_huge_shrink
+ffffffc0081e1c24 t shmem_fault.llvm.16762457728046073858
+ffffffc0081e1df4 t synchronous_wake_function
+ffffffc0081e1e5c t maybe_unlock_mmap_for_io
+ffffffc0081e1f14 t shmem_free_fc
+ffffffc0081e1f48 t shmem_parse_one
+ffffffc0081e21b8 t shmem_parse_options
+ffffffc0081e229c t shmem_get_tree
+ffffffc0081e22d0 t shmem_reconfigure
+ffffffc0081e2474 t shmem_fill_super
+ffffffc0081e2694 t shmem_get_inode
+ffffffc0081e29fc t shmem_put_super
+ffffffc0081e2a50 t shmem_encode_fh
+ffffffc0081e2b08 t shmem_fh_to_dentry
+ffffffc0081e2b90 t shmem_get_parent
+ffffffc0081e2ba4 t shmem_match
+ffffffc0081e2be0 t shmem_alloc_inode
+ffffffc0081e2c28 t shmem_destroy_inode
+ffffffc0081e2c38 t shmem_free_in_core_inode
+ffffffc0081e2c94 t shmem_evict_inode
+ffffffc0081e2f8c t shmem_statfs
+ffffffc0081e3038 t shmem_show_options
+ffffffc0081e31d0 t shmem_unused_huge_count
+ffffffc0081e31f0 t shmem_unused_huge_scan
+ffffffc0081e323c t shmem_getattr
+ffffffc0081e3420 t shmem_setattr
+ffffffc0081e3604 t shmem_file_llseek
+ffffffc0081e36d8 t shmem_file_read_iter
+ffffffc0081e3a14 t shmem_mmap
+ffffffc0081e3b24 t shmem_fallocate
+ffffffc0081e3f50 t shmem_create
+ffffffc0081e3f84 t shmem_link
+ffffffc0081e407c t shmem_unlink
+ffffffc0081e4154 t shmem_symlink
+ffffffc0081e43f8 t shmem_mkdir
+ffffffc0081e444c t shmem_rmdir
+ffffffc0081e44b8 t shmem_mknod
+ffffffc0081e45ac t shmem_rename2
+ffffffc0081e475c t shmem_tmpfile
+ffffffc0081e4828 t shmem_get_link
+ffffffc0081e4980 t shmem_put_link
+ffffffc0081e4a04 t shmem_init_inode
+ffffffc0081e4a34 T kfree_const
+ffffffc0081e4a84 T kstrdup
+ffffffc0081e4b20 T kstrdup_const
+ffffffc0081e4be0 T kstrndup
+ffffffc0081e4c80 T kmemdup
+ffffffc0081e4d00 T kmemdup_nul
+ffffffc0081e4d90 T memdup_user
+ffffffc0081e4f90 T vmemdup_user
+ffffffc0081e5240 T kvfree
+ffffffc0081e5290 T strndup_user
+ffffffc0081e5310 T memdup_user_nul
+ffffffc0081e5514 T vma_is_stack_for_current
+ffffffc0081e556c T vma_set_file
+ffffffc0081e55d4 T randomize_stack_top
+ffffffc0081e5630 T randomize_page
+ffffffc0081e56a0 W arch_randomize_brk
+ffffffc0081e5718 T arch_mmap_rnd
+ffffffc0081e575c T arch_pick_mmap_layout
+ffffffc0081e5874 T __account_locked_vm
+ffffffc0081e58d8 T account_locked_vm
+ffffffc0081e59fc T vm_mmap_pgoff
+ffffffc0081e5b84 T vm_mmap
+ffffffc0081e5bdc T kvmalloc_node
+ffffffc0081e5cec T kvfree_sensitive
+ffffffc0081e5d54 T kvrealloc
+ffffffc0081e5ec4 T __vmalloc_array
+ffffffc0081e5f0c T vmalloc_array
+ffffffc0081e5f54 T __vcalloc
+ffffffc0081e5f9c T vcalloc
+ffffffc0081e5fe4 T page_rmapping
+ffffffc0081e6014 T folio_mapped
+ffffffc0081e60b4 T folio_anon_vma
+ffffffc0081e60d8 T folio_mapping
+ffffffc0081e6144 T __page_mapcount
+ffffffc0081e61b8 T folio_mapcount
+ffffffc0081e6268 T folio_copy
+ffffffc0081e62d8 T overcommit_ratio_handler
+ffffffc0081e6344 T overcommit_policy_handler
+ffffffc0081e6418 t sync_overcommit_as
+ffffffc0081e644c T overcommit_kbytes_handler
+ffffffc0081e649c T vm_commit_limit
+ffffffc0081e64fc T vm_memory_committed
+ffffffc0081e6538 T __vm_enough_memory
+ffffffc0081e66d0 T get_cmdline
+ffffffc0081e6818 T mem_dump_obj
+ffffffc0081e68e4 T page_offline_freeze
+ffffffc0081e6918 T page_offline_thaw
+ffffffc0081e694c T page_offline_begin
+ffffffc0081e6980 T page_offline_end
+ffffffc0081e69b4 T flush_dcache_folio
+ffffffc0081e6a14 T first_online_pgdat
+ffffffc0081e6a2c T next_online_pgdat
+ffffffc0081e6a40 T next_zone
+ffffffc0081e6a68 T __next_zones_zonelist
+ffffffc0081e6aa4 T lruvec_init
+ffffffc0081e6b50 T gfp_zone
+ffffffc0081e6b74 T all_vm_events
+ffffffc0081e6c48 T vm_events_fold_cpu
+ffffffc0081e6d30 T calculate_pressure_threshold
+ffffffc0081e6d74 T calculate_normal_threshold
+ffffffc0081e6ddc T refresh_zone_stat_thresholds
+ffffffc0081e6fa0 T set_pgdat_percpu_threshold
+ffffffc0081e70b8 T __mod_zone_page_state
+ffffffc0081e7140 t zone_page_state_add
+ffffffc0081e71c0 T __mod_node_page_state
+ffffffc0081e724c t node_page_state_add
+ffffffc0081e72e0 T __inc_zone_state
+ffffffc0081e7380 T __inc_node_state
+ffffffc0081e7414 T __inc_zone_page_state
+ffffffc0081e751c T __inc_node_page_state
+ffffffc0081e7614 T __dec_zone_state
+ffffffc0081e76b8 T __dec_node_state
+ffffffc0081e7750 T __dec_zone_page_state
+ffffffc0081e785c T __dec_node_page_state
+ffffffc0081e7958 T mod_zone_page_state
+ffffffc0081e7984 t mod_zone_state.llvm.2216499548622920038
+ffffffc0081e7bdc T inc_zone_page_state
+ffffffc0081e7c28 T dec_zone_page_state
+ffffffc0081e7c74 T mod_node_page_state
+ffffffc0081e7ca0 t mod_node_state.llvm.2216499548622920038
+ffffffc0081e7f34 T inc_node_state
+ffffffc0081e7f68 T inc_node_page_state
+ffffffc0081e7fa4 T dec_node_page_state
+ffffffc0081e7fe0 T cpu_vm_stats_fold
+ffffffc0081e824c T drain_zonestat
+ffffffc0081e82e4 T extfrag_for_order
+ffffffc0081e8470 T fragmentation_index
+ffffffc0081e8674 T vmstat_refresh
+ffffffc0081e8934 t refresh_vm_stats
+ffffffc0081e8960 T quiet_vmstat
+ffffffc0081e8a64 t refresh_cpu_vm_stats
+ffffffc0081e8db0 t vmstat_cpu_dead
+ffffffc0081e8df4 t vmstat_cpu_online
+ffffffc0081e8e24 t vmstat_cpu_down_prep
+ffffffc0081e8e7c t vmstat_update
+ffffffc0081e8f04 t vmstat_shepherd
+ffffffc0081e9084 t frag_start
+ffffffc0081e90a8 t frag_stop
+ffffffc0081e90b8 t frag_next
+ffffffc0081e90d8 t frag_show
+ffffffc0081e910c t walk_zones_in_node
+ffffffc0081e929c t frag_show_print
+ffffffc0081e93b4 t pagetypeinfo_show
+ffffffc0081e96d0 t pagetypeinfo_showfree_print
+ffffffc0081e9814 t pagetypeinfo_showblockcount_print
+ffffffc0081e99f4 t vmstat_start
+ffffffc0081e9c90 t vmstat_stop
+ffffffc0081e9cd0 t vmstat_next
+ffffffc0081e9d08 t vmstat_show
+ffffffc0081e9dbc t zoneinfo_show
+ffffffc0081e9ecc t zoneinfo_show_print
+ffffffc0081ea354 t unusable_open
+ffffffc0081ea3b0 t unusable_show
+ffffffc0081ea3f0 t unusable_show_print
+ffffffc0081ea5f0 t extfrag_open
+ffffffc0081ea64c t extfrag_show
+ffffffc0081ea684 t extfrag_show_print
+ffffffc0081ea8c8 T wb_wakeup_delayed
+ffffffc0081ea950 T bdi_init
+ffffffc0081eabcc T bdi_alloc
+ffffffc0081eac68 T bdi_get_by_id
+ffffffc0081ead4c T bdi_register_va
+ffffffc0081eb00c T bdi_register
+ffffffc0081eb094 T bdi_set_owner
+ffffffc0081eb0dc T bdi_unregister
+ffffffc0081eb268 T bdi_put
+ffffffc0081eb35c T inode_to_bdi
+ffffffc0081eb3a8 T bdi_dev_name
+ffffffc0081eb3dc t read_ahead_kb_show
+ffffffc0081eb428 t read_ahead_kb_store
+ffffffc0081eb4c0 t min_ratio_show
+ffffffc0081eb508 t min_ratio_store
+ffffffc0081eb5a8 t max_ratio_show
+ffffffc0081eb5f0 t max_ratio_store
+ffffffc0081eb690 t stable_pages_required_show
+ffffffc0081eb700 t wb_update_bandwidth_workfn
+ffffffc0081eb730 t bdi_debug_stats_open
+ffffffc0081eb770 t bdi_debug_stats_show
+ffffffc0081eb960 T mm_compute_batch
+ffffffc0081eba00 T __traceiter_percpu_alloc_percpu
+ffffffc0081ebaf0 T __traceiter_percpu_free_percpu
+ffffffc0081ebb88 T __traceiter_percpu_alloc_percpu_fail
+ffffffc0081ebc30 T __traceiter_percpu_create_chunk
+ffffffc0081ebcb0 T __traceiter_percpu_destroy_chunk
+ffffffc0081ebd30 t trace_event_raw_event_percpu_alloc_percpu
+ffffffc0081ebe50 t perf_trace_percpu_alloc_percpu
+ffffffc0081ebfbc t trace_event_raw_event_percpu_free_percpu
+ffffffc0081ec090 t perf_trace_percpu_free_percpu
+ffffffc0081ec1b4 t trace_event_raw_event_percpu_alloc_percpu_fail
+ffffffc0081ec294 t perf_trace_percpu_alloc_percpu_fail
+ffffffc0081ec3cc t trace_event_raw_event_percpu_create_chunk
+ffffffc0081ec484 t perf_trace_percpu_create_chunk
+ffffffc0081ec590 t trace_event_raw_event_percpu_destroy_chunk
+ffffffc0081ec648 t perf_trace_percpu_destroy_chunk
+ffffffc0081ec754 T __alloc_percpu_gfp
+ffffffc0081ec784 t pcpu_alloc.llvm.4549090352606668736
+ffffffc0081ed064 T __alloc_percpu
+ffffffc0081ed098 T __alloc_reserved_percpu
+ffffffc0081ed0cc T free_percpu
+ffffffc0081ed69c t pcpu_free_area
+ffffffc0081eda38 T __is_kernel_percpu_address
+ffffffc0081edb30 T is_kernel_percpu_address
+ffffffc0081edbf4 T per_cpu_ptr_to_phys
+ffffffc0081edd60 t pcpu_dump_alloc_info
+ffffffc0081ee03c t pcpu_chunk_relocate
+ffffffc0081ee19c T pcpu_nr_pages
+ffffffc0081ee1c0 t trace_raw_output_percpu_alloc_percpu
+ffffffc0081ee2d0 t trace_raw_output_percpu_free_percpu
+ffffffc0081ee34c t trace_raw_output_percpu_alloc_percpu_fail
+ffffffc0081ee3c8 t trace_raw_output_percpu_create_chunk
+ffffffc0081ee43c t trace_raw_output_percpu_destroy_chunk
+ffffffc0081ee4ac t pcpu_find_block_fit
+ffffffc0081ee640 t pcpu_alloc_area
+ffffffc0081ee904 t pcpu_create_chunk
+ffffffc0081eec20 t pcpu_populate_chunk
+ffffffc0081ef09c t pcpu_next_fit_region
+ffffffc0081ef1dc t pcpu_block_update_hint_alloc
+ffffffc0081ef590 t pcpu_block_update
+ffffffc0081ef6a8 t pcpu_block_refresh_hint
+ffffffc0081ef790 t pcpu_chunk_refresh_hint
+ffffffc0081ef944 t pcpu_balance_workfn
+ffffffc0081efe94 t pcpu_balance_free
+ffffffc0081f01e4 t pcpu_depopulate_chunk
+ffffffc0081f0428 T __traceiter_kmem_cache_alloc
+ffffffc0081f04d8 T __traceiter_kmalloc
+ffffffc0081f0598 T __traceiter_kfree
+ffffffc0081f0628 T __traceiter_kmem_cache_free
+ffffffc0081f06c0 T __traceiter_mm_page_free
+ffffffc0081f0750 T __traceiter_mm_page_free_batched
+ffffffc0081f07d0 T __traceiter_mm_page_alloc
+ffffffc0081f0878 T __traceiter_mm_page_alloc_zone_locked
+ffffffc0081f0920 T __traceiter_mm_page_pcpu_drain
+ffffffc0081f09b8 T __traceiter_mm_page_alloc_extfrag
+ffffffc0081f0a68 T __traceiter_rss_stat
+ffffffc0081f0b00 t trace_event_raw_event_kmem_cache_alloc
+ffffffc0081f0bf8 t perf_trace_kmem_cache_alloc
+ffffffc0081f0d40 t trace_event_raw_event_kmalloc
+ffffffc0081f0e30 t perf_trace_kmalloc
+ffffffc0081f0f78 t trace_event_raw_event_kfree
+ffffffc0081f1034 t perf_trace_kfree
+ffffffc0081f114c t trace_event_raw_event_kmem_cache_free
+ffffffc0081f1258 t perf_trace_kmem_cache_free
+ffffffc0081f13d8 t trace_event_raw_event_mm_page_free
+ffffffc0081f14b4 t perf_trace_mm_page_free
+ffffffc0081f15ec t trace_event_raw_event_mm_page_free_batched
+ffffffc0081f16c0 t perf_trace_mm_page_free_batched
+ffffffc0081f17e8 t trace_event_raw_event_mm_page_alloc
+ffffffc0081f18f0 t perf_trace_mm_page_alloc
+ffffffc0081f1a50 t trace_event_raw_event_mm_page
+ffffffc0081f1b50 t perf_trace_mm_page
+ffffffc0081f1ca8 t trace_event_raw_event_mm_page_pcpu_drain
+ffffffc0081f1da0 t perf_trace_mm_page_pcpu_drain
+ffffffc0081f1ee8 t trace_event_raw_event_mm_page_alloc_extfrag
+ffffffc0081f2004 t perf_trace_mm_page_alloc_extfrag
+ffffffc0081f217c t trace_event_raw_event_rss_stat
+ffffffc0081f2284 t perf_trace_rss_stat
+ffffffc0081f23e8 T kmem_cache_size
+ffffffc0081f23fc T slab_unmergeable
+ffffffc0081f2454 T find_mergeable
+ffffffc0081f25c0 T kmem_cache_create_usercopy
+ffffffc0081f288c T kmem_cache_create
+ffffffc0081f28c4 T slab_kmem_cache_release
+ffffffc0081f2914 T kmem_cache_destroy
+ffffffc0081f2ab4 T kmem_cache_shrink
+ffffffc0081f2b00 T slab_is_available
+ffffffc0081f2b20 T kmem_valid_obj
+ffffffc0081f2bcc T kmem_dump_obj
+ffffffc0081f3060 T kmalloc_slab
+ffffffc0081f310c T kmalloc_size_roundup
+ffffffc0081f31b4 T free_large_kmalloc
+ffffffc0081f328c T __kmalloc_node
+ffffffc0081f3508 T __kmalloc
+ffffffc0081f3778 T __kmalloc_node_track_caller
+ffffffc0081f39d8 T kfree
+ffffffc0081f3b70 T __ksize
+ffffffc0081f3c9c T kmalloc_trace
+ffffffc0081f3e28 t trace_kmalloc
+ffffffc0081f3f4c T kmalloc_node_trace
+ffffffc0081f40d0 T kmalloc_fix_flags
+ffffffc0081f415c T kmalloc_large
+ffffffc0081f42d0 t __kmalloc_large_node
+ffffffc0081f444c T kmalloc_large_node
+ffffffc0081f45c4 T cache_random_seq_create
+ffffffc0081f4730 T cache_random_seq_destroy
+ffffffc0081f4770 T dump_unreclaimable_slab
+ffffffc0081f4898 T krealloc
+ffffffc0081f49dc T kfree_sensitive
+ffffffc0081f4a7c T ksize
+ffffffc0081f4b0c T should_failslab
+ffffffc0081f4b20 t trace_raw_output_kmem_cache_alloc
+ffffffc0081f4c14 t trace_raw_output_kmalloc
+ffffffc0081f4cf4 t trace_raw_output_kfree
+ffffffc0081f4d68 t trace_raw_output_kmem_cache_free
+ffffffc0081f4de4 t trace_raw_output_mm_page_free
+ffffffc0081f4e78 t trace_raw_output_mm_page_free_batched
+ffffffc0081f4f00 t trace_raw_output_mm_page_alloc
+ffffffc0081f4fec t trace_raw_output_mm_page
+ffffffc0081f5090 t trace_raw_output_mm_page_pcpu_drain
+ffffffc0081f5124 t trace_raw_output_mm_page_alloc_extfrag
+ffffffc0081f51e0 t trace_raw_output_rss_stat
+ffffffc0081f5280 t slab_caches_to_rcu_destroy_workfn
+ffffffc0081f5388 t slabinfo_open
+ffffffc0081f53c0 t slab_start
+ffffffc0081f5410 t slab_stop
+ffffffc0081f5444 t slab_next
+ffffffc0081f547c t slab_show
+ffffffc0081f55c0 T __traceiter_mm_compaction_isolate_migratepages
+ffffffc0081f5668 T __traceiter_mm_compaction_isolate_freepages
+ffffffc0081f5710 T __traceiter_mm_compaction_migratepages
+ffffffc0081f57a0 T __traceiter_mm_compaction_begin
+ffffffc0081f5848 T __traceiter_mm_compaction_end
+ffffffc0081f58f8 T __traceiter_mm_compaction_try_to_compact_pages
+ffffffc0081f5990 T __traceiter_mm_compaction_finished
+ffffffc0081f5a28 T __traceiter_mm_compaction_suitable
+ffffffc0081f5ac0 T __traceiter_mm_compaction_deferred
+ffffffc0081f5b50 T __traceiter_mm_compaction_defer_compaction
+ffffffc0081f5be0 T __traceiter_mm_compaction_defer_reset
+ffffffc0081f5c70 T __traceiter_mm_compaction_kcompactd_sleep
+ffffffc0081f5cf0 T __traceiter_mm_compaction_wakeup_kcompactd
+ffffffc0081f5d88 T __traceiter_mm_compaction_kcompactd_wake
+ffffffc0081f5e20 t trace_event_raw_event_mm_compaction_isolate_template
+ffffffc0081f5ef4 t perf_trace_mm_compaction_isolate_template
+ffffffc0081f6020 t trace_event_raw_event_mm_compaction_migratepages
+ffffffc0081f60ec t perf_trace_mm_compaction_migratepages
+ffffffc0081f6214 t trace_event_raw_event_mm_compaction_begin
+ffffffc0081f62fc t perf_trace_mm_compaction_begin
+ffffffc0081f643c t trace_event_raw_event_mm_compaction_end
+ffffffc0081f6534 t perf_trace_mm_compaction_end
+ffffffc0081f667c t trace_event_raw_event_mm_compaction_try_to_compact_pages
+ffffffc0081f6754 t perf_trace_mm_compaction_try_to_compact_pages
+ffffffc0081f687c t trace_event_raw_event_mm_compaction_suitable_template
+ffffffc0081f6968 t perf_trace_mm_compaction_suitable_template
+ffffffc0081f6aa4 t trace_event_raw_event_mm_compaction_defer_template
+ffffffc0081f6b94 t perf_trace_mm_compaction_defer_template
+ffffffc0081f6ce0 t trace_event_raw_event_mm_compaction_kcompactd_sleep
+ffffffc0081f6d98 t perf_trace_mm_compaction_kcompactd_sleep
+ffffffc0081f6ea4 t trace_event_raw_event_kcompactd_wake_template
+ffffffc0081f6f74 t perf_trace_kcompactd_wake_template
+ffffffc0081f7094 T PageMovable
+ffffffc0081f70b8 T __SetPageMovable
+ffffffc0081f70d0 T __ClearPageMovable
+ffffffc0081f70e8 T compaction_defer_reset
+ffffffc0081f7214 T reset_isolation_suitable
+ffffffc0081f73a8 T isolate_freepages_range
+ffffffc0081f7554 t isolate_freepages_block
+ffffffc0081f7a4c t split_map_pages
+ffffffc0081f7ba4 T isolate_and_split_free_page
+ffffffc0081f7c5c T isolate_migratepages_range
+ffffffc0081f7d58 t isolate_migratepages_block
+ffffffc0081f8d90 T compaction_suitable
+ffffffc0081f8f84 T compaction_zonelist_suitable
+ffffffc0081f9168 T try_to_compact_pages
+ffffffc0081f9484 t compaction_deferred
+ffffffc0081f95d8 t defer_compaction
+ffffffc0081f9718 T compaction_proactiveness_sysctl_handler
+ffffffc0081f9798 T sysctl_compaction_handler
+ffffffc0081f98d0 T wakeup_kcompactd
+ffffffc0081f9b60 T kcompactd_run
+ffffffc0081f9c08 t kcompactd
+ffffffc0081fa5fc T kcompactd_stop
+ffffffc0081fa640 t trace_raw_output_mm_compaction_isolate_template
+ffffffc0081fa6b8 t trace_raw_output_mm_compaction_migratepages
+ffffffc0081fa72c t trace_raw_output_mm_compaction_begin
+ffffffc0081fa7c0 t trace_raw_output_mm_compaction_end
+ffffffc0081fa890 t trace_raw_output_mm_compaction_try_to_compact_pages
+ffffffc0081fa93c t trace_raw_output_mm_compaction_suitable_template
+ffffffc0081faa00 t trace_raw_output_mm_compaction_defer_template
+ffffffc0081faa9c t trace_raw_output_mm_compaction_kcompactd_sleep
+ffffffc0081fab10 t trace_raw_output_kcompactd_wake_template
+ffffffc0081faba8 t __reset_isolation_pfn
+ffffffc0081fadd8 t compact_zone
+ffffffc0081fbf38 t compaction_alloc
+ffffffc0081fc824 t compaction_free
+ffffffc0081fc894 t kcompactd_cpu_online
+ffffffc0081fc904 T vma_interval_tree_insert
+ffffffc0081fc9c4 T vma_interval_tree_remove
+ffffffc0081fcc9c T vma_interval_tree_iter_first
+ffffffc0081fcd34 T vma_interval_tree_iter_next
+ffffffc0081fce08 T vma_interval_tree_insert_after
+ffffffc0081fceac T anon_vma_interval_tree_insert
+ffffffc0081fcf74 T anon_vma_interval_tree_remove
+ffffffc0081fd258 T anon_vma_interval_tree_iter_first
+ffffffc0081fd2ec T anon_vma_interval_tree_iter_next
+ffffffc0081fd3c0 t vma_interval_tree_augment_rotate
+ffffffc0081fd418 t __anon_vma_interval_tree_augment_rotate
+ffffffc0081fd474 T list_lru_add
+ffffffc0081fd530 T list_lru_del
+ffffffc0081fd5dc T list_lru_isolate
+ffffffc0081fd640 T list_lru_isolate_move
+ffffffc0081fd6cc T list_lru_count_one
+ffffffc0081fd740 T list_lru_count_node
+ffffffc0081fd760 T list_lru_walk_one
+ffffffc0081fd7ec t __list_lru_walk_one
+ffffffc0081fd9b8 T list_lru_walk_one_irq
+ffffffc0081fda48 T list_lru_walk_node
+ffffffc0081fdad8 T __list_lru_init
+ffffffc0081fdb4c T list_lru_destroy
+ffffffc0081fdb90 T workingset_age_nonresident
+ffffffc0081fdbd0 T workingset_eviction
+ffffffc0081fdd68 T workingset_refault
+ffffffc0081fe0c0 T workingset_activation
+ffffffc0081fe144 T workingset_update_node
+ffffffc0081fe230 t count_shadow_nodes
+ffffffc0081fe28c t scan_shadow_nodes
+ffffffc0081fe2dc t shadow_lru_isolate
+ffffffc0081fe468 T dump_page
+ffffffc0081fe768 T try_grab_folio
+ffffffc0081fea2c T try_grab_page
+ffffffc0081feb9c T unpin_user_page
+ffffffc0081fec90 T unpin_user_pages_dirty_lock
+ffffffc0081fee78 T unpin_user_pages
+ffffffc0081feff4 T unpin_user_page_range_dirty_lock
+ffffffc0081ff1dc T follow_page
+ffffffc0081ff36c t follow_page_mask
+ffffffc0081ff674 T fixup_user_fault
+ffffffc0081ff8e0 T populate_vma_page_range
+ffffffc0081ff960 t __get_user_pages
+ffffffc0081ffdb4 T faultin_vma_page_range
+ffffffc0081ffe54 T __mm_populate
+ffffffc008200044 T fault_in_writeable
+ffffffc008200364 T fault_in_subpage_writeable
+ffffffc0082003f8 T fault_in_safe_writeable
+ffffffc008200534 T fault_in_readable
+ffffffc00820088c T get_dump_page
+ffffffc008200b64 T get_user_pages_remote
+ffffffc008200bac t __get_user_pages_remote
+ffffffc008200ec8 T get_user_pages
+ffffffc008200f28 t __gup_longterm_locked
+ffffffc008201474 T get_user_pages_unlocked
+ffffffc008201798 T get_user_pages_fast_only
+ffffffc0082017d8 t internal_get_user_pages_fast.llvm.15864322255634984350
+ffffffc008202410 T get_user_pages_fast
+ffffffc008202464 T pin_user_pages_fast
+ffffffc0082024b8 T pin_user_pages_fast_only
+ffffffc008202514 T pin_user_pages_remote
+ffffffc008202564 T pin_user_pages
+ffffffc0082025c8 T pin_user_pages_unlocked
+ffffffc008202614 t folio_put_refs
+ffffffc00820267c t follow_page_pte
+ffffffc0082029f4 t follow_pfn_pte
+ffffffc008202b00 t undo_dev_pagemap
+ffffffc008202ce8 T __traceiter_mmap_lock_start_locking
+ffffffc008202d80 T trace_mmap_lock_reg
+ffffffc008202d94 T trace_mmap_lock_unreg
+ffffffc008202da4 T __traceiter_mmap_lock_released
+ffffffc008202e3c T __traceiter_mmap_lock_acquire_returned
+ffffffc008202ee4 t trace_event_raw_event_mmap_lock
+ffffffc008202ff8 t perf_trace_mmap_lock
+ffffffc008203174 t trace_event_raw_event_mmap_lock_acquire_returned
+ffffffc008203290 t perf_trace_mmap_lock_acquire_returned
+ffffffc008203418 T __mmap_lock_do_trace_start_locking
+ffffffc008203534 T __mmap_lock_do_trace_acquire_returned
+ffffffc008203660 T __mmap_lock_do_trace_released
+ffffffc00820377c t trace_raw_output_mmap_lock
+ffffffc008203814 t trace_raw_output_mmap_lock_acquire_returned
+ffffffc0082038b8 T mm_trace_rss_stat
+ffffffc008203974 T sync_mm_rss
+ffffffc008203ae4 t add_mm_counter
+ffffffc008203bd8 t add_mm_counter
+ffffffc008203c3c t add_mm_counter
+ffffffc008203ca8 T free_pgd_range
+ffffffc008204008 T free_pgtables
+ffffffc008204184 T pmd_install
+ffffffc00820427c T __pte_alloc
+ffffffc008204400 T __pte_alloc_kernel
+ffffffc0082044f0 T vm_normal_page
+ffffffc0082045c4 t print_bad_pte
+ffffffc00820479c T vm_normal_page_pmd
+ffffffc0082048a4 t pfn_valid
+ffffffc008204918 T copy_page_range
+ffffffc00820591c T unmap_page_range
+ffffffc008206104 T unmap_vmas
+ffffffc008206230 T zap_page_range
+ffffffc0082063dc T zap_page_range_single
+ffffffc008206548 T zap_vma_ptes
+ffffffc0082065a0 T __get_locked_pte
+ffffffc0082066a0 T vm_insert_pages
+ffffffc008206a44 T vm_insert_page
+ffffffc008206c5c T vm_map_pages
+ffffffc008206d04 T vm_map_pages_zero
+ffffffc008206da0 T vmf_insert_pfn_prot
+ffffffc008206e8c t insert_pfn
+ffffffc0082070a8 T vmf_insert_pfn
+ffffffc0082070d8 T vmf_insert_mixed_prot
+ffffffc00820715c T vmf_insert_mixed
+ffffffc0082071e4 T vmf_insert_mixed_mkwrite
+ffffffc00820726c T remap_pfn_range_notrack
+ffffffc008207540 T remap_pfn_range
+ffffffc00820756c T vm_iomap_memory
+ffffffc0082075e4 T apply_to_page_range
+ffffffc008207610 t __apply_to_page_range.llvm.2998802705353912223
+ffffffc008207a20 T apply_to_existing_page_range
+ffffffc008207a50 T finish_mkwrite_fault
+ffffffc008207bd0 T unmap_mapping_folio
+ffffffc008207c90 t unmap_mapping_range_tree
+ffffffc008207d3c T unmap_mapping_pages
+ffffffc008207df8 T unmap_mapping_range
+ffffffc008207f28 T do_swap_page
+ffffffc00820896c t do_wp_page
+ffffffc008208e48 T do_set_pmd
+ffffffc0082091dc T do_set_pte
+ffffffc008209570 T finish_fault
+ffffffc0082097f4 T numa_migrate_prep
+ffffffc008209874 T handle_mm_fault
+ffffffc00820a914 T lock_vma_under_rcu
+ffffffc00820aa88 t vma_end_read
+ffffffc00820aacc T __pmd_alloc
+ffffffc00820acdc T follow_pte
+ffffffc00820adc0 T follow_pfn
+ffffffc00820aebc T follow_phys
+ffffffc00820afd8 T generic_access_phys
+ffffffc00820b250 T __access_remote_vm
+ffffffc00820b4f0 T access_remote_vm
+ffffffc00820b51c T access_process_vm
+ffffffc00820b5a4 T print_vma_addr
+ffffffc00820b6f0 T clear_huge_page
+ffffffc00820b898 t clear_gigantic_page
+ffffffc00820b918 T copy_user_huge_page
+ffffffc00820baa4 T copy_huge_page_from_user
+ffffffc00820bd48 t kmap_atomic
+ffffffc00820bd98 t __kunmap_atomic
+ffffffc00820bdf8 t __kunmap_atomic
+ffffffc00820be58 t __kunmap_atomic
+ffffffc00820bebc T set_direct_map_range_uncached
+ffffffc00820bee4 t add_mm_rss_vec
+ffffffc00820c040 t tlb_flush_mmu_tlbonly
+ffffffc00820c524 t tlb_flush_mmu_tlbonly
+ffffffc00820ca08 t insert_page_into_pte_locked
+ffffffc00820ccac t __do_fault
+ffffffc00820cda4 t fault_dirty_shared_page
+ffffffc00820cef0 t flush_tlb_page
+ffffffc00820cf6c t wp_page_copy
+ffffffc00820d868 t wp_page_shared
+ffffffc00820dbf0 t fault_around_bytes_fops_open
+ffffffc00820dc34 t fault_around_bytes_get
+ffffffc00820dc54 t fault_around_bytes_set
+ffffffc00820dca4 T __arm64_sys_mincore
+ffffffc00820e088 t mincore_pte_range
+ffffffc00820e328 t mincore_unmapped_range
+ffffffc00820e378 t mincore_hugetlb
+ffffffc00820e380 t __mincore_unmapped_range
+ffffffc00820e4e8 T can_do_mlock
+ffffffc00820e53c T mlock_page_drain_local
+ffffffc00820e5d4 t mlock_pagevec
+ffffffc00820fda8 T mlock_page_drain_remote
+ffffffc00820fe2c T need_mlock_page_drain
+ffffffc00820fe6c T mlock_folio
+ffffffc008210010 T mlock_new_page
+ffffffc0082101e8 T munlock_page
+ffffffc008210308 T __arm64_sys_mlock
+ffffffc008210344 T __arm64_sys_mlock2
+ffffffc0082103a0 T __arm64_sys_munlock
+ffffffc0082104a4 T __arm64_sys_mlockall
+ffffffc008210730 T __arm64_sys_munlockall
+ffffffc008210898 T user_shm_lock
+ffffffc008210970 T user_shm_unlock
+ffffffc0082109e0 t do_mlock
+ffffffc008210c5c t apply_vma_lock_flags
+ffffffc008210da8 t mlock_fixup
+ffffffc008211038 t mlock_pte_range
+ffffffc008211220 T __traceiter_vm_unmapped_area
+ffffffc0082112b0 T __traceiter_vma_mas_szero
+ffffffc008211348 T __traceiter_vma_store
+ffffffc0082113d8 T __traceiter_exit_mmap
+ffffffc008211458 t trace_event_raw_event_vm_unmapped_area
+ffffffc008211554 t perf_trace_vm_unmapped_area
+ffffffc0082116ac t trace_event_raw_event_vma_mas_szero
+ffffffc00821177c t perf_trace_vma_mas_szero
+ffffffc00821189c t trace_event_raw_event_vma_store
+ffffffc00821196c t perf_trace_vma_store
+ffffffc008211a98 t trace_event_raw_event_exit_mmap
+ffffffc008211b50 t perf_trace_exit_mmap
+ffffffc008211c5c T vma_set_page_prot
+ffffffc008211d70 T vma_wants_writenotify
+ffffffc008211e7c T unlink_file_vma
+ffffffc008211f20 T __arm64_sys_brk
+ffffffc00821231c T vma_mas_store
+ffffffc008212464 T vma_mas_remove
+ffffffc0082125b4 T vma_expand
+ffffffc0082128f8 T __vma_adjust
+ffffffc00821339c T find_vma
+ffffffc008213400 T vma_merge
+ffffffc00821376c t can_vma_merge_after
+ffffffc008213868 T find_mergeable_anon_vma
+ffffffc008213a1c T mlock_future_check
+ffffffc008213a84 T do_mmap
+ffffffc008213fb8 T get_unmapped_area
+ffffffc008214098 T find_vma_intersection
+ffffffc0082140f8 t file_mmap_ok
+ffffffc008214160 T mmap_region
+ffffffc008214b00 T ksys_mmap_pgoff
+ffffffc008214c00 T __arm64_sys_mmap_pgoff
+ffffffc008214c3c T vm_unmapped_area
+ffffffc008214e50 T generic_get_unmapped_area
+ffffffc008214fc8 T find_vma_prev
+ffffffc008215078 T arch_get_unmapped_area
+ffffffc0082150a4 T generic_get_unmapped_area_topdown
+ffffffc008215248 T arch_get_unmapped_area_topdown
+ffffffc008215274 T expand_downwards
+ffffffc008215584 T vm_stat_account
+ffffffc0082155ec T expand_stack
+ffffffc008215618 T find_extend_vma
+ffffffc0082156e4 T __split_vma
+ffffffc008215908 T split_vma
+ffffffc008215950 T do_mas_munmap
+ffffffc008215a04 t do_mas_align_munmap
+ffffffc008215f68 T do_munmap
+ffffffc008216058 T may_expand_vm
+ffffffc008216190 t vm_flags_clear
+ffffffc008216204 t vm_flags_clear
+ffffffc008216278 t vm_flags_set
+ffffffc0082162d8 t vm_flags_set
+ffffffc008216348 t unmap_region
+ffffffc0082164d8 T vm_munmap
+ffffffc008216504 t __vm_munmap.llvm.13466520832302769783
+ffffffc0082166d8 T __arm64_sys_munmap
+ffffffc00821673c T __arm64_sys_remap_file_pages
+ffffffc0082169ec T vm_brk_flags
+ffffffc008216c98 t do_brk_flags
+ffffffc008216ffc t mmap_write_unlock
+ffffffc00821705c t mmap_write_unlock
+ffffffc0082170c0 T vm_brk
+ffffffc0082170f0 T exit_mmap
+ffffffc0082174e8 T insert_vm_struct
+ffffffc0082175d4 t vma_link
+ffffffc008217710 T copy_vma
+ffffffc008217a0c T vma_is_special_mapping
+ffffffc008217a54 T _install_special_mapping
+ffffffc008217a84 t __install_special_mapping.llvm.13466520832302769783
+ffffffc008217bc4 T install_special_mapping
+ffffffc008217c00 T mm_take_all_locks
+ffffffc008217e8c T mm_drop_all_locks
+ffffffc008218020 t trace_raw_output_vm_unmapped_area
+ffffffc0082180c0 t trace_raw_output_vma_mas_szero
+ffffffc008218138 t trace_raw_output_vma_store
+ffffffc0082181b0 t trace_raw_output_exit_mmap
+ffffffc008218224 t special_mapping_close.llvm.13466520832302769783
+ffffffc008218234 t special_mapping_split.llvm.13466520832302769783
+ffffffc008218248 t special_mapping_mremap.llvm.13466520832302769783
+ffffffc0082182c4 t special_mapping_fault.llvm.13466520832302769783
+ffffffc0082183c8 t special_mapping_name.llvm.13466520832302769783
+ffffffc0082183e0 t reserve_mem_notifier
+ffffffc008218574 T __tlb_remove_page_size
+ffffffc00821862c T tlb_remove_table_sync_one
+ffffffc008218668 t tlb_remove_table_smp_sync.llvm.15799116327488991403
+ffffffc008218678 T tlb_remove_table
+ffffffc008218740 T tlb_flush_mmu
+ffffffc0082187f8 T tlb_gather_mmu
+ffffffc00821886c T tlb_gather_mmu_fullmm
+ffffffc0082188e4 T tlb_finish_mmu
+ffffffc008218a2c t tlb_remove_table_rcu
+ffffffc008218a94 T change_protection
+ffffffc0082196d0 T mprotect_fixup
+ffffffc008219998 T __arm64_sys_mprotect
+ffffffc008219e08 t pmd_alloc
+ffffffc008219e80 T move_page_tables
+ffffffc00821a428 t move_pgt_entry
+ffffffc00821a718 T __arm64_sys_mremap
+ffffffc00821ad00 t flush_tlb_range
+ffffffc00821af60 t vma_to_resize
+ffffffc00821b0b4 t move_vma
+ffffffc00821b5b0 T __arm64_sys_msync
+ffffffc00821b870 T page_vma_mapped_walk
+ffffffc00821bcfc T page_mapped_in_vma
+ffffffc00821be44 T walk_page_range
+ffffffc00821c0e4 T walk_page_range_novma
+ffffffc00821c16c t walk_pgd_range
+ffffffc00821c6b4 T walk_page_vma
+ffffffc00821c858 T walk_page_mapping
+ffffffc00821ca64 T pgd_clear_bad
+ffffffc00821caa8 T pmd_clear_bad
+ffffffc00821cb10 T ptep_clear_flush
+ffffffc00821cbe8 T pmdp_clear_flush_young
+ffffffc00821cca0 t __flush_tlb_range.llvm.13067584656657840915
+ffffffc00821cf60 T pmdp_huge_clear_flush
+ffffffc00821cfc8 T pgtable_trans_huge_deposit
+ffffffc00821d084 T pgtable_trans_huge_withdraw
+ffffffc00821d13c T pmdp_invalidate
+ffffffc00821d1ac T pmdp_invalidate_ad
+ffffffc00821d21c T pmdp_collapse_flush
+ffffffc00821d284 T __traceiter_tlb_flush
+ffffffc00821d314 t trace_event_raw_event_tlb_flush
+ffffffc00821d3d4 t perf_trace_tlb_flush
+ffffffc00821d4f0 T __traceiter_mm_migrate_pages
+ffffffc00821d5b8 T __traceiter_mm_migrate_pages_start
+ffffffc00821d648 T __traceiter_set_migration_pte
+ffffffc00821d6e0 T __traceiter_remove_migration_pte
+ffffffc00821d778 t trace_event_raw_event_mm_migrate_pages
+ffffffc00821d870 t perf_trace_mm_migrate_pages
+ffffffc00821d9b8 t trace_event_raw_event_mm_migrate_pages_start
+ffffffc00821da74 t perf_trace_mm_migrate_pages_start
+ffffffc00821db8c t trace_event_raw_event_migration_pte
+ffffffc00821dc5c t perf_trace_migration_pte
+ffffffc00821dd7c T __anon_vma_prepare
+ffffffc00821dee8 t put_anon_vma
+ffffffc00821df58 T anon_vma_clone
+ffffffc00821e110 T unlink_anon_vmas
+ffffffc00821e2ec T anon_vma_fork
+ffffffc00821e49c t anon_vma_ctor.llvm.12217046244500857986
+ffffffc00821e4f0 T folio_get_anon_vma
+ffffffc00821e624 T folio_lock_anon_vma_read
+ffffffc00821e800 T __put_anon_vma
+ffffffc00821e8fc T page_address_in_vma
+ffffffc00821ea30 T mm_find_pmd
+ffffffc00821ea84 T folio_referenced
+ffffffc00821ebe4 t folio_referenced_one
+ffffffc00821ee98 t invalid_folio_referenced_vma
+ffffffc00821eed4 T rmap_walk
+ffffffc00821ef18 T folio_mkclean
+ffffffc00821eff4 t page_mkclean_one
+ffffffc00821f0b4 t invalid_mkclean_vma
+ffffffc00821f0d0 T pfn_mkclean_range
+ffffffc00821f194 t page_vma_mkclean_one
+ffffffc00821f3d8 T page_move_anon_rmap
+ffffffc00821f43c T page_add_anon_rmap
+ffffffc00821f634 T page_add_new_anon_rmap
+ffffffc00821f798 T page_add_file_rmap
+ffffffc00821fa38 T page_remove_rmap
+ffffffc00821fe58 T try_to_unmap
+ffffffc00821ff00 t try_to_unmap_one
+ffffffc008220760 t page_not_mapped
+ffffffc008220794 T rmap_walk_locked
+ffffffc0082207d8 T try_to_migrate
+ffffffc0082208b8 t try_to_migrate_one
+ffffffc008220e68 t invalid_migration_vma
+ffffffc008220e8c t rmap_walk_anon
+ffffffc008221118 t rmap_walk_file
+ffffffc008221354 t trace_raw_output_tlb_flush
+ffffffc0082213e8 t trace_raw_output_mm_migrate_pages
+ffffffc0082214d4 t trace_raw_output_mm_migrate_pages_start
+ffffffc008221584 t trace_raw_output_migration_pte
+ffffffc0082215fc T is_vmalloc_addr
+ffffffc008221628 T ioremap_page_range
+ffffffc0082216ec t vmap_range_noflush
+ffffffc008221a5c T __vunmap_range_noflush
+ffffffc008221c00 T vunmap_range_noflush
+ffffffc008221c2c T vunmap_range
+ffffffc008221cd4 T __vmap_pages_range_noflush
+ffffffc00822210c T vmap_pages_range_noflush
+ffffffc008222138 T is_vmalloc_or_module_addr
+ffffffc00822217c T vmalloc_to_page
+ffffffc00822229c T vmalloc_to_pfn
+ffffffc0082222e4 T vmalloc_nr_pages
+ffffffc008222304 T register_vmap_purge_notifier
+ffffffc00822233c T unregister_vmap_purge_notifier
+ffffffc008222374 T find_vmap_area
+ffffffc008222414 T vm_unmap_aliases
+ffffffc008222448 t _vm_unmap_aliases.llvm.11864589899122056455
+ffffffc008222624 T vm_unmap_ram
+ffffffc0082227bc t free_unmap_vmap_area
+ffffffc008222804 T vm_map_ram
+ffffffc008223058 t alloc_vmap_area
+ffffffc0082238c8 t free_work
+ffffffc00822393c t insert_vmap_area
+ffffffc008223a54 T __get_vm_area_caller
+ffffffc008223aa8 t __get_vm_area_node.llvm.11864589899122056455
+ffffffc008223c7c T get_vm_area
+ffffffc008223cec T get_vm_area_caller
+ffffffc008223d4c T find_vm_area
+ffffffc008223dfc T remove_vm_area
+ffffffc008223ed4 T vfree_atomic
+ffffffc008223f58 t __vfree_deferred
+ffffffc008223fc0 T vfree
+ffffffc008224064 T vunmap
+ffffffc0082240d0 t __vunmap
+ffffffc008224418 T vmap
+ffffffc00822459c T __vmalloc_node_range
+ffffffc008224d04 T __vmalloc_node
+ffffffc008224d78 T __vmalloc
+ffffffc008224e00 T vmalloc
+ffffffc008224e88 T vmalloc_huge
+ffffffc008224f10 T vzalloc
+ffffffc008224f98 T vmalloc_user
+ffffffc008225020 T vmalloc_node
+ffffffc0082250a8 T vzalloc_node
+ffffffc008225130 T vmalloc_32
+ffffffc0082251b8 T vmalloc_32_user
+ffffffc008225240 T vread
+ffffffc008225568 T remap_vmalloc_range_partial
+ffffffc0082256d4 T remap_vmalloc_range
+ffffffc008225710 T free_vm_area
+ffffffc008225760 T pcpu_get_vm_areas
+ffffffc00822674c T pcpu_free_vm_areas
+ffffffc0082267cc T vmalloc_dump_obj
+ffffffc0082268a4 t purge_fragmented_blocks_allcpus
+ffffffc008226b08 t __purge_vmap_area_lazy
+ffffffc0082271b4 t free_vmap_area_noflush
+ffffffc0082274dc t free_vmap_area_rb_augment_cb_rotate
+ffffffc008227528 t drain_vmap_area_work
+ffffffc0082275bc t insert_vmap_area_augment
+ffffffc008227784 T __arm64_sys_process_vm_readv
+ffffffc0082277c8 T __arm64_sys_process_vm_writev
+ffffffc008227808 t process_vm_rw
+ffffffc008227d54 T pm_restore_gfp_mask
+ffffffc008227dac T pm_restrict_gfp_mask
+ffffffc008227e14 T pm_suspended_storage
+ffffffc008227e38 T free_compound_page
+ffffffc008227ea0 T get_pfnblock_flags_mask
+ffffffc008227f08 T isolate_anon_lru_page
+ffffffc008228070 T set_pfnblock_flags_mask
+ffffffc008228130 T set_pageblock_migratetype
+ffffffc008228228 t free_the_page
+ffffffc008228270 T prep_compound_page
+ffffffc0082282dc T destroy_large_folio
+ffffffc00822833c T split_free_page
+ffffffc00822862c t __free_one_page
+ffffffc0082289d8 T __free_pages_core
+ffffffc008228a94 t __free_pages_ok
+ffffffc008228ef0 T __pageblock_pfn_to_page
+ffffffc008229048 T set_zone_contiguous
+ffffffc0082290c8 T clear_zone_contiguous
+ffffffc0082290dc T post_alloc_hook
+ffffffc008229320 t kernel_init_pages
+ffffffc008229488 T move_freepages_block
+ffffffc0082296bc T find_suitable_fallback
+ffffffc00822980c T drain_local_pages
+ffffffc008229934 T drain_all_pages
+ffffffc008229960 t __drain_all_pages.llvm.8370740283577704413
+ffffffc008229c08 T free_unref_page
+ffffffc008229e84 t free_unref_page_prepare
+ffffffc00822a24c t free_one_page
+ffffffc00822a324 t free_unref_page_commit
+ffffffc00822a4b4 T free_unref_page_list
+ffffffc00822a83c T split_page
+ffffffc00822a898 T __isolate_free_page
+ffffffc00822abec T zone_watermark_ok
+ffffffc00822ac30 T __putback_isolated_page
+ffffffc00822ac9c T should_fail_alloc_page
+ffffffc00822acb0 T __zone_watermark_ok
+ffffffc00822adf4 T zone_watermark_ok_safe
+ffffffc00822afa4 T warn_alloc
+ffffffc00822b154 T has_managed_dma
+ffffffc00822b17c T gfp_pfmemalloc_allowed
+ffffffc00822b204 T __alloc_pages_bulk
+ffffffc00822b738 T __alloc_pages
+ffffffc00822b988 t get_page_from_freelist
+ffffffc00822ccbc t __alloc_pages_slowpath
+ffffffc00822d974 T __free_pages
+ffffffc00822da74 T __folio_alloc
+ffffffc00822dacc T __get_free_pages
+ffffffc00822db2c T get_zeroed_page
+ffffffc00822db94 T free_pages
+ffffffc00822dbdc T __page_frag_cache_drain
+ffffffc00822dc78 T page_frag_alloc_align
+ffffffc00822ddf8 t __page_frag_cache_refill
+ffffffc00822deb0 T page_frag_free
+ffffffc00822df70 T alloc_pages_exact
+ffffffc00822e0cc T free_pages_exact
+ffffffc00822e1b0 T nr_free_buffer_pages
+ffffffc00822e274 T si_mem_available
+ffffffc00822e3a8 T si_meminfo
+ffffffc00822e43c T __show_free_areas
+ffffffc00822f004 t __build_all_zonelists
+ffffffc00822f3b0 t per_cpu_pages_init
+ffffffc00822f4e4 t zone_set_pageset_high_and_batch
+ffffffc00822f654 W arch_has_descending_max_zone_pfns
+ffffffc00822f668 T adjust_managed_page_count
+ffffffc00822f6f0 T free_reserved_area
+ffffffc00822f8dc t page_alloc_cpu_online
+ffffffc00822f958 t page_alloc_cpu_dead
+ffffffc00822fa84 T setup_per_zone_wmarks
+ffffffc00822fd5c T calculate_min_free_kbytes
+ffffffc00822fe68 t setup_per_zone_lowmem_reserve
+ffffffc008230158 T min_free_kbytes_sysctl_handler
+ffffffc0082301b4 T watermark_scale_factor_sysctl_handler
+ffffffc008230200 T lowmem_reserve_ratio_sysctl_handler
+ffffffc008230284 T percpu_pagelist_high_fraction_sysctl_handler
+ffffffc008230380 T __alloc_contig_migrate_range
+ffffffc0082305a0 T alloc_contig_range
+ffffffc008230900 T free_contig_range
+ffffffc008230a18 T alloc_contig_pages
+ffffffc008230c58 T zone_pcp_disable
+ffffffc008230d14 T zone_pcp_enable
+ffffffc008230dc4 T zone_pcp_reset
+ffffffc008230ea4 T __offline_isolated_pages
+ffffffc0082310a4 T is_free_buddy_page
+ffffffc008231140 t free_page_is_bad
+ffffffc0082311bc t free_page_is_bad_report
+ffffffc008231260 t bad_page
+ffffffc00823137c t free_pcppages_bulk
+ffffffc00823173c t get_populated_pcp_list
+ffffffc008232410 t reserve_highatomic_pageblock
+ffffffc008232618 t wake_all_kswapds
+ffffffc00823270c t __alloc_pages_direct_compact
+ffffffc008232a30 t unreserve_highatomic_pageblock
+ffffffc008232d04 T shuffle_pick_tail
+ffffffc008232d74 T setup_initial_init_mm
+ffffffc008232d98 T memblock_overlaps_region
+ffffffc008232e34 T memblock_add_node
+ffffffc008232f00 T memblock_add
+ffffffc008232fc0 T memblock_remove
+ffffffc008233084 t memblock_remove_range
+ffffffc0082331a4 T memblock_free
+ffffffc008233204 T memblock_phys_free
+ffffffc0082333a0 T memblock_reserve
+ffffffc00823345c T memblock_mark_hotplug
+ffffffc00823348c t memblock_setclr_flag.llvm.9043525312468000573
+ffffffc008233640 T memblock_clear_hotplug
+ffffffc008233674 T memblock_mark_mirror
+ffffffc0082336c8 T memblock_mark_nomap
+ffffffc0082336fc T memblock_clear_nomap
+ffffffc008233730 T __next_mem_range
+ffffffc00823396c T __next_mem_range_rev
+ffffffc008233bcc T __next_mem_pfn_range
+ffffffc008233c74 T memblock_set_node
+ffffffc008233c84 t memblock_find_in_range_node
+ffffffc008233eb0 T memblock_phys_mem_size
+ffffffc008233ec8 T memblock_reserved_size
+ffffffc008233ee0 T memblock_start_of_DRAM
+ffffffc008233efc T memblock_end_of_DRAM
+ffffffc008233f2c t memblock_isolate_range
+ffffffc00823410c t memblock_remove_region
+ffffffc0082341c0 T memblock_is_reserved
+ffffffc008234240 T memblock_is_memory
+ffffffc0082342c0 T memblock_is_map_memory
+ffffffc008234350 T memblock_search_pfn_nid
+ffffffc0082343fc T memblock_is_region_memory
+ffffffc008234488 T memblock_is_region_reserved
+ffffffc00823452c T memblock_trim_memory
+ffffffc00823467c T memblock_set_current_limit
+ffffffc008234694 T memblock_get_current_limit
+ffffffc0082346ac T memblock_dump_all
+ffffffc00823472c T reset_node_managed_pages
+ffffffc008234758 t memblock_double_array
+ffffffc008234bcc t memblock_dump
+ffffffc008234cc8 t memblock_debug_open
+ffffffc008234d08 t memblock_debug_show
+ffffffc008234df8 t memblock_add_range.20
+ffffffc0082351c0 t memblock_add_range.21
+ffffffc0082355a0 T get_online_mems
+ffffffc0082356b8 T put_online_mems
+ffffffc00823583c T mem_hotplug_begin
+ffffffc008235874 T mem_hotplug_done
+ffffffc0082358ac T pfn_to_online_page
+ffffffc008235934 T __remove_pages
+ffffffc008235a30 T set_online_page_callback
+ffffffc008235ab0 T generic_online_page
+ffffffc008235b24 T restore_online_page_callback
+ffffffc008235ba4 T zone_for_pfn_range
+ffffffc008235fac T adjust_present_page_count
+ffffffc0082360a0 T mhp_init_memmap_on_memory
+ffffffc008236170 T mhp_deinit_memmap_on_memory
+ffffffc0082361f8 t online_pages_range
+ffffffc0082362d4 T try_online_node
+ffffffc008236334 T mhp_supports_memmap_on_memory
+ffffffc0082363ac t online_memory_block
+ffffffc0082363e8 t register_memory_resource
+ffffffc0082364fc T add_memory
+ffffffc008236580 T add_memory_driver_managed
+ffffffc00823667c T mhp_get_pluggable_range
+ffffffc0082366dc T mhp_range_allowed
+ffffffc008236784 t count_system_ram_pages_cb
+ffffffc0082367a4 T try_offline_node
+ffffffc008236864 t check_no_memblock_for_node_cb
+ffffffc008236888 T __remove_memory
+ffffffc0082368bc T remove_memory
+ffffffc008236928 T offline_and_remove_memory
+ffffffc008236a90 t try_offline_memory_block
+ffffffc008236b94 t try_reonline_memory_block
+ffffffc008236c14 t set_online_policy
+ffffffc008236c6c t get_online_policy
+ffffffc008236cc0 t auto_movable_stats_account_group
+ffffffc008236d24 t check_memblock_offlined_cb
+ffffffc008236dd0 t get_nr_vmemmap_pages_cb
+ffffffc008236de4 T anon_vma_name_alloc
+ffffffc008236e5c T anon_vma_name_free
+ffffffc008236e88 T anon_vma_name
+ffffffc008236eb0 T madvise_set_anon_name
+ffffffc008237048 T do_madvise
+ffffffc008237ea8 T __arm64_sys_madvise
+ffffffc008237eec T __arm64_sys_process_madvise
+ffffffc008238134 t madvise_update_vma
+ffffffc00823848c t swapin_walk_pmd_entry
+ffffffc008238674 t tlb_end_vma
+ffffffc008238ae4 t madvise_cold_or_pageout_pte_range
+ffffffc008239398 t get_page
+ffffffc0082393f0 t get_page
+ffffffc008239448 t get_page
+ffffffc0082394a0 t get_page
+ffffffc0082394f8 t get_page
+ffffffc008239550 t set_pmd_at
+ffffffc00823963c t set_pmd_at
+ffffffc008239728 t set_pte_at
+ffffffc008239818 t madvise_free_pte_range
+ffffffc008239edc T generic_swapfile_activate
+ffffffc00823a0f0 T swap_writepage
+ffffffc00823a1b8 T __swap_writepage
+ffffffc00823a780 T sio_pool_init
+ffffffc00823a848 t end_swap_bio_write
+ffffffc00823a984 T swap_write_unplug
+ffffffc00823aa50 t sio_write_complete
+ffffffc00823ad28 T swap_readpage
+ffffffc00823b24c t end_swap_bio_read
+ffffffc00823b444 T __swap_read_unplug
+ffffffc00823b510 t sio_read_complete
+ffffffc00823b740 T show_swap_cache_info
+ffffffc00823b7c4 T get_shadow_from_swap_cache
+ffffffc00823b838 T add_to_swap_cache
+ffffffc00823bc18 T __delete_from_swap_cache
+ffffffc00823bdf0 T add_to_swap
+ffffffc00823be6c T delete_from_swap_cache
+ffffffc00823bf58 T clear_shadow_from_swap_cache
+ffffffc00823c0fc T free_swap_cache
+ffffffc00823c1b8 T free_page_and_swap_cache
+ffffffc00823c26c T free_pages_and_swap_cache
+ffffffc00823c2dc T swap_cache_get_folio
+ffffffc00823c5f8 T find_get_incore_page
+ffffffc00823c7e8 T __read_swap_cache_async
+ffffffc00823cb74 T read_swap_cache_async
+ffffffc00823cc0c T swap_cluster_readahead
+ffffffc00823cf8c T init_swap_address_space
+ffffffc00823d0f0 T exit_swap_address_space
+ffffffc00823d144 T swapin_readahead
+ffffffc00823d570 t vma_ra_enabled_show
+ffffffc00823d5cc t vma_ra_enabled_store
+ffffffc00823d61c T swap_page_sector
+ffffffc00823d6b0 T page_swap_info
+ffffffc00823d6f0 T __page_file_index
+ffffffc00823d708 T get_swap_pages
+ffffffc00823e230 T get_swap_device
+ffffffc00823e4cc T swp_swap_info
+ffffffc00823e508 T swap_free
+ffffffc00823e5c8 t __swap_entry_free
+ffffffc00823e6e4 T put_swap_folio
+ffffffc00823e99c T split_swap_cluster
+ffffffc00823eab4 T swapcache_free_entries
+ffffffc00823eccc t swp_entry_cmp
+ffffffc00823ecf0 T __swap_count
+ffffffc00823ee40 T __swp_swapcount
+ffffffc00823efcc T swp_swapcount
+ffffffc00823f1c4 T folio_free_swap
+ffffffc00823f358 T free_swap_and_cache
+ffffffc00823f464 t swap_page_trans_huge_swapped
+ffffffc00823f52c t __try_to_reclaim_swap
+ffffffc00823f680 T add_swap_extent
+ffffffc00823f760 T has_usable_swap
+ffffffc00823f7c4 T __arm64_sys_swapoff
+ffffffc008240bec T generic_max_swapfile_size
+ffffffc008240c00 W arch_max_swapfile_size
+ffffffc008240c14 T __arm64_sys_swapon
+ffffffc008241f24 T si_swapinfo
+ffffffc008241ffc T swap_shmem_alloc
+ffffffc008242028 t __swap_duplicate.llvm.11703152968993451913
+ffffffc008242288 T swap_duplicate
+ffffffc0082422e8 T add_swap_count_continuation
+ffffffc008242654 T swapcache_prepare
+ffffffc008242684 T swapcache_mapping
+ffffffc0082426c4 t scan_swap_map_try_ssd_cluster
+ffffffc008242870 t swap_do_scheduled_discard
+ffffffc008242a48 t free_cluster
+ffffffc008242b68 t swap_range_free
+ffffffc008242d20 t swap_count_continued
+ffffffc008243270 t _enable_swap_info
+ffffffc008243368 t swaps_open
+ffffffc0082433c8 t swaps_poll
+ffffffc00824346c t swap_start
+ffffffc008243504 t swap_stop
+ffffffc008243538 t swap_next
+ffffffc0082435d0 t swap_show
+ffffffc0082436f8 t swap_discard_work
+ffffffc008243748 t swap_users_ref_free
+ffffffc008243778 T disable_swap_slots_cache_lock
+ffffffc008243820 T reenable_swap_slots_cache_unlock
+ffffffc008243864 T enable_swap_slots_cache
+ffffffc00824393c t alloc_swap_slot_cache
+ffffffc008243a68 t free_slot_cache
+ffffffc008243ac4 T free_swap_slot
+ffffffc008243bdc T folio_alloc_swap
+ffffffc008243e28 t drain_slots_cache_cpu
+ffffffc008243f1c T dma_pool_create
+ffffffc0082440fc T dma_pool_destroy
+ffffffc0082442ac T dma_pool_alloc
+ffffffc008244498 T dma_pool_free
+ffffffc0082445f8 T dmam_pool_create
+ffffffc0082446bc t dmam_pool_release
+ffffffc0082446ec T dmam_pool_destroy
+ffffffc00824473c t dmam_pool_match
+ffffffc008244758 t pools_show
+ffffffc00824489c T sparse_decode_mem_map
+ffffffc0082448b4 T mem_section_usage_size
+ffffffc0082448c8 T online_mem_sections
+ffffffc008244938 T offline_mem_sections
+ffffffc0082449a8 T sparse_remove_section
+ffffffc0082449dc t section_deactivate.llvm.17531655573294757995
+ffffffc008244bbc T fixup_red_left
+ffffffc008244bec T get_each_object_track
+ffffffc008244e3c T print_tracking
+ffffffc008244f6c T kmem_cache_flags
+ffffffc0082450e0 t parse_slub_debug_flags
+ffffffc0082452f4 T kmem_cache_alloc
+ffffffc0082455f4 T kmem_cache_alloc_lru
+ffffffc0082458f4 T __kmem_cache_alloc_node
+ffffffc008245b5c T kmem_cache_alloc_node
+ffffffc008245e68 T __kmem_cache_free
+ffffffc008246198 T kmem_cache_free
+ffffffc0082465f4 T kmem_cache_free_bulk
+ffffffc008246bd8 T kmem_cache_alloc_bulk
+ffffffc008246f50 t ___slab_alloc
+ffffffc0082478c8 T __kmem_cache_release
+ffffffc008247928 T __kmem_cache_empty
+ffffffc008247968 T __kmem_cache_shutdown
+ffffffc008247cb8 t flush_all_cpus_locked.llvm.16689759220032080585
+ffffffc008247e50 T __kmem_obj_info
+ffffffc00824807c T __check_heap_object
+ffffffc00824819c T __kmem_cache_shrink
+ffffffc0082481e4 t __kmem_cache_do_shrink.llvm.16689759220032080585
+ffffffc00824861c t slub_cpu_dead
+ffffffc008248700 T __kmem_cache_alias
+ffffffc008248808 T __kmem_cache_create
+ffffffc008248e74 t sysfs_slab_add
+ffffffc008249104 T validate_slab_cache
+ffffffc008249288 T sysfs_slab_unlink
+ffffffc0082492c8 T sysfs_slab_release
+ffffffc008249308 T debugfs_slab_release
+ffffffc008249344 T get_slabinfo
+ffffffc008249420 t count_partial
+ffffffc0082494a0 T slabinfo_show_stats
+ffffffc0082494b0 T slabinfo_write
+ffffffc0082494c0 t __slab_alloc
+ffffffc008249554 t __slab_free
+ffffffc008249794 t free_debug_processing
+ffffffc008249dd4 t cmpxchg_double_slab
+ffffffc00824a03c t put_cpu_partial
+ffffffc00824a1cc t remove_full
+ffffffc00824a230 t add_partial
+ffffffc00824a2ac t remove_partial
+ffffffc00824a318 t discard_slab
+ffffffc00824a3d0 t set_track_prepare
+ffffffc00824a460 t check_slab
+ffffffc00824a510 t slab_err
+ffffffc00824a628 t slab_fix
+ffffffc00824a6bc t slab_pad_check
+ffffffc00824a840 t slab_bug
+ffffffc00824a900 t on_freelist
+ffffffc00824ab7c t object_err
+ffffffc00824abec t check_object
+ffffffc00824aed4 t print_trailer
+ffffffc00824b130 t check_bytes_and_report
+ffffffc00824b294 t rcu_free_slab
+ffffffc00824b2c4 t __free_slab
+ffffffc00824b444 t __unfreeze_partials
+ffffffc00824b624 t __cmpxchg_double_slab
+ffffffc00824b838 t deactivate_slab
+ffffffc00824bc54 t new_slab
+ffffffc00824c15c t slab_out_of_memory
+ffffffc00824c2a4 t inc_slabs_node
+ffffffc00824c31c t alloc_debug_processing
+ffffffc00824c560 t setup_object
+ffffffc00824c6dc t flush_cpu_slab
+ffffffc00824c898 t __fill_map
+ffffffc00824c9a0 t slab_memory_callback
+ffffffc00824cba8 t calculate_sizes
+ffffffc00824cf44 t validate_slab
+ffffffc00824d0a8 t kmem_cache_release
+ffffffc00824d0d8 t slab_attr_show
+ffffffc00824d134 t slab_attr_store
+ffffffc00824d194 t slab_size_show
+ffffffc00824d1d8 t object_size_show
+ffffffc00824d21c t objs_per_slab_show
+ffffffc00824d260 t order_show
+ffffffc00824d2a4 t min_partial_show
+ffffffc00824d2e8 t min_partial_store
+ffffffc00824d378 t cpu_partial_show
+ffffffc00824d3bc t cpu_partial_store
+ffffffc00824d498 t objects_show
+ffffffc00824d4c4 t show_slab_objects
+ffffffc00824d730 t objects_partial_show
+ffffffc00824d760 t partial_show
+ffffffc00824d820 t cpu_slabs_show
+ffffffc00824d850 t ctor_show
+ffffffc00824d8a0 t aliases_show
+ffffffc00824d8f0 t align_show
+ffffffc00824d934 t hwcache_align_show
+ffffffc00824d97c t reclaim_account_show
+ffffffc00824d9c4 t destroy_by_rcu_show
+ffffffc00824da0c t shrink_show
+ffffffc00824da20 t shrink_store
+ffffffc00824da88 t slabs_cpu_partial_show
+ffffffc00824dc1c t total_objects_show
+ffffffc00824dce8 t slabs_show
+ffffffc00824ddb4 t sanity_checks_show
+ffffffc00824ddfc t trace_show
+ffffffc00824de44 t trace_show
+ffffffc00824de64 t red_zone_show
+ffffffc00824deac t poison_show
+ffffffc00824def4 t store_user_show
+ffffffc00824df3c t validate_show
+ffffffc00824df50 t validate_store
+ffffffc00824dfc8 t cache_dma_show
+ffffffc00824e010 t usersize_show
+ffffffc00824e054 t slab_debug_trace_open
+ffffffc00824e244 t slab_debug_trace_release
+ffffffc00824e2c0 t process_slab
+ffffffc00824e824 t cmp_loc_by_count
+ffffffc00824e848 t slab_debugfs_start
+ffffffc00824e868 t slab_debugfs_stop
+ffffffc00824e878 t slab_debugfs_next
+ffffffc00824e8ac t slab_debugfs_show
+ffffffc00824eb20 T kasan_addr_to_slab
+ffffffc00824ebc8 T kasan_save_stack
+ffffffc00824ec48 T kasan_set_track
+ffffffc00824ecd8 T __kasan_unpoison_range
+ffffffc00824ed74 T __kasan_unpoison_pages
+ffffffc00824f024 T __kasan_poison_pages
+ffffffc00824f0ec t kasan_poison
+ffffffc00824f190 T __kasan_cache_create_kmalloc
+ffffffc00824f1a8 T __kasan_poison_slab
+ffffffc00824f2ec T __kasan_unpoison_object_data
+ffffffc00824f38c T __kasan_poison_object_data
+ffffffc00824f42c T __kasan_init_slab_obj
+ffffffc00824f468 T __kasan_slab_free
+ffffffc00824f494 t ____kasan_slab_free.llvm.10057062129538089531
+ffffffc00824f6f8 T __kasan_kfree_large
+ffffffc00824f7b4 t ____kasan_kfree_large
+ffffffc00824f880 T __kasan_slab_free_mempool
+ffffffc00824f948 T __kasan_slab_alloc
+ffffffc00824fb2c T __kasan_kmalloc
+ffffffc00824fc3c T __kasan_kmalloc_large
+ffffffc00824fd34 T __kasan_krealloc
+ffffffc00824ff3c T __kasan_check_byte
+ffffffc00824ffa4 T kasan_report_invalid_free
+ffffffc008250094 t complete_report_info
+ffffffc00825019c t print_report
+ffffffc0082506d8 t end_report
+ffffffc0082507fc T kasan_report
+ffffffc0082508fc T kasan_report_async
+ffffffc008250a2c T kasan_init_hw_tags_cpu
+ffffffc008250a90 T kasan_enable_tagging
+ffffffc008250ae4 T __kasan_unpoison_vmalloc
+ffffffc008250f60 T __kasan_poison_vmalloc
+ffffffc008250f70 T kasan_find_first_bad_addr
+ffffffc008250f84 T kasan_metadata_fetch_row
+ffffffc0082510d4 T kasan_print_tags
+ffffffc00825111c T kasan_save_alloc_info
+ffffffc008251148 t save_stack_info.llvm.6977516600269335968
+ffffffc008251298 T kasan_save_free_info
+ffffffc0082512cc T kasan_complete_mode_report_info
+ffffffc008251458 T isolate_movable_page
+ffffffc008251664 T putback_movable_pages
+ffffffc008251808 T remove_migration_ptes
+ffffffc00825188c t remove_migration_pte
+ffffffc008251c5c T __migration_entry_wait
+ffffffc008251cf0 T migration_entry_wait
+ffffffc008251db8 T pmd_migration_entry_wait
+ffffffc008251e64 T folio_migrate_mapping
+ffffffc008252274 T migrate_huge_page_move_mapping
+ffffffc008252404 T folio_migrate_flags
+ffffffc008252780 T folio_migrate_copy
+ffffffc0082527c8 T migrate_folio_extra
+ffffffc00825284c T migrate_folio
+ffffffc0082528d0 T buffer_migrate_folio
+ffffffc0082528fc t __buffer_migrate_folio
+ffffffc008252cd0 T buffer_migrate_folio_norefs
+ffffffc008252d00 T filemap_migrate_folio
+ffffffc008252e78 T migrate_pages
+ffffffc008253c50 t try_split_thp
+ffffffc008253d64 T alloc_migration_target
+ffffffc008253e20 t move_to_new_folio
+ffffffc0082541a4 T __traceiter_hugepage_set_pmd
+ffffffc008254234 T __traceiter_hugepage_update
+ffffffc0082542dc T __traceiter_set_migration_pmd
+ffffffc00825436c T __traceiter_remove_migration_pmd
+ffffffc0082543fc t trace_event_raw_event_hugepage_set_pmd
+ffffffc0082544b8 t perf_trace_hugepage_set_pmd
+ffffffc0082545d0 t trace_event_raw_event_hugepage_update
+ffffffc0082546a4 t perf_trace_hugepage_update
+ffffffc0082547d0 t trace_event_raw_event_migration_pmd
+ffffffc00825488c t perf_trace_migration_pmd
+ffffffc0082549a4 T hugepage_vma_check
+ffffffc008254ad0 T mm_get_huge_zero_page
+ffffffc008254d88 T mm_put_huge_zero_page
+ffffffc008254dec T single_hugepage_flag_show
+ffffffc008254e48 T single_hugepage_flag_store
+ffffffc008254f74 T maybe_pmd_mkwrite
+ffffffc008254f98 T prep_transhuge_page
+ffffffc008254fbc T thp_get_unmapped_area
+ffffffc0082550e4 T vma_thp_gfp_mask
+ffffffc008255184 T do_huge_pmd_anonymous_page
+ffffffc0082558d8 t pte_free
+ffffffc008255938 t set_huge_zero_page
+ffffffc008255aa0 T vmf_insert_pfn_pmd_prot
+ffffffc008255d28 T follow_devmap_pmd
+ffffffc008255e1c T copy_huge_pmd
+ffffffc0082563cc T __split_huge_pmd
+ffffffc0082571c8 T huge_pmd_set_accessed
+ffffffc00825728c T do_huge_pmd_wp_page
+ffffffc008257618 T follow_trans_huge_pmd
+ffffffc008257810 T do_huge_pmd_numa_page
+ffffffc008257a90 T madvise_free_huge_pmd
+ffffffc008257ed0 T zap_huge_pmd
+ffffffc0082582ac T __pmd_trans_huge_lock
+ffffffc00825833c T move_huge_pmd
+ffffffc00825881c T change_huge_pmd
+ffffffc008258b54 T __pud_trans_huge_lock
+ffffffc008258ba0 T split_huge_pmd_address
+ffffffc008258c0c T vma_adjust_trans_huge
+ffffffc008258d80 T can_split_folio
+ffffffc008258e20 T split_huge_page_to_list
+ffffffc008259b1c T free_transhuge_page
+ffffffc008259bc8 T deferred_split_huge_page
+ffffffc008259d3c T set_pmd_migration_entry
+ffffffc00825a164 T remove_migration_pmd
+ffffffc00825a4b8 t trace_raw_output_hugepage_set_pmd
+ffffffc00825a52c t trace_raw_output_hugepage_update
+ffffffc00825a5a4 t trace_raw_output_migration_pmd
+ffffffc00825a618 t enabled_show
+ffffffc00825a688 t enabled_store
+ffffffc00825a870 t defrag_show
+ffffffc00825a908 t defrag_show
+ffffffc00825a938 t defrag_store
+ffffffc00825ae18 t defrag_store
+ffffffc00825ae48 t use_zero_page_show
+ffffffc00825ae90 t use_zero_page_store
+ffffffc00825afa4 t hpage_pmd_size_show
+ffffffc00825afe4 t shrink_huge_zero_page_count
+ffffffc00825b010 t shrink_huge_zero_page_scan
+ffffffc00825b100 t deferred_split_count
+ffffffc00825b120 t deferred_split_scan
+ffffffc00825b470 t split_huge_pages_write
+ffffffc00825bf58 T __traceiter_mm_khugepaged_scan_pmd
+ffffffc00825c020 T __traceiter_mm_collapse_huge_page
+ffffffc00825c0b8 T __traceiter_mm_collapse_huge_page_isolate
+ffffffc00825c168 T __traceiter_mm_collapse_huge_page_swapin
+ffffffc00825c210 T __traceiter_mm_khugepaged_scan_file
+ffffffc00825c2d0 t trace_event_raw_event_mm_khugepaged_scan_pmd
+ffffffc00825c3f8 t perf_trace_mm_khugepaged_scan_pmd
+ffffffc00825c570 t trace_event_raw_event_mm_collapse_huge_page
+ffffffc00825c640 t perf_trace_mm_collapse_huge_page
+ffffffc00825c760 t trace_event_raw_event_mm_collapse_huge_page_isolate
+ffffffc00825c874 t perf_trace_mm_collapse_huge_page_isolate
+ffffffc00825c9d8 t trace_event_raw_event_mm_collapse_huge_page_swapin
+ffffffc00825cab0 t perf_trace_mm_collapse_huge_page_swapin
+ffffffc00825cbe0 t trace_event_raw_event_mm_khugepaged_scan_file
+ffffffc00825cd34 t perf_trace_mm_khugepaged_scan_file
+ffffffc00825cef0 T hugepage_madvise
+ffffffc00825cf9c T khugepaged_enter_vma
+ffffffc00825d008 T __khugepaged_enter
+ffffffc00825d19c T __khugepaged_exit
+ffffffc00825d394 T collapse_pte_mapped_thp
+ffffffc00825d744 t vma_start_write
+ffffffc00825d7a4 t collapse_and_free_pmd
+ffffffc00825d8b4 t set_huge_pmd
+ffffffc00825d994 T start_stop_khugepaged
+ffffffc00825daa4 t khugepaged
+ffffffc00825e348 t set_recommended_min_free_kbytes
+ffffffc00825e428 T khugepaged_min_free_kbytes_update
+ffffffc00825e48c T madvise_collapse
+ffffffc00825e998 t hpage_collapse_scan_file
+ffffffc00826000c t hpage_collapse_scan_pmd
+ffffffc008261f40 t trace_raw_output_mm_khugepaged_scan_pmd
+ffffffc008262008 t trace_raw_output_mm_collapse_huge_page
+ffffffc0082620a8 t trace_raw_output_mm_collapse_huge_page_isolate
+ffffffc00826215c t trace_raw_output_mm_collapse_huge_page_swapin
+ffffffc0082621d8 t trace_raw_output_mm_khugepaged_scan_file
+ffffffc008262294 t max_ptes_none_show
+ffffffc0082622d8 t max_ptes_none_store
+ffffffc008262370 t max_ptes_swap_show
+ffffffc0082623b4 t max_ptes_swap_store
+ffffffc00826244c t max_ptes_shared_show
+ffffffc008262490 t max_ptes_shared_store
+ffffffc008262528 t pages_to_scan_show
+ffffffc00826256c t pages_to_scan_store
+ffffffc008262600 t pages_collapsed_show
+ffffffc008262644 t full_scans_show
+ffffffc008262688 t scan_sleep_millisecs_show
+ffffffc0082626cc t scan_sleep_millisecs_store
+ffffffc00826277c t alloc_sleep_millisecs_show
+ffffffc0082627c0 t alloc_sleep_millisecs_store
+ffffffc00826286c t collect_mm_slot
+ffffffc008262954 t alloc_charge_hpage
+ffffffc008262ae4 T get_page_owner_handle
+ffffffc008262b3c T __reset_page_owner
+ffffffc008262bf0 t save_stack
+ffffffc008262ccc T __set_page_owner
+ffffffc008262dd4 T __set_page_owner_migrate_reason
+ffffffc008262e24 T __split_page_owner
+ffffffc008262e8c T __folio_copy_owner
+ffffffc008262f50 T pagetypeinfo_showmixedcount_print
+ffffffc008263210 T __dump_page_owner
+ffffffc0082633b0 t register_dummy_stack
+ffffffc008263430 t register_failure_stack
+ffffffc0082634b0 t register_early_stack
+ffffffc008263534 t lseek_page_owner
+ffffffc008263568 t read_page_owner
+ffffffc008263b18 T __traceiter_test_pages_isolated
+ffffffc008263bb0 t trace_event_raw_event_test_pages_isolated
+ffffffc008263c80 t perf_trace_test_pages_isolated
+ffffffc008263da0 T start_isolate_page_range
+ffffffc008263f70 t isolate_single_pageblock
+ffffffc008264470 t unset_migratetype_isolate
+ffffffc00826455c t set_migratetype_isolate
+ffffffc008264888 T undo_isolate_page_range
+ffffffc008264958 T test_pages_isolated
+ffffffc008264c0c t trace_raw_output_test_pages_isolated
+ffffffc008264c94 T zs_get_total_pages
+ffffffc008264cb0 T zs_map_object
+ffffffc008264fc4 T zs_unmap_object
+ffffffc008265264 T zs_huge_class_size
+ffffffc00826527c T zs_malloc
+ffffffc008265b18 t obj_malloc
+ffffffc008265c98 t fix_fullness_group
+ffffffc008265e30 T zs_free
+ffffffc008265f3c t obj_free
+ffffffc008266058 t free_zspage
+ffffffc0082661c4 T zs_compact
+ffffffc008266aac T zs_pool_stats
+ffffffc008266ac4 T zs_create_pool
+ffffffc008266dc0 T zs_destroy_pool
+ffffffc008266f04 t __free_zspage
+ffffffc0082670e4 t zs_page_isolate
+ffffffc008267158 t zs_page_migrate
+ffffffc0082676c4 t zs_page_putback
+ffffffc008267730 t putback_zspage
+ffffffc00826786c t async_free_zspage
+ffffffc008267cf8 t zs_shrinker_scan
+ffffffc008267d30 t zs_shrinker_count
+ffffffc008267d98 t zs_cpu_prepare
+ffffffc008267e20 t zs_cpu_dead
+ffffffc008267e80 T balloon_page_list_enqueue
+ffffffc008267f5c t balloon_page_enqueue_one.llvm.9135962718600385667
+ffffffc008268074 T balloon_page_list_dequeue
+ffffffc00826823c T balloon_page_alloc
+ffffffc008268284 T balloon_page_enqueue
+ffffffc0082682ec T balloon_page_dequeue
+ffffffc0082683b0 t balloon_page_isolate.llvm.9135962718600385667
+ffffffc008268454 t balloon_page_migrate.llvm.9135962718600385667
+ffffffc0082684bc t balloon_page_putback.llvm.9135962718600385667
+ffffffc008268560 T page_ext_get
+ffffffc008268614 T page_ext_put
+ffffffc008268640 t __free_page_ext
+ffffffc008268724 T secretmem_active
+ffffffc00826874c T vma_is_secretmem
+ffffffc008268770 t secretmem_free_folio.llvm.8210495105004198153
+ffffffc008268874 t secretmem_migrate_folio.llvm.8210495105004198153
+ffffffc008268888 T __arm64_sys_memfd_secret
+ffffffc008268ab8 t secretmem_fault.llvm.8210495105004198153
+ffffffc008268c5c t secretmem_mmap
+ffffffc008268d1c t secretmem_release
+ffffffc008268d6c t secretmem_setattr
+ffffffc008268e04 t secretmem_init_fs_context
+ffffffc008268e44 T mfill_atomic_install_pte
+ffffffc00826914c T mcopy_atomic
+ffffffc008269a3c T mfill_zeropage
+ffffffc00826a16c T mcopy_continue
+ffffffc00826a5b0 T uffd_wp_range
+ffffffc00826a6a0 T mwriteprotect_range
+ffffffc00826a894 t mmap_read_unlock
+ffffffc00826a8e4 t mmap_read_unlock
+ffffffc00826a934 t mmap_read_unlock
+ffffffc00826a988 T usercopy_abort
+ffffffc00826aa28 T __check_object_size
+ffffffc00826accc t check_stack_object
+ffffffc00826ad28 T memfd_fcntl
+ffffffc00826b2e8 T __arm64_sys_memfd_create
+ffffffc00826b5f8 T __page_reporting_notify
+ffffffc00826b698 T page_reporting_register
+ffffffc00826b810 t page_reporting_process
+ffffffc00826bce4 T page_reporting_unregister
+ffffffc00826bd5c t page_reporting_drain
+ffffffc00826be80 T ioremap_prot
+ffffffc00826bf90 T iounmap
+ffffffc00826bfd8 T do_truncate
+ffffffc00826c0dc T vfs_truncate
+ffffffc00826c2b0 T do_sys_truncate
+ffffffc00826c3b4 T __arm64_sys_truncate
+ffffffc00826c3e8 T do_sys_ftruncate
+ffffffc00826c63c t sb_start_write
+ffffffc00826c748 T __arm64_sys_ftruncate
+ffffffc00826c784 T vfs_fallocate
+ffffffc00826c97c t fsnotify_modify
+ffffffc00826ca28 t fsnotify_modify
+ffffffc00826cad8 T ksys_fallocate
+ffffffc00826cb64 T __arm64_sys_fallocate
+ffffffc00826cbf4 T __arm64_sys_faccessat
+ffffffc00826cc34 T __arm64_sys_faccessat2
+ffffffc00826cc74 T __arm64_sys_access
+ffffffc00826ccb0 T __arm64_sys_chdir
+ffffffc00826cdd4 T __arm64_sys_fchdir
+ffffffc00826ce84 T __arm64_sys_chroot
+ffffffc00826cfd8 T chmod_common
+ffffffc00826d144 T vfs_fchmod
+ffffffc00826d1b0 T __arm64_sys_fchmod
+ffffffc00826d254 T __arm64_sys_fchmodat
+ffffffc00826d294 T __arm64_sys_chmod
+ffffffc00826d2d0 T chown_common
+ffffffc00826d48c T do_fchownat
+ffffffc00826d5fc T __arm64_sys_fchownat
+ffffffc00826d644 T __arm64_sys_chown
+ffffffc00826d688 T __arm64_sys_lchown
+ffffffc00826d6cc T vfs_fchown
+ffffffc00826d764 T ksys_fchown
+ffffffc00826d830 T __arm64_sys_fchown
+ffffffc00826d870 T finish_open
+ffffffc00826d8ac t do_dentry_open
+ffffffc00826dd3c T finish_no_open
+ffffffc00826dd58 T file_path
+ffffffc00826dd88 T vfs_open
+ffffffc00826ddd0 T dentry_open
+ffffffc00826de5c T dentry_create
+ffffffc00826df1c T open_with_fake_path
+ffffffc00826dfa4 T build_open_how
+ffffffc00826dff8 T build_open_flags
+ffffffc00826e178 T file_open_name
+ffffffc00826e23c T filp_open
+ffffffc00826e330 T filp_open_block
+ffffffc00826e4b4 T filp_close
+ffffffc00826e578 T file_open_root
+ffffffc00826e640 T do_sys_open
+ffffffc00826e6cc t do_sys_openat2
+ffffffc00826e940 T __arm64_sys_open
+ffffffc00826e9e4 T __arm64_sys_openat
+ffffffc00826ea8c T __arm64_sys_openat2
+ffffffc00826ecc4 T __arm64_sys_creat
+ffffffc00826ed3c T __arm64_sys_close
+ffffffc00826ed90 T __arm64_sys_close_range
+ffffffc00826edd0 T __arm64_sys_vhangup
+ffffffc00826ee14 T generic_file_open
+ffffffc00826ee48 T nonseekable_open
+ffffffc00826ee68 T stream_open
+ffffffc00826ee90 t __sb_end_write
+ffffffc00826f008 t do_faccessat
+ffffffc00826f2bc t do_fchmodat
+ffffffc00826f3a4 T generic_file_llseek
+ffffffc00826f3e4 T vfs_setpos
+ffffffc00826f440 T generic_file_llseek_size
+ffffffc00826f590 T fixed_size_llseek
+ffffffc00826f5d0 T no_seek_end_llseek
+ffffffc00826f614 T no_seek_end_llseek_size
+ffffffc00826f654 T noop_llseek
+ffffffc00826f668 T default_llseek
+ffffffc00826f76c T vfs_llseek
+ffffffc00826f7c8 T __arm64_sys_lseek
+ffffffc00826f8a0 T rw_verify_area
+ffffffc00826f928 T __kernel_read
+ffffffc00826fb14 t warn_unsupported
+ffffffc00826fb88 T kernel_read
+ffffffc00826fc48 T vfs_read
+ffffffc00826fee4 T __kernel_write_iter
+ffffffc0082700a4 T __kernel_write
+ffffffc008270148 T kernel_write
+ffffffc008270274 t file_start_write
+ffffffc008270390 t file_start_write
+ffffffc0082704ac t file_start_write
+ffffffc0082705c8 t file_end_write
+ffffffc008270758 t file_end_write
+ffffffc0082708e8 t file_end_write
+ffffffc008270a7c T vfs_write
+ffffffc008270d40 T ksys_read
+ffffffc008270e34 T __arm64_sys_read
+ffffffc008270e6c T ksys_write
+ffffffc008270f60 T __arm64_sys_write
+ffffffc008270f98 T ksys_pread64
+ffffffc008271068 T __arm64_sys_pread64
+ffffffc008271140 T ksys_pwrite64
+ffffffc008271210 T __arm64_sys_pwrite64
+ffffffc0082712e8 T vfs_iocb_iter_read
+ffffffc008271480 T vfs_iter_read
+ffffffc0082714bc t do_iter_read
+ffffffc0082717c0 T vfs_iocb_iter_write
+ffffffc008271950 T vfs_iter_write
+ffffffc00827198c t do_iter_write
+ffffffc008271c8c T __arm64_sys_readv
+ffffffc008271cc8 T __arm64_sys_writev
+ffffffc008271d04 T __arm64_sys_preadv
+ffffffc008271d40 T __arm64_sys_preadv2
+ffffffc008271d94 T __arm64_sys_pwritev
+ffffffc008271dd0 T __arm64_sys_pwritev2
+ffffffc008271e24 T __arm64_sys_sendfile
+ffffffc008272138 T __arm64_sys_sendfile64
+ffffffc008272474 T generic_copy_file_range
+ffffffc0082724e8 T vfs_copy_file_range
+ffffffc0082729b8 T __arm64_sys_copy_file_range
+ffffffc00827305c T generic_write_check_limits
+ffffffc00827310c T generic_write_checks_count
+ffffffc00827321c T generic_write_checks
+ffffffc0082732b0 T generic_file_rw_checks
+ffffffc008273330 t do_readv
+ffffffc008273498 t do_writev
+ffffffc008273610 t do_preadv
+ffffffc008273754 t do_pwritev
+ffffffc0082738a8 t do_sendfile
+ffffffc008273c34 T get_max_files
+ffffffc008273c4c T alloc_empty_file
+ffffffc008273d74 t __alloc_file
+ffffffc008273e64 T alloc_empty_file_noaccount
+ffffffc008273ea4 T alloc_file_pseudo
+ffffffc008273fbc t alloc_file
+ffffffc008274128 T alloc_file_clone
+ffffffc008274184 T flush_delayed_fput
+ffffffc0082741fc t delayed_fput
+ffffffc008274274 T fput
+ffffffc00827437c t ____fput
+ffffffc0082743a8 T __fput_sync
+ffffffc008274424 t __fput
+ffffffc0082746ac t proc_nr_files
+ffffffc008274700 t file_free_rcu
+ffffffc00827478c T put_super
+ffffffc0082747dc t __put_super
+ffffffc00827489c T deactivate_locked_super
+ffffffc00827497c T deactivate_super
+ffffffc008274a24 T trylock_super
+ffffffc008274a94 T retire_super
+ffffffc008274b0c T generic_shutdown_super
+ffffffc008274c54 T mount_capable
+ffffffc008274ca4 T sget_fc
+ffffffc008274f04 t alloc_super
+ffffffc0082751c4 t destroy_unused_super
+ffffffc008275248 t grab_super
+ffffffc008275348 T sget
+ffffffc008275584 T drop_super
+ffffffc0082755e0 T drop_super_exclusive
+ffffffc00827563c T iterate_supers
+ffffffc008275768 T iterate_supers_type
+ffffffc008275878 T get_super
+ffffffc008275974 T get_active_super
+ffffffc008275a20 T user_get_super
+ffffffc008275b3c T reconfigure_super
+ffffffc008275d40 T emergency_remount
+ffffffc008275db4 t do_emergency_remount
+ffffffc008275e08 T emergency_thaw_all
+ffffffc008275e7c t do_thaw_all
+ffffffc008275ed0 T get_anon_bdev
+ffffffc008275f34 T free_anon_bdev
+ffffffc008275f6c T set_anon_super
+ffffffc008275fd0 T kill_anon_super
+ffffffc008276018 T kill_litter_super
+ffffffc008276074 T set_anon_super_fc
+ffffffc0082760d8 T vfs_get_super
+ffffffc0082761fc t test_single_super
+ffffffc008276210 t test_keyed_super
+ffffffc008276230 T get_tree_nodev
+ffffffc00827630c T get_tree_single
+ffffffc0082763ec T get_tree_single_reconf
+ffffffc008276420 T get_tree_keyed
+ffffffc008276504 T get_tree_bdev
+ffffffc008276768 t test_bdev_super_fc
+ffffffc00827679c t set_bdev_super_fc
+ffffffc00827685c T mount_bdev
+ffffffc008276a2c t test_bdev_super
+ffffffc008276a5c t set_bdev_super
+ffffffc008276b18 T kill_block_super
+ffffffc008276b78 T mount_nodev
+ffffffc008276c40 T reconfigure_single
+ffffffc008276cc0 T mount_single
+ffffffc008276dec t compare_single
+ffffffc008276e00 T vfs_get_tree
+ffffffc008276f08 T super_setup_bdi_name
+ffffffc008277018 T super_setup_bdi
+ffffffc008277094 T freeze_super
+ffffffc008277230 T thaw_super
+ffffffc008277270 t thaw_super_locked.llvm.10436024332678240515
+ffffffc008277360 t destroy_super_rcu
+ffffffc0082773bc t destroy_super_work
+ffffffc008277410 t super_cache_scan
+ffffffc0082775d0 t super_cache_count
+ffffffc0082776dc t __iterate_supers
+ffffffc0082777d4 t do_emergency_remount_callback
+ffffffc00827787c t do_thaw_all_callback
+ffffffc0082778e8 T chrdev_show
+ffffffc0082779a0 T register_chrdev_region
+ffffffc008277afc t __register_chrdev_region
+ffffffc008277ed4 T alloc_chrdev_region
+ffffffc008277f28 T __register_chrdev
+ffffffc008278100 T cdev_alloc
+ffffffc00827816c T cdev_add
+ffffffc0082781ec T unregister_chrdev_region
+ffffffc008278308 T __unregister_chrdev
+ffffffc008278400 T cdev_del
+ffffffc00827844c T cdev_put
+ffffffc00827847c T cd_forget
+ffffffc0082784fc t chrdev_open.llvm.13371783268363921433
+ffffffc008278718 t exact_match
+ffffffc00827872c t exact_lock
+ffffffc008278780 T cdev_set_parent
+ffffffc0082787a4 T cdev_device_add
+ffffffc008278888 T cdev_device_del
+ffffffc0082788e8 T cdev_init
+ffffffc008278960 t base_probe.llvm.13371783268363921433
+ffffffc0082789cc t cdev_dynamic_release
+ffffffc008278a80 t cdev_default_release
+ffffffc008278b2c T generic_fillattr
+ffffffc008278bb0 T generic_fill_statx_attr
+ffffffc008278bf4 T vfs_getattr_nosec
+ffffffc008278d50 T vfs_getattr
+ffffffc008278db4 T vfs_fstat
+ffffffc008278f68 T getname_statx_lookup_flags
+ffffffc008278f94 T vfs_fstatat
+ffffffc008279020 t vfs_statx
+ffffffc008279238 T __arm64_sys_newstat
+ffffffc008279318 T __arm64_sys_newlstat
+ffffffc0082793f8 T __arm64_sys_newfstatat
+ffffffc0082794f0 T __arm64_sys_newfstat
+ffffffc00827959c T __arm64_sys_readlinkat
+ffffffc0082795dc T __arm64_sys_readlink
+ffffffc008279618 T do_statx
+ffffffc0082796d8 t cp_statx
+ffffffc008279970 T __arm64_sys_statx
+ffffffc008279a90 T __inode_add_bytes
+ffffffc008279ad8 T inode_add_bytes
+ffffffc008279b64 T __inode_sub_bytes
+ffffffc008279ba4 T inode_sub_bytes
+ffffffc008279c28 T inode_get_bytes
+ffffffc008279c80 T inode_set_bytes
+ffffffc008279c9c t cp_new_stat
+ffffffc008279ee4 t do_readlinkat
+ffffffc00827a08c T __register_binfmt
+ffffffc00827a13c T unregister_binfmt
+ffffffc00827a1b4 T path_noexec
+ffffffc00827a1e8 T copy_string_kernel
+ffffffc00827a36c t get_arg_page
+ffffffc00827a4f8 T setup_arg_pages
+ffffffc00827a920 T open_exec
+ffffffc00827a980 t do_open_execat
+ffffffc00827ac7c T __get_task_comm
+ffffffc00827ace8 T __set_task_comm
+ffffffc00827adec T begin_new_exec
+ffffffc00827b6e4 T would_dump
+ffffffc00827b7a8 t unshare_sighand
+ffffffc00827b870 T set_dumpable
+ffffffc00827b8f8 T setup_new_exec
+ffffffc00827b964 T finalize_exec
+ffffffc00827b9c4 T bprm_change_interp
+ffffffc00827ba30 T remove_arg_zero
+ffffffc00827bb78 T kernel_execve
+ffffffc00827bdf8 t alloc_bprm
+ffffffc00827c0a0 t bprm_execve
+ffffffc00827c690 t free_bprm
+ffffffc00827c7c0 T set_binfmt
+ffffffc00827c7dc T __arm64_sys_execve
+ffffffc00827c840 T __arm64_sys_execveat
+ffffffc00827c8b4 t do_execveat_common
+ffffffc00827cb64 t copy_strings
+ffffffc00827cf64 t get_user_arg_ptr
+ffffffc00827d0b4 t proc_dointvec_minmax_coredump
+ffffffc00827d0f8 T pipe_lock
+ffffffc00827d12c T pipe_unlock
+ffffffc00827d160 T pipe_double_lock
+ffffffc00827d1e8 T generic_pipe_buf_try_steal
+ffffffc00827d2b8 T generic_pipe_buf_get
+ffffffc00827d338 T generic_pipe_buf_release
+ffffffc00827d3c4 T account_pipe_buffers
+ffffffc00827d410 T too_many_pipe_buffers_soft
+ffffffc00827d43c T too_many_pipe_buffers_hard
+ffffffc00827d468 T pipe_is_unprivileged_user
+ffffffc00827d4b4 T alloc_pipe_info
+ffffffc00827d73c T free_pipe_info
+ffffffc00827d840 T create_pipe_files
+ffffffc00827da2c T do_pipe_flags
+ffffffc00827dabc t __do_pipe_flags
+ffffffc00827dba8 T __arm64_sys_pipe2
+ffffffc00827dbe4 T __arm64_sys_pipe
+ffffffc00827dc1c T pipe_wait_readable
+ffffffc00827dd80 T pipe_wait_writable
+ffffffc00827def8 t pipe_read.llvm.4671986607562431987
+ffffffc00827e35c t pipe_write.llvm.4671986607562431987
+ffffffc00827eae4 t pipe_poll.llvm.4671986607562431987
+ffffffc00827ec38 t pipe_ioctl.llvm.4671986607562431987
+ffffffc00827ee84 t fifo_open.llvm.4671986607562431987
+ffffffc00827f164 t pipe_release.llvm.4671986607562431987
+ffffffc00827f284 t pipe_fasync.llvm.4671986607562431987
+ffffffc00827f358 T round_pipe_size
+ffffffc00827f3a8 T pipe_resize_ring
+ffffffc00827f508 T get_pipe_info
+ffffffc00827f534 T pipe_fcntl
+ffffffc00827f748 t do_pipe2
+ffffffc00827f944 t anon_pipe_buf_release
+ffffffc00827fa14 t anon_pipe_buf_try_steal
+ffffffc00827fa80 t wait_for_partner
+ffffffc00827fb88 t pipefs_init_fs_context
+ffffffc00827fbe8 t pipefs_dname
+ffffffc00827fc30 t proc_dopipe_max_size
+ffffffc00827fc68 t do_proc_dopipe_max_size_conv
+ffffffc00827fcd0 T getname_flags
+ffffffc00827fe90 T putname
+ffffffc00827ff18 T getname_uflags
+ffffffc00827ff50 T getname
+ffffffc00827ff84 T getname_kernel
+ffffffc008280094 T generic_permission
+ffffffc008280208 T inode_permission
+ffffffc008280348 T path_get
+ffffffc008280394 T path_put
+ffffffc0082803d8 T nd_jump_link
+ffffffc008280494 T may_linkat
+ffffffc00828055c T follow_up
+ffffffc008280610 T follow_down_one
+ffffffc00828067c T follow_down
+ffffffc008280734 T full_name_hash
+ffffffc0082807e0 T hashlen_string
+ffffffc0082808b0 T filename_lookup
+ffffffc008280a78 t path_lookupat
+ffffffc008280bb0 T kern_path_locked
+ffffffc008280d20 T kern_path
+ffffffc008280ddc T vfs_path_lookup
+ffffffc008280ecc T try_lookup_one_len
+ffffffc008280fe4 t lookup_one_common
+ffffffc0082811f8 T lookup_one_len
+ffffffc00828132c t __lookup_slow
+ffffffc0082814b0 T lookup_one
+ffffffc0082815d8 T lookup_one_unlocked
+ffffffc0082816fc t lookup_slow
+ffffffc008281770 T lookup_one_positive_unlocked
+ffffffc0082817b8 T lookup_one_len_unlocked
+ffffffc0082817f8 T lookup_positive_unlocked
+ffffffc008281854 T path_pts
+ffffffc008281968 T user_path_at_empty
+ffffffc008281a34 T __check_sticky
+ffffffc008281a9c T lock_rename
+ffffffc008281b48 T unlock_rename
+ffffffc008281bac T vfs_create
+ffffffc008281d7c T vfs_mkobj
+ffffffc008281f08 T may_open_dev
+ffffffc008281f40 T vfs_tmpfile_open
+ffffffc008281fc4 t vfs_tmpfile
+ffffffc008282140 T do_filp_open
+ffffffc0082822b0 t path_openat
+ffffffc008282ef4 T do_file_open_root
+ffffffc008283118 T kern_path_create
+ffffffc0082831d4 t filename_create
+ffffffc00828335c T done_path_create
+ffffffc0082833cc T user_path_create
+ffffffc008283494 T vfs_mknod
+ffffffc00828369c T __arm64_sys_mknodat
+ffffffc00828370c T __arm64_sys_mknod
+ffffffc008283770 T vfs_mkdir
+ffffffc008283950 T do_mkdirat
+ffffffc008283b4c T __arm64_sys_mkdirat
+ffffffc008283bac T __arm64_sys_mkdir
+ffffffc008283c08 T vfs_rmdir
+ffffffc008283db0 t may_delete
+ffffffc008283f4c t dont_mount
+ffffffc008283f9c t dont_mount
+ffffffc008283fec t d_delete_notify
+ffffffc008284094 T do_rmdir
+ffffffc008284340 t filename_parentat
+ffffffc008284558 t __lookup_hash
+ffffffc008284698 T __arm64_sys_rmdir
+ffffffc0082846e0 T vfs_unlink
+ffffffc0082848e8 t try_break_deleg
+ffffffc008284980 t fsnotify_link_count
+ffffffc0082849f4 T do_unlinkat
+ffffffc008284ca4 T __arm64_sys_unlinkat
+ffffffc008284d18 T __arm64_sys_unlink
+ffffffc008284d60 T vfs_symlink
+ffffffc008284ef0 T do_symlinkat
+ffffffc008285138 T __arm64_sys_symlinkat
+ffffffc0082851b4 T __arm64_sys_symlink
+ffffffc008285220 T vfs_link
+ffffffc008285458 t fsnotify_link
+ffffffc008285544 T do_linkat
+ffffffc00828595c T __arm64_sys_linkat
+ffffffc0082859f4 T __arm64_sys_link
+ffffffc008285a68 T vfs_rename
+ffffffc008285f5c t fsnotify_move
+ffffffc008286158 t fsnotify_move
+ffffffc008286300 T do_renameat2
+ffffffc00828683c T __arm64_sys_renameat2
+ffffffc0082868d0 T __arm64_sys_renameat
+ffffffc008286958 T __arm64_sys_rename
+ffffffc0082869cc T readlink_copy
+ffffffc008286b9c T vfs_readlink
+ffffffc008286d28 T vfs_get_link
+ffffffc008286dc4 T page_get_link
+ffffffc008286f28 T page_put_link
+ffffffc008286fb0 T page_readlink
+ffffffc008287064 T page_symlink
+ffffffc008287224 t check_acl
+ffffffc008287344 t __traverse_mounts
+ffffffc008287540 t path_init
+ffffffc0082878e0 t handle_lookup_down
+ffffffc008287940 t link_path_walk
+ffffffc008287e94 t complete_walk
+ffffffc008287f78 t terminate_walk
+ffffffc0082880a0 t nd_jump_root
+ffffffc0082881a0 t set_root
+ffffffc0082882d0 t step_into
+ffffffc00828860c t pick_link
+ffffffc008288984 t try_to_unlazy_next
+ffffffc008288aec t legitimize_links
+ffffffc008288c3c t drop_links
+ffffffc008288cd4 t legitimize_path
+ffffffc008288d60 t try_to_unlazy
+ffffffc008288eb8 t put_link
+ffffffc008288f58 t nd_alloc_stack
+ffffffc008288fec t walk_component
+ffffffc008289118 t handle_dots
+ffffffc008289418 t lookup_fast
+ffffffc008289584 t choose_mountpoint_rcu
+ffffffc008289614 t choose_mountpoint
+ffffffc008289788 t may_open
+ffffffc0082898d8 t do_tmpfile
+ffffffc0082899ec t do_o_path
+ffffffc008289ab4 t do_mknodat
+ffffffc008289de4 t path_parentat
+ffffffc008289e60 T __f_setown
+ffffffc008289ebc t f_modown.llvm.11629156453325102521
+ffffffc008289fb4 T f_setown
+ffffffc00828a070 T f_delown
+ffffffc00828a0cc T f_getown
+ffffffc00828a14c T __arm64_sys_fcntl
+ffffffc00828afa0 T send_sigio
+ffffffc00828b0c8 t send_sigio_to_task
+ffffffc00828b270 T send_sigurg
+ffffffc00828b388 t send_sigurg_to_task
+ffffffc00828b444 T fasync_remove_entry
+ffffffc00828b520 t fasync_free_rcu
+ffffffc00828b558 T fasync_alloc
+ffffffc00828b590 T fasync_free
+ffffffc00828b5c8 T fasync_insert_entry
+ffffffc00828b6a8 T fasync_helper
+ffffffc00828b758 T kill_fasync
+ffffffc00828b834 T vfs_ioctl
+ffffffc00828b8a0 T fiemap_fill_next_extent
+ffffffc00828bac8 T fiemap_prep
+ffffffc00828bb68 T fileattr_fill_xflags
+ffffffc00828bbd0 T fileattr_fill_flags
+ffffffc00828bc50 T vfs_fileattr_get
+ffffffc00828bcac T copy_fsxattr_to_user
+ffffffc00828be6c T vfs_fileattr_set
+ffffffc00828c0c4 T __arm64_sys_ioctl
+ffffffc00828dd90 t ioctl_preallocate
+ffffffc00828dfa4 T iterate_dir
+ffffffc00828e164 T __arm64_sys_getdents
+ffffffc00828e3a8 T __arm64_sys_getdents64
+ffffffc00828e5ec t filldir
+ffffffc00828ed7c t filldir64
+ffffffc00828f50c T select_estimate_accuracy
+ffffffc00828f618 T poll_initwait
+ffffffc00828f64c t __pollwait
+ffffffc00828f764 T poll_freewait
+ffffffc00828f820 T poll_select_set_timeout
+ffffffc00828f8b4 T core_sys_select
+ffffffc00828fb34 t get_fd_set
+ffffffc00828fd18 t do_select
+ffffffc0082903b4 t set_fd_set
+ffffffc00829052c T __arm64_sys_select
+ffffffc0082907b8 T __arm64_sys_pselect6
+ffffffc008290bcc T __arm64_sys_poll
+ffffffc008290d00 T __arm64_sys_ppoll
+ffffffc008290e3c t pollwake
+ffffffc008290ed4 t poll_select_finish
+ffffffc008291304 t do_sys_poll
+ffffffc008291b0c t do_restart_poll
+ffffffc008291bb0 T take_dentry_name_snapshot
+ffffffc008291c68 T release_dentry_name_snapshot
+ffffffc008291cf0 T __d_drop
+ffffffc008291d40 t ___d_drop
+ffffffc008291ec8 T d_drop
+ffffffc008291f34 T d_mark_dontcache
+ffffffc008291fc8 T dput
+ffffffc0082920dc t retain_dentry
+ffffffc0082921b0 t dentry_kill
+ffffffc0082922c4 T dput_to_list
+ffffffc0082923cc t __dput_to_list
+ffffffc008292444 T dget_parent
+ffffffc008292530 T d_find_any_alias
+ffffffc0082925a4 T d_find_alias
+ffffffc0082926a4 T d_find_alias_rcu
+ffffffc008292760 T d_prune_aliases
+ffffffc00829284c t lock_parent
+ffffffc0082928ac t __dentry_kill
+ffffffc008292b70 T shrink_dentry_list
+ffffffc008292df4 t shrink_lock_dentry
+ffffffc008292f0c T prune_dcache_sb
+ffffffc008292fa4 t dentry_lru_isolate
+ffffffc008293210 T shrink_dcache_sb
+ffffffc0082932bc t dentry_lru_isolate_shrink
+ffffffc0082933dc T path_has_submounts
+ffffffc008293648 T d_set_mounted
+ffffffc00829374c T shrink_dcache_parent
+ffffffc008293de8 T shrink_dcache_for_umount
+ffffffc008293e90 t do_one_tree
+ffffffc008294190 T d_invalidate
+ffffffc008294458 T d_alloc
+ffffffc0082944f8 t __d_alloc.llvm.15506451468879053990
+ffffffc008294700 T d_alloc_anon
+ffffffc008294730 T d_alloc_cursor
+ffffffc008294798 T d_alloc_pseudo
+ffffffc0082947d4 T d_alloc_name
+ffffffc0082948b8 T d_set_d_op
+ffffffc008294990 T d_set_fallthru
+ffffffc0082949e4 T d_instantiate
+ffffffc008294a58 t __d_instantiate
+ffffffc008294c78 T d_instantiate_new
+ffffffc008294d24 T d_make_root
+ffffffc008294dc8 T d_instantiate_anon
+ffffffc008294df4 t __d_instantiate_anon
+ffffffc0082950d0 T d_obtain_alias
+ffffffc0082950fc t __d_obtain_alias.llvm.15506451468879053990
+ffffffc0082951cc T d_obtain_root
+ffffffc0082951fc T d_add_ci
+ffffffc0082953e0 T d_hash_and_lookup
+ffffffc0082954c8 T d_alloc_parallel
+ffffffc008295ae0 T d_splice_alias
+ffffffc008295ce4 T d_same_name
+ffffffc008295df0 T __d_lookup_rcu
+ffffffc008295f38 t __d_lookup_rcu_op_compare
+ffffffc00829607c T d_lookup
+ffffffc008296108 T __d_lookup
+ffffffc0082962c8 T d_delete
+ffffffc008296374 t dentry_unlink_inode
+ffffffc008296540 T d_rehash
+ffffffc00829658c t __d_rehash.llvm.15506451468879053990
+ffffffc008296708 t hlist_bl_unlock
+ffffffc008296770 T __d_lookup_unhash_wake
+ffffffc0082967cc t __d_lookup_unhash
+ffffffc0082969a4 T d_add
+ffffffc0082969fc t __d_add
+ffffffc008296c08 T d_exact_alias
+ffffffc008296dcc T d_move
+ffffffc008296e54 t __d_move
+ffffffc0082973a4 T d_exchange
+ffffffc008297478 T d_ancestor
+ffffffc0082974ac t __d_unalias
+ffffffc008297590 T is_subdir
+ffffffc00829765c T d_genocide
+ffffffc00829785c T d_tmpfile
+ffffffc00829795c t proc_nr_dentry
+ffffffc008297b04 t d_lru_add
+ffffffc008297c70 t __lock_parent
+ffffffc008297d14 t d_lru_del
+ffffffc008297e80 t d_shrink_add
+ffffffc008297f90 t __d_free_external
+ffffffc008297fe0 t __d_free
+ffffffc008298014 t start_dir_add
+ffffffc008298088 T get_nr_dirty_inodes
+ffffffc008298190 T inode_init_always
+ffffffc00829835c t no_open
+ffffffc008298370 T free_inode_nonrcu
+ffffffc0082983a8 T __destroy_inode
+ffffffc0082985b4 T drop_nlink
+ffffffc008298624 T clear_nlink
+ffffffc008298678 T set_nlink
+ffffffc008298718 T inc_nlink
+ffffffc008298788 T address_space_init_once
+ffffffc00829882c T inode_init_once
+ffffffc0082988dc T __iget
+ffffffc008298920 T ihold
+ffffffc008298980 T inode_add_lru
+ffffffc0082989ac t __inode_add_lru.llvm.3652123189927039832
+ffffffc008298ad4 T inode_sb_list_add
+ffffffc008298b58 T __insert_inode_hash
+ffffffc008298c24 T __remove_inode_hash
+ffffffc008298ca0 T dump_mapping
+ffffffc008298e34 T clear_inode
+ffffffc008298ed4 T evict_inodes
+ffffffc00829915c T invalidate_inodes
+ffffffc008299410 T prune_icache_sb
+ffffffc0082994f8 t inode_lru_isolate
+ffffffc0082997cc T get_next_ino
+ffffffc0082998b8 T new_inode_pseudo
+ffffffc00829990c t alloc_inode
+ffffffc008299a30 T new_inode
+ffffffc008299ae4 T unlock_new_inode
+ffffffc008299b5c T discard_new_inode
+ffffffc008299bd8 T iput
+ffffffc008299eac T lock_two_nondirectories
+ffffffc008299f28 T unlock_two_nondirectories
+ffffffc008299fa0 T inode_insert5
+ffffffc00829a1a4 t find_inode
+ffffffc00829a388 t wait_on_inode
+ffffffc00829a3d0 T iget5_locked
+ffffffc00829a480 T ilookup5
+ffffffc00829a598 t destroy_inode
+ffffffc00829a63c T iget_locked
+ffffffc00829a8b0 t find_inode_fast
+ffffffc00829aa78 T iunique
+ffffffc00829ab88 T igrab
+ffffffc00829ac18 T ilookup5_nowait
+ffffffc00829ace4 T ilookup
+ffffffc00829ae20 T find_inode_nowait
+ffffffc00829af48 T find_inode_rcu
+ffffffc00829b060 T find_inode_by_ino_rcu
+ffffffc00829b118 T insert_inode_locked
+ffffffc00829b320 T insert_inode_locked4
+ffffffc00829b384 T generic_delete_inode
+ffffffc00829b398 T bmap
+ffffffc00829b410 T generic_update_time
+ffffffc00829b4c4 T inode_update_time
+ffffffc00829b5a8 T atime_needs_update
+ffffffc00829b6e4 T current_time
+ffffffc00829b808 T touch_atime
+ffffffc00829bb18 T dentry_needs_remove_privs
+ffffffc00829bb80 T file_remove_privs
+ffffffc00829bbac t __file_remove_privs.llvm.3652123189927039832
+ffffffc00829bd38 T file_update_time
+ffffffc00829be20 t __file_update_time
+ffffffc00829bf40 T file_modified
+ffffffc00829bf6c t file_modified_flags.llvm.3652123189927039832
+ffffffc00829c098 T kiocb_modified
+ffffffc00829c0d0 T inode_needs_sync
+ffffffc00829c130 t init_once
+ffffffc00829c1e0 t init_once
+ffffffc00829c210 t init_once
+ffffffc00829c294 t init_once
+ffffffc00829c308 t init_once
+ffffffc00829c338 t init_once
+ffffffc00829c368 T init_special_inode
+ffffffc00829c408 T inode_init_owner
+ffffffc00829c460 T inode_owner_or_capable
+ffffffc00829c4c8 T inode_dio_wait
+ffffffc00829c5c0 T inode_set_flags
+ffffffc00829c650 T inode_nohighmem
+ffffffc00829c670 T timestamp_truncate
+ffffffc00829c724 T in_group_or_capable
+ffffffc00829c784 T mode_strip_sgid
+ffffffc00829c820 t proc_nr_inodes
+ffffffc00829c96c t evict
+ffffffc00829cc14 t i_callback
+ffffffc00829cc78 T setattr_should_drop_sgid
+ffffffc00829ccd4 T setattr_should_drop_suidgid
+ffffffc00829cd6c T setattr_prepare
+ffffffc00829cfa0 T inode_newsize_ok
+ffffffc00829d03c T setattr_copy
+ffffffc00829d0f4 T may_setattr
+ffffffc00829d188 T notify_change
+ffffffc00829d488 t fsnotify_change
+ffffffc00829d578 T make_bad_inode
+ffffffc00829d608 T is_bad_inode
+ffffffc00829d62c T iget_failed
+ffffffc00829d6cc t bad_inode_lookup.llvm.3233799223940426884
+ffffffc00829d6e0 t bad_inode_get_link.llvm.3233799223940426884
+ffffffc00829d6f4 t bad_inode_permission.llvm.3233799223940426884
+ffffffc00829d708 t bad_inode_get_acl.llvm.3233799223940426884
+ffffffc00829d71c t bad_inode_readlink.llvm.3233799223940426884
+ffffffc00829d730 t bad_inode_create.llvm.3233799223940426884
+ffffffc00829d744 t bad_inode_link.llvm.3233799223940426884
+ffffffc00829d758 t bad_inode_unlink.llvm.3233799223940426884
+ffffffc00829d76c t bad_inode_symlink.llvm.3233799223940426884
+ffffffc00829d780 t bad_inode_mkdir.llvm.3233799223940426884
+ffffffc00829d794 t bad_inode_rmdir.llvm.3233799223940426884
+ffffffc00829d7a8 t bad_inode_mknod.llvm.3233799223940426884
+ffffffc00829d7bc t bad_inode_rename2.llvm.3233799223940426884
+ffffffc00829d7d0 t bad_inode_setattr.llvm.3233799223940426884
+ffffffc00829d7e4 t bad_inode_getattr.llvm.3233799223940426884
+ffffffc00829d7f8 t bad_inode_listxattr.llvm.3233799223940426884
+ffffffc00829d80c t bad_inode_fiemap.llvm.3233799223940426884
+ffffffc00829d820 t bad_inode_update_time.llvm.3233799223940426884
+ffffffc00829d834 t bad_inode_atomic_open.llvm.3233799223940426884
+ffffffc00829d848 t bad_inode_tmpfile.llvm.3233799223940426884
+ffffffc00829d85c t bad_inode_set_acl.llvm.3233799223940426884
+ffffffc00829d870 t bad_file_open
+ffffffc00829d884 T dup_fd
+ffffffc00829dc20 t __free_fdtable
+ffffffc00829dc68 t alloc_fdtable
+ffffffc00829dd8c T put_files_struct
+ffffffc00829dee0 T exit_files
+ffffffc00829df44 T __get_unused_fd_flags
+ffffffc00829df74 t alloc_fd.llvm.18022260998516041143
+ffffffc00829e14c T get_unused_fd_flags
+ffffffc00829e194 T put_unused_fd
+ffffffc00829e24c T fd_install
+ffffffc00829e348 t rcu_read_unlock_sched
+ffffffc00829e3a0 T close_fd
+ffffffc00829e4ac T __close_range
+ffffffc00829e724 T __close_fd_get_file
+ffffffc00829e7e0 T close_fd_get_file
+ffffffc00829e8dc T do_close_on_exec
+ffffffc00829ea3c T fget
+ffffffc00829ea78 T fget_raw
+ffffffc00829eab4 T fget_task
+ffffffc00829eb28 t __fget_files
+ffffffc00829ec60 T task_lookup_fd_rcu
+ffffffc00829ed04 T task_lookup_next_fd_rcu
+ffffffc00829ede0 T __fdget
+ffffffc00829ee8c T __fdget_raw
+ffffffc00829ef28 T __fdget_pos
+ffffffc00829f018 T __f_unlock_pos
+ffffffc00829f048 T set_close_on_exec
+ffffffc00829f0fc T get_close_on_exec
+ffffffc00829f16c T replace_fd
+ffffffc00829f238 t expand_files
+ffffffc00829f528 t do_dup2
+ffffffc00829f68c T __receive_fd
+ffffffc00829f90c T receive_fd_replace
+ffffffc00829f9f0 T receive_fd
+ffffffc00829faa8 T __arm64_sys_dup3
+ffffffc00829fae8 T __arm64_sys_dup2
+ffffffc00829fba4 T __arm64_sys_dup
+ffffffc00829fc3c T f_dupfd
+ffffffc00829fce4 T iterate_fd
+ffffffc00829fde0 t free_fdtable_rcu
+ffffffc00829fe2c t ksys_dup3
+ffffffc00829ff44 T get_filesystem
+ffffffc00829ff54 T put_filesystem
+ffffffc00829ff64 T register_filesystem
+ffffffc0082a004c T unregister_filesystem
+ffffffc0082a00f8 T __arm64_sys_sysfs
+ffffffc0082a0408 T get_fs_type
+ffffffc0082a05b8 t filesystems_proc_show
+ffffffc0082a0660 T mnt_release_group_id
+ffffffc0082a06a8 T mnt_get_count
+ffffffc0082a074c T __mnt_is_readonly
+ffffffc0082a077c T __mnt_want_write
+ffffffc0082a0938 T mnt_want_write
+ffffffc0082a0a60 t sb_end_write.llvm.4253429566290024804
+ffffffc0082a0bdc T __mnt_want_write_file
+ffffffc0082a0c38 T mnt_want_write_file
+ffffffc0082a0d98 T __mnt_drop_write
+ffffffc0082a0e7c T mnt_drop_write
+ffffffc0082a0ebc T __mnt_drop_write_file
+ffffffc0082a0ef4 T mnt_drop_write_file
+ffffffc0082a0f44 T sb_prepare_remount_readonly
+ffffffc0082a10cc T __legitimize_mnt
+ffffffc0082a1244 t mnt_add_count
+ffffffc0082a12e0 T __lookup_mnt
+ffffffc0082a135c T lookup_mnt
+ffffffc0082a1480 T __is_local_mountpoint
+ffffffc0082a152c T mnt_set_mountpoint
+ffffffc0082a1618 T mnt_change_mountpoint
+ffffffc0082a17d0 t attach_mnt
+ffffffc0082a193c t put_mountpoint
+ffffffc0082a19fc T vfs_create_mount
+ffffffc0082a1b74 t alloc_vfsmnt
+ffffffc0082a1d40 T fc_mount
+ffffffc0082a1d9c T vfs_kern_mount
+ffffffc0082a1e80 T vfs_submount
+ffffffc0082a1ed4 T mntput
+ffffffc0082a1f18 t mntput_no_expire
+ffffffc0082a21d0 T mntget
+ffffffc0082a2280 T path_is_mountpoint
+ffffffc0082a2394 T mnt_clone_internal
+ffffffc0082a23e4 t clone_mnt
+ffffffc0082a26fc t m_start.llvm.4253429566290024804
+ffffffc0082a27b8 t m_stop.llvm.4253429566290024804
+ffffffc0082a2894 t m_next.llvm.4253429566290024804
+ffffffc0082a2920 t m_show.llvm.4253429566290024804
+ffffffc0082a2970 T mnt_cursor_del
+ffffffc0082a2a00 T may_umount_tree
+ffffffc0082a2b54 T may_umount
+ffffffc0082a2bfc T __detach_mounts
+ffffffc0082a2dcc t umount_mnt
+ffffffc0082a2ef8 t umount_tree
+ffffffc0082a329c t namespace_unlock
+ffffffc0082a33dc T may_mount
+ffffffc0082a3420 T path_umount
+ffffffc0082a3948 T __arm64_sys_umount
+ffffffc0082a39f0 T from_mnt_ns
+ffffffc0082a3a00 T copy_tree
+ffffffc0082a3cf0 T collect_mounts
+ffffffc0082a3d7c T dissolve_on_fput
+ffffffc0082a3e58 t free_mnt_ns
+ffffffc0082a3ec0 T drop_collected_mounts
+ffffffc0082a3f54 T clone_private_mount
+ffffffc0082a4058 T iterate_mounts
+ffffffc0082a4104 T count_mounts
+ffffffc0082a41a8 T __arm64_sys_open_tree
+ffffffc0082a45c8 T finish_automount
+ffffffc0082a4918 t get_mountpoint
+ffffffc0082a4af0 t unlock_mount
+ffffffc0082a4bdc T mnt_set_expiry
+ffffffc0082a4c54 T mark_mounts_for_expiry
+ffffffc0082a4e44 T path_mount
+ffffffc0082a5334 t do_loopback
+ffffffc0082a5504 t do_change_type
+ffffffc0082a566c t do_move_mount_old
+ffffffc0082a5714 t do_new_mount
+ffffffc0082a5a6c T do_mount
+ffffffc0082a5b30 T copy_mnt_ns
+ffffffc0082a5e6c t alloc_mnt_ns
+ffffffc0082a5fb4 t lock_mnt_tree
+ffffffc0082a604c T mount_subtree
+ffffffc0082a6278 T put_mnt_ns
+ffffffc0082a639c T __arm64_sys_mount
+ffffffc0082a6830 T __arm64_sys_fsmount
+ffffffc0082a6c2c T __arm64_sys_move_mount
+ffffffc0082a6f70 T is_path_reachable
+ffffffc0082a6fe4 T path_is_under
+ffffffc0082a7084 T __arm64_sys_pivot_root
+ffffffc0082a75c4 T __arm64_sys_mount_setattr
+ffffffc0082a7dc8 T kern_mount
+ffffffc0082a7e10 T kern_unmount
+ffffffc0082a7e74 T kern_unmount_array
+ffffffc0082a7f10 T our_mnt
+ffffffc0082a7f38 T current_chrooted
+ffffffc0082a801c T mnt_may_suid
+ffffffc0082a8058 t mntns_get.llvm.4253429566290024804
+ffffffc0082a8104 t mntns_put.llvm.4253429566290024804
+ffffffc0082a8130 t mntns_install.llvm.4253429566290024804
+ffffffc0082a82bc t mntns_owner.llvm.4253429566290024804
+ffffffc0082a82cc t __put_mountpoint
+ffffffc0082a8388 t unhash_mnt
+ffffffc0082a842c t __cleanup_mnt
+ffffffc0082a8458 t cleanup_mnt
+ffffffc0082a85b8 t delayed_mntput
+ffffffc0082a8634 t delayed_free_vfsmnt
+ffffffc0082a8690 t __do_loopback
+ffffffc0082a8798 t graft_tree
+ffffffc0082a8814 t attach_recursive_mnt
+ffffffc0082a8f14 t invent_group_ids
+ffffffc0082a9058 t commit_tree
+ffffffc0082a9210 t set_mount_attributes
+ffffffc0082a9274 t mnt_warn_timestamp_expiry
+ffffffc0082a93c4 t lock_mount
+ffffffc0082a94cc t do_move_mount
+ffffffc0082a96f8 t tree_contains_unbindable
+ffffffc0082a9760 t check_for_nsfs_mounts
+ffffffc0082a986c t mount_too_revealing
+ffffffc0082a9a18 T seq_open
+ffffffc0082a9abc T seq_read
+ffffffc0082a9b94 T seq_read_iter
+ffffffc0082aa08c t traverse
+ffffffc0082aa2dc T seq_lseek
+ffffffc0082aa3a4 T seq_release
+ffffffc0082aa3f4 T seq_escape_mem
+ffffffc0082aa498 T seq_vprintf
+ffffffc0082aa54c T seq_printf
+ffffffc0082aa624 T seq_bprintf
+ffffffc0082aa698 T mangle_path
+ffffffc0082aa764 T seq_path
+ffffffc0082aa8c0 T seq_file_path
+ffffffc0082aa8f0 T seq_path_root
+ffffffc0082aaa74 T seq_dentry
+ffffffc0082aabd0 T single_start
+ffffffc0082aabec T single_open
+ffffffc0082aace4 t single_next
+ffffffc0082aad04 t single_stop
+ffffffc0082aad14 T single_open_size
+ffffffc0082aadcc T single_release
+ffffffc0082aae28 T seq_release_private
+ffffffc0082aae8c T __seq_open_private
+ffffffc0082aaf58 T seq_open_private
+ffffffc0082ab024 T seq_putc
+ffffffc0082ab054 T seq_puts
+ffffffc0082ab0d4 T seq_put_decimal_ull_width
+ffffffc0082ab1f4 T seq_put_decimal_ull
+ffffffc0082ab224 T seq_put_hex_ll
+ffffffc0082ab36c T seq_put_decimal_ll
+ffffffc0082ab4d0 T seq_write
+ffffffc0082ab540 T seq_pad
+ffffffc0082ab5f0 T seq_hex_dump
+ffffffc0082ab79c T seq_list_start
+ffffffc0082ab7d8 T seq_list_start_head
+ffffffc0082ab81c T seq_list_next
+ffffffc0082ab844 T seq_list_start_rcu
+ffffffc0082ab890 T seq_list_start_head_rcu
+ffffffc0082ab8e4 T seq_list_next_rcu
+ffffffc0082ab90c T seq_hlist_start
+ffffffc0082ab930 T seq_hlist_start_head
+ffffffc0082ab968 T seq_hlist_next
+ffffffc0082ab990 T seq_hlist_start_rcu
+ffffffc0082ab9c4 T seq_hlist_start_head_rcu
+ffffffc0082aba04 T seq_hlist_next_rcu
+ffffffc0082aba40 T seq_hlist_start_percpu
+ffffffc0082abb04 T seq_hlist_next_percpu
+ffffffc0082abbf4 T xattr_supported_namespace
+ffffffc0082abca0 T __vfs_setxattr
+ffffffc0082abde0 T __vfs_setxattr_noperm
+ffffffc0082ac0dc T __vfs_setxattr_locked
+ffffffc0082ac1f0 t xattr_permission
+ffffffc0082ac350 T vfs_setxattr
+ffffffc0082ac4cc T vfs_getxattr_alloc
+ffffffc0082ac6d4 T __vfs_getxattr
+ffffffc0082ac7f8 T vfs_getxattr
+ffffffc0082aca38 T vfs_listxattr
+ffffffc0082acaf4 T __vfs_removexattr
+ffffffc0082acc20 T __vfs_removexattr_locked
+ffffffc0082ace84 T vfs_removexattr
+ffffffc0082acf98 T setxattr_copy
+ffffffc0082ad048 T do_setxattr
+ffffffc0082ad084 T __arm64_sys_setxattr
+ffffffc0082ad0c8 T __arm64_sys_lsetxattr
+ffffffc0082ad10c T __arm64_sys_fsetxattr
+ffffffc0082ad200 T do_getxattr
+ffffffc0082ad450 T __arm64_sys_getxattr
+ffffffc0082ad48c T __arm64_sys_lgetxattr
+ffffffc0082ad4c8 T __arm64_sys_fgetxattr
+ffffffc0082ad638 T __arm64_sys_listxattr
+ffffffc0082ad674 T __arm64_sys_llistxattr
+ffffffc0082ad6b0 T __arm64_sys_flistxattr
+ffffffc0082ad758 T __arm64_sys_removexattr
+ffffffc0082ad794 T __arm64_sys_lremovexattr
+ffffffc0082ad7d0 T __arm64_sys_fremovexattr
+ffffffc0082ad948 T generic_listxattr
+ffffffc0082adab4 T xattr_full_name
+ffffffc0082adb00 T simple_xattr_alloc
+ffffffc0082adb80 T simple_xattr_get
+ffffffc0082adc38 T simple_xattr_set
+ffffffc0082ade48 T simple_xattr_list
+ffffffc0082adfec T simple_xattr_list_add
+ffffffc0082ae060 t path_setxattr
+ffffffc0082ae1e0 t setxattr
+ffffffc0082ae344 t path_getxattr
+ffffffc0082ae568 t path_listxattr
+ffffffc0082ae668 t listxattr
+ffffffc0082ae914 t path_removexattr
+ffffffc0082aeb48 T simple_getattr
+ffffffc0082aeba8 T simple_statfs
+ffffffc0082aebd8 T always_delete_dentry
+ffffffc0082aebec T simple_lookup
+ffffffc0082aec60 T dcache_dir_open
+ffffffc0082aecb0 T dcache_dir_close
+ffffffc0082aece4 T dcache_dir_lseek
+ffffffc0082aee44 t scan_positives
+ffffffc0082aefc4 T dcache_readdir
+ffffffc0082af22c T generic_read_dir
+ffffffc0082af240 T noop_fsync
+ffffffc0082af254 T simple_recursive_removal
+ffffffc0082af4f0 T init_pseudo
+ffffffc0082af56c T simple_open
+ffffffc0082af58c T simple_link
+ffffffc0082af610 T simple_empty
+ffffffc0082af6b0 T simple_unlink
+ffffffc0082af71c T simple_rmdir
+ffffffc0082af808 T simple_rename_exchange
+ffffffc0082af8d4 T simple_rename
+ffffffc0082afac0 T simple_setattr
+ffffffc0082afb44 T simple_write_begin
+ffffffc0082afcc4 t simple_read_folio.llvm.7424873342276579496
+ffffffc0082afe04 t simple_write_end.llvm.7424873342276579496
+ffffffc0082afffc T simple_fill_super
+ffffffc0082b01b4 T simple_pin_fs
+ffffffc0082b0288 T simple_release_fs
+ffffffc0082b0300 T simple_read_from_buffer
+ffffffc0082b04f0 T simple_write_to_buffer
+ffffffc0082b070c T memory_read_from_buffer
+ffffffc0082b078c T simple_transaction_set
+ffffffc0082b07b8 T simple_transaction_get
+ffffffc0082b09e0 T simple_transaction_read
+ffffffc0082b0a30 T simple_transaction_release
+ffffffc0082b0a68 T simple_attr_open
+ffffffc0082b0b14 T simple_attr_release
+ffffffc0082b0b48 T simple_attr_read
+ffffffc0082b0c80 T simple_attr_write
+ffffffc0082b0cac t simple_attr_write_xsigned.llvm.7424873342276579496
+ffffffc0082b0f4c T simple_attr_write_signed
+ffffffc0082b0f7c T generic_fh_to_dentry
+ffffffc0082b0ff4 T generic_fh_to_parent
+ffffffc0082b107c T __generic_file_fsync
+ffffffc0082b1130 T generic_file_fsync
+ffffffc0082b117c T generic_check_addressable
+ffffffc0082b11d0 T noop_direct_IO
+ffffffc0082b11e4 T kfree_link
+ffffffc0082b1210 T alloc_anon_inode
+ffffffc0082b12bc T simple_nosetlease
+ffffffc0082b12d0 T simple_get_link
+ffffffc0082b12e4 T make_empty_dir_inode
+ffffffc0082b1364 T is_empty_dir_inode
+ffffffc0082b13a8 T generic_set_encrypted_ci_d_ops
+ffffffc0082b13e8 T inode_maybe_inc_iversion
+ffffffc0082b146c t pseudo_fs_free
+ffffffc0082b149c t pseudo_fs_get_tree
+ffffffc0082b14d0 t pseudo_fs_fill_super
+ffffffc0082b15a4 t empty_dir_lookup
+ffffffc0082b15b8 t empty_dir_setattr
+ffffffc0082b15cc t empty_dir_getattr
+ffffffc0082b160c t empty_dir_listxattr
+ffffffc0082b1620 t empty_dir_llseek
+ffffffc0082b1654 t empty_dir_readdir
+ffffffc0082b1764 t generic_ci_d_hash
+ffffffc0082b17e8 t generic_ci_d_compare
+ffffffc0082b1928 T __traceiter_writeback_dirty_folio
+ffffffc0082b19b8 T __traceiter_folio_wait_writeback
+ffffffc0082b1a48 T __traceiter_writeback_mark_inode_dirty
+ffffffc0082b1ad8 T __traceiter_writeback_dirty_inode_start
+ffffffc0082b1b68 T __traceiter_writeback_dirty_inode
+ffffffc0082b1bf8 T __traceiter_writeback_write_inode_start
+ffffffc0082b1c88 T __traceiter_writeback_write_inode
+ffffffc0082b1d18 T __traceiter_writeback_queue
+ffffffc0082b1da8 T __traceiter_writeback_exec
+ffffffc0082b1e38 T __traceiter_writeback_start
+ffffffc0082b1ec8 T __traceiter_writeback_written
+ffffffc0082b1f58 T __traceiter_writeback_wait
+ffffffc0082b1fe8 T __traceiter_writeback_pages_written
+ffffffc0082b2068 T __traceiter_writeback_wake_background
+ffffffc0082b20e8 T __traceiter_writeback_bdi_register
+ffffffc0082b2168 T __traceiter_wbc_writepage
+ffffffc0082b21f8 T __traceiter_writeback_queue_io
+ffffffc0082b22a0 T __traceiter_global_dirty_state
+ffffffc0082b2330 T __traceiter_bdi_dirty_ratelimit
+ffffffc0082b23c8 T __traceiter_balance_dirty_pages
+ffffffc0082b24d4 T __traceiter_writeback_sb_inodes_requeue
+ffffffc0082b2554 T __traceiter_writeback_single_inode_start
+ffffffc0082b25ec T __traceiter_writeback_single_inode
+ffffffc0082b2684 T __traceiter_writeback_lazytime
+ffffffc0082b2704 T __traceiter_writeback_lazytime_iput
+ffffffc0082b2784 T __traceiter_writeback_dirty_inode_enqueue
+ffffffc0082b2804 T __traceiter_sb_mark_inode_writeback
+ffffffc0082b2884 T __traceiter_sb_clear_inode_writeback
+ffffffc0082b2904 t trace_event_raw_event_writeback_folio_template
+ffffffc0082b2a1c t perf_trace_writeback_folio_template
+ffffffc0082b2b90 t trace_event_raw_event_writeback_dirty_inode_template
+ffffffc0082b2c88 t perf_trace_writeback_dirty_inode_template
+ffffffc0082b2dd8 t trace_event_raw_event_writeback_write_inode_template
+ffffffc0082b2ed4 t perf_trace_writeback_write_inode_template
+ffffffc0082b3028 t trace_event_raw_event_writeback_work_class
+ffffffc0082b3158 t perf_trace_writeback_work_class
+ffffffc0082b32e4 t trace_event_raw_event_writeback_pages_written
+ffffffc0082b339c t perf_trace_writeback_pages_written
+ffffffc0082b34a8 t trace_event_raw_event_writeback_class
+ffffffc0082b358c t perf_trace_writeback_class
+ffffffc0082b36c8 t trace_event_raw_event_writeback_bdi_register
+ffffffc0082b3798 t perf_trace_writeback_bdi_register
+ffffffc0082b38cc t trace_event_raw_event_wbc_class
+ffffffc0082b3a04 t perf_trace_wbc_class
+ffffffc0082b3b98 t trace_event_raw_event_writeback_queue_io
+ffffffc0082b3cd4 t perf_trace_writeback_queue_io
+ffffffc0082b3e64 t trace_event_raw_event_global_dirty_state
+ffffffc0082b3f90 t perf_trace_global_dirty_state
+ffffffc0082b4118 t trace_event_raw_event_bdi_dirty_ratelimit
+ffffffc0082b423c t perf_trace_bdi_dirty_ratelimit
+ffffffc0082b43bc t trace_event_raw_event_balance_dirty_pages
+ffffffc0082b45d4 t perf_trace_balance_dirty_pages
+ffffffc0082b484c t trace_event_raw_event_writeback_sb_inodes_requeue
+ffffffc0082b4950 t perf_trace_writeback_sb_inodes_requeue
+ffffffc0082b4ab0 t trace_event_raw_event_writeback_single_inode_template
+ffffffc0082b4bd0 t perf_trace_writeback_single_inode_template
+ffffffc0082b4d4c t trace_event_raw_event_writeback_inode_template
+ffffffc0082b4e2c t perf_trace_writeback_inode_template
+ffffffc0082b4f60 T wb_wait_for_completion
+ffffffc0082b5064 T wb_start_background_writeback
+ffffffc0082b5198 T inode_io_list_del
+ffffffc0082b5300 T sb_mark_inode_writeback
+ffffffc0082b547c T sb_clear_inode_writeback
+ffffffc0082b55ec T inode_wait_for_writeback
+ffffffc0082b56e8 T wb_workfn
+ffffffc0082b5cdc t trace_writeback_pages_written
+ffffffc0082b5dd8 t writeback_inodes_wb
+ffffffc0082b5ecc T wakeup_flusher_threads_bdi
+ffffffc0082b5f14 t __wakeup_flusher_threads_bdi.llvm.16039856150304110392
+ffffffc0082b6020 T wakeup_flusher_threads
+ffffffc0082b60b0 T dirtytime_interval_handler
+ffffffc0082b6114 T __mark_inode_dirty
+ffffffc0082b6620 t inode_io_list_move_locked
+ffffffc0082b683c T writeback_inodes_sb_nr
+ffffffc0082b690c T writeback_inodes_sb
+ffffffc0082b6a14 T try_to_writeback_inodes_sb
+ffffffc0082b6b30 T sync_inodes_sb
+ffffffc0082b6d70 t bdi_split_work_to_wbs
+ffffffc0082b6f98 T write_inode_now
+ffffffc0082b7034 t writeback_single_inode
+ffffffc0082b72d8 T sync_inode_metadata
+ffffffc0082b734c t trace_raw_output_writeback_folio_template
+ffffffc0082b73c4 t trace_raw_output_writeback_dirty_inode_template
+ffffffc0082b7498 t trace_raw_output_writeback_write_inode_template
+ffffffc0082b7518 t trace_raw_output_writeback_work_class
+ffffffc0082b7608 t trace_raw_output_writeback_pages_written
+ffffffc0082b767c t trace_raw_output_writeback_class
+ffffffc0082b76f4 t trace_raw_output_writeback_bdi_register
+ffffffc0082b7768 t trace_raw_output_wbc_class
+ffffffc0082b780c t trace_raw_output_writeback_queue_io
+ffffffc0082b78c4 t trace_raw_output_global_dirty_state
+ffffffc0082b7950 t trace_raw_output_bdi_dirty_ratelimit
+ffffffc0082b79e0 t trace_raw_output_balance_dirty_pages
+ffffffc0082b7a94 t trace_raw_output_writeback_sb_inodes_requeue
+ffffffc0082b7b64 t trace_raw_output_writeback_single_inode_template
+ffffffc0082b7c4c t trace_raw_output_writeback_inode_template
+ffffffc0082b7d0c t wb_writeback
+ffffffc0082b81e8 t queue_io
+ffffffc0082b8424 t queue_io
+ffffffc0082b84a4 t writeback_sb_inodes
+ffffffc0082b8b18 t __writeback_inodes_wb
+ffffffc0082b8c74 t move_expired_inodes
+ffffffc0082b8e80 t __writeback_single_inode
+ffffffc0082b9438 t inode_cgwb_move_to_attached
+ffffffc0082b9594 t wakeup_dirtytime_writeback
+ffffffc0082b96a0 T get_dominating_id
+ffffffc0082b9748 T change_mnt_propagation
+ffffffc0082b99a0 T propagate_mnt
+ffffffc0082b9c00 t propagate_one
+ffffffc0082b9de0 T propagate_mount_busy
+ffffffc0082b9fc4 T propagate_mount_unlock
+ffffffc0082ba110 T propagate_umount
+ffffffc0082ba604 t umount_one
+ffffffc0082ba6dc t page_cache_pipe_buf_confirm.llvm.12042346187978850300
+ffffffc0082ba810 t page_cache_pipe_buf_release.llvm.12042346187978850300
+ffffffc0082ba8b4 t page_cache_pipe_buf_try_steal.llvm.12042346187978850300
+ffffffc0082ba9e0 T splice_to_pipe
+ffffffc0082bab50 T add_to_pipe
+ffffffc0082bac3c T splice_grow_spd
+ffffffc0082bacd4 T splice_shrink_spd
+ffffffc0082bad24 T generic_file_splice_read
+ffffffc0082baeb4 T __splice_from_pipe
+ffffffc0082bb124 t splice_from_pipe_next
+ffffffc0082bb2a4 T splice_from_pipe
+ffffffc0082bb348 T iter_file_splice_write
+ffffffc0082bb70c T generic_splice_sendpage
+ffffffc0082bb7b0 t pipe_to_sendpage
+ffffffc0082bb87c T splice_direct_to_actor
+ffffffc0082bbb50 T do_splice_direct
+ffffffc0082bbc30 t direct_splice_actor
+ffffffc0082bbc9c T splice_file_to_pipe
+ffffffc0082bbe68 T do_splice
+ffffffc0082bc648 T __arm64_sys_vmsplice
+ffffffc0082bcc24 T __arm64_sys_splice
+ffffffc0082bd2a4 T do_tee
+ffffffc0082bd584 t opipe_prep
+ffffffc0082bd670 T __arm64_sys_tee
+ffffffc0082bd74c t user_page_pipe_buf_try_steal
+ffffffc0082bd794 t pipe_to_user
+ffffffc0082bd7ec T sync_filesystem
+ffffffc0082bd8dc T ksys_sync
+ffffffc0082bd99c t sync_inodes_one_sb
+ffffffc0082bd9d0 t sync_fs_one_sb
+ffffffc0082bda34 T __arm64_sys_sync
+ffffffc0082bda64 T emergency_sync
+ffffffc0082bdad8 t do_sync_work
+ffffffc0082bdba8 T __arm64_sys_syncfs
+ffffffc0082bdc54 T vfs_fsync_range
+ffffffc0082bdd00 T vfs_fsync
+ffffffc0082bdd9c T __arm64_sys_fsync
+ffffffc0082bde68 T __arm64_sys_fdatasync
+ffffffc0082bdf14 T sync_file_range
+ffffffc0082be038 T ksys_sync_file_range
+ffffffc0082be0c8 T __arm64_sys_sync_file_range
+ffffffc0082be15c T __arm64_sys_sync_file_range2
+ffffffc0082be1f0 T vfs_utimes
+ffffffc0082be424 T do_utimes
+ffffffc0082be58c T __arm64_sys_utimensat
+ffffffc0082be67c T __d_path
+ffffffc0082be71c t prepend_path
+ffffffc0082bea3c T d_absolute_path
+ffffffc0082beae8 T d_path
+ffffffc0082bec84 t prepend
+ffffffc0082bed50 T dynamic_dname
+ffffffc0082bee40 T simple_dname
+ffffffc0082bef80 T dentry_path_raw
+ffffffc0082beffc t __dentry_path
+ffffffc0082bf1d0 T dentry_path
+ffffffc0082bf294 T __arm64_sys_getcwd
+ffffffc0082bf610 T fsstack_copy_inode_size
+ffffffc0082bf630 T fsstack_copy_attr_all
+ffffffc0082bf6a8 T set_fs_root
+ffffffc0082bf770 T set_fs_pwd
+ffffffc0082bf838 T chroot_fs_refs
+ffffffc0082bfa20 T free_fs_struct
+ffffffc0082bfa74 T exit_fs
+ffffffc0082bfb14 T copy_fs_struct
+ffffffc0082bfbb8 T unshare_fs_struct
+ffffffc0082bfcf0 T current_umask
+ffffffc0082bfd0c T vfs_get_fsid
+ffffffc0082bfdec T vfs_statfs
+ffffffc0082bfefc T user_statfs
+ffffffc0082c011c T fd_statfs
+ffffffc0082c0260 T __arm64_sys_statfs
+ffffffc0082c0300 T __arm64_sys_statfs64
+ffffffc0082c03b4 T __arm64_sys_fstatfs
+ffffffc0082c0458 T __arm64_sys_fstatfs64
+ffffffc0082c050c T __arm64_sys_ustat
+ffffffc0082c07c4 t do_statfs_native
+ffffffc0082c09a4 t do_statfs64
+ffffffc0082c0b88 T pin_remove
+ffffffc0082c0c3c T pin_insert
+ffffffc0082c0cd0 T pin_kill
+ffffffc0082c0e18 t __add_wait_queue
+ffffffc0082c0ea0 T mnt_pin_kill
+ffffffc0082c0f08 T group_pin_kill
+ffffffc0082c0f68 t ns_prune_dentry.llvm.18354850247980327239
+ffffffc0082c0f88 t ns_dname.llvm.18354850247980327239
+ffffffc0082c0fd8 T ns_get_path_cb
+ffffffc0082c1058 t __ns_get_path
+ffffffc0082c121c T ns_get_path
+ffffffc0082c12a4 T open_related_ns
+ffffffc0082c13c0 T ns_get_name
+ffffffc0082c1488 T proc_ns_file
+ffffffc0082c14ac T proc_ns_fget
+ffffffc0082c1500 T ns_match
+ffffffc0082c1540 t ns_ioctl.llvm.18354850247980327239
+ffffffc0082c1760 t nsfs_init_fs_context
+ffffffc0082c17c0 t nsfs_evict
+ffffffc0082c1820 t nsfs_show_path
+ffffffc0082c1868 T fs_ftype_to_dtype
+ffffffc0082c1898 T fs_umode_to_ftype
+ffffffc0082c18b8 T fs_umode_to_dtype
+ffffffc0082c18e4 T vfs_parse_fs_param_source
+ffffffc0082c198c T logfc
+ffffffc0082c1b7c T vfs_parse_fs_param
+ffffffc0082c1d10 T vfs_parse_fs_string
+ffffffc0082c1dcc T generic_parse_monolithic
+ffffffc0082c1f38 T fs_context_for_mount
+ffffffc0082c1f70 t alloc_fs_context.llvm.9950556747101389877
+ffffffc0082c2134 T fs_context_for_reconfigure
+ffffffc0082c2178 T fs_context_for_submount
+ffffffc0082c21b0 T fc_drop_locked
+ffffffc0082c21fc T vfs_dup_fs_context
+ffffffc0082c2370 T put_fs_context
+ffffffc0082c2564 t legacy_fs_context_free.llvm.9950556747101389877
+ffffffc0082c25b8 t legacy_fs_context_dup.llvm.9950556747101389877
+ffffffc0082c2648 t legacy_parse_param.llvm.9950556747101389877
+ffffffc0082c2890 t legacy_parse_monolithic.llvm.9950556747101389877
+ffffffc0082c290c t legacy_get_tree.llvm.9950556747101389877
+ffffffc0082c298c t legacy_reconfigure.llvm.9950556747101389877
+ffffffc0082c2a08 T parse_monolithic_mount_data
+ffffffc0082c2a64 T vfs_clean_context
+ffffffc0082c2b04 T finish_clean_context
+ffffffc0082c2be0 t legacy_init_fs_context
+ffffffc0082c2c4c T lookup_constant
+ffffffc0082c2cc0 T __fs_parse
+ffffffc0082c2e88 T fs_lookup_param
+ffffffc0082c2fd0 T fs_param_is_bool
+ffffffc0082c3134 T fs_param_is_u32
+ffffffc0082c31c4 T fs_param_is_s32
+ffffffc0082c3258 T fs_param_is_u64
+ffffffc0082c32ec T fs_param_is_enum
+ffffffc0082c33b4 T fs_param_is_string
+ffffffc0082c3424 T fs_param_is_blob
+ffffffc0082c3480 T fs_param_is_fd
+ffffffc0082c3534 T fs_param_is_blockdev
+ffffffc0082c3548 T fs_param_is_path
+ffffffc0082c355c t fscontext_read.llvm.15272422448163927310
+ffffffc0082c37d0 t fscontext_release.llvm.15272422448163927310
+ffffffc0082c380c T __arm64_sys_fsopen
+ffffffc0082c394c T __arm64_sys_fspick
+ffffffc0082c3ae8 T __arm64_sys_fsconfig
+ffffffc0082c3f5c T kernel_read_file
+ffffffc0082c422c T kernel_read_file_from_path
+ffffffc0082c42dc T kernel_read_file_from_path_initns
+ffffffc0082c4420 T kernel_read_file_from_fd
+ffffffc0082c44d0 T __generic_remap_file_range_prep
+ffffffc0082c4804 t vfs_dedupe_file_range_compare
+ffffffc0082c4bdc t generic_remap_check_len
+ffffffc0082c4c58 T generic_remap_file_range_prep
+ffffffc0082c4c84 T do_clone_file_range
+ffffffc0082c4dd4 t fsnotify_access
+ffffffc0082c4e84 T vfs_clone_file_range
+ffffffc0082c5154 T vfs_dedupe_file_range_one
+ffffffc0082c530c T vfs_dedupe_file_range
+ffffffc0082c54e0 T touch_buffer
+ffffffc0082c55b4 T __lock_buffer
+ffffffc0082c5624 T unlock_buffer
+ffffffc0082c5684 T buffer_check_dirty_writeback
+ffffffc0082c56f4 T __wait_on_buffer
+ffffffc0082c5738 T end_buffer_read_sync
+ffffffc0082c5848 T end_buffer_write_sync
+ffffffc0082c599c T mark_buffer_write_io_error
+ffffffc0082c5af0 T end_buffer_async_write
+ffffffc0082c5d04 T mark_buffer_async_write
+ffffffc0082c5d54 T inode_has_buffers
+ffffffc0082c5d78 T emergency_thaw_bdev
+ffffffc0082c5dd8 T sync_mapping_buffers
+ffffffc0082c62a4 T write_boundary_block
+ffffffc0082c6330 T __find_get_block
+ffffffc0082c68d4 T write_dirty_buffer
+ffffffc0082c6a50 T mark_buffer_dirty_inode
+ffffffc0082c6b2c T mark_buffer_dirty
+ffffffc0082c6ce8 T block_dirty_folio
+ffffffc0082c6ddc T invalidate_inode_buffers
+ffffffc0082c6e9c T remove_inode_buffers
+ffffffc0082c6f7c T alloc_page_buffers
+ffffffc0082c706c T alloc_buffer_head
+ffffffc0082c71e0 T set_bh_page
+ffffffc0082c7228 T free_buffer_head
+ffffffc0082c7398 T __brelse
+ffffffc0082c741c T __bforget
+ffffffc0082c7534 T __getblk_gfp
+ffffffc0082c7914 T __breadahead
+ffffffc0082c7a90 T __bread_gfp
+ffffffc0082c7c88 T has_bh_in_lru
+ffffffc0082c7d50 T invalidate_bh_lrus
+ffffffc0082c7d9c t invalidate_bh_lru.llvm.14884577810795631217
+ffffffc0082c7eb4 T invalidate_bh_lrus_cpu
+ffffffc0082c7fb0 T block_invalidate_folio
+ffffffc0082c8204 T create_empty_buffers
+ffffffc0082c84d0 T clean_bdev_aliases
+ffffffc0082c8730 T __block_write_full_page
+ffffffc0082c8e70 t submit_bh_wbc.llvm.14884577810795631217
+ffffffc0082c8fe4 T page_zero_new_buffers
+ffffffc0082c9210 T __block_write_begin_int
+ffffffc0082c9a80 T __block_write_begin
+ffffffc0082c9ac8 T block_write_begin
+ffffffc0082c9b8c T block_write_end
+ffffffc0082c9c30 t __block_commit_write.llvm.14884577810795631217
+ffffffc0082c9d88 T generic_write_end
+ffffffc0082c9f10 T block_is_partially_uptodate
+ffffffc0082c9fd8 T block_read_full_folio
+ffffffc0082ca4e8 t end_buffer_async_read
+ffffffc0082ca740 T submit_bh
+ffffffc0082ca76c T generic_cont_expand_simple
+ffffffc0082ca868 T cont_write_begin
+ffffffc0082cacec T block_commit_write
+ffffffc0082cad1c T block_page_mkwrite
+ffffffc0082cae88 T block_truncate_page
+ffffffc0082cb218 T block_write_full_page
+ffffffc0082cb358 T generic_block_bmap
+ffffffc0082cb404 T __sync_dirty_buffer
+ffffffc0082cb628 T sync_dirty_buffer
+ffffffc0082cb658 T try_to_free_buffers
+ffffffc0082cb75c t drop_buffers
+ffffffc0082cb8c8 T bh_uptodate_or_lock
+ffffffc0082cb9dc T __bh_read
+ffffffc0082cbaac T __bh_read_batch
+ffffffc0082cbc78 t buffer_exit_cpu_dead
+ffffffc0082cbdec t init_page_buffers
+ffffffc0082cbf0c t end_buffer_async_read_io
+ffffffc0082cbf38 t end_bio_bh_io_sync
+ffffffc0082cbfd8 T sb_init_dio_done_wq
+ffffffc0082cc08c T __blockdev_direct_IO
+ffffffc0082cd1e4 t dio_zero_block
+ffffffc0082cd2a0 t dio_send_cur_page
+ffffffc0082cd5b4 t dio_complete
+ffffffc0082cd7f8 t submit_page_section
+ffffffc0082cdac8 t dio_new_bio
+ffffffc0082cdc90 t dio_bio_end_aio
+ffffffc0082cde24 t dio_bio_end_io
+ffffffc0082cdeb0 t dio_aio_complete_work
+ffffffc0082cdee8 T mpage_readahead
+ffffffc0082ce0ac t do_mpage_readpage
+ffffffc0082ce910 T mpage_read_folio
+ffffffc0082ce9cc T clean_page_buffers
+ffffffc0082ce9f8 t clean_buffers.llvm.2906456923507402159
+ffffffc0082cead8 T mpage_writepages
+ffffffc0082ceba4 t __mpage_writepage
+ffffffc0082cf3bc t mpage_end_io
+ffffffc0082cf4b0 t mpage_end_io
+ffffffc0082cf564 t mounts_poll
+ffffffc0082cf600 t mounts_open
+ffffffc0082cf634 t mounts_release
+ffffffc0082cf6a4 t mountinfo_open
+ffffffc0082cf6d8 t mountstats_open
+ffffffc0082cf708 t mounts_open_common
+ffffffc0082cf9ec t show_vfsmnt
+ffffffc0082cfc14 t show_sb_opts
+ffffffc0082cfcc4 t show_mnt_opts
+ffffffc0082cfde8 t show_mountinfo
+ffffffc0082d0134 t show_vfsstat
+ffffffc0082d0374 T __fsnotify_inode_delete
+ffffffc0082d03a4 T __fsnotify_vfsmount_delete
+ffffffc0082d03d4 T fsnotify_sb_delete
+ffffffc0082d05e8 T __fsnotify_update_child_dentry_flags
+ffffffc0082d06f4 T __fsnotify_parent
+ffffffc0082d096c T fsnotify
+ffffffc0082d1318 T fsnotify_get_cookie
+ffffffc0082d136c T fsnotify_destroy_event
+ffffffc0082d1424 T fsnotify_insert_event
+ffffffc0082d15ac T fsnotify_remove_queued_event
+ffffffc0082d1624 T fsnotify_peek_first_event
+ffffffc0082d167c T fsnotify_remove_first_event
+ffffffc0082d173c T fsnotify_flush_notify
+ffffffc0082d18c0 T fsnotify_group_stop_queueing
+ffffffc0082d1910 T fsnotify_destroy_group
+ffffffc0082d1ae8 T fsnotify_put_group
+ffffffc0082d1ba8 T fsnotify_get_group
+ffffffc0082d1c20 T fsnotify_alloc_group
+ffffffc0082d1d00 T fsnotify_fasync
+ffffffc0082d1d3c T fsnotify_get_mark
+ffffffc0082d1dc8 T fsnotify_conn_mask
+ffffffc0082d1e08 T fsnotify_recalc_mask
+ffffffc0082d1e64 t __fsnotify_recalc_mask
+ffffffc0082d1fe0 T fsnotify_put_mark
+ffffffc0082d2270 t fsnotify_detach_connector_from_object
+ffffffc0082d23c4 T fsnotify_prepare_user_wait
+ffffffc0082d25e0 T fsnotify_finish_user_wait
+ffffffc0082d26bc T fsnotify_detach_mark
+ffffffc0082d2790 T fsnotify_free_mark
+ffffffc0082d2830 T fsnotify_destroy_mark
+ffffffc0082d2930 T fsnotify_compare_groups
+ffffffc0082d298c T fsnotify_add_mark_locked
+ffffffc0082d2f74 T fsnotify_add_mark
+ffffffc0082d3038 T fsnotify_find_mark
+ffffffc0082d31a4 T fsnotify_clear_marks_by_group
+ffffffc0082d3480 T fsnotify_destroy_marks
+ffffffc0082d36b4 T fsnotify_init_mark
+ffffffc0082d3718 T fsnotify_wait_marks_destroyed
+ffffffc0082d374c t fsnotify_connector_destroy_workfn
+ffffffc0082d37d4 t fsnotify_mark_destroy_workfn
+ffffffc0082d3908 T inotify_show_fdinfo
+ffffffc0082d3b68 T inotify_handle_inode_event
+ffffffc0082d3c80 t inotify_merge
+ffffffc0082d3d00 t inotify_free_group_priv.llvm.12423228666647729506
+ffffffc0082d3d64 t inotify_freeing_mark.llvm.12423228666647729506
+ffffffc0082d3d90 t inotify_free_event.llvm.12423228666647729506
+ffffffc0082d3dc0 t inotify_free_mark.llvm.12423228666647729506
+ffffffc0082d3df8 t idr_callback
+ffffffc0082d3e7c T inotify_ignored_and_remove_idr
+ffffffc0082d3ee0 t inotify_remove_from_idr
+ffffffc0082d40c4 T __arm64_sys_inotify_init1
+ffffffc0082d40f8 T __arm64_sys_inotify_init
+ffffffc0082d4128 t do_inotify_init
+ffffffc0082d4264 T __arm64_sys_inotify_add_watch
+ffffffc0082d4704 T __arm64_sys_inotify_rm_watch
+ffffffc0082d481c t inotify_read
+ffffffc0082d4e9c t inotify_poll
+ffffffc0082d4f48 t inotify_ioctl
+ffffffc0082d5128 t inotify_release
+ffffffc0082d515c T eventpoll_release_file
+ffffffc0082d51f0 t ep_remove
+ffffffc0082d53e0 T __arm64_sys_epoll_create1
+ffffffc0082d5414 T __arm64_sys_epoll_create
+ffffffc0082d545c T do_epoll_ctl
+ffffffc0082d5830 t ep_insert
+ffffffc0082d5dc4 t ep_modify
+ffffffc0082d6010 T __arm64_sys_epoll_ctl
+ffffffc0082d61f0 T __arm64_sys_epoll_wait
+ffffffc0082d62e4 T __arm64_sys_epoll_pwait
+ffffffc0082d6474 T __arm64_sys_epoll_pwait2
+ffffffc0082d65d0 t epi_rcu_free
+ffffffc0082d6604 t do_epoll_create
+ffffffc0082d67a4 t ep_free
+ffffffc0082d68c4 t ep_eventpoll_poll
+ffffffc0082d68f4 t ep_eventpoll_release
+ffffffc0082d692c t ep_show_fdinfo
+ffffffc0082d69d8 t __ep_eventpoll_poll
+ffffffc0082d6bd4 t ep_done_scan
+ffffffc0082d6d24 t ep_loop_check_proc
+ffffffc0082d6e38 t ep_ptable_queue_proc
+ffffffc0082d6ee0 t reverse_path_check_proc
+ffffffc0082d6fc8 t ep_poll_callback
+ffffffc0082d7318 t ep_destroy_wakeup_source
+ffffffc0082d7360 t do_epoll_wait
+ffffffc0082d7c24 t ep_autoremove_wake_function
+ffffffc0082d7c90 t ep_busy_loop_end
+ffffffc0082d7d24 T anon_inode_getfile
+ffffffc0082d7df4 t __anon_inode_getfile.llvm.17603695331304393581
+ffffffc0082d7f74 T anon_inode_getfile_secure
+ffffffc0082d7fa4 T anon_inode_getfd
+ffffffc0082d80a0 T anon_inode_getfd_secure
+ffffffc0082d814c t anon_inodefs_init_fs_context
+ffffffc0082d81a0 t anon_inodefs_dname
+ffffffc0082d81e4 T signalfd_cleanup
+ffffffc0082d8228 T __arm64_sys_signalfd4
+ffffffc0082d83fc T __arm64_sys_signalfd
+ffffffc0082d85c8 t do_signalfd4
+ffffffc0082d8734 t signalfd_read
+ffffffc0082d8bb8 t signalfd_poll
+ffffffc0082d8c78 t signalfd_release
+ffffffc0082d8cac t signalfd_show_fdinfo
+ffffffc0082d8d20 T timerfd_clock_was_set
+ffffffc0082d8dfc T timerfd_resume
+ffffffc0082d8e3c T __arm64_sys_timerfd_create
+ffffffc0082d8f94 T __arm64_sys_timerfd_settime
+ffffffc0082d9404 T __arm64_sys_timerfd_gettime
+ffffffc0082d960c t timerfd_resume_work
+ffffffc0082d9638 t timerfd_alarmproc
+ffffffc0082d96b8 t timerfd_read
+ffffffc0082d9a14 t timerfd_poll
+ffffffc0082d9aa8 t timerfd_release
+ffffffc0082d9b70 t timerfd_show
+ffffffc0082d9c74 t timerfd_tmrproc
+ffffffc0082d9cf4 T eventfd_signal_mask
+ffffffc0082d9dd0 T eventfd_signal
+ffffffc0082d9ea8 T eventfd_ctx_put
+ffffffc0082d9f50 T eventfd_ctx_do_read
+ffffffc0082d9f84 T eventfd_ctx_remove_wait_queue
+ffffffc0082da078 T eventfd_fget
+ffffffc0082da0cc T eventfd_ctx_fdget
+ffffffc0082da1a4 T eventfd_ctx_fileget
+ffffffc0082da248 T __arm64_sys_eventfd2
+ffffffc0082da284 T __arm64_sys_eventfd
+ffffffc0082da2bc t eventfd_write
+ffffffc0082da62c t eventfd_read
+ffffffc0082da898 t eventfd_poll
+ffffffc0082da930 t eventfd_release
+ffffffc0082da9f0 t eventfd_show_fdinfo
+ffffffc0082daa68 t do_eventfd
+ffffffc0082dabb8 T handle_userfault
+ffffffc0082dafb4 t userfaultfd_wake_function
+ffffffc0082db058 t userfaultfd_ctx_put
+ffffffc0082db140 T dup_userfaultfd
+ffffffc0082db37c T dup_userfaultfd_complete
+ffffffc0082db478 T mremap_userfaultfd_prep
+ffffffc0082db5ac T mremap_userfaultfd_complete
+ffffffc0082db638 t userfaultfd_event_wait_completion
+ffffffc0082db970 T userfaultfd_remove
+ffffffc0082dbac8 T userfaultfd_unmap_prep
+ffffffc0082dbc48 T userfaultfd_unmap_complete
+ffffffc0082dbd54 T __arm64_sys_userfaultfd
+ffffffc0082dbdb4 t mmap_write_lock
+ffffffc0082dbe20 t new_userfaultfd
+ffffffc0082dbf78 t userfaultfd_read
+ffffffc0082dc620 t userfaultfd_poll
+ffffffc0082dc6e0 t userfaultfd_ioctl
+ffffffc0082de75c t userfaultfd_release
+ffffffc0082dea6c t userfaultfd_show_fdinfo
+ffffffc0082deb28 t mmget_not_zero
+ffffffc0082deba8 t init_once_userfaultfd_ctx
+ffffffc0082dec3c t userfaultfd_dev_ioctl
+ffffffc0082dec84 T kiocb_set_cancel_fn
+ffffffc0082ded3c T exit_aio
+ffffffc0082dee8c t kill_ioctx
+ffffffc0082defdc T __arm64_sys_io_setup
+ffffffc0082dfccc T __arm64_sys_io_destroy
+ffffffc0082dfe90 T __arm64_sys_io_submit
+ffffffc0082e0dbc T __arm64_sys_io_cancel
+ffffffc0082e10ec T __arm64_sys_io_getevents
+ffffffc0082e11c8 T __arm64_sys_io_pgetevents
+ffffffc0082e1470 t aio_init_fs_context
+ffffffc0082e14cc t free_ioctx_users
+ffffffc0082e168c t free_ioctx_reqs
+ffffffc0082e1740 t aio_free_ring
+ffffffc0082e1870 t free_ioctx
+ffffffc0082e18d8 t aio_migrate_folio
+ffffffc0082e1b00 t aio_ring_mmap
+ffffffc0082e1b80 t aio_ring_mremap
+ffffffc0082e1c58 t lookup_ioctx
+ffffffc0082e1f28 t iocb_put
+ffffffc0082e2268 t iocb_destroy
+ffffffc0082e23c4 t aio_read
+ffffffc0082e2580 t aio_write
+ffffffc0082e2838 t aio_prep_rw
+ffffffc0082e2928 t aio_complete_rw
+ffffffc0082e2b54 t aio_fsync_work
+ffffffc0082e2c0c t aio_poll_complete_work
+ffffffc0082e2dec t aio_poll_queue_proc
+ffffffc0082e2e50 t aio_poll_wake
+ffffffc0082e3058 t aio_poll_cancel
+ffffffc0082e30f8 t aio_poll_put_work
+ffffffc0082e3124 t do_io_getevents
+ffffffc0082e33d0 t aio_read_events
+ffffffc0082e3814 T __traceiter_locks_get_lock_context
+ffffffc0082e38ac T __traceiter_posix_lock_inode
+ffffffc0082e3944 T __traceiter_fcntl_setlk
+ffffffc0082e39dc T __traceiter_locks_remove_posix
+ffffffc0082e3a74 T __traceiter_flock_lock_inode
+ffffffc0082e3b0c T __traceiter_break_lease_noblock
+ffffffc0082e3b9c T __traceiter_break_lease_block
+ffffffc0082e3c2c T __traceiter_break_lease_unblock
+ffffffc0082e3cbc T __traceiter_generic_delete_lease
+ffffffc0082e3d4c T __traceiter_time_out_leases
+ffffffc0082e3ddc T __traceiter_generic_add_lease
+ffffffc0082e3e6c T __traceiter_leases_conflict
+ffffffc0082e3f04 t trace_event_raw_event_locks_get_lock_context
+ffffffc0082e3fe8 t perf_trace_locks_get_lock_context
+ffffffc0082e411c t trace_event_raw_event_filelock_lock
+ffffffc0082e4254 t perf_trace_filelock_lock
+ffffffc0082e43dc t trace_event_raw_event_filelock_lease
+ffffffc0082e44f4 t perf_trace_filelock_lease
+ffffffc0082e4668 t trace_event_raw_event_generic_add_lease
+ffffffc0082e477c t perf_trace_generic_add_lease
+ffffffc0082e48ec t trace_event_raw_event_leases_conflict
+ffffffc0082e49e4 t perf_trace_leases_conflict
+ffffffc0082e4b2c T locks_free_lock_context
+ffffffc0082e4b78 t locks_check_ctx_lists
+ffffffc0082e4c3c T locks_alloc_lock
+ffffffc0082e4cc8 T locks_release_private
+ffffffc0082e4dd4 T locks_owner_has_blockers
+ffffffc0082e4e60 T locks_free_lock
+ffffffc0082e4f7c T locks_init_lock
+ffffffc0082e5028 T locks_copy_conflock
+ffffffc0082e50bc T locks_copy_lock
+ffffffc0082e51b4 T locks_delete_block
+ffffffc0082e5290 t __locks_wake_up_blocks
+ffffffc0082e5380 T posix_test_lock
+ffffffc0082e5558 T posix_lock_file
+ffffffc0082e5584 t posix_lock_inode.llvm.17601174836752334682
+ffffffc0082e64dc T lease_modify
+ffffffc0082e661c T __break_lease
+ffffffc0082e6fc8 t percpu_down_read
+ffffffc0082e70dc t time_out_leases
+ffffffc0082e72c4 t leases_conflict
+ffffffc0082e7458 t percpu_up_read
+ffffffc0082e75d8 t percpu_up_read
+ffffffc0082e7750 T lease_get_mtime
+ffffffc0082e780c T fcntl_getlease
+ffffffc0082e7a58 T generic_setlease
+ffffffc0082e8268 T lease_register_notifier
+ffffffc0082e82a0 T lease_unregister_notifier
+ffffffc0082e82d8 T vfs_setlease
+ffffffc0082e8390 T fcntl_setlease
+ffffffc0082e85c4 T locks_lock_inode_wait
+ffffffc0082e87d4 T __arm64_sys_flock
+ffffffc0082e8b38 T vfs_test_lock
+ffffffc0082e8ba0 T fcntl_getlk
+ffffffc0082e8da0 t posix_lock_to_flock
+ffffffc0082e8e78 T vfs_lock_file
+ffffffc0082e8edc T fcntl_setlk
+ffffffc0082e9268 t do_lock_file_wait
+ffffffc0082e93f4 T locks_remove_posix
+ffffffc0082e9678 T locks_remove_file
+ffffffc0082e9b60 T vfs_cancel_lock
+ffffffc0082e9bc0 T vfs_inode_has_locks
+ffffffc0082e9c48 T show_fd_locks
+ffffffc0082e9e4c t trace_raw_output_locks_get_lock_context
+ffffffc0082e9efc t trace_raw_output_filelock_lock
+ffffffc0082ea018 t trace_raw_output_filelock_lease
+ffffffc0082ea120 t trace_raw_output_generic_add_lease
+ffffffc0082ea230 t trace_raw_output_leases_conflict
+ffffffc0082ea358 t locks_dump_ctx_list
+ffffffc0082ea3d0 t locks_get_lock_context
+ffffffc0082ea5a8 t locks_insert_lock_ctx
+ffffffc0082ea668 t locks_unlink_lock_ctx
+ffffffc0082ea754 t lease_break_callback
+ffffffc0082ea790 t lease_setup
+ffffffc0082ea804 t check_conflicting_open
+ffffffc0082ea898 t flock_lock_inode
+ffffffc0082eafe0 t lock_get_status
+ffffffc0082eb2dc t locks_start
+ffffffc0082eb34c t locks_stop
+ffffffc0082eb38c t locks_next
+ffffffc0082eb3d8 t locks_show
+ffffffc0082eb570 t load_misc_binary
+ffffffc0082eb804 t deny_write_access
+ffffffc0082eb880 t bm_init_fs_context
+ffffffc0082eb8a4 t bm_get_tree
+ffffffc0082eb8d8 t bm_fill_super
+ffffffc0082eb930 t bm_status_read
+ffffffc0082eb994 t bm_status_write
+ffffffc0082eba70 t parse_command
+ffffffc0082ebcb0 t kill_node
+ffffffc0082ebd4c t bm_register_write
+ffffffc0082ec36c t scanarg
+ffffffc0082ec3f4 t check_special_flags
+ffffffc0082ec46c t bm_entry_read
+ffffffc0082ec624 t bm_entry_write
+ffffffc0082ec744 t bm_evict_inode
+ffffffc0082ec7a4 t load_script
+ffffffc0082eca2c t load_elf_binary
+ffffffc0082ed628 t elf_core_dump
+ffffffc0082ee50c t load_elf_phdrs
+ffffffc0082ee604 t parse_elf_properties
+ffffffc0082ee8a0 t set_brk
+ffffffc0082ee908 t __clear_user
+ffffffc0082eea68 t __clear_user
+ffffffc0082eebd0 t __clear_user
+ffffffc0082eed30 t maximum_alignment
+ffffffc0082eed94 t total_mapping_size
+ffffffc0082eee14 t elf_map
+ffffffc0082eef10 t load_elf_interp
+ffffffc0082ef1f4 t create_elf_tables
+ffffffc0082efd08 t writenote
+ffffffc0082efde4 T mb_cache_entry_create
+ffffffc0082f0158 t mb_cache_shrink
+ffffffc0082f0308 T __mb_cache_entry_free
+ffffffc0082f04b4 T mb_cache_entry_wait_unused
+ffffffc0082f05b0 T mb_cache_entry_find_first
+ffffffc0082f05e0 t __entry_find.llvm.4511654878886154521
+ffffffc0082f0864 T mb_cache_entry_find_next
+ffffffc0082f0894 T mb_cache_entry_get
+ffffffc0082f0aa4 T mb_cache_entry_delete_or_get
+ffffffc0082f0ba8 T mb_cache_entry_touch
+ffffffc0082f0bec T mb_cache_create
+ffffffc0082f0d14 t mb_cache_count
+ffffffc0082f0d28 t mb_cache_scan
+ffffffc0082f0d5c t mb_cache_shrink_worker
+ffffffc0082f0d98 T mb_cache_destroy
+ffffffc0082f0ebc T get_cached_acl
+ffffffc0082f0fdc T get_cached_acl_rcu
+ffffffc0082f106c T set_cached_acl
+ffffffc0082f11d0 t posix_acl_release
+ffffffc0082f125c T forget_cached_acl
+ffffffc0082f1340 T forget_all_cached_acls
+ffffffc0082f14ac T get_acl
+ffffffc0082f1778 T posix_acl_init
+ffffffc0082f1794 T posix_acl_alloc
+ffffffc0082f17e4 T posix_acl_clone
+ffffffc0082f1834 T posix_acl_valid
+ffffffc0082f195c T posix_acl_equiv_mode
+ffffffc0082f1a40 T posix_acl_from_mode
+ffffffc0082f1aec T posix_acl_permission
+ffffffc0082f1c7c T __posix_acl_create
+ffffffc0082f1dec t posix_acl_create_masq
+ffffffc0082f1f20 T __posix_acl_chmod
+ffffffc0082f212c T posix_acl_chmod
+ffffffc0082f22ac T posix_acl_create
+ffffffc0082f2454 T posix_acl_update_mode
+ffffffc0082f2520 T posix_acl_getxattr_idmapped_mnt
+ffffffc0082f2530 T posix_acl_fix_xattr_from_user
+ffffffc0082f2540 T posix_acl_fix_xattr_to_user
+ffffffc0082f2550 T vfs_set_acl_prepare
+ffffffc0082f2738 T posix_acl_from_xattr
+ffffffc0082f2920 T posix_acl_to_xattr
+ffffffc0082f29bc T set_posix_acl
+ffffffc0082f2aa8 t posix_acl_xattr_list
+ffffffc0082f2ac8 t posix_acl_xattr_get
+ffffffc0082f2c40 t posix_acl_xattr_set
+ffffffc0082f2ddc T simple_set_acl
+ffffffc0082f2ee4 T simple_acl_create
+ffffffc0082f3068 T do_coredump
+ffffffc0082f3d2c t umh_pipe_setup
+ffffffc0082f3dd4 t get_fs_root
+ffffffc0082f3e34 t dump_interrupted
+ffffffc0082f3e8c t dump_vma_snapshot
+ffffffc0082f4374 T dump_emit
+ffffffc0082f4480 t free_vma_snapshot
+ffffffc0082f450c t wait_for_dump_helpers
+ffffffc0082f4620 t __dump_skip
+ffffffc0082f4818 T dump_skip_to
+ffffffc0082f4834 T dump_skip
+ffffffc0082f4850 T dump_user_range
+ffffffc0082f4a58 T dump_align
+ffffffc0082f4aac T validate_coredump_safety
+ffffffc0082f4b08 t cn_printf
+ffffffc0082f4b8c t cn_esc_printf
+ffffffc0082f4cd8 t cn_print_exe_file
+ffffffc0082f4dd0 t cn_vprintf
+ffffffc0082f4f00 t proc_dostring_coredump
+ffffffc0082f4f78 T drop_caches_sysctl_handler
+ffffffc0082f5128 t drop_pagecache_sb
+ffffffc0082f5238 T __arm64_sys_name_to_handle_at
+ffffffc0082f5798 T __arm64_sys_open_by_handle_at
+ffffffc0082f5de0 t vfs_dentry_acceptable
+ffffffc0082f5df4 T __traceiter_iomap_readpage
+ffffffc0082f5e84 T __traceiter_iomap_readahead
+ffffffc0082f5f14 T __traceiter_iomap_writepage
+ffffffc0082f5fac T __traceiter_iomap_release_folio
+ffffffc0082f6044 T __traceiter_iomap_invalidate_folio
+ffffffc0082f60dc T __traceiter_iomap_dio_invalidate_fail
+ffffffc0082f6174 T __traceiter_iomap_iter_dstmap
+ffffffc0082f6204 T __traceiter_iomap_iter_srcmap
+ffffffc0082f6294 T __traceiter_iomap_writepage_map
+ffffffc0082f6324 T __traceiter_iomap_iter
+ffffffc0082f63bc t trace_event_raw_event_iomap_readpage_class
+ffffffc0082f648c t perf_trace_iomap_readpage_class
+ffffffc0082f65b8 t trace_event_raw_event_iomap_range_class
+ffffffc0082f66a0 t perf_trace_iomap_range_class
+ffffffc0082f67d8 t trace_event_raw_event_iomap_class
+ffffffc0082f68dc t perf_trace_iomap_class
+ffffffc0082f6a3c t trace_event_raw_event_iomap_iter
+ffffffc0082f6b68 t perf_trace_iomap_iter
+ffffffc0082f6ce4 t trace_raw_output_iomap_readpage_class
+ffffffc0082f6d68 t trace_raw_output_iomap_range_class
+ffffffc0082f6dec t trace_raw_output_iomap_class
+ffffffc0082f6f04 t trace_raw_output_iomap_iter
+ffffffc0082f6fe4 T iomap_iter
+ffffffc0082f739c T iomap_read_folio
+ffffffc0082f7598 t iomap_readpage_iter
+ffffffc0082f793c T iomap_readahead
+ffffffc0082f7c5c T iomap_is_partially_uptodate
+ffffffc0082f7d14 T iomap_release_folio
+ffffffc0082f7e1c t iomap_page_release
+ffffffc0082f7f88 T iomap_invalidate_folio
+ffffffc0082f80fc T iomap_file_buffered_write
+ffffffc0082f83c0 T iomap_file_unshare
+ffffffc0082f8580 T iomap_zero_range
+ffffffc0082f885c T iomap_truncate_page
+ffffffc0082f88b4 T iomap_page_mkwrite
+ffffffc0082f8bb8 T iomap_finish_ioends
+ffffffc0082f8c90 t iomap_finish_ioend
+ffffffc0082f9064 T iomap_ioend_try_merge
+ffffffc0082f9194 T iomap_sort_ioends
+ffffffc0082f91d0 t iomap_ioend_compare
+ffffffc0082f91f4 T iomap_writepages
+ffffffc0082f92c8 t iomap_do_writepage
+ffffffc0082f9c00 t iomap_read_inline_data
+ffffffc0082f9d8c t iomap_page_create
+ffffffc0082f9ec0 t iomap_adjust_read_range
+ffffffc0082fa050 t iomap_set_range_uptodate
+ffffffc0082fa18c t iomap_read_end_io
+ffffffc0082fa434 t iomap_write_begin
+ffffffc0082faac4 t iomap_write_end
+ffffffc0082fad84 t iomap_writepage_end_bio
+ffffffc0082fadcc T iomap_dio_complete
+ffffffc0082fafa4 T iomap_dio_bio_end_io
+ffffffc0082fb170 t iomap_dio_complete_work
+ffffffc0082fb1d0 T __iomap_dio_rw
+ffffffc0082fb944 t trace_iomap_dio_invalidate_fail
+ffffffc0082fba00 T iomap_dio_rw
+ffffffc0082fba48 t iomap_dio_bio_iter
+ffffffc0082fbf10 t iomap_dio_zero
+ffffffc0082fc0f0 T iomap_fiemap
+ffffffc0082fc398 T iomap_bmap
+ffffffc0082fc4d0 T iomap_seek_hole
+ffffffc0082fc654 T iomap_seek_data
+ffffffc0082fc7c8 T iomap_swapfile_activate
+ffffffc0082fcc78 T task_mem
+ffffffc0082fcf10 T task_vsize
+ffffffc0082fcf28 T task_statm
+ffffffc0082fcfb4 t pid_maps_open
+ffffffc0082fd050 t proc_map_release
+ffffffc0082fd0f0 t pid_smaps_open
+ffffffc0082fd18c t smaps_rollup_open
+ffffffc0082fd250 t smaps_rollup_release
+ffffffc0082fd300 t clear_refs_write
+ffffffc0082fd770 t pagemap_read
+ffffffc0082fdbcc t pagemap_open
+ffffffc0082fdc18 t pagemap_release
+ffffffc0082fdc94 t show_map
+ffffffc0082fdcc0 t show_map_vma
+ffffffc0082fde70 t show_vma_header_prefix
+ffffffc0082fdfc8 t show_smap
+ffffffc0082fe1ec t __show_smap
+ffffffc0082fe48c t smaps_pte_range
+ffffffc0082fe87c t pfn_swap_entry_to_page
+ffffffc0082fe8f0 t smaps_account
+ffffffc0082fecc4 t smaps_pte_hole
+ffffffc0082fed2c t show_smaps_rollup
+ffffffc0082ff1b8 t flush_tlb_mm
+ffffffc0082ff230 t clear_refs_pte_range
+ffffffc0082ff510 t clear_refs_test_walk
+ffffffc0082ff564 t pagemap_pmd_range
+ffffffc0082ffa0c t pagemap_pte_hole
+ffffffc0082ffb1c T proc_invalidate_siblings_dcache
+ffffffc0082ffcbc t proc_alloc_inode.llvm.10863307890555692703
+ffffffc0082ffd24 t proc_free_inode.llvm.10863307890555692703
+ffffffc0082ffd5c t proc_evict_inode.llvm.10863307890555692703
+ffffffc0082ffddc t proc_show_options.llvm.10863307890555692703
+ffffffc0082ffef4 T proc_entry_rundown
+ffffffc008300004 t close_pdeo
+ffffffc008300140 t proc_get_link.llvm.10863307890555692703
+ffffffc0083001d4 T proc_get_inode
+ffffffc008300314 t proc_put_link
+ffffffc008300388 t proc_reg_llseek
+ffffffc0083004f8 t proc_reg_write
+ffffffc008300678 t proc_reg_read_iter
+ffffffc0083007e0 t proc_reg_poll
+ffffffc008300954 t proc_reg_unlocked_ioctl
+ffffffc008300ad4 t proc_reg_mmap
+ffffffc008300c48 t proc_reg_open
+ffffffc008300ea8 t proc_reg_release
+ffffffc008300f64 t proc_reg_get_unmapped_area
+ffffffc0083010fc t proc_reg_read
+ffffffc00830127c t proc_init_fs_context
+ffffffc008301304 t proc_kill_sb
+ffffffc00830136c t proc_fs_context_free
+ffffffc00830139c t proc_parse_param
+ffffffc00830161c t proc_get_tree
+ffffffc008301650 t proc_reconfigure
+ffffffc0083016d8 t proc_fill_super
+ffffffc008301884 t proc_root_lookup
+ffffffc0083018e8 t proc_root_getattr
+ffffffc00830194c t proc_root_readdir
+ffffffc0083019b8 T proc_setattr
+ffffffc008301a34 T proc_mem_open
+ffffffc008301b40 T mem_lseek
+ffffffc008301b74 t proc_pid_get_link.llvm.11032457001343659749
+ffffffc008301cb8 t proc_pid_readlink.llvm.11032457001343659749
+ffffffc008301fcc T task_dump_owner
+ffffffc008302098 T proc_pid_evict_inode
+ffffffc008302120 T proc_pid_make_inode
+ffffffc008302244 T pid_getattr
+ffffffc00830238c T pid_update_inode
+ffffffc008302468 T pid_delete_dentry
+ffffffc00830248c t pid_revalidate.llvm.11032457001343659749
+ffffffc008302500 T proc_fill_cache
+ffffffc00830269c T tgid_pidfd_to_pid
+ffffffc0083026d4 T proc_flush_pid
+ffffffc00830270c T proc_pid_lookup
+ffffffc00830287c t proc_pid_instantiate
+ffffffc00830297c T proc_pid_readdir
+ffffffc008302c10 t next_tgid
+ffffffc008302dac t proc_tgid_base_readdir
+ffffffc008302de0 t proc_pident_readdir
+ffffffc008302ff0 t proc_pident_instantiate
+ffffffc0083030b4 t proc_tgid_base_lookup
+ffffffc0083030ec t proc_pid_permission
+ffffffc008303218 t proc_pident_lookup
+ffffffc00830333c t proc_pid_personality
+ffffffc0083033d0 t proc_pid_limits
+ffffffc00830356c t proc_pid_syscall
+ffffffc0083036a0 t proc_cwd_link
+ffffffc0083037b4 t proc_root_link
+ffffffc0083038c8 t proc_exe_link
+ffffffc0083039b4 t proc_pid_wchan
+ffffffc008303a78 t proc_pid_stack
+ffffffc008303b9c t proc_pid_schedstat
+ffffffc008303be4 t proc_oom_score
+ffffffc008303c8c t environ_read
+ffffffc008303fb0 t environ_open
+ffffffc008303ffc t mem_release
+ffffffc008304078 t auxv_read
+ffffffc008304238 t auxv_open
+ffffffc008304284 t proc_single_open
+ffffffc0083042c4 t proc_single_open
+ffffffc008304304 t proc_single_show
+ffffffc008304410 t sched_write
+ffffffc008304544 t sched_open
+ffffffc008304584 t sched_show
+ffffffc00830465c t proc_tid_comm_permission
+ffffffc00830474c t comm_write
+ffffffc0083049d8 t comm_open
+ffffffc008304a18 t comm_show
+ffffffc008304aec t proc_pid_cmdline_read
+ffffffc0083050e4 t mem_read
+ffffffc008305114 t mem_write
+ffffffc008305144 t mem_open
+ffffffc008305198 t mem_rw
+ffffffc00830561c t proc_attr_dir_lookup
+ffffffc008305654 t proc_pid_attr_read
+ffffffc0083057b0 t proc_pid_attr_write
+ffffffc008305900 t proc_pid_attr_open
+ffffffc008305950 t proc_attr_dir_readdir
+ffffffc008305988 t oom_adj_read
+ffffffc008305ae8 t oom_adj_write
+ffffffc008305d3c t __set_oom_adj
+ffffffc0083060d4 t oom_score_adj_read
+ffffffc008306200 t oom_score_adj_write
+ffffffc008306430 t proc_loginuid_read
+ffffffc008306568 t proc_loginuid_write
+ffffffc008306660 t proc_sessionid_read
+ffffffc008306798 t proc_task_lookup
+ffffffc008306978 t proc_task_getattr
+ffffffc008306a5c t proc_task_instantiate
+ffffffc008306b5c t proc_tid_base_lookup
+ffffffc008306b94 t proc_tid_base_readdir
+ffffffc008306bcc t proc_task_readdir
+ffffffc008307008 t proc_map_files_lookup
+ffffffc008307268 t proc_map_files_instantiate
+ffffffc008307300 t map_files_get_link
+ffffffc00830754c t proc_map_files_get_link
+ffffffc0083075c0 t map_files_d_revalidate
+ffffffc0083078a0 t proc_map_files_readdir
+ffffffc008307c8c t proc_coredump_filter_read
+ffffffc008307de8 t proc_coredump_filter_write
+ffffffc008307fc4 t timerslack_ns_write
+ffffffc008308148 t timerslack_ns_open
+ffffffc008308188 t timerslack_ns_show
+ffffffc0083082c0 T pde_free
+ffffffc008308330 T proc_alloc_inum
+ffffffc008308390 T proc_free_inum
+ffffffc0083083cc T proc_lookup_de
+ffffffc008308528 T proc_lookup
+ffffffc008308574 T proc_readdir_de
+ffffffc0083087d0 T pde_put
+ffffffc0083088b0 T proc_readdir
+ffffffc008308900 t proc_net_d_revalidate.llvm.11486506462492008284
+ffffffc008308914 T proc_register
+ffffffc008308ab0 T proc_symlink
+ffffffc008308bb8 t __proc_create
+ffffffc008308ef4 T _proc_mkdir
+ffffffc008308fbc T proc_mkdir_data
+ffffffc008309070 T proc_mkdir_mode
+ffffffc008309118 T proc_mkdir
+ffffffc0083091b0 T proc_create_mount_point
+ffffffc008309234 T proc_create_reg
+ffffffc0083092c8 T proc_create_data
+ffffffc0083093b0 T proc_create
+ffffffc008309494 T proc_create_seq_private
+ffffffc008309584 T proc_create_single_data
+ffffffc008309664 T proc_set_size
+ffffffc008309678 T proc_set_user
+ffffffc00830968c T remove_proc_entry
+ffffffc0083098dc T remove_proc_subtree
+ffffffc008309b50 T proc_get_parent_data
+ffffffc008309b6c T proc_remove
+ffffffc008309ba8 T proc_simple_write
+ffffffc008309c74 t proc_misc_d_revalidate
+ffffffc008309cac t proc_misc_d_delete
+ffffffc008309cd0 t proc_notify_change
+ffffffc008309d5c t proc_getattr
+ffffffc008309dd0 t proc_seq_open
+ffffffc008309e1c t proc_seq_release
+ffffffc008309e5c T proc_task_name
+ffffffc008309f40 T render_sigset_t
+ffffffc00830a000 T proc_pid_status
+ffffffc00830aca4 T proc_tid_stat
+ffffffc00830acd4 t do_task_stat
+ffffffc00830b794 T proc_tgid_stat
+ffffffc00830b7c8 T proc_pid_statm
+ffffffc00830b92c t proc_readfd
+ffffffc00830b960 T proc_fd_permission
+ffffffc00830b9d8 t proc_lookupfd
+ffffffc00830ba0c t proc_lookupfdinfo
+ffffffc00830ba40 t proc_readfdinfo
+ffffffc00830ba74 t proc_open_fdinfo
+ffffffc00830bb34 t proc_readfd_common
+ffffffc00830bdcc t proc_fd_instantiate
+ffffffc00830bec4 t proc_fd_link
+ffffffc00830bfc0 t tid_fd_revalidate
+ffffffc00830c160 t proc_lookupfd_common
+ffffffc00830c2c0 t proc_fdinfo_instantiate
+ffffffc00830c384 t seq_fdinfo_open
+ffffffc00830c470 t seq_show
+ffffffc00830c6c8 T proc_tty_register_driver
+ffffffc00830c730 T proc_tty_unregister_driver
+ffffffc00830c780 t show_tty_driver
+ffffffc00830c954 t show_tty_range
+ffffffc00830cb10 t cmdline_proc_show
+ffffffc00830cb60 t c_start
+ffffffc00830cbbc t c_stop
+ffffffc00830cbe8 t c_next
+ffffffc00830cc08 t show_console_dev
+ffffffc00830cdcc t cpuinfo_open
+ffffffc00830ce04 t devinfo_start
+ffffffc00830ce20 t devinfo_stop
+ffffffc00830ce30 t devinfo_next
+ffffffc00830ce54 t devinfo_show
+ffffffc00830cee0 t int_seq_start
+ffffffc00830cf04 t int_seq_stop
+ffffffc00830cf14 t int_seq_next
+ffffffc00830cf40 t loadavg_proc_show
+ffffffc00830d074 W arch_report_meminfo
+ffffffc00830d084 t meminfo_proc_show
+ffffffc00830da58 T get_idle_time
+ffffffc00830dad0 t stat_open
+ffffffc00830db30 t show_stat
+ffffffc00830e3a4 t uptime_proc_show
+ffffffc00830e544 T name_to_int
+ffffffc00830e5b4 t version_proc_show
+ffffffc00830e600 t show_softirqs
+ffffffc00830e770 t proc_ns_dir_readdir
+ffffffc00830e950 t proc_ns_dir_lookup
+ffffffc00830eaa4 t proc_ns_instantiate
+ffffffc00830eb3c t proc_ns_get_link
+ffffffc00830ec64 t proc_ns_readlink
+ffffffc00830eda8 T proc_setup_self
+ffffffc00830ee98 t proc_self_get_link
+ffffffc00830ef5c T proc_setup_thread_self
+ffffffc00830f04c t proc_thread_self_get_link
+ffffffc00830f138 T register_sysctl_mount_point
+ffffffc00830f178 T register_sysctl
+ffffffc00830f1b4 T proc_sys_poll_notify
+ffffffc00830f21c T proc_sys_evict_inode
+ffffffc00830f2a8 T __register_sysctl_table
+ffffffc00830f99c t insert_header
+ffffffc00830fdb4 t drop_sysctl_table
+ffffffc00830ff14 T __register_sysctl_paths
+ffffffc0083101c4 t count_subheaders
+ffffffc008310244 t register_leaf_sysctl_tables
+ffffffc008310458 T unregister_sysctl_table
+ffffffc008310504 T register_sysctl_paths
+ffffffc008310540 T register_sysctl_table
+ffffffc008310580 T __register_sysctl_base
+ffffffc0083105c4 T setup_sysctl_set
+ffffffc008310600 T retire_sysctl_set
+ffffffc00831062c T do_sysctl_args
+ffffffc0083106f8 t process_sysctl_arg
+ffffffc008310a34 t sysctl_err
+ffffffc008310ad0 t sysctl_print_dir
+ffffffc008310b20 t put_links
+ffffffc008310cb8 t xlate_dir
+ffffffc008310dd4 t get_links
+ffffffc008310fd8 t proc_sys_lookup
+ffffffc008311270 t proc_sys_permission
+ffffffc0083113f8 t proc_sys_setattr
+ffffffc008311478 t proc_sys_getattr
+ffffffc008311584 t sysctl_follow_link
+ffffffc008311714 t proc_sys_make_inode
+ffffffc0083118b8 t proc_sys_read
+ffffffc0083118e8 t proc_sys_write
+ffffffc008311918 t proc_sys_poll
+ffffffc008311a7c t proc_sys_open
+ffffffc008311b70 t proc_sys_call_handler
+ffffffc008311e30 t proc_sys_revalidate
+ffffffc008311e64 t proc_sys_compare
+ffffffc008311f48 t proc_sys_delete
+ffffffc008311f6c t proc_sys_readdir
+ffffffc0083122b4 t proc_sys_link_fill_cache
+ffffffc0083123e4 t proc_sys_fill_cache
+ffffffc0083125b8 T bpf_iter_init_seq_net
+ffffffc0083125cc T bpf_iter_fini_seq_net
+ffffffc0083125dc T proc_create_net_data
+ffffffc00831267c T proc_create_net_data_write
+ffffffc008312728 T proc_create_net_single
+ffffffc0083127c0 T proc_create_net_single_write
+ffffffc00831285c t proc_tgid_net_lookup
+ffffffc008312904 t proc_tgid_net_getattr
+ffffffc0083129b4 t proc_tgid_net_readdir
+ffffffc008312a60 t seq_open_net
+ffffffc008312ad8 t seq_release_net
+ffffffc008312b08 t single_open_net
+ffffffc008312b58 t single_release_net
+ffffffc008312b84 t kmsg_open
+ffffffc008312bc0 t kmsg_read
+ffffffc008312c38 t kmsg_release
+ffffffc008312c78 t kmsg_poll
+ffffffc008312cf4 T stable_page_flags
+ffffffc008313040 t kpagecount_read
+ffffffc0083132dc t kpageflags_read
+ffffffc008313504 t boot_config_proc_show
+ffffffc008313540 t kernfs_sop_show_options.llvm.12092338931709688944
+ffffffc0083135b8 t kernfs_sop_show_path.llvm.12092338931709688944
+ffffffc008313640 T kernfs_root_from_sb
+ffffffc008313678 T kernfs_node_dentry
+ffffffc0083137a4 T kernfs_super_ns
+ffffffc0083137bc T kernfs_get_tree
+ffffffc0083139a4 t kernfs_test_super
+ffffffc0083139e8 t kernfs_set_super
+ffffffc008313a1c T kernfs_free_fs_context
+ffffffc008313a5c T kernfs_kill_sb
+ffffffc008313af0 t kernfs_encode_fh
+ffffffc008313b38 t kernfs_fh_to_dentry
+ffffffc008313bd8 t kernfs_fh_to_parent
+ffffffc008313c94 t kernfs_get_parent_dentry
+ffffffc008313cdc T __kernfs_setattr
+ffffffc008313e30 T kernfs_setattr
+ffffffc008313ea8 T kernfs_iop_setattr
+ffffffc008313f70 T kernfs_iop_listxattr
+ffffffc00831408c T kernfs_iop_getattr
+ffffffc008314184 T kernfs_get_inode
+ffffffc00831430c T kernfs_evict_inode
+ffffffc00831435c T kernfs_iop_permission
+ffffffc008314460 T kernfs_xattr_get
+ffffffc0083144ec T kernfs_xattr_set
+ffffffc008314604 t kernfs_vfs_xattr_get
+ffffffc00831469c t kernfs_vfs_xattr_set
+ffffffc008314704 t kernfs_vfs_user_xattr_set
+ffffffc008314a2c T kernfs_name
+ffffffc008314acc T kernfs_path_from_node
+ffffffc008314d98 T pr_cont_kernfs_name
+ffffffc008314e78 T pr_cont_kernfs_path
+ffffffc008314f24 T kernfs_get_parent
+ffffffc008314fbc T kernfs_get
+ffffffc008315010 T kernfs_get_active
+ffffffc008315094 T kernfs_put_active
+ffffffc008315130 T kernfs_put
+ffffffc008315340 T kernfs_node_from_dentry
+ffffffc008315380 T kernfs_new_node
+ffffffc00831542c t __kernfs_new_node
+ffffffc008315634 T kernfs_find_and_get_node_by_id
+ffffffc00831571c T kernfs_add_one
+ffffffc0083158b8 t kernfs_link_sibling
+ffffffc0083159d0 T kernfs_activate
+ffffffc008315b50 T kernfs_find_and_get_ns
+ffffffc008315c0c t kernfs_find_ns
+ffffffc008315d68 T kernfs_walk_and_get_ns
+ffffffc008315ed4 T kernfs_create_root
+ffffffc008315ffc T kernfs_destroy_root
+ffffffc0083160c4 T kernfs_remove
+ffffffc008316128 T kernfs_root_to_node
+ffffffc00831613c T kernfs_create_dir_ns
+ffffffc00831623c T kernfs_create_empty_dir
+ffffffc00831632c t kernfs_dop_revalidate.llvm.16806068941658733841
+ffffffc008316494 t kernfs_iop_lookup.llvm.16806068941658733841
+ffffffc008316588 t kernfs_iop_mkdir.llvm.16806068941658733841
+ffffffc0083166fc t kernfs_iop_rmdir.llvm.16806068941658733841
+ffffffc008316874 t kernfs_iop_rename.llvm.16806068941658733841
+ffffffc008316b20 T kernfs_show
+ffffffc008316ca0 t kernfs_drain
+ffffffc008316e04 t __kernfs_remove
+ffffffc008317030 T kernfs_break_active_protection
+ffffffc0083170cc T kernfs_unbreak_active_protection
+ffffffc008317110 T kernfs_remove_self
+ffffffc008317320 T kernfs_remove_by_name_ns
+ffffffc00831741c T kernfs_rename_ns
+ffffffc008317688 t kernfs_fop_readdir.llvm.16806068941658733841
+ffffffc008317930 t kernfs_dir_fop_release.llvm.16806068941658733841
+ffffffc008317960 t kernfs_dir_pos
+ffffffc008317a84 T kernfs_should_drain_open_files
+ffffffc008317b18 T kernfs_drain_open_files
+ffffffc008317c64 T kernfs_generic_poll
+ffffffc008317cfc T kernfs_notify
+ffffffc008317dfc t kernfs_notify_workfn
+ffffffc008318024 t kernfs_fop_read_iter.llvm.5759201842589247781
+ffffffc0083181ec t kernfs_fop_write_iter.llvm.5759201842589247781
+ffffffc00831839c t kernfs_fop_poll.llvm.5759201842589247781
+ffffffc0083184ac t kernfs_fop_mmap.llvm.5759201842589247781
+ffffffc0083185f8 t kernfs_fop_open.llvm.5759201842589247781
+ffffffc00831894c t kernfs_fop_release.llvm.5759201842589247781
+ffffffc008318a60 T __kernfs_create_file
+ffffffc008318b40 t kernfs_vma_open
+ffffffc008318bc8 t kernfs_vma_fault
+ffffffc008318c6c t kernfs_vma_page_mkwrite
+ffffffc008318d20 t kernfs_vma_access
+ffffffc008318dec t kernfs_unlink_open_file
+ffffffc008318f1c t kernfs_seq_start
+ffffffc008319004 t kernfs_seq_stop
+ffffffc008319080 t kernfs_seq_next
+ffffffc008319144 t kernfs_seq_show
+ffffffc0083191b0 T kernfs_create_link
+ffffffc008319264 t kernfs_iop_get_link.llvm.2387327197478850611
+ffffffc0083194a0 T sysfs_notify
+ffffffc00831953c T sysfs_add_file_mode_ns
+ffffffc00831966c T sysfs_add_bin_file_mode_ns
+ffffffc008319750 T sysfs_create_file_ns
+ffffffc008319810 T sysfs_create_files
+ffffffc00831993c T sysfs_add_file_to_group
+ffffffc008319a20 T sysfs_chmod_file
+ffffffc008319ae0 T sysfs_break_active_protection
+ffffffc008319b40 T sysfs_unbreak_active_protection
+ffffffc008319b90 T sysfs_remove_file_ns
+ffffffc008319bc4 T sysfs_remove_file_self
+ffffffc008319c2c T sysfs_remove_files
+ffffffc008319c94 T sysfs_remove_file_from_group
+ffffffc008319d10 T sysfs_create_bin_file
+ffffffc008319e50 T sysfs_remove_bin_file
+ffffffc008319e88 T sysfs_link_change_owner
+ffffffc008319fa0 T sysfs_file_change_owner
+ffffffc00831a074 T sysfs_change_owner
+ffffffc00831a148 T sysfs_emit
+ffffffc00831a214 T sysfs_emit_at
+ffffffc00831a2f0 t sysfs_kf_read
+ffffffc00831a3c8 t sysfs_kf_write
+ffffffc00831a440 t sysfs_kf_seq_show
+ffffffc00831a57c t sysfs_kf_bin_open
+ffffffc00831a5e8 t sysfs_kf_bin_read
+ffffffc00831a68c t sysfs_kf_bin_write
+ffffffc00831a734 t sysfs_kf_bin_mmap
+ffffffc00831a790 T sysfs_warn_dup
+ffffffc00831a828 T sysfs_create_dir_ns
+ffffffc00831a984 T sysfs_remove_dir
+ffffffc00831aa04 T sysfs_rename_dir_ns
+ffffffc00831aa78 T sysfs_move_dir_ns
+ffffffc00831aac4 T sysfs_create_mount_point
+ffffffc00831ab84 T sysfs_remove_mount_point
+ffffffc00831abb8 T sysfs_create_link_sd
+ffffffc00831abe4 t sysfs_do_create_link_sd.llvm.11519738240011511719
+ffffffc00831accc T sysfs_create_link
+ffffffc00831ad20 T sysfs_create_link_nowarn
+ffffffc00831adfc T sysfs_delete_link
+ffffffc00831ae88 T sysfs_remove_link
+ffffffc00831aed0 T sysfs_rename_link_ns
+ffffffc00831afb0 t sysfs_init_fs_context
+ffffffc00831b074 t sysfs_kill_sb
+ffffffc00831b0bc t sysfs_fs_context_free
+ffffffc00831b118 t sysfs_get_tree
+ffffffc00831b174 T sysfs_create_group
+ffffffc00831b1a4 t internal_create_group.llvm.10721654729936676998
+ffffffc00831b5dc T sysfs_create_groups
+ffffffc00831b67c T sysfs_update_groups
+ffffffc00831b71c T sysfs_update_group
+ffffffc00831b750 T sysfs_remove_group
+ffffffc00831b844 T sysfs_remove_groups
+ffffffc00831b8a8 T sysfs_merge_group
+ffffffc00831b9d8 T sysfs_unmerge_group
+ffffffc00831ba54 T sysfs_add_link_to_group
+ffffffc00831bad0 T sysfs_remove_link_from_group
+ffffffc00831bb2c T compat_only_sysfs_link_entry_to_kobj
+ffffffc00831bc24 T sysfs_group_change_owner
+ffffffc00831bdbc T sysfs_groups_change_owner
+ffffffc00831be50 T devpts_mntget
+ffffffc00831bf74 T devpts_acquire
+ffffffc00831c078 T devpts_release
+ffffffc00831c0a8 T devpts_new_index
+ffffffc00831c194 T devpts_kill_index
+ffffffc00831c1fc T devpts_pty_new
+ffffffc00831c3b8 T devpts_get_priv
+ffffffc00831c3ec T devpts_pty_kill
+ffffffc00831c4bc t devpts_mount
+ffffffc00831c4f4 t devpts_kill_sb
+ffffffc00831c548 t devpts_fill_super
+ffffffc00831c790 t parse_mount_options
+ffffffc00831c9a4 t devpts_remount
+ffffffc00831ca04 t devpts_show_options
+ffffffc00831cae0 T ext4_get_group_number
+ffffffc00831cb2c T ext4_get_group_no_and_offset
+ffffffc00831cb74 T ext4_free_clusters_after_init
+ffffffc00831ce38 T ext4_get_group_desc
+ffffffc00831cf5c T ext4_read_block_bitmap_nowait
+ffffffc00831d540 t ext4_init_block_bitmap
+ffffffc00831d8b0 t ext4_validate_block_bitmap
+ffffffc00831dc80 T ext4_wait_block_bitmap
+ffffffc00831dd98 T ext4_read_block_bitmap
+ffffffc00831de40 T ext4_claim_free_clusters
+ffffffc00831de9c t ext4_has_free_clusters
+ffffffc00831e014 T ext4_should_retry_alloc
+ffffffc00831e124 T ext4_new_meta_blocks
+ffffffc00831e23c T ext4_count_free_clusters
+ffffffc00831e348 T ext4_bg_has_super
+ffffffc00831e47c T ext4_bg_num_gdb
+ffffffc00831e51c T ext4_inode_to_goal_block
+ffffffc00831e5e0 t ext4_num_base_meta_clusters
+ffffffc00831e6dc T ext4_count_free
+ffffffc00831e71c T ext4_inode_bitmap_csum_verify
+ffffffc00831e82c T ext4_inode_bitmap_csum_set
+ffffffc00831e91c T ext4_block_bitmap_csum_verify
+ffffffc00831ea30 T ext4_block_bitmap_csum_set
+ffffffc00831eb24 T ext4_exit_system_zone
+ffffffc00831eb5c T ext4_setup_system_zone
+ffffffc00831ef48 t add_system_zone
+ffffffc00831f0f0 T ext4_release_system_zone
+ffffffc00831f138 t ext4_destroy_system_zone
+ffffffc00831f1b0 T ext4_sb_block_valid
+ffffffc00831f2c0 T ext4_inode_block_valid
+ffffffc00831f3cc T ext4_check_blockref
+ffffffc00831f49c T __ext4_check_dir_entry
+ffffffc00831f6dc T ext4_htree_free_dir_info
+ffffffc00831f760 T ext4_htree_store_dirent
+ffffffc00831f890 T ext4_check_all_de
+ffffffc00831f968 t ext4_dir_llseek.llvm.14797094119071465044
+ffffffc00831fa2c t ext4_readdir.llvm.14797094119071465044
+ffffffc008320468 t ext4_release_dir.llvm.14797094119071465044
+ffffffc0083204f8 T ext4_inode_journal_mode
+ffffffc008320588 T __ext4_journal_start_sb
+ffffffc008320760 T __ext4_journal_stop
+ffffffc008320818 T __ext4_journal_start_reserved
+ffffffc008320a24 T __ext4_journal_ensure_credits
+ffffffc008320ae8 T __ext4_journal_get_write_access
+ffffffc008320ce4 t ext4_journal_abort_handle
+ffffffc008320ddc T __ext4_forget
+ffffffc0083210c0 T __ext4_journal_get_create_access
+ffffffc008321234 T __ext4_handle_dirty_metadata
+ffffffc0083214e8 T ext4_free_ext_path
+ffffffc00832155c T ext4_datasem_ensure_credits
+ffffffc00832162c T ext4_ext_check_inode
+ffffffc008321678 t __ext4_ext_check
+ffffffc008321a34 T ext4_ext_precache
+ffffffc008321d10 t __read_extent_tree_block
+ffffffc008321fc4 T ext4_ext_tree_init
+ffffffc008322014 T ext4_find_extent
+ffffffc0083223d8 T ext4_ext_next_allocated_block
+ffffffc00832248c T ext4_ext_insert_extent
+ffffffc00832394c t ext4_ext_get_access
+ffffffc0083239d8 t ext4_ext_try_to_merge
+ffffffc008323b38 t ext4_ext_correct_indexes
+ffffffc008323d50 t __ext4_ext_dirty
+ffffffc008323f10 T ext4_ext_calc_credits_for_single_extent
+ffffffc008323f6c T ext4_ext_index_trans_blocks
+ffffffc008323fb4 T ext4_ext_remove_space
+ffffffc00832549c t ext4_ext_search_right
+ffffffc0083257d8 t ext4_ext_rm_idx
+ffffffc008325ac4 T ext4_ext_init
+ffffffc008325ad4 T ext4_ext_release
+ffffffc008325ae4 T ext4_ext_map_blocks
+ffffffc0083273b8 t get_implied_cluster_alloc
+ffffffc008327678 t ext4_update_inode_fsync_trans
+ffffffc0083276bc t ext4_update_inode_fsync_trans
+ffffffc008327700 t ext4_update_inode_fsync_trans
+ffffffc008327748 T ext4_ext_truncate
+ffffffc008327858 T ext4_fallocate
+ffffffc008328144 t ext4_zero_range
+ffffffc008328590 t trace_ext4_fallocate_enter
+ffffffc00832864c t ext4_alloc_file_blocks
+ffffffc008328930 t trace_ext4_fallocate_exit
+ffffffc0083289f0 T ext4_convert_unwritten_extents
+ffffffc008328bc0 T ext4_convert_unwritten_io_end_vec
+ffffffc008328c88 T ext4_fiemap
+ffffffc008328d70 T ext4_get_es_cache
+ffffffc008328f9c T ext4_swap_extents
+ffffffc00832978c T ext4_clu_mapped
+ffffffc0083299dc T ext4_ext_replay_update_ex
+ffffffc008329cf0 T ext4_ext_replay_shrink_inode
+ffffffc008329e8c T ext4_ext_replay_set_iblocks
+ffffffc00832a32c T ext4_ext_clear_bb
+ffffffc00832a590 t ext4_ext_insert_index
+ffffffc00832a7f0 t ext4_ext_try_to_merge_right
+ffffffc00832aa38 t ext4_split_extent_at
+ffffffc00832aeac t ext4_ext_zeroout
+ffffffc00832aef0 t ext4_zeroout_es
+ffffffc00832af44 t ext4_split_extent
+ffffffc00832b0cc t trace_ext4_ext_convert_to_initialized_fastpath
+ffffffc00832b18c t ext4_es_is_delayed
+ffffffc00832b1a4 t ext4_es_is_delayed
+ffffffc00832b1b8 t ext4_update_inode_size
+ffffffc00832b260 t ext4_iomap_xattr_begin
+ffffffc00832b370 t ext4_ext_shift_extents
+ffffffc00832bae8 T ext4_exit_es
+ffffffc00832bb1c T ext4_es_init_tree
+ffffffc00832bb30 T ext4_es_find_extent_range
+ffffffc00832bcd4 t __es_find_extent_range
+ffffffc00832be7c T ext4_es_scan_range
+ffffffc00832bf88 T ext4_es_scan_clu
+ffffffc00832c0ac T ext4_es_insert_extent
+ffffffc00832caac t __es_remove_extent
+ffffffc00832d068 t __es_insert_extent
+ffffffc00832d52c t __es_shrink
+ffffffc00832d840 T ext4_es_cache_extent
+ffffffc00832da00 T ext4_es_lookup_extent
+ffffffc00832dc9c T ext4_es_remove_extent
+ffffffc00832de20 T ext4_seq_es_shrinker_info_show
+ffffffc00832e028 T ext4_es_register_shrinker
+ffffffc00832e180 t ext4_es_scan
+ffffffc00832e668 t ext4_es_count
+ffffffc00832e758 T ext4_es_unregister_shrinker
+ffffffc00832e7b4 T ext4_clear_inode_es
+ffffffc00832e88c t ext4_es_free_extent
+ffffffc00832e9b4 T ext4_exit_pending
+ffffffc00832e9e8 T ext4_init_pending_tree
+ffffffc00832e9fc T ext4_remove_pending
+ffffffc00832eac4 T ext4_is_pending
+ffffffc00832eb6c T ext4_es_insert_delayed_block
+ffffffc00832eda0 T ext4_es_delayed_clu
+ffffffc00832ef00 t count_rsvd
+ffffffc00832f068 t es_reclaim_extents
+ffffffc00832f15c t es_do_reclaim_extents
+ffffffc00832f2ac T ext4_llseek
+ffffffc00832f3b4 t ext4_file_read_iter.llvm.16124915545436103652
+ffffffc00832f504 t ext4_file_write_iter.llvm.16124915545436103652
+ffffffc00832fc6c t ext4_file_mmap.llvm.16124915545436103652
+ffffffc00832fcf0 t ext4_file_open.llvm.16124915545436103652
+ffffffc00832ff30 t ext4_release_file.llvm.16124915545436103652
+ffffffc008330024 t ext4_buffered_write_iter
+ffffffc0083301b4 t ext4_dio_write_end_io
+ffffffc008330248 t sb_start_intwrite_trylock
+ffffffc008330364 t lock_buffer
+ffffffc0083303c8 t lock_buffer
+ffffffc00833042c t lock_buffer
+ffffffc008330490 t lock_buffer
+ffffffc0083304f4 t sb_end_intwrite
+ffffffc008330670 T ext4_fsmap_from_internal
+ffffffc0083306bc T ext4_fsmap_to_internal
+ffffffc008330704 T ext4_getfsmap
+ffffffc008330aa4 t ext4_getfsmap_datadev
+ffffffc00833128c t ext4_getfsmap_logdev
+ffffffc0083314d4 t ext4_getfsmap_dev_compare
+ffffffc0083314f0 t ext4_getfsmap_datadev_helper
+ffffffc0083316dc t ext4_getfsmap_helper
+ffffffc008331a38 t ext4_getfsmap_compare
+ffffffc008331a5c T ext4_sync_file
+ffffffc008331e04 T ext4fs_dirhash
+ffffffc008331f24 t __ext4fs_dirhash
+ffffffc008332518 t str2hashbuf_signed
+ffffffc0083325e4 t str2hashbuf_unsigned
+ffffffc0083326b0 T ext4_mark_bitmap_end
+ffffffc008332740 T ext4_end_bitmap_read
+ffffffc008332814 T ext4_free_inode
+ffffffc008332d44 t ext4_read_inode_bitmap
+ffffffc008333558 t ext4_get_group_info
+ffffffc0083335e0 t ext4_get_group_info
+ffffffc008333668 t ext4_lock_group
+ffffffc00833377c t ext4_lock_group
+ffffffc008333894 T ext4_mark_inode_used
+ffffffc008333c40 t ext4_has_group_desc_csum
+ffffffc008333ca4 t ext4_has_group_desc_csum
+ffffffc008333d08 t ext4_has_group_desc_csum
+ffffffc008333d6c t ext4_has_group_desc_csum
+ffffffc008333dd4 T __ext4_new_inode
+ffffffc0083350a4 t find_group_orlov
+ffffffc008335478 t find_inode_bit
+ffffffc0083355e8 t ext4_has_metadata_csum
+ffffffc00833563c t ext4_has_metadata_csum
+ffffffc008335690 t ext4_chksum
+ffffffc00833571c t ext4_chksum
+ffffffc0083357a8 t trace_ext4_allocate_inode
+ffffffc008335864 T ext4_orphan_get
+ffffffc008335b20 T ext4_count_free_inodes
+ffffffc008335bb4 T ext4_count_dirs
+ffffffc008335c48 T ext4_init_inode_table
+ffffffc008335f8c t get_orlov_stats
+ffffffc008336078 T ext4_ind_map_blocks
+ffffffc008336cd4 t ext4_get_branch
+ffffffc008336ec0 T ext4_ind_trans_blocks
+ffffffc008336eec T ext4_ind_truncate
+ffffffc008337348 t ext4_find_shared
+ffffffc0083374a4 t ext4_free_branches
+ffffffc0083377d8 T ext4_ind_remove_space
+ffffffc008338230 t ext4_clear_blocks
+ffffffc0083383e0 t ext4_ind_truncate_ensure_credits
+ffffffc0083385e4 T ext4_get_max_inline_size
+ffffffc00833879c T ext4_find_inline_data_nolock
+ffffffc0083388e8 T ext4_readpage_inline
+ffffffc008338a78 t ext4_read_inline_page
+ffffffc008338d68 T ext4_try_to_write_inline_data
+ffffffc00833944c t ext4_prepare_inline_data
+ffffffc00833956c T ext4_write_inline_data_end
+ffffffc008339ae8 T ext4_journalled_write_inline_data
+ffffffc008339d24 T ext4_da_write_inline_data_begin
+ffffffc00833a298 T ext4_try_add_inline_entry
+ffffffc00833a618 t ext4_add_dirent_to_inline
+ffffffc00833a78c t ext4_convert_inline_data_nolock
+ffffffc00833ab94 T ext4_inlinedir_to_tree
+ffffffc00833afb4 T ext4_read_inline_dir
+ffffffc00833b3b4 T ext4_read_inline_link
+ffffffc00833b534 T ext4_get_first_inline_block
+ffffffc00833b5cc T ext4_try_create_inline_dir
+ffffffc00833b6b4 T ext4_find_inline_entry
+ffffffc00833b81c T ext4_delete_inline_entry
+ffffffc00833ba44 T empty_inline_dir
+ffffffc00833bcac T ext4_destroy_inline_data
+ffffffc00833bd78 t ext4_destroy_inline_data_nolock
+ffffffc00833c004 T ext4_inline_data_iomap
+ffffffc00833c118 T ext4_inline_data_truncate
+ffffffc00833c544 T ext4_convert_inline_data
+ffffffc00833c744 t ext4_update_inline_data
+ffffffc00833c980 t ext4_create_inline_data
+ffffffc00833cbfc t ext4_finish_convert_inline_dir
+ffffffc00833ce10 T ext4_inode_csum_set
+ffffffc00833ced0 t ext4_inode_csum
+ffffffc00833d0ec T ext4_inode_is_fast_symlink
+ffffffc00833d190 T ext4_evict_inode
+ffffffc00833d810 t ext4_begin_ordered_truncate
+ffffffc00833d900 T __ext4_mark_inode_dirty
+ffffffc00833dc10 T ext4_truncate
+ffffffc00833e0d4 T ext4_da_update_reserve_space
+ffffffc00833e288 T ext4_issue_zeroout
+ffffffc00833e300 T ext4_map_blocks
+ffffffc00833e928 T ext4_get_block
+ffffffc00833e958 t _ext4_get_block.llvm.2102055214300605718
+ffffffc00833eafc T ext4_get_block_unwritten
+ffffffc00833eb2c T ext4_getblk
+ffffffc00833ee10 T ext4_bread
+ffffffc00833eef0 t ext4_buffer_uptodate
+ffffffc00833ef44 T ext4_bread_batch
+ffffffc00833f100 T ext4_walk_page_buffers
+ffffffc00833f1f4 T do_journal_get_write_access
+ffffffc00833f2c4 T ext4_da_release_space
+ffffffc00833f414 T ext4_da_get_block_prep
+ffffffc00833f9e4 T ext4_alloc_da_blocks
+ffffffc00833fac8 t ext4_iomap_begin.llvm.2102055214300605718
+ffffffc00833fd8c t ext4_iomap_end.llvm.2102055214300605718
+ffffffc00833fdb0 t ext4_iomap_overwrite_begin.llvm.2102055214300605718
+ffffffc00833fe00 t ext4_iomap_begin_report.llvm.2102055214300605718
+ffffffc00833fff8 T ext4_set_aops
+ffffffc008340084 T ext4_zero_partial_blocks
+ffffffc008340150 t ext4_block_zero_page_range
+ffffffc0083404d8 T ext4_can_truncate
+ffffffc00834058c T ext4_update_disksize_before_punch
+ffffffc0083406c8 T ext4_break_layouts
+ffffffc008340700 T ext4_punch_hole
+ffffffc008340b64 T ext4_inode_attach_jinode
+ffffffc008340c30 T ext4_writepage_trans_blocks
+ffffffc008340d08 T ext4_get_inode_loc
+ffffffc008340db4 t __ext4_get_inode_loc.llvm.2102055214300605718
+ffffffc0083411f0 T ext4_get_fc_inode_loc
+ffffffc008341228 T ext4_set_inode_flags
+ffffffc008341324 T ext4_get_projid
+ffffffc008341360 T __ext4_iget
+ffffffc008341d9c t ext4_inode_csum_verify
+ffffffc008341e74 t ext4_inode_blocks
+ffffffc008341ec4 t ext4_iget_extra_inode
+ffffffc008341fb4 T ext4_write_inode
+ffffffc008342180 T ext4_setattr
+ffffffc008342690 t ext4_wait_for_tail_page_commit
+ffffffc00834281c T ext4_dio_alignment
+ffffffc008342888 T ext4_getattr
+ffffffc008342a68 T ext4_file_getattr
+ffffffc008342b04 T ext4_chunk_trans_blocks
+ffffffc008342b98 T ext4_mark_iloc_dirty
+ffffffc008343208 T ext4_reserve_inode_write
+ffffffc008343338 T ext4_expand_extra_isize
+ffffffc0083435d0 T ext4_dirty_inode
+ffffffc008343664 T ext4_change_inode_journal_flag
+ffffffc0083438d8 T ext4_page_mkwrite
+ffffffc008344088 t write_end_fn
+ffffffc008344178 t ext4_da_reserve_space
+ffffffc008344284 t ext4_es_is_delonly
+ffffffc0083442a8 t ext4_es_is_mapped
+ffffffc0083442c4 t ext4_set_iomap
+ffffffc00834443c t ext4_writepage
+ffffffc008344c70 t ext4_read_folio
+ffffffc008344d70 t ext4_writepages
+ffffffc008345c38 t ext4_journalled_dirty_folio
+ffffffc008345ca0 t ext4_readahead
+ffffffc008345cf0 t ext4_write_begin
+ffffffc0083463f0 t ext4_journalled_write_end
+ffffffc0083468f0 t ext4_bmap
+ffffffc008346a24 t ext4_journalled_invalidate_folio
+ffffffc008346a5c t ext4_release_folio
+ffffffc008346b60 t ext4_iomap_swap_activate
+ffffffc008346b90 t mpage_prepare_extent_to_map
+ffffffc008346f48 t mpage_release_unused_pages
+ffffffc008347184 t mpage_process_page_bufs
+ffffffc008347364 t ext4_print_free_blocks
+ffffffc008347468 t ext4_journalled_zero_new_buffers
+ffffffc008347640 t __ext4_journalled_invalidate_folio
+ffffffc008347794 t ext4_dirty_folio
+ffffffc0083477f0 t ext4_da_write_begin
+ffffffc008347b2c t ext4_da_write_end
+ffffffc008347d70 t ext4_invalidate_folio
+ffffffc008347e80 t ext4_write_end
+ffffffc008348220 t ext4_fill_raw_inode
+ffffffc008348748 t trace_ext4_load_inode
+ffffffc008348800 T ext4_reset_inode_seed
+ffffffc008348928 T ext4_fileattr_get
+ffffffc0083489b4 T ext4_fileattr_set
+ffffffc008348da4 T ext4_ioctl
+ffffffc008348dcc t __ext4_ioctl
+ffffffc00834bbc4 T ext4_update_overhead
+ffffffc00834bc28 t ext4_update_superblocks_fn
+ffffffc00834c3c8 t set_overhead
+ffffffc00834c3dc t ext4_dax_dontcache
+ffffffc00834c434 t swap_inode_boot_loader
+ffffffc00834c8c4 t trace_ext4_getfsmap_low_key
+ffffffc00834c978 t trace_ext4_getfsmap_high_key
+ffffffc00834ca30 t ext4_getfsmap_format
+ffffffc00834ccb0 t swap_inode_data
+ffffffc00834cdd0 t ext4_sb_setlabel
+ffffffc00834cde8 t ext4_sb_setuuid
+ffffffc00834ce00 T mb_set_bits
+ffffffc00834ce80 T ext4_mb_prefetch
+ffffffc00834d084 T ext4_mb_prefetch_fini
+ffffffc00834d208 t ext4_mb_init_group
+ffffffc00834d508 t ext4_mb_seq_groups_start.llvm.14028127205722121526
+ffffffc00834d554 t ext4_mb_seq_groups_stop.llvm.14028127205722121526
+ffffffc00834d564 t ext4_mb_seq_groups_next.llvm.14028127205722121526
+ffffffc00834d5b8 t ext4_mb_seq_groups_show.llvm.14028127205722121526
+ffffffc00834da38 T ext4_seq_mb_stats_show
+ffffffc00834ddd4 t ext4_mb_seq_structs_summary_start.llvm.14028127205722121526
+ffffffc00834de1c t ext4_mb_seq_structs_summary_stop.llvm.14028127205722121526
+ffffffc00834de2c t ext4_mb_seq_structs_summary_next.llvm.14028127205722121526
+ffffffc00834de7c t ext4_mb_seq_structs_summary_show.llvm.14028127205722121526
+ffffffc00834dfb4 T ext4_mb_alloc_groupinfo
+ffffffc00834e0cc T ext4_mb_add_groupinfo
+ffffffc00834e370 T ext4_mb_init
+ffffffc00834ead8 t ext4_discard_work
+ffffffc00834ed84 T ext4_mb_release
+ffffffc00834f1d8 T ext4_process_freed_data
+ffffffc00834f678 T ext4_exit_mballoc
+ffffffc00834f738 T ext4_mb_mark_bb
+ffffffc00834fca4 t mb_clear_bits
+ffffffc00834fd20 T ext4_discard_preallocations
+ffffffc008350298 t ext4_mb_load_buddy_gfp
+ffffffc008350830 t ext4_mb_unload_buddy
+ffffffc008350930 t ext4_mb_release_inode_pa
+ffffffc008350c9c t ext4_mb_pa_callback
+ffffffc008350cf4 T ext4_mb_new_blocks
+ffffffc008351d18 t ext4_mb_initialize_context
+ffffffc008351f14 t ext4_mb_use_preallocated
+ffffffc008352234 t ext4_mb_normalize_request
+ffffffc008352698 t ext4_mb_regular_allocator
+ffffffc008353424 t ext4_mb_pa_free
+ffffffc0083534ac t ext4_discard_allocated_blocks
+ffffffc0083536a0 t ext4_mb_mark_diskspace_used
+ffffffc008353bc4 t ext4_mb_discard_preallocations_should_retry
+ffffffc008353e54 T ext4_free_blocks
+ffffffc008354b54 T ext4_group_add_blocks
+ffffffc008354f50 t mb_free_blocks
+ffffffc008355578 T ext4_trim_fs
+ffffffc008355aac T ext4_mballoc_query_range
+ffffffc008355e38 t ext4_mb_init_cache
+ffffffc008356700 t ext4_mb_generate_buddy
+ffffffc008356aa0 t ext4_mb_generate_from_pa
+ffffffc008356c50 t mb_set_largest_free_order
+ffffffc008356d88 t mb_update_avg_fragment_size
+ffffffc008356ed0 t ext4_try_to_trim_range
+ffffffc008357384 t mb_mark_used
+ffffffc008357938 t ext4_issue_discard
+ffffffc008357a64 t ext4_mb_use_inode_pa
+ffffffc008357b54 t ext4_mb_find_by_goal
+ffffffc008357e6c t ext4_mb_good_group
+ffffffc008357ff4 t ext4_mb_simple_scan_group
+ffffffc0083581c0 t ext4_mb_scan_aligned
+ffffffc008358318 t ext4_mb_complex_scan_group
+ffffffc008358668 t ext4_mb_try_best_found
+ffffffc00835884c t mb_find_extent
+ffffffc008358b4c t ext4_mb_use_best_found
+ffffffc008358cfc t ext4_mb_new_group_pa
+ffffffc008358f70 t ext4_mb_new_inode_pa
+ffffffc008359294 t ext4_mb_discard_group_preallocations
+ffffffc008359804 t ext4_mb_release_group_pa
+ffffffc008359a14 t ext4_mb_discard_lg_preallocations
+ffffffc008359d80 t ext4_mb_free_metadata
+ffffffc008359fdc t ext4_try_merge_freed_extent
+ffffffc00835a0d8 T ext4_ext_migrate
+ffffffc00835a4d4 t update_ind_extent_range
+ffffffc00835a62c t update_dind_extent_range
+ffffffc00835a738 t update_tind_extent_range
+ffffffc00835a92c t finish_range
+ffffffc00835aa70 t free_ext_block
+ffffffc00835aafc t ext4_ext_swap_inode_data
+ffffffc00835aeac t ext4_journal_ensure_credits
+ffffffc00835af1c T ext4_ind_migrate
+ffffffc00835b184 t free_ext_idx
+ffffffc00835b328 t free_dind_blocks
+ffffffc00835b528 T __dump_mmp_msg
+ffffffc00835b5bc T ext4_stop_mmpd
+ffffffc00835b60c T ext4_multi_mount_protect
+ffffffc00835b9ac t read_mmp_block
+ffffffc00835bbc0 t write_mmp_block
+ffffffc00835bf5c t kmmpd
+ffffffc00835c3b0 T ext4_double_down_write_data_sem
+ffffffc00835c3fc T ext4_double_up_write_data_sem
+ffffffc00835c440 T ext4_move_extents
+ffffffc00835c7ec t mext_check_arguments
+ffffffc00835c970 t move_extent_per_page
+ffffffc00835d7b0 T ext4_initialize_dirent_tail
+ffffffc00835d7fc T ext4_dirblock_csum_verify
+ffffffc00835d944 T ext4_handle_dirty_dirblock
+ffffffc00835daac T ext4_htree_fill_tree
+ffffffc00835dee8 t htree_dirblock_to_tree
+ffffffc00835e1b4 t dx_probe
+ffffffc00835e738 T ext4_fname_setup_ci_filename
+ffffffc00835e840 T ext4_search_dir
+ffffffc00835e94c t ext4_match
+ffffffc00835ea40 T ext4_get_parent
+ffffffc00835ebc8 T ext4_find_dest_de
+ffffffc00835ed30 T ext4_insert_dentry
+ffffffc00835ee6c T ext4_generic_delete_entry
+ffffffc00835efcc T ext4_init_dot_dotdot
+ffffffc00835f0a0 T ext4_init_new_dir
+ffffffc00835f314 t ext4_append
+ffffffc00835f4c0 T ext4_empty_dir
+ffffffc00835f7b4 t __ext4_read_dirblock
+ffffffc00835fa90 T __ext4_unlink
+ffffffc00835fd9c t ext4_delete_entry
+ffffffc008360008 t ext4_update_dx_flag
+ffffffc008360080 T __ext4_link
+ffffffc008360298 t ext4_inc_count
+ffffffc008360310 t ext4_add_entry
+ffffffc008360db4 t ext4_lookup.llvm.15359870707307546754
+ffffffc008361020 t ext4_create.llvm.15359870707307546754
+ffffffc0083611bc t ext4_link.llvm.15359870707307546754
+ffffffc008361240 t ext4_unlink.llvm.15359870707307546754
+ffffffc0083613d4 t ext4_symlink.llvm.15359870707307546754
+ffffffc008361710 t ext4_mkdir.llvm.15359870707307546754
+ffffffc008361a94 t ext4_rmdir.llvm.15359870707307546754
+ffffffc008361d90 t ext4_mknod.llvm.15359870707307546754
+ffffffc008361f2c t ext4_rename2.llvm.15359870707307546754
+ffffffc008362ca4 t ext4_tmpfile.llvm.15359870707307546754
+ffffffc008362e54 t dx_node_limit
+ffffffc008362ecc t ext4_ci_compare
+ffffffc008362fe4 t __ext4_find_entry
+ffffffc008363760 t ext4_dx_csum_verify
+ffffffc008363898 t ext4_dx_csum
+ffffffc0083639b4 t add_dirent_to_buf
+ffffffc008363be0 t make_indexed_dir
+ffffffc0083640c0 t dx_insert_block
+ffffffc00836419c t ext4_handle_dirty_dx_node
+ffffffc008364304 t do_split
+ffffffc008364acc t ext4_add_nondir
+ffffffc008364bc4 t ext4_rename_dir_prepare
+ffffffc008364e00 t ext4_setent
+ffffffc008364f24 t ext4_rename_dir_finish
+ffffffc008364fe8 t ext4_update_dir_count
+ffffffc0083650c4 t ext4_rename_delete
+ffffffc008365280 t ext4_resetent
+ffffffc0083653e8 T ext4_exit_pageio
+ffffffc008365428 T ext4_alloc_io_end_vec
+ffffffc0083654b4 T ext4_last_io_end_vec
+ffffffc0083654e0 T ext4_end_io_rsv_work
+ffffffc0083656e8 T ext4_init_io_end
+ffffffc008365750 T ext4_put_io_end_defer
+ffffffc0083658b0 t ext4_release_io_end
+ffffffc0083659d0 T ext4_put_io_end
+ffffffc008365b28 T ext4_get_io_end
+ffffffc008365bb0 T ext4_io_submit
+ffffffc008365c14 T ext4_io_submit_init
+ffffffc008365c2c T ext4_bio_write_page
+ffffffc008366128 t ext4_finish_bio
+ffffffc0083663e0 t ext4_end_bio
+ffffffc0083665a4 T ext4_mpage_readpages
+ffffffc008366f64 T ext4_exit_post_read_processing
+ffffffc008366fa0 t __read_end_io
+ffffffc008367104 t decrypt_work
+ffffffc0083671bc t verity_work
+ffffffc00836720c t verity_work
+ffffffc0083672b0 T ext4_kvfree_array_rcu
+ffffffc00836731c t ext4_rcu_ptr_callback
+ffffffc008367360 T ext4_resize_begin
+ffffffc0083674e0 T ext4_resize_end
+ffffffc00836755c T ext4_list_backups
+ffffffc008367678 T ext4_group_add
+ffffffc008367cf0 t ext4_flex_group_add
+ffffffc00836984c T ext4_group_extend
+ffffffc008369a88 t ext4_group_extend_no_check
+ffffffc008369cdc T ext4_resize_fs
+ffffffc00836ade4 t update_backups
+ffffffc00836b36c t bclean
+ffffffc00836b450 t set_flexbg_block_bitmap
+ffffffc00836b644 t verify_reserved_gdb
+ffffffc00836b7ec T __traceiter_ext4_other_inode_update_time
+ffffffc00836b87c T __traceiter_ext4_free_inode
+ffffffc00836b8fc T __traceiter_ext4_request_inode
+ffffffc00836b98c T __traceiter_ext4_allocate_inode
+ffffffc00836ba24 T __traceiter_ext4_evict_inode
+ffffffc00836baa4 T __traceiter_ext4_drop_inode
+ffffffc00836bb34 T __traceiter_ext4_nfs_commit_metadata
+ffffffc00836bbb4 T __traceiter_ext4_mark_inode_dirty
+ffffffc00836bc44 T __traceiter_ext4_begin_ordered_truncate
+ffffffc00836bcd4 T __traceiter_ext4_write_begin
+ffffffc00836bd6c T __traceiter_ext4_da_write_begin
+ffffffc00836be04 T __traceiter_ext4_write_end
+ffffffc00836beac T __traceiter_ext4_journalled_write_end
+ffffffc00836bf54 T __traceiter_ext4_da_write_end
+ffffffc00836bffc T __traceiter_ext4_writepages
+ffffffc00836c08c T __traceiter_ext4_da_write_pages
+ffffffc00836c124 T __traceiter_ext4_da_write_pages_extent
+ffffffc00836c1b4 T __traceiter_ext4_writepages_result
+ffffffc00836c25c T __traceiter_ext4_writepage
+ffffffc00836c2dc T __traceiter_ext4_readpage
+ffffffc00836c35c T __traceiter_ext4_releasepage
+ffffffc00836c3dc T __traceiter_ext4_invalidate_folio
+ffffffc00836c474 T __traceiter_ext4_journalled_invalidate_folio
+ffffffc00836c50c T __traceiter_ext4_discard_blocks
+ffffffc00836c5a4 T __traceiter_ext4_mb_new_inode_pa
+ffffffc00836c634 T __traceiter_ext4_mb_new_group_pa
+ffffffc00836c6c4 T __traceiter_ext4_mb_release_inode_pa
+ffffffc00836c75c T __traceiter_ext4_mb_release_group_pa
+ffffffc00836c7ec T __traceiter_ext4_discard_preallocations
+ffffffc00836c884 T __traceiter_ext4_mb_discard_preallocations
+ffffffc00836c914 T __traceiter_ext4_request_blocks
+ffffffc00836c994 T __traceiter_ext4_allocate_blocks
+ffffffc00836ca24 T __traceiter_ext4_free_blocks
+ffffffc00836cacc T __traceiter_ext4_sync_file_enter
+ffffffc00836cb5c T __traceiter_ext4_sync_file_exit
+ffffffc00836cbec T __traceiter_ext4_sync_fs
+ffffffc00836cc7c T __traceiter_ext4_alloc_da_blocks
+ffffffc00836ccfc T __traceiter_ext4_mballoc_alloc
+ffffffc00836cd7c T __traceiter_ext4_mballoc_prealloc
+ffffffc00836cdfc T __traceiter_ext4_mballoc_discard
+ffffffc00836ceac T __traceiter_ext4_mballoc_free
+ffffffc00836cf5c T __traceiter_ext4_forget
+ffffffc00836cff4 T __traceiter_ext4_da_update_reserve_space
+ffffffc00836d08c T __traceiter_ext4_da_reserve_space
+ffffffc00836d10c T __traceiter_ext4_da_release_space
+ffffffc00836d19c T __traceiter_ext4_mb_bitmap_load
+ffffffc00836d22c T __traceiter_ext4_mb_buddy_bitmap_load
+ffffffc00836d2bc T __traceiter_ext4_load_inode_bitmap
+ffffffc00836d34c T __traceiter_ext4_read_block_bitmap_load
+ffffffc00836d3e4 T __traceiter_ext4_fallocate_enter
+ffffffc00836d48c T __traceiter_ext4_punch_hole
+ffffffc00836d534 T __traceiter_ext4_zero_range
+ffffffc00836d5dc T __traceiter_ext4_fallocate_exit
+ffffffc00836d684 T __traceiter_ext4_unlink_enter
+ffffffc00836d714 T __traceiter_ext4_unlink_exit
+ffffffc00836d7a4 T __traceiter_ext4_truncate_enter
+ffffffc00836d824 T __traceiter_ext4_truncate_exit
+ffffffc00836d8a4 T __traceiter_ext4_ext_convert_to_initialized_enter
+ffffffc00836d93c T __traceiter_ext4_ext_convert_to_initialized_fastpath
+ffffffc00836d9e4 T __traceiter_ext4_ext_map_blocks_enter
+ffffffc00836da8c T __traceiter_ext4_ind_map_blocks_enter
+ffffffc00836db34 T __traceiter_ext4_ext_map_blocks_exit
+ffffffc00836dbdc T __traceiter_ext4_ind_map_blocks_exit
+ffffffc00836dc84 T __traceiter_ext4_ext_load_extent
+ffffffc00836dd1c T __traceiter_ext4_load_inode
+ffffffc00836ddac T __traceiter_ext4_journal_start
+ffffffc00836de5c T __traceiter_ext4_journal_start_reserved
+ffffffc00836def4 T __traceiter_ext4_trim_extent
+ffffffc00836df9c T __traceiter_ext4_trim_all_free
+ffffffc00836e044 T __traceiter_ext4_ext_handle_unwritten_extents
+ffffffc00836e0f4 T __traceiter_ext4_get_implied_cluster_alloc_exit
+ffffffc00836e18c T __traceiter_ext4_ext_show_extent
+ffffffc00836e234 T __traceiter_ext4_remove_blocks
+ffffffc00836e2e4 T __traceiter_ext4_ext_rm_leaf
+ffffffc00836e38c T __traceiter_ext4_ext_rm_idx
+ffffffc00836e41c T __traceiter_ext4_ext_remove_space
+ffffffc00836e4c4 T __traceiter_ext4_ext_remove_space_done
+ffffffc00836e584 T __traceiter_ext4_es_insert_extent
+ffffffc00836e614 T __traceiter_ext4_es_cache_extent
+ffffffc00836e6a4 T __traceiter_ext4_es_remove_extent
+ffffffc00836e73c T __traceiter_ext4_es_find_extent_range_enter
+ffffffc00836e7cc T __traceiter_ext4_es_find_extent_range_exit
+ffffffc00836e85c T __traceiter_ext4_es_lookup_extent_enter
+ffffffc00836e8ec T __traceiter_ext4_es_lookup_extent_exit
+ffffffc00836e984 T __traceiter_ext4_es_shrink_count
+ffffffc00836ea1c T __traceiter_ext4_es_shrink_scan_enter
+ffffffc00836eab4 T __traceiter_ext4_es_shrink_scan_exit
+ffffffc00836eb4c T __traceiter_ext4_collapse_range
+ffffffc00836ebe4 T __traceiter_ext4_insert_range
+ffffffc00836ec7c T __traceiter_ext4_es_shrink
+ffffffc00836ed2c T __traceiter_ext4_es_insert_delayed_block
+ffffffc00836edc4 T __traceiter_ext4_fsmap_low_key
+ffffffc00836ee84 T __traceiter_ext4_fsmap_high_key
+ffffffc00836ef44 T __traceiter_ext4_fsmap_mapping
+ffffffc00836f004 T __traceiter_ext4_getfsmap_low_key
+ffffffc00836f094 T __traceiter_ext4_getfsmap_high_key
+ffffffc00836f124 T __traceiter_ext4_getfsmap_mapping
+ffffffc00836f1b4 T __traceiter_ext4_shutdown
+ffffffc00836f244 T __traceiter_ext4_error
+ffffffc00836f2dc T __traceiter_ext4_prefetch_bitmaps
+ffffffc00836f384 T __traceiter_ext4_lazy_itable_init
+ffffffc00836f414 T __traceiter_ext4_fc_replay_scan
+ffffffc00836f4ac T __traceiter_ext4_fc_replay
+ffffffc00836f55c T __traceiter_ext4_fc_commit_start
+ffffffc00836f5ec T __traceiter_ext4_fc_commit_stop
+ffffffc00836f694 T __traceiter_ext4_fc_stats
+ffffffc00836f714 T __traceiter_ext4_fc_track_create
+ffffffc00836f7bc T __traceiter_ext4_fc_track_link
+ffffffc00836f864 T __traceiter_ext4_fc_track_unlink
+ffffffc00836f90c T __traceiter_ext4_fc_track_inode
+ffffffc00836f9a4 T __traceiter_ext4_fc_track_range
+ffffffc00836fa54 T __traceiter_ext4_fc_cleanup
+ffffffc00836faec T __traceiter_ext4_update_sb
+ffffffc00836fb84 t trace_event_raw_event_ext4_other_inode_update_time
+ffffffc00836fc6c t perf_trace_ext4_other_inode_update_time
+ffffffc00836fdb0 t trace_event_raw_event_ext4_free_inode
+ffffffc00836fe98 t perf_trace_ext4_free_inode
+ffffffc00836ffd4 t trace_event_raw_event_ext4_request_inode
+ffffffc0083700a4 t perf_trace_ext4_request_inode
+ffffffc0083701d0 t trace_event_raw_event_ext4_allocate_inode
+ffffffc0083702b8 t perf_trace_ext4_allocate_inode
+ffffffc0083703f0 t trace_event_raw_event_ext4_evict_inode
+ffffffc0083704c0 t perf_trace_ext4_evict_inode
+ffffffc0083705e4 t trace_event_raw_event_ext4_drop_inode
+ffffffc0083706b4 t perf_trace_ext4_drop_inode
+ffffffc0083707e0 t trace_event_raw_event_ext4_nfs_commit_metadata
+ffffffc0083708a8 t perf_trace_ext4_nfs_commit_metadata
+ffffffc0083709c4 t trace_event_raw_event_ext4_mark_inode_dirty
+ffffffc008370a90 t perf_trace_ext4_mark_inode_dirty
+ffffffc008370bb8 t trace_event_raw_event_ext4_begin_ordered_truncate
+ffffffc008370c84 t perf_trace_ext4_begin_ordered_truncate
+ffffffc008370dac t trace_event_raw_event_ext4__write_begin
+ffffffc008370e8c t perf_trace_ext4__write_begin
+ffffffc008370fbc t trace_event_raw_event_ext4__write_end
+ffffffc0083710a0 t perf_trace_ext4__write_end
+ffffffc0083711dc t trace_event_raw_event_ext4_writepages
+ffffffc0083712f4 t perf_trace_ext4_writepages
+ffffffc008371468 t trace_event_raw_event_ext4_da_write_pages
+ffffffc008371554 t perf_trace_ext4_da_write_pages
+ffffffc008371690 t trace_event_raw_event_ext4_da_write_pages_extent
+ffffffc008371774 t perf_trace_ext4_da_write_pages_extent
+ffffffc0083718b4 t trace_event_raw_event_ext4_writepages_result
+ffffffc0083719b4 t perf_trace_ext4_writepages_result
+ffffffc008371b0c t trace_event_raw_event_ext4__page_op
+ffffffc008371bec t perf_trace_ext4__page_op
+ffffffc008371d20 t trace_event_raw_event_ext4_invalidate_folio_op
+ffffffc008371e18 t perf_trace_ext4_invalidate_folio_op
+ffffffc008371f60 t trace_event_raw_event_ext4_discard_blocks
+ffffffc008372034 t perf_trace_ext4_discard_blocks
+ffffffc008372158 t trace_event_raw_event_ext4__mb_new_pa
+ffffffc008372240 t perf_trace_ext4__mb_new_pa
+ffffffc008372384 t trace_event_raw_event_ext4_mb_release_inode_pa
+ffffffc00837246c t perf_trace_ext4_mb_release_inode_pa
+ffffffc0083725a4 t trace_event_raw_event_ext4_mb_release_group_pa
+ffffffc008372674 t perf_trace_ext4_mb_release_group_pa
+ffffffc0083727a0 t trace_event_raw_event_ext4_discard_preallocations
+ffffffc008372880 t perf_trace_ext4_discard_preallocations
+ffffffc0083729b0 t trace_event_raw_event_ext4_mb_discard_preallocations
+ffffffc008372a70 t perf_trace_ext4_mb_discard_preallocations
+ffffffc008372b8c t trace_event_raw_event_ext4_request_blocks
+ffffffc008372c9c t perf_trace_ext4_request_blocks
+ffffffc008372e00 t trace_event_raw_event_ext4_allocate_blocks
+ffffffc008372f14 t perf_trace_ext4_allocate_blocks
+ffffffc008373084 t trace_event_raw_event_ext4_free_blocks
+ffffffc008373174 t perf_trace_ext4_free_blocks
+ffffffc0083732bc t trace_event_raw_event_ext4_sync_file_enter
+ffffffc0083733a4 t perf_trace_ext4_sync_file_enter
+ffffffc0083734e8 t trace_event_raw_event_ext4_sync_file_exit
+ffffffc0083735b8 t perf_trace_ext4_sync_file_exit
+ffffffc0083736e4 t trace_event_raw_event_ext4_sync_fs
+ffffffc0083737a4 t perf_trace_ext4_sync_fs
+ffffffc0083738c0 t trace_event_raw_event_ext4_alloc_da_blocks
+ffffffc008373990 t perf_trace_ext4_alloc_da_blocks
+ffffffc008373ab4 t trace_event_raw_event_ext4_mballoc_alloc
+ffffffc008373c14 t perf_trace_ext4_mballoc_alloc
+ffffffc008373dc8 t trace_event_raw_event_ext4_mballoc_prealloc
+ffffffc008373ed8 t perf_trace_ext4_mballoc_prealloc
+ffffffc00837403c t trace_event_raw_event_ext4__mballoc
+ffffffc008374138 t perf_trace_ext4__mballoc
+ffffffc008374284 t trace_event_raw_event_ext4_forget
+ffffffc00837436c t perf_trace_ext4_forget
+ffffffc0083744a4 t trace_event_raw_event_ext4_da_update_reserve_space
+ffffffc00837459c t perf_trace_ext4_da_update_reserve_space
+ffffffc0083746e4 t trace_event_raw_event_ext4_da_reserve_space
+ffffffc0083747c4 t perf_trace_ext4_da_reserve_space
+ffffffc0083748f8 t trace_event_raw_event_ext4_da_release_space
+ffffffc0083749e0 t perf_trace_ext4_da_release_space
+ffffffc008374b24 t trace_event_raw_event_ext4__bitmap_load
+ffffffc008374be4 t perf_trace_ext4__bitmap_load
+ffffffc008374d00 t trace_event_raw_event_ext4_read_block_bitmap_load
+ffffffc008374dd8 t perf_trace_ext4_read_block_bitmap_load
+ffffffc008374f00 t trace_event_raw_event_ext4__fallocate_mode
+ffffffc008374fe8 t perf_trace_ext4__fallocate_mode
+ffffffc008375128 t trace_event_raw_event_ext4_fallocate_exit
+ffffffc00837520c t perf_trace_ext4_fallocate_exit
+ffffffc008375348 t trace_event_raw_event_ext4_unlink_enter
+ffffffc00837542c t perf_trace_ext4_unlink_enter
+ffffffc00837556c t trace_event_raw_event_ext4_unlink_exit
+ffffffc008375640 t perf_trace_ext4_unlink_exit
+ffffffc008375770 t trace_event_raw_event_ext4__truncate
+ffffffc008375840 t perf_trace_ext4__truncate
+ffffffc008375964 t trace_event_raw_event_ext4_ext_convert_to_initialized_enter
+ffffffc008375a78 t perf_trace_ext4_ext_convert_to_initialized_enter
+ffffffc008375bdc t trace_event_raw_event_ext4_ext_convert_to_initialized_fastpath
+ffffffc008375d1c t perf_trace_ext4_ext_convert_to_initialized_fastpath
+ffffffc008375eb4 t trace_event_raw_event_ext4__map_blocks_enter
+ffffffc008375f9c t perf_trace_ext4__map_blocks_enter
+ffffffc0083760dc t trace_event_raw_event_ext4__map_blocks_exit
+ffffffc0083761e0 t perf_trace_ext4__map_blocks_exit
+ffffffc00837633c t trace_event_raw_event_ext4_ext_load_extent
+ffffffc00837641c t perf_trace_ext4_ext_load_extent
+ffffffc00837654c t trace_event_raw_event_ext4_load_inode
+ffffffc008376610 t perf_trace_ext4_load_inode
+ffffffc008376730 t trace_event_raw_event_ext4_journal_start
+ffffffc00837681c t perf_trace_ext4_journal_start
+ffffffc008376958 t trace_event_raw_event_ext4_journal_start_reserved
+ffffffc008376a30 t perf_trace_ext4_journal_start_reserved
+ffffffc008376b58 t trace_event_raw_event_ext4__trim
+ffffffc008376c40 t perf_trace_ext4__trim
+ffffffc008376d80 t trace_event_raw_event_ext4_ext_handle_unwritten_extents
+ffffffc008376e8c t perf_trace_ext4_ext_handle_unwritten_extents
+ffffffc008376fe8 t trace_event_raw_event_ext4_get_implied_cluster_alloc_exit
+ffffffc0083770d8 t perf_trace_ext4_get_implied_cluster_alloc_exit
+ffffffc008377218 t trace_event_raw_event_ext4_ext_show_extent
+ffffffc008377300 t perf_trace_ext4_ext_show_extent
+ffffffc008377440 t trace_event_raw_event_ext4_remove_blocks
+ffffffc008377574 t perf_trace_ext4_remove_blocks
+ffffffc0083776f8 t trace_event_raw_event_ext4_ext_rm_leaf
+ffffffc008377820 t perf_trace_ext4_ext_rm_leaf
+ffffffc0083779a0 t trace_event_raw_event_ext4_ext_rm_idx
+ffffffc008377a6c t perf_trace_ext4_ext_rm_idx
+ffffffc008377b94 t trace_event_raw_event_ext4_ext_remove_space
+ffffffc008377c7c t perf_trace_ext4_ext_remove_space
+ffffffc008377dbc t trace_event_raw_event_ext4_ext_remove_space_done
+ffffffc008377ed0 t perf_trace_ext4_ext_remove_space_done
+ffffffc00837803c t trace_event_raw_event_ext4__es_extent
+ffffffc00837813c t perf_trace_ext4__es_extent
+ffffffc008378298 t trace_event_raw_event_ext4_es_remove_extent
+ffffffc008378380 t perf_trace_ext4_es_remove_extent
+ffffffc0083784b8 t trace_event_raw_event_ext4_es_find_extent_range_enter
+ffffffc008378588 t perf_trace_ext4_es_find_extent_range_enter
+ffffffc0083786b4 t trace_event_raw_event_ext4_es_find_extent_range_exit
+ffffffc0083787b4 t perf_trace_ext4_es_find_extent_range_exit
+ffffffc008378910 t trace_event_raw_event_ext4_es_lookup_extent_enter
+ffffffc0083789e0 t perf_trace_ext4_es_lookup_extent_enter
+ffffffc008378b0c t trace_event_raw_event_ext4_es_lookup_extent_exit
+ffffffc008378c20 t perf_trace_ext4_es_lookup_extent_exit
+ffffffc008378d84 t trace_event_raw_event_ext4__es_shrink_enter
+ffffffc008378e58 t perf_trace_ext4__es_shrink_enter
+ffffffc008378f7c t trace_event_raw_event_ext4_es_shrink_scan_exit
+ffffffc008379050 t perf_trace_ext4_es_shrink_scan_exit
+ffffffc008379174 t trace_event_raw_event_ext4_collapse_range
+ffffffc008379254 t perf_trace_ext4_collapse_range
+ffffffc008379384 t trace_event_raw_event_ext4_insert_range
+ffffffc008379464 t perf_trace_ext4_insert_range
+ffffffc008379594 t trace_event_raw_event_ext4_es_shrink
+ffffffc008379698 t perf_trace_ext4_es_shrink
+ffffffc0083797ec t trace_event_raw_event_ext4_es_insert_delayed_block
+ffffffc008379904 t perf_trace_ext4_es_insert_delayed_block
+ffffffc008379a6c t trace_event_raw_event_ext4_fsmap_class
+ffffffc008379b70 t perf_trace_ext4_fsmap_class
+ffffffc008379ccc t trace_event_raw_event_ext4_getfsmap_class
+ffffffc008379dc8 t perf_trace_ext4_getfsmap_class
+ffffffc008379f20 t trace_event_raw_event_ext4_shutdown
+ffffffc008379fe0 t perf_trace_ext4_shutdown
+ffffffc00837a0fc t trace_event_raw_event_ext4_error
+ffffffc00837a1d4 t perf_trace_ext4_error
+ffffffc00837a2fc t trace_event_raw_event_ext4_prefetch_bitmaps
+ffffffc00837a3d4 t perf_trace_ext4_prefetch_bitmaps
+ffffffc00837a504 t trace_event_raw_event_ext4_lazy_itable_init
+ffffffc00837a5c4 t perf_trace_ext4_lazy_itable_init
+ffffffc00837a6e0 t trace_event_raw_event_ext4_fc_replay_scan
+ffffffc00837a7b4 t perf_trace_ext4_fc_replay_scan
+ffffffc00837a8d8 t trace_event_raw_event_ext4_fc_replay
+ffffffc00837a9c0 t perf_trace_ext4_fc_replay
+ffffffc00837aaf8 t trace_event_raw_event_ext4_fc_commit_start
+ffffffc00837abb8 t perf_trace_ext4_fc_commit_start
+ffffffc00837acd4 t trace_event_raw_event_ext4_fc_commit_stop
+ffffffc00837add0 t perf_trace_ext4_fc_commit_stop
+ffffffc00837af24 t trace_event_raw_event_ext4_fc_stats
+ffffffc00837b07c t perf_trace_ext4_fc_stats
+ffffffc00837b228 t trace_event_raw_event_ext4_fc_track_dentry
+ffffffc00837b318 t perf_trace_ext4_fc_track_dentry
+ffffffc00837b458 t trace_event_raw_event_ext4_fc_track_inode
+ffffffc00837b548 t perf_trace_ext4_fc_track_inode
+ffffffc00837b688 t trace_event_raw_event_ext4_fc_track_range
+ffffffc00837b790 t perf_trace_ext4_fc_track_range
+ffffffc00837b8e8 t trace_event_raw_event_ext4_fc_cleanup
+ffffffc00837b9c8 t perf_trace_ext4_fc_cleanup
+ffffffc00837baf8 t trace_event_raw_event_ext4_update_sb
+ffffffc00837bbd0 t perf_trace_ext4_update_sb
+ffffffc00837bcf8 T ext4_read_bh_nowait
+ffffffc00837be00 T ext4_read_bh
+ffffffc00837bf34 T ext4_read_bh_lock
+ffffffc00837bfdc T ext4_sb_bread
+ffffffc00837c008 t __ext4_sb_bread_gfp.llvm.3396182098649637278
+ffffffc00837c144 T ext4_sb_bread_unmovable
+ffffffc00837c178 T ext4_sb_breadahead_unmovable
+ffffffc00837c218 T ext4_superblock_csum
+ffffffc00837c2a8 T ext4_superblock_csum_set
+ffffffc00837c378 T ext4_block_bitmap
+ffffffc00837c3b0 T ext4_inode_bitmap
+ffffffc00837c3e8 T ext4_inode_table
+ffffffc00837c420 T ext4_free_group_clusters
+ffffffc00837c458 T ext4_free_inodes_count
+ffffffc00837c490 T ext4_used_dirs_count
+ffffffc00837c4c8 T ext4_itable_unused_count
+ffffffc00837c500 T ext4_block_bitmap_set
+ffffffc00837c52c T ext4_inode_bitmap_set
+ffffffc00837c558 T ext4_inode_table_set
+ffffffc00837c584 T ext4_free_group_clusters_set
+ffffffc00837c5b0 T ext4_free_inodes_set
+ffffffc00837c5dc T ext4_used_dirs_set
+ffffffc00837c608 T ext4_itable_unused_set
+ffffffc00837c634 T __ext4_error
+ffffffc00837c868 t ext4_handle_error
+ffffffc00837ca88 T __ext4_error_inode
+ffffffc00837cd00 T __ext4_error_file
+ffffffc00837cfa8 T ext4_decode_error
+ffffffc00837d098 T __ext4_std_error
+ffffffc00837d27c T __ext4_msg
+ffffffc00837d3c4 T __ext4_warning
+ffffffc00837d4d4 T __ext4_warning_inode
+ffffffc00837d5f8 T __ext4_grp_locked_error
+ffffffc00837d9e8 T ext4_mark_group_bitmap_corrupted
+ffffffc00837db18 T ext4_update_dynamic_rev
+ffffffc00837db8c T ext4_clear_inode
+ffffffc00837dc1c T ext4_seq_options_show
+ffffffc00837dc94 t _ext4_show_options
+ffffffc00837e274 T ext4_alloc_flex_bg_array
+ffffffc00837e45c T ext4_group_desc_csum_verify
+ffffffc00837e4e0 t ext4_group_desc_csum
+ffffffc00837e704 T ext4_group_desc_csum_set
+ffffffc00837e780 T ext4_feature_set_ok
+ffffffc00837e894 T ext4_register_li_request
+ffffffc00837eb84 T ext4_calculate_overhead
+ffffffc00837f020 t ext4_get_journal_inode
+ffffffc00837f100 T ext4_force_commit
+ffffffc00837f148 t trace_raw_output_ext4_other_inode_update_time
+ffffffc00837f1dc t trace_raw_output_ext4_free_inode
+ffffffc00837f274 t trace_raw_output_ext4_request_inode
+ffffffc00837f2f8 t trace_raw_output_ext4_allocate_inode
+ffffffc00837f37c t trace_raw_output_ext4_evict_inode
+ffffffc00837f400 t trace_raw_output_ext4_drop_inode
+ffffffc00837f484 t trace_raw_output_ext4_nfs_commit_metadata
+ffffffc00837f504 t trace_raw_output_ext4_mark_inode_dirty
+ffffffc00837f584 t trace_raw_output_ext4_begin_ordered_truncate
+ffffffc00837f604 t trace_raw_output_ext4__write_begin
+ffffffc00837f688 t trace_raw_output_ext4__write_end
+ffffffc00837f70c t trace_raw_output_ext4_writepages
+ffffffc00837f7bc t trace_raw_output_ext4_da_write_pages
+ffffffc00837f844 t trace_raw_output_ext4_da_write_pages_extent
+ffffffc00837f908 t trace_raw_output_ext4_writepages_result
+ffffffc00837f9a4 t trace_raw_output_ext4__page_op
+ffffffc00837fa24 t trace_raw_output_ext4_invalidate_folio_op
+ffffffc00837faa8 t trace_raw_output_ext4_discard_blocks
+ffffffc00837fb28 t trace_raw_output_ext4__mb_new_pa
+ffffffc00837fbb0 t trace_raw_output_ext4_mb_release_inode_pa
+ffffffc00837fc34 t trace_raw_output_ext4_mb_release_group_pa
+ffffffc00837fcb8 t trace_raw_output_ext4_discard_preallocations
+ffffffc00837fd3c t trace_raw_output_ext4_mb_discard_preallocations
+ffffffc00837fdb8 t trace_raw_output_ext4_request_blocks
+ffffffc00837fe94 t trace_raw_output_ext4_allocate_blocks
+ffffffc00837ff78 t trace_raw_output_ext4_free_blocks
+ffffffc00838005c t trace_raw_output_ext4_sync_file_enter
+ffffffc0083800e0 t trace_raw_output_ext4_sync_file_exit
+ffffffc008380164 t trace_raw_output_ext4_sync_fs
+ffffffc0083801e0 t trace_raw_output_ext4_alloc_da_blocks
+ffffffc008380264 t trace_raw_output_ext4_mballoc_alloc
+ffffffc0083803ec t trace_raw_output_ext4_mballoc_prealloc
+ffffffc008380498 t trace_raw_output_ext4__mballoc
+ffffffc008380520 t trace_raw_output_ext4_forget
+ffffffc0083805a8 t trace_raw_output_ext4_da_update_reserve_space
+ffffffc008380644 t trace_raw_output_ext4_da_reserve_space
+ffffffc0083806cc t trace_raw_output_ext4_da_release_space
+ffffffc008380760 t trace_raw_output_ext4__bitmap_load
+ffffffc0083807dc t trace_raw_output_ext4_read_block_bitmap_load
+ffffffc00838085c t trace_raw_output_ext4__fallocate_mode
+ffffffc008380924 t trace_raw_output_ext4_fallocate_exit
+ffffffc0083809a8 t trace_raw_output_ext4_unlink_enter
+ffffffc008380a2c t trace_raw_output_ext4_unlink_exit
+ffffffc008380ab0 t trace_raw_output_ext4__truncate
+ffffffc008380b30 t trace_raw_output_ext4_ext_convert_to_initialized_enter
+ffffffc008380bcc t trace_raw_output_ext4_ext_convert_to_initialized_fastpath
+ffffffc008380c7c t trace_raw_output_ext4__map_blocks_enter
+ffffffc008380d44 t trace_raw_output_ext4__map_blocks_exit
+ffffffc008380e5c t trace_raw_output_ext4_ext_load_extent
+ffffffc008380ee0 t trace_raw_output_ext4_load_inode
+ffffffc008380f60 t trace_raw_output_ext4_journal_start
+ffffffc008380fe8 t trace_raw_output_ext4_journal_start_reserved
+ffffffc00838106c t trace_raw_output_ext4__trim
+ffffffc0083810e8 t trace_raw_output_ext4_ext_handle_unwritten_extents
+ffffffc0083811e0 t trace_raw_output_ext4_get_implied_cluster_alloc_exit
+ffffffc0083812b8 t trace_raw_output_ext4_ext_show_extent
+ffffffc008381340 t trace_raw_output_ext4_remove_blocks
+ffffffc0083813f4 t trace_raw_output_ext4_ext_rm_leaf
+ffffffc0083814a0 t trace_raw_output_ext4_ext_rm_idx
+ffffffc008381520 t trace_raw_output_ext4_ext_remove_space
+ffffffc0083815a8 t trace_raw_output_ext4_ext_remove_space_done
+ffffffc008381654 t trace_raw_output_ext4__es_extent
+ffffffc008381738 t trace_raw_output_ext4_es_remove_extent
+ffffffc0083817bc t trace_raw_output_ext4_es_find_extent_range_enter
+ffffffc008381840 t trace_raw_output_ext4_es_find_extent_range_exit
+ffffffc008381924 t trace_raw_output_ext4_es_lookup_extent_enter
+ffffffc0083819a8 t trace_raw_output_ext4_es_lookup_extent_exit
+ffffffc008381aa0 t trace_raw_output_ext4__es_shrink_enter
+ffffffc008381b20 t trace_raw_output_ext4_es_shrink_scan_exit
+ffffffc008381ba0 t trace_raw_output_ext4_collapse_range
+ffffffc008381c24 t trace_raw_output_ext4_insert_range
+ffffffc008381ca8 t trace_raw_output_ext4_es_shrink
+ffffffc008381d2c t trace_raw_output_ext4_es_insert_delayed_block
+ffffffc008381e18 t trace_raw_output_ext4_fsmap_class
+ffffffc008381eb4 t trace_raw_output_ext4_getfsmap_class
+ffffffc008381f4c t trace_raw_output_ext4_shutdown
+ffffffc008381fc8 t trace_raw_output_ext4_error
+ffffffc00838204c t trace_raw_output_ext4_prefetch_bitmaps
+ffffffc0083820cc t trace_raw_output_ext4_lazy_itable_init
+ffffffc008382148 t trace_raw_output_ext4_fc_replay_scan
+ffffffc0083821c8 t trace_raw_output_ext4_fc_replay
+ffffffc00838224c t trace_raw_output_ext4_fc_commit_start
+ffffffc0083822c8 t trace_raw_output_ext4_fc_commit_stop
+ffffffc008382360 t trace_raw_output_ext4_fc_stats
+ffffffc0083825b0 t trace_raw_output_ext4_fc_track_dentry
+ffffffc008382634 t trace_raw_output_ext4_fc_track_inode
+ffffffc0083826b8 t trace_raw_output_ext4_fc_track_range
+ffffffc008382750 t trace_raw_output_ext4_fc_cleanup
+ffffffc0083827d0 t trace_raw_output_ext4_update_sb
+ffffffc008382850 t ext4_commit_super
+ffffffc008382ac8 t ext4_update_super
+ffffffc008382e28 t ext4_errno_to_code
+ffffffc008382f34 t ext4_lazyinit_thread
+ffffffc008383780 t ext4_init_fs_context
+ffffffc0083837ec t ext4_fc_free
+ffffffc008383844 t ext4_parse_param
+ffffffc008383f98 t ext4_get_tree
+ffffffc008383fcc t ext4_reconfigure
+ffffffc00838461c t ctx_set_mount_flag
+ffffffc008384690 t ext4_fill_super
+ffffffc0083861c4 t ext4_check_opt_consistency
+ffffffc00838636c t ext4_apply_options
+ffffffc0083864b8 t ext4_journal_data_mode_check
+ffffffc0083865c4 t ext4_check_feature_compatibility
+ffffffc008386758 t ext4_max_bitmap_size
+ffffffc008386808 t ext4_handle_clustersize
+ffffffc008386960 t ext4_geometry_check
+ffffffc008386b60 t ext4_group_desc_init
+ffffffc0083873f0 t print_daily_error_info
+ffffffc008387548 t flush_stashed_error_work
+ffffffc0083876b4 t ext4_get_stripe_size
+ffffffc00838771c t ext4_fast_commit_init
+ffffffc0083877e4 t ext4_load_and_init_journal
+ffffffc008388134 t ext4_setup_super
+ffffffc0083883a0 t ext4_set_resv_clusters
+ffffffc008388410 t ext4_journal_commit_callback
+ffffffc00838851c t ext4_fill_flex_info
+ffffffc0083886ec t ext4_mark_recovery_complete
+ffffffc008388828 t ext4_unregister_li_request
+ffffffc0083888dc t ext4_group_desc_free
+ffffffc008388968 t ext4_alloc_inode
+ffffffc008388a70 t ext4_destroy_inode
+ffffffc008388b48 t ext4_free_in_core_inode
+ffffffc008388bbc t ext4_drop_inode
+ffffffc008388cf4 t ext4_put_super
+ffffffc008389088 t ext4_sync_fs
+ffffffc0083892a0 t ext4_freeze
+ffffffc00838936c t ext4_unfreeze
+ffffffc00838948c t ext4_statfs
+ffffffc008389614 t ext4_show_options
+ffffffc00838964c t ext4_fh_to_dentry
+ffffffc008389680 t ext4_fh_to_parent
+ffffffc0083896b4 t ext4_nfs_commit_metadata
+ffffffc008389804 t ext4_nfs_get_inode
+ffffffc00838986c t ext4_journal_submit_inode_data_buffers
+ffffffc008389918 t ext4_journal_finish_inode_data_buffers
+ffffffc008389964 t ext4_clear_journal_err
+ffffffc008389b44 t ext4_init_journal_params
+ffffffc008389be4 t ext4_journalled_writepage_callback
+ffffffc008389c64 t register_as_ext3
+ffffffc008389cb0 t ext4_encrypted_get_link.llvm.7839929006099834250
+ffffffc008389d54 t ext4_encrypted_symlink_getattr.llvm.7839929006099834250
+ffffffc008389d84 t ext4_get_link.llvm.7839929006099834250
+ffffffc008389ee0 t ext4_free_link
+ffffffc008389f10 T ext4_notify_error_sysfs
+ffffffc008389f4c T ext4_register_sysfs
+ffffffc00838a0f0 T ext4_unregister_sysfs
+ffffffc00838a144 T ext4_exit_sysfs
+ffffffc00838a1ac t ext4_sb_release
+ffffffc00838a1dc t ext4_attr_show
+ffffffc00838a534 t ext4_attr_store
+ffffffc00838a7f0 t ext4_feat_release
+ffffffc00838a81c T ext4_evict_ea_inode
+ffffffc00838a90c t mb_cache_entry_put
+ffffffc00838a98c T ext4_xattr_ibody_get
+ffffffc00838abbc t __xattr_check_inode
+ffffffc00838ad20 t ext4_xattr_inode_get
+ffffffc00838af00 T ext4_xattr_get
+ffffffc00838b1a8 T ext4_listxattr
+ffffffc00838b5a0 T ext4_get_inode_usage
+ffffffc00838b788 t __ext4_xattr_check_block
+ffffffc00838b9e8 T __ext4_xattr_set_credits
+ffffffc00838bae0 T ext4_xattr_ibody_find
+ffffffc00838bc80 T ext4_xattr_ibody_set
+ffffffc00838bd88 t ext4_xattr_set_entry
+ffffffc00838cbc8 T ext4_xattr_set_handle
+ffffffc00838d384 t ext4_xattr_block_find
+ffffffc00838d528 t ext4_xattr_block_set
+ffffffc00838e1e4 t ext4_xattr_value_same
+ffffffc00838e248 t ext4_xattr_update_super_block
+ffffffc00838e34c T ext4_xattr_set_credits
+ffffffc00838e520 T ext4_xattr_set
+ffffffc00838e688 T ext4_expand_extra_isize_ea
+ffffffc00838ee74 T ext4_xattr_delete_inode
+ffffffc00838f270 t ext4_xattr_inode_dec_ref_all
+ffffffc00838f690 t ext4_xattr_inode_iget
+ffffffc00838f8a0 t ext4_xattr_release_block
+ffffffc00838fc74 T ext4_xattr_inode_array_free
+ffffffc00838fcdc T ext4_xattr_create_cache
+ffffffc00838fd0c T ext4_xattr_destroy_cache
+ffffffc00838fd38 t ext4_xattr_inode_read
+ffffffc00838ff34 t ext4_xattr_block_cache_insert
+ffffffc00838ff7c t ext4_xattr_block_csum
+ffffffc0083900f0 t ext4_xattr_inode_update_ref
+ffffffc008390314 t ext4_xattr_block_csum_set
+ffffffc008390394 t ext4_xattr_inode_inc_ref_all
+ffffffc008390584 t ext4_xattr_hurd_list
+ffffffc0083905a4 t ext4_xattr_hurd_get
+ffffffc0083905fc t ext4_xattr_hurd_set
+ffffffc008390658 t ext4_xattr_trusted_list
+ffffffc00839068c t ext4_xattr_trusted_get
+ffffffc0083906cc t ext4_xattr_trusted_set
+ffffffc008390710 t ext4_xattr_user_list
+ffffffc008390730 t ext4_xattr_user_get
+ffffffc008390788 t ext4_xattr_user_set
+ffffffc0083907e4 T ext4_fc_init_inode
+ffffffc008390880 T ext4_fc_start_update
+ffffffc008390a14 T ext4_fc_stop_update
+ffffffc008390aac T ext4_fc_del
+ffffffc008390d1c T ext4_fc_mark_ineligible
+ffffffc008390e34 T __ext4_fc_track_unlink
+ffffffc008390f84 t __track_dentry_update
+ffffffc008391198 T ext4_fc_track_unlink
+ffffffc0083911ec T __ext4_fc_track_link
+ffffffc00839133c T ext4_fc_track_link
+ffffffc008391390 T __ext4_fc_track_create
+ffffffc0083914e0 T ext4_fc_track_create
+ffffffc008391534 T ext4_fc_track_inode
+ffffffc008391708 T ext4_fc_track_range
+ffffffc008391944 T ext4_fc_commit
+ffffffc00839212c t ext4_fc_update_stats
+ffffffc00839226c T ext4_fc_record_regions
+ffffffc00839235c T ext4_fc_replay_check_excluded
+ffffffc0083923e0 T ext4_fc_replay_cleanup
+ffffffc008392430 T ext4_fc_init
+ffffffc008392464 t ext4_fc_replay
+ffffffc008393794 t ext4_fc_cleanup
+ffffffc008393b48 T ext4_fc_info_show
+ffffffc008393ce0 T ext4_fc_destroy_dentry_cache
+ffffffc008393d10 t ext4_fc_add_tlv
+ffffffc008393e74 t ext4_fc_write_inode_data
+ffffffc008394034 t ext4_fc_write_inode
+ffffffc008394284 t ext4_fc_reserve_space
+ffffffc008394490 t ext4_fc_submit_bh
+ffffffc0083945d0 t ext4_end_buffer_io_sync
+ffffffc008394660 t ext4_fc_add_dentry_tlv
+ffffffc008394824 t ext4_fc_set_bitmaps_and_counters
+ffffffc0083949d4 t ext4_fc_replay_link_internal
+ffffffc008394b14 T ext4_orphan_add
+ffffffc00839506c T ext4_orphan_del
+ffffffc00839540c T ext4_orphan_cleanup
+ffffffc008395718 t ext4_process_orphan
+ffffffc008395830 T ext4_release_orphan_info
+ffffffc0083958b8 T ext4_orphan_file_block_trigger
+ffffffc0083959cc T ext4_init_orphan_info
+ffffffc008395da0 T ext4_orphan_file_empty
+ffffffc008395e20 T ext4_get_acl
+ffffffc0083960ec T ext4_set_acl
+ffffffc0083962cc t __ext4_set_acl
+ffffffc00839652c T ext4_init_acl
+ffffffc008396700 T ext4_init_security
+ffffffc008396748 t ext4_initxattrs.llvm.15125374100654870771
+ffffffc0083967c4 t ext4_xattr_security_get
+ffffffc008396804 t ext4_xattr_security_set
+ffffffc008396848 T jbd2_journal_destroy_transaction_cache
+ffffffc008396888 T jbd2_journal_free_transaction
+ffffffc0083968c8 T jbd2__journal_start
+ffffffc008396aec t start_this_handle
+ffffffc00839742c T jbd2_journal_start
+ffffffc00839746c T jbd2_journal_free_reserved
+ffffffc008397564 T jbd2_journal_start_reserved
+ffffffc0083976d4 T jbd2_journal_stop
+ffffffc0083979c4 T jbd2_journal_extend
+ffffffc008397bd8 T jbd2__journal_restart
+ffffffc008397d70 t stop_this_handle
+ffffffc008397fbc T jbd2_journal_restart
+ffffffc008397ff0 T jbd2_journal_wait_updates
+ffffffc0083980e0 T jbd2_journal_lock_updates
+ffffffc008398208 T jbd2_journal_unlock_updates
+ffffffc008398284 T jbd2_journal_get_write_access
+ffffffc008398384 t do_get_write_access
+ffffffc00839888c T jbd2_journal_get_create_access
+ffffffc0083989fc T __jbd2_journal_file_buffer
+ffffffc008398c54 T jbd2_journal_get_undo_access
+ffffffc008398df0 T jbd2_journal_set_triggers
+ffffffc008398e3c T jbd2_buffer_frozen_trigger
+ffffffc008398ea0 T jbd2_buffer_abort_trigger
+ffffffc008398efc T jbd2_journal_dirty_metadata
+ffffffc008399218 T jbd2_journal_forget
+ffffffc0083994fc t __jbd2_journal_temp_unlink_buffer
+ffffffc008399680 T jbd2_journal_unfile_buffer
+ffffffc008399750 T jbd2_journal_try_to_free_buffers
+ffffffc008399854 T jbd2_journal_invalidate_folio
+ffffffc008399cf0 T jbd2_journal_file_buffer
+ffffffc008399d70 T __jbd2_journal_refile_buffer
+ffffffc008399eb8 T jbd2_journal_refile_buffer
+ffffffc008399f38 T jbd2_journal_inode_ranged_write
+ffffffc008399f74 t jbd2_journal_file_inode.llvm.16627421865362172170
+ffffffc00839a0b8 T jbd2_journal_inode_ranged_wait
+ffffffc00839a0f8 T jbd2_journal_begin_ordered_truncate
+ffffffc00839a1b4 t __dispose_buffer
+ffffffc00839a27c T jbd2_journal_submit_inode_data_buffers
+ffffffc00839a300 T jbd2_submit_inode_data
+ffffffc00839a430 T jbd2_wait_inode_data
+ffffffc00839a488 T jbd2_journal_finish_inode_data_buffers
+ffffffc00839a4c4 T jbd2_journal_commit_transaction
+ffffffc00839c094 t journal_end_buffer_io_sync
+ffffffc00839c174 t journal_submit_commit_record
+ffffffc00839c3fc T jbd2_journal_recover
+ffffffc00839c508 t do_one_pass
+ffffffc00839d384 T jbd2_journal_skip_recovery
+ffffffc00839d428 t jread
+ffffffc00839d75c T __jbd2_log_wait_for_space
+ffffffc00839d994 T jbd2_log_do_checkpoint
+ffffffc00839dfa8 T jbd2_cleanup_journal_tail
+ffffffc00839e064 T __jbd2_journal_remove_checkpoint
+ffffffc00839e244 T jbd2_journal_shrink_checkpoint_list
+ffffffc00839e588 T __jbd2_journal_clean_checkpoint_list
+ffffffc00839e708 T jbd2_journal_destroy_checkpoint
+ffffffc00839e770 T __jbd2_journal_drop_transaction
+ffffffc00839e908 T __jbd2_journal_insert_checkpoint
+ffffffc00839e9bc T jbd2_journal_destroy_revoke_record_cache
+ffffffc00839e9fc T jbd2_journal_destroy_revoke_table_cache
+ffffffc00839ea3c T jbd2_journal_init_revoke
+ffffffc00839eb64 t jbd2_journal_init_revoke_table
+ffffffc00839ec48 T jbd2_journal_destroy_revoke
+ffffffc00839ed4c T jbd2_journal_revoke
+ffffffc00839ef8c T jbd2_journal_cancel_revoke
+ffffffc00839f18c T jbd2_clear_buffer_revoked_flags
+ffffffc00839f25c T jbd2_journal_switch_revoke_table
+ffffffc00839f2c0 T jbd2_journal_write_revoke_records
+ffffffc00839f654 T jbd2_journal_set_revoke
+ffffffc00839f7ac T jbd2_journal_test_revoke
+ffffffc00839f878 T jbd2_journal_clear_revoke
+ffffffc00839f944 T __traceiter_jbd2_checkpoint
+ffffffc00839f9d4 T __traceiter_jbd2_start_commit
+ffffffc00839fa64 T __traceiter_jbd2_commit_locking
+ffffffc00839faf4 T __traceiter_jbd2_commit_flushing
+ffffffc00839fb84 T __traceiter_jbd2_commit_logging
+ffffffc00839fc14 T __traceiter_jbd2_drop_transaction
+ffffffc00839fca4 T __traceiter_jbd2_end_commit
+ffffffc00839fd34 T __traceiter_jbd2_submit_inode_data
+ffffffc00839fdb4 T __traceiter_jbd2_handle_start
+ffffffc00839fe64 T __traceiter_jbd2_handle_restart
+ffffffc00839ff14 T __traceiter_jbd2_handle_extend
+ffffffc00839ffd4 T __traceiter_jbd2_handle_stats
+ffffffc0083a00b4 T __traceiter_jbd2_run_stats
+ffffffc0083a014c T __traceiter_jbd2_checkpoint_stats
+ffffffc0083a01e4 T __traceiter_jbd2_update_log_tail
+ffffffc0083a028c T __traceiter_jbd2_write_superblock
+ffffffc0083a031c T __traceiter_jbd2_lock_buffer_stall
+ffffffc0083a03ac T __traceiter_jbd2_shrink_count
+ffffffc0083a0444 T __traceiter_jbd2_shrink_scan_enter
+ffffffc0083a04dc T __traceiter_jbd2_shrink_scan_exit
+ffffffc0083a0584 T __traceiter_jbd2_shrink_checkpoint_list
+ffffffc0083a064c t trace_event_raw_event_jbd2_checkpoint
+ffffffc0083a0710 t perf_trace_jbd2_checkpoint
+ffffffc0083a0830 t trace_event_raw_event_jbd2_commit
+ffffffc0083a0908 t perf_trace_jbd2_commit
+ffffffc0083a0a3c t trace_event_raw_event_jbd2_end_commit
+ffffffc0083a0b1c t perf_trace_jbd2_end_commit
+ffffffc0083a0c58 t trace_event_raw_event_jbd2_submit_inode_data
+ffffffc0083a0d20 t perf_trace_jbd2_submit_inode_data
+ffffffc0083a0e3c t trace_event_raw_event_jbd2_handle_start_class
+ffffffc0083a0f20 t perf_trace_jbd2_handle_start_class
+ffffffc0083a1054 t trace_event_raw_event_jbd2_handle_extend
+ffffffc0083a113c t perf_trace_jbd2_handle_extend
+ffffffc0083a127c t trace_event_raw_event_jbd2_handle_stats
+ffffffc0083a1378 t perf_trace_jbd2_handle_stats
+ffffffc0083a14c8 t trace_event_raw_event_jbd2_run_stats
+ffffffc0083a15dc t perf_trace_jbd2_run_stats
+ffffffc0083a1740 t trace_event_raw_event_jbd2_checkpoint_stats
+ffffffc0083a182c t perf_trace_jbd2_checkpoint_stats
+ffffffc0083a1968 t trace_event_raw_event_jbd2_update_log_tail
+ffffffc0083a1a4c t perf_trace_jbd2_update_log_tail
+ffffffc0083a1b88 t trace_event_raw_event_jbd2_write_superblock
+ffffffc0083a1c4c t perf_trace_jbd2_write_superblock
+ffffffc0083a1d6c t trace_event_raw_event_jbd2_lock_buffer_stall
+ffffffc0083a1e2c t perf_trace_jbd2_lock_buffer_stall
+ffffffc0083a1f48 t trace_event_raw_event_jbd2_journal_shrink
+ffffffc0083a2020 t perf_trace_jbd2_journal_shrink
+ffffffc0083a2148 t trace_event_raw_event_jbd2_shrink_scan_exit
+ffffffc0083a2228 t perf_trace_jbd2_shrink_scan_exit
+ffffffc0083a2360 t trace_event_raw_event_jbd2_shrink_checkpoint_list
+ffffffc0083a2460 t perf_trace_jbd2_shrink_checkpoint_list
+ffffffc0083a25b0 T jbd2_journal_flush
+ffffffc0083a2958 T jbd2_journal_init_dev
+ffffffc0083a29fc T jbd2_journal_init_inode
+ffffffc0083a2b40 T jbd2_journal_check_used_features
+ffffffc0083a2bfc T jbd2_journal_check_available_features
+ffffffc0083a2c4c T jbd2_journal_set_features
+ffffffc0083a2fa4 T jbd2_journal_load
+ffffffc0083a335c T jbd2_journal_destroy
+ffffffc0083a3628 T jbd2_journal_abort
+ffffffc0083a37cc T jbd2_journal_errno
+ffffffc0083a382c T jbd2_journal_ack_err
+ffffffc0083a3888 T jbd2_journal_clear_err
+ffffffc0083a38f4 T jbd2_log_wait_commit
+ffffffc0083a3a5c T jbd2_journal_start_commit
+ffffffc0083a3b20 T jbd2_journal_force_commit_nested
+ffffffc0083a3b54 T jbd2_journal_wipe
+ffffffc0083a3cac T jbd2_journal_blocks_per_page
+ffffffc0083a3cd4 T jbd2_journal_force_commit
+ffffffc0083a3d18 T jbd2_journal_init_jbd_inode
+ffffffc0083a3d40 T jbd2_journal_release_jbd_inode
+ffffffc0083a3e90 T jbd2_journal_write_metadata_buffer
+ffffffc0083a441c T jbd2_alloc
+ffffffc0083a44e8 T jbd2_free
+ffffffc0083a459c T jbd2_log_start_commit
+ffffffc0083a468c t __jbd2_journal_force_commit.llvm.16770406486983324968
+ffffffc0083a4748 T jbd2_trans_will_send_data_barrier
+ffffffc0083a4810 T jbd2_fc_begin_commit
+ffffffc0083a4940 T jbd2_fc_end_commit
+ffffffc0083a49e0 T jbd2_fc_end_commit_fallback
+ffffffc0083a4abc T jbd2_transaction_committed
+ffffffc0083a4b4c T jbd2_complete_transaction
+ffffffc0083a4c08 T jbd2_journal_next_log_block
+ffffffc0083a4d24 T jbd2_journal_bmap
+ffffffc0083a4dfc T jbd2_fc_get_buf
+ffffffc0083a4f20 T jbd2_fc_wait_bufs
+ffffffc0083a5010 T jbd2_fc_release_bufs
+ffffffc0083a508c T jbd2_journal_get_descriptor_buffer
+ffffffc0083a5224 T jbd2_descriptor_block_csum_set
+ffffffc0083a5314 T jbd2_journal_get_log_tail
+ffffffc0083a53e0 T __jbd2_update_log_tail
+ffffffc0083a5590 T jbd2_journal_update_sb_log_tail
+ffffffc0083a56bc T jbd2_update_log_tail
+ffffffc0083a5730 t journal_init_common
+ffffffc0083a59e0 t jbd2_write_superblock
+ffffffc0083a5d60 T jbd2_journal_update_sb_errno
+ffffffc0083a5dfc t jbd2_mark_journal_empty
+ffffffc0083a5f1c t journal_get_superblock
+ffffffc0083a62c4 T jbd2_journal_clear_features
+ffffffc0083a636c T journal_tag_bytes
+ffffffc0083a63c8 T jbd2_journal_add_journal_head
+ffffffc0083a66b0 T jbd2_journal_grab_journal_head
+ffffffc0083a6820 T jbd2_journal_put_journal_head
+ffffffc0083a6bd4 t jbd2_journal_destroy_caches
+ffffffc0083a6ccc t trace_raw_output_jbd2_checkpoint
+ffffffc0083a6d48 t trace_raw_output_jbd2_commit
+ffffffc0083a6dcc t trace_raw_output_jbd2_end_commit
+ffffffc0083a6e50 t trace_raw_output_jbd2_submit_inode_data
+ffffffc0083a6ed0 t trace_raw_output_jbd2_handle_start_class
+ffffffc0083a6f54 t trace_raw_output_jbd2_handle_extend
+ffffffc0083a6fe4 t trace_raw_output_jbd2_handle_stats
+ffffffc0083a7080 t trace_raw_output_jbd2_run_stats
+ffffffc0083a7154 t trace_raw_output_jbd2_checkpoint_stats
+ffffffc0083a71ec t trace_raw_output_jbd2_update_log_tail
+ffffffc0083a7270 t trace_raw_output_jbd2_write_superblock
+ffffffc0083a72ec t trace_raw_output_jbd2_lock_buffer_stall
+ffffffc0083a736c t trace_raw_output_jbd2_journal_shrink
+ffffffc0083a73ec t trace_raw_output_jbd2_shrink_scan_exit
+ffffffc0083a7470 t trace_raw_output_jbd2_shrink_checkpoint_list
+ffffffc0083a7508 t jbd2_journal_shrink_scan
+ffffffc0083a7760 t jbd2_journal_shrink_count
+ffffffc0083a7894 t jbd2_seq_info_open
+ffffffc0083a79bc t jbd2_seq_info_release
+ffffffc0083a7a20 t jbd2_seq_info_start
+ffffffc0083a7a3c t jbd2_seq_info_stop
+ffffffc0083a7a4c t jbd2_seq_info_next
+ffffffc0083a7a6c t jbd2_seq_info_show
+ffffffc0083a7c44 t kjournald2
+ffffffc0083a7ea8 t commit_timeout
+ffffffc0083a7ee0 T ramfs_get_inode
+ffffffc0083a8050 T ramfs_init_fs_context
+ffffffc0083a80c4 t ramfs_create
+ffffffc0083a8148 t ramfs_symlink
+ffffffc0083a8208 t ramfs_mkdir
+ffffffc0083a8290 t ramfs_mknod
+ffffffc0083a8314 t ramfs_tmpfile
+ffffffc0083a8380 t ramfs_free_fc
+ffffffc0083a83b0 t ramfs_parse_param
+ffffffc0083a8478 t ramfs_get_tree
+ffffffc0083a84ac t ramfs_fill_super
+ffffffc0083a8544 t ramfs_show_options
+ffffffc0083a8590 t ramfs_kill_sb
+ffffffc0083a85d4 t ramfs_mmu_get_unmapped_area.llvm.196948493681248513
+ffffffc0083a8624 T exportfs_encode_inode_fh
+ffffffc0083a86e8 T exportfs_encode_fh
+ffffffc0083a8810 T exportfs_decode_fh_raw
+ffffffc0083a8ae8 t reconnect_path
+ffffffc0083a8d70 t find_acceptable_alias
+ffffffc0083a8ea8 t exportfs_get_name
+ffffffc0083a9070 T exportfs_decode_fh
+ffffffc0083a90b4 t filldir_one
+ffffffc0083a9134 T utf8version_is_supported
+ffffffc0083a917c T utf8nlen
+ffffffc0083a92dc t utf8nlookup
+ffffffc0083a94ac T utf8ncursor
+ffffffc0083a9504 T utf8byte
+ffffffc0083a980c T utf8_validate
+ffffffc0083a9848 T utf8_strncmp
+ffffffc0083a994c T utf8_strncasecmp
+ffffffc0083a9a50 T utf8_strncasecmp_folded
+ffffffc0083a9b18 T utf8_casefold
+ffffffc0083a9bf0 T utf8_casefold_hash
+ffffffc0083a9ce4 T utf8_normalize
+ffffffc0083a9dbc T utf8_load
+ffffffc0083a9ec4 T utf8_unload
+ffffffc0083a9ef4 T fuse_set_initialized
+ffffffc0083a9f10 T fuse_len_args
+ffffffc0083a9f8c T fuse_get_unique
+ffffffc0083a9fac t fuse_dev_wake_and_unlock.llvm.16123452833061921394
+ffffffc0083aa01c T fuse_queue_forget
+ffffffc0083aa0d0 T fuse_request_end
+ffffffc0083aa2d4 t flush_bg_queue
+ffffffc0083aa488 t fuse_put_request
+ffffffc0083aa5e0 T fuse_simple_request
+ffffffc0083aac34 t fuse_get_req
+ffffffc0083aaef8 T fuse_simple_background
+ffffffc0083ab108 T fuse_dequeue_forget
+ffffffc0083ab184 T fuse_abort_conn
+ffffffc0083ab618 t __fuse_get_request
+ffffffc0083ab68c t list_move
+ffffffc0083ab700 t list_move
+ffffffc0083ab774 t list_move
+ffffffc0083ab7f4 T fuse_wait_aborted
+ffffffc0083ab8cc T fuse_dev_release
+ffffffc0083abacc t fuse_dev_read.llvm.16123452833061921394
+ffffffc0083abb78 t fuse_dev_write.llvm.16123452833061921394
+ffffffc0083abc18 t fuse_dev_poll.llvm.16123452833061921394
+ffffffc0083abd10 t fuse_dev_ioctl.llvm.16123452833061921394
+ffffffc0083ac0e8 t fuse_dev_open.llvm.16123452833061921394
+ffffffc0083ac100 t fuse_dev_fasync.llvm.16123452833061921394
+ffffffc0083ac14c t fuse_dev_splice_write.llvm.16123452833061921394
+ffffffc0083ac56c t fuse_dev_splice_read.llvm.16123452833061921394
+ffffffc0083ac7ec T fuse_dev_cleanup
+ffffffc0083ac828 t queue_interrupt
+ffffffc0083ac93c t fuse_dev_do_read
+ffffffc0083ace2c t fuse_read_interrupt
+ffffffc0083ad048 t fuse_read_forget
+ffffffc0083ad56c t fuse_copy_one
+ffffffc0083ad648 t fuse_copy_args
+ffffffc0083ad804 t fuse_copy_finish
+ffffffc0083ad8e0 t list_move_tail
+ffffffc0083ad954 t list_move_tail
+ffffffc0083ad9c8 t list_move_tail
+ffffffc0083ada3c t fuse_copy_fill
+ffffffc0083adcc0 t fuse_copy_page
+ffffffc0083ae4e0 t fuse_dev_do_write
+ffffffc0083af724 t copy_out_args
+ffffffc0083af824 t fuse_retrieve_end
+ffffffc0083af86c T fuse_init_dentry_root
+ffffffc0083af87c T fuse_change_entry_timeout
+ffffffc0083af9a4 T entry_attr_timeout
+ffffffc0083afa40 T fuse_invalidate_attr_mask
+ffffffc0083afab4 T fuse_invalidate_attr
+ffffffc0083afb24 T fuse_invalidate_atime
+ffffffc0083afba0 T fuse_invalidate_entry_cache
+ffffffc0083afc44 t fuse_dentry_revalidate.llvm.12319877808028829885
+ffffffc0083affec t fuse_dentry_delete.llvm.12319877808028829885
+ffffffc0083b0010 t fuse_dentry_automount.llvm.12319877808028829885
+ffffffc0083b00a0 t fuse_dentry_canonical_path.llvm.12319877808028829885
+ffffffc0083b01e0 T fuse_valid_type
+ffffffc0083b0224 T fuse_invalid_attr
+ffffffc0083b027c T fuse_lookup_name
+ffffffc0083b0514 T fuse_flush_time_update
+ffffffc0083b05f0 T fuse_update_ctime
+ffffffc0083b06ac T fuse_fillattr
+ffffffc0083b0768 T fuse_update_attributes
+ffffffc0083b07fc T fuse_reverse_inval_entry
+ffffffc0083b0a64 t fuse_dir_changed
+ffffffc0083b0afc T fuse_allow_current_process
+ffffffc0083b0bc8 T fuse_set_nowrite
+ffffffc0083b0cc8 T fuse_release_nowrite
+ffffffc0083b0d30 T fuse_flush_times
+ffffffc0083b0e88 T fuse_do_setattr
+ffffffc0083b1620 T fuse_init_common
+ffffffc0083b163c T fuse_init_dir
+ffffffc0083b1678 T fuse_init_symlink
+ffffffc0083b16ac t fuse_do_getattr
+ffffffc0083b197c t fuse_permission.llvm.12319877808028829885
+ffffffc0083b1cbc t fuse_setattr.llvm.12319877808028829885
+ffffffc0083b1eb8 t fuse_getattr.llvm.12319877808028829885
+ffffffc0083b2060 t fuse_perm_getattr
+ffffffc0083b20b4 t fuse_lookup
+ffffffc0083b22a4 t fuse_create
+ffffffc0083b23d0 t fuse_link
+ffffffc0083b2554 t fuse_unlink
+ffffffc0083b2730 t fuse_symlink
+ffffffc0083b2824 t fuse_mkdir
+ffffffc0083b294c t fuse_rmdir
+ffffffc0083b2b28 t fuse_mknod
+ffffffc0083b2c70 t fuse_rename2
+ffffffc0083b2d54 t fuse_atomic_open
+ffffffc0083b2f98 t fuse_tmpfile
+ffffffc0083b3030 t create_new_entry
+ffffffc0083b3300 t get_security_context
+ffffffc0083b349c t fuse_entry_unlinked
+ffffffc0083b3658 t fuse_rename_common
+ffffffc0083b3ab8 t fuse_create_open
+ffffffc0083b3f28 t fuse_dir_ioctl
+ffffffc0083b3f80 t fuse_dir_compat_ioctl
+ffffffc0083b3fd8 t fuse_dir_open
+ffffffc0083b4008 t fuse_dir_release
+ffffffc0083b4040 t fuse_dir_fsync
+ffffffc0083b4138 t fuse_get_link
+ffffffc0083b4248 t fuse_readlink_page
+ffffffc0083b43d8 t fuse_symlink_read_folio
+ffffffc0083b4458 T fuse_file_alloc
+ffffffc0083b4574 T fuse_file_free
+ffffffc0083b45b8 T fuse_file_open
+ffffffc0083b480c T fuse_do_open
+ffffffc0083b485c T fuse_finish_open
+ffffffc0083b49e0 T fuse_open_common
+ffffffc0083b4b68 T fuse_file_release
+ffffffc0083b4ca4 t fuse_prepare_release
+ffffffc0083b4db8 T fuse_lock_owner_id
+ffffffc0083b4e2c t fuse_file_put
+ffffffc0083b4f30 T fuse_release_common
+ffffffc0083b4f70 T fuse_sync_release
+ffffffc0083b4fdc T fuse_fsync_common
+ffffffc0083b50ac T fuse_read_args_fill
+ffffffc0083b5104 T fuse_write_update_attr
+ffffffc0083b51e0 T fuse_direct_io
+ffffffc0083b5abc T fuse_flush_writepages
+ffffffc0083b5b6c t fuse_send_writepage
+ffffffc0083b5ca4 T fuse_write_inode
+ffffffc0083b5db0 T fuse_file_poll
+ffffffc0083b5ffc T fuse_notify_poll_wakeup
+ffffffc0083b6080 T fuse_init_file_inode
+ffffffc0083b6104 t fuse_release_end
+ffffffc0083b6144 t fuse_async_req_send
+ffffffc0083b6258 t fuse_aio_complete_req
+ffffffc0083b63c0 t fuse_aio_complete
+ffffffc0083b65a0 t fuse_writepage_finish
+ffffffc0083b6678 t fuse_writepage_free
+ffffffc0083b675c t fuse_file_llseek
+ffffffc0083b6980 t fuse_file_read_iter
+ffffffc0083b6b00 t fuse_file_write_iter
+ffffffc0083b6ef8 t fuse_file_mmap
+ffffffc0083b7020 t fuse_open
+ffffffc0083b7050 t fuse_flush
+ffffffc0083b72c4 t fuse_release
+ffffffc0083b7344 t fuse_fsync
+ffffffc0083b7488 t fuse_file_lock
+ffffffc0083b770c t fuse_file_flock
+ffffffc0083b7788 t fuse_file_fallocate
+ffffffc0083b7a68 t fuse_copy_file_range
+ffffffc0083b7e8c t fuse_direct_IO
+ffffffc0083b831c t fuse_perform_write
+ffffffc0083b8b00 t fuse_wait_on_page_writeback
+ffffffc0083b8cb0 t fuse_vma_close
+ffffffc0083b8d9c t fuse_page_mkwrite
+ffffffc0083b8e84 t fuse_setlk
+ffffffc0083b907c t fuse_writepage
+ffffffc0083b91b8 t fuse_read_folio
+ffffffc0083b922c t fuse_writepages
+ffffffc0083b9354 t fuse_readahead
+ffffffc0083b97fc t fuse_write_begin
+ffffffc0083b9a38 t fuse_write_end
+ffffffc0083b9c10 t fuse_bmap
+ffffffc0083b9d68 t fuse_launder_folio
+ffffffc0083b9dcc t fuse_writepage_locked
+ffffffc0083ba248 t fuse_write_file_get
+ffffffc0083ba310 t fuse_writepage_end
+ffffffc0083ba5d4 t fuse_do_readpage
+ffffffc0083ba854 t fuse_writepages_fill
+ffffffc0083baee0 t fuse_writepages_send
+ffffffc0083bb068 t fuse_readpages_end
+ffffffc0083bb2e0 T fuse_alloc_forget
+ffffffc0083bb320 T fuse_change_attributes_common
+ffffffc0083bb4c4 T fuse_get_cache_mask
+ffffffc0083bb51c T fuse_change_attributes
+ffffffc0083bb6dc T fuse_iget_backing
+ffffffc0083bb83c t fuse_inode_backing_eq
+ffffffc0083bb85c t fuse_inode_backing_set
+ffffffc0083bb878 t fuse_init_inode
+ffffffc0083bb954 T fuse_iget
+ffffffc0083bbbd8 t fuse_inode_eq
+ffffffc0083bbbf8 t fuse_inode_set
+ffffffc0083bbc18 T fuse_ilookup
+ffffffc0083bbd00 T fuse_reverse_inval_inode
+ffffffc0083bbe80 T fuse_lock_inode
+ffffffc0083bbee8 T fuse_unlock_inode
+ffffffc0083bbf1c T fuse_conn_init
+ffffffc0083bc0f4 T fuse_conn_put
+ffffffc0083bc1f4 T fuse_conn_get
+ffffffc0083bc27c T fuse_send_init
+ffffffc0083bc3f0 t process_init_reply
+ffffffc0083bcae8 T fuse_free_conn
+ffffffc0083bcb68 t free_fuse_passthrough
+ffffffc0083bcbb0 T fuse_dev_alloc
+ffffffc0083bcc64 T fuse_dev_install
+ffffffc0083bcd3c T fuse_dev_alloc_install
+ffffffc0083bce00 T fuse_dev_free
+ffffffc0083bcf54 T fuse_init_fs_context_submount
+ffffffc0083bcf78 T fuse_fill_super_common
+ffffffc0083bd4a4 T fuse_mount_remove
+ffffffc0083bd538 T fuse_conn_destroy
+ffffffc0083bd674 T fuse_mount_destroy
+ffffffc0083bd77c t fuse_sysfs_cleanup
+ffffffc0083bd7dc t fuse_fs_cleanup
+ffffffc0083bd82c t set_global_limit
+ffffffc0083bd8c8 t fuse_get_tree_submount
+ffffffc0083bdc60 t fuse_alloc_inode
+ffffffc0083bdd18 t fuse_free_inode
+ffffffc0083bdd64 t fuse_evict_inode
+ffffffc0083bde38 t fuse_sync_fs
+ffffffc0083be148 t fuse_statfs
+ffffffc0083be280 t fuse_umount_begin
+ffffffc0083be2ec t fuse_show_options
+ffffffc0083be428 t fuse_encode_fh
+ffffffc0083be498 t fuse_fh_to_dentry
+ffffffc0083be52c t fuse_fh_to_parent
+ffffffc0083be5bc t fuse_get_parent
+ffffffc0083be6e4 t fuse_get_dentry
+ffffffc0083be878 t fuse_bpf_show
+ffffffc0083be8b4 t bpf_prog_type_fuse_show
+ffffffc0083be8f4 t fuse_init_fs_context
+ffffffc0083be998 t fuse_kill_sb_anon
+ffffffc0083bea54 t fuse_kill_sb_blk
+ffffffc0083beb10 t fuse_free_fsc
+ffffffc0083beb64 t fuse_parse_param
+ffffffc0083bee34 t fuse_get_tree
+ffffffc0083befd8 t fuse_reconfigure
+ffffffc0083bf028 t fuse_fill_super
+ffffffc0083bf0d4 t fuse_test_super
+ffffffc0083bf0f8 t fuse_set_no_super
+ffffffc0083bf10c t fuse_inode_init_once
+ffffffc0083bf138 T fuse_ctl_add_conn
+ffffffc0083bf2d4 t fuse_ctl_add_dentry
+ffffffc0083bf3f4 T fuse_ctl_remove_conn
+ffffffc0083bf4c4 T fuse_ctl_cleanup
+ffffffc0083bf4f8 t fuse_conn_waiting_read
+ffffffc0083bf614 t fuse_conn_abort_write
+ffffffc0083bf6c4 t fuse_conn_max_background_read
+ffffffc0083bf7cc t fuse_conn_max_background_write
+ffffffc0083bf934 t fuse_conn_congestion_threshold_read
+ffffffc0083bfa3c t fuse_conn_congestion_threshold_write
+ffffffc0083bfb98 t fuse_ctl_init_fs_context
+ffffffc0083bfbbc t fuse_ctl_kill_sb
+ffffffc0083bfc3c t fuse_ctl_get_tree
+ffffffc0083bfc70 t fuse_ctl_fill_super
+ffffffc0083bfd34 T fuse_setxattr
+ffffffc0083bfed0 T fuse_getxattr
+ffffffc0083c006c T fuse_listxattr
+ffffffc0083c0254 T fuse_removexattr
+ffffffc0083c0398 t fuse_xattr_get
+ffffffc0083c03e4 t fuse_xattr_set
+ffffffc0083c055c t no_xattr_list
+ffffffc0083c0570 t no_xattr_get
+ffffffc0083c0584 t no_xattr_set
+ffffffc0083c0598 T fuse_get_acl
+ffffffc0083c0720 T fuse_set_acl
+ffffffc0083c08bc T fuse_readdir
+ffffffc0083c163c t fuse_emit
+ffffffc0083c18b0 T fuse_do_ioctl
+ffffffc0083c1f28 T fuse_ioctl_common
+ffffffc0083c1fbc T fuse_file_ioctl
+ffffffc0083c2044 T fuse_file_compat_ioctl
+ffffffc0083c20cc T fuse_fileattr_get
+ffffffc0083c2400 T fuse_fileattr_set
+ffffffc0083c26d8 T fuse_copyattr
+ffffffc0083c2710 T fuse_passthrough_read_iter
+ffffffc0083c28f4 t fuse_aio_rw_complete
+ffffffc0083c29b0 T fuse_passthrough_write_iter
+ffffffc0083c2bb4 T fuse_passthrough_mmap
+ffffffc0083c2d20 T fuse_passthrough_open
+ffffffc0083c2f14 T fuse_passthrough_release
+ffffffc0083c2fa4 T fuse_passthrough_setup
+ffffffc0083c3058 T debugfs_lookup
+ffffffc0083c30f0 T debugfs_initialized
+ffffffc0083c3108 T debugfs_create_file
+ffffffc0083c314c t __debugfs_create_file.llvm.13211119261285225920
+ffffffc0083c3310 T debugfs_create_file_unsafe
+ffffffc0083c3358 T debugfs_create_file_size
+ffffffc0083c33bc T debugfs_create_dir
+ffffffc0083c3550 t start_creating
+ffffffc0083c36c0 t start_creating
+ffffffc0083c37a8 t failed_creating
+ffffffc0083c3808 T debugfs_create_automount
+ffffffc0083c39ac T debugfs_create_symlink
+ffffffc0083c3ae0 T debugfs_remove
+ffffffc0083c3b68 t remove_one
+ffffffc0083c3c38 t remove_one
+ffffffc0083c3c74 T debugfs_lookup_and_remove
+ffffffc0083c3d5c T debugfs_rename
+ffffffc0083c3f40 t debugfs_setattr
+ffffffc0083c3fa4 t debug_mount
+ffffffc0083c3ff4 t debug_fill_super
+ffffffc0083c40e8 t debugfs_parse_options
+ffffffc0083c425c t debugfs_free_inode
+ffffffc0083c42b0 t debugfs_remount
+ffffffc0083c4360 t debugfs_show_options
+ffffffc0083c440c t debugfs_release_dentry
+ffffffc0083c4440 t debugfs_automount
+ffffffc0083c4494 t default_read_file.llvm.7145651208290024397
+ffffffc0083c44a8 t default_write_file.llvm.7145651208290024397
+ffffffc0083c44bc T debugfs_real_fops
+ffffffc0083c44ec T debugfs_file_get
+ffffffc0083c46a0 T debugfs_file_put
+ffffffc0083c4734 t open_proxy_open.llvm.7145651208290024397
+ffffffc0083c48c4 t full_proxy_open.llvm.7145651208290024397
+ffffffc0083c4b34 T debugfs_attr_read
+ffffffc0083c4c24 T debugfs_attr_write
+ffffffc0083c4d08 T debugfs_attr_write_signed
+ffffffc0083c4dec T debugfs_create_u8
+ffffffc0083c4e50 T debugfs_create_u16
+ffffffc0083c4eb4 T debugfs_create_u32
+ffffffc0083c4f18 T debugfs_create_u64
+ffffffc0083c4f7c T debugfs_create_ulong
+ffffffc0083c4fe0 T debugfs_create_x8
+ffffffc0083c5044 T debugfs_create_x16
+ffffffc0083c50a8 T debugfs_create_x32
+ffffffc0083c510c T debugfs_create_x64
+ffffffc0083c5170 T debugfs_create_size_t
+ffffffc0083c51d4 T debugfs_create_atomic_t
+ffffffc0083c5238 T debugfs_read_file_bool
+ffffffc0083c5374 T debugfs_write_file_bool
+ffffffc0083c5488 T debugfs_create_bool
+ffffffc0083c54ec T debugfs_read_file_str
+ffffffc0083c56c0 T debugfs_create_str
+ffffffc0083c5724 T debugfs_create_blob
+ffffffc0083c5768 T debugfs_create_u32_array
+ffffffc0083c57a4 T debugfs_print_regs32
+ffffffc0083c5878 t readl
+ffffffc0083c591c t readl
+ffffffc0083c59c0 t readl
+ffffffc0083c5a64 t readl
+ffffffc0083c5b08 t readl
+ffffffc0083c5bac t readl
+ffffffc0083c5c50 t readl
+ffffffc0083c5cf4 t readl
+ffffffc0083c5d98 t readl
+ffffffc0083c5e3c t readl
+ffffffc0083c5ee0 t readl
+ffffffc0083c5f84 t readl
+ffffffc0083c6028 t readl
+ffffffc0083c60cc t readl
+ffffffc0083c6170 t readl
+ffffffc0083c6214 t readl
+ffffffc0083c62b8 t readl
+ffffffc0083c635c t readl
+ffffffc0083c6400 t readl
+ffffffc0083c64a4 t readl
+ffffffc0083c6548 t readl
+ffffffc0083c65ec t readl
+ffffffc0083c6690 t readl
+ffffffc0083c6734 t readl
+ffffffc0083c67d8 t readl
+ffffffc0083c6880 T debugfs_create_regset32
+ffffffc0083c68bc T debugfs_create_devm_seqfile
+ffffffc0083c6944 t full_proxy_release
+ffffffc0083c69f4 t full_proxy_llseek
+ffffffc0083c6b0c t full_proxy_read
+ffffffc0083c6c34 t full_proxy_write
+ffffffc0083c6d5c t full_proxy_poll
+ffffffc0083c6e6c t full_proxy_unlocked_ioctl
+ffffffc0083c6f84 t fops_u8_open
+ffffffc0083c6fc8 t debugfs_u8_get
+ffffffc0083c6fe4 t debugfs_u8_set
+ffffffc0083c7000 t fops_u8_ro_open
+ffffffc0083c7040 t fops_u8_wo_open
+ffffffc0083c7080 t fops_u16_open
+ffffffc0083c70c4 t debugfs_u16_get
+ffffffc0083c70e0 t debugfs_u16_set
+ffffffc0083c70fc t fops_u16_ro_open
+ffffffc0083c713c t fops_u16_wo_open
+ffffffc0083c717c t fops_u32_open
+ffffffc0083c71c0 t debugfs_u32_get
+ffffffc0083c71dc t debugfs_u32_set
+ffffffc0083c71f8 t fops_u32_ro_open
+ffffffc0083c7238 t fops_u32_wo_open
+ffffffc0083c7278 t fops_u64_open
+ffffffc0083c72bc t debugfs_u64_get
+ffffffc0083c72d8 t debugfs_u64_set
+ffffffc0083c72f4 t fops_u64_ro_open
+ffffffc0083c7334 t fops_u64_wo_open
+ffffffc0083c7374 t fops_ulong_open
+ffffffc0083c73b8 t debugfs_ulong_get
+ffffffc0083c73d4 t debugfs_ulong_set
+ffffffc0083c73f0 t fops_ulong_ro_open
+ffffffc0083c7430 t fops_ulong_wo_open
+ffffffc0083c7470 t fops_x8_open
+ffffffc0083c74b4 t fops_x8_ro_open
+ffffffc0083c74f4 t fops_x8_wo_open
+ffffffc0083c7534 t fops_x16_open
+ffffffc0083c7578 t fops_x16_ro_open
+ffffffc0083c75b8 t fops_x16_wo_open
+ffffffc0083c75f8 t fops_x32_open
+ffffffc0083c763c t fops_x32_ro_open
+ffffffc0083c767c t fops_x32_wo_open
+ffffffc0083c76bc t fops_x64_open
+ffffffc0083c7700 t fops_x64_ro_open
+ffffffc0083c7740 t fops_x64_wo_open
+ffffffc0083c7780 t fops_size_t_open
+ffffffc0083c77c4 t debugfs_size_t_get
+ffffffc0083c77e0 t debugfs_size_t_set
+ffffffc0083c77fc t fops_size_t_ro_open
+ffffffc0083c783c t fops_size_t_wo_open
+ffffffc0083c787c t fops_atomic_t_open
+ffffffc0083c78c0 t debugfs_atomic_t_get
+ffffffc0083c78e4 t debugfs_atomic_t_set
+ffffffc0083c7900 t fops_atomic_t_ro_open
+ffffffc0083c7940 t fops_atomic_t_wo_open
+ffffffc0083c7980 t debugfs_write_file_str
+ffffffc0083c7994 t read_file_blob
+ffffffc0083c7a84 t u32_array_read
+ffffffc0083c7aec t u32_array_open
+ffffffc0083c7bd0 t u32_array_release
+ffffffc0083c7c04 t debugfs_regset32_open
+ffffffc0083c7c44 t debugfs_regset32_show
+ffffffc0083c7d44 t debugfs_devm_entry_open
+ffffffc0083c7d80 T tracefs_create_file
+ffffffc0083c7f3c T tracefs_create_dir
+ffffffc0083c7f6c t __create_dir.llvm.11377787178428212053
+ffffffc0083c80f0 T tracefs_remove
+ffffffc0083c8178 T tracefs_initialized
+ffffffc0083c8190 t default_read_file
+ffffffc0083c81a4 t default_write_file
+ffffffc0083c81b8 t tracefs_syscall_mkdir
+ffffffc0083c8278 t tracefs_syscall_rmdir
+ffffffc0083c835c t trace_mount
+ffffffc0083c8394 t trace_fill_super
+ffffffc0083c8454 t tracefs_parse_options
+ffffffc0083c85c4 t tracefs_apply_options
+ffffffc0083c8774 t tracefs_remount
+ffffffc0083c87e0 t tracefs_show_options
+ffffffc0083c888c T __traceiter_erofs_lookup
+ffffffc0083c8924 T __traceiter_erofs_fill_inode
+ffffffc0083c89a4 T __traceiter_erofs_readpage
+ffffffc0083c8a34 T __traceiter_erofs_readpages
+ffffffc0083c8adc T __traceiter_erofs_map_blocks_enter
+ffffffc0083c8b74 T __traceiter_z_erofs_map_blocks_iter_enter
+ffffffc0083c8c0c T __traceiter_erofs_map_blocks_exit
+ffffffc0083c8cb4 T __traceiter_z_erofs_map_blocks_iter_exit
+ffffffc0083c8d5c T __traceiter_erofs_destroy_inode
+ffffffc0083c8ddc t trace_event_raw_event_erofs_lookup
+ffffffc0083c8f00 t perf_trace_erofs_lookup
+ffffffc0083c9094 t trace_event_raw_event_erofs_fill_inode
+ffffffc0083c9194 t perf_trace_erofs_fill_inode
+ffffffc0083c92e8 t trace_event_raw_event_erofs_readpage
+ffffffc0083c9420 t perf_trace_erofs_readpage
+ffffffc0083c95b4 t trace_event_raw_event_erofs_readpages
+ffffffc0083c96a0 t perf_trace_erofs_readpages
+ffffffc0083c97e4 t trace_event_raw_event_erofs__map_blocks_enter
+ffffffc0083c98d4 t perf_trace_erofs__map_blocks_enter
+ffffffc0083c9a14 t trace_event_raw_event_erofs__map_blocks_exit
+ffffffc0083c9b20 t perf_trace_erofs__map_blocks_exit
+ffffffc0083c9c84 t trace_event_raw_event_erofs_destroy_inode
+ffffffc0083c9d4c t perf_trace_erofs_destroy_inode
+ffffffc0083c9e68 T _erofs_err
+ffffffc0083c9f04 T _erofs_info
+ffffffc0083c9f98 t erofs_init_fs_context
+ffffffc0083ca08c t erofs_kill_sb
+ffffffc0083ca154 t erofs_alloc_inode
+ffffffc0083ca1b4 t erofs_free_inode
+ffffffc0083ca220 t erofs_put_super
+ffffffc0083ca27c t erofs_statfs
+ffffffc0083ca2ec t erofs_show_options
+ffffffc0083ca3d0 t trace_raw_output_erofs_lookup
+ffffffc0083ca45c t trace_raw_output_erofs_fill_inode
+ffffffc0083ca4e0 t trace_raw_output_erofs_readpage
+ffffffc0083ca5a4 t trace_raw_output_erofs_readpages
+ffffffc0083ca62c t trace_raw_output_erofs__map_blocks_enter
+ffffffc0083ca704 t trace_raw_output_erofs__map_blocks_exit
+ffffffc0083ca82c t trace_raw_output_erofs_destroy_inode
+ffffffc0083ca8ac t erofs_fc_anon_get_tree
+ffffffc0083ca8e0 t erofs_fc_fill_pseudo_super
+ffffffc0083ca91c t erofs_fc_free
+ffffffc0083ca994 t erofs_fc_parse_param
+ffffffc0083cabb4 t erofs_fc_get_tree
+ffffffc0083cabe8 t erofs_fc_reconfigure
+ffffffc0083cac7c t erofs_release_device_info
+ffffffc0083cacd8 t erofs_fc_fill_super
+ffffffc0083cb228 t erofs_load_compr_cfgs
+ffffffc0083cb48c t erofs_scan_devices
+ffffffc0083cb6b8 t erofs_init_device
+ffffffc0083cb7cc t erofs_fh_to_dentry
+ffffffc0083cb800 t erofs_fh_to_parent
+ffffffc0083cb834 t erofs_get_parent
+ffffffc0083cb8d4 t erofs_nfs_get_inode
+ffffffc0083cb900 t erofs_managed_cache_invalidate_folio
+ffffffc0083cb97c t erofs_managed_cache_release_folio
+ffffffc0083cb9c4 t erofs_inode_init_once
+ffffffc0083cb9f4 T erofs_iget
+ffffffc0083cc17c t erofs_ilookup_test_actor
+ffffffc0083cc19c t erofs_iget_set_actor
+ffffffc0083cc1bc T erofs_getattr
+ffffffc0083cc21c T erofs_unmap_metabuf
+ffffffc0083cc2a0 T erofs_put_metabuf
+ffffffc0083cc394 T erofs_bread
+ffffffc0083cc4f8 T erofs_read_metabuf
+ffffffc0083cc52c T erofs_map_blocks
+ffffffc0083cc92c T erofs_map_dev
+ffffffc0083ccaa0 T erofs_fiemap
+ffffffc0083ccaec t erofs_read_folio.llvm.1978923196817581642
+ffffffc0083ccb24 t erofs_readahead.llvm.1978923196817581642
+ffffffc0083ccb58 t erofs_bmap.llvm.1978923196817581642
+ffffffc0083ccb8c t erofs_file_read_iter.llvm.1978923196817581642
+ffffffc0083ccc90 t erofs_iomap_begin
+ffffffc0083cce00 t erofs_iomap_end
+ffffffc0083cce98 T erofs_namei
+ffffffc0083cd210 t erofs_lookup.llvm.1271913337987531578
+ffffffc0083cd364 t erofs_readdir.llvm.7242246269183128882
+ffffffc0083cd60c T erofs_allocpage
+ffffffc0083cd674 T erofs_release_pages
+ffffffc0083cd730 T erofs_find_workgroup
+ffffffc0083cd8ac T erofs_insert_workgroup
+ffffffc0083cdad8 T erofs_workgroup_put
+ffffffc0083cdbdc T erofs_shrinker_register
+ffffffc0083cdc78 T erofs_shrinker_unregister
+ffffffc0083cdd0c t erofs_shrink_workstation
+ffffffc0083cdf78 T erofs_exit_shrinker
+ffffffc0083cdfac t erofs_shrink_count
+ffffffc0083cdfcc t erofs_shrink_scan
+ffffffc0083ce124 T erofs_get_pcpubuf
+ffffffc0083ce1e4 T erofs_put_pcpubuf
+ffffffc0083ce278 T erofs_pcpubuf_growsize
+ffffffc0083ce4dc T erofs_pcpubuf_init
+ffffffc0083ce56c T erofs_pcpubuf_exit
+ffffffc0083ce6cc T erofs_register_sysfs
+ffffffc0083ce780 T erofs_unregister_sysfs
+ffffffc0083ce7d8 T erofs_exit_sysfs
+ffffffc0083ce818 t erofs_attr_show
+ffffffc0083ce8cc t erofs_attr_store
+ffffffc0083cea20 t erofs_sb_release
+ffffffc0083cea50 T erofs_getxattr
+ffffffc0083ceca0 t init_inode_xattrs
+ffffffc0083cefa0 t erofs_xattr_user_list
+ffffffc0083cefc0 t erofs_xattr_generic_get
+ffffffc0083cf034 t erofs_xattr_trusted_list
+ffffffc0083cf068 T erofs_listxattr
+ffffffc0083cf2a8 T erofs_get_acl
+ffffffc0083cf3bc t xattr_foreach
+ffffffc0083cf70c t xattr_entrymatch
+ffffffc0083cf744 t xattr_namematch
+ffffffc0083cf790 t xattr_checkbuffer
+ffffffc0083cf7c4 t xattr_copyvalue
+ffffffc0083cf804 t xattr_entrylist
+ffffffc0083cf930 t xattr_namelist
+ffffffc0083cf990 t xattr_skipvalue
+ffffffc0083cf9bc T z_erofs_load_lz4_config
+ffffffc0083cfa74 T z_erofs_fixup_insize
+ffffffc0083cfaec T z_erofs_decompress
+ffffffc0083cfb50 t z_erofs_lz4_decompress
+ffffffc0083d0564 t z_erofs_transform_plain
+ffffffc0083d06f8 T z_erofs_fill_inode
+ffffffc0083d077c T z_erofs_map_blocks_iter
+ffffffc0083d0c94 t z_erofs_do_map_blocks
+ffffffc0083d1230 t z_erofs_iomap_begin_report.llvm.15718840394944243250
+ffffffc0083d1340 t z_erofs_load_cluster_from_disk
+ffffffc0083d1814 T z_erofs_exit_zip_subsystem
+ffffffc0083d1848 t z_erofs_destroy_pcluster_pool
+ffffffc0083d18f0 T erofs_try_to_free_all_cached_pages
+ffffffc0083d1aa0 T erofs_try_to_free_cached_page
+ffffffc0083d1cc8 T erofs_workgroup_free_rcu
+ffffffc0083d1d00 t z_erofs_rcu_callback.llvm.15248470668984350618
+ffffffc0083d1de0 t z_erofs_read_folio.llvm.15248470668984350618
+ffffffc0083d2008 t z_erofs_readahead.llvm.15248470668984350618
+ffffffc0083d2368 t z_erofs_pcluster_readmore
+ffffffc0083d2568 t z_erofs_do_read_page
+ffffffc0083d3428 t z_erofs_runqueue
+ffffffc0083d3c78 t z_erofs_decompress_queue
+ffffffc0083d48d8 t z_erofs_decompressqueue_endio
+ffffffc0083d4a54 t z_erofs_decompress_kickoff
+ffffffc0083d4bb4 t z_erofs_decompressqueue_work
+ffffffc0083d4c34 T cap_capable
+ffffffc0083d4cb0 T cap_settime
+ffffffc0083d4ce8 T cap_ptrace_access_check
+ffffffc0083d4d88 T cap_ptrace_traceme
+ffffffc0083d4e18 T cap_capget
+ffffffc0083d4e90 T cap_capset
+ffffffc0083d4f54 T cap_inode_need_killpriv
+ffffffc0083d4f9c T cap_inode_killpriv
+ffffffc0083d4fd8 T cap_inode_getsecurity
+ffffffc0083d51a0 T cap_convert_nscap
+ffffffc0083d52e8 T get_vfs_caps_from_disk
+ffffffc0083d5444 T cap_bprm_creds_from_file
+ffffffc0083d5850 T cap_inode_setxattr
+ffffffc0083d58d4 T cap_inode_removexattr
+ffffffc0083d5988 T cap_task_fix_setuid
+ffffffc0083d5a98 T cap_task_setscheduler
+ffffffc0083d5b20 T cap_task_setioprio
+ffffffc0083d5ba8 T cap_task_setnice
+ffffffc0083d5c30 T cap_task_prctl
+ffffffc0083d5e9c T cap_vm_enough_memory
+ffffffc0083d5f18 T cap_mmap_addr
+ffffffc0083d5fbc T cap_mmap_file
+ffffffc0083d5fd0 T mmap_min_addr_handler
+ffffffc0083d6074 t lsm_append
+ffffffc0083d613c T call_blocking_lsm_notifier
+ffffffc0083d6178 T register_blocking_lsm_notifier
+ffffffc0083d61b0 T unregister_blocking_lsm_notifier
+ffffffc0083d61e8 T lsm_inode_alloc
+ffffffc0083d6250 T security_binder_set_context_mgr
+ffffffc0083d62c4 T security_binder_transaction
+ffffffc0083d6348 T security_binder_transfer_binder
+ffffffc0083d63cc T security_binder_transfer_file
+ffffffc0083d6458 T security_ptrace_access_check
+ffffffc0083d64dc T security_ptrace_traceme
+ffffffc0083d6550 T security_capget
+ffffffc0083d65ec T security_capset
+ffffffc0083d6690 T security_capable
+ffffffc0083d672c T security_quotactl
+ffffffc0083d67c8 T security_quota_on
+ffffffc0083d683c T security_syslog
+ffffffc0083d68b0 T security_settime64
+ffffffc0083d6934 T security_vm_enough_memory_mm
+ffffffc0083d69cc T security_bprm_creds_for_exec
+ffffffc0083d6a40 T security_bprm_creds_from_file
+ffffffc0083d6ac4 T security_bprm_check
+ffffffc0083d6b38 T security_bprm_committing_creds
+ffffffc0083d6ba4 T security_bprm_committed_creds
+ffffffc0083d6c10 T security_fs_context_dup
+ffffffc0083d6c94 T security_fs_context_parse_param
+ffffffc0083d6d3c T security_sb_alloc
+ffffffc0083d6e30 T security_sb_free
+ffffffc0083d6ea8 T security_sb_delete
+ffffffc0083d6f14 T security_free_mnt_opts
+ffffffc0083d6f8c T security_sb_eat_lsm_opts
+ffffffc0083d7010 T security_sb_mnt_opts_compat
+ffffffc0083d7094 T security_sb_remount
+ffffffc0083d7118 T security_sb_kern_mount
+ffffffc0083d718c T security_sb_show_options
+ffffffc0083d7210 T security_sb_statfs
+ffffffc0083d7284 T security_sb_mount
+ffffffc0083d7328 T security_sb_umount
+ffffffc0083d73ac T security_sb_pivotroot
+ffffffc0083d7430 T security_sb_set_mnt_opts
+ffffffc0083d74d8 T security_sb_clone_mnt_opts
+ffffffc0083d7574 T security_move_mount
+ffffffc0083d75f8 T security_path_notify
+ffffffc0083d7684 T security_inode_alloc
+ffffffc0083d778c T security_inode_free
+ffffffc0083d7810 t inode_free_by_rcu
+ffffffc0083d7848 T security_dentry_init_security
+ffffffc0083d7900 T security_dentry_create_files_as
+ffffffc0083d79a4 T security_inode_init_security
+ffffffc0083d7b7c T security_inode_init_security_anon
+ffffffc0083d7c08 T security_old_inode_init_security
+ffffffc0083d7cc8 T security_inode_create
+ffffffc0083d7d5c T security_inode_link
+ffffffc0083d7df4 T security_inode_unlink
+ffffffc0083d7e84 T security_inode_symlink
+ffffffc0083d7f18 T security_inode_mkdir
+ffffffc0083d7fac T security_inode_rmdir
+ffffffc0083d803c T security_inode_mknod
+ffffffc0083d80e0 T security_inode_rename
+ffffffc0083d81ec T security_inode_readlink
+ffffffc0083d826c T security_inode_follow_link
+ffffffc0083d8300 T security_inode_permission
+ffffffc0083d838c T security_inode_setattr
+ffffffc0083d841c T security_inode_getattr
+ffffffc0083d84a0 T security_inode_setxattr
+ffffffc0083d8584 T security_inode_post_setxattr
+ffffffc0083d862c T security_inode_getxattr
+ffffffc0083d86bc T security_inode_listxattr
+ffffffc0083d873c T security_inode_removexattr
+ffffffc0083d87f0 T security_inode_need_killpriv
+ffffffc0083d8864 T security_inode_killpriv
+ffffffc0083d88e8 T security_inode_getsecurity
+ffffffc0083d8998 T security_inode_setsecurity
+ffffffc0083d8a48 T security_inode_listsecurity
+ffffffc0083d8adc T security_inode_getsecid
+ffffffc0083d8b58 T security_inode_copy_up
+ffffffc0083d8bdc T security_inode_copy_up_xattr
+ffffffc0083d8c54 T security_kernfs_init_security
+ffffffc0083d8cd8 T security_file_permission
+ffffffc0083d8d60 t fsnotify_perm
+ffffffc0083d8ec8 T security_file_alloc
+ffffffc0083d8fc8 T security_file_free
+ffffffc0083d904c T security_file_ioctl
+ffffffc0083d90d8 T security_mmap_file
+ffffffc0083d91b4 T security_mmap_addr
+ffffffc0083d9228 T security_file_mprotect
+ffffffc0083d92b4 T security_file_lock
+ffffffc0083d9338 T security_file_fcntl
+ffffffc0083d93c4 T security_file_set_fowner
+ffffffc0083d9430 T security_file_send_sigiotask
+ffffffc0083d94bc T security_file_receive
+ffffffc0083d9530 T security_file_open
+ffffffc0083d95ac T security_task_alloc
+ffffffc0083d96a8 T security_task_free
+ffffffc0083d9720 T security_cred_alloc_blank
+ffffffc0083d9824 T security_cred_free
+ffffffc0083d98a4 T security_prepare_creds
+ffffffc0083d99b8 T security_transfer_creds
+ffffffc0083d9a34 T security_cred_getsecid
+ffffffc0083d9ab4 T security_kernel_act_as
+ffffffc0083d9b38 T security_kernel_create_files_as
+ffffffc0083d9bbc T security_kernel_module_request
+ffffffc0083d9c30 T security_kernel_read_file
+ffffffc0083d9cbc T security_kernel_post_read_file
+ffffffc0083d9d58 T security_kernel_load_data
+ffffffc0083d9ddc T security_kernel_post_load_data
+ffffffc0083d9e78 T security_task_fix_setuid
+ffffffc0083d9f04 T security_task_fix_setgid
+ffffffc0083d9f90 T security_task_fix_setgroups
+ffffffc0083da014 T security_task_setpgid
+ffffffc0083da098 T security_task_getpgid
+ffffffc0083da10c T security_task_getsid
+ffffffc0083da180 T security_current_getsecid_subj
+ffffffc0083da1f0 T security_task_getsecid_obj
+ffffffc0083da270 T security_task_setnice
+ffffffc0083da2f4 T security_task_setioprio
+ffffffc0083da378 T security_task_getioprio
+ffffffc0083da3ec T security_task_prlimit
+ffffffc0083da478 T security_task_setrlimit
+ffffffc0083da504 T security_task_setscheduler
+ffffffc0083da578 T security_task_getscheduler
+ffffffc0083da5ec T security_task_movememory
+ffffffc0083da660 T security_task_kill
+ffffffc0083da6fc T security_task_prctl
+ffffffc0083da7c4 T security_task_to_inode
+ffffffc0083da840 T security_create_user_ns
+ffffffc0083da8b4 T security_ipc_permission
+ffffffc0083da938 T security_ipc_getsecid
+ffffffc0083da9b8 T security_msg_msg_alloc
+ffffffc0083daaac T security_msg_msg_free
+ffffffc0083dab24 T security_msg_queue_alloc
+ffffffc0083dac18 T security_msg_queue_free
+ffffffc0083dac90 T security_msg_queue_associate
+ffffffc0083dad14 T security_msg_queue_msgctl
+ffffffc0083dad98 T security_msg_queue_msgsnd
+ffffffc0083dae24 T security_msg_queue_msgrcv
+ffffffc0083daec8 T security_shm_alloc
+ffffffc0083dafbc T security_shm_free
+ffffffc0083db034 T security_shm_associate
+ffffffc0083db0b8 T security_shm_shmctl
+ffffffc0083db13c T security_shm_shmat
+ffffffc0083db1c8 T security_sem_alloc
+ffffffc0083db2bc T security_sem_free
+ffffffc0083db334 T security_sem_associate
+ffffffc0083db3b8 T security_sem_semctl
+ffffffc0083db43c T security_sem_semop
+ffffffc0083db4d8 T security_d_instantiate
+ffffffc0083db560 T security_getprocattr
+ffffffc0083db608 T security_setprocattr
+ffffffc0083db6b0 T security_netlink_send
+ffffffc0083db734 T security_ismaclabel
+ffffffc0083db7a8 T security_secid_to_secctx
+ffffffc0083db838 T security_secctx_to_secid
+ffffffc0083db8c8 T security_release_secctx
+ffffffc0083db944 T security_inode_invalidate_secctx
+ffffffc0083db9b0 T security_inode_notifysecctx
+ffffffc0083dba3c T security_inode_setsecctx
+ffffffc0083dbac8 T security_inode_getsecctx
+ffffffc0083dbb5c T security_unix_stream_connect
+ffffffc0083dbbe8 T security_unix_may_send
+ffffffc0083dbc6c T security_socket_create
+ffffffc0083dbd08 T security_socket_post_create
+ffffffc0083dbdac T security_socket_socketpair
+ffffffc0083dbe30 T security_socket_bind
+ffffffc0083dbebc T security_socket_connect
+ffffffc0083dbf48 T security_socket_listen
+ffffffc0083dbfcc T security_socket_accept
+ffffffc0083dc050 T security_socket_sendmsg
+ffffffc0083dc0dc T security_socket_recvmsg
+ffffffc0083dc178 T security_socket_getsockname
+ffffffc0083dc1ec T security_socket_getpeername
+ffffffc0083dc260 T security_socket_getsockopt
+ffffffc0083dc2ec T security_socket_setsockopt
+ffffffc0083dc378 T security_socket_shutdown
+ffffffc0083dc3fc T security_sock_rcv_skb
+ffffffc0083dc480 T security_socket_getpeersec_stream
+ffffffc0083dc524 T security_socket_getpeersec_dgram
+ffffffc0083dc5b8 T security_sk_alloc
+ffffffc0083dc644 T security_sk_free
+ffffffc0083dc6b0 T security_sk_clone
+ffffffc0083dc72c T security_sk_classify_flow
+ffffffc0083dc7a8 T security_req_classify_flow
+ffffffc0083dc824 T security_sock_graft
+ffffffc0083dc8a0 T security_inet_conn_request
+ffffffc0083dc92c T security_inet_csk_clone
+ffffffc0083dc9a8 T security_inet_conn_established
+ffffffc0083dca24 T security_secmark_relabel_packet
+ffffffc0083dca98 T security_secmark_refcount_inc
+ffffffc0083dcafc T security_secmark_refcount_dec
+ffffffc0083dcb60 T security_tun_dev_alloc_security
+ffffffc0083dcbd4 T security_tun_dev_free_security
+ffffffc0083dcc40 T security_tun_dev_create
+ffffffc0083dccac T security_tun_dev_attach_queue
+ffffffc0083dcd20 T security_tun_dev_attach
+ffffffc0083dcda4 T security_tun_dev_open
+ffffffc0083dce18 T security_sctp_assoc_request
+ffffffc0083dce9c T security_sctp_bind_connect
+ffffffc0083dcf38 T security_sctp_sk_clone
+ffffffc0083dcfbc T security_sctp_assoc_established
+ffffffc0083dd040 T security_audit_rule_init
+ffffffc0083dd0dc T security_audit_rule_known
+ffffffc0083dd150 T security_audit_rule_free
+ffffffc0083dd1bc T security_audit_rule_match
+ffffffc0083dd258 T security_locked_down
+ffffffc0083dd2cc T security_perf_event_open
+ffffffc0083dd350 T security_perf_event_alloc
+ffffffc0083dd3c4 T security_perf_event_free
+ffffffc0083dd430 T security_perf_event_read
+ffffffc0083dd4a4 T security_perf_event_write
+ffffffc0083dd518 T security_uring_override_creds
+ffffffc0083dd58c T security_uring_sqpoll
+ffffffc0083dd5f8 T security_uring_cmd
+ffffffc0083dd66c T securityfs_create_file
+ffffffc0083dd698 t securityfs_create_dentry.llvm.11329170769859866392
+ffffffc0083dd868 T securityfs_create_dir
+ffffffc0083dd8a8 T securityfs_create_symlink
+ffffffc0083dd944 T securityfs_remove
+ffffffc0083dd9f8 t securityfs_init_fs_context
+ffffffc0083dda1c t securityfs_get_tree
+ffffffc0083dda50 t securityfs_fill_super
+ffffffc0083ddaa8 t securityfs_free_inode
+ffffffc0083ddafc t lsm_read
+ffffffc0083ddb68 T __traceiter_selinux_audited
+ffffffc0083ddc10 t trace_event_raw_event_selinux_audited
+ffffffc0083dddb4 t perf_trace_selinux_audited
+ffffffc0083ddfbc T selinux_avc_init
+ffffffc0083de01c T avc_get_cache_threshold
+ffffffc0083de030 T avc_set_cache_threshold
+ffffffc0083de044 T avc_get_hash_stats
+ffffffc0083de138 T slow_avc_audit
+ffffffc0083de204 t avc_audit_pre_callback
+ffffffc0083de348 t avc_audit_post_callback
+ffffffc0083de674 T avc_ss_reset
+ffffffc0083de73c t avc_flush
+ffffffc0083de85c T avc_has_extended_perms
+ffffffc0083dec40 t avc_lookup
+ffffffc0083dedf0 t avc_compute_av
+ffffffc0083df01c t avc_update_node
+ffffffc0083df3b0 t avc_denied
+ffffffc0083df448 T avc_has_perm_noaudit
+ffffffc0083df590 T avc_has_perm
+ffffffc0083df750 T avc_policy_seqno
+ffffffc0083df768 T avc_disable
+ffffffc0083df7a8 t trace_raw_output_selinux_audited
+ffffffc0083df844 t avc_node_free
+ffffffc0083df908 t avc_xperms_free
+ffffffc0083df9fc t avc_alloc_node
+ffffffc0083dfd24 t avc_xperms_populate
+ffffffc0083dfeb0 t avc_node_kill
+ffffffc0083dffac t avc_xperms_decision_alloc
+ffffffc0083e00a4 t avc_xperms_allow_perm
+ffffffc0083e0124 T selinux_complete_init
+ffffffc0083e015c t delayed_superblock_init.llvm.5798271312446327876
+ffffffc0083e0194 t selinux_set_mnt_opts
+ffffffc0083e077c t may_context_mount_sb_relabel
+ffffffc0083e0804 t may_context_mount_inode_relabel
+ffffffc0083e088c t sb_finish_set_opts
+ffffffc0083e0ba8 t inode_doinit_with_dentry
+ffffffc0083e0f44 t inode_mode_to_security_class
+ffffffc0083e0f80 t inode_doinit_use_xattr
+ffffffc0083e117c t selinux_genfs_get_sid
+ffffffc0083e127c t selinux_netcache_avc_callback
+ffffffc0083e12c0 t selinux_lsm_notifier_avc_callback
+ffffffc0083e1308 t selinux_binder_set_context_mgr
+ffffffc0083e1370 t selinux_binder_transaction
+ffffffc0083e141c t selinux_binder_transfer_binder
+ffffffc0083e147c t selinux_binder_transfer_file
+ffffffc0083e15fc t selinux_ptrace_access_check
+ffffffc0083e16ac t selinux_ptrace_traceme
+ffffffc0083e1758 t selinux_capget
+ffffffc0083e17f4 t selinux_capset
+ffffffc0083e1854 t selinux_capable
+ffffffc0083e19fc t selinux_quotactl
+ffffffc0083e1ad8 t selinux_quota_on
+ffffffc0083e1be8 t selinux_syslog
+ffffffc0083e1c7c t selinux_vm_enough_memory
+ffffffc0083e1d1c t selinux_netlink_send
+ffffffc0083e1f28 t selinux_bprm_creds_for_exec
+ffffffc0083e21e8 t selinux_bprm_committing_creds
+ffffffc0083e2448 t selinux_bprm_committed_creds
+ffffffc0083e2534 t selinux_free_mnt_opts
+ffffffc0083e2560 t selinux_sb_mnt_opts_compat
+ffffffc0083e2700 t selinux_sb_remount
+ffffffc0083e287c t selinux_sb_kern_mount
+ffffffc0083e2928 t selinux_sb_show_options
+ffffffc0083e2ae4 t selinux_sb_statfs
+ffffffc0083e2b94 t selinux_mount
+ffffffc0083e2cf0 t selinux_umount
+ffffffc0083e2d60 t selinux_sb_clone_mnt_opts
+ffffffc0083e3124 t selinux_move_mount
+ffffffc0083e323c t selinux_dentry_init_security
+ffffffc0083e3338 t selinux_dentry_create_files_as
+ffffffc0083e3400 t selinux_inode_free_security
+ffffffc0083e34b4 t selinux_inode_init_security
+ffffffc0083e367c t selinux_inode_init_security_anon
+ffffffc0083e37f0 t selinux_inode_create
+ffffffc0083e3820 t selinux_inode_link
+ffffffc0083e385c t selinux_inode_unlink
+ffffffc0083e388c t selinux_inode_symlink
+ffffffc0083e38bc t selinux_inode_mkdir
+ffffffc0083e38ec t selinux_inode_rmdir
+ffffffc0083e391c t selinux_inode_mknod
+ffffffc0083e3974 t selinux_inode_rename
+ffffffc0083e3c7c t selinux_inode_readlink
+ffffffc0083e3d8c t selinux_inode_follow_link
+ffffffc0083e3eb4 t selinux_inode_permission
+ffffffc0083e40ac t selinux_inode_setattr
+ffffffc0083e42c0 t selinux_inode_getattr
+ffffffc0083e43d4 t selinux_inode_setxattr
+ffffffc0083e4784 t selinux_inode_post_setxattr
+ffffffc0083e4918 t selinux_inode_getxattr
+ffffffc0083e4a28 t selinux_inode_listxattr
+ffffffc0083e4b38 t selinux_inode_removexattr
+ffffffc0083e4c9c t selinux_inode_getsecurity
+ffffffc0083e4e44 t selinux_inode_setsecurity
+ffffffc0083e4f98 t selinux_inode_listsecurity
+ffffffc0083e4fe8 t selinux_inode_getsecid
+ffffffc0083e5018 t selinux_inode_copy_up
+ffffffc0083e50a8 t selinux_inode_copy_up_xattr
+ffffffc0083e50e8 t selinux_path_notify
+ffffffc0083e52c0 t selinux_kernfs_init_security
+ffffffc0083e54b8 t selinux_file_permission
+ffffffc0083e563c t selinux_file_alloc_security
+ffffffc0083e5680 t selinux_file_ioctl
+ffffffc0083e5a40 t selinux_mmap_file
+ffffffc0083e5b58 t selinux_mmap_addr
+ffffffc0083e5bc8 t selinux_file_mprotect
+ffffffc0083e5df0 t selinux_file_lock
+ffffffc0083e5f0c t selinux_file_fcntl
+ffffffc0083e6174 t selinux_file_set_fowner
+ffffffc0083e61b0 t selinux_file_send_sigiotask
+ffffffc0083e627c t selinux_file_receive
+ffffffc0083e62dc t selinux_file_open
+ffffffc0083e648c t selinux_task_alloc
+ffffffc0083e64ec t selinux_cred_prepare
+ffffffc0083e652c t selinux_cred_transfer
+ffffffc0083e6564 t selinux_cred_getsecid
+ffffffc0083e658c t selinux_kernel_act_as
+ffffffc0083e6618 t selinux_kernel_create_files_as
+ffffffc0083e66fc t selinux_kernel_module_request
+ffffffc0083e6798 t selinux_kernel_load_data
+ffffffc0083e6808 t selinux_kernel_read_file
+ffffffc0083e6988 t selinux_task_setpgid
+ffffffc0083e6a24 t selinux_task_getpgid
+ffffffc0083e6ac0 t selinux_task_getsid
+ffffffc0083e6b5c t selinux_current_getsecid_subj
+ffffffc0083e6b8c t selinux_task_getsecid_obj
+ffffffc0083e6bf0 t selinux_task_setnice
+ffffffc0083e6c8c t selinux_task_setioprio
+ffffffc0083e6d28 t selinux_task_getioprio
+ffffffc0083e6dc4 t selinux_task_prlimit
+ffffffc0083e6e38 t selinux_task_setrlimit
+ffffffc0083e6f00 t selinux_task_setscheduler
+ffffffc0083e6f9c t selinux_task_getscheduler
+ffffffc0083e7038 t selinux_task_movememory
+ffffffc0083e70d4 t selinux_task_kill
+ffffffc0083e71d8 t selinux_task_to_inode
+ffffffc0083e72ac t selinux_userns_create
+ffffffc0083e730c t selinux_ipc_permission
+ffffffc0083e73f8 t selinux_ipc_getsecid
+ffffffc0083e7420 t selinux_msg_queue_associate
+ffffffc0083e74d4 t selinux_msg_queue_msgctl
+ffffffc0083e7610 t selinux_msg_queue_msgsnd
+ffffffc0083e7760 t selinux_msg_queue_msgrcv
+ffffffc0083e7868 t selinux_shm_associate
+ffffffc0083e791c t selinux_shm_shmctl
+ffffffc0083e7a64 t selinux_shm_shmat
+ffffffc0083e7b24 t selinux_sem_associate
+ffffffc0083e7bd8 t selinux_sem_semctl
+ffffffc0083e7d38 t selinux_sem_semop
+ffffffc0083e7df8 t selinux_d_instantiate
+ffffffc0083e7e34 t selinux_getprocattr
+ffffffc0083e7ff8 t selinux_setprocattr
+ffffffc0083e83dc t selinux_ismaclabel
+ffffffc0083e8418 t selinux_secctx_to_secid
+ffffffc0083e8464 t selinux_release_secctx
+ffffffc0083e8490 t selinux_inode_invalidate_secctx
+ffffffc0083e84f0 t selinux_inode_notifysecctx
+ffffffc0083e8538 t selinux_inode_setsecctx
+ffffffc0083e8584 t selinux_socket_unix_stream_connect
+ffffffc0083e866c t selinux_socket_unix_may_send
+ffffffc0083e8718 t selinux_socket_create
+ffffffc0083e8800 t selinux_socket_post_create
+ffffffc0083e8944 t selinux_socket_socketpair
+ffffffc0083e8978 t selinux_socket_bind
+ffffffc0083e8c30 t selinux_socket_connect
+ffffffc0083e8c5c t selinux_socket_listen
+ffffffc0083e8d30 t selinux_socket_accept
+ffffffc0083e8e7c t selinux_socket_sendmsg
+ffffffc0083e8f50 t selinux_socket_recvmsg
+ffffffc0083e9024 t selinux_socket_getsockname
+ffffffc0083e90f8 t selinux_socket_getpeername
+ffffffc0083e91cc t selinux_socket_getsockopt
+ffffffc0083e92a0 t selinux_socket_setsockopt
+ffffffc0083e9374 t selinux_socket_shutdown
+ffffffc0083e9448 t selinux_socket_sock_rcv_skb
+ffffffc0083e9744 t selinux_socket_getpeersec_stream
+ffffffc0083e9af8 t selinux_socket_getpeersec_dgram
+ffffffc0083e9bf8 t selinux_sk_free_security
+ffffffc0083e9c30 t selinux_sk_clone_security
+ffffffc0083e9c60 t selinux_sk_getsecid
+ffffffc0083e9c88 t selinux_sock_graft
+ffffffc0083e9ce4 t selinux_sctp_assoc_request
+ffffffc0083e9da0 t selinux_sctp_sk_clone
+ffffffc0083e9dfc t selinux_sctp_bind_connect
+ffffffc0083e9f38 t selinux_sctp_assoc_established
+ffffffc0083e9f90 t selinux_inet_conn_request
+ffffffc0083ea060 t selinux_inet_csk_clone
+ffffffc0083ea084 t selinux_inet_conn_established
+ffffffc0083ea0e0 t selinux_secmark_relabel_packet
+ffffffc0083ea140 t selinux_secmark_refcount_inc
+ffffffc0083ea18c t selinux_secmark_refcount_dec
+ffffffc0083ea1dc t selinux_req_classify_flow
+ffffffc0083ea1f4 t selinux_tun_dev_free_security
+ffffffc0083ea220 t selinux_tun_dev_create
+ffffffc0083ea280 t selinux_tun_dev_attach_queue
+ffffffc0083ea2e0 t selinux_tun_dev_attach
+ffffffc0083ea30c t selinux_tun_dev_open
+ffffffc0083ea3a8 t selinux_perf_event_open
+ffffffc0083ea420 t selinux_perf_event_free
+ffffffc0083ea458 t selinux_perf_event_read
+ffffffc0083ea4bc t selinux_perf_event_write
+ffffffc0083ea520 t selinux_uring_override_creds
+ffffffc0083ea588 t selinux_uring_sqpoll
+ffffffc0083ea5e8 t selinux_uring_cmd
+ffffffc0083ea6a4 t selinux_fs_context_dup
+ffffffc0083ea70c t selinux_fs_context_parse_param
+ffffffc0083ea79c t selinux_sb_eat_lsm_opts
+ffffffc0083eaad8 t selinux_msg_msg_alloc_security
+ffffffc0083eab04 t selinux_msg_queue_alloc_security
+ffffffc0083eabd8 t selinux_shm_alloc_security
+ffffffc0083eacac t selinux_sb_alloc_security
+ffffffc0083ead2c t selinux_inode_alloc_security
+ffffffc0083eada0 t selinux_sem_alloc_security
+ffffffc0083eae74 t selinux_secid_to_secctx
+ffffffc0083eaebc t selinux_inode_getsecctx
+ffffffc0083eaf14 t selinux_sk_alloc_security
+ffffffc0083eafa8 t selinux_tun_dev_alloc_security
+ffffffc0083eb028 t selinux_perf_event_alloc
+ffffffc0083eb0a4 t check_nnp_nosuid
+ffffffc0083eb180 t ptrace_parent_sid
+ffffffc0083eb208 t match_file
+ffffffc0083eb26c t file_has_perm
+ffffffc0083eb38c t show_sid
+ffffffc0083eb4b4 t selinux_determine_inode_label
+ffffffc0083eb5c0 t may_create
+ffffffc0083eb758 t may_link
+ffffffc0083eb924 t audit_inode_permission
+ffffffc0083eb9e4 t has_cap_mac_admin
+ffffffc0083ebb4c t ioctl_has_perm
+ffffffc0083ebcb0 t file_map_prot_check
+ffffffc0083ebdb0 t socket_type_to_security_class
+ffffffc0083ebf64 t selinux_socket_connect_helper
+ffffffc0083ec15c t selinux_parse_skb
+ffffffc0083ec530 t selinux_sctp_process_new_assoc
+ffffffc0083ec680 t selinux_add_opt
+ffffffc0083ec810 t sel_init_fs_context
+ffffffc0083ec834 t sel_kill_sb
+ffffffc0083ec8cc t sel_get_tree
+ffffffc0083ec900 t sel_fill_super
+ffffffc0083ece80 t sel_make_dir
+ffffffc0083ecf4c t sel_write_load
+ffffffc0083ed940 t sel_remove_old_bool_data
+ffffffc0083ed9ac t sel_read_bool
+ffffffc0083edaec t sel_write_bool
+ffffffc0083edc84 t sel_read_class
+ffffffc0083edd44 t sel_read_perm
+ffffffc0083ede0c t sel_read_enforce
+ffffffc0083edecc t sel_write_enforce
+ffffffc0083ee0b4 t selinux_transaction_write
+ffffffc0083ee178 t sel_write_context
+ffffffc0083ee2c8 t sel_write_access
+ffffffc0083ee4ac t sel_write_create
+ffffffc0083ee780 t sel_write_relabel
+ffffffc0083ee99c t sel_write_user
+ffffffc0083eebe4 t sel_write_member
+ffffffc0083eee18 t sel_read_policyvers
+ffffffc0083eeec0 t sel_commit_bools_write
+ffffffc0083ef024 t sel_read_mls
+ffffffc0083ef0e0 t sel_read_checkreqprot
+ffffffc0083ef1a4 t sel_write_checkreqprot
+ffffffc0083ef340 t sel_read_handle_unknown
+ffffffc0083ef418 t sel_read_handle_status
+ffffffc0083ef484 t sel_mmap_handle_status
+ffffffc0083ef560 t sel_open_handle_status
+ffffffc0083ef5c0 t sel_read_policy
+ffffffc0083ef660 t sel_mmap_policy
+ffffffc0083ef734 t sel_open_policy
+ffffffc0083ef8b0 t sel_release_policy
+ffffffc0083ef90c t sel_mmap_policy_fault
+ffffffc0083ef9e0 t sel_write_validatetrans
+ffffffc0083efc50 t sel_read_avc_cache_threshold
+ffffffc0083efd0c t sel_write_avc_cache_threshold
+ffffffc0083efe50 t sel_read_avc_hash_stats
+ffffffc0083eff08 t sel_open_avc_cache_stats
+ffffffc0083eff40 t sel_avc_stats_seq_start
+ffffffc0083effd4 t sel_avc_stats_seq_stop
+ffffffc0083effe4 t sel_avc_stats_seq_next
+ffffffc0083f0080 t sel_avc_stats_seq_show
+ffffffc0083f00e0 t sel_read_sidtab_hash_stats
+ffffffc0083f0198 t sel_read_initcon
+ffffffc0083f0270 t sel_read_policycap
+ffffffc0083f0334 T selnl_notify_setenforce
+ffffffc0083f0394 t selnl_notify.llvm.7362041635421608664
+ffffffc0083f04a0 T selnl_notify_policyload
+ffffffc0083f0504 T selinux_nlmsg_lookup
+ffffffc0083f0678 T selinux_nlmsg_init
+ffffffc0083f07dc T sel_netif_sid
+ffffffc0083f0a3c T sel_netif_flush
+ffffffc0083f0b10 t sel_netif_netdev_notifier_handler
+ffffffc0083f0bf8 T sel_netnode_sid
+ffffffc0083f0f60 T sel_netnode_flush
+ffffffc0083f1050 T sel_netport_sid
+ffffffc0083f1274 T sel_netport_flush
+ffffffc0083f1364 T selinux_kernel_status_page
+ffffffc0083f143c T selinux_status_update_setenforce
+ffffffc0083f14dc T selinux_status_update_policyload
+ffffffc0083f1590 T ebitmap_cmp
+ffffffc0083f1630 T ebitmap_cpy
+ffffffc0083f171c T ebitmap_destroy
+ffffffc0083f1784 T ebitmap_and
+ffffffc0083f18f8 T ebitmap_get_bit
+ffffffc0083f1964 T ebitmap_set_bit
+ffffffc0083f1b44 T ebitmap_contains
+ffffffc0083f1d48 T ebitmap_read
+ffffffc0083f1f90 T ebitmap_write
+ffffffc0083f2288 T ebitmap_hash
+ffffffc0083f24ec T hashtab_init
+ffffffc0083f2580 T __hashtab_insert
+ffffffc0083f2608 T hashtab_destroy
+ffffffc0083f26a0 T hashtab_map
+ffffffc0083f2750 T hashtab_stat
+ffffffc0083f27bc T hashtab_duplicate
+ffffffc0083f298c T symtab_init
+ffffffc0083f29bc T symtab_insert
+ffffffc0083f2ac4 T symtab_search
+ffffffc0083f2b7c T sidtab_init
+ffffffc0083f2c5c T sidtab_set_initial
+ffffffc0083f2e20 t context_to_sid
+ffffffc0083f2f88 T sidtab_hash_stats
+ffffffc0083f308c T sidtab_search_entry
+ffffffc0083f31a0 T sidtab_search_entry_force
+ffffffc0083f32ac T sidtab_context_to_sid
+ffffffc0083f35a4 t sidtab_do_lookup
+ffffffc0083f380c t context_destroy
+ffffffc0083f3870 t context_destroy
+ffffffc0083f38d8 T sidtab_convert
+ffffffc0083f3a40 t sidtab_convert_tree
+ffffffc0083f3b9c t sidtab_convert_hashtable
+ffffffc0083f3d0c T sidtab_cancel_convert
+ffffffc0083f3d5c T sidtab_freeze_begin
+ffffffc0083f3dac T sidtab_freeze_end
+ffffffc0083f3de0 T sidtab_destroy
+ffffffc0083f3ebc t sidtab_destroy_tree
+ffffffc0083f3f88 T sidtab_sid2str_put
+ffffffc0083f4130 T sidtab_sid2str_get
+ffffffc0083f420c T avtab_insert_nonunique
+ffffffc0083f4450 T avtab_search
+ffffffc0083f4590 T avtab_search_node
+ffffffc0083f46cc T avtab_search_node_next
+ffffffc0083f4748 T avtab_destroy
+ffffffc0083f480c T avtab_init
+ffffffc0083f4824 T avtab_alloc
+ffffffc0083f48cc T avtab_alloc_dup
+ffffffc0083f493c T avtab_hash_eval
+ffffffc0083f494c T avtab_read_item
+ffffffc0083f4da8 T avtab_read
+ffffffc0083f4f8c t avtab_insertf
+ffffffc0083f51e8 T avtab_write_item
+ffffffc0083f5338 T avtab_write
+ffffffc0083f53f8 T policydb_filenametr_search
+ffffffc0083f54cc T policydb_rangetr_search
+ffffffc0083f554c T policydb_roletr_search
+ffffffc0083f55cc T policydb_destroy
+ffffffc0083f5df8 t role_tr_destroy
+ffffffc0083f5e3c t filenametr_destroy
+ffffffc0083f5ea4 t range_tr_destroy
+ffffffc0083f5ef8 T policydb_load_isids
+ffffffc0083f5fd8 T policydb_class_isvalid
+ffffffc0083f6004 T policydb_role_isvalid
+ffffffc0083f6030 T policydb_type_isvalid
+ffffffc0083f605c T policydb_context_isvalid
+ffffffc0083f613c T string_to_security_class
+ffffffc0083f6174 T string_to_av_perm
+ffffffc0083f620c T policydb_read
+ffffffc0083f6af8 t hashtab_insert
+ffffffc0083f6c30 t filename_trans_read
+ffffffc0083f72b8 t policydb_index
+ffffffc0083f73c4 t ocontext_read
+ffffffc0083f7844 t genfs_read
+ffffffc0083f7c88 t range_read
+ffffffc0083f7f18 t policydb_bounds_sanity_check
+ffffffc0083f7fa4 T policydb_write
+ffffffc0083f8278 t role_trans_write
+ffffffc0083f8310 t role_allow_write
+ffffffc0083f8390 t filename_trans_write
+ffffffc0083f8430 t ocontext_write
+ffffffc0083f8880 t genfs_write
+ffffffc0083f8a84 t range_write
+ffffffc0083f8b20 t common_destroy
+ffffffc0083f8b88 t cls_destroy
+ffffffc0083f8cd0 t role_destroy
+ffffffc0083f8d28 t type_destroy
+ffffffc0083f8d6c t user_destroy
+ffffffc0083f8dd4 t sens_destroy
+ffffffc0083f8e3c t cat_destroy
+ffffffc0083f8e80 t perm_destroy
+ffffffc0083f8ec4 t common_read
+ffffffc0083f9064 t class_read
+ffffffc0083f9350 t role_read
+ffffffc0083f955c t type_read
+ffffffc0083f9710 t user_read
+ffffffc0083f9908 t sens_read
+ffffffc0083f9abc t cat_read
+ffffffc0083f9be4 t perm_read
+ffffffc0083f9d04 t read_cons_helper
+ffffffc0083f9f88 t mls_read_range_helper
+ffffffc0083fa110 t mls_read_level
+ffffffc0083fa194 t common_index
+ffffffc0083fa1d8 t class_index
+ffffffc0083fa22c t role_index
+ffffffc0083fa28c t type_index
+ffffffc0083fa300 t user_index
+ffffffc0083fa360 t sens_index
+ffffffc0083fa3bc t cat_index
+ffffffc0083fa410 t context_read_and_validate
+ffffffc0083fa520 t user_bounds_sanity_check
+ffffffc0083fa6b0 t role_bounds_sanity_check
+ffffffc0083fa83c t type_bounds_sanity_check
+ffffffc0083fa904 t common_write
+ffffffc0083fa9d4 t class_write
+ffffffc0083fabf4 t role_write
+ffffffc0083fad18 t type_write
+ffffffc0083fae44 t user_write
+ffffffc0083fafa0 t sens_write
+ffffffc0083fb074 t cat_write
+ffffffc0083fb124 t perm_write
+ffffffc0083fb1c0 t write_cons_helper
+ffffffc0083fb328 t mls_write_range_helper
+ffffffc0083fb454 t role_trans_write_one
+ffffffc0083fb4e0 t filename_write_helper_compat
+ffffffc0083fb674 t filename_write_helper
+ffffffc0083fb794 t range_write_helper
+ffffffc0083fb82c T security_mls_enabled
+ffffffc0083fb890 T services_compute_xperms_drivers
+ffffffc0083fb97c T security_validate_transition_user
+ffffffc0083fb9a8 t security_compute_validatetrans.llvm.13385852690632021647
+ffffffc0083fbcd8 T security_validate_transition
+ffffffc0083fbd08 T security_bounded_transition
+ffffffc0083fbf24 T services_compute_xperms_decision
+ffffffc0083fc128 T security_compute_xperms_decision
+ffffffc0083fc4ec T security_compute_av
+ffffffc0083fcd44 T security_compute_av_user
+ffffffc0083fcea4 T security_sidtab_hash_stats
+ffffffc0083fcf2c T security_get_initial_sid_context
+ffffffc0083fcf5c T security_sid_to_context
+ffffffc0083fcf8c t security_sid_to_context_core.llvm.13385852690632021647
+ffffffc0083fd158 T security_sid_to_context_force
+ffffffc0083fd18c T security_sid_to_context_inval
+ffffffc0083fd1c0 T security_context_to_sid
+ffffffc0083fd1f4 t security_context_to_sid_core.llvm.13385852690632021647
+ffffffc0083fd488 T security_context_str_to_sid
+ffffffc0083fd4f8 T security_context_to_sid_default
+ffffffc0083fd528 T security_context_to_sid_force
+ffffffc0083fd560 T security_transition_sid
+ffffffc0083fd5a4 t security_compute_sid.llvm.13385852690632021647
+ffffffc0083fdc5c T security_transition_sid_user
+ffffffc0083fdc98 T security_member_sid
+ffffffc0083fdcd4 T security_change_sid
+ffffffc0083fdd10 T selinux_policy_cancel
+ffffffc0083fdd88 T selinux_policy_commit
+ffffffc0083fe1c0 T security_load_policy
+ffffffc0083fe614 t convert_context
+ffffffc0083fe8d4 T security_port_sid
+ffffffc0083fea30 T security_ib_pkey_sid
+ffffffc0083feb88 T security_ib_endport_sid
+ffffffc0083fece0 T security_netif_sid
+ffffffc0083fee20 T security_node_sid
+ffffffc0083feff8 T security_get_user_sids
+ffffffc0083ff4d8 T security_genfs_sid
+ffffffc0083ff57c t __security_genfs_sid.llvm.13385852690632021647
+ffffffc0083ff70c T selinux_policy_genfs_sid
+ffffffc0083ff738 T security_fs_use
+ffffffc0083ff8cc T security_get_bools
+ffffffc0083ffa0c T security_set_bools
+ffffffc0083ffc0c T security_get_bool_value
+ffffffc0083ffc90 T security_sid_mls_copy
+ffffffc0083fffa0 t context_struct_to_string
+ffffffc00840015c T security_net_peersid_resolve
+ffffffc0084002d8 T security_get_classes
+ffffffc0084003a4 t get_classes_callback
+ffffffc0084003fc T security_get_permissions
+ffffffc00840051c t get_permissions_callback
+ffffffc008400574 T security_get_reject_unknown
+ffffffc0084005dc T security_get_allow_unknown
+ffffffc008400644 T security_policycap_supported
+ffffffc0084006b8 T selinux_audit_rule_free
+ffffffc00840072c T selinux_audit_rule_init
+ffffffc00840093c T selinux_audit_rule_known
+ffffffc00840099c T selinux_audit_rule_match
+ffffffc008400cf0 T security_read_policy
+ffffffc008400db0 T security_read_state_kernel
+ffffffc008400e88 t constraint_expr_eval
+ffffffc0084013c0 t type_attribute_bounds_av
+ffffffc008401540 t security_dump_masked_av
+ffffffc008401758 t dump_masked_av_helper
+ffffffc008401788 t string_to_context_struct
+ffffffc008401924 t aurule_avc_callback
+ffffffc00840195c t context_struct_compute_av.62
+ffffffc008401d44 T evaluate_cond_nodes
+ffffffc008402058 T cond_policydb_init
+ffffffc00840207c T cond_policydb_destroy
+ffffffc00840211c T cond_init_bool_indexes
+ffffffc00840217c T cond_destroy_bool
+ffffffc0084021c0 T cond_index_bool
+ffffffc008402214 T cond_read_bool
+ffffffc00840233c T cond_read_list
+ffffffc0084026b0 T cond_write_bool
+ffffffc00840275c T cond_write_list
+ffffffc00840297c T cond_compute_xperms
+ffffffc008402a08 T cond_compute_av
+ffffffc008402b2c T cond_policydb_destroy_dup
+ffffffc008402b88 t cond_bools_destroy.llvm.3736728056863585474
+ffffffc008402bbc T cond_policydb_dup
+ffffffc008402f08 t cond_insertf
+ffffffc008403038 t cond_bools_copy
+ffffffc00840309c t cond_bools_index
+ffffffc0084030bc T mls_compute_context_len
+ffffffc0084032d0 T mls_sid_to_context
+ffffffc008403550 T mls_level_isvalid
+ffffffc0084035d0 T mls_range_isvalid
+ffffffc0084036d4 T mls_context_isvalid
+ffffffc0084037ac T mls_context_to_sid
+ffffffc008403a5c t mls_context_cpy
+ffffffc008403ae4 T mls_from_string
+ffffffc008403b7c T mls_range_set
+ffffffc008403bdc T mls_setup_user_range
+ffffffc008403dc4 T mls_convert_context
+ffffffc008403f84 T mls_compute_sid
+ffffffc008404238 t mls_context_cpy_low
+ffffffc0084042c8 t mls_context_cpy_high
+ffffffc008404358 t mls_context_glblub
+ffffffc008404408 T context_compute_hash
+ffffffc008404544 T ipv4_skb_to_auditdata
+ffffffc0084045f8 T ipv6_skb_to_auditdata
+ffffffc0084047bc T common_lsm_audit
+ffffffc008404f68 T integrity_iint_find
+ffffffc008405000 T integrity_inode_get
+ffffffc008405168 T integrity_inode_free
+ffffffc00840523c T integrity_kernel_read
+ffffffc0084052a8 T integrity_audit_msg
+ffffffc0084052d8 T integrity_audit_message
+ffffffc008405470 T crypto_mod_get
+ffffffc008405514 T crypto_mod_put
+ffffffc0084055bc T crypto_larval_alloc
+ffffffc008405674 t crypto_larval_destroy
+ffffffc00840574c T crypto_larval_kill
+ffffffc00840584c T crypto_wait_for_test
+ffffffc0084058f0 T crypto_probing_notify
+ffffffc008405964 T crypto_alg_mod_lookup
+ffffffc008405c64 t crypto_larval_wait
+ffffffc008405df0 T crypto_shoot_alg
+ffffffc008405e48 T __crypto_alloc_tfm
+ffffffc008405ff8 T crypto_alloc_base
+ffffffc008406150 T crypto_create_tfm_node
+ffffffc0084062c8 T crypto_find_alg
+ffffffc008406318 T crypto_alloc_tfm_node
+ffffffc00840649c T crypto_destroy_tfm
+ffffffc0084065dc T crypto_has_alg
+ffffffc00840669c T crypto_req_done
+ffffffc0084066d4 t crypto_alg_lookup
+ffffffc0084068bc t __crypto_alg_lookup
+ffffffc008406ac4 T crypto_cipher_setkey
+ffffffc008406c00 T crypto_cipher_encrypt_one
+ffffffc008406d18 T crypto_cipher_decrypt_one
+ffffffc008406e30 T crypto_comp_compress
+ffffffc008406e7c T crypto_comp_decompress
+ffffffc008406ec8 T crypto_remove_spawns
+ffffffc008407188 t crypto_remove_instance
+ffffffc008407278 T crypto_alg_tested
+ffffffc0084074d8 t crypto_alg_finish_registration
+ffffffc008407624 T crypto_remove_final
+ffffffc00840772c T crypto_register_alg
+ffffffc00840794c t __crypto_register_alg
+ffffffc008407a84 T crypto_unregister_alg
+ffffffc008407c88 T crypto_register_algs
+ffffffc008407d30 T crypto_unregister_algs
+ffffffc008407d84 T crypto_register_template
+ffffffc008407e30 T crypto_register_templates
+ffffffc008407f50 T crypto_unregister_template
+ffffffc0084081a4 T crypto_unregister_templates
+ffffffc0084081fc T crypto_lookup_template
+ffffffc008408324 T crypto_register_instance
+ffffffc0084085c0 T crypto_unregister_instance
+ffffffc008408730 T crypto_grab_spawn
+ffffffc008408858 T crypto_drop_spawn
+ffffffc0084088f0 T crypto_spawn_tfm
+ffffffc008408984 t crypto_spawn_alg
+ffffffc008408ae4 T crypto_spawn_tfm2
+ffffffc008408b58 T crypto_register_notifier
+ffffffc008408b90 T crypto_unregister_notifier
+ffffffc008408bc8 T crypto_get_attr_type
+ffffffc008408c18 T crypto_check_attr_type
+ffffffc008408ca0 T crypto_attr_alg_name
+ffffffc008408cf4 T crypto_inst_setname
+ffffffc008408d88 T crypto_init_queue
+ffffffc008408da8 T crypto_enqueue_request
+ffffffc008408e50 T crypto_enqueue_request_head
+ffffffc008408ec0 T crypto_dequeue_request
+ffffffc008408f50 T crypto_inc
+ffffffc008408fc4 T crypto_alg_extsize
+ffffffc008408fe0 T crypto_type_has_alg
+ffffffc008409024 t crypto_destroy_instance
+ffffffc008409070 T scatterwalk_copychunks
+ffffffc00840921c T scatterwalk_map_and_copy
+ffffffc008409388 T scatterwalk_ffwd
+ffffffc00840945c t c_start.llvm.5228486089277653777
+ffffffc0084094ac t c_stop.llvm.5228486089277653777
+ffffffc0084094e0 t c_next.llvm.5228486089277653777
+ffffffc008409518 t c_show.llvm.5228486089277653777
+ffffffc008409714 T crypto_aead_setkey
+ffffffc008409848 T crypto_aead_setauthsize
+ffffffc0084098d8 T crypto_aead_encrypt
+ffffffc008409938 T crypto_aead_decrypt
+ffffffc0084099b0 T crypto_grab_aead
+ffffffc0084099e8 T crypto_alloc_aead
+ffffffc008409a28 T crypto_register_aead
+ffffffc008409aac T crypto_unregister_aead
+ffffffc008409adc T crypto_register_aeads
+ffffffc008409be8 T crypto_unregister_aeads
+ffffffc008409c40 T aead_register_instance
+ffffffc008409cd8 t crypto_aead_init_tfm.llvm.5727768952746863567
+ffffffc008409d5c t crypto_aead_show.llvm.5727768952746863567
+ffffffc008409e18 t crypto_aead_report.llvm.5727768952746863567
+ffffffc008409f00 t crypto_aead_free_instance.llvm.5727768952746863567
+ffffffc008409f48 t crypto_aead_exit_tfm
+ffffffc008409f9c T aead_geniv_alloc
+ffffffc00840a158 t aead_geniv_setkey
+ffffffc00840a188 t aead_geniv_setauthsize
+ffffffc00840a1b8 t aead_geniv_free
+ffffffc00840a1fc T aead_init_geniv
+ffffffc00840a2e0 T aead_exit_geniv
+ffffffc00840a318 T skcipher_walk_done
+ffffffc00840a500 t skcipher_map_dst
+ffffffc00840a558 t skcipher_done_slow
+ffffffc00840a5cc t skcipher_walk_next
+ffffffc00840a860 T skcipher_walk_complete
+ffffffc00840a9a8 T skcipher_walk_virt
+ffffffc00840aa04 t skcipher_walk_skcipher
+ffffffc00840abbc T skcipher_walk_async
+ffffffc00840ac00 T skcipher_walk_aead_encrypt
+ffffffc00840ac30 t skcipher_walk_aead_common
+ffffffc00840ae90 T skcipher_walk_aead_decrypt
+ffffffc00840aed0 T crypto_skcipher_setkey
+ffffffc00840b020 T crypto_skcipher_encrypt
+ffffffc00840b080 T crypto_skcipher_decrypt
+ffffffc00840b0e0 T crypto_grab_skcipher
+ffffffc00840b118 T crypto_alloc_skcipher
+ffffffc00840b158 T crypto_alloc_sync_skcipher
+ffffffc00840b1c4 T crypto_has_skcipher
+ffffffc00840b200 T crypto_register_skcipher
+ffffffc00840b290 T crypto_unregister_skcipher
+ffffffc00840b2c0 T crypto_register_skciphers
+ffffffc00840b3f0 T crypto_unregister_skciphers
+ffffffc00840b448 T skcipher_register_instance
+ffffffc00840b4ec T skcipher_alloc_instance_simple
+ffffffc00840b674 t skcipher_free_instance_simple
+ffffffc00840b6b8 t skcipher_setkey_simple
+ffffffc00840b708 t skcipher_init_tfm_simple
+ffffffc00840b760 t skcipher_exit_tfm_simple
+ffffffc00840b790 t skcipher_next_slow
+ffffffc00840b8e8 t skcipher_next_copy
+ffffffc00840ba2c t crypto_skcipher_init_tfm.llvm.12067929834754201081
+ffffffc00840bab0 t crypto_skcipher_show.llvm.12067929834754201081
+ffffffc00840bb98 t crypto_skcipher_report.llvm.12067929834754201081
+ffffffc00840bc84 t crypto_skcipher_free_instance.llvm.12067929834754201081
+ffffffc00840bccc t crypto_skcipher_exit_tfm
+ffffffc00840bd20 t seqiv_aead_create
+ffffffc00840bdec t seqiv_aead_encrypt
+ffffffc00840bfd0 t seqiv_aead_decrypt
+ffffffc00840c078 t seqiv_aead_encrypt_complete
+ffffffc00840c108 t seqiv_aead_encrypt_complete2
+ffffffc00840c170 t echainiv_aead_create
+ffffffc00840c244 t echainiv_encrypt
+ffffffc00840c3cc t echainiv_decrypt
+ffffffc00840c46c T crypto_hash_walk_done
+ffffffc00840c6a0 T crypto_hash_walk_first
+ffffffc00840c7ac T crypto_ahash_setkey
+ffffffc00840c8ec T crypto_ahash_final
+ffffffc00840c91c t crypto_ahash_op
+ffffffc00840ca80 T crypto_ahash_finup
+ffffffc00840cab4 T crypto_ahash_digest
+ffffffc00840caf8 T crypto_grab_ahash
+ffffffc00840cb30 T crypto_alloc_ahash
+ffffffc00840cb70 T crypto_has_ahash
+ffffffc00840cbac T crypto_register_ahash
+ffffffc00840cc1c T crypto_unregister_ahash
+ffffffc00840cc4c T crypto_register_ahashes
+ffffffc00840cd40 T crypto_unregister_ahashes
+ffffffc00840cd98 T ahash_register_instance
+ffffffc00840ce1c T crypto_hash_alg_has_setkey
+ffffffc00840ce54 t ahash_nosetkey
+ffffffc00840ce68 t ahash_op_unaligned_done
+ffffffc00840cf6c t crypto_ahash_extsize.llvm.10494031705451376694
+ffffffc00840cfb4 t crypto_ahash_init_tfm.llvm.10494031705451376694
+ffffffc00840d0bc t crypto_ahash_show.llvm.10494031705451376694
+ffffffc00840d154 t crypto_ahash_report.llvm.10494031705451376694
+ffffffc00840d200 t crypto_ahash_free_instance.llvm.10494031705451376694
+ffffffc00840d248 t ahash_def_finup
+ffffffc00840d3cc t crypto_ahash_exit_tfm
+ffffffc00840d420 t ahash_def_finup_done1
+ffffffc00840d58c t ahash_def_finup_done2
+ffffffc00840d640 T crypto_shash_alg_has_setkey
+ffffffc00840d664 t shash_no_setkey.llvm.16812449986304017470
+ffffffc00840d678 T crypto_shash_setkey
+ffffffc00840d7c0 T crypto_shash_update
+ffffffc00840d94c T crypto_shash_final
+ffffffc00840da94 T crypto_shash_finup
+ffffffc00840dafc t shash_finup_unaligned
+ffffffc00840dd78 T crypto_shash_digest
+ffffffc00840de7c t shash_digest_unaligned
+ffffffc00840df60 T crypto_shash_tfm_digest
+ffffffc00840e0cc T shash_ahash_update
+ffffffc00840e298 T shash_ahash_finup
+ffffffc00840e5b8 T shash_ahash_digest
+ffffffc00840e7d4 T crypto_init_shash_ops_async
+ffffffc00840e8f4 t crypto_exit_shash_ops_async
+ffffffc00840e928 t shash_async_init
+ffffffc00840e990 t shash_async_update
+ffffffc00840e9c0 t shash_async_final
+ffffffc00840eb08 t shash_async_finup
+ffffffc00840eb44 t shash_async_digest
+ffffffc00840eb80 t shash_async_setkey
+ffffffc00840ecc8 t shash_async_export
+ffffffc00840ed18 t shash_async_import
+ffffffc00840ed80 T crypto_grab_shash
+ffffffc00840edb8 T crypto_alloc_shash
+ffffffc00840edf8 T crypto_has_shash
+ffffffc00840ee34 T crypto_register_shash
+ffffffc00840ef30 T crypto_unregister_shash
+ffffffc00840ef60 T crypto_register_shashes
+ffffffc00840f0f8 T crypto_unregister_shashes
+ffffffc00840f150 T shash_register_instance
+ffffffc00840f260 T shash_free_singlespawn_instance
+ffffffc00840f2a4 t crypto_shash_init_tfm.llvm.16812449986304017470
+ffffffc00840f390 t crypto_shash_show.llvm.16812449986304017470
+ffffffc00840f3fc t crypto_shash_report.llvm.16812449986304017470
+ffffffc00840f4a8 t crypto_shash_free_instance.llvm.16812449986304017470
+ffffffc00840f4f0 t crypto_shash_exit_tfm
+ffffffc00840f544 t shash_default_export
+ffffffc00840f588 t shash_default_import
+ffffffc00840f5c0 T crypto_grab_akcipher
+ffffffc00840f5f8 T crypto_alloc_akcipher
+ffffffc00840f638 T crypto_register_akcipher
+ffffffc00840f710 t akcipher_default_op
+ffffffc00840f724 t akcipher_default_set_key
+ffffffc00840f738 T crypto_unregister_akcipher
+ffffffc00840f768 T akcipher_register_instance
+ffffffc00840f7cc t crypto_akcipher_init_tfm
+ffffffc00840f838 t crypto_akcipher_show
+ffffffc00840f86c t crypto_akcipher_report
+ffffffc00840f904 t crypto_akcipher_free_instance
+ffffffc00840f94c t crypto_akcipher_exit_tfm
+ffffffc00840f998 T crypto_alloc_kpp
+ffffffc00840f9d8 T crypto_grab_kpp
+ffffffc00840fa10 T crypto_has_kpp
+ffffffc00840fa4c T crypto_register_kpp
+ffffffc00840fa9c T crypto_unregister_kpp
+ffffffc00840facc T kpp_register_instance
+ffffffc00840fb30 t crypto_kpp_init_tfm
+ffffffc00840fb9c t crypto_kpp_show
+ffffffc00840fbd0 t crypto_kpp_report
+ffffffc00840fc68 t crypto_kpp_free_instance
+ffffffc00840fcb0 t crypto_kpp_exit_tfm
+ffffffc00840fcfc T crypto_alloc_acomp
+ffffffc00840fd3c T crypto_alloc_acomp_node
+ffffffc00840fd7c T acomp_request_alloc
+ffffffc00840fde8 T acomp_request_free
+ffffffc00840fe78 T crypto_register_acomp
+ffffffc00840fec8 T crypto_unregister_acomp
+ffffffc00840fef8 T crypto_register_acomps
+ffffffc00840ffc8 T crypto_unregister_acomps
+ffffffc008410020 t crypto_acomp_extsize
+ffffffc008410070 t crypto_acomp_init_tfm
+ffffffc00841011c t crypto_acomp_show
+ffffffc008410150 t crypto_acomp_report
+ffffffc0084101e8 t crypto_acomp_exit_tfm
+ffffffc00841023c T crypto_init_scomp_ops_async
+ffffffc0084102fc t crypto_exit_scomp_ops_async
+ffffffc0084103e4 t scomp_acomp_compress
+ffffffc008410414 t scomp_acomp_decompress
+ffffffc008410444 T crypto_acomp_scomp_alloc_ctx
+ffffffc0084104c4 T crypto_acomp_scomp_free_ctx
+ffffffc008410520 T crypto_register_scomp
+ffffffc008410570 T crypto_unregister_scomp
+ffffffc0084105a0 T crypto_register_scomps
+ffffffc008410670 T crypto_unregister_scomps
+ffffffc0084106c4 t scomp_acomp_comp_decomp
+ffffffc00841083c t crypto_scomp_init_tfm
+ffffffc008410994 t crypto_scomp_show
+ffffffc0084109c8 t crypto_scomp_report
+ffffffc008410a60 t cryptomgr_notify
+ffffffc008410d4c t cryptomgr_probe
+ffffffc008410dec t crypto_alg_put
+ffffffc008410e94 T alg_test
+ffffffc008410ea8 t hmac_create
+ffffffc0084110d0 t hmac_init
+ffffffc008411168 t hmac_update
+ffffffc008411198 t hmac_final
+ffffffc00841126c t hmac_finup
+ffffffc008411340 t hmac_export
+ffffffc008411390 t hmac_import
+ffffffc008411428 t hmac_setkey
+ffffffc008411698 t hmac_init_tfm
+ffffffc008411728 t hmac_exit_tfm
+ffffffc00841178c t xcbc_create
+ffffffc008411968 t xcbc_init_tfm
+ffffffc0084119c0 t xcbc_exit_tfm
+ffffffc0084119f4 t crypto_xcbc_digest_init
+ffffffc008411a50 t crypto_xcbc_digest_update
+ffffffc008411b90 t crypto_xcbc_digest_final
+ffffffc008411c8c t crypto_xcbc_digest_setkey
+ffffffc008411d60 T crypto_get_default_null_skcipher
+ffffffc008411dec T crypto_put_default_null_skcipher
+ffffffc008411e5c t null_setkey
+ffffffc008411e70 t null_crypt
+ffffffc008411e88 t null_compress
+ffffffc008411ee8 t null_init
+ffffffc008411efc t null_update
+ffffffc008411f10 t null_final
+ffffffc008411f24 t null_digest
+ffffffc008411f38 t null_hash_setkey
+ffffffc008411f4c t null_skcipher_setkey
+ffffffc008411f60 t null_skcipher_crypt
+ffffffc00841201c t md5_init
+ffffffc00841205c t md5_update
+ffffffc00841215c t md5_final
+ffffffc00841223c t md5_export
+ffffffc008412284 t md5_import
+ffffffc0084122c8 t md5_transform
+ffffffc008412cac T crypto_sha1_update
+ffffffc008412e38 T crypto_sha1_finup
+ffffffc008412fd4 t sha1_final
+ffffffc00841316c t sha1_base_init
+ffffffc0084131b8 T crypto_sha256_update
+ffffffc0084131ec T crypto_sha256_finup
+ffffffc008413264 t crypto_sha256_final
+ffffffc0084132b0 t sha256_base_init
+ffffffc008413314 t sha224_base_init
+ffffffc008413378 T crypto_sha512_update
+ffffffc008413484 t sha512_generic_block_fn
+ffffffc008413a34 T crypto_sha512_finup
+ffffffc008413b58 t sha512_final
+ffffffc008413d10 t sha512_base_init
+ffffffc008413dbc t sha384_base_init
+ffffffc008413e68 T blake2b_compress_generic
+ffffffc0084156f0 t crypto_blake2b_init
+ffffffc008415830 t crypto_blake2b_update_generic
+ffffffc008415940 t crypto_blake2b_final_generic
+ffffffc0084159dc t crypto_blake2b_setkey
+ffffffc008415a3c T gf128mul_x8_ble
+ffffffc008415a70 T gf128mul_lle
+ffffffc008415c6c T gf128mul_bbe
+ffffffc008415e54 T gf128mul_init_64k_bbe
+ffffffc008416410 T gf128mul_free_64k
+ffffffc0084164cc T gf128mul_64k_bbe
+ffffffc008416640 T gf128mul_init_4k_lle
+ffffffc0084168c8 T gf128mul_init_4k_bbe
+ffffffc008416b3c T gf128mul_4k_lle
+ffffffc008416bac T gf128mul_4k_bbe
+ffffffc008416c1c t crypto_cbc_create
+ffffffc008416d00 t crypto_cbc_encrypt
+ffffffc008416ec8 t crypto_cbc_decrypt
+ffffffc00841713c t crypto_ctr_create
+ffffffc008417200 t crypto_rfc3686_create
+ffffffc008417404 t crypto_ctr_crypt
+ffffffc008417668 t crypto_rfc3686_setkey
+ffffffc0084176d0 t crypto_rfc3686_crypt
+ffffffc008417764 t crypto_rfc3686_init_tfm
+ffffffc0084177d0 t crypto_rfc3686_exit_tfm
+ffffffc008417804 t crypto_rfc3686_free
+ffffffc008417848 t crypto_xctr_create
+ffffffc008417904 t crypto_xctr_crypt
+ffffffc008417bd8 t hctr2_create_base
+ffffffc008417c60 t hctr2_create
+ffffffc008417d38 t hctr2_create_common
+ffffffc008418068 t hctr2_setkey
+ffffffc008418314 t hctr2_encrypt
+ffffffc008418344 t hctr2_decrypt
+ffffffc008418374 t hctr2_init_tfm
+ffffffc008418464 t hctr2_exit_tfm
+ffffffc0084184bc t hctr2_free_instance
+ffffffc00841850c t hctr2_crypt
+ffffffc0084187e0 t hctr2_hash_message
+ffffffc008418938 t hctr2_xctr_done
+ffffffc008418a64 t adiantum_create
+ffffffc008418d40 t adiantum_supported_algorithms
+ffffffc008418df0 t adiantum_setkey
+ffffffc008418fcc t adiantum_encrypt
+ffffffc008418ffc t adiantum_decrypt
+ffffffc00841902c t adiantum_init_tfm
+ffffffc00841910c t adiantum_exit_tfm
+ffffffc008419164 t adiantum_free_instance
+ffffffc0084191b4 t adiantum_crypt
+ffffffc00841936c t adiantum_hash_message
+ffffffc0084194d4 t adiantum_streamcipher_done
+ffffffc008419538 t adiantum_finish
+ffffffc008419628 T crypto_nhpoly1305_setkey
+ffffffc00841969c T crypto_nhpoly1305_init
+ffffffc0084196c0 T crypto_nhpoly1305_update_helper
+ffffffc0084197d8 t nhpoly1305_units
+ffffffc00841996c T crypto_nhpoly1305_update
+ffffffc008419a84 t nh_generic
+ffffffc008419b84 T crypto_nhpoly1305_final_helper
+ffffffc008419c58 T crypto_nhpoly1305_final
+ffffffc008419d2c t crypto_gcm_base_create
+ffffffc008419db4 t crypto_gcm_create
+ffffffc008419e90 t crypto_rfc4106_create
+ffffffc00841a090 t crypto_rfc4543_create
+ffffffc00841a28c t crypto_gcm_create_common
+ffffffc00841a51c t crypto_gcm_init_tfm
+ffffffc00841a5d4 t crypto_gcm_exit_tfm
+ffffffc00841a620 t crypto_gcm_setkey
+ffffffc00841a78c t crypto_gcm_setauthsize
+ffffffc00841a7c0 t crypto_gcm_encrypt
+ffffffc00841a944 t crypto_gcm_decrypt
+ffffffc00841aa40 t crypto_gcm_free
+ffffffc00841aa88 t crypto_gcm_init_common
+ffffffc00841abc8 t gcm_encrypt_done
+ffffffc00841acf4 t gcm_enc_copy_hash
+ffffffc00841ad6c t gcm_hash_init_done
+ffffffc00841add8 t gcm_hash_init_continue
+ffffffc00841af04 t gcm_hash_assoc_done
+ffffffc00841aff4 t gcm_hash_assoc_remain_continue
+ffffffc00841b14c t gcm_hash_assoc_remain_done
+ffffffc00841b1bc t gcm_hash_crypt_done
+ffffffc00841b228 t gcm_hash_crypt_continue
+ffffffc00841b3d8 t gcm_hash_crypt_remain_done
+ffffffc00841b510 t gcm_hash_len_done
+ffffffc00841b5b4 t gcm_dec_hash_continue
+ffffffc00841b6d0 t gcm_decrypt_done
+ffffffc00841b7b0 t crypto_rfc4106_init_tfm
+ffffffc00841b824 t crypto_rfc4106_exit_tfm
+ffffffc00841b858 t crypto_rfc4106_setkey
+ffffffc00841b8c0 t crypto_rfc4106_setauthsize
+ffffffc00841b918 t crypto_rfc4106_encrypt
+ffffffc00841b960 t crypto_rfc4106_decrypt
+ffffffc00841b9a8 t crypto_rfc4106_free
+ffffffc00841b9e8 t crypto_rfc4106_crypt
+ffffffc00841bb9c t crypto_rfc4543_init_tfm
+ffffffc00841bc44 t crypto_rfc4543_exit_tfm
+ffffffc00841bc7c t crypto_rfc4543_setkey
+ffffffc00841bce4 t crypto_rfc4543_setauthsize
+ffffffc00841bd24 t crypto_rfc4543_encrypt
+ffffffc00841bd6c t crypto_rfc4543_decrypt
+ffffffc00841bdb4 t crypto_rfc4543_free
+ffffffc00841bdf4 t crypto_rfc4543_crypt
+ffffffc00841bf74 t rfc7539_create
+ffffffc00841bfac t rfc7539esp_create
+ffffffc00841bfe0 t chachapoly_create
+ffffffc00841c27c t chachapoly_init
+ffffffc00841c33c t chachapoly_exit
+ffffffc00841c388 t chachapoly_encrypt
+ffffffc00841c490 t chachapoly_decrypt
+ffffffc00841c4d0 t chachapoly_setkey
+ffffffc00841c574 t chachapoly_setauthsize
+ffffffc00841c590 t chachapoly_free
+ffffffc00841c5dc t chacha_encrypt_done
+ffffffc00841c660 t poly_genkey
+ffffffc00841c774 t poly_genkey_done
+ffffffc00841c7f8 t poly_init
+ffffffc00841c96c t poly_init_done
+ffffffc00841cacc t poly_setkey_done
+ffffffc00841cbac t poly_ad_done
+ffffffc00841cc30 t poly_adpad
+ffffffc00841cd6c t poly_adpad_done
+ffffffc00841ce70 t poly_cipher_done
+ffffffc00841cef4 t poly_cipherpad
+ffffffc00841d018 t poly_cipherpad_done
+ffffffc00841d108 t poly_tail_done
+ffffffc00841d18c t poly_tail_continue
+ffffffc00841d31c t chacha_decrypt_done
+ffffffc00841d400 t des_setkey
+ffffffc00841d480 t crypto_des_encrypt
+ffffffc00841d4b0 t crypto_des_decrypt
+ffffffc00841d4e0 t des3_ede_setkey
+ffffffc00841d560 t crypto_des3_ede_encrypt
+ffffffc00841d590 t crypto_des3_ede_decrypt
+ffffffc00841d5c0 T crypto_aes_set_key
+ffffffc00841d5f0 t crypto_aes_encrypt
+ffffffc00841e18c t crypto_aes_decrypt
+ffffffc00841ed40 t chacha20_setkey
+ffffffc00841edb0 t crypto_chacha_crypt
+ffffffc00841ede8 t crypto_xchacha_crypt
+ffffffc00841ef14 t chacha12_setkey
+ffffffc00841ef80 t chacha_stream_xor
+ffffffc00841f0d4 t crypto_poly1305_init
+ffffffc00841f100 t crypto_poly1305_update
+ffffffc00841f230 t crypto_poly1305_final
+ffffffc00841f270 t poly1305_blocks
+ffffffc00841f2f0 t crypto_poly1305_setdesckey
+ffffffc00841f3a4 t deflate_compress
+ffffffc00841f444 t deflate_decompress
+ffffffc00841f54c t deflate_init
+ffffffc00841f580 t deflate_exit
+ffffffc00841f5d0 t __deflate_init
+ffffffc00841f6c4 t deflate_alloc_ctx
+ffffffc00841f738 t deflate_free_ctx
+ffffffc00841f794 t deflate_scompress
+ffffffc00841f830 t deflate_sdecompress
+ffffffc00841f938 t zlib_deflate_alloc_ctx
+ffffffc00841f9ac t chksum_init
+ffffffc00841f9d0 t chksum_update
+ffffffc00841fa1c t chksum_final
+ffffffc00841fa3c t chksum_finup
+ffffffc00841fa8c t chksum_digest
+ffffffc00841fae0 t chksum_setkey
+ffffffc00841fb10 t crc32c_cra_init
+ffffffc00841fb30 T crypto_authenc_extractkeys
+ffffffc00841fbb4 t crypto_authenc_create
+ffffffc00841fe0c t crypto_authenc_init_tfm
+ffffffc00841fef0 t crypto_authenc_exit_tfm
+ffffffc00841ff40 t crypto_authenc_setkey
+ffffffc00842006c t crypto_authenc_encrypt
+ffffffc008420240 t crypto_authenc_decrypt
+ffffffc0084202f8 t crypto_authenc_free
+ffffffc008420348 t crypto_authenc_encrypt_done
+ffffffc008420448 t authenc_geniv_ahash_done
+ffffffc0084204d8 t authenc_verify_ahash_done
+ffffffc008420550 t crypto_authenc_decrypt_tail
+ffffffc008420650 t crypto_authenc_esn_create
+ffffffc008420898 t crypto_authenc_esn_init_tfm
+ffffffc008420988 t crypto_authenc_esn_exit_tfm
+ffffffc0084209d8 t crypto_authenc_esn_setkey
+ffffffc008420ac8 t crypto_authenc_esn_setauthsize
+ffffffc008420ae8 t crypto_authenc_esn_encrypt
+ffffffc008420c58 t crypto_authenc_esn_decrypt
+ffffffc008420e34 t crypto_authenc_esn_free
+ffffffc008420e84 t crypto_authenc_esn_encrypt_done
+ffffffc008420efc t crypto_authenc_esn_genicv
+ffffffc008421104 t authenc_esn_geniv_ahash_done
+ffffffc008421248 t authenc_esn_verify_ahash_done
+ffffffc0084212c0 t crypto_authenc_esn_decrypt_tail
+ffffffc008421458 t lzo_compress
+ffffffc0084214f0 t lzo_decompress
+ffffffc008421584 t lzo_init
+ffffffc0084215e4 t lzo_exit
+ffffffc008421614 t lzo_alloc_ctx
+ffffffc008421658 t lzo_free_ctx
+ffffffc008421688 t lzo_scompress
+ffffffc00842171c t lzo_sdecompress
+ffffffc0084217b0 t lzorle_compress
+ffffffc008421848 t lzorle_decompress
+ffffffc0084218dc t lzorle_init
+ffffffc00842193c t lzorle_exit
+ffffffc00842196c t lzorle_alloc_ctx
+ffffffc0084219b0 t lzorle_free_ctx
+ffffffc0084219e0 t lzorle_scompress
+ffffffc008421a74 t lzorle_sdecompress
+ffffffc008421b08 t lz4_compress_crypto
+ffffffc008421b70 t lz4_decompress_crypto
+ffffffc008421bd0 t lz4_init
+ffffffc008421c28 t lz4_exit
+ffffffc008421c58 t lz4_alloc_ctx
+ffffffc008421c94 t lz4_free_ctx
+ffffffc008421cc4 t lz4_scompress
+ffffffc008421d2c t lz4_sdecompress
+ffffffc008421d8c T crypto_rng_reset
+ffffffc008421e60 T crypto_alloc_rng
+ffffffc008421ea0 T crypto_get_default_rng
+ffffffc008421ff8 T crypto_put_default_rng
+ffffffc008422050 T crypto_del_default_rng
+ffffffc0084220c8 T crypto_register_rng
+ffffffc00842212c T crypto_unregister_rng
+ffffffc00842215c T crypto_register_rngs
+ffffffc008422240 T crypto_unregister_rngs
+ffffffc008422298 t crypto_rng_init_tfm.llvm.10449926220273229198
+ffffffc0084222ac t crypto_rng_show.llvm.10449926220273229198
+ffffffc008422304 t crypto_rng_report.llvm.10449926220273229198
+ffffffc0084223ac t cprng_get_random
+ffffffc008422550 t cprng_reset
+ffffffc008422688 t cprng_init
+ffffffc0084227d0 t cprng_exit
+ffffffc008422800 t _get_more_prng_bytes
+ffffffc008422f08 t drbg_kcapi_init
+ffffffc008422f4c t drbg_kcapi_cleanup
+ffffffc008423000 t drbg_kcapi_random
+ffffffc008423398 t drbg_kcapi_seed
+ffffffc00842382c t drbg_kcapi_set_entropy
+ffffffc008423894 t drbg_seed
+ffffffc008423b98 t drbg_hmac_update
+ffffffc008423f10 t drbg_hmac_generate
+ffffffc008424134 t drbg_init_hash_kernel
+ffffffc008424214 t drbg_fini_hash_kernel
+ffffffc00842426c T jent_read_entropy
+ffffffc0084243dc t jent_gen_entropy
+ffffffc008424488 t jent_health_failure
+ffffffc0084244b4 t jent_rct_failure
+ffffffc0084244f0 T jent_entropy_init
+ffffffc0084247e8 t jent_apt_reset
+ffffffc008424824 T jent_entropy_collector_alloc
+ffffffc008424904 T jent_entropy_collector_free
+ffffffc008424950 t jent_lfsr_time
+ffffffc008424b08 t jent_delta
+ffffffc008424b5c t jent_stuck
+ffffffc008424c28 t jent_measure_jitter
+ffffffc008424ce8 t jent_memaccess
+ffffffc008424e24 t jent_loop_shuffle
+ffffffc008424f4c t jent_apt_insert
+ffffffc008425040 t jent_rct_insert
+ffffffc0084250e0 T jent_zalloc
+ffffffc008425114 T jent_zfree
+ffffffc008425140 T jent_panic
+ffffffc008425168 T jent_memcpy
+ffffffc008425198 T jent_get_nstime
+ffffffc0084251fc t jent_kcapi_random
+ffffffc0084252ec t jent_kcapi_reset
+ffffffc008425300 t jent_kcapi_init
+ffffffc008425358 t jent_kcapi_cleanup
+ffffffc0084253b0 t ghash_init
+ffffffc0084253d0 t ghash_update
+ffffffc0084254f4 t ghash_final
+ffffffc008425568 t ghash_setkey
+ffffffc008425614 t ghash_exit_tfm
+ffffffc008425648 T polyval_mul_non4k
+ffffffc0084256f8 T polyval_update_non4k
+ffffffc0084257ec t polyval_init
+ffffffc00842580c t polyval_update
+ffffffc008425938 t polyval_final
+ffffffc00842599c t polyval_setkey
+ffffffc008425a60 t polyval_exit_tfm
+ffffffc008425a90 t zstd_compress
+ffffffc008425b68 t zstd_decompress
+ffffffc008425bd4 t zstd_init
+ffffffc008425c04 t zstd_exit
+ffffffc008425c54 t __zstd_init
+ffffffc008425d6c t zstd_alloc_ctx
+ffffffc008425ddc t zstd_free_ctx
+ffffffc008425e38 t zstd_scompress
+ffffffc008425f10 t zstd_sdecompress
+ffffffc008425f7c t essiv_create
+ffffffc0084263e0 t parse_cipher_name
+ffffffc00842646c t essiv_supported_algorithms
+ffffffc00842651c t essiv_skcipher_setkey
+ffffffc008426624 t essiv_skcipher_encrypt
+ffffffc0084266ac t essiv_skcipher_decrypt
+ffffffc008426734 t essiv_skcipher_init_tfm
+ffffffc00842681c t essiv_skcipher_exit_tfm
+ffffffc008426874 t essiv_skcipher_free_instance
+ffffffc0084268b8 t essiv_aead_setkey
+ffffffc008426a58 t essiv_aead_setauthsize
+ffffffc008426a88 t essiv_aead_encrypt
+ffffffc008426ab8 t essiv_aead_decrypt
+ffffffc008426ae8 t essiv_aead_init_tfm
+ffffffc008426be0 t essiv_aead_exit_tfm
+ffffffc008426c38 t essiv_aead_free_instance
+ffffffc008426c7c t essiv_skcipher_done
+ffffffc008426cc8 t essiv_aead_crypt
+ffffffc008426f04 t essiv_aead_done
+ffffffc008426f74 T I_BDEV
+ffffffc008426f88 T invalidate_bdev
+ffffffc008427008 T truncate_bdev_range
+ffffffc0084270e8 T bd_prepare_to_claim
+ffffffc008427254 T bd_abort_claiming
+ffffffc0084272c8 T set_blocksize
+ffffffc00842740c T sync_blockdev
+ffffffc00842744c T sb_set_blocksize
+ffffffc0084274c4 T sb_min_blocksize
+ffffffc00842755c T sync_blockdev_nowait
+ffffffc008427594 T sync_blockdev_range
+ffffffc0084275c8 T fsync_bdev
+ffffffc00842763c T freeze_bdev
+ffffffc00842772c T thaw_bdev
+ffffffc008427810 T bdev_read_page
+ffffffc0084278cc T bdev_write_page
+ffffffc0084279b4 T bdev_alloc
+ffffffc008427a94 T bdev_add
+ffffffc008427ae0 T nr_blockdev_pages
+ffffffc008427b64 t bd_may_claim
+ffffffc008427bbc T blkdev_get_no_open
+ffffffc008427c80 T blkdev_put_no_open
+ffffffc008427cb4 T blkdev_get_by_dev
+ffffffc008428028 t blkdev_get_whole
+ffffffc00842817c T blkdev_get_by_path
+ffffffc0084282a8 T lookup_bdev
+ffffffc008428380 T blkdev_put
+ffffffc0084285f4 T __invalidate_device
+ffffffc0084286b8 T sync_bdevs
+ffffffc0084287fc T bdev_statx_dioalign
+ffffffc00842888c t bd_init_fs_context
+ffffffc0084288f8 t bdev_alloc_inode
+ffffffc008428954 t bdev_free_inode
+ffffffc0084289f8 t bdev_evict_inode
+ffffffc008428a40 t blkdev_flush_mapping
+ffffffc008428b90 t blkdev_writepage.llvm.10657040368259453501
+ffffffc008428bc8 t blkdev_read_folio.llvm.10657040368259453501
+ffffffc008428c00 t blkdev_writepages.llvm.10657040368259453501
+ffffffc008428c2c t blkdev_readahead.llvm.10657040368259453501
+ffffffc008428c60 t blkdev_write_begin.llvm.10657040368259453501
+ffffffc008428ca8 t blkdev_write_end.llvm.10657040368259453501
+ffffffc008428d54 t blkdev_direct_IO.llvm.10657040368259453501
+ffffffc008429170 t blkdev_llseek.llvm.10657040368259453501
+ffffffc0084291f4 t blkdev_read_iter.llvm.10657040368259453501
+ffffffc008429364 t blkdev_write_iter.llvm.10657040368259453501
+ffffffc0084294c4 t blkdev_open.llvm.10657040368259453501
+ffffffc00842956c t blkdev_close.llvm.10657040368259453501
+ffffffc0084295a4 t blkdev_fsync.llvm.10657040368259453501
+ffffffc0084295f0 t blkdev_fallocate.llvm.10657040368259453501
+ffffffc008429770 t blkdev_get_block
+ffffffc0084297bc t __blkdev_direct_IO
+ffffffc008429bb0 t blkdev_bio_end_io_async
+ffffffc008429c64 t blkdev_bio_end_io
+ffffffc008429dd4 t generic_write_sync
+ffffffc008429e58 T bvec_free
+ffffffc008429ed0 t biovec_slab
+ffffffc008429f24 T bvec_alloc
+ffffffc008429fd8 T bio_uninit
+ffffffc00842a00c T bio_init
+ffffffc00842a050 T bio_reset
+ffffffc00842a0c8 T bio_chain
+ffffffc00842a13c t bio_chain_endio
+ffffffc00842a190 T blk_next_bio
+ffffffc00842a258 T bio_alloc_bioset
+ffffffc00842a620 t punt_bios_to_rescuer
+ffffffc00842a7bc T bio_kmalloc
+ffffffc00842a808 T zero_fill_bio
+ffffffc00842a930 T guard_bio_eod
+ffffffc00842a984 t bio_truncate
+ffffffc00842ab68 T bio_put
+ffffffc00842ad2c t bio_free
+ffffffc00842ade4 T bio_alloc_clone
+ffffffc00842aec4 T bio_init_clone
+ffffffc00842afa4 T bio_add_hw_page
+ffffffc00842b168 T bio_add_pc_page
+ffffffc00842b1c8 T bio_add_zone_append_page
+ffffffc00842b288 T __bio_add_page
+ffffffc00842b2fc T bio_add_page
+ffffffc00842b458 T bio_add_folio
+ffffffc00842b4a0 T __bio_release_pages
+ffffffc00842b5fc T bio_iov_bvec_set
+ffffffc00842b678 T bio_iov_iter_get_pages
+ffffffc00842bbcc T submit_bio_wait
+ffffffc00842bc90 t submit_bio_wait_endio
+ffffffc00842bcc0 T __bio_advance
+ffffffc00842bdf4 T bio_copy_data_iter
+ffffffc00842c010 T bio_copy_data
+ffffffc00842c094 T bio_free_pages
+ffffffc00842c168 T bio_set_pages_dirty
+ffffffc00842c254 T bio_check_pages_dirty
+ffffffc00842c498 T bio_endio
+ffffffc00842c694 T bio_split
+ffffffc00842c760 T bio_trim
+ffffffc00842c7e0 T biovec_init_pool
+ffffffc00842c82c T bioset_exit
+ffffffc00842ca00 T bioset_init
+ffffffc00842cc98 t bio_alloc_rescue
+ffffffc00842cd1c t bio_dirty_fn
+ffffffc00842cda0 t bio_cpu_dead
+ffffffc00842ce30 T elv_bio_merge_ok
+ffffffc00842cebc T elevator_alloc
+ffffffc00842cf5c T elevator_exit
+ffffffc00842cfd0 T elv_rqhash_del
+ffffffc00842d014 T elv_rqhash_add
+ffffffc00842d084 T elv_rqhash_reposition
+ffffffc00842d110 T elv_rqhash_find
+ffffffc00842d214 T elv_rb_add
+ffffffc00842d29c T elv_rb_del
+ffffffc00842d2f0 T elv_rb_find
+ffffffc00842d344 T elv_merge
+ffffffc00842d5b8 T elv_attempt_insert_merge
+ffffffc00842d7e8 T elv_merged_request
+ffffffc00842d8ec T elv_merge_requests
+ffffffc00842d9d8 T elv_latter_request
+ffffffc00842da34 T elv_former_request
+ffffffc00842da90 T elv_register_queue
+ffffffc00842db54 T elv_unregister_queue
+ffffffc00842dbbc T elv_register
+ffffffc00842dd58 T elv_unregister
+ffffffc00842dde0 T elevator_init_mq
+ffffffc00842df44 T elevator_switch
+ffffffc00842e0f8 T elv_iosched_store
+ffffffc00842e248 T elv_iosched_show
+ffffffc00842e3ec T elv_rb_former_request
+ffffffc00842e428 T elv_rb_latter_request
+ffffffc00842e464 t elevator_release
+ffffffc00842e494 t elv_attr_show
+ffffffc00842e53c t elv_attr_store
+ffffffc00842e5f0 t elevator_get
+ffffffc00842e764 T __traceiter_block_touch_buffer
+ffffffc00842e7e4 T __traceiter_block_dirty_buffer
+ffffffc00842e864 T __traceiter_block_rq_requeue
+ffffffc00842e8e4 T __traceiter_block_rq_complete
+ffffffc00842e97c T __traceiter_block_rq_error
+ffffffc00842ea14 T __traceiter_block_rq_insert
+ffffffc00842ea94 T __traceiter_block_rq_issue
+ffffffc00842eb14 T __traceiter_block_rq_merge
+ffffffc00842eb94 T __traceiter_block_bio_complete
+ffffffc00842ec24 T __traceiter_block_bio_bounce
+ffffffc00842eca4 T __traceiter_block_bio_backmerge
+ffffffc00842ed24 T __traceiter_block_bio_frontmerge
+ffffffc00842eda4 T __traceiter_block_bio_queue
+ffffffc00842ee24 T __traceiter_block_getrq
+ffffffc00842eea4 T __traceiter_block_plug
+ffffffc00842ef24 T __traceiter_block_unplug
+ffffffc00842efbc T __traceiter_block_split
+ffffffc00842f04c T __traceiter_block_bio_remap
+ffffffc00842f0e4 T __traceiter_block_rq_remap
+ffffffc00842f17c t trace_event_raw_event_block_buffer
+ffffffc00842f24c t perf_trace_block_buffer
+ffffffc00842f370 t trace_event_raw_event_block_rq_requeue
+ffffffc00842f4a8 t perf_trace_block_rq_requeue
+ffffffc00842f644 t trace_event_raw_event_block_rq_completion
+ffffffc00842f780 t perf_trace_block_rq_completion
+ffffffc00842f920 t trace_event_raw_event_block_rq
+ffffffc00842fa70 t perf_trace_block_rq
+ffffffc00842fc24 t trace_event_raw_event_block_bio_complete
+ffffffc00842fd38 t perf_trace_block_bio_complete
+ffffffc00842feb0 t trace_event_raw_event_block_bio
+ffffffc00842ffb0 t perf_trace_block_bio
+ffffffc008430110 t trace_event_raw_event_block_plug
+ffffffc0084301c8 t perf_trace_block_plug
+ffffffc0084302dc t trace_event_raw_event_block_unplug
+ffffffc0084303a8 t perf_trace_block_unplug
+ffffffc0084304c8 t trace_event_raw_event_block_split
+ffffffc0084305c8 t perf_trace_block_split
+ffffffc008430720 t trace_event_raw_event_block_bio_remap
+ffffffc008430820 t perf_trace_block_bio_remap
+ffffffc008430980 t trace_event_raw_event_block_rq_remap
+ffffffc008430aa4 t perf_trace_block_rq_remap
+ffffffc008430c28 T blk_queue_flag_set
+ffffffc008430c7c T blk_queue_flag_clear
+ffffffc008430cd0 T blk_queue_flag_test_and_set
+ffffffc008430d2c T blk_op_str
+ffffffc008430d78 T errno_to_blk_status
+ffffffc008430eac T blk_status_to_errno
+ffffffc008430eec T blk_status_to_str
+ffffffc008430f44 T blk_sync_queue
+ffffffc008430f8c T blk_set_pm_only
+ffffffc008430fd0 T blk_clear_pm_only
+ffffffc008431058 T blk_put_queue
+ffffffc008431088 T blk_queue_start_drain
+ffffffc0084310e4 T blk_queue_enter
+ffffffc00843126c t blk_try_enter_queue
+ffffffc0084313cc T __bio_queue_enter
+ffffffc008431568 T blk_queue_exit
+ffffffc008431694 T blk_alloc_queue
+ffffffc0084318d0 t blk_rq_timed_out_timer
+ffffffc00843190c t blk_timeout_work
+ffffffc00843191c t blk_queue_usage_counter_release
+ffffffc008431958 T blk_get_queue
+ffffffc0084319a0 T submit_bio_noacct_nocheck
+ffffffc008431c98 T submit_bio_noacct
+ffffffc0084320dc T submit_bio
+ffffffc008432220 T bio_poll
+ffffffc008432354 T iocb_bio_iopoll
+ffffffc0084323cc T update_io_ticks
+ffffffc008432484 T bdev_start_io_acct
+ffffffc0084326c0 T bio_start_io_acct_time
+ffffffc008432704 T bio_start_io_acct
+ffffffc00843275c T bdev_end_io_acct
+ffffffc008432954 T bio_end_io_acct_remapped
+ffffffc008432990 T blk_lld_busy
+ffffffc0084329f0 T kblockd_schedule_work
+ffffffc008432a30 T kblockd_mod_delayed_work_on
+ffffffc008432a70 T blk_start_plug_nr_ios
+ffffffc008432ac4 T blk_start_plug
+ffffffc008432b0c T blk_check_plugged
+ffffffc008432c10 T __blk_flush_plug
+ffffffc008432d94 T blk_finish_plug
+ffffffc008432de0 T blk_io_schedule
+ffffffc008432e2c t trace_raw_output_block_buffer
+ffffffc008432eac t trace_raw_output_block_rq_requeue
+ffffffc008432f48 t trace_raw_output_block_rq_completion
+ffffffc008432fe4 t trace_raw_output_block_rq
+ffffffc008433088 t trace_raw_output_block_bio_complete
+ffffffc008433110 t trace_raw_output_block_bio
+ffffffc00843319c t trace_raw_output_block_plug
+ffffffc008433210 t trace_raw_output_block_unplug
+ffffffc008433288 t trace_raw_output_block_split
+ffffffc008433310 t trace_raw_output_block_bio_remap
+ffffffc0084333b4 t trace_raw_output_block_rq_remap
+ffffffc00843345c t __submit_bio
+ffffffc008433558 t blk_release_queue
+ffffffc008433604 T blk_register_queue
+ffffffc0084337a8 T blk_unregister_queue
+ffffffc0084338ac t blk_free_queue_rcu
+ffffffc008433900 t queue_attr_show
+ffffffc008433998 t queue_attr_store
+ffffffc008433a40 t queue_attr_visible
+ffffffc008433ab0 t queue_io_timeout_show
+ffffffc008433af8 t queue_io_timeout_store
+ffffffc008433b98 t queue_max_open_zones_show
+ffffffc008433be8 t queue_max_active_zones_show
+ffffffc008433c38 t queue_requests_show
+ffffffc008433c7c t queue_requests_store
+ffffffc008433d4c t queue_ra_show
+ffffffc008433da8 t queue_ra_store
+ffffffc008433e68 t queue_max_hw_sectors_show
+ffffffc008433eb0 t queue_max_sectors_show
+ffffffc008433ef8 t queue_max_sectors_store
+ffffffc008434000 t queue_max_segments_show
+ffffffc008434044 t queue_max_discard_segments_show
+ffffffc008434088 t queue_max_integrity_segments_show
+ffffffc0084340cc t queue_max_segment_size_show
+ffffffc008434110 t queue_logical_block_size_show
+ffffffc008434164 t queue_physical_block_size_show
+ffffffc0084341a8 t queue_chunk_sectors_show
+ffffffc0084341ec t queue_io_min_show
+ffffffc008434230 t queue_io_opt_show
+ffffffc008434274 t queue_discard_granularity_show
+ffffffc0084342b8 t queue_discard_max_show
+ffffffc008434300 t queue_discard_max_store
+ffffffc0084343c4 t queue_discard_max_hw_show
+ffffffc00843440c t queue_discard_zeroes_data_show
+ffffffc00843444c t queue_write_same_max_show
+ffffffc00843448c t queue_write_zeroes_max_show
+ffffffc0084344d4 t queue_zone_append_max_show
+ffffffc00843451c t queue_zone_write_granularity_show
+ffffffc008434560 t queue_nonrot_show
+ffffffc0084345b0 t queue_nonrot_store
+ffffffc008434660 t queue_zoned_show
+ffffffc0084346e8 t queue_nr_zones_show
+ffffffc00843474c t queue_nomerges_show
+ffffffc0084347a0 t queue_nomerges_store
+ffffffc008434878 t queue_rq_affinity_show
+ffffffc0084348cc t queue_rq_affinity_store
+ffffffc0084349bc t queue_iostats_show
+ffffffc008434a04 t queue_iostats_store
+ffffffc008434ab4 t queue_stable_writes_show
+ffffffc008434afc t queue_stable_writes_store
+ffffffc008434bac t queue_random_show
+ffffffc008434bf4 t queue_random_store
+ffffffc008434ca4 t queue_poll_show
+ffffffc008434cec t queue_poll_store
+ffffffc008434d84 t queue_wc_show
+ffffffc008434de0 t queue_wc_store
+ffffffc008434e94 t queue_fua_show
+ffffffc008434edc t queue_dax_show
+ffffffc008434f24 t queue_wb_lat_show
+ffffffc008434f88 t queue_wb_lat_store
+ffffffc008435070 t queue_poll_delay_show
+ffffffc0084350d4 t queue_poll_delay_store
+ffffffc008435190 t queue_virt_boundary_mask_show
+ffffffc0084351d4 t queue_dma_alignment_show
+ffffffc008435224 T is_flush_rq
+ffffffc008435248 t flush_end_io.llvm.17930501684199651781
+ffffffc008435584 T blk_insert_flush
+ffffffc0084356d8 t mq_flush_data_end_io
+ffffffc008435834 t blk_flush_complete_seq
+ffffffc008435b04 T blkdev_issue_flush
+ffffffc008435b9c T blk_alloc_flush_queue
+ffffffc008435c8c T blk_free_flush_queue
+ffffffc008435cd4 T blk_mq_hctx_set_fq_lock_class
+ffffffc008435ce4 T blk_queue_rq_timeout
+ffffffc008435cf8 T blk_set_default_limits
+ffffffc008435d58 T blk_set_stacking_limits
+ffffffc008435dc0 T blk_queue_bounce_limit
+ffffffc008435dd4 T blk_queue_max_hw_sectors
+ffffffc008435e88 T blk_queue_chunk_sectors
+ffffffc008435e9c T blk_queue_max_discard_sectors
+ffffffc008435eb4 T blk_queue_max_secure_erase_sectors
+ffffffc008435ec8 T blk_queue_max_write_zeroes_sectors
+ffffffc008435edc T blk_queue_max_zone_append_sectors
+ffffffc008435f30 T blk_queue_max_segments
+ffffffc008435f94 T blk_queue_max_discard_segments
+ffffffc008435fa8 T blk_queue_max_segment_size
+ffffffc008436020 T blk_queue_logical_block_size
+ffffffc008436074 T blk_queue_physical_block_size
+ffffffc0084360a4 T blk_queue_zone_write_granularity
+ffffffc0084360e0 T blk_queue_alignment_offset
+ffffffc008436104 T disk_update_readahead
+ffffffc008436144 T blk_limits_io_min
+ffffffc00843616c T blk_queue_io_min
+ffffffc008436198 T blk_limits_io_opt
+ffffffc0084361ac T blk_queue_io_opt
+ffffffc0084361e0 T blk_stack_limits
+ffffffc008436700 T disk_stack_limits
+ffffffc0084367a0 T blk_queue_update_dma_pad
+ffffffc0084367c0 T blk_queue_segment_boundary
+ffffffc008436824 T blk_queue_virt_boundary
+ffffffc008436844 T blk_queue_dma_alignment
+ffffffc008436858 T blk_queue_update_dma_alignment
+ffffffc008436888 T blk_set_queue_depth
+ffffffc0084368c4 T blk_queue_write_cache
+ffffffc008436934 T blk_queue_required_elevator_features
+ffffffc008436948 T blk_queue_can_use_dma_map_merging
+ffffffc00843699c T disk_set_zoned
+ffffffc008436ab8 T bdev_alignment_offset
+ffffffc008436b28 T bdev_discard_alignment
+ffffffc008436b9c T ioc_clear_queue
+ffffffc008436cb0 t ioc_destroy_icq
+ffffffc008436de0 T put_io_context
+ffffffc008436ecc T exit_io_context
+ffffffc008436fe8 T set_task_ioprio
+ffffffc008437118 t alloc_io_context
+ffffffc008437194 T __copy_io
+ffffffc008437294 T ioc_lookup_icq
+ffffffc008437330 T ioc_find_get_icq
+ffffffc00843763c t icq_free_icq_rcu
+ffffffc008437670 t ioc_release_fn
+ffffffc008437770 T blk_rq_append_bio
+ffffffc008437888 T blk_rq_map_user_iov
+ffffffc008438334 T blk_rq_unmap_user
+ffffffc008438550 T blk_rq_map_user
+ffffffc008438610 T blk_rq_map_user_io
+ffffffc0084387bc T blk_rq_map_kern
+ffffffc008438b88 t bio_copy_kern_endio_read
+ffffffc008438ca8 t bio_copy_kern_endio
+ffffffc008438cf0 t bio_map_kern_endio
+ffffffc008438d30 T __bio_split_to_limits
+ffffffc0084391b4 T bio_split_to_limits
+ffffffc008439268 T blk_recalc_rq_segments
+ffffffc008439420 T __blk_rq_map_sg
+ffffffc0084397d0 T ll_back_merge_fn
+ffffffc008439968 T blk_rq_set_mixed_merge
+ffffffc0084399d0 T blk_attempt_req_merge
+ffffffc008439a00 t attempt_merge.llvm.4438116451868166671
+ffffffc008439c20 T blk_rq_merge_ok
+ffffffc008439cf4 T blk_try_merge
+ffffffc008439d60 T blk_attempt_plug_merge
+ffffffc008439e08 t blk_attempt_bio_merge
+ffffffc00843a010 T blk_bio_list_merge
+ffffffc00843a0b4 T blk_mq_sched_try_merge
+ffffffc00843a2c4 t bio_attempt_back_merge
+ffffffc00843a48c t bio_attempt_front_merge
+ffffffc00843a7b8 t bio_attempt_discard_merge
+ffffffc00843a964 t bio_will_gap
+ffffffc00843ab28 t req_attempt_discard_merge
+ffffffc00843ac6c t ll_merge_requests_fn
+ffffffc00843add4 t blk_account_io_merge_request
+ffffffc00843aed8 t trace_block_rq_merge
+ffffffc00843af88 t blk_account_io_merge_bio
+ffffffc00843b090 T blk_abort_request
+ffffffc00843b0dc T blk_rq_timeout
+ffffffc00843b11c T blk_add_timer
+ffffffc00843b1e8 T __blkdev_issue_discard
+ffffffc00843b374 T blkdev_issue_discard
+ffffffc00843b44c T __blkdev_issue_zeroout
+ffffffc00843b5ac t __blkdev_issue_zero_pages
+ffffffc00843b704 T blkdev_issue_zeroout
+ffffffc00843b94c T blkdev_issue_secure_erase
+ffffffc00843bac8 T blk_mq_in_flight
+ffffffc00843bb38 t blk_mq_check_inflight
+ffffffc00843bbac T blk_mq_in_flight_rw
+ffffffc00843bc28 T blk_freeze_queue_start
+ffffffc00843bcac T blk_mq_run_hw_queues
+ffffffc00843bdec T blk_mq_freeze_queue_wait
+ffffffc00843bea8 T blk_mq_freeze_queue_wait_timeout
+ffffffc00843bfdc T blk_freeze_queue
+ffffffc00843c0e8 T blk_mq_freeze_queue
+ffffffc00843c114 T __blk_mq_unfreeze_queue
+ffffffc00843c1bc T blk_mq_unfreeze_queue
+ffffffc00843c244 T blk_mq_quiesce_queue_nowait
+ffffffc00843c2b8 T blk_mq_wait_quiesce_done
+ffffffc00843c2f8 T blk_mq_quiesce_queue
+ffffffc00843c384 T blk_mq_unquiesce_queue
+ffffffc00843c424 T blk_mq_wake_waiters
+ffffffc00843c4d4 T blk_rq_init
+ffffffc00843c550 T blk_mq_alloc_request
+ffffffc00843c6f4 t __blk_mq_alloc_requests
+ffffffc00843ca68 T blk_mq_alloc_request_hctx
+ffffffc00843cc30 t blk_mq_rq_ctx_init
+ffffffc00843cd78 T blk_mq_free_request
+ffffffc00843cf24 t __blk_mq_free_request
+ffffffc00843cff0 T blk_mq_free_plug_rqs
+ffffffc00843d044 T blk_dump_rq_flags
+ffffffc00843d13c T blk_update_request
+ffffffc00843d4f4 t blk_print_req_error
+ffffffc00843d5cc t trace_block_rq_error
+ffffffc00843d684 t blk_account_io_completion
+ffffffc00843d780 T __blk_mq_end_request
+ffffffc00843d8cc T blk_mq_end_request
+ffffffc00843d920 T blk_mq_end_request_batch
+ffffffc00843dd34 t blk_mq_flush_tag_batch
+ffffffc00843def4 T blk_mq_complete_request_remote
+ffffffc00843e0a4 T blk_mq_complete_request
+ffffffc00843e10c T blk_mq_start_request
+ffffffc00843e264 T blk_execute_rq_nowait
+ffffffc00843e398 t blk_add_rq_to_plug
+ffffffc00843e59c T blk_rq_is_poll
+ffffffc00843e5cc T blk_execute_rq
+ffffffc00843e7d4 t blk_end_sync_rq
+ffffffc00843e80c T blk_mq_requeue_request
+ffffffc00843e924 t __blk_mq_requeue_request
+ffffffc00843eac4 T blk_mq_add_to_requeue_list
+ffffffc00843ebc4 T blk_mq_kick_requeue_list
+ffffffc00843ec04 T blk_mq_delay_kick_requeue_list
+ffffffc00843ec58 T blk_mq_queue_inflight
+ffffffc00843ecc4 t blk_mq_rq_inflight
+ffffffc00843ecf4 T blk_mq_put_rq_ref
+ffffffc00843edc8 T blk_mq_flush_busy_ctxs
+ffffffc00843efb8 T blk_mq_dequeue_from_ctx
+ffffffc00843f21c T __blk_mq_get_driver_tag
+ffffffc00843f370 T blk_mq_dispatch_rq_list
+ffffffc00843fdb0 T blk_mq_run_hw_queue
+ffffffc00843ff5c T blk_mq_delay_run_hw_queue
+ffffffc00843ff8c t __blk_mq_delay_run_hw_queue.llvm.1976608791723578058
+ffffffc008440114 T blk_mq_delay_run_hw_queues
+ffffffc008440258 T blk_mq_stop_hw_queue
+ffffffc0084402c4 T blk_mq_stop_hw_queues
+ffffffc0084403a4 T blk_mq_start_hw_queue
+ffffffc008440408 T blk_mq_start_hw_queues
+ffffffc0084404d8 T blk_mq_start_stopped_hw_queue
+ffffffc008440544 T blk_mq_start_stopped_hw_queues
+ffffffc00844062c T __blk_mq_insert_request
+ffffffc0084407ec T blk_mq_request_bypass_insert
+ffffffc0084408c0 T blk_mq_insert_requests
+ffffffc008440ac4 T blk_mq_flush_plug_list
+ffffffc008440e08 t blk_mq_plug_issue_direct
+ffffffc008440f98 T blk_mq_try_issue_list_directly
+ffffffc008441160 T blk_mq_submit_bio
+ffffffc008441858 t blk_mq_try_issue_directly
+ffffffc008441938 T blk_insert_cloned_request
+ffffffc008441b58 t blk_account_io_done
+ffffffc008441ce0 T blk_rq_unprep_clone
+ffffffc008441d30 T blk_rq_prep_clone
+ffffffc008441ebc T blk_steal_bios
+ffffffc008441ef8 T blk_mq_free_rqs
+ffffffc008442158 T blk_mq_free_rq_map
+ffffffc0084421ac T blk_mq_alloc_map_and_rqs
+ffffffc008442720 T blk_mq_free_map_and_rqs
+ffffffc00844277c T blk_mq_release
+ffffffc0084428a0 T blk_mq_init_queue
+ffffffc00844291c T blk_mq_destroy_queue
+ffffffc008442a30 T blk_mq_cancel_work_sync
+ffffffc008442ae8 T blk_mq_exit_queue
+ffffffc008442c44 T __blk_mq_alloc_disk
+ffffffc008442d30 T blk_mq_alloc_disk_for_queue
+ffffffc008442d90 T blk_mq_init_allocated_queue
+ffffffc008443238 t blk_mq_poll_stats_fn
+ffffffc008443294 t blk_mq_poll_stats_bkt
+ffffffc0084432dc t blk_mq_realloc_hw_ctxs
+ffffffc008443540 t blk_mq_timeout_work
+ffffffc008443774 t blk_mq_requeue_work
+ffffffc00844395c t blk_mq_map_swqueue
+ffffffc008443d54 T blk_mq_alloc_tag_set
+ffffffc008443fdc t blk_mq_update_queue_map
+ffffffc0084441b4 t blk_mq_alloc_set_map_and_rqs
+ffffffc008444388 T blk_mq_alloc_sq_tag_set
+ffffffc008444400 T blk_mq_free_tag_set
+ffffffc00844454c T blk_mq_update_nr_requests
+ffffffc0084447ec T blk_mq_update_nr_hw_queues
+ffffffc008444c80 T blk_mq_poll
+ffffffc008444fcc T blk_mq_rq_cpu
+ffffffc008444fe4 t __blk_mq_complete_request_remote
+ffffffc008445010 t __blk_mq_run_hw_queue
+ffffffc0084450d4 t blk_mq_commit_rqs
+ffffffc0084451e0 t __blk_mq_try_issue_directly
+ffffffc008445414 t blk_mq_exit_hctx
+ffffffc00844560c t blk_mq_alloc_and_init_hctx
+ffffffc0084459f8 t blk_mq_run_work_fn
+ffffffc008445a30 t blk_mq_dispatch_wake
+ffffffc008445b04 t blk_mq_check_expired
+ffffffc008445b80 t blk_mq_handle_expired
+ffffffc008445c58 t blk_mq_update_tag_set_shared
+ffffffc008445db8 t blk_done_softirq
+ffffffc008445e78 t blk_softirq_cpu_dead
+ffffffc008445f4c t blk_mq_hctx_notify_dead
+ffffffc008446144 t blk_mq_hctx_notify_online
+ffffffc0084461b4 t blk_mq_hctx_notify_offline
+ffffffc0084464ec t blk_mq_has_request
+ffffffc00844651c T __blk_mq_tag_busy
+ffffffc00844662c T blk_mq_tag_wakeup_all
+ffffffc008446678 T __blk_mq_tag_idle
+ffffffc0084467a0 T blk_mq_get_tags
+ffffffc008446828 T blk_mq_get_tag
+ffffffc008446ba8 T blk_mq_put_tag
+ffffffc008446c14 T blk_mq_put_tags
+ffffffc008446c54 T blk_mq_all_tag_iter
+ffffffc008446cd0 T blk_mq_tagset_busy_iter
+ffffffc008446d98 T blk_mq_tagset_wait_completed_request
+ffffffc008446e8c T blk_mq_queue_tag_busy_iter
+ffffffc0084470e4 t bt_for_each
+ffffffc008447374 T blk_mq_init_bitmaps
+ffffffc008447434 T blk_mq_init_tags
+ffffffc008447534 T blk_mq_free_tags
+ffffffc0084475a8 T blk_mq_tag_update_depth
+ffffffc008447674 T blk_mq_tag_resize_shared_tags
+ffffffc0084476b0 T blk_mq_tag_update_sched_shared_tags
+ffffffc0084476f4 T blk_mq_unique_tag
+ffffffc008447710 t bt_tags_for_each
+ffffffc00844798c t bt_tags_for_each.9
+ffffffc008447be8 T blk_rq_stat_init
+ffffffc008447c0c T blk_rq_stat_sum
+ffffffc008447c74 T blk_rq_stat_add
+ffffffc008447cb4 T blk_stat_add
+ffffffc008447e3c T blk_stat_alloc_callback
+ffffffc008447f24 t blk_stat_timer_fn
+ffffffc0084480c4 T blk_stat_add_callback
+ffffffc0084481f0 T blk_stat_remove_callback
+ffffffc0084482a8 T blk_stat_free_callback
+ffffffc0084482e4 t blk_stat_free_callback_rcu
+ffffffc008448334 T blk_stat_disable_accounting
+ffffffc0084483a8 T blk_stat_enable_accounting
+ffffffc00844841c T blk_alloc_queue_stats
+ffffffc008448468 T blk_free_queue_stats
+ffffffc0084484b0 T blk_stats_alloc_enable
+ffffffc008448568 T blk_mq_hctx_kobj_init
+ffffffc0084485a0 T blk_mq_sysfs_deinit
+ffffffc00844864c T blk_mq_sysfs_init
+ffffffc00844871c T blk_mq_sysfs_register
+ffffffc0084488ac t blk_mq_register_hctx
+ffffffc0084489b8 T blk_mq_sysfs_unregister
+ffffffc008448ab8 T blk_mq_sysfs_unregister_hctxs
+ffffffc008448bbc T blk_mq_sysfs_register_hctxs
+ffffffc008448c94 t blk_mq_hw_sysfs_release
+ffffffc008448cf8 t blk_mq_hw_sysfs_show
+ffffffc008448d94 t blk_mq_hw_sysfs_store
+ffffffc008448e40 t blk_mq_hw_sysfs_nr_tags_show
+ffffffc008448e88 t blk_mq_hw_sysfs_nr_reserved_tags_show
+ffffffc008448ed0 t blk_mq_hw_sysfs_cpus_show
+ffffffc008448ff0 t blk_mq_sysfs_release
+ffffffc008449034 t blk_mq_ctx_sysfs_release
+ffffffc008449064 T blk_mq_map_queues
+ffffffc0084491f8 T blk_mq_hw_queue_to_node
+ffffffc008449288 T blk_mq_sched_mark_restart_hctx
+ffffffc0084492d4 T __blk_mq_sched_restart
+ffffffc00844933c T blk_mq_sched_dispatch_requests
+ffffffc0084493b4 t __blk_mq_sched_dispatch_requests
+ffffffc00844955c T blk_mq_sched_bio_merge
+ffffffc0084496a8 T blk_mq_sched_try_insert_merge
+ffffffc008449734 T blk_mq_sched_insert_request
+ffffffc0084498a8 T blk_mq_sched_insert_requests
+ffffffc008449b84 T blk_mq_init_sched
+ffffffc008449e5c T blk_mq_sched_free_rqs
+ffffffc008449f28 T blk_mq_exit_sched
+ffffffc00844a0f8 t blk_mq_do_dispatch_sched
+ffffffc00844a518 t blk_mq_do_dispatch_ctx
+ffffffc00844a720 t sched_rq_cmp
+ffffffc00844a740 T blkdev_ioctl
+ffffffc00844c4a8 t put_int
+ffffffc00844c5f0 t put_u64
+ffffffc00844c738 t put_uint
+ffffffc00844c880 t put_ushort
+ffffffc00844c9c8 t blkdev_pr_preempt
+ffffffc00844cbf4 T set_capacity
+ffffffc00844cc58 T set_capacity_and_notify
+ffffffc00844cd6c T blkdev_show
+ffffffc00844ce24 T __register_blkdev
+ffffffc00844cfd4 T unregister_blkdev
+ffffffc00844d0ac T blk_alloc_ext_minor
+ffffffc00844d0f8 T blk_free_ext_minor
+ffffffc00844d130 T disk_uevent
+ffffffc00844d224 T disk_scan_partitions
+ffffffc00844d360 T device_add_disk
+ffffffc00844d724 T blk_mark_disk_dead
+ffffffc00844d784 T del_gendisk
+ffffffc00844da54 T invalidate_disk
+ffffffc00844dac4 T blk_request_module
+ffffffc00844dbbc T part_size_show
+ffffffc00844dc00 T part_stat_show
+ffffffc00844de60 t part_stat_read_all
+ffffffc00844e014 T part_inflight_show
+ffffffc00844e188 t block_uevent
+ffffffc00844e1cc t block_devnode
+ffffffc00844e228 t disk_release
+ffffffc00844e310 T part_devt
+ffffffc00844e370 T blk_lookup_devt
+ffffffc00844e4b0 T __alloc_disk_node
+ffffffc00844e67c T inc_diskseq
+ffffffc00844e6d0 T __blk_alloc_disk
+ffffffc00844e760 T put_disk
+ffffffc00844e79c T set_disk_ro
+ffffffc00844e8cc t disk_visible
+ffffffc00844e908 t disk_badblocks_show
+ffffffc00844e958 t disk_badblocks_store
+ffffffc00844e9a4 t disk_range_show
+ffffffc00844e9ec t disk_ext_range_show
+ffffffc00844ea40 t disk_removable_show
+ffffffc00844ea8c t disk_hidden_show
+ffffffc00844ead8 t disk_ro_show
+ffffffc00844eb34 t disk_alignment_offset_show
+ffffffc00844eb8c t disk_discard_alignment_show
+ffffffc00844ebe4 t disk_capability_show
+ffffffc00844ec2c t diskseq_show
+ffffffc00844ec74 t disk_seqf_start
+ffffffc00844ed10 t disk_seqf_stop
+ffffffc00844ed60 t disk_seqf_next
+ffffffc00844eda4 t diskstats_show
+ffffffc00844f064 t show_partition_start
+ffffffc00844f134 t show_partition
+ffffffc00844f234 T ioprio_check_cap
+ffffffc00844f2d4 T __arm64_sys_ioprio_set
+ffffffc00844f5b8 T __get_task_ioprio
+ffffffc00844f630 T __arm64_sys_ioprio_get
+ffffffc00844fa30 T badblocks_check
+ffffffc00844fb74 T badblocks_set
+ffffffc00844ff80 T badblocks_clear
+ffffffc008450224 T ack_all_badblocks
+ffffffc0084502ec T badblocks_show
+ffffffc00845041c T badblocks_store
+ffffffc008450508 T badblocks_init
+ffffffc008450584 T devm_init_badblocks
+ffffffc00845061c T badblocks_exit
+ffffffc008450674 t part_uevent
+ffffffc0084506e4 t part_release
+ffffffc008450728 T bdev_add_partition
+ffffffc008450864 t add_partition
+ffffffc008450b78 T bdev_del_partition
+ffffffc008450c04 t delete_partition
+ffffffc008450c94 T bdev_resize_partition
+ffffffc008450e08 T blk_drop_partitions
+ffffffc008450ea4 T bdev_disk_changed
+ffffffc0084514d8 T read_part_sector
+ffffffc0084515ac t part_partition_show
+ffffffc0084515f0 t part_start_show
+ffffffc008451634 t part_ro_show
+ffffffc00845169c t part_alignment_offset_show
+ffffffc0084516f0 t part_discard_alignment_show
+ffffffc008451740 t xa_insert
+ffffffc0084517ac t whole_disk_show
+ffffffc0084517c0 T efi_partition
+ffffffc008451ebc t read_lba
+ffffffc008452040 t is_gpt_valid
+ffffffc0084522c0 t alloc_read_gpt_entries
+ffffffc00845234c T rq_wait_inc_below
+ffffffc0084523d4 T __rq_qos_cleanup
+ffffffc00845244c T __rq_qos_done
+ffffffc0084524c4 T __rq_qos_issue
+ffffffc00845253c T __rq_qos_requeue
+ffffffc0084525b4 T __rq_qos_throttle
+ffffffc00845262c T __rq_qos_track
+ffffffc0084526b4 T __rq_qos_merge
+ffffffc00845273c T __rq_qos_done_bio
+ffffffc0084527b4 T __rq_qos_queue_depth_changed
+ffffffc008452824 T rq_depth_calc_max_depth
+ffffffc0084528c8 T rq_depth_scale_up
+ffffffc008452984 T rq_depth_scale_down
+ffffffc008452a38 T rq_qos_wait
+ffffffc008452bcc t rq_qos_wake_function
+ffffffc008452c74 T rq_qos_exit
+ffffffc008452ce4 T disk_block_events
+ffffffc008452d7c T disk_unblock_events
+ffffffc008452db0 t __disk_unblock_events
+ffffffc008452e98 T disk_flush_events
+ffffffc008452f1c T bdev_check_media_change
+ffffffc0084530c0 T disk_force_media_change
+ffffffc0084531dc t disk_events_show
+ffffffc0084532a4 t disk_events_async_show
+ffffffc0084532b8 t disk_events_poll_msecs_show
+ffffffc00845331c t disk_events_poll_msecs_store
+ffffffc0084534b8 T disk_alloc_events
+ffffffc0084535b4 t disk_events_workfn
+ffffffc0084535ec T disk_add_events
+ffffffc0084536f4 T disk_del_events
+ffffffc0084537c8 T disk_release_events
+ffffffc008453814 t disk_check_events
+ffffffc0084539ac t disk_events_set_dfl_poll_msecs
+ffffffc008453a80 T disk_register_independent_access_ranges
+ffffffc008453bc8 T disk_unregister_independent_access_ranges
+ffffffc008453c60 T disk_alloc_independent_access_ranges
+ffffffc008453cd0 T disk_set_independent_access_ranges
+ffffffc008453f28 t blk_ia_ranges_sysfs_release
+ffffffc008453f54 t blk_ia_range_sysfs_nop_release
+ffffffc008453f64 t blk_ia_range_sysfs_show
+ffffffc008453fb0 t blk_ia_range_sector_show
+ffffffc008453ff4 t blk_ia_range_nr_sectors_show
+ffffffc008454038 t dd_init_sched
+ffffffc00845416c t dd_exit_sched
+ffffffc008454394 t dd_init_hctx
+ffffffc0084543f0 t dd_depth_updated
+ffffffc008454448 t dd_bio_merge
+ffffffc008454500 t dd_request_merge
+ffffffc0084545f4 t dd_request_merged
+ffffffc008454690 t dd_merged_requests
+ffffffc0084547ac t dd_limit_depth
+ffffffc0084547f8 t dd_prepare_request
+ffffffc00845480c t dd_finish_request
+ffffffc008454978 t dd_insert_requests
+ffffffc008454cf0 t dd_dispatch_request
+ffffffc008454e70 t dd_has_work
+ffffffc008454fd4 t deadline_remove_request
+ffffffc0084550ac t __dd_dispatch_request
+ffffffc00845531c t deadline_next_request
+ffffffc008455484 t deadline_fifo_request
+ffffffc0084555f4 t deadline_read_expire_show
+ffffffc008455640 t deadline_read_expire_store
+ffffffc0084556e0 t deadline_write_expire_show
+ffffffc00845572c t deadline_write_expire_store
+ffffffc0084557cc t deadline_writes_starved_show
+ffffffc008455814 t deadline_writes_starved_store
+ffffffc0084558a4 t deadline_front_merges_show
+ffffffc0084558ec t deadline_front_merges_store
+ffffffc008455984 t deadline_async_depth_show
+ffffffc0084559cc t deadline_async_depth_store
+ffffffc008455a64 t deadline_fifo_batch_show
+ffffffc008455aac t deadline_fifo_batch_store
+ffffffc008455b44 t deadline_prio_aging_expire_show
+ffffffc008455b90 t deadline_prio_aging_expire_store
+ffffffc008455c30 t deadline_read0_next_rq_show
+ffffffc008455c78 t deadline_write0_next_rq_show
+ffffffc008455cc0 t deadline_read1_next_rq_show
+ffffffc008455d08 t deadline_write1_next_rq_show
+ffffffc008455d50 t deadline_read2_next_rq_show
+ffffffc008455d98 t deadline_write2_next_rq_show
+ffffffc008455de0 t deadline_batching_show
+ffffffc008455e2c t deadline_starved_show
+ffffffc008455e78 t dd_async_depth_show
+ffffffc008455ec4 t dd_owned_by_driver_show
+ffffffc008455f90 t dd_queued_show
+ffffffc00845604c t deadline_read0_fifo_start
+ffffffc0084560a0 t deadline_read0_fifo_stop
+ffffffc0084560dc t deadline_read0_fifo_next
+ffffffc008456120 t deadline_write0_fifo_start
+ffffffc008456174 t deadline_write0_fifo_stop
+ffffffc0084561b0 t deadline_write0_fifo_next
+ffffffc0084561f4 t deadline_read1_fifo_start
+ffffffc008456248 t deadline_read1_fifo_stop
+ffffffc008456284 t deadline_read1_fifo_next
+ffffffc0084562c8 t deadline_write1_fifo_start
+ffffffc00845631c t deadline_write1_fifo_stop
+ffffffc008456358 t deadline_write1_fifo_next
+ffffffc00845639c t deadline_read2_fifo_start
+ffffffc0084563f0 t deadline_read2_fifo_stop
+ffffffc00845642c t deadline_read2_fifo_next
+ffffffc008456470 t deadline_write2_fifo_start
+ffffffc0084564c4 t deadline_write2_fifo_stop
+ffffffc008456500 t deadline_write2_fifo_next
+ffffffc008456544 t deadline_dispatch0_start
+ffffffc008456598 t deadline_dispatch0_stop
+ffffffc0084565d4 t deadline_dispatch0_next
+ffffffc008456614 t deadline_dispatch1_start
+ffffffc00845666c t deadline_dispatch1_stop
+ffffffc0084566a8 t deadline_dispatch1_next
+ffffffc0084566ec t deadline_dispatch2_start
+ffffffc008456744 t deadline_dispatch2_stop
+ffffffc008456780 t deadline_dispatch2_next
+ffffffc0084567c4 T __traceiter_kyber_latency
+ffffffc00845688c T __traceiter_kyber_adjust
+ffffffc008456924 T __traceiter_kyber_throttled
+ffffffc0084569b4 t trace_event_raw_event_kyber_latency
+ffffffc008456ad4 t perf_trace_kyber_latency
+ffffffc008456c48 t trace_event_raw_event_kyber_adjust
+ffffffc008456d2c t perf_trace_kyber_adjust
+ffffffc008456e6c t trace_event_raw_event_kyber_throttled
+ffffffc008456f3c t perf_trace_kyber_throttled
+ffffffc00845706c t trace_raw_output_kyber_latency
+ffffffc008457110 t trace_raw_output_kyber_adjust
+ffffffc008457194 t trace_raw_output_kyber_throttled
+ffffffc008457214 t kyber_init_sched
+ffffffc00845754c t kyber_exit_sched
+ffffffc008457610 t kyber_init_hctx
+ffffffc0084578f8 t kyber_exit_hctx
+ffffffc008457990 t kyber_depth_updated
+ffffffc0084579f0 t kyber_bio_merge
+ffffffc008457b04 t kyber_limit_depth
+ffffffc008457b40 t kyber_prepare_request
+ffffffc008457b58 t kyber_finish_request
+ffffffc008457bd4 t kyber_insert_requests
+ffffffc008457e54 t kyber_dispatch_request
+ffffffc008457f74 t kyber_has_work
+ffffffc008458070 t kyber_completed_request
+ffffffc00845821c t kyber_timer_fn
+ffffffc008458868 t calculate_percentile
+ffffffc008458b1c t kyber_domain_wake
+ffffffc008458b6c t kyber_dispatch_cur_domain
+ffffffc00845905c t kyber_get_domain_token
+ffffffc008459210 t kyber_read_lat_show
+ffffffc008459258 t kyber_read_lat_store
+ffffffc0084592e8 t kyber_write_lat_show
+ffffffc008459330 t kyber_write_lat_store
+ffffffc0084593c0 t kyber_read_tokens_show
+ffffffc0084593fc t kyber_write_tokens_show
+ffffffc008459438 t kyber_discard_tokens_show
+ffffffc008459474 t kyber_other_tokens_show
+ffffffc0084594b0 t kyber_async_depth_show
+ffffffc0084594fc t kyber_read_waiting_show
+ffffffc008459568 t kyber_write_waiting_show
+ffffffc0084595d4 t kyber_discard_waiting_show
+ffffffc008459640 t kyber_other_waiting_show
+ffffffc0084596ac t kyber_cur_domain_show
+ffffffc00845970c t kyber_batching_show
+ffffffc008459754 t kyber_read_rqs_start
+ffffffc0084597a4 t kyber_read_rqs_stop
+ffffffc0084597d8 t kyber_read_rqs_next
+ffffffc008459818 t kyber_write_rqs_start
+ffffffc008459868 t kyber_write_rqs_stop
+ffffffc00845989c t kyber_write_rqs_next
+ffffffc0084598dc t kyber_discard_rqs_start
+ffffffc00845992c t kyber_discard_rqs_stop
+ffffffc008459960 t kyber_discard_rqs_next
+ffffffc0084599a0 t kyber_other_rqs_start
+ffffffc0084599f0 t kyber_other_rqs_stop
+ffffffc008459a24 t kyber_other_rqs_next
+ffffffc008459a64 T bfq_mark_bfqq_just_created
+ffffffc008459a80 T bfq_clear_bfqq_just_created
+ffffffc008459a9c T bfq_bfqq_just_created
+ffffffc008459ab4 T bfq_mark_bfqq_busy
+ffffffc008459ad0 T bfq_clear_bfqq_busy
+ffffffc008459aec T bfq_bfqq_busy
+ffffffc008459b04 T bfq_mark_bfqq_wait_request
+ffffffc008459b20 T bfq_clear_bfqq_wait_request
+ffffffc008459b3c T bfq_bfqq_wait_request
+ffffffc008459b54 T bfq_mark_bfqq_non_blocking_wait_rq
+ffffffc008459b70 T bfq_clear_bfqq_non_blocking_wait_rq
+ffffffc008459b8c T bfq_bfqq_non_blocking_wait_rq
+ffffffc008459ba4 T bfq_mark_bfqq_fifo_expire
+ffffffc008459bc0 T bfq_clear_bfqq_fifo_expire
+ffffffc008459bdc T bfq_bfqq_fifo_expire
+ffffffc008459bf4 T bfq_mark_bfqq_has_short_ttime
+ffffffc008459c10 T bfq_clear_bfqq_has_short_ttime
+ffffffc008459c2c T bfq_bfqq_has_short_ttime
+ffffffc008459c44 T bfq_mark_bfqq_sync
+ffffffc008459c60 T bfq_clear_bfqq_sync
+ffffffc008459c7c T bfq_bfqq_sync
+ffffffc008459c94 T bfq_mark_bfqq_IO_bound
+ffffffc008459cb0 T bfq_clear_bfqq_IO_bound
+ffffffc008459ccc T bfq_bfqq_IO_bound
+ffffffc008459ce4 T bfq_mark_bfqq_in_large_burst
+ffffffc008459d00 T bfq_clear_bfqq_in_large_burst
+ffffffc008459d1c T bfq_bfqq_in_large_burst
+ffffffc008459d34 T bfq_mark_bfqq_coop
+ffffffc008459d50 T bfq_clear_bfqq_coop
+ffffffc008459d6c T bfq_bfqq_coop
+ffffffc008459d84 T bfq_mark_bfqq_split_coop
+ffffffc008459da0 T bfq_clear_bfqq_split_coop
+ffffffc008459dbc T bfq_bfqq_split_coop
+ffffffc008459dd4 T bfq_mark_bfqq_softrt_update
+ffffffc008459df0 T bfq_clear_bfqq_softrt_update
+ffffffc008459e0c T bfq_bfqq_softrt_update
+ffffffc008459e24 T bic_to_bfqq
+ffffffc008459e40 T bic_set_bfqq
+ffffffc008459ecc T bic_to_bfqd
+ffffffc008459ee8 T bfq_schedule_dispatch
+ffffffc008459f24 T bfq_pos_tree_add_move
+ffffffc00845a028 T bfq_weights_tree_add
+ffffffc00845a144 T __bfq_weights_tree_remove
+ffffffc00845a1e0 T bfq_put_queue
+ffffffc00845a2d8 T bfq_weights_tree_remove
+ffffffc00845a3ac T bfq_end_wr_async_queues
+ffffffc00845a4e8 T bfq_release_process_ref
+ffffffc00845a580 T bfq_bfqq_expire
+ffffffc00845a9e4 t __bfq_bfqq_expire
+ffffffc00845aad8 T bfq_put_cooperator
+ffffffc00845ab34 T bfq_put_async_queues
+ffffffc00845ac74 t idling_needed_for_service_guarantees
+ffffffc00845ada8 t bfq_init_queue
+ffffffc00845b0fc t bfq_exit_queue
+ffffffc00845b1c8 t bfq_init_hctx
+ffffffc00845b270 t bfq_depth_updated
+ffffffc00845b314 t bfq_allow_bio_merge
+ffffffc00845b3ec t bfq_bio_merge
+ffffffc00845b538 t bfq_request_merge
+ffffffc00845b5e4 t bfq_request_merged
+ffffffc00845b6c0 t bfq_requests_merged
+ffffffc00845b7d4 t bfq_limit_depth
+ffffffc00845b898 t bfq_prepare_request
+ffffffc00845b8dc t bfq_finish_request
+ffffffc00845b928 t bfq_insert_requests
+ffffffc00845c960 t bfq_dispatch_request
+ffffffc00845d828 t bfq_has_work
+ffffffc00845d888 t bfq_finish_requeue_request
+ffffffc00845df70 t bfq_exit_icq
+ffffffc00845e01c t bfq_idle_slice_timer
+ffffffc00845e0f8 t bfq_set_next_ioprio_data
+ffffffc00845e250 t bfq_setup_cooperator
+ffffffc00845e508 t bfq_merge_bfqqs
+ffffffc00845e724 t idling_boosts_thr_without_issues
+ffffffc00845e810 t bfq_setup_merge
+ffffffc00845e8ec t bfq_may_be_close_cooperator
+ffffffc00845e99c t bfq_find_close_cooperator
+ffffffc00845ea98 t bfq_bfqq_save_state
+ffffffc00845ebc8 t bfq_choose_req
+ffffffc00845ece0 t bfq_updated_next_req
+ffffffc00845ee00 t bfq_remove_request
+ffffffc00845f028 t bfq_get_queue
+ffffffc00845f434 t bfq_add_request
+ffffffc00845fe00 t bfq_exit_icq_bfqq
+ffffffc00845ff50 t bfq_fifo_expire_sync_show
+ffffffc00845ffb0 t bfq_fifo_expire_sync_store
+ffffffc008460060 t bfq_fifo_expire_async_show
+ffffffc0084600c0 t bfq_fifo_expire_async_store
+ffffffc008460170 t bfq_back_seek_max_show
+ffffffc0084601b8 t bfq_back_seek_max_store
+ffffffc008460254 t bfq_back_seek_penalty_show
+ffffffc00846029c t bfq_back_seek_penalty_store
+ffffffc008460340 t bfq_slice_idle_show
+ffffffc008460398 t bfq_slice_idle_store
+ffffffc008460440 t bfq_slice_idle_us_show
+ffffffc008460498 t bfq_slice_idle_us_store
+ffffffc00846053c t bfq_max_budget_show
+ffffffc008460584 t bfq_max_budget_store
+ffffffc00846064c t bfq_timeout_sync_show
+ffffffc008460698 t bfq_timeout_sync_store
+ffffffc008460764 t bfq_strict_guarantees_show
+ffffffc0084607ac t bfq_strict_guarantees_store
+ffffffc008460868 t bfq_low_latency_show
+ffffffc0084608b0 t bfq_low_latency_store
+ffffffc008460a5c T bfq_tot_busy_queues
+ffffffc008460a7c T bfq_entity_to_bfqq
+ffffffc008460a9c T bfq_entity_of
+ffffffc008460aac T bfq_ioprio_to_weight
+ffffffc008460acc T bfq_put_idle_entity
+ffffffc008460bc0 T bfq_entity_service_tree
+ffffffc008460c08 T __bfq_entity_update_weight_prio
+ffffffc008460e1c T bfq_bfqq_served
+ffffffc008460f20 T bfq_bfqq_charge_time
+ffffffc008460fa8 T __bfq_deactivate_entity
+ffffffc008461290 t bfq_active_extract
+ffffffc008461384 T next_queue_may_preempt
+ffffffc0084613a4 T bfq_get_next_queue
+ffffffc008461488 t bfq_update_next_in_service
+ffffffc0084616cc T __bfq_bfqd_reset_in_service
+ffffffc008461754 T bfq_deactivate_bfqq
+ffffffc0084617c8 T bfq_activate_bfqq
+ffffffc008461828 t bfq_activate_requeue_entity
+ffffffc008461ac0 T bfq_requeue_bfqq
+ffffffc008461b08 T bfq_del_bfqq_busy
+ffffffc008461bf0 T bfq_add_bfqq_busy
+ffffffc008461d0c t bfq_update_active_tree
+ffffffc008461e2c t bfq_update_fin_time_enqueue
+ffffffc008461fa4 T bfqg_stats_update_io_remove
+ffffffc008461fb4 T bfqg_stats_update_io_merged
+ffffffc008461fc4 T bfqg_stats_update_completion
+ffffffc008461fd4 T bfqg_stats_update_dequeue
+ffffffc008461fe4 T bfqg_stats_set_start_idle_time
+ffffffc008461ff4 T bfq_bfqq_move
+ffffffc008462004 T bfq_init_entity
+ffffffc008462060 T bfq_bic_update_cgroup
+ffffffc008462070 T bfq_end_wr_async
+ffffffc0084620a0 T bfq_bio_bfqg
+ffffffc0084620b4 T bfqq_group
+ffffffc0084620cc T bfqg_and_blkg_put
+ffffffc0084620dc T bfq_create_group_hierarchy
+ffffffc008462144 T blk_mq_pci_map_queues
+ffffffc008462250 T blk_mq_virtio_map_queues
+ffffffc008462340 T blk_zone_cond_str
+ffffffc008462380 T blk_req_needs_zone_write_lock
+ffffffc008462444 T blk_req_zone_write_trylock
+ffffffc008462510 T __blk_req_zone_write_lock
+ffffffc0084625dc T __blk_req_zone_write_unlock
+ffffffc00846269c T bdev_nr_zones
+ffffffc0084626f8 T blkdev_report_zones
+ffffffc008462794 T blkdev_zone_mgmt
+ffffffc008462914 t blkdev_zone_reset_all_emulated
+ffffffc008462abc t blkdev_zone_reset_all
+ffffffc008462b50 T blkdev_report_zones_ioctl
+ffffffc008462f14 t blkdev_copy_zone_to_user
+ffffffc008463098 T blkdev_zone_mgmt_ioctl
+ffffffc008463380 T disk_free_zone_bitmaps
+ffffffc0084633cc T blk_revalidate_disk_zones
+ffffffc0084635f4 t blk_revalidate_zone_cb
+ffffffc008463830 T disk_clear_zone_settings
+ffffffc0084638bc t blk_zone_need_reset_cb
+ffffffc008463930 T __blk_mq_debugfs_rq_show
+ffffffc008463b9c T blk_mq_debugfs_rq_show
+ffffffc008463bd0 T blk_mq_debugfs_register
+ffffffc008463eb0 T blk_mq_debugfs_register_sched
+ffffffc008463f68 T blk_mq_debugfs_register_hctx
+ffffffc0084642e8 T blk_mq_debugfs_register_sched_hctx
+ffffffc0084643a0 T blk_mq_debugfs_register_rqos
+ffffffc0084644a8 T blk_mq_debugfs_unregister_hctx
+ffffffc0084644f8 T blk_mq_debugfs_register_hctxs
+ffffffc0084645a0 T blk_mq_debugfs_unregister_hctxs
+ffffffc008464660 T blk_mq_debugfs_unregister_sched
+ffffffc0084646a0 T blk_mq_debugfs_unregister_rqos
+ffffffc0084646ec T blk_mq_debugfs_unregister_sched_hctx
+ffffffc008464738 t blk_mq_debugfs_write
+ffffffc0084647ac t blk_mq_debugfs_open
+ffffffc00846483c t blk_mq_debugfs_release
+ffffffc00846487c t blk_mq_debugfs_show
+ffffffc0084648dc t queue_poll_stat_show
+ffffffc008464a2c t queue_pm_only_show
+ffffffc008464a74 t queue_state_show
+ffffffc008464b48 t queue_state_write
+ffffffc008464df4 t queue_requeue_list_start
+ffffffc008464e40 t queue_requeue_list_stop
+ffffffc008464e74 t queue_requeue_list_next
+ffffffc008464eb0 t hctx_state_show
+ffffffc008465000 t hctx_flags_show
+ffffffc00846511c t hctx_busy_show
+ffffffc008465194 t hctx_ctx_map_show
+ffffffc0084651c8 t hctx_tags_show
+ffffffc00846523c t hctx_tags_bitmap_show
+ffffffc0084652b4 t hctx_sched_tags_show
+ffffffc008465328 t hctx_sched_tags_bitmap_show
+ffffffc0084653a0 t hctx_run_show
+ffffffc0084653e4 t hctx_run_write
+ffffffc008465400 t hctx_active_show
+ffffffc008465468 t hctx_dispatch_busy_show
+ffffffc0084654ac t hctx_type_show
+ffffffc008465508 t hctx_dispatch_start
+ffffffc008465554 t hctx_dispatch_stop
+ffffffc008465584 t hctx_dispatch_next
+ffffffc0084655c0 t hctx_show_busy_rq
+ffffffc008465608 t blk_mq_debugfs_tags_show
+ffffffc0084656c0 t ctx_default_rq_list_start
+ffffffc00846570c t ctx_default_rq_list_stop
+ffffffc00846573c t ctx_default_rq_list_next
+ffffffc008465778 t ctx_read_rq_list_start
+ffffffc0084657c4 t ctx_read_rq_list_stop
+ffffffc0084657f4 t ctx_read_rq_list_next
+ffffffc008465830 t ctx_poll_rq_list_start
+ffffffc00846587c t ctx_poll_rq_list_stop
+ffffffc0084658ac t ctx_poll_rq_list_next
+ffffffc0084658e8 T queue_zone_wlock_show
+ffffffc008465990 T blk_pm_runtime_init
+ffffffc0084659e4 T blk_pre_runtime_suspend
+ffffffc008465abc T blk_post_runtime_suspend
+ffffffc008465b48 T blk_pre_runtime_resume
+ffffffc008465ba0 T blk_post_runtime_resume
+ffffffc008465c24 T blk_set_runtime_active
+ffffffc008465ca8 T bio_crypt_set_ctx
+ffffffc008465d20 T __bio_crypt_free_ctx
+ffffffc008465d68 T __bio_crypt_clone
+ffffffc008465de4 T bio_crypt_dun_increment
+ffffffc008465e4c T __bio_crypt_advance
+ffffffc008465ec4 T bio_crypt_dun_is_contiguous
+ffffffc008465f58 T bio_crypt_rq_ctx_compatible
+ffffffc008465f94 T bio_crypt_ctx_mergeable
+ffffffc008466054 T __blk_crypto_rq_get_keyslot
+ffffffc008466094 T __blk_crypto_rq_put_keyslot
+ffffffc0084660d4 T __blk_crypto_free_request
+ffffffc008466138 T __blk_crypto_bio_prep
+ffffffc00846626c T blk_crypto_config_supported_natively
+ffffffc0084662a4 T __blk_crypto_rq_bio_prep
+ffffffc008466328 T blk_crypto_init_key
+ffffffc0084664a4 T blk_crypto_config_supported
+ffffffc0084664f0 T blk_crypto_start_using_key
+ffffffc00846657c T blk_crypto_evict_key
+ffffffc00846661c T blk_crypto_profile_init
+ffffffc008466830 T blk_crypto_profile_destroy
+ffffffc0084668b8 T devm_blk_crypto_profile_init
+ffffffc008466980 t blk_crypto_profile_destroy_callback
+ffffffc008466a08 T blk_crypto_keyslot_index
+ffffffc008466a34 T blk_crypto_get_keyslot
+ffffffc008466d30 t blk_crypto_find_and_grab_keyslot
+ffffffc008466e5c T blk_crypto_put_keyslot
+ffffffc008466f38 T __blk_crypto_cfg_supported
+ffffffc008466f9c T __blk_crypto_evict_key
+ffffffc00846716c T blk_crypto_reprogram_all_keys
+ffffffc00846722c T blk_crypto_register
+ffffffc008467248 T blk_crypto_derive_sw_secret
+ffffffc008467324 T blk_crypto_intersect_capabilities
+ffffffc0084673b8 T blk_crypto_has_capabilities
+ffffffc008467458 T blk_crypto_update_capabilities
+ffffffc008467488 T blk_crypto_sysfs_register
+ffffffc008467534 T blk_crypto_sysfs_unregister
+ffffffc008467568 t blk_crypto_release
+ffffffc008467594 t blk_crypto_attr_show
+ffffffc0084675e0 t max_dun_bits_show
+ffffffc008467628 t num_keyslots_show
+ffffffc00846766c t blk_crypto_mode_is_visible
+ffffffc0084676c0 t blk_crypto_mode_show
+ffffffc008467730 T blk_crypto_fallback_bio_prep
+ffffffc008467dec t blk_crypto_fallback_decrypt_endio
+ffffffc008467e90 T blk_crypto_fallback_evict_key
+ffffffc008467ec8 T blk_crypto_fallback_start_using_mode
+ffffffc008468090 t blk_crypto_fallback_init
+ffffffc008468288 t blk_crypto_fallback_encrypt_endio
+ffffffc008468328 t blk_crypto_fallback_decrypt_bio
+ffffffc008468608 t blk_crypto_fallback_keyslot_program
+ffffffc008468730 t blk_crypto_fallback_keyslot_evict
+ffffffc0084687c4 T bd_link_disk_holder
+ffffffc00846892c T bd_unlink_disk_holder
+ffffffc008468a0c T bd_register_pending_holders
+ffffffc008468b0c T __traceiter_io_uring_create
+ffffffc008468bbc T __traceiter_io_uring_register
+ffffffc008468c6c T __traceiter_io_uring_file_get
+ffffffc008468cfc T __traceiter_io_uring_queue_async_work
+ffffffc008468d8c T __traceiter_io_uring_defer
+ffffffc008468e0c T __traceiter_io_uring_link
+ffffffc008468e9c T __traceiter_io_uring_cqring_wait
+ffffffc008468f2c T __traceiter_io_uring_fail_link
+ffffffc008468fbc T __traceiter_io_uring_complete
+ffffffc008469084 T __traceiter_io_uring_submit_sqe
+ffffffc008469114 T __traceiter_io_uring_poll_arm
+ffffffc0084691ac T __traceiter_io_uring_task_add
+ffffffc00846923c T __traceiter_io_uring_req_failed
+ffffffc0084692d4 T __traceiter_io_uring_cqe_overflow
+ffffffc008469384 T __traceiter_io_uring_task_work_run
+ffffffc00846941c T __traceiter_io_uring_short_write
+ffffffc0084694c4 T __traceiter_io_uring_local_work_run
+ffffffc00846955c t trace_event_raw_event_io_uring_create
+ffffffc008469644 t perf_trace_io_uring_create
+ffffffc00846977c t trace_event_raw_event_io_uring_register
+ffffffc008469864 t perf_trace_io_uring_register
+ffffffc00846999c t trace_event_raw_event_io_uring_file_get
+ffffffc008469a68 t perf_trace_io_uring_file_get
+ffffffc008469b90 t trace_event_raw_event_io_uring_queue_async_work
+ffffffc008469ce0 t perf_trace_io_uring_queue_async_work
+ffffffc008469ea4 t trace_event_raw_event_io_uring_defer
+ffffffc008469fdc t perf_trace_io_uring_defer
+ffffffc00846a188 t trace_event_raw_event_io_uring_link
+ffffffc00846a24c t perf_trace_io_uring_link
+ffffffc00846a36c t trace_event_raw_event_io_uring_cqring_wait
+ffffffc00846a42c t perf_trace_io_uring_cqring_wait
+ffffffc00846a548 t trace_event_raw_event_io_uring_fail_link
+ffffffc00846a688 t perf_trace_io_uring_fail_link
+ffffffc00846a83c t trace_event_raw_event_io_uring_complete
+ffffffc00846a934 t perf_trace_io_uring_complete
+ffffffc00846aa7c t trace_event_raw_event_io_uring_submit_sqe
+ffffffc00846abd8 t perf_trace_io_uring_submit_sqe
+ffffffc00846ada8 t trace_event_raw_event_io_uring_poll_arm
+ffffffc00846aef4 t perf_trace_io_uring_poll_arm
+ffffffc00846b0b4 t trace_event_raw_event_io_uring_task_add
+ffffffc00846b1f4 t perf_trace_io_uring_task_add
+ffffffc00846b3a8 t trace_event_raw_event_io_uring_req_failed
+ffffffc00846b54c t perf_trace_io_uring_req_failed
+ffffffc00846b764 t trace_event_raw_event_io_uring_cqe_overflow
+ffffffc00846b848 t perf_trace_io_uring_cqe_overflow
+ffffffc00846b97c t trace_event_raw_event_io_uring_task_work_run
+ffffffc00846ba4c t perf_trace_io_uring_task_work_run
+ffffffc00846bb6c t trace_event_raw_event_io_uring_short_write
+ffffffc00846bc40 t perf_trace_io_uring_short_write
+ffffffc00846bd6c t trace_event_raw_event_io_uring_local_work_run
+ffffffc00846be3c t perf_trace_io_uring_local_work_run
+ffffffc00846bf5c T io_uring_get_socket
+ffffffc00846bf98 T io_is_uring_fops
+ffffffc00846bfbc T io_match_task_safe
+ffffffc00846c088 T io_queue_iowq
+ffffffc00846c280 T __io_commit_cqring_flush
+ffffffc00846c338 t io_queue_deferred
+ffffffc00846c40c T io_cq_unlock_post
+ffffffc00846c4a4 T __io_put_task
+ffffffc00846c584 T io_task_refs_refill
+ffffffc00846c630 T io_req_cqe_overflow
+ffffffc00846c68c t io_cqring_event_overflow
+ffffffc00846c908 T __io_get_cqe
+ffffffc00846c9b0 T io_fill_cqe_aux
+ffffffc00846cc04 T io_post_aux_cqe
+ffffffc00846cce8 T io_req_complete_post
+ffffffc00846d05c t __io_fill_cqe_req
+ffffffc00846d2cc t req_ref_put_and_test
+ffffffc00846d354 T io_req_task_queue
+ffffffc00846d390 T __io_req_complete
+ffffffc00846d3bc T io_req_complete_failed
+ffffffc00846d47c T __io_alloc_req_refill
+ffffffc00846d674 T io_free_req
+ffffffc00846d844 T tctx_task_work
+ffffffc00846dae0 t handle_tw_list
+ffffffc00846dccc t ctx_flush_and_put
+ffffffc00846de58 t io_uring_drop_tctx_refs
+ffffffc00846df08 T __io_req_task_work_add
+ffffffc00846e3a4 T __io_run_local_work
+ffffffc00846e66c t io_submit_flush_completions
+ffffffc00846e760 T io_run_local_work
+ffffffc00846e81c T io_req_task_submit
+ffffffc00846e8c0 T io_req_task_queue_fail
+ffffffc00846e900 t io_req_task_cancel
+ffffffc00846e9e0 T io_queue_next
+ffffffc00846ea54 T io_free_batch_list
+ffffffc00846ed48 t io_clean_op
+ffffffc00846ef48 T io_req_task_complete
+ffffffc00846efe8 T io_file_get_flags
+ffffffc00846f094 T io_alloc_async_data
+ffffffc00846f124 T io_req_prep_async
+ffffffc00846f24c T io_file_get_normal
+ffffffc00846f3d0 T io_poll_issue
+ffffffc00846f444 t io_issue_sqe
+ffffffc00846f6fc T io_wq_free_work
+ffffffc00846f7f8 T io_wq_submit_work
+ffffffc00846f9d4 t io_assign_file
+ffffffc00846faf0 T io_file_get_fixed
+ffffffc00846fbc0 T io_submit_sqes
+ffffffc008470264 T io_run_task_work_sig
+ffffffc0084702b0 t io_run_task_work_ctx
+ffffffc00847044c T io_uring_cancel_generic
+ffffffc0084707b4 t io_uring_try_cancel_requests
+ffffffc008470a34 T __io_uring_cancel
+ffffffc008470a64 T __arm64_sys_io_uring_enter
+ffffffc008471640 T __arm64_sys_io_uring_setup
+ffffffc00847184c T __arm64_sys_io_uring_register
+ffffffc00847201c t trace_raw_output_io_uring_create
+ffffffc00847209c t trace_raw_output_io_uring_register
+ffffffc00847211c t trace_raw_output_io_uring_file_get
+ffffffc008472198 t trace_raw_output_io_uring_queue_async_work
+ffffffc008472248 t trace_raw_output_io_uring_defer
+ffffffc0084722c8 t trace_raw_output_io_uring_link
+ffffffc008472340 t trace_raw_output_io_uring_cqring_wait
+ffffffc0084723b8 t trace_raw_output_io_uring_fail_link
+ffffffc00847243c t trace_raw_output_io_uring_complete
+ffffffc0084724c8 t trace_raw_output_io_uring_submit_sqe
+ffffffc008472560 t trace_raw_output_io_uring_poll_arm
+ffffffc0084725e4 t trace_raw_output_io_uring_task_add
+ffffffc008472668 t trace_raw_output_io_uring_req_failed
+ffffffc008472734 t trace_raw_output_io_uring_cqe_overflow
+ffffffc0084727b0 t trace_raw_output_io_uring_task_work_run
+ffffffc008472828 t trace_raw_output_io_uring_short_write
+ffffffc0084728a0 t trace_raw_output_io_uring_local_work_run
+ffffffc008472914 t __io_prep_linked_timeout
+ffffffc008472998 t io_prep_async_work
+ffffffc008472b48 t io_eventfd_signal
+ffffffc008472ccc t io_eventfd_ops
+ffffffc008472d98 t percpu_ref_put
+ffffffc008472ebc t io_move_task_work_from_local
+ffffffc008472f30 t __io_req_find_next_prep
+ffffffc008472fe4 t __io_arm_ltimeout
+ffffffc008473070 t io_queue_async
+ffffffc00847323c t io_submit_fail_init
+ffffffc008473400 t trace_io_uring_link
+ffffffc00847350c t io_queue_sqe_fallback
+ffffffc008473594 t io_drain_req
+ffffffc008473864 t io_uring_try_cancel_iowq
+ffffffc008473920 t io_cancel_task_cb
+ffffffc0084739f0 t io_iopoll_try_reap_events
+ffffffc008473a90 t io_cancel_defer_files
+ffffffc008473c44 t io_cancel_ctx_cb
+ffffffc008473c5c t __io_cqring_overflow_flush
+ffffffc008473f38 t io_wake_function
+ffffffc008473fc4 t io_uring_poll.llvm.1709519943644796254
+ffffffc0084740a8 t io_uring_mmap.llvm.1709519943644796254
+ffffffc0084741c0 t io_uring_release.llvm.1709519943644796254
+ffffffc0084741f4 t io_ring_ctx_wait_and_kill
+ffffffc00847438c t io_ring_exit_work
+ffffffc008474608 t io_req_caches_free
+ffffffc0084747bc t io_tctx_exit_cb
+ffffffc008474818 t io_ring_ctx_free
+ffffffc008474c08 t io_mem_free
+ffffffc008474cb4 t io_uring_create
+ffffffc0084750d4 t io_ring_ctx_alloc
+ffffffc008475398 t io_allocate_scq_urings
+ffffffc0084754dc t io_uring_get_file
+ffffffc008475590 t io_uring_install_fd
+ffffffc008475610 t trace_io_uring_create
+ffffffc008475724 t io_alloc_hash_table
+ffffffc00847579c t io_ring_ctx_ref_free
+ffffffc0084757cc t io_fallback_req_func
+ffffffc008475a74 t io_eventfd_register
+ffffffc008475ccc t io_probe
+ffffffc0084760a8 t io_register_restrictions
+ffffffc008476200 t io_register_iowq_aff
+ffffffc00847645c t io_register_iowq_max_workers
+ffffffc0084768d4 T io_xattr_cleanup
+ffffffc008476924 T io_fgetxattr_prep
+ffffffc00847694c t __io_getxattr_prep
+ffffffc008476a48 T io_getxattr_prep
+ffffffc008476ab8 T io_fgetxattr
+ffffffc008476b50 T io_getxattr
+ffffffc008476c8c T io_setxattr_prep
+ffffffc008476dac T io_fsetxattr_prep
+ffffffc008476e94 T io_fsetxattr
+ffffffc008476f50 T io_setxattr
+ffffffc0084770d4 T io_nop_prep
+ffffffc0084770e8 T io_nop
+ffffffc008477104 T io_renameat_prep
+ffffffc0084771fc T io_renameat
+ffffffc008477268 T io_renameat_cleanup
+ffffffc0084772ac T io_unlinkat_prep
+ffffffc008477374 T io_unlinkat
+ffffffc0084773e8 T io_unlinkat_cleanup
+ffffffc008477418 T io_mkdirat_prep
+ffffffc0084774d8 T io_mkdirat
+ffffffc008477540 T io_mkdirat_cleanup
+ffffffc008477570 T io_symlinkat_prep
+ffffffc008477658 T io_symlinkat
+ffffffc0084776c0 T io_linkat_prep
+ffffffc0084777c0 T io_linkat
+ffffffc00847782c T io_link_cleanup
+ffffffc008477870 T io_tee_prep
+ffffffc0084778ec T io_tee
+ffffffc0084779d0 T io_splice_prep
+ffffffc008477a4c T io_splice
+ffffffc008477b4c T io_sfr_prep
+ffffffc008477bb8 T io_sync_file_range
+ffffffc008477c18 T io_fsync_prep
+ffffffc008477c8c T io_fsync
+ffffffc008477cfc T io_fallocate_prep
+ffffffc008477d64 T io_fallocate
+ffffffc008477e50 T io_madvise_prep
+ffffffc008477eb8 T io_madvise
+ffffffc008477f18 T io_fadvise_prep
+ffffffc008477f80 T io_fadvise
+ffffffc008478004 T io_alloc_file_tables
+ffffffc008478088 T io_free_file_tables
+ffffffc0084780d0 T __io_fixed_fd_install
+ffffffc0084782f4 T io_fixed_fd_install
+ffffffc008478390 T io_fixed_fd_remove
+ffffffc008478494 T io_register_file_alloc_range
+ffffffc00847867c T io_openat_prep
+ffffffc0084787d0 T io_openat2_prep
+ffffffc008478a74 T io_openat2
+ffffffc008478da8 T io_openat
+ffffffc008478dd4 T io_open_cleanup
+ffffffc008478e08 T __io_close_fixed
+ffffffc008478e88 T io_close_prep
+ffffffc008478f10 T io_close
+ffffffc008479070 T io_uring_cmd_complete_in_task
+ffffffc0084790b0 t io_uring_cmd_work
+ffffffc008479108 T io_uring_cmd_done
+ffffffc00847918c T io_uring_cmd_prep_async
+ffffffc0084791dc T io_uring_cmd_prep
+ffffffc0084792d8 T io_uring_cmd
+ffffffc008479420 T io_uring_cmd_import_fixed
+ffffffc00847946c T io_epoll_ctl_prep
+ffffffc00847969c T io_epoll_ctl
+ffffffc008479728 T io_statx_prep
+ffffffc008479808 T io_statx
+ffffffc008479868 T io_statx_cleanup
+ffffffc00847989c T io_shutdown_prep
+ffffffc0084798f8 T io_shutdown
+ffffffc008479960 T io_send_prep_async
+ffffffc008479a40 T io_sendmsg_prep_async
+ffffffc008479b3c T io_sendmsg_recvmsg_cleanup
+ffffffc008479b70 T io_sendmsg_prep
+ffffffc008479c48 T io_sendmsg
+ffffffc008479e8c t io_setup_async_msg
+ffffffc008479fbc T io_send
+ffffffc00847a304 t io_setup_async_addr
+ffffffc00847a420 T io_recvmsg_prep_async
+ffffffc00847a4f0 t io_recvmsg_copy_hdr
+ffffffc00847a8d8 T io_recvmsg_prep
+ffffffc00847a9c4 T io_recvmsg
+ffffffc00847b108 T io_recv
+ffffffc00847b4bc T io_send_zc_cleanup
+ffffffc00847b51c T io_send_zc_prep
+ffffffc00847b720 T io_send_zc
+ffffffc00847bae4 t io_sg_from_iter
+ffffffc00847bd0c t io_sg_from_iter_iovec
+ffffffc00847bd88 T io_sendmsg_zc
+ffffffc00847c03c T io_sendrecv_fail
+ffffffc00847c07c T io_accept_prep
+ffffffc00847c17c T io_accept
+ffffffc00847c2fc T io_socket_prep
+ffffffc00847c3b4 T io_socket
+ffffffc00847c4c8 T io_connect_prep_async
+ffffffc00847c504 T io_connect_prep
+ffffffc00847c56c T io_connect
+ffffffc00847c7a8 T io_netmsg_cache_free
+ffffffc00847c7d4 T io_msg_ring_prep
+ffffffc00847c870 T io_msg_ring
+ffffffc00847ca9c T io_flush_timeouts
+ffffffc00847cb4c t io_kill_timeout
+ffffffc00847cc24 T io_disarm_next
+ffffffc00847cd6c t io_fail_links
+ffffffc00847cebc T __io_disarm_linked_timeout
+ffffffc00847cf54 T io_timeout_cancel
+ffffffc00847d070 T io_timeout_remove_prep
+ffffffc00847d174 T io_timeout_remove
+ffffffc00847d45c T io_timeout_prep
+ffffffc00847d488 t __io_timeout_prep
+ffffffc00847d664 T io_link_timeout_prep
+ffffffc00847d694 T io_timeout
+ffffffc00847d7d4 t io_timeout_fn
+ffffffc00847d8c0 T io_queue_linked_timeout
+ffffffc00847da18 t io_link_timeout_fn
+ffffffc00847db54 T io_kill_timeouts
+ffffffc00847dc54 t io_req_tw_fail_links
+ffffffc00847dcf0 t io_req_task_link_timeout
+ffffffc00847de58 T io_sq_thread_unpark
+ffffffc00847df48 T io_sq_thread_park
+ffffffc00847e010 T io_sq_thread_stop
+ffffffc00847e0d0 T io_put_sq_data
+ffffffc00847e184 T io_sq_thread_finish
+ffffffc00847e40c T io_sqpoll_wait_sq
+ffffffc00847e50c T io_sq_offload_create
+ffffffc00847e918 t io_sq_thread
+ffffffc00847eec8 t io_run_task_work
+ffffffc00847efc4 T io_uring_show_fdinfo
+ffffffc00847f1dc t __io_uring_show_fdinfo
+ffffffc00847f880 t io_uring_show_cred
+ffffffc00847faac T __io_uring_free
+ffffffc00847fb30 T io_uring_alloc_task_context
+ffffffc00847fd00 T __io_uring_add_tctx_node
+ffffffc00847fe94 T __io_uring_add_tctx_node_from_submit
+ffffffc00847ff00 T io_uring_del_tctx_node
+ffffffc00847ffe4 T io_uring_clean_tctx
+ffffffc0084800a0 T io_uring_unreg_ringfd
+ffffffc0084801d8 T io_ringfd_register
+ffffffc00848062c T io_ringfd_unregister
+ffffffc0084808b0 T io_arm_poll_handler
+ffffffc008480b74 t io_async_queue_proc
+ffffffc008480bb4 t __io_arm_poll_handler
+ffffffc008481138 T io_poll_remove_all
+ffffffc0084811a0 t io_poll_remove_all_table
+ffffffc008481298 T io_poll_cancel
+ffffffc008481330 t __io_poll_cancel
+ffffffc0084814c0 T io_poll_remove_prep
+ffffffc008481580 T io_poll_add_prep
+ffffffc008481600 T io_poll_add
+ffffffc0084816d0 t io_poll_queue_proc
+ffffffc008481710 T io_poll_remove
+ffffffc008481a04 t io_poll_disarm
+ffffffc008481b60 T io_apoll_cache_free
+ffffffc008481b88 t __io_queue_proc
+ffffffc008481cc8 t io_poll_double_prepare
+ffffffc008481d64 t io_poll_wake
+ffffffc008481ec0 t io_poll_remove_entries
+ffffffc008481fd8 t io_poll_can_finish_inline
+ffffffc0084820cc t __io_poll_execute
+ffffffc0084821c8 t io_pollfree_wake
+ffffffc008482324 t io_poll_get_ownership_slowpath
+ffffffc0084823bc t io_poll_task_func
+ffffffc0084824b0 t io_apoll_task_func
+ffffffc008482548 t io_poll_check_events
+ffffffc0084827a4 t io_poll_tw_hash_eject
+ffffffc008482898 t io_poll_cancel_req
+ffffffc0084829c4 T io_try_cancel
+ffffffc008482af8 T io_async_cancel_prep
+ffffffc008482b80 T io_async_cancel
+ffffffc008482cd0 t __io_async_cancel
+ffffffc008482e4c T init_hash_table
+ffffffc008482e88 T io_sync_cancel
+ffffffc008483328 t io_cancel_cb
+ffffffc0084833a4 T io_kbuf_recycle_legacy
+ffffffc008483474 T __io_put_kbuf
+ffffffc0084835c8 T io_buffer_select
+ffffffc0084837a4 T io_destroy_buffers
+ffffffc0084838ec t __io_remove_buffers
+ffffffc008483a04 T io_remove_buffers_prep
+ffffffc008483a88 T io_remove_buffers
+ffffffc008483b64 T io_provide_buffers_prep
+ffffffc008483c70 T io_provide_buffers
+ffffffc00848400c t io_init_bl_list
+ffffffc008484098 t io_buffer_add_list
+ffffffc008484130 T io_register_pbuf_ring
+ffffffc0084844b0 T io_unregister_pbuf_ring
+ffffffc0084846fc T io_rsrc_refs_drop
+ffffffc008484838 T __io_account_mem
+ffffffc0084848e8 T io_rsrc_refs_refill
+ffffffc0084849e0 T io_rsrc_put_work
+ffffffc008484bac T io_wait_rsrc_data
+ffffffc008484c24 T io_rsrc_node_destroy
+ffffffc008484c64 T io_rsrc_node_switch
+ffffffc008484d84 T io_rsrc_node_switch_start
+ffffffc008484e3c T io_register_files_update
+ffffffc008485018 t __io_register_rsrc_update
+ffffffc008485ad0 T io_register_rsrc_update
+ffffffc008485cbc T io_register_rsrc
+ffffffc008485edc T io_sqe_files_register
+ffffffc008486330 T io_sqe_buffers_register
+ffffffc0084865b4 T io_files_update_prep
+ffffffc008486628 T io_files_update
+ffffffc008486a5c T io_queue_rsrc_removal
+ffffffc008486b1c T __io_sqe_files_unregister
+ffffffc008486c60 t io_rsrc_data_free
+ffffffc008486cdc T io_sqe_files_unregister
+ffffffc008486d40 t io_rsrc_ref_quiesce
+ffffffc008486eb4 T __io_scm_file_account
+ffffffc008487070 t refcount_add
+ffffffc0084870e4 t refcount_add
+ffffffc008487158 t refcount_add
+ffffffc0084871cc t refcount_add
+ffffffc008487240 t io_rsrc_data_alloc
+ffffffc0084874c4 t io_rsrc_file_put
+ffffffc008487704 t io_scm_file_account
+ffffffc008487758 T __io_sqe_buffers_unregister
+ffffffc008487824 t io_buffer_unmap
+ffffffc008487930 T io_sqe_buffers_unregister
+ffffffc008487998 T io_pin_pages
+ffffffc008487ba8 t io_rsrc_buf_put
+ffffffc008487be4 t io_copy_iov
+ffffffc008487d78 t io_sqe_buffer_register
+ffffffc00848823c T io_import_fixed
+ffffffc008488338 t io_rsrc_node_ref_zero
+ffffffc008488468 t io_alloc_page_table
+ffffffc008488538 T io_prep_rw
+ffffffc008488818 T io_readv_writev_cleanup
+ffffffc00848884c T io_readv_prep_async
+ffffffc0084888f4 T io_writev_prep_async
+ffffffc00848899c T io_read
+ffffffc008488ee8 t io_import_iovec
+ffffffc008489054 t io_rw_init_file
+ffffffc008489190 t io_setup_async_rw
+ffffffc0084892bc t kiocb_done
+ffffffc00848944c T io_write
+ffffffc0084899b4 t loop_rw_iter
+ffffffc008489b58 t kiocb_end_write
+ffffffc008489ce8 T io_rw_fail
+ffffffc008489d20 T io_do_iopoll
+ffffffc00848a17c t io_complete_rw_iopoll
+ffffffc00848a20c t io_complete_rw
+ffffffc00848a2e8 t io_rw_should_reissue
+ffffffc00848a3d4 t io_req_rw_complete
+ffffffc00848a418 t io_req_io_end
+ffffffc00848a540 t io_async_buf_func
+ffffffc00848a600 t io_no_issue.llvm.5406210247544516271
+ffffffc00848a618 T io_uring_get_opcode
+ffffffc00848a65c t io_eopnotsupp_prep
+ffffffc00848a670 T io_alloc_notif
+ffffffc00848a760 t io_uring_tx_zerocopy_callback
+ffffffc00848a82c T io_notif_flush
+ffffffc00848a8c4 t __io_notif_complete_tw
+ffffffc00848a960 T io_wq_worker_running
+ffffffc00848a9d4 T io_wq_worker_sleeping
+ffffffc00848aa1c t io_wqe_dec_running
+ffffffc00848ab80 T io_wq_enqueue
+ffffffc00848abb4 t io_wqe_enqueue
+ffffffc00848aef4 T io_wq_hash_work
+ffffffc00848af30 T io_wq_cancel_cb
+ffffffc00848b048 T io_wq_create
+ffffffc00848b338 t io_wqe_hash_wake
+ffffffc00848b440 T io_wq_exit_start
+ffffffc00848b47c T io_wq_put_and_exit
+ffffffc00848b764 T io_wq_cpu_affinity
+ffffffc00848b7dc T io_wq_max_workers
+ffffffc00848b8d0 t io_queue_worker_create
+ffffffc00848bc20 t create_worker_cb
+ffffffc00848bdd8 t io_wq_cancel_tw_create
+ffffffc00848be84 t io_worker_ref_put
+ffffffc00848bef8 t io_task_work_match
+ffffffc00848bf40 t io_worker_cancel_cb
+ffffffc00848c0c8 t create_worker_cont
+ffffffc00848c394 t io_wqe_worker
+ffffffc00848c7a4 t io_init_new_worker
+ffffffc00848c880 t io_wq_work_match_all
+ffffffc00848c890 t io_acct_cancel_pending_work
+ffffffc00848ca3c t io_worker_handle_work
+ffffffc00848cfb0 t io_assign_current_work
+ffffffc00848d0d8 t io_task_worker_match
+ffffffc00848d100 t create_io_worker
+ffffffc00848d304 t io_workqueue_create
+ffffffc00848d36c t io_wqe_activate_free_worker
+ffffffc00848d5b8 t io_wq_work_match_item
+ffffffc00848d5cc t io_wq_for_each_worker
+ffffffc00848d774 t io_wq_worker_cancel
+ffffffc00848d8ec t io_wq_worker_wake
+ffffffc00848d978 t io_wq_cpu_online
+ffffffc00848da0c t io_wq_cpu_offline
+ffffffc00848da9c t io_wq_worker_affinity
+ffffffc00848db2c T lockref_get
+ffffffc00848dc24 T lockref_get_not_zero
+ffffffc00848dd4c T lockref_put_not_zero
+ffffffc00848de74 T lockref_put_return
+ffffffc00848df5c T lockref_put_or_lock
+ffffffc00848e074 T lockref_mark_dead
+ffffffc00848e09c T lockref_get_not_dead
+ffffffc00848e1b8 T _bcd2bin
+ffffffc00848e1d8 T _bin2bcd
+ffffffc00848e204 T sort_r
+ffffffc00848e69c T sort
+ffffffc00848e704 T match_token
+ffffffc00848e978 T match_int
+ffffffc00848ea4c T match_uint
+ffffffc00848eac0 T match_strdup
+ffffffc00848eafc T match_u64
+ffffffc00848ebb4 T match_octal
+ffffffc00848ec88 T match_hex
+ffffffc00848ed5c T match_wildcard
+ffffffc00848ee08 T match_strlcpy
+ffffffc00848ee6c T debug_locks_off
+ffffffc00848eef4 T prandom_u32_state
+ffffffc00848ef54 T prandom_bytes_state
+ffffffc00848f028 T prandom_seed_full_state
+ffffffc00848f378 T bust_spinlocks
+ffffffc00848f3d8 T kvasprintf
+ffffffc00848f508 T kvasprintf_const
+ffffffc00848f604 T kasprintf
+ffffffc00848f68c T __bitmap_equal
+ffffffc00848f71c T __bitmap_or_equal
+ffffffc00848f7c4 T __bitmap_complement
+ffffffc00848f7f8 T __bitmap_shift_right
+ffffffc00848f8e4 T __bitmap_shift_left
+ffffffc00848f998 T bitmap_cut
+ffffffc00848fa9c T __bitmap_and
+ffffffc00848fb2c T __bitmap_or
+ffffffc00848fb64 T __bitmap_xor
+ffffffc00848fb9c T __bitmap_andnot
+ffffffc00848fc2c T __bitmap_replace
+ffffffc00848fc70 T __bitmap_intersects
+ffffffc00848fcfc T __bitmap_subset
+ffffffc00848fd8c T __bitmap_weight
+ffffffc00848fe34 T __bitmap_weight_and
+ffffffc00848ff00 T __bitmap_set
+ffffffc00848ffe0 T __bitmap_clear
+ffffffc0084900c0 T bitmap_find_next_zero_area_off
+ffffffc00849016c T bitmap_parse_user
+ffffffc0084901e8 T bitmap_parse
+ffffffc00849053c T bitmap_print_to_pagebuf
+ffffffc008490598 T bitmap_print_bitmask_to_buf
+ffffffc00849065c T bitmap_print_list_to_buf
+ffffffc008490720 T bitmap_parselist
+ffffffc008490bb4 T bitmap_parselist_user
+ffffffc008490c2c T bitmap_remap
+ffffffc008490e74 T bitmap_bitremap
+ffffffc008490fdc T bitmap_find_free_region
+ffffffc008491148 T bitmap_release_region
+ffffffc00849124c T bitmap_allocate_region
+ffffffc00849137c T bitmap_alloc
+ffffffc0084913b8 T bitmap_zalloc
+ffffffc0084913f8 T bitmap_alloc_node
+ffffffc008491434 T bitmap_zalloc_node
+ffffffc008491474 T bitmap_free
+ffffffc0084914a0 T devm_bitmap_alloc
+ffffffc00849151c t devm_bitmap_free
+ffffffc008491548 T devm_bitmap_zalloc
+ffffffc0084915c4 T bitmap_from_arr32
+ffffffc008491654 T bitmap_to_arr32
+ffffffc0084916d8 T sg_next
+ffffffc008491710 T sg_nents
+ffffffc008491758 T sg_nents_for_len
+ffffffc0084917bc T sg_last
+ffffffc008491810 T sg_init_table
+ffffffc00849186c T sg_init_one
+ffffffc0084918a8 T __sg_free_table
+ffffffc0084919cc T sg_free_append_table
+ffffffc008491a64 T sg_free_table
+ffffffc008491afc T __sg_alloc_table
+ffffffc008491d5c T sg_alloc_table
+ffffffc008491dc4 t sg_kmalloc
+ffffffc008491e0c T sg_alloc_append_table_from_pages
+ffffffc0084921e0 T sg_alloc_table_from_pages_segment
+ffffffc008492290 T sgl_alloc_order
+ffffffc00849244c T sgl_free_order
+ffffffc0084924e0 T sgl_alloc
+ffffffc00849251c T sgl_free_n_order
+ffffffc0084925c8 T sgl_free
+ffffffc008492658 T __sg_page_iter_start
+ffffffc008492674 T __sg_page_iter_next
+ffffffc008492718 T __sg_page_iter_dma_next
+ffffffc0084927c0 T sg_miter_start
+ffffffc0084927fc T sg_miter_skip
+ffffffc008492874 T sg_miter_stop
+ffffffc008492948 t sg_miter_get_next_page
+ffffffc008492a44 T sg_miter_next
+ffffffc008492b14 T sg_copy_buffer
+ffffffc008492e74 T sg_copy_from_buffer
+ffffffc008492ea8 T sg_copy_to_buffer
+ffffffc008492edc T sg_pcopy_from_buffer
+ffffffc008492f0c T sg_pcopy_to_buffer
+ffffffc008492f3c T sg_zero_buffer
+ffffffc008493268 T list_sort
+ffffffc008493540 T generate_random_uuid
+ffffffc00849359c T generate_random_guid
+ffffffc0084935f8 T guid_gen
+ffffffc008493654 T uuid_gen
+ffffffc0084936b0 T uuid_is_valid
+ffffffc00849372c T guid_parse
+ffffffc00849383c T uuid_parse
+ffffffc00849394c T fault_in_iov_iter_readable
+ffffffc008493a54 T fault_in_iov_iter_writeable
+ffffffc008493b5c T iov_iter_init
+ffffffc008493ba0 T _copy_to_iter
+ffffffc008494098 t copy_pipe_to_iter
+ffffffc0084941d0 t copyout
+ffffffc008494338 t xas_next_entry
+ffffffc0084943f8 T _copy_from_iter
+ffffffc0084948e4 t copyin
+ffffffc008494a50 T _copy_from_iter_nocache
+ffffffc008494f3c t __copy_from_user_inatomic_nocache
+ffffffc00849509c T copy_page_to_iter
+ffffffc0084951ec t copy_page_to_iter_pipe
+ffffffc008495384 T copy_page_from_iter
+ffffffc0084954b8 T iov_iter_zero
+ffffffc008495990 t pipe_zero
+ffffffc008495ab0 T copy_page_from_iter_atomic
+ffffffc0084960ac T iov_iter_advance
+ffffffc008496150 t iov_iter_iovec_advance
+ffffffc0084961c8 t iov_iter_bvec_advance
+ffffffc008496240 t pipe_advance
+ffffffc00849641c T iov_iter_revert
+ffffffc008496600 T iov_iter_single_seg_count
+ffffffc00849665c T iov_iter_kvec
+ffffffc0084966a0 T iov_iter_bvec
+ffffffc0084966e4 T iov_iter_pipe
+ffffffc008496734 T iov_iter_xarray
+ffffffc008496774 T iov_iter_discard
+ffffffc0084967a4 T iov_iter_is_aligned
+ffffffc0084968a4 t iov_iter_aligned_iovec
+ffffffc008496958 t iov_iter_aligned_bvec
+ffffffc008496a08 T iov_iter_alignment
+ffffffc008496ad4 t iov_iter_alignment_iovec
+ffffffc008496b74 t iov_iter_alignment_bvec
+ffffffc008496bf8 T iov_iter_gap_alignment
+ffffffc008496c94 T iov_iter_get_pages2
+ffffffc008496d04 t __iov_iter_get_pages_alloc
+ffffffc00849705c T iov_iter_get_pages_alloc2
+ffffffc0084970bc T csum_and_copy_from_iter
+ffffffc008497930 t csum_and_memcpy
+ffffffc0084979a4 T csum_and_copy_to_iter
+ffffffc00849822c t csum_and_copy_to_pipe_iter
+ffffffc008498394 T hash_and_copy_to_iter
+ffffffc00849848c T iov_iter_npages
+ffffffc008498598 t iov_npages
+ffffffc008498654 t bvec_npages
+ffffffc0084986f0 t sanity
+ffffffc008498800 T dup_iter
+ffffffc008498888 T iovec_from_user
+ffffffc008498da4 T __import_iovec
+ffffffc008498f00 T import_iovec
+ffffffc008498f30 T import_single_range
+ffffffc008498fc0 T iov_iter_restore
+ffffffc00849902c t append_pipe
+ffffffc008499184 t want_pages_array
+ffffffc008499204 t pipe_get_pages
+ffffffc0084993c0 t iter_xarray_get_pages
+ffffffc00849967c W __ctzsi2
+ffffffc008499698 W __clzsi2
+ffffffc0084996ac W __clzdi2
+ffffffc0084996c0 W __ctzdi2
+ffffffc0084996d8 T bsearch
+ffffffc008499788 T _find_first_bit
+ffffffc0084997e0 T _find_first_and_bit
+ffffffc00849984c T _find_first_zero_bit
+ffffffc0084998b0 T _find_next_bit
+ffffffc008499920 T __find_nth_bit
+ffffffc008499a2c T __find_nth_and_bit
+ffffffc008499b5c T __find_nth_andnot_bit
+ffffffc008499c8c T _find_next_and_bit
+ffffffc008499d14 T _find_next_andnot_bit
+ffffffc008499d9c T _find_next_zero_bit
+ffffffc008499e14 T _find_last_bit
+ffffffc008499e7c T find_next_clump8
+ffffffc008499f08 T llist_add_batch
+ffffffc008499f80 T llist_del_first
+ffffffc008499ff4 T llist_reverse_order
+ffffffc00849a02c T memweight
+ffffffc00849a248 T __kfifo_alloc
+ffffffc00849a2fc T __kfifo_free
+ffffffc00849a340 T __kfifo_init
+ffffffc00849a39c T __kfifo_in
+ffffffc00849a454 T __kfifo_out_peek
+ffffffc00849a4f8 T __kfifo_out
+ffffffc00849a5a8 T __kfifo_from_user
+ffffffc00849a628 t kfifo_copy_from_user
+ffffffc00849a9e4 T __kfifo_to_user
+ffffffc00849aa60 t kfifo_copy_to_user
+ffffffc00849ade0 T __kfifo_dma_in_prepare
+ffffffc00849ae9c T __kfifo_dma_out_prepare
+ffffffc00849af4c T __kfifo_max_r
+ffffffc00849af74 T __kfifo_len_r
+ffffffc00849afac T __kfifo_in_r
+ffffffc00849b0a8 T __kfifo_out_peek_r
+ffffffc00849b180 T __kfifo_out_r
+ffffffc00849b274 T __kfifo_skip_r
+ffffffc00849b2b8 T __kfifo_from_user_r
+ffffffc00849b394 T __kfifo_to_user_r
+ffffffc00849b454 T __kfifo_dma_in_prepare_r
+ffffffc00849b540 T __kfifo_dma_in_finish_r
+ffffffc00849b5a8 T __kfifo_dma_out_prepare_r
+ffffffc00849b688 T __kfifo_dma_out_finish_r
+ffffffc00849b6c8 t setup_sgl_buf
+ffffffc00849b834 T percpu_ref_init
+ffffffc00849b960 T percpu_ref_exit
+ffffffc00849ba08 T percpu_ref_switch_to_atomic
+ffffffc00849ba80 t __percpu_ref_switch_mode
+ffffffc00849bd58 T percpu_ref_switch_to_atomic_sync
+ffffffc00849be78 T percpu_ref_switch_to_percpu
+ffffffc00849bef0 T percpu_ref_kill_and_confirm
+ffffffc00849c09c T percpu_ref_is_zero
+ffffffc00849c128 T percpu_ref_reinit
+ffffffc00849c1b8 T percpu_ref_resurrect
+ffffffc00849c304 t percpu_ref_noop_confirm_switch
+ffffffc00849c314 t percpu_ref_switch_to_atomic_rcu
+ffffffc00849c61c T rhashtable_insert_slow
+ffffffc00849ccdc T rhashtable_walk_enter
+ffffffc00849cd74 T rhashtable_walk_exit
+ffffffc00849cdf4 T rhashtable_walk_start_check
+ffffffc00849cfc4 T rhashtable_walk_next
+ffffffc00849d058 t __rhashtable_walk_find_next
+ffffffc00849d1f8 T rhashtable_walk_peek
+ffffffc00849d25c T rhashtable_walk_stop
+ffffffc00849d324 t bucket_table_free_rcu
+ffffffc00849d3ac T rhashtable_init
+ffffffc00849d6b8 t jhash
+ffffffc00849d868 t rhashtable_jhash2
+ffffffc00849d998 t bucket_table_alloc
+ffffffc00849dba0 t rht_deferred_worker
+ffffffc00849e194 T rhltable_init
+ffffffc00849e1d4 T rhashtable_free_and_destroy
+ffffffc00849e40c T rhashtable_destroy
+ffffffc00849e440 T __rht_bucket_nested
+ffffffc00849e4c8 T rht_bucket_nested
+ffffffc00849e570 T rht_bucket_nested_insert
+ffffffc00849e764 t rhashtable_rehash_alloc
+ffffffc00849e8e8 t nested_table_free
+ffffffc00849e958 T base64_encode
+ffffffc00849ea6c T base64_decode
+ffffffc00849eb74 T __do_once_start
+ffffffc00849ebdc T __do_once_done
+ffffffc00849ec7c T __do_once_sleepable_start
+ffffffc00849ecd8 T __do_once_sleepable_done
+ffffffc00849ed74 t once_deferred
+ffffffc00849edd8 T refcount_warn_saturate
+ffffffc00849ef30 T refcount_dec_if_one
+ffffffc00849ef88 T refcount_dec_not_one
+ffffffc00849f05c T refcount_dec_and_mutex_lock
+ffffffc00849f1bc T refcount_dec_and_lock
+ffffffc00849f31c T refcount_dec_and_lock_irqsave
+ffffffc00849f490 T check_zeroed_user
+ffffffc00849f7f4 T errseq_set
+ffffffc00849f8d4 T errseq_sample
+ffffffc00849f8f4 T errseq_check
+ffffffc00849f928 T errseq_check_and_advance
+ffffffc00849f9b0 T __alloc_bucket_spinlocks
+ffffffc00849fa84 T free_bucket_spinlocks
+ffffffc00849fab0 T __genradix_ptr
+ffffffc00849fc7c T __genradix_ptr_alloc
+ffffffc00849fe58 T __genradix_iter_peek
+ffffffc00849ff30 T __genradix_prealloc
+ffffffc00849ffa8 T __genradix_free
+ffffffc0084a0004 t genradix_free_recurse
+ffffffc0084a007c T string_get_size
+ffffffc0084a0274 T parse_int_array_user
+ffffffc0084a0364 T string_unescape
+ffffffc0084a0540 T string_escape_mem
+ffffffc0084a08d4 T kstrdup_quotable
+ffffffc0084a09d4 T kstrdup_quotable_cmdline
+ffffffc0084a0b64 T kstrdup_quotable_file
+ffffffc0084a0cf0 T kasprintf_strarray
+ffffffc0084a0dc4 T kfree_strarray
+ffffffc0084a0e2c T devm_kasprintf_strarray
+ffffffc0084a0f4c t devm_kfree_strarray
+ffffffc0084a0fb4 T strscpy_pad
+ffffffc0084a1028 T skip_spaces
+ffffffc0084a1050 T strim
+ffffffc0084a10d0 T sysfs_streq
+ffffffc0084a1164 T match_string
+ffffffc0084a11dc T __sysfs_match_string
+ffffffc0084a1298 T strreplace
+ffffffc0084a12d0 T memcpy_and_pad
+ffffffc0084a1350 T hex_to_bin
+ffffffc0084a13b0 T hex2bin
+ffffffc0084a1478 T bin2hex
+ffffffc0084a14cc T hex_dump_to_buffer
+ffffffc0084a18d4 T print_hex_dump
+ffffffc0084a1a58 T _parse_integer_fixup_radix
+ffffffc0084a1aec T _parse_integer_limit
+ffffffc0084a1b84 T _parse_integer
+ffffffc0084a1bb4 T kstrtoull
+ffffffc0084a1c84 T kstrtoll
+ffffffc0084a1d78 T _kstrtoul
+ffffffc0084a1df4 T _kstrtol
+ffffffc0084a1e70 T kstrtouint
+ffffffc0084a1efc T kstrtoint
+ffffffc0084a1f88 T kstrtou16
+ffffffc0084a2014 T kstrtos16
+ffffffc0084a20a0 T kstrtou8
+ffffffc0084a212c T kstrtos8
+ffffffc0084a21b8 T kstrtobool
+ffffffc0084a225c T kstrtobool_from_user
+ffffffc0084a2448 T kstrtoull_from_user
+ffffffc0084a264c T kstrtoll_from_user
+ffffffc0084a2850 T kstrtoul_from_user
+ffffffc0084a2a54 T kstrtol_from_user
+ffffffc0084a2c58 T kstrtouint_from_user
+ffffffc0084a2e54 T kstrtoint_from_user
+ffffffc0084a3050 T kstrtou16_from_user
+ffffffc0084a3248 T kstrtos16_from_user
+ffffffc0084a3440 T kstrtou8_from_user
+ffffffc0084a3638 T kstrtos8_from_user
+ffffffc0084a3830 T iter_div_u64_rem
+ffffffc0084a38b4 T mul_u64_u64_div_u64
+ffffffc0084a3944 T gcd
+ffffffc0084a39c0 T lcm
+ffffffc0084a3a18 T lcm_not_zero
+ffffffc0084a3a80 T int_pow
+ffffffc0084a3ac8 T int_sqrt
+ffffffc0084a3b2c T reciprocal_value
+ffffffc0084a3b88 T reciprocal_value_adv
+ffffffc0084a3c74 T rational_best_approximation
+ffffffc0084a3d34 T __crypto_memneq
+ffffffc0084a3dbc T __crypto_xor
+ffffffc0084a3e4c T chacha_block_generic
+ffffffc0084a3fc4 t chacha_permute
+ffffffc0084a41cc T hchacha_block_generic
+ffffffc0084a4268 T chacha_crypt_generic
+ffffffc0084a43bc T aes_expandkey
+ffffffc0084a4808 T aes_encrypt
+ffffffc0084a4c9c T aes_decrypt
+ffffffc0084a5208 T blake2s_update
+ffffffc0084a5310 T blake2s_final
+ffffffc0084a53c4 W blake2s_compress
+ffffffc0084a53c4 T blake2s_compress_generic
+ffffffc0084a6874 T des_expand_key
+ffffffc0084a68b8 t des_ekey
+ffffffc0084a718c T des_encrypt
+ffffffc0084a73e0 T des_decrypt
+ffffffc0084a7634 T des3_ede_expand_key
+ffffffc0084a7f7c T des3_ede_encrypt
+ffffffc0084a83c0 T des3_ede_decrypt
+ffffffc0084a87fc T poly1305_core_setkey
+ffffffc0084a8848 T poly1305_core_blocks
+ffffffc0084a8968 T poly1305_core_emit
+ffffffc0084a8a50 T poly1305_init_generic
+ffffffc0084a8acc T poly1305_update_generic
+ffffffc0084a8bcc T poly1305_final_generic
+ffffffc0084a8c84 T sha1_transform
+ffffffc0084a8fcc T sha1_init
+ffffffc0084a900c T sha256_update
+ffffffc0084a971c T sha224_update
+ffffffc0084a9748 T sha256_final
+ffffffc0084a986c T sha224_final
+ffffffc0084a9984 T sha256
+ffffffc0084a9af8 T pci_iomap_range
+ffffffc0084a9bb4 T pci_iomap_wc_range
+ffffffc0084a9c60 T pci_iomap
+ffffffc0084a9d20 T pci_iomap_wc
+ffffffc0084a9dcc T pci_iounmap
+ffffffc0084a9e24 W __iowrite32_copy
+ffffffc0084a9e58 T __ioread32_copy
+ffffffc0084a9e90 W __iowrite64_copy
+ffffffc0084a9ec4 T devm_ioremap_release
+ffffffc0084a9ef4 T devm_ioremap
+ffffffc0084a9fb8 T devm_ioremap_uc
+ffffffc0084aa00c T devm_ioremap_wc
+ffffffc0084aa0d0 T devm_iounmap
+ffffffc0084aa130 t devm_ioremap_match
+ffffffc0084aa14c T devm_ioremap_resource
+ffffffc0084aa178 t __devm_ioremap_resource.llvm.15879579467188007783
+ffffffc0084aa3b4 T devm_ioremap_resource_wc
+ffffffc0084aa3e4 T devm_of_iomap
+ffffffc0084aa4a4 T devm_ioport_map
+ffffffc0084aa530 t devm_ioport_map_release
+ffffffc0084aa540 T devm_ioport_unmap
+ffffffc0084aa58c t devm_ioport_map_match
+ffffffc0084aa5a8 T pcim_iomap_table
+ffffffc0084aa630 t pcim_iomap_release
+ffffffc0084aa6c8 T pcim_iomap
+ffffffc0084aa7b0 T pcim_iounmap
+ffffffc0084aa8d0 T pcim_iomap_regions
+ffffffc0084aaaf0 T pcim_iomap_regions_request_all
+ffffffc0084aab80 T pcim_iounmap_regions
+ffffffc0084aace8 T devm_arch_phys_wc_add
+ffffffc0084aad5c t devm_arch_phys_ac_add_release
+ffffffc0084aad6c T devm_arch_io_reserve_memtype_wc
+ffffffc0084aadf0 t devm_arch_io_free_memtype_wc_release
+ffffffc0084aae00 T __traceiter_rwmmio_write
+ffffffc0084aaeb0 T __traceiter_rwmmio_post_write
+ffffffc0084aaf60 T __traceiter_rwmmio_read
+ffffffc0084ab008 T __traceiter_rwmmio_post_read
+ffffffc0084ab0b8 t trace_event_raw_event_rwmmio_rw_template
+ffffffc0084ab19c t perf_trace_rwmmio_rw_template
+ffffffc0084ab2d0 t trace_event_raw_event_rwmmio_read
+ffffffc0084ab3a8 t perf_trace_rwmmio_read
+ffffffc0084ab4d8 t trace_event_raw_event_rwmmio_post_read
+ffffffc0084ab5bc t perf_trace_rwmmio_post_read
+ffffffc0084ab6f0 T log_write_mmio
+ffffffc0084ab814 T log_post_write_mmio
+ffffffc0084ab938 T log_read_mmio
+ffffffc0084aba54 T log_post_read_mmio
+ffffffc0084abb78 t trace_raw_output_rwmmio_rw_template
+ffffffc0084abbf4 t trace_raw_output_rwmmio_read
+ffffffc0084abc70 t trace_raw_output_rwmmio_post_read
+ffffffc0084abcec T __sw_hweight32
+ffffffc0084abd2c T __sw_hweight16
+ffffffc0084abd68 T __sw_hweight8
+ffffffc0084abd9c T __sw_hweight64
+ffffffc0084abddc T __list_add_valid
+ffffffc0084abea4 T __list_del_entry_valid
+ffffffc0084abf84 T crc16
+ffffffc0084abfc0 T crc32_le_base
+ffffffc0084ac1f0 T __crc32c_le_base
+ffffffc0084ac420 T crc32_be_base
+ffffffc0084ac658 T crc32_le_shift
+ffffffc0084ac730 T __crc32c_le_shift
+ffffffc0084ac808 T crc32c
+ffffffc0084ac8c4 T crc32c_impl
+ffffffc0084ac8e4 T xxh32_copy_state
+ffffffc0084ac914 T xxh64_copy_state
+ffffffc0084ac94c T xxh32
+ffffffc0084aca94 T xxh64
+ffffffc0084acca8 T xxh32_reset
+ffffffc0084accf0 T xxh64_reset
+ffffffc0084acd50 T xxh32_update
+ffffffc0084acf08 T xxh32_digest
+ffffffc0084ad004 T xxh64_update
+ffffffc0084ad1c0 T xxh64_digest
+ffffffc0084ad364 T gen_pool_create
+ffffffc0084ad3d8 T gen_pool_first_fit
+ffffffc0084ad40c T gen_pool_add_owner
+ffffffc0084ad4e0 T gen_pool_virt_to_phys
+ffffffc0084ad570 T gen_pool_destroy
+ffffffc0084ad648 T gen_pool_alloc_algo_owner
+ffffffc0084ad910 t bitmap_clear_ll
+ffffffc0084ada4c T gen_pool_dma_alloc
+ffffffc0084adb08 T gen_pool_dma_alloc_algo
+ffffffc0084adbc8 T gen_pool_dma_alloc_align
+ffffffc0084adcbc T gen_pool_first_fit_align
+ffffffc0084add18 T gen_pool_dma_zalloc
+ffffffc0084adde8 T gen_pool_dma_zalloc_algo
+ffffffc0084adebc T gen_pool_dma_zalloc_align
+ffffffc0084adfc4 T gen_pool_free_owner
+ffffffc0084ae0f0 T gen_pool_for_each_chunk
+ffffffc0084ae190 T gen_pool_has_addr
+ffffffc0084ae23c T gen_pool_avail
+ffffffc0084ae2bc T gen_pool_size
+ffffffc0084ae33c T gen_pool_set_algo
+ffffffc0084ae39c T gen_pool_fixed_alloc
+ffffffc0084ae414 T gen_pool_first_fit_order_align
+ffffffc0084ae460 T gen_pool_best_fit
+ffffffc0084ae53c T gen_pool_get
+ffffffc0084ae584 t devm_gen_pool_release
+ffffffc0084ae5b4 t devm_gen_pool_match
+ffffffc0084ae60c T devm_gen_pool_create
+ffffffc0084ae734 T of_gen_pool_get
+ffffffc0084ae880 T inflate_fast
+ffffffc0084aed30 T zlib_inflate_workspacesize
+ffffffc0084aed44 T zlib_inflateReset
+ffffffc0084aedbc T zlib_inflateInit2
+ffffffc0084aee6c T zlib_inflate
+ffffffc0084b0264 t zlib_adler32
+ffffffc0084b03ec T zlib_inflateEnd
+ffffffc0084b0418 T zlib_inflateIncomp
+ffffffc0084b0584 T zlib_inflate_blob
+ffffffc0084b067c T zlib_inflate_table
+ffffffc0084b0e18 T zlib_deflateInit2
+ffffffc0084b0f70 T zlib_deflateReset
+ffffffc0084b10c8 T zlib_deflate
+ffffffc0084b1500 t flush_pending
+ffffffc0084b15a8 T zlib_deflateEnd
+ffffffc0084b15fc T zlib_deflate_workspacesize
+ffffffc0084b164c T zlib_deflate_dfltcc_enabled
+ffffffc0084b1660 t deflate_stored
+ffffffc0084b1964 t deflate_fast
+ffffffc0084b1d30 t deflate_slow
+ffffffc0084b2230 t fill_window
+ffffffc0084b26a8 t longest_match
+ffffffc0084b28c0 T zlib_tr_init
+ffffffc0084b2d90 t init_block
+ffffffc0084b2e98 T zlib_tr_stored_block
+ffffffc0084b303c T zlib_tr_stored_type_only
+ffffffc0084b3124 T zlib_tr_align
+ffffffc0084b344c T zlib_tr_flush_block
+ffffffc0084b3d34 t build_tree
+ffffffc0084b4230 t compress_block
+ffffffc0084b460c T zlib_tr_tally
+ffffffc0084b4750 t gen_codes
+ffffffc0084b4910 t pqdownheap
+ffffffc0084b4a50 t send_tree
+ffffffc0084b4f30 T free_rs
+ffffffc0084b4fe8 T init_rs_gfp
+ffffffc0084b5024 t init_rs_internal.llvm.10474325361430846915
+ffffffc0084b5510 T init_rs_non_canonical
+ffffffc0084b5554 T decode_rs8
+ffffffc0084b60e8 T lzo1x_1_compress
+ffffffc0084b6118 t lzogeneric1x_1_compress.llvm.17267447200353567903
+ffffffc0084b6388 T lzorle1x_1_compress
+ffffffc0084b63b8 t lzo1x_1_do_compress
+ffffffc0084b69a8 T lzo1x_decompress_safe
+ffffffc0084b6f48 T LZ4_compress_fast
+ffffffc0084b6f8c t LZ4_compress_fast_extState.llvm.14328727393934517847
+ffffffc0084b8348 T LZ4_compress_default
+ffffffc0084b8390 T LZ4_compress_destSize
+ffffffc0084b8480 T LZ4_resetStream
+ffffffc0084b84b4 T LZ4_loadDict
+ffffffc0084b85a4 T LZ4_saveDict
+ffffffc0084b8624 T LZ4_compress_fast_continue
+ffffffc0084ba040 t LZ4_compress_destSize_generic
+ffffffc0084ba774 T LZ4_decompress_safe
+ffffffc0084baa68 T LZ4_decompress_safe_partial
+ffffffc0084bae28 T LZ4_decompress_fast
+ffffffc0084bb080 T LZ4_setStreamDecode
+ffffffc0084bb0ac T LZ4_decompress_safe_continue
+ffffffc0084bb64c t LZ4_decompress_safe_withPrefix64k
+ffffffc0084bb938 t LZ4_decompress_safe_withSmallPrefix
+ffffffc0084bbc2c t LZ4_decompress_safe_forceExtDict
+ffffffc0084bc07c T LZ4_decompress_fast_continue
+ffffffc0084bc49c t LZ4_decompress_fast_extDict
+ffffffc0084bc7dc T LZ4_decompress_safe_usingDict
+ffffffc0084bc848 T LZ4_decompress_fast_usingDict
+ffffffc0084bc890 T zstd_min_clevel
+ffffffc0084bc8a4 T zstd_max_clevel
+ffffffc0084bc8b8 T zstd_compress_bound
+ffffffc0084bc8e4 T zstd_get_params
+ffffffc0084bc914 T zstd_cctx_workspace_bound
+ffffffc0084bc988 T zstd_init_cctx
+ffffffc0084bc9b8 T zstd_compress_cctx
+ffffffc0084bca34 t zstd_cctx_init
+ffffffc0084bcb94 T zstd_cstream_workspace_bound
+ffffffc0084bcc08 T zstd_init_cstream
+ffffffc0084bcc80 T zstd_reset_cstream
+ffffffc0084bccac T zstd_compress_stream
+ffffffc0084bccd8 T zstd_flush_stream
+ffffffc0084bcd04 T zstd_end_stream
+ffffffc0084bcd30 T FSE_buildCTable_wksp
+ffffffc0084bcf3c T FSE_NCountWriteBound
+ffffffc0084bcf64 T FSE_writeNCount
+ffffffc0084bd1c4 T FSE_createCTable
+ffffffc0084bd1d8 T FSE_freeCTable
+ffffffc0084bd1e8 T FSE_optimalTableLog_internal
+ffffffc0084bd25c T FSE_optimalTableLog
+ffffffc0084bd2d0 T FSE_normalizeCount
+ffffffc0084bd618 T FSE_buildCTable_raw
+ffffffc0084bd730 T FSE_buildCTable_rle
+ffffffc0084bd760 T FSE_compress_usingCTable
+ffffffc0084bdbec T FSE_compressBound
+ffffffc0084bdc04 T HIST_isError
+ffffffc0084bdc1c T HIST_count_simple
+ffffffc0084bdd48 T HIST_countFast_wksp
+ffffffc0084bdec4 t HIST_count_parallel_wksp
+ffffffc0084be1c8 T HIST_count_wksp
+ffffffc0084be364 T HUF_optimalTableLog
+ffffffc0084be394 T HUF_writeCTable_wksp
+ffffffc0084be6d0 T HUF_writeCTable
+ffffffc0084be780 T HUF_readCTable
+ffffffc0084beb38 T HUF_getNbBits
+ffffffc0084beb50 T HUF_buildCTable_wksp
+ffffffc0084bf370 T HUF_estimateCompressedSize
+ffffffc0084bf420 T HUF_validateCTable
+ffffffc0084bf4ec T HUF_compressBound
+ffffffc0084bf504 T HUF_compress1X_usingCTable
+ffffffc0084bf52c t HUF_compress1X_usingCTable_internal.llvm.7192228922012951447
+ffffffc0084bf6e4 T HUF_compress4X_usingCTable
+ffffffc0084bf70c t HUF_compress4X_usingCTable_internal.llvm.7192228922012951447
+ffffffc0084bf840 T HUF_compress1X_wksp
+ffffffc0084bf888 t HUF_compress_internal.llvm.7192228922012951447
+ffffffc0084bfd44 T HUF_compress1X_repeat
+ffffffc0084bfd98 T HUF_compress4X_wksp
+ffffffc0084bfde4 T HUF_compress4X_repeat
+ffffffc0084bfe34 t HUF_compressCTable_internal
+ffffffc0084bfec4 T ZSTD_compressBound
+ffffffc0084bfef0 T ZSTD_createCCtx
+ffffffc0084bffc0 T ZSTD_createCCtx_advanced
+ffffffc0084c00e4 T ZSTD_initStaticCCtx
+ffffffc0084c0224 T ZSTD_freeCCtx
+ffffffc0084c0328 T ZSTD_sizeof_CCtx
+ffffffc0084c0390 T ZSTD_sizeof_CStream
+ffffffc0084c03f8 T ZSTD_getSeqStore
+ffffffc0084c040c T ZSTD_createCCtxParams
+ffffffc0084c04b4 T ZSTD_freeCCtxParams
+ffffffc0084c0528 T ZSTD_CCtxParams_reset
+ffffffc0084c058c T ZSTD_CCtxParams_init
+ffffffc0084c05ec T ZSTD_CCtxParams_init_advanced
+ffffffc0084c06dc T ZSTD_checkCParams
+ffffffc0084c076c T ZSTD_cParam_getBounds
+ffffffc0084c0968 T ZSTD_minCLevel
+ffffffc0084c097c T ZSTD_maxCLevel
+ffffffc0084c0990 T ZSTD_CCtx_setParameter
+ffffffc0084c0a84 T ZSTD_CCtxParams_setParameter
+ffffffc0084c0e7c T ZSTD_CCtx_getParameter
+ffffffc0084c0eac T ZSTD_CCtxParams_getParameter
+ffffffc0084c107c T ZSTD_CCtx_setParametersUsingCCtxParams
+ffffffc0084c10cc T ZSTD_CCtx_setPledgedSrcSize
+ffffffc0084c10fc T ZSTD_CCtx_loadDictionary_advanced
+ffffffc0084c1200 t ZSTD_clearAllDicts
+ffffffc0084c1350 T ZSTD_CCtx_loadDictionary_byReference
+ffffffc0084c13c4 T ZSTD_CCtx_loadDictionary
+ffffffc0084c14ac T ZSTD_CCtx_refCDict
+ffffffc0084c1500 T ZSTD_CCtx_refThreadPool
+ffffffc0084c152c T ZSTD_CCtx_refPrefix
+ffffffc0084c15a4 T ZSTD_CCtx_refPrefix_advanced
+ffffffc0084c161c T ZSTD_CCtx_reset
+ffffffc0084c16e0 T ZSTD_cycleLog
+ffffffc0084c16fc T ZSTD_adjustCParams
+ffffffc0084c18cc T ZSTD_getCParamsFromCCtxParams
+ffffffc0084c1ad0 t ZSTD_getCParams_internal
+ffffffc0084c1c90 T ZSTD_estimateCCtxSize_usingCCtxParams
+ffffffc0084c1e58 t ZSTD_estimateCCtxSize_usingCCtxParams_internal
+ffffffc0084c2034 T ZSTD_estimateCCtxSize_usingCParams
+ffffffc0084c2130 T ZSTD_estimateCCtxSize
+ffffffc0084c2404 T ZSTD_estimateCStreamSize_usingCCtxParams
+ffffffc0084c24fc T ZSTD_estimateCStreamSize_usingCParams
+ffffffc0084c27dc T ZSTD_estimateCStreamSize
+ffffffc0084c28f8 T ZSTD_getFrameProgression
+ffffffc0084c2930 T ZSTD_toFlushNow
+ffffffc0084c2944 T ZSTD_reset_compressedBlockState
+ffffffc0084c2978 T ZSTD_invalidateRepCodes
+ffffffc0084c29a0 T ZSTD_copyCCtx
+ffffffc0084c2bdc T ZSTD_seqToCodes
+ffffffc0084c2cd4 T ZSTD_selectBlockCompressor
+ffffffc0084c2d10 T ZSTD_resetSeqStore
+ffffffc0084c2d34 T ZSTD_generateSequences
+ffffffc0084c2e64 T ZSTD_compress2
+ffffffc0084c2f1c T ZSTD_mergeBlockDelimiters
+ffffffc0084c2f94 T ZSTD_writeSkippableFrame
+ffffffc0084c3020 T ZSTD_writeLastEmptyBlock
+ffffffc0084c3058 T ZSTD_referenceExternalSequences
+ffffffc0084c30b0 T ZSTD_compressContinue
+ffffffc0084c30e0 t ZSTD_compressContinue_internal
+ffffffc0084c3670 T ZSTD_getBlockSize
+ffffffc0084c3698 T ZSTD_compressBlock
+ffffffc0084c36f4 T ZSTD_loadCEntropy
+ffffffc0084c3b74 T ZSTD_compressBegin_advanced_internal
+ffffffc0084c3c20 t ZSTD_compressBegin_internal
+ffffffc0084c4038 T ZSTD_compressBegin_advanced
+ffffffc0084c4288 T ZSTD_compressBegin_usingDict
+ffffffc0084c44e8 T ZSTD_compressBegin
+ffffffc0084c4620 T ZSTD_CCtx_trace
+ffffffc0084c4630 T ZSTD_compressEnd
+ffffffc0084c47cc T ZSTD_compress_advanced
+ffffffc0084c4900 T ZSTD_compress_advanced_internal
+ffffffc0084c4ab8 T ZSTD_compress_usingDict
+ffffffc0084c4c14 T ZSTD_compressCCtx
+ffffffc0084c4e08 T ZSTD_compress
+ffffffc0084c4fa8 T ZSTD_estimateCDictSize_advanced
+ffffffc0084c5004 T ZSTD_estimateCDictSize
+ffffffc0084c50bc T ZSTD_sizeof_CDict
+ffffffc0084c50ec T ZSTD_createCDict_advanced
+ffffffc0084c51b0 T ZSTD_createCDict_advanced2
+ffffffc0084c551c t ZSTD_initCDict_internal
+ffffffc0084c56f4 T ZSTD_freeCDict
+ffffffc0084c5804 T ZSTD_createCDict
+ffffffc0084c591c T ZSTD_createCDict_byReference
+ffffffc0084c5a34 T ZSTD_initStaticCDict
+ffffffc0084c5bc0 T ZSTD_getCParamsFromCDict
+ffffffc0084c5be8 T ZSTD_getDictID_fromCDict
+ffffffc0084c5c04 T ZSTD_compressBegin_usingCDict_advanced
+ffffffc0084c5db4 T ZSTD_getCParams
+ffffffc0084c5dec T ZSTD_compressBegin_usingCDict
+ffffffc0084c5ec0 T ZSTD_compress_usingCDict_advanced
+ffffffc0084c5f44 T ZSTD_compress_usingCDict
+ffffffc0084c5fc8 T ZSTD_createCStream
+ffffffc0084c6098 T ZSTD_createCStream_advanced
+ffffffc0084c61a4 T ZSTD_initStaticCStream
+ffffffc0084c62e4 T ZSTD_freeCStream
+ffffffc0084c63e8 T ZSTD_CStreamInSize
+ffffffc0084c63fc T ZSTD_CStreamOutSize
+ffffffc0084c6414 T ZSTD_resetCStream
+ffffffc0084c643c T ZSTD_initCStream_internal
+ffffffc0084c6548 T ZSTD_initCStream_usingCDict_advanced
+ffffffc0084c65a0 T ZSTD_initCStream_usingCDict
+ffffffc0084c65ec T ZSTD_initCStream_advanced
+ffffffc0084c6784 T ZSTD_initCStream_usingDict
+ffffffc0084c6894 T ZSTD_initCStream_srcSize
+ffffffc0084c6958 T ZSTD_initCStream
+ffffffc0084c69e0 T ZSTD_compressStream
+ffffffc0084c6a38 T ZSTD_compressStream2
+ffffffc0084c6f38 t ZSTD_CCtx_init_compressStream2
+ffffffc0084c719c T ZSTD_compressStream2_simpleArgs
+ffffffc0084c7238 T ZSTD_compressSequences
+ffffffc0084c75dc t ZSTD_writeFrameHeader
+ffffffc0084c775c T ZSTD_flushStream
+ffffffc0084c77c4 T ZSTD_endStream
+ffffffc0084c7878 T ZSTD_getParams
+ffffffc0084c7914 t ZSTD_resetCCtx_internal
+ffffffc0084c81c0 t ZSTD_reset_matchState
+ffffffc0084c878c t ZSTD_overflowCorrectIfNeeded
+ffffffc0084c8b20 t ZSTD_compressBlock_internal
+ffffffc0084c8c98 t ZSTD_reduceTable
+ffffffc0084c8e28 t ZSTD_buildSeqStore
+ffffffc0084c90a0 t ZSTD_isRLE
+ffffffc0084c9218 t ZSTD_copyBlockSequences
+ffffffc0084c9438 t ZSTD_entropyCompressSequences
+ffffffc0084c9ae8 t ZSTD_compress_insertDictionary
+ffffffc0084c9c30 t ZSTD_loadDictionaryContent
+ffffffc0084c9ee8 t ZSTD_copySequencesToSeqStoreExplicitBlockDelim
+ffffffc0084ca2c8 t ZSTD_copySequencesToSeqStoreNoBlockDelim
+ffffffc0084ca720 T ZSTD_noCompressLiterals
+ffffffc0084ca7cc T ZSTD_compressRleLiteralsBlock
+ffffffc0084ca844 T ZSTD_compressLiterals
+ffffffc0084cab84 T ZSTD_fseBitCost
+ffffffc0084cac3c T ZSTD_crossEntropyCost
+ffffffc0084cacac T ZSTD_selectEncodingType
+ffffffc0084cafcc T ZSTD_buildCTable
+ffffffc0084cb18c T ZSTD_encodeSequences
+ffffffc0084cb718 T ZSTD_compressSuperBlock
+ffffffc0084cc950 T ZSTD_fillDoubleHashTable
+ffffffc0084ccae0 T ZSTD_compressBlock_doubleFast
+ffffffc0084cf7a0 T ZSTD_compressBlock_doubleFast_dictMatchState
+ffffffc0084d2cfc T ZSTD_compressBlock_doubleFast_extDict
+ffffffc0084d452c t ZSTD_count_2segments
+ffffffc0084d4730 t ZSTD_count_2segments
+ffffffc0084d4934 t ZSTD_count_2segments
+ffffffc0084d4b38 t ZSTD_count_2segments
+ffffffc0084d4d40 T ZSTD_fillHashTable
+ffffffc0084d4f88 T ZSTD_compressBlock_fast
+ffffffc0084d68ec T ZSTD_compressBlock_fast_dictMatchState
+ffffffc0084d8b1c T ZSTD_compressBlock_fast_extDict
+ffffffc0084d9ba8 T ZSTD_insertAndFindFirstIndex
+ffffffc0084d9d90 T ZSTD_dedicatedDictSearch_lazy_loadDictionary
+ffffffc0084da114 T ZSTD_compressBlock_btlazy2
+ffffffc0084daa8c T ZSTD_compressBlock_lazy2
+ffffffc0084dc710 T ZSTD_compressBlock_lazy
+ffffffc0084ddbc4 T ZSTD_compressBlock_greedy
+ffffffc0084de7c8 T ZSTD_compressBlock_btlazy2_dictMatchState
+ffffffc0084deeb0 T ZSTD_compressBlock_lazy2_dictMatchState
+ffffffc0084df598 T ZSTD_compressBlock_lazy_dictMatchState
+ffffffc0084dfc0c T ZSTD_compressBlock_greedy_dictMatchState
+ffffffc0084e0098 T ZSTD_compressBlock_lazy2_dedicatedDictSearch
+ffffffc0084e0780 T ZSTD_compressBlock_lazy_dedicatedDictSearch
+ffffffc0084e0df4 T ZSTD_compressBlock_greedy_dedicatedDictSearch
+ffffffc0084e1280 T ZSTD_compressBlock_greedy_extDict
+ffffffc0084e2048 T ZSTD_compressBlock_lazy_extDict
+ffffffc0084e39b4 T ZSTD_compressBlock_lazy2_extDict
+ffffffc0084e5b98 T ZSTD_compressBlock_btlazy2_extDict
+ffffffc0084e6360 t ZSTD_BtFindBestMatch_selectMLS
+ffffffc0084e7738 t ZSTD_HcFindBestMatch_dictMatchState_selectMLS
+ffffffc0084e8140 t ZSTD_BtFindBestMatch_dictMatchState_selectMLS
+ffffffc0084e9bac t ZSTD_HcFindBestMatch_dedicatedDictSearch_selectMLS
+ffffffc0084eabc4 t ZSTD_BtFindBestMatch_extDict_selectMLS
+ffffffc0084ec440 T ZSTD_ldm_adjustParameters
+ffffffc0084ec4c0 T ZSTD_ldm_getTableSize
+ffffffc0084ec500 T ZSTD_ldm_getMaxNbSeq
+ffffffc0084ec52c T ZSTD_ldm_fillHashTable
+ffffffc0084ec6e0 t ZSTD_ldm_gear_feed
+ffffffc0084ec888 T ZSTD_ldm_generateSequences
+ffffffc0084ed390 T ZSTD_ldm_skipSequences
+ffffffc0084ed450 T ZSTD_ldm_skipRawSeqStoreBytes
+ffffffc0084ed4e0 T ZSTD_ldm_blockCompress
+ffffffc0084eda10 T ZSTD_updateTree
+ffffffc0084eda40 t ZSTD_updateTree_internal.llvm.2384134326847309684
+ffffffc0084edef4 T ZSTD_compressBlock_btopt
+ffffffc0084edf24 t ZSTD_compressBlock_opt_generic
+ffffffc0084ef460 T ZSTD_compressBlock_btultra
+ffffffc0084ef494 T ZSTD_compressBlock_btultra2
+ffffffc0084ef6a4 T ZSTD_compressBlock_btopt_dictMatchState
+ffffffc0084ef6d8 T ZSTD_compressBlock_btultra_dictMatchState
+ffffffc0084ef70c T ZSTD_compressBlock_btopt_extDict
+ffffffc0084ef740 T ZSTD_compressBlock_btultra_extDict
+ffffffc0084ef770 t ZSTD_opt_getNextMatchAndUpdateSeqStore
+ffffffc0084ef910 t ZSTD_optLdm_processMatchCandidate
+ffffffc0084efa6c t ZSTD_getMatchPrice
+ffffffc0084efbb8 t ZSTD_setBasePrices
+ffffffc0084efc8c t ZSTD_insertBtAndGetAllMatches
+ffffffc0084f08e0 T zstd_is_error
+ffffffc0084f08f8 T zstd_get_error_code
+ffffffc0084f0910 T zstd_get_error_name
+ffffffc0084f093c T zstd_dctx_workspace_bound
+ffffffc0084f0954 T zstd_init_dctx
+ffffffc0084f0984 T zstd_decompress_dctx
+ffffffc0084f09b0 T zstd_dstream_workspace_bound
+ffffffc0084f09d8 T zstd_init_dstream
+ffffffc0084f0a18 T zstd_reset_dstream
+ffffffc0084f0a44 T zstd_decompress_stream
+ffffffc0084f0a70 T zstd_find_frame_compressed_size
+ffffffc0084f0a9c T zstd_get_frame_header
+ffffffc0084f0acc T HUF_readDTableX1_wksp
+ffffffc0084f0afc T HUF_readDTableX1_wksp_bmi2
+ffffffc0084f1124 T HUF_decompress1X1_usingDTable
+ffffffc0084f115c t HUF_decompress1X1_usingDTable_internal
+ffffffc0084f13ac T HUF_decompress1X1_DCtx_wksp
+ffffffc0084f1448 T HUF_decompress4X1_usingDTable
+ffffffc0084f1480 t HUF_decompress4X1_usingDTable_internal
+ffffffc0084f2090 T HUF_decompress4X1_DCtx_wksp
+ffffffc0084f212c T HUF_readDTableX2_wksp
+ffffffc0084f2880 T HUF_decompress1X2_usingDTable
+ffffffc0084f28c0 t HUF_decompress1X2_usingDTable_internal
+ffffffc0084f2bec T HUF_decompress1X2_DCtx_wksp
+ffffffc0084f2c84 T HUF_decompress4X2_usingDTable
+ffffffc0084f2cc4 t HUF_decompress4X2_usingDTable_internal
+ffffffc0084f3d1c T HUF_decompress4X2_DCtx_wksp
+ffffffc0084f3db4 T HUF_decompress1X_usingDTable
+ffffffc0084f3df0 T HUF_decompress4X_usingDTable
+ffffffc0084f3e2c T HUF_selectDecoder
+ffffffc0084f3ec0 T HUF_decompress4X_hufOnly_wksp
+ffffffc0084f4030 T HUF_decompress1X_DCtx_wksp
+ffffffc0084f41dc T HUF_decompress1X_usingDTable_bmi2
+ffffffc0084f4218 T HUF_decompress1X1_DCtx_wksp_bmi2
+ffffffc0084f42b4 T HUF_decompress4X_usingDTable_bmi2
+ffffffc0084f42f0 T HUF_decompress4X_hufOnly_wksp_bmi2
+ffffffc0084f445c t BIT_initDStream
+ffffffc0084f4580 T ZSTD_DDict_dictContent
+ffffffc0084f4594 T ZSTD_DDict_dictSize
+ffffffc0084f45a8 T ZSTD_copyDDictParameters
+ffffffc0084f4650 T ZSTD_createDDict_advanced
+ffffffc0084f4848 T ZSTD_freeDDict
+ffffffc0084f4900 T ZSTD_createDDict
+ffffffc0084f496c T ZSTD_createDDict_byReference
+ffffffc0084f49d8 T ZSTD_initStaticDDict
+ffffffc0084f4aec T ZSTD_estimateDDictSize
+ffffffc0084f4b0c T ZSTD_sizeof_DDict
+ffffffc0084f4b40 T ZSTD_getDictID_fromDDict
+ffffffc0084f4b78 T ZSTD_sizeof_DCtx
+ffffffc0084f4bd0 T ZSTD_estimateDCtxSize
+ffffffc0084f4be8 T ZSTD_initStaticDCtx
+ffffffc0084f4c90 T ZSTD_createDCtx_advanced
+ffffffc0084f4db0 T ZSTD_createDCtx
+ffffffc0084f4e90 T ZSTD_freeDCtx
+ffffffc0084f4fb8 T ZSTD_copyDCtx
+ffffffc0084f4fe8 T ZSTD_isFrame
+ffffffc0084f5038 T ZSTD_frameHeaderSize
+ffffffc0084f50a4 T ZSTD_getFrameHeader_advanced
+ffffffc0084f52a4 T ZSTD_getFrameHeader
+ffffffc0084f52d4 T ZSTD_getFrameContentSize
+ffffffc0084f5364 T ZSTD_findDecompressedSize
+ffffffc0084f54b0 T ZSTD_findFrameCompressedSize
+ffffffc0084f54dc T ZSTD_getDecompressedSize
+ffffffc0084f5570 t ZSTD_findFrameSizeInfo.llvm.11079140678990311640
+ffffffc0084f5708 T ZSTD_decompressBound
+ffffffc0084f5788 T ZSTD_insertBlock
+ffffffc0084f57dc T ZSTD_decompress_usingDict
+ffffffc0084f5808 t ZSTD_decompressMultiFrame
+ffffffc0084f5ea8 T ZSTD_decompressDCtx
+ffffffc0084f5f64 T ZSTD_decompress_usingDDict
+ffffffc0084f5f98 t ZSTD_getDDict
+ffffffc0084f6014 T ZSTD_decompress
+ffffffc0084f6170 T ZSTD_nextSrcSizeToDecompress
+ffffffc0084f6184 T ZSTD_nextInputType
+ffffffc0084f61c0 T ZSTD_decompressContinue
+ffffffc0084f66c0 t ZSTD_decodeFrameHeader
+ffffffc0084f6858 T ZSTD_loadDEntropy
+ffffffc0084f6b1c T ZSTD_decompressBegin
+ffffffc0084f6bc4 T ZSTD_decompressBegin_usingDict
+ffffffc0084f6d30 T ZSTD_decompressBegin_usingDDict
+ffffffc0084f6e0c T ZSTD_getDictID_fromDict
+ffffffc0084f6e48 T ZSTD_getDictID_fromFrame
+ffffffc0084f6ec8 T ZSTD_createDStream
+ffffffc0084f6fa8 T ZSTD_createDStream_advanced
+ffffffc0084f70c0 T ZSTD_initStaticDStream
+ffffffc0084f7168 T ZSTD_freeDStream
+ffffffc0084f7194 T ZSTD_DStreamInSize
+ffffffc0084f71ac T ZSTD_DStreamOutSize
+ffffffc0084f71c0 T ZSTD_DCtx_loadDictionary_advanced
+ffffffc0084f72c8 T ZSTD_DCtx_loadDictionary_byReference
+ffffffc0084f73c0 T ZSTD_DCtx_loadDictionary
+ffffffc0084f74b8 T ZSTD_DCtx_refPrefix_advanced
+ffffffc0084f75b4 T ZSTD_DCtx_refPrefix
+ffffffc0084f76a4 T ZSTD_initDStream_usingDict
+ffffffc0084f7798 T ZSTD_DCtx_reset
+ffffffc0084f783c T ZSTD_initDStream
+ffffffc0084f78a4 T ZSTD_initDStream_usingDDict
+ffffffc0084f7900 T ZSTD_DCtx_refDDict
+ffffffc0084f7c04 T ZSTD_resetDStream
+ffffffc0084f7c34 T ZSTD_DCtx_setMaxWindowSize
+ffffffc0084f7c80 T ZSTD_dParam_getBounds
+ffffffc0084f7ce0 T ZSTD_DCtx_setFormat
+ffffffc0084f7d28 T ZSTD_DCtx_setParameter
+ffffffc0084f7e3c T ZSTD_DCtx_getParameter
+ffffffc0084f7ed4 T ZSTD_sizeof_DStream
+ffffffc0084f7f2c T ZSTD_decodingBufferSize_min
+ffffffc0084f7f58 T ZSTD_estimateDStreamSize
+ffffffc0084f7f80 T ZSTD_estimateDStreamSize_fromFrame
+ffffffc0084f8038 T ZSTD_decompressStream
+ffffffc0084f8b24 T ZSTD_decompressStream_simpleArgs
+ffffffc0084f8bbc T ZSTD_getcBlockSize
+ffffffc0084f8c1c T ZSTD_decodeLiteralsBlock
+ffffffc0084f8f58 T ZSTD_buildFSETable
+ffffffc0084f91d4 T ZSTD_decodeSeqHeaders
+ffffffc0084f93f8 t ZSTD_buildSeqTable
+ffffffc0084f95dc T ZSTD_decompressBlock_internal
+ffffffc0084fa6fc t ZSTD_decompressSequences
+ffffffc0084fb030 T ZSTD_checkContinuity
+ffffffc0084fb06c T ZSTD_decompressBlock
+ffffffc0084fb0e4 t ZSTD_execSequenceEnd
+ffffffc0084fb394 T FSE_versionNumber
+ffffffc0084fb3a8 T FSE_isError
+ffffffc0084fb3c0 T FSE_getErrorName
+ffffffc0084fb3f4 T HUF_isError
+ffffffc0084fb40c T HUF_getErrorName
+ffffffc0084fb440 T FSE_readNCount_bmi2
+ffffffc0084fb468 t FSE_readNCount_body_default.llvm.10542442040758195137
+ffffffc0084fb778 T FSE_readNCount
+ffffffc0084fb7a4 T HUF_readStats
+ffffffc0084fb878 T HUF_readStats_wksp
+ffffffc0084fba64 T ERR_getErrorString
+ffffffc0084fbcb8 T FSE_createDTable
+ffffffc0084fbccc T FSE_freeDTable
+ffffffc0084fbcdc T FSE_buildDTable_wksp
+ffffffc0084fbd04 t FSE_buildDTable_internal
+ffffffc0084fbfac T FSE_buildDTable_rle
+ffffffc0084fbfd4 T FSE_buildDTable_raw
+ffffffc0084fc028 T FSE_decompress_usingDTable
+ffffffc0084fc910 T FSE_decompress_wksp
+ffffffc0084fc93c T FSE_decompress_wksp_bmi2
+ffffffc0084fd348 T ZSTD_versionNumber
+ffffffc0084fd35c T ZSTD_versionString
+ffffffc0084fd374 T ZSTD_isError
+ffffffc0084fd38c T ZSTD_getErrorName
+ffffffc0084fd3c0 T ZSTD_getErrorCode
+ffffffc0084fd3d8 T ZSTD_getErrorString
+ffffffc0084fd404 T ZSTD_customMalloc
+ffffffc0084fd464 T ZSTD_customCalloc
+ffffffc0084fd4e0 T ZSTD_customFree
+ffffffc0084fd53c T xz_dec_run
+ffffffc0084fddec T xz_dec_reset
+ffffffc0084fde28 T xz_dec_init
+ffffffc0084fdefc T xz_dec_end
+ffffffc0084fdf48 t fill_temp
+ffffffc0084fdfd8 t crc32_validate
+ffffffc0084fe048 t dec_index
+ffffffc0084fe1f0 t index_update
+ffffffc0084fe254 t dec_stream_footer
+ffffffc0084fe2ec T xz_dec_lzma2_run
+ffffffc0084fea54 T xz_dec_lzma2_create
+ffffffc0084feaec T xz_dec_lzma2_reset
+ffffffc0084febc0 T xz_dec_lzma2_end
+ffffffc0084fec08 t lzma_main
+ffffffc0084ff718 t lzma_len
+ffffffc0084ff8f0 T xz_dec_bcj_run
+ffffffc0084ffbc0 t bcj_apply
+ffffffc008500124 T xz_dec_bcj_create
+ffffffc008500178 T xz_dec_bcj_reset
+ffffffc0085001b8 T percpu_counter_set
+ffffffc00850026c T percpu_counter_add_batch
+ffffffc0085003b0 T percpu_counter_sync
+ffffffc008500424 T __percpu_counter_sum
+ffffffc0085004dc T __percpu_counter_init
+ffffffc0085005a8 T percpu_counter_destroy
+ffffffc00850063c T __percpu_counter_compare
+ffffffc008500748 t compute_batch_value
+ffffffc008500784 t percpu_counter_cpu_dead
+ffffffc008500874 T audit_classify_arch
+ffffffc008500888 T audit_classify_syscall
+ffffffc0085008e8 T task_current_syscall
+ffffffc00850099c t collect_syscall
+ffffffc008500b38 T param_set_dyndbg_classes
+ffffffc008500fd8 t ddebug_apply_class_bitmap
+ffffffc008501190 T param_get_dyndbg_classes
+ffffffc008501228 T __dynamic_pr_debug
+ffffffc0085012fc T __dynamic_dev_dbg
+ffffffc008501414 T __dynamic_netdev_dbg
+ffffffc008501668 T ddebug_add_module
+ffffffc008501690 t __ddebug_add_module.llvm.484223198413757142
+ffffffc008501930 T ddebug_dyndbg_module_param_cb
+ffffffc0085019f4 T ddebug_remove_module
+ffffffc008501acc t ddebug_exec_queries
+ffffffc008502870 t parse_linerange
+ffffffc0085029d0 t __dynamic_emit_prefix
+ffffffc008502b88 t ddebug_dyndbg_boot_param_cb
+ffffffc008502c34 t ddebug_proc_write
+ffffffc008502d10 t ddebug_proc_open
+ffffffc008502d4c t ddebug_proc_start
+ffffffc008502e48 t ddebug_proc_stop
+ffffffc008502e7c t ddebug_proc_next
+ffffffc008502f44 t ddebug_proc_show
+ffffffc008503130 T errname
+ffffffc0085031b4 T nla_get_range_unsigned
+ffffffc008503298 T nla_get_range_signed
+ffffffc008503358 T __nla_validate
+ffffffc008503388 t __nla_validate_parse.llvm.663507686052651577
+ffffffc008503ebc T nla_policy_len
+ffffffc008503f60 T __nla_parse
+ffffffc008503fb4 T nla_find
+ffffffc008504008 T nla_strscpy
+ffffffc0085040c0 T nla_strdup
+ffffffc008504148 T nla_memcpy
+ffffffc0085041c4 T nla_memcmp
+ffffffc008504208 T nla_strcmp
+ffffffc008504298 T __nla_reserve
+ffffffc008504318 T __nla_reserve_64bit
+ffffffc008504398 T __nla_reserve_nohdr
+ffffffc0085043ec T nla_reserve
+ffffffc008504494 T nla_reserve_64bit
+ffffffc008504540 T nla_reserve_nohdr
+ffffffc0085045bc T __nla_put
+ffffffc008504654 T __nla_put_64bit
+ffffffc0085046ec T __nla_put_nohdr
+ffffffc00850475c T nla_put
+ffffffc008504820 T nla_put_64bit
+ffffffc0085048e8 T nla_put_nohdr
+ffffffc008504984 T nla_append
+ffffffc008504a04 T csum_partial
+ffffffc008504a44 T ip_compute_csum
+ffffffc008504a74 T csum_tcpudp_nofold
+ffffffc008504aac T alloc_cpu_rmap
+ffffffc008504b88 T cpu_rmap_put
+ffffffc008504c10 T cpu_rmap_add
+ffffffc008504c48 T cpu_rmap_update
+ffffffc008504f4c T free_irq_cpu_rmap
+ffffffc008505014 T irq_cpu_rmap_add
+ffffffc008505184 t irq_cpu_rmap_notify
+ffffffc0085051c0 t irq_cpu_rmap_release
+ffffffc008505258 T dql_completed
+ffffffc0085053b8 T dql_reset
+ffffffc0085053e4 T dql_init
+ffffffc00850541c T glob_match
+ffffffc0085055ec T strncpy_from_user
+ffffffc0085059ac T strnlen_user
+ffffffc008505d38 T mac_pton
+ffffffc008505f38 T sg_free_table_chained
+ffffffc008505f84 t sg_pool_free
+ffffffc008506008 T sg_alloc_table_chained
+ffffffc0085060dc t sg_pool_alloc
+ffffffc008506160 T stack_depot_get_extra_bits
+ffffffc008506174 T stack_depot_init
+ffffffc00850628c T stack_depot_snprint
+ffffffc008506340 T stack_depot_fetch
+ffffffc0085063e0 T stack_depot_print
+ffffffc008506474 T __stack_depot_save
+ffffffc0085069b0 T stack_depot_save
+ffffffc0085069e4 t skip_comment
+ffffffc008506a38 T sbitmap_init_node
+ffffffc008506bb8 T sbitmap_resize
+ffffffc008506c78 T sbitmap_get
+ffffffc008507060 T sbitmap_get_shallow
+ffffffc008507440 T sbitmap_any_bit_set
+ffffffc0085074b4 T sbitmap_weight
+ffffffc0085075c8 T sbitmap_show
+ffffffc0085076ec T sbitmap_bitmap_show
+ffffffc0085078f4 T sbitmap_queue_init_node
+ffffffc008507acc T sbitmap_queue_recalculate_wake_batch
+ffffffc008507b08 T sbitmap_queue_resize
+ffffffc008507c14 T __sbitmap_queue_get
+ffffffc008507c40 T __sbitmap_queue_get_batch
+ffffffc008507ff8 T sbitmap_queue_get_shallow
+ffffffc00850803c T sbitmap_queue_min_shallow_depth
+ffffffc0085080a4 T sbitmap_queue_wake_up
+ffffffc00850822c T sbitmap_queue_clear_batch
+ffffffc008508390 T sbitmap_queue_clear
+ffffffc008508478 T sbitmap_queue_wake_all
+ffffffc008508658 T sbitmap_queue_show
+ffffffc00850893c T sbitmap_add_wait_queue
+ffffffc0085089b0 T sbitmap_del_wait_queue
+ffffffc008508a48 T sbitmap_prepare_to_wait
+ffffffc008508ac0 T sbitmap_finish_wait
+ffffffc008508b48 T devmem_is_allowed
+ffffffc008508ba0 T platform_irqchip_probe
+ffffffc008508c90 t gic_handle_cascade_irq
+ffffffc008508da4 T gic_cpu_if_down
+ffffffc008508dfc t writel_relaxed
+ffffffc008508e94 t writel_relaxed
+ffffffc008508f2c t writel_relaxed
+ffffffc008508fc4 t writel_relaxed
+ffffffc00850905c t writel_relaxed
+ffffffc0085090f4 t writel_relaxed
+ffffffc00850918c t writel_relaxed
+ffffffc008509228 T gic_dist_save
+ffffffc008509378 t readl_relaxed
+ffffffc00850940c t readl_relaxed
+ffffffc0085094a0 t readl_relaxed
+ffffffc008509534 t readl_relaxed
+ffffffc0085095c8 t readl_relaxed
+ffffffc00850965c t readl_relaxed
+ffffffc0085096f0 t readl_relaxed
+ffffffc008509788 T gic_dist_restore
+ffffffc008509934 T gic_cpu_save
+ffffffc0085099ec T gic_cpu_restore
+ffffffc008509b4c t gic_cpu_if_up
+ffffffc008509c08 T gic_of_init_child
+ffffffc008509d10 t gic_of_setup
+ffffffc008509df4 t gic_init_bases
+ffffffc00850a064 t gic_teardown
+ffffffc00850a0bc t gic_handle_irq
+ffffffc00850a1d0 t gic_handle_irq
+ffffffc00850a304 t gic_starting_cpu
+ffffffc00850a33c t gic_starting_cpu
+ffffffc00850a38c t gic_cpu_init
+ffffffc00850a588 t gic_get_cpumask
+ffffffc00850a68c t gic_enable_rmw_access
+ffffffc00850a6ec t gic_irq_domain_alloc
+ffffffc00850a7ac t gic_irq_domain_alloc
+ffffffc00850a9b4 t gic_irq_domain_translate
+ffffffc00850ab00 t gic_irq_domain_translate
+ffffffc00850acd0 t gic_irq_domain_map
+ffffffc00850ae08 t gic_eoimode1_mask_irq
+ffffffc00850ae94 t gic_eoimode1_mask_irq
+ffffffc00850af7c t gic_unmask_irq
+ffffffc00850afcc t gic_unmask_irq
+ffffffc00850b0a4 t gic_eoimode1_eoi_irq
+ffffffc00850b160 t gic_eoimode1_eoi_irq
+ffffffc00850b19c t gic_set_affinity
+ffffffc00850b340 t gic_set_affinity
+ffffffc00850b670 t gic_retrigger
+ffffffc00850b6c4 t gic_retrigger
+ffffffc00850b7b4 t gic_set_type
+ffffffc00850b858 t gic_set_type
+ffffffc00850b98c t gic_irq_get_irqchip_state
+ffffffc00850ba5c t gic_irq_get_irqchip_state
+ffffffc00850bc90 t gic_irq_set_irqchip_state
+ffffffc00850bd30 t gic_irq_set_irqchip_state
+ffffffc00850bec8 t gic_irq_set_vcpu_affinity
+ffffffc00850bf14 t gic_irq_set_vcpu_affinity
+ffffffc00850bf7c t gic_ipi_send_mask
+ffffffc00850c050 t gic_ipi_send_mask
+ffffffc00850c19c t gic_mask_irq
+ffffffc00850c1ec t gic_mask_irq
+ffffffc00850c394 t writeb_relaxed
+ffffffc00850c42c t writeb_relaxed
+ffffffc00850c4c8 t gic_eoi_irq
+ffffffc00850c578 t gic_eoi_irq
+ffffffc00850c594 t gic_irq_print_chip
+ffffffc00850c608 t gic_irq_domain_unmap
+ffffffc00850c618 t gic_notifier
+ffffffc00850c6b0 T gic_enable_of_quirks
+ffffffc00850c79c T gic_enable_quirks
+ffffffc00850c84c T gic_configure_irq
+ffffffc00850c954 T gic_dist_config
+ffffffc00850ca44 T gic_cpu_config
+ffffffc00850cb24 t gicv2m_irq_domain_alloc
+ffffffc00850cdd0 t gicv2m_irq_domain_free
+ffffffc00850ce80 t gicv2m_compose_msi_msg
+ffffffc00850cf10 t gicv2m_mask_msi_irq
+ffffffc00850cf50 t gicv2m_unmask_msi_irq
+ffffffc00850cf90 T gic_v3_dist_wait_for_rwp
+ffffffc00850d028 T gic_v3_dist_init
+ffffffc00850d3a8 T gic_v3_cpu_init
+ffffffc00850d4f0 t gic_enable_redist
+ffffffc00850d600 t gic_redist_wait_for_rwp
+ffffffc00850d6a4 t gic_cpu_sys_reg_init
+ffffffc00850d95c T gic_v3_resume
+ffffffc00850d968 t gic_iterate_rdists
+ffffffc00850daa4 t __gic_populate_rdist
+ffffffc00850dbbc t readq_relaxed
+ffffffc00850dc50 t readq_relaxed
+ffffffc00850dce4 t gic_of_iomap
+ffffffc00850ddd8 t gic_enable_quirk_msm8996
+ffffffc00850ddfc t gic_enable_quirk_hip06_07
+ffffffc00850de20 t gic_enable_quirk_cavium_38539
+ffffffc00850de44 t gic_irq_domain_select
+ffffffc00850df94 t gic_irq_domain_free
+ffffffc00850e010 t __get_intid_range
+ffffffc00850e0a8 t gic_irq_nmi_setup
+ffffffc00850e0e4 t gic_irq_nmi_teardown
+ffffffc00850e120 t __gic_update_rdist_properties
+ffffffc00850e250 t gic_cpu_pm_notifier
+ffffffc00850e2cc t gic_v3_suspend
+ffffffc00850e2e0 t partition_domain_translate
+ffffffc00850e3f4 t mbi_allocate_domains
+ffffffc00850e4c0 t mbi_irq_domain_alloc
+ffffffc00850e75c t mbi_irq_domain_free
+ffffffc00850e80c t mbi_mask_msi_irq
+ffffffc00850e84c t mbi_unmask_msi_irq
+ffffffc00850e88c t mbi_compose_msi_msg
+ffffffc00850e8e8 t mbi_compose_mbi_msg
+ffffffc00850e994 T its_cpu_init
+ffffffc00850f304 t gic_check_reserved_range
+ffffffc00850f424 t its_clear_vpend_valid
+ffffffc00850f530 t its_cpu_init_collection
+ffffffc00850f674 t its_send_single_command
+ffffffc00850f89c t its_build_mapc_cmd
+ffffffc00850f8f4 t its_allocate_entry
+ffffffc00850f9f8 t its_build_invall_cmd
+ffffffc00850fa20 t its_irq_get_msi_base
+ffffffc00850fa40 t its_enable_quirk_cavium_22375
+ffffffc00850fa74 t its_enable_quirk_qdf2400_e0065
+ffffffc00850fa98 t its_enable_quirk_socionext_synquacer
+ffffffc00850fb7c t its_enable_quirk_hip07_161600802
+ffffffc00850fb9c t its_irq_get_msi_base_pre_its
+ffffffc00850fbbc t its_irq_domain_alloc
+ffffffc00850fdf4 t its_irq_domain_free
+ffffffc00850ffd0 t its_irq_domain_activate
+ffffffc008510188 t its_irq_domain_deactivate
+ffffffc0085102cc t its_mask_irq
+ffffffc0085103f4 t its_unmask_irq
+ffffffc00851051c t its_set_affinity
+ffffffc008510934 t its_irq_retrigger
+ffffffc0085109ec t its_irq_compose_msi_msg
+ffffffc008510a74 t its_irq_set_irqchip_state
+ffffffc008510b60 t its_irq_set_vcpu_affinity
+ffffffc008511220 t lpi_update_config
+ffffffc0085114f0 t its_send_single_vcommand
+ffffffc00851170c t its_build_vmovi_cmd
+ffffffc0085117bc t lpi_write_config
+ffffffc0085118c0 t its_build_inv_cmd
+ffffffc008511930 t its_build_vinv_cmd
+ffffffc0085119c0 t its_select_cpu
+ffffffc008511d34 t its_build_movi_cmd
+ffffffc008511db0 t its_build_vint_cmd
+ffffffc008511e44 t its_build_vclear_cmd
+ffffffc008511ed8 t its_build_int_cmd
+ffffffc008511f48 t its_build_clear_cmd
+ffffffc008511fb8 t its_build_discard_cmd
+ffffffc008512028 t its_build_mapti_cmd
+ffffffc0085120ac t its_build_vmapp_cmd
+ffffffc0085122b8 t its_build_vinvall_cmd
+ffffffc008512308 t its_build_vmapti_cmd
+ffffffc0085123bc t free_lpi_range
+ffffffc008512570 t its_build_mapd_cmd
+ffffffc00851262c t its_msi_prepare
+ffffffc00851278c t its_create_device
+ffffffc008512b1c t its_lpi_alloc
+ffffffc008512c3c t its_alloc_table_entry
+ffffffc008512dc0 t its_allocate_pending_table
+ffffffc008512e9c t its_sgi_irq_domain_alloc
+ffffffc008512f54 t its_sgi_irq_domain_free
+ffffffc008512f64 t its_sgi_irq_domain_activate
+ffffffc008513048 t its_sgi_irq_domain_deactivate
+ffffffc0085131dc t its_sgi_mask_irq
+ffffffc0085132d8 t its_sgi_unmask_irq
+ffffffc0085133d8 t its_sgi_set_affinity
+ffffffc008513424 t its_sgi_get_irqchip_state
+ffffffc0085135bc t its_sgi_set_irqchip_state
+ffffffc008513714 t its_sgi_set_vcpu_affinity
+ffffffc008513848 t its_build_vsgi_cmd
+ffffffc008513914 t its_vpe_irq_domain_alloc
+ffffffc0085141a4 t its_vpe_irq_domain_free
+ffffffc008514480 t its_vpe_irq_domain_activate
+ffffffc008514620 t its_vpe_irq_domain_deactivate
+ffffffc0085147cc t its_vpe_mask_irq
+ffffffc008514818 t its_vpe_unmask_irq
+ffffffc008514864 t its_vpe_set_affinity
+ffffffc008514bd0 t its_vpe_retrigger
+ffffffc008514c0c t its_vpe_set_irqchip_state
+ffffffc008514d5c t its_vpe_set_vcpu_affinity
+ffffffc008514fb8 t its_vpe_send_inv
+ffffffc00851511c t its_vpe_db_proxy_map_locked
+ffffffc00851527c t its_build_vmovp_cmd
+ffffffc00851532c t its_wait_vpt_parse_complete
+ffffffc0085153dc t its_vpe_4_1_mask_irq
+ffffffc0085154ac t its_vpe_4_1_unmask_irq
+ffffffc00851557c t its_vpe_4_1_set_vcpu_affinity
+ffffffc008515788 t its_build_invdb_cmd
+ffffffc0085157f0 t its_save_disable
+ffffffc00851593c t its_restore_enable
+ffffffc008515c10 W iort_pmsi_get_dev_id
+ffffffc008515c24 t its_pmsi_prepare
+ffffffc008515de8 T gic_cpuif_has_vsgi
+ffffffc008515e2c T its_alloc_vcpu_irqs
+ffffffc008516078 T its_free_vcpu_irqs
+ffffffc0085161b8 T its_make_vpe_non_resident
+ffffffc0085162c0 T its_make_vpe_resident
+ffffffc00851639c T its_commit_vpe
+ffffffc00851644c T its_invall_vpe
+ffffffc0085164b4 T its_map_vlpi
+ffffffc00851654c T its_get_vlpi
+ffffffc0085165b0 T its_unmap_vlpi
+ffffffc0085165fc T its_prop_update_vlpi
+ffffffc008516670 T its_prop_update_vsgi
+ffffffc0085166e0 T its_init_v4
+ffffffc008516764 t its_pci_msi_prepare
+ffffffc0085168d4 t its_get_pci_alias
+ffffffc0085168f0 t its_pci_msi_vec_count
+ffffffc008516964 t its_mask_msi_irq
+ffffffc0085169a4 t its_unmask_msi_irq
+ffffffc0085169e4 T partition_translate_id
+ffffffc008516a60 T partition_create_desc
+ffffffc008516ba0 t partition_domain_free
+ffffffc008516c04 t partition_domain_alloc
+ffffffc008516d70 T partition_get_domain
+ffffffc008516d8c t partition_handle_irq
+ffffffc008516ef4 t partition_irq_mask
+ffffffc008516f84 t partition_irq_unmask
+ffffffc008517014 t partition_irq_set_type
+ffffffc008517078 t partition_irq_print_chip
+ffffffc0085170c8 t partition_irq_get_irqchip_state
+ffffffc008517160 t partition_irq_set_irqchip_state
+ffffffc0085171fc t simple_pm_bus_probe
+ffffffc0085172ac t simple_pm_bus_remove
+ffffffc008517308 T pci_bus_read_config_byte
+ffffffc0085173f8 T pci_bus_read_config_word
+ffffffc0085174f4 T pci_bus_read_config_dword
+ffffffc0085175f4 T pci_bus_write_config_byte
+ffffffc0085176a4 T pci_bus_write_config_word
+ffffffc008517760 T pci_bus_write_config_dword
+ffffffc008517820 T pci_generic_config_read
+ffffffc0085178bc t readb
+ffffffc008517960 t readb
+ffffffc008517a04 t readb
+ffffffc008517aa8 t readb
+ffffffc008517b4c t readb
+ffffffc008517bf0 t readb
+ffffffc008517c94 t readb
+ffffffc008517d38 t readb
+ffffffc008517ddc t readb
+ffffffc008517e80 t readb
+ffffffc008517f24 t readb
+ffffffc008517fc8 t readw
+ffffffc00851806c t readw
+ffffffc008518110 t readw
+ffffffc0085181b4 t readw
+ffffffc008518258 t readw
+ffffffc0085182fc t readw
+ffffffc0085183a0 t readw
+ffffffc008518444 t readw
+ffffffc0085184e8 t readw
+ffffffc00851858c t readw
+ffffffc008518634 T pci_generic_config_write
+ffffffc0085186c8 t writeb
+ffffffc008518764 t writeb
+ffffffc0085187fc t writeb
+ffffffc008518898 t writeb
+ffffffc008518934 t writeb
+ffffffc0085189d0 t writeb
+ffffffc008518a6c t writeb
+ffffffc008518b08 t writeb
+ffffffc008518ba4 t writeb
+ffffffc008518c40 t writew
+ffffffc008518cdc t writew
+ffffffc008518d78 t writew
+ffffffc008518e14 t writew
+ffffffc008518eb0 t writew
+ffffffc008518f4c t writew
+ffffffc008518fe8 t writew
+ffffffc008519084 t writew
+ffffffc008519120 t writew
+ffffffc0085191bc t writew
+ffffffc008519258 t writel
+ffffffc0085192f4 t writel
+ffffffc008519390 t writel
+ffffffc00851942c t writel
+ffffffc0085194c8 t writel
+ffffffc008519564 t writel
+ffffffc008519600 t writel
+ffffffc00851969c t writel
+ffffffc008519738 t writel
+ffffffc0085197d4 t writel
+ffffffc008519870 t writel
+ffffffc00851990c t writel
+ffffffc0085199a8 t writel
+ffffffc008519a44 t writel
+ffffffc008519ae0 t writel
+ffffffc008519b7c t writel
+ffffffc008519c18 t writel
+ffffffc008519cb4 t writel
+ffffffc008519d50 t writel
+ffffffc008519dec t writel
+ffffffc008519e88 t writel
+ffffffc008519f24 t writel
+ffffffc008519fc0 t writel
+ffffffc00851a060 T pci_generic_config_read32
+ffffffc00851a108 T pci_generic_config_write32
+ffffffc00851a218 T pci_bus_set_ops
+ffffffc00851a280 T pci_user_read_config_byte
+ffffffc00851a3a4 t pci_wait_cfg
+ffffffc00851a4bc T pci_user_read_config_word
+ffffffc00851a5f0 T pci_user_read_config_dword
+ffffffc00851a728 T pci_user_write_config_byte
+ffffffc00851a80c T pci_user_write_config_word
+ffffffc00851a8fc T pci_user_write_config_dword
+ffffffc00851a9f0 T pci_cfg_access_lock
+ffffffc00851aa74 T pci_cfg_access_trylock
+ffffffc00851aaf4 T pci_cfg_access_unlock
+ffffffc00851ab94 T pcie_cap_has_lnkctl
+ffffffc00851abc0 T pcie_cap_has_rtctl
+ffffffc00851abe4 T pcie_capability_read_word
+ffffffc00851acc0 t pcie_capability_reg_implemented
+ffffffc00851ada4 T pci_read_config_word
+ffffffc00851ae00 T pcie_capability_read_dword
+ffffffc00851aef0 T pci_read_config_dword
+ffffffc00851af4c T pcie_capability_write_word
+ffffffc00851afd8 T pci_write_config_word
+ffffffc00851b02c T pcie_capability_write_dword
+ffffffc00851b0bc T pci_write_config_dword
+ffffffc00851b110 T pcie_capability_clear_and_set_word
+ffffffc00851b250 T pcie_capability_clear_and_set_dword
+ffffffc00851b394 T pci_read_config_byte
+ffffffc00851b3f0 T pci_write_config_byte
+ffffffc00851b444 T pci_add_resource_offset
+ffffffc00851b4d4 T pci_add_resource
+ffffffc00851b560 T pci_free_resource_list
+ffffffc00851b58c T pci_bus_add_resource
+ffffffc00851b638 T pci_bus_resource_n
+ffffffc00851b69c T pci_bus_remove_resource
+ffffffc00851b768 T pci_bus_remove_resources
+ffffffc00851b800 T devm_request_pci_bus_resources
+ffffffc00851b8ac T pci_bus_alloc_resource
+ffffffc00851b990 t pci_bus_alloc_from_region
+ffffffc00851bbb0 T pci_bus_clip_resource
+ffffffc00851bd74 W pcibios_resource_survey_bus
+ffffffc00851bd84 W pcibios_bus_add_device
+ffffffc00851bd94 T pci_bus_add_device
+ffffffc00851be5c T pci_bus_add_devices
+ffffffc00851bee8 T pci_walk_bus
+ffffffc00851bfc0 T pci_bus_get
+ffffffc00851c004 T pci_bus_put
+ffffffc00851c03c T no_pci_devices
+ffffffc00851c0a0 T __pci_read_base
+ffffffc00851c3e4 T pci_read_bridge_bases
+ffffffc00851c7dc T pci_alloc_host_bridge
+ffffffc00851c864 t pci_release_host_bridge_dev
+ffffffc00851c8d8 T devm_pci_alloc_host_bridge
+ffffffc00851c99c t devm_pci_alloc_host_bridge_release
+ffffffc00851c9cc T pci_free_host_bridge
+ffffffc00851c9fc T pci_speed_string
+ffffffc00851ca30 T pcie_update_link_speed
+ffffffc00851ca54 T pci_add_new_bus
+ffffffc00851cf70 T pci_scan_bridge
+ffffffc00851cfa0 t pci_scan_bridge_extend
+ffffffc00851d5cc T set_pcie_port_type
+ffffffc00851d740 T set_pcie_hotplug_bridge
+ffffffc00851d7c8 T pci_cfg_space_size
+ffffffc00851da10 T pci_setup_device
+ffffffc00851e418 T pci_configure_extended_tags
+ffffffc00851e524 T pcie_relaxed_ordering_enabled
+ffffffc00851e590 T pci_alloc_dev
+ffffffc00851e608 T pci_bus_generic_read_dev_vendor_id
+ffffffc00851e780 T pci_bus_read_dev_vendor_id
+ffffffc00851e7e8 T pcie_report_downtraining
+ffffffc00851e864 T pci_device_add
+ffffffc00851ee64 t pci_release_dev
+ffffffc00851eef4 T pci_scan_single_device
+ffffffc00851f050 T pci_scan_slot
+ffffffc00851f22c T pcie_bus_configure_settings
+ffffffc00851f318 t pcie_find_smpss
+ffffffc00851f374 t pcie_bus_configure_set
+ffffffc00851f52c W pcibios_fixup_bus
+ffffffc00851f53c T pci_scan_child_bus
+ffffffc00851f568 t pci_scan_child_bus_extend.llvm.16835340216678309388
+ffffffc00851f8fc W pcibios_root_bridge_prepare
+ffffffc00851f910 W pcibios_add_bus
+ffffffc00851f920 W pcibios_remove_bus
+ffffffc00851f930 T pci_create_root_bus
+ffffffc00851fa40 t pci_register_host_bridge
+ffffffc00851ff44 T pci_host_probe
+ffffffc0085200d4 T pci_scan_root_bus_bridge
+ffffffc008520288 T pci_bus_insert_busn_res
+ffffffc0085203f0 T pci_bus_update_busn_res_end
+ffffffc008520508 T pci_bus_release_busn_res
+ffffffc00852058c T pci_scan_root_bus
+ffffffc008520720 T pci_scan_bus
+ffffffc008520804 T pci_rescan_bus_bridge_resize
+ffffffc008520868 T pci_rescan_bus
+ffffffc0085208bc T pci_lock_rescan_remove
+ffffffc0085208f0 T pci_unlock_rescan_remove
+ffffffc008520924 T pci_hp_add_bridge
+ffffffc0085209e4 t release_pcibus_dev
+ffffffc008520a40 T pci_find_host_bridge
+ffffffc008520a60 T pci_get_host_bridge_device
+ffffffc008520ab0 T pci_put_host_bridge_device
+ffffffc008520adc T pci_set_host_bridge_release
+ffffffc008520af4 T pcibios_resource_to_bus
+ffffffc008520ba0 T pcibios_bus_to_resource
+ffffffc008520c44 T pci_remove_bus
+ffffffc008520d08 T pci_stop_and_remove_bus_device
+ffffffc008520d44 t pci_stop_bus_device.llvm.10390867111332756702
+ffffffc008520e24 t pci_remove_bus_device.llvm.10390867111332756702
+ffffffc008520f38 T pci_stop_and_remove_bus_device_locked
+ffffffc008520f94 T pci_stop_root_bus
+ffffffc008521010 T pci_remove_root_bus
+ffffffc008521090 T pci_reset_supported
+ffffffc0085210ac T pci_ats_disabled
+ffffffc0085210c4 T pci_bus_max_busnr
+ffffffc008521138 T pci_status_get_and_clear_errors
+ffffffc0085211e0 T pci_ioremap_bar
+ffffffc00852128c T pci_ioremap_wc_bar
+ffffffc008521338 T pci_find_next_capability
+ffffffc008521438 T pci_find_capability
+ffffffc008521574 T pci_bus_find_capability
+ffffffc0085216c0 T pci_find_next_ext_capability
+ffffffc0085217c0 T pci_find_ext_capability
+ffffffc0085218a8 T pci_get_dsn
+ffffffc0085219b4 T pci_find_next_ht_capability
+ffffffc0085219e0 t __pci_find_next_ht_cap.llvm.387819745348779521
+ffffffc008521bbc T pci_find_ht_capability
+ffffffc008521c78 T pci_find_vsec_capability
+ffffffc008521dcc T pci_find_dvsec_capability
+ffffffc008521f90 T pci_find_parent_resource
+ffffffc00852206c T pci_find_resource
+ffffffc008522278 T pci_wait_for_pending
+ffffffc008522380 T pci_request_acs
+ffffffc00852239c T pci_update_current_state
+ffffffc008522434 T pci_refresh_power_state
+ffffffc0085224c8 T pci_platform_power_transition
+ffffffc0085224e8 T pci_resume_bus
+ffffffc008522524 t pci_resume_one.llvm.387819745348779521
+ffffffc00852255c T pci_power_up
+ffffffc008522700 T pci_bus_set_current_state
+ffffffc00852276c t __pci_dev_set_current_state
+ffffffc00852278c T pci_set_power_state
+ffffffc0085229e0 t pci_set_low_power_state
+ffffffc008522c30 T pci_find_saved_cap
+ffffffc008522c6c T pci_find_saved_ext_cap
+ffffffc008522cac T pci_bridge_reconfigure_ltr
+ffffffc008522d6c T pci_save_state
+ffffffc0085230dc T pci_restore_state
+ffffffc008523b6c t pci_enable_acs
+ffffffc008523d5c T pci_store_saved_state
+ffffffc008523e44 T pci_load_saved_state
+ffffffc008523f64 T pci_load_and_free_saved_state
+ffffffc0085240a4 W pcibios_enable_device
+ffffffc0085240d0 T pci_reenable_device
+ffffffc008524118 t do_pci_enable_device
+ffffffc008524244 T pci_enable_device_io
+ffffffc008524270 t pci_enable_device_flags.llvm.387819745348779521
+ffffffc00852447c T pci_enable_device_mem
+ffffffc0085244ac T pci_enable_device
+ffffffc0085244dc T pcim_enable_device
+ffffffc0085245c0 T pcim_pin_device
+ffffffc00852463c W pcibios_device_add
+ffffffc008524650 W pcibios_release_device
+ffffffc008524660 W pcibios_disable_device
+ffffffc008524670 W pcibios_penalize_isa_irq
+ffffffc008524680 T pci_disable_enabled_device
+ffffffc008524728 T pci_disable_device
+ffffffc0085248bc W pcibios_set_pcie_reset_state
+ffffffc0085248d0 T pci_set_pcie_reset_state
+ffffffc0085248fc T pcie_clear_device_status
+ffffffc00852497c T pcie_clear_root_pme_status
+ffffffc0085249b4 T pci_check_pme_status
+ffffffc008524a70 T pci_pme_wakeup_bus
+ffffffc008524aac t pci_pme_wakeup
+ffffffc008524b98 T pci_pme_capable
+ffffffc008524bd4 T pci_pme_restore
+ffffffc008524c8c T pci_pme_active
+ffffffc008524e6c T pci_enable_wake
+ffffffc008524f44 T pci_wake_from_d3
+ffffffc008525054 T pci_prepare_to_sleep
+ffffffc0085251d8 T pci_back_from_sleep
+ffffffc008525254 T pci_finish_runtime_suspend
+ffffffc00852549c T pci_dev_run_wake
+ffffffc008525558 T pci_dev_need_resume
+ffffffc008525620 T pci_dev_adjust_pme
+ffffffc008525710 T pci_dev_complete_resume
+ffffffc008525884 T pci_choose_state
+ffffffc0085258cc T pci_config_pm_runtime_get
+ffffffc008525964 T pci_config_pm_runtime_put
+ffffffc0085259b8 T pci_bridge_d3_possible
+ffffffc008525a14 T pci_bridge_d3_update
+ffffffc008525b90 t pci_dev_check_d3cold
+ffffffc008525bf8 T pci_d3cold_enable
+ffffffc008525c34 T pci_d3cold_disable
+ffffffc008525c70 T pci_pm_init
+ffffffc008525f4c T pci_ea_init
+ffffffc0085262e4 T pci_add_cap_save_buffer
+ffffffc00852638c T pci_add_ext_cap_save_buffer
+ffffffc0085264cc T pci_allocate_cap_save_buffers
+ffffffc008526608 T pci_free_cap_save_buffers
+ffffffc008526650 T pci_configure_ari
+ffffffc0085267d4 T pci_acs_enabled
+ffffffc00852690c T pci_acs_path_enabled
+ffffffc00852698c T pci_acs_init
+ffffffc008526a80 T pci_rebar_get_possible_sizes
+ffffffc008526b3c t pci_rebar_find_pos
+ffffffc008526d9c T pci_rebar_get_current_size
+ffffffc008526e20 T pci_rebar_set_size
+ffffffc008526ecc T pci_enable_atomic_ops_to_root
+ffffffc00852702c T pci_swizzle_interrupt_pin
+ffffffc008527088 T pci_get_interrupt_pin
+ffffffc008527110 T pci_common_swizzle
+ffffffc008527198 T pci_release_region
+ffffffc00852727c T pci_request_region
+ffffffc0085272a8 t __pci_request_region.llvm.387819745348779521
+ffffffc0085273d4 T pci_release_selected_regions
+ffffffc0085274e0 T pci_request_selected_regions
+ffffffc00852750c t __pci_request_selected_regions.llvm.387819745348779521
+ffffffc008527704 T pci_request_selected_regions_exclusive
+ffffffc008527734 T pci_release_regions
+ffffffc008527764 T pci_request_regions
+ffffffc00852779c T pci_request_regions_exclusive
+ffffffc0085277d4 T pci_register_io_range
+ffffffc00852787c T pci_pio_to_address
+ffffffc0085278bc W pci_address_to_pio
+ffffffc0085278e8 T pci_remap_iospace
+ffffffc00852796c T pci_unmap_iospace
+ffffffc0085279b4 T devm_pci_remap_iospace
+ffffffc008527aa8 t devm_pci_unmap_iospace
+ffffffc008527af4 T devm_pci_remap_cfgspace
+ffffffc008527bf0 T devm_pci_remap_cfg_resource
+ffffffc008527d40 W pcibios_set_master
+ffffffc008527dfc T pci_set_master
+ffffffc008527ea0 T pci_clear_master
+ffffffc008527f48 T pci_set_cacheline_size
+ffffffc008528020 T pci_set_mwi
+ffffffc008528120 T pcim_set_mwi
+ffffffc0085281a0 T pci_try_set_mwi
+ffffffc0085281cc T pci_clear_mwi
+ffffffc008528258 T pci_disable_parity
+ffffffc0085282e4 T pci_intx
+ffffffc0085283d4 T pci_check_and_mask_intx
+ffffffc0085284ec T pci_check_and_unmask_intx
+ffffffc008528618 T pci_wait_for_pending_transaction
+ffffffc00852865c T pcie_flr
+ffffffc0085286f8 t pci_dev_wait
+ffffffc008528838 T pcie_reset_flr
+ffffffc00852888c T pcie_wait_for_link
+ffffffc0085289ac t pcie_wait_for_link_delay
+ffffffc008528aa4 T pci_bridge_wait_for_secondary_bus
+ffffffc008528c30 T pcie_get_speed_cap
+ffffffc008528d2c T pci_reset_secondary_bus
+ffffffc008528dd4 W pcibios_reset_secondary_bus
+ffffffc008528e7c T pci_bridge_secondary_bus_reset
+ffffffc008528ec8 T pci_dev_lock
+ffffffc008528f0c T pci_dev_trylock
+ffffffc008528f70 T pci_dev_unlock
+ffffffc008528fb0 t pci_dev_reset_method_attr_is_visible
+ffffffc008528fd8 T __pci_reset_function_locked
+ffffffc0085291f0 T pci_init_reset_methods
+ffffffc008529354 T pci_reset_function
+ffffffc00852947c T pci_reset_function_locked
+ffffffc008529580 T pci_try_reset_function
+ffffffc0085296c0 T pci_probe_reset_slot
+ffffffc0085297a4 T pci_bus_error_reset
+ffffffc008529a1c T pci_probe_reset_bus
+ffffffc008529a68 T pci_reset_bus
+ffffffc008529e70 T pcix_get_max_mmrbc
+ffffffc008529f14 T pcix_get_mmrbc
+ffffffc008529fb8 T pcix_set_mmrbc
+ffffffc00852a128 T pcie_get_readrq
+ffffffc00852a19c T pcie_set_readrq
+ffffffc00852a330 T pcie_get_mps
+ffffffc00852a3a4 T pcie_set_mps
+ffffffc00852a474 T pcie_bandwidth_available
+ffffffc00852a5cc T pcie_get_width_cap
+ffffffc00852a644 T pcie_bandwidth_capable
+ffffffc00852a7c0 T __pcie_print_link_status
+ffffffc00852aa18 T pcie_print_link_status
+ffffffc00852aa48 T pci_select_bars
+ffffffc00852ab64 T pci_set_vga_state
+ffffffc00852acc4 T pci_add_dma_alias
+ffffffc00852ada4 T pci_devs_are_dma_aliases
+ffffffc00852ae44 W pci_real_dma_dev
+ffffffc00852ae54 T pci_device_is_present
+ffffffc00852aef4 T pci_ignore_hotplug
+ffffffc00852af28 W pcibios_default_alignment
+ffffffc00852af3c W pci_resource_to_user
+ffffffc00852af5c T pci_reassigndev_resource_alignment
+ffffffc00852b364 T pci_bus_find_domain_nr
+ffffffc00852b444 W pci_ext_cfg_avail
+ffffffc00852b458 W pci_fixup_cardbus
+ffffffc00852b464 t pci_dev_str_match
+ffffffc00852b75c t pci_enable_bridge
+ffffffc00852b89c t pcim_release
+ffffffc00852babc t pci_pme_list_scan
+ffffffc00852bc64 t reset_method_show
+ffffffc00852bee4 t reset_method_store
+ffffffc00852c1c4 t pci_dev_acpi_reset
+ffffffc00852c1d8 t pci_af_flr
+ffffffc00852c304 t pci_pm_reset
+ffffffc00852c4a8 t pci_reset_bus_function
+ffffffc00852c5e4 t pci_bus_resetable
+ffffffc00852c65c t pci_bus_lock
+ffffffc00852c6c0 t pci_bus_unlock
+ffffffc00852c724 t pci_bus_trylock
+ffffffc00852c7e4 t pci_bus_save_and_disable_locked
+ffffffc00852c894 t pci_bus_restore_locked
+ffffffc00852c948 t resource_alignment_show
+ffffffc00852c9c0 t resource_alignment_store
+ffffffc00852ca80 T pci_add_dynid
+ffffffc00852cb78 T pci_match_id
+ffffffc00852cc2c W pcibios_alloc_irq
+ffffffc00852cc40 W pcibios_free_irq
+ffffffc00852cc50 T __pci_register_driver
+ffffffc00852cca8 T pci_unregister_driver
+ffffffc00852cd60 T pci_dev_driver
+ffffffc00852cdd8 T pci_dev_get
+ffffffc00852ce1c T pci_dev_put
+ffffffc00852ce54 T pci_uevent_ers
+ffffffc00852cf14 t pci_bus_match
+ffffffc00852cf68 t pci_uevent
+ffffffc00852d078 t pci_device_probe
+ffffffc00852d224 t pci_device_remove
+ffffffc00852d344 t pci_device_shutdown
+ffffffc00852d3dc t pci_bus_num_vf
+ffffffc00852d40c t pci_dma_configure
+ffffffc00852d4cc t pci_dma_cleanup
+ffffffc00852d510 t pcie_port_bus_match
+ffffffc00852d580 t new_id_store
+ffffffc00852d7a4 t pci_match_device
+ffffffc00852d994 t remove_id_store
+ffffffc00852db38 t pci_pm_prepare
+ffffffc00852dbd8 t pci_pm_complete
+ffffffc00852dc70 t pci_pm_suspend
+ffffffc00852df4c t pci_pm_resume
+ffffffc00852e130 t pci_pm_suspend_late
+ffffffc00852e188 t pci_pm_resume_early
+ffffffc00852e1d4 t pci_pm_suspend_noirq
+ffffffc00852e488 t pci_pm_resume_noirq
+ffffffc00852e630 t pci_pm_runtime_suspend
+ffffffc00852e7e4 t pci_pm_runtime_resume
+ffffffc00852e8f8 t pci_pm_runtime_idle
+ffffffc00852e980 T pci_for_each_dma_alias
+ffffffc00852eaf8 T pci_find_bus
+ffffffc00852ebbc T pci_find_next_bus
+ffffffc00852ec24 t pci_do_find_bus
+ffffffc00852ec98 T pci_get_slot
+ffffffc00852ed1c T pci_get_domain_bus_and_slot
+ffffffc00852ee7c T pci_get_device
+ffffffc00852ef2c T pci_get_subsys
+ffffffc00852efdc T pci_get_class
+ffffffc00852f08c T pci_dev_present
+ffffffc00852f130 t match_pci_dev_by_id
+ffffffc00852f1c0 T pci_mmap_fits
+ffffffc00852f2c0 T pci_create_sysfs_dev_files
+ffffffc00852f390 T pci_remove_sysfs_dev_files
+ffffffc00852f3c8 t pci_remove_resource_files.llvm.7271776144345358373
+ffffffc00852f57c t rescan_store
+ffffffc00852f65c t bus_rescan_store
+ffffffc00852f758 t cpuaffinity_show
+ffffffc00852f7a0 t cpulistaffinity_show
+ffffffc00852f7e4 t pci_create_attr
+ffffffc00852f984 t pci_mmap_resource_wc
+ffffffc00852f9c0 t pci_read_resource_io
+ffffffc00852fae0 t pci_write_resource_io
+ffffffc00852fc18 t pci_mmap_resource_uc
+ffffffc00852fc50 t pci_mmap_resource
+ffffffc00852fd60 t power_state_show
+ffffffc00852fdb4 t resource_show
+ffffffc00852feb0 t resource_show
+ffffffc00852fefc t vendor_show
+ffffffc00852ff40 t vendor_show
+ffffffc00852ff84 t device_show
+ffffffc00852ffc8 t device_show
+ffffffc00853000c t subsystem_vendor_show
+ffffffc008530050 t subsystem_device_show
+ffffffc008530094 t revision_show
+ffffffc0085300d8 t class_show
+ffffffc00853011c t irq_show
+ffffffc008530190 t irq_show
+ffffffc008530210 t local_cpus_show
+ffffffc008530258 t local_cpulist_show
+ffffffc0085302a0 t modalias_show
+ffffffc00853030c t modalias_show
+ffffffc008530354 t modalias_show
+ffffffc0085303b8 t modalias_show
+ffffffc008530408 t dma_mask_bits_show
+ffffffc008530460 t consistent_dma_mask_bits_show
+ffffffc0085304b8 t enable_show
+ffffffc008530504 t enable_store
+ffffffc00853061c t broken_parity_status_show
+ffffffc008530668 t broken_parity_status_store
+ffffffc008530724 t msi_bus_show
+ffffffc008530790 t msi_bus_store
+ffffffc0085308d0 t devspec_show
+ffffffc008530928 t driver_override_show
+ffffffc008530998 t driver_override_show
+ffffffc008530a08 t driver_override_show
+ffffffc008530a78 t driver_override_store
+ffffffc008530ac0 t driver_override_store
+ffffffc008530b08 t driver_override_store
+ffffffc008530b50 t ari_enabled_show
+ffffffc008530bac t pci_dev_config_attr_is_visible
+ffffffc008530bdc t pci_read_config
+ffffffc008530dcc t pci_write_config
+ffffffc008530f38 t pci_dev_rom_attr_is_visible
+ffffffc008530f74 t pci_read_rom
+ffffffc008531060 t pci_write_rom
+ffffffc00853109c t pci_dev_reset_attr_is_visible
+ffffffc0085310c4 t reset_store
+ffffffc008531194 t reset_store
+ffffffc0085312b0 t resource_resize_is_visible
+ffffffc008531300 t resource0_resize_show
+ffffffc008531370 t resource0_resize_store
+ffffffc008531658 t resource1_resize_show
+ffffffc0085316c8 t resource1_resize_store
+ffffffc0085319b0 t resource2_resize_show
+ffffffc008531a20 t resource2_resize_store
+ffffffc008531d08 t resource3_resize_show
+ffffffc008531d78 t resource3_resize_store
+ffffffc008532060 t resource4_resize_show
+ffffffc0085320d0 t resource4_resize_store
+ffffffc0085323b8 t resource5_resize_show
+ffffffc008532428 t resource5_resize_store
+ffffffc008532710 t pci_dev_attrs_are_visible
+ffffffc008532750 t boot_vga_show
+ffffffc0085327b4 t pci_dev_hp_attrs_are_visible
+ffffffc0085327e8 t remove_store
+ffffffc0085328c4 t dev_rescan_store
+ffffffc008532998 t pci_bridge_attrs_are_visible
+ffffffc0085329c8 t subordinate_bus_number_show
+ffffffc008532a60 t secondary_bus_number_show
+ffffffc008532af8 t pcie_dev_attrs_are_visible
+ffffffc008532b20 t current_link_speed_show
+ffffffc008532bd0 t current_link_width_show
+ffffffc008532c6c t max_link_width_show
+ffffffc008532cc0 t max_link_speed_show
+ffffffc008532d18 T pci_enable_rom
+ffffffc008532dd8 T pci_disable_rom
+ffffffc008532e68 T pci_map_rom
+ffffffc0085330f4 T pci_unmap_rom
+ffffffc008533194 T pci_update_resource
+ffffffc0085333fc T pci_claim_resource
+ffffffc0085334fc T pci_disable_bridge_window
+ffffffc00853356c W pcibios_retrieve_fw_addr
+ffffffc008533580 W pcibios_align_resource
+ffffffc008533594 T pci_assign_resource
+ffffffc008533734 t _pci_assign_resource
+ffffffc008533878 t pci_revert_fw_address
+ffffffc0085339cc T pci_reassign_resource
+ffffffc008533b20 T pci_release_resource
+ffffffc008533bc8 T pci_resize_resource
+ffffffc008533d8c T pci_enable_resources
+ffffffc008533ed0 T pci_request_irq
+ffffffc008533fe4 T pci_free_irq
+ffffffc008534028 T pci_vpd_init
+ffffffc008534090 t vpd_attr_is_visible
+ffffffc0085340b8 T pci_vpd_alloc
+ffffffc0085341c8 t pci_vpd_available
+ffffffc00853442c T pci_read_vpd
+ffffffc0085344d8 T pci_vpd_find_id_string
+ffffffc008534548 T pci_read_vpd_any
+ffffffc0085345f4 T pci_write_vpd
+ffffffc0085346a0 T pci_write_vpd_any
+ffffffc00853474c T pci_vpd_find_ro_info_keyword
+ffffffc008534840 T pci_vpd_check_csum
+ffffffc008534990 T __UNIQUE_ID_quirk_f0_vpd_link396
+ffffffc008534a28 T __UNIQUE_ID_quirk_blacklist_vpd398
+ffffffc008534a6c T __UNIQUE_ID_quirk_blacklist_vpd400
+ffffffc008534ab0 T __UNIQUE_ID_quirk_blacklist_vpd402
+ffffffc008534af4 T __UNIQUE_ID_quirk_blacklist_vpd404
+ffffffc008534b38 T __UNIQUE_ID_quirk_blacklist_vpd406
+ffffffc008534b7c T __UNIQUE_ID_quirk_blacklist_vpd408
+ffffffc008534bc0 T __UNIQUE_ID_quirk_blacklist_vpd410
+ffffffc008534c04 T __UNIQUE_ID_quirk_blacklist_vpd412
+ffffffc008534c48 T __UNIQUE_ID_quirk_blacklist_vpd414
+ffffffc008534c8c T __UNIQUE_ID_quirk_blacklist_vpd416
+ffffffc008534cd0 T __UNIQUE_ID_quirk_blacklist_vpd418
+ffffffc008534d14 T __UNIQUE_ID_quirk_blacklist_vpd420
+ffffffc008534d58 T __UNIQUE_ID_quirk_blacklist_vpd422
+ffffffc008534d9c T __UNIQUE_ID_quirk_chelsio_extend_vpd424
+ffffffc008534ddc t vpd_read
+ffffffc008534e8c t vpd_write
+ffffffc008534f38 t pci_vpd_read
+ffffffc008535200 t pci_vpd_write
+ffffffc0085353f0 T pci_setup_cardbus
+ffffffc0085355c8 W pcibios_setup_bridge
+ffffffc0085355d8 T pci_setup_bridge
+ffffffc00853561c t __pci_setup_bridge
+ffffffc008535740 T pci_claim_bridge_resource
+ffffffc008535894 t pci_setup_bridge_io
+ffffffc0085359cc t pci_setup_bridge_mmio_pref
+ffffffc008535ae0 W pcibios_window_alignment
+ffffffc008535af4 T pci_cardbus_resource_alignment
+ffffffc008535b2c T __pci_bus_size_bridges
+ffffffc00853644c t pbus_size_mem
+ffffffc008536a98 T pci_bus_size_bridges
+ffffffc008536ac8 T __pci_bus_assign_resources
+ffffffc008536d28 T pci_bus_assign_resources
+ffffffc008536d5c T pci_bus_claim_resources
+ffffffc008536d98 t pci_bus_allocate_resources.llvm.10250550371012295492
+ffffffc008536f08 t pci_bus_allocate_dev_resources.llvm.10250550371012295492
+ffffffc008536fa4 T pci_assign_unassigned_root_bus_resources
+ffffffc0085372a8 t pci_bus_get_depth
+ffffffc00853731c t pci_root_bus_distribute_available_resources
+ffffffc0085374d0 t pci_bus_release_bridge_resources
+ffffffc00853768c t pci_bus_dump_resources
+ffffffc008537760 T pci_assign_unassigned_bridge_resources
+ffffffc008537ab0 t __pci_bridge_assign_resources
+ffffffc008537bb0 T pci_reassign_bridge_resources
+ffffffc008537ffc t add_to_list
+ffffffc0085380a4 T pci_assign_unassigned_bus_resources
+ffffffc008538188 t __dev_sort_resources
+ffffffc0085383f0 t __assign_resources_sorted
+ffffffc008538bd0 t assign_requested_resources_sorted
+ffffffc008538cf4 t pci_bus_distribute_available_resources
+ffffffc008539580 T pci_save_vc_state
+ffffffc0085396e0 t pci_vc_do_save_buffer
+ffffffc008539e38 T pci_restore_vc_state
+ffffffc008539f1c T pci_allocate_vc_save_buffers
+ffffffc00853a054 T pci_mmap_resource_range
+ffffffc00853a120 T pci_assign_irq
+ffffffc00853a23c T pci_msi_init
+ffffffc00853a2fc T pci_msix_init
+ffffffc00853a3a4 T pci_msi_mask_irq
+ffffffc00853a434 T pci_msi_unmask_irq
+ffffffc00853a4b8 T __pci_read_msi_msg
+ffffffc00853a5e0 T msi_desc_to_pci_dev
+ffffffc00853a5f8 T __pci_write_msi_msg
+ffffffc00853a7d0 T pci_write_msi_msg
+ffffffc00853a838 W arch_restore_msi_irqs
+ffffffc00853a84c T pci_restore_msi_state
+ffffffc00853aab8 T pci_msi_vec_count
+ffffffc00853ab3c T pci_disable_msi
+ffffffc00853accc T pci_msix_vec_count
+ffffffc00853ad4c T pci_disable_msix
+ffffffc00853af0c T pci_enable_msi
+ffffffc00853af48 t __pci_enable_msi_range
+ffffffc00853b418 T pci_enable_msix_range
+ffffffc00853b448 t __pci_enable_msix_range
+ffffffc00853baf0 T pci_alloc_irq_vectors_affinity
+ffffffc00853bc28 T pci_free_irq_vectors
+ffffffc00853bc68 T pci_irq_vector
+ffffffc00853bcc8 T pci_irq_get_affinity
+ffffffc00853bd9c T pci_no_msi
+ffffffc00853bdb8 T pci_msi_enabled
+ffffffc00853bdd4 t pci_msi_update_mask
+ffffffc00853be68 t pcim_msi_release
+ffffffc00853bec8 T pci_msi_setup_msi_irqs
+ffffffc00853bf1c T pci_msi_teardown_msi_irqs
+ffffffc00853bf88 T pci_msi_create_irq_domain
+ffffffc00853c0c8 T pci_msi_domain_get_msi_rid
+ffffffc00853c194 t get_msi_id_cb
+ffffffc00853c1d8 T pci_msi_get_device_domain
+ffffffc00853c26c T pci_dev_has_special_msi_domain
+ffffffc00853c2a8 t pci_msi_domain_set_desc
+ffffffc00853c2ec t pci_msi_domain_check_cap
+ffffffc00853c3a4 t pci_msi_domain_write_msg
+ffffffc00853c3ec T pcie_port_device_register
+ffffffc00853c8c8 T pcie_port_device_iter
+ffffffc00853c944 T pcie_port_device_suspend
+ffffffc00853c9b0 T pcie_port_device_resume_noirq
+ffffffc00853ca1c T pcie_port_device_resume
+ffffffc00853ca88 T pcie_port_device_runtime_suspend
+ffffffc00853caf4 T pcie_port_device_runtime_resume
+ffffffc00853cb60 T pcie_port_find_device
+ffffffc00853cbd8 t find_service_iter
+ffffffc00853cc2c T pcie_port_device_remove
+ffffffc00853cc8c t remove_iter.llvm.16421638412762879045
+ffffffc00853ccd0 T pcie_port_service_register
+ffffffc00853cd40 t pcie_port_probe_service
+ffffffc00853cdcc t pcie_port_remove_service
+ffffffc00853ce48 t pcie_port_shutdown_service
+ffffffc00853ce58 T pcie_port_service_unregister
+ffffffc00853ce88 t release_pcie_device
+ffffffc00853ceb8 t pcie_portdrv_probe
+ffffffc00853cf84 t pcie_portdrv_remove
+ffffffc00853d034 t pcie_portdrv_error_detected
+ffffffc00853d050 t pcie_portdrv_mmio_enabled
+ffffffc00853d064 t pcie_portdrv_slot_reset
+ffffffc00853d0f4 t pcie_port_runtime_suspend
+ffffffc00853d130 t pcie_port_runtime_idle
+ffffffc00853d150 T pcie_link_rcec
+ffffffc00853d24c t link_rcec_helper
+ffffffc00853d2e0 T pcie_walk_rcec
+ffffffc00853d3dc t walk_rcec_helper
+ffffffc00853d4a4 T pci_rcec_init
+ffffffc00853d5ac T pci_rcec_exit
+ffffffc00853d5ec T pcie_aspm_init_link_state
+ffffffc00853e308 t pcie_config_aspm_path
+ffffffc00853e388 t pcie_set_clkpm
+ffffffc00853e434 T pcie_aspm_exit_link_state
+ffffffc00853e60c t pcie_config_aspm_link
+ffffffc00853e8a0 T pcie_aspm_powersave_config_link
+ffffffc00853ea14 T pci_disable_link_state_locked
+ffffffc00853ea40 t __pci_disable_link_state.llvm.6714750281920845407
+ffffffc00853eca0 T pci_disable_link_state
+ffffffc00853ecd0 T pcie_aspm_enabled
+ffffffc00853ed3c t aspm_ctrl_attrs_are_visible
+ffffffc00853edf0 T pcie_no_aspm
+ffffffc00853ee20 T pcie_aspm_support_enabled
+ffffffc00853ee3c t pcie_aspm_check_latency
+ffffffc00853f010 t pcie_aspm_set_policy
+ffffffc00853f1d4 t pcie_aspm_get_policy
+ffffffc00853f2ac t clkpm_show
+ffffffc00853f344 t clkpm_store
+ffffffc00853f504 t l0s_aspm_show
+ffffffc00853f5a0 t l0s_aspm_store
+ffffffc00853f5d4 t aspm_attr_store_common
+ffffffc00853f76c t l1_aspm_show
+ffffffc00853f804 t l1_aspm_store
+ffffffc00853f83c t l1_1_aspm_show
+ffffffc00853f8d4 t l1_1_aspm_store
+ffffffc00853f90c t l1_2_aspm_show
+ffffffc00853f9a4 t l1_2_aspm_store
+ffffffc00853f9dc t l1_1_pcipm_show
+ffffffc00853fa74 t l1_1_pcipm_store
+ffffffc00853faac t l1_2_pcipm_show
+ffffffc00853fb44 t l1_2_pcipm_store
+ffffffc00853fb7c T pci_no_aer
+ffffffc00853fb98 T pci_aer_available
+ffffffc00853fbc4 T pcie_aer_is_native
+ffffffc00853fc2c T pci_enable_pcie_error_reporting
+ffffffc00853fcc8 T pci_disable_pcie_error_reporting
+ffffffc00853fd64 T pci_aer_clear_nonfatal_status
+ffffffc00853fe44 T pci_aer_clear_fatal_status
+ffffffc00853ff18 T pci_aer_raw_clear_status
+ffffffc00854001c T pci_aer_clear_status
+ffffffc008540084 T pci_save_aer_state
+ffffffc008540148 T pci_restore_aer_state
+ffffffc0085401f8 T pci_aer_init
+ffffffc0085402f8 T pci_aer_exit
+ffffffc008540338 t aer_stats_attrs_are_visible
+ffffffc0085403a8 T aer_print_error
+ffffffc0085407f0 T aer_get_device_error_info
+ffffffc00854098c t aer_rootport_total_err_cor_show
+ffffffc0085409d4 t aer_rootport_total_err_fatal_show
+ffffffc008540a1c t aer_rootport_total_err_nonfatal_show
+ffffffc008540a64 t aer_dev_correctable_show
+ffffffc008540b50 t aer_dev_fatal_show
+ffffffc008540c58 t aer_dev_nonfatal_show
+ffffffc008540d60 t aer_probe
+ffffffc008540fc4 t aer_remove
+ffffffc0085410d8 t aer_irq
+ffffffc0085411e4 t aer_isr
+ffffffc0085414dc t aer_process_err_devices
+ffffffc0085416dc t find_device_iter
+ffffffc008541858 t aer_root_reset
+ffffffc008541aa4 t set_device_error_reporting
+ffffffc008541b6c T pcie_do_recovery
+ffffffc008541fa0 t report_frozen_detected
+ffffffc008541fd8 t report_normal_detected
+ffffffc008542010 t report_mmio_enabled
+ffffffc0085420e4 t report_slot_reset
+ffffffc0085421b8 t report_resume
+ffffffc008542294 t report_error_detected
+ffffffc0085424a8 T pcie_pme_interrupt_enable
+ffffffc0085424f4 t pcie_pme_probe
+ffffffc00854267c t pcie_pme_remove
+ffffffc008542720 t pcie_pme_suspend
+ffffffc008542800 t pcie_pme_resume
+ffffffc008542894 t pcie_pme_work_fn
+ffffffc008542bec t pcie_pme_irq
+ffffffc008542cd0 t pcie_pme_walk_bus
+ffffffc008542d90 t pcie_pme_can_wakeup
+ffffffc008542dc4 t pcie_pme_check_wakeup
+ffffffc008542e44 T pci_proc_attach_device
+ffffffc008542f54 T pci_proc_detach_device
+ffffffc008542f98 T pci_proc_detach_bus
+ffffffc008542fcc t proc_bus_pci_read
+ffffffc0085437f4 t proc_bus_pci_write
+ffffffc008543fdc t proc_bus_pci_lseek
+ffffffc008544014 t proc_bus_pci_ioctl
+ffffffc008544084 t pci_seq_start
+ffffffc0085440e0 t pci_seq_stop
+ffffffc008544114 t pci_seq_next
+ffffffc00854415c t show_device
+ffffffc008544414 T pci_dev_assign_slot
+ffffffc0085444a0 T pci_create_slot
+ffffffc0085446d4 t make_slot_name
+ffffffc0085447dc T pci_destroy_slot
+ffffffc008544830 t pci_slot_release
+ffffffc0085448f4 t pci_slot_attr_show
+ffffffc008544950 t pci_slot_attr_store
+ffffffc0085449b0 t address_read_file
+ffffffc008544a1c t max_speed_read_file
+ffffffc008544a74 t cur_speed_read_file
+ffffffc008544acc T pci_set_of_node
+ffffffc008544b24 T of_pci_find_child_device
+ffffffc008544c8c T pci_release_of_node
+ffffffc008544ca4 T pci_set_bus_of_node
+ffffffc008544d40 W pcibios_get_phb_of_node
+ffffffc008544d9c T pci_release_bus_of_node
+ffffffc008544db4 T pci_host_bridge_of_msi_domain
+ffffffc008544ebc T pci_host_of_has_msi_map
+ffffffc008544f08 T of_pci_get_devfn
+ffffffc008544f8c T of_pci_parse_bus_range
+ffffffc00854502c T of_get_pci_domain_nr
+ffffffc0085450ac T of_pci_check_probe_only
+ffffffc008545190 T of_irq_parse_and_map_pci
+ffffffc00854538c T devm_of_pci_bridge_init
+ffffffc00854584c T of_pci_get_max_link_speed
+ffffffc0085458d4 T of_pci_get_slot_power_limit
+ffffffc008545abc T pci_fixup_device
+ffffffc008545d30 T __UNIQUE_ID_quirk_mmio_always_on419
+ffffffc008545d4c T __UNIQUE_ID_pci_disable_parity421
+ffffffc008545d78 T __UNIQUE_ID_pci_disable_parity423
+ffffffc008545da4 T __UNIQUE_ID_quirk_passive_release425
+ffffffc008545e80 T __UNIQUE_ID_quirk_passive_release427
+ffffffc008545f5c T __UNIQUE_ID_quirk_tigerpoint_bm_sts429
+ffffffc00854602c T __UNIQUE_ID_quirk_nopcipci431
+ffffffc008546088 T __UNIQUE_ID_quirk_nopcipci433
+ffffffc0085460e4 T __UNIQUE_ID_quirk_nopciamd435
+ffffffc008546184 T __UNIQUE_ID_quirk_triton437
+ffffffc0085461e0 T __UNIQUE_ID_quirk_triton439
+ffffffc00854623c T __UNIQUE_ID_quirk_triton441
+ffffffc008546298 T __UNIQUE_ID_quirk_triton443
+ffffffc0085462f4 T __UNIQUE_ID_quirk_vialatency445
+ffffffc00854631c t quirk_vialatency
+ffffffc00854641c T __UNIQUE_ID_quirk_vialatency447
+ffffffc008546448 T __UNIQUE_ID_quirk_vialatency449
+ffffffc008546474 T __UNIQUE_ID_quirk_vialatency451
+ffffffc0085464a0 T __UNIQUE_ID_quirk_vialatency453
+ffffffc0085464cc T __UNIQUE_ID_quirk_vialatency455
+ffffffc0085464f8 T __UNIQUE_ID_quirk_viaetbf457
+ffffffc008546554 T __UNIQUE_ID_quirk_vsfx459
+ffffffc0085465b0 T __UNIQUE_ID_quirk_alimagik461
+ffffffc008546610 T __UNIQUE_ID_quirk_alimagik463
+ffffffc008546670 T __UNIQUE_ID_quirk_natoma465
+ffffffc0085466cc T __UNIQUE_ID_quirk_natoma467
+ffffffc008546728 T __UNIQUE_ID_quirk_natoma469
+ffffffc008546784 T __UNIQUE_ID_quirk_natoma471
+ffffffc0085467e0 T __UNIQUE_ID_quirk_natoma473
+ffffffc00854683c T __UNIQUE_ID_quirk_natoma475
+ffffffc008546898 T __UNIQUE_ID_quirk_citrine477
+ffffffc0085468b0 T __UNIQUE_ID_quirk_nfp6000479
+ffffffc0085468c8 T __UNIQUE_ID_quirk_nfp6000481
+ffffffc0085468e0 T __UNIQUE_ID_quirk_nfp6000483
+ffffffc0085468f8 T __UNIQUE_ID_quirk_nfp6000485
+ffffffc008546910 T __UNIQUE_ID_quirk_extend_bar_to_page487
+ffffffc008546b3c T __UNIQUE_ID_quirk_s3_64M489
+ffffffc008546b84 T __UNIQUE_ID_quirk_s3_64M491
+ffffffc008546bcc T __UNIQUE_ID_quirk_cs5536_vsa493
+ffffffc008546de4 T __UNIQUE_ID_quirk_ati_exploding_mce495
+ffffffc008546e64 T __UNIQUE_ID_quirk_amd_nl_class497
+ffffffc008546eb8 T __UNIQUE_ID_quirk_synopsys_haps499
+ffffffc008546f28 T __UNIQUE_ID_quirk_ali7101_acpi501
+ffffffc008546f90 T __UNIQUE_ID_quirk_piix4_acpi503
+ffffffc008546fb8 t quirk_piix4_acpi
+ffffffc0085473a8 T __UNIQUE_ID_quirk_piix4_acpi505
+ffffffc0085473d4 T __UNIQUE_ID_quirk_ich4_lpc_acpi507
+ffffffc00854749c T __UNIQUE_ID_quirk_ich4_lpc_acpi509
+ffffffc008547564 T __UNIQUE_ID_quirk_ich4_lpc_acpi511
+ffffffc00854762c T __UNIQUE_ID_quirk_ich4_lpc_acpi513
+ffffffc0085476f4 T __UNIQUE_ID_quirk_ich4_lpc_acpi515
+ffffffc0085477bc T __UNIQUE_ID_quirk_ich4_lpc_acpi517
+ffffffc008547884 T __UNIQUE_ID_quirk_ich4_lpc_acpi519
+ffffffc00854794c T __UNIQUE_ID_quirk_ich4_lpc_acpi521
+ffffffc008547a14 T __UNIQUE_ID_quirk_ich4_lpc_acpi523
+ffffffc008547adc T __UNIQUE_ID_quirk_ich4_lpc_acpi525
+ffffffc008547ba4 T __UNIQUE_ID_quirk_ich6_lpc527
+ffffffc008547bcc t quirk_ich6_lpc
+ffffffc008547d14 T __UNIQUE_ID_quirk_ich6_lpc529
+ffffffc008547d40 T __UNIQUE_ID_quirk_ich7_lpc531
+ffffffc008547d68 t quirk_ich7_lpc
+ffffffc008547f50 T __UNIQUE_ID_quirk_ich7_lpc533
+ffffffc008547f7c T __UNIQUE_ID_quirk_ich7_lpc535
+ffffffc008547fa8 T __UNIQUE_ID_quirk_ich7_lpc537
+ffffffc008547fd4 T __UNIQUE_ID_quirk_ich7_lpc539
+ffffffc008548000 T __UNIQUE_ID_quirk_ich7_lpc541
+ffffffc00854802c T __UNIQUE_ID_quirk_ich7_lpc543
+ffffffc008548058 T __UNIQUE_ID_quirk_ich7_lpc545
+ffffffc008548084 T __UNIQUE_ID_quirk_ich7_lpc547
+ffffffc0085480b0 T __UNIQUE_ID_quirk_ich7_lpc549
+ffffffc0085480dc T __UNIQUE_ID_quirk_ich7_lpc551
+ffffffc008548108 T __UNIQUE_ID_quirk_ich7_lpc553
+ffffffc008548134 T __UNIQUE_ID_quirk_ich7_lpc555
+ffffffc008548160 T __UNIQUE_ID_quirk_vt82c586_acpi557
+ffffffc0085481a8 T __UNIQUE_ID_quirk_vt82c686_acpi559
+ffffffc008548238 T __UNIQUE_ID_quirk_vt8235_acpi561
+ffffffc0085482a0 T __UNIQUE_ID_quirk_xio2000a563
+ffffffc008548360 T __UNIQUE_ID_quirk_cavium_sriov_rnm_link565
+ffffffc00854838c T __UNIQUE_ID_quirk_amd_8131_mmrbc567
+ffffffc0085483f8 T __UNIQUE_ID_quirk_via_acpi569
+ffffffc008548480 T __UNIQUE_ID_quirk_via_acpi571
+ffffffc008548508 T __UNIQUE_ID_quirk_via_bridge573
+ffffffc0085485dc T __UNIQUE_ID_quirk_via_bridge575
+ffffffc0085486b0 T __UNIQUE_ID_quirk_via_bridge577
+ffffffc008548784 T __UNIQUE_ID_quirk_via_bridge579
+ffffffc008548858 T __UNIQUE_ID_quirk_via_bridge581
+ffffffc00854892c T __UNIQUE_ID_quirk_via_bridge583
+ffffffc008548a00 T __UNIQUE_ID_quirk_via_bridge585
+ffffffc008548ad4 T __UNIQUE_ID_quirk_via_bridge587
+ffffffc008548ba8 T __UNIQUE_ID_quirk_via_vlink589
+ffffffc008548ca4 T __UNIQUE_ID_quirk_vt82c598_id591
+ffffffc008548cf4 T __UNIQUE_ID_quirk_cardbus_legacy593
+ffffffc008548d28 T __UNIQUE_ID_quirk_cardbus_legacy595
+ffffffc008548d5c T __UNIQUE_ID_quirk_amd_ordering597
+ffffffc008548d84 t quirk_amd_ordering
+ffffffc008548e58 T __UNIQUE_ID_quirk_amd_ordering599
+ffffffc008548e84 T __UNIQUE_ID_quirk_dunord601
+ffffffc008548eac T __UNIQUE_ID_quirk_transparent_bridge603
+ffffffc008548ecc T __UNIQUE_ID_quirk_transparent_bridge605
+ffffffc008548eec T __UNIQUE_ID_quirk_mediagx_master607
+ffffffc008548f90 T __UNIQUE_ID_quirk_mediagx_master609
+ffffffc008549034 T __UNIQUE_ID_quirk_disable_pxb611
+ffffffc0085490e0 T __UNIQUE_ID_quirk_disable_pxb613
+ffffffc00854918c T __UNIQUE_ID_quirk_amd_ide_mode615
+ffffffc0085491b4 t quirk_amd_ide_mode
+ffffffc0085492a4 T __UNIQUE_ID_quirk_amd_ide_mode617
+ffffffc0085492d0 T __UNIQUE_ID_quirk_amd_ide_mode619
+ffffffc0085492fc T __UNIQUE_ID_quirk_amd_ide_mode621
+ffffffc008549328 T __UNIQUE_ID_quirk_amd_ide_mode623
+ffffffc008549354 T __UNIQUE_ID_quirk_amd_ide_mode625
+ffffffc008549380 T __UNIQUE_ID_quirk_amd_ide_mode627
+ffffffc0085493ac T __UNIQUE_ID_quirk_amd_ide_mode629
+ffffffc0085493d8 T __UNIQUE_ID_quirk_svwks_csb5ide631
+ffffffc008549480 T __UNIQUE_ID_quirk_ide_samemode633
+ffffffc008549548 T __UNIQUE_ID_quirk_no_ata_d3635
+ffffffc008549564 T __UNIQUE_ID_quirk_no_ata_d3637
+ffffffc008549580 T __UNIQUE_ID_quirk_no_ata_d3639
+ffffffc00854959c T __UNIQUE_ID_quirk_no_ata_d3641
+ffffffc0085495b8 T __UNIQUE_ID_quirk_eisa_bridge643
+ffffffc0085495d4 T __UNIQUE_ID_asus_hides_smbus_hostbridge645
+ffffffc0085495fc t asus_hides_smbus_hostbridge
+ffffffc0085498d4 T __UNIQUE_ID_asus_hides_smbus_hostbridge647
+ffffffc008549900 T __UNIQUE_ID_asus_hides_smbus_hostbridge649
+ffffffc00854992c T __UNIQUE_ID_asus_hides_smbus_hostbridge651
+ffffffc008549958 T __UNIQUE_ID_asus_hides_smbus_hostbridge653
+ffffffc008549984 T __UNIQUE_ID_asus_hides_smbus_hostbridge655
+ffffffc0085499b0 T __UNIQUE_ID_asus_hides_smbus_hostbridge657
+ffffffc0085499dc T __UNIQUE_ID_asus_hides_smbus_hostbridge659
+ffffffc008549a08 T __UNIQUE_ID_asus_hides_smbus_hostbridge661
+ffffffc008549a34 T __UNIQUE_ID_asus_hides_smbus_hostbridge663
+ffffffc008549a60 T __UNIQUE_ID_asus_hides_smbus_hostbridge665
+ffffffc008549a8c T __UNIQUE_ID_asus_hides_smbus_hostbridge667
+ffffffc008549ab8 T __UNIQUE_ID_asus_hides_smbus_hostbridge669
+ffffffc008549ae4 T __UNIQUE_ID_asus_hides_smbus_lpc671
+ffffffc008549b0c t asus_hides_smbus_lpc
+ffffffc008549be4 T __UNIQUE_ID_asus_hides_smbus_lpc673
+ffffffc008549c10 T __UNIQUE_ID_asus_hides_smbus_lpc675
+ffffffc008549c3c T __UNIQUE_ID_asus_hides_smbus_lpc677
+ffffffc008549c68 T __UNIQUE_ID_asus_hides_smbus_lpc679
+ffffffc008549c94 T __UNIQUE_ID_asus_hides_smbus_lpc681
+ffffffc008549cc0 T __UNIQUE_ID_asus_hides_smbus_lpc683
+ffffffc008549cec T __UNIQUE_ID_asus_hides_smbus_lpc685
+ffffffc008549d18 T __UNIQUE_ID_asus_hides_smbus_lpc687
+ffffffc008549d44 T __UNIQUE_ID_asus_hides_smbus_lpc689
+ffffffc008549d70 T __UNIQUE_ID_asus_hides_smbus_lpc691
+ffffffc008549d9c T __UNIQUE_ID_asus_hides_smbus_lpc693
+ffffffc008549dc8 T __UNIQUE_ID_asus_hides_smbus_lpc695
+ffffffc008549df4 T __UNIQUE_ID_asus_hides_smbus_lpc697
+ffffffc008549e20 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6699
+ffffffc008549f4c T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_suspend701
+ffffffc00854a010 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume703
+ffffffc00854a080 T __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume_early705
+ffffffc00854a0ec T __UNIQUE_ID_quirk_sis_96x_smbus707
+ffffffc00854a18c T __UNIQUE_ID_quirk_sis_96x_smbus709
+ffffffc00854a22c T __UNIQUE_ID_quirk_sis_96x_smbus711
+ffffffc00854a2cc T __UNIQUE_ID_quirk_sis_96x_smbus713
+ffffffc00854a36c T __UNIQUE_ID_quirk_sis_96x_smbus715
+ffffffc00854a40c T __UNIQUE_ID_quirk_sis_96x_smbus717
+ffffffc00854a4ac T __UNIQUE_ID_quirk_sis_96x_smbus719
+ffffffc00854a54c T __UNIQUE_ID_quirk_sis_96x_smbus721
+ffffffc00854a5ec T __UNIQUE_ID_quirk_sis_503723
+ffffffc00854a614 t quirk_sis_503
+ffffffc00854a71c T __UNIQUE_ID_quirk_sis_503725
+ffffffc00854a748 T __UNIQUE_ID_asus_hides_ac97_lpc727
+ffffffc00854a770 t asus_hides_ac97_lpc
+ffffffc00854a860 T __UNIQUE_ID_asus_hides_ac97_lpc729
+ffffffc00854a88c T __UNIQUE_ID_quirk_jmicron_async_suspend731
+ffffffc00854a8ec T __UNIQUE_ID_quirk_jmicron_async_suspend733
+ffffffc00854a94c T __UNIQUE_ID_quirk_jmicron_async_suspend735
+ffffffc00854a9ac T __UNIQUE_ID_quirk_jmicron_async_suspend737
+ffffffc00854aa0c T __UNIQUE_ID_quirk_no_msi739
+ffffffc00854aa60 T __UNIQUE_ID_quirk_no_msi741
+ffffffc00854aab4 T __UNIQUE_ID_quirk_no_msi743
+ffffffc00854ab08 T __UNIQUE_ID_quirk_no_msi745
+ffffffc00854ab5c T __UNIQUE_ID_quirk_no_msi747
+ffffffc00854abb0 T __UNIQUE_ID_quirk_no_msi749
+ffffffc00854ac04 T __UNIQUE_ID_quirk_pcie_mch751
+ffffffc00854ac24 T __UNIQUE_ID_quirk_pcie_mch753
+ffffffc00854ac44 T __UNIQUE_ID_quirk_pcie_mch755
+ffffffc00854ac64 T __UNIQUE_ID_quirk_pcie_mch757
+ffffffc00854ac84 T __UNIQUE_ID_quirk_huawei_pcie_sva759
+ffffffc00854ad5c T __UNIQUE_ID_quirk_huawei_pcie_sva761
+ffffffc00854ae34 T __UNIQUE_ID_quirk_huawei_pcie_sva763
+ffffffc00854af0c T __UNIQUE_ID_quirk_huawei_pcie_sva765
+ffffffc00854afe4 T __UNIQUE_ID_quirk_huawei_pcie_sva767
+ffffffc00854b0bc T __UNIQUE_ID_quirk_huawei_pcie_sva769
+ffffffc00854b194 T __UNIQUE_ID_quirk_pcie_pxh771
+ffffffc00854b1dc T __UNIQUE_ID_quirk_pcie_pxh773
+ffffffc00854b224 T __UNIQUE_ID_quirk_pcie_pxh775
+ffffffc00854b26c T __UNIQUE_ID_quirk_pcie_pxh777
+ffffffc00854b2b4 T __UNIQUE_ID_quirk_pcie_pxh779
+ffffffc00854b2fc T __UNIQUE_ID_quirk_intel_pcie_pm781
+ffffffc00854b324 T __UNIQUE_ID_quirk_intel_pcie_pm783
+ffffffc00854b34c T __UNIQUE_ID_quirk_intel_pcie_pm785
+ffffffc00854b374 T __UNIQUE_ID_quirk_intel_pcie_pm787
+ffffffc00854b39c T __UNIQUE_ID_quirk_intel_pcie_pm789
+ffffffc00854b3c4 T __UNIQUE_ID_quirk_intel_pcie_pm791
+ffffffc00854b3ec T __UNIQUE_ID_quirk_intel_pcie_pm793
+ffffffc00854b414 T __UNIQUE_ID_quirk_intel_pcie_pm795
+ffffffc00854b43c T __UNIQUE_ID_quirk_intel_pcie_pm797
+ffffffc00854b464 T __UNIQUE_ID_quirk_intel_pcie_pm799
+ffffffc00854b48c T __UNIQUE_ID_quirk_intel_pcie_pm801
+ffffffc00854b4b4 T __UNIQUE_ID_quirk_intel_pcie_pm803
+ffffffc00854b4dc T __UNIQUE_ID_quirk_intel_pcie_pm805
+ffffffc00854b504 T __UNIQUE_ID_quirk_intel_pcie_pm807
+ffffffc00854b52c T __UNIQUE_ID_quirk_intel_pcie_pm809
+ffffffc00854b554 T __UNIQUE_ID_quirk_intel_pcie_pm811
+ffffffc00854b57c T __UNIQUE_ID_quirk_intel_pcie_pm813
+ffffffc00854b5a4 T __UNIQUE_ID_quirk_intel_pcie_pm815
+ffffffc00854b5cc T __UNIQUE_ID_quirk_intel_pcie_pm817
+ffffffc00854b5f4 T __UNIQUE_ID_quirk_intel_pcie_pm819
+ffffffc00854b61c T __UNIQUE_ID_quirk_intel_pcie_pm821
+ffffffc00854b644 T __UNIQUE_ID_quirk_radeon_pm823
+ffffffc00854b6b8 T __UNIQUE_ID_quirk_ryzen_xhci_d3hot825
+ffffffc00854b710 T __UNIQUE_ID_quirk_ryzen_xhci_d3hot827
+ffffffc00854b768 T __UNIQUE_ID_quirk_ryzen_xhci_d3hot829
+ffffffc00854b7c0 T __UNIQUE_ID_quirk_tc86c001_ide831
+ffffffc00854b7f0 T __UNIQUE_ID_quirk_plx_pci9050833
+ffffffc00854b8d0 T __UNIQUE_ID_quirk_plx_pci9050835
+ffffffc00854b9b0 T __UNIQUE_ID_quirk_plx_pci9050837
+ffffffc00854ba90 T __UNIQUE_ID_quirk_netmos839
+ffffffc00854bb58 T __UNIQUE_ID_quirk_e100_interrupt841
+ffffffc00854bd1c T __UNIQUE_ID_quirk_disable_aspm_l0s843
+ffffffc00854bd70 T __UNIQUE_ID_quirk_disable_aspm_l0s845
+ffffffc00854bdc4 T __UNIQUE_ID_quirk_disable_aspm_l0s847
+ffffffc00854be18 T __UNIQUE_ID_quirk_disable_aspm_l0s849
+ffffffc00854be6c T __UNIQUE_ID_quirk_disable_aspm_l0s851
+ffffffc00854bec0 T __UNIQUE_ID_quirk_disable_aspm_l0s853
+ffffffc00854bf14 T __UNIQUE_ID_quirk_disable_aspm_l0s855
+ffffffc00854bf68 T __UNIQUE_ID_quirk_disable_aspm_l0s857
+ffffffc00854bfbc T __UNIQUE_ID_quirk_disable_aspm_l0s859
+ffffffc00854c010 T __UNIQUE_ID_quirk_disable_aspm_l0s861
+ffffffc00854c064 T __UNIQUE_ID_quirk_disable_aspm_l0s863
+ffffffc00854c0b8 T __UNIQUE_ID_quirk_disable_aspm_l0s865
+ffffffc00854c10c T __UNIQUE_ID_quirk_disable_aspm_l0s867
+ffffffc00854c160 T __UNIQUE_ID_quirk_disable_aspm_l0s869
+ffffffc00854c1b4 T __UNIQUE_ID_quirk_disable_aspm_l0s_l1871
+ffffffc00854c208 T __UNIQUE_ID_quirk_enable_clear_retrain_link873
+ffffffc00854c250 T __UNIQUE_ID_quirk_enable_clear_retrain_link875
+ffffffc00854c298 T __UNIQUE_ID_quirk_enable_clear_retrain_link877
+ffffffc00854c2e0 T __UNIQUE_ID_fixup_rev1_53c810879
+ffffffc00854c338 T __UNIQUE_ID_quirk_p64h2_1k_io881
+ffffffc00854c3d4 T __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap883
+ffffffc00854c474 T __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap885
+ffffffc00854c514 T __UNIQUE_ID_quirk_via_cx700_pci_parking_caching887
+ffffffc00854c640 T __UNIQUE_ID_quirk_brcm_5719_limit_mrrs889
+ffffffc00854c6e0 T __UNIQUE_ID_quirk_unhide_mch_dev6891
+ffffffc00854c784 T __UNIQUE_ID_quirk_unhide_mch_dev6893
+ffffffc00854c828 T __UNIQUE_ID_quirk_disable_all_msi895
+ffffffc00854c86c T __UNIQUE_ID_quirk_disable_all_msi897
+ffffffc00854c8b0 T __UNIQUE_ID_quirk_disable_all_msi899
+ffffffc00854c8f4 T __UNIQUE_ID_quirk_disable_all_msi901
+ffffffc00854c938 T __UNIQUE_ID_quirk_disable_all_msi903
+ffffffc00854c97c T __UNIQUE_ID_quirk_disable_all_msi905
+ffffffc00854c9c0 T __UNIQUE_ID_quirk_disable_all_msi907
+ffffffc00854ca04 T __UNIQUE_ID_quirk_disable_all_msi909
+ffffffc00854ca48 T __UNIQUE_ID_quirk_disable_all_msi911
+ffffffc00854ca8c T __UNIQUE_ID_quirk_disable_msi913
+ffffffc00854caec T __UNIQUE_ID_quirk_disable_msi915
+ffffffc00854cb4c T __UNIQUE_ID_quirk_disable_msi917
+ffffffc00854cbac T __UNIQUE_ID_quirk_amd_780_apc_msi919
+ffffffc00854cc34 T __UNIQUE_ID_quirk_amd_780_apc_msi921
+ffffffc00854ccbc T __UNIQUE_ID_quirk_msi_ht_cap923
+ffffffc00854cd24 T __UNIQUE_ID_quirk_nvidia_ck804_msi_ht_cap925
+ffffffc00854cdb4 T __UNIQUE_ID_ht_enable_msi_mapping927
+ffffffc00854cddc t ht_enable_msi_mapping
+ffffffc00854ced8 T __UNIQUE_ID_ht_enable_msi_mapping929
+ffffffc00854cf04 T __UNIQUE_ID_nvenet_msi_disable931
+ffffffc00854cf14 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi933
+ffffffc00854cf34 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi935
+ffffffc00854cf54 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi937
+ffffffc00854cf74 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi939
+ffffffc00854cf94 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi941
+ffffffc00854cfb4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi943
+ffffffc00854cfd4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi945
+ffffffc00854cff4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi947
+ffffffc00854d014 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi949
+ffffffc00854d034 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi951
+ffffffc00854d054 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi953
+ffffffc00854d074 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi955
+ffffffc00854d094 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi957
+ffffffc00854d0b4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi959
+ffffffc00854d0d4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi961
+ffffffc00854d0f4 T __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi963
+ffffffc00854d114 T __UNIQUE_ID_nvbridge_check_legacy_irq_routing965
+ffffffc00854d1d4 T __UNIQUE_ID_nvbridge_check_legacy_irq_routing967
+ffffffc00854d294 T __UNIQUE_ID_nv_msi_ht_cap_quirk_all969
+ffffffc00854d2c4 T __UNIQUE_ID_nv_msi_ht_cap_quirk_all971
+ffffffc00854d2f4 T __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf973
+ffffffc00854d324 T __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf975
+ffffffc00854d354 T __UNIQUE_ID_quirk_msi_intx_disable_bug977
+ffffffc00854d370 T __UNIQUE_ID_quirk_msi_intx_disable_bug979
+ffffffc00854d38c T __UNIQUE_ID_quirk_msi_intx_disable_bug981
+ffffffc00854d3a8 T __UNIQUE_ID_quirk_msi_intx_disable_bug983
+ffffffc00854d3c4 T __UNIQUE_ID_quirk_msi_intx_disable_bug985
+ffffffc00854d3e0 T __UNIQUE_ID_quirk_msi_intx_disable_bug987
+ffffffc00854d3fc T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug989
+ffffffc00854d464 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug991
+ffffffc00854d4cc T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug993
+ffffffc00854d534 T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug995
+ffffffc00854d59c T __UNIQUE_ID_quirk_msi_intx_disable_ati_bug997
+ffffffc00854d604 T __UNIQUE_ID_quirk_msi_intx_disable_bug999
+ffffffc00854d620 T __UNIQUE_ID_quirk_msi_intx_disable_bug1001
+ffffffc00854d63c T __UNIQUE_ID_quirk_msi_intx_disable_bug1003
+ffffffc00854d658 T __UNIQUE_ID_quirk_msi_intx_disable_bug1005
+ffffffc00854d674 T __UNIQUE_ID_quirk_msi_intx_disable_bug1007
+ffffffc00854d690 T __UNIQUE_ID_quirk_msi_intx_disable_bug1009
+ffffffc00854d6ac T __UNIQUE_ID_quirk_msi_intx_disable_bug1011
+ffffffc00854d6c8 T __UNIQUE_ID_quirk_msi_intx_disable_bug1013
+ffffffc00854d6e4 T __UNIQUE_ID_quirk_msi_intx_disable_bug1015
+ffffffc00854d700 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1017
+ffffffc00854d760 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1019
+ffffffc00854d7c0 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1021
+ffffffc00854d820 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1023
+ffffffc00854d880 T __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1025
+ffffffc00854d8e0 T __UNIQUE_ID_quirk_al_msi_disable1027
+ffffffc00854d928 T __UNIQUE_ID_quirk_hotplug_bridge1029
+ffffffc00854d948 T __UNIQUE_ID_fixup_ti816x_class1031
+ffffffc00854d994 T __UNIQUE_ID_fixup_mpss_2561033
+ffffffc00854d9b4 T __UNIQUE_ID_fixup_mpss_2561035
+ffffffc00854d9d4 T __UNIQUE_ID_fixup_mpss_2561037
+ffffffc00854d9f4 T __UNIQUE_ID_fixup_mpss_2561039
+ffffffc00854da14 T __UNIQUE_ID_quirk_intel_mc_errata1041
+ffffffc00854da3c t quirk_intel_mc_errata
+ffffffc00854db2c T __UNIQUE_ID_quirk_intel_mc_errata1043
+ffffffc00854db58 T __UNIQUE_ID_quirk_intel_mc_errata1045
+ffffffc00854db84 T __UNIQUE_ID_quirk_intel_mc_errata1047
+ffffffc00854dbb0 T __UNIQUE_ID_quirk_intel_mc_errata1049
+ffffffc00854dbdc T __UNIQUE_ID_quirk_intel_mc_errata1051
+ffffffc00854dc08 T __UNIQUE_ID_quirk_intel_mc_errata1053
+ffffffc00854dc34 T __UNIQUE_ID_quirk_intel_mc_errata1055
+ffffffc00854dc60 T __UNIQUE_ID_quirk_intel_mc_errata1057
+ffffffc00854dc8c T __UNIQUE_ID_quirk_intel_mc_errata1059
+ffffffc00854dcb8 T __UNIQUE_ID_quirk_intel_mc_errata1061
+ffffffc00854dce4 T __UNIQUE_ID_quirk_intel_mc_errata1063
+ffffffc00854dd10 T __UNIQUE_ID_quirk_intel_mc_errata1065
+ffffffc00854dd3c T __UNIQUE_ID_quirk_intel_mc_errata1067
+ffffffc00854dd68 T __UNIQUE_ID_quirk_intel_mc_errata1069
+ffffffc00854dd94 T __UNIQUE_ID_quirk_intel_mc_errata1071
+ffffffc00854ddc0 T __UNIQUE_ID_quirk_intel_mc_errata1073
+ffffffc00854ddec T __UNIQUE_ID_quirk_intel_mc_errata1075
+ffffffc00854de18 T __UNIQUE_ID_quirk_intel_mc_errata1077
+ffffffc00854de44 T __UNIQUE_ID_quirk_intel_mc_errata1079
+ffffffc00854de70 T __UNIQUE_ID_quirk_intel_mc_errata1081
+ffffffc00854de9c T __UNIQUE_ID_quirk_intel_mc_errata1083
+ffffffc00854dec8 T __UNIQUE_ID_quirk_intel_mc_errata1085
+ffffffc00854def4 T __UNIQUE_ID_quirk_intel_mc_errata1087
+ffffffc00854df20 T __UNIQUE_ID_quirk_intel_mc_errata1089
+ffffffc00854df4c T __UNIQUE_ID_quirk_intel_ntb1091
+ffffffc00854e00c T __UNIQUE_ID_quirk_intel_ntb1093
+ffffffc00854e0cc T __UNIQUE_ID_disable_igfx_irq1095
+ffffffc00854e0f4 t disable_igfx_irq
+ffffffc00854e198 T __UNIQUE_ID_disable_igfx_irq1097
+ffffffc00854e1c4 T __UNIQUE_ID_disable_igfx_irq1099
+ffffffc00854e1f0 T __UNIQUE_ID_disable_igfx_irq1101
+ffffffc00854e21c T __UNIQUE_ID_disable_igfx_irq1103
+ffffffc00854e248 T __UNIQUE_ID_disable_igfx_irq1105
+ffffffc00854e274 T __UNIQUE_ID_disable_igfx_irq1107
+ffffffc00854e2a0 T __UNIQUE_ID_quirk_remove_d3hot_delay1109
+ffffffc00854e2b4 T __UNIQUE_ID_quirk_remove_d3hot_delay1111
+ffffffc00854e2c8 T __UNIQUE_ID_quirk_remove_d3hot_delay1113
+ffffffc00854e2dc T __UNIQUE_ID_quirk_remove_d3hot_delay1115
+ffffffc00854e2f0 T __UNIQUE_ID_quirk_remove_d3hot_delay1117
+ffffffc00854e304 T __UNIQUE_ID_quirk_remove_d3hot_delay1119
+ffffffc00854e318 T __UNIQUE_ID_quirk_remove_d3hot_delay1121
+ffffffc00854e32c T __UNIQUE_ID_quirk_remove_d3hot_delay1123
+ffffffc00854e340 T __UNIQUE_ID_quirk_remove_d3hot_delay1125
+ffffffc00854e354 T __UNIQUE_ID_quirk_remove_d3hot_delay1127
+ffffffc00854e368 T __UNIQUE_ID_quirk_remove_d3hot_delay1129
+ffffffc00854e37c T __UNIQUE_ID_quirk_remove_d3hot_delay1131
+ffffffc00854e390 T __UNIQUE_ID_quirk_remove_d3hot_delay1133
+ffffffc00854e3a4 T __UNIQUE_ID_quirk_remove_d3hot_delay1135
+ffffffc00854e3b8 T __UNIQUE_ID_quirk_remove_d3hot_delay1137
+ffffffc00854e3cc T __UNIQUE_ID_quirk_remove_d3hot_delay1139
+ffffffc00854e3e0 T __UNIQUE_ID_quirk_remove_d3hot_delay1141
+ffffffc00854e3f4 T __UNIQUE_ID_quirk_remove_d3hot_delay1143
+ffffffc00854e408 T __UNIQUE_ID_quirk_remove_d3hot_delay1145
+ffffffc00854e41c T __UNIQUE_ID_quirk_remove_d3hot_delay1147
+ffffffc00854e430 T __UNIQUE_ID_quirk_remove_d3hot_delay1149
+ffffffc00854e444 T __UNIQUE_ID_quirk_remove_d3hot_delay1151
+ffffffc00854e458 T __UNIQUE_ID_quirk_remove_d3hot_delay1153
+ffffffc00854e46c T __UNIQUE_ID_quirk_broken_intx_masking1155
+ffffffc00854e48c T __UNIQUE_ID_quirk_broken_intx_masking1157
+ffffffc00854e4ac T __UNIQUE_ID_quirk_broken_intx_masking1159
+ffffffc00854e4cc T __UNIQUE_ID_quirk_broken_intx_masking1161
+ffffffc00854e4ec T __UNIQUE_ID_quirk_broken_intx_masking1163
+ffffffc00854e50c T __UNIQUE_ID_quirk_broken_intx_masking1165
+ffffffc00854e52c T __UNIQUE_ID_quirk_broken_intx_masking1167
+ffffffc00854e54c T __UNIQUE_ID_quirk_broken_intx_masking1169
+ffffffc00854e56c T __UNIQUE_ID_quirk_broken_intx_masking1171
+ffffffc00854e58c T __UNIQUE_ID_quirk_broken_intx_masking1173
+ffffffc00854e5ac T __UNIQUE_ID_quirk_broken_intx_masking1175
+ffffffc00854e5cc T __UNIQUE_ID_quirk_broken_intx_masking1177
+ffffffc00854e5ec T __UNIQUE_ID_quirk_broken_intx_masking1179
+ffffffc00854e60c T __UNIQUE_ID_quirk_broken_intx_masking1181
+ffffffc00854e62c T __UNIQUE_ID_quirk_broken_intx_masking1183
+ffffffc00854e64c T __UNIQUE_ID_quirk_broken_intx_masking1185
+ffffffc00854e66c T __UNIQUE_ID_quirk_broken_intx_masking1187
+ffffffc00854e68c T __UNIQUE_ID_quirk_broken_intx_masking1189
+ffffffc00854e6ac T __UNIQUE_ID_quirk_broken_intx_masking1191
+ffffffc00854e6cc T __UNIQUE_ID_quirk_broken_intx_masking1193
+ffffffc00854e6ec T __UNIQUE_ID_mellanox_check_broken_intx_masking1195
+ffffffc00854e8d4 T __UNIQUE_ID_quirk_nvidia_no_bus_reset1197
+ffffffc00854e904 T __UNIQUE_ID_quirk_no_bus_reset1199
+ffffffc00854e920 T __UNIQUE_ID_quirk_no_bus_reset1201
+ffffffc00854e93c T __UNIQUE_ID_quirk_no_bus_reset1203
+ffffffc00854e958 T __UNIQUE_ID_quirk_no_bus_reset1205
+ffffffc00854e974 T __UNIQUE_ID_quirk_no_bus_reset1207
+ffffffc00854e990 T __UNIQUE_ID_quirk_no_bus_reset1209
+ffffffc00854e9ac T __UNIQUE_ID_quirk_no_bus_reset1211
+ffffffc00854e9c8 T __UNIQUE_ID_quirk_no_bus_reset1213
+ffffffc00854e9e4 T __UNIQUE_ID_quirk_no_pm_reset1215
+ffffffc00854ea0c T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1217
+ffffffc00854ea5c T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1219
+ffffffc00854eaac T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1221
+ffffffc00854eafc T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1223
+ffffffc00854eb4c T __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1225
+ffffffc00854eb9c T pci_dev_specific_reset
+ffffffc00854ecd4 T __UNIQUE_ID_quirk_dma_func0_alias1227
+ffffffc00854ed14 T __UNIQUE_ID_quirk_dma_func0_alias1229
+ffffffc00854ed54 T __UNIQUE_ID_quirk_dma_func1_alias1231
+ffffffc00854ed9c T __UNIQUE_ID_quirk_dma_func1_alias1233
+ffffffc00854ede4 T __UNIQUE_ID_quirk_dma_func1_alias1235
+ffffffc00854ee2c T __UNIQUE_ID_quirk_dma_func1_alias1237
+ffffffc00854ee74 T __UNIQUE_ID_quirk_dma_func1_alias1239
+ffffffc00854eebc T __UNIQUE_ID_quirk_dma_func1_alias1241
+ffffffc00854ef04 T __UNIQUE_ID_quirk_dma_func1_alias1243
+ffffffc00854ef4c T __UNIQUE_ID_quirk_dma_func1_alias1245
+ffffffc00854ef94 T __UNIQUE_ID_quirk_dma_func1_alias1247
+ffffffc00854efdc T __UNIQUE_ID_quirk_dma_func1_alias1249
+ffffffc00854f024 T __UNIQUE_ID_quirk_dma_func1_alias1251
+ffffffc00854f06c T __UNIQUE_ID_quirk_dma_func1_alias1253
+ffffffc00854f0b4 T __UNIQUE_ID_quirk_dma_func1_alias1255
+ffffffc00854f0fc T __UNIQUE_ID_quirk_dma_func1_alias1257
+ffffffc00854f144 T __UNIQUE_ID_quirk_dma_func1_alias1259
+ffffffc00854f18c T __UNIQUE_ID_quirk_dma_func1_alias1261
+ffffffc00854f1d4 T __UNIQUE_ID_quirk_dma_func1_alias1263
+ffffffc00854f21c T __UNIQUE_ID_quirk_dma_func1_alias1265
+ffffffc00854f264 T __UNIQUE_ID_quirk_fixed_dma_alias1267
+ffffffc00854f2bc T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1269
+ffffffc00854f31c T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1271
+ffffffc00854f37c T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1273
+ffffffc00854f3dc T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1275
+ffffffc00854f43c T __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1277
+ffffffc00854f49c T __UNIQUE_ID_quirk_mic_x200_dma_alias1279
+ffffffc00854f4fc T __UNIQUE_ID_quirk_mic_x200_dma_alias1281
+ffffffc00854f55c T __UNIQUE_ID_quirk_pex_vca_alias1283
+ffffffc00854f5b0 T __UNIQUE_ID_quirk_pex_vca_alias1285
+ffffffc00854f604 T __UNIQUE_ID_quirk_pex_vca_alias1287
+ffffffc00854f658 T __UNIQUE_ID_quirk_pex_vca_alias1289
+ffffffc00854f6ac T __UNIQUE_ID_quirk_pex_vca_alias1291
+ffffffc00854f700 T __UNIQUE_ID_quirk_pex_vca_alias1293
+ffffffc00854f754 T __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1295
+ffffffc00854f770 T __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1297
+ffffffc00854f78c T __UNIQUE_ID_quirk_tw686x_class1299
+ffffffc00854f7e0 T __UNIQUE_ID_quirk_tw686x_class1301
+ffffffc00854f834 T __UNIQUE_ID_quirk_tw686x_class1303
+ffffffc00854f888 T __UNIQUE_ID_quirk_tw686x_class1305
+ffffffc00854f8dc T __UNIQUE_ID_quirk_relaxedordering_disable1307
+ffffffc00854f924 T __UNIQUE_ID_quirk_relaxedordering_disable1309
+ffffffc00854f96c T __UNIQUE_ID_quirk_relaxedordering_disable1311
+ffffffc00854f9b4 T __UNIQUE_ID_quirk_relaxedordering_disable1313
+ffffffc00854f9fc T __UNIQUE_ID_quirk_relaxedordering_disable1315
+ffffffc00854fa44 T __UNIQUE_ID_quirk_relaxedordering_disable1317
+ffffffc00854fa8c T __UNIQUE_ID_quirk_relaxedordering_disable1319
+ffffffc00854fad4 T __UNIQUE_ID_quirk_relaxedordering_disable1321
+ffffffc00854fb1c T __UNIQUE_ID_quirk_relaxedordering_disable1323
+ffffffc00854fb64 T __UNIQUE_ID_quirk_relaxedordering_disable1325
+ffffffc00854fbac T __UNIQUE_ID_quirk_relaxedordering_disable1327
+ffffffc00854fbf4 T __UNIQUE_ID_quirk_relaxedordering_disable1329
+ffffffc00854fc3c T __UNIQUE_ID_quirk_relaxedordering_disable1331
+ffffffc00854fc84 T __UNIQUE_ID_quirk_relaxedordering_disable1333
+ffffffc00854fccc T __UNIQUE_ID_quirk_relaxedordering_disable1335
+ffffffc00854fd14 T __UNIQUE_ID_quirk_relaxedordering_disable1337
+ffffffc00854fd5c T __UNIQUE_ID_quirk_relaxedordering_disable1339
+ffffffc00854fda4 T __UNIQUE_ID_quirk_relaxedordering_disable1341
+ffffffc00854fdec T __UNIQUE_ID_quirk_relaxedordering_disable1343
+ffffffc00854fe34 T __UNIQUE_ID_quirk_relaxedordering_disable1345
+ffffffc00854fe7c T __UNIQUE_ID_quirk_relaxedordering_disable1347
+ffffffc00854fec4 T __UNIQUE_ID_quirk_relaxedordering_disable1349
+ffffffc00854ff0c T __UNIQUE_ID_quirk_relaxedordering_disable1351
+ffffffc00854ff54 T __UNIQUE_ID_quirk_relaxedordering_disable1353
+ffffffc00854ff9c T __UNIQUE_ID_quirk_relaxedordering_disable1355
+ffffffc00854ffe4 T __UNIQUE_ID_quirk_relaxedordering_disable1357
+ffffffc00855002c T __UNIQUE_ID_quirk_relaxedordering_disable1359
+ffffffc008550074 T __UNIQUE_ID_quirk_relaxedordering_disable1361
+ffffffc0085500bc T __UNIQUE_ID_quirk_relaxedordering_disable1363
+ffffffc008550104 T __UNIQUE_ID_quirk_relaxedordering_disable1365
+ffffffc00855014c T __UNIQUE_ID_quirk_relaxedordering_disable1367
+ffffffc008550194 T __UNIQUE_ID_quirk_chelsio_T5_disable_root_port_attributes1369
+ffffffc008550268 T pci_dev_specific_acs_enabled
+ffffffc008550344 T pci_dev_specific_enable_acs
+ffffffc0085505b8 T pci_dev_specific_disable_acs_redir
+ffffffc008550698 T __UNIQUE_ID_quirk_intel_qat_vf_cap1371
+ffffffc0085508a8 T __UNIQUE_ID_quirk_no_flr1373
+ffffffc0085508c4 T __UNIQUE_ID_quirk_no_flr1375
+ffffffc0085508e0 T __UNIQUE_ID_quirk_no_flr1377
+ffffffc0085508fc T __UNIQUE_ID_quirk_no_flr1379
+ffffffc008550918 T __UNIQUE_ID_quirk_no_flr1381
+ffffffc008550934 T __UNIQUE_ID_quirk_no_flr1383
+ffffffc008550950 T __UNIQUE_ID_quirk_no_ext_tags1385
+ffffffc0085509c8 T __UNIQUE_ID_quirk_no_ext_tags1387
+ffffffc008550a40 T __UNIQUE_ID_quirk_no_ext_tags1389
+ffffffc008550ab8 T __UNIQUE_ID_quirk_no_ext_tags1391
+ffffffc008550b30 T __UNIQUE_ID_quirk_no_ext_tags1393
+ffffffc008550ba8 T __UNIQUE_ID_quirk_no_ext_tags1395
+ffffffc008550c20 T __UNIQUE_ID_quirk_no_ext_tags1397
+ffffffc008550c98 T __UNIQUE_ID_quirk_amd_harvest_no_ats1399
+ffffffc008550d34 T __UNIQUE_ID_quirk_amd_harvest_no_ats1401
+ffffffc008550dd0 T __UNIQUE_ID_quirk_amd_harvest_no_ats1403
+ffffffc008550e6c T __UNIQUE_ID_quirk_amd_harvest_no_ats1405
+ffffffc008550f08 T __UNIQUE_ID_quirk_amd_harvest_no_ats1407
+ffffffc008550fa4 T __UNIQUE_ID_quirk_amd_harvest_no_ats1409
+ffffffc008551040 T __UNIQUE_ID_quirk_amd_harvest_no_ats1411
+ffffffc0085510dc T __UNIQUE_ID_quirk_amd_harvest_no_ats1413
+ffffffc008551178 T __UNIQUE_ID_quirk_amd_harvest_no_ats1415
+ffffffc008551214 T __UNIQUE_ID_quirk_amd_harvest_no_ats1417
+ffffffc0085512b0 T __UNIQUE_ID_quirk_amd_harvest_no_ats1419
+ffffffc00855134c T __UNIQUE_ID_quirk_amd_harvest_no_ats1421
+ffffffc0085513e8 T __UNIQUE_ID_quirk_amd_harvest_no_ats1423
+ffffffc008551484 T __UNIQUE_ID_quirk_amd_harvest_no_ats1425
+ffffffc008551520 T __UNIQUE_ID_quirk_amd_harvest_no_ats1427
+ffffffc0085515bc T __UNIQUE_ID_quirk_fsl_no_msi1429
+ffffffc0085515ec T __UNIQUE_ID_quirk_gpu_hda1431
+ffffffc00855161c T __UNIQUE_ID_quirk_gpu_hda1433
+ffffffc00855164c T __UNIQUE_ID_quirk_gpu_hda1435
+ffffffc00855167c T __UNIQUE_ID_quirk_gpu_usb1437
+ffffffc0085516ac T __UNIQUE_ID_quirk_gpu_usb1439
+ffffffc0085516dc T __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1441
+ffffffc00855170c T __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1443
+ffffffc00855173c T __UNIQUE_ID_quirk_nvidia_hda1445
+ffffffc008551764 t quirk_nvidia_hda
+ffffffc008551854 T __UNIQUE_ID_quirk_nvidia_hda1447
+ffffffc008551880 T pci_idt_bus_quirk
+ffffffc008551988 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1449
+ffffffc0085519b0 t quirk_switchtec_ntb_dma_alias
+ffffffc008551b64 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1451
+ffffffc008551b90 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1453
+ffffffc008551bbc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1455
+ffffffc008551be8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1457
+ffffffc008551c14 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1459
+ffffffc008551c40 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1461
+ffffffc008551c6c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1463
+ffffffc008551c98 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1465
+ffffffc008551cc4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1467
+ffffffc008551cf0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1469
+ffffffc008551d1c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1471
+ffffffc008551d48 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1473
+ffffffc008551d74 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1475
+ffffffc008551da0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1477
+ffffffc008551dcc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1479
+ffffffc008551df8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1481
+ffffffc008551e24 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1483
+ffffffc008551e50 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1485
+ffffffc008551e7c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1487
+ffffffc008551ea8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1489
+ffffffc008551ed4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1491
+ffffffc008551f00 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1493
+ffffffc008551f2c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1495
+ffffffc008551f58 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1497
+ffffffc008551f84 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1499
+ffffffc008551fb0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1501
+ffffffc008551fdc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1503
+ffffffc008552008 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1505
+ffffffc008552034 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1507
+ffffffc008552060 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1509
+ffffffc00855208c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1511
+ffffffc0085520b8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1513
+ffffffc0085520e4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1515
+ffffffc008552110 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1517
+ffffffc00855213c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1519
+ffffffc008552168 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1521
+ffffffc008552194 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1523
+ffffffc0085521c0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1525
+ffffffc0085521ec T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1527
+ffffffc008552218 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1529
+ffffffc008552244 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1531
+ffffffc008552270 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1533
+ffffffc00855229c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1535
+ffffffc0085522c8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1537
+ffffffc0085522f4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1539
+ffffffc008552320 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1541
+ffffffc00855234c T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1543
+ffffffc008552378 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1545
+ffffffc0085523a4 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1547
+ffffffc0085523d0 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1549
+ffffffc0085523fc T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1551
+ffffffc008552428 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1553
+ffffffc008552454 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1555
+ffffffc008552480 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1557
+ffffffc0085524ac T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1559
+ffffffc0085524d8 T __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1561
+ffffffc008552504 T __UNIQUE_ID_quirk_plx_ntb_dma_alias1563
+ffffffc008552558 T __UNIQUE_ID_quirk_plx_ntb_dma_alias1565
+ffffffc0085525ac T __UNIQUE_ID_quirk_reset_lenovo_thinkpad_p50_nvgpu1567
+ffffffc0085526a8 T __UNIQUE_ID_pci_fixup_no_d0_pme1569
+ffffffc0085526f8 T __UNIQUE_ID_pci_fixup_no_msi_no_pme1571
+ffffffc00855276c T __UNIQUE_ID_pci_fixup_no_msi_no_pme1573
+ffffffc0085527e0 T __UNIQUE_ID_apex_pci_fixup_class1575
+ffffffc008552804 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1577
+ffffffc00855282c t pci_fixup_pericom_acs_store_forward
+ffffffc00855292c T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1579
+ffffffc008552958 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1581
+ffffffc008552984 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1583
+ffffffc0085529b0 T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1585
+ffffffc0085529dc T __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1587
+ffffffc008552a08 T __UNIQUE_ID_nvidia_ion_ahci_fixup1589
+ffffffc008552a24 T __UNIQUE_ID_rom_bar_overlap_defect1591
+ffffffc008552a74 T __UNIQUE_ID_rom_bar_overlap_defect1593
+ffffffc008552ac4 T __UNIQUE_ID_rom_bar_overlap_defect1595
+ffffffc008552b14 T __UNIQUE_ID_rom_bar_overlap_defect1597
+ffffffc008552b64 T __UNIQUE_ID_aspm_l1_acceptable_latency1609
+ffffffc008552bbc T __UNIQUE_ID_aspm_l1_acceptable_latency1611
+ffffffc008552c14 T __UNIQUE_ID_aspm_l1_acceptable_latency1613
+ffffffc008552c6c T __UNIQUE_ID_aspm_l1_acceptable_latency1615
+ffffffc008552cc4 T __UNIQUE_ID_aspm_l1_acceptable_latency1617
+ffffffc008552d1c T __UNIQUE_ID_aspm_l1_acceptable_latency1619
+ffffffc008552d74 T __UNIQUE_ID_aspm_l1_acceptable_latency1621
+ffffffc008552dcc T __UNIQUE_ID_aspm_l1_acceptable_latency1623
+ffffffc008552e24 T __UNIQUE_ID_aspm_l1_acceptable_latency1625
+ffffffc008552e7c T __UNIQUE_ID_aspm_l1_acceptable_latency1627
+ffffffc008552ed4 T __UNIQUE_ID_aspm_l1_acceptable_latency1629
+ffffffc008552f2c T __UNIQUE_ID_aspm_l1_acceptable_latency1631
+ffffffc008552f84 T __UNIQUE_ID_aspm_l1_acceptable_latency1633
+ffffffc008552fdc T __UNIQUE_ID_aspm_l1_acceptable_latency1635
+ffffffc008553034 T __UNIQUE_ID_aspm_l1_acceptable_latency1637
+ffffffc00855308c T __UNIQUE_ID_aspm_l1_acceptable_latency1639
+ffffffc0085530e4 T __UNIQUE_ID_aspm_l1_acceptable_latency1641
+ffffffc00855313c T __UNIQUE_ID_aspm_l1_acceptable_latency1643
+ffffffc008553194 T __UNIQUE_ID_aspm_l1_acceptable_latency1645
+ffffffc0085531ec T __UNIQUE_ID_aspm_l1_acceptable_latency1647
+ffffffc008553244 T __UNIQUE_ID_aspm_l1_acceptable_latency1649
+ffffffc00855329c T __UNIQUE_ID_aspm_l1_acceptable_latency1651
+ffffffc0085532f4 T __UNIQUE_ID_aspm_l1_acceptable_latency1653
+ffffffc00855334c T __UNIQUE_ID_aspm_l1_acceptable_latency1655
+ffffffc0085533a4 T __UNIQUE_ID_aspm_l1_acceptable_latency1657
+ffffffc0085533fc T __UNIQUE_ID_aspm_l1_acceptable_latency1659
+ffffffc008553450 t quirk_io_region
+ffffffc00855355c t msi_ht_cap_enabled
+ffffffc008553654 t __nv_msi_ht_cap_quirk
+ffffffc0085539e8 t reset_intel_82599_sfp_virtfn
+ffffffc008553a1c t reset_ivb_igd
+ffffffc008553b2c t nvme_disable_and_flr
+ffffffc008553cc0 t delay_250ms_after_flr
+ffffffc008553d0c t reset_chelsio_generic_dev
+ffffffc008553e10 t reset_hinic_vf_dev
+ffffffc008553f6c t pci_quirk_amd_sb_acs
+ffffffc008553f80 t pci_quirk_mf_endpoint_acs
+ffffffc008553f9c t pci_quirk_rciep_acs
+ffffffc008553fcc t pci_quirk_qcom_rp_acs
+ffffffc008553fe8 t pci_quirk_intel_pch_acs
+ffffffc008554068 t pci_quirk_intel_spt_pch_acs
+ffffffc008554128 t pci_quirk_cavium_acs
+ffffffc008554190 t pci_quirk_xgene_acs
+ffffffc0085541ac t pci_quirk_brcm_acs
+ffffffc0085541c8 t pci_quirk_al_acs
+ffffffc0085541f8 t pci_quirk_nxp_rp_acs
+ffffffc008554214 t pci_quirk_zhaoxin_pcie_ports_acs
+ffffffc008554290 t pci_quirk_wangxun_nic_acs
+ffffffc0085542d4 t pci_quirk_intel_spt_pch_acs_match
+ffffffc00855436c t pci_create_device_link
+ffffffc00855444c T pci_ats_init
+ffffffc0085544a0 T pci_ats_supported
+ffffffc0085544dc T pci_enable_ats
+ffffffc00855458c T pci_disable_ats
+ffffffc008554654 T pci_restore_ats_state
+ffffffc0085546b8 T pci_ats_queue_depth
+ffffffc008554758 T pci_ats_page_aligned
+ffffffc0085547d4 T pci_iov_virtfn_bus
+ffffffc008554828 T pci_iov_virtfn_devfn
+ffffffc008554874 T pci_iov_vf_id
+ffffffc0085548e0 T pci_iov_get_pf_drvdata
+ffffffc008554924 T pci_iov_resource_size
+ffffffc008554970 T pci_iov_sysfs_link
+ffffffc008554a54 t sriov_vf_attrs_are_visible
+ffffffc008554a88 T pci_iov_add_virtfn
+ffffffc008554e1c T pci_iov_remove_virtfn
+ffffffc008554f70 t sriov_pf_attrs_are_visible
+ffffffc008554fb8 W pcibios_sriov_enable
+ffffffc008554fcc W pcibios_sriov_disable
+ffffffc008554fe0 T pci_iov_init
+ffffffc008555480 T pci_iov_release
+ffffffc0085554f8 T pci_iov_remove
+ffffffc00855555c T pci_iov_update_resource
+ffffffc0085556e4 W pcibios_iov_resource_alignment
+ffffffc008555730 T pci_sriov_resource_alignment
+ffffffc00855575c T pci_restore_iov_state
+ffffffc0085558dc T pci_vf_drivers_autoprobe
+ffffffc00855590c T pci_iov_bus_range
+ffffffc008555980 T pci_enable_sriov
+ffffffc0085559c4 t sriov_enable
+ffffffc008555d4c T pci_disable_sriov
+ffffffc008555d88 t sriov_disable
+ffffffc008555e98 T pci_num_vf
+ffffffc008555ed0 T pci_vfs_assigned
+ffffffc008555f94 T pci_sriov_set_totalvfs
+ffffffc008555ffc T pci_sriov_get_totalvfs
+ffffffc008556034 T pci_sriov_configure_simple
+ffffffc00855613c t sriov_vf_msix_count_store
+ffffffc008556290 t sriov_totalvfs_show
+ffffffc0085562f4 t sriov_numvfs_show
+ffffffc008556368 t sriov_numvfs_store
+ffffffc008556544 t sriov_offset_show
+ffffffc00855658c t sriov_stride_show
+ffffffc0085565d4 t sriov_vf_device_show
+ffffffc00855661c t sriov_drivers_autoprobe_show
+ffffffc008556664 t sriov_drivers_autoprobe_store
+ffffffc0085566f4 t sriov_vf_total_msix_show
+ffffffc008556798 t pci_iov_set_numvfs
+ffffffc008556804 t sriov_add_vfs
+ffffffc0085568ac T __arm64_sys_pciconfig_read
+ffffffc0085570a4 T __arm64_sys_pciconfig_write
+ffffffc00855753c T pci_ecam_create
+ffffffc0085577a0 T pci_ecam_free
+ffffffc0085577f8 T pci_ecam_map_bus
+ffffffc008557878 t pci_ecam_add_bus
+ffffffc00855788c t pci_ecam_remove_bus
+ffffffc00855789c T vga_default_device
+ffffffc0085578b4 T vga_set_default_device
+ffffffc00855790c T vga_remove_vgacon
+ffffffc008557920 T vga_get
+ffffffc008557ad8 t __vga_tryget
+ffffffc008557d04 T vga_put
+ffffffc008557da0 t __vga_put
+ffffffc008557e8c T vga_set_legacy_decoding
+ffffffc008557eb8 t __vga_set_legacy_decoding
+ffffffc008558044 T vga_client_register
+ffffffc0085580d0 t vga_arbiter_notify_clients
+ffffffc00855827c t vga_arbiter_add_pci_device
+ffffffc0085586ac t vga_arb_read
+ffffffc0085589f4 t vga_arb_write
+ffffffc008559620 t vga_arb_fpoll
+ffffffc008559680 t vga_arb_open
+ffffffc008559748 t vga_arb_release
+ffffffc0085599d4 t pci_notify
+ffffffc008559b3c T pci_epc_put
+ffffffc008559b74 T pci_epc_get
+ffffffc008559c60 T pci_epc_get_first_free_bar
+ffffffc008559ca8 T pci_epc_get_next_free_bar
+ffffffc008559d10 T pci_epc_get_features
+ffffffc008559df8 T pci_epc_stop
+ffffffc008559e7c T pci_epc_start
+ffffffc008559f18 T pci_epc_raise_irq
+ffffffc00855a018 T pci_epc_map_msi_irq
+ffffffc00855a124 T pci_epc_get_msi
+ffffffc00855a210 T pci_epc_set_msi
+ffffffc00855a324 T pci_epc_get_msix
+ffffffc00855a408 T pci_epc_set_msix
+ffffffc00855a520 T pci_epc_unmap_addr
+ffffffc00855a5fc T pci_epc_map_addr
+ffffffc00855a704 T pci_epc_clear_bar
+ffffffc00855a7f4 T pci_epc_set_bar
+ffffffc00855a90c T pci_epc_write_header
+ffffffc00855aa08 T pci_epc_add_epf
+ffffffc00855ab64 T pci_epc_remove_epf
+ffffffc00855ac70 T pci_epc_linkup
+ffffffc00855acb4 T pci_epc_init_notify
+ffffffc00855acf8 T pci_epc_destroy
+ffffffc00855ad38 T devm_pci_epc_destroy
+ffffffc00855adc8 t devm_pci_epc_release
+ffffffc00855ae0c t devm_pci_epc_match
+ffffffc00855ae28 T __pci_epc_create
+ffffffc00855af38 T __devm_pci_epc_create
+ffffffc00855afe0 T pci_epf_type_add_cfs
+ffffffc00855b098 T pci_epf_unbind
+ffffffc00855b1a0 T pci_epf_bind
+ffffffc00855b3bc T pci_epf_add_vepf
+ffffffc00855b500 T pci_epf_remove_vepf
+ffffffc00855b5e0 T pci_epf_free_space
+ffffffc00855b660 T pci_epf_alloc_space
+ffffffc00855b798 T pci_epf_unregister_driver
+ffffffc00855b7c8 T __pci_epf_register_driver
+ffffffc00855b828 T pci_epf_destroy
+ffffffc00855b854 T pci_epf_create
+ffffffc00855b95c t pci_epf_dev_release
+ffffffc00855b9a0 t pci_epf_device_match
+ffffffc00855ba20 t pci_epf_device_probe
+ffffffc00855ba80 t pci_epf_device_remove
+ffffffc00855bae4 T pci_epc_multi_mem_init
+ffffffc00855bc70 T pci_epc_mem_init
+ffffffc00855bcd8 T pci_epc_mem_exit
+ffffffc00855bd5c T pci_epc_mem_alloc_addr
+ffffffc00855bed4 T pci_epc_mem_free_addr
+ffffffc00855c004 T pci_host_common_probe
+ffffffc00855c1bc T pci_host_common_remove
+ffffffc00855c21c t gen_pci_unmap_cfg
+ffffffc00855c248 t pci_dw_ecam_map_bus
+ffffffc00855c298 T dw_pcie_version_detect
+ffffffc00855c410 T dw_pcie_find_capability
+ffffffc00855c4bc t __dw_pcie_find_next_cap
+ffffffc00855c5ac T dw_pcie_find_ext_capability
+ffffffc00855c724 T dw_pcie_read
+ffffffc00855c7c4 T dw_pcie_write
+ffffffc00855c850 T dw_pcie_read_dbi
+ffffffc00855c924 T dw_pcie_write_dbi
+ffffffc00855c9f0 T dw_pcie_write_dbi2
+ffffffc00855cabc T dw_pcie_prog_outbound_atu
+ffffffc00855cafc t __dw_pcie_prog_outbound_atu.llvm.5464332991746355268
+ffffffc00855cf98 T dw_pcie_prog_ep_outbound_atu
+ffffffc00855cfc4 T dw_pcie_prog_inbound_atu
+ffffffc00855d340 T dw_pcie_disable_atu
+ffffffc00855d370 t dw_pcie_writel_atu.llvm.5464332991746355268
+ffffffc00855d4c0 T dw_pcie_print_link_status
+ffffffc00855d5f4 T dw_pcie_wait_for_link
+ffffffc00855d734 T dw_pcie_link_up
+ffffffc00855d800 T dw_pcie_upconfig_setup
+ffffffc00855d910 T dw_pcie_iatu_detect
+ffffffc00855dd5c T dw_pcie_setup
+ffffffc00855e660 t dw_pcie_readl_atu
+ffffffc00855e7a0 T dw_handle_msi_irq
+ffffffc00855e894 T dw_pcie_allocate_domains
+ffffffc00855e960 T dw_pcie_host_init
+ffffffc00855ed50 t dw_pcie_msi_host_init
+ffffffc00855f23c T dw_pcie_setup_rc
+ffffffc00855f5fc t dw_pcie_free_msi
+ffffffc00855f700 T dw_pcie_host_deinit
+ffffffc00855f7b8 T dw_pcie_own_conf_map_bus
+ffffffc00855f7e8 t dw_pcie_irq_domain_alloc
+ffffffc00855f8d8 t dw_pcie_irq_domain_free
+ffffffc00855f970 t dw_msi_ack_irq
+ffffffc00855f99c t dw_msi_mask_irq
+ffffffc00855f9dc t dw_msi_unmask_irq
+ffffffc00855fa1c t dw_chained_msi_isr
+ffffffc00855fbb0 t dw_pci_bottom_ack
+ffffffc00855fc04 t dw_pci_bottom_mask
+ffffffc00855fca8 t dw_pci_bottom_unmask
+ffffffc00855fd4c t dw_pci_msi_set_affinity
+ffffffc00855fd60 t dw_pci_setup_msi_msg
+ffffffc00855fd84 t dw_pcie_other_conf_map_bus
+ffffffc00855fe30 t dw_pcie_rd_other_conf
+ffffffc00855fea0 t dw_pcie_wr_other_conf
+ffffffc00855ff10 T dw_pcie_ep_linkup
+ffffffc00855ff40 T dw_pcie_ep_init_notify
+ffffffc00855ff70 T dw_pcie_ep_get_func_from_ep
+ffffffc00855ffb0 T dw_pcie_ep_reset_bar
+ffffffc00856001c t __dw_pcie_ep_reset_bar
+ffffffc00856013c T dw_pcie_ep_raise_legacy_irq
+ffffffc00856017c T dw_pcie_ep_raise_msi_irq
+ffffffc0085603b8 t dw_pcie_ep_map_addr
+ffffffc0085604d8 t dw_pcie_ep_unmap_addr
+ffffffc00856058c T dw_pcie_ep_raise_msix_irq_doorbell
+ffffffc00856060c T dw_pcie_ep_raise_msix_irq
+ffffffc0085607e8 T dw_pcie_ep_exit
+ffffffc008560838 T dw_pcie_ep_init_complete
+ffffffc0085609fc T dw_pcie_ep_init
+ffffffc008560e3c t dw_pcie_ep_write_header
+ffffffc008560fb8 t dw_pcie_ep_set_bar
+ffffffc008561200 t dw_pcie_ep_clear_bar
+ffffffc0085612d0 t dw_pcie_ep_set_msi
+ffffffc008561400 t dw_pcie_ep_get_msi
+ffffffc0085614bc t dw_pcie_ep_set_msix
+ffffffc00856164c t dw_pcie_ep_get_msix
+ffffffc008561710 t dw_pcie_ep_raise_irq
+ffffffc008561774 t dw_pcie_ep_start
+ffffffc0085617d8 t dw_pcie_ep_stop
+ffffffc008561834 t dw_pcie_ep_get_features
+ffffffc00856188c t __dw_pcie_ep_find_next_cap
+ffffffc008561968 t dw_plat_pcie_probe
+ffffffc008561a48 t dw_plat_pcie_ep_init
+ffffffc008561ac4 t dw_plat_pcie_ep_raise_irq
+ffffffc008561b4c t dw_plat_pcie_get_features
+ffffffc008561b60 t clk_prepare_enable
+ffffffc008561bbc t kirin_pcie_probe
+ffffffc008562124 t kirin_pcie_read_dbi
+ffffffc008562208 t kirin_pcie_write_dbi
+ffffffc0085622f4 t kirin_pcie_link_up
+ffffffc008562374 t kirin_pcie_start_link
+ffffffc0085623b8 t kirin_pcie_host_init
+ffffffc0085623e0 t kirin_pcie_add_bus
+ffffffc0085624ac t kirin_pcie_rd_own_conf
+ffffffc008562514 t kirin_pcie_wr_own_conf
+ffffffc00856256c t dummycon_startup.llvm.2266574240955740041
+ffffffc008562584 t dummycon_init.llvm.2266574240955740041
+ffffffc0085625e8 t dummycon_deinit.llvm.2266574240955740041
+ffffffc0085625f8 t dummycon_clear.llvm.2266574240955740041
+ffffffc008562608 t dummycon_putc.llvm.2266574240955740041
+ffffffc008562618 t dummycon_putcs.llvm.2266574240955740041
+ffffffc008562628 t dummycon_cursor.llvm.2266574240955740041
+ffffffc008562638 t dummycon_scroll.llvm.2266574240955740041
+ffffffc00856264c t dummycon_switch.llvm.2266574240955740041
+ffffffc008562660 t dummycon_blank.llvm.2266574240955740041
+ffffffc008562674 t amba_match
+ffffffc0085627b4 t amba_uevent
+ffffffc008562818 t amba_probe
+ffffffc008562ba4 t amba_remove
+ffffffc008562d14 t amba_shutdown
+ffffffc008562d68 t amba_dma_configure
+ffffffc008562ddc t amba_dma_cleanup
+ffffffc008562e14 T amba_driver_register
+ffffffc008562e5c T amba_driver_unregister
+ffffffc008562e88 T amba_device_add
+ffffffc008562f14 t amba_read_periphid
+ffffffc0085630fc T amba_device_alloc
+ffffffc0085631e8 T amba_device_register
+ffffffc0085632f0 T amba_device_put
+ffffffc008563320 T amba_device_unregister
+ffffffc00856334c T amba_request_regions
+ffffffc0085633b0 T amba_release_regions
+ffffffc0085633f4 t id_show
+ffffffc008563438 t id_show
+ffffffc008563480 t id_show
+ffffffc0085634c4 t amba_pm_runtime_suspend
+ffffffc008563538 t amba_pm_runtime_resume
+ffffffc0085635d4 t amba_proxy_probe
+ffffffc008563610 t amba_device_release
+ffffffc00856365c T devm_clk_get
+ffffffc008563708 T devm_clk_get_prepared
+ffffffc0085637dc T devm_clk_get_enabled
+ffffffc0085638c8 t clk_disable_unprepare
+ffffffc008563908 T devm_clk_get_optional
+ffffffc0085639b8 T devm_clk_get_optional_prepared
+ffffffc008563a90 T devm_clk_get_optional_enabled
+ffffffc008563b80 T devm_clk_bulk_get
+ffffffc008563c3c T devm_clk_bulk_get_optional
+ffffffc008563cf8 T devm_clk_bulk_get_all
+ffffffc008563da8 t devm_clk_bulk_release_all
+ffffffc008563ddc T devm_clk_put
+ffffffc008563e28 t devm_clk_release
+ffffffc008563e8c t devm_clk_release
+ffffffc008563ebc t devm_clk_match
+ffffffc008563ef0 T devm_get_clk_from_child
+ffffffc008563f9c t devm_clk_bulk_release
+ffffffc008563fd0 T clk_bulk_put
+ffffffc008564028 T clk_bulk_get
+ffffffc008564054 t __clk_bulk_get.llvm.2832781860400993084
+ffffffc0085641a0 T clk_bulk_get_optional
+ffffffc0085641d0 T clk_bulk_put_all
+ffffffc008564248 T clk_bulk_get_all
+ffffffc00856440c T clk_bulk_unprepare
+ffffffc008564460 T clk_bulk_prepare
+ffffffc008564518 T clk_bulk_disable
+ffffffc00856456c T clk_bulk_enable
+ffffffc008564624 T clk_find_hw
+ffffffc008564744 T clk_get_sys
+ffffffc008564794 T clk_get
+ffffffc008564840 T clk_put
+ffffffc00856486c T clkdev_add
+ffffffc008564900 T clkdev_add_table
+ffffffc0085649a8 T clkdev_create
+ffffffc008564aac T clkdev_hw_create
+ffffffc008564b94 T clk_add_alias
+ffffffc008564c98 T clkdev_drop
+ffffffc008564d18 T clk_register_clkdev
+ffffffc008564d9c T clk_hw_register_clkdev
+ffffffc008564df8 T devm_clk_hw_register_clkdev
+ffffffc008564efc t devm_clkdev_release
+ffffffc008564f78 t __clk_register_clkdev
+ffffffc008565060 T __traceiter_clk_enable
+ffffffc0085650e0 T __traceiter_clk_enable_complete
+ffffffc008565160 T __traceiter_clk_disable
+ffffffc0085651e0 T __traceiter_clk_disable_complete
+ffffffc008565260 T __traceiter_clk_prepare
+ffffffc0085652e0 T __traceiter_clk_prepare_complete
+ffffffc008565360 T __traceiter_clk_unprepare
+ffffffc0085653e0 T __traceiter_clk_unprepare_complete
+ffffffc008565460 T __traceiter_clk_set_rate
+ffffffc0085654f0 T __traceiter_clk_set_rate_complete
+ffffffc008565580 T __traceiter_clk_set_min_rate
+ffffffc008565610 T __traceiter_clk_set_max_rate
+ffffffc0085656a0 T __traceiter_clk_set_rate_range
+ffffffc008565738 T __traceiter_clk_set_parent
+ffffffc0085657c8 T __traceiter_clk_set_parent_complete
+ffffffc008565858 T __traceiter_clk_set_phase
+ffffffc0085658e8 T __traceiter_clk_set_phase_complete
+ffffffc008565978 T __traceiter_clk_set_duty_cycle
+ffffffc008565a08 T __traceiter_clk_set_duty_cycle_complete
+ffffffc008565a98 t trace_event_raw_event_clk
+ffffffc008565b90 t perf_trace_clk
+ffffffc008565cf8 t trace_event_raw_event_clk_rate
+ffffffc008565e04 t perf_trace_clk_rate
+ffffffc008565f80 t trace_event_raw_event_clk_rate_range
+ffffffc008566090 t perf_trace_clk_rate_range
+ffffffc008566210 t trace_event_raw_event_clk_parent
+ffffffc00856637c t perf_trace_clk_parent
+ffffffc00856654c t trace_event_raw_event_clk_phase
+ffffffc008566658 t perf_trace_clk_phase
+ffffffc0085667d4 t trace_event_raw_event_clk_duty_cycle
+ffffffc0085668ec t perf_trace_clk_duty_cycle
+ffffffc008566a70 T __clk_get_name
+ffffffc008566a90 T clk_hw_get_name
+ffffffc008566aa8 T __clk_get_hw
+ffffffc008566ac8 T clk_hw_get_num_parents
+ffffffc008566ae0 T clk_hw_get_parent
+ffffffc008566b0c T clk_hw_get_parent_by_index
+ffffffc008566b40 t clk_core_get_parent_by_index
+ffffffc008566c70 T __clk_get_enable_count
+ffffffc008566c90 T clk_hw_get_rate
+ffffffc008566cc8 T clk_hw_get_flags
+ffffffc008566ce0 T clk_hw_is_prepared
+ffffffc008566d10 t clk_core_is_prepared
+ffffffc008566e34 T clk_hw_rate_is_protected
+ffffffc008566e54 T clk_hw_is_enabled
+ffffffc008566f4c T __clk_is_enabled
+ffffffc008567050 T clk_mux_determine_rate_flags
+ffffffc008567254 t clk_core_forward_rate_req
+ffffffc0085673d0 t clk_core_round_rate_nolock
+ffffffc008567578 T __clk_lookup
+ffffffc008567624 T clk_hw_get_rate_range
+ffffffc0085676b4 T clk_hw_set_rate_range
+ffffffc0085676d4 T __clk_mux_determine_rate
+ffffffc008567704 T __clk_mux_determine_rate_closest
+ffffffc008567734 T clk_rate_exclusive_put
+ffffffc008567854 t clk_core_rate_unprotect
+ffffffc0085678b4 T clk_rate_exclusive_get
+ffffffc0085679a8 t clk_core_rate_protect
+ffffffc0085679fc T clk_unprepare
+ffffffc008567a34 t clk_core_unprepare_lock
+ffffffc008567b34 T clk_prepare
+ffffffc008567b64 t clk_core_prepare_lock
+ffffffc008567c6c T clk_disable
+ffffffc008567ca4 t clk_core_disable_lock
+ffffffc008567dec T clk_gate_restore_context
+ffffffc008567e68 T clk_save_context
+ffffffc008567efc t clk_core_save_context
+ffffffc008567f88 T clk_restore_context
+ffffffc008568008 t clk_core_restore_context
+ffffffc00856808c T clk_enable
+ffffffc0085680bc t clk_core_enable_lock
+ffffffc00856820c T clk_is_enabled_when_prepared
+ffffffc008568248 T clk_sync_state
+ffffffc008568398 t clk_unprepare_disable_dev_subtree
+ffffffc008568420 T clk_hw_init_rate_request
+ffffffc0085684f4 T clk_hw_forward_rate_request
+ffffffc008568540 T __clk_determine_rate
+ffffffc00856857c T clk_hw_round_rate
+ffffffc008568678 T clk_round_rate
+ffffffc00856887c T clk_get_accuracy
+ffffffc00856899c T clk_get_rate
+ffffffc008568adc T clk_hw_get_parent_index
+ffffffc008568b28 t clk_fetch_parent_index
+ffffffc008568c20 T clk_set_rate
+ffffffc008568d5c t clk_core_set_rate_nolock
+ffffffc008568fd4 T clk_set_rate_exclusive
+ffffffc00856910c T clk_set_rate_range
+ffffffc008569234 t clk_set_rate_range_nolock
+ffffffc008569474 T clk_set_min_rate
+ffffffc0085695a4 T clk_set_max_rate
+ffffffc0085696d8 T clk_get_parent
+ffffffc0085697f0 T clk_hw_reparent
+ffffffc0085698fc T clk_has_parent
+ffffffc008569998 T clk_hw_set_parent
+ffffffc0085699c8 t clk_core_set_parent_nolock
+ffffffc008569f30 T clk_set_parent
+ffffffc00856a07c T clk_set_phase
+ffffffc00856a3e4 T clk_get_phase
+ffffffc00856a52c T clk_set_duty_cycle
+ffffffc00856a6a4 t clk_core_set_duty_cycle_nolock
+ffffffc00856a90c T clk_get_scaled_duty_cycle
+ffffffc00856a93c t clk_core_get_scaled_duty_cycle
+ffffffc00856aa70 T clk_is_match
+ffffffc00856aac0 T clk_hw_create_clk
+ffffffc00856abf4 t clk_core_link_consumer
+ffffffc00856ad08 T clk_hw_get_clk
+ffffffc00856ad60 T clk_register
+ffffffc00856adac t __clk_register
+ffffffc00856b938 T clk_hw_register
+ffffffc00856b990 T of_clk_hw_register
+ffffffc00856b9d0 T clk_unregister
+ffffffc00856bd9c t kref_put
+ffffffc00856be88 T clk_hw_unregister
+ffffffc00856beb8 T devm_clk_register
+ffffffc00856bf80 t devm_clk_unregister_cb
+ffffffc00856bfb0 T devm_clk_hw_register
+ffffffc00856c080 t devm_clk_hw_unregister_cb
+ffffffc00856c0b4 T devm_clk_hw_get_clk
+ffffffc00856c198 T __clk_put
+ffffffc00856c340 T clk_notifier_register
+ffffffc00856c504 T clk_notifier_unregister
+ffffffc00856c6b8 T devm_clk_notifier_register
+ffffffc00856c750 t devm_clk_notifier_release
+ffffffc00856c780 T of_clk_src_simple_get
+ffffffc00856c794 T of_clk_hw_simple_get
+ffffffc00856c7a8 T of_clk_src_onecell_get
+ffffffc00856c804 T of_clk_hw_onecell_get
+ffffffc00856c860 T of_clk_add_provider
+ffffffc00856c9d4 t clk_core_reparent_orphans
+ffffffc00856cacc T of_clk_del_provider
+ffffffc00856cb90 T of_clk_add_hw_provider
+ffffffc00856cd08 T devm_of_clk_add_hw_provider
+ffffffc00856ce08 t devm_of_clk_release_provider
+ffffffc00856cec8 T of_clk_get_from_provider
+ffffffc00856cfec T of_clk_get_hw
+ffffffc00856d13c t of_parse_clkspec
+ffffffc00856d2a4 T of_clk_get
+ffffffc00856d2f4 T of_clk_get_by_name
+ffffffc00856d358 T of_clk_get_parent_count
+ffffffc00856d39c T of_clk_get_parent_name
+ffffffc00856d528 T of_clk_parent_fill
+ffffffc00856d5a4 T of_clk_detect_critical
+ffffffc00856d684 t trace_raw_output_clk
+ffffffc00856d6fc t trace_raw_output_clk_rate
+ffffffc00856d778 t trace_raw_output_clk_rate_range
+ffffffc00856d7f4 t trace_raw_output_clk_parent
+ffffffc00856d874 t trace_raw_output_clk_phase
+ffffffc00856d8f0 t trace_raw_output_clk_duty_cycle
+ffffffc00856d968 t clk_core_get
+ffffffc00856db2c t clk_pm_runtime_get
+ffffffc00856dbe4 t __clk_lookup_subtree
+ffffffc00856dc64 t clk_core_unprepare
+ffffffc00856defc t clk_core_prepare
+ffffffc00856e1f0 t clk_core_disable
+ffffffc00856e4bc t clk_core_enable
+ffffffc00856e7ac t __clk_recalc_accuracies
+ffffffc00856e844 t __clk_recalc_rates
+ffffffc00856e970 t clk_recalc
+ffffffc00856ea80 t clk_calc_new_rates
+ffffffc00856edd8 t clk_propagate_rate_change
+ffffffc00856ef64 t clk_change_rate
+ffffffc00856f638 t clk_calc_subtree
+ffffffc00856f6c4 t __clk_set_parent_before
+ffffffc00856f934 t __clk_set_parent_after
+ffffffc00856f9bc t clk_core_update_orphan_status
+ffffffc00856fa1c t __clk_speculate_rates
+ffffffc00856fb28 t clk_core_update_duty_cycle_nolock
+ffffffc00856fbec t clk_debug_create_one
+ffffffc00856fe68 t clk_summary_open
+ffffffc00856fea8 t clk_summary_show
+ffffffc00857001c t clk_summary_show_subtree
+ffffffc008570364 t clk_dump_open
+ffffffc0085703a4 t clk_dump_show
+ffffffc00857054c t clk_dump_subtree
+ffffffc0085707d0 t clk_rate_fops_open
+ffffffc008570814 t clk_rate_get
+ffffffc008570958 t clk_rate_set
+ffffffc008570a70 t clk_min_rate_open
+ffffffc008570ab0 t clk_min_rate_show
+ffffffc008570c00 t clk_max_rate_open
+ffffffc008570c40 t clk_max_rate_show
+ffffffc008570d90 t clk_flags_open
+ffffffc008570dd0 t clk_flags_show
+ffffffc008570e88 t clk_duty_cycle_open
+ffffffc008570ec8 t clk_duty_cycle_show
+ffffffc008570f08 t clk_prepare_enable_fops_open
+ffffffc008570f4c t clk_prepare_enable_get
+ffffffc008570f80 t clk_prepare_enable_set
+ffffffc00857101c t current_parent_write
+ffffffc0085711ac t current_parent_open
+ffffffc0085711ec t current_parent_show
+ffffffc008571234 t possible_parents_open
+ffffffc008571274 t possible_parents_show
+ffffffc008571308 t possible_parent_show
+ffffffc0085713e0 t clk_core_hold_state
+ffffffc00857148c t clk_core_reparent_orphans_nolock
+ffffffc008571580 t __clk_core_update_orphan_hold_state
+ffffffc0085715e4 t clk_nodrv_prepare_enable
+ffffffc0085715f8 t clk_nodrv_disable_unprepare
+ffffffc00857160c t clk_nodrv_set_parent
+ffffffc008571620 t clk_nodrv_set_rate
+ffffffc008571630 t clk_core_evict_parent_cache_subtree
+ffffffc0085716c8 T divider_recalc_rate
+ffffffc0085717ac T divider_determine_rate
+ffffffc008571c78 T divider_ro_determine_rate
+ffffffc008571d7c T divider_round_rate_parent
+ffffffc008571e40 T divider_ro_round_rate_parent
+ffffffc008571fac T divider_get_val
+ffffffc0085720c4 t clk_divider_recalc_rate
+ffffffc0085721f0 t clk_divider_round_rate
+ffffffc00857234c t clk_divider_determine_rate
+ffffffc0085724bc t clk_divider_set_rate
+ffffffc0085726dc T __clk_hw_register_divider
+ffffffc00857286c T clk_register_divider_table
+ffffffc0085728e4 T clk_unregister_divider
+ffffffc008572934 T clk_hw_unregister_divider
+ffffffc008572978 T __devm_clk_hw_register_divider
+ffffffc008572a80 t devm_clk_hw_release_divider
+ffffffc008572ac4 t clk_factor_recalc_rate
+ffffffc008572ae0 t clk_factor_round_rate
+ffffffc008572b60 t clk_factor_set_rate
+ffffffc008572b74 T devm_clk_hw_register_fixed_factor_index
+ffffffc008572ca0 t __clk_hw_register_fixed_factor
+ffffffc008572e04 T devm_clk_hw_register_fixed_factor_parent_hw
+ffffffc008572e48 T clk_hw_register_fixed_factor_parent_hw
+ffffffc008572f90 T clk_hw_register_fixed_factor
+ffffffc0085730d8 T clk_register_fixed_factor
+ffffffc008573110 T clk_unregister_fixed_factor
+ffffffc008573160 T clk_hw_unregister_fixed_factor
+ffffffc0085731a4 T devm_clk_hw_register_fixed_factor
+ffffffc0085731e0 t _of_fixed_factor_clk_setup
+ffffffc0085733cc t devm_clk_hw_register_fixed_factor_release
+ffffffc0085733fc t of_fixed_factor_clk_probe
+ffffffc008573448 t of_fixed_factor_clk_remove
+ffffffc008573498 t clk_fixed_rate_recalc_rate
+ffffffc0085734ac t clk_fixed_rate_recalc_accuracy
+ffffffc0085734d0 T __clk_hw_register_fixed_rate
+ffffffc008573680 t devm_clk_hw_register_fixed_rate_release
+ffffffc0085736b0 T clk_register_fixed_rate
+ffffffc0085737c4 T clk_unregister_fixed_rate
+ffffffc008573814 T clk_hw_unregister_fixed_rate
+ffffffc008573854 t _of_fixed_clk_setup
+ffffffc0085739d4 t of_fixed_clk_probe
+ffffffc008573a20 t of_fixed_clk_remove
+ffffffc008573a70 T clk_gate_is_enabled
+ffffffc008573af4 t clk_gate_enable
+ffffffc008573b28 t clk_gate_disable
+ffffffc008573b58 T __clk_hw_register_gate
+ffffffc008573cec T clk_register_gate
+ffffffc008573d60 T clk_unregister_gate
+ffffffc008573db0 T clk_hw_unregister_gate
+ffffffc008573df4 T __devm_clk_hw_register_gate
+ffffffc008573f04 t devm_clk_hw_release_gate
+ffffffc008573f44 t clk_gate_endisable
+ffffffc008574068 t clk_multiplier_recalc_rate
+ffffffc0085740fc t clk_multiplier_round_rate
+ffffffc008574240 t clk_multiplier_set_rate
+ffffffc00857434c T clk_mux_val_to_index
+ffffffc0085743c8 T clk_mux_index_to_val
+ffffffc008574408 t clk_mux_determine_rate
+ffffffc008574438 t clk_mux_set_parent
+ffffffc008574564 t clk_mux_get_parent
+ffffffc008574644 T __clk_hw_register_mux
+ffffffc0085747f0 T __devm_clk_hw_register_mux
+ffffffc008574910 t devm_clk_hw_release_mux
+ffffffc008574954 T clk_register_mux_table
+ffffffc0085749d4 T clk_unregister_mux
+ffffffc008574a24 T clk_hw_unregister_mux
+ffffffc008574a68 T clk_hw_register_composite
+ffffffc008574ac0 t __clk_hw_register_composite
+ffffffc008574d84 T clk_hw_register_composite_pdata
+ffffffc008574de4 T clk_register_composite
+ffffffc008574e4c T clk_register_composite_pdata
+ffffffc008574eb8 T clk_unregister_composite
+ffffffc008574f08 T clk_hw_unregister_composite
+ffffffc008574f4c T devm_clk_hw_register_composite_pdata
+ffffffc008575054 t clk_composite_get_parent
+ffffffc0085750b8 t clk_composite_set_parent
+ffffffc00857511c t clk_composite_determine_rate
+ffffffc00857546c t clk_composite_recalc_rate
+ffffffc0085754d0 t clk_composite_round_rate
+ffffffc008575534 t clk_composite_set_rate
+ffffffc008575598 t clk_composite_set_rate_and_parent
+ffffffc0085756f4 t clk_composite_is_enabled
+ffffffc008575758 t clk_composite_enable
+ffffffc0085757bc t clk_composite_disable
+ffffffc008575820 t devm_clk_hw_release_composite
+ffffffc008575864 T clk_fractional_divider_general_approximation
+ffffffc0085758f4 t clk_fd_recalc_rate
+ffffffc0085759dc t clk_fd_round_rate
+ffffffc008575b18 t clk_fd_set_rate
+ffffffc008575c7c T clk_hw_register_fractional_divider
+ffffffc008575dec T clk_register_fractional_divider
+ffffffc008575f68 T clk_hw_unregister_fractional_divider
+ffffffc008575fac t gpio_clk_driver_probe
+ffffffc0085760a8 T of_clk_set_defaults
+ffffffc008576458 T virtio_check_driver_offered_feature
+ffffffc0085764bc T virtio_config_changed
+ffffffc008576558 T virtio_add_status
+ffffffc0085765e0 T virtio_reset_device
+ffffffc00857662c T register_virtio_driver
+ffffffc008576678 T unregister_virtio_driver
+ffffffc0085766a4 T register_virtio_device
+ffffffc008576954 T is_virtio_device
+ffffffc008576978 T unregister_virtio_device
+ffffffc0085769c0 T virtio_device_freeze
+ffffffc008576a7c T virtio_device_restore
+ffffffc008576d78 t virtio_features_ok
+ffffffc008576ea0 t virtio_dev_match
+ffffffc008576f14 t virtio_uevent
+ffffffc008576f58 t virtio_dev_probe
+ffffffc0085772fc t virtio_dev_remove
+ffffffc008577400 t status_show
+ffffffc008577478 t status_show
+ffffffc0085774e0 t features_show
+ffffffc00857752c T virtio_max_dma_size
+ffffffc00857756c T virtqueue_add_sgs
+ffffffc008577630 t virtqueue_add.llvm.5246635927363851818
+ffffffc00857837c T virtqueue_add_outbuf
+ffffffc0085783f0 T virtqueue_add_inbuf
+ffffffc008578464 T virtqueue_add_inbuf_ctx
+ffffffc0085784d8 T virtqueue_kick_prepare
+ffffffc0085785c4 T virtqueue_notify
+ffffffc008578634 T virtqueue_kick
+ffffffc00857877c T virtqueue_get_buf_ctx
+ffffffc008578a0c T virtqueue_get_buf
+ffffffc008578a3c T virtqueue_disable_cb
+ffffffc008578abc T virtqueue_enable_cb_prepare
+ffffffc008578b68 T virtqueue_poll
+ffffffc008578bec T virtqueue_enable_cb
+ffffffc008578d00 T virtqueue_enable_cb_delayed
+ffffffc008578e88 T virtqueue_detach_unused_buf
+ffffffc008578f6c T vring_interrupt
+ffffffc008579030 T vring_create_virtqueue
+ffffffc0085793b8 T virtqueue_resize
+ffffffc00857951c t virtqueue_resize_packed
+ffffffc008579794 t virtqueue_resize_split
+ffffffc008579a40 T vring_new_virtqueue
+ffffffc008579b08 t __vring_new_virtqueue
+ffffffc008579d68 T vring_del_virtqueue
+ffffffc008579dec t vring_free
+ffffffc008579f40 T vring_transport_features
+ffffffc008579f64 T virtqueue_get_vring_size
+ffffffc008579f78 T __virtqueue_break
+ffffffc008579f90 T __virtqueue_unbreak
+ffffffc008579fa4 T virtqueue_is_broken
+ffffffc008579fc4 T virtio_break_device
+ffffffc00857a030 T __virtio_unbreak_device
+ffffffc00857a098 T virtqueue_get_desc_addr
+ffffffc00857a0b8 T virtqueue_get_avail_addr
+ffffffc00857a0f8 T virtqueue_get_used_addr
+ffffffc00857a13c T virtqueue_get_vring
+ffffffc00857a150 T virtqueue_disable_dma_api_for_buffers
+ffffffc00857a160 t vring_unmap_extra_packed
+ffffffc00857a1b8 t vring_map_single
+ffffffc00857a2c4 t detach_buf_packed
+ffffffc00857a43c t detach_buf_split
+ffffffc00857a62c t vring_alloc_queue_packed
+ffffffc00857a838 t vring_free_packed
+ffffffc00857a934 t vring_alloc_queue_split
+ffffffc00857ab3c T virtio_require_restricted_mem_acc
+ffffffc00857ab50 t virtio_no_restricted_mem_acc
+ffffffc00857ab64 T vp_modern_probe
+ffffffc00857b114 t vp_modern_map_capability
+ffffffc00857b3a8 T vp_modern_remove
+ffffffc00857b424 T vp_modern_get_features
+ffffffc00857b494 T vp_modern_get_driver_features
+ffffffc00857b508 T vp_modern_set_features
+ffffffc00857b580 T vp_modern_generation
+ffffffc00857b5b8 T vp_modern_get_status
+ffffffc00857b5ec T vp_modern_set_status
+ffffffc00857b628 T vp_modern_get_queue_reset
+ffffffc00857b678 T vp_modern_set_queue_reset
+ffffffc00857b708 T vp_modern_queue_vector
+ffffffc00857b768 T vp_modern_config_vector
+ffffffc00857b7b4 T vp_modern_queue_address
+ffffffc00857b868 T vp_modern_set_queue_enable
+ffffffc00857b8c4 T vp_modern_get_queue_enable
+ffffffc00857b920 T vp_modern_set_queue_size
+ffffffc00857b97c T vp_modern_get_queue_size
+ffffffc00857b9d0 T vp_modern_get_num_queues
+ffffffc00857ba04 T vp_modern_map_vq_notify
+ffffffc00857bb00 t readb.llvm.6533658456932214921
+ffffffc00857bba4 t writeb.llvm.6533658456932214921
+ffffffc00857bc40 t readw.llvm.6533658456932214921
+ffffffc00857bce8 T vp_legacy_probe
+ffffffc00857be00 T vp_legacy_remove
+ffffffc00857be4c T vp_legacy_get_features
+ffffffc00857be80 T vp_legacy_get_driver_features
+ffffffc00857beb8 T vp_legacy_set_features
+ffffffc00857bef4 T vp_legacy_get_status
+ffffffc00857bf28 T vp_legacy_set_status
+ffffffc00857bf64 T vp_legacy_queue_vector
+ffffffc00857bfcc T vp_legacy_config_vector
+ffffffc00857c020 T vp_legacy_set_queue_address
+ffffffc00857c07c T vp_legacy_get_queue_enable
+ffffffc00857c0d8 T vp_legacy_get_queue_size
+ffffffc00857c128 t readl.llvm.18241476872037320722
+ffffffc00857c1cc t writel.llvm.18241476872037320722
+ffffffc00857c268 t readb.llvm.18241476872037320722
+ffffffc00857c30c t writeb.llvm.18241476872037320722
+ffffffc00857c3ac T virtio_pci_modern_probe
+ffffffc00857c44c t vp_config_vector
+ffffffc00857c47c t vp_config_vector
+ffffffc00857c4ac t setup_vq
+ffffffc00857c620 t setup_vq
+ffffffc00857c7a4 t del_vq
+ffffffc00857c81c t del_vq
+ffffffc00857c890 T virtio_pci_modern_remove
+ffffffc00857c8c0 t vp_get
+ffffffc00857c998 t vp_get
+ffffffc00857ca24 t vp_set
+ffffffc00857caf4 t vp_set
+ffffffc00857cb78 t vp_generation
+ffffffc00857cba8 t vp_get_status
+ffffffc00857cbdc t vp_get_status
+ffffffc00857cc10 t vp_set_status
+ffffffc00857cc58 t vp_set_status
+ffffffc00857cca0 t vp_reset
+ffffffc00857cd0c t vp_reset
+ffffffc00857cd64 t vp_modern_find_vqs
+ffffffc00857cddc t vp_get_features
+ffffffc00857ce0c t vp_get_features
+ffffffc00857ce40 t vp_finalize_features
+ffffffc00857cee0 t vp_finalize_features
+ffffffc00857cf3c t vp_get_shm_region
+ffffffc00857d16c t vp_modern_disable_vq_and_reset
+ffffffc00857d260 t vp_modern_enable_vq_after_reset
+ffffffc00857d37c t vp_active_vq
+ffffffc00857d450 T vp_synchronize_vectors
+ffffffc00857d4c4 T vp_notify
+ffffffc00857d500 T vp_del_vqs
+ffffffc00857d70c T vp_find_vqs
+ffffffc00857d8a8 t vp_find_vqs_msix
+ffffffc00857dc88 T vp_bus_name
+ffffffc00857dcb0 T vp_set_vq_affinity
+ffffffc00857dd70 T vp_get_vq_affinity
+ffffffc00857ddc4 t vp_setup_vq
+ffffffc00857df10 t vp_config_changed
+ffffffc00857df44 t vp_vring_interrupt
+ffffffc00857dfe8 t vp_interrupt
+ffffffc00857e0b0 t virtio_pci_probe
+ffffffc00857e21c t virtio_pci_remove
+ffffffc00857e2dc t virtio_pci_sriov_configure
+ffffffc00857e39c t virtio_pci_release_dev
+ffffffc00857e3cc t virtio_pci_freeze
+ffffffc00857e41c t virtio_pci_restore
+ffffffc00857e474 T virtio_pci_legacy_probe
+ffffffc00857e4fc T virtio_pci_legacy_remove
+ffffffc00857e52c t virtballoon_validate
+ffffffc00857e598 t virtballoon_probe
+ffffffc00857ea08 t virtballoon_remove
+ffffffc00857eb1c t virtballoon_changed
+ffffffc00857ebf4 t virtballoon_freeze
+ffffffc00857ec28 t virtballoon_restore
+ffffffc00857ed94 t update_balloon_stats_func
+ffffffc00857ef40 t update_balloon_size_func
+ffffffc00857f248 t init_vqs
+ffffffc00857f57c t init_vqs
+ffffffc00857f8d0 t virtballoon_migratepage
+ffffffc00857fbc0 t report_free_page_func
+ffffffc008580084 t virtio_balloon_oom_notify
+ffffffc008580150 t virtballoon_free_page_report
+ffffffc008580254 t leak_balloon
+ffffffc0085804b0 t tell_host
+ffffffc0085805d4 t balloon_ack
+ffffffc008580618 t stats_request
+ffffffc00858067c t return_free_pages_to_mm
+ffffffc008580780 t virtio_balloon_shrinker_scan
+ffffffc0085807c8 t virtio_balloon_shrinker_count
+ffffffc0085807e0 t remove_common
+ffffffc0085808e4 T tty_alloc_file
+ffffffc008580944 T tty_add_file
+ffffffc0085809d0 T tty_free_file
+ffffffc008580a08 T tty_name
+ffffffc008580a2c T tty_driver_name
+ffffffc008580a5c T tty_dev_name_to_number
+ffffffc008580bb8 T tty_wakeup
+ffffffc008580c50 T tty_hangup
+ffffffc008580c8c T tty_vhangup
+ffffffc008580cb8 t __tty_hangup.llvm.7434326271518807336
+ffffffc0085811d4 T tty_vhangup_self
+ffffffc0085812a4 T tty_kref_put
+ffffffc008581358 T tty_vhangup_session
+ffffffc008581388 T tty_hung_up_p
+ffffffc0085813b4 T __stop_tty
+ffffffc008581414 T stop_tty
+ffffffc0085814a8 T __start_tty
+ffffffc008581580 T start_tty
+ffffffc00858167c T tty_write_message
+ffffffc0085817cc T redirected_tty_write
+ffffffc008581898 t file_tty_write
+ffffffc008581b6c t tty_write.llvm.7434326271518807336
+ffffffc008581b9c T tty_send_xchar
+ffffffc008581d88 T tty_init_termios
+ffffffc008581e78 T tty_standard_install
+ffffffc008581fe0 T tty_init_dev
+ffffffc0085822f0 T alloc_tty_struct
+ffffffc008582530 t release_tty
+ffffffc0085827d4 T tty_save_termios
+ffffffc008582868 T tty_kclose
+ffffffc008582928 T tty_release_struct
+ffffffc0085829bc T tty_release
+ffffffc008582ffc t check_tty_count
+ffffffc0085830f8 T tty_kopen_exclusive
+ffffffc008583124 t tty_kopen
+ffffffc008583374 T tty_kopen_shared
+ffffffc0085833a4 T tty_do_resize
+ffffffc008583440 T tty_get_icount
+ffffffc0085834ac T tty_ioctl
+ffffffc008584884 t tioccons
+ffffffc0085849b8 t tiocsetd
+ffffffc008584b24 T tty_devnum
+ffffffc008584b44 t send_break
+ffffffc008584ca8 t hung_up_tty_ioctl
+ffffffc008584ccc T __do_SAK
+ffffffc008584fe8 t this_tty
+ffffffc00858502c T do_SAK
+ffffffc00858506c t do_tty_hangup
+ffffffc0085850a0 t do_SAK_work
+ffffffc0085850d0 T tty_put_char
+ffffffc00858517c T tty_register_device
+ffffffc0085851b0 T tty_register_device_attr
+ffffffc008585448 t tty_device_create_release
+ffffffc008585474 T tty_unregister_device
+ffffffc0085854e4 T __tty_alloc_driver
+ffffffc008585610 T tty_driver_kref_put
+ffffffc00858576c T tty_register_driver
+ffffffc008585a00 T tty_unregister_driver
+ffffffc008585a88 T tty_default_fops
+ffffffc008585ac0 T console_sysfs_notify
+ffffffc008585b04 t hung_up_tty_read
+ffffffc008585b18 t hung_up_tty_write
+ffffffc008585b2c t hung_up_tty_poll
+ffffffc008585b40 t hung_up_tty_compat_ioctl
+ffffffc008585b64 t hung_up_tty_fasync
+ffffffc008585b78 t release_one_tty
+ffffffc008585c64 t tty_lookup_driver
+ffffffc008585e50 t tty_read.llvm.7434326271518807336
+ffffffc00858609c t tty_poll.llvm.7434326271518807336
+ffffffc00858617c t tty_open.llvm.7434326271518807336
+ffffffc008586a38 t tty_fasync.llvm.7434326271518807336
+ffffffc008586c5c t tty_show_fdinfo.llvm.7434326271518807336
+ffffffc008586cc0 t tty_reopen
+ffffffc008586db8 t tty_devnode
+ffffffc008586dec t show_cons_active
+ffffffc008586ff8 T n_tty_inherit_ops
+ffffffc008587040 t n_tty_open
+ffffffc008587124 t n_tty_close
+ffffffc0085871d0 t n_tty_flush_buffer
+ffffffc0085872ac t n_tty_read
+ffffffc0085879cc t n_tty_write
+ffffffc008587eb0 t n_tty_ioctl
+ffffffc00858823c t n_tty_set_termios
+ffffffc0085888b0 t n_tty_poll
+ffffffc008588ac8 t n_tty_receive_buf
+ffffffc008588af8 t n_tty_write_wakeup
+ffffffc008588b64 t n_tty_receive_buf2
+ffffffc008588b94 t n_tty_lookahead_flow_ctrl
+ffffffc008588c28 t n_tty_kick_worker
+ffffffc008588cf8 t canon_copy_from_read_buf
+ffffffc008588fc8 t n_tty_check_unthrottle
+ffffffc0085890a0 t __process_echoes
+ffffffc008589450 t do_output_char
+ffffffc008589650 t n_tty_receive_buf_common
+ffffffc008589b40 t n_tty_receive_buf_closing
+ffffffc008589cc8 t n_tty_receive_buf_standard
+ffffffc00858aeb4 t n_tty_receive_char_flagged
+ffffffc00858b090 t isig
+ffffffc00858b200 t n_tty_receive_char_flow_ctrl
+ffffffc00858b2ec t n_tty_receive_char
+ffffffc00858b600 t n_tty_receive_signal_char
+ffffffc00858b7d8 t commit_echoes
+ffffffc00858b8a4 t echo_char
+ffffffc00858b974 T tty_chars_in_buffer
+ffffffc00858b9cc T tty_write_room
+ffffffc00858ba24 T tty_driver_flush_buffer
+ffffffc00858ba74 T tty_unthrottle
+ffffffc00858bb2c T tty_throttle_safe
+ffffffc00858bbf4 T tty_unthrottle_safe
+ffffffc00858bcc0 T tty_wait_until_sent
+ffffffc00858be60 T tty_termios_copy_hw
+ffffffc00858bea4 T tty_termios_hw_change
+ffffffc00858bef8 T tty_get_char_size
+ffffffc00858bf10 T tty_get_frame_size
+ffffffc00858bf48 T tty_set_termios
+ffffffc00858c1a0 W user_termio_to_kernel_termios
+ffffffc00858c380 W kernel_termios_to_user_termio
+ffffffc00858c548 W user_termios_to_kernel_termios
+ffffffc00858c6e0 W kernel_termios_to_user_termios
+ffffffc00858c84c W user_termios_to_kernel_termios_1
+ffffffc00858c9e4 W kernel_termios_to_user_termios_1
+ffffffc00858cb50 T tty_mode_ioctl
+ffffffc00858d2ac t set_termios
+ffffffc00858d430 T tty_perform_flush
+ffffffc00858d4ac t __tty_perform_flush
+ffffffc00858d69c T n_tty_ioctl_helper
+ffffffc00858d7dc T tty_register_ldisc
+ffffffc00858d860 T tty_unregister_ldisc
+ffffffc00858d8cc t tty_ldiscs_seq_start.llvm.9394133709221046343
+ffffffc00858d8e8 t tty_ldiscs_seq_stop.llvm.9394133709221046343
+ffffffc00858d8f8 t tty_ldiscs_seq_next.llvm.9394133709221046343
+ffffffc00858d91c t tty_ldiscs_seq_show.llvm.9394133709221046343
+ffffffc00858da08 T tty_ldisc_ref_wait
+ffffffc00858da60 T tty_ldisc_ref
+ffffffc00858dab8 T tty_ldisc_deref
+ffffffc00858daec T tty_ldisc_lock
+ffffffc00858dbc8 T tty_ldisc_unlock
+ffffffc00858dc60 T tty_ldisc_flush
+ffffffc00858dce4 T tty_set_ldisc
+ffffffc00858e084 t tty_ldisc_get
+ffffffc00858e1dc t tty_ldisc_put
+ffffffc00858e23c t tty_ldisc_restore
+ffffffc00858e2d4 T tty_ldisc_reinit
+ffffffc00858e4f8 T tty_ldisc_hangup
+ffffffc00858e7e4 t tty_ldisc_kill
+ffffffc00858e8d0 T tty_ldisc_setup
+ffffffc00858eaf0 T tty_ldisc_release
+ffffffc00858ec60 T tty_ldisc_init
+ffffffc00858ecac T tty_ldisc_deinit
+ffffffc00858ed18 T tty_sysctl_init
+ffffffc00858ed58 t tty_ldisc_failto
+ffffffc00858eec0 T tty_buffer_lock_exclusive
+ffffffc00858ef20 T tty_buffer_unlock_exclusive
+ffffffc00858efc0 T tty_buffer_space_avail
+ffffffc00858efec T tty_buffer_free_all
+ffffffc00858f118 T tty_buffer_flush
+ffffffc00858f2b8 T tty_buffer_request_room
+ffffffc00858f2e4 t __tty_buffer_request_room.llvm.6767934478327344078
+ffffffc00858f414 T tty_insert_flip_string_fixed_flag
+ffffffc00858f50c T tty_insert_flip_string_flags
+ffffffc00858f5f4 T __tty_insert_flip_char
+ffffffc00858f680 T tty_prepare_flip_string
+ffffffc00858f718 T tty_ldisc_receive_buf
+ffffffc00858f7b4 T tty_flip_buffer_push
+ffffffc00858f800 T tty_insert_flip_string_and_push_buffer
+ffffffc00858f930 T tty_buffer_init
+ffffffc00858f9c4 t flush_to_ldisc
+ffffffc00858fc28 T tty_buffer_set_limit
+ffffffc00858fc54 T tty_buffer_set_lock_subclass
+ffffffc00858fc64 T tty_buffer_restart_work
+ffffffc00858fca4 T tty_buffer_cancel_work
+ffffffc00858fcdc T tty_buffer_flush_work
+ffffffc00858fd0c t tty_port_default_receive_buf
+ffffffc00858fd98 t tty_port_default_lookahead_buf
+ffffffc00858fe3c t tty_port_default_wakeup
+ffffffc00858ff0c T tty_port_init
+ffffffc00858ffd8 T tty_port_link_device
+ffffffc008590008 T tty_port_register_device
+ffffffc008590064 T tty_port_register_device_attr
+ffffffc0085900c0 T tty_port_register_device_attr_serdev
+ffffffc00859011c T tty_port_register_device_serdev
+ffffffc008590178 T tty_port_unregister_device
+ffffffc0085901ac T tty_port_alloc_xmit_buf
+ffffffc008590230 T tty_port_free_xmit_buf
+ffffffc008590290 T tty_port_destroy
+ffffffc0085902d8 T tty_port_put
+ffffffc0085903d4 T tty_port_tty_get
+ffffffc008590488 T tty_port_tty_set
+ffffffc008590544 T tty_port_hangup
+ffffffc008590700 T tty_port_tty_hangup
+ffffffc0085907ec T tty_port_tty_wakeup
+ffffffc008590838 T tty_port_carrier_raised
+ffffffc008590890 T tty_port_raise_dtr_rts
+ffffffc0085908e4 T tty_port_lower_dtr_rts
+ffffffc008590938 T tty_port_block_til_ready
+ffffffc008590c54 T tty_port_close_start
+ffffffc008590de0 T tty_port_close_end
+ffffffc008590ec0 T tty_port_close
+ffffffc008591038 T tty_port_install
+ffffffc008591070 T tty_port_open
+ffffffc008591230 T tty_lock
+ffffffc0085912c0 T tty_lock_interruptible
+ffffffc008591364 T tty_unlock
+ffffffc0085913a8 T tty_lock_slave
+ffffffc008591444 T tty_unlock_slave
+ffffffc008591498 T tty_set_lock_subclass
+ffffffc0085914a8 T __init_ldsem
+ffffffc0085914d8 T ldsem_down_read_trylock
+ffffffc008591554 T ldsem_down_write_trylock
+ffffffc0085915d4 T ldsem_up_read
+ffffffc0085916b8 T ldsem_up_write
+ffffffc008591790 t __ldsem_wake_readers
+ffffffc00859190c T tty_termios_baud_rate
+ffffffc00859196c T tty_termios_input_baud_rate
+ffffffc0085919f4 T tty_termios_encode_baud_rate
+ffffffc008591b40 T tty_encode_baud_rate
+ffffffc008591b70 T __tty_check_change
+ffffffc008591cd8 T tty_check_change
+ffffffc008591d08 T proc_clear_tty
+ffffffc008591d64 T tty_open_proc_set_tty
+ffffffc008591df8 t __proc_set_tty
+ffffffc008591fac T get_current_tty
+ffffffc008592060 T session_clear_tty
+ffffffc0085920f0 T tty_signal_session_leader
+ffffffc00859231c T disassociate_ctty
+ffffffc008592670 T tty_get_pgrp
+ffffffc008592724 T no_tty
+ffffffc008592788 T tty_jobctrl_ioctl
+ffffffc008592f1c t session_of_pgrp
+ffffffc008592f74 t n_null_open
+ffffffc008592f88 t n_null_close
+ffffffc008592f98 t n_null_read
+ffffffc008592fac t n_null_write
+ffffffc008592fc0 t n_null_receivebuf
+ffffffc008592fd0 T ptm_open_peer
+ffffffc0085930e0 t ptmx_open
+ffffffc0085932c0 t ptm_unix98_lookup
+ffffffc0085932d4 t pty_unix98_install
+ffffffc008593520 t pty_unix98_remove
+ffffffc008593584 t pty_open
+ffffffc0085936b4 t pty_close
+ffffffc008593880 t pty_cleanup
+ffffffc0085938b0 t pty_write
+ffffffc0085938fc t pty_write_room
+ffffffc008593940 t pty_unix98_ioctl
+ffffffc00859415c t pty_unthrottle
+ffffffc0085941c8 t pty_flush_buffer
+ffffffc008594254 t pty_resize
+ffffffc008594338 t pty_show_fdinfo
+ffffffc008594378 t pts_unix98_lookup
+ffffffc0085943dc t pty_set_termios
+ffffffc008594510 t pty_stop
+ffffffc008594594 t pty_start
+ffffffc008594618 T tty_audit_exit
+ffffffc0085946c0 T tty_audit_fork
+ffffffc0085946e0 T tty_audit_tiocsti
+ffffffc0085947f4 T tty_audit_push
+ffffffc0085948a0 t tty_audit_log
+ffffffc0085949e0 T tty_audit_add_data
+ffffffc008594cbc T sysrq_mask
+ffffffc008594ce4 T __handle_sysrq
+ffffffc008594e98 T handle_sysrq
+ffffffc008594ee4 T sysrq_toggle_support
+ffffffc008594f60 t sysrq_register_handler
+ffffffc0085950a0 T register_sysrq_key
+ffffffc008595154 t __sysrq_swap_key_ops.llvm.6900855367306673816
+ffffffc008595220 T unregister_sysrq_key
+ffffffc0085952e0 t sysrq_handle_reboot
+ffffffc008595324 t sysrq_handle_loglevel
+ffffffc008595378 t sysrq_handle_crash
+ffffffc0085953a0 t sysrq_handle_term
+ffffffc008595454 t sysrq_handle_moom
+ffffffc008595494 t moom_callback
+ffffffc00859553c t sysrq_handle_kill
+ffffffc0085955f0 t sysrq_handle_thaw
+ffffffc00859561c t sysrq_handle_SAK
+ffffffc00859567c t sysrq_handle_showallcpus
+ffffffc008595750 t sysrq_showregs_othercpus
+ffffffc00859578c t showacpu
+ffffffc008595840 t sysrq_handle_showmem
+ffffffc008595878 t sysrq_handle_unrt
+ffffffc0085958a4 t sysrq_handle_showregs
+ffffffc008595924 t sysrq_handle_show_timers
+ffffffc008595950 t sysrq_handle_unraw
+ffffffc008595984 t sysrq_handle_sync
+ffffffc0085959b0 t sysrq_handle_showstate
+ffffffc0085959e4 t sysrq_handle_mountro
+ffffffc008595a10 t sysrq_handle_showstate_blocked
+ffffffc008595a40 t sysrq_ftrace_dump
+ffffffc008595a70 t sysrq_reset_seq_param_set
+ffffffc008595b14 t sysrq_filter
+ffffffc008595f98 t sysrq_connect
+ffffffc0085960a4 t sysrq_disconnect
+ffffffc008596104 t sysrq_do_reset
+ffffffc00859614c t sysrq_reinject_alt_sysrq
+ffffffc008596224 t write_sysrq_trigger
+ffffffc0085963a8 T vt_event_post
+ffffffc008596484 T vt_waitactive
+ffffffc008596680 T vt_ioctl
+ffffffc008597db0 t vt_setactivate
+ffffffc008598068 t vt_reldisp
+ffffffc008598100 t vt_disallocate_all
+ffffffc008598270 t vt_disallocate
+ffffffc00859837c t vt_resizex
+ffffffc008598648 t vt_event_wait_ioctl
+ffffffc008598a98 T reset_vc
+ffffffc008598afc T vc_SAK
+ffffffc008598b7c T change_console
+ffffffc008598c60 t complete_change_console
+ffffffc008598e00 T vt_move_to_console
+ffffffc008598eb0 T pm_set_vt_switch
+ffffffc008598ef8 t vt_kdsetmode
+ffffffc008598f7c T vcs_make_sysfs
+ffffffc008599028 T vcs_remove_sysfs
+ffffffc008599090 t vcs_lseek
+ffffffc0085991f4 t vcs_read
+ffffffc008599898 t vcs_write
+ffffffc008599ff0 t vcs_poll
+ffffffc00859a094 t vcs_open
+ffffffc00859a104 t vcs_release
+ffffffc00859a158 t vcs_fasync
+ffffffc00859a1d8 t vcs_poll_data_get
+ffffffc00859a2e8 t vcs_notifier
+ffffffc00859a3a0 T clear_selection
+ffffffc00859a414 T vc_is_sel
+ffffffc00859a434 T sel_loadlut
+ffffffc00859a5e4 T set_selection_user
+ffffffc00859a7a0 T set_selection_kernel
+ffffffc00859b13c T paste_selection
+ffffffc00859b2f8 T register_keyboard_notifier
+ffffffc00859b330 T unregister_keyboard_notifier
+ffffffc00859b368 T kd_mksound
+ffffffc00859b418 t kd_sound_helper
+ffffffc00859b4b0 T kbd_rate
+ffffffc00859b53c t kbd_rate_helper
+ffffffc00859b5d4 T vt_set_leds_compute_shiftstate
+ffffffc00859b744 t do_compute_shiftstate
+ffffffc00859b838 T setledstate
+ffffffc00859b910 T vt_get_leds
+ffffffc00859b9b0 T vt_set_led_state
+ffffffc00859bac8 T vt_kbd_con_start
+ffffffc00859bbb0 T vt_kbd_con_stop
+ffffffc00859bc98 T vt_do_diacrit
+ffffffc00859c788 T vt_do_kdskbmode
+ffffffc00859ca68 T vt_do_kdskbmeta
+ffffffc00859cb34 T vt_do_kbkeycode_ioctl
+ffffffc00859cee4 T vt_do_kdsk_ioctl
+ffffffc00859d4f4 T vt_do_kdgkb_ioctl
+ffffffc00859d978 T vt_do_kdskled
+ffffffc00859de5c T vt_do_kdgkbmode
+ffffffc00859decc T vt_do_kdgkbmeta
+ffffffc00859df20 T vt_reset_unicode
+ffffffc00859dfb4 T vt_get_shift_state
+ffffffc00859dfcc T vt_reset_keyboard
+ffffffc00859e0a0 T vt_get_kbd_mode_bit
+ffffffc00859e0f4 T vt_set_kbd_mode_bit
+ffffffc00859e198 T vt_clr_kbd_mode_bit
+ffffffc00859e240 t kd_nosound
+ffffffc00859e284 t kbd_event
+ffffffc00859e9c0 t kbd_match
+ffffffc00859ea40 t kbd_connect
+ffffffc00859eae4 t kbd_disconnect
+ffffffc00859eb2c t kbd_start
+ffffffc00859ec08 t k_unicode
+ffffffc00859ed04 t handle_diacr
+ffffffc00859ee60 t to_utf8
+ffffffc00859f0c4 t k_self
+ffffffc00859f114 t k_fn
+ffffffc00859f1b8 t k_spec
+ffffffc00859f260 t k_pad
+ffffffc00859f500 t k_dead
+ffffffc00859f574 t k_cons
+ffffffc00859f5b0 t k_cur
+ffffffc00859f660 t k_shift
+ffffffc00859f848 t k_meta
+ffffffc00859f9a8 t k_ascii
+ffffffc00859fa18 t k_lock
+ffffffc00859fa58 t k_lowercase
+ffffffc00859fa8c t k_slock
+ffffffc00859fb1c t k_dead2
+ffffffc00859fb74 t k_brl
+ffffffc00859fde8 t k_ignore
+ffffffc00859fdf8 t fn_null
+ffffffc00859feec t fn_enter
+ffffffc0085a0094 t fn_show_ptregs
+ffffffc0085a00f8 t fn_show_mem
+ffffffc0085a0130 t fn_show_state
+ffffffc0085a0160 t fn_send_intr
+ffffffc0085a01e8 t fn_lastcons
+ffffffc0085a021c t fn_caps_toggle
+ffffffc0085a0254 t fn_num
+ffffffc0085a02e8 t fn_hold
+ffffffc0085a033c t fn_scroll_forw
+ffffffc0085a036c t fn_scroll_back
+ffffffc0085a0398 t fn_boot_it
+ffffffc0085a03c4 t fn_caps_on
+ffffffc0085a03fc t fn_compose
+ffffffc0085a0418 t fn_SAK
+ffffffc0085a0478 t fn_dec_console
+ffffffc0085a0500 t fn_inc_console
+ffffffc0085a057c t fn_spawn_con
+ffffffc0085a05f4 t fn_bare_num
+ffffffc0085a0628 t applkey
+ffffffc0085a06a4 t kbd_update_leds_helper
+ffffffc0085a0738 t kbd_bh
+ffffffc0085a0858 t getkeycode_helper
+ffffffc0085a08a4 t setkeycode_helper
+ffffffc0085a08f0 T set_translate
+ffffffc0085a0934 T inverse_translate
+ffffffc0085a09b8 T con_set_trans_old
+ffffffc0085a0bb4 t update_user_maps
+ffffffc0085a0d00 T con_get_trans_old
+ffffffc0085a0fe4 T conv_uni_to_pc
+ffffffc0085a10a4 T con_set_trans_new
+ffffffc0085a127c T con_get_trans_new
+ffffffc0085a1444 T con_free_unimap
+ffffffc0085a14a0 t con_release_unimap
+ffffffc0085a1658 T con_clear_unimap
+ffffffc0085a1708 T con_set_unimap
+ffffffc0085a1b68 t con_unify_unimap
+ffffffc0085a1cb8 t set_inverse_transl
+ffffffc0085a1df8 T con_set_default_unimap
+ffffffc0085a212c T con_copy_unimap
+ffffffc0085a21e0 T con_get_unimap
+ffffffc0085a25e8 T conv_8bit_to_uni
+ffffffc0085a261c T conv_uni_to_8bit
+ffffffc0085a2684 T register_vt_notifier
+ffffffc0085a26bc T unregister_vt_notifier
+ffffffc0085a26f4 T schedule_console_callback
+ffffffc0085a2734 T vc_uniscr_check
+ffffffc0085a28dc T vc_uniscr_copy_line
+ffffffc0085a29fc T update_region
+ffffffc0085a2d10 t hide_cursor
+ffffffc0085a2e24 t do_update_region
+ffffffc0085a3094 T invert_screen
+ffffffc0085a3464 T complement_pos
+ffffffc0085a3730 T clear_buffer_attributes
+ffffffc0085a3788 T redraw_screen
+ffffffc0085a3fbc T con_is_visible
+ffffffc0085a400c t set_origin
+ffffffc0085a4124 t set_palette
+ffffffc0085a41b8 t update_attr
+ffffffc0085a43cc T vc_cons_allocated
+ffffffc0085a440c T vc_allocate
+ffffffc0085a4708 t vc_init
+ffffffc0085a48c0 T vc_resize
+ffffffc0085a48f8 t vc_do_resize.llvm.7497067998197082255
+ffffffc0085a4fec T vc_deallocate
+ffffffc0085a5128 T scrollback
+ffffffc0085a517c T scrollfront
+ffffffc0085a51d8 T mouse_report
+ffffffc0085a5288 T mouse_reporting
+ffffffc0085a52c8 T set_console
+ffffffc0085a5380 T vt_kmsg_redirect
+ffffffc0085a53dc T tioclinux
+ffffffc0085a5870 t unblank_screen
+ffffffc0085a589c t set_vesa_blanking
+ffffffc0085a5a08 T do_blank_screen
+ffffffc0085a609c T con_is_bound
+ffffffc0085a6114 T con_debug_enter
+ffffffc0085a61c0 T con_debug_leave
+ffffffc0085a6288 T do_unregister_con_driver
+ffffffc0085a6520 T do_take_over_console
+ffffffc0085a6dd0 T give_up_console
+ffffffc0085a6e14 T do_unblank_screen
+ffffffc0085a7168 T poke_blanked_console
+ffffffc0085a7270 T con_set_cmap
+ffffffc0085a759c T con_get_cmap
+ffffffc0085a77a8 T reset_palette
+ffffffc0085a7884 T con_font_op
+ffffffc0085a7d58 T screen_glyph
+ffffffc0085a7de0 T screen_glyph_unicode
+ffffffc0085a7ea0 T screen_pos
+ffffffc0085a7f0c T getconsxy
+ffffffc0085a7f40 T putconsxy
+ffffffc0085a8234 t gotoxy
+ffffffc0085a82c0 T vcs_scr_readw
+ffffffc0085a82ec T vcs_scr_writew
+ffffffc0085a8330 t add_softcursor
+ffffffc0085a8438 T vcs_scr_updated
+ffffffc0085a84a4 T vc_scrolldelta_helper
+ffffffc0085a8540 t console_callback
+ffffffc0085a87d4 t vc_port_destruct
+ffffffc0085a87fc t reset_terminal
+ffffffc0085a89f4 t csi_J
+ffffffc0085a8f3c t vt_console_print
+ffffffc0085a952c t vt_console_device
+ffffffc0085a955c t lf
+ffffffc0085a9630 t cr
+ffffffc0085a96c0 t con_scroll
+ffffffc0085a98f0 t show_tty_active
+ffffffc0085a9938 t con_install
+ffffffc0085a9ac8 t con_open
+ffffffc0085a9adc t con_close
+ffffffc0085a9aec t con_shutdown
+ffffffc0085a9b34 t con_cleanup
+ffffffc0085a9b64 t con_write
+ffffffc0085a9bac t con_put_char
+ffffffc0085a9c10 t con_flush_chars
+ffffffc0085a9df8 t con_write_room
+ffffffc0085a9e18 t con_throttle
+ffffffc0085a9e28 t con_unthrottle
+ffffffc0085a9e68 t con_stop
+ffffffc0085a9ebc t con_start
+ffffffc0085a9f10 t vt_resize
+ffffffc0085a9f74 t do_con_write
+ffffffc0085ab6f0 t ri
+ffffffc0085ab770 t respond_ID
+ffffffc0085ab7c0 t restore_cur
+ffffffc0085ab8b4 t set_mode
+ffffffc0085abb24 t status_report
+ffffffc0085abb74 t cursor_report
+ffffffc0085abc34 t gotoxay
+ffffffc0085abccc t csi_K
+ffffffc0085abe00 t csi_L
+ffffffc0085abe68 t csi_M
+ffffffc0085abed0 t csi_P
+ffffffc0085ac024 t csi_m
+ffffffc0085ac2ac t csi_X
+ffffffc0085ac3bc t setterm_command
+ffffffc0085ac6b4 t vc_setGx
+ffffffc0085ac760 t vc_t416_color
+ffffffc0085ac974 t rgb_foreground
+ffffffc0085aca10 t rgb_background
+ffffffc0085aca54 t insert_char
+ffffffc0085acb94 t ucs_cmp
+ffffffc0085acbcc t con_driver_unregister_callback
+ffffffc0085acc94 t show_bind
+ffffffc0085acd54 t store_bind
+ffffffc0085acda4 t show_name
+ffffffc0085ace08 t blank_screen_t
+ffffffc0085ace54 T hvc_instantiate
+ffffffc0085acf10 t hvc_get_by_index
+ffffffc0085ad060 T hvc_kick
+ffffffc0085ad0a8 T hvc_poll
+ffffffc0085ad0d4 t __hvc_poll.llvm.8898750018909217251
+ffffffc0085ad48c T __hvc_resize
+ffffffc0085ad4d0 T hvc_alloc
+ffffffc0085ad9a0 t hvc_set_winsz
+ffffffc0085ada4c T hvc_remove
+ffffffc0085adb08 t hvc_console_print
+ffffffc0085add28 t hvc_console_device
+ffffffc0085add74 t hvc_console_setup
+ffffffc0085adda8 t hvc_port_destruct
+ffffffc0085ade54 t khvcd
+ffffffc0085adf8c t hvc_install
+ffffffc0085ae00c t hvc_open
+ffffffc0085ae168 t hvc_close
+ffffffc0085ae2d0 t hvc_cleanup
+ffffffc0085ae300 t hvc_write
+ffffffc0085ae50c t hvc_write_room
+ffffffc0085ae53c t hvc_chars_in_buffer
+ffffffc0085ae564 t hvc_unthrottle
+ffffffc0085ae5ac t hvc_hangup
+ffffffc0085ae664 t hvc_tiocmget
+ffffffc0085ae6c4 t hvc_tiocmset
+ffffffc0085ae724 T uart_write_wakeup
+ffffffc0085ae75c T uart_update_timeout
+ffffffc0085ae7bc T uart_get_baud_rate
+ffffffc0085ae980 T uart_get_divisor
+ffffffc0085ae9cc T uart_xchar_out
+ffffffc0085aea34 T uart_console_write
+ffffffc0085aeae8 T uart_parse_earlycon
+ffffffc0085aec70 T uart_parse_options
+ffffffc0085aed08 T uart_set_options
+ffffffc0085aee94 T uart_suspend_port
+ffffffc0085af238 t serial_match_port
+ffffffc0085af26c T uart_resume_port
+ffffffc0085af700 t uart_change_speed
+ffffffc0085af860 t uart_shutdown
+ffffffc0085afb40 T uart_register_driver
+ffffffc0085afd08 T uart_unregister_driver
+ffffffc0085afda4 T uart_console_device
+ffffffc0085afdc4 T uart_add_one_port
+ffffffc0085b0394 T uart_remove_one_port
+ffffffc0085b05f8 T uart_match_port
+ffffffc0085b0678 T uart_handle_dcd_change
+ffffffc0085b0760 T uart_handle_cts_change
+ffffffc0085b0834 T uart_insert_char
+ffffffc0085b0968 T uart_try_toggle_sysrq
+ffffffc0085b097c T uart_get_rs485_mode
+ffffffc0085b0aa8 t uart_sanitize_serial_rs485_delays
+ffffffc0085b0bfc t uart_sanitize_serial_rs485
+ffffffc0085b0ccc t uart_install
+ffffffc0085b0d0c t uart_open
+ffffffc0085b0d4c t uart_close
+ffffffc0085b0dd0 t uart_write
+ffffffc0085b10ec t uart_put_char
+ffffffc0085b12ac t uart_flush_chars
+ffffffc0085b12d8 t uart_write_room
+ffffffc0085b1414 t uart_chars_in_buffer
+ffffffc0085b154c t uart_ioctl
+ffffffc0085b1a6c t uart_set_termios
+ffffffc0085b1c1c t uart_throttle
+ffffffc0085b1df8 t uart_unthrottle
+ffffffc0085b1fd4 t uart_stop
+ffffffc0085b2114 t uart_start
+ffffffc0085b22a4 t uart_hangup
+ffffffc0085b2420 t uart_break_ctl
+ffffffc0085b24c0 t uart_flush_buffer
+ffffffc0085b2624 t uart_set_ldisc
+ffffffc0085b26b4 t uart_wait_until_sent
+ffffffc0085b2944 t uart_send_xchar
+ffffffc0085b2ad0 t uart_tiocmget
+ffffffc0085b2b80 t uart_tiocmset
+ffffffc0085b2c64 t uart_get_icount
+ffffffc0085b2df4 t uart_get_info_user
+ffffffc0085b2f08 t uart_set_info_user
+ffffffc0085b3448 t uart_proc_show
+ffffffc0085b3864 t uart_get_lsr_info
+ffffffc0085b3a48 t uart_get_rs485_config
+ffffffc0085b3c14 t uart_set_rs485_config
+ffffffc0085b4030 t uart_set_iso7816_config
+ffffffc0085b43b8 t uart_get_iso7816_config
+ffffffc0085b45a0 t uart_startup
+ffffffc0085b491c t uart_carrier_raised
+ffffffc0085b4a94 t uart_dtr_rts
+ffffffc0085b4c08 t uart_tty_port_shutdown
+ffffffc0085b4d84 t uart_port_activate
+ffffffc0085b4e18 t uartclk_show
+ffffffc0085b4e9c t line_show
+ffffffc0085b4f1c t port_show
+ffffffc0085b4fa8 t flags_show
+ffffffc0085b5028 t flags_show
+ffffffc0085b50ac t xmit_fifo_size_show
+ffffffc0085b512c t close_delay_show
+ffffffc0085b51c0 t closing_wait_show
+ffffffc0085b5260 t custom_divisor_show
+ffffffc0085b52e0 t io_type_show
+ffffffc0085b5360 t iomem_base_show
+ffffffc0085b53e0 t iomem_reg_shift_show
+ffffffc0085b5460 t console_show
+ffffffc0085b5508 t console_store
+ffffffc0085b5620 T serial8250_get_port
+ffffffc0085b564c T serial8250_set_isa_configurator
+ffffffc0085b5664 T serial8250_suspend_port
+ffffffc0085b5790 T serial8250_resume_port
+ffffffc0085b58dc T serial8250_register_8250_port
+ffffffc0085b5e14 t serial_8250_overrun_backoff_work
+ffffffc0085b5eb8 T serial8250_unregister_port
+ffffffc0085b5fe0 t univ8250_console_write
+ffffffc0085b602c t univ8250_console_setup
+ffffffc0085b60b0 t univ8250_console_exit
+ffffffc0085b60fc t univ8250_console_match
+ffffffc0085b635c t serial8250_timeout
+ffffffc0085b6418 t univ8250_setup_irq
+ffffffc0085b65a0 t univ8250_release_irq
+ffffffc0085b6668 t univ8250_setup_timer
+ffffffc0085b6774 t serial8250_interrupt
+ffffffc0085b6844 t serial_do_unlink
+ffffffc0085b6948 t serial8250_backup_timeout
+ffffffc0085b6b6c t serial8250_probe
+ffffffc0085b6d14 t serial8250_remove
+ffffffc0085b6e10 t serial8250_suspend
+ffffffc0085b6f08 t serial8250_resume
+ffffffc0085b7390 T serial8250_clear_and_reinit_fifos
+ffffffc0085b747c T serial8250_rpm_get
+ffffffc0085b74b8 T serial8250_rpm_put
+ffffffc0085b750c T serial8250_em485_destroy
+ffffffc0085b7564 T serial8250_em485_config
+ffffffc0085b76b0 T serial8250_rpm_get_tx
+ffffffc0085b7724 T serial8250_rpm_put_tx
+ffffffc0085b77b0 T serial8250_em485_stop_tx
+ffffffc0085b7940 T serial8250_em485_start_tx
+ffffffc0085b7a60 t serial8250_stop_rx
+ffffffc0085b7b0c T serial8250_read_char
+ffffffc0085b7c70 t uart_handle_break
+ffffffc0085b7d28 T serial8250_rx_chars
+ffffffc0085b7dc4 T serial8250_tx_chars
+ffffffc0085b7fb0 t serial8250_stop_tx
+ffffffc0085b808c t __stop_tx
+ffffffc0085b8244 T serial8250_modem_status
+ffffffc0085b832c T serial8250_handle_irq
+ffffffc0085b854c T serial8250_do_get_mctrl
+ffffffc0085b85e8 T serial8250_do_set_mctrl
+ffffffc0085b864c T serial8250_do_startup
+ffffffc0085b949c t serial8250_tx_threshold_handle_irq
+ffffffc0085b9550 t wait_for_xmitr
+ffffffc0085b969c t serial8250_set_mctrl
+ffffffc0085b9730 T serial8250_do_shutdown
+ffffffc0085b99f4 T serial8250_do_set_divisor
+ffffffc0085b9a94 T serial8250_update_uartclk
+ffffffc0085b9dd8 T serial8250_do_set_termios
+ffffffc0085ba440 T serial8250_do_set_ldisc
+ffffffc0085ba578 t serial8250_enable_ms
+ffffffc0085ba624 T serial8250_do_pm
+ffffffc0085ba858 T serial8250_init_port
+ffffffc0085ba888 T serial8250_set_defaults
+ffffffc0085ba9e4 t serial8250_tx_dma
+ffffffc0085ba9f8 t serial8250_rx_dma
+ffffffc0085baa0c T serial8250_console_write
+ffffffc0085bb08c t serial8250_console_putchar
+ffffffc0085bb0f8 T serial8250_console_setup
+ffffffc0085bb2fc T serial8250_console_exit
+ffffffc0085bb338 t serial8250_em485_handle_stop_tx
+ffffffc0085bb408 t serial8250_em485_handle_start_tx
+ffffffc0085bb5a4 t default_serial_dl_read
+ffffffc0085bb634 t default_serial_dl_write
+ffffffc0085bb6c0 t hub6_serial_in
+ffffffc0085bb728 t hub6_serial_out
+ffffffc0085bb77c t mem_serial_in
+ffffffc0085bb7bc t mem_serial_out
+ffffffc0085bb7fc t mem16_serial_in
+ffffffc0085bb83c t mem16_serial_out
+ffffffc0085bb87c t mem32_serial_in
+ffffffc0085bb8b8 t mem32_serial_out
+ffffffc0085bb8f8 t mem32be_serial_in
+ffffffc0085bb930 t mem32be_serial_out
+ffffffc0085bb95c t io_serial_in
+ffffffc0085bb9a8 t io_serial_out
+ffffffc0085bb9e0 t serial8250_default_handle_irq
+ffffffc0085bba8c t serial8250_tx_empty
+ffffffc0085bbb60 t serial8250_get_mctrl
+ffffffc0085bbc28 t serial8250_start_tx
+ffffffc0085bbe8c t serial8250_throttle
+ffffffc0085bbed4 t serial8250_unthrottle
+ffffffc0085bbf1c t serial8250_break_ctl
+ffffffc0085bbfe8 t serial8250_startup
+ffffffc0085bc03c t serial8250_shutdown
+ffffffc0085bc090 t serial8250_set_termios
+ffffffc0085bc0e4 t serial8250_set_ldisc
+ffffffc0085bc138 t serial8250_pm
+ffffffc0085bc18c t serial8250_type
+ffffffc0085bc1bc t serial8250_release_port
+ffffffc0085bc288 t serial8250_request_port
+ffffffc0085bc2b4 t serial8250_config_port
+ffffffc0085bde70 t serial8250_verify_port
+ffffffc0085bdec0 t serial8250_request_std_resource
+ffffffc0085be008 t size_fifo
+ffffffc0085be4a4 t rx_trig_bytes_show
+ffffffc0085be590 t rx_trig_bytes_store
+ffffffc0085be7dc t serial8250_early_in
+ffffffc0085be908 t serial8250_early_out
+ffffffc0085bea10 t early_serial8250_write
+ffffffc0085bea4c t serial_putc
+ffffffc0085beabc T fsl8250_handle_irq
+ffffffc0085becdc t pericom8250_probe
+ffffffc0085beee0 t pericom8250_remove
+ffffffc0085bef44 t pericom_do_set_divisor
+ffffffc0085bf0cc t of_platform_serial_probe
+ffffffc0085bf75c t of_platform_serial_remove
+ffffffc0085bf7d4 t of_serial_suspend
+ffffffc0085bf870 t of_serial_resume
+ffffffc0085bf910 t ttynull_device
+ffffffc0085bf92c t ttynull_open
+ffffffc0085bf968 t ttynull_close
+ffffffc0085bf9a4 t ttynull_write
+ffffffc0085bf9b8 t ttynull_write_room
+ffffffc0085bf9cc t ttynull_hangup
+ffffffc0085bfa00 W phys_mem_access_prot_allowed
+ffffffc0085bfa14 t mem_devnode
+ffffffc0085bfa74 t memory_open
+ffffffc0085bfb34 t null_lseek
+ffffffc0085bfb50 t read_null
+ffffffc0085bfb64 t write_null
+ffffffc0085bfb78 t read_iter_null
+ffffffc0085bfb8c t write_iter_null
+ffffffc0085bfbd0 t splice_write_null
+ffffffc0085bfc04 t uring_cmd_null
+ffffffc0085bfc18 t pipe_to_null
+ffffffc0085bfc2c t read_zero
+ffffffc0085bfe00 t read_iter_zero
+ffffffc0085bfed8 t mmap_zero
+ffffffc0085bff1c t get_unmapped_area_zero
+ffffffc0085bff7c t write_full
+ffffffc0085bff90 T rng_is_initialized
+ffffffc0085bffc4 T wait_for_random_bytes
+ffffffc0085c0108 t try_to_generate_entropy
+ffffffc0085c02d4 T get_random_bytes
+ffffffc0085c02fc t _get_random_bytes.llvm.6974458787418674422
+ffffffc0085c0438 T get_random_u8
+ffffffc0085c05d8 T get_random_u16
+ffffffc0085c0778 T get_random_u32
+ffffffc0085c0918 T get_random_u64
+ffffffc0085c0ab8 T __get_random_u32_below
+ffffffc0085c0b38 T random_prepare_cpu
+ffffffc0085c0bcc t crng_reseed
+ffffffc0085c0ca8 t _credit_init_bits
+ffffffc0085c0e30 t crng_set_ready
+ffffffc0085c0e6c T add_device_randomness
+ffffffc0085c0f4c T add_hwgenerator_randomness
+ffffffc0085c1064 t mix_pool_bytes
+ffffffc0085c10e0 T random_online_cpu
+ffffffc0085c1120 T add_interrupt_randomness
+ffffffc0085c12ac T add_input_randomness
+ffffffc0085c1300 t add_timer_randomness
+ffffffc0085c1578 T add_disk_randomness
+ffffffc0085c15c0 T rand_initialize_disk
+ffffffc0085c161c T __arm64_sys_getrandom
+ffffffc0085c16fc t random_read_iter
+ffffffc0085c1788 t random_write_iter
+ffffffc0085c17b8 t random_poll
+ffffffc0085c1848 t random_ioctl
+ffffffc0085c1ec0 t random_fasync
+ffffffc0085c1ef4 t urandom_read_iter
+ffffffc0085c1ffc t crng_make_state
+ffffffc0085c2314 t extract_entropy
+ffffffc0085c269c t crng_fast_key_erasure
+ffffffc0085c2794 t random_pm_notification
+ffffffc0085c295c t mix_interrupt_randomness
+ffffffc0085c2aac t entropy_timer
+ffffffc0085c2b1c t get_random_bytes_user
+ffffffc0085c2c90 t write_pool_user
+ffffffc0085c2dc4 t proc_do_rointvec
+ffffffc0085c2e20 t proc_do_uuid
+ffffffc0085c2f38 T misc_register
+ffffffc0085c3124 T misc_deregister
+ffffffc0085c3234 t misc_devnode
+ffffffc0085c3280 t misc_seq_start
+ffffffc0085c32d0 t misc_seq_stop
+ffffffc0085c3304 t misc_seq_next
+ffffffc0085c333c t misc_seq_show
+ffffffc0085c338c t misc_open
+ffffffc0085c34ec t reclaim_dma_bufs
+ffffffc0085c366c t get_chars
+ffffffc0085c3740 t put_chars
+ffffffc0085c38b0 t notifier_add_vio
+ffffffc0085c39ac t notifier_del_vio
+ffffffc0085c39bc t fill_readbuf
+ffffffc0085c3d04 t __send_to_port
+ffffffc0085c3e74 t free_buf
+ffffffc0085c3f68 t virtcons_probe
+ffffffc0085c4300 t virtcons_remove
+ffffffc0085c4424 t config_intr
+ffffffc0085c4474 t virtcons_freeze
+ffffffc0085c4540 t virtcons_restore
+ffffffc0085c4688 t config_work_handler
+ffffffc0085c4818 t control_work_handler
+ffffffc0085c4c68 t fill_queue
+ffffffc0085c4de4 t __send_control_msg
+ffffffc0085c4f08 t add_port
+ffffffc0085c51f8 t in_intr
+ffffffc0085c53b4 t out_intr
+ffffffc0085c54a8 t control_intr
+ffffffc0085c54e8 t discard_port_data
+ffffffc0085c568c t unplug_port
+ffffffc0085c5844 t init_port_console
+ffffffc0085c595c t remove_port_data
+ffffffc0085c5a18 t show_port_name
+ffffffc0085c5a60 t port_fops_read
+ffffffc0085c5c84 t port_fops_write
+ffffffc0085c5f40 t port_fops_poll
+ffffffc0085c6070 t port_fops_open
+ffffffc0085c62fc t port_fops_release
+ffffffc0085c643c t port_fops_fasync
+ffffffc0085c6470 t port_fops_splice_write
+ffffffc0085c6614 t will_read_block
+ffffffc0085c6708 t wait_port_writable
+ffffffc0085c690c t pipe_to_sg
+ffffffc0085c6b84 t port_debugfs_open
+ffffffc0085c6bc4 t port_debugfs_show
+ffffffc0085c6cd4 t remove_vqs
+ffffffc0085c6db4 T hwrng_register
+ffffffc0085c7030 t set_current_rng
+ffffffc0085c729c t add_early_randomness
+ffffffc0085c73c4 T hwrng_unregister
+ffffffc0085c7664 t enable_best_rng
+ffffffc0085c77d4 T devm_hwrng_register
+ffffffc0085c7874 t devm_hwrng_release
+ffffffc0085c78a4 T devm_hwrng_unregister
+ffffffc0085c78e4 t devm_hwrng_match
+ffffffc0085c7918 T hwrng_msleep
+ffffffc0085c7964 t rng_dev_read
+ffffffc0085c7ef0 t rng_dev_open
+ffffffc0085c7f18 t rng_current_show
+ffffffc0085c80d8 t rng_current_store
+ffffffc0085c82d4 t rng_available_show
+ffffffc0085c839c t rng_selected_show
+ffffffc0085c83e0 t rng_quality_show
+ffffffc0085c8584 t rng_quality_store
+ffffffc0085c8688 t hwrng_fillfn
+ffffffc0085c89d4 t cctrng_probe
+ffffffc0085c8cdc t cctrng_remove
+ffffffc0085c8d4c t cctrng_read
+ffffffc0085c8f40 t cc_trng_clk_init
+ffffffc0085c9000 t cc_trng_compwork_handler
+ffffffc0085c9364 t cc_trng_startwork_handler
+ffffffc0085c939c t cc_isr
+ffffffc0085c944c t cc_trng_pm_init
+ffffffc0085c94a4 t cc_trng_hw_trigger
+ffffffc0085c95dc t cctrng_suspend
+ffffffc0085c9638 t cctrng_resume
+ffffffc0085c97d0 t smccc_trng_probe
+ffffffc0085c984c t smccc_trng_read
+ffffffc0085c9a64 t cn10k_rng_probe
+ffffffc0085c9bc0 t cn10k_rng_remove
+ffffffc0085c9bd0 t cn10k_rng_read
+ffffffc0085c9d34 t cn10k_read_trng
+ffffffc0085c9de4 t readq
+ffffffc0085c9e84 t readq
+ffffffc0085c9f28 T iommu_device_register
+ffffffc0085ca074 T bus_iommu_probe
+ffffffc0085ca4a0 T iommu_device_unregister
+ffffffc0085ca568 t remove_iommu_group
+ffffffc0085ca5ac T iommu_probe_device
+ffffffc0085ca794 t __iommu_probe_device
+ffffffc0085caaac T iommu_group_get
+ffffffc0085caaec t __iommu_attach_device
+ffffffc0085cabe4 T iommu_group_put
+ffffffc0085cac14 t iommu_create_device_direct_mappings
+ffffffc0085caec0 T iommu_release_device
+ffffffc0085caf6c T iommu_group_remove_device
+ffffffc0085cb0fc T iommu_set_dma_strict
+ffffffc0085cb130 T iommu_get_group_resv_regions
+ffffffc0085cb4b4 T iommu_get_resv_regions
+ffffffc0085cb50c T iommu_put_resv_regions
+ffffffc0085cb5a0 T iommu_group_alloc
+ffffffc0085cb6fc T iommu_group_get_by_id
+ffffffc0085cb7a8 T iommu_group_get_iommudata
+ffffffc0085cb7bc T iommu_group_set_iommudata
+ffffffc0085cb7d0 T iommu_group_set_name
+ffffffc0085cb87c T iommu_group_add_device
+ffffffc0085cbaf8 t trace_add_device_to_group
+ffffffc0085cbbb0 T iommu_group_for_each_dev
+ffffffc0085cbc5c T iommu_group_ref_get
+ffffffc0085cbc9c T iommu_register_device_fault_handler
+ffffffc0085cbd88 T iommu_unregister_device_fault_handler
+ffffffc0085cbe20 T iommu_report_device_fault
+ffffffc0085cbf98 T iommu_page_response
+ffffffc0085cc160 T iommu_group_id
+ffffffc0085cc174 T generic_device_group
+ffffffc0085cc1a0 T pci_device_group
+ffffffc0085cc2d8 t get_pci_alias_or_group
+ffffffc0085cc328 t get_pci_alias_group
+ffffffc0085cc458 t get_pci_function_alias_group
+ffffffc0085cc550 T fsl_mc_device_group
+ffffffc0085cc5ac T iommu_group_default_domain
+ffffffc0085cc5c0 t probe_iommu_group
+ffffffc0085cc61c T iommu_present
+ffffffc0085cc638 T device_iommu_capable
+ffffffc0085cc6a4 T iommu_set_fault_handler
+ffffffc0085cc6c4 T iommu_domain_alloc
+ffffffc0085cc758 t __iommu_domain_alloc
+ffffffc0085cc894 T iommu_domain_free
+ffffffc0085cc950 T iommu_attach_device
+ffffffc0085cca70 T iommu_deferred_attach
+ffffffc0085ccaf0 T iommu_detach_device
+ffffffc0085ccbcc T iommu_get_domain_for_dev
+ffffffc0085ccc24 T iommu_get_dma_domain
+ffffffc0085ccc3c T iommu_attach_group
+ffffffc0085ccd1c T iommu_detach_group
+ffffffc0085ccd9c T iommu_iova_to_phys
+ffffffc0085cce08 T iommu_map
+ffffffc0085cce9c T iommu_map_atomic
+ffffffc0085ccf30 T iommu_unmap
+ffffffc0085ccfe4 t __iommu_unmap.llvm.8992240618788155936
+ffffffc0085cd234 T iommu_unmap_fast
+ffffffc0085cd260 T iommu_map_sg
+ffffffc0085cd28c t __iommu_map_sg.llvm.8992240618788155936
+ffffffc0085cd46c T iommu_map_sg_atomic
+ffffffc0085cd49c T report_iommu_fault
+ffffffc0085cd5bc T iommu_enable_nesting
+ffffffc0085cd620 T iommu_set_pgtable_quirks
+ffffffc0085cd684 T iommu_alloc_resv_region
+ffffffc0085cd718 T iommu_set_default_passthrough
+ffffffc0085cd748 T iommu_set_default_translated
+ffffffc0085cd778 T iommu_default_passthrough
+ffffffc0085cd798 T iommu_ops_from_fwnode
+ffffffc0085cd818 T iommu_fwspec_init
+ffffffc0085cd8e8 T iommu_fwspec_free
+ffffffc0085cd944 T iommu_fwspec_add_ids
+ffffffc0085cda08 T iommu_dev_enable_feature
+ffffffc0085cda70 T iommu_dev_disable_feature
+ffffffc0085cdad8 T iommu_device_use_default_domain
+ffffffc0085cdba8 T iommu_device_unuse_default_domain
+ffffffc0085cdc24 T iommu_group_claim_dma_owner
+ffffffc0085cdddc t __iommu_group_set_domain
+ffffffc0085cdfb0 T iommu_group_release_dma_owner
+ffffffc0085ce040 T iommu_group_dma_owner_claimed
+ffffffc0085ce094 T iommu_attach_device_pasid
+ffffffc0085ce244 T iommu_detach_device_pasid
+ffffffc0085ce328 T iommu_get_domain_for_dev_pasid
+ffffffc0085ce3c8 T iommu_sva_domain_alloc
+ffffffc0085ce478 t iommu_sva_handle_iopf
+ffffffc0085ce488 t iommu_domain_type_str
+ffffffc0085ce4bc t iommu_bus_notifier
+ffffffc0085ce51c t iommu_group_release
+ffffffc0085ce6b8 t iommu_group_attr_show
+ffffffc0085ce710 t iommu_group_attr_store
+ffffffc0085ce76c t iommu_group_show_resv_regions
+ffffffc0085ce868 t iommu_group_show_type
+ffffffc0085ce8fc t iommu_group_store_type
+ffffffc0085ced9c t iommu_group_alloc_default_domain
+ffffffc0085cee44 t iommu_group_show_name
+ffffffc0085cee84 t __iommu_map
+ffffffc0085cf1c4 T __traceiter_add_device_to_group
+ffffffc0085cf254 T __traceiter_remove_device_from_group
+ffffffc0085cf2e4 T __traceiter_attach_device_to_domain
+ffffffc0085cf364 T __traceiter_detach_device_from_domain
+ffffffc0085cf3e4 T __traceiter_map
+ffffffc0085cf47c T __traceiter_unmap
+ffffffc0085cf514 T __traceiter_io_page_fault
+ffffffc0085cf5ac t trace_event_raw_event_iommu_group_event
+ffffffc0085cf6c0 t perf_trace_iommu_group_event
+ffffffc0085cf848 t trace_event_raw_event_iommu_device_event
+ffffffc0085cf958 t perf_trace_iommu_device_event
+ffffffc0085cfad8 t trace_event_raw_event_map
+ffffffc0085cfba8 t perf_trace_map
+ffffffc0085cfcc8 t trace_event_raw_event_unmap
+ffffffc0085cfd98 t perf_trace_unmap
+ffffffc0085cfeb8 t trace_event_raw_event_iommu_error
+ffffffc0085d0054 t perf_trace_iommu_error
+ffffffc0085d025c t trace_raw_output_iommu_group_event
+ffffffc0085d02d8 t trace_raw_output_iommu_device_event
+ffffffc0085d0350 t trace_raw_output_map
+ffffffc0085d03cc t trace_raw_output_unmap
+ffffffc0085d0448 t trace_raw_output_iommu_error
+ffffffc0085d04d0 T iommu_device_sysfs_add
+ffffffc0085d0604 T iommu_device_sysfs_remove
+ffffffc0085d064c T iommu_device_link
+ffffffc0085d0700 T iommu_device_unlink
+ffffffc0085d0770 t release_device
+ffffffc0085d079c T iommu_dma_init_fq
+ffffffc0085d08d0 t fq_flush_timeout
+ffffffc0085d0ac8 T iommu_get_dma_cookie
+ffffffc0085d0b64 T iommu_get_msi_cookie
+ffffffc0085d0c04 T iommu_put_dma_cookie
+ffffffc0085d0d8c T iommu_dma_get_resv_regions
+ffffffc0085d0d9c T iommu_setup_dma_ops
+ffffffc0085d1224 T iommu_dma_prepare_msi
+ffffffc0085d14ac T iommu_dma_compose_msi_msg
+ffffffc0085d1544 t iommu_dma_ranges_sort
+ffffffc0085d156c t iommu_dma_alloc
+ffffffc0085d188c t iommu_dma_free
+ffffffc0085d18ec t iommu_dma_alloc_noncontiguous
+ffffffc0085d19ac t iommu_dma_free_noncontiguous
+ffffffc0085d1a40 t iommu_dma_mmap
+ffffffc0085d1b98 t iommu_dma_get_sgtable
+ffffffc0085d1c88 t iommu_dma_map_page
+ffffffc0085d1eb8 t iommu_dma_unmap_page
+ffffffc0085d1f90 t iommu_dma_map_sg
+ffffffc0085d23ec t iommu_dma_unmap_sg
+ffffffc0085d2514 t iommu_dma_map_resource
+ffffffc0085d2590 t iommu_dma_unmap_resource
+ffffffc0085d25bc t iommu_dma_sync_single_for_cpu
+ffffffc0085d2690 t iommu_dma_sync_single_for_device
+ffffffc0085d2764 t iommu_dma_sync_sg_for_cpu
+ffffffc0085d28e8 t iommu_dma_sync_sg_for_device
+ffffffc0085d2a6c t iommu_dma_opt_mapping_size
+ffffffc0085d2a80 t iommu_dma_get_merge_boundary
+ffffffc0085d2aac t __iommu_dma_map
+ffffffc0085d2c90 t __iommu_dma_free
+ffffffc0085d2d98 t __iommu_dma_alloc_noncontiguous
+ffffffc0085d3290 t __iommu_dma_unmap
+ffffffc0085d3738 t __finalise_sg
+ffffffc0085d38c0 T iova_rcache_range
+ffffffc0085d38d4 T init_iova_domain
+ffffffc0085d399c T iova_cache_get
+ffffffc0085d3ab8 t iova_cpuhp_dead
+ffffffc0085d3af4 T iova_cache_put
+ffffffc0085d3b74 T alloc_iova
+ffffffc0085d3e0c T find_iova
+ffffffc0085d3eac T __free_iova
+ffffffc0085d3fa4 T free_iova
+ffffffc0085d4104 T alloc_iova_fast
+ffffffc0085d43d8 t free_cpu_cached_iovas
+ffffffc0085d45b4 T free_iova_fast
+ffffffc0085d4750 T put_iova_domain
+ffffffc0085d47f4 T reserve_iova
+ffffffc0085d4970 T iova_domain_init_rcaches
+ffffffc0085d4af4 t free_iova_rcaches
+ffffffc0085d4c38 t iova_magazine_free_pfns
+ffffffc0085d4dd0 T of_iommu_configure
+ffffffc0085d50d8 t of_pci_iommu_init
+ffffffc0085d513c t of_iommu_configure_dev_id
+ffffffc0085d528c T component_compare_of
+ffffffc0085d52a8 T component_release_of
+ffffffc0085d52b8 T component_compare_dev
+ffffffc0085d52d0 T component_compare_dev_name
+ffffffc0085d52fc T component_match_add_release
+ffffffc0085d532c t __component_match_add
+ffffffc0085d54a0 T component_match_add_typed
+ffffffc0085d54dc T component_master_add_with_match
+ffffffc0085d5650 t try_to_bring_up_aggregate_device
+ffffffc0085d5858 t free_aggregate_device
+ffffffc0085d5924 T component_master_del
+ffffffc0085d5a00 T component_unbind_all
+ffffffc0085d5b30 T component_bind_all
+ffffffc0085d5dcc T component_add_typed
+ffffffc0085d5e04 t __component_add
+ffffffc0085d5f90 T component_add
+ffffffc0085d5fc0 T component_del
+ffffffc0085d612c t devm_component_match_release
+ffffffc0085d61d4 t component_devices_open
+ffffffc0085d6214 t component_devices_show
+ffffffc0085d63ac T fwnode_link_add
+ffffffc0085d6418 t __fwnode_link_add.llvm.3145974223128856570
+ffffffc0085d653c T fwnode_links_purge
+ffffffc0085d6578 t fwnode_links_purge_suppliers
+ffffffc0085d6644 t fwnode_links_purge_consumers
+ffffffc0085d6714 T fw_devlink_purge_absent_suppliers
+ffffffc0085d6790 T device_links_read_lock
+ffffffc0085d67c4 T device_links_read_unlock
+ffffffc0085d680c T device_links_read_lock_held
+ffffffc0085d6820 T device_is_dependent
+ffffffc0085d6944 T device_for_each_child
+ffffffc0085d6a14 T device_pm_move_to_tail
+ffffffc0085d6aa0 t device_reorder_to_tail
+ffffffc0085d6bec T device_link_add
+ffffffc0085d6fd8 t pm_runtime_put_noidle
+ffffffc0085d7048 t kref_get
+ffffffc0085d70b8 t device_link_init_status
+ffffffc0085d7130 T get_device
+ffffffc0085d7160 T dev_set_name
+ffffffc0085d71e8 T device_register
+ffffffc0085d7228 T put_device
+ffffffc0085d7258 T device_link_del
+ffffffc0085d72a8 t device_link_put_kref
+ffffffc0085d73c4 T device_link_remove
+ffffffc0085d744c T device_links_check_suppliers
+ffffffc0085d7688 T dev_err_probe
+ffffffc0085d7740 T device_links_supplier_sync_state_pause
+ffffffc0085d7798 T device_links_supplier_sync_state_resume
+ffffffc0085d78ac t __device_links_queue_sync_state
+ffffffc0085d7994 t device_links_flush_sync_list
+ffffffc0085d7a90 T device_links_force_bind
+ffffffc0085d7b34 t device_link_drop_managed
+ffffffc0085d7c3c T device_links_driver_bound
+ffffffc0085d7f70 t __fw_devlink_pickup_dangling_consumers
+ffffffc0085d8094 t __fw_devlink_link_to_consumers
+ffffffc0085d81dc T device_remove_file
+ffffffc0085d8218 T device_links_no_driver
+ffffffc0085d8320 T device_links_driver_cleanup
+ffffffc0085d8480 T device_links_busy
+ffffffc0085d8528 T device_links_unbind_consumers
+ffffffc0085d864c T fw_devlink_is_strict
+ffffffc0085d867c T fw_devlink_drivers_done
+ffffffc0085d86ec t fw_devlink_no_driver.llvm.3145974223128856570
+ffffffc0085d8750 T lock_device_hotplug
+ffffffc0085d8784 T unlock_device_hotplug
+ffffffc0085d87b8 T lock_device_hotplug_sysfs
+ffffffc0085d8830 T dev_driver_string
+ffffffc0085d8874 T device_store_ulong
+ffffffc0085d8908 T device_show_ulong
+ffffffc0085d894c T device_store_int
+ffffffc0085d89f0 T device_show_int
+ffffffc0085d8a34 T device_store_bool
+ffffffc0085d8a80 T device_show_bool
+ffffffc0085d8ac4 T device_add_groups
+ffffffc0085d8af0 T device_remove_groups
+ffffffc0085d8b1c T devm_device_add_group
+ffffffc0085d8bc4 t devm_attr_group_remove
+ffffffc0085d8bf4 T devm_device_remove_group
+ffffffc0085d8c40 t devm_attr_group_match
+ffffffc0085d8c5c T devm_device_add_groups
+ffffffc0085d8d00 t devm_attr_groups_remove
+ffffffc0085d8d30 T devm_device_remove_groups
+ffffffc0085d8d7c T devices_kset_move_last
+ffffffc0085d8e24 T device_create_file
+ffffffc0085d8ed0 T device_remove_file_self
+ffffffc0085d8f04 T device_create_bin_file
+ffffffc0085d8f3c T device_remove_bin_file
+ffffffc0085d8f78 T device_initialize
+ffffffc0085d906c T virtual_device_parent
+ffffffc0085d90c4 T device_add
+ffffffc0085d96e8 t get_device_parent
+ffffffc0085d9884 t device_add_attrs
+ffffffc0085d9b70 t device_create_sys_dev_entry
+ffffffc0085d9c28 t fw_devlink_link_device
+ffffffc0085d9ca4 t fw_devlink_unblock_consumers
+ffffffc0085d9d4c t device_remove_attrs
+ffffffc0085d9e4c t device_remove_class_symlinks
+ffffffc0085d9f00 T kill_device
+ffffffc0085d9f2c T device_del
+ffffffc0085da3ec T device_unregister
+ffffffc0085da430 T device_get_devnode
+ffffffc0085da540 T device_for_each_child_reverse
+ffffffc0085da618 T device_find_child
+ffffffc0085da6f4 T device_find_child_by_name
+ffffffc0085da7b4 T device_find_any_child
+ffffffc0085da858 T device_offline
+ffffffc0085da99c t device_check_offline
+ffffffc0085daa70 T device_online
+ffffffc0085dab38 T __root_device_register
+ffffffc0085dac28 t root_device_release
+ffffffc0085dac54 T root_device_unregister
+ffffffc0085dacb4 T device_create
+ffffffc0085dad40 t device_create_groups_vargs
+ffffffc0085dae78 T device_create_with_groups
+ffffffc0085daef8 T device_destroy
+ffffffc0085daf88 T device_rename
+ffffffc0085db068 T device_move
+ffffffc0085db3bc t devices_kset_move_after
+ffffffc0085db464 t devices_kset_move_before
+ffffffc0085db510 T device_change_owner
+ffffffc0085db6ac T device_shutdown
+ffffffc0085db92c T _dev_info
+ffffffc0085db9c4 T dev_vprintk_emit
+ffffffc0085dbb48 T dev_printk_emit
+ffffffc0085dbbd0 T _dev_printk
+ffffffc0085dbc54 t __dev_printk
+ffffffc0085dbcf8 T _dev_emerg
+ffffffc0085dbd90 T _dev_alert
+ffffffc0085dbe28 T _dev_crit
+ffffffc0085dbec0 T _dev_err
+ffffffc0085dbf58 T _dev_warn
+ffffffc0085dbff0 T _dev_notice
+ffffffc0085dc088 T set_primary_fwnode
+ffffffc0085dc110 T set_secondary_fwnode
+ffffffc0085dc148 T device_set_of_node_from_dev
+ffffffc0085dc16c T device_set_node
+ffffffc0085dc1ac T device_match_name
+ffffffc0085dc1ec T device_match_of_node
+ffffffc0085dc208 T device_match_fwnode
+ffffffc0085dc248 T device_match_devt
+ffffffc0085dc268 T device_match_acpi_dev
+ffffffc0085dc280 T device_match_acpi_handle
+ffffffc0085dc298 T device_match_any
+ffffffc0085dc2ac t devlink_add_symlinks
+ffffffc0085dc51c t devlink_remove_symlinks
+ffffffc0085dc6ec t devlink_dev_release
+ffffffc0085dc748 t auto_remove_on_show
+ffffffc0085dc7b4 t runtime_pm_show
+ffffffc0085dc7fc t sync_state_only_show
+ffffffc0085dc844 t device_link_release_fn
+ffffffc0085dc930 t waiting_for_supplier_show
+ffffffc0085dc9fc t fw_devlink_create_devlink
+ffffffc0085dcbf8 t __fw_devlink_relax_cycles
+ffffffc0085dcdf8 t device_release
+ffffffc0085dceac t device_namespace
+ffffffc0085dcf0c t device_get_ownership
+ffffffc0085dcf60 t dev_attr_show
+ffffffc0085dcfe0 t dev_attr_store
+ffffffc0085dd034 t klist_children_get
+ffffffc0085dd068 t klist_children_put
+ffffffc0085dd09c t class_dir_release
+ffffffc0085dd0c8 t class_dir_child_ns_type
+ffffffc0085dd0e0 t uevent_show
+ffffffc0085dd240 t uevent_store
+ffffffc0085dd2b4 t uevent_store
+ffffffc0085dd2fc t online_show
+ffffffc0085dd374 t online_store
+ffffffc0085dd504 t removable_show
+ffffffc0085dd570 t removable_show
+ffffffc0085dd5b0 t dev_show
+ffffffc0085dd5f8 t fw_devlink_parse_fwtree
+ffffffc0085dd6a8 t __fw_devlink_link_to_suppliers
+ffffffc0085dd7d0 t dev_uevent_filter
+ffffffc0085dd814 t dev_uevent_name
+ffffffc0085dd844 t dev_uevent
+ffffffc0085dda68 t device_create_release
+ffffffc0085dda94 t device_create_release
+ffffffc0085ddac0 t device_create_release
+ffffffc0085ddaec T bus_create_file
+ffffffc0085ddb68 T bus_remove_file
+ffffffc0085ddbd4 T bus_for_each_dev
+ffffffc0085ddcc8 T bus_find_device
+ffffffc0085dddc8 T subsys_find_device_by_id
+ffffffc0085ddee8 T bus_for_each_drv
+ffffffc0085ddfe0 T bus_add_device
+ffffffc0085de100 T bus_probe_device
+ffffffc0085de1c4 T bus_remove_device
+ffffffc0085de2e4 T bus_add_driver
+ffffffc0085de560 T bus_remove_driver
+ffffffc0085de61c T bus_rescan_devices
+ffffffc0085de724 T device_reprobe
+ffffffc0085de7d0 T bus_register
+ffffffc0085dea10 t klist_devices_get
+ffffffc0085dea40 t klist_devices_put
+ffffffc0085dea70 t add_probe_files
+ffffffc0085deb50 t remove_probe_files
+ffffffc0085debf0 T bus_unregister
+ffffffc0085deca0 T bus_register_notifier
+ffffffc0085decd4 T bus_unregister_notifier
+ffffffc0085ded08 T bus_get_kset
+ffffffc0085ded1c T bus_get_device_klist
+ffffffc0085ded34 T bus_sort_breadthfirst
+ffffffc0085deee8 T subsys_dev_iter_init
+ffffffc0085def40 T subsys_dev_iter_next
+ffffffc0085def98 T subsys_dev_iter_exit
+ffffffc0085defc4 T subsys_interface_register
+ffffffc0085df124 T subsys_interface_unregister
+ffffffc0085df260 T subsys_system_register
+ffffffc0085df294 t subsys_register.llvm.17560372447726560574
+ffffffc0085df388 T subsys_virtual_register
+ffffffc0085df3e4 t driver_release
+ffffffc0085df410 t drv_attr_show
+ffffffc0085df46c t drv_attr_store
+ffffffc0085df4cc t unbind_store
+ffffffc0085df614 t bind_store
+ffffffc0085df788 t bus_release
+ffffffc0085df7cc t bus_attr_show
+ffffffc0085df828 t bus_attr_store
+ffffffc0085df888 t bus_uevent_store
+ffffffc0085df8d4 t drivers_probe_store
+ffffffc0085dfa14 t drivers_autoprobe_show
+ffffffc0085dfa60 t drivers_autoprobe_store
+ffffffc0085dfa94 t system_root_device_release
+ffffffc0085dfac0 t bus_uevent_filter
+ffffffc0085dfae4 T driver_deferred_probe_add
+ffffffc0085dfb8c T driver_deferred_probe_del
+ffffffc0085dfc34 T driver_deferred_probe_trigger
+ffffffc0085dfd14 T device_block_probing
+ffffffc0085dfd4c T wait_for_device_probe
+ffffffc0085dfe54 T device_unblock_probing
+ffffffc0085dff3c T device_set_deferred_probe_reason
+ffffffc0085dffcc T driver_deferred_probe_check_state
+ffffffc0085e0028 T deferred_probe_extend_timeout
+ffffffc0085e008c T device_is_bound
+ffffffc0085e00bc T device_bind_driver
+ffffffc0085e0194 t driver_bound
+ffffffc0085e0370 T driver_probe_done
+ffffffc0085e039c T driver_allows_async_probing
+ffffffc0085e042c T device_attach
+ffffffc0085e0458 t __device_attach.llvm.9406443306120892815
+ffffffc0085e05d8 T device_initial_probe
+ffffffc0085e0608 T device_driver_attach
+ffffffc0085e06b4 t __driver_probe_device
+ffffffc0085e07a4 T driver_attach
+ffffffc0085e07e4 t __driver_attach.llvm.9406443306120892815
+ffffffc0085e09d8 T device_release_driver_internal
+ffffffc0085e0cd8 T device_release_driver
+ffffffc0085e0d0c T device_driver_detach
+ffffffc0085e0d40 T driver_detach
+ffffffc0085e0e54 t deferred_probe_work_func
+ffffffc0085e0f58 t deferred_probe_timeout_work_func
+ffffffc0085e10e0 t deferred_devs_open
+ffffffc0085e1120 t deferred_devs_show
+ffffffc0085e11e4 t __device_attach_driver
+ffffffc0085e136c t __device_attach_async_helper
+ffffffc0085e1448 t driver_probe_device
+ffffffc0085e168c t really_probe
+ffffffc0085e1a64 t device_remove
+ffffffc0085e1b20 t state_synced_show
+ffffffc0085e1b90 t coredump_store
+ffffffc0085e1c10 t __driver_attach_async_helper
+ffffffc0085e1cb8 T register_syscore_ops
+ffffffc0085e1d38 T unregister_syscore_ops
+ffffffc0085e1db0 T syscore_suspend
+ffffffc0085e2054 T syscore_resume
+ffffffc0085e227c T syscore_shutdown
+ffffffc0085e2338 T driver_set_override
+ffffffc0085e2434 T driver_for_each_device
+ffffffc0085e2524 T driver_find_device
+ffffffc0085e2624 T driver_create_file
+ffffffc0085e2664 T driver_remove_file
+ffffffc0085e26a4 T driver_add_groups
+ffffffc0085e26d4 T driver_remove_groups
+ffffffc0085e2704 T driver_register
+ffffffc0085e282c T driver_find
+ffffffc0085e2880 T driver_unregister
+ffffffc0085e28e4 T class_create_file_ns
+ffffffc0085e2924 T class_remove_file_ns
+ffffffc0085e2960 T __class_register
+ffffffc0085e2ad8 t klist_class_dev_get
+ffffffc0085e2b08 t klist_class_dev_put
+ffffffc0085e2b3c T class_unregister
+ffffffc0085e2b88 T __class_create
+ffffffc0085e2c24 t class_create_release
+ffffffc0085e2c50 T class_destroy
+ffffffc0085e2ca8 T class_dev_iter_init
+ffffffc0085e2d00 T class_dev_iter_next
+ffffffc0085e2d58 T class_dev_iter_exit
+ffffffc0085e2d84 T class_for_each_device
+ffffffc0085e2eb8 T class_find_device
+ffffffc0085e2ff4 T class_interface_register
+ffffffc0085e3150 T class_interface_unregister
+ffffffc0085e327c T show_class_attr_string
+ffffffc0085e32bc T class_compat_register
+ffffffc0085e3338 T class_compat_unregister
+ffffffc0085e337c T class_compat_create_link
+ffffffc0085e3424 T class_compat_remove_link
+ffffffc0085e3484 t class_release
+ffffffc0085e34e8 t class_child_ns_type
+ffffffc0085e3500 t class_attr_show
+ffffffc0085e3558 t class_attr_store
+ffffffc0085e35b0 T platform_get_resource
+ffffffc0085e3600 T platform_get_mem_or_io
+ffffffc0085e364c T devm_platform_get_and_ioremap_resource
+ffffffc0085e36c8 T devm_platform_ioremap_resource
+ffffffc0085e373c T devm_platform_ioremap_resource_byname
+ffffffc0085e37d4 T platform_get_resource_byname
+ffffffc0085e3860 T platform_get_irq_optional
+ffffffc0085e397c T platform_get_irq
+ffffffc0085e39dc T platform_irq_count
+ffffffc0085e3a30 T devm_platform_get_irqs_affinity
+ffffffc0085e3c6c t devm_platform_get_irqs_affinity_release
+ffffffc0085e3cc8 T platform_get_irq_byname
+ffffffc0085e3d24 t __platform_get_irq_byname.llvm.11995145504661968078
+ffffffc0085e3dec T platform_get_irq_byname_optional
+ffffffc0085e3e18 T platform_add_devices
+ffffffc0085e3f90 T platform_device_register
+ffffffc0085e4010 T platform_device_unregister
+ffffffc0085e40d0 T platform_device_put
+ffffffc0085e4110 T platform_device_alloc
+ffffffc0085e41d4 t platform_device_release
+ffffffc0085e4234 T platform_device_add_resources
+ffffffc0085e42b8 T platform_device_add_data
+ffffffc0085e4324 T platform_device_add
+ffffffc0085e455c T platform_device_del
+ffffffc0085e460c T platform_device_register_full
+ffffffc0085e4800 T __platform_driver_register
+ffffffc0085e4840 T platform_driver_unregister
+ffffffc0085e4870 T __platform_driver_probe
+ffffffc0085e4964 t platform_probe_fail
+ffffffc0085e4978 T __platform_create_bundle
+ffffffc0085e4b90 T __platform_register_drivers
+ffffffc0085e4c4c T platform_unregister_drivers
+ffffffc0085e4cac T platform_pm_suspend
+ffffffc0085e4d40 T platform_pm_resume
+ffffffc0085e4dd0 t platform_match
+ffffffc0085e4e8c t platform_uevent
+ffffffc0085e4ef0 t platform_probe
+ffffffc0085e4fc8 t platform_remove
+ffffffc0085e504c t platform_shutdown
+ffffffc0085e50a4 t platform_dma_configure
+ffffffc0085e5118 t platform_dma_cleanup
+ffffffc0085e5150 T platform_find_device_by_driver
+ffffffc0085e5194 t __platform_match
+ffffffc0085e51c0 t platform_dev_attrs_visible
+ffffffc0085e51f0 t numa_node_show
+ffffffc0085e5230 T unregister_cpu
+ffffffc0085e5294 t cpu_subsys_match
+ffffffc0085e52a8 t cpu_subsys_online
+ffffffc0085e52d4 t cpu_subsys_offline
+ffffffc0085e5300 T register_cpu
+ffffffc0085e544c t cpu_device_release
+ffffffc0085e545c t cpu_uevent
+ffffffc0085e54d4 T get_cpu_device
+ffffffc0085e5544 T cpu_device_create
+ffffffc0085e567c T cpu_is_hotpluggable
+ffffffc0085e56fc W cpu_show_l1tf
+ffffffc0085e5738 W cpu_show_mds
+ffffffc0085e5774 W cpu_show_tsx_async_abort
+ffffffc0085e57b0 W cpu_show_itlb_multihit
+ffffffc0085e57ec W cpu_show_srbds
+ffffffc0085e5828 W cpu_show_mmio_stale_data
+ffffffc0085e5864 W cpu_show_retbleed
+ffffffc0085e58a0 t print_cpu_modalias
+ffffffc0085e5988 t show_cpus_attr
+ffffffc0085e59d0 t print_cpus_kernel_max
+ffffffc0085e5a10 t print_cpus_offline
+ffffffc0085e5b4c t print_cpus_isolated
+ffffffc0085e5bf0 T kobj_map
+ffffffc0085e5e3c T kobj_unmap
+ffffffc0085e5f48 T kobj_lookup
+ffffffc0085e60ac T kobj_map_init
+ffffffc0085e6174 T __devres_alloc_node
+ffffffc0085e6208 T devres_for_each_res
+ffffffc0085e631c T devres_free
+ffffffc0085e6364 T devres_add
+ffffffc0085e63c8 t add_dr
+ffffffc0085e64d8 T devres_find
+ffffffc0085e65b4 T devres_get
+ffffffc0085e66d8 T devres_remove
+ffffffc0085e6870 T devres_destroy
+ffffffc0085e68c8 T devres_release
+ffffffc0085e6960 T devres_release_all
+ffffffc0085e6a3c t remove_nodes
+ffffffc0085e6c38 t release_nodes
+ffffffc0085e6d78 T devres_open_group
+ffffffc0085e6e70 t group_open_release
+ffffffc0085e6e80 t group_close_release
+ffffffc0085e6e90 T devres_close_group
+ffffffc0085e6f5c T devres_remove_group
+ffffffc0085e7108 T devres_release_group
+ffffffc0085e7240 T devm_add_action
+ffffffc0085e731c t devm_action_release
+ffffffc0085e7364 T devm_remove_action
+ffffffc0085e73fc t devm_action_match
+ffffffc0085e7438 T devm_release_action
+ffffffc0085e74fc T devm_kmalloc
+ffffffc0085e75f0 t devm_kmalloc_release
+ffffffc0085e7600 T devm_krealloc
+ffffffc0085e78c4 T devm_kfree
+ffffffc0085e7954 t devm_kmalloc_match
+ffffffc0085e796c T devm_kstrdup
+ffffffc0085e79f4 T devm_kstrdup_const
+ffffffc0085e7a9c T devm_kvasprintf
+ffffffc0085e7b84 T devm_kasprintf
+ffffffc0085e7c9c T devm_kmemdup
+ffffffc0085e7d04 T devm_get_free_pages
+ffffffc0085e7e08 t devm_pages_release
+ffffffc0085e7e3c T devm_free_pages
+ffffffc0085e7eec t devm_pages_match
+ffffffc0085e7f0c T __devm_alloc_percpu
+ffffffc0085e800c t devm_percpu_release
+ffffffc0085e803c T devm_free_percpu
+ffffffc0085e80a4 t devm_percpu_match
+ffffffc0085e80c0 T attribute_container_classdev_to_container
+ffffffc0085e80d4 T attribute_container_register
+ffffffc0085e8178 t internal_container_klist_get
+ffffffc0085e81a8 t internal_container_klist_put
+ffffffc0085e81dc T attribute_container_unregister
+ffffffc0085e8294 T attribute_container_add_device
+ffffffc0085e8474 t attribute_container_release
+ffffffc0085e84c0 T attribute_container_add_class_device
+ffffffc0085e8558 T attribute_container_remove_device
+ffffffc0085e8704 T attribute_container_remove_attrs
+ffffffc0085e878c T attribute_container_device_trigger_safe
+ffffffc0085e8a84 T attribute_container_device_trigger
+ffffffc0085e8bec T attribute_container_trigger
+ffffffc0085e8cb4 T attribute_container_add_attrs
+ffffffc0085e8d44 T attribute_container_add_class_device_adapter
+ffffffc0085e8de0 T attribute_container_class_device_del
+ffffffc0085e8e70 T attribute_container_find_class_device
+ffffffc0085e8f08 T transport_class_register
+ffffffc0085e8f3c T transport_class_unregister
+ffffffc0085e8f68 T anon_transport_class_register
+ffffffc0085e8fc8 t anon_transport_dummy_function
+ffffffc0085e8fdc T anon_transport_class_unregister
+ffffffc0085e9014 T transport_setup_device
+ffffffc0085e9048 t transport_setup_classdev
+ffffffc0085e909c T transport_add_device
+ffffffc0085e90d8 t transport_add_class_device
+ffffffc0085e91a4 t transport_remove_classdev
+ffffffc0085e9244 T transport_configure_device
+ffffffc0085e9278 t transport_configure
+ffffffc0085e92cc T transport_remove_device
+ffffffc0085e9300 T transport_destroy_device
+ffffffc0085e9334 t transport_destroy_classdev
+ffffffc0085e9380 t topology_add_dev
+ffffffc0085e93bc t topology_remove_dev
+ffffffc0085e93f8 t topology_is_visible
+ffffffc0085e9428 t ppin_show
+ffffffc0085e9468 t physical_package_id_show
+ffffffc0085e94cc t cluster_id_show
+ffffffc0085e9530 t core_id_show
+ffffffc0085e9594 t core_cpus_read
+ffffffc0085e9600 t core_cpus_list_read
+ffffffc0085e966c t thread_siblings_read
+ffffffc0085e96d8 t thread_siblings_list_read
+ffffffc0085e9744 t core_siblings_read
+ffffffc0085e97b0 t core_siblings_list_read
+ffffffc0085e981c t cluster_cpus_read
+ffffffc0085e9888 t cluster_cpus_list_read
+ffffffc0085e98f4 t package_cpus_read
+ffffffc0085e9960 t package_cpus_list_read
+ffffffc0085e99cc t trivial_online
+ffffffc0085e99e0 t container_offline
+ffffffc0085e9a34 T dev_fwnode
+ffffffc0085e9a5c T device_property_present
+ffffffc0085e9b50 T fwnode_property_present
+ffffffc0085e9c2c T device_property_read_u8_array
+ffffffc0085e9d3c T fwnode_property_read_u8_array
+ffffffc0085e9e30 T device_property_read_u16_array
+ffffffc0085e9f40 T fwnode_property_read_u16_array
+ffffffc0085ea034 T device_property_read_u32_array
+ffffffc0085ea144 T fwnode_property_read_u32_array
+ffffffc0085ea238 T device_property_read_u64_array
+ffffffc0085ea348 T fwnode_property_read_u64_array
+ffffffc0085ea43c T device_property_read_string_array
+ffffffc0085ea544 T fwnode_property_read_string_array
+ffffffc0085ea628 T device_property_read_string
+ffffffc0085ea734 T fwnode_property_read_string
+ffffffc0085ea820 T device_property_match_string
+ffffffc0085ea860 T fwnode_property_match_string
+ffffffc0085eaa54 T fwnode_property_get_reference_args
+ffffffc0085eab78 T fwnode_find_reference
+ffffffc0085eacd4 T fwnode_get_name
+ffffffc0085ead48 T fwnode_get_name_prefix
+ffffffc0085eadbc T fwnode_get_parent
+ffffffc0085eae30 T fwnode_get_next_parent
+ffffffc0085eaef4 T fwnode_handle_put
+ffffffc0085eaf54 T fwnode_get_next_parent_dev
+ffffffc0085eb0a8 T fwnode_count_parents
+ffffffc0085eb1c4 T fwnode_get_nth_parent
+ffffffc0085eb324 T fwnode_handle_get
+ffffffc0085eb384 T fwnode_is_ancestor_of
+ffffffc0085eb4f4 T fwnode_get_next_child_node
+ffffffc0085eb568 T fwnode_get_next_available_child_node
+ffffffc0085eb640 T fwnode_device_is_available
+ffffffc0085eb6b8 T device_get_next_child_node
+ffffffc0085eb7a0 T fwnode_get_named_child_node
+ffffffc0085eb814 T device_get_named_child_node
+ffffffc0085eb8a4 T device_get_child_node_count
+ffffffc0085eba54 T device_dma_supported
+ffffffc0085ebaec T device_get_dma_attr
+ffffffc0085ebb94 T fwnode_get_phy_mode
+ffffffc0085ebd9c T device_get_phy_mode
+ffffffc0085ebddc T fwnode_iomap
+ffffffc0085ebe50 T fwnode_irq_get
+ffffffc0085ebec4 T fwnode_irq_get_byname
+ffffffc0085ebf6c T fwnode_graph_get_next_endpoint
+ffffffc0085ec12c T fwnode_graph_get_port_parent
+ffffffc0085ec224 T fwnode_graph_get_remote_port_parent
+ffffffc0085ec3a0 T fwnode_graph_get_remote_endpoint
+ffffffc0085ec414 T fwnode_graph_get_remote_port
+ffffffc0085ec50c T fwnode_graph_get_endpoint_by_id
+ffffffc0085ec8a4 T fwnode_graph_parse_endpoint
+ffffffc0085ec91c T fwnode_graph_get_endpoint_count
+ffffffc0085ecb84 T device_get_match_data
+ffffffc0085ecc30 T fwnode_connection_find_match
+ffffffc0085eccf8 t fwnode_graph_devcon_matches
+ffffffc0085ed024 t fwnode_devcon_matches
+ffffffc0085ed250 T fwnode_connection_find_matches
+ffffffc0085ed2f8 T get_cpu_cacheinfo
+ffffffc0085ed330 T last_level_cache_is_valid
+ffffffc0085ed3b4 T last_level_cache_is_shared
+ffffffc0085ed4a4 W cache_setup_acpi
+ffffffc0085ed4b8 T detect_cache_attributes
+ffffffc0085eda78 t free_cache_attributes
+ffffffc0085edc6c W cache_get_priv_group
+ffffffc0085edc80 t cacheinfo_cpu_online
+ffffffc0085edec0 t cacheinfo_cpu_pre_down
+ffffffc0085edf64 t cpu_cache_sysfs_exit
+ffffffc0085ee04c t cache_default_attrs_is_visible
+ffffffc0085ee1dc t level_show
+ffffffc0085ee224 t shared_cpu_map_show
+ffffffc0085ee274 t shared_cpu_list_show
+ffffffc0085ee2c4 t coherency_line_size_show
+ffffffc0085ee30c t ways_of_associativity_show
+ffffffc0085ee354 t number_of_sets_show
+ffffffc0085ee39c t size_show
+ffffffc0085ee3e8 t size_show
+ffffffc0085ee42c t write_policy_show
+ffffffc0085ee48c t allocation_policy_show
+ffffffc0085ee50c t physical_line_partition_show
+ffffffc0085ee554 T is_software_node
+ffffffc0085ee590 T to_software_node
+ffffffc0085ee5d8 T software_node_fwnode
+ffffffc0085ee660 T property_entries_dup
+ffffffc0085eeb1c T property_entries_free
+ffffffc0085eebe8 T software_node_find_by_name
+ffffffc0085eecb0 T software_node_register_nodes
+ffffffc0085eeda4 T software_node_register
+ffffffc0085eeea8 T software_node_unregister_nodes
+ffffffc0085eefa0 T software_node_unregister
+ffffffc0085ef050 T software_node_register_node_group
+ffffffc0085ef0c8 T software_node_unregister_node_group
+ffffffc0085ef1ac t swnode_register
+ffffffc0085ef36c T fwnode_remove_software_node
+ffffffc0085ef3c4 T fwnode_create_software_node
+ffffffc0085ef4d0 T device_add_software_node
+ffffffc0085ef6b0 T software_node_notify
+ffffffc0085ef784 T device_remove_software_node
+ffffffc0085ef824 T software_node_notify_remove
+ffffffc0085ef8fc T device_create_managed_software_node
+ffffffc0085efa08 t software_node_get
+ffffffc0085efa6c t software_node_put
+ffffffc0085efac4 t software_node_property_present
+ffffffc0085efb54 t software_node_read_int_array
+ffffffc0085efcd4 t software_node_read_string_array
+ffffffc0085efe20 t software_node_get_name
+ffffffc0085efe5c t software_node_get_name_prefix
+ffffffc0085eff00 t software_node_get_parent
+ffffffc0085eff74 t software_node_get_next_child
+ffffffc0085f0038 t software_node_get_named_child_node
+ffffffc0085f00f0 t software_node_get_reference_args
+ffffffc0085f0340 t software_node_graph_get_next_endpoint
+ffffffc0085f05e8 t software_node_graph_get_remote_endpoint
+ffffffc0085f0730 t software_node_graph_get_port_parent
+ffffffc0085f07ec t software_node_graph_parse_endpoint
+ffffffc0085f08ac t swnode_graph_find_next_port
+ffffffc0085f09f4 t software_node_release
+ffffffc0085f0ab0 T dpm_sysfs_add
+ffffffc0085f0bc0 T dpm_sysfs_change_owner
+ffffffc0085f0cb8 T wakeup_sysfs_add
+ffffffc0085f0d14 T wakeup_sysfs_remove
+ffffffc0085f0d64 T pm_qos_sysfs_add_resume_latency
+ffffffc0085f0d98 T pm_qos_sysfs_remove_resume_latency
+ffffffc0085f0dcc T pm_qos_sysfs_add_flags
+ffffffc0085f0e00 T pm_qos_sysfs_remove_flags
+ffffffc0085f0e34 T pm_qos_sysfs_add_latency_tolerance
+ffffffc0085f0e68 T pm_qos_sysfs_remove_latency_tolerance
+ffffffc0085f0e9c T rpm_sysfs_remove
+ffffffc0085f0ed0 T dpm_sysfs_remove
+ffffffc0085f0f50 t runtime_status_show
+ffffffc0085f0fdc t runtime_suspended_time_show
+ffffffc0085f1040 t runtime_active_time_show
+ffffffc0085f10a4 t autosuspend_delay_ms_show
+ffffffc0085f10f8 t autosuspend_delay_ms_store
+ffffffc0085f11c4 t wakeup_store
+ffffffc0085f1254 t wakeup_active_count_show
+ffffffc0085f12e8 t wakeup_abort_count_show
+ffffffc0085f137c t wakeup_expire_count_show
+ffffffc0085f1410 t wakeup_active_show
+ffffffc0085f14a8 t wakeup_total_time_ms_show
+ffffffc0085f1558 t wakeup_max_time_ms_show
+ffffffc0085f1608 t wakeup_last_time_ms_show
+ffffffc0085f16b8 t pm_qos_latency_tolerance_us_show
+ffffffc0085f1748 t pm_qos_latency_tolerance_us_store
+ffffffc0085f1830 t pm_qos_resume_latency_us_show
+ffffffc0085f1898 t pm_qos_resume_latency_us_store
+ffffffc0085f19a0 t pm_qos_no_power_off_show
+ffffffc0085f19f0 t pm_qos_no_power_off_store
+ffffffc0085f1aa4 T pm_generic_runtime_suspend
+ffffffc0085f1b08 T pm_generic_runtime_resume
+ffffffc0085f1b6c T pm_generic_prepare
+ffffffc0085f1bd0 T pm_generic_suspend_noirq
+ffffffc0085f1c34 T pm_generic_suspend_late
+ffffffc0085f1c98 T pm_generic_suspend
+ffffffc0085f1cfc T pm_generic_freeze_noirq
+ffffffc0085f1d60 T pm_generic_freeze_late
+ffffffc0085f1dc4 T pm_generic_freeze
+ffffffc0085f1e28 T pm_generic_poweroff_noirq
+ffffffc0085f1e8c T pm_generic_poweroff_late
+ffffffc0085f1ef0 T pm_generic_poweroff
+ffffffc0085f1f54 T pm_generic_thaw_noirq
+ffffffc0085f1fb8 T pm_generic_thaw_early
+ffffffc0085f201c T pm_generic_thaw
+ffffffc0085f2080 T pm_generic_resume_noirq
+ffffffc0085f20e4 T pm_generic_resume_early
+ffffffc0085f2148 T pm_generic_resume
+ffffffc0085f21ac T pm_generic_restore_noirq
+ffffffc0085f2210 T pm_generic_restore_early
+ffffffc0085f2274 T pm_generic_restore
+ffffffc0085f22d8 T pm_generic_complete
+ffffffc0085f2334 T dev_pm_get_subsys_data
+ffffffc0085f23e4 T dev_pm_put_subsys_data
+ffffffc0085f2464 T dev_pm_domain_attach
+ffffffc0085f2478 T dev_pm_domain_attach_by_id
+ffffffc0085f2498 T dev_pm_domain_attach_by_name
+ffffffc0085f24b8 T dev_pm_domain_detach
+ffffffc0085f2510 T dev_pm_domain_start
+ffffffc0085f256c T dev_pm_domain_set
+ffffffc0085f25e0 T __dev_pm_qos_flags
+ffffffc0085f263c T dev_pm_qos_flags
+ffffffc0085f26e0 T __dev_pm_qos_resume_latency
+ffffffc0085f2724 T dev_pm_qos_read_value
+ffffffc0085f2804 T dev_pm_qos_constraints_destroy
+ffffffc0085f2a70 t apply_constraint
+ffffffc0085f2b9c T dev_pm_qos_add_request
+ffffffc0085f2c1c t __dev_pm_qos_add_request
+ffffffc0085f2de8 T dev_pm_qos_update_request
+ffffffc0085f2e50 t __dev_pm_qos_update_request.llvm.11396099982873117743
+ffffffc0085f2ff8 T dev_pm_qos_remove_request
+ffffffc0085f3050 t __dev_pm_qos_remove_request
+ffffffc0085f318c T dev_pm_qos_add_notifier
+ffffffc0085f3274 t dev_pm_qos_constraints_allocate
+ffffffc0085f3374 T dev_pm_qos_remove_notifier
+ffffffc0085f3440 T dev_pm_qos_add_ancestor_request
+ffffffc0085f3510 T dev_pm_qos_expose_latency_limit
+ffffffc0085f3680 T dev_pm_qos_hide_latency_limit
+ffffffc0085f3720 T dev_pm_qos_expose_flags
+ffffffc0085f3894 T dev_pm_qos_hide_flags
+ffffffc0085f3948 T dev_pm_qos_update_flags
+ffffffc0085f39f4 T dev_pm_qos_get_user_latency_tolerance
+ffffffc0085f3a64 T dev_pm_qos_update_user_latency_tolerance
+ffffffc0085f3b74 T dev_pm_qos_expose_latency_tolerance
+ffffffc0085f3be8 T dev_pm_qos_hide_latency_tolerance
+ffffffc0085f3ca0 T pm_runtime_active_time
+ffffffc0085f3d40 T pm_runtime_suspended_time
+ffffffc0085f3de0 T pm_runtime_autosuspend_expiration
+ffffffc0085f3e54 T pm_runtime_set_memalloc_noio
+ffffffc0085f3f40 t dev_memalloc_noio
+ffffffc0085f3f58 T pm_runtime_release_supplier
+ffffffc0085f4024 T pm_schedule_suspend
+ffffffc0085f418c t rpm_suspend
+ffffffc0085f493c T __pm_runtime_idle
+ffffffc0085f4a4c t trace_rpm_usage_rcuidle
+ffffffc0085f4b5c t rpm_idle
+ffffffc0085f4ebc T __pm_runtime_suspend
+ffffffc0085f4fd0 T __pm_runtime_resume
+ffffffc0085f5070 t rpm_resume
+ffffffc0085f5728 T pm_runtime_get_if_active
+ffffffc0085f585c T __pm_runtime_set_status
+ffffffc0085f5d94 T pm_runtime_enable
+ffffffc0085f5e70 T pm_runtime_barrier
+ffffffc0085f5f84 t __pm_runtime_barrier
+ffffffc0085f60c4 T __pm_runtime_disable
+ffffffc0085f624c T devm_pm_runtime_enable
+ffffffc0085f62e8 t pm_runtime_disable_action
+ffffffc0085f6358 T pm_runtime_forbid
+ffffffc0085f63ec T pm_runtime_allow
+ffffffc0085f64e0 T pm_runtime_no_callbacks
+ffffffc0085f654c T pm_runtime_irq_safe
+ffffffc0085f6608 T pm_runtime_set_autosuspend_delay
+ffffffc0085f6670 t update_autosuspend
+ffffffc0085f673c T __pm_runtime_use_autosuspend
+ffffffc0085f67bc T pm_runtime_init
+ffffffc0085f6874 t pm_runtime_work
+ffffffc0085f693c t pm_suspend_timer_fn
+ffffffc0085f69c8 T pm_runtime_reinit
+ffffffc0085f6a5c T pm_runtime_remove
+ffffffc0085f6af8 T pm_runtime_get_suppliers
+ffffffc0085f6bec T pm_runtime_put_suppliers
+ffffffc0085f6c7c T pm_runtime_new_link
+ffffffc0085f6cd0 T pm_runtime_drop_link
+ffffffc0085f6e10 T pm_runtime_force_suspend
+ffffffc0085f6fc4 T pm_runtime_force_resume
+ffffffc0085f7138 t trace_rpm_return_int_rcuidle
+ffffffc0085f7248 t __rpm_callback
+ffffffc0085f7680 T dev_pm_set_wake_irq
+ffffffc0085f7714 t dev_pm_attach_wake_irq
+ffffffc0085f77ec T dev_pm_clear_wake_irq
+ffffffc0085f7888 T dev_pm_set_dedicated_wake_irq
+ffffffc0085f78b4 t __dev_pm_set_dedicated_wake_irq
+ffffffc0085f79e4 T dev_pm_set_dedicated_wake_irq_reverse
+ffffffc0085f7a14 T dev_pm_enable_wake_irq
+ffffffc0085f7a54 T dev_pm_disable_wake_irq
+ffffffc0085f7a94 T dev_pm_enable_wake_irq_check
+ffffffc0085f7af8 T dev_pm_disable_wake_irq_check
+ffffffc0085f7b4c T dev_pm_enable_wake_irq_complete
+ffffffc0085f7b94 T dev_pm_arm_wake_irq
+ffffffc0085f7c08 T dev_pm_disarm_wake_irq
+ffffffc0085f7c80 t handle_threaded_wake_irq
+ffffffc0085f7d10 T device_pm_sleep_init
+ffffffc0085f7d88 T device_pm_lock
+ffffffc0085f7dbc T device_pm_unlock
+ffffffc0085f7df0 T device_pm_add
+ffffffc0085f7ebc T device_pm_check_callbacks
+ffffffc0085f80d8 T device_pm_remove
+ffffffc0085f817c T device_pm_move_before
+ffffffc0085f8208 T device_pm_move_after
+ffffffc0085f8288 T device_pm_move_last
+ffffffc0085f830c T dev_pm_skip_resume
+ffffffc0085f8360 T dev_pm_skip_suspend
+ffffffc0085f8390 T dpm_resume_noirq
+ffffffc0085f8824 T dpm_resume_early
+ffffffc0085f8cac t async_resume_early
+ffffffc0085f8dd4 t device_resume_early
+ffffffc0085f9008 T dpm_resume_start
+ffffffc0085f904c T dpm_resume
+ffffffc0085f94f8 t async_resume
+ffffffc0085f9620 t device_resume
+ffffffc0085f9854 T dpm_complete
+ffffffc0085f9cbc T dpm_resume_end
+ffffffc0085f9d00 T dpm_suspend_noirq
+ffffffc0085fa1f4 T dpm_suspend_late
+ffffffc0085fa6a4 T dpm_suspend_end
+ffffffc0085fa734 T dpm_suspend
+ffffffc0085fabf4 T dpm_prepare
+ffffffc0085fb210 T dpm_suspend_start
+ffffffc0085fb2d4 T __suspend_report_result
+ffffffc0085fb324 T device_pm_wait_for_dev
+ffffffc0085fb37c T dpm_for_each_dev
+ffffffc0085fb41c t async_resume_noirq
+ffffffc0085fb544 t device_resume_noirq
+ffffffc0085fb7b0 t dpm_wait_for_superior
+ffffffc0085fb8e4 t dpm_run_callback
+ffffffc0085fba9c t async_suspend_noirq
+ffffffc0085fbc24 t __device_suspend_noirq
+ffffffc0085fbf84 t dpm_wait_for_subordinate
+ffffffc0085fc088 t dpm_wait_fn
+ffffffc0085fc0e0 t async_suspend_late
+ffffffc0085fc268 t __device_suspend_late
+ffffffc0085fc578 t dpm_propagate_wakeup_to_parent
+ffffffc0085fc5ec t async_suspend
+ffffffc0085fc774 t __device_suspend
+ffffffc0085fcc04 t legacy_suspend
+ffffffc0085fcdbc T wakeup_source_create
+ffffffc0085fce60 T wakeup_source_destroy
+ffffffc0085fcf74 T __pm_relax
+ffffffc0085fcfe0 T wakeup_source_add
+ffffffc0085fd0ac t pm_wakeup_timer_fn
+ffffffc0085fd138 T wakeup_source_remove
+ffffffc0085fd1d4 T wakeup_source_register
+ffffffc0085fd33c T wakeup_source_unregister
+ffffffc0085fd3e4 T wakeup_sources_read_lock
+ffffffc0085fd418 T wakeup_sources_read_unlock
+ffffffc0085fd460 T wakeup_sources_walk_start
+ffffffc0085fd484 T wakeup_sources_walk_next
+ffffffc0085fd510 T device_wakeup_enable
+ffffffc0085fd5e8 T device_wakeup_attach_irq
+ffffffc0085fd640 T device_wakeup_detach_irq
+ffffffc0085fd65c T device_wakeup_arm_wake_irqs
+ffffffc0085fd6f4 T device_wakeup_disarm_wake_irqs
+ffffffc0085fd78c T device_wakeup_disable
+ffffffc0085fd804 T device_set_wakeup_capable
+ffffffc0085fd8b4 T device_set_wakeup_enable
+ffffffc0085fd93c T __pm_stay_awake
+ffffffc0085fd9ac t wakeup_source_report_event
+ffffffc0085fdb88 T pm_stay_awake
+ffffffc0085fdc24 t wakeup_source_deactivate
+ffffffc0085fddc8 T pm_relax
+ffffffc0085fde60 T pm_wakeup_ws_event
+ffffffc0085fdf24 T pm_wakeup_dev_event
+ffffffc0085fdfa0 T pm_get_active_wakeup_sources
+ffffffc0085fe0f4 T pm_print_active_wakeup_sources
+ffffffc0085fe170 T pm_wakeup_pending
+ffffffc0085fe308 T pm_system_wakeup
+ffffffc0085fe36c T pm_system_cancel_wakeup
+ffffffc0085fe3e4 T pm_wakeup_clear
+ffffffc0085fe460 T pm_system_irq_wakeup
+ffffffc0085fe588 T pm_wakeup_irq
+ffffffc0085fe5a0 T pm_get_wakeup_count
+ffffffc0085fe72c T pm_save_wakeup_count
+ffffffc0085fe7b8 t wakeup_sources_stats_open
+ffffffc0085fe7f4 t wakeup_sources_stats_seq_start
+ffffffc0085fe890 t wakeup_sources_stats_seq_stop
+ffffffc0085fe8dc t wakeup_sources_stats_seq_next
+ffffffc0085fe94c t wakeup_sources_stats_seq_show
+ffffffc0085fe978 t print_wakeup_source_stats
+ffffffc0085feaac T wakeup_source_sysfs_add
+ffffffc0085feb9c T pm_wakeup_source_sysfs_add
+ffffffc0085febe0 T wakeup_source_sysfs_remove
+ffffffc0085fec10 t active_count_show
+ffffffc0085fec58 t event_count_show
+ffffffc0085feca0 t expire_count_show
+ffffffc0085fece8 t active_time_ms_show
+ffffffc0085fed6c t total_time_ms_show
+ffffffc0085fedf8 t max_time_ms_show
+ffffffc0085fee88 t last_change_ms_show
+ffffffc0085feeec t prevent_suspend_time_ms_show
+ffffffc0085fef80 T pm_clk_add
+ffffffc0085fefac t __pm_clk_add
+ffffffc0085ff15c T pm_clk_add_clk
+ffffffc0085ff190 T of_pm_clk_add_clk
+ffffffc0085ff218 T of_pm_clk_add_clks
+ffffffc0085ff384 T pm_clk_remove_clk
+ffffffc0085ff470 T pm_clk_remove
+ffffffc0085ff570 t __pm_clk_remove
+ffffffc0085ff60c T pm_clk_init
+ffffffc0085ff670 T pm_clk_create
+ffffffc0085ff69c T pm_clk_destroy
+ffffffc0085ff814 T devm_pm_clk_create
+ffffffc0085ff87c t pm_clk_destroy_action
+ffffffc0085ff8a8 T pm_clk_suspend
+ffffffc0085ff9ac t pm_clk_op_lock
+ffffffc0085ffab8 T pm_clk_resume
+ffffffc0085ffc30 T pm_clk_runtime_suspend
+ffffffc0085ffcb4 T pm_clk_runtime_resume
+ffffffc0085ffd10 T pm_clk_add_notifier
+ffffffc0085ffd58 t pm_clk_notify
+ffffffc0085ffe1c T register_firmware_config_sysctl
+ffffffc0085ffe78 T unregister_firmware_config_sysctl
+ffffffc0085ffeb8 T fw_state_init
+ffffffc0085fff0c T alloc_lookup_fw_priv
+ffffffc008600118 T free_fw_priv
+ffffffc00860027c T fw_is_paged_buf
+ffffffc008600290 T fw_free_paged_buf
+ffffffc008600324 T fw_grow_paged_buf
+ffffffc008600444 T fw_map_paged_buf
+ffffffc0086004d0 T assign_fw
+ffffffc008600558 T request_firmware
+ffffffc008600590 t _request_firmware
+ffffffc008600aa0 T firmware_request_nowarn
+ffffffc008600adc T request_firmware_direct
+ffffffc008600b18 T firmware_request_platform
+ffffffc008600b54 T firmware_request_cache
+ffffffc008600ba0 T request_firmware_into_buf
+ffffffc008600bd4 T request_partial_firmware_into_buf
+ffffffc008600c04 T release_firmware
+ffffffc008600c64 T request_firmware_nowait
+ffffffc008600db0 t request_firmware_work_func
+ffffffc008600e70 t firmware_param_path_set
+ffffffc008600f68 t firmware_param_path_get
+ffffffc008601160 t fw_shutdown_notify
+ffffffc008601194 T fw_fallback_set_cache_timeout
+ffffffc0086011b8 T fw_fallback_set_default_timeout
+ffffffc0086011d8 T kill_pending_fw_fallback_reqs
+ffffffc008601268 T firmware_fallback_sysfs
+ffffffc008601590 T __fw_load_abort
+ffffffc008601608 T register_sysfs_loader
+ffffffc00860167c T unregister_sysfs_loader
+ffffffc0086016c8 t firmware_loading_show
+ffffffc00860174c t firmware_loading_store
+ffffffc008601930 T fw_create_instance
+ffffffc0086019f0 t firmware_uevent
+ffffffc008601ab8 t fw_dev_release
+ffffffc008601ae8 t timeout_show
+ffffffc008601b2c t timeout_store
+ffffffc008601b84 t firmware_data_read
+ffffffc008601cb8 t firmware_data_write
+ffffffc008601e84 T firmware_request_builtin
+ffffffc008601f24 T firmware_request_builtin_buf
+ffffffc008601fec T firmware_is_builtin
+ffffffc008602054 T mhp_online_type_from_str
+ffffffc0086020f8 T register_memory_notifier
+ffffffc008602130 T unregister_memory_notifier
+ffffffc008602168 W memory_block_size_bytes
+ffffffc00860217c T memory_notify
+ffffffc0086021b8 W arch_get_memory_phys_device
+ffffffc0086021cc T find_memory_block
+ffffffc008602228 T create_memory_block_devices
+ffffffc0086023d8 T remove_memory_block_devices
+ffffffc008602540 T walk_memory_blocks
+ffffffc008602640 T for_each_memory_block
+ffffffc0086026b4 t for_each_memory_block_cb
+ffffffc008602700 T memory_group_register_static
+ffffffc008602784 t memory_group_register
+ffffffc0086028d4 T memory_group_register_dynamic
+ffffffc0086029b8 T memory_group_unregister
+ffffffc008602a48 T memory_group_find_by_id
+ffffffc008602a80 T walk_dynamic_memory_groups
+ffffffc008602b5c t add_memory_block
+ffffffc008602e6c t memory_block_release
+ffffffc008602e9c t phys_index_show
+ffffffc008602eec t phys_device_show
+ffffffc008602f44 t valid_zones_show
+ffffffc0086030d8 t memory_subsys_online
+ffffffc008603144 t memory_subsys_offline
+ffffffc00860318c t memory_block_change_state
+ffffffc0086033b4 t block_size_bytes_show
+ffffffc008603404 t auto_online_blocks_show
+ffffffc008603464 t auto_online_blocks_store
+ffffffc00860351c T module_add_driver
+ffffffc008603614 T module_remove_driver
+ffffffc0086036b8 T __traceiter_regmap_reg_write
+ffffffc008603750 T __traceiter_regmap_reg_read
+ffffffc0086037e8 T __traceiter_regmap_reg_read_cache
+ffffffc008603880 T __traceiter_regmap_bulk_write
+ffffffc008603928 T __traceiter_regmap_bulk_read
+ffffffc0086039d0 T __traceiter_regmap_hw_read_start
+ffffffc008603a68 T __traceiter_regmap_hw_read_done
+ffffffc008603b00 T __traceiter_regmap_hw_write_start
+ffffffc008603b98 T __traceiter_regmap_hw_write_done
+ffffffc008603c30 T __traceiter_regcache_sync
+ffffffc008603cc8 T __traceiter_regmap_cache_only
+ffffffc008603d58 T __traceiter_regmap_cache_bypass
+ffffffc008603de8 T __traceiter_regmap_async_write_start
+ffffffc008603e80 T __traceiter_regmap_async_io_complete
+ffffffc008603f00 T __traceiter_regmap_async_complete_start
+ffffffc008603f80 T __traceiter_regmap_async_complete_done
+ffffffc008604000 T __traceiter_regcache_drop_region
+ffffffc008604098 t trace_event_raw_event_regmap_reg
+ffffffc0086041e0 t perf_trace_regmap_reg
+ffffffc008604394 t trace_event_raw_event_regmap_bulk
+ffffffc008604514 t perf_trace_regmap_bulk
+ffffffc0086046f8 t trace_event_raw_event_regmap_block
+ffffffc008604840 t perf_trace_regmap_block
+ffffffc0086049f4 t trace_event_raw_event_regcache_sync
+ffffffc008604bb8 t perf_trace_regcache_sync
+ffffffc008604df0 t trace_event_raw_event_regmap_bool
+ffffffc008604f30 t perf_trace_regmap_bool
+ffffffc0086050e0 t trace_event_raw_event_regmap_async
+ffffffc008605210 t perf_trace_regmap_async
+ffffffc0086053b0 t trace_event_raw_event_regcache_drop_region
+ffffffc0086054f8 t perf_trace_regcache_drop_region
+ffffffc0086056ac T regmap_reg_in_ranges
+ffffffc00860570c T regmap_check_range_table
+ffffffc0086057cc T regmap_writeable
+ffffffc0086058e8 T regmap_cached
+ffffffc0086059d8 T regmap_readable
+ffffffc008605b04 T regmap_volatile
+ffffffc008605d34 T regmap_precious
+ffffffc008605f50 T regmap_writeable_noinc
+ffffffc00860605c T regmap_readable_noinc
+ffffffc008606168 T regmap_attach_dev
+ffffffc008606228 t dev_get_regmap_release
+ffffffc008606238 T regmap_get_val_endian
+ffffffc0086062fc T __regmap_init
+ffffffc008607024 t regmap_lock_unlock_none
+ffffffc008607034 t regmap_lock_hwlock_irqsave
+ffffffc008607070 t regmap_unlock_hwlock_irqrestore
+ffffffc0086070a8 t regmap_lock_hwlock_irq
+ffffffc0086070e4 t regmap_unlock_hwlock_irq
+ffffffc00860711c t regmap_lock_hwlock
+ffffffc008607158 t regmap_unlock_hwlock
+ffffffc008607190 t regmap_lock_raw_spinlock
+ffffffc0086071cc t regmap_unlock_raw_spinlock
+ffffffc0086071fc t regmap_lock_spinlock
+ffffffc008607238 t regmap_unlock_spinlock
+ffffffc008607268 t regmap_lock_mutex
+ffffffc008607294 t regmap_unlock_mutex
+ffffffc0086072c0 t _regmap_bus_read
+ffffffc008607364 t _regmap_bus_reg_read
+ffffffc0086073c0 t _regmap_bus_reg_write
+ffffffc00860741c t regmap_format_2_6_write
+ffffffc008607438 t regmap_format_4_12_write
+ffffffc00860745c t regmap_format_7_9_write
+ffffffc008607480 t regmap_format_7_17_write
+ffffffc0086074ac t regmap_format_10_14_write
+ffffffc0086074d8 t regmap_format_12_20_write
+ffffffc00860750c t regmap_format_8
+ffffffc008607524 t regmap_format_16_be
+ffffffc008607544 t regmap_format_16_le
+ffffffc00860755c t regmap_format_16_native
+ffffffc008607574 t regmap_format_24_be
+ffffffc00860759c t regmap_format_32_be
+ffffffc0086075b8 t regmap_format_32_le
+ffffffc0086075d0 t regmap_format_32_native
+ffffffc0086075e8 t regmap_format_64_be
+ffffffc008607608 t regmap_format_64_le
+ffffffc008607624 t regmap_format_64_native
+ffffffc008607640 t regmap_parse_inplace_noop
+ffffffc008607650 t regmap_parse_8
+ffffffc008607664 t regmap_parse_16_be
+ffffffc008607680 t regmap_parse_16_be_inplace
+ffffffc0086076a0 t regmap_parse_16_le
+ffffffc0086076b4 t regmap_parse_16_le_inplace
+ffffffc0086076c4 t regmap_parse_16_native
+ffffffc0086076d8 t regmap_parse_24_be
+ffffffc008607700 t regmap_parse_32_be
+ffffffc008607718 t regmap_parse_32_be_inplace
+ffffffc008607734 t regmap_parse_32_le
+ffffffc008607748 t regmap_parse_32_le_inplace
+ffffffc008607758 t regmap_parse_32_native
+ffffffc00860776c t regmap_parse_64_be
+ffffffc008607784 t regmap_parse_64_be_inplace
+ffffffc0086077a0 t regmap_parse_64_le
+ffffffc0086077b4 t regmap_parse_64_le_inplace
+ffffffc0086077c4 t regmap_parse_64_native
+ffffffc0086077d8 t _regmap_bus_formatted_write
+ffffffc008607ac0 t _regmap_bus_raw_write
+ffffffc008607b64 T __devm_regmap_init
+ffffffc008607c24 t devm_regmap_release
+ffffffc008607c54 T devm_regmap_field_alloc
+ffffffc008607d10 T regmap_field_bulk_alloc
+ffffffc008607e94 T devm_regmap_field_bulk_alloc
+ffffffc008607fa4 T regmap_field_bulk_free
+ffffffc008607fd0 T devm_regmap_field_bulk_free
+ffffffc008607ffc T devm_regmap_field_free
+ffffffc008608028 T regmap_field_alloc
+ffffffc0086080ec T regmap_field_free
+ffffffc008608118 T regmap_reinit_cache
+ffffffc0086081e8 T regmap_exit
+ffffffc008608358 T dev_get_regmap
+ffffffc0086083a0 t dev_get_regmap_match
+ffffffc008608400 T regmap_get_device
+ffffffc008608414 T regmap_can_raw_write
+ffffffc00860844c T regmap_get_raw_read_max
+ffffffc008608460 T regmap_get_raw_write_max
+ffffffc008608474 T _regmap_write
+ffffffc008608714 T regmap_write
+ffffffc0086087cc T regmap_write_async
+ffffffc008608890 T _regmap_raw_write
+ffffffc0086089c8 t _regmap_raw_write_impl
+ffffffc008609610 T regmap_raw_write
+ffffffc0086097c4 T regmap_noinc_write
+ffffffc008609bc4 T regmap_field_update_bits_base
+ffffffc008609c1c T regmap_update_bits_base
+ffffffc008609dc4 T regmap_field_test_bits
+ffffffc008609ecc T regmap_field_read
+ffffffc008609fd0 T regmap_fields_update_bits_base
+ffffffc00860a038 T regmap_bulk_write
+ffffffc00860a320 T regmap_multi_reg_write
+ffffffc00860a3bc t _regmap_multi_reg_write
+ffffffc00860a808 T regmap_multi_reg_write_bypassed
+ffffffc00860a8b8 T regmap_raw_write_async
+ffffffc00860aa70 T regmap_read
+ffffffc00860ab24 t _regmap_read
+ffffffc00860adec T regmap_raw_read
+ffffffc00860b08c t _regmap_raw_read
+ffffffc00860b460 T regmap_noinc_read
+ffffffc00860b6d4 T regmap_fields_read
+ffffffc00860b7ec T regmap_bulk_read
+ffffffc00860bb30 T regmap_test_bits
+ffffffc00860bc28 T regmap_async_complete_cb
+ffffffc00860bdbc T regmap_async_complete
+ffffffc00860c09c T regmap_register_patch
+ffffffc00860c208 T regmap_get_val_bytes
+ffffffc00860c230 T regmap_get_max_register
+ffffffc00860c250 T regmap_get_reg_stride
+ffffffc00860c264 T regmap_parse_val
+ffffffc00860c2d4 t trace_raw_output_regmap_reg
+ffffffc00860c350 t trace_raw_output_regmap_bulk
+ffffffc00860c3f8 t trace_raw_output_regmap_block
+ffffffc00860c474 t trace_raw_output_regcache_sync
+ffffffc00860c4fc t trace_raw_output_regmap_bool
+ffffffc00860c578 t trace_raw_output_regmap_async
+ffffffc00860c5f0 t trace_raw_output_regcache_drop_region
+ffffffc00860c668 t _regmap_select_page
+ffffffc00860c80c t _regmap_raw_multi_reg_write
+ffffffc00860cb88 T regcache_init
+ffffffc00860d068 T regcache_exit
+ffffffc00860d0f4 T regcache_read
+ffffffc00860d22c T regcache_write
+ffffffc00860d2c8 T regcache_sync
+ffffffc00860d570 t regcache_default_sync
+ffffffc00860d6e4 T regcache_sync_region
+ffffffc00860d930 T regcache_drop_region
+ffffffc00860da9c T regcache_cache_only
+ffffffc00860dbcc T regcache_mark_dirty
+ffffffc00860dc4c T regcache_cache_bypass
+ffffffc00860dd74 T regcache_set_val
+ffffffc00860df08 T regcache_get_val
+ffffffc00860dfc8 T regcache_lookup_reg
+ffffffc00860e064 t regcache_default_cmp
+ffffffc00860e080 T regcache_sync_block
+ffffffc00860e4ec t regcache_rbtree_init
+ffffffc00860e59c t regcache_rbtree_exit
+ffffffc00860e638 t rbtree_debugfs_init
+ffffffc00860e688 t regcache_rbtree_read
+ffffffc00860e78c t regcache_rbtree_write
+ffffffc00860eca4 t regcache_rbtree_sync
+ffffffc00860ed80 t regcache_rbtree_drop
+ffffffc00860ee54 t rbtree_open
+ffffffc00860ee94 t rbtree_show
+ffffffc00860eff8 t regcache_flat_init
+ffffffc00860f0a4 t regcache_flat_exit
+ffffffc00860f0e8 t regcache_flat_read
+ffffffc00860f114 t regcache_flat_write
+ffffffc00860f140 T regmap_debugfs_init
+ffffffc00860f478 T regmap_debugfs_exit
+ffffffc00860f5d0 T regmap_debugfs_initcall
+ffffffc00860f6a8 t regmap_name_read_file
+ffffffc00860f790 t regmap_reg_ranges_read_file
+ffffffc00860fadc t regmap_debugfs_get_dump_start
+ffffffc00860fe00 t regmap_map_read_file
+ffffffc00860fe40 t regmap_read_debugfs
+ffffffc008610268 t regmap_access_open
+ffffffc0086102a8 t regmap_access_show
+ffffffc0086103e0 t regmap_cache_only_write_file
+ffffffc0086105a0 t regmap_cache_bypass_write_file
+ffffffc0086106f4 t regmap_range_read_file
+ffffffc008610738 T __regmap_init_mmio_clk
+ffffffc0086107b0 t regmap_mmio_gen_context
+ffffffc008610adc T __devm_regmap_init_mmio_clk
+ffffffc008610b58 T regmap_mmio_attach_clk
+ffffffc008610b98 T regmap_mmio_detach_clk
+ffffffc008610bdc t regmap_mmio_ioread8
+ffffffc008610c14 t regmap_mmio_iowrite8
+ffffffc008610c4c t regmap_mmio_read8_relaxed
+ffffffc008610c84 t regmap_mmio_write8_relaxed
+ffffffc008610cbc t regmap_mmio_read8
+ffffffc008610cf4 t regmap_mmio_write8
+ffffffc008610d2c t regmap_mmio_ioread16le
+ffffffc008610d64 t regmap_mmio_iowrite16le
+ffffffc008610d9c t regmap_mmio_read16le_relaxed
+ffffffc008610dd4 t regmap_mmio_write16le_relaxed
+ffffffc008610e0c t regmap_mmio_read16le
+ffffffc008610e44 t regmap_mmio_write16le
+ffffffc008610e7c t regmap_mmio_ioread32le
+ffffffc008610eb0 t regmap_mmio_iowrite32le
+ffffffc008610ee8 t regmap_mmio_read32le_relaxed
+ffffffc008610f1c t regmap_mmio_write32le_relaxed
+ffffffc008610f54 t regmap_mmio_read32le
+ffffffc008610f88 t regmap_mmio_write32le
+ffffffc008610fc0 t regmap_mmio_ioread16be
+ffffffc008610ff4 t regmap_mmio_iowrite16be
+ffffffc00861101c t regmap_mmio_read16be
+ffffffc008611058 t regmap_mmio_write16be
+ffffffc008611098 t regmap_mmio_ioread32be
+ffffffc0086110c8 t regmap_mmio_iowrite32be
+ffffffc0086110ec t regmap_mmio_read32be
+ffffffc008611124 t regmap_mmio_write32be
+ffffffc00861115c t readb_relaxed
+ffffffc0086111f0 t readw_relaxed
+ffffffc008611284 t writew_relaxed
+ffffffc008611320 t regmap_mmio_write
+ffffffc0086113b8 t regmap_mmio_noinc_write
+ffffffc0086115cc t regmap_mmio_read
+ffffffc008611664 t regmap_mmio_noinc_read
+ffffffc0086119b0 t regmap_mmio_free_context
+ffffffc008611a08 t writeq
+ffffffc008611a9c t writeq
+ffffffc008611b34 T soc_device_to_device
+ffffffc008611b44 T soc_device_register
+ffffffc008611c9c t soc_release
+ffffffc008611cf0 T soc_device_unregister
+ffffffc008611d24 T soc_device_match
+ffffffc008611de4 t soc_device_match_one
+ffffffc008611e10 t soc_device_match_attr
+ffffffc008611eb8 t soc_attribute_mode
+ffffffc008611f90 t soc_info_show
+ffffffc008612060 T platform_msi_create_irq_domain
+ffffffc0086121cc T platform_msi_domain_alloc_irqs
+ffffffc008612254 t platform_msi_alloc_priv_data
+ffffffc008612360 T platform_msi_domain_free_irqs
+ffffffc0086123c4 T platform_msi_get_host_data
+ffffffc0086123dc T __platform_msi_create_device_domain
+ffffffc0086124c8 T platform_msi_device_domain_free
+ffffffc008612550 T platform_msi_device_domain_alloc
+ffffffc008612590 t platform_msi_init
+ffffffc0086125cc t platform_msi_set_desc
+ffffffc008612600 t platform_msi_write_msg
+ffffffc00861265c T __traceiter_thermal_pressure_update
+ffffffc0086126ec t trace_event_raw_event_thermal_pressure_update
+ffffffc0086127ac t perf_trace_thermal_pressure_update
+ffffffc0086128c8 T topology_scale_freq_invariant
+ffffffc008612910 T topology_set_scale_freq_source
+ffffffc008612a90 T topology_clear_scale_freq_source
+ffffffc008612bd0 T topology_scale_freq_tick
+ffffffc008612c38 T topology_set_freq_scale
+ffffffc008612d00 T topology_set_cpu_scale
+ffffffc008612d38 T topology_update_thermal_pressure
+ffffffc008612f14 T topology_update_cpu_topology
+ffffffc008612f28 T topology_normalize_cpu_scale
+ffffffc008613054 T cpu_coregroup_mask
+ffffffc008613114 T cpu_clustergroup_mask
+ffffffc0086131f8 T update_siblings_masks
+ffffffc00861354c t clear_cpu_topology
+ffffffc0086136e4 T remove_cpu_topology
+ffffffc008613918 T store_cpu_topology
+ffffffc0086139b4 t trace_raw_output_thermal_pressure_update
+ffffffc008613a2c t cpu_capacity_show
+ffffffc008613a94 T __traceiter_devres_log
+ffffffc008613b44 t trace_event_raw_event_devres
+ffffffc008613c80 t perf_trace_devres
+ffffffc008613e28 t trace_raw_output_devres
+ffffffc008613ea4 t brd_cleanup
+ffffffc00861405c t brd_alloc
+ffffffc008614290 t brd_probe
+ffffffc0086142cc t brd_submit_bio
+ffffffc008614430 t brd_rw_page
+ffffffc0086144b4 t brd_do_bvec
+ffffffc008614990 t brd_insert_page
+ffffffc008614b10 t loop_set_hw_queue_depth
+ffffffc008614b68 t loop_control_ioctl
+ffffffc008614de4 t loop_add
+ffffffc0086150e8 t loop_free_idle_workers_timer
+ffffffc00861511c t loop_rootcg_workfn
+ffffffc008615150 t loop_free_idle_workers
+ffffffc008615278 t loop_queue_rq
+ffffffc008615488 t lo_complete_rq
+ffffffc00861554c t loop_workfn
+ffffffc008615584 t loop_process_work
+ffffffc008615dec t lo_rw_aio
+ffffffc00861615c t lo_rw_aio_complete
+ffffffc0086161f0 t lo_release
+ffffffc008616280 t lo_ioctl
+ffffffc0086171ec t lo_free_disk
+ffffffc008617244 t __loop_clr_fd
+ffffffc008617448 t loop_attr_do_show_backing_file
+ffffffc0086174fc t loop_attr_do_show_offset
+ffffffc008617548 t loop_attr_do_show_sizelimit
+ffffffc008617594 t loop_attr_do_show_autoclear
+ffffffc0086175f8 t loop_attr_do_show_partscan
+ffffffc00861765c t loop_attr_do_show_dio
+ffffffc0086176c0 t loop_configure
+ffffffc008617bc4 t loop_set_status_from_info
+ffffffc008617c98 t loop_config_discard
+ffffffc008617d90 t loop_update_rotational
+ffffffc008617df0 t loop_set_size
+ffffffc008617e44 t loop_reread_partitions
+ffffffc008617ec4 t __loop_update_dio
+ffffffc008617fe8 t loop_set_status
+ffffffc008618274 t loop_get_status
+ffffffc008618448 t loop_probe
+ffffffc008618498 t virtblk_probe
+ffffffc008618f04 t virtblk_remove
+ffffffc008618fa8 t virtblk_config_changed
+ffffffc008618fe8 t virtblk_freeze
+ffffffc00861906c t virtblk_restore
+ffffffc00861912c t virtblk_config_changed_work
+ffffffc00861915c t init_vq
+ffffffc0086194b8 t virtblk_update_capacity
+ffffffc008619704 t virtblk_done
+ffffffc008619820 t virtio_queue_rq
+ffffffc0086199c0 t virtio_commit_rqs
+ffffffc008619a38 t virtio_queue_rqs
+ffffffc008619c14 t virtblk_poll
+ffffffc008619da8 t virtblk_request_done
+ffffffc008619e50 t virtblk_map_queues
+ffffffc008619f0c t virtblk_prep_rq
+ffffffc00861a1b4 t virtblk_add_req
+ffffffc00861a2c0 t virtblk_fail_to_queue
+ffffffc00861a320 t virtblk_complete_batch
+ffffffc00861a3d8 t virtblk_getgeo
+ffffffc00861a56c t virtblk_free_disk
+ffffffc00861a5b8 t virtblk_attrs_are_visible
+ffffffc00861a628 t cache_type_show
+ffffffc00861a728 t cache_type_store
+ffffffc00861a898 t serial_show
+ffffffc00861a988 T zcomp_available_algorithm
+ffffffc00861a9c4 T zcomp_available_show
+ffffffc00861ab74 T zcomp_stream_get
+ffffffc00861abac T zcomp_stream_put
+ffffffc00861ac0c T zcomp_compress
+ffffffc00861ac50 T zcomp_decompress
+ffffffc00861acb8 T zcomp_cpu_up_prepare
+ffffffc00861ad6c T zcomp_cpu_dead
+ffffffc00861ade8 T zcomp_destroy
+ffffffc00861ae3c T zcomp_create
+ffffffc00861af14 t destroy_devices
+ffffffc00861af9c t zram_remove_cb
+ffffffc00861afdc t hot_add_show
+ffffffc00861b058 t zram_add
+ffffffc00861b2a0 t zram_submit_bio
+ffffffc00861b5e4 t zram_open
+ffffffc00861b648 t zram_rw_page
+ffffffc00861b7c8 t zram_slot_free_notify
+ffffffc00861b960 t zram_bvec_rw
+ffffffc00861c4fc t zram_slot_lock
+ffffffc00861c5ec t zram_free_page
+ffffffc00861c7c0 t disksize_show
+ffffffc00861c810 t disksize_store
+ffffffc00861c954 t zram_meta_free
+ffffffc00861c9c8 t initstate_show
+ffffffc00861ca44 t zram_reset_device
+ffffffc00861cba0 t compact_store
+ffffffc00861cc14 t mem_limit_store
+ffffffc00861ccd4 t mem_used_max_store
+ffffffc00861cd9c t idle_store
+ffffffc00861cefc t max_comp_streams_show
+ffffffc00861cf4c t max_comp_streams_store
+ffffffc00861cf60 t comp_algorithm_show
+ffffffc00861cfcc t comp_algorithm_store
+ffffffc00861d104 t io_stat_show
+ffffffc00861d1a8 t mm_stat_show
+ffffffc00861d2e0 t debug_stat_show
+ffffffc00861d370 t hot_remove_store
+ffffffc00861d460 t zram_remove
+ffffffc00861d558 t open_dice_remove
+ffffffc00861d590 t open_dice_read
+ffffffc00861d610 t open_dice_write
+ffffffc00861d6bc t open_dice_mmap
+ffffffc00861d810 t vcpu_stall_detect_probe
+ffffffc00861d9f0 t vcpu_stall_detect_remove
+ffffffc00861daec t start_stall_detector_cpu
+ffffffc00861dbe0 t stop_stall_detector_cpu
+ffffffc00861dc68 t vcpu_stall_detect_timer_fn
+ffffffc00861dd2c T device_node_to_regmap
+ffffffc00861dd58 t device_node_get_regmap
+ffffffc00861e0fc T syscon_node_to_regmap
+ffffffc00861e18c T syscon_regmap_lookup_by_compatible
+ffffffc00861e238 T syscon_regmap_lookup_by_phandle
+ffffffc00861e338 T syscon_regmap_lookup_by_phandle_args
+ffffffc00861e468 T syscon_regmap_lookup_by_phandle_optional
+ffffffc00861e574 t syscon_probe
+ffffffc00861e6c4 T dma_buf_get_each
+ffffffc00861e77c T is_dma_buf_file
+ffffffc00861e7a0 T dma_buf_export
+ffffffc00861eaac T dma_buf_fd
+ffffffc00861eb14 T dma_buf_get
+ffffffc00861eb70 T dma_buf_put
+ffffffc00861ebb0 T dma_buf_dynamic_attach
+ffffffc00861ee90 T dma_buf_detach
+ffffffc00861efec T dma_buf_attach
+ffffffc00861f020 T dma_buf_pin
+ffffffc00861f08c T dma_buf_unpin
+ffffffc00861f0f0 T dma_buf_map_attachment
+ffffffc00861f2a4 T dma_buf_unmap_attachment
+ffffffc00861f378 T dma_buf_move_notify
+ffffffc00861f3f0 T dma_buf_begin_cpu_access
+ffffffc00861f490 T dma_buf_begin_cpu_access_partial
+ffffffc00861f530 T dma_buf_end_cpu_access
+ffffffc00861f594 T dma_buf_end_cpu_access_partial
+ffffffc00861f5f8 T dma_buf_mmap
+ffffffc00861f6cc T dma_buf_vmap
+ffffffc00861f81c T dma_buf_vunmap
+ffffffc00861f904 T dma_buf_get_flags
+ffffffc00861f978 t dma_buf_llseek
+ffffffc00861f9d4 t dma_buf_poll
+ffffffc00861fc2c t dma_buf_ioctl
+ffffffc00861ff38 t dma_buf_mmap_internal
+ffffffc00861ffc4 t dma_buf_file_release
+ffffffc008620060 t dma_buf_show_fdinfo
+ffffffc008620110 t dma_buf_poll_add_cb
+ffffffc0086202a4 t dma_buf_poll_cb
+ffffffc00862037c t dma_buf_fs_init_context
+ffffffc0086203d0 t dma_buf_release
+ffffffc00862049c t dmabuffs_dname
+ffffffc008620578 t dma_buf_debug_open
+ffffffc0086205b8 t dma_buf_debug_show
+ffffffc0086207e0 T __traceiter_dma_fence_emit
+ffffffc008620860 T __traceiter_dma_fence_init
+ffffffc0086208e0 T __traceiter_dma_fence_destroy
+ffffffc008620960 T __traceiter_dma_fence_enable_signal
+ffffffc0086209e0 T __traceiter_dma_fence_signaled
+ffffffc008620a60 T __traceiter_dma_fence_wait_start
+ffffffc008620ae0 T __traceiter_dma_fence_wait_end
+ffffffc008620b60 t trace_event_raw_event_dma_fence
+ffffffc008620e08 t perf_trace_dma_fence
+ffffffc008621114 T dma_fence_get_stub
+ffffffc00862123c T dma_fence_init
+ffffffc008621380 T dma_fence_signal_locked
+ffffffc0086213c4 T dma_fence_allocate_private_stub
+ffffffc008621490 T dma_fence_signal
+ffffffc008621508 T dma_fence_context_alloc
+ffffffc008621568 T dma_fence_signal_timestamp_locked
+ffffffc008621770 T dma_fence_signal_timestamp
+ffffffc0086217e8 T dma_fence_wait_timeout
+ffffffc008621a3c T dma_fence_enable_sw_signaling
+ffffffc008621a90 T dma_fence_default_wait
+ffffffc008621c80 T dma_fence_release
+ffffffc008621e8c T dma_fence_free
+ffffffc008621ec0 t __dma_fence_enable_signaling
+ffffffc008622060 T dma_fence_add_callback
+ffffffc008622140 T dma_fence_get_status
+ffffffc0086221f4 T dma_fence_remove_callback
+ffffffc008622288 t dma_fence_default_wait_cb
+ffffffc0086222c0 T dma_fence_wait_any_timeout
+ffffffc00862267c T dma_fence_describe
+ffffffc0086227b0 t trace_raw_output_dma_fence
+ffffffc008622834 t dma_fence_stub_get_name
+ffffffc00862284c t dma_fence_array_get_driver_name.llvm.9828176035850356835
+ffffffc008622864 t dma_fence_array_get_timeline_name.llvm.9828176035850356835
+ffffffc00862287c t dma_fence_array_enable_signaling.llvm.9828176035850356835
+ffffffc008622ad0 t dma_fence_array_signaled.llvm.9828176035850356835
+ffffffc008622b60 t dma_fence_array_release.llvm.9828176035850356835
+ffffffc008622c64 T dma_fence_array_create
+ffffffc008622d9c t irq_dma_fence_array_work
+ffffffc008622e80 T dma_fence_match_context
+ffffffc008622f14 T dma_fence_array_first
+ffffffc008622f60 T dma_fence_array_next
+ffffffc008622fa8 t dma_fence_array_cb_func
+ffffffc0086230c4 T dma_fence_chain_walk
+ffffffc0086233f0 t dma_fence_chain_get_prev
+ffffffc00862356c T dma_fence_chain_find_seqno
+ffffffc0086236dc t dma_fence_chain_get_driver_name.llvm.9375744557021962809
+ffffffc0086236f4 t dma_fence_chain_get_timeline_name.llvm.9375744557021962809
+ffffffc00862370c t dma_fence_chain_enable_signaling.llvm.9375744557021962809
+ffffffc008623a00 t dma_fence_chain_signaled.llvm.9375744557021962809
+ffffffc008623b78 t dma_fence_chain_release.llvm.9375744557021962809
+ffffffc008623d50 T dma_fence_chain_init
+ffffffc008623e64 t dma_fence_chain_cb
+ffffffc008623f10 t dma_fence_chain_irq_work
+ffffffc008623fbc T dma_fence_unwrap_first
+ffffffc00862407c T dma_fence_unwrap_next
+ffffffc0086240fc T __dma_fence_unwrap_merge
+ffffffc00862473c T dma_resv_init
+ffffffc008624788 T dma_resv_fini
+ffffffc0086247b4 t dma_resv_list_free.llvm.16079436468841558735
+ffffffc00862489c T dma_resv_reserve_fences
+ffffffc008624b14 T dma_resv_add_fence
+ffffffc008624d54 T dma_resv_replace_fences
+ffffffc008624ed8 T dma_resv_iter_first_unlocked
+ffffffc008624f70 t dma_resv_iter_walk_unlocked
+ffffffc00862518c T dma_resv_iter_next_unlocked
+ffffffc008625240 T dma_resv_iter_first
+ffffffc0086252cc T dma_resv_iter_next
+ffffffc008625340 T dma_resv_copy_fences
+ffffffc00862561c T dma_resv_get_fences
+ffffffc008625920 T dma_resv_get_singleton
+ffffffc008625a94 T dma_resv_wait_timeout
+ffffffc008625c94 T dma_resv_test_signaled
+ffffffc008625dd0 T dma_resv_describe
+ffffffc008625f14 T dma_heap_find
+ffffffc008625fec T dma_heap_buffer_free
+ffffffc008626018 T dma_heap_buffer_alloc
+ffffffc008626090 T dma_heap_bufferfd_alloc
+ffffffc008626144 T dma_heap_get_drvdata
+ffffffc008626158 T dma_heap_put
+ffffffc008626260 T dma_heap_get_dev
+ffffffc008626274 T dma_heap_get_name
+ffffffc008626288 T dma_heap_add
+ffffffc00862652c t dma_heap_ioctl
+ffffffc0086269cc t dma_heap_open
+ffffffc008626a50 t dma_heap_devnode
+ffffffc008626a94 t total_pools_kb_show
+ffffffc008626b60 T dma_buf_stats_teardown
+ffffffc008626ba8 T dma_buf_init_sysfs_statistics
+ffffffc008626c38 T dma_buf_uninit_sysfs_statistics
+ffffffc008626c78 T dma_buf_stats_setup
+ffffffc008626d44 t dmabuf_sysfs_uevent_filter
+ffffffc008626d58 t dma_buf_sysfs_release
+ffffffc008626d84 t dma_buf_stats_attribute_show
+ffffffc008626de0 t exporter_name_show
+ffffffc008626e24 T dev_lstats_read
+ffffffc008626ef8 t loopback_setup
+ffffffc008626fc0 t loopback_dev_free
+ffffffc008626ff8 t always_on
+ffffffc00862700c t loopback_dev_init
+ffffffc0086270b0 t loopback_xmit
+ffffffc0086272b0 t loopback_get_stats64
+ffffffc008627380 t blackhole_netdev_setup
+ffffffc008627430 t blackhole_netdev_xmit
+ffffffc008627494 T uio_event_notify
+ffffffc008627518 T __uio_register_device
+ffffffc00862777c t uio_device_release
+ffffffc0086277a8 t uio_dev_add_attributes
+ffffffc008627ed0 t uio_interrupt
+ffffffc008627f8c t uio_dev_del_attributes
+ffffffc008628098 T __devm_uio_register_device
+ffffffc008628144 t devm_uio_unregister_device
+ffffffc008628174 T uio_unregister_device
+ffffffc00862824c t version_show
+ffffffc0086282e0 t map_release
+ffffffc00862830c t map_type_show
+ffffffc008628368 t map_name_show
+ffffffc0086283c0 t map_addr_show
+ffffffc008628404 t map_size_show
+ffffffc008628448 t map_offset_show
+ffffffc00862848c t portio_release
+ffffffc0086284b8 t portio_type_show
+ffffffc008628514 t portio_name_show
+ffffffc00862856c t portio_start_show
+ffffffc0086285b0 t portio_size_show
+ffffffc0086285f4 t portio_porttype_show
+ffffffc008628654 t uio_read
+ffffffc008628918 t uio_write
+ffffffc008628b58 t uio_poll
+ffffffc008628c30 t uio_mmap
+ffffffc008628d78 t uio_open
+ffffffc008628eec t uio_release
+ffffffc008628f98 t uio_fasync
+ffffffc008628fcc t uio_mmap_physical
+ffffffc008629090 t uio_mmap_logical
+ffffffc008629110 t uio_vma_fault
+ffffffc00862923c T serio_rescan
+ffffffc00862926c t serio_queue_event
+ffffffc0086293d0 T serio_reconnect
+ffffffc008629404 T __serio_register_port
+ffffffc008629534 T serio_unregister_port
+ffffffc00862962c t serio_destroy_port
+ffffffc0086298ac T serio_unregister_child_port
+ffffffc0086299d8 T __serio_register_driver
+ffffffc008629a90 T serio_unregister_driver
+ffffffc008629c9c T serio_open
+ffffffc008629d40 T serio_close
+ffffffc008629db4 T serio_interrupt
+ffffffc008629e84 t serio_bus_match
+ffffffc008629f30 t serio_uevent
+ffffffc00862a01c t serio_driver_probe
+ffffffc00862a0a4 t serio_driver_remove
+ffffffc00862a118 t serio_shutdown
+ffffffc00862a190 t serio_release_port
+ffffffc00862a1c0 t proto_show
+ffffffc00862a204 t extra_show
+ffffffc00862a248 t serio_show_description
+ffffffc00862a28c t drvctl_store
+ffffffc00862a824 t serio_reconnect_port
+ffffffc00862a9a0 t serio_disconnect_driver
+ffffffc00862aa14 t serio_show_bind_mode
+ffffffc00862aa70 t serio_set_bind_mode
+ffffffc00862ab00 t firmware_id_show
+ffffffc00862ab44 t description_show
+ffffffc00862ab98 t bind_mode_show
+ffffffc00862abf4 t bind_mode_store
+ffffffc00862ac80 t serio_suspend
+ffffffc00862acfc t serio_resume
+ffffffc00862adc8 t serio_handle_event
+ffffffc00862b1f4 t serport_ldisc_open
+ffffffc00862b2c0 t serport_ldisc_close
+ffffffc00862b2f0 t serport_ldisc_read
+ffffffc00862b528 t serport_ldisc_ioctl
+ffffffc00862b6ac t serport_ldisc_hangup
+ffffffc00862b73c t serport_ldisc_receive
+ffffffc00862b818 t serport_ldisc_write_wakeup
+ffffffc00862b8a8 t serport_serio_write
+ffffffc00862b93c t serport_serio_open
+ffffffc00862b9bc t serport_serio_close
+ffffffc00862ba3c T input_handle_event
+ffffffc00862bf74 T input_event
+ffffffc00862c008 T input_inject_event
+ffffffc00862c0c8 T input_alloc_absinfo
+ffffffc00862c148 T input_set_abs_params
+ffffffc00862c230 T input_copy_abs
+ffffffc00862c2e0 T input_set_capability
+ffffffc00862c4a4 T input_grab_device
+ffffffc00862c520 T input_release_device
+ffffffc00862c5dc T input_open_device
+ffffffc00862c6d4 T input_flush_device
+ffffffc00862c76c T input_close_device
+ffffffc00862c898 T input_scancode_to_scalar
+ffffffc00862c8ec T input_get_keycode
+ffffffc00862c978 T input_set_keycode
+ffffffc00862cb74 T input_match_device_id
+ffffffc00862ccd0 T input_reset_device
+ffffffc00862cd94 t input_dev_toggle
+ffffffc00862cf84 t input_dev_release_keys
+ffffffc00862d0d4 t input_devnode
+ffffffc00862d118 T input_allocate_device
+ffffffc00862d22c T devm_input_allocate_device
+ffffffc00862d2d0 t devm_input_device_release
+ffffffc00862d30c T input_free_device
+ffffffc00862d388 t devm_input_device_match
+ffffffc00862d3a4 T input_set_timestamp
+ffffffc00862d400 T input_get_timestamp
+ffffffc00862d468 T input_enable_softrepeat
+ffffffc00862d48c t input_repeat_key
+ffffffc00862d670 T input_device_enabled
+ffffffc00862d6a0 T input_register_device
+ffffffc00862db88 t devm_input_device_unregister
+ffffffc00862dbb8 t input_default_getkeycode
+ffffffc00862dc6c t input_default_setkeycode
+ffffffc00862de20 T input_unregister_device
+ffffffc00862dea4 t __input_unregister_device
+ffffffc00862e050 T input_register_handler
+ffffffc00862e1fc T input_unregister_handler
+ffffffc00862e2f4 T input_handler_for_each_handle
+ffffffc00862e3a4 T input_register_handle
+ffffffc00862e4c8 T input_unregister_handle
+ffffffc00862e560 T input_get_new_minor
+ffffffc00862e5d8 T input_free_minor
+ffffffc00862e60c t input_proc_exit
+ffffffc00862e66c t input_pass_values
+ffffffc00862ea18 t input_dev_uevent
+ffffffc00862ec58 t input_dev_release
+ffffffc00862ecc4 t input_dev_show_name
+ffffffc00862ed20 t input_dev_show_phys
+ffffffc00862ed7c t input_dev_show_uniq
+ffffffc00862edd8 t input_dev_show_modalias
+ffffffc00862ee2c t input_print_modalias
+ffffffc00862f560 t input_dev_show_properties
+ffffffc00862f5a4 t input_print_bitmap
+ffffffc00862f738 t inhibited_show
+ffffffc00862f780 t inhibited_store
+ffffffc00862f984 t input_dev_show_id_bustype
+ffffffc00862f9d0 t input_dev_show_id_vendor
+ffffffc00862fa1c t input_dev_show_id_product
+ffffffc00862fa68 t input_dev_show_id_version
+ffffffc00862fab4 t input_dev_show_cap_ev
+ffffffc00862fafc t input_dev_show_cap_key
+ffffffc00862fb44 t input_dev_show_cap_rel
+ffffffc00862fb8c t input_dev_show_cap_abs
+ffffffc00862fbd4 t input_dev_show_cap_msc
+ffffffc00862fc1c t input_dev_show_cap_led
+ffffffc00862fc64 t input_dev_show_cap_snd
+ffffffc00862fcac t input_dev_show_cap_ff
+ffffffc00862fcf4 t input_dev_show_cap_sw
+ffffffc00862fd38 t input_add_uevent_bm_var
+ffffffc00862feec t input_add_uevent_modalias_var
+ffffffc00862ff90 t input_dev_suspend
+ffffffc008630044 t input_dev_resume
+ffffffc00863009c t input_dev_freeze
+ffffffc008630144 t input_dev_poweroff
+ffffffc00863019c t input_proc_devices_open
+ffffffc0086301d4 t input_proc_devices_poll
+ffffffc008630264 t input_devices_seq_start
+ffffffc0086302d0 t input_seq_stop
+ffffffc00863030c t input_devices_seq_next
+ffffffc008630344 t input_devices_seq_show
+ffffffc008630620 t input_seq_print_bitmap
+ffffffc008630790 t input_proc_handlers_open
+ffffffc0086307c8 t input_handlers_seq_start
+ffffffc00863083c t input_handlers_seq_next
+ffffffc008630884 t input_handlers_seq_show
+ffffffc008630914 T input_event_from_user
+ffffffc008630aac T input_event_to_user
+ffffffc008630c20 T input_ff_effect_from_user
+ffffffc008630dc8 T input_mt_init_slots
+ffffffc00863106c T input_mt_destroy_slots
+ffffffc0086310bc T input_mt_report_slot_state
+ffffffc00863116c T input_mt_report_finger_count
+ffffffc008631218 T input_mt_report_pointer_emulation
+ffffffc0086313d0 T input_mt_drop_unused
+ffffffc0086314b4 T input_mt_release_slots
+ffffffc00863159c T input_mt_sync_frame
+ffffffc0086316a4 T input_mt_assign_slots
+ffffffc008631b44 T input_mt_get_slot_by_key
+ffffffc008631be8 T input_dev_poller_finalize
+ffffffc008631c24 T input_dev_poller_start
+ffffffc008631cb8 T input_dev_poller_stop
+ffffffc008631cec T input_setup_polling
+ffffffc008631dc0 t input_dev_poller_work
+ffffffc008631e4c T input_set_poll_interval
+ffffffc008631ea0 T input_set_min_poll_interval
+ffffffc008631ef4 T input_set_max_poll_interval
+ffffffc008631f48 T input_get_poll_interval
+ffffffc008631f70 t input_poller_attrs_visible
+ffffffc008631f9c t input_dev_get_poll_interval
+ffffffc008631fe8 t input_dev_set_poll_interval
+ffffffc00863211c t input_dev_get_poll_max
+ffffffc008632168 t input_dev_get_poll_min
+ffffffc0086321b4 T input_ff_upload
+ffffffc008632424 T input_ff_erase
+ffffffc0086324a4 t erase_effect
+ffffffc0086325c4 T input_ff_flush
+ffffffc008632658 T input_ff_event
+ffffffc008632734 T input_ff_create
+ffffffc0086328e0 T input_ff_destroy
+ffffffc00863296c T touchscreen_parse_properties
+ffffffc008632e20 T touchscreen_set_mt_pos
+ffffffc008632e68 T touchscreen_report_pos
+ffffffc008632f0c T rtc_month_days
+ffffffc008632f90 T rtc_year_days
+ffffffc008633018 T rtc_time64_to_tm
+ffffffc008633188 T rtc_valid_tm
+ffffffc008633270 T rtc_tm_to_time64
+ffffffc0086332b4 T rtc_tm_to_ktime
+ffffffc00863331c T rtc_ktime_to_tm
+ffffffc0086334bc T devm_rtc_allocate_device
+ffffffc008633750 t devm_rtc_release_device
+ffffffc008633780 T __devm_rtc_register_device
+ffffffc008633acc t devm_rtc_unregister_device
+ffffffc008633b34 T devm_rtc_device_register
+ffffffc008633ba0 t rtc_device_release
+ffffffc008633c30 t rtc_suspend
+ffffffc008633d88 t rtc_resume
+ffffffc008633ed8 T __traceiter_rtc_set_time
+ffffffc008633f68 T __traceiter_rtc_read_time
+ffffffc008633ff8 T __traceiter_rtc_set_alarm
+ffffffc008634088 T __traceiter_rtc_read_alarm
+ffffffc008634118 T __traceiter_rtc_irq_set_freq
+ffffffc0086341a8 T __traceiter_rtc_irq_set_state
+ffffffc008634238 T __traceiter_rtc_alarm_irq_enable
+ffffffc0086342c8 T __traceiter_rtc_set_offset
+ffffffc008634358 T __traceiter_rtc_read_offset
+ffffffc0086343e8 T __traceiter_rtc_timer_enqueue
+ffffffc008634468 T __traceiter_rtc_timer_dequeue
+ffffffc0086344e8 T __traceiter_rtc_timer_fired
+ffffffc008634568 t trace_event_raw_event_rtc_time_alarm_class
+ffffffc008634628 t perf_trace_rtc_time_alarm_class
+ffffffc008634744 t trace_event_raw_event_rtc_irq_set_freq
+ffffffc008634800 t perf_trace_rtc_irq_set_freq
+ffffffc008634918 t trace_event_raw_event_rtc_irq_set_state
+ffffffc0086349d4 t perf_trace_rtc_irq_set_state
+ffffffc008634aec t trace_event_raw_event_rtc_alarm_irq_enable
+ffffffc008634ba8 t perf_trace_rtc_alarm_irq_enable
+ffffffc008634cc0 t trace_event_raw_event_rtc_offset_class
+ffffffc008634d80 t perf_trace_rtc_offset_class
+ffffffc008634e9c t trace_event_raw_event_rtc_timer_class
+ffffffc008634f64 t perf_trace_rtc_timer_class
+ffffffc008635080 T rtc_read_time
+ffffffc0086351c8 t __rtc_read_time
+ffffffc0086352b0 T rtc_set_time
+ffffffc008635570 T rtc_update_irq_enable
+ffffffc0086356ac T __rtc_read_alarm
+ffffffc008635b7c T rtc_read_alarm
+ffffffc008635d4c T rtc_set_alarm
+ffffffc008635eec t rtc_timer_remove
+ffffffc0086360a4 t rtc_timer_enqueue
+ffffffc008636480 T rtc_initialize_alarm
+ffffffc0086365ac t trace_rtc_timer_enqueue
+ffffffc0086366ac T rtc_alarm_irq_enable
+ffffffc008636860 T rtc_handle_legacy_irq
+ffffffc0086368fc T rtc_aie_update_irq
+ffffffc008636980 T rtc_uie_update_irq
+ffffffc008636a04 T rtc_pie_update_irq
+ffffffc008636ae0 T rtc_update_irq
+ffffffc008636b3c T rtc_class_open
+ffffffc008636ba0 T rtc_class_close
+ffffffc008636bd0 T rtc_irq_set_state
+ffffffc008636d20 T rtc_irq_set_freq
+ffffffc008636e94 T rtc_timer_do_work
+ffffffc008637458 t __rtc_set_alarm
+ffffffc00863767c t rtc_alarm_disable
+ffffffc0086377b8 T rtc_timer_init
+ffffffc0086377d4 T rtc_timer_start
+ffffffc008637864 T rtc_timer_cancel
+ffffffc0086378cc T rtc_read_offset
+ffffffc008637a4c T rtc_set_offset
+ffffffc008637bc4 t trace_raw_output_rtc_time_alarm_class
+ffffffc008637c3c t trace_raw_output_rtc_irq_set_freq
+ffffffc008637cb0 t trace_raw_output_rtc_irq_set_state
+ffffffc008637d34 t trace_raw_output_rtc_alarm_irq_enable
+ffffffc008637db8 t trace_raw_output_rtc_offset_class
+ffffffc008637e30 t trace_raw_output_rtc_timer_class
+ffffffc008637ea8 T rtc_dev_prepare
+ffffffc008637f18 t rtc_dev_read
+ffffffc008638304 t rtc_dev_poll
+ffffffc008638380 t rtc_dev_ioctl
+ffffffc0086394e8 t rtc_dev_open
+ffffffc00863958c t rtc_dev_release
+ffffffc008639634 t rtc_dev_fasync
+ffffffc008639668 T rtc_proc_add_device
+ffffffc00863972c t rtc_proc_show
+ffffffc00863990c T rtc_proc_del_device
+ffffffc0086399b4 T rtc_get_dev_attribute_groups
+ffffffc0086399cc T rtc_add_groups
+ffffffc008639b18 T rtc_add_group
+ffffffc008639c74 t rtc_attr_is_visible
+ffffffc008639d08 t wakealarm_show
+ffffffc008639dac t wakealarm_store
+ffffffc008639f50 t offset_show
+ffffffc008639fd8 t offset_store
+ffffffc00863a070 t range_show
+ffffffc00863a0b8 t date_show
+ffffffc00863a148 t time_show
+ffffffc00863a1d8 t since_epoch_show
+ffffffc00863a270 t max_user_freq_show
+ffffffc00863a2b4 t max_user_freq_store
+ffffffc00863a35c t hctosys_show
+ffffffc00863a3d4 t pl030_probe
+ffffffc00863a520 t pl030_remove
+ffffffc00863a584 t pl030_interrupt
+ffffffc00863a5c0 t pl030_read_time
+ffffffc00863a610 t pl030_set_time
+ffffffc00863a660 t pl030_read_alarm
+ffffffc00863a6b4 t pl030_set_alarm
+ffffffc00863a704 t pl031_probe
+ffffffc00863a930 t pl031_remove
+ffffffc00863a998 t pl031_interrupt
+ffffffc00863aa0c t pl031_read_time
+ffffffc00863aa5c t pl031_set_time
+ffffffc00863aaa8 t pl031_read_alarm
+ffffffc00863ab28 t pl031_set_alarm
+ffffffc00863abc4 t pl031_alarm_irq_enable
+ffffffc00863ac38 t pl031_stv2_read_time
+ffffffc00863ad00 t pl031_stv2_set_time
+ffffffc00863ad9c t pl031_stv2_read_alarm
+ffffffc00863ae98 t pl031_stv2_set_alarm
+ffffffc00863af84 t pl031_stv2_tm_to_time
+ffffffc00863b0c8 t syscon_reboot_probe
+ffffffc00863b25c t syscon_restart_handle
+ffffffc00863b2d4 T power_supply_changed
+ffffffc00863b350 T power_supply_am_i_supplied
+ffffffc00863b3d8 t __power_supply_am_i_supplied
+ffffffc00863b528 T power_supply_is_system_supplied
+ffffffc00863b5a8 t __power_supply_is_system_supplied
+ffffffc00863b65c T power_supply_get_property_from_supplier
+ffffffc00863b6e8 t __power_supply_get_supplier_property
+ffffffc00863b804 T power_supply_set_battery_charged
+ffffffc00863b87c T power_supply_get_by_name
+ffffffc00863b8f8 t power_supply_match_device_by_name
+ffffffc00863b938 T power_supply_put
+ffffffc00863b9a8 T power_supply_get_by_phandle
+ffffffc00863ba88 t power_supply_match_device_node
+ffffffc00863bab8 T power_supply_get_by_phandle_array
+ffffffc00863bb94 t power_supply_match_device_node_array
+ffffffc00863bc34 T devm_power_supply_get_by_phandle
+ffffffc00863bda4 t devm_power_supply_put
+ffffffc00863be18 T power_supply_get_battery_info
+ffffffc00863c64c T power_supply_put_battery_info
+ffffffc00863c6d0 T power_supply_temp2resist_simple
+ffffffc00863c78c T power_supply_vbat2ri
+ffffffc00863c8a4 T power_supply_get_maintenance_charging_setting
+ffffffc00863c8d8 T power_supply_ocv2cap_simple
+ffffffc00863c994 T power_supply_find_ocv2cap_table
+ffffffc00863ca1c T power_supply_batinfo_ocv2cap
+ffffffc00863cb50 T power_supply_battery_bti_in_range
+ffffffc00863cbc4 T power_supply_get_property
+ffffffc00863cc3c T power_supply_set_property
+ffffffc00863cca8 T power_supply_property_is_writeable
+ffffffc00863cd14 T power_supply_external_power_changed
+ffffffc00863cd78 T power_supply_powers
+ffffffc00863cdb0 T power_supply_reg_notifier
+ffffffc00863cde8 T power_supply_unreg_notifier
+ffffffc00863ce20 T power_supply_register
+ffffffc00863ce4c t __power_supply_register
+ffffffc00863d20c T power_supply_register_no_ws
+ffffffc00863d23c T devm_power_supply_register
+ffffffc00863d2f0 t devm_power_supply_release
+ffffffc00863d320 T devm_power_supply_register_no_ws
+ffffffc00863d3d4 T power_supply_unregister
+ffffffc00863d49c t device_init_wakeup
+ffffffc00863d4fc T power_supply_get_drvdata
+ffffffc00863d510 t power_supply_dev_release
+ffffffc00863d540 t power_supply_changed_work
+ffffffc00863d610 t power_supply_deferred_register_work
+ffffffc00863d6cc t __power_supply_changed_work
+ffffffc00863d7c8 t __power_supply_find_supply_from_node
+ffffffc00863d7e8 t __power_supply_populate_supplied_from
+ffffffc00863d8cc T power_supply_init_attrs
+ffffffc00863da40 t power_supply_show_property
+ffffffc00863dcd8 t power_supply_store_property
+ffffffc00863ddd4 T power_supply_uevent
+ffffffc00863dff0 T power_supply_charge_behaviour_show
+ffffffc00863e198 T power_supply_charge_behaviour_parse
+ffffffc00863e1fc t power_supply_attr_is_visible
+ffffffc00863e2d8 T __traceiter_watchdog_start
+ffffffc00863e368 T __traceiter_watchdog_ping
+ffffffc00863e3f8 T __traceiter_watchdog_stop
+ffffffc00863e488 T __traceiter_watchdog_set_timeout
+ffffffc00863e520 t trace_event_raw_event_watchdog_template
+ffffffc00863e5e0 t perf_trace_watchdog_template
+ffffffc00863e6fc t trace_event_raw_event_watchdog_set_timeout
+ffffffc00863e7d0 t perf_trace_watchdog_set_timeout
+ffffffc00863e8f4 T watchdog_init_timeout
+ffffffc00863eadc T watchdog_set_restart_priority
+ffffffc00863eaf0 T watchdog_register_device
+ffffffc00863ebd4 t __watchdog_register_device
+ffffffc00863eec4 T watchdog_unregister_device
+ffffffc00863efc0 T devm_watchdog_register_device
+ffffffc00863f060 t devm_watchdog_unregister_device
+ffffffc00863f090 t trace_raw_output_watchdog_template
+ffffffc00863f104 t trace_raw_output_watchdog_set_timeout
+ffffffc00863f17c t watchdog_reboot_notifier
+ffffffc00863f2e8 t watchdog_restart_notifier
+ffffffc00863f348 t watchdog_pm_notifier
+ffffffc00863f3c0 T watchdog_dev_register
+ffffffc00863f67c T watchdog_dev_unregister
+ffffffc00863f744 T watchdog_set_last_hw_keepalive
+ffffffc00863f7c8 t __watchdog_ping
+ffffffc00863fa64 T watchdog_dev_suspend
+ffffffc00863fb20 T watchdog_dev_resume
+ffffffc00863fbb4 t watchdog_core_data_release
+ffffffc00863fbe0 t watchdog_ping_work
+ffffffc00863fc58 t watchdog_timer_expired
+ffffffc00863fc94 t watchdog_write
+ffffffc00863ff38 t watchdog_ioctl
+ffffffc008640534 t watchdog_open
+ffffffc008640674 t watchdog_release
+ffffffc0086408b0 t watchdog_ping
+ffffffc00864093c t watchdog_stop
+ffffffc008640bd0 t watchdog_start
+ffffffc008640e60 t watchdog_set_timeout
+ffffffc00864108c t watchdog_set_pretimeout
+ffffffc00864111c T dm_send_uevents
+ffffffc00864126c T dm_path_uevent
+ffffffc00864143c T dm_uevent_init
+ffffffc0086414ac T dm_uevent_exit
+ffffffc0086414e0 T dm_blk_report_zones
+ffffffc008641630 T dm_report_zones
+ffffffc008641678 t dm_report_zones_cb.llvm.17909374931883543274
+ffffffc008641750 T dm_is_zone_write
+ffffffc0086417a8 T dm_cleanup_zoned_dev
+ffffffc008641818 T dm_set_zones_restrictions
+ffffffc008641b80 T dm_zone_map_bio
+ffffffc008642180 t dm_zone_map_bio_end
+ffffffc0086422b4 T dm_zone_endio
+ffffffc0086424a0 t device_not_zone_append_capable
+ffffffc0086424d8 t dm_zone_revalidate_cb
+ffffffc008642654 t dm_update_zone_wp_offset_cb
+ffffffc0086426a0 T dm_issue_global_event
+ffffffc008642718 T dm_per_bio_data
+ffffffc008642744 T dm_bio_from_per_bio_data
+ffffffc008642788 T dm_bio_get_target_bio_nr
+ffffffc00864279c T __dm_get_module_param
+ffffffc008642810 T dm_get_reserved_bio_based_ios
+ffffffc0086428a4 T dm_deleting_md
+ffffffc0086428bc T dm_open_count
+ffffffc0086428d8 T dm_lock_for_deletion
+ffffffc0086429d8 T dm_cancel_deferred_remove
+ffffffc008642a70 T dm_start_time_ns_from_clone
+ffffffc008642a98 T dm_get_live_table
+ffffffc008642ae8 T dm_put_live_table
+ffffffc008642b28 T dm_sync_table
+ffffffc008642b5c T dm_get_table_device
+ffffffc008642d50 T dm_put_table_device
+ffffffc008642e58 T dm_get_geometry
+ffffffc008642e78 T dm_set_geometry
+ffffffc008642ee4 T disable_discard
+ffffffc008642f10 T dm_get_queue_limits
+ffffffc008642f3c T disable_write_zeroes
+ffffffc008642f68 T dm_set_target_max_io_len
+ffffffc008642fd0 T dm_accept_partial_bio
+ffffffc00864307c T dm_submit_bio_remap
+ffffffc0086431cc T dm_create
+ffffffc0086436c4 T dm_lock_md_type
+ffffffc0086436f4 T dm_unlock_md_type
+ffffffc008643724 T dm_set_md_type
+ffffffc008643770 T dm_get_md_type
+ffffffc008643784 T dm_get_immutable_target_type
+ffffffc008643798 T dm_setup_md_queue
+ffffffc008643974 T dm_get_md
+ffffffc008643a68 T dm_disk
+ffffffc008643a7c T dm_get
+ffffffc008643acc T dm_get_mdptr
+ffffffc008643ae0 T dm_set_mdptr
+ffffffc008643af4 T dm_hold
+ffffffc008643b98 T dm_device_name
+ffffffc008643bac T dm_destroy
+ffffffc008643bd8 t __dm_destroy.llvm.3211314065566471727
+ffffffc008643eb0 T dm_destroy_immediate
+ffffffc008643ee0 T dm_put
+ffffffc008643f28 T dm_swap_table
+ffffffc008644158 T dm_suspended_md
+ffffffc008644170 T dm_suspend
+ffffffc0086442b4 T dm_suspended_internally_md
+ffffffc0086442c8 t __dm_suspend
+ffffffc00864456c T dm_resume
+ffffffc008644674 t __dm_resume
+ffffffc008644774 T dm_internal_suspend_noflush
+ffffffc008644888 T dm_internal_resume
+ffffffc008644934 T dm_internal_suspend_fast
+ffffffc0086449c4 t dm_wait_for_completion
+ffffffc008644b94 T dm_internal_resume_fast
+ffffffc008644c28 T dm_kobject_uevent
+ffffffc008644d28 T dm_next_uevent_seq
+ffffffc008644d70 T dm_get_event_nr
+ffffffc008644d8c T dm_wait_event
+ffffffc008644e84 T dm_uevent_add
+ffffffc008644f10 T dm_kobject
+ffffffc008644f24 T dm_get_from_kobject
+ffffffc008644fd0 T dm_test_deferred_remove_flag
+ffffffc008644fe8 T dm_suspended
+ffffffc008645008 T dm_post_suspending
+ffffffc008645028 T dm_noflush_suspending
+ffffffc008645048 T dm_free_md_mempools
+ffffffc008645094 t local_exit
+ffffffc0086450fc t dm_io_acct
+ffffffc008645214 t dm_wq_work
+ffffffc0086452a0 t dm_wq_requeue_work
+ffffffc008645328 t cleanup_mapped_device
+ffffffc008645458 t __dm_io_complete
+ffffffc008645704 t dm_submit_bio
+ffffffc008645ebc t dm_poll_bio
+ffffffc008646040 t dm_blk_open
+ffffffc008646128 t dm_blk_close
+ffffffc00864621c t dm_blk_ioctl
+ffffffc00864633c t dm_blk_getgeo
+ffffffc008646360 t __send_duplicate_bios
+ffffffc0086466d0 t __map_bio
+ffffffc0086469f4 t clone_endio
+ffffffc008646c48 t __set_swap_bios_limit
+ffffffc008646cec t __process_abnormal_io
+ffffffc008646e44 t dm_io_set_error
+ffffffc008646eb8 t do_deferred_remove
+ffffffc008646eec t dm_prepare_ioctl
+ffffffc00864701c t dm_pr_register
+ffffffc008647224 t dm_pr_reserve
+ffffffc00864736c t dm_pr_release
+ffffffc0086474b4 t dm_pr_preempt
+ffffffc0086475f8 t dm_pr_clear
+ffffffc0086476ec t __dm_pr_register
+ffffffc008647788 t __dm_pr_reserve
+ffffffc00864781c t __dm_pr_release
+ffffffc0086478ac t __dm_pr_preempt
+ffffffc008647940 t event_callback
+ffffffc008647aa4 T dm_table_create
+ffffffc008647b9c T dm_table_destroy
+ffffffc008647d10 T dm_get_dev_t
+ffffffc008647d90 T dm_get_device
+ffffffc008647ff0 T dm_put_device
+ffffffc008648100 T dm_split_args
+ffffffc0086482b0 T dm_table_add_target
+ffffffc008648660 T dm_read_arg
+ffffffc00864873c T dm_read_arg_group
+ffffffc008648828 T dm_shift_arg
+ffffffc008648860 T dm_consume_args
+ffffffc008648890 T dm_table_set_type
+ffffffc0086488a4 T dm_table_get_type
+ffffffc0086488b8 T dm_table_get_immutable_target_type
+ffffffc0086488cc T dm_table_get_immutable_target
+ffffffc008648908 T dm_table_get_wildcard_target
+ffffffc008648940 T dm_table_bio_based
+ffffffc008648960 T dm_table_request_based
+ffffffc00864897c T dm_destroy_crypto_profile
+ffffffc0086489c0 T dm_table_complete
+ffffffc0086491f4 T dm_table_event_callback
+ffffffc008649254 T dm_table_event
+ffffffc0086492c8 T dm_table_get_size
+ffffffc0086492fc T dm_table_find_target
+ffffffc008649438 T dm_table_has_no_data_devices
+ffffffc008649528 t count_device
+ffffffc008649548 T dm_calculate_queue_limits
+ffffffc008649a0c t dm_set_device_limits
+ffffffc008649ac4 t device_area_is_invalid
+ffffffc008649c04 T dm_table_set_restrictions
+ffffffc00864a3dc t device_not_dax_capable
+ffffffc00864a3f8 t device_not_dax_synchronous_capable
+ffffffc00864a414 t device_dax_write_cache_enabled
+ffffffc00864a428 t device_is_rotational
+ffffffc00864a44c t device_requires_stable_pages
+ffffffc00864a46c t device_is_not_random
+ffffffc00864a490 T dm_table_get_devices
+ffffffc00864a4a4 T dm_table_get_mode
+ffffffc00864a4b8 T dm_table_presuspend_targets
+ffffffc00864a554 T dm_table_presuspend_undo_targets
+ffffffc00864a5f0 T dm_table_postsuspend_targets
+ffffffc00864a68c T dm_table_resume_targets
+ffffffc00864a7bc T dm_table_get_md
+ffffffc00864a7d0 T dm_table_device_name
+ffffffc00864a7e8 T dm_table_run_md_queue_async
+ffffffc00864a830 t device_is_rq_stackable
+ffffffc00864a868 t dm_keyslot_evict
+ffffffc00864a970 t dm_derive_sw_secret
+ffffffc00864aa8c t device_intersect_crypto_capabilities
+ffffffc00864aacc t dm_keyslot_evict_callback
+ffffffc00864ab04 t dm_derive_sw_secret_callback
+ffffffc00864ab58 t device_not_matches_zone_sectors
+ffffffc00864aba0 t device_not_zoned_model
+ffffffc00864abc8 t device_not_nowait_capable
+ffffffc00864abec t device_not_discard_capable
+ffffffc00864ac10 t device_not_secure_erase_capable
+ffffffc00864ac34 t device_flush_capable
+ffffffc00864ac54 t device_not_write_zeroes_capable
+ffffffc00864ac78 t device_not_poll_capable
+ffffffc00864ac9c T dm_get_target_type
+ffffffc00864ada4 T dm_put_target_type
+ffffffc00864adec T dm_target_iterate
+ffffffc00864ae8c T dm_register_target
+ffffffc00864af54 T dm_unregister_target
+ffffffc00864b01c T dm_target_exit
+ffffffc00864b050 t io_err_ctr
+ffffffc00864b070 t io_err_dtr
+ffffffc00864b080 t io_err_map
+ffffffc00864b094 t io_err_clone_and_map_rq
+ffffffc00864b0a8 t io_err_release_clone_rq
+ffffffc00864b0b8 t io_err_dax_direct_access
+ffffffc00864b0cc T dm_linear_exit
+ffffffc00864b100 t linear_ctr
+ffffffc00864b244 t linear_dtr
+ffffffc00864b288 t linear_map
+ffffffc00864b2ec t linear_status
+ffffffc00864b3cc t linear_prepare_ioctl
+ffffffc00864b414 t linear_report_zones
+ffffffc00864b46c t linear_iterate_devices
+ffffffc00864b4c4 T dm_stripe_exit
+ffffffc00864b4f8 t stripe_ctr
+ffffffc00864b804 t stripe_dtr
+ffffffc00864b884 t stripe_map
+ffffffc00864b9c8 t stripe_end_io
+ffffffc00864bb10 t stripe_status
+ffffffc00864be94 t stripe_iterate_devices
+ffffffc00864bf30 t stripe_io_hints
+ffffffc00864bf90 t trigger_event
+ffffffc00864bfc0 t stripe_map_range
+ffffffc00864c17c T dm_deferred_remove
+ffffffc00864c1b0 t dm_hash_remove_all.llvm.3179671747831756161
+ffffffc00864c320 T dm_interface_exit
+ffffffc00864c364 T dm_copy_name_and_uuid
+ffffffc00864c41c t dm_hash_insert
+ffffffc00864c718 t __hash_remove
+ffffffc00864c81c t dm_poll
+ffffffc00864c8a4 t dm_ctl_ioctl
+ffffffc00864d354 t dm_open
+ffffffc00864d3d4 t dm_release
+ffffffc00864d408 t remove_all
+ffffffc00864d458 t list_devices
+ffffffc00864d6d4 t dev_create
+ffffffc00864d7f8 t dev_remove
+ffffffc00864d93c t dev_rename
+ffffffc00864ddf8 t dev_suspend
+ffffffc00864e040 t dev_status
+ffffffc00864e0cc t dev_wait
+ffffffc00864e23c t table_load
+ffffffc00864e528 t table_clear
+ffffffc00864e5ec t table_deps
+ffffffc00864e7e8 t table_status
+ffffffc00864e93c t list_versions
+ffffffc00864ea24 t target_message
+ffffffc00864ed44 t dev_set_geometry
+ffffffc00864eedc t dev_arm_poll
+ffffffc00864ef08 t get_target_version
+ffffffc00864f0bc t filter_device
+ffffffc00864f190 t __dev_status
+ffffffc00864f37c t __find_device_hash_cell
+ffffffc00864f520 t retrieve_status
+ffffffc00864f71c t list_version_get_needed
+ffffffc00864f770 t list_version_get_info
+ffffffc00864f84c T dm_io_client_create
+ffffffc00864f914 T dm_io_client_destroy
+ffffffc00864f95c T dm_io
+ffffffc00864fc5c T dm_io_exit
+ffffffc00864fc9c t list_get_page
+ffffffc00864fccc t list_next_page
+ffffffc00864fcec t bio_get_page
+ffffffc00864fd50 t bio_next_page
+ffffffc00864fe20 t vm_get_page
+ffffffc00864fe8c t vm_next_page
+ffffffc00864feb4 t km_get_page
+ffffffc00864fefc t km_next_page
+ffffffc00864ff24 t sync_io_complete
+ffffffc00864ff54 t dispatch_io
+ffffffc0086503d4 t endio
+ffffffc008650510 T dm_kcopyd_exit
+ffffffc008650550 T dm_kcopyd_copy
+ffffffc008650894 t dispatch_job
+ffffffc0086509c4 T dm_kcopyd_zero
+ffffffc008650a08 T dm_kcopyd_prepare_callback
+ffffffc008650aac T dm_kcopyd_do_callback
+ffffffc008650b58 t push
+ffffffc008650be8 T dm_kcopyd_client_create
+ffffffc008650eb8 t do_work
+ffffffc008650fc8 T dm_kcopyd_client_destroy
+ffffffc008651174 T dm_kcopyd_client_flush
+ffffffc0086511a4 t segment_complete
+ffffffc008651418 t process_jobs
+ffffffc008651618 t run_complete_job
+ffffffc008651778 t run_pages_job
+ffffffc008651910 t run_io_job
+ffffffc008651b04 t complete_io
+ffffffc008651cbc T dm_sysfs_init
+ffffffc008651d14 T dm_sysfs_exit
+ffffffc008651d58 t dm_attr_show
+ffffffc008651df0 t dm_attr_store
+ffffffc008651e90 t dm_attr_name_show
+ffffffc008651ef0 t dm_attr_uuid_show
+ffffffc008651f54 t dm_attr_suspended_show
+ffffffc008651fa8 t dm_attr_use_blk_mq_show
+ffffffc008651ff8 T dm_stats_init
+ffffffc0086520ec T dm_stats_cleanup
+ffffffc008652214 t dm_stat_free
+ffffffc008652444 T dm_stats_account_io
+ffffffc0086529b8 T dm_stats_message
+ffffffc0086533b8 t message_stats_print
+ffffffc008653908 T dm_statistics_exit
+ffffffc008653960 t dm_stats_create
+ffffffc008653d70 t dm_kvzalloc
+ffffffc008653e84 t __dm_stat_clear
+ffffffc0086540a4 t __dm_stat_init_temporary_percpu_totals
+ffffffc0086543c8 T dm_get_reserved_rq_based_ios
+ffffffc008654404 T dm_request_based
+ffffffc008654424 T dm_start_queue
+ffffffc00865446c T dm_stop_queue
+ffffffc008654498 T dm_mq_kick_requeue_list
+ffffffc0086544cc T dm_attr_rq_based_seq_io_merge_deadline_show
+ffffffc00865450c T dm_attr_rq_based_seq_io_merge_deadline_store
+ffffffc008654520 T dm_mq_init_request_queue
+ffffffc00865465c T dm_mq_cleanup_mapped_device
+ffffffc0086546a8 t dm_mq_queue_rq
+ffffffc008654ad4 t dm_softirq_done
+ffffffc008654d40 t dm_mq_init_request
+ffffffc008654d68 t dm_requeue_original_request
+ffffffc008654e6c t dm_rq_bio_constructor
+ffffffc008654e94 t end_clone_request
+ffffffc008654ed0 t end_clone_bio
+ffffffc008654f50 T dm_io_rewind
+ffffffc0086551ac T dm_kobject_release
+ffffffc0086551dc T dm_bufio_get
+ffffffc00865520c t new_read.llvm.695642086387338791
+ffffffc008655400 T dm_bufio_read
+ffffffc008655444 T dm_bufio_new
+ffffffc008655488 T dm_bufio_prefetch
+ffffffc008655634 t dm_bufio_lock
+ffffffc008655678 t __bufio_new
+ffffffc008655a4c t dm_bufio_unlock
+ffffffc008655a90 t __flush_write_list
+ffffffc008655b88 t submit_io
+ffffffc008655e58 t read_endio
+ffffffc008655ecc T dm_bufio_release
+ffffffc008656020 t __unlink_buffer
+ffffffc008656164 T dm_bufio_mark_partial_buffer_dirty
+ffffffc008656320 T dm_bufio_mark_buffer_dirty
+ffffffc008656358 T dm_bufio_write_dirty_buffers_async
+ffffffc0086564c4 t __write_dirty_buffers_async
+ffffffc0086566c8 T dm_bufio_write_dirty_buffers
+ffffffc008656b04 T dm_bufio_issue_flush
+ffffffc008656bb0 T dm_bufio_issue_discard
+ffffffc008656c94 T dm_bufio_release_move
+ffffffc008656ff0 t __wait_for_free_buffer
+ffffffc0086570e0 t __make_buffer_clean
+ffffffc008657218 t __link_buffer
+ffffffc008657410 t write_endio
+ffffffc0086574f4 T dm_bufio_forget
+ffffffc0086575a8 t forget_buffer_locked
+ffffffc00865766c T dm_bufio_forget_buffers
+ffffffc008657774 T dm_bufio_set_minimum_buffers
+ffffffc008657788 T dm_bufio_get_block_size
+ffffffc00865779c T dm_bufio_get_device_size
+ffffffc0086577e4 T dm_bufio_get_dm_io_client
+ffffffc0086577f8 T dm_bufio_get_block_number
+ffffffc00865780c T dm_bufio_get_block_data
+ffffffc008657820 T dm_bufio_get_aux_data
+ffffffc008657834 T dm_bufio_get_client
+ffffffc008657848 T dm_bufio_client_create
+ffffffc008657de8 t alloc_buffer
+ffffffc008657ee4 t shrink_work
+ffffffc0086580dc t dm_bufio_shrink_count
+ffffffc008658154 t dm_bufio_shrink_scan
+ffffffc0086581cc t free_buffer
+ffffffc008658268 T dm_bufio_client_destroy
+ffffffc00865869c T dm_bufio_set_sector_offset
+ffffffc0086586ac t __get_unclaimed_buffer
+ffffffc0086587a0 t bio_complete
+ffffffc008658818 t dmio_complete
+ffffffc008658870 t __try_evict_buffer
+ffffffc00865897c t work_fn
+ffffffc008658cf8 t do_global_cleanup
+ffffffc008658f4c t dm_bufio_trylock
+ffffffc008658f94 t crypt_ctr
+ffffffc00865a0e4 t crypt_dtr
+ffffffc00865a284 t crypt_map
+ffffffc00865a4bc t crypt_postsuspend
+ffffffc00865a504 t crypt_preresume
+ffffffc00865a550 t crypt_resume
+ffffffc00865a59c t crypt_status
+ffffffc00865acb8 t crypt_message
+ffffffc00865aecc t crypt_report_zones
+ffffffc00865af24 t crypt_iterate_devices
+ffffffc00865af7c t crypt_io_hints
+ffffffc00865afd8 t crypt_page_alloc
+ffffffc00865b074 t crypt_page_free
+ffffffc00865b0c4 t dmcrypt_write
+ffffffc00865b218 t crypt_set_key
+ffffffc00865b340 t crypt_alloc_tfms
+ffffffc00865b46c t crypt_free_tfms
+ffffffc00865b52c t crypt_iv_plain_gen
+ffffffc00865b580 t crypt_iv_plain64_gen
+ffffffc00865b5d4 t crypt_iv_plain64be_gen
+ffffffc00865b640 t crypt_iv_essiv_gen
+ffffffc00865b694 t crypt_iv_benbi_ctr
+ffffffc00865b718 t crypt_iv_benbi_dtr
+ffffffc00865b728 t crypt_iv_benbi_gen
+ffffffc00865b7a4 t crypt_iv_null_gen
+ffffffc00865b7e0 t crypt_iv_eboiv_ctr
+ffffffc00865b83c t crypt_iv_eboiv_gen
+ffffffc00865ba1c t crypt_iv_elephant_ctr
+ffffffc00865bad8 t crypt_iv_elephant_dtr
+ffffffc00865bb1c t crypt_iv_elephant_init
+ffffffc00865bb60 t crypt_iv_elephant_wipe
+ffffffc00865bbec t crypt_iv_elephant_gen
+ffffffc00865bc60 t crypt_iv_elephant_post
+ffffffc00865bca4 t crypt_iv_elephant
+ffffffc00865c458 t crypt_iv_lmk_ctr
+ffffffc00865c568 t crypt_iv_lmk_dtr
+ffffffc00865c5c4 t crypt_iv_lmk_init
+ffffffc00865c624 t crypt_iv_lmk_wipe
+ffffffc00865c650 t crypt_iv_lmk_gen
+ffffffc00865c754 t crypt_iv_lmk_post
+ffffffc00865c87c t crypt_iv_lmk_one
+ffffffc00865ca08 t crypt_iv_tcw_ctr
+ffffffc00865cb44 t crypt_iv_tcw_dtr
+ffffffc00865cbac t crypt_iv_tcw_init
+ffffffc00865cc24 t crypt_iv_tcw_wipe
+ffffffc00865cc74 t crypt_iv_tcw_gen
+ffffffc00865cdec t crypt_iv_tcw_post
+ffffffc00865cee4 t crypt_iv_tcw_whitening
+ffffffc00865d174 t crypt_iv_random_gen
+ffffffc00865d1ac t crypt_setkey
+ffffffc00865d360 t kcryptd_io_read
+ffffffc00865d444 t kcryptd_queue_crypt
+ffffffc00865d564 t crypt_endio
+ffffffc00865d68c t crypt_dec_pending
+ffffffc00865d7b0 t crypt_free_buffer_pages
+ffffffc00865d890 t kcryptd_io_bio_endio
+ffffffc00865d8c0 t kcryptd_io_read_work
+ffffffc00865d948 t kcryptd_crypt_tasklet
+ffffffc00865d974 t kcryptd_crypt
+ffffffc00865df34 t crypt_convert
+ffffffc00865ed60 t kcryptd_crypt_read_continue
+ffffffc00865ee24 t kcryptd_async_done
+ffffffc00865f02c t kcryptd_crypt_write_io_submit
+ffffffc00865f180 t kcryptd_crypt_write_continue
+ffffffc00865f280 T verity_fec_is_enabled
+ffffffc00865f2b0 T verity_fec_decode
+ffffffc00865f458 t fec_decode_rsb
+ffffffc00865fc44 t fec_bv_copy
+ffffffc00865fcb4 T verity_fec_finish_io
+ffffffc00865fd70 T verity_fec_init_io
+ffffffc00865fddc T verity_fec_status_table
+ffffffc00865fe54 T verity_fec_dtr
+ffffffc00865fef4 T verity_is_fec_opt_arg
+ffffffc00865ff80 T verity_fec_parse_opt_args
+ffffffc0086601d0 T verity_fec_ctr_alloc
+ffffffc008660240 T verity_fec_ctr
+ffffffc0086605e4 t fec_rs_alloc
+ffffffc008660630 t fec_rs_free
+ffffffc008660660 T verity_hash
+ffffffc00866077c t verity_hash_init
+ffffffc008660890 t verity_hash_update
+ffffffc008660a3c T verity_hash_for_block
+ffffffc008660b5c t verity_verify_level
+ffffffc008660d74 T verity_for_bv_block
+ffffffc008660f98 T dm_is_verity_target
+ffffffc008660fb8 T dm_verity_get_mode
+ffffffc008660fe8 T dm_verity_get_root_digest
+ffffffc008661068 t verity_handle_err
+ffffffc008661224 t verity_ctr
+ffffffc00866198c t verity_dtr
+ffffffc008661a60 t verity_map
+ffffffc008661cbc t verity_status
+ffffffc008662480 t verity_prepare_ioctl
+ffffffc0086624cc t verity_iterate_devices
+ffffffc008662528 t verity_io_hints
+ffffffc008662598 t verity_parse_opt_args
+ffffffc008662918 t dm_bufio_alloc_callback
+ffffffc00866292c t verity_end_io
+ffffffc008662a8c t verity_tasklet
+ffffffc008662b60 t verity_verify_io
+ffffffc008663144 t verity_bv_zero
+ffffffc008663180 t verity_prefetch_io
+ffffffc0086632a0 t user_ctr
+ffffffc008663410 t user_dtr
+ffffffc008663488 t user_map
+ffffffc00866392c t dev_read
+ffffffc008663da8 t dev_write
+ffffffc008664098 t dev_open
+ffffffc00866419c T dev_open
+ffffffc0086642a4 t dev_release
+ffffffc0086643e0 t msg_copy_from_iov
+ffffffc0086645b4 t target_put
+ffffffc0086647a8 t process_delayed_work
+ffffffc00866487c T edac_dimm_info_location
+ffffffc0086649b0 T edac_mc_alloc
+ffffffc008664ef0 t mci_release
+ffffffc008664ffc T edac_mc_free
+ffffffc00866502c T edac_has_mcs
+ffffffc008665090 T find_mci_by_dev
+ffffffc008665110 T edac_mc_reset_delay_period
+ffffffc0086651b0 T edac_mc_find
+ffffffc008665230 T edac_get_owner
+ffffffc008665248 T edac_mc_add_mc_with_groups
+ffffffc0086654e0 t edac_mc_workq_function
+ffffffc00866559c T edac_mc_del_mc
+ffffffc0086656b4 T edac_mc_find_csrow_by_page
+ffffffc0086657d8 T edac_raw_mc_handle_error
+ffffffc008665d1c T edac_mc_handle_error
+ffffffc008666258 T edac_device_alloc_ctl_info
+ffffffc0086665b0 T edac_device_free_ctl_info
+ffffffc0086665e0 T edac_device_reset_delay_period
+ffffffc008666654 T edac_device_alloc_index
+ffffffc0086666a8 T edac_device_add_device
+ffffffc0086668fc T edac_device_del_device
+ffffffc0086669f8 T edac_device_handle_ce_count
+ffffffc008666b04 T edac_device_handle_ue_count
+ffffffc008666c84 t edac_device_workq_function
+ffffffc008666d4c T edac_mc_get_log_ue
+ffffffc008666d64 T edac_mc_get_log_ce
+ffffffc008666d7c T edac_mc_get_panic_on_ue
+ffffffc008666d94 T edac_mc_get_poll_msec
+ffffffc008666dac T edac_create_sysfs_mci_device
+ffffffc008667050 T edac_remove_sysfs_mci_device
+ffffffc008667108 t mc_attr_release
+ffffffc008667134 T edac_mc_sysfs_exit
+ffffffc008667168 t edac_set_poll_msec
+ffffffc008667208 t mci_attr_is_visible
+ffffffc008667254 t mci_sdram_scrub_rate_show
+ffffffc0086672dc t mci_sdram_scrub_rate_store
+ffffffc0086673a0 t mci_reset_counters_store
+ffffffc00866745c t mci_ctl_name_show
+ffffffc0086674a0 t mci_size_mb_show
+ffffffc008667594 t mci_seconds_show
+ffffffc008667600 t mci_ue_noinfo_show
+ffffffc008667644 t mci_ce_noinfo_show
+ffffffc008667688 t mci_ue_count_show
+ffffffc0086676cc t mci_ce_count_show
+ffffffc008667710 t mci_max_location_show
+ffffffc0086677f4 t dimm_release
+ffffffc008667804 t dimmdev_label_show
+ffffffc00866785c t dimmdev_label_store
+ffffffc0086678dc t dimmdev_location_show
+ffffffc008667944 t dimmdev_size_show
+ffffffc00866798c t dimmdev_mem_type_show
+ffffffc0086679dc t dimmdev_dev_type_show
+ffffffc008667a38 t dimmdev_edac_mode_show
+ffffffc008667a94 t dimmdev_ce_count_show
+ffffffc008667ad8 t dimmdev_ue_count_show
+ffffffc008667b1c t csrow_release
+ffffffc008667b2c t csrow_dev_type_show
+ffffffc008667b94 t csrow_mem_type_show
+ffffffc008667bf0 t csrow_edac_mode_show
+ffffffc008667c58 t csrow_size_show
+ffffffc008667d2c t csrow_ue_count_show
+ffffffc008667d70 t csrow_ce_count_show
+ffffffc008667db4 t csrow_dev_is_visible
+ffffffc008667e40 t channel_dimm_label_show
+ffffffc008667ea8 t channel_dimm_label_store
+ffffffc008667f48 t channel_ce_count_show
+ffffffc008667f98 T edac_op_state_to_string
+ffffffc008668030 T edac_get_sysfs_subsys
+ffffffc008668048 T edac_device_register_sysfs_main_kobj
+ffffffc0086680ec T edac_device_unregister_sysfs_main_kobj
+ffffffc00866811c T edac_device_create_sysfs
+ffffffc008668580 T edac_device_remove_sysfs
+ffffffc0086686ec t edac_device_ctrl_master_release
+ffffffc008668750 t edac_dev_ctl_info_show
+ffffffc0086687ac t edac_dev_ctl_info_store
+ffffffc00866880c t edac_device_ctl_panic_on_ue_show
+ffffffc008668850 t edac_device_ctl_panic_on_ue_store
+ffffffc0086688ac t edac_device_ctl_log_ue_show
+ffffffc0086688f0 t edac_device_ctl_log_ue_store
+ffffffc00866894c t edac_device_ctl_log_ce_show
+ffffffc008668990 t edac_device_ctl_log_ce_store
+ffffffc0086689ec t edac_device_ctl_poll_msec_show
+ffffffc008668a30 t edac_device_ctl_poll_msec_store
+ffffffc008668a88 t edac_device_ctrl_instance_release
+ffffffc008668abc t edac_dev_instance_show
+ffffffc008668b18 t edac_dev_instance_store
+ffffffc008668b78 t instance_ce_count_show
+ffffffc008668bbc t instance_ue_count_show
+ffffffc008668c00 t edac_device_ctrl_block_release
+ffffffc008668c38 t edac_dev_block_show
+ffffffc008668c8c t edac_dev_block_store
+ffffffc008668ce0 t block_ce_count_show
+ffffffc008668d24 t block_ue_count_show
+ffffffc008668d68 T edac_queue_work
+ffffffc008668dac T edac_mod_work
+ffffffc008668df0 T edac_stop_work
+ffffffc008668e3c T edac_workqueue_setup
+ffffffc008668e94 T edac_workqueue_teardown
+ffffffc008668ed4 T edac_pci_alloc_ctl_info
+ffffffc008668f88 T edac_pci_free_ctl_info
+ffffffc008668fb4 T edac_pci_alloc_index
+ffffffc008669008 T edac_pci_add_device
+ffffffc00866922c t edac_pci_workq_function
+ffffffc0086692d4 T edac_pci_del_device
+ffffffc0086693c0 T edac_pci_create_generic_ctl
+ffffffc0086694d0 t edac_pci_generic_check
+ffffffc0086694fc T edac_pci_release_generic_ctl
+ffffffc008669540 T edac_pci_get_check_errors
+ffffffc008669558 T edac_pci_get_poll_msec
+ffffffc00866956c T edac_pci_create_sysfs
+ffffffc008669768 T edac_pci_remove_sysfs
+ffffffc00866980c T edac_pci_do_parity_check
+ffffffc008669c24 T edac_pci_clear_parity_errors
+ffffffc008669da4 T edac_pci_handle_pe
+ffffffc008669e2c T edac_pci_handle_npe
+ffffffc008669eb0 t edac_pci_release_main_kobj
+ffffffc008669edc t edac_pci_dev_show
+ffffffc008669f38 t edac_pci_dev_store
+ffffffc008669f98 t edac_pci_int_show
+ffffffc008669fdc t edac_pci_int_store
+ffffffc00866a03c t edac_pci_instance_release
+ffffffc00866a084 t edac_pci_instance_show
+ffffffc00866a0e0 t edac_pci_instance_store
+ffffffc00866a140 t instance_pe_count_show
+ffffffc00866a188 t instance_npe_count_show
+ffffffc00866a1d0 T scmi_child_dev_find
+ffffffc00866a248 t scmi_match_by_id_table
+ffffffc00866a29c T scmi_protocol_get
+ffffffc00866a310 T scmi_protocol_put
+ffffffc00866a348 T scmi_driver_register
+ffffffc00866a3c4 T scmi_driver_unregister
+ffffffc00866a408 T scmi_device_create
+ffffffc00866a548 t scmi_device_release
+ffffffc00866a578 T scmi_device_destroy
+ffffffc00866a5d4 T scmi_device_link_add
+ffffffc00866a610 T scmi_set_handle
+ffffffc00866a674 T scmi_protocol_register
+ffffffc00866a748 T scmi_protocol_unregister
+ffffffc00866a7a4 t scmi_dev_match
+ffffffc00866a82c t scmi_dev_probe
+ffffffc00866a88c t scmi_dev_remove
+ffffffc00866a8e0 t __scmi_devices_unregister.llvm.4273826236215126633
+ffffffc00866a940 T __traceiter_scmi_fc_call
+ffffffc00866a9f0 T __traceiter_scmi_xfer_begin
+ffffffc00866aaa0 T __traceiter_scmi_xfer_response_wait
+ffffffc00866ab60 T __traceiter_scmi_xfer_end
+ffffffc00866ac10 T __traceiter_scmi_rx_done
+ffffffc00866acc0 T __traceiter_scmi_msg_dump
+ffffffc00866ad88 t trace_event_raw_event_scmi_fc_call
+ffffffc00866ae70 t perf_trace_scmi_fc_call
+ffffffc00866afa8 t trace_event_raw_event_scmi_xfer_begin
+ffffffc00866b098 t perf_trace_scmi_xfer_begin
+ffffffc00866b1d8 t trace_event_raw_event_scmi_xfer_response_wait
+ffffffc00866b2d0 t perf_trace_scmi_xfer_response_wait
+ffffffc00866b420 t trace_event_raw_event_scmi_xfer_end
+ffffffc00866b50c t perf_trace_scmi_xfer_end
+ffffffc00866b648 t trace_event_raw_event_scmi_rx_done
+ffffffc00866b734 t perf_trace_scmi_rx_done
+ffffffc00866b870 t trace_event_raw_event_scmi_msg_dump
+ffffffc00866b9a4 t perf_trace_scmi_msg_dump
+ffffffc00866bb38 T scmi_notification_instance_data_set
+ffffffc00866bb50 T scmi_notification_instance_data_get
+ffffffc00866bb68 T scmi_rx_callback
+ffffffc00866c550 T scmi_revision_area_get
+ffffffc00866c568 T scmi_protocol_acquire
+ffffffc00866c598 t scmi_get_protocol_instance
+ffffffc00866c7e8 T scmi_protocol_release
+ffffffc00866c93c T scmi_setup_protocol_implemented
+ffffffc00866c954 T scmi_handle_get
+ffffffc00866c9ec T scmi_handle_put
+ffffffc00866ca60 T scmi_protocol_device_request
+ffffffc00866cd28 t scmi_get_protocol_device
+ffffffc00866ce78 T scmi_protocol_device_unrequest
+ffffffc00866cf68 T scmi_free_channel
+ffffffc00866cf9c t trace_raw_output_scmi_fc_call
+ffffffc00866d01c t trace_raw_output_scmi_xfer_begin
+ffffffc00866d0a0 t trace_raw_output_scmi_xfer_response_wait
+ffffffc00866d128 t trace_raw_output_scmi_xfer_end
+ffffffc00866d1ac t trace_raw_output_scmi_rx_done
+ffffffc00866d230 t trace_raw_output_scmi_msg_dump
+ffffffc00866d2ec t __scmi_xfer_put
+ffffffc00866d430 t scmi_set_protocol_priv
+ffffffc00866d44c t scmi_get_protocol_priv
+ffffffc00866d460 t version_get
+ffffffc00866d524 t xfer_get_init
+ffffffc00866d7e0 t reset_rx_to_maxsz
+ffffffc00866d800 t do_xfer
+ffffffc00866e028 t do_xfer_with_response
+ffffffc00866e144 t xfer_put
+ffffffc00866e174 t scmi_xfer_done_no_timeout
+ffffffc00866e1fc t scmi_common_extended_name_get
+ffffffc00866e388 t scmi_iterator_init
+ffffffc00866e480 t scmi_iterator_run
+ffffffc00866e688 t scmi_common_fastchannel_init
+ffffffc00866e8e8 t scmi_common_fastchannel_db_ring
+ffffffc00866e9e8 t scmi_chan_setup
+ffffffc00866ebc4 t scmi_probe
+ffffffc00866f144 t scmi_remove
+ffffffc00866f2ec t scmi_devm_protocol_acquire
+ffffffc00866f3a0 t scmi_devm_protocol_get
+ffffffc00866f478 t scmi_devm_protocol_put
+ffffffc00866f4f8 t scmi_is_transport_atomic
+ffffffc00866f558 t scmi_devm_release_protocol
+ffffffc00866f58c t scmi_devm_protocol_match
+ffffffc00866f5c0 t __scmi_xfer_info_init
+ffffffc00866f72c t firmware_version_show
+ffffffc00866f774 t protocol_version_show
+ffffffc00866f7c0 t vendor_id_show
+ffffffc00866f808 t sub_vendor_id_show
+ffffffc00866f850 T scmi_notify
+ffffffc00866f9d4 T scmi_register_protocol_events
+ffffffc00866fdb4 T scmi_deregister_protocol_events
+ffffffc00866fe14 T scmi_notification_init
+ffffffc00866ff7c t scmi_protocols_late_init
+ffffffc008670174 T scmi_notification_exit
+ffffffc0086701d4 t scmi_kfifo_free
+ffffffc008670218 t scmi_events_dispatcher
+ffffffc008670430 t scmi_lookup_and_call_event_chain
+ffffffc0086705cc t scmi_put_handler_unlocked
+ffffffc0086707a0 t scmi_event_handler_enable_events
+ffffffc00867094c t scmi_devm_notifier_register
+ffffffc008670a48 t scmi_devm_notifier_unregister
+ffffffc008670af8 t scmi_notifier_register
+ffffffc008670bd0 t scmi_notifier_unregister
+ffffffc008670c94 t scmi_devm_release_notifier
+ffffffc008670d44 t scmi_devm_notifier_match
+ffffffc008670dd0 t scmi_put_handler
+ffffffc008670e70 t __scmi_event_handler_get_ops
+ffffffc0086711d0 t scmi_base_protocol_init.llvm.6107401838630197907
+ffffffc008671534 t scmi_base_vendor_id_get
+ffffffc008671678 t scmi_base_implementation_version_get
+ffffffc0086717a0 t scmi_base_implementation_list_get
+ffffffc0086719ec t scmi_base_set_notify_enabled.llvm.6107401838630197907
+ffffffc008671b08 t scmi_base_fill_custom_report.llvm.6107401838630197907
+ffffffc008671b8c t scmi_clock_protocol_init.llvm.10535650909719321833
+ffffffc008672004 t iter_clk_describe_prepare_message
+ffffffc00867201c t iter_clk_describe_update_state
+ffffffc0086720f0 t iter_clk_describe_process_response
+ffffffc008672198 t rate_cmp_func
+ffffffc0086721bc t scmi_clock_count_get.llvm.10535650909719321833
+ffffffc008672208 t scmi_clock_info_get.llvm.10535650909719321833
+ffffffc008672288 t scmi_clock_rate_get.llvm.10535650909719321833
+ffffffc0086723b4 t scmi_clock_rate_set.llvm.10535650909719321833
+ffffffc0086725ec t scmi_clock_enable.llvm.10535650909719321833
+ffffffc00867270c t scmi_clock_disable.llvm.10535650909719321833
+ffffffc008672828 t scmi_clock_enable_atomic.llvm.10535650909719321833
+ffffffc008672948 t scmi_clock_disable_atomic.llvm.10535650909719321833
+ffffffc008672a68 t scmi_clk_get_num_sources.llvm.10535650909719321833
+ffffffc008672ac0 t scmi_clk_set_notify_enabled.llvm.10535650909719321833
+ffffffc008672c00 t scmi_clk_fill_custom_report.llvm.10535650909719321833
+ffffffc008672c50 t scmi_perf_protocol_init.llvm.15437629319701580734
+ffffffc008673254 t iter_perf_levels_prepare_message
+ffffffc00867326c t iter_perf_levels_update_state
+ffffffc008673294 t iter_perf_levels_process_response
+ffffffc00867330c t opp_cmp_func
+ffffffc008673328 t scmi_perf_limits_set.llvm.15437629319701580734
+ffffffc00867359c t scmi_perf_limits_get.llvm.15437629319701580734
+ffffffc0086737d4 t scmi_perf_level_set.llvm.15437629319701580734
+ffffffc008673a14 t scmi_perf_level_get.llvm.15437629319701580734
+ffffffc008673c3c t scmi_dev_domain_id.llvm.15437629319701580734
+ffffffc008673cd8 t scmi_dvfs_transition_latency_get.llvm.15437629319701580734
+ffffffc008673de4 t scmi_dvfs_device_opps_add.llvm.15437629319701580734
+ffffffc008673ef8 t scmi_dvfs_freq_set.llvm.15437629319701580734
+ffffffc008673f84 t scmi_dvfs_freq_get.llvm.15437629319701580734
+ffffffc008674058 t scmi_dvfs_est_power_get.llvm.15437629319701580734
+ffffffc008674130 t scmi_fast_switch_possible.llvm.15437629319701580734
+ffffffc008674224 t scmi_power_scale_get.llvm.15437629319701580734
+ffffffc008674270 t scmi_perf_get_num_sources.llvm.15437629319701580734
+ffffffc0086742c8 t scmi_perf_set_notify_enabled.llvm.15437629319701580734
+ffffffc008674408 t scmi_perf_fill_custom_report.llvm.15437629319701580734
+ffffffc008674490 t scmi_power_protocol_init.llvm.13116112095926547202
+ffffffc00867481c t scmi_power_num_domains_get.llvm.13116112095926547202
+ffffffc008674868 t scmi_power_name_get.llvm.13116112095926547202
+ffffffc0086748cc t scmi_power_state_set.llvm.13116112095926547202
+ffffffc0086749ec t scmi_power_state_get.llvm.13116112095926547202
+ffffffc008674b18 t scmi_power_get_num_sources.llvm.13116112095926547202
+ffffffc008674b70 t scmi_power_set_notify_enabled.llvm.13116112095926547202
+ffffffc008674c90 t scmi_power_fill_custom_report.llvm.13116112095926547202
+ffffffc008674cdc t scmi_reset_protocol_init.llvm.503074279656154345
+ffffffc008675054 t scmi_reset_num_domains_get.llvm.503074279656154345
+ffffffc0086750a0 t scmi_reset_name_get.llvm.503074279656154345
+ffffffc008675104 t scmi_reset_latency_get.llvm.503074279656154345
+ffffffc008675168 t scmi_reset_domain_reset.llvm.503074279656154345
+ffffffc0086752e4 t scmi_reset_domain_assert.llvm.503074279656154345
+ffffffc00867543c t scmi_reset_domain_deassert.llvm.503074279656154345
+ffffffc008675590 t scmi_reset_get_num_sources.llvm.503074279656154345
+ffffffc0086755e8 t scmi_reset_set_notify_enabled.llvm.503074279656154345
+ffffffc008675708 t scmi_reset_fill_custom_report.llvm.503074279656154345
+ffffffc008675754 t scmi_sensors_protocol_init.llvm.4809612653187370124
+ffffffc0086759f4 t iter_sens_descr_prepare_message
+ffffffc008675a08 t iter_sens_descr_update_state
+ffffffc008675a38 t iter_sens_descr_process_response
+ffffffc008675e90 t iter_intervals_prepare_message
+ffffffc008675eac t iter_intervals_update_state
+ffffffc008675f80 t iter_intervals_process_response
+ffffffc008675fb4 t iter_axes_desc_prepare_message
+ffffffc008675fd0 t iter_axes_desc_update_state
+ffffffc008675ffc t iter_axes_desc_process_response
+ffffffc008676104 t iter_axes_extended_name_update_state
+ffffffc008676130 t iter_axes_extended_name_process_response
+ffffffc0086761ac t scmi_sensor_count_get.llvm.4809612653187370124
+ffffffc0086761f8 t scmi_sensor_info_get.llvm.4809612653187370124
+ffffffc00867626c t scmi_sensor_trip_point_config.llvm.4809612653187370124
+ffffffc0086763a4 t scmi_sensor_reading_get.llvm.4809612653187370124
+ffffffc008676594 t scmi_sensor_reading_get_timestamped.llvm.4809612653187370124
+ffffffc0086767fc t scmi_sensor_config_get.llvm.4809612653187370124
+ffffffc008676980 t scmi_sensor_config_set.llvm.4809612653187370124
+ffffffc008676af4 t scmi_sensor_get_num_sources.llvm.4809612653187370124
+ffffffc008676b40 t scmi_sensor_set_notify_enabled.llvm.4809612653187370124
+ffffffc008676c94 t scmi_sensor_fill_custom_report.llvm.4809612653187370124
+ffffffc008676db4 t scmi_system_protocol_init.llvm.10596616772276138769
+ffffffc008676ea0 t scmi_system_set_notify_enabled.llvm.10596616772276138769
+ffffffc008676fbc t scmi_system_fill_custom_report.llvm.10596616772276138769
+ffffffc00867709c t scmi_voltage_protocol_init.llvm.9733833687185504827
+ffffffc0086774b4 t iter_volt_levels_prepare_message
+ffffffc0086774d0 t iter_volt_levels_update_state
+ffffffc0086775b0 t iter_volt_levels_process_response
+ffffffc0086775f4 t scmi_voltage_domains_num_get
+ffffffc008677640 t scmi_voltage_info_get
+ffffffc0086776c0 t scmi_voltage_config_set
+ffffffc008677818 t scmi_voltage_config_get
+ffffffc00867797c t scmi_voltage_level_set
+ffffffc008677b58 t scmi_voltage_level_get
+ffffffc008677cbc t scmi_powercap_protocol_init.llvm.18403948564163112369
+ffffffc0086782f0 t scmi_powercap_num_domains_get.llvm.18403948564163112369
+ffffffc00867833c t scmi_powercap_dom_info_get.llvm.18403948564163112369
+ffffffc0086783b0 t scmi_powercap_cap_get.llvm.18403948564163112369
+ffffffc0086785dc t scmi_powercap_cap_set.llvm.18403948564163112369
+ffffffc0086788d8 t scmi_powercap_pai_get.llvm.18403948564163112369
+ffffffc008678b04 t scmi_powercap_pai_set.llvm.18403948564163112369
+ffffffc008678d88 t scmi_powercap_measurements_get.llvm.18403948564163112369
+ffffffc008678f28 t scmi_powercap_measurements_threshold_set.llvm.18403948564163112369
+ffffffc008679008 t scmi_powercap_measurements_threshold_get.llvm.18403948564163112369
+ffffffc0086790b4 t scmi_powercap_notify
+ffffffc0086792b4 t scmi_powercap_get_num_sources.llvm.18403948564163112369
+ffffffc00867930c t scmi_powercap_set_notify_enabled.llvm.18403948564163112369
+ffffffc0086793e0 t scmi_powercap_fill_custom_report.llvm.18403948564163112369
+ffffffc008679468 T shmem_tx_prepare
+ffffffc008679588 T shmem_read_header
+ffffffc0086795b8 T shmem_fetch_response
+ffffffc00867963c T shmem_fetch_notification
+ffffffc0086796b0 T shmem_clear_channel
+ffffffc0086796e4 T shmem_poll_done
+ffffffc008679748 t readl.llvm.11523589707312709949
+ffffffc0086797f0 t smc_chan_available.llvm.12112730910732628816
+ffffffc008679888 t smc_chan_setup.llvm.12112730910732628816
+ffffffc008679b08 t smc_chan_free.llvm.12112730910732628816
+ffffffc008679b50 t smc_send_message.llvm.12112730910732628816
+ffffffc008679c6c t smc_mark_txdone.llvm.12112730910732628816
+ffffffc008679ca0 t smc_fetch_response.llvm.12112730910732628816
+ffffffc008679cd4 t smc_msg_done_isr
+ffffffc008679d24 T psci_tos_resident_on
+ffffffc008679d44 T get_psci_0_1_function_ids
+ffffffc008679d60 T psci_has_osi_support
+ffffffc008679d7c T psci_power_state_is_valid
+ffffffc008679dac T psci_set_osi_mode
+ffffffc008679e6c t psci_debugfs_open
+ffffffc008679ea8 t psci_debugfs_read
+ffffffc00867a1d8 t get_set_conduit_method
+ffffffc00867a2ec t psci_0_1_get_version
+ffffffc00867a300 t psci_0_1_cpu_suspend
+ffffffc00867a384 t psci_0_1_cpu_off
+ffffffc00867a408 t psci_0_1_cpu_on
+ffffffc00867a488 t psci_0_1_migrate
+ffffffc00867a508 t __invoke_psci_fn_hvc
+ffffffc00867a584 t __invoke_psci_fn_smc
+ffffffc00867a600 t psci_0_2_get_version
+ffffffc00867a65c t psci_0_2_cpu_suspend
+ffffffc00867a6dc t psci_0_2_cpu_off
+ffffffc00867a75c t psci_0_2_cpu_on
+ffffffc00867a7dc t psci_0_2_migrate
+ffffffc00867a85c t psci_affinity_info
+ffffffc00867a8bc t psci_migrate_info_type
+ffffffc00867a91c t psci_sys_poweroff
+ffffffc00867a97c t psci_sys_reset
+ffffffc00867aa0c t psci_system_suspend_enter
+ffffffc00867aa44 t psci_system_suspend
+ffffffc00867aab4 T arm_smccc_1_1_get_conduit
+ffffffc00867aadc T arm_smccc_get_version
+ffffffc00867aaf4 T kvm_arm_hyp_service_available
+ffffffc00867ab38 T timer_of_init
+ffffffc00867ae6c T timer_of_cleanup
+ffffffc00867af14 t arch_counter_get_cntvct
+ffffffc00867af40 T arch_timer_get_rate
+ffffffc00867af58 T arch_timer_evtstrm_available
+ffffffc00867af98 T arch_timer_get_kvm_info
+ffffffc00867afb0 T kvm_arch_ptp_get_crosststamp
+ffffffc00867b094 t arch_timer_check_ool_workaround
+ffffffc00867b270 t fsl_a008585_read_cntpct_el0
+ffffffc00867b2bc t fsl_a008585_read_cntvct_el0
+ffffffc00867b308 t erratum_set_next_event_phys
+ffffffc00867b408 t erratum_set_next_event_virt
+ffffffc00867b508 t hisi_161010101_read_cntpct_el0
+ffffffc00867b550 t hisi_161010101_read_cntvct_el0
+ffffffc00867b598 t arm64_858921_read_cntpct_el0
+ffffffc00867b5bc t arm64_858921_read_cntvct_el0
+ffffffc00867b5e0 t arch_counter_get_cntpct_stable
+ffffffc00867b6b8 t arch_counter_get_cntvct_stable
+ffffffc00867b790 t arch_timer_read_cntpct_el0
+ffffffc00867b7b0 t arch_timer_read_cntvct_el0
+ffffffc00867b7d0 t arch_timer_handler_virt
+ffffffc00867b840 t arch_timer_handler_phys
+ffffffc00867b8b0 t arch_timer_starting_cpu
+ffffffc00867bb10 t arch_timer_dying_cpu
+ffffffc00867bbe8 t arch_timer_cpu_pm_notify
+ffffffc00867bd1c t __arch_timer_setup
+ffffffc00867bfbc t arch_timer_shutdown_virt
+ffffffc00867bfe0 t arch_timer_set_next_event_virt
+ffffffc00867c02c t arch_timer_shutdown_phys
+ffffffc00867c050 t arch_timer_set_next_event_phys
+ffffffc00867c09c t arch_timer_shutdown_virt_mem
+ffffffc00867c0f0 t arch_timer_set_next_event_virt_mem
+ffffffc00867c1ac t arch_timer_shutdown_phys_mem
+ffffffc00867c200 t arch_timer_set_next_event_phys_mem
+ffffffc00867c2b8 t arch_counter_get_cntpct
+ffffffc00867c2e4 t arch_counter_get_cntvct_mem
+ffffffc00867c360 t arch_counter_read_cc
+ffffffc00867c3ac t arch_timer_handler_virt_mem
+ffffffc00867c430 t arch_timer_handler_phys_mem
+ffffffc00867c4b4 t arch_counter_read
+ffffffc00867c500 t dummy_timer_starting_cpu
+ffffffc00867c588 T of_node_name_eq
+ffffffc00867c620 T of_node_name_prefix
+ffffffc00867c690 T of_bus_n_addr_cells
+ffffffc00867c730 T of_n_addr_cells
+ffffffc00867c7d8 T of_bus_n_size_cells
+ffffffc00867c878 T of_n_size_cells
+ffffffc00867c920 T __of_phandle_cache_inv_entry
+ffffffc00867c964 T __of_find_all_nodes
+ffffffc00867c9b0 T of_find_property
+ffffffc00867ca4c T of_find_all_nodes
+ffffffc00867cad4 T __of_get_property
+ffffffc00867cb50 T of_get_property
+ffffffc00867cc00 T of_get_cpu_hwid
+ffffffc00867cd6c W arch_find_n_match_cpu_physical_id
+ffffffc00867cf3c T of_get_cpu_node
+ffffffc00867cfac T of_get_next_cpu_node
+ffffffc00867d164 T of_cpu_node_to_id
+ffffffc00867d228 T of_get_cpu_state_node
+ffffffc00867d348 T of_device_is_compatible
+ffffffc00867d3c0 t __of_device_is_compatible.llvm.15624645919492186269
+ffffffc00867d560 T of_device_compatible_match
+ffffffc00867d614 T of_machine_is_compatible
+ffffffc00867d6ac T of_device_is_available
+ffffffc00867d784 T of_device_is_big_endian
+ffffffc00867d81c T of_get_parent
+ffffffc00867d878 T of_get_next_parent
+ffffffc00867d8d4 T of_get_next_child
+ffffffc00867d94c T of_get_next_available_child
+ffffffc00867da5c T of_get_compatible_child
+ffffffc00867db38 T of_get_child_by_name
+ffffffc00867dc30 T __of_find_node_by_path
+ffffffc00867dce8 T __of_find_node_by_full_path
+ffffffc00867dde8 T of_find_node_opts_by_path
+ffffffc00867df4c T of_find_node_by_name
+ffffffc00867e068 T of_find_node_by_type
+ffffffc00867e17c T of_find_compatible_node
+ffffffc00867e264 T of_find_node_with_property
+ffffffc00867e34c T of_match_node
+ffffffc00867e40c T of_find_matching_node_and_match
+ffffffc00867e55c T of_modalias_node
+ffffffc00867e64c T of_find_node_by_phandle
+ffffffc00867e734 T of_print_phandle_args
+ffffffc00867e7e0 T of_phandle_iterator_init
+ffffffc00867e8e0 T of_phandle_iterator_next
+ffffffc00867eb3c T of_phandle_iterator_args
+ffffffc00867eb98 T __of_parse_phandle_with_args
+ffffffc00867ed58 T of_parse_phandle_with_args_map
+ffffffc00867f448 T of_count_phandle_with_args
+ffffffc00867f5e8 T __of_add_property
+ffffffc00867f668 T of_add_property
+ffffffc00867f74c T __of_remove_property
+ffffffc00867f7a0 T of_remove_property
+ffffffc00867f874 T __of_update_property
+ffffffc00867f934 T of_update_property
+ffffffc00867fa44 T of_alias_scan
+ffffffc00867fce0 T of_alias_get_id
+ffffffc00867fd80 T of_alias_get_highest_id
+ffffffc00867fe18 T of_console_check
+ffffffc00867fe90 T of_find_next_cache_node
+ffffffc00867ff6c T of_find_last_cache_level
+ffffffc0086800d0 T of_map_id
+ffffffc0086803fc T of_match_device
+ffffffc008680448 T of_device_add
+ffffffc0086804a0 T of_dma_configure_id
+ffffffc00868081c T of_device_register
+ffffffc008680888 T of_device_unregister
+ffffffc0086808b8 T of_device_get_match_data
+ffffffc008680914 T of_device_request_module
+ffffffc0086809ac t of_device_get_modalias
+ffffffc008680b10 T of_device_modalias
+ffffffc008680b74 T of_device_uevent
+ffffffc008680d08 T of_device_uevent_modalias
+ffffffc008680dc0 T of_find_device_by_node
+ffffffc008680e10 T of_device_alloc
+ffffffc008680f90 t of_device_make_bus_id
+ffffffc00868116c T of_platform_device_create
+ffffffc00868119c t of_platform_device_create_pdata
+ffffffc0086812c8 T of_platform_bus_probe
+ffffffc0086813b0 t of_platform_bus_create
+ffffffc0086817e4 T of_platform_populate
+ffffffc0086818d4 T of_platform_default_populate
+ffffffc008681910 T of_platform_device_destroy
+ffffffc008681a1c T of_platform_depopulate
+ffffffc008681aa8 T devm_of_platform_populate
+ffffffc008681b5c t devm_of_platform_populate_release
+ffffffc008681bec T devm_of_platform_depopulate
+ffffffc008681c38 t devm_of_platform_match
+ffffffc008681c68 T of_graph_is_present
+ffffffc008681cc4 T of_property_count_elems_of_size
+ffffffc008681d50 T of_property_read_u32_index
+ffffffc008681de4 T of_property_read_u64_index
+ffffffc008681e78 T of_property_read_variable_u8_array
+ffffffc008681f34 T of_property_read_variable_u16_array
+ffffffc008682008 T of_property_read_variable_u32_array
+ffffffc0086820d8 T of_property_read_u64
+ffffffc008682160 T of_property_read_variable_u64_array
+ffffffc00868222c T of_property_read_string
+ffffffc0086822b4 T of_property_match_string
+ffffffc008682374 T of_property_read_string_helper
+ffffffc00868246c T of_prop_next_u32
+ffffffc0086824b8 T of_prop_next_string
+ffffffc008682524 T of_graph_parse_endpoint
+ffffffc00868262c T of_graph_get_port_by_id
+ffffffc008682724 T of_graph_get_next_endpoint
+ffffffc008682850 T of_graph_get_endpoint_by_regs
+ffffffc008682918 T of_graph_get_remote_endpoint
+ffffffc0086829a8 T of_graph_get_port_parent
+ffffffc008682a18 T of_graph_get_remote_port_parent
+ffffffc008682af0 T of_graph_get_remote_port
+ffffffc008682b90 T of_graph_get_endpoint_count
+ffffffc008682bf8 T of_graph_get_remote_node
+ffffffc008682cec t of_fwnode_get.llvm.11155621884473351663
+ffffffc008682d34 t of_fwnode_put.llvm.11155621884473351663
+ffffffc008682d44 t of_fwnode_device_is_available.llvm.11155621884473351663
+ffffffc008682da0 t of_fwnode_device_get_match_data.llvm.11155621884473351663
+ffffffc008682dd0 t of_fwnode_device_dma_supported.llvm.11155621884473351663
+ffffffc008682de4 t of_fwnode_device_get_dma_attr.llvm.11155621884473351663
+ffffffc008682e48 t of_fwnode_property_present.llvm.11155621884473351663
+ffffffc008682eac t of_fwnode_property_read_int_array.llvm.11155621884473351663
+ffffffc008683140 t of_fwnode_property_read_string_array.llvm.11155621884473351663
+ffffffc0086832a8 t of_fwnode_get_name.llvm.11155621884473351663
+ffffffc008683318 t of_fwnode_get_name_prefix.llvm.11155621884473351663
+ffffffc00868336c t of_fwnode_get_parent.llvm.11155621884473351663
+ffffffc0086833d0 t of_fwnode_get_next_child_node.llvm.11155621884473351663
+ffffffc008683458 t of_fwnode_get_named_child_node.llvm.11155621884473351663
+ffffffc0086834fc t of_fwnode_get_reference_args.llvm.11155621884473351663
+ffffffc0086836d4 t of_fwnode_graph_get_next_endpoint.llvm.11155621884473351663
+ffffffc00868375c t of_fwnode_graph_get_remote_endpoint.llvm.11155621884473351663
+ffffffc008683824 t of_fwnode_graph_get_port_parent.llvm.11155621884473351663
+ffffffc0086838b8 t of_fwnode_graph_parse_endpoint.llvm.11155621884473351663
+ffffffc0086839ac t of_fwnode_iomap.llvm.11155621884473351663
+ffffffc008683a04 t of_fwnode_irq_get.llvm.11155621884473351663
+ffffffc008683a5c t of_fwnode_add_links.llvm.11155621884473351663
+ffffffc008683cac t parse_clocks
+ffffffc008683d74 t parse_interconnects
+ffffffc008683e3c t parse_iommus
+ffffffc008683f04 t parse_iommu_maps
+ffffffc008683fd0 t parse_mboxes
+ffffffc008684098 t parse_io_channels
+ffffffc008684160 t parse_interrupt_parent
+ffffffc008684224 t parse_dmas
+ffffffc0086842ec t parse_power_domains
+ffffffc0086843b4 t parse_hwlocks
+ffffffc00868447c t parse_extcon
+ffffffc008684540 t parse_nvmem_cells
+ffffffc008684604 t parse_phys
+ffffffc0086846cc t parse_wakeup_parent
+ffffffc008684790 t parse_pinctrl0
+ffffffc008684854 t parse_pinctrl1
+ffffffc008684918 t parse_pinctrl2
+ffffffc0086849dc t parse_pinctrl3
+ffffffc008684aa0 t parse_pinctrl4
+ffffffc008684b64 t parse_pinctrl5
+ffffffc008684c28 t parse_pinctrl6
+ffffffc008684cec t parse_pinctrl7
+ffffffc008684db0 t parse_pinctrl8
+ffffffc008684e74 t parse_remote_endpoint
+ffffffc008684f38 t parse_pwms
+ffffffc008685000 t parse_resets
+ffffffc0086850c8 t parse_leds
+ffffffc00868518c t parse_backlight
+ffffffc008685250 t parse_gpio_compat
+ffffffc008685350 t parse_interrupts
+ffffffc008685420 t parse_regulators
+ffffffc0086854fc t parse_gpio
+ffffffc0086855e4 t parse_gpios
+ffffffc00868570c T of_node_is_attached
+ffffffc00868572c t of_node_release
+ffffffc00868573c T __of_add_property_sysfs
+ffffffc00868583c t safe_name
+ffffffc00868591c t of_node_property_read
+ffffffc008685990 T __of_sysfs_remove_bin_file
+ffffffc0086859dc T __of_remove_property_sysfs
+ffffffc008685a40 T __of_update_property_sysfs
+ffffffc008685ab8 T __of_attach_node_sysfs
+ffffffc008685bac T __of_detach_node_sysfs
+ffffffc008685c30 T __unflatten_device_tree
+ffffffc008685db4 t unflatten_dt_nodes
+ffffffc0086860a0 T of_fdt_unflatten_tree
+ffffffc008686218 t of_fdt_is_compatible.llvm.13714122527566046620
+ffffffc0086862e8 t of_fdt_device_is_available
+ffffffc00868635c t reverse_nodes
+ffffffc0086863d4 t populate_properties
+ffffffc008686640 t of_fdt_raw_read
+ffffffc008686690 T of_pci_address_to_resource
+ffffffc0086866c4 t __of_address_to_resource.llvm.3341469626979944368
+ffffffc008686cfc T of_pci_range_to_resource
+ffffffc008686da4 T of_translate_address
+ffffffc008687290 T __of_get_dma_parent
+ffffffc008687354 T of_translate_dma_address
+ffffffc0086879b0 T __of_get_address
+ffffffc008687c5c T of_pci_range_parser_init
+ffffffc008687c8c t parser_init.llvm.3341469626979944368
+ffffffc008687e30 T of_pci_dma_range_parser_init
+ffffffc008687e64 T of_pci_range_parser_one
+ffffffc0086880c8 T of_address_to_resource
+ffffffc0086880fc T of_iomap
+ffffffc0086881c4 T of_io_request_and_map
+ffffffc0086882ec T of_dma_get_range
+ffffffc0086885b8 T of_dma_is_coherent
+ffffffc008688704 t of_bus_pci_match
+ffffffc008688838 t of_bus_pci_count_cells
+ffffffc008688860 t of_bus_pci_map
+ffffffc008688950 t of_bus_pci_translate
+ffffffc008688a04 t of_bus_pci_get_flags
+ffffffc008688a4c t of_bus_isa_match
+ffffffc008688a84 t of_bus_isa_count_cells
+ffffffc008688aac t of_bus_isa_map
+ffffffc008688b58 t of_bus_isa_translate
+ffffffc008688c0c t of_bus_isa_get_flags
+ffffffc008688c30 t of_bus_default_count_cells
+ffffffc008688c94 t of_bus_default_map
+ffffffc008688d1c t of_bus_default_translate
+ffffffc008688dd0 t of_bus_default_get_flags
+ffffffc008688de4 T irq_of_parse_and_map
+ffffffc008688e68 T of_irq_parse_one
+ffffffc008689018 T of_irq_find_parent
+ffffffc0086890f0 T of_irq_parse_raw
+ffffffc008689948 T of_irq_to_resource
+ffffffc008689aec T of_irq_get
+ffffffc008689bd0 T of_irq_get_byname
+ffffffc008689cec T of_irq_count
+ffffffc008689d80 T of_irq_to_resource_table
+ffffffc008689e08 T of_msi_map_id
+ffffffc008689ec0 T of_msi_map_get_device_domain
+ffffffc008689fb4 T of_msi_get_domain
+ffffffc00868a144 T of_msi_configure
+ffffffc00868a184 T of_reserved_mem_device_init_by_idx
+ffffffc00868a3c4 T of_reserved_mem_device_init_by_name
+ffffffc00868a41c T of_reserved_mem_device_release
+ffffffc00868a580 T of_reserved_mem_lookup
+ffffffc00868a624 T of_kexec_alloc_and_setup_fdt
+ffffffc00868ad44 T __hwspin_trylock
+ffffffc00868aed8 T __hwspin_lock_timeout
+ffffffc00868aff0 T __hwspin_unlock
+ffffffc00868b0b4 T of_hwspin_lock_get_id
+ffffffc00868b25c T of_hwspin_lock_get_id_byname
+ffffffc00868b2c4 T hwspin_lock_register
+ffffffc00868b41c T hwspin_lock_unregister
+ffffffc00868b540 T devm_hwspin_lock_unregister
+ffffffc00868b58c t devm_hwspin_lock_unreg
+ffffffc00868b5bc t devm_hwspin_lock_device_match
+ffffffc00868b5f0 T devm_hwspin_lock_register
+ffffffc00868b6b4 T hwspin_lock_get_id
+ffffffc00868b71c T hwspin_lock_request
+ffffffc00868b7e4 t __hwspin_lock_request
+ffffffc00868b948 T hwspin_lock_request_specific
+ffffffc00868ba40 T hwspin_lock_free
+ffffffc00868bb74 T devm_hwspin_lock_free
+ffffffc00868bbc0 t devm_hwspin_lock_release
+ffffffc00868bbf0 t devm_hwspin_lock_match
+ffffffc00868bc24 T devm_hwspin_lock_request
+ffffffc00868bcbc T devm_hwspin_lock_request_specific
+ffffffc00868bd5c T armpmu_map_event
+ffffffc00868be1c T armpmu_event_set_period
+ffffffc00868bf0c T armpmu_event_update
+ffffffc00868c058 T armpmu_free_irq
+ffffffc00868c114 T armpmu_request_irq
+ffffffc00868c3ec t armpmu_dispatch_irq
+ffffffc00868c46c T armpmu_alloc
+ffffffc00868c498 t __armpmu_alloc.llvm.6199167618844108264
+ffffffc00868c650 T armpmu_alloc_atomic
+ffffffc00868c680 T armpmu_free
+ffffffc00868c6c4 T armpmu_register
+ffffffc00868c81c t armpmu_free_pmuirq
+ffffffc00868c864 t armpmu_free_pmunmi
+ffffffc00868c8ac t armpmu_enable_percpu_pmuirq
+ffffffc00868c8dc t armpmu_free_percpu_pmuirq
+ffffffc00868c9a4 t armpmu_enable_percpu_pmunmi
+ffffffc00868c9ec t armpmu_disable_percpu_pmunmi
+ffffffc00868ca2c t armpmu_free_percpu_pmunmi
+ffffffc00868caf4 t armpmu_enable
+ffffffc00868cba0 t armpmu_disable
+ffffffc00868cc14 t armpmu_event_init
+ffffffc00868cf14 t armpmu_add
+ffffffc00868d0f4 t armpmu_del
+ffffffc00868d198 t armpmu_start
+ffffffc00868d2c0 t armpmu_stop
+ffffffc00868d440 t armpmu_read
+ffffffc00868d588 t armpmu_filter_match
+ffffffc00868d614 t cpus_show
+ffffffc00868d65c t cpu_pm_pmu_notify
+ffffffc00868d944 t arm_perf_starting_cpu
+ffffffc00868da3c t arm_perf_teardown_cpu
+ffffffc00868dafc T arm_pmu_device_probe
+ffffffc00868e0d0 T __traceiter_mc_event
+ffffffc00868e1e4 T __traceiter_arm_event
+ffffffc00868e264 T __traceiter_non_standard_event
+ffffffc00868e324 T __traceiter_aer_event
+ffffffc00868e3d4 t trace_event_raw_event_mc_event
+ffffffc00868e5a8 t perf_trace_mc_event
+ffffffc00868e7f4 t trace_event_raw_event_arm_event
+ffffffc00868e904 t perf_trace_arm_event
+ffffffc00868ea68 t trace_event_raw_event_non_standard_event
+ffffffc00868ebc8 t perf_trace_non_standard_event
+ffffffc00868ed8c t trace_event_raw_event_aer_event
+ffffffc00868eed8 t perf_trace_aer_event
+ffffffc00868f084 T log_non_standard_event
+ffffffc00868f1b0 T log_arm_hw_error
+ffffffc00868f2b0 t trace_raw_output_mc_event
+ffffffc00868f3e4 t trace_raw_output_arm_event
+ffffffc00868f460 t trace_raw_output_non_standard_event
+ffffffc00868f528 t trace_raw_output_aer_event
+ffffffc00868f644 T ras_userspace_consumers
+ffffffc00868f664 t trace_open
+ffffffc00868f6d8 t trace_release
+ffffffc00868f740 T devm_alloc_etherdev_mqs
+ffffffc00868f804 t devm_free_netdev
+ffffffc00868f834 T devm_register_netdev
+ffffffc00868f8f8 t netdev_devres_match
+ffffffc00868f914 t devm_unregister_netdev
+ffffffc00868f944 T move_addr_to_kernel
+ffffffc00868fb40 T sock_alloc_file
+ffffffc00868fc54 T sock_release
+ffffffc00868fcf4 T sock_from_file
+ffffffc00868fd28 T sockfd_lookup
+ffffffc00868fda4 T sock_alloc
+ffffffc00868fe38 T __sock_tx_timestamp
+ffffffc00868fe80 T sock_sendmsg
+ffffffc00868ff00 T kernel_sendmsg
+ffffffc00868ff94 T kernel_sendmsg_locked
+ffffffc008690028 T __sock_recv_timestamp
+ffffffc008690398 T __sock_recv_wifi_status
+ffffffc008690418 T __sock_recv_cmsgs
+ffffffc00869056c T sock_recvmsg
+ffffffc0086905f4 T kernel_recvmsg
+ffffffc00869069c T brioctl_set
+ffffffc0086906f0 T br_ioctl_call
+ffffffc0086907c0 T vlan_ioctl_set
+ffffffc008690814 T sock_create_lite
+ffffffc008690988 T sock_wake_async
+ffffffc008690a60 T __sock_create
+ffffffc008690d30 T sock_create
+ffffffc008690d7c T sock_create_kern
+ffffffc008690dac T __sys_socket_file
+ffffffc008690e70 T __sys_socket
+ffffffc008690ff4 T __arm64_sys_socket
+ffffffc008691034 T __sys_socketpair
+ffffffc008691554 T __arm64_sys_socketpair
+ffffffc008691598 T __sys_bind
+ffffffc0086916dc T __arm64_sys_bind
+ffffffc00869171c T __sys_listen
+ffffffc008691818 T __arm64_sys_listen
+ffffffc008691854 T do_accept
+ffffffc008691a70 t move_addr_to_user
+ffffffc008691ee0 T __sys_accept4
+ffffffc008691fc4 T __arm64_sys_accept4
+ffffffc008692004 T __arm64_sys_accept
+ffffffc008692044 T __sys_connect_file
+ffffffc0086920f4 T __sys_connect
+ffffffc008692240 T __arm64_sys_connect
+ffffffc008692280 T __sys_getsockname
+ffffffc0086923c8 T __arm64_sys_getsockname
+ffffffc008692404 T __sys_getpeername
+ffffffc00869255c T __arm64_sys_getpeername
+ffffffc008692598 T __sys_sendto
+ffffffc008692788 T __arm64_sys_sendto
+ffffffc0086927d0 T __arm64_sys_send
+ffffffc008692818 T __sys_recvfrom
+ffffffc0086929ec T __arm64_sys_recvfrom
+ffffffc008692a30 T __arm64_sys_recv
+ffffffc008692a78 T __sys_setsockopt
+ffffffc008692bc8 T __arm64_sys_setsockopt
+ffffffc008692c10 T __sys_getsockopt
+ffffffc008692d4c T __arm64_sys_getsockopt
+ffffffc008692d90 T __sys_shutdown_sock
+ffffffc008692dfc T __sys_shutdown
+ffffffc008692ee0 T __arm64_sys_shutdown
+ffffffc008692fcc T __copy_msghdr
+ffffffc0086930b4 T sendmsg_copy_msghdr
+ffffffc0086930e8 t copy_msghdr_from_user.llvm.13320531852100528006
+ffffffc008693374 T __sys_sendmsg_sock
+ffffffc0086933a8 t ____sys_sendmsg.llvm.13320531852100528006
+ffffffc008693734 T __sys_sendmsg
+ffffffc0086938a8 T __arm64_sys_sendmsg
+ffffffc0086938e8 T __sys_sendmmsg
+ffffffc008693c80 T __arm64_sys_sendmmsg
+ffffffc008693cc8 T recvmsg_copy_msghdr
+ffffffc008693d04 T __sys_recvmsg_sock
+ffffffc008693d34 t ____sys_recvmsg.llvm.13320531852100528006
+ffffffc008694118 T __sys_recvmsg
+ffffffc00869426c T __arm64_sys_recvmsg
+ffffffc0086942ac T __sys_recvmmsg
+ffffffc008694414 t do_recvmmsg
+ffffffc00869484c T __arm64_sys_recvmmsg
+ffffffc00869494c T sock_register
+ffffffc008694a18 T sock_unregister
+ffffffc008694a9c T sock_is_registered
+ffffffc008694ae8 T socket_seq_show
+ffffffc008694b38 T get_user_ifreq
+ffffffc008694ce8 T put_user_ifreq
+ffffffc008694e64 T kernel_bind
+ffffffc008694eb0 T kernel_listen
+ffffffc008694efc T kernel_accept
+ffffffc008695028 T kernel_connect
+ffffffc008695074 T kernel_getsockname
+ffffffc0086950c4 T kernel_getpeername
+ffffffc008695114 T kernel_sendpage
+ffffffc008695258 T kernel_sendpage_locked
+ffffffc0086952b4 T kernel_sock_shutdown
+ffffffc008695300 T kernel_sock_ip_overhead
+ffffffc00869539c t sock_read_iter
+ffffffc0086954e8 t sock_write_iter
+ffffffc00869562c t sock_poll
+ffffffc008695750 t sock_ioctl
+ffffffc008695df4 t sock_mmap
+ffffffc008695e48 t sock_close
+ffffffc008695f48 t sock_fasync
+ffffffc008695fec t sock_sendpage
+ffffffc008696140 t sock_splice_read
+ffffffc0086961a0 t sock_show_fdinfo
+ffffffc0086961f4 t get_net_ns
+ffffffc008696208 t sockfs_setattr
+ffffffc008696280 t sockfs_listxattr
+ffffffc008696314 t sockfs_init_fs_context
+ffffffc00869637c t sock_alloc_inode
+ffffffc0086963f8 t sock_free_inode
+ffffffc008696430 t sockfs_dname
+ffffffc008696478 t sockfs_xattr_get
+ffffffc0086964dc t sockfs_security_xattr_set
+ffffffc0086964f0 T sk_ns_capable
+ffffffc008696550 T sk_capable
+ffffffc0086965bc T sk_net_capable
+ffffffc008696628 T sk_set_memalloc
+ffffffc00869667c T sk_clear_memalloc
+ffffffc008696738 T __sk_backlog_rcv
+ffffffc0086967b4 T sk_error_report
+ffffffc0086968a4 T sock_get_timeout
+ffffffc008696904 T sock_copy_user_timeval
+ffffffc0086969b4 t copy_from_sockptr
+ffffffc008696b80 t copy_from_sockptr
+ffffffc008696d68 t copy_from_sockptr
+ffffffc008696f50 t copy_from_sockptr
+ffffffc00869711c t copy_from_sockptr
+ffffffc008697304 t copy_from_sockptr
+ffffffc0086974ac T __sock_queue_rcv_skb
+ffffffc008697828 T sock_queue_rcv_skb_reason
+ffffffc0086978b8 T __sk_receive_skb
+ffffffc008697c2c T __sk_dst_check
+ffffffc008697cc4 T sk_dst_check
+ffffffc008697e10 T sock_bindtoindex
+ffffffc008697ed4 T release_sock
+ffffffc008697f8c T sk_mc_loop
+ffffffc008698098 T sock_set_reuseaddr
+ffffffc008698164 T sock_set_reuseport
+ffffffc00869822c T sock_no_linger
+ffffffc0086982f8 T sock_set_priority
+ffffffc0086983c4 T sock_set_sndtimeo
+ffffffc0086984b0 T sock_enable_timestamps
+ffffffc0086985b4 T sock_set_timestamp
+ffffffc00869871c T sock_set_timestamping
+ffffffc0086989ac T sock_enable_timestamp
+ffffffc008698a24 T sock_set_keepalive
+ffffffc008698b1c T sock_set_rcvbuf
+ffffffc008698c08 T sock_set_mark
+ffffffc008698d14 t __sock_set_mark
+ffffffc008698d8c T sockopt_lock_sock
+ffffffc008698db8 T sockopt_release_sock
+ffffffc008698e70 T sockopt_ns_capable
+ffffffc008698ea0 T sockopt_capable
+ffffffc008698ed0 T sk_setsockopt
+ffffffc008699b28 t sock_set_timeout
+ffffffc008699cb4 t dst_negative_advice
+ffffffc008699d60 t sock_release_reserved_memory
+ffffffc008699e10 T sock_setsockopt
+ffffffc008699e40 T sk_getsockopt
+ffffffc00869a5fc t sk_get_peer_cred
+ffffffc00869a678 t put_cred
+ffffffc00869a6dc t groups_to_user
+ffffffc00869a7c8 T sk_get_meminfo
+ffffffc00869a86c t sock_gen_cookie
+ffffffc00869a8f0 T sock_getsockopt
+ffffffc00869a92c T sk_alloc
+ffffffc00869aaa8 t sk_prot_alloc
+ffffffc00869abbc T sk_destruct
+ffffffc00869ac30 t __sk_destruct
+ffffffc00869addc T sk_free
+ffffffc00869ae64 t __sk_free
+ffffffc00869b000 T sk_clone_lock
+ffffffc00869b340 T sk_free_unlock_clone
+ffffffc00869b3e0 T sk_setup_caps
+ffffffc00869b560 T sock_wfree
+ffffffc00869b78c t sock_def_write_space
+ffffffc00869b844 T __sock_wfree
+ffffffc00869b8d4 T skb_set_owner_w
+ffffffc00869ba2c T skb_orphan_partial
+ffffffc00869bbc4 T sock_rfree
+ffffffc00869bc98 T sock_efree
+ffffffc00869bd68 T sock_pfree
+ffffffc00869bdb8 T sock_i_uid
+ffffffc00869be18 T sock_i_ino
+ffffffc00869be78 T sock_wmalloc
+ffffffc00869bf04 T sock_omalloc
+ffffffc00869bfc4 t sock_ofree
+ffffffc00869c010 T sock_kmalloc
+ffffffc00869c0e8 T sock_kfree_s
+ffffffc00869c164 T sock_kzfree_s
+ffffffc00869c1e0 T sock_alloc_send_pskb
+ffffffc00869c4e0 T __sock_cmsg_send
+ffffffc00869c5f8 T sock_cmsg_send
+ffffffc00869c6d0 T skb_page_frag_refill
+ffffffc00869c820 T sk_page_frag_refill
+ffffffc00869c8a0 t sk_stream_moderate_sndbuf
+ffffffc00869c90c t sk_stream_moderate_sndbuf
+ffffffc00869c97c T __lock_sock
+ffffffc00869ca44 T __release_sock
+ffffffc00869cb74 T __sk_flush_backlog
+ffffffc00869cbc4 T sk_wait_data
+ffffffc00869cddc T __sk_mem_raise_allocated
+ffffffc00869d2c0 T __sk_mem_schedule
+ffffffc00869d32c T __sk_mem_reduce_allocated
+ffffffc00869d49c T __sk_mem_reclaim
+ffffffc00869d4dc T sk_set_peek_off
+ffffffc00869d4f8 T sock_no_bind
+ffffffc00869d50c T sock_no_connect
+ffffffc00869d520 T sock_no_socketpair
+ffffffc00869d534 T sock_no_accept
+ffffffc00869d548 T sock_no_getname
+ffffffc00869d55c T sock_no_ioctl
+ffffffc00869d570 T sock_no_listen
+ffffffc00869d584 T sock_no_shutdown
+ffffffc00869d598 T sock_no_sendmsg
+ffffffc00869d5ac T sock_no_sendmsg_locked
+ffffffc00869d5c0 T sock_no_recvmsg
+ffffffc00869d5d4 T sock_no_mmap
+ffffffc00869d5e8 T __receive_sock
+ffffffc00869d614 T sock_no_sendpage
+ffffffc00869d6cc T sock_no_sendpage_locked
+ffffffc00869d784 T sock_def_readable
+ffffffc00869d81c T sk_send_sigurg
+ffffffc00869d894 T sk_reset_timer
+ffffffc00869d92c T sk_stop_timer
+ffffffc00869d9b4 T sk_stop_timer_sync
+ffffffc00869da3c T sock_init_data_uid
+ffffffc00869dc08 t sock_def_wakeup
+ffffffc00869dc7c t sock_def_error_report
+ffffffc00869dd18 t sock_def_destruct
+ffffffc00869dd28 T sock_init_data
+ffffffc00869dd64 T lock_sock_nested
+ffffffc00869de4c T __lock_sock_fast
+ffffffc00869df3c T sock_gettstamp
+ffffffc00869e044 T sock_recv_errqueue
+ffffffc00869e198 T sock_common_getsockopt
+ffffffc00869e1f0 T sock_common_recvmsg
+ffffffc00869e28c T sock_common_setsockopt
+ffffffc00869e2e4 T sk_common_release
+ffffffc00869e46c T sock_prot_inuse_get
+ffffffc00869e520 T sock_inuse_get
+ffffffc00869e5c4 T proto_register
+ffffffc00869e884 T proto_unregister
+ffffffc00869e99c T sock_load_diag_module
+ffffffc00869ea5c T sk_busy_loop_end
+ffffffc00869eac8 T sock_bind_add
+ffffffc00869eb1c t copy_to_sockptr_offset
+ffffffc00869ecdc t copy_to_sockptr_offset
+ffffffc00869ee9c t copy_to_sockptr_offset
+ffffffc00869f010 t proto_seq_start
+ffffffc00869f060 t proto_seq_stop
+ffffffc00869f094 t proto_seq_next
+ffffffc00869f0cc t proto_seq_show
+ffffffc00869f430 T reqsk_queue_alloc
+ffffffc00869f450 T reqsk_fastopen_remove
+ffffffc00869f634 T napi_get_frags_check
+ffffffc00869f698 T __napi_alloc_frag_align
+ffffffc00869f6e8 T __netdev_alloc_frag_align
+ffffffc00869f7b0 T __build_skb
+ffffffc00869f89c T build_skb
+ffffffc00869f9ec T build_skb_around
+ffffffc00869fb00 T napi_build_skb
+ffffffc00869fba4 t __napi_build_skb
+ffffffc00869fce4 T __alloc_skb
+ffffffc00869ff80 T __netdev_alloc_skb
+ffffffc0086a01ac T __napi_alloc_skb
+ffffffc0086a0388 T skb_add_rx_frag
+ffffffc0086a0410 t skb_fill_page_desc
+ffffffc0086a0480 T skb_coalesce_rx_frag
+ffffffc0086a04c8 T skb_release_head_state
+ffffffc0086a054c T __kfree_skb
+ffffffc0086a05e4 t kfree_skbmem
+ffffffc0086a06b0 T kfree_skb_reason
+ffffffc0086a0824 T kfree_skb_list_reason
+ffffffc0086a0870 T skb_dump
+ffffffc0086a0d8c T skb_tx_error
+ffffffc0086a0ebc T consume_skb
+ffffffc0086a1054 T __consume_stateless_skb
+ffffffc0086a1120 t skb_release_data
+ffffffc0086a1308 T __kfree_skb_defer
+ffffffc0086a1430 T napi_skb_free_stolen_head
+ffffffc0086a1578 T napi_consume_skb
+ffffffc0086a17d0 T alloc_skb_for_msg
+ffffffc0086a1858 t __copy_skb_header
+ffffffc0086a19fc T skb_morph
+ffffffc0086a1a9c t __skb_clone
+ffffffc0086a1be8 T mm_account_pinned_pages
+ffffffc0086a1d58 T mm_unaccount_pinned_pages
+ffffffc0086a1dc4 T msg_zerocopy_realloc
+ffffffc0086a2000 T msg_zerocopy_callback
+ffffffc0086a2230 t net_zcopy_get
+ffffffc0086a22a4 t refcount_dec_and_test
+ffffffc0086a232c t refcount_dec_and_test
+ffffffc0086a23b4 t refcount_dec_and_test
+ffffffc0086a2440 T msg_zerocopy_put_abort
+ffffffc0086a24bc T skb_zerocopy_iter_stream
+ffffffc0086a2654 T ___pskb_trim
+ffffffc0086a29c4 T __skb_zcopy_downgrade_managed
+ffffffc0086a2a74 T skb_copy_ubufs
+ffffffc0086a3090 T skb_clone
+ffffffc0086a317c T skb_headers_offset_update
+ffffffc0086a31fc T skb_copy_header
+ffffffc0086a3298 T skb_copy
+ffffffc0086a3408 T skb_put
+ffffffc0086a347c T skb_copy_bits
+ffffffc0086a3708 T __pskb_copy_fclone
+ffffffc0086a3a4c t skb_zerocopy_clone
+ffffffc0086a3bbc T pskb_expand_head
+ffffffc0086a400c T skb_realloc_headroom
+ffffffc0086a40ac T __skb_unclone_keeptruesize
+ffffffc0086a4140 T skb_expand_head
+ffffffc0086a4330 T skb_copy_expand
+ffffffc0086a4528 T __skb_pad
+ffffffc0086a468c T pskb_put
+ffffffc0086a4720 t skb_over_panic
+ffffffc0086a477c T skb_push
+ffffffc0086a47dc t skb_under_panic
+ffffffc0086a4838 T skb_pull
+ffffffc0086a4880 T skb_pull_data
+ffffffc0086a48d4 T skb_trim
+ffffffc0086a491c T skb_condense
+ffffffc0086a49a8 T pskb_trim_rcsum_slow
+ffffffc0086a4abc T skb_checksum
+ffffffc0086a4af0 T __pskb_pull_tail
+ffffffc0086a4fac T skb_splice_bits
+ffffffc0086a50b8 t sock_spd_release
+ffffffc0086a5144 t __skb_splice_bits
+ffffffc0086a52d4 T skb_send_sock_locked
+ffffffc0086a5518 T skb_send_sock
+ffffffc0086a5768 T skb_store_bits
+ffffffc0086a59f4 T __skb_checksum
+ffffffc0086a5d30 t csum_partial_ext.llvm.5479456675584033067
+ffffffc0086a5d5c t csum_block_add_ext.llvm.5479456675584033067
+ffffffc0086a5d80 T skb_copy_and_csum_bits
+ffffffc0086a608c T __skb_checksum_complete_head
+ffffffc0086a6148 T __skb_checksum_complete
+ffffffc0086a623c T skb_zerocopy_headlen
+ffffffc0086a62a0 T skb_zerocopy
+ffffffc0086a6684 T skb_copy_and_csum_dev
+ffffffc0086a676c T skb_dequeue
+ffffffc0086a67f0 T skb_dequeue_tail
+ffffffc0086a687c T skb_queue_purge
+ffffffc0086a692c T skb_rbtree_purge
+ffffffc0086a69b8 T skb_queue_head
+ffffffc0086a6a30 T skb_queue_tail
+ffffffc0086a6aa8 T skb_unlink
+ffffffc0086a6b1c T skb_append
+ffffffc0086a6b98 T skb_split
+ffffffc0086a6f50 T skb_shift
+ffffffc0086a7470 t skb_prepare_for_shift
+ffffffc0086a7530 t __skb_frag_ref
+ffffffc0086a7590 T skb_prepare_seq_read
+ffffffc0086a75b0 T skb_seq_read
+ffffffc0086a7838 T skb_abort_seq_read
+ffffffc0086a78a4 T skb_find_text
+ffffffc0086a79ac t skb_ts_get_next_block
+ffffffc0086a79dc t skb_ts_finish
+ffffffc0086a7a48 T skb_append_pagefrags
+ffffffc0086a7be8 T skb_pull_rcsum
+ffffffc0086a7ca0 T skb_segment_list
+ffffffc0086a8148 T skb_segment
+ffffffc0086a8e30 T skb_to_sgvec
+ffffffc0086a8e84 t __skb_to_sgvec
+ffffffc0086a90f8 T skb_to_sgvec_nomark
+ffffffc0086a9128 T skb_cow_data
+ffffffc0086a948c T sock_queue_err_skb
+ffffffc0086a967c t sock_rmem_free
+ffffffc0086a96c8 T sock_dequeue_err_skb
+ffffffc0086a97cc T skb_clone_sk
+ffffffc0086a992c T skb_complete_tx_timestamp
+ffffffc0086a9b88 T __skb_tstamp_tx
+ffffffc0086a9e04 T skb_tstamp_tx
+ffffffc0086a9e40 T skb_complete_wifi_ack
+ffffffc0086a9fd8 T skb_partial_csum_set
+ffffffc0086aa0b0 T skb_checksum_setup
+ffffffc0086aa414 T skb_checksum_trimmed
+ffffffc0086aa63c T __skb_warn_lro_forwarding
+ffffffc0086aa69c T kfree_skb_partial
+ffffffc0086aa79c T skb_try_coalesce
+ffffffc0086aab44 T skb_scrub_packet
+ffffffc0086aabd4 T skb_gso_validate_network_len
+ffffffc0086aacc4 T skb_gso_validate_mac_len
+ffffffc0086aadb4 T skb_vlan_untag
+ffffffc0086ab050 T skb_ensure_writable
+ffffffc0086ab14c T __skb_vlan_pop
+ffffffc0086ab2f8 T skb_vlan_pop
+ffffffc0086ab3e0 T skb_vlan_push
+ffffffc0086ab5d4 T skb_eth_pop
+ffffffc0086ab714 T skb_eth_push
+ffffffc0086ab8a4 T skb_mpls_push
+ffffffc0086abaf4 T skb_mpls_pop
+ffffffc0086abc94 T skb_mpls_update_lse
+ffffffc0086abd78 T skb_mpls_dec_ttl
+ffffffc0086abee8 T alloc_skb_with_frags
+ffffffc0086ac0c4 T pskb_extract
+ffffffc0086ac17c t pskb_carve
+ffffffc0086ac808 T __skb_ext_alloc
+ffffffc0086ac850 T __skb_ext_set
+ffffffc0086ac8c8 T skb_ext_add
+ffffffc0086aca88 T __skb_ext_del
+ffffffc0086acbb0 T __skb_ext_put
+ffffffc0086acd14 T skb_attempt_defer_free
+ffffffc0086acef0 t __splice_segment
+ffffffc0086ad174 t warn_crc32c_csum_update
+ffffffc0086ad1d0 t warn_crc32c_csum_combine
+ffffffc0086ad228 t skb_checksum_setup_ip
+ffffffc0086ad424 T __skb_wait_for_more_packets
+ffffffc0086ad5d8 t receiver_wake_function
+ffffffc0086ad61c T __skb_try_recv_from_queue
+ffffffc0086ad7e0 T __skb_try_recv_datagram
+ffffffc0086ad9c4 T __skb_recv_datagram
+ffffffc0086adab0 T skb_recv_datagram
+ffffffc0086adb9c T skb_free_datagram
+ffffffc0086adbcc T __skb_free_datagram_locked
+ffffffc0086add38 T __sk_queue_drop_skb
+ffffffc0086ade80 T skb_kill_datagram
+ffffffc0086adedc T skb_copy_and_hash_datagram_iter
+ffffffc0086adf10 t __skb_datagram_iter
+ffffffc0086ae18c T skb_copy_datagram_iter
+ffffffc0086ae288 T skb_copy_datagram_from_iter
+ffffffc0086ae490 T __zerocopy_sg_from_iter
+ffffffc0086ae8fc T zerocopy_sg_from_iter
+ffffffc0086ae978 T skb_copy_and_csum_datagram_msg
+ffffffc0086aeadc T datagram_poll
+ffffffc0086aec44 t __skb_datagram_iter.1
+ffffffc0086aef20 T sk_stream_write_space
+ffffffc0086af078 T sk_stream_wait_connect
+ffffffc0086af26c T sk_stream_wait_close
+ffffffc0086af390 T sk_stream_wait_memory
+ffffffc0086af7f4 T sk_stream_error
+ffffffc0086af894 T sk_stream_kill_queues
+ffffffc0086af964 T __scm_destroy
+ffffffc0086af9e0 T __scm_send
+ffffffc0086afd9c T put_cmsg
+ffffffc0086b03d0 T put_cmsg_scm_timestamping64
+ffffffc0086b0450 T put_cmsg_scm_timestamping
+ffffffc0086b04d0 T scm_detach_fds
+ffffffc0086b0a28 T scm_fp_dup
+ffffffc0086b0b48 T gnet_stats_start_copy_compat
+ffffffc0086b0c54 T gnet_stats_start_copy
+ffffffc0086b0c94 T gnet_stats_basic_sync_init
+ffffffc0086b0cac T gnet_stats_add_basic
+ffffffc0086b0e5c T gnet_stats_copy_basic
+ffffffc0086b0e88 t ___gnet_stats_copy_basic.llvm.5886733306445576898
+ffffffc0086b1030 T gnet_stats_copy_basic_hw
+ffffffc0086b1060 T gnet_stats_copy_rate_est
+ffffffc0086b1178 T gnet_stats_add_queue
+ffffffc0086b12a4 T gnet_stats_copy_queue
+ffffffc0086b1440 T gnet_stats_copy_app
+ffffffc0086b1504 T gnet_stats_finish_copy
+ffffffc0086b1600 T gen_new_estimator
+ffffffc0086b1858 t est_timer
+ffffffc0086b19bc T gen_kill_estimator
+ffffffc0086b1a30 T gen_replace_estimator
+ffffffc0086b1a5c T gen_estimator_active
+ffffffc0086b1a7c T gen_estimator_read
+ffffffc0086b1b2c T peernet2id_alloc
+ffffffc0086b1c20 t rtnl_net_notifyid
+ffffffc0086b1d3c T peernet2id
+ffffffc0086b1da4 T peernet_has_id
+ffffffc0086b1e08 T get_net_ns_by_id
+ffffffc0086b1e68 T get_net_ns_by_pid
+ffffffc0086b1ee8 T register_pernet_subsys
+ffffffc0086b1f4c t rtnl_net_newid
+ffffffc0086b2204 t rtnl_net_getid
+ffffffc0086b25a4 t rtnl_net_dumpid
+ffffffc0086b27cc t register_pernet_operations.llvm.15052227419773994910
+ffffffc0086b28c4 T unregister_pernet_subsys
+ffffffc0086b2914 t unregister_pernet_operations.llvm.15052227419773994910
+ffffffc0086b2b2c T register_pernet_device
+ffffffc0086b2bb4 T unregister_pernet_device
+ffffffc0086b2c20 t net_eq_idr
+ffffffc0086b2c34 t rtnl_net_fill
+ffffffc0086b2d64 t ops_init
+ffffffc0086b2ed0 t rtnl_net_dumpid_one
+ffffffc0086b2f6c T secure_tcpv6_ts_off
+ffffffc0086b3054 T secure_tcpv6_seq
+ffffffc0086b3144 T secure_ipv6_port_ephemeral
+ffffffc0086b3238 T secure_tcp_ts_off
+ffffffc0086b3324 T secure_tcp_seq
+ffffffc0086b3410 T secure_ipv4_port_ephemeral
+ffffffc0086b3508 T skb_flow_dissector_init
+ffffffc0086b3590 T __skb_flow_get_ports
+ffffffc0086b36a4 T skb_flow_get_icmp_tci
+ffffffc0086b3794 T skb_flow_dissect_meta
+ffffffc0086b37b8 T skb_flow_dissect_ct
+ffffffc0086b37c8 T skb_flow_dissect_tunnel_info
+ffffffc0086b3968 T skb_flow_dissect_hash
+ffffffc0086b398c T bpf_flow_dissect
+ffffffc0086b3b04 T __skb_flow_dissect
+ffffffc0086b587c T flow_get_u32_src
+ffffffc0086b58d4 T flow_get_u32_dst
+ffffffc0086b5924 T flow_hash_from_keys
+ffffffc0086b5abc T make_flow_keys_digest
+ffffffc0086b5af8 T __skb_get_hash_symmetric
+ffffffc0086b5cd8 T __skb_get_hash
+ffffffc0086b5de8 t ___skb_get_hash
+ffffffc0086b5f54 T skb_get_hash_perturb
+ffffffc0086b5fc8 T __skb_get_poff
+ffffffc0086b60f8 T skb_get_poff
+ffffffc0086b61b0 T __get_hash_from_flowi6
+ffffffc0086b6244 t proc_do_dev_weight
+ffffffc0086b631c t proc_do_rss_key
+ffffffc0086b6424 t rps_sock_flow_sysctl
+ffffffc0086b6668 t flow_limit_cpu_sysctl
+ffffffc0086b6980 t flow_limit_table_len_sysctl
+ffffffc0086b6a7c T netdev_name_in_use
+ffffffc0086b6b08 T netdev_name_node_alt_create
+ffffffc0086b6c54 T netdev_name_node_alt_destroy
+ffffffc0086b6d60 T dev_add_pack
+ffffffc0086b6e18 T __dev_remove_pack
+ffffffc0086b6ef4 T dev_remove_pack
+ffffffc0086b6fec T synchronize_net
+ffffffc0086b7030 T dev_get_iflink
+ffffffc0086b708c T dev_fill_metadata_dst
+ffffffc0086b71d8 T dev_fill_forward_path
+ffffffc0086b731c T __dev_get_by_name
+ffffffc0086b73ac T dev_get_by_name_rcu
+ffffffc0086b744c T dev_get_by_name
+ffffffc0086b7570 T __dev_get_by_index
+ffffffc0086b75d4 T dev_get_by_index_rcu
+ffffffc0086b7628 T dev_get_by_index
+ffffffc0086b7734 T dev_get_by_napi_id
+ffffffc0086b77ac T netdev_get_name
+ffffffc0086b7874 T dev_getbyhwaddr_rcu
+ffffffc0086b7908 T dev_getfirstbyhwtype
+ffffffc0086b7a04 T __dev_get_by_flags
+ffffffc0086b7ac4 T dev_valid_name
+ffffffc0086b7b78 T dev_alloc_name
+ffffffc0086b7ba0 t dev_alloc_name_ns
+ffffffc0086b7eb0 T dev_change_name
+ffffffc0086b820c t dev_get_valid_name
+ffffffc0086b8360 T netdev_info
+ffffffc0086b83f8 T netdev_adjacent_rename_links
+ffffffc0086b856c T call_netdevice_notifiers
+ffffffc0086b8640 T netdev_err
+ffffffc0086b86d8 T dev_set_alias
+ffffffc0086b87a8 T dev_get_alias
+ffffffc0086b882c T netdev_features_change
+ffffffc0086b88f4 T netdev_state_change
+ffffffc0086b89e4 t call_netdevice_notifiers_info
+ffffffc0086b8a88 T __netdev_notify_peers
+ffffffc0086b8c10 T netdev_notify_peers
+ffffffc0086b8c58 t __dev_open
+ffffffc0086b8ebc T dev_close_many
+ffffffc0086b9070 t __dev_close_many
+ffffffc0086b9264 T dev_close
+ffffffc0086b9324 T dev_disable_lro
+ffffffc0086b93dc T netdev_update_features
+ffffffc0086b94b4 t netdev_reg_state
+ffffffc0086b9530 T netdev_lower_get_next
+ffffffc0086b9568 T netdev_cmd_to_name
+ffffffc0086b95a0 T register_netdevice_notifier
+ffffffc0086b976c t call_netdevice_register_net_notifiers
+ffffffc0086b993c T unregister_netdevice_notifier
+ffffffc0086b9acc T register_netdevice_notifier_net
+ffffffc0086b9b70 T unregister_netdevice_notifier_net
+ffffffc0086b9cbc T register_netdevice_notifier_dev_net
+ffffffc0086b9d9c T unregister_netdevice_notifier_dev_net
+ffffffc0086b9f20 T net_enable_timestamp
+ffffffc0086ba000 T net_disable_timestamp
+ffffffc0086ba0e4 T is_skb_forwardable
+ffffffc0086ba148 T __dev_forward_skb
+ffffffc0086ba174 t __dev_forward_skb2
+ffffffc0086ba370 T dev_forward_skb
+ffffffc0086ba3c0 t netif_rx_internal
+ffffffc0086ba570 T dev_forward_skb_nomtu
+ffffffc0086ba5c0 T dev_nit_active
+ffffffc0086ba608 T dev_queue_xmit_nit
+ffffffc0086ba924 T netdev_txq_to_tc
+ffffffc0086bab34 T __netif_set_xps_queue
+ffffffc0086bb2f8 T netif_set_xps_queue
+ffffffc0086bb360 T netdev_reset_tc
+ffffffc0086bb468 T netdev_set_tc_queue
+ffffffc0086bb55c T netdev_set_num_tc
+ffffffc0086bb66c T netdev_unbind_sb_channel
+ffffffc0086bb784 T netdev_bind_sb_channel_queue
+ffffffc0086bb818 T netdev_set_sb_channel
+ffffffc0086bb858 T netif_set_real_num_tx_queues
+ffffffc0086bbad4 T netif_set_real_num_rx_queues
+ffffffc0086bbb90 T netif_set_real_num_queues
+ffffffc0086bbde4 T netif_set_tso_max_size
+ffffffc0086bbe1c T netif_set_tso_max_segs
+ffffffc0086bbe48 T netif_inherit_tso_max
+ffffffc0086bbea4 T netif_get_num_default_rss_queues
+ffffffc0086bbfb8 T __netif_schedule
+ffffffc0086bc08c T netif_schedule_queue
+ffffffc0086bc184 T netif_tx_wake_queue
+ffffffc0086bc2b0 T __dev_kfree_skb_irq
+ffffffc0086bc37c T __dev_kfree_skb_any
+ffffffc0086bc494 T netif_device_detach
+ffffffc0086bc544 T netif_tx_stop_all_queues
+ffffffc0086bc5b0 T netif_device_attach
+ffffffc0086bc668 T skb_checksum_help
+ffffffc0086bc7f4 t skb_warn_bad_offload
+ffffffc0086bc8e0 T skb_crc32c_csum_help
+ffffffc0086bca04 T skb_network_protocol
+ffffffc0086bcba0 T __skb_gso_segment
+ffffffc0086bcccc t skb_cow_head
+ffffffc0086bcd3c T netdev_rx_csum_fault
+ffffffc0086bcd7c t do_netdev_rx_csum_fault
+ffffffc0086bcddc T passthru_features_check
+ffffffc0086bcdf0 T netif_skb_features
+ffffffc0086bd064 T dev_hard_start_xmit
+ffffffc0086bd31c T skb_csum_hwoffload_help
+ffffffc0086bd394 T validate_xmit_skb_list
+ffffffc0086bd420 t validate_xmit_skb
+ffffffc0086bd744 T dev_loopback_xmit
+ffffffc0086bd880 T netif_rx
+ffffffc0086bda18 T dev_pick_tx_zero
+ffffffc0086bda2c T dev_pick_tx_cpu_id
+ffffffc0086bda5c T netdev_pick_tx
+ffffffc0086bdddc T netdev_core_pick_tx
+ffffffc0086bdefc T __dev_queue_xmit
+ffffffc0086be94c T __dev_direct_xmit
+ffffffc0086bec80 T rps_may_expire_flow
+ffffffc0086bed74 T bpf_prog_run_generic_xdp
+ffffffc0086bf110 T generic_xdp_tx
+ffffffc0086bf3d4 T do_xdp_generic
+ffffffc0086bf654 T __netif_rx
+ffffffc0086bf7c0 T netdev_is_rx_handler_busy
+ffffffc0086bf850 T netdev_rx_handler_register
+ffffffc0086bf910 T netdev_rx_handler_unregister
+ffffffc0086bf9ac T netif_receive_skb_core
+ffffffc0086bfa68 T netif_receive_skb_list_internal
+ffffffc0086bfd48 t get_rps_cpu
+ffffffc0086bffb0 t enqueue_to_backlog
+ffffffc0086c0284 T netif_receive_skb
+ffffffc0086c047c T netif_receive_skb_list
+ffffffc0086c0604 T __napi_schedule
+ffffffc0086c0724 T napi_schedule_prep
+ffffffc0086c07ac T __napi_schedule_irqoff
+ffffffc0086c0894 T napi_complete_done
+ffffffc0086c0aac T napi_busy_loop
+ffffffc0086c0e98 t busy_poll_stop
+ffffffc0086c111c T dev_set_threaded
+ffffffc0086c12d0 T netif_napi_add_weight
+ffffffc0086c1620 t napi_watchdog
+ffffffc0086c16c0 T netdev_printk
+ffffffc0086c1748 T napi_disable
+ffffffc0086c185c T napi_enable
+ffffffc0086c1904 T __netif_napi_del
+ffffffc0086c1b5c T netdev_has_upper_dev
+ffffffc0086c1cb8 T netdev_walk_all_upper_dev_rcu
+ffffffc0086c1e08 T netdev_has_upper_dev_all_rcu
+ffffffc0086c1f10 T netdev_has_any_upper_dev
+ffffffc0086c1f9c T netdev_master_upper_dev_get
+ffffffc0086c2040 T netdev_adjacent_get_private
+ffffffc0086c2054 T netdev_upper_get_next_dev_rcu
+ffffffc0086c2090 T netdev_lower_get_next_private
+ffffffc0086c20c8 T netdev_lower_get_next_private_rcu
+ffffffc0086c2104 T netdev_walk_all_lower_dev
+ffffffc0086c2250 T netdev_next_lower_dev_rcu
+ffffffc0086c228c T netdev_walk_all_lower_dev_rcu
+ffffffc0086c23dc T netdev_lower_get_first_private_rcu
+ffffffc0086c2468 T netdev_master_upper_dev_get_rcu
+ffffffc0086c24fc T netdev_upper_dev_link
+ffffffc0086c2534 t __netdev_upper_dev_link
+ffffffc0086c29dc T netdev_master_upper_dev_link
+ffffffc0086c2a18 T netdev_upper_dev_unlink
+ffffffc0086c2a40 t __netdev_upper_dev_unlink
+ffffffc0086c2f34 T netdev_adjacent_change_prepare
+ffffffc0086c3078 T netdev_adjacent_change_commit
+ffffffc0086c3110 T netdev_adjacent_change_abort
+ffffffc0086c31ac T netdev_bonding_info_change
+ffffffc0086c328c T netdev_offload_xstats_enable
+ffffffc0086c3464 T netdev_offload_xstats_enabled
+ffffffc0086c3504 T netdev_offload_xstats_disable
+ffffffc0086c36a4 T netdev_offload_xstats_get
+ffffffc0086c39e0 T netdev_offload_xstats_report_delta
+ffffffc0086c3a78 T netdev_offload_xstats_report_used
+ffffffc0086c3a90 T netdev_offload_xstats_push_delta
+ffffffc0086c3bc0 T netdev_get_xmit_slave
+ffffffc0086c3c1c T netdev_sk_get_lowest_dev
+ffffffc0086c3c9c T netdev_lower_dev_get_private
+ffffffc0086c3ce8 T netdev_lower_state_changed
+ffffffc0086c3e04 T dev_set_promiscuity
+ffffffc0086c3e68 t __dev_set_promiscuity
+ffffffc0086c4010 T dev_set_rx_mode
+ffffffc0086c40f4 T dev_set_allmulti
+ffffffc0086c4120 t __dev_set_allmulti.llvm.10477025129815915192
+ffffffc0086c4264 T __dev_set_rx_mode
+ffffffc0086c431c T dev_get_flags
+ffffffc0086c4388 T __dev_change_flags
+ffffffc0086c458c T __dev_notify_flags
+ffffffc0086c4790 T dev_change_flags
+ffffffc0086c4804 T __dev_set_mtu
+ffffffc0086c4868 T dev_validate_mtu
+ffffffc0086c48f0 T dev_set_mtu_ext
+ffffffc0086c4b10 t call_netdevice_notifiers_mtu
+ffffffc0086c4be0 T dev_set_mtu
+ffffffc0086c4c9c T dev_change_tx_queue_len
+ffffffc0086c4de4 T dev_set_group
+ffffffc0086c4df8 T dev_pre_changeaddr_notify
+ffffffc0086c4ed8 T dev_set_mac_address
+ffffffc0086c50c8 T dev_set_mac_address_user
+ffffffc0086c513c T dev_get_mac_address
+ffffffc0086c524c T dev_change_carrier
+ffffffc0086c52b8 T dev_get_phys_port_id
+ffffffc0086c5310 T dev_get_phys_port_name
+ffffffc0086c536c T dev_get_port_parent_id
+ffffffc0086c54d0 T netdev_port_same_parent_id
+ffffffc0086c55a0 T dev_change_proto_down
+ffffffc0086c5614 T dev_change_proto_down_reason
+ffffffc0086c5690 T dev_xdp_prog_count
+ffffffc0086c56e0 T dev_xdp_prog_id
+ffffffc0086c5734 T bpf_xdp_link_attach
+ffffffc0086c5858 T dev_change_xdp_fd
+ffffffc0086c5bb8 T __netdev_update_features
+ffffffc0086c6574 T netdev_change_features
+ffffffc0086c664c T netif_stacked_transfer_operstate
+ffffffc0086c67c8 T register_netdevice
+ffffffc0086c6d6c t netdev_hold
+ffffffc0086c6e08 t list_netdevice
+ffffffc0086c6f6c T unregister_netdevice_queue
+ffffffc0086c7098 T init_dummy_netdev
+ffffffc0086c7150 T register_netdev
+ffffffc0086c71b0 T netdev_refcnt_read
+ffffffc0086c7254 T netdev_run_todo
+ffffffc0086c7870 T free_netdev
+ffffffc0086c7a00 T netdev_stats_to_stats64
+ffffffc0086c7b80 T netdev_core_stats_alloc
+ffffffc0086c7c30 T dev_get_stats
+ffffffc0086c80ac T dev_fetch_sw_netstats
+ffffffc0086c8190 T dev_get_tstats64
+ffffffc0086c83e8 T dev_ingress_queue_create
+ffffffc0086c83fc T netdev_set_default_ethtool_ops
+ffffffc0086c842c T netdev_freemem
+ffffffc0086c8460 T alloc_netdev_mqs
+ffffffc0086c8814 T unregister_netdevice_many
+ffffffc0086c92ac T unregister_netdev
+ffffffc0086c939c T __dev_change_net_namespace
+ffffffc0086c942c T netdev_increment_features
+ffffffc0086c9488 T netdev_drivername
+ffffffc0086c94bc t __netdev_printk
+ffffffc0086c9688 T netdev_emerg
+ffffffc0086c9720 T netdev_alert
+ffffffc0086c97b8 T netdev_crit
+ffffffc0086c9850 T netdev_warn
+ffffffc0086c98e8 T netdev_notice
+ffffffc0086c9980 t netstamp_clear
+ffffffc0086c9a40 t clean_xps_maps
+ffffffc0086c9bec t skb_header_pointer
+ffffffc0086c9c50 t skb_header_pointer
+ffffffc0086c9cb4 t skb_header_pointer
+ffffffc0086c9d18 t skb_header_pointer
+ffffffc0086c9d7c t dev_qdisc_enqueue
+ffffffc0086c9e84 t qdisc_run_end
+ffffffc0086c9eec t qdisc_run
+ffffffc0086ca06c t __netif_receive_skb_core
+ffffffc0086caba8 t deliver_ptype_list_skb
+ffffffc0086cad10 t set_rps_cpu
+ffffffc0086cae80 t __netif_receive_skb_list_core
+ffffffc0086cb13c t __netif_receive_skb
+ffffffc0086cb270 t napi_threaded_poll
+ffffffc0086cb374 t __napi_poll
+ffffffc0086cb594 t napi_schedule
+ffffffc0086cb630 t __netdev_update_upper_level
+ffffffc0086cb694 t __netdev_walk_all_lower_dev
+ffffffc0086cb7ec t __netdev_update_lower_level
+ffffffc0086cb858 t __netdev_walk_all_upper_dev
+ffffffc0086cb9ac t __netdev_adjacent_dev_unlink_neighbour
+ffffffc0086cba04 t __netdev_adjacent_dev_insert
+ffffffc0086cbd20 t __netdev_adjacent_dev_remove
+ffffffc0086cbef8 t generic_xdp_install
+ffffffc0086cbff8 t flush_backlog
+ffffffc0086cc220 t rps_trigger_softirq
+ffffffc0086cc304 t trigger_rx_softirq
+ffffffc0086cc34c t process_backlog
+ffffffc0086cc514 t net_tx_action
+ffffffc0086cc788 t net_rx_action
+ffffffc0086ccae8 t dev_cpu_dead
+ffffffc0086ccd98 t trace_kfree_skb
+ffffffc0086cce58 T __hw_addr_sync
+ffffffc0086ccf34 t __hw_addr_unsync_one
+ffffffc0086ccfec T __hw_addr_unsync
+ffffffc0086cd06c T __hw_addr_sync_dev
+ffffffc0086cd1fc T __hw_addr_ref_sync_dev
+ffffffc0086cd388 T __hw_addr_ref_unsync_dev
+ffffffc0086cd498 T __hw_addr_unsync_dev
+ffffffc0086cd5b0 T __hw_addr_init
+ffffffc0086cd5d0 T dev_addr_check
+ffffffc0086cd6f0 T dev_addr_flush
+ffffffc0086cd7a0 T dev_addr_init
+ffffffc0086cd84c T dev_addr_mod
+ffffffc0086cd978 T dev_addr_add
+ffffffc0086cda4c T dev_addr_del
+ffffffc0086cdb48 T dev_uc_add_excl
+ffffffc0086cdbe8 t __hw_addr_add_ex
+ffffffc0086cddd4 T dev_uc_add
+ffffffc0086cde78 T dev_uc_del
+ffffffc0086cdf14 T dev_uc_sync
+ffffffc0086ce040 T dev_uc_sync_multiple
+ffffffc0086ce15c T dev_uc_unsync
+ffffffc0086ce24c T dev_uc_flush
+ffffffc0086ce320 T dev_uc_init
+ffffffc0086ce344 T dev_mc_add_excl
+ffffffc0086ce3e8 T dev_mc_add
+ffffffc0086ce48c T dev_mc_add_global
+ffffffc0086ce530 T dev_mc_del
+ffffffc0086ce5cc T dev_mc_del_global
+ffffffc0086ce668 T dev_mc_sync
+ffffffc0086ce794 T dev_mc_sync_multiple
+ffffffc0086ce8b0 T dev_mc_unsync
+ffffffc0086ce9a0 T dev_mc_flush
+ffffffc0086cea74 T dev_mc_init
+ffffffc0086cea94 t __hw_addr_del_ex
+ffffffc0086cebec T dst_discard_out
+ffffffc0086cec24 T dst_init
+ffffffc0086ced54 t dst_discard
+ffffffc0086ced88 t dst_discard
+ffffffc0086cedbc t dst_discard
+ffffffc0086cedf0 t dst_discard
+ffffffc0086cee24 T dst_alloc
+ffffffc0086cef34 T dst_destroy
+ffffffc0086cf098 T metadata_dst_free
+ffffffc0086cf0e4 T dst_release_immediate
+ffffffc0086cf1d0 T dst_dev_put
+ffffffc0086cf358 T dst_release
+ffffffc0086cf44c t dst_destroy_rcu
+ffffffc0086cf47c T dst_cow_metrics_generic
+ffffffc0086cf5e0 T __dst_destroy_metrics_generic
+ffffffc0086cf674 T dst_blackhole_check
+ffffffc0086cf688 T dst_blackhole_cow_metrics
+ffffffc0086cf69c T dst_blackhole_neigh_lookup
+ffffffc0086cf6b0 T dst_blackhole_update_pmtu
+ffffffc0086cf6c0 T dst_blackhole_redirect
+ffffffc0086cf6d0 T dst_blackhole_mtu
+ffffffc0086cf704 T metadata_dst_alloc
+ffffffc0086cf7c4 T metadata_dst_alloc_percpu
+ffffffc0086cf8f8 T metadata_dst_free_percpu
+ffffffc0086cf9b0 T register_netevent_notifier
+ffffffc0086cf9e8 T unregister_netevent_notifier
+ffffffc0086cfa20 T call_netevent_notifiers
+ffffffc0086cfa5c T neigh_rand_reach_time
+ffffffc0086cfaa0 T neigh_remove_one
+ffffffc0086cfc2c T neigh_changeaddr
+ffffffc0086cfc8c t neigh_flush_dev.llvm.1076438493974378977
+ffffffc0086cff28 T neigh_carrier_down
+ffffffc0086cff58 t __neigh_ifdown.llvm.1076438493974378977
+ffffffc0086d0124 T neigh_ifdown
+ffffffc0086d0158 T neigh_lookup
+ffffffc0086d03dc T neigh_lookup_nodev
+ffffffc0086d0644 T __neigh_create
+ffffffc0086d0678 t ___neigh_create.llvm.1076438493974378977
+ffffffc0086d1130 T __pneigh_lookup
+ffffffc0086d11cc T pneigh_lookup
+ffffffc0086d145c T pneigh_delete
+ffffffc0086d15e8 T neigh_destroy
+ffffffc0086d1914 t neigh_del_timer
+ffffffc0086d19c0 t __skb_queue_purge
+ffffffc0086d1a38 T __neigh_event_send
+ffffffc0086d204c t neigh_add_timer
+ffffffc0086d215c T neigh_update
+ffffffc0086d2188 t __neigh_update.llvm.1076438493974378977
+ffffffc0086d2bc8 T __neigh_set_probe_once
+ffffffc0086d2c48 T neigh_event_ns
+ffffffc0086d2d20 T neigh_resolve_output
+ffffffc0086d2f20 t neigh_event_send
+ffffffc0086d2f80 t neigh_event_send
+ffffffc0086d2fe4 T neigh_connected_output
+ffffffc0086d3120 T neigh_direct_output
+ffffffc0086d3154 T pneigh_enqueue
+ffffffc0086d32f4 T neigh_parms_alloc
+ffffffc0086d3508 T neigh_parms_release
+ffffffc0086d3620 t neigh_rcu_free_parms
+ffffffc0086d36ac T neigh_table_init
+ffffffc0086d3938 t neigh_hash_alloc
+ffffffc0086d3a14 t neigh_periodic_work
+ffffffc0086d3d3c t neigh_managed_work
+ffffffc0086d3e14 t neigh_proxy_process
+ffffffc0086d4060 T neigh_table_clear
+ffffffc0086d414c t pneigh_queue_purge
+ffffffc0086d438c t neigh_hash_free_rcu
+ffffffc0086d4404 T neigh_for_each
+ffffffc0086d4504 T __neigh_for_each_release
+ffffffc0086d46a4 t neigh_cleanup_and_release
+ffffffc0086d47f0 T neigh_xmit
+ffffffc0086d4a80 T neigh_seq_start
+ffffffc0086d4d88 T neigh_seq_next
+ffffffc0086d5024 t pneigh_get_first
+ffffffc0086d5150 T neigh_seq_stop
+ffffffc0086d518c T neigh_app_ns
+ffffffc0086d51c0 t __neigh_notify.llvm.1076438493974378977
+ffffffc0086d52ac T neigh_proc_dointvec
+ffffffc0086d5320 t neigh_proc_update.llvm.1076438493974378977
+ffffffc0086d54a0 T neigh_proc_dointvec_jiffies
+ffffffc0086d551c T neigh_proc_dointvec_ms_jiffies
+ffffffc0086d5598 T neigh_sysctl_register
+ffffffc0086d585c t neigh_proc_base_reachable_time
+ffffffc0086d5964 T neigh_sysctl_unregister
+ffffffc0086d59b0 t neigh_blackhole
+ffffffc0086d59e4 t neigh_release
+ffffffc0086d5a6c t neigh_release
+ffffffc0086d5af4 t neigh_release
+ffffffc0086d5b7c t neigh_release
+ffffffc0086d5c04 t neigh_release
+ffffffc0086d5c90 t neigh_timer_handler
+ffffffc0086d60b8 t neigh_invalidate
+ffffffc0086d6250 t neigh_stat_seq_start
+ffffffc0086d62fc t neigh_stat_seq_stop
+ffffffc0086d630c t neigh_stat_seq_next
+ffffffc0086d63b0 t neigh_stat_seq_show
+ffffffc0086d6444 t neigh_fill_info
+ffffffc0086d6748 t neigh_proc_dointvec_zero_intmax
+ffffffc0086d67f8 t neigh_proc_dointvec_userhz_jiffies
+ffffffc0086d6874 t neigh_proc_dointvec_ms_jiffies_positive
+ffffffc0086d6924 t neigh_proc_dointvec_unres_qlen
+ffffffc0086d6a1c t neigh_add
+ffffffc0086d6e1c t neigh_delete
+ffffffc0086d7008 t neigh_get
+ffffffc0086d74e8 t neigh_dump_info
+ffffffc0086d7a54 t neightbl_dump_info
+ffffffc0086d8064 t neightbl_set
+ffffffc0086d87c4 t nlmsg_parse_deprecated_strict
+ffffffc0086d8848 t nlmsg_parse_deprecated_strict
+ffffffc0086d88dc t nlmsg_parse_deprecated_strict
+ffffffc0086d8960 t nlmsg_parse_deprecated_strict
+ffffffc0086d89e4 t nlmsg_parse_deprecated_strict
+ffffffc0086d8a68 t nlmsg_parse_deprecated_strict
+ffffffc0086d8aec t nlmsg_parse_deprecated_strict
+ffffffc0086d8b70 t pneigh_fill_info
+ffffffc0086d8d00 t neightbl_fill_parms
+ffffffc0086d908c T rtnl_lock
+ffffffc0086d90c0 T rtnl_lock_killable
+ffffffc0086d90f4 T rtnl_kfree_skbs
+ffffffc0086d9120 T __rtnl_unlock
+ffffffc0086d91a4 T rtnl_unlock
+ffffffc0086d91d0 T rtnl_trylock
+ffffffc0086d9204 T rtnl_is_locked
+ffffffc0086d923c T refcount_dec_and_rtnl_lock
+ffffffc0086d9274 T rtnl_register_module
+ffffffc0086d929c t rtnl_register_internal.llvm.9216632291508083390
+ffffffc0086d9458 T rtnl_register
+ffffffc0086d94c8 T rtnl_unregister
+ffffffc0086d9564 T rtnl_unregister_all
+ffffffc0086d9610 T __rtnl_link_register
+ffffffc0086d96d8 T rtnl_link_register
+ffffffc0086d97d0 T __rtnl_link_unregister
+ffffffc0086d98f0 T rtnl_link_unregister
+ffffffc0086d9b04 T rtnl_af_register
+ffffffc0086d9b7c T rtnl_af_unregister
+ffffffc0086d9be8 T rtnetlink_send
+ffffffc0086d9c24 T rtnl_unicast
+ffffffc0086d9c68 T rtnl_notify
+ffffffc0086d9cac T rtnl_set_sk_err
+ffffffc0086d9ce8 T rtnetlink_put_metrics
+ffffffc0086d9ea8 t nla_put_string
+ffffffc0086d9f04 t nla_put_string
+ffffffc0086d9f54 t nla_put_string
+ffffffc0086d9fa4 t nla_put_string
+ffffffc0086d9ff8 T rtnl_put_cacheinfo
+ffffffc0086da0ec T rtnl_get_net_ns_capable
+ffffffc0086da158 T rtnl_nla_parse_ifla
+ffffffc0086da1a8 T rtnl_link_get_net
+ffffffc0086da1f4 T rtnl_delete_link
+ffffffc0086da294 T rtnl_configure_link
+ffffffc0086da344 T rtnl_create_link
+ffffffc0086da658 t set_operstate
+ffffffc0086da720 T rtmsg_ifinfo_build_skb
+ffffffc0086da834 t if_nlmsg_size
+ffffffc0086dab60 t rtnl_fill_ifinfo
+ffffffc0086db234 T rtmsg_ifinfo_send
+ffffffc0086db27c T rtmsg_ifinfo
+ffffffc0086db2f4 T rtmsg_ifinfo_newnet
+ffffffc0086db36c T ndo_dflt_fdb_add
+ffffffc0086db428 T ndo_dflt_fdb_del
+ffffffc0086db4a8 T ndo_dflt_fdb_dump
+ffffffc0086db654 T ndo_dflt_bridge_getlink
+ffffffc0086dbb8c T rtnl_offload_xstats_notify
+ffffffc0086dbcf4 t if_nlmsg_stats_size
+ffffffc0086dbf3c t rtnl_fill_statsinfo
+ffffffc0086dc7e8 t rtnl_getlink
+ffffffc0086dcb90 t rtnl_dump_ifinfo
+ffffffc0086dd09c t rtnl_setlink
+ffffffc0086dd254 t rtnl_newlink
+ffffffc0086ddc58 t rtnl_dellink
+ffffffc0086ddfb8 t rtnl_dump_all
+ffffffc0086de0dc t rtnl_newlinkprop
+ffffffc0086de10c t rtnl_dellinkprop
+ffffffc0086de13c t rtnl_fdb_add
+ffffffc0086de400 t rtnl_fdb_del
+ffffffc0086de79c t rtnl_fdb_get
+ffffffc0086deb50 t rtnl_fdb_dump
+ffffffc0086defdc t rtnl_bridge_getlink
+ffffffc0086df2d0 t rtnl_bridge_dellink
+ffffffc0086df4b4 t rtnl_bridge_setlink
+ffffffc0086df6a0 t rtnl_stats_get
+ffffffc0086df884 t rtnl_stats_dump
+ffffffc0086dfac0 t rtnl_stats_set
+ffffffc0086dfc78 t put_master_ifindex
+ffffffc0086dfd18 t nla_put_ifalias
+ffffffc0086dfdf4 t rtnl_fill_proto_down
+ffffffc0086dff18 t rtnl_fill_link_ifmap
+ffffffc0086dffb0 t rtnl_phys_port_id_fill
+ffffffc0086e005c t rtnl_phys_port_name_fill
+ffffffc0086e010c t rtnl_phys_switch_id_fill
+ffffffc0086e01bc t rtnl_fill_stats
+ffffffc0086e0300 t rtnl_fill_vf
+ffffffc0086e046c t rtnl_port_fill
+ffffffc0086e0758 t rtnl_xdp_fill
+ffffffc0086e09a0 t rtnl_have_link_slave_info
+ffffffc0086e09fc t rtnl_link_fill
+ffffffc0086e0c90 t rtnl_fill_link_netnsid
+ffffffc0086e0d54 t rtnl_fill_link_af
+ffffffc0086e0ec0 t rtnl_fill_prop_list
+ffffffc0086e0fe0 t rtnl_fill_vfinfo
+ffffffc0086e15a0 t nlmsg_populate_fdb_fill
+ffffffc0086e16ec t rtnetlink_rcv
+ffffffc0086e1720 t rtnetlink_bind
+ffffffc0086e1770 t rtnetlink_rcv_msg
+ffffffc0086e1bf8 t rtnetlink_event
+ffffffc0086e1c94 t do_setlink
+ffffffc0086e2ad4 t validate_linkmsg
+ffffffc0086e2c8c t rtnl_af_lookup
+ffffffc0086e2d2c t do_set_proto_down
+ffffffc0086e2e88 t rtnl_linkprop
+ffffffc0086e31c4 t fdb_vid_parse
+ffffffc0086e324c t rtnl_fdb_notify
+ffffffc0086e333c t rtnl_bridge_notify
+ffffffc0086e3460 t rtnl_stats_get_parse
+ffffffc0086e363c T net_ratelimit
+ffffffc0086e3678 T in_aton
+ffffffc0086e380c T in4_pton
+ffffffc0086e39dc T in6_pton
+ffffffc0086e3d90 T inet_pton_with_scope
+ffffffc0086e3efc t inet6_pton
+ffffffc0086e40c8 T inet_addr_is_any
+ffffffc0086e4164 T inet_proto_csum_replace4
+ffffffc0086e4240 T inet_proto_csum_replace16
+ffffffc0086e4334 T inet_proto_csum_replace_by_diff
+ffffffc0086e43cc T linkwatch_init_dev
+ffffffc0086e44b8 T linkwatch_forget_dev
+ffffffc0086e4568 t linkwatch_do_dev
+ffffffc0086e472c T linkwatch_run_queue
+ffffffc0086e4758 t __linkwatch_run_queue.llvm.5470836268856181718
+ffffffc0086e4a04 T linkwatch_fire_event
+ffffffc0086e4c0c t linkwatch_urgent_event
+ffffffc0086e4cec t linkwatch_event
+ffffffc0086e4d40 T copy_bpf_fprog_from_user
+ffffffc0086e4f08 T sk_filter_trim_cap
+ffffffc0086e51d8 T bpf_skb_get_pay_offset
+ffffffc0086e5208 T bpf_skb_get_nlattr
+ffffffc0086e5284 T bpf_skb_get_nlattr_nest
+ffffffc0086e5314 T bpf_skb_load_helper_8
+ffffffc0086e53bc T bpf_skb_load_helper_8_no_cache
+ffffffc0086e5468 T bpf_skb_load_helper_16
+ffffffc0086e5518 T bpf_skb_load_helper_16_no_cache
+ffffffc0086e55cc T bpf_skb_load_helper_32
+ffffffc0086e5678 T bpf_skb_load_helper_32_no_cache
+ffffffc0086e5728 T sk_filter_uncharge
+ffffffc0086e57fc T sk_filter_charge
+ffffffc0086e59b0 T bpf_prog_create
+ffffffc0086e5a60 t bpf_prepare_filter
+ffffffc0086e5f40 T bpf_prog_create_from_user
+ffffffc0086e61e4 T bpf_prog_destroy
+ffffffc0086e6244 T sk_attach_filter
+ffffffc0086e6418 t __get_filter
+ffffffc0086e66a0 T sk_reuseport_attach_filter
+ffffffc0086e6764 T sk_attach_bpf
+ffffffc0086e6784 T sk_reuseport_attach_bpf
+ffffffc0086e67a4 T sk_reuseport_prog_free
+ffffffc0086e6810 T bpf_skb_store_bytes
+ffffffc0086e699c T bpf_skb_load_bytes
+ffffffc0086e6a40 T bpf_flow_dissector_load_bytes
+ffffffc0086e6aec T bpf_skb_load_bytes_relative
+ffffffc0086e6b90 T bpf_skb_pull_data
+ffffffc0086e6c00 T bpf_sk_fullsock
+ffffffc0086e6c28 T sk_skb_pull_data
+ffffffc0086e6c64 T bpf_l3_csum_replace
+ffffffc0086e6da8 T bpf_l4_csum_replace
+ffffffc0086e6ef4 T bpf_csum_diff
+ffffffc0086e6fd4 T bpf_csum_update
+ffffffc0086e7010 T bpf_csum_level
+ffffffc0086e7144 T bpf_clone_redirect
+ffffffc0086e7224 T skb_do_redirect
+ffffffc0086e7d88 t __bpf_redirect
+ffffffc0086e810c T bpf_redirect
+ffffffc0086e814c T bpf_redirect_peer
+ffffffc0086e818c T bpf_redirect_neigh
+ffffffc0086e8200 T bpf_msg_apply_bytes
+ffffffc0086e821c T bpf_msg_cork_bytes
+ffffffc0086e8238 T bpf_msg_pull_data
+ffffffc0086e85e4 T bpf_msg_push_data
+ffffffc0086e8b78 T bpf_msg_pop_data
+ffffffc0086e90ec T bpf_get_cgroup_classid
+ffffffc0086e9100 T bpf_get_route_realm
+ffffffc0086e9114 T bpf_get_hash_recalc
+ffffffc0086e9160 T bpf_set_hash_invalid
+ffffffc0086e9188 T bpf_set_hash
+ffffffc0086e91b0 T bpf_skb_vlan_push
+ffffffc0086e9224 T bpf_skb_vlan_pop
+ffffffc0086e9284 T bpf_skb_change_proto
+ffffffc0086e94e4 T bpf_skb_change_type
+ffffffc0086e951c T sk_skb_adjust_room
+ffffffc0086e96b0 T bpf_skb_adjust_room
+ffffffc0086e9bd4 T bpf_skb_change_tail
+ffffffc0086e9c34 T sk_skb_change_tail
+ffffffc0086e9c64 T bpf_skb_change_head
+ffffffc0086e9da8 T sk_skb_change_head
+ffffffc0086e9ec8 T bpf_xdp_get_buff_len
+ffffffc0086e9f0c T bpf_xdp_adjust_head
+ffffffc0086e9fa8 T bpf_xdp_load_bytes
+ffffffc0086ea1cc T bpf_xdp_store_bytes
+ffffffc0086ea3f0 T bpf_xdp_adjust_tail
+ffffffc0086ea4dc T bpf_xdp_adjust_meta
+ffffffc0086ea548 T xdp_do_flush
+ffffffc0086ea558 T bpf_clear_redirect_map
+ffffffc0086ea654 T xdp_master_redirect
+ffffffc0086ea700 T xdp_do_redirect
+ffffffc0086eaaf4 T xdp_do_redirect_frame
+ffffffc0086eadf4 T xdp_do_generic_redirect
+ffffffc0086eb1cc T bpf_xdp_redirect
+ffffffc0086eb210 T bpf_xdp_redirect_map
+ffffffc0086eb260 T bpf_skb_event_output
+ffffffc0086eb2d8 T bpf_skb_get_tunnel_key
+ffffffc0086eb4e4 T bpf_skb_get_tunnel_opt
+ffffffc0086eb5d8 T bpf_skb_set_tunnel_key
+ffffffc0086eb868 T bpf_skb_set_tunnel_opt
+ffffffc0086eb94c T bpf_skb_under_cgroup
+ffffffc0086eb9d4 T bpf_xdp_event_output
+ffffffc0086eba7c T bpf_get_socket_cookie
+ffffffc0086ebab0 T bpf_get_socket_cookie_sock_addr
+ffffffc0086ebae0 T bpf_get_socket_cookie_sock
+ffffffc0086ebb0c T bpf_get_socket_ptr_cookie
+ffffffc0086ebb98 T bpf_get_socket_cookie_sock_ops
+ffffffc0086ebbc8 T bpf_get_netns_cookie_sock
+ffffffc0086ebbe0 T bpf_get_netns_cookie_sock_addr
+ffffffc0086ebbf8 T bpf_get_netns_cookie_sock_ops
+ffffffc0086ebc10 T bpf_get_netns_cookie_sk_msg
+ffffffc0086ebc28 T bpf_get_socket_uid
+ffffffc0086ebc90 T bpf_sk_setsockopt
+ffffffc0086ebcc4 T bpf_sk_getsockopt
+ffffffc0086ebcf8 T bpf_unlocked_sk_setsockopt
+ffffffc0086ebd28 T bpf_unlocked_sk_getsockopt
+ffffffc0086ebd58 T bpf_sock_addr_setsockopt
+ffffffc0086ebd90 T bpf_sock_addr_getsockopt
+ffffffc0086ebdc8 T bpf_sock_ops_setsockopt
+ffffffc0086ebe00 T bpf_sock_ops_getsockopt
+ffffffc0086ebfa8 T bpf_sock_ops_cb_flags_set
+ffffffc0086ebff0 T bpf_bind
+ffffffc0086ec0ac T bpf_skb_get_xfrm_state
+ffffffc0086ec180 T bpf_xdp_fib_lookup
+ffffffc0086ec200 T bpf_skb_fib_lookup
+ffffffc0086ec2e0 T bpf_skb_check_mtu
+ffffffc0086ec3e8 T bpf_xdp_check_mtu
+ffffffc0086ec49c T bpf_lwt_in_push_encap
+ffffffc0086ec4b0 T bpf_lwt_xmit_push_encap
+ffffffc0086ec4c4 T bpf_skc_lookup_tcp
+ffffffc0086ec578 T bpf_sk_lookup_tcp
+ffffffc0086ec5b0 T bpf_sk_lookup_udp
+ffffffc0086ec5e8 T bpf_sk_release
+ffffffc0086ec63c T bpf_xdp_sk_lookup_udp
+ffffffc0086ec68c T bpf_xdp_skc_lookup_tcp
+ffffffc0086ec728 T bpf_xdp_sk_lookup_tcp
+ffffffc0086ec778 T bpf_sock_addr_skc_lookup_tcp
+ffffffc0086ec80c T bpf_sock_addr_sk_lookup_tcp
+ffffffc0086ec850 T bpf_sock_addr_sk_lookup_udp
+ffffffc0086ec894 T bpf_tcp_sock_is_valid_access
+ffffffc0086ec8e0 T bpf_tcp_sock_convert_ctx_access
+ffffffc0086ec94c T bpf_tcp_sock
+ffffffc0086ec98c T bpf_get_listener_sock
+ffffffc0086ec9d4 T bpf_skb_ecn_set_ce
+ffffffc0086ecd84 T bpf_xdp_sock_is_valid_access
+ffffffc0086ecdbc T bpf_xdp_sock_convert_ctx_access
+ffffffc0086ece00 T bpf_tcp_check_syncookie
+ffffffc0086ece14 T bpf_tcp_gen_syncookie
+ffffffc0086ece28 T bpf_sk_assign
+ffffffc0086ece4c T bpf_sock_ops_load_hdr_opt
+ffffffc0086ed070 T bpf_sock_ops_store_hdr_opt
+ffffffc0086ed238 T bpf_sock_ops_reserve_hdr_opt
+ffffffc0086ed290 T bpf_skb_set_tstamp
+ffffffc0086ed30c T bpf_helper_changes_pkt_data
+ffffffc0086ed440 T bpf_sock_common_is_valid_access
+ffffffc0086ed484 T bpf_sock_is_valid_access
+ffffffc0086ed528 T bpf_warn_invalid_xdp_action
+ffffffc0086ed5a8 T bpf_sock_convert_ctx_access
+ffffffc0086ed854 t sk_filter_func_proto
+ffffffc0086ed8fc t sk_filter_is_valid_access
+ffffffc0086ed988 t bpf_gen_ld_abs
+ffffffc0086eda84 t bpf_convert_ctx_access
+ffffffc0086ee1dc t bpf_prog_test_run_skb
+ffffffc0086ee1f0 t tc_cls_act_func_proto
+ffffffc0086ee680 t tc_cls_act_is_valid_access
+ffffffc0086ee768 t tc_cls_act_prologue
+ffffffc0086ee7ec t tc_cls_act_convert_ctx_access
+ffffffc0086ee870 t tc_cls_act_btf_struct_access
+ffffffc0086ee958 t xdp_func_proto
+ffffffc0086eeae0 t xdp_is_valid_access
+ffffffc0086eeb68 t bpf_noop_prologue
+ffffffc0086eeb7c t xdp_convert_ctx_access
+ffffffc0086eece0 t xdp_btf_struct_access
+ffffffc0086eedc8 t bpf_prog_test_run_xdp
+ffffffc0086eeddc t cg_skb_func_proto
+ffffffc0086eeee4 t cg_skb_is_valid_access
+ffffffc0086ef004 t lwt_in_func_proto
+ffffffc0086ef0fc t lwt_is_valid_access
+ffffffc0086ef1d0 t lwt_out_func_proto
+ffffffc0086ef2b8 t lwt_xmit_func_proto
+ffffffc0086ef598 t lwt_seg6local_func_proto
+ffffffc0086ef680 t sock_filter_func_proto
+ffffffc0086ef714 t sock_filter_is_valid_access
+ffffffc0086ef7d0 t sock_addr_func_proto
+ffffffc0086ef924 t sock_addr_is_valid_access
+ffffffc0086efb34 t sock_addr_convert_ctx_access
+ffffffc0086f01a0 t sock_ops_func_proto
+ffffffc0086f02d8 t sock_ops_is_valid_access
+ffffffc0086f03d4 t sock_ops_convert_ctx_access
+ffffffc0086f21d8 t sk_skb_func_proto
+ffffffc0086f2320 t sk_skb_is_valid_access
+ffffffc0086f23f8 t sk_skb_prologue
+ffffffc0086f2478 t sk_skb_convert_ctx_access
+ffffffc0086f2674 t sk_msg_func_proto
+ffffffc0086f279c t sk_msg_is_valid_access
+ffffffc0086f2824 t sk_msg_convert_ctx_access
+ffffffc0086f2a48 t flow_dissector_func_proto
+ffffffc0086f2a88 t flow_dissector_is_valid_access
+ffffffc0086f2b14 t flow_dissector_convert_ctx_access
+ffffffc0086f2b7c t bpf_prog_test_run_flow_dissector
+ffffffc0086f2b90 T sk_detach_filter
+ffffffc0086f2c8c T sk_get_filter
+ffffffc0086f2ea4 T bpf_run_sk_reuseport
+ffffffc0086f2ff8 T sk_select_reuseport
+ffffffc0086f315c T sk_reuseport_load_bytes
+ffffffc0086f3204 T sk_reuseport_load_bytes_relative
+ffffffc0086f32ac t sk_reuseport_func_proto
+ffffffc0086f3340 t sk_reuseport_is_valid_access
+ffffffc0086f3428 t sk_reuseport_convert_ctx_access
+ffffffc0086f3614 T bpf_sk_lookup_assign
+ffffffc0086f371c t bpf_prog_test_run_sk_lookup
+ffffffc0086f3730 t sk_lookup_func_proto
+ffffffc0086f3798 t sk_lookup_is_valid_access
+ffffffc0086f3870 t sk_lookup_convert_ctx_access
+ffffffc0086f3a74 T bpf_prog_change_xdp
+ffffffc0086f3a84 T bpf_skc_to_tcp6_sock
+ffffffc0086f3ad4 T bpf_skc_to_tcp_sock
+ffffffc0086f3b18 T bpf_skc_to_tcp_timewait_sock
+ffffffc0086f3b68 T bpf_skc_to_tcp_request_sock
+ffffffc0086f3bb8 T bpf_skc_to_udp6_sock
+ffffffc0086f3c14 T bpf_skc_to_unix_sock
+ffffffc0086f3c58 T bpf_skc_to_mptcp_sock
+ffffffc0086f3c6c T bpf_sock_from_file
+ffffffc0086f3c98 t sk_filter_release_rcu
+ffffffc0086f3d08 t bpf_convert_filter
+ffffffc0086f4738 t convert_bpf_ld_abs
+ffffffc0086f4948 t neigh_output
+ffffffc0086f4aec t __ipv6_neigh_lookup_noref_stub
+ffffffc0086f4bb4 t bpf_skb_net_hdr_pop
+ffffffc0086f4cec t __bpf_skb_change_tail
+ffffffc0086f4ee4 t bpf_xdp_frags_shrink_tail
+ffffffc0086f5078 t bpf_xdp_frags_increase_tail
+ffffffc0086f5160 t bpf_skb_copy
+ffffffc0086f51f8 t bpf_xdp_copy
+ffffffc0086f5310 t __bpf_setsockopt
+ffffffc0086f547c t sol_socket_sockopt
+ffffffc0086f5540 t sol_tcp_sockopt
+ffffffc0086f571c t bpf_sol_tcp_setsockopt
+ffffffc0086f5818 t __bpf_getsockopt
+ffffffc0086f59ec t bpf_ipv4_fib_lookup
+ffffffc0086f5de8 t bpf_ipv6_fib_lookup
+ffffffc0086f61b8 t sk_lookup
+ffffffc0086f63d8 t bpf_sk_lookup
+ffffffc0086f6508 t __bpf_sk_lookup
+ffffffc0086f6624 t bpf_sk_base_func_proto
+ffffffc0086f6710 t bpf_skb_is_valid_access
+ffffffc0086f683c t bpf_convert_tstamp_type_read
+ffffffc0086f68bc t bpf_convert_shinfo_access
+ffffffc0086f6934 T __sock_gen_cookie
+ffffffc0086f6ab0 T sock_diag_check_cookie
+ffffffc0086f6b74 T sock_diag_save_cookie
+ffffffc0086f6bfc T sock_diag_put_meminfo
+ffffffc0086f6c88 T sock_diag_put_filterinfo
+ffffffc0086f6d48 T sock_diag_broadcast_destroy
+ffffffc0086f6dd8 t sock_diag_broadcast_destroy_work
+ffffffc0086f6f78 T sock_diag_register_inet_compat
+ffffffc0086f6fcc T sock_diag_unregister_inet_compat
+ffffffc0086f701c T sock_diag_register
+ffffffc0086f70b0 T sock_diag_unregister
+ffffffc0086f7124 T sock_diag_destroy
+ffffffc0086f71b0 t sock_diag_rcv
+ffffffc0086f720c t sock_diag_bind
+ffffffc0086f727c t sock_diag_rcv_msg
+ffffffc0086f73e4 T dev_ifconf
+ffffffc0086f774c T dev_load
+ffffffc0086f77e4 T dev_ioctl
+ffffffc0086f7b2c t dev_ifsioc
+ffffffc0086f8140 T tso_count_descs
+ffffffc0086f8168 T tso_build_hdr
+ffffffc0086f82a4 T tso_build_data
+ffffffc0086f8340 T tso_start
+ffffffc0086f85b0 T reuseport_has_conns_set
+ffffffc0086f8620 T reuseport_update_incoming_cpu
+ffffffc0086f86c0 T reuseport_alloc
+ffffffc0086f87f4 t reuseport_resurrect
+ffffffc0086f8a84 T reuseport_add_sock
+ffffffc0086f8bec t reuseport_grow
+ffffffc0086f8dc4 t reuseport_free_rcu
+ffffffc0086f8e18 T reuseport_detach_sock
+ffffffc0086f8f64 T reuseport_stop_listen_sock
+ffffffc0086f90a0 T reuseport_select_sock
+ffffffc0086f9414 T reuseport_migrate_sock
+ffffffc0086f96a8 T reuseport_attach_prog
+ffffffc0086f9754 T reuseport_detach_prog
+ffffffc0086f980c T call_fib_notifier
+ffffffc0086f986c T call_fib_notifiers
+ffffffc0086f98f4 T register_fib_notifier
+ffffffc0086f9a94 t fib_seq_sum
+ffffffc0086f9b78 T unregister_fib_notifier
+ffffffc0086f9be4 T fib_notifier_ops_register
+ffffffc0086f9cb8 T fib_notifier_ops_unregister
+ffffffc0086f9d20 T xdp_unreg_mem_model
+ffffffc0086f9e04 t rhashtable_lookup
+ffffffc0086f9ee4 t rhashtable_lookup
+ffffffc0086fa088 T xdp_rxq_info_unreg_mem_model
+ffffffc0086fa1a0 T xdp_rxq_info_unreg
+ffffffc0086fa2c8 T __xdp_rxq_info_reg
+ffffffc0086fa47c T xdp_rxq_info_unused
+ffffffc0086fa494 T xdp_rxq_info_is_reg
+ffffffc0086fa4b0 T xdp_reg_mem_model
+ffffffc0086fa4e0 t __xdp_reg_mem_model
+ffffffc0086fa714 T xdp_rxq_info_reg_mem_model
+ffffffc0086fa824 T __xdp_return
+ffffffc0086fa954 T xdp_return_frame
+ffffffc0086faa30 T xdp_return_frame_rx_napi
+ffffffc0086fab0c T xdp_flush_frame_bulk
+ffffffc0086fab30 T xdp_return_frame_bulk
+ffffffc0086fad5c T xdp_return_buff
+ffffffc0086fae30 T __xdp_release_frame
+ffffffc0086faf38 T xdp_attachment_setup
+ffffffc0086faf58 T xdp_convert_zc_to_xdp_frame
+ffffffc0086fb05c T xdp_warn
+ffffffc0086fb098 T xdp_alloc_skb_bulk
+ffffffc0086fb0e8 T __xdp_build_skb_from_frame
+ffffffc0086fb370 t xdp_update_skb_shared_info
+ffffffc0086fb3d0 T xdp_build_skb_from_frame
+ffffffc0086fb45c T xdpf_clone
+ffffffc0086fb528 t xdp_mem_id_hashfn
+ffffffc0086fb53c t xdp_mem_id_cmp
+ffffffc0086fb560 T flow_rule_alloc
+ffffffc0086fb5f8 T offload_action_alloc
+ffffffc0086fb690 T flow_rule_match_meta
+ffffffc0086fb6c4 T flow_rule_match_basic
+ffffffc0086fb6f8 T flow_rule_match_control
+ffffffc0086fb72c T flow_rule_match_eth_addrs
+ffffffc0086fb760 T flow_rule_match_vlan
+ffffffc0086fb794 T flow_rule_match_cvlan
+ffffffc0086fb7c8 T flow_rule_match_ipv4_addrs
+ffffffc0086fb7fc T flow_rule_match_ipv6_addrs
+ffffffc0086fb830 T flow_rule_match_ip
+ffffffc0086fb864 T flow_rule_match_ports
+ffffffc0086fb898 T flow_rule_match_ports_range
+ffffffc0086fb8cc T flow_rule_match_tcp
+ffffffc0086fb900 T flow_rule_match_icmp
+ffffffc0086fb934 T flow_rule_match_mpls
+ffffffc0086fb968 T flow_rule_match_enc_control
+ffffffc0086fb99c T flow_rule_match_enc_ipv4_addrs
+ffffffc0086fb9d0 T flow_rule_match_enc_ipv6_addrs
+ffffffc0086fba04 T flow_rule_match_enc_ip
+ffffffc0086fba38 T flow_rule_match_enc_ports
+ffffffc0086fba6c T flow_rule_match_enc_keyid
+ffffffc0086fbaa0 T flow_rule_match_enc_opts
+ffffffc0086fbad4 T flow_action_cookie_create
+ffffffc0086fbb44 T flow_action_cookie_destroy
+ffffffc0086fbb70 T flow_rule_match_ct
+ffffffc0086fbba4 T flow_rule_match_pppoe
+ffffffc0086fbbd8 T flow_rule_match_l2tpv3
+ffffffc0086fbc0c T flow_block_cb_alloc
+ffffffc0086fbc7c T flow_block_cb_free
+ffffffc0086fbce0 T flow_block_cb_lookup
+ffffffc0086fbd30 T flow_block_cb_priv
+ffffffc0086fbd44 T flow_block_cb_incref
+ffffffc0086fbd60 T flow_block_cb_decref
+ffffffc0086fbd80 T flow_block_cb_is_busy
+ffffffc0086fbdcc T flow_block_cb_setup_simple
+ffffffc0086fbfc4 T flow_indr_dev_register
+ffffffc0086fc1e4 T flow_indr_dev_unregister
+ffffffc0086fc454 T flow_indr_block_cb_alloc
+ffffffc0086fc548 T flow_indr_dev_setup_offload
+ffffffc0086fc75c T flow_indr_dev_exists
+ffffffc0086fc784 T dev_add_offload
+ffffffc0086fc82c T dev_remove_offload
+ffffffc0086fc8d8 T skb_eth_gso_segment
+ffffffc0086fc99c T skb_mac_gso_segment
+ffffffc0086fcaec T skb_gro_receive
+ffffffc0086fce58 T napi_gro_flush
+ffffffc0086fcf80 T gro_find_receive_by_type
+ffffffc0086fcfe4 T gro_find_complete_by_type
+ffffffc0086fd048 T napi_gro_receive
+ffffffc0086fd2e0 t dev_gro_receive
+ffffffc0086fd8b8 T napi_get_frags
+ffffffc0086fd924 T napi_gro_frags
+ffffffc0086fddac T __skb_gro_checksum_complete
+ffffffc0086fde64 t napi_gro_complete
+ffffffc0086fdfc0 t gro_flush_oldest
+ffffffc0086fe028 t skb_metadata_dst_cmp
+ffffffc0086fe138 t skb_frag_unref
+ffffffc0086fe1d4 t napi_reuse_skb
+ffffffc0086fe304 T net_rx_queue_update_kobjects
+ffffffc0086fe500 T netdev_queue_update_kobjects
+ffffffc0086fe734 t net_current_may_mount
+ffffffc0086fe778 t net_grab_current_ns
+ffffffc0086fe794 t net_netlink_ns
+ffffffc0086fe7ac t net_initial_ns
+ffffffc0086fe7c4 T of_find_net_device_by_node
+ffffffc0086fe814 t of_dev_node_match
+ffffffc0086fe848 T netdev_unregister_kobject
+ffffffc0086fe8f8 T netdev_register_kobject
+ffffffc0086fea54 T netdev_change_owner
+ffffffc0086fea68 T netdev_class_create_file_ns
+ffffffc0086feaa4 T netdev_class_remove_file_ns
+ffffffc0086feae0 t rx_queue_release
+ffffffc0086febdc t rx_queue_namespace
+ffffffc0086fec44 t rx_queue_get_ownership
+ffffffc0086fecbc t rps_dev_flow_table_release
+ffffffc0086fecec t rx_queue_attr_show
+ffffffc0086fed48 t rx_queue_attr_store
+ffffffc0086feda8 t show_rps_map
+ffffffc0086feee0 t store_rps_map
+ffffffc0086ff12c t show_rps_dev_flow_table_cnt
+ffffffc0086ff1a4 t store_rps_dev_flow_table_cnt
+ffffffc0086ff320 t netdev_queue_release
+ffffffc0086ff3dc t netdev_queue_namespace
+ffffffc0086ff444 t netdev_queue_get_ownership
+ffffffc0086ff4bc t netdev_queue_attr_show
+ffffffc0086ff518 t netdev_queue_attr_store
+ffffffc0086ff578 t tx_timeout_show
+ffffffc0086ff5c0 t traffic_class_show
+ffffffc0086ff704 t xps_cpus_show
+ffffffc0086ff84c t xps_cpus_store
+ffffffc0086ff9b8 t xps_queue_show
+ffffffc0086ffb24 t xps_rxqs_show
+ffffffc0086ffc0c t xps_rxqs_store
+ffffffc0086ffd78 t tx_maxrate_show
+ffffffc0086ffdbc t tx_maxrate_store
+ffffffc0086fff4c t bql_show_limit
+ffffffc0086fff90 t bql_set_limit
+ffffffc00870006c t bql_show_limit_max
+ffffffc0087000b0 t bql_set_limit_max
+ffffffc00870018c t bql_show_limit_min
+ffffffc0087001d0 t bql_set_limit_min
+ffffffc0087002ac t bql_show_hold_time
+ffffffc0087002f4 t bql_set_hold_time
+ffffffc008700388 t bql_show_inflight
+ffffffc0087003d4 t netdev_uevent
+ffffffc00870043c t netdev_release
+ffffffc00870049c t net_namespace
+ffffffc0087004b4 t net_get_ownership
+ffffffc0087004cc t group_show
+ffffffc008700550 t group_store
+ffffffc00870066c t dev_id_show
+ffffffc0087006f0 t dev_port_show
+ffffffc008700774 t iflink_show
+ffffffc0087007c8 t ifindex_show
+ffffffc00870084c t name_assign_type_show
+ffffffc0087008e8 t addr_assign_type_show
+ffffffc00870096c t addr_len_show
+ffffffc0087009f0 t link_mode_show
+ffffffc008700a74 t address_show
+ffffffc008700b04 t broadcast_show
+ffffffc008700b68 t speed_show
+ffffffc008700c94 t duplex_show
+ffffffc008700de0 t dormant_show
+ffffffc008700e3c t testing_show
+ffffffc008700e98 t operstate_show
+ffffffc008700f44 t carrier_changes_show
+ffffffc008700fa0 t ifalias_show
+ffffffc008701070 t ifalias_store
+ffffffc008701178 t carrier_show
+ffffffc0087011d8 t carrier_store
+ffffffc00870132c t mtu_show
+ffffffc0087013b0 t mtu_store
+ffffffc0087014d0 t flags_store
+ffffffc0087015f4 t tx_queue_len_show
+ffffffc008701674 t tx_queue_len_store
+ffffffc0087017a0 t gro_flush_timeout_show
+ffffffc008701824 t gro_flush_timeout_store
+ffffffc00870194c t napi_defer_hard_irqs_show
+ffffffc0087019d0 t napi_defer_hard_irqs_store
+ffffffc008701af8 t phys_port_id_show
+ffffffc008701c10 t phys_port_name_show
+ffffffc008701d28 t phys_switch_id_show
+ffffffc008701e4c t proto_down_show
+ffffffc008701ecc t proto_down_store
+ffffffc008701ff4 t carrier_up_count_show
+ffffffc008702040 t carrier_down_count_show
+ffffffc00870208c t threaded_show
+ffffffc008702144 t threaded_store
+ffffffc00870228c t rx_packets_show
+ffffffc008702378 t tx_packets_show
+ffffffc008702464 t rx_bytes_show
+ffffffc008702550 t tx_bytes_show
+ffffffc00870263c t rx_errors_show
+ffffffc008702728 t tx_errors_show
+ffffffc008702814 t rx_dropped_show
+ffffffc008702900 t tx_dropped_show
+ffffffc0087029ec t multicast_show
+ffffffc008702ad8 t collisions_show
+ffffffc008702bc4 t rx_length_errors_show
+ffffffc008702cb0 t rx_over_errors_show
+ffffffc008702d9c t rx_crc_errors_show
+ffffffc008702e88 t rx_frame_errors_show
+ffffffc008702f74 t rx_fifo_errors_show
+ffffffc008703060 t rx_missed_errors_show
+ffffffc00870314c t tx_aborted_errors_show
+ffffffc008703238 t tx_carrier_errors_show
+ffffffc008703324 t tx_fifo_errors_show
+ffffffc008703410 t tx_heartbeat_errors_show
+ffffffc0087034fc t tx_window_errors_show
+ffffffc0087035e8 t rx_compressed_show
+ffffffc0087036d4 t tx_compressed_show
+ffffffc0087037c0 t rx_nohandler_show
+ffffffc0087038ac t dev_seq_start
+ffffffc00870397c t dev_seq_stop
+ffffffc0087039a8 t dev_seq_next
+ffffffc008703a40 t dev_seq_show
+ffffffc008703b84 t softnet_seq_start
+ffffffc008703c00 t softnet_seq_stop
+ffffffc008703c10 t softnet_seq_next
+ffffffc008703c94 t softnet_seq_show
+ffffffc008703d68 t ptype_seq_start
+ffffffc008703eb0 t ptype_seq_stop
+ffffffc008703edc t ptype_seq_next
+ffffffc0087041c8 t ptype_seq_show
+ffffffc008704278 t dev_mc_seq_show
+ffffffc008704340 T fib_rule_matchall
+ffffffc0087043e0 T fib_default_rule_add
+ffffffc0087044b4 T fib_rules_register
+ffffffc0087045e0 T fib_rules_unregister
+ffffffc00870474c T fib_rules_lookup
+ffffffc0087049cc T fib_rules_dump
+ffffffc008704af0 T fib_rules_seq_read
+ffffffc008704bd0 T fib_nl_newrule
+ffffffc00870519c t fib_nl2rule
+ffffffc008705624 t list_add_rcu
+ffffffc00870567c t notify_rule_change
+ffffffc0087057a8 T fib_nl_delrule
+ffffffc008705dd0 t fib_rule_put
+ffffffc008705e5c t fib_nl_fill_rule
+ffffffc008706254 t nla_put_uid_range
+ffffffc0087062d8 t fib_nl_dumprule
+ffffffc0087065d0 t fib_rules_event
+ffffffc00870683c T __traceiter_kfree_skb
+ffffffc0087068d4 T __traceiter_consume_skb
+ffffffc008706954 T __traceiter_skb_copy_datagram_iovec
+ffffffc0087069e4 t trace_event_raw_event_kfree_skb
+ffffffc008706ac4 t perf_trace_kfree_skb
+ffffffc008706bf4 t trace_event_raw_event_consume_skb
+ffffffc008706cac t perf_trace_consume_skb
+ffffffc008706db8 t trace_event_raw_event_skb_copy_datagram_iovec
+ffffffc008706e78 t perf_trace_skb_copy_datagram_iovec
+ffffffc008706f94 T __traceiter_net_dev_start_xmit
+ffffffc008707024 T __traceiter_net_dev_xmit
+ffffffc0087070cc T __traceiter_net_dev_xmit_timeout
+ffffffc00870715c T __traceiter_net_dev_queue
+ffffffc0087071dc T __traceiter_netif_receive_skb
+ffffffc00870725c T __traceiter_netif_rx
+ffffffc0087072dc T __traceiter_napi_gro_frags_entry
+ffffffc00870735c T __traceiter_napi_gro_receive_entry
+ffffffc0087073dc T __traceiter_netif_receive_skb_entry
+ffffffc00870745c T __traceiter_netif_receive_skb_list_entry
+ffffffc0087074dc T __traceiter_netif_rx_entry
+ffffffc00870755c T __traceiter_napi_gro_frags_exit
+ffffffc0087075dc T __traceiter_napi_gro_receive_exit
+ffffffc00870765c T __traceiter_netif_receive_skb_exit
+ffffffc0087076dc T __traceiter_netif_rx_exit
+ffffffc00870775c T __traceiter_netif_receive_skb_list_exit
+ffffffc0087077dc t trace_event_raw_event_net_dev_start_xmit
+ffffffc0087079c4 t perf_trace_net_dev_start_xmit
+ffffffc008707c14 t trace_event_raw_event_net_dev_xmit
+ffffffc008707d28 t perf_trace_net_dev_xmit
+ffffffc008707ea4 t trace_event_raw_event_net_dev_xmit_timeout
+ffffffc008708018 t perf_trace_net_dev_xmit_timeout
+ffffffc0087081f0 t trace_event_raw_event_net_dev_template
+ffffffc0087082f4 t perf_trace_net_dev_template
+ffffffc00870846c t trace_event_raw_event_net_dev_rx_verbose_template
+ffffffc00870864c t perf_trace_net_dev_rx_verbose_template
+ffffffc00870889c t trace_event_raw_event_net_dev_rx_exit_template
+ffffffc008708954 t perf_trace_net_dev_rx_exit_template
+ffffffc008708a60 T __traceiter_napi_poll
+ffffffc008708af8 t trace_event_raw_event_napi_poll
+ffffffc008708c0c t perf_trace_napi_poll
+ffffffc008708d90 T __traceiter_sock_rcvqueue_full
+ffffffc008708e20 T __traceiter_sock_exceed_buf_limit
+ffffffc008708ec8 T __traceiter_inet_sock_set_state
+ffffffc008708f60 T __traceiter_inet_sk_error_report
+ffffffc008708fe0 t trace_event_raw_event_sock_rcvqueue_full
+ffffffc0087090c0 t perf_trace_sock_rcvqueue_full
+ffffffc0087091fc t trace_event_raw_event_sock_exceed_buf_limit
+ffffffc00870939c t perf_trace_sock_exceed_buf_limit
+ffffffc008709598 t trace_event_raw_event_inet_sock_set_state
+ffffffc0087096e8 t perf_trace_inet_sock_set_state
+ffffffc008709888 t trace_event_raw_event_inet_sk_error_report
+ffffffc0087099c8 t perf_trace_inet_sk_error_report
+ffffffc008709b5c T __traceiter_udp_fail_queue_rcv_skb
+ffffffc008709bec t trace_event_raw_event_udp_fail_queue_rcv_skb
+ffffffc008709cb0 t perf_trace_udp_fail_queue_rcv_skb
+ffffffc008709dd0 T __traceiter_tcp_retransmit_skb
+ffffffc008709e60 T __traceiter_tcp_send_reset
+ffffffc008709ef0 T __traceiter_tcp_receive_reset
+ffffffc008709f70 T __traceiter_tcp_destroy_sock
+ffffffc008709ff0 T __traceiter_tcp_rcv_space_adjust
+ffffffc00870a070 T __traceiter_tcp_retransmit_synack
+ffffffc00870a100 T __traceiter_tcp_probe
+ffffffc00870a190 T __traceiter_tcp_bad_csum
+ffffffc00870a210 T __traceiter_tcp_cong_state_set
+ffffffc00870a2a0 t trace_event_raw_event_tcp_event_sk_skb
+ffffffc00870a3e8 t perf_trace_tcp_event_sk_skb
+ffffffc00870a58c t trace_event_raw_event_tcp_event_sk
+ffffffc00870a720 t perf_trace_tcp_event_sk
+ffffffc00870a910 t trace_event_raw_event_tcp_retransmit_synack
+ffffffc00870aa48 t perf_trace_tcp_retransmit_synack
+ffffffc00870abdc t trace_event_raw_event_tcp_probe
+ffffffc00870ae3c t perf_trace_tcp_probe
+ffffffc00870b0f8 t trace_event_raw_event_tcp_event_skb
+ffffffc00870b264 t perf_trace_tcp_event_skb
+ffffffc00870b424 t trace_event_raw_event_tcp_cong_state_set
+ffffffc00870b558 t perf_trace_tcp_cong_state_set
+ffffffc00870b6e8 T __traceiter_fib_table_lookup
+ffffffc00870b790 t trace_event_raw_event_fib_table_lookup
+ffffffc00870b950 t perf_trace_fib_table_lookup
+ffffffc00870bb6c T __traceiter_qdisc_dequeue
+ffffffc00870bc14 T __traceiter_qdisc_enqueue
+ffffffc00870bcac T __traceiter_qdisc_reset
+ffffffc00870bd2c T __traceiter_qdisc_destroy
+ffffffc00870bdac T __traceiter_qdisc_create
+ffffffc00870be44 t trace_event_raw_event_qdisc_dequeue
+ffffffc00870bf4c t perf_trace_qdisc_dequeue
+ffffffc00870c0ac t trace_event_raw_event_qdisc_enqueue
+ffffffc00870c19c t perf_trace_qdisc_enqueue
+ffffffc00870c2dc t trace_event_raw_event_qdisc_reset
+ffffffc00870c430 t perf_trace_qdisc_reset
+ffffffc00870c5f0 t trace_event_raw_event_qdisc_destroy
+ffffffc00870c744 t perf_trace_qdisc_destroy
+ffffffc00870c904 t trace_event_raw_event_qdisc_create
+ffffffc00870ca48 t perf_trace_qdisc_create
+ffffffc00870cbf4 T __traceiter_br_fdb_add
+ffffffc00870cca4 T __traceiter_br_fdb_external_learn_add
+ffffffc00870cd4c T __traceiter_fdb_delete
+ffffffc00870cddc T __traceiter_br_fdb_update
+ffffffc00870ce8c t trace_event_raw_event_br_fdb_add
+ffffffc00870cfc4 t perf_trace_br_fdb_add
+ffffffc00870d158 t trace_event_raw_event_br_fdb_external_learn_add
+ffffffc00870d2e8 t perf_trace_br_fdb_external_learn_add
+ffffffc00870d4d8 t trace_event_raw_event_fdb_delete
+ffffffc00870d664 t perf_trace_fdb_delete
+ffffffc00870d854 t trace_event_raw_event_br_fdb_update
+ffffffc00870d9cc t perf_trace_br_fdb_update
+ffffffc00870dbac T __traceiter_neigh_create
+ffffffc00870dc5c T __traceiter_neigh_update
+ffffffc00870dd0c T __traceiter_neigh_update_done
+ffffffc00870dd9c T __traceiter_neigh_timer_handler
+ffffffc00870de2c T __traceiter_neigh_event_send_done
+ffffffc00870debc T __traceiter_neigh_event_send_dead
+ffffffc00870df4c T __traceiter_neigh_cleanup_and_release
+ffffffc00870dfdc t trace_event_raw_event_neigh_create
+ffffffc00870e150 t perf_trace_neigh_create
+ffffffc00870e32c t trace_event_raw_event_neigh_update
+ffffffc00870e530 t perf_trace_neigh_update
+ffffffc00870e79c t trace_event_raw_event_neigh__update
+ffffffc00870e970 t perf_trace_neigh__update
+ffffffc00870ebb4 t trace_raw_output_kfree_skb
+ffffffc00870ec58 t trace_raw_output_consume_skb
+ffffffc00870eccc t trace_raw_output_skb_copy_datagram_iovec
+ffffffc00870ed44 t trace_raw_output_net_dev_start_xmit
+ffffffc00870ee2c t trace_raw_output_net_dev_xmit
+ffffffc00870eeac t trace_raw_output_net_dev_xmit_timeout
+ffffffc00870ef30 t trace_raw_output_net_dev_template
+ffffffc00870efb0 t trace_raw_output_net_dev_rx_verbose_template
+ffffffc00870f0a8 t trace_raw_output_net_dev_rx_exit_template
+ffffffc00870f11c t trace_raw_output_napi_poll
+ffffffc00870f19c t trace_raw_output_sock_rcvqueue_full
+ffffffc00870f214 t trace_raw_output_sock_exceed_buf_limit
+ffffffc00870f30c t trace_raw_output_inet_sock_set_state
+ffffffc00870f444 t trace_raw_output_inet_sk_error_report
+ffffffc00870f520 t trace_raw_output_udp_fail_queue_rcv_skb
+ffffffc00870f598 t trace_raw_output_tcp_event_sk_skb
+ffffffc00870f694 t trace_raw_output_tcp_event_sk
+ffffffc00870f744 t trace_raw_output_tcp_retransmit_synack
+ffffffc00870f7f0 t trace_raw_output_tcp_probe
+ffffffc00870f8c0 t trace_raw_output_tcp_event_skb
+ffffffc00870f938 t trace_raw_output_tcp_cong_state_set
+ffffffc00870f9d0 t trace_raw_output_fib_table_lookup
+ffffffc00870fa9c t trace_raw_output_qdisc_dequeue
+ffffffc00870fb20 t trace_raw_output_qdisc_enqueue
+ffffffc00870fb9c t trace_raw_output_qdisc_reset
+ffffffc00870fc30 t trace_raw_output_qdisc_destroy
+ffffffc00870fcc4 t trace_raw_output_qdisc_create
+ffffffc00870fd50 t trace_raw_output_br_fdb_add
+ffffffc00870fe04 t trace_raw_output_br_fdb_external_learn_add
+ffffffc00870feb4 t trace_raw_output_fdb_delete
+ffffffc00870ff64 t trace_raw_output_br_fdb_update
+ffffffc00871001c t trace_raw_output_neigh_create
+ffffffc0087100b8 t trace_raw_output_neigh_update
+ffffffc008710228 t trace_raw_output_neigh__update
+ffffffc00871033c T dst_cache_get
+ffffffc008710380 t dst_cache_per_cpu_get
+ffffffc00871049c T dst_cache_get_ip4
+ffffffc008710500 T dst_cache_set_ip4
+ffffffc0087105d0 T dst_cache_set_ip6
+ffffffc0087106f4 T dst_cache_get_ip6
+ffffffc00871075c T dst_cache_init
+ffffffc0087107c4 T dst_cache_destroy
+ffffffc008710878 T dst_cache_reset_now
+ffffffc008710938 T gro_cells_receive
+ffffffc008710af8 T gro_cells_init
+ffffffc008710c30 t gro_cell_poll
+ffffffc008710ce0 T gro_cells_destroy
+ffffffc008710e28 t percpu_free_defer_callback
+ffffffc008710e6c T of_get_phy_mode
+ffffffc008710f60 T of_get_mac_address
+ffffffc0087110a8 T of_get_ethdev_address
+ffffffc008711138 T eth_header
+ffffffc008711210 T eth_get_headlen
+ffffffc0087112f8 T eth_type_trans
+ffffffc008711420 T eth_header_parse
+ffffffc008711454 T eth_header_cache
+ffffffc0087114b4 T eth_header_cache_update
+ffffffc0087114d4 T eth_header_parse_protocol
+ffffffc0087114f4 T eth_prepare_mac_addr_change
+ffffffc00871153c T eth_commit_mac_addr_change
+ffffffc008711574 T eth_mac_addr
+ffffffc0087115e4 T eth_validate_addr
+ffffffc008711614 T ether_setup
+ffffffc008711688 T alloc_etherdev_mqs
+ffffffc0087116d0 T sysfs_format_mac
+ffffffc008711714 T eth_gro_receive
+ffffffc0087118b8 T eth_gro_complete
+ffffffc00871194c W arch_get_platform_mac_address
+ffffffc008711960 T eth_platform_get_mac_address
+ffffffc0087119c4 T platform_get_ethdev_address
+ffffffc008711a74 T nvmem_get_mac_address
+ffffffc008711a88 T fwnode_get_mac_address
+ffffffc008711b58 T device_get_mac_address
+ffffffc008711b98 T device_get_ethdev_address
+ffffffc008711c2c T sch_direct_xmit
+ffffffc008712098 T __qdisc_run
+ffffffc008712d34 T dev_trans_start
+ffffffc008712da0 T netif_tx_lock
+ffffffc008712e84 t netif_freeze_queues
+ffffffc008712f64 T netif_tx_unlock
+ffffffc008713004 t netif_unfreeze_queues
+ffffffc0087130a0 T __netdev_watchdog_up
+ffffffc008713194 T netif_carrier_on
+ffffffc008713258 T netif_carrier_off
+ffffffc0087132f4 T netif_carrier_event
+ffffffc008713384 t noop_enqueue
+ffffffc0087133a8 t noop_dequeue
+ffffffc0087133bc t noqueue_init
+ffffffc0087133d8 t pfifo_fast_enqueue
+ffffffc008713668 t pfifo_fast_dequeue
+ffffffc008713a34 t pfifo_fast_peek
+ffffffc008713ac4 t pfifo_fast_init
+ffffffc008713bd8 t pfifo_fast_reset
+ffffffc008713d44 t pfifo_fast_destroy
+ffffffc008713d9c t pfifo_fast_change_tx_queue_len
+ffffffc008714068 t pfifo_fast_dump
+ffffffc00871410c T qdisc_alloc
+ffffffc008714308 T qdisc_create_dflt
+ffffffc0087144e4 T qdisc_put
+ffffffc008714578 T qdisc_reset
+ffffffc008714708 T qdisc_free
+ffffffc008714758 t qdisc_destroy
+ffffffc0087148e4 T qdisc_put_unlocked
+ffffffc008714940 T dev_graft_qdisc
+ffffffc0087149b8 T dev_activate
+ffffffc008714e84 T dev_deactivate_many
+ffffffc008715284 t dev_reset_queue
+ffffffc00871537c T dev_deactivate
+ffffffc008715430 T dev_qdisc_change_real_num_tx
+ffffffc008715484 T mq_change_real_num_tx
+ffffffc008715494 T dev_qdisc_change_tx_queue_len
+ffffffc0087155dc T dev_init_scheduler
+ffffffc00871567c t dev_watchdog
+ffffffc008715908 T dev_shutdown
+ffffffc008715b24 T psched_ratecfg_precompute
+ffffffc008715ba0 T psched_ppscfg_precompute
+ffffffc008715bec T mini_qdisc_pair_swap
+ffffffc008715c88 T mini_qdisc_pair_block_init
+ffffffc008715ca0 T mini_qdisc_pair_init
+ffffffc008715d04 t qdisc_free_cb
+ffffffc008715d58 t trace_net_dev_xmit_timeout
+ffffffc008715e10 t mq_init
+ffffffc008715fb0 t mq_destroy
+ffffffc0087160ac t mq_attach
+ffffffc008716138 t mq_dump
+ffffffc008716230 t mq_select_queue
+ffffffc008716274 t mq_graft
+ffffffc008716334 t mq_leaf
+ffffffc008716378 t mq_find
+ffffffc0087163c4 t mq_walk
+ffffffc008716494 t mq_dump_class
+ffffffc0087164f8 t mq_dump_class_stats
+ffffffc008716620 T sch_frag_xmit_hook
+ffffffc008716cc4 t sch_frag_xmit
+ffffffc008716f10 t sch_frag_dst_get_mtu
+ffffffc008716f28 T __traceiter_netlink_extack
+ffffffc008716fa8 t trace_event_raw_event_netlink_extack
+ffffffc0087170a0 t perf_trace_netlink_extack
+ffffffc0087171fc T do_trace_netlink_extack
+ffffffc0087172fc T netlink_add_tap
+ffffffc0087173bc T netlink_remove_tap
+ffffffc008717494 T netlink_table_grab
+ffffffc0087175ac T netlink_table_ungrab
+ffffffc0087175f8 T __netlink_ns_capable
+ffffffc00871766c T netlink_ns_capable
+ffffffc0087176e0 T netlink_capable
+ffffffc008717758 T netlink_net_capable
+ffffffc0087177d0 T netlink_getsockbyfilp
+ffffffc008717884 T netlink_attachskb
+ffffffc008717bc0 T netlink_sendskb
+ffffffc008717ce0 t __netlink_sendskb
+ffffffc008717d9c T netlink_detachskb
+ffffffc008717e3c T netlink_unicast
+ffffffc008718268 t netlink_trim
+ffffffc008718330 T netlink_has_listeners
+ffffffc0087183e4 T netlink_strict_get_check
+ffffffc008718400 T netlink_broadcast
+ffffffc008718b08 t netlink_lock_table
+ffffffc008718b80 t netlink_unlock_table
+ffffffc008718c0c T netlink_set_err
+ffffffc008718d3c T __netlink_kernel_create
+ffffffc008719034 t netlink_data_ready
+ffffffc00871903c t netlink_insert
+ffffffc0087195b8 T netlink_kernel_release
+ffffffc0087195f0 T __netlink_change_ngroups
+ffffffc0087196d4 T netlink_change_ngroups
+ffffffc0087197ec T __netlink_clear_multicast_users
+ffffffc008719864 t netlink_update_socket_mc
+ffffffc0087199d0 T __nlmsg_put
+ffffffc008719a6c T __netlink_dump_start
+ffffffc008719d88 t netlink_dump
+ffffffc00871a1e8 T netlink_ack
+ffffffc00871a5d0 T netlink_rcv_skb
+ffffffc00871a714 T nlmsg_notify
+ffffffc00871a828 T netlink_register_notifier
+ffffffc00871a860 T netlink_unregister_notifier
+ffffffc00871a898 t trace_raw_output_netlink_extack
+ffffffc00871a910 t netlink_skb_destructor
+ffffffc00871a9c0 t __netlink_deliver_tap
+ffffffc00871ac60 t netlink_sock_destruct
+ffffffc00871ad3c t netlink_release
+ffffffc00871b58c t netlink_bind
+ffffffc00871bab8 t netlink_connect
+ffffffc00871bbc0 t netlink_getname
+ffffffc00871bd1c t netlink_ioctl
+ffffffc00871bd30 t netlink_setsockopt
+ffffffc00871c1b0 t netlink_getsockopt
+ffffffc00871c8ec t netlink_sendmsg
+ffffffc00871ccd0 t netlink_recvmsg
+ffffffc00871d000 t deferred_put_nlk_sk
+ffffffc00871d0ec t netlink_hash
+ffffffc00871d160 t netlink_compare
+ffffffc00871d184 t netlink_sock_destruct_work
+ffffffc00871d1b0 t netlink_allowed
+ffffffc00871d210 t netlink_realloc_groups
+ffffffc00871d308 t netlink_autobind
+ffffffc00871d3f8 t __netlink_lookup
+ffffffc00871d544 t netlink_create
+ffffffc00871d910 t netlink_seq_start
+ffffffc00871da00 t netlink_seq_stop
+ffffffc00871da50 t netlink_seq_next
+ffffffc00871db08 t netlink_seq_show
+ffffffc00871dc1c T genl_lock
+ffffffc00871dc50 T genl_unlock
+ffffffc00871dc84 T genl_register_family
+ffffffc00871e3a4 t genl_ctrl_event
+ffffffc00871e718 T genl_unregister_family
+ffffffc00871e9b8 T genlmsg_put
+ffffffc00871ea50 T genlmsg_multicast_allns
+ffffffc00871eba8 T genl_notify
+ffffffc00871ec14 t ctrl_fill_info
+ffffffc00871f080 t ctrl_getfamily
+ffffffc00871f2c8 t ctrl_dumpfamily
+ffffffc00871f3bc t ctrl_dumppolicy_start
+ffffffc00871f6cc t ctrl_dumppolicy
+ffffffc00871fbf8 t ctrl_dumppolicy_done
+ffffffc00871fc28 t genl_get_cmd
+ffffffc00871fdb8 t genl_rcv
+ffffffc00871fe14 t genl_bind
+ffffffc00871ff28 t genl_rcv_msg
+ffffffc0087202ac t genl_start
+ffffffc008720424 t genl_lock_dumpit
+ffffffc0087204b0 t genl_lock_done
+ffffffc008720554 t genl_parallel_done
+ffffffc0087205c8 t genl_family_rcv_msg_attrs_parse
+ffffffc0087206d4 T netlink_policy_dump_get_policy_idx
+ffffffc00872074c T netlink_policy_dump_add_policy
+ffffffc0087208cc t add_policy
+ffffffc008720a00 T netlink_policy_dump_free
+ffffffc008720a2c T netlink_policy_dump_loop
+ffffffc008720a68 T netlink_policy_dump_attr_size_estimate
+ffffffc008720aa8 T netlink_policy_dump_write_attr
+ffffffc008720ae0 t __netlink_policy_dump_write_attr.llvm.1871485196645881997
+ffffffc008720ebc T netlink_policy_dump_write
+ffffffc008721024 T ethtool_op_get_link
+ffffffc008721040 T ethtool_op_get_ts_info
+ffffffc008721060 T ethtool_intersect_link_masks
+ffffffc0087210a8 T ethtool_convert_legacy_u32_to_link_mode
+ffffffc0087210c0 T ethtool_convert_link_mode_to_legacy_u32
+ffffffc008721108 T __ethtool_get_link_ksettings
+ffffffc0087211e0 T ethtool_virtdev_validate_cmd
+ffffffc0087212c8 T ethtool_virtdev_set_link_ksettings
+ffffffc0087213f0 T netdev_rss_key_fill
+ffffffc0087214bc T ethtool_sprintf
+ffffffc00872156c T ethtool_get_module_info_call
+ffffffc008721608 T ethtool_get_module_eeprom_call
+ffffffc0087216a4 T dev_ethtool
+ffffffc0087223dc T ethtool_rx_flow_rule_create
+ffffffc008722920 T ethtool_rx_flow_rule_destroy
+ffffffc008722960 t ethtool_get_settings
+ffffffc008722c44 t ethtool_set_settings
+ffffffc008722ee8 t ethtool_get_drvinfo
+ffffffc008723114 t ethtool_get_regs
+ffffffc008723628 t ethtool_get_wol
+ffffffc008723818 t ethtool_set_wol
+ffffffc008723a38 t ethtool_get_value
+ffffffc008723c10 t ethtool_set_value_void
+ffffffc008723dec t ethtool_get_eee
+ffffffc008723fec t ethtool_set_eee
+ffffffc0087241f4 t ethtool_get_link
+ffffffc0087243b0 t ethtool_get_eeprom
+ffffffc008724460 t ethtool_set_eeprom
+ffffffc0087248b8 t ethtool_get_coalesce
+ffffffc008724adc t ethtool_set_coalesce
+ffffffc008724e74 t ethtool_get_ringparam
+ffffffc00872507c t ethtool_set_ringparam
+ffffffc008725330 t ethtool_get_pauseparam
+ffffffc008725514 t ethtool_set_pauseparam
+ffffffc008725710 t ethtool_self_test
+ffffffc008725cbc t ethtool_get_strings
+ffffffc0087263c8 t ethtool_phys_id
+ffffffc0087267c8 t ethtool_get_stats
+ffffffc008726ce4 t ethtool_get_perm_addr
+ffffffc00872715c t __ethtool_get_flags
+ffffffc008727180 t ethtool_set_value
+ffffffc00872735c t __ethtool_set_flags
+ffffffc0087273f8 t ethtool_get_rxnfc
+ffffffc0087275c0 t ethtool_set_rxnfc
+ffffffc0087276f0 t ethtool_reset
+ffffffc008727a24 t ethtool_get_sset_info
+ffffffc008728028 t ethtool_get_rxfh_indir
+ffffffc008728554 t ethtool_set_rxfh_indir
+ffffffc008728918 t ethtool_get_rxfh
+ffffffc008729058 t ethtool_set_rxfh
+ffffffc008729828 t ethtool_get_features
+ffffffc008729ca8 t ethtool_set_features
+ffffffc00872a010 t ethtool_get_one_feature
+ffffffc00872a1e8 t ethtool_set_one_feature
+ffffffc00872a3fc t ethtool_get_channels
+ffffffc00872a5f4 t ethtool_set_channels
+ffffffc00872a90c t ethtool_set_dump
+ffffffc00872aaf0 t ethtool_get_dump_flag
+ffffffc00872ae24 t ethtool_get_dump_data
+ffffffc00872b37c t ethtool_get_ts_info
+ffffffc00872b544 t ethtool_get_module_info
+ffffffc00872b8c4 t ethtool_get_module_eeprom
+ffffffc00872b9d0 t ethtool_get_tunable
+ffffffc00872bdd4 t ethtool_set_tunable
+ffffffc00872c058 t ethtool_get_phy_stats
+ffffffc00872c608 t ethtool_set_per_queue
+ffffffc00872c81c t ethtool_get_link_ksettings
+ffffffc00872cdb8 t ethtool_set_link_ksettings
+ffffffc00872d208 t get_phy_tunable
+ffffffc00872d688 t set_phy_tunable
+ffffffc00872d988 t ethtool_get_fecparam
+ffffffc00872db84 t ethtool_set_fecparam
+ffffffc00872dd80 t ethtool_get_any_eeprom
+ffffffc00872e2f0 t ethtool_rxnfc_copy_from_user
+ffffffc00872e4a0 t ethtool_rxnfc_copy_to_user
+ffffffc00872e7bc t ethtool_copy_validate_indir
+ffffffc00872e9c0 t ethtool_get_per_queue_coalesce
+ffffffc00872ec7c t ethtool_set_per_queue_coalesce
+ffffffc00872f168 T convert_legacy_settings_to_link_ksettings
+ffffffc00872f214 T __ethtool_get_link
+ffffffc00872f284 T ethtool_get_max_rxfh_channel
+ffffffc00872f3ac T ethtool_check_ops
+ffffffc00872f3e0 T __ethtool_get_ts_info
+ffffffc00872f49c T ethtool_get_phc_vclocks
+ffffffc00872f57c T ethtool_set_ethtool_phy_ops
+ffffffc00872f5c8 T ethtool_params_from_link_mode
+ffffffc00872f63c T ethnl_ops_begin
+ffffffc00872f6f8 T ethnl_ops_complete
+ffffffc00872f768 T ethnl_parse_header_dev_get
+ffffffc00872f9d4 T ethnl_fill_reply_header
+ffffffc00872fafc T ethnl_reply_init
+ffffffc00872fbec T ethnl_dump_put
+ffffffc00872fc34 T ethnl_bcastmsg_put
+ffffffc00872fc84 T ethnl_multicast
+ffffffc00872fcf0 T ethtool_notify
+ffffffc00872fe30 t netdev_put
+ffffffc00872fed0 t ethnl_default_notify
+ffffffc0087301a0 t ethnl_default_doit
+ffffffc008730624 t ethnl_default_start
+ffffffc008730834 t ethnl_default_dumpit
+ffffffc008730c14 t ethnl_default_done
+ffffffc008730c5c t ethnl_netdev_event
+ffffffc008730ca0 T ethnl_bitset32_size
+ffffffc008730df0 T ethnl_put_bitset32
+ffffffc008731160 T ethnl_bitset_is_compact
+ffffffc008731254 T ethnl_update_bitset32
+ffffffc008731718 t ethnl_compact_sanity_checks
+ffffffc008731910 T ethnl_parse_bitset
+ffffffc008731c38 t ethnl_parse_bit
+ffffffc008731e4c T ethnl_bitset_size
+ffffffc008731f9c T ethnl_put_bitset
+ffffffc008731fc8 T ethnl_update_bitset
+ffffffc008731ff4 t strset_parse_request
+ffffffc008732224 t strset_prepare_data
+ffffffc008732518 t strset_reply_size
+ffffffc00873263c t strset_fill_reply
+ffffffc0087329b8 t strset_cleanup_data
+ffffffc008732a28 t linkinfo_prepare_data
+ffffffc008732ac4 t linkinfo_reply_size
+ffffffc008732ad8 t linkinfo_fill_reply
+ffffffc008732c08 T ethnl_set_linkinfo
+ffffffc008732e84 t linkmodes_prepare_data
+ffffffc008732f58 t linkmodes_reply_size
+ffffffc008733008 t linkmodes_fill_reply
+ffffffc0087331c8 T ethnl_set_linkmodes
+ffffffc008733764 t linkstate_prepare_data
+ffffffc008733914 t linkstate_reply_size
+ffffffc008733964 t linkstate_fill_reply
+ffffffc008733a9c t debug_prepare_data
+ffffffc008733b2c t debug_reply_size
+ffffffc008733b78 t debug_fill_reply
+ffffffc008733bc4 T ethnl_set_debug
+ffffffc008733dcc t wol_prepare_data
+ffffffc008733e80 t wol_reply_size
+ffffffc008733eec t wol_fill_reply
+ffffffc008733f78 T ethnl_set_wol
+ffffffc008734274 t features_prepare_data
+ffffffc0087342b4 t features_reply_size
+ffffffc0087343bc t features_fill_reply
+ffffffc0087344a0 T ethnl_set_features
+ffffffc008734850 t privflags_prepare_data
+ffffffc008734a00 t privflags_reply_size
+ffffffc008734a80 t privflags_fill_reply
+ffffffc008734b08 t privflags_cleanup_data
+ffffffc008734b38 T ethnl_set_privflags
+ffffffc008734e80 t rings_prepare_data
+ffffffc008734f30 t rings_reply_size
+ffffffc008734f44 t rings_fill_reply
+ffffffc008735178 T ethnl_set_rings
+ffffffc0087355a4 t channels_prepare_data
+ffffffc008735634 t channels_reply_size
+ffffffc008735648 t channels_fill_reply
+ffffffc0087357c8 T ethnl_set_channels
+ffffffc008735b94 t coalesce_prepare_data
+ffffffc008735c58 t coalesce_reply_size
+ffffffc008735c6c t coalesce_fill_reply
+ffffffc0087360e4 T ethnl_set_coalesce
+ffffffc0087366a0 t coalesce_put_bool
+ffffffc00873673c t pause_prepare_data
+ffffffc00873681c t pause_reply_size
+ffffffc008736840 t pause_fill_reply
+ffffffc008736a08 T ethnl_set_pause
+ffffffc008736c98 t eee_prepare_data
+ffffffc008736d3c t eee_reply_size
+ffffffc008736ddc t eee_fill_reply
+ffffffc008736f50 T ethnl_set_eee
+ffffffc00873721c t tsinfo_prepare_data
+ffffffc00873728c t tsinfo_reply_size
+ffffffc008737378 t tsinfo_fill_reply
+ffffffc0087374a4 T ethnl_act_cable_test
+ffffffc008737654 t ethnl_cable_test_started
+ffffffc008737790 T ethnl_cable_test_alloc
+ffffffc0087378b0 T ethnl_cable_test_free
+ffffffc0087378f4 T ethnl_cable_test_finished
+ffffffc008737968 T ethnl_cable_test_result
+ffffffc008737a8c T ethnl_cable_test_fault_length
+ffffffc008737bb0 T ethnl_act_cable_test_tdr
+ffffffc008737f74 T ethnl_cable_test_amplitude
+ffffffc008738098 T ethnl_cable_test_pulse
+ffffffc008738198 T ethnl_cable_test_step
+ffffffc0087382dc T ethnl_tunnel_info_doit
+ffffffc0087387b0 t ethnl_tunnel_info_fill_reply
+ffffffc008738b0c T ethnl_tunnel_info_start
+ffffffc008738bf4 T ethnl_tunnel_info_dumpit
+ffffffc008738df0 t fec_prepare_data
+ffffffc008739028 t fec_reply_size
+ffffffc008739098 t fec_fill_reply
+ffffffc008739258 T ethnl_set_fec
+ffffffc00873957c t fec_stats_recalc
+ffffffc0087396e0 t eeprom_parse_request
+ffffffc00873980c t eeprom_prepare_data
+ffffffc008739a38 t eeprom_reply_size
+ffffffc008739a54 t eeprom_fill_reply
+ffffffc008739a90 t eeprom_cleanup_data
+ffffffc008739ac0 t stats_parse_request
+ffffffc008739b74 t stats_prepare_data
+ffffffc008739cc8 t stats_reply_size
+ffffffc008739d44 t stats_fill_reply
+ffffffc008739e28 t stats_put_stats
+ffffffc008739f7c t stats_put_phy_stats
+ffffffc00873a084 t stats_put_mac_stats
+ffffffc00873a57c t stats_put_ctrl_stats
+ffffffc00873a7a8 t stats_put_rmon_stats
+ffffffc00873aa08 t stat_put
+ffffffc00873ab18 t stats_put_rmon_hist
+ffffffc00873acb0 t phc_vclocks_prepare_data
+ffffffc00873ad1c t phc_vclocks_reply_size
+ffffffc00873ad48 t phc_vclocks_fill_reply
+ffffffc00873ae08 t phc_vclocks_cleanup_data
+ffffffc00873ae38 t module_prepare_data
+ffffffc00873aee8 t module_reply_size
+ffffffc00873af14 t module_fill_reply
+ffffffc00873afcc T ethnl_set_module
+ffffffc00873b208 t pse_prepare_data
+ffffffc00873b2c0 t pse_reply_size
+ffffffc00873b2ec t pse_fill_reply
+ffffffc00873b3a4 T ethnl_set_pse
+ffffffc00873b548 T rt_cache_flush
+ffffffc00873b588 T __ip_select_ident
+ffffffc00873b6d8 T ip_rt_send_redirect
+ffffffc00873b8c8 T ipv4_update_pmtu
+ffffffc00873b9e0 t __ip_rt_update_pmtu
+ffffffc00873bc60 T ipv4_sk_update_pmtu
+ffffffc00873c178 T ip_route_output_flow
+ffffffc00873c270 T ipv4_redirect
+ffffffc00873c360 t __ip_do_redirect
+ffffffc00873c5c4 T ipv4_sk_redirect
+ffffffc00873c714 T ip_rt_get_source
+ffffffc00873c8e4 t fib_lookup
+ffffffc00873c9bc t fib_lookup
+ffffffc00873ca98 T ip_mtu_from_fib_result
+ffffffc00873cb40 t find_exception
+ffffffc00873cd7c T rt_add_uncached_list
+ffffffc00873ce14 T rt_del_uncached_list
+ffffffc00873ce9c T rt_flush_dev
+ffffffc00873d0dc T rt_dst_alloc
+ffffffc00873d18c T rt_dst_clone
+ffffffc00873d2a4 T ip_mc_validate_source
+ffffffc00873d37c T ip_route_use_hint
+ffffffc00873d54c T ip_route_input_noref
+ffffffc00873d600 t ip_route_input_rcu
+ffffffc00873de64 T ip_route_output_key_hash
+ffffffc00873df24 T ip_route_output_key_hash_rcu
+ffffffc00873e630 T ipv4_blackhole_route
+ffffffc00873e7dc T ip_route_output_tunnel
+ffffffc00873e978 T fib_dump_info_fnhe
+ffffffc00873ebb8 T ip_rt_multicast_event
+ffffffc00873ec04 t inet_rtm_getroute
+ffffffc00873f360 t ipv4_mtu
+ffffffc00873f3fc t update_or_create_fnhe
+ffffffc00873f86c t __ipv4_neigh_lookup
+ffffffc00873f9cc t ipv4_dst_check
+ffffffc00873fa10 t ipv4_default_advmss
+ffffffc00873fad0 t ipv4_cow_metrics
+ffffffc00873fae8 t ipv4_dst_destroy
+ffffffc00873fbe8 t ipv4_negative_advice
+ffffffc00873fc38 t ipv4_link_failure
+ffffffc00873fdd0 t ip_rt_update_pmtu
+ffffffc00873ffbc t ip_do_redirect
+ffffffc0087400c8 t ipv4_neigh_lookup
+ffffffc0087402cc t ipv4_confirm_neigh
+ffffffc0087404c8 t ip_neigh_gw4
+ffffffc0087405b0 t ip_neigh_gw4
+ffffffc008740698 t ip_neigh_gw6
+ffffffc008740790 t ip_neigh_gw6
+ffffffc00874088c t ip_rt_bug
+ffffffc0087408c4 t ip_mkroute_input
+ffffffc008740c30 t ip_error
+ffffffc008740e48 t rt_cache_route
+ffffffc008740fd4 t rt_set_nexthop
+ffffffc008741194 t rt_bind_exception
+ffffffc0087413bc t rt_fill_info
+ffffffc0087417a0 t rt_cache_seq_start
+ffffffc0087417bc t rt_cache_seq_stop
+ffffffc0087417cc t rt_cache_seq_next
+ffffffc0087417ec t rt_cache_seq_show
+ffffffc00874183c t rt_cpu_seq_start
+ffffffc0087418e0 t rt_cpu_seq_stop
+ffffffc0087418f0 t rt_cpu_seq_next
+ffffffc00874198c t rt_cpu_seq_show
+ffffffc008741a50 t ipv4_sysctl_rtcache_flush
+ffffffc008741ad4 T inet_peer_base_init
+ffffffc008741aec T inet_getpeer
+ffffffc008741e48 t lookup
+ffffffc008741ffc T inet_putpeer
+ffffffc00874209c t inetpeer_free_rcu
+ffffffc0087420d4 T inet_peer_xrlim_allow
+ffffffc00874213c T inetpeer_invalidate_tree
+ffffffc008742234 T inet_add_protocol
+ffffffc0087422a0 T inet_add_offload
+ffffffc00874230c T inet_del_protocol
+ffffffc0087423a0 T inet_del_offload
+ffffffc008742434 T ip_call_ra_chain
+ffffffc008742564 T ip_protocol_deliver_rcu
+ffffffc00874273c T ip_local_deliver
+ffffffc008742828 T ip_rcv
+ffffffc0087428b4 t ip_rcv_core
+ffffffc008742cc4 T ip_list_rcv
+ffffffc008742e3c t ip_sublist_rcv
+ffffffc008743078 t ip_rcv_finish_core
+ffffffc0087434d0 T ip_defrag
+ffffffc008743ca0 T ip_check_defrag
+ffffffc008743e68 t pskb_may_pull
+ffffffc008743ec4 t pskb_may_pull
+ffffffc008743f20 t pskb_may_pull
+ffffffc008743f7c t pskb_may_pull
+ffffffc008743fd8 t pskb_may_pull
+ffffffc00874403c t ip4_frag_init
+ffffffc0087440f8 t ip4_frag_free
+ffffffc00874412c t ip_expire
+ffffffc008744318 t ip4_key_hashfn
+ffffffc0087443f0 t ip4_obj_hashfn
+ffffffc0087444c8 t ip4_obj_cmpfn
+ffffffc0087444fc T ip_forward
+ffffffc0087449a8 t NF_HOOK
+ffffffc008744a7c T ip_options_build
+ffffffc008744b80 T __ip_options_echo
+ffffffc008744e94 T ip_options_fragment
+ffffffc008744f50 T __ip_options_compile
+ffffffc008745528 T ip_options_compile
+ffffffc0087455bc T ip_options_undo
+ffffffc0087456a0 T ip_options_get
+ffffffc00874599c T ip_forward_options
+ffffffc008745b54 T ip_options_rcv_srr
+ffffffc008745ddc T ip_send_check
+ffffffc008745e40 T __ip_local_out
+ffffffc008745edc T ip_local_out
+ffffffc008745fb0 T ip_build_and_send_pkt
+ffffffc008746228 T ip_mc_output
+ffffffc008746498 t ip_finish_output
+ffffffc0087466d4 T ip_output
+ffffffc008746830 T __ip_queue_xmit
+ffffffc008746cd0 T ip_queue_xmit
+ffffffc008746d00 T ip_fraglist_init
+ffffffc008746e74 T ip_fraglist_prepare
+ffffffc008746fb8 t ip_copy_metadata
+ffffffc0087471b4 T ip_frag_init
+ffffffc00874720c T ip_frag_next
+ffffffc0087473f4 T ip_do_fragment
+ffffffc008747cfc T ip_generic_getfrag
+ffffffc008747e3c T ip_append_data
+ffffffc008747f30 t ip_setup_cork
+ffffffc0087480dc t __ip_append_data
+ffffffc008748f44 T ip_append_page
+ffffffc0087493e0 T __ip_make_skb
+ffffffc0087497fc T ip_send_skb
+ffffffc00874998c T ip_push_pending_frames
+ffffffc0087499d4 T ip_flush_pending_frames
+ffffffc008749a84 T ip_make_skb
+ffffffc008749c2c T ip_send_unicast_reply
+ffffffc008749fc0 t ip_reply_glue_bits
+ffffffc00874a044 t ip_fragment
+ffffffc00874a160 t ip_finish_output2
+ffffffc00874a6e4 T ip_cmsg_recv_offset
+ffffffc00874aa5c T ip_cmsg_send
+ffffffc00874acc4 T ip_ra_control
+ffffffc00874ae8c t ip_ra_destroy_rcu
+ffffffc00874af2c T ip_icmp_error
+ffffffc00874b06c T ip_local_error
+ffffffc00874b174 T ip_recv_error
+ffffffc00874b3dc T __ip_sock_set_tos
+ffffffc00874b488 T ip_sock_set_tos
+ffffffc00874b554 T ip_sock_set_freebind
+ffffffc00874b5a4 T ip_sock_set_recverr
+ffffffc00874b5f4 T ip_sock_set_mtu_discover
+ffffffc00874b654 T ip_sock_set_pktinfo
+ffffffc00874b6a4 T do_ip_setsockopt
+ffffffc00874c274 t dev_put
+ffffffc00874c30c t dev_put
+ffffffc00874c3a4 t dev_put
+ffffffc00874c440 t dev_put
+ffffffc00874c4d8 t dev_put
+ffffffc00874c570 t memdup_sockptr
+ffffffc00874c60c t ip_mcast_join_leave
+ffffffc00874c700 t ip_set_mcast_msfilter
+ffffffc00874c868 T ipv4_pktinfo_prepare
+ffffffc00874c950 T ip_setsockopt
+ffffffc00874c988 T do_ip_getsockopt
+ffffffc00874cfec t copy_to_sockptr
+ffffffc00874d1ac t copy_to_sockptr
+ffffffc00874d36c t copy_to_sockptr
+ffffffc00874d52c t sk_dst_get
+ffffffc00874d5e0 t ip_get_mcast_msfilter
+ffffffc00874d724 T ip_getsockopt
+ffffffc00874d758 t set_mcast_msfilter
+ffffffc00874d848 T inet_bind_bucket_create
+ffffffc00874d8c4 T inet_bind_bucket_destroy
+ffffffc00874d910 T inet_bind_bucket_match
+ffffffc00874d944 T inet_bind2_bucket_create
+ffffffc00874d9e4 T inet_bind2_bucket_destroy
+ffffffc00874da40 T inet_bind_hash
+ffffffc00874da9c T inet_put_port
+ffffffc00874dc70 T __inet_inherit_port
+ffffffc00874e050 T inet_bind2_bucket_find
+ffffffc00874e110 T __inet_lookup_listener
+ffffffc00874e570 t inet_lhash2_lookup
+ffffffc00874e708 T sock_gen_put
+ffffffc00874e87c T sock_edemux
+ffffffc00874e8ac T __inet_lookup_established
+ffffffc00874eaac t inet_ehashfn
+ffffffc00874ebec T inet_ehash_insert
+ffffffc00874eef4 T inet_ehash_nolisten
+ffffffc00874f050 T __inet_hash
+ffffffc00874f3a8 T inet_hash
+ffffffc00874f3ec T inet_unhash
+ffffffc00874f688 T inet_bind2_bucket_match_addr_any
+ffffffc00874f720 T inet_bhash2_addr_any_hashbucket
+ffffffc00874f81c t ipv6_portaddr_hash
+ffffffc00874f9bc t ipv6_portaddr_hash
+ffffffc00874fb5c t ipv6_portaddr_hash
+ffffffc00874fd00 T inet_bhash2_update_saddr
+ffffffc00874fd2c t __inet_bhash2_update_saddr.llvm.16002304985836757850
+ffffffc008750204 T inet_bhash2_reset_saddr
+ffffffc008750244 T __inet_hash_connect
+ffffffc00875087c T inet_hash_connect
+ffffffc0087508e8 t __inet_check_established
+ffffffc008750bd8 T inet_hashinfo2_init_mod
+ffffffc008750c74 T inet_ehash_locks_alloc
+ffffffc008750d30 T inet_pernet_hashinfo_alloc
+ffffffc008750e68 T inet_pernet_hashinfo_free
+ffffffc008750ec0 T inet_twsk_bind_unhash
+ffffffc008750f94 T inet_twsk_free
+ffffffc00875100c T inet_twsk_put
+ffffffc0087510dc T inet_twsk_hashdance
+ffffffc008751314 t inet_bhashfn_portaddr
+ffffffc008751554 t inet_bhashfn_portaddr
+ffffffc008751798 T inet_twsk_alloc
+ffffffc0087518c4 t tw_timer_handler
+ffffffc0087518f4 T inet_twsk_deschedule_put
+ffffffc0087519d4 t inet_twsk_kill
+ffffffc008751bfc T __inet_twsk_schedule
+ffffffc008751cf4 T inet_twsk_purge
+ffffffc008751f70 T inet_rcv_saddr_equal
+ffffffc0087520f0 t ipv6_rcv_saddr_equal
+ffffffc0087521e8 T inet_rcv_saddr_any
+ffffffc008752220 T inet_get_local_port_range
+ffffffc008752280 T inet_sk_get_local_port_range
+ffffffc008752320 T inet_csk_update_fastreuse
+ffffffc0087524b4 T inet_csk_get_port
+ffffffc008752c2c t inet_bhash2_addr_any_conflict
+ffffffc008752d60 t inet_csk_bind_conflict
+ffffffc008752eb8 T inet_csk_accept
+ffffffc0087530e4 t reqsk_put.llvm.16767069358640924575
+ffffffc008753228 T inet_csk_init_xmit_timers
+ffffffc0087532b8 T inet_csk_clear_xmit_timers
+ffffffc008753314 T inet_csk_delete_keepalive_timer
+ffffffc008753344 T inet_csk_reset_keepalive_timer
+ffffffc008753384 T inet_csk_route_req
+ffffffc0087534f0 T inet_csk_route_child_sock
+ffffffc00875364c T inet_rtx_syn_ack
+ffffffc0087536b4 T inet_csk_reqsk_queue_drop
+ffffffc0087537f8 T inet_csk_reqsk_queue_drop_and_put
+ffffffc008753838 T inet_csk_reqsk_queue_hash_add
+ffffffc00875392c T inet_csk_clone_lock
+ffffffc008753a58 T inet_csk_destroy_sock
+ffffffc008753c24 T inet_csk_prepare_forced_close
+ffffffc008753d48 T inet_csk_listen_start
+ffffffc008753e80 T inet_csk_reqsk_queue_add
+ffffffc008753f2c t inet_child_forget
+ffffffc008754084 T inet_csk_complete_hashdance
+ffffffc008754430 t inet_reqsk_clone
+ffffffc008754588 T inet_csk_listen_stop
+ffffffc008754930 T inet_csk_addr2sockaddr
+ffffffc008754958 T inet_csk_update_pmtu
+ffffffc0087549f8 t inet_csk_rebuild_route
+ffffffc008754b4c t inet_bhash2_conflict
+ffffffc008754c68 t inet_bind_conflict
+ffffffc008754d5c t reqsk_timer_handler
+ffffffc008755294 T tcp_enter_memory_pressure
+ffffffc0087553b0 T tcp_leave_memory_pressure
+ffffffc0087554ac T tcp_init_sock
+ffffffc008755624 T tcp_poll
+ffffffc0087559dc T tcp_ioctl
+ffffffc008755ce8 T tcp_mark_push
+ffffffc008755d0c T tcp_skb_entail
+ffffffc008755e3c T tcp_push
+ffffffc008756020 T tcp_splice_read
+ffffffc0087562fc T tcp_stream_alloc_skb
+ffffffc008756414 t sk_wmem_schedule
+ffffffc008756470 T tcp_send_mss
+ffffffc00875653c T tcp_remove_empty_skb
+ffffffc0087566b8 T do_tcp_sendpages
+ffffffc008756ef0 T tcp_sendpage_locked
+ffffffc008756f88 T tcp_sendpage
+ffffffc008757038 T tcp_free_fastopen_req
+ffffffc00875707c T tcp_sendmsg_fastopen
+ffffffc0087571e8 T tcp_set_state
+ffffffc008757424 T tcp_sendmsg_locked
+ffffffc0087581ec t tcp_downgrade_zcopy_pure
+ffffffc008758294 T tcp_sendmsg
+ffffffc008758300 T tcp_cleanup_rbuf
+ffffffc00875837c t __tcp_cleanup_rbuf
+ffffffc008758460 T tcp_recv_skb
+ffffffc0087585b0 T tcp_read_sock
+ffffffc00875888c T tcp_read_skb
+ffffffc008758acc T tcp_read_done
+ffffffc008758c9c T tcp_peek_len
+ffffffc008758d18 T tcp_set_rcvlowat
+ffffffc008758dd8 T tcp_update_recv_tstamps
+ffffffc008758e4c T tcp_mmap
+ffffffc008758f1c T tcp_recv_timestamp
+ffffffc0087590b8 T tcp_recvmsg
+ffffffc0087592f0 t tcp_recvmsg_locked
+ffffffc008759a98 t tcp_inq_hint
+ffffffc008759b34 T tcp_shutdown
+ffffffc008759bc0 T tcp_orphan_count_sum
+ffffffc008759c68 T tcp_check_oom
+ffffffc008759d84 T __tcp_close
+ffffffc00875a374 T tcp_close
+ffffffc00875a428 T tcp_write_queue_purge
+ffffffc00875a6dc T tcp_disconnect
+ffffffc00875abd0 T __tcp_sock_set_cork
+ffffffc00875ac60 T tcp_sock_set_cork
+ffffffc00875ad04 T __tcp_sock_set_nodelay
+ffffffc00875ad88 T tcp_sock_set_nodelay
+ffffffc00875ae0c T tcp_sock_set_quickack
+ffffffc00875aed4 t __tcp_sock_set_quickack
+ffffffc00875af90 T tcp_sock_set_syncnt
+ffffffc00875aff4 T tcp_sock_set_user_timeout
+ffffffc00875b040 T tcp_sock_set_keepidle_locked
+ffffffc00875b0ec T tcp_sock_set_keepidle
+ffffffc00875b1c0 T tcp_sock_set_keepintvl
+ffffffc00875b230 T tcp_sock_set_keepcnt
+ffffffc00875b294 T tcp_set_window_clamp
+ffffffc00875b2f0 T do_tcp_setsockopt
+ffffffc00875bb34 t tcp_repair_options_est
+ffffffc00875bcd8 t tcp_repair_set_window
+ffffffc00875bdc0 t tcp_enable_tx_delay
+ffffffc00875be6c T tcp_setsockopt
+ffffffc00875bed0 T tcp_get_info
+ffffffc00875c360 T tcp_get_timestamping_opt_stats
+ffffffc00875c82c T do_tcp_getsockopt
+ffffffc00875d1b8 t check_zeroed_sockptr
+ffffffc00875d200 t tcp_zerocopy_receive
+ffffffc00875da18 T tcp_bpf_bypass_getsockopt
+ffffffc00875da38 T tcp_getsockopt
+ffffffc00875daac T tcp_done
+ffffffc00875dc90 T tcp_abort
+ffffffc00875de44 t tcp_orphan_update
+ffffffc00875df10 t tcp_splice_data_recv
+ffffffc00875df78 t tcp_fast_path_check
+ffffffc00875dfec t tcp_peek_sndq
+ffffffc00875e0cc t copy_from_sockptr_offset
+ffffffc00875e2b4 t copy_from_sockptr_offset
+ffffffc00875e480 t tcp_zerocopy_vm_insert_batch
+ffffffc00875e57c t tcp_zc_handle_leftover
+ffffffc00875e714 t tcp_zerocopy_vm_insert_batch_error
+ffffffc00875e838 T tcp_enter_quickack_mode
+ffffffc00875e888 T tcp_initialize_rcv_mss
+ffffffc00875e8d4 T tcp_rcv_space_adjust
+ffffffc00875ead4 T tcp_init_cwnd
+ffffffc00875eb08 T tcp_mark_skb_lost
+ffffffc00875ec48 T tcp_skb_shift
+ffffffc00875eca8 T tcp_clear_retrans
+ffffffc00875ecc8 T tcp_enter_loss
+ffffffc00875f03c T tcp_cwnd_reduction
+ffffffc00875f104 T tcp_enter_cwr
+ffffffc00875f1ac T tcp_simple_retransmit
+ffffffc00875f328 T tcp_enter_recovery
+ffffffc00875f4b0 T tcp_synack_rtt_meas
+ffffffc00875f578 t tcp_ack_update_rtt
+ffffffc00875f7f0 T tcp_rearm_rto
+ffffffc00875f908 T tcp_oow_rate_limited
+ffffffc00875fa14 T tcp_parse_mss_option
+ffffffc00875fad4 T tcp_parse_options
+ffffffc00875ff84 T tcp_reset
+ffffffc00876009c T tcp_fin
+ffffffc008760258 t sk_wake_async
+ffffffc0087602b4 T tcp_send_rcvq
+ffffffc0087604a0 t tcp_try_rmem_schedule
+ffffffc008761054 t tcp_queue_rcv
+ffffffc0087611a8 T tcp_data_ready
+ffffffc008761288 T tcp_rbtree_insert
+ffffffc008761314 T tcp_check_space
+ffffffc008761514 T tcp_rcv_established
+ffffffc008761e80 t tcp_ack
+ffffffc0087631ac t tcp_data_snd_check
+ffffffc008763214 t tcp_event_data_recv
+ffffffc00876347c t __tcp_ack_snd_check
+ffffffc00876369c t tcp_validate_incoming
+ffffffc008763bf4 t tcp_urg
+ffffffc008763d10 t tcp_data_queue
+ffffffc008765334 t tcp_drop_reason
+ffffffc0087653ac T tcp_init_transfer
+ffffffc00876567c T tcp_finish_connect
+ffffffc0087657d4 T tcp_rcv_state_process
+ffffffc0087665dc t tcp_send_challenge_ack
+ffffffc0087667d8 t tcp_rcv_synrecv_state_fastopen
+ffffffc008766844 t tcp_update_pacing_rate
+ffffffc0087668d0 T inet_reqsk_alloc
+ffffffc008766a2c T tcp_get_syncookie_mss
+ffffffc008766b4c T tcp_conn_request
+ffffffc00876751c t tcp_prune_ofo_queue
+ffffffc0087676f4 t tcp_collapse_one
+ffffffc0087677f4 t tcp_try_coalesce
+ffffffc0087679d0 t tcp_sacktag_write_queue
+ffffffc008768638 t tcp_process_tlp_ack
+ffffffc008768850 t tcp_fastretrans_alert
+ffffffc0087693b4 t tcp_newly_delivered
+ffffffc0087694e8 t tcp_sacktag_walk
+ffffffc008769b44 t tcp_check_sack_reordering
+ffffffc008769c74 t tcp_sacktag_one
+ffffffc008769e6c t tcp_shifted_skb
+ffffffc00876a16c t tcp_rtx_queue_unlink_and_free
+ffffffc00876a2b8 t tcp_rtx_queue_unlink_and_free
+ffffffc00876a404 t tcp_mtup_probe_success
+ffffffc00876a578 t tcp_try_undo_recovery
+ffffffc00876a778 t tcp_add_reno_sack
+ffffffc00876a8dc t tcp_try_undo_dsack
+ffffffc00876aa48 t tcp_try_undo_loss
+ffffffc00876acfc t tcp_mark_head_lost
+ffffffc00876ae08 t tcp_ecn_check_ce
+ffffffc00876af68 t tcp_grow_window
+ffffffc00876b194 t tcp_gro_dev_warn
+ffffffc00876b220 t tcp_send_dupack
+ffffffc00876b500 t tcp_check_urg
+ffffffc00876b61c t tcp_dsack_extend
+ffffffc00876b77c t tcp_sack_compress_send_ack
+ffffffc00876b89c t tcp_rcv_fastopen_synack
+ffffffc00876bb50 T tcp_mstamp_refresh
+ffffffc00876bbac T tcp_cwnd_restart
+ffffffc00876bcc0 T tcp_select_initial_window
+ffffffc00876bdd4 T tcp_release_cb
+ffffffc00876bfec t tcp_tsq_write
+ffffffc00876c154 t tcp_tasklet_func
+ffffffc00876c2c8 T tcp_wfree
+ffffffc00876c538 T tcp_pace_kick
+ffffffc00876c5d8 t tcp_tsq_handler
+ffffffc00876c6bc T tcp_fragment
+ffffffc00876cb08 t tcp_adjust_pcount
+ffffffc00876cbe4 T tcp_trim_head
+ffffffc00876cd54 t __pskb_trim_head
+ffffffc00876cf00 T tcp_mtu_to_mss
+ffffffc00876cf8c T tcp_mss_to_mtu
+ffffffc00876cff0 T tcp_mtup_init
+ffffffc00876d0c4 T tcp_sync_mss
+ffffffc00876d228 T tcp_current_mss
+ffffffc00876d300 T tcp_chrono_start
+ffffffc00876d358 T tcp_chrono_stop
+ffffffc00876d410 T tcp_schedule_loss_probe
+ffffffc00876d5a4 T tcp_send_loss_probe
+ffffffc00876d880 t tcp_write_xmit
+ffffffc00876e920 t skb_still_in_host_queue
+ffffffc00876ea74 T __tcp_retransmit_skb
+ffffffc00876f1fc T __tcp_push_pending_frames
+ffffffc00876f2d8 T tcp_push_one
+ffffffc00876f334 T __tcp_select_window
+ffffffc00876f524 T tcp_skb_collapse_tstamp
+ffffffc00876f594 t tcp_update_skb_after_send
+ffffffc00876f678 T tcp_retransmit_skb
+ffffffc00876f730 T tcp_xmit_retransmit_queue
+ffffffc00876fcb8 T sk_forced_mem_schedule
+ffffffc00876fdb0 T tcp_send_fin
+ffffffc0087700cc T tcp_send_active_reset
+ffffffc0087703d0 T tcp_send_synack
+ffffffc0087705d4 T tcp_make_synack
+ffffffc008770a04 t tcp_options_write
+ffffffc008770c24 T tcp_connect
+ffffffc0087718b8 T tcp_send_delayed_ack
+ffffffc0087719bc T tcp_send_ack
+ffffffc0087719ec T __tcp_send_ack
+ffffffc008771b44 t __tcp_transmit_skb
+ffffffc00877272c T tcp_send_window_probe
+ffffffc0087727ac t tcp_xmit_probe_skb
+ffffffc008772904 T tcp_write_wakeup
+ffffffc008772b1c t tcp_event_new_data_sent
+ffffffc008772c44 T tcp_send_probe0
+ffffffc008772d84 T tcp_rtx_synack
+ffffffc008773024 t tcp_init_tso_segs
+ffffffc008773078 t tcp_mtu_check_reprobe
+ffffffc00877311c t tcp_can_coalesce_send_queue_head
+ffffffc0087731b4 t tcp_wmem_free_skb
+ffffffc0087732c4 t tcp_syn_options
+ffffffc0087734c8 T tcp_clamp_probe0_to_user_timeout
+ffffffc008773540 T tcp_delack_timer_handler
+ffffffc008773624 T tcp_retransmit_timer
+ffffffc0087740d4 t tcp_write_err
+ffffffc008774150 T tcp_write_timer_handler
+ffffffc0087743f0 T tcp_syn_ack_timeout
+ffffffc008774420 T tcp_set_keepalive
+ffffffc0087744a8 T tcp_init_xmit_timers
+ffffffc008774530 t tcp_write_timer
+ffffffc008774680 t tcp_delack_timer
+ffffffc0087747f0 t tcp_keepalive_timer
+ffffffc008774ad0 t tcp_compressed_ack_kick
+ffffffc008774c40 T tcp_twsk_unique
+ffffffc008774df8 T tcp_v4_connect
+ffffffc008775220 t ip_route_newports
+ffffffc0087752c4 T tcp_v4_mtu_reduced
+ffffffc00877540c T tcp_req_err
+ffffffc0087754d4 t reqsk_put
+ffffffc008775614 t reqsk_put
+ffffffc008775758 T tcp_ld_RTO_revert
+ffffffc008775890 T tcp_v4_err
+ffffffc008775dc0 t sock_put
+ffffffc008775e48 t sock_put
+ffffffc008775ed0 t sock_put
+ffffffc008775f58 t sock_put
+ffffffc008775fe0 t sock_put
+ffffffc00877606c T __tcp_v4_send_check
+ffffffc0087760e8 T tcp_v4_send_check
+ffffffc008776164 t tcp_v4_reqsk_send_ack
+ffffffc00877624c t tcp_v4_send_reset
+ffffffc008776694 t tcp_v4_reqsk_destructor
+ffffffc0087766c4 t tcp_v4_route_req
+ffffffc0087767c4 t tcp_v4_init_seq
+ffffffc008776810 t tcp_v4_init_ts_off
+ffffffc00877684c t tcp_v4_send_synack
+ffffffc0087769cc T tcp_v4_conn_request
+ffffffc008776a7c T tcp_v4_syn_recv_sock
+ffffffc008776eb0 T inet_sk_rx_dst_set
+ffffffc008776f48 T tcp_v4_get_syncookie
+ffffffc008776f5c T tcp_v4_do_rcv
+ffffffc008777290 t tcp_checksum_complete
+ffffffc008777304 t tcp_checksum_complete
+ffffffc008777378 t trace_tcp_bad_csum
+ffffffc00877742c T tcp_v4_early_demux
+ffffffc008777598 T tcp_add_backlog
+ffffffc008777a64 T tcp_filter
+ffffffc008777aa0 T tcp_v4_rcv
+ffffffc0087786f8 t xfrm4_policy_check
+ffffffc008778784 t xfrm4_policy_check
+ffffffc0087787f8 t tcp_v4_fill_cb
+ffffffc0087788ac t tcp_segs_in
+ffffffc00877890c t tcp_segs_in
+ffffffc008778970 T tcp_v4_destroy_sock
+ffffffc008778b64 T tcp_seq_start
+ffffffc008778e24 t tcp_get_idx
+ffffffc008779018 T tcp_seq_next
+ffffffc008779178 t listening_get_next
+ffffffc0087792cc t established_get_next
+ffffffc008779440 T tcp_seq_stop
+ffffffc0087794bc T tcp4_proc_exit
+ffffffc008779510 T tcp_stream_memory_free
+ffffffc008779560 t tcp_v4_pre_connect
+ffffffc00877957c t tcp_v4_init_sock
+ffffffc0087795c0 t tcp_v4_send_ack
+ffffffc008779844 t tcp4_seq_show
+ffffffc008779ca0 T tcp_timewait_state_process
+ffffffc00877a020 T tcp_time_wait
+ffffffc00877a268 T tcp_twsk_destructor
+ffffffc00877a278 T tcp_twsk_purge
+ffffffc00877a330 T tcp_openreq_init_rwin
+ffffffc00877a4c8 T tcp_ca_openreq_child
+ffffffc00877a59c T tcp_create_openreq_child
+ffffffc00877a898 T tcp_check_req
+ffffffc00877ae9c T tcp_child_process
+ffffffc00877b0d8 T tcp_ca_find
+ffffffc00877b158 T tcp_set_ca_state
+ffffffc00877b25c T tcp_ca_find_key
+ffffffc00877b2b0 T tcp_register_congestion_control
+ffffffc00877b4a4 T tcp_unregister_congestion_control
+ffffffc00877b518 T tcp_ca_get_key_by_name
+ffffffc00877b57c t tcp_ca_find_autoload
+ffffffc00877b660 T tcp_ca_get_name_by_key
+ffffffc00877b6fc T tcp_assign_congestion_control
+ffffffc00877b844 T tcp_init_congestion_control
+ffffffc00877b95c T tcp_cleanup_congestion_control
+ffffffc00877b9ac T tcp_set_default_congestion_control
+ffffffc00877ba5c T tcp_get_available_congestion_control
+ffffffc00877bb28 T tcp_get_default_congestion_control
+ffffffc00877bb84 T tcp_get_allowed_congestion_control
+ffffffc00877bc5c T tcp_set_allowed_congestion_control
+ffffffc00877be40 T tcp_set_congestion_control
+ffffffc00877c094 T tcp_slow_start
+ffffffc00877c0e0 T tcp_cong_avoid_ai
+ffffffc00877c188 T tcp_reno_cong_avoid
+ffffffc00877c284 T tcp_reno_ssthresh
+ffffffc00877c2a8 T tcp_reno_undo_cwnd
+ffffffc00877c2c8 T tcp_update_metrics
+ffffffc00877c544 t tcp_get_metrics
+ffffffc00877cac4 T tcp_init_metrics
+ffffffc00877cc48 T tcp_peer_is_proven
+ffffffc00877ce88 T tcp_fastopen_cache_get
+ffffffc00877cf78 T tcp_fastopen_cache_set
+ffffffc00877d0bc t tcp_metrics_nl_cmd_get
+ffffffc00877d3c0 t tcp_metrics_nl_dump
+ffffffc00877d528 t tcp_metrics_nl_cmd_del
+ffffffc00877d820 t tcp_metrics_fill_info
+ffffffc00877db84 T tcp_fastopen_init_key_once
+ffffffc00877dc78 T tcp_fastopen_reset_cipher
+ffffffc00877dd84 T tcp_fastopen_destroy_cipher
+ffffffc00877ddc4 t tcp_fastopen_ctx_free
+ffffffc00877ddf4 T tcp_fastopen_ctx_destroy
+ffffffc00877de60 T tcp_fastopen_get_cipher
+ffffffc00877df18 T tcp_fastopen_add_skb
+ffffffc00877e11c T tcp_try_fastopen
+ffffffc00877ea10 T tcp_fastopen_cookie_check
+ffffffc00877eb40 T tcp_fastopen_active_should_disable
+ffffffc00877ebe0 T tcp_fastopen_defer_connect
+ffffffc00877ed04 T tcp_fastopen_active_disable
+ffffffc00877ee08 T tcp_fastopen_active_disable_ofo_check
+ffffffc00877f008 T tcp_fastopen_active_detect_blackhole
+ffffffc00877f1b4 T tcp_rate_skb_sent
+ffffffc00877f238 T tcp_rate_skb_delivered
+ffffffc00877f308 T tcp_rate_gen
+ffffffc00877f40c T tcp_rate_check_app_limited
+ffffffc00877f48c T tcp_rack_skb_timeout
+ffffffc00877f4d4 T tcp_rack_mark_lost
+ffffffc00877f59c t tcp_rack_detect_loss
+ffffffc00877f734 T tcp_rack_advance
+ffffffc00877f7ac T tcp_rack_reo_timeout
+ffffffc00877f8c0 T tcp_rack_update_reo_wnd
+ffffffc00877f958 T tcp_newreno_mark_lost
+ffffffc00877fa10 T tcp_register_ulp
+ffffffc00877fae4 T tcp_unregister_ulp
+ffffffc00877fb58 T tcp_get_available_ulp
+ffffffc00877fc28 T tcp_update_ulp
+ffffffc00877fc78 T tcp_cleanup_ulp
+ffffffc00877fce0 T tcp_set_ulp
+ffffffc00877fe80 T tcp_gso_segment
+ffffffc0087802f8 t refcount_sub_and_test
+ffffffc008780384 t refcount_sub_and_test
+ffffffc008780414 T tcp_gro_receive
+ffffffc008780710 T tcp_gro_complete
+ffffffc008780794 t tcp4_gso_segment.llvm.7806684545332652296
+ffffffc008780868 t tcp4_gro_receive.llvm.7806684545332652296
+ffffffc008780a04 t tcp4_gro_complete.llvm.7806684545332652296
+ffffffc008780b20 T __ip4_datagram_connect
+ffffffc008780e54 T ip4_datagram_connect
+ffffffc008780ec0 T ip4_datagram_release_cb
+ffffffc0087810b4 T raw_hash_sk
+ffffffc0087812a0 T raw_unhash_sk
+ffffffc0087813f0 T raw_v4_match
+ffffffc00878145c T raw_local_deliver
+ffffffc00878165c T raw_icmp_error
+ffffffc008781898 T raw_rcv
+ffffffc0087819d4 t raw_rcv_skb
+ffffffc008781a40 T raw_abort
+ffffffc008781aa4 t raw_close
+ffffffc008781aec t raw_ioctl
+ffffffc008781df4 t raw_sk_init
+ffffffc008781e18 t raw_destroy
+ffffffc008781e64 t raw_setsockopt
+ffffffc00878207c t raw_getsockopt
+ffffffc0087824d8 t raw_sendmsg
+ffffffc008782a3c t raw_recvmsg
+ffffffc008782c20 t raw_bind
+ffffffc008782d68 T raw_seq_start
+ffffffc008782e7c T raw_seq_next
+ffffffc008782f4c T raw_seq_stop
+ffffffc008782f80 t raw_send_hdrinc
+ffffffc0087833d4 t raw_getfrag
+ffffffc0087834fc t ip_select_ident
+ffffffc008783554 t ip_fast_csum
+ffffffc008783600 t raw_seq_show
+ffffffc00878373c T udp_lib_get_port
+ffffffc008783d1c t udp_lib_lport_inuse
+ffffffc008783e78 t udp_lib_lport_inuse2
+ffffffc008783fac T udp_v4_get_port
+ffffffc008784090 T __udp4_lib_lookup
+ffffffc0087844fc t udp4_lib_lookup2
+ffffffc0087846dc T udp4_lib_lookup_skb
+ffffffc008784758 T udp_encap_enable
+ffffffc008784794 T udp_encap_disable
+ffffffc0087847c8 T __udp4_lib_err
+ffffffc008784d14 T udp_err
+ffffffc008784d48 T udp_flush_pending_frames
+ffffffc008784d84 T udp4_hwcsum
+ffffffc008784ea4 T udp_set_csum
+ffffffc008784fbc T udp_push_pending_frames
+ffffffc008785024 t udp_send_skb
+ffffffc008785498 T udp_cmsg_send
+ffffffc008785558 T udp_sendmsg
+ffffffc008785e38 t udplite_getfrag
+ffffffc008785ed0 t udplite_getfrag
+ffffffc008785f64 t dst_clone
+ffffffc008785fe8 T udp_sendpage
+ffffffc0087861d0 T udp_skb_destructor
+ffffffc00878620c t udp_rmem_release
+ffffffc008786330 T __udp_enqueue_schedule_skb
+ffffffc00878661c T udp_destruct_common
+ffffffc008786790 T udp_init_sock
+ffffffc0087867f4 t udp_destruct_sock
+ffffffc008786834 T skb_consume_udp
+ffffffc00878690c T udp_ioctl
+ffffffc008786bf0 t first_packet_length
+ffffffc008786d38 T __skb_recv_udp
+ffffffc008787038 T udp_read_skb
+ffffffc00878731c t udp_lib_checksum_complete
+ffffffc0087873a8 t udp_lib_checksum_complete
+ffffffc008787438 T udp_recvmsg
+ffffffc008787bac T udp_pre_connect
+ffffffc008787bc8 T __udp_disconnect
+ffffffc008787d08 T udp_disconnect
+ffffffc008787e58 T udp_lib_unhash
+ffffffc008788060 T udp_lib_rehash
+ffffffc0087881d4 T udp_v4_rehash
+ffffffc008788270 T udp_sk_rx_dst_set
+ffffffc008788350 T __udp4_lib_rcv
+ffffffc008788c48 t udp_unicast_rcv_skb
+ffffffc008788cfc T udp_v4_early_demux
+ffffffc008789144 T udp_rcv
+ffffffc00878917c T udp_destroy_sock
+ffffffc00878924c T udp_lib_setsockopt
+ffffffc008789714 T udp_setsockopt
+ffffffc008789760 T udp_lib_getsockopt
+ffffffc008789c64 T udp_getsockopt
+ffffffc008789ca8 T udp_poll
+ffffffc008789d78 T udp_abort
+ffffffc008789ee0 t udp_lib_close
+ffffffc008789f0c t udp_lib_close
+ffffffc008789f38 t udp_lib_close
+ffffffc008789f64 t udp_lib_close
+ffffffc008789f90 t udp_lib_hash
+ffffffc008789f9c t udp_lib_hash
+ffffffc008789fa8 t udp_lib_hash
+ffffffc008789fb4 t udp_lib_hash
+ffffffc008789fc0 T udp_seq_start
+ffffffc00878a0bc T udp_seq_next
+ffffffc00878a198 T udp_seq_stop
+ffffffc00878a1fc T udp4_seq_show
+ffffffc00878a378 T udp4_proc_exit
+ffffffc00878a3cc T udp_flow_hashrnd
+ffffffc00878a474 t lookup_reuseport
+ffffffc00878a5e8 t lookup_reuseport
+ffffffc00878a844 t __first_packet_length
+ffffffc00878aa08 t udp_queue_rcv_skb
+ffffffc00878ac74 t udp_queue_rcv_one_skb
+ffffffc00878b410 t udp_get_first
+ffffffc00878b500 t udplite_sk_init
+ffffffc00878b544 t udplite_rcv
+ffffffc00878b57c t udplite_err
+ffffffc00878b5b0 T skb_udp_tunnel_segment
+ffffffc00878ba20 T __udp_gso_segment
+ffffffc00878bec0 T udp_gro_receive
+ffffffc00878c2d0 T udp_gro_complete
+ffffffc00878c458 t __udpv4_gso_segment_csum
+ffffffc00878c578 t skb_gro_receive_list
+ffffffc00878c64c t udp4_ufo_fragment.llvm.15458570210697026856
+ffffffc00878c7c0 t udp4_gro_receive.llvm.15458570210697026856
+ffffffc00878cab8 t udp4_gro_complete.llvm.15458570210697026856
+ffffffc00878cd2c t arp_hash
+ffffffc00878cd54 t arp_key_eq
+ffffffc00878cd74 t arp_constructor
+ffffffc00878cfec t parp_redo
+ffffffc00878d018 t arp_is_multicast
+ffffffc00878d038 T arp_mc_map
+ffffffc00878d180 T arp_send
+ffffffc00878d1c0 t arp_send_dst
+ffffffc00878d2cc T arp_create
+ffffffc00878d4b8 T arp_xmit
+ffffffc00878d4e8 T arp_invalidate
+ffffffc00878d6b4 T arp_ioctl
+ffffffc00878db3c t arp_req_delete
+ffffffc00878dc98 t arp_req_set
+ffffffc00878df4c t arp_req_get
+ffffffc00878e0c0 T arp_ifdown
+ffffffc00878e0fc t arp_solicit
+ffffffc00878e358 t arp_error_report
+ffffffc00878e3d4 t arp_process
+ffffffc00878e964 t arp_ignore
+ffffffc00878ea20 t arp_filter
+ffffffc00878eaf4 t arp_fwd_proxy
+ffffffc00878eb74 t __neigh_lookup
+ffffffc00878ebe8 t __neigh_lookup
+ffffffc00878ec5c t arp_accept
+ffffffc00878ecdc t arp_is_garp
+ffffffc00878ed80 t arp_rcv
+ffffffc00878eeb4 t arp_seq_start
+ffffffc00878eeec t arp_seq_show
+ffffffc00878f248 t arp_netdev_event
+ffffffc00878f344 T icmp_global_allow
+ffffffc00878f498 T icmp_out_count
+ffffffc00878f574 T __icmp_send
+ffffffc00878f99c t icmp_xmit_lock
+ffffffc00878fa34 t icmp_route_lookup
+ffffffc00878fcfc t icmpv4_xrlim_allow
+ffffffc00878fde8 t icmp_push_reply
+ffffffc00878ff38 T icmp_build_probe
+ffffffc0087902b0 t dev_hold
+ffffffc008790350 T icmp_rcv
+ffffffc008790830 t icmp_echo
+ffffffc00879091c T ip_icmp_error_rfc4884
+ffffffc008790ae8 T icmp_err
+ffffffc008790b88 t ip_route_input
+ffffffc008790cbc t icmp_glue_bits
+ffffffc008790d44 t icmp_reply
+ffffffc008791084 t icmp_discard
+ffffffc008791098 t icmp_unreach
+ffffffc0087912a8 t icmp_redirect
+ffffffc00879135c t icmp_timestamp
+ffffffc008791464 t icmp_tag_validation
+ffffffc0087914bc t icmp_socket_deliver
+ffffffc0087915b0 T __ip_dev_find
+ffffffc008791760 T inet_lookup_ifaddr_rcu
+ffffffc0087917b8 T in_dev_finish_destroy
+ffffffc0087918bc T inet_addr_onlink
+ffffffc008791958 T inetdev_by_index
+ffffffc0087919c0 T inet_ifa_byprefix
+ffffffc008791a80 T devinet_ioctl
+ffffffc008791ff4 t inet_abc_len
+ffffffc008792074 t inet_set_ifa
+ffffffc0087921b0 T inet_gifconf
+ffffffc00879241c T inet_select_addr
+ffffffc008792590 T inet_confirm_addr
+ffffffc008792658 t confirm_addr_indev
+ffffffc008792774 T register_inetaddr_notifier
+ffffffc0087927ac T unregister_inetaddr_notifier
+ffffffc0087927e4 T register_inetaddr_validator_notifier
+ffffffc00879281c T unregister_inetaddr_validator_notifier
+ffffffc008792854 T inet_netconf_notify_devconf
+ffffffc0087929c0 t inet_netconf_fill_devconf
+ffffffc008792c20 t inet_rtm_newaddr
+ffffffc00879319c t inet_rtm_deladdr
+ffffffc008793430 t inet_dump_ifaddr
+ffffffc0087938e8 t inet_netconf_get_devconf
+ffffffc008793b5c t inet_netconf_dump_devconf
+ffffffc008793dac t __inet_del_ifa
+ffffffc008794170 t rtmsg_ifa
+ffffffc008794290 t inet_fill_ifaddr
+ffffffc008794568 t put_cacheinfo
+ffffffc008794614 t inet_rcu_free_ifa
+ffffffc0087946b4 t __inet_insert_ifa
+ffffffc0087949ac t __devinet_sysctl_register
+ffffffc008794ae0 t __devinet_sysctl_unregister
+ffffffc008794b54 t devinet_sysctl_forward
+ffffffc008794dd4 t devinet_conf_proc
+ffffffc008795070 t ipv4_doint_and_flush
+ffffffc008795104 t inetdev_event
+ffffffc008795694 t inetdev_init
+ffffffc0087958c4 t devinet_sysctl_register
+ffffffc008795970 t in_dev_rcu_put
+ffffffc0087959fc t check_lifetime
+ffffffc008795c74 t inet_fill_link_af
+ffffffc008795de4 t inet_get_link_af_size
+ffffffc008795e0c t inet_validate_link_af
+ffffffc008795f18 t inet_set_link_af
+ffffffc008796074 T inet_sock_destruct
+ffffffc008796218 T inet_listen
+ffffffc00879631c T inet_release
+ffffffc0087963b0 T inet_bind
+ffffffc008796420 T __inet_bind
+ffffffc008796680 T inet_dgram_connect
+ffffffc0087967b8 T __inet_stream_connect
+ffffffc008796b18 T inet_stream_connect
+ffffffc008796b94 T inet_accept
+ffffffc008796da4 T inet_getname
+ffffffc008796e6c T inet_send_prepare
+ffffffc008796fa8 T inet_sendmsg
+ffffffc008797030 T inet_sendpage
+ffffffc008797100 T inet_recvmsg
+ffffffc008797230 T inet_shutdown
+ffffffc0087973a0 T inet_ioctl
+ffffffc0087976a0 T inet_register_protosw
+ffffffc008797780 T inet_unregister_protosw
+ffffffc008797810 T inet_sk_rebuild_header
+ffffffc008797c1c T inet_sk_set_state
+ffffffc008797d04 T inet_sk_state_store
+ffffffc008797df0 T inet_gso_segment
+ffffffc00879813c T inet_gro_receive
+ffffffc008798414 T inet_current_timestamp
+ffffffc0087984bc T inet_recv_error
+ffffffc00879852c T inet_gro_complete
+ffffffc008798618 T inet_ctl_sock_create
+ffffffc0087986e4 T snmp_fold_field
+ffffffc008798790 t ipip_gso_segment
+ffffffc0087987d8 t ipip_gro_receive
+ffffffc008798824 t ipip_gro_complete
+ffffffc008798934 t inet_create
+ffffffc008798ca8 T igmp_rcv
+ffffffc0087994e4 T __ip_mc_inc_group
+ffffffc008799514 t ____ip_mc_inc_group
+ffffffc0087997d0 T ip_mc_inc_group
+ffffffc008799804 T ip_mc_check_igmp
+ffffffc008799b40 T __ip_mc_dec_group
+ffffffc008799cd8 t __igmp_group_dropped
+ffffffc008799ecc t ip_ma_put
+ffffffc008799fd0 T ip_mc_unmap
+ffffffc00879a06c T ip_mc_remap
+ffffffc00879a10c t igmpv3_del_delrec
+ffffffc00879a308 t igmp_group_added
+ffffffc00879a518 T ip_mc_down
+ffffffc00879a678 T ip_mc_init_dev
+ffffffc00879a74c t igmp_gq_timer_expire
+ffffffc00879a7f4 t igmp_ifc_timer_expire
+ffffffc00879ad2c T ip_mc_up
+ffffffc00879ae00 T ip_mc_destroy_dev
+ffffffc00879af20 t igmpv3_clear_delrec
+ffffffc00879b100 T ip_mc_join_group
+ffffffc00879b12c t __ip_mc_join_group.llvm.16856046101742459793
+ffffffc00879b2a4 T ip_mc_join_group_ssm
+ffffffc00879b2d0 T ip_mc_leave_group
+ffffffc00879b4c8 t ip_mc_find_dev
+ffffffc00879b5c4 T ip_mc_source
+ffffffc00879ba58 t ip_mc_add_src
+ffffffc00879bd50 t ip_mc_del_src
+ffffffc00879bf4c T ip_mc_msfilter
+ffffffc00879c280 T ip_mc_msfget
+ffffffc00879c4c0 T ip_mc_gsfget
+ffffffc00879c680 T ip_mc_sf_allow
+ffffffc00879c7c4 T ip_mc_drop_socket
+ffffffc00879c950 T ip_check_mc_rcu
+ffffffc00879ca80 t igmp_gq_start_timer
+ffffffc00879cb48 t igmp_timer_expire
+ffffffc00879cd4c t igmp_send_report
+ffffffc00879cfc8 t igmpv3_send_report
+ffffffc00879d14c t add_grec
+ffffffc00879d640 t add_grec
+ffffffc00879db00 t igmpv3_sendpack
+ffffffc00879db6c t igmpv3_newpack
+ffffffc00879de40 t is_in
+ffffffc00879df70 t is_in
+ffffffc00879e0a0 t ip_mc_validate_checksum
+ffffffc00879e1a8 t igmpv3_add_delrec
+ffffffc00879e308 t igmp_ifc_event
+ffffffc00879e428 t ip_mc_del1_src
+ffffffc00879e594 t sf_setstate
+ffffffc00879e6ec t sf_setstate
+ffffffc00879e870 t igmp_mc_seq_start
+ffffffc00879e9d8 t igmp_mc_seq_stop
+ffffffc00879ea0c t igmp_mc_seq_next
+ffffffc00879eb3c t igmp_mc_seq_show
+ffffffc00879ecbc t igmp_mcf_seq_start
+ffffffc00879ee68 t igmp_mcf_seq_stop
+ffffffc00879eeb8 t igmp_mcf_seq_next
+ffffffc00879f054 t igmp_mcf_seq_show
+ffffffc00879f0c8 t igmp_netdev_event
+ffffffc00879f22c T fib_new_table
+ffffffc00879f31c T fib_get_table
+ffffffc00879f368 T fib_unmerge
+ffffffc00879f484 T fib_flush
+ffffffc00879f510 T inet_addr_type_table
+ffffffc00879f670 T inet_addr_type
+ffffffc00879f7bc T inet_dev_addr_type
+ffffffc00879f92c T inet_addr_type_dev_table
+ffffffc00879fa78 T fib_compute_spec_dst
+ffffffc00879fcc0 T fib_info_nh_uses_dev
+ffffffc00879fd30 T fib_validate_source
+ffffffc0087a00d8 T ip_rt_ioctl
+ffffffc0087a0648 T fib_gw_from_via
+ffffffc0087a0734 T ip_valid_fib_dump_req
+ffffffc0087a09a8 T fib_add_ifaddr
+ffffffc0087a0d64 T fib_modify_prefix_metric
+ffffffc0087a0f74 T fib_del_ifaddr
+ffffffc0087a1648 t inet_rtm_newroute
+ffffffc0087a172c t inet_rtm_delroute
+ffffffc0087a1868 t inet_dump_fib
+ffffffc0087a1ad4 t ip_fib_net_exit
+ffffffc0087a1c20 t nl_fib_input
+ffffffc0087a1de0 t fib_netdev_event
+ffffffc0087a2050 t fib_disable_ip
+ffffffc0087a2118 t fib_inetaddr_event
+ffffffc0087a22a0 t rtm_to_fib_config
+ffffffc0087a25e0 T fib_nh_common_release
+ffffffc0087a2734 t rt_fibinfo_free_cpus
+ffffffc0087a27f4 T fib_nh_release
+ffffffc0087a2824 T free_fib_info
+ffffffc0087a2878 t free_fib_info_rcu
+ffffffc0087a29a4 T fib_release_info
+ffffffc0087a2b70 T ip_fib_check_default
+ffffffc0087a2c44 T fib_nlmsg_size
+ffffffc0087a2d98 T rtmsg_fib
+ffffffc0087a2f34 T fib_dump_info
+ffffffc0087a3298 T fib_nh_common_init
+ffffffc0087a334c T fib_nh_init
+ffffffc0087a3450 T fib_nh_match
+ffffffc0087a3524 T fib_metrics_match
+ffffffc0087a3678 T fib_check_nh
+ffffffc0087a3d20 T fib_info_update_nhc_saddr
+ffffffc0087a3d9c T fib_result_prefsrc
+ffffffc0087a3e60 T fib_create_info
+ffffffc0087a450c t fib_info_hash_move
+ffffffc0087a46f8 t nexthop_get
+ffffffc0087a47b8 t nexthop_get
+ffffffc0087a4878 t fib_valid_prefsrc
+ffffffc0087a4924 t fib_find_info
+ffffffc0087a4b1c t fib_info_hashfn
+ffffffc0087a4b90 T fib_nexthop_info
+ffffffc0087a4d84 T fib_add_nexthop
+ffffffc0087a4ea4 T fib_sync_down_addr
+ffffffc0087a4f44 T fib_nhc_update_mtu
+ffffffc0087a4fbc T fib_sync_mtu
+ffffffc0087a5094 T fib_sync_down_dev
+ffffffc0087a52b0 T fib_sync_up
+ffffffc0087a54b4 T fib_select_path
+ffffffc0087a5930 t fib_detect_death
+ffffffc0087a5aec T fib_alias_hw_flags_set
+ffffffc0087a5d58 T fib_table_insert
+ffffffc0087a634c t call_fib_entry_notifiers
+ffffffc0087a63cc t fib_insert_alias
+ffffffc0087a6928 t fib_remove_alias
+ffffffc0087a6c14 T fib_lookup_good_nhc
+ffffffc0087a6c88 T fib_table_lookup
+ffffffc0087a72ec t trace_fib_table_lookup
+ffffffc0087a73a8 t nexthop_get_nhc_lookup
+ffffffc0087a74cc T fib_table_delete
+ffffffc0087a7854 T fib_trie_unmerge
+ffffffc0087a7cd8 T fib_trie_table
+ffffffc0087a7d54 T fib_table_flush_external
+ffffffc0087a7fcc t resize
+ffffffc0087a8db8 t __node_free_rcu
+ffffffc0087a8e04 T fib_table_flush
+ffffffc0087a91e8 T fib_info_notify_update
+ffffffc0087a9340 T fib_notify
+ffffffc0087a9598 T fib_free_table
+ffffffc0087a95d0 t __trie_free_rcu.llvm.5714046220538597668
+ffffffc0087a9600 T fib_table_dump
+ffffffc0087a99bc t fib_triestat_seq_show
+ffffffc0087a9e28 t __alias_free_mem
+ffffffc0087a9e5c t put_child
+ffffffc0087a9f84 t nexthop_fib_nhc
+ffffffc0087a9fe4 t replace
+ffffffc0087aa130 t update_children
+ffffffc0087aa1a8 t fib_trie_seq_start
+ffffffc0087aa334 t fib_trie_seq_stop
+ffffffc0087aa360 t fib_trie_seq_next
+ffffffc0087aa51c t fib_trie_seq_show
+ffffffc0087aa83c t fib_route_seq_start
+ffffffc0087aa9f0 t fib_route_seq_stop
+ffffffc0087aaa1c t fib_route_seq_next
+ffffffc0087aab4c t fib_route_seq_show
+ffffffc0087aadf0 T call_fib4_notifier
+ffffffc0087aae24 T call_fib4_notifiers
+ffffffc0087aaed0 t fib4_seq_read
+ffffffc0087aaf5c t fib4_dump
+ffffffc0087aafc0 T inet_frags_init
+ffffffc0087ab04c T inet_frags_fini
+ffffffc0087ab0f4 T fqdir_init
+ffffffc0087ab1dc T fqdir_exit
+ffffffc0087ab238 t fqdir_work_fn
+ffffffc0087ab2b0 T inet_frag_kill
+ffffffc0087ab730 T inet_frag_rbtree_purge
+ffffffc0087ab7d0 T inet_frag_destroy
+ffffffc0087ab8f0 t inet_frag_destroy_rcu
+ffffffc0087ab960 T inet_frag_find
+ffffffc0087ac0d4 T inet_frag_queue_insert
+ffffffc0087ac24c T inet_frag_reasm_prepare
+ffffffc0087ac530 T inet_frag_reasm_finish
+ffffffc0087ac778 T inet_frag_pull_head
+ffffffc0087ac840 t inet_frags_free_cb
+ffffffc0087ac930 t fqdir_free_fn
+ffffffc0087aca30 T ping_hash
+ffffffc0087aca3c T ping_get_port
+ffffffc0087acc88 T ping_unhash
+ffffffc0087acde0 T ping_init_sock
+ffffffc0087acf40 T ping_close
+ffffffc0087acf6c T ping_bind
+ffffffc0087ad2f0 T ping_err
+ffffffc0087ad5f4 t ping_lookup
+ffffffc0087ad728 T ping_getfrag
+ffffffc0087ad7fc T ping_common_sendmsg
+ffffffc0087ad930 T ping_recvmsg
+ffffffc0087adc84 T ping_queue_rcv_skb
+ffffffc0087add14 T ping_rcv
+ffffffc0087addfc t ping_pre_connect
+ffffffc0087ade18 t ping_v4_sendmsg
+ffffffc0087ae370 T ping_seq_start
+ffffffc0087ae3d8 t ping_get_idx
+ffffffc0087ae508 T ping_seq_next
+ffffffc0087ae62c T ping_seq_stop
+ffffffc0087ae660 T ping_proc_exit
+ffffffc0087ae6b0 t ping_v4_push_pending_frames
+ffffffc0087ae760 t ping_v4_seq_start
+ffffffc0087ae7d0 t ping_v4_seq_show
+ffffffc0087ae93c T iptunnel_xmit
+ffffffc0087aebbc T __iptunnel_pull_header
+ffffffc0087aed60 T iptunnel_metadata_reply
+ffffffc0087aee1c T iptunnel_handle_offloads
+ffffffc0087aef08 T skb_tunnel_check_pmtu
+ffffffc0087af1fc T ip_tunnel_need_metadata
+ffffffc0087af238 T ip_tunnel_unneed_metadata
+ffffffc0087af26c T ip_tunnel_parse_protocol
+ffffffc0087af2ec T ip_tunnel_netlink_encap_parms
+ffffffc0087af364 T ip_tunnel_netlink_parms
+ffffffc0087af404 t iptunnel_pmtud_build_icmp
+ffffffc0087af6f8 t iptunnel_pmtud_build_icmpv6
+ffffffc0087afa0c t gre_gso_segment
+ffffffc0087afd44 t gre_gro_receive
+ffffffc0087b003c t gre_gro_complete
+ffffffc0087b0114 t __skb_gro_checksum_validate_complete
+ffffffc0087b0168 t skb_gro_incr_csum_unnecessary
+ffffffc0087b01f8 T ip_fib_metrics_init
+ffffffc0087b0444 T rtm_getroute_parse_ip_proto
+ffffffc0087b04ec T nexthop_free_rcu
+ffffffc0087b0698 T nexthop_find_by_id
+ffffffc0087b06ec T nexthop_select_path
+ffffffc0087b09b0 T nexthop_for_each_fib6_nh
+ffffffc0087b0a98 T fib6_check_nexthop
+ffffffc0087b0b54 T fib_check_nexthop
+ffffffc0087b0c4c T register_nexthop_notifier
+ffffffc0087b0ccc t nexthops_dump
+ffffffc0087b0e0c T unregister_nexthop_notifier
+ffffffc0087b0e88 T nexthop_set_hw_flags
+ffffffc0087b0f3c T nexthop_bucket_set_hw_flags
+ffffffc0087b103c T nexthop_res_grp_activity_update
+ffffffc0087b1140 t nh_notifier_info_init
+ffffffc0087b1330 t nh_notifier_mpath_info_init
+ffffffc0087b1484 t rtm_new_nexthop
+ffffffc0087b30c4 t rtm_del_nexthop
+ffffffc0087b31b0 t rtm_get_nexthop
+ffffffc0087b330c t rtm_dump_nexthop
+ffffffc0087b35a8 t rtm_get_nexthop_bucket
+ffffffc0087b38f8 t rtm_dump_nexthop_bucket
+ffffffc0087b3cbc t remove_nexthop
+ffffffc0087b3e74 t call_nexthop_notifiers
+ffffffc0087b3fd8 t nexthop_notify
+ffffffc0087b4184 t __remove_nexthop
+ffffffc0087b428c t nh_fill_node
+ffffffc0087b4698 t __remove_nexthop_fib
+ffffffc0087b47d0 t remove_nexthop_from_groups
+ffffffc0087b4bbc t replace_nexthop_grp_res
+ffffffc0087b4d20 t nh_res_group_rebalance
+ffffffc0087b4ebc t nh_res_table_upkeep
+ffffffc0087b528c t __call_nexthop_res_bucket_notifiers
+ffffffc0087b54e0 t nh_fill_res_bucket
+ffffffc0087b5728 t nh_netdev_event
+ffffffc0087b5900 t nh_res_table_upkeep_dw
+ffffffc0087b5934 t fib6_check_nh_list
+ffffffc0087b5a08 t replace_nexthop_single_notify
+ffffffc0087b5b88 t nh_valid_get_del_req
+ffffffc0087b5cb4 t rtm_dump_nexthop_bucket_nh
+ffffffc0087b5e70 T ip_tunnel_lookup
+ffffffc0087b6134 T ip_tunnel_rcv
+ffffffc0087b689c T ip_tunnel_encap_add_ops
+ffffffc0087b691c T ip_tunnel_encap_del_ops
+ffffffc0087b69c0 T ip_tunnel_encap_setup
+ffffffc0087b6ac4 T ip_md_tunnel_xmit
+ffffffc0087b7048 t tnl_update_pmtu
+ffffffc0087b7380 T ip_tunnel_xmit
+ffffffc0087b7dac T ip_tunnel_ctl
+ffffffc0087b8108 t ip_tunnel_find
+ffffffc0087b81f8 t ip_tunnel_update
+ffffffc0087b8394 T ip_tunnel_siocdevprivate
+ffffffc0087b86cc T __ip_tunnel_change_mtu
+ffffffc0087b872c T ip_tunnel_change_mtu
+ffffffc0087b877c T ip_tunnel_dellink
+ffffffc0087b881c T ip_tunnel_get_link_net
+ffffffc0087b8830 T ip_tunnel_get_iflink
+ffffffc0087b8844 T ip_tunnel_init_net
+ffffffc0087b8a38 t __ip_tunnel_create
+ffffffc0087b8bd8 t ip_tunnel_bind_dev
+ffffffc0087b8d64 T ip_tunnel_delete_nets
+ffffffc0087b8e60 T ip_tunnel_newlink
+ffffffc0087b90bc T ip_tunnel_changelink
+ffffffc0087b91d4 T ip_tunnel_init
+ffffffc0087b932c t ip_tunnel_dev_free
+ffffffc0087b9378 T ip_tunnel_uninit
+ffffffc0087b9418 T ip_tunnel_setup
+ffffffc0087b942c t proc_tcp_available_ulp
+ffffffc0087b9510 t ipv4_ping_group_range
+ffffffc0087b9694 t ipv4_local_port_range
+ffffffc0087b9830 t ipv4_fwd_update_priority
+ffffffc0087b9898 t proc_tcp_congestion_control
+ffffffc0087b9974 t proc_tcp_available_congestion_control
+ffffffc0087b9a58 t proc_allowed_congestion_control
+ffffffc0087b9b50 t proc_tcp_fastopen_key
+ffffffc0087b9e7c t proc_tfo_blackhole_detect_timeout
+ffffffc0087b9ec4 t ipv4_privileged_ports
+ffffffc0087b9fb0 t proc_tcp_ehash_entries
+ffffffc0087ba05c t sockstat_seq_show
+ffffffc0087ba1e8 t netstat_seq_show
+ffffffc0087ba754 t snmp_seq_show
+ffffffc0087bbe58 T fib4_rule_default
+ffffffc0087bbedc T fib4_rules_dump
+ffffffc0087bbf10 T fib4_rules_seq_read
+ffffffc0087bbf40 T __fib_lookup
+ffffffc0087bbfbc t fib4_rule_action
+ffffffc0087bc06c t fib4_rule_suppress
+ffffffc0087bc1a8 t fib4_rule_match
+ffffffc0087bc27c t fib4_rule_configure
+ffffffc0087bc41c t fib4_rule_delete
+ffffffc0087bc4b4 t fib4_rule_compare
+ffffffc0087bc540 t fib4_rule_fill
+ffffffc0087bc618 t fib4_rule_nlmsg_payload
+ffffffc0087bc62c t fib4_rule_flush_cache
+ffffffc0087bc658 t fib_empty_table
+ffffffc0087bc6c4 t ipip_tunnel_setup
+ffffffc0087bc740 t ipip_tunnel_validate
+ffffffc0087bc784 t ipip_newlink
+ffffffc0087bc880 t ipip_changelink
+ffffffc0087bc998 t ipip_get_size
+ffffffc0087bc9ac t ipip_fill_info
+ffffffc0087bcbc0 t ipip_tunnel_init
+ffffffc0087bcc20 t ipip_tunnel_xmit
+ffffffc0087bcd54 t ipip_tunnel_ctl
+ffffffc0087bcde0 t ipip_rcv
+ffffffc0087bcf9c t ipip_rcv
+ffffffc0087bd0c4 t ipip_err
+ffffffc0087bd238 T gre_add_protocol
+ffffffc0087bd2c0 T gre_del_protocol
+ffffffc0087bd36c T gre_parse_header
+ffffffc0087bd71c t gre_rcv
+ffffffc0087bd7fc t gre_rcv
+ffffffc0087bdbb4 t gre_rcv
+ffffffc0087bdf48 t gre_err
+ffffffc0087be00c t gre_err
+ffffffc0087be2b8 T gretap_fb_dev_create
+ffffffc0087be400 t ipgre_newlink
+ffffffc0087be528 t ipgre_tap_setup
+ffffffc0087be588 t ipgre_tap_validate
+ffffffc0087be630 t ipgre_changelink
+ffffffc0087be844 t ipgre_get_size
+ffffffc0087be858 t ipgre_fill_info
+ffffffc0087beb94 t gre_tap_init
+ffffffc0087bec68 t gre_tap_xmit
+ffffffc0087bee4c t gre_fill_metadata_dst
+ffffffc0087befb0 t gre_fb_xmit
+ffffffc0087bf1a4 t gre_build_header
+ffffffc0087bf330 t gre_build_header
+ffffffc0087bf4c0 t ipgre_tunnel_validate
+ffffffc0087bf520 t ipgre_netlink_parms
+ffffffc0087bf6f0 t ipgre_tunnel_setup
+ffffffc0087bf720 t ipgre_tunnel_init
+ffffffc0087bf850 t ipgre_xmit
+ffffffc0087bfac8 t ipgre_tunnel_ctl
+ffffffc0087bfdc0 t ipgre_header
+ffffffc0087bfec4 t ipgre_header_parse
+ffffffc0087bfeec t erspan_setup
+ffffffc0087bff54 t erspan_validate
+ffffffc0087c006c t erspan_newlink
+ffffffc0087c0230 t erspan_changelink
+ffffffc0087c0408 t erspan_fill_info
+ffffffc0087c0538 t erspan_tunnel_init
+ffffffc0087c05d0 t erspan_xmit
+ffffffc0087c0c3c t pskb_trim
+ffffffc0087c0c94 t erspan_build_header
+ffffffc0087c0d74 t erspan_build_header
+ffffffc0087c0e50 t erspan_build_header_v2
+ffffffc0087c0f90 t erspan_build_header_v2
+ffffffc0087c10cc t __ipgre_rcv
+ffffffc0087c1268 t vti_tunnel_setup
+ffffffc0087c12a4 t vti_tunnel_validate
+ffffffc0087c12b8 t vti_newlink
+ffffffc0087c13a8 t vti_changelink
+ffffffc0087c1488 t vti_get_size
+ffffffc0087c149c t vti_fill_info
+ffffffc0087c15d8 t vti_tunnel_init
+ffffffc0087c165c t vti_tunnel_xmit
+ffffffc0087c1c58 t vti_tunnel_ctl
+ffffffc0087c1d3c t vti_rcv_proto
+ffffffc0087c1d8c t vti_input_proto
+ffffffc0087c1db8 t vti_rcv_cb
+ffffffc0087c2034 t vti4_err
+ffffffc0087c223c t vti_input
+ffffffc0087c2358 T esp_output_head
+ffffffc0087c27f4 t __skb_fill_page_desc
+ffffffc0087c2850 t __skb_fill_page_desc
+ffffffc0087c28b0 T esp_output_tail
+ffffffc0087c2db0 t esp_output_done_esn
+ffffffc0087c2e20 t esp_output_done_esn
+ffffffc0087c2e90 t esp_output_done
+ffffffc0087c3070 t esp_output_done
+ffffffc0087c32cc t esp_ssg_unref
+ffffffc0087c33e4 t esp_ssg_unref
+ffffffc0087c3500 T esp_input_done2
+ffffffc0087c3800 t esp4_rcv_cb
+ffffffc0087c3814 t esp4_err
+ffffffc0087c3978 t esp_init_state
+ffffffc0087c3e1c t esp_destroy
+ffffffc0087c3e54 t esp_input
+ffffffc0087c41cc t esp_output
+ffffffc0087c4364 t esp_input_done_esn
+ffffffc0087c43fc t esp_input_done_esn
+ffffffc0087c4494 t esp_input_done
+ffffffc0087c44e4 t esp_input_done
+ffffffc0087c4534 T xfrm4_tunnel_register
+ffffffc0087c4608 T xfrm4_tunnel_deregister
+ffffffc0087c46c4 t tunnel64_rcv
+ffffffc0087c479c t tunnel64_err
+ffffffc0087c4830 t tunnel4_rcv
+ffffffc0087c4908 t tunnel4_err
+ffffffc0087c499c T inet_diag_msg_common_fill
+ffffffc0087c4a44 T inet_diag_msg_attrs_fill
+ffffffc0087c4c40 T inet_sk_diag_fill
+ffffffc0087c50ec T inet_diag_find_one_icsk
+ffffffc0087c53f8 T inet_diag_dump_one_icsk
+ffffffc0087c5568 t sk_diag_fill
+ffffffc0087c5898 T inet_diag_bc_sk
+ffffffc0087c5c5c T inet_diag_dump_icsk
+ffffffc0087c611c T inet_diag_register
+ffffffc0087c61a8 T inet_diag_unregister
+ffffffc0087c6208 t inet_diag_rcv_msg_compat
+ffffffc0087c6330 t inet_diag_handler_cmd
+ffffffc0087c63fc t inet_diag_handler_get_info
+ffffffc0087c66a4 t inet_diag_dump_start
+ffffffc0087c66d4 t inet_diag_dump
+ffffffc0087c6708 t inet_diag_dump_done
+ffffffc0087c6738 t inet_diag_cmd_exact
+ffffffc0087c695c t __inet_diag_dump_start
+ffffffc0087c6c0c t __inet_diag_dump
+ffffffc0087c6d48 t inet_diag_dump_start_compat
+ffffffc0087c6d78 t inet_diag_dump_compat
+ffffffc0087c6e30 t tcp_diag_dump
+ffffffc0087c6e70 t tcp_diag_dump_one
+ffffffc0087c6eac t tcp_diag_get_info
+ffffffc0087c6f60 t tcp_diag_get_aux
+ffffffc0087c7088 t tcp_diag_get_aux_size
+ffffffc0087c710c t tcp_diag_destroy
+ffffffc0087c717c t udplite_diag_dump
+ffffffc0087c71bc t udplite_diag_dump_one
+ffffffc0087c71f8 t udp_diag_get_info
+ffffffc0087c723c t udplite_diag_destroy
+ffffffc0087c7270 t udp_dump
+ffffffc0087c7424 t udp_dump_one
+ffffffc0087c76b4 t __udp_diag_destroy
+ffffffc0087c7940 t udp_diag_dump
+ffffffc0087c7980 t udp_diag_dump_one
+ffffffc0087c79bc t udp_diag_destroy
+ffffffc0087c79f4 t cubictcp_recalc_ssthresh
+ffffffc0087c7a54 t cubictcp_cong_avoid
+ffffffc0087c7d30 t cubictcp_state
+ffffffc0087c7d84 t cubictcp_cwnd_event
+ffffffc0087c7dd4 t cubictcp_acked
+ffffffc0087c81d8 t cubictcp_init
+ffffffc0087c8244 t xfrm4_dst_lookup
+ffffffc0087c82d0 t xfrm4_get_saddr
+ffffffc0087c8378 t xfrm4_fill_dst
+ffffffc0087c84cc t xfrm4_dst_destroy
+ffffffc0087c8624 t xfrm4_dst_ifdown
+ffffffc0087c8654 t xfrm4_update_pmtu
+ffffffc0087c86a4 t xfrm4_redirect
+ffffffc0087c86f4 T xfrm4_transport_finish
+ffffffc0087c886c T xfrm4_udp_encap_rcv
+ffffffc0087c8a34 T xfrm4_rcv
+ffffffc0087c8a84 t xfrm4_rcv_encap_finish2
+ffffffc0087c8ad8 T xfrm4_output
+ffffffc0087c8b0c T xfrm4_local_error
+ffffffc0087c8b6c T xfrm4_rcv_encap
+ffffffc0087c8cc0 T xfrm4_protocol_register
+ffffffc0087c8e38 T xfrm4_protocol_deregister
+ffffffc0087c8fdc t xfrm4_esp_rcv
+ffffffc0087c908c t xfrm4_esp_err
+ffffffc0087c9120 t xfrm4_ah_rcv
+ffffffc0087c91d0 t xfrm4_ah_err
+ffffffc0087c9264 t xfrm4_ipcomp_rcv
+ffffffc0087c9314 t xfrm4_ipcomp_err
+ffffffc0087c93a8 t xfrm4_rcv_cb.llvm.13516301134415204680
+ffffffc0087c948c T xfrm_selector_match
+ffffffc0087c9834 T __xfrm_dst_lookup
+ffffffc0087c9910 T xfrm_policy_alloc
+ffffffc0087c99ec t xfrm_policy_timer
+ffffffc0087c9d0c t xfrm_policy_queue_process
+ffffffc0087ca280 T xfrm_policy_destroy
+ffffffc0087ca2ec t xfrm_policy_destroy_rcu
+ffffffc0087ca31c T xfrm_spd_getinfo
+ffffffc0087ca368 T xfrm_policy_hash_rebuild
+ffffffc0087ca3a4 T xfrm_policy_insert
+ffffffc0087ca7d4 t policy_hash_bysel
+ffffffc0087ca994 t xfrm_policy_insert_list
+ffffffc0087cab74 t xfrm_policy_inexact_insert
+ffffffc0087cae2c t xfrm_policy_requeue
+ffffffc0087cb070 t xfrm_policy_kill
+ffffffc0087cb2d0 T xfrm_policy_bysel_ctx
+ffffffc0087cb708 t __xfrm_policy_bysel_ctx
+ffffffc0087cb84c T xfrm_policy_byid
+ffffffc0087cbaac T xfrm_policy_flush
+ffffffc0087cbc98 T xfrm_audit_policy_delete
+ffffffc0087cbd78 T xfrm_policy_walk
+ffffffc0087cbf28 T xfrm_policy_walk_init
+ffffffc0087cbf50 T xfrm_policy_walk_done
+ffffffc0087cbfd4 T xfrm_policy_delete
+ffffffc0087cc104 T xfrm_sk_policy_insert
+ffffffc0087cc398 T __xfrm_sk_clone_policy
+ffffffc0087cc6c8 T xfrm_lookup_with_ifid
+ffffffc0087cd2b4 t xfrm_sk_policy_lookup
+ffffffc0087cd408 t xfrm_resolve_and_create_bundle
+ffffffc0087ce19c t xfrm_pols_put
+ffffffc0087ce260 T xfrm_lookup
+ffffffc0087ce290 T xfrm_lookup_route
+ffffffc0087ce370 T __xfrm_decode_session
+ffffffc0087ce938 T __xfrm_policy_check
+ffffffc0087cf5b4 t xfrm_policy_lookup
+ffffffc0087cf994 t xfrm_secpath_reject
+ffffffc0087cfa10 T __xfrm_route_forward
+ffffffc0087cfca0 T xfrm_dst_ifdown
+ffffffc0087cfe10 T xfrm_policy_register_afinfo
+ffffffc0087cff44 t xfrm_dst_check
+ffffffc0087d0268 t xfrm_default_advmss
+ffffffc0087d02e0 t xfrm_mtu
+ffffffc0087d0358 t xfrm_negative_advice
+ffffffc0087d0394 t xfrm_link_failure
+ffffffc0087d03a4 t xfrm_neigh_lookup
+ffffffc0087d0450 t xfrm_confirm_neigh
+ffffffc0087d04f8 T xfrm_policy_unregister_afinfo
+ffffffc0087d061c T xfrm_if_register_cb
+ffffffc0087d0674 T xfrm_if_unregister_cb
+ffffffc0087d06a8 T xfrm_audit_policy_add
+ffffffc0087d0784 t xfrm_audit_common_policyinfo
+ffffffc0087d08b4 T xfrm_migrate
+ffffffc0087d1498 t __xfrm6_pref_hash
+ffffffc0087d1600 t xfrm_policy_inexact_alloc_bin
+ffffffc0087d1b98 t xfrm_policy_inexact_alloc_chain
+ffffffc0087d1dac t __xfrm_policy_inexact_prune_bin
+ffffffc0087d2230 t xfrm_pol_bin_key
+ffffffc0087d22bc t xfrm_pol_bin_obj
+ffffffc0087d2348 t xfrm_pol_bin_cmp
+ffffffc0087d239c t xfrm_policy_inexact_insert_node
+ffffffc0087d2914 t xfrm_policy_inexact_list_reinsert
+ffffffc0087d2c34 t xfrm_policy_inexact_gc_tree
+ffffffc0087d2cf0 t xfrm_policy_lookup_inexact_addr
+ffffffc0087d2e80 t xdst_queue_output
+ffffffc0087d314c t policy_hash_direct
+ffffffc0087d32d0 t xfrm_policy_fini
+ffffffc0087d3474 t xfrm_hash_resize
+ffffffc0087d38f0 t xfrm_hash_resize
+ffffffc0087d3c9c t xfrm_hash_rebuild
+ffffffc0087d4078 T xfrm_register_type
+ffffffc0087d4208 T xfrm_state_get_afinfo
+ffffffc0087d4274 T xfrm_unregister_type
+ffffffc0087d43ec T xfrm_register_type_offload
+ffffffc0087d4494 T xfrm_unregister_type_offload
+ffffffc0087d4524 T xfrm_state_free
+ffffffc0087d455c T xfrm_state_alloc
+ffffffc0087d4628 t xfrm_timer_handler
+ffffffc0087d49a4 t xfrm_replay_timer_handler
+ffffffc0087d4a50 T __xfrm_state_destroy
+ffffffc0087d4afc t ___xfrm_state_destroy
+ffffffc0087d4c24 T __xfrm_state_delete
+ffffffc0087d4e60 T xfrm_state_delete
+ffffffc0087d4eb8 T xfrm_state_flush
+ffffffc0087d51a0 t xfrm_state_hold
+ffffffc0087d5218 T xfrm_audit_state_delete
+ffffffc0087d5364 T xfrm_dev_state_flush
+ffffffc0087d55ac T xfrm_sad_getinfo
+ffffffc0087d5618 T xfrm_state_find
+ffffffc0087d6570 t __xfrm_state_lookup.llvm.9820413124882290266
+ffffffc0087d6800 T km_query
+ffffffc0087d68b8 T xfrm_stateonly_find
+ffffffc0087d6ab8 T xfrm_state_lookup_byspi
+ffffffc0087d6bb4 T xfrm_state_insert
+ffffffc0087d6c0c t __xfrm_state_bump_genids.llvm.9820413124882290266
+ffffffc0087d6d60 t __xfrm_state_insert.llvm.9820413124882290266
+ffffffc0087d7050 T xfrm_state_add
+ffffffc0087d73e4 t __xfrm_find_acq_byseq.llvm.9820413124882290266
+ffffffc0087d74e0 t __find_acq_core.llvm.9820413124882290266
+ffffffc0087d7904 T xfrm_migrate_state_find
+ffffffc0087d7bdc T xfrm_state_migrate
+ffffffc0087d816c T xfrm_init_state
+ffffffc0087d81bc T xfrm_state_update
+ffffffc0087d8770 T xfrm_state_check_expire
+ffffffc0087d88d0 T km_state_expired
+ffffffc0087d89a8 T xfrm_state_lookup
+ffffffc0087d8a2c T xfrm_state_lookup_byaddr
+ffffffc0087d8ac0 t __xfrm_state_lookup_byaddr.llvm.9820413124882290266
+ffffffc0087d8cb0 T xfrm_find_acq
+ffffffc0087d8d7c T xfrm_find_acq_byseq
+ffffffc0087d8dec T xfrm_get_acqseq
+ffffffc0087d8e3c T verify_spi_info
+ffffffc0087d8e7c T xfrm_alloc_spi
+ffffffc0087d9298 T xfrm_state_walk
+ffffffc0087d952c T xfrm_state_walk_init
+ffffffc0087d9558 T xfrm_state_walk_done
+ffffffc0087d95e8 T km_policy_notify
+ffffffc0087d9694 T km_state_notify
+ffffffc0087d9730 T km_new_mapping
+ffffffc0087d98b8 T km_policy_expired
+ffffffc0087d9998 T km_migrate
+ffffffc0087d9a84 T km_report
+ffffffc0087d9b50 T xfrm_user_policy
+ffffffc0087d9f3c T xfrm_register_km
+ffffffc0087d9fbc T xfrm_unregister_km
+ffffffc0087da030 T xfrm_state_register_afinfo
+ffffffc0087da0cc T xfrm_state_unregister_afinfo
+ffffffc0087da190 T xfrm_state_afinfo_get_rcu
+ffffffc0087da1c8 T xfrm_flush_gc
+ffffffc0087da1fc T xfrm_state_delete_tunnel
+ffffffc0087da320 T xfrm_state_mtu
+ffffffc0087da3e8 T __xfrm_init_state
+ffffffc0087da8f4 T xfrm_state_fini
+ffffffc0087daa08 T xfrm_audit_state_add
+ffffffc0087dab54 T xfrm_audit_state_replay_overflow
+ffffffc0087dac64 T xfrm_audit_state_replay
+ffffffc0087dad7c T xfrm_audit_state_notfound_simple
+ffffffc0087dae70 T xfrm_audit_state_notfound
+ffffffc0087daf90 T xfrm_audit_state_icvfail
+ffffffc0087db0f0 t xfrm_state_gc_task
+ffffffc0087db198 t __xfrm_dst_hash
+ffffffc0087db34c t __xfrm_src_hash
+ffffffc0087db508 T xfrm_hash_alloc
+ffffffc0087db568 T xfrm_hash_free
+ffffffc0087db5bc T xfrm_input_register_afinfo
+ffffffc0087db664 T xfrm_input_unregister_afinfo
+ffffffc0087db708 T secpath_set
+ffffffc0087db77c T xfrm_parse_spi
+ffffffc0087db8b0 T xfrm_input
+ffffffc0087dd50c t xfrm_offload
+ffffffc0087dd564 T xfrm_input_resume
+ffffffc0087dd598 T xfrm_trans_queue_net
+ffffffc0087dd660 T xfrm_trans_queue
+ffffffc0087dd730 t xfrm_trans_reinject
+ffffffc0087dd87c T pktgen_xfrm_outer_mode_output
+ffffffc0087dd8a4 t xfrm_outer_mode_output
+ffffffc0087de080 T xfrm_output_resume
+ffffffc0087de8f8 T xfrm_output
+ffffffc0087dead4 T xfrm_local_error
+ffffffc0087deb78 t xfrm_inner_extract_output
+ffffffc0087df160 t xfrm6_hdr_offset
+ffffffc0087df2a4 T xfrm_replay_seqhi
+ffffffc0087df314 T xfrm_replay_notify
+ffffffc0087df580 T xfrm_replay_advance
+ffffffc0087df8e0 T xfrm_replay_check
+ffffffc0087df9e0 t xfrm_replay_check_esn
+ffffffc0087dfad0 T xfrm_replay_recheck
+ffffffc0087dfc54 T xfrm_replay_overflow
+ffffffc0087dfdf4 T xfrm_init_replay
+ffffffc0087dfea4 t xfrm_dev_event
+ffffffc0087dff34 t xfrm_statistics_seq_show
+ffffffc0087e00b4 T xfrm_proc_fini
+ffffffc0087e00ec T xfrm_aalg_get_byid
+ffffffc0087e0254 T xfrm_ealg_get_byid
+ffffffc0087e03d4 T xfrm_calg_get_byid
+ffffffc0087e0494 T xfrm_aalg_get_byname
+ffffffc0087e0564 T xfrm_ealg_get_byname
+ffffffc0087e0634 T xfrm_calg_get_byname
+ffffffc0087e0780 T xfrm_aead_get_byname
+ffffffc0087e09d0 T xfrm_aalg_get_byidx
+ffffffc0087e09f8 T xfrm_ealg_get_byidx
+ffffffc0087e0a20 T xfrm_probe_algs
+ffffffc0087e0bc0 T xfrm_count_pfkey_auth_supported
+ffffffc0087e0c54 T xfrm_count_pfkey_enc_supported
+ffffffc0087e0cf4 t xfrm_send_state_notify
+ffffffc0087e1384 t xfrm_send_acquire
+ffffffc0087e16ec t xfrm_compile_policy
+ffffffc0087e1888 t xfrm_send_mapping
+ffffffc0087e19fc t xfrm_send_policy_notify
+ffffffc0087e2064 t xfrm_send_report
+ffffffc0087e21ec t xfrm_send_migrate
+ffffffc0087e24b8 t xfrm_is_alive
+ffffffc0087e251c t build_aevent
+ffffffc0087e276c t copy_to_user_state_extra
+ffffffc0087e2d20 t xfrm_smark_put
+ffffffc0087e2dc8 t copy_user_offload
+ffffffc0087e2e4c t copy_sec_ctx
+ffffffc0087e2ee0 t copy_to_user_tmpl
+ffffffc0087e3004 t verify_newpolicy_info
+ffffffc0087e3120 t validate_tmpl
+ffffffc0087e34b8 t copy_templates
+ffffffc0087e356c t xfrm_netlink_rcv
+ffffffc0087e35c8 t xfrm_user_rcv_msg
+ffffffc0087e3864 t xfrm_add_sa
+ffffffc0087e42d4 t xfrm_del_sa
+ffffffc0087e4510 t xfrm_get_sa
+ffffffc0087e46f4 t xfrm_dump_sa
+ffffffc0087e486c t xfrm_dump_sa_done
+ffffffc0087e48b0 t xfrm_add_policy
+ffffffc0087e4a88 t xfrm_get_policy
+ffffffc0087e4d84 t xfrm_dump_policy_start
+ffffffc0087e4dbc t xfrm_dump_policy
+ffffffc0087e4e50 t xfrm_dump_policy_done
+ffffffc0087e4e8c t xfrm_alloc_userspi
+ffffffc0087e516c t xfrm_add_acquire
+ffffffc0087e53b8 t xfrm_add_sa_expire
+ffffffc0087e5520 t xfrm_add_pol_expire
+ffffffc0087e575c t xfrm_flush_sa
+ffffffc0087e580c t xfrm_flush_policy
+ffffffc0087e58ec t xfrm_new_ae
+ffffffc0087e5bc4 t xfrm_get_ae
+ffffffc0087e5e10 t xfrm_do_migrate
+ffffffc0087e61f4 t xfrm_get_sadinfo
+ffffffc0087e6390 t xfrm_set_spdinfo
+ffffffc0087e64e0 t xfrm_get_spdinfo
+ffffffc0087e6728 t xfrm_set_default
+ffffffc0087e68e4 t xfrm_get_default
+ffffffc0087e69e0 t verify_aead
+ffffffc0087e6a68 t verify_auth_trunc
+ffffffc0087e6af0 t verify_one_alg
+ffffffc0087e6b78 t verify_sec_ctx_len
+ffffffc0087e6bf8 t verify_replay
+ffffffc0087e6cd4 t xfrm_alloc_replay_state_esn
+ffffffc0087e6dac t xfrm_update_ae_params
+ffffffc0087e6e34 t xfrm_state_netlink
+ffffffc0087e6f4c t dump_one_state
+ffffffc0087e702c t xfrm_policy_construct
+ffffffc0087e726c t dump_one_policy
+ffffffc0087e74e0 T ipcomp_input
+ffffffc0087e7794 T ipcomp_output
+ffffffc0087e7988 T ipcomp_destroy
+ffffffc0087e79e8 t ipcomp_free_data
+ffffffc0087e7ab8 T ipcomp_init_state
+ffffffc0087e7df0 t ipcomp_free_tfms
+ffffffc0087e7f08 t xfrmi4_fini
+ffffffc0087e7f5c t xfrmi6_fini
+ffffffc0087e7fd4 t xfrmi_dev_setup
+ffffffc0087e8050 t xfrmi_validate
+ffffffc0087e8064 t xfrmi_newlink
+ffffffc0087e825c t xfrmi_changelink
+ffffffc0087e8434 t xfrmi_dellink
+ffffffc0087e8460 t xfrmi_get_size
+ffffffc0087e8474 t xfrmi_fill_info
+ffffffc0087e8544 t xfrmi_get_link_net
+ffffffc0087e8558 t xfrmi_dev_free
+ffffffc0087e859c t xfrmi_dev_init
+ffffffc0087e878c t xfrmi_dev_uninit
+ffffffc0087e8834 t xfrmi_xmit
+ffffffc0087e8e04 t xfrmi_get_iflink
+ffffffc0087e8e18 t xfrmi_rcv_cb
+ffffffc0087e9054 t xfrmi4_err
+ffffffc0087e9300 t xfrmi6_rcv_tunnel
+ffffffc0087e9364 t xfrmi6_err
+ffffffc0087e95fc t xfrmi_decode_session
+ffffffc0087e96a4 T unix_peer_get
+ffffffc0087e9748 t unix_close
+ffffffc0087e9758 t unix_unhash
+ffffffc0087e9768 T __unix_dgram_recvmsg
+ffffffc0087e9b4c t scm_recv
+ffffffc0087e9cb4 T __unix_stream_recvmsg
+ffffffc0087e9d30 t unix_stream_read_actor
+ffffffc0087e9d80 t unix_stream_read_generic
+ffffffc0087ea6cc T unix_inq_len
+ffffffc0087ea798 T unix_outq_len
+ffffffc0087ea7b8 t scm_destroy
+ffffffc0087ea804 t unix_stream_recv_urg
+ffffffc0087ea920 t unix_seq_start
+ffffffc0087eaa0c t unix_seq_stop
+ffffffc0087eaa4c t unix_seq_next
+ffffffc0087eac08 t unix_seq_show
+ffffffc0087eada8 t unix_create
+ffffffc0087eae84 t unix_create1
+ffffffc0087eb188 t unix_release
+ffffffc0087eb204 t unix_bind
+ffffffc0087eb6a8 t unix_stream_connect
+ffffffc0087ebc38 t unix_socketpair
+ffffffc0087ebd54 t unix_accept
+ffffffc0087ebf34 t unix_getname
+ffffffc0087ec0e0 t unix_poll
+ffffffc0087ec234 t unix_ioctl
+ffffffc0087ec81c t unix_listen
+ffffffc0087ec8f4 t unix_shutdown
+ffffffc0087ecb64 t unix_show_fdinfo
+ffffffc0087ecc60 t unix_stream_sendmsg
+ffffffc0087ed3c8 t unix_stream_recvmsg
+ffffffc0087ed440 t unix_stream_sendpage
+ffffffc0087ed8c8 t unix_stream_splice_read
+ffffffc0087ed974 t unix_set_peek_off
+ffffffc0087ed9dc t unix_stream_read_skb
+ffffffc0087edac8 t unix_release_sock
+ffffffc0087edee0 t unix_autobind
+ffffffc0087ee168 t unix_table_double_lock
+ffffffc0087ee1c4 t unix_table_double_unlock
+ffffffc0087ee224 t __unix_set_addr_hash
+ffffffc0087ee364 t unix_insert_bsd_socket
+ffffffc0087ee408 t unix_find_other
+ffffffc0087ee748 t unix_wait_for_peer
+ffffffc0087ee834 t init_peercred
+ffffffc0087ee97c t copy_peercred
+ffffffc0087eead8 t unix_scm_to_skb
+ffffffc0087eeb98 t maybe_add_creds
+ffffffc0087eec6c t unix_stream_splice_actor
+ffffffc0087eecbc t unix_read_skb
+ffffffc0087eed98 t unix_dgram_connect
+ffffffc0087ef1ac t unix_dgram_poll
+ffffffc0087ef3dc t unix_dgram_sendmsg
+ffffffc0087efb6c t unix_dgram_recvmsg
+ffffffc0087efb98 t unix_state_double_lock
+ffffffc0087efbf0 t unix_dgram_peer_wake_disconnect_wakeup
+ffffffc0087efca0 t unix_dgram_disconnected
+ffffffc0087efd24 t unix_dgram_peer_wake_me
+ffffffc0087efe78 t unix_seqpacket_sendmsg
+ffffffc0087eff0c t unix_seqpacket_recvmsg
+ffffffc0087eff50 t unix_write_space
+ffffffc0087f000c t unix_sock_destructor
+ffffffc0087f0188 t unix_dgram_peer_wake_relay
+ffffffc0087f0214 T wait_for_unix_gc
+ffffffc0087f0318 T unix_gc
+ffffffc0087f0800 t scan_children
+ffffffc0087f0984 t dec_inflight
+ffffffc0087f09cc t inc_inflight_move_tail
+ffffffc0087f0a98 t inc_inflight
+ffffffc0087f0ad8 t scan_inflight
+ffffffc0087f0c14 T unix_sysctl_unregister
+ffffffc0087f0c44 T unix_get_socket
+ffffffc0087f0cb4 T unix_inflight
+ffffffc0087f0e2c T unix_notinflight
+ffffffc0087f0f9c T unix_attach_fds
+ffffffc0087f1074 T unix_detach_fds
+ffffffc0087f10f0 T unix_destruct_scm
+ffffffc0087f11dc T ipv6_mod_enabled
+ffffffc0087f11fc T inet6_sock_destruct
+ffffffc0087f123c T inet6_cleanup_sock
+ffffffc0087f1268 T inet6_bind
+ffffffc0087f12e0 t __inet6_bind
+ffffffc0087f16cc T inet6_release
+ffffffc0087f1728 T inet6_destroy_sock
+ffffffc0087f18c0 T inet6_getname
+ffffffc0087f19f8 T inet6_ioctl
+ffffffc0087f1c84 T inet6_sendmsg
+ffffffc0087f1d14 T inet6_recvmsg
+ffffffc0087f1e4c T inet6_register_protosw
+ffffffc0087f1f68 T inet6_unregister_protosw
+ffffffc0087f1ff8 T inet6_sk_rebuild_header
+ffffffc0087f21f0 T ipv6_opt_accepted
+ffffffc0087f22a0 t inet6_create
+ffffffc0087f266c t ipv6_route_input
+ffffffc0087f26b0 T ipv6_sock_ac_join
+ffffffc0087f28f8 T __ipv6_dev_ac_inc
+ffffffc0087f2c74 T ipv6_sock_ac_drop
+ffffffc0087f2dd8 T __ipv6_sock_ac_close
+ffffffc0087f2efc T ipv6_sock_ac_close
+ffffffc0087f2f7c T __ipv6_dev_ac_dec
+ffffffc0087f3160 T ipv6_ac_destroy_dev
+ffffffc0087f32b0 T ipv6_chk_acast_addr
+ffffffc0087f3468 T ipv6_chk_acast_addr_src
+ffffffc0087f34cc T ac6_proc_exit
+ffffffc0087f3504 T ipv6_anycast_cleanup
+ffffffc0087f3578 t aca_free_rcu
+ffffffc0087f3624 t ac6_seq_start
+ffffffc0087f3784 t ac6_seq_stop
+ffffffc0087f37d0 t ac6_seq_next
+ffffffc0087f38a0 t ac6_seq_show
+ffffffc0087f38ec T ip6_output
+ffffffc0087f3c84 T ip6_autoflowlabel
+ffffffc0087f3cbc T ip6_xmit
+ffffffc0087f4524 T ip6_forward
+ffffffc0087f4c8c t ip6_call_ra_chain
+ffffffc0087f4d7c t skb_cow
+ffffffc0087f4e10 t ip6_forward_finish
+ffffffc0087f4f10 T ip6_fraglist_init
+ffffffc0087f5104 T ip6_fraglist_prepare
+ffffffc0087f5214 t ip6_copy_metadata
+ffffffc0087f53fc T ip6_frag_init
+ffffffc0087f5438 T ip6_frag_next
+ffffffc0087f560c T ip6_fragment
+ffffffc0087f6470 T ip6_dst_lookup
+ffffffc0087f649c t ip6_dst_lookup_tail.llvm.15995061793248508921
+ffffffc0087f6960 T ip6_dst_lookup_flow
+ffffffc0087f6a14 T ip6_sk_dst_lookup_flow
+ffffffc0087f6c58 T ip6_dst_lookup_tunnel
+ffffffc0087f6de8 T ip6_append_data
+ffffffc0087f6fdc t ip6_setup_cork
+ffffffc0087f72d4 t __ip6_append_data
+ffffffc0087f8278 T __ip6_make_skb
+ffffffc0087f8a88 t ip6_cork_release
+ffffffc0087f8b18 T ip6_send_skb
+ffffffc0087f8c8c T ip6_push_pending_frames
+ffffffc0087f8cf0 T ip6_flush_pending_frames
+ffffffc0087f8d48 t __ip6_flush_pending_frames
+ffffffc0087f8f04 T ip6_make_skb
+ffffffc0087f90b8 t ip6_finish_output2
+ffffffc0087f9984 t skb_zcopy_set
+ffffffc0087f9a68 T ip6_rcv_finish
+ffffffc0087f9ad8 t ip6_rcv_finish_core
+ffffffc0087f9bb0 T ipv6_rcv
+ffffffc0087f9c2c t ip6_rcv_core
+ffffffc0087fa1cc T ipv6_list_rcv
+ffffffc0087fa354 t ip6_sublist_rcv
+ffffffc0087fa668 T ip6_protocol_deliver_rcu
+ffffffc0087faafc T ip6_input
+ffffffc0087fab80 T ip6_mc_input
+ffffffc0087facc0 T inet6_netconf_notify_devconf
+ffffffc0087fadf0 t inet6_netconf_fill_devconf
+ffffffc0087fafbc T inet6_ifa_finish_destroy
+ffffffc0087fb0b0 t in6_dev_put
+ffffffc0087fb13c T ipv6_dev_get_saddr
+ffffffc0087fb304 t __ipv6_dev_get_saddr
+ffffffc0087fb478 T ipv6_get_lladdr
+ffffffc0087fb53c T ipv6_chk_addr
+ffffffc0087fb580 T ipv6_chk_addr_and_flags
+ffffffc0087fb5b0 t __ipv6_chk_addr_and_flags.llvm.10004818272749128152
+ffffffc0087fb6e8 T ipv6_chk_custom_prefix
+ffffffc0087fb7d4 T ipv6_chk_prefix
+ffffffc0087fb8bc T ipv6_dev_find
+ffffffc0087fb8f8 T ipv6_get_ifaddr
+ffffffc0087fba44 t in6_ifa_hold
+ffffffc0087fbabc T addrconf_dad_failure
+ffffffc0087fbdf4 t in6_ifa_put
+ffffffc0087fbe7c t ipv6_generate_stable_address
+ffffffc0087fc038 t ipv6_add_addr
+ffffffc0087fc358 t addrconf_mod_dad_work
+ffffffc0087fc468 T addrconf_join_solict
+ffffffc0087fc4f0 T addrconf_leave_solict
+ffffffc0087fc578 T addrconf_rt_table
+ffffffc0087fc6ac T addrconf_prefix_rcv_add_addr
+ffffffc0087fca04 t addrconf_dad_start
+ffffffc0087fca70 t manage_tempaddrs
+ffffffc0087fcc04 T addrconf_prefix_rcv
+ffffffc0087fd1f8 t addrconf_get_prefix_route
+ffffffc0087fd3a8 t addrconf_prefix_route
+ffffffc0087fd4ec t fib6_info_release
+ffffffc0087fd580 t fib6_info_release
+ffffffc0087fd610 t ipv6_generate_eui64
+ffffffc0087fd8d8 t ipv6_inherit_eui64
+ffffffc0087fd974 T addrconf_set_dstaddr
+ffffffc0087fdc00 T addrconf_add_ifaddr
+ffffffc0087fde1c t inet6_addr_add
+ffffffc0087fe0ac T addrconf_del_ifaddr
+ffffffc0087fe2a0 t inet6_addr_del
+ffffffc0087fe4b8 T addrconf_add_linklocal
+ffffffc0087fe6f4 T if6_proc_exit
+ffffffc0087fe748 T ipv6_chk_home_addr
+ffffffc0087fe820 T ipv6_chk_rpl_srh_loop
+ffffffc0087fe950 T inet6_ifinfo_notify
+ffffffc0087fea28 t inet6_fill_ifinfo
+ffffffc0087fec50 t ipv6_add_dev
+ffffffc0087ff160 t inet6_dump_ifinfo
+ffffffc0087ff304 t inet6_rtm_newaddr
+ffffffc0087ffb44 t inet6_rtm_deladdr
+ffffffc0087ffc80 t inet6_rtm_getaddr
+ffffffc008800040 t inet6_dump_ifaddr
+ffffffc008800070 t inet6_dump_ifmcaddr
+ffffffc0088000a0 t inet6_dump_ifacaddr
+ffffffc0088000d0 t inet6_netconf_get_devconf
+ffffffc0088004b4 t inet6_netconf_dump_devconf
+ffffffc008800708 T addrconf_cleanup
+ffffffc0088007f4 t addrconf_ifdown
+ffffffc00880105c t ipv6_get_saddr_eval
+ffffffc008801398 t addrconf_dad_work
+ffffffc0088018e4 t in6_dev_hold
+ffffffc008801958 t ipv6_add_addr_hash
+ffffffc008801a54 t ipv6_link_dev_addr
+ffffffc008801b04 t addrconf_dad_stop
+ffffffc008801d48 t addrconf_dad_completed
+ffffffc008802154 t addrconf_dad_kick
+ffffffc008802230 t ipv6_create_tempaddr
+ffffffc0088028ac t ipv6_del_addr
+ffffffc008802c44 t check_cleanup_prefix_route
+ffffffc008802da4 t cleanup_prefix_route
+ffffffc008802e90 t addrconf_mod_rs_timer
+ffffffc008802f3c t addrconf_verify_rtnl
+ffffffc008803580 t addrconf_add_dev
+ffffffc008803744 t ipv6_mc_config
+ffffffc00880380c t if6_seq_start
+ffffffc0088038dc t if6_seq_stop
+ffffffc008803908 t if6_seq_next
+ffffffc008803998 t if6_seq_show
+ffffffc0088039e8 t inet6_fill_ifla6_attrs
+ffffffc008803ea8 t snmp6_fill_stats
+ffffffc008803f44 t __ipv6_ifa_notify
+ffffffc0088043e8 t inet6_fill_ifaddr
+ffffffc008804708 t addrconf_verify_work
+ffffffc008804750 t __addrconf_sysctl_register
+ffffffc0088048f4 t addrconf_sysctl_forward
+ffffffc008804b7c t addrconf_sysctl_mtu
+ffffffc008804c14 t addrconf_sysctl_proxy_ndp
+ffffffc008804d58 t addrconf_sysctl_disable
+ffffffc008804f84 t addrconf_sysctl_stable_secret
+ffffffc0088051ac t addrconf_sysctl_ignore_routes_with_linkdown
+ffffffc0088053ec t addrconf_sysctl_addr_gen_mode
+ffffffc0088055f0 t addrconf_sysctl_disable_policy
+ffffffc008805788 t dev_forward_change
+ffffffc008805a74 t addrconf_notify
+ffffffc008805e7c t addrconf_permanent_addr
+ffffffc0088061cc t addrconf_link_ready
+ffffffc00880623c t addrconf_dad_run
+ffffffc0088063a0 t addrconf_init_auto_addrs
+ffffffc008806868 t addrconf_sysctl_unregister
+ffffffc0088068e8 t addrconf_sysctl_register
+ffffffc008806994 t addrconf_addr_gen
+ffffffc008806b48 t add_v4_addrs
+ffffffc008806e94 t add_addr
+ffffffc008806ff4 t addrconf_disable_policy_idev
+ffffffc008807134 t addrconf_rs_timer
+ffffffc008807364 t rfc3315_s14_backoff_update
+ffffffc008807420 t inet6_fill_link_af
+ffffffc00880746c t inet6_get_link_af_size
+ffffffc008807494 t inet6_validate_link_af
+ffffffc0088075c0 t inet6_set_link_af
+ffffffc0088078c4 t modify_prefix_route
+ffffffc008807af4 t inet6_dump_addr
+ffffffc008807e98 t in6_dump_addrs
+ffffffc0088083c0 T ipv6_addr_label
+ffffffc0088084e0 T ipv6_addr_label_cleanup
+ffffffc008808534 t ip6addrlbl_newdel
+ffffffc0088086b0 t ip6addrlbl_get
+ffffffc0088089b4 t ip6addrlbl_dump
+ffffffc008808b1c t ip6addrlbl_add
+ffffffc008808dcc t addrlbl_ifindex_exists
+ffffffc008808e20 t ip6addrlbl_del
+ffffffc008808fac t ip6addrlbl_fill
+ffffffc0088090ec T __traceiter_fib6_table_lookup
+ffffffc008809194 t trace_event_raw_event_fib6_table_lookup
+ffffffc008809378 t perf_trace_fib6_table_lookup
+ffffffc0088095b8 T rt6_uncached_list_add
+ffffffc008809650 T rt6_uncached_list_del
+ffffffc0088096d8 T ip6_neigh_lookup
+ffffffc0088098d4 T ip6_dst_alloc
+ffffffc008809984 T fib6_select_path
+ffffffc008809adc T rt6_multipath_hash
+ffffffc00880a1bc t nexthop_path_fib6_result
+ffffffc00880a274 t rt6_score_route
+ffffffc00880a40c T rt6_route_rcv
+ffffffc00880a6b8 T rt6_get_dflt_router
+ffffffc00880a830 t rt6_get_route_info
+ffffffc00880a9e4 T ip6_del_rt
+ffffffc00880aa50 t rt6_add_route_info
+ffffffc00880ab9c T ip6_route_lookup
+ffffffc00880abd0 t ip6_pol_route_lookup
+ffffffc00880b1d8 T rt6_lookup
+ffffffc00880b28c T ip6_ins_rt
+ffffffc00880b330 T rt6_flush_exceptions
+ffffffc00880b380 t rt6_nh_flush_exceptions
+ffffffc00880b3ac t fib6_nh_flush_exceptions
+ffffffc00880b48c T rt6_age_exceptions
+ffffffc00880b50c t rt6_nh_age_exceptions
+ffffffc00880b540 t fib6_nh_age_exceptions
+ffffffc00880b72c T fib6_table_lookup
+ffffffc00880ba5c T ip6_pol_route
+ffffffc00880c140 t ip6_rt_cache_alloc
+ffffffc00880c3f4 T ip6_route_input_lookup
+ffffffc00880c488 t ip6_pol_route_input
+ffffffc00880c4c0 t ip6_multipath_l3_keys
+ffffffc00880c61c T ip6_route_input
+ffffffc00880c884 T ip6_route_output_flags_noref
+ffffffc00880c984 t ip6_pol_route_output
+ffffffc00880c9c0 T ip6_route_output_flags
+ffffffc00880cb14 T ip6_blackhole_route
+ffffffc00880cd30 T ip6_update_pmtu
+ffffffc00880ce30 t __ip6_rt_update_pmtu
+ffffffc00880d094 T ip6_sk_update_pmtu
+ffffffc00880d24c T ip6_sk_dst_store_flow
+ffffffc00880d344 T ip6_redirect
+ffffffc00880d444 t rt6_do_redirect
+ffffffc00880d748 T ip6_redirect_no_header
+ffffffc00880d850 T ip6_sk_redirect
+ffffffc00880d960 T ip6_mtu_from_fib6
+ffffffc00880daa8 T icmp6_dst_alloc
+ffffffc00880dd50 T fib6_nh_init
+ffffffc00880e80c T fib6_nh_release
+ffffffc00880e9a8 T fib6_nh_release_dsts
+ffffffc00880ea90 T ip6_route_add
+ffffffc00880eb90 t ip6_route_info_create
+ffffffc00880f008 t __ip6_del_rt
+ffffffc00880f0fc T rt6_add_dflt_router
+ffffffc00880f230 T rt6_purge_dflt_routers
+ffffffc00880f268 t rt6_addrconf_purge.llvm.13233509975927447904
+ffffffc00880f334 T ipv6_route_ioctl
+ffffffc00880f4cc t ip6_route_del
+ffffffc00880f820 T addrconf_f6i_alloc
+ffffffc00880f960 T rt6_remove_prefsrc
+ffffffc00880f9e0 t fib6_remove_prefsrc
+ffffffc00880fa80 T rt6_clean_tohost
+ffffffc00880fab8 t fib6_clean_tohost.llvm.13233509975927447904
+ffffffc00880fbf8 T rt6_multipath_rebalance
+ffffffc00880fdc0 T rt6_sync_up
+ffffffc00880fe4c t fib6_ifup
+ffffffc00880fed4 T rt6_sync_down_dev
+ffffffc00880ff58 t fib6_ifdown
+ffffffc0088100d4 T rt6_disable_ip
+ffffffc008810480 T rt6_mtu_change
+ffffffc0088104f8 t rt6_mtu_change_route
+ffffffc008810574 T rt6_dump_route
+ffffffc008810788 t rt6_fill_node
+ffffffc008810d68 t rt6_nh_dump_exceptions
+ffffffc008810eac T inet6_rt_notify
+ffffffc008811090 T fib6_rt_update
+ffffffc00881126c T fib6_info_hw_flags_set
+ffffffc008811478 t inet6_rtm_newroute
+ffffffc008811d30 t inet6_rtm_delroute
+ffffffc008811f40 t inet6_rtm_getroute
+ffffffc008812490 T ip6_route_cleanup
+ffffffc0088125a0 t trace_raw_output_fib6_table_lookup
+ffffffc008812660 t nexthop_fib6_nh
+ffffffc0088126b8 t ip6_create_rt_rcu
+ffffffc008812920 t __rt6_nh_dev_match
+ffffffc008812994 t ip6_rt_copy_init
+ffffffc008812bf4 t ip6_pkt_prohibit_out
+ffffffc008812c40 t ip6_pkt_prohibit
+ffffffc008812c78 t ip6_pkt_discard_out
+ffffffc008812cc4 t ip6_pkt_discard
+ffffffc008812cf8 t ip6_pkt_drop
+ffffffc008813030 t rt6_remove_exception
+ffffffc008813174 t __find_rr_leaf
+ffffffc008813334 t rt6_nh_find_match
+ffffffc008813374 t find_match
+ffffffc00881377c t rt6_probe_deferred
+ffffffc00881388c t __rt6_find_exception_rcu
+ffffffc0088139c8 t ip6_dst_check
+ffffffc008813b38 t ip6_default_advmss
+ffffffc008813ba8 t ip6_dst_destroy
+ffffffc008813db0 t ip6_dst_neigh_lookup
+ffffffc008813e0c t rt6_do_update_pmtu
+ffffffc008813efc t fib6_nh_find_match
+ffffffc008813f68 t rt6_insert_exception
+ffffffc0088141c4 t __rt6_find_exception_spinlock
+ffffffc0088142f0 t __ip6_route_redirect
+ffffffc008814690 t fib6_nh_redirect_match
+ffffffc0088146d0 t ip6_redirect_nh_match
+ffffffc008814844 t ip_fib_metrics_put
+ffffffc0088148d8 t ip6_del_cached_rt
+ffffffc008814a20 t __ip6_del_rt_siblings
+ffffffc008814d20 t fib6_nh_del_cached_rt
+ffffffc008814d5c t rt6_remove_exception_rt
+ffffffc008814e80 t rt6_nh_remove_exception_rt
+ffffffc008814f50 t rt6_multipath_dead_count
+ffffffc008814fb0 t rt6_multipath_nh_flags_set
+ffffffc008815008 t fib6_nh_mtu_change
+ffffffc0088151bc t fib6_info_nh_uses_dev
+ffffffc0088151d4 t rt6_fill_node_nexthop
+ffffffc00881533c t rt6_nh_nlmsg_size
+ffffffc00881536c t ipv6_sysctl_rtcache_flush
+ffffffc0088153f4 t ip6_dst_gc
+ffffffc008815520 t ip6_mtu
+ffffffc008815590 t ip6_dst_ifdown
+ffffffc0088156bc t ip6_negative_advice
+ffffffc00881577c t ip6_link_failure
+ffffffc008815820 t ip6_rt_update_pmtu
+ffffffc008815860 t ip6_confirm_neigh
+ffffffc0088159c8 t rt6_stats_seq_show
+ffffffc008815a7c t rtm_to_fib6_config
+ffffffc008815eac t ip6_route_dev_notify
+ffffffc0088161f8 T fib6_update_sernum
+ffffffc008816280 T fib6_info_alloc
+ffffffc0088162d8 T fib6_info_destroy_rcu
+ffffffc008816418 T fib6_new_table
+ffffffc008816508 T fib6_get_table
+ffffffc00881658c T fib6_tables_seq_read
+ffffffc008816610 T call_fib6_entry_notifiers
+ffffffc00881668c T call_fib6_multipath_entry_notifiers
+ffffffc00881670c T call_fib6_entry_notifiers_replace
+ffffffc008816794 T fib6_tables_dump
+ffffffc0088168d4 t fib6_node_dump
+ffffffc00881699c T fib6_metric_set
+ffffffc008816a30 T fib6_force_start_gc
+ffffffc008816a84 T fib6_update_sernum_upto_root
+ffffffc008816b1c T fib6_update_sernum_stub
+ffffffc008816bf0 T fib6_add
+ffffffc008817b00 t fib6_repair_tree
+ffffffc008817dc0 T fib6_node_lookup
+ffffffc008817ec8 T fib6_locate
+ffffffc008817fc8 T fib6_del
+ffffffc0088183a0 T fib6_clean_all
+ffffffc0088184a8 T fib6_clean_all_skip_notify
+ffffffc0088185b8 T fib6_run_gc
+ffffffc008818754 t fib6_age
+ffffffc0088187b8 t inet6_dump_fib
+ffffffc008818ac4 t fib6_flush_trees
+ffffffc008818c30 T fib6_gc_cleanup
+ffffffc008818c90 t ipv6_route_seq_start.llvm.2007083244689127062
+ffffffc008818df0 t ipv6_route_seq_stop.llvm.2007083244689127062
+ffffffc008818e8c t ipv6_route_seq_next.llvm.2007083244689127062
+ffffffc0088190c8 t ipv6_route_seq_show.llvm.2007083244689127062
+ffffffc00881920c t fib6_walk
+ffffffc0088192e4 t fib6_walk_continue
+ffffffc00881946c t fib6_purge_rt
+ffffffc0088196a8 t fib6_nh_drop_pcpu_from
+ffffffc0088196d8 t __fib6_drop_pcpu_from
+ffffffc008819848 t node_free_rcu
+ffffffc008819880 t fib6_clean_node
+ffffffc0088199dc t fib6_net_exit
+ffffffc008819ac4 t fib6_gc_timer_cb
+ffffffc008819afc t fib6_dump_done
+ffffffc008819bd0 t fib6_dump_node
+ffffffc008819c6c t fib6_dump_table
+ffffffc008819dcc t ipv6_route_yield
+ffffffc008819e28 T ip6_ra_control
+ffffffc00881a004 T ipv6_update_options
+ffffffc00881a148 T do_ipv6_setsockopt
+ffffffc00881b2a4 t sock_prot_inuse_add
+ffffffc00881b348 t txopt_put
+ffffffc00881b3cc t ipv6_set_mcast_msfilter
+ffffffc00881b518 t __ip6_sock_set_addr_preferences
+ffffffc00881b62c T ipv6_setsockopt
+ffffffc00881b6a4 T do_ipv6_getsockopt
+ffffffc00881bef4 t ipv6_get_msfilter
+ffffffc00881c064 T ipv6_getsockopt
+ffffffc00881c0ec t ndisc_hash
+ffffffc00881c128 t ndisc_key_eq
+ffffffc00881c164 t ndisc_constructor
+ffffffc00881c430 t pndisc_constructor
+ffffffc00881c4d4 t pndisc_destructor
+ffffffc00881c568 t pndisc_redo
+ffffffc00881c5ac t ndisc_is_multicast
+ffffffc00881c5cc t ndisc_allow_add
+ffffffc00881c63c T __ndisc_fill_addr_option
+ffffffc00881c704 T ndisc_parse_options
+ffffffc00881c8dc T ndisc_mc_map
+ffffffc00881ca38 T ndisc_send_skb
+ffffffc00881cfd8 T ndisc_send_na
+ffffffc00881d33c t ndisc_alloc_skb
+ffffffc00881d434 T ndisc_ns_create
+ffffffc00881d694 T ndisc_send_ns
+ffffffc00881d75c T ndisc_send_rs
+ffffffc00881d9dc T ndisc_update
+ffffffc00881da8c T ndisc_send_redirect
+ffffffc00881de2c t ndisc_redirect_opt_addr_space
+ffffffc00881dec0 t ndisc_fill_redirect_addr_option
+ffffffc00881dfe4 t ndisc_fill_redirect_hdr_option
+ffffffc00881e058 T ndisc_rcv
+ffffffc00881e1a8 t ndisc_recv_ns
+ffffffc00881e7c8 t ndisc_recv_na
+ffffffc00881eb68 t ndisc_recv_rs
+ffffffc00881eddc t ndisc_router_discovery
+ffffffc00881f9f8 t ndisc_redirect_rcv
+ffffffc00881fb78 T ndisc_ifinfo_sysctl_change
+ffffffc00881fe74 T ndisc_late_cleanup
+ffffffc00881fea8 T ndisc_cleanup
+ffffffc00881ff18 t ndisc_solicit
+ffffffc0088200c8 t ndisc_error_report
+ffffffc008820140 t pndisc_is_router
+ffffffc0088201c8 t accept_untracked_na
+ffffffc008820238 t ndisc_netdev_event
+ffffffc008820594 t ndisc_send_unsol_na
+ffffffc008820730 T udpv6_init_sock
+ffffffc008820794 t udpv6_destruct_sock
+ffffffc0088207dc T udp_v6_get_port
+ffffffc008820860 T udp_v6_rehash
+ffffffc0088208b4 T __udp6_lib_lookup
+ffffffc008820c70 t udp6_lib_lookup2
+ffffffc008820e88 T udp6_lib_lookup_skb
+ffffffc008820ef4 T udpv6_recvmsg
+ffffffc0088215e0 T udpv6_encap_enable
+ffffffc00882161c T __udp6_lib_err
+ffffffc008821cd0 T __udp6_lib_rcv
+ffffffc0088223fc t udp6_sk_rx_dst_set
+ffffffc00882248c t udp6_unicast_rcv_skb
+ffffffc008822540 t xfrm6_policy_check
+ffffffc0088225c0 t xfrm6_policy_check
+ffffffc00882265c T udp_v6_early_demux
+ffffffc0088228f0 T udpv6_sendmsg
+ffffffc008823428 t txopt_get
+ffffffc008823504 t udp_v6_send_skb
+ffffffc008823a48 t udp_v6_push_pending_frames
+ffffffc008823ae8 T udpv6_destroy_sock
+ffffffc008823bc8 T udpv6_setsockopt
+ffffffc008823c14 T udpv6_getsockopt
+ffffffc008823c58 T udp6_seq_show
+ffffffc008823cdc T udp6_proc_exit
+ffffffc008823d14 t udpv6_pre_connect
+ffffffc008823d78 T udpv6_exit
+ffffffc008823db8 t udpv6_queue_rcv_skb
+ffffffc008824028 t udpv6_queue_rcv_one_skb
+ffffffc008824740 t udpv6_rcv.llvm.8973886849767798862
+ffffffc008824778 t udpv6_err.llvm.8973886849767798862
+ffffffc0088247ac t udplitev6_sk_init
+ffffffc0088247f0 T udplitev6_exit
+ffffffc008824834 T udplite6_proc_exit
+ffffffc008824888 t udplitev6_rcv.llvm.476615948494526996
+ffffffc0088248c0 t udplitev6_err.llvm.476615948494526996
+ffffffc0088248f4 T raw_v6_match
+ffffffc0088249b8 T rawv6_mh_filter_register
+ffffffc0088249d8 T rawv6_mh_filter_unregister
+ffffffc008824a10 T raw6_local_deliver
+ffffffc008824c98 T raw6_icmp_error
+ffffffc008824f34 T rawv6_rcv
+ffffffc0088251f0 t rawv6_rcv_skb
+ffffffc0088252fc t rawv6_close
+ffffffc008825350 t rawv6_ioctl
+ffffffc008825658 t rawv6_init_sk
+ffffffc008825698 t raw6_destroy
+ffffffc0088256e4 t rawv6_setsockopt
+ffffffc008825898 t rawv6_getsockopt
+ffffffc008826140 t rawv6_sendmsg
+ffffffc008826930 t rawv6_recvmsg
+ffffffc008826c24 t rawv6_bind
+ffffffc008826e10 T raw6_proc_exit
+ffffffc008826e64 T rawv6_exit
+ffffffc008826e94 t rawv6_probe_proto_opt
+ffffffc008826f74 t rawv6_send_hdrinc
+ffffffc0088276bc t raw6_getfrag
+ffffffc0088277e4 t rawv6_push_pending_frames
+ffffffc008827a0c t raw6_seq_show
+ffffffc008827a70 T icmpv6_push_pending_frames
+ffffffc008827b70 T icmp6_send
+ffffffc0088282f8 t icmpv6_rt_has_prefsrc
+ffffffc008828398 t icmpv6_xrlim_allow
+ffffffc0088285d4 t icmpv6_route_lookup
+ffffffc0088287b4 t icmpv6_getfrag
+ffffffc008828824 T icmpv6_param_prob_reason
+ffffffc008828880 T ip6_err_gen_icmpv6_unreach
+ffffffc008828ac0 T icmpv6_notify
+ffffffc008828cdc T icmpv6_flow_init
+ffffffc008828d44 T icmpv6_cleanup
+ffffffc008828d7c T icmpv6_err_convert
+ffffffc008828e40 t icmpv6_rcv.llvm.14671545790358615582
+ffffffc008829400 t icmpv6_err.llvm.14671545790358615582
+ffffffc0088294cc t icmpv6_echo_reply
+ffffffc008829984 T ipv6_sock_mc_join
+ffffffc0088299b0 t __ipv6_sock_mc_join.llvm.2609348770743347853
+ffffffc008829b98 T ipv6_sock_mc_join_ssm
+ffffffc008829bc4 T ipv6_sock_mc_drop
+ffffffc008829dc0 t ip6_mc_leave_src
+ffffffc008829eb0 T __ipv6_dev_mc_dec
+ffffffc00882a024 T __ipv6_sock_mc_close
+ffffffc00882a1d8 T ipv6_sock_mc_close
+ffffffc00882a26c T ip6_mc_source
+ffffffc00882a6d4 t ip6_mc_add_src
+ffffffc00882a968 t ip6_mc_del_src
+ffffffc00882ab20 T ip6_mc_msfilter
+ffffffc00882ae40 T ip6_mc_msfget
+ffffffc00882b168 T inet6_mc_check
+ffffffc00882b2d8 T ipv6_dev_mc_inc
+ffffffc00882b304 t __ipv6_dev_mc_inc.llvm.2609348770743347853
+ffffffc00882b708 t igmp6_group_dropped
+ffffffc00882b968 t ma_put
+ffffffc00882ba6c T ipv6_dev_mc_dec
+ffffffc00882bb08 T ipv6_chk_mcast_addr
+ffffffc00882bc2c T igmp6_event_query
+ffffffc00882bd48 T igmp6_event_report
+ffffffc00882be64 T ipv6_mc_dad_complete
+ffffffc00882c028 T ipv6_mc_unmap
+ffffffc00882c088 T ipv6_mc_remap
+ffffffc00882c154 T ipv6_mc_up
+ffffffc00882c220 T ipv6_mc_down
+ffffffc00882c44c t mld_del_delrec
+ffffffc00882c5fc t igmp6_group_added
+ffffffc00882c724 T ipv6_mc_init_dev
+ffffffc00882c910 t mld_gq_work
+ffffffc00882ca14 t mld_ifc_work
+ffffffc00882ce78 t mld_dad_work
+ffffffc00882d0a4 t mld_query_work
+ffffffc00882db94 t mld_report_work
+ffffffc00882e190 T ipv6_mc_destroy_dev
+ffffffc00882e358 t mld_clear_delrec
+ffffffc00882e498 T igmp6_cleanup
+ffffffc00882e4f8 T igmp6_late_cleanup
+ffffffc00882e52c t mld_mca_work
+ffffffc00882e670 t mld_in_v1_mode
+ffffffc00882e6d0 t igmp6_send
+ffffffc00882eef8 t mld_sendpack
+ffffffc00882f4e8 t mld_newpack
+ffffffc00882f70c t mld_ifc_event
+ffffffc00882f7f4 t ip6_mc_del1_src
+ffffffc00882f8fc t igmp6_join_group
+ffffffc00882fa98 t igmp6_group_queried
+ffffffc00882fbe8 t igmp6_mc_seq_start
+ffffffc00882fd3c t igmp6_mc_seq_stop
+ffffffc00882fd7c t igmp6_mc_seq_next
+ffffffc00882fe30 t igmp6_mc_seq_show
+ffffffc00882febc t igmp6_mcf_seq_start
+ffffffc008830040 t igmp6_mcf_seq_stop
+ffffffc00883008c t igmp6_mcf_seq_next
+ffffffc0088301dc t igmp6_mcf_seq_show
+ffffffc008830244 t ipv6_mc_netdev_event
+ffffffc00883039c t ip6frag_init
+ffffffc0088303d0 t ip6_frag_expire
+ffffffc0088305b0 T ipv6_frag_exit
+ffffffc00883062c t ip6frag_key_hashfn
+ffffffc00883065c t ip6frag_obj_hashfn
+ffffffc008830690 t ip6frag_obj_cmpfn
+ffffffc0088306dc t jhash2
+ffffffc00883086c t ipv6_frag_rcv
+ffffffc00883111c t ip6_frag_reasm
+ffffffc0088313d4 t tcp_v6_reqsk_send_ack
+ffffffc0088314cc t tcp_v6_send_reset
+ffffffc00883172c t tcp_v6_reqsk_destructor
+ffffffc008831770 t tcp_v6_route_req
+ffffffc0088318bc t tcp_v6_init_seq
+ffffffc00883190c t tcp_v6_init_ts_off
+ffffffc00883194c t tcp_v6_send_synack
+ffffffc008831aec T tcp_v6_get_syncookie
+ffffffc008831b00 T tcp_v6_early_demux
+ffffffc008831c6c t tcp_v6_send_check
+ffffffc008831ce0 t inet6_sk_rx_dst_set
+ffffffc008831dec t tcp_v6_conn_request
+ffffffc008831efc t tcp_v6_syn_recv_sock
+ffffffc0088324e4 t tcp_v6_mtu_reduced
+ffffffc0088325d8 T tcp6_proc_exit
+ffffffc008832610 t tcp_v6_pre_connect
+ffffffc00883262c t tcp_v6_connect
+ffffffc008832b00 t tcp_v6_init_sock
+ffffffc008832b48 t tcp_v6_do_rcv
+ffffffc00883301c T tcpv6_exit
+ffffffc008833088 t tcp_v6_send_response
+ffffffc008833594 t ip6_dst_store
+ffffffc008833658 t skb_clone_and_charge_r
+ffffffc008833788 t tcp6_seq_show
+ffffffc008833c88 t tcp_v6_rcv.llvm.13091352036548126779
+ffffffc00883484c t tcp_v6_err.llvm.13091352036548126779
+ffffffc008834d24 t tcp_v6_fill_cb
+ffffffc008834de0 t ip6_sk_accept_pmtu
+ffffffc008834e64 t ping_v6_pre_connect
+ffffffc008834e80 t ping_v6_sendmsg
+ffffffc008835334 T pingv6_exit
+ffffffc0088353d0 t dummy_ipv6_recv_error
+ffffffc0088353e4 t dummy_ip6_datagram_recv_ctl
+ffffffc0088353f4 t dummy_icmpv6_err_convert
+ffffffc008835408 t dummy_ipv6_icmp_error
+ffffffc008835418 t dummy_ipv6_chk_addr
+ffffffc00883542c t ping_v6_seq_start
+ffffffc00883545c t ping_v6_seq_show
+ffffffc0088354d0 T ipv6_exthdrs_exit
+ffffffc008835528 T ipv6_parse_hopopts
+ffffffc008835644 t ip6_parse_tlv
+ffffffc008835ba8 T ipv6_push_nfrag_opts
+ffffffc008835d98 T ipv6_push_frag_opts
+ffffffc008835e14 T ipv6_dup_options
+ffffffc008835ec4 T ipv6_renew_options
+ffffffc008836188 T __ipv6_fixup_options
+ffffffc0088361f4 T fl6_update_dst
+ffffffc008836250 t ipv6_rthdr_rcv.llvm.4980646702464171750
+ffffffc00883744c t ipv6_destopt_rcv.llvm.4980646702464171750
+ffffffc008837624 t dst_discard.llvm.4980646702464171750
+ffffffc008837658 T ip6_datagram_dst_update
+ffffffc00883792c T ip6_datagram_release_cb
+ffffffc0088379f8 T __ip6_datagram_connect
+ffffffc008837d14 T ip6_datagram_connect
+ffffffc008837d80 T ip6_datagram_connect_v6_only
+ffffffc008837e00 T ipv6_icmp_error
+ffffffc008837fb0 T ipv6_local_error
+ffffffc008838100 T ipv6_local_rxpmtu
+ffffffc008838240 T ipv6_recv_error
+ffffffc00883864c T ip6_datagram_recv_common_ctl
+ffffffc008838734 T ip6_datagram_recv_specific_ctl
+ffffffc008838bb8 T ipv6_recv_rxpmtu
+ffffffc008838db0 T ip6_datagram_recv_ctl
+ffffffc008838ec4 T ip6_datagram_send_ctl
+ffffffc00883938c T __ip6_dgram_sock_seq_show
+ffffffc0088394d0 T __fl6_sock_lookup
+ffffffc0088395f0 T fl6_free_socklist
+ffffffc0088396b4 t fl_release
+ffffffc0088397c0 T fl6_merge_options
+ffffffc00883984c T ipv6_flowlabel_opt_get
+ffffffc0088399c4 T ipv6_flowlabel_opt
+ffffffc00883a258 T ip6_flowlabel_init
+ffffffc00883a2bc T ip6_flowlabel_cleanup
+ffffffc00883a328 t fl6_renew
+ffffffc00883a428 t fl_lookup
+ffffffc00883a514 t fl_link
+ffffffc00883a57c t fl_free
+ffffffc00883a5e8 t mem_check
+ffffffc00883a6e8 t fl_intern
+ffffffc00883a870 t fl_free_rcu
+ffffffc00883a8cc t ip6fl_seq_start
+ffffffc00883a9bc t ip6fl_seq_stop
+ffffffc00883a9e8 t ip6fl_seq_next
+ffffffc00883aa98 t ip6fl_seq_show
+ffffffc00883abc8 t ip6_fl_gc
+ffffffc00883ad7c T inet6_csk_route_req
+ffffffc00883aec0 T inet6_csk_addr2sockaddr
+ffffffc00883af40 T inet6_csk_xmit
+ffffffc00883b088 t inet6_csk_route_socket
+ffffffc00883b2a4 T inet6_csk_update_pmtu
+ffffffc00883b384 T udpv6_offload_init
+ffffffc00883b3bc T udpv6_offload_exit
+ffffffc00883b3f4 t udp6_ufo_fragment.llvm.15381652765872095250
+ffffffc00883b694 t udp6_gro_receive.llvm.15381652765872095250
+ffffffc00883b988 t udp6_gro_complete.llvm.15381652765872095250
+ffffffc00883bad4 T seg6_validate_srh
+ffffffc00883bb88 T seg6_get_srh
+ffffffc00883bd10 T seg6_icmp_srh
+ffffffc00883bd98 T seg6_exit
+ffffffc00883bdf8 t seg6_genl_sethmac
+ffffffc00883be0c t seg6_genl_dumphmac_start
+ffffffc00883be20 t seg6_genl_dumphmac
+ffffffc00883be34 t seg6_genl_dumphmac_done
+ffffffc00883be48 t seg6_genl_set_tunsrc
+ffffffc00883bee8 t seg6_genl_get_tunsrc
+ffffffc00883bfe0 T call_fib6_notifier
+ffffffc00883c014 T call_fib6_notifiers
+ffffffc00883c048 t fib6_seq_read
+ffffffc00883c094 t fib6_dump
+ffffffc00883c0f8 T ipv6_rpl_srh_size
+ffffffc00883c120 T ipv6_rpl_srh_decompress
+ffffffc00883c270 T ipv6_rpl_srh_compress
+ffffffc00883c57c T ioam6_namespace
+ffffffc00883c5e8 t rhashtable_lookup_fast
+ffffffc00883c784 T ioam6_fill_trace_data
+ffffffc00883cc8c T ioam6_exit
+ffffffc00883ccec t ioam6_ns_cmpfn
+ffffffc00883cd10 t ioam6_sc_cmpfn
+ffffffc00883cd34 t ioam6_free_ns
+ffffffc00883cd6c t ioam6_free_sc
+ffffffc00883cda4 t ioam6_genl_addns
+ffffffc00883cf10 t ioam6_genl_delns
+ffffffc00883d014 t ioam6_genl_dumpns_start
+ffffffc00883d08c t ioam6_genl_dumpns
+ffffffc00883d290 t ioam6_genl_dumpns_done
+ffffffc00883d2d8 t ioam6_genl_addsc
+ffffffc00883d428 t ioam6_genl_delsc
+ffffffc00883d524 t ioam6_genl_dumpsc_start
+ffffffc00883d59c t ioam6_genl_dumpsc
+ffffffc00883d754 t ioam6_genl_dumpsc_done
+ffffffc00883d79c t ioam6_genl_ns_set_schema
+ffffffc00883d8e0 t rhashtable_lookup_insert_fast
+ffffffc00883dd98 t rhashtable_remove_fast
+ffffffc00883e144 T ipv6_sysctl_register
+ffffffc00883e1ec T ipv6_sysctl_unregister
+ffffffc00883e24c t proc_rt6_multipath_hash_policy
+ffffffc00883e2b4 t proc_rt6_multipath_hash_fields
+ffffffc00883e31c T xfrm6_fini
+ffffffc00883e394 t xfrm6_dst_lookup.llvm.15662529372188487229
+ffffffc00883e43c t xfrm6_get_saddr.llvm.15662529372188487229
+ffffffc00883e530 t xfrm6_fill_dst.llvm.15662529372188487229
+ffffffc00883e794 t xfrm6_dst_destroy
+ffffffc00883e964 t xfrm6_dst_ifdown
+ffffffc00883eb80 t xfrm6_update_pmtu
+ffffffc00883ebd0 t xfrm6_redirect
+ffffffc00883ec20 T xfrm6_state_fini
+ffffffc00883ec54 T xfrm6_rcv_spi
+ffffffc00883ec90 T xfrm6_transport_finish
+ffffffc00883ee18 T xfrm6_udp_encap_rcv
+ffffffc00883efd8 T xfrm6_rcv_tnl
+ffffffc00883f030 T xfrm6_rcv
+ffffffc00883f084 T xfrm6_input_addr
+ffffffc00883f608 T xfrm6_local_rxpmtu
+ffffffc00883f6a4 T xfrm6_local_error
+ffffffc00883f758 T xfrm6_output
+ffffffc00883fa64 t __xfrm6_output_finish
+ffffffc00883fa98 T xfrm6_rcv_encap
+ffffffc00883fca0 T xfrm6_protocol_register
+ffffffc00883fe18 T xfrm6_protocol_deregister
+ffffffc00883ffbc T xfrm6_protocol_fini
+ffffffc00883fff0 t xfrm6_esp_rcv
+ffffffc0088400a4 t xfrm6_esp_err
+ffffffc008840168 t xfrm6_ah_rcv
+ffffffc00884021c t xfrm6_ah_err
+ffffffc0088402e0 t xfrm6_ipcomp_rcv
+ffffffc008840394 t xfrm6_ipcomp_err
+ffffffc008840458 t xfrm6_rcv_cb.llvm.2877252691645993060
+ffffffc00884053c T fib6_rule_default
+ffffffc0088405c0 T fib6_rules_dump
+ffffffc0088405f4 T fib6_rules_seq_read
+ffffffc008840624 T fib6_lookup
+ffffffc008840738 T fib6_rule_lookup
+ffffffc00884093c T fib6_rules_cleanup
+ffffffc008840990 t fib6_rule_action
+ffffffc008840c14 t fib6_rule_suppress
+ffffffc008840cb0 t fib6_rule_match
+ffffffc008840e54 t fib6_rule_configure
+ffffffc008840ff8 t fib6_rule_delete
+ffffffc008841058 t fib6_rule_compare
+ffffffc008841118 t fib6_rule_fill
+ffffffc0088411b4 t fib6_rule_nlmsg_payload
+ffffffc0088411c4 t fib6_rule_saddr
+ffffffc0088412e4 T snmp6_register_dev
+ffffffc00884136c t snmp6_dev_seq_show
+ffffffc0088415a4 T snmp6_unregister_dev
+ffffffc008841608 T ipv6_misc_proc_exit
+ffffffc008841658 t snmp6_seq_show_item
+ffffffc008841814 t snmp6_seq_show_icmpv6msg
+ffffffc00884198c t sockstat6_seq_show
+ffffffc008841a88 t snmp6_seq_show
+ffffffc008841c34 T esp6_output_head
+ffffffc0088420d0 T esp6_output_tail
+ffffffc008842650 T esp6_input_done2
+ffffffc0088429e8 t esp6_rcv_cb
+ffffffc0088429fc t esp6_err
+ffffffc008842b54 t esp6_init_state
+ffffffc008842ff8 t esp6_destroy
+ffffffc008843030 t esp6_input
+ffffffc0088433a4 t esp6_output
+ffffffc00884353c t ipcomp6_rcv_cb
+ffffffc008843550 t ipcomp6_err
+ffffffc0088436b0 t ipcomp6_init_state
+ffffffc008843960 T xfrm6_tunnel_spi_lookup
+ffffffc008843a44 T xfrm6_tunnel_alloc_spi
+ffffffc008843d58 t xfrm6_tunnel_rcv
+ffffffc008843dbc t xfrm6_tunnel_err
+ffffffc008843dd0 t xfrm6_tunnel_init_state
+ffffffc008843e5c t xfrm6_tunnel_destroy
+ffffffc008843fc0 t xfrm6_tunnel_input
+ffffffc008843fe4 t xfrm6_tunnel_output
+ffffffc00884402c t x6spi_destroy_rcu
+ffffffc008844064 T xfrm6_tunnel_register
+ffffffc00884415c T xfrm6_tunnel_deregister
+ffffffc00884423c t tunnel6_rcv_cb
+ffffffc00884432c t tunnel46_rcv
+ffffffc008844408 t tunnel46_err
+ffffffc0088444cc t tunnel6_rcv
+ffffffc0088445a8 t tunnel6_err
+ffffffc00884466c t mip6_mh_filter
+ffffffc0088447b0 t mip6_rthdr_init_state
+ffffffc00884483c t mip6_rthdr_destroy
+ffffffc00884484c t mip6_rthdr_input
+ffffffc0088448d4 t mip6_rthdr_output
+ffffffc0088449b8 t mip6_destopt_init_state
+ffffffc008844a44 t mip6_destopt_destroy
+ffffffc008844a54 t mip6_destopt_input
+ffffffc008844adc t mip6_destopt_output
+ffffffc008844be0 t mip6_destopt_reject
+ffffffc008844f50 t vti6_dev_setup
+ffffffc008845004 t vti6_validate
+ffffffc008845018 t vti6_newlink
+ffffffc008845168 t vti6_changelink
+ffffffc0088453d4 t vti6_dellink
+ffffffc008845450 t vti6_get_size
+ffffffc008845464 t vti6_fill_info
+ffffffc008845578 t vti6_dev_free
+ffffffc0088455a8 t vti6_dev_init
+ffffffc0088456f0 t vti6_dev_uninit
+ffffffc008845860 t vti6_tnl_xmit
+ffffffc008845f50 t vti6_siocdevprivate
+ffffffc008846a5c t vti6_link_config
+ffffffc008846bc4 t vti6_locate
+ffffffc008846dbc t vti6_update
+ffffffc008846f70 t vti6_tnl_create2
+ffffffc008847068 t vti6_rcv_tunnel
+ffffffc0088470cc t vti6_rcv_cb
+ffffffc008847348 t vti6_err
+ffffffc00884750c t vti6_input_proto
+ffffffc008847658 t vti6_tnl_lookup
+ffffffc008847854 t vti6_rcv
+ffffffc00884789c t ipip6_tunnel_setup
+ffffffc008847948 t ipip6_validate
+ffffffc008847998 t ipip6_newlink
+ffffffc008847b64 t ipip6_changelink
+ffffffc008847d58 t ipip6_dellink
+ffffffc008847dd4 t ipip6_get_size
+ffffffc008847de8 t ipip6_fill_info
+ffffffc008847ff0 t ipip6_dev_free
+ffffffc008848034 t ipip6_tunnel_init
+ffffffc0088481a0 t ipip6_tunnel_uninit
+ffffffc00884836c t sit_tunnel_xmit
+ffffffc008848cfc t ipip6_tunnel_siocdevprivate
+ffffffc008849654 t ipip6_tunnel_ctl
+ffffffc008849b18 t ipip6_tunnel_bind_dev
+ffffffc008849c40 t prl_list_destroy_rcu
+ffffffc008849c80 t ipip6_tunnel_locate
+ffffffc008849e5c t ipip6_tunnel_create
+ffffffc008849f54 t ipip6_tunnel_update
+ffffffc00884a0fc t ipip6_rcv
+ffffffc00884a9a0 t ipip6_err
+ffffffc00884ab54 t ipip6_tunnel_lookup
+ffffffc00884ad24 T ip6_tnl_parse_tlv_enc_lim
+ffffffc00884aedc T ip6_tnl_get_cap
+ffffffc00884af80 T ip6_tnl_rcv_ctl
+ffffffc00884b0bc T ip6_tnl_rcv
+ffffffc00884b10c t ip6ip6_dscp_ecn_decapsulate
+ffffffc00884b168 t ip4ip6_dscp_ecn_decapsulate
+ffffffc00884b1fc t __ip6_tnl_rcv
+ffffffc00884b558 T ip6_tnl_xmit_ctl
+ffffffc00884b714 T ip6_tnl_xmit
+ffffffc00884c2c0 t skb_clone_writable
+ffffffc00884c324 T ip6_tnl_change_mtu
+ffffffc00884c394 T ip6_tnl_get_iflink
+ffffffc00884c3a8 T ip6_tnl_encap_add_ops
+ffffffc00884c428 T ip6_tnl_encap_del_ops
+ffffffc00884c4cc T ip6_tnl_encap_setup
+ffffffc00884c5d8 T ip6_tnl_get_link_net
+ffffffc00884c5e8 t IP6_ECN_decapsulate
+ffffffc00884cad8 t ip6_tnl_dev_setup
+ffffffc00884cba0 t ip6_tnl_validate
+ffffffc00884cbf0 t ip6_tnl_newlink
+ffffffc00884ce20 t ip6_tnl_changelink
+ffffffc00884d000 t ip6_tnl_dellink
+ffffffc00884d07c t ip6_tnl_get_size
+ffffffc00884d090 t ip6_tnl_fill_info
+ffffffc00884d2b0 t ip6_dev_free
+ffffffc00884d2fc t ip6_tnl_dev_init
+ffffffc00884d4fc t ip6_tnl_dev_uninit
+ffffffc00884d680 t ip6_tnl_start_xmit
+ffffffc00884db9c t ip6_tnl_siocdevprivate
+ffffffc00884e568 t ip6_tnl_link_config
+ffffffc00884e764 t ip6_tnl_locate
+ffffffc00884e98c t ip6_tnl_update
+ffffffc00884eb5c t ip6_tnl_create2
+ffffffc00884ec60 t ip6_tnl_netlink_parms
+ffffffc00884eda0 t ip4ip6_rcv
+ffffffc00884ede0 t ip4ip6_err
+ffffffc00884f1fc t ipxip6_rcv
+ffffffc00884f3f4 t ip6_tnl_lookup
+ffffffc00884f670 t ip6_tnl_err
+ffffffc00884f870 t ip6ip6_rcv
+ffffffc00884f8b0 t ip6ip6_err
+ffffffc00884fa2c t ip6gre_tap_setup
+ffffffc00884fa9c t ip6gre_tap_validate
+ffffffc00884fb90 t ip6gre_newlink
+ffffffc00884fd7c t ip6gre_changelink
+ffffffc00884ff70 t ip6gre_get_size
+ffffffc00884ff84 t ip6gre_fill_info
+ffffffc00885035c t ip6gre_dev_free
+ffffffc0088503a8 t ip6gre_tap_init
+ffffffc0088503f0 t ip6gre_tunnel_uninit
+ffffffc008850580 t ip6gre_tunnel_xmit
+ffffffc008850b38 t ip6gre_tunnel_init_common
+ffffffc008850dbc t ip6gre_tunnel_unlink
+ffffffc008850e48 t prepare_ip6gre_xmit_ipv4
+ffffffc008850f00 t __gre6_xmit
+ffffffc00885126c t prepare_ip6gre_xmit_ipv6
+ffffffc008851414 t ip6gre_tunnel_validate
+ffffffc00885145c t ip6gre_netlink_parms
+ffffffc008851648 t ip6gre_tunnel_find
+ffffffc008851780 t ip6gre_newlink_common
+ffffffc0088518e0 t ip6gre_tunnel_link
+ffffffc00885195c t ip6gre_tnl_link_config_common
+ffffffc008851a74 t ip6gre_tnl_link_config_route
+ffffffc008851b6c t ip6gre_changelink_common
+ffffffc008851ce4 t ip6gre_tnl_change
+ffffffc008851e1c t ip6gre_tunnel_setup
+ffffffc008851eb8 t ip6gre_tunnel_init
+ffffffc008851f3c t ip6gre_tunnel_siocdevprivate
+ffffffc008852ec4 t ip6gre_header
+ffffffc008853078 t ip6gre_dellink
+ffffffc0088530f4 t ip6erspan_tap_setup
+ffffffc008853164 t ip6erspan_tap_validate
+ffffffc008853328 t ip6erspan_newlink
+ffffffc008853558 t ip6erspan_changelink
+ffffffc008853854 t ip6erspan_tap_init
+ffffffc008853ab4 t ip6erspan_tunnel_uninit
+ffffffc008853c34 t ip6erspan_tunnel_xmit
+ffffffc0088542a8 t ip6gre_err
+ffffffc00885446c t ip6gre_tunnel_lookup
+ffffffc00885485c T __ipv6_addr_type
+ffffffc008854998 T register_inet6addr_notifier
+ffffffc0088549d0 T unregister_inet6addr_notifier
+ffffffc008854a08 T inet6addr_notifier_call_chain
+ffffffc008854a44 T register_inet6addr_validator_notifier
+ffffffc008854a7c T unregister_inet6addr_validator_notifier
+ffffffc008854ab4 T inet6addr_validator_notifier_call_chain
+ffffffc008854af0 t eafnosupport_ipv6_dst_lookup_flow
+ffffffc008854b04 t eafnosupport_ipv6_route_input
+ffffffc008854b18 t eafnosupport_fib6_get_table
+ffffffc008854b2c t eafnosupport_fib6_lookup
+ffffffc008854b40 t eafnosupport_fib6_table_lookup
+ffffffc008854b54 t eafnosupport_fib6_select_path
+ffffffc008854b64 t eafnosupport_ip6_mtu_from_fib6
+ffffffc008854b78 t eafnosupport_fib6_nh_init
+ffffffc008854bc8 t eafnosupport_ip6_del_rt
+ffffffc008854bdc t eafnosupport_ipv6_fragment
+ffffffc008854c14 t eafnosupport_ipv6_dev_find
+ffffffc008854c28 T in6_dev_finish_destroy
+ffffffc008854d54 t in6_dev_finish_destroy_rcu
+ffffffc008854dac T ipv6_ext_hdr
+ffffffc008854ddc T ipv6_skip_exthdr
+ffffffc008854f94 T ipv6_find_tlv
+ffffffc008855030 T ipv6_find_hdr
+ffffffc0088553a4 T udp6_csum_init
+ffffffc0088555d4 T udp6_set_csum
+ffffffc0088556d4 T ipv6_proxy_select_ident
+ffffffc008855798 T ipv6_select_ident
+ffffffc0088557cc T ip6_find_1stfragopt
+ffffffc0088558bc T ip6_dst_hoplimit
+ffffffc008855934 T __ip6_local_out
+ffffffc008855990 T ip6_local_out
+ffffffc008855a24 T inet6_add_protocol
+ffffffc008855a90 T inet6_del_protocol
+ffffffc008855b24 T inet6_add_offload
+ffffffc008855b90 T inet6_del_offload
+ffffffc008855c24 t ipv6_gso_segment
+ffffffc008856058 t ipv6_gro_receive
+ffffffc00885642c t ipv6_gro_complete
+ffffffc0088565cc t ipv6_gso_pull_exthdrs
+ffffffc0088566d4 t sit_gso_segment
+ffffffc00885671c t sit_ip6ip6_gro_receive
+ffffffc008856768 t sit_gro_complete
+ffffffc0088567b8 t ip6ip6_gso_segment
+ffffffc008856800 t ip6ip6_gro_complete
+ffffffc008856850 t ip4ip6_gso_segment
+ffffffc008856898 t ip4ip6_gro_receive
+ffffffc0088568e4 t ip4ip6_gro_complete
+ffffffc008856934 t tcp6_gso_segment.llvm.10274928758129305885
+ffffffc008856a0c t tcp6_gro_receive.llvm.10274928758129305885
+ffffffc008856bb4 t tcp6_gro_complete.llvm.10274928758129305885
+ffffffc008856c3c t __tcp_v6_send_check
+ffffffc008856cb0 T inet6_ehashfn
+ffffffc008856ed8 T __inet6_lookup_established
+ffffffc008857140 T inet6_lookup_listener
+ffffffc008857504 t inet6_lhash2_lookup
+ffffffc0088576c0 T inet6_lookup
+ffffffc008857830 T inet6_hash_connect
+ffffffc0088578a0 t __inet6_check_established
+ffffffc008857bc0 T inet6_hash
+ffffffc008857c04 T ipv6_mc_check_mld
+ffffffc008857fc8 t ipv6_mc_validate_checksum
+ffffffc00885810c t packet_notifier
+ffffffc0088583a8 t __unregister_prot_hook
+ffffffc0088584cc t __register_prot_hook
+ffffffc0088585b8 t __fanout_link
+ffffffc008858638 t packet_seq_start
+ffffffc008858680 t packet_seq_stop
+ffffffc0088586ac t packet_seq_next
+ffffffc0088586e4 t packet_seq_show
+ffffffc008858808 t packet_create
+ffffffc008858b04 t dev_queue_xmit
+ffffffc008858b34 t packet_sock_destruct
+ffffffc008858bc0 t packet_rcv
+ffffffc008858fdc t packet_rcv_spkt
+ffffffc0088590ec t packet_release
+ffffffc00885960c t packet_bind
+ffffffc00885966c t packet_getname
+ffffffc008859730 t packet_poll
+ffffffc008859894 t packet_ioctl
+ffffffc008859bf4 t packet_setsockopt
+ffffffc00885a1e4 t packet_getsockopt
+ffffffc00885a9c4 t packet_sendmsg
+ffffffc00885bfac t packet_recvmsg
+ffffffc00885c3a4 t packet_mmap
+ffffffc00885c590 t packet_set_ring
+ffffffc00885cd74 t tpacket_rcv
+ffffffc00885d914 t free_pg_vec
+ffffffc00885d9a0 t prb_retire_rx_blk_timer_expired
+ffffffc00885db84 t prb_retire_current_block
+ffffffc00885dd70 t prb_dispatch_next_block
+ffffffc00885dec0 t run_filter
+ffffffc00885dfec t __packet_rcv_has_room
+ffffffc00885e1cc t skb_csum_unnecessary
+ffffffc00885e224 t skb_get
+ffffffc00885e2a8 t skb_set_owner_r
+ffffffc00885e370 t packet_increment_rx_head
+ffffffc00885e3c8 t skb_clear_delivery_time
+ffffffc00885e42c t __packet_set_status
+ffffffc00885e4d8 t __packet_get_status
+ffffffc00885e574 t packet_do_bind
+ffffffc00885e928 t packet_mc_add
+ffffffc00885eb74 t packet_mc_drop
+ffffffc00885ece8 t fanout_add
+ffffffc00885f058 t fanout_set_data
+ffffffc00885f188 t packet_direct_xmit
+ffffffc00885f2b8 t packet_rcv_fanout
+ffffffc00885f590 t match_fanout_group
+ffffffc00885f5c4 t fanout_demux_rollover
+ffffffc00885f9dc t virtio_net_hdr_to_skb
+ffffffc00885fdd8 t tpacket_destruct_skb
+ffffffc00886001c t packet_parse_headers
+ffffffc008860280 t packet_mm_open
+ffffffc0088602d4 t packet_mm_close
+ffffffc00886032c t packet_bind_spkt
+ffffffc0088603b8 t packet_getname_spkt
+ffffffc008860444 t packet_sendmsg_spkt
+ffffffc0088608a4 t pfkey_send_notify
+ffffffc008860bb0 t pfkey_send_acquire
+ffffffc00886127c t pfkey_compile_policy
+ffffffc008861440 t pfkey_send_new_mapping
+ffffffc0088616a0 t pfkey_send_policy_notify
+ffffffc0088619b0 t pfkey_send_migrate
+ffffffc0088619c4 t pfkey_is_alive
+ffffffc008861a6c t pfkey_broadcast
+ffffffc008861bac t __pfkey_xfrm_state2msg
+ffffffc008862348 t pfkey_broadcast_one
+ffffffc00886246c t parse_ipsecrequests
+ffffffc0088627d4 t pfkey_sadb2xfrm_user_sec_ctx
+ffffffc008862848 t check_reqid
+ffffffc0088628ec t pfkey_xfrm_policy2msg
+ffffffc008862ef4 t pfkey_seq_start
+ffffffc008862f5c t pfkey_seq_stop
+ffffffc008862f88 t pfkey_seq_next
+ffffffc008862ffc t pfkey_seq_show
+ffffffc0088630d4 t pfkey_create
+ffffffc00886332c t pfkey_sock_destruct
+ffffffc00886345c t pfkey_release
+ffffffc0088635d0 t pfkey_sendmsg
+ffffffc008863a48 t pfkey_recvmsg
+ffffffc008863be4 t pfkey_reserved
+ffffffc008863bf8 t pfkey_getspi
+ffffffc008864050 t pfkey_add
+ffffffc0088647b8 t pfkey_delete
+ffffffc008864994 t pfkey_get
+ffffffc008864ba4 t pfkey_acquire
+ffffffc008864cc4 t pfkey_register
+ffffffc008864ee4 t pfkey_flush
+ffffffc008865040 t pfkey_dump
+ffffffc0088651a8 t pfkey_promisc
+ffffffc00886527c t pfkey_spdadd
+ffffffc0088655e8 t pfkey_spddelete
+ffffffc0088658c4 t pfkey_spdget
+ffffffc008865c04 t pfkey_spddump
+ffffffc008865cac t pfkey_spdflush
+ffffffc008865dcc t pfkey_migrate
+ffffffc008865ddc t xfrm_state_put
+ffffffc008865e6c t pfkey_dump_sa
+ffffffc008865eb0 t pfkey_dump_sa_done
+ffffffc008865ee4 t pfkey_do_dump
+ffffffc008865ffc t dump_sa
+ffffffc00886610c t xfrm_pol_put
+ffffffc008866198 t pfkey_dump_sp
+ffffffc0088661dc t pfkey_dump_sp_done
+ffffffc008866214 t dump_sp
+ffffffc008866444 T register_net_sysctl
+ffffffc008866474 T unregister_net_sysctl_table
+ffffffc0088664a0 t is_seen
+ffffffc0088664c8 t net_ctl_header_lookup
+ffffffc0088664e8 t net_ctl_set_ownership
+ffffffc008866500 t net_ctl_permissions
+ffffffc008866560 T vsock_insert_connected
+ffffffc008866660 T vsock_remove_bound
+ffffffc008866748 T vsock_remove_connected
+ffffffc008866830 T vsock_find_bound_socket
+ffffffc008866978 T vsock_find_connected_socket
+ffffffc008866ab8 T vsock_remove_sock
+ffffffc008866af8 T vsock_for_each_connected_socket
+ffffffc008866bbc T vsock_add_pending
+ffffffc008866cd4 T vsock_remove_pending
+ffffffc008866dfc T vsock_enqueue_accept
+ffffffc008866f14 T vsock_assign_transport
+ffffffc008867124 T vsock_find_cid
+ffffffc0088671bc T vsock_create_connected
+ffffffc0088671fc t __vsock_create.llvm.5723027338973426000
+ffffffc008867450 T vsock_stream_has_data
+ffffffc00886749c T vsock_stream_has_space
+ffffffc0088674e8 T vsock_data_ready
+ffffffc008867578 T vsock_core_get_transport
+ffffffc00886758c T vsock_core_register
+ffffffc008867678 T vsock_core_unregister
+ffffffc008867714 t vsock_sk_destruct
+ffffffc0088677e0 t vsock_queue_rcv_skb
+ffffffc008867834 t vsock_connect_timeout
+ffffffc00886795c t vsock_pending_work
+ffffffc008867b48 t vsock_dev_ioctl
+ffffffc008867d14 t vsock_create
+ffffffc008867f0c t vsock_release
+ffffffc008867f58 t vsock_bind
+ffffffc008868004 t vsock_dgram_connect
+ffffffc008868170 t vsock_getname
+ffffffc00886820c t vsock_poll
+ffffffc0088684d0 t vsock_shutdown
+ffffffc0088685ec t vsock_dgram_sendmsg
+ffffffc0088687ec t vsock_dgram_recvmsg
+ffffffc008868838 t __vsock_release
+ffffffc008868a98 t __vsock_bind
+ffffffc008868ee8 t vsock_auto_bind
+ffffffc008868f7c t vsock_connect
+ffffffc008869344 t vsock_accept
+ffffffc0088696a8 t vsock_listen
+ffffffc00886974c t vsock_connectible_setsockopt
+ffffffc008869970 t vsock_connectible_getsockopt
+ffffffc008869e70 t vsock_connectible_sendmsg
+ffffffc00886a26c t vsock_connectible_recvmsg
+ffffffc00886a600 t vsock_set_rcvlowat
+ffffffc00886a680 t vsock_update_buffer_size
+ffffffc00886a73c t vsock_connectible_wait_data
+ffffffc00886a8fc T vsock_add_tap
+ffffffc00886a99c T vsock_remove_tap
+ffffffc00886aa54 T vsock_deliver_tap
+ffffffc00886aae0 t __vsock_deliver_tap
+ffffffc00886ac98 T vsock_addr_init
+ffffffc00886acb8 T vsock_addr_validate
+ffffffc00886ad00 T vsock_addr_bound
+ffffffc00886ad1c T vsock_addr_unbind
+ffffffc00886ad40 T vsock_addr_equals_addr
+ffffffc00886ad7c T vsock_addr_cast
+ffffffc00886add0 t vsock_diag_handler_dump
+ffffffc00886ae88 t vsock_diag_dump
+ffffffc00886b17c t virtio_vsock_probe
+ffffffc00886b340 t virtio_vsock_remove
+ffffffc00886b3d8 t virtio_vsock_freeze
+ffffffc00886b43c t virtio_vsock_restore
+ffffffc00886b4bc t virtio_transport_rx_work
+ffffffc00886b638 t virtio_transport_tx_work
+ffffffc00886b750 t virtio_transport_event_work
+ffffffc00886b8fc t virtio_transport_send_pkt_work
+ffffffc00886bcb0 t virtio_vsock_vqs_init
+ffffffc00886c0c4 t virtio_vsock_rx_fill
+ffffffc00886c228 t virtio_vsock_reset_sock
+ffffffc00886c264 t virtio_vsock_rx_done
+ffffffc00886c2ac t virtio_vsock_tx_done
+ffffffc00886c2f4 t virtio_vsock_event_done
+ffffffc00886c338 t virtio_vsock_vqs_del
+ffffffc00886c50c t virtio_transport_cancel_pkt
+ffffffc00886c720 t virtio_transport_seqpacket_allow
+ffffffc00886c784 t virtio_transport_get_local_cid
+ffffffc00886c7e0 t virtio_transport_send_pkt
+ffffffc00886c904 T __traceiter_virtio_transport_alloc_pkt
+ffffffc00886c9e4 T __traceiter_virtio_transport_recv_pkt
+ffffffc00886cadc t trace_event_raw_event_virtio_transport_alloc_pkt
+ffffffc00886cbe0 t perf_trace_virtio_transport_alloc_pkt
+ffffffc00886cd34 t trace_event_raw_event_virtio_transport_recv_pkt
+ffffffc00886ce44 t perf_trace_virtio_transport_recv_pkt
+ffffffc00886cfa8 T virtio_transport_deliver_tap_pkt
+ffffffc00886cffc t virtio_transport_build_skb
+ffffffc00886d11c T virtio_transport_inc_tx_pkt
+ffffffc00886d184 T virtio_transport_get_credit
+ffffffc00886d1fc T virtio_transport_put_credit
+ffffffc00886d25c T virtio_transport_stream_dequeue
+ffffffc00886d54c T virtio_transport_seqpacket_dequeue
+ffffffc00886d75c T virtio_transport_seqpacket_enqueue
+ffffffc00886d824 T virtio_transport_stream_enqueue
+ffffffc00886d89c T virtio_transport_dgram_dequeue
+ffffffc00886d8b0 T virtio_transport_stream_has_data
+ffffffc00886d900 T virtio_transport_seqpacket_has_data
+ffffffc00886d950 T virtio_transport_stream_has_space
+ffffffc00886d9b4 T virtio_transport_do_socket_init
+ffffffc00886da58 T virtio_transport_notify_buffer_size
+ffffffc00886dae4 T virtio_transport_notify_poll_in
+ffffffc00886db34 T virtio_transport_notify_poll_out
+ffffffc00886db90 T virtio_transport_notify_recv_init
+ffffffc00886dba4 T virtio_transport_notify_recv_pre_block
+ffffffc00886dbb8 T virtio_transport_notify_recv_pre_dequeue
+ffffffc00886dbcc T virtio_transport_notify_recv_post_dequeue
+ffffffc00886dbe0 T virtio_transport_notify_send_init
+ffffffc00886dbf4 T virtio_transport_notify_send_pre_block
+ffffffc00886dc08 T virtio_transport_notify_send_pre_enqueue
+ffffffc00886dc1c T virtio_transport_notify_send_post_enqueue
+ffffffc00886dc30 T virtio_transport_stream_rcvhiwat
+ffffffc00886dc44 T virtio_transport_stream_is_active
+ffffffc00886dc58 T virtio_transport_stream_allow
+ffffffc00886dc6c T virtio_transport_dgram_bind
+ffffffc00886dc80 T virtio_transport_dgram_allow
+ffffffc00886dc94 T virtio_transport_connect
+ffffffc00886dd00 t virtio_transport_send_pkt_info
+ffffffc00886debc T virtio_transport_shutdown
+ffffffc00886df34 T virtio_transport_dgram_enqueue
+ffffffc00886df48 T virtio_transport_destruct
+ffffffc00886df78 T virtio_transport_release
+ffffffc00886e25c T virtio_transport_recv_pkt
+ffffffc00886edf4 T virtio_transport_free_pkt
+ffffffc00886ee38 t trace_raw_output_virtio_transport_alloc_pkt
+ffffffc00886ef2c t trace_raw_output_virtio_transport_recv_pkt
+ffffffc00886f028 t virtio_transport_alloc_pkt
+ffffffc00886f2cc t virtio_transport_close_timeout
+ffffffc00886f43c t virtio_transport_do_close
+ffffffc00886f5c0 t vsock_loopback_cancel_pkt
+ffffffc00886f730 t vsock_loopback_seqpacket_allow
+ffffffc00886f744 t vsock_loopback_get_local_cid
+ffffffc00886f758 t vsock_loopback_send_pkt
+ffffffc00886f804 t vsock_loopback_work
+ffffffc00886f92c T do_csum
+ffffffc00886fa78 T csum_ipv6_magic
+ffffffc00886fadc T __delay
+ffffffc00886fc48 T __const_udelay
+ffffffc00886fc8c T __udelay
+ffffffc00886fcd4 T __ndelay
+ffffffc00886fd18 T aarch64_get_insn_class
+ffffffc00886fd38 T aarch64_insn_is_steppable_hint
+ffffffc00886fdec T aarch64_insn_is_branch_imm
+ffffffc00886fe3c T aarch64_insn_uses_literal
+ffffffc00886fe84 T aarch64_insn_is_branch
+ffffffc00886ff38 T aarch64_insn_decode_immediate
+ffffffc008870064 T aarch64_insn_encode_immediate
+ffffffc0088701bc T aarch64_insn_decode_register
+ffffffc008870220 T aarch64_insn_gen_branch_imm
+ffffffc0088702e0 T aarch64_insn_gen_comp_branch_imm
+ffffffc008870408 T aarch64_insn_gen_cond_branch_imm
+ffffffc0088704c8 T aarch64_insn_gen_hint
+ffffffc0088704e4 T aarch64_insn_gen_nop
+ffffffc0088704fc T aarch64_insn_gen_branch_reg
+ffffffc00887058c T aarch64_insn_gen_load_store_reg
+ffffffc0088706b8 T aarch64_insn_gen_load_store_imm
+ffffffc00887080c T aarch64_insn_gen_load_literal
+ffffffc0088708d0 T aarch64_insn_gen_load_store_pair
+ffffffc008870a64 T aarch64_insn_gen_load_store_ex
+ffffffc008870b8c T aarch64_insn_gen_atomic_ld_op
+ffffffc008870ce0 T aarch64_insn_gen_cas
+ffffffc008870e10 T aarch64_insn_gen_prefetch
+ffffffc008870f00 T aarch64_insn_gen_add_sub_imm
+ffffffc008871058 T aarch64_insn_gen_bitfield
+ffffffc0088711c0 T aarch64_insn_gen_movewide
+ffffffc0088712f8 T aarch64_insn_gen_add_sub_shifted_reg
+ffffffc008871458 T aarch64_insn_gen_data1
+ffffffc00887158c T aarch64_insn_gen_data2
+ffffffc0088716ac T aarch64_insn_gen_data3
+ffffffc008871810 T aarch64_insn_gen_logical_shifted_reg
+ffffffc008871970 T aarch64_insn_gen_move_reg
+ffffffc008871a40 T aarch64_insn_gen_adr
+ffffffc008871b14 T aarch64_get_branch_offset
+ffffffc008871b8c T aarch64_set_branch_offset
+ffffffc008871c14 T aarch64_insn_adrp_get_offset
+ffffffc008871c48 T aarch64_insn_adrp_set_offset
+ffffffc008871ca4 T aarch64_insn_extract_system_reg
+ffffffc008871cb8 T aarch32_insn_is_wide
+ffffffc008871cd4 T aarch32_insn_extract_reg_num
+ffffffc008871cf4 T aarch32_insn_mcr_extract_opc2
+ffffffc008871d08 T aarch32_insn_mcr_extract_crm
+ffffffc008871d1c T aarch64_insn_gen_logical_immediate
+ffffffc008871fa4 T aarch64_insn_gen_extr
+ffffffc0088720c8 T aarch64_insn_gen_dmb
+ffffffc008872128 T argv_free
+ffffffc00887216c T argv_split
+ffffffc008872280 T module_bug_finalize
+ffffffc008872370 T module_bug_cleanup
+ffffffc0088723cc T bug_get_file_line
+ffffffc0088723f0 T find_bug
+ffffffc0088724f8 T report_bug
+ffffffc0088727b0 T generic_bug_clear_once
+ffffffc0088728ac T build_id_parse
+ffffffc008872ca0 T build_id_parse_buf
+ffffffc008872da4 T get_option
+ffffffc008872e78 T get_options
+ffffffc008873094 T memparse
+ffffffc008873170 T parse_option_str
+ffffffc008873220 T next_arg
+ffffffc00887335c T cpumask_next_wrap
+ffffffc008873424 T cpumask_local_spread
+ffffffc008873510 T cpumask_any_and_distribute
+ffffffc0088735bc T cpumask_any_distribute
+ffffffc008873660 T _atomic_dec_and_lock
+ffffffc00887374c T _atomic_dec_and_lock_irqsave
+ffffffc00887384c T dump_stack_print_info
+ffffffc008873980 T show_regs_print_info
+ffffffc0088739ac T dump_stack_lvl
+ffffffc008873a4c T dump_stack
+ffffffc008873a80 T find_cpio_data
+ffffffc008873e44 T sort_extable
+ffffffc008873e98 t cmp_ex_sort
+ffffffc008873ec4 t swap_ex
+ffffffc008873f24 T trim_init_extable
+ffffffc008873fc8 T search_extable
+ffffffc008874040 t cmp_ex_search.llvm.3489186787358468521
+ffffffc008874068 T fdt_ro_probe_
+ffffffc008874118 T fdt_header_size_
+ffffffc008874170 T fdt_header_size
+ffffffc0088741d0 T fdt_check_header
+ffffffc008874338 T fdt_offset_ptr
+ffffffc0088743e4 T fdt_next_tag
+ffffffc00887452c T fdt_check_node_offset_
+ffffffc0088745b0 T fdt_check_prop_offset_
+ffffffc008874634 T fdt_next_node
+ffffffc008874768 T fdt_first_subnode
+ffffffc00887486c T fdt_next_subnode
+ffffffc00887498c T fdt_find_string_
+ffffffc008874a18 T fdt_move
+ffffffc008874a90 T fdt_address_cells
+ffffffc008874b34 T fdt_size_cells
+ffffffc008874bd0 T fdt_appendprop_addrrange
+ffffffc008874e54 T fdt_create_empty_tree
+ffffffc008874edc T fdt_get_string
+ffffffc008874ffc T fdt_string
+ffffffc00887502c T fdt_find_max_phandle
+ffffffc0088750c8 T fdt_get_phandle
+ffffffc00887521c T fdt_generate_phandle
+ffffffc0088752e0 T fdt_get_mem_rsv
+ffffffc0088753b0 T fdt_num_mem_rsv
+ffffffc008875438 T fdt_subnode_offset_namelen
+ffffffc008875564 T fdt_subnode_offset
+ffffffc0088755c4 T fdt_path_offset_namelen
+ffffffc008875788 T fdt_get_alias_namelen
+ffffffc008875874 T fdt_path_offset
+ffffffc0088758c4 T fdt_get_name
+ffffffc00887597c T fdt_first_property_offset
+ffffffc008875a34 T fdt_next_property_offset
+ffffffc008875aec T fdt_get_property_by_offset
+ffffffc008875b88 T fdt_get_property_namelen
+ffffffc008875be0 t fdt_get_property_namelen_
+ffffffc008875dc8 T fdt_get_property
+ffffffc008875e60 T fdt_getprop_namelen
+ffffffc008875f0c T fdt_getprop_by_offset
+ffffffc008876038 T fdt_getprop
+ffffffc008876114 T fdt_get_alias
+ffffffc00887620c T fdt_get_path
+ffffffc0088763b4 T fdt_supernode_atdepth_offset
+ffffffc0088764b4 T fdt_node_depth
+ffffffc0088765b8 T fdt_parent_offset
+ffffffc008876704 T fdt_node_offset_by_prop_value
+ffffffc008876860 T fdt_node_offset_by_phandle
+ffffffc0088768fc T fdt_stringlist_contains
+ffffffc0088769b0 T fdt_stringlist_count
+ffffffc008876ae8 T fdt_stringlist_search
+ffffffc008876c60 T fdt_stringlist_get
+ffffffc008876dd4 T fdt_node_check_compatible
+ffffffc008876f14 T fdt_node_offset_by_compatible
+ffffffc008876fa8 T fdt_add_mem_rsv
+ffffffc008877074 t fdt_splice_mem_rsv_
+ffffffc00887716c T fdt_del_mem_rsv
+ffffffc008877234 T fdt_set_name
+ffffffc00887735c t fdt_splice_struct_
+ffffffc008877444 T fdt_setprop_placeholder
+ffffffc00887759c t fdt_add_property_
+ffffffc00887776c T fdt_setprop
+ffffffc008877808 T fdt_appendprop
+ffffffc008877974 T fdt_delprop
+ffffffc008877a70 T fdt_add_subnode_namelen
+ffffffc008877c2c T fdt_add_subnode
+ffffffc008877c8c T fdt_del_node
+ffffffc008877d4c T fdt_open_into
+ffffffc008877fc4 t fdt_blocks_misordered_
+ffffffc008878034 T fdt_pack
+ffffffc0088781d8 T fdt_strerror
+ffffffc008878244 T fdt_create_with_flags
+ffffffc0088782e0 T fdt_create
+ffffffc00887835c T fdt_resize
+ffffffc0088784a4 T fdt_add_reservemap_entry
+ffffffc00887855c T fdt_finish_reservemap
+ffffffc0088785a8 T fdt_begin_node
+ffffffc008878680 t fdt_grab_space_
+ffffffc008878724 T fdt_end_node
+ffffffc0088787c4 T fdt_property_placeholder
+ffffffc00887896c t fdt_add_string_
+ffffffc008878a10 T fdt_property
+ffffffc008878aa8 T fdt_finish
+ffffffc008878c44 T fdt_setprop_inplace_namelen_partial
+ffffffc008878cf4 T fdt_setprop_inplace
+ffffffc008878de8 T fdt_nop_property
+ffffffc008878ec8 T fdt_node_end_offset_
+ffffffc008878f50 T fdt_nop_node
+ffffffc008879080 T fprop_global_init
+ffffffc0088790d4 T fprop_global_destroy
+ffffffc008879100 T fprop_new_period
+ffffffc0088791a4 T fprop_local_init_single
+ffffffc0088791c0 T fprop_local_destroy_single
+ffffffc0088791d0 T __fprop_inc_single
+ffffffc008879284 T fprop_fraction_single
+ffffffc0088793a4 T fprop_local_init_percpu
+ffffffc0088793f4 T fprop_local_destroy_percpu
+ffffffc008879420 T __fprop_add_percpu
+ffffffc0088794a0 t fprop_reflect_period_percpu
+ffffffc0088795a8 T fprop_fraction_percpu
+ffffffc008879688 T __fprop_add_percpu_max
+ffffffc00887979c T idr_alloc_u32
+ffffffc00887989c T idr_alloc
+ffffffc0088799bc T idr_alloc_cyclic
+ffffffc008879b94 T idr_remove
+ffffffc008879bcc T idr_find
+ffffffc008879c00 T idr_for_each
+ffffffc008879d28 T idr_get_next_ul
+ffffffc008879e60 T idr_get_next
+ffffffc008879fb8 T idr_replace
+ffffffc00887a07c T ida_alloc_range
+ffffffc00887a464 T ida_free
+ffffffc00887a5c0 T ida_destroy
+ffffffc00887a708 T current_is_single_threaded
+ffffffc00887a834 T klist_init
+ffffffc00887a858 T klist_add_head
+ffffffc00887a92c T klist_add_tail
+ffffffc00887aa00 T klist_add_behind
+ffffffc00887aac4 T klist_add_before
+ffffffc00887ab8c T klist_del
+ffffffc00887ac34 T klist_remove
+ffffffc00887ad94 T klist_node_attached
+ffffffc00887adb0 T klist_iter_init_node
+ffffffc00887ae90 T klist_iter_init
+ffffffc00887aea4 T klist_iter_exit
+ffffffc00887af44 T klist_prev
+ffffffc00887b07c t klist_dec_and_del
+ffffffc00887b1ec T klist_next
+ffffffc00887b328 T kobject_namespace
+ffffffc00887b3cc T kobj_ns_ops
+ffffffc00887b430 T kobject_get_ownership
+ffffffc00887b488 T kobject_get_path
+ffffffc00887b58c T kobject_set_name_vargs
+ffffffc00887b680 T kobject_set_name
+ffffffc00887b708 T kobject_init
+ffffffc00887b7cc T kobject_add
+ffffffc00887b8e4 T kobject_init_and_add
+ffffffc00887ba54 T kobject_rename
+ffffffc00887bc9c T kobject_get
+ffffffc00887bd48 T kobject_put
+ffffffc00887be68 T kobject_move
+ffffffc00887c160 T kobject_del
+ffffffc00887c1a0 t __kobject_del
+ffffffc00887c274 T kobject_get_unless_zero
+ffffffc00887c340 T kobject_create_and_add
+ffffffc00887c43c T kset_init
+ffffffc00887c484 t kobj_attr_show
+ffffffc00887c4d8 t kobj_attr_store
+ffffffc00887c52c T kset_register
+ffffffc00887c5b8 t kobject_add_internal
+ffffffc00887ca48 T kset_unregister
+ffffffc00887caa0 T kset_find_obj
+ffffffc00887cbc4 T kset_create_and_add
+ffffffc00887ccbc T kobj_ns_type_register
+ffffffc00887cd3c T kobj_ns_type_registered
+ffffffc00887cda0 T kobj_child_ns_ops
+ffffffc00887ce00 T kobj_ns_current_may_mount
+ffffffc00887ce90 T kobj_ns_grab_current
+ffffffc00887cf20 T kobj_ns_netlink
+ffffffc00887cfb8 T kobj_ns_initial
+ffffffc00887d048 T kobj_ns_drop
+ffffffc00887d0d4 t dynamic_kobj_release
+ffffffc00887d100 t kset_release
+ffffffc00887d130 t kset_get_ownership
+ffffffc00887d190 T kobject_synth_uevent
+ffffffc00887d624 T kobject_uevent_env
+ffffffc00887d8dc T add_uevent_var
+ffffffc00887da30 t zap_modalias_env
+ffffffc00887db84 t kobject_uevent_net_broadcast
+ffffffc00887dda4 T kobject_uevent
+ffffffc00887ddd0 t alloc_uevent_skb
+ffffffc00887dea8 t uevent_net_init
+ffffffc00887dff0 t uevent_net_exit
+ffffffc00887e090 t uevent_net_rcv
+ffffffc00887e0c4 t uevent_net_rcv_skb
+ffffffc00887e27c T logic_pio_register_range
+ffffffc00887e474 T logic_pio_unregister_range
+ffffffc00887e4e8 T find_io_range_by_fwnode
+ffffffc00887e560 T logic_pio_to_hwaddr
+ffffffc00887e608 T logic_pio_trans_hwaddr
+ffffffc00887e714 T logic_pio_trans_cpuaddr
+ffffffc00887e7f8 T __traceiter_ma_op
+ffffffc00887e888 T __traceiter_ma_read
+ffffffc00887e918 T __traceiter_ma_write
+ffffffc00887e9c0 t trace_event_raw_event_ma_op
+ffffffc00887eaa4 t perf_trace_ma_op
+ffffffc00887ebe4 t trace_event_raw_event_ma_read
+ffffffc00887ecc8 t perf_trace_ma_read
+ffffffc00887ee08 t trace_event_raw_event_ma_write
+ffffffc00887ef04 t perf_trace_ma_write
+ffffffc00887f058 T mas_is_err
+ffffffc00887f080 T mas_next_slot
+ffffffc00887f2c4 t mas_next_node
+ffffffc00887f518 t mas_rewalk
+ffffffc00887f74c T mas_walk
+ffffffc00887fa24 T mas_empty_area
+ffffffc00887fc40 t mas_skip_node
+ffffffc00887fdf0 t mas_awalk
+ffffffc008880094 T mas_empty_area_rev
+ffffffc008880640 T mas_store
+ffffffc0088807fc t mas_wr_store_entry
+ffffffc008880af0 T mas_store_gfp
+ffffffc008880cf0 T mas_nomem
+ffffffc008880da0 T mas_store_prealloc
+ffffffc008880f84 T mas_destroy
+ffffffc008881e6c T mas_preallocate
+ffffffc008882304 t mas_wr_walk
+ffffffc008882550 T mas_expected_entries
+ffffffc008882684 T mas_next
+ffffffc008882778 T mas_next_range
+ffffffc00888286c T mt_next
+ffffffc00888292c T mas_prev
+ffffffc008882a18 t mas_prev_slot
+ffffffc008882bd4 T mas_prev_range
+ffffffc008882cc4 T mt_prev
+ffffffc008882dcc T mas_pause
+ffffffc008882de4 T mas_find
+ffffffc008882f10 T mas_find_range
+ffffffc00888303c T mas_find_rev
+ffffffc008883150 T mas_find_range_rev
+ffffffc008883264 T mas_erase
+ffffffc0088835bc t mas_alloc_nodes
+ffffffc0088837cc T mtree_load
+ffffffc008883b28 T mtree_store_range
+ffffffc008883d3c T mtree_store
+ffffffc008883d74 T mtree_insert_range
+ffffffc008883fe8 T mtree_insert
+ffffffc008884020 T mtree_alloc_range
+ffffffc008884484 T mtree_alloc_rrange
+ffffffc008884710 T mtree_erase
+ffffffc00888488c T __mt_destroy
+ffffffc00888490c T mtree_destroy
+ffffffc00888499c T mt_find
+ffffffc008884dec T mt_find_after
+ffffffc008884e28 t trace_raw_output_ma_op
+ffffffc008884ea4 t trace_raw_output_ma_read
+ffffffc008884f20 t trace_raw_output_ma_write
+ffffffc008884fa8 t mas_ascend
+ffffffc0088851c0 t mas_is_span_wr
+ffffffc00888535c t mas_wr_spanning_store
+ffffffc008885af0 t mas_new_root
+ffffffc008885d54 t mas_wr_modify
+ffffffc00888778c t mas_root_expand
+ffffffc0088879b4 t mas_store_b_node
+ffffffc008887dc8 t mas_mab_cp
+ffffffc008887fe8 t mas_spanning_rebalance
+ffffffc00888936c t mast_spanning_rebalance
+ffffffc008889e78 t mast_ascend_free
+ffffffc00888a180 t mast_topiary
+ffffffc00888a668 t mab_mas_cp
+ffffffc00888a8a0 t mas_wmb_replace
+ffffffc00888b068 t mab_calc_split
+ffffffc00888b268 t mas_leaf_max_gap
+ffffffc00888b408 t mas_leaf_set_meta
+ffffffc00888b480 t mas_replace
+ffffffc00888b758 t mas_update_gap
+ffffffc00888b938 t mt_free_rcu
+ffffffc00888b96c t mas_next_sibling
+ffffffc00888bb9c t mas_split_final_node
+ffffffc00888bde8 t mas_push_data
+ffffffc00888c4a8 t mast_split_data
+ffffffc00888c75c t mast_fill_bnode
+ffffffc00888cc10 t mas_prev_node
+ffffffc00888cecc t mt_destroy_walk
+ffffffc00888d228 t mt_free_walk
+ffffffc00888d480 T __memcat_p
+ffffffc00888d574 T plist_add
+ffffffc00888d6bc T plist_del
+ffffffc00888d7a0 T plist_requeue
+ffffffc00888d884 T radix_tree_node_rcu_free
+ffffffc00888d8e4 T radix_tree_preload
+ffffffc00888d91c t __radix_tree_preload
+ffffffc00888da58 T radix_tree_maybe_preload
+ffffffc00888dab4 T radix_tree_insert
+ffffffc00888dcb4 T __radix_tree_lookup
+ffffffc00888dd84 T radix_tree_lookup_slot
+ffffffc00888de3c T radix_tree_lookup
+ffffffc00888deec T __radix_tree_replace
+ffffffc00888dfdc t delete_node
+ffffffc00888e278 T radix_tree_replace_slot
+ffffffc00888e2e8 T radix_tree_iter_replace
+ffffffc00888e318 T radix_tree_tag_set
+ffffffc00888e3f4 T radix_tree_tag_clear
+ffffffc00888e514 T radix_tree_iter_tag_clear
+ffffffc00888e5b4 T radix_tree_tag_get
+ffffffc00888e678 T radix_tree_iter_resume
+ffffffc00888e69c T radix_tree_next_chunk
+ffffffc00888e8bc T radix_tree_gang_lookup
+ffffffc00888e9e0 T radix_tree_gang_lookup_tag
+ffffffc00888eb74 T radix_tree_gang_lookup_tag_slot
+ffffffc00888ecc0 T radix_tree_iter_delete
+ffffffc00888ed04 t __radix_tree_delete
+ffffffc00888ef00 T radix_tree_delete_item
+ffffffc00888f034 T radix_tree_delete
+ffffffc00888f064 T radix_tree_tagged
+ffffffc00888f088 T idr_preload
+ffffffc00888f0dc T idr_get_free
+ffffffc00888f390 t radix_tree_extend
+ffffffc00888f518 t radix_tree_node_alloc
+ffffffc00888f634 T idr_destroy
+ffffffc00888f73c t radix_tree_node_ctor
+ffffffc00888f788 t radix_tree_cpu_dead
+ffffffc00888f810 T ___ratelimit
+ffffffc00888f968 T __rb_erase_color
+ffffffc00888fc3c T rb_insert_color
+ffffffc00888fd74 T rb_erase
+ffffffc008890078 T __rb_insert_augmented
+ffffffc008890244 T rb_first
+ffffffc008890274 T rb_last
+ffffffc0088902a4 T rb_next
+ffffffc008890304 T rb_prev
+ffffffc008890364 T rb_replace_node
+ffffffc0088903d0 T rb_replace_node_rcu
+ffffffc008890458 T rb_next_postorder
+ffffffc0088904a0 T rb_first_postorder
+ffffffc0088904d8 T seq_buf_print_seq
+ffffffc008890518 T seq_buf_vprintf
+ffffffc0088905e4 T seq_buf_printf
+ffffffc0088906dc T seq_buf_bprintf
+ffffffc008890780 T seq_buf_puts
+ffffffc008890820 T seq_buf_putc
+ffffffc008890878 T seq_buf_putmem
+ffffffc008890900 T seq_buf_putmem_hex
+ffffffc008890ba8 T seq_buf_path
+ffffffc008890c84 T seq_buf_to_user
+ffffffc008890e88 T seq_buf_hex_dump
+ffffffc008891024 T __show_mem
+ffffffc008891150 T __siphash_unaligned
+ffffffc008891378 T siphash_1u64
+ffffffc008891530 T siphash_2u64
+ffffffc008891740 T siphash_3u64
+ffffffc0088919a8 T siphash_4u64
+ffffffc008891c68 T siphash_1u32
+ffffffc008891dcc T siphash_3u32
+ffffffc008891f90 T __hsiphash_unaligned
+ffffffc008892148 T hsiphash_1u32
+ffffffc008892264 T hsiphash_2u32
+ffffffc0088923b4 T hsiphash_3u32
+ffffffc008892508 T hsiphash_4u32
+ffffffc008892690 T strncasecmp
+ffffffc008892714 T strcasecmp
+ffffffc008892768 T strcpy
+ffffffc00889278c T strncpy
+ffffffc0088927c0 T strlcpy
+ffffffc008892838 T strscpy
+ffffffc008892934 T stpcpy
+ffffffc008892954 T strcat
+ffffffc008892984 T strncat
+ffffffc0088929c4 T strlcat
+ffffffc008892a54 T strchrnul
+ffffffc008892a7c T strnchrnul
+ffffffc008892ab8 T strnchr
+ffffffc008892aec T strspn
+ffffffc008892b54 T strcspn
+ffffffc008892bbc T strpbrk
+ffffffc008892c10 T strsep
+ffffffc008892c7c T memset16
+ffffffc008892cdc T memset32
+ffffffc008892d3c T memset64
+ffffffc008892d9c T bcmp
+ffffffc008892dc8 T memscan
+ffffffc008892e00 T strstr
+ffffffc008892e90 T strnstr
+ffffffc008892f18 T memchr_inv
+ffffffc008893198 T timerqueue_add
+ffffffc00889325c T timerqueue_del
+ffffffc0088932e0 T timerqueue_iterate_next
+ffffffc008893310 T simple_strtoull
+ffffffc008893344 t simple_strntoull
+ffffffc008893404 T simple_strtoul
+ffffffc008893430 T simple_strtol
+ffffffc008893478 T simple_strtoll
+ffffffc0088934d0 T num_to_str
+ffffffc008893640 t put_dec
+ffffffc0088936d4 T ptr_to_hashval
+ffffffc008893740 T vsnprintf
+ffffffc008893de8 t format_decode
+ffffffc00889424c t string
+ffffffc008894374 t pointer
+ffffffc008894a9c t number
+ffffffc008894e08 T vscnprintf
+ffffffc008894ea0 T snprintf
+ffffffc008894f28 T scnprintf
+ffffffc008894fe4 T vsprintf
+ffffffc00889505c T sprintf
+ffffffc0088950f0 T vbin_printf
+ffffffc0088955d4 T bstr_printf
+ffffffc008895ad8 T bprintf
+ffffffc008895b60 T vsscanf
+ffffffc00889631c t skip_atoi
+ffffffc008896360 T sscanf
+ffffffc0088963e4 t put_dec_full8
+ffffffc008896474 t put_dec_trunc8
+ffffffc008896568 t fill_ptr_key_workfn
+ffffffc0088965d4 t string_nocheck
+ffffffc008896758 t widen_string
+ffffffc008896820 t symbol_string
+ffffffc008896984 t resource_string
+ffffffc0088970ec t hex_string
+ffffffc0088972b0 t bitmap_list_string
+ffffffc0088974c8 t bitmap_string
+ffffffc00889766c t mac_address_string
+ffffffc00889798c t ip_addr_string
+ffffffc008897d24 t escaped_string
+ffffffc008897edc t uuid_string
+ffffffc00889814c t restricted_pointer
+ffffffc0088983f0 t netdev_bits
+ffffffc008898604 t fourcc_string
+ffffffc0088989a4 t address_val
+ffffffc008898a94 t dentry_name
+ffffffc008898e54 t time_and_date
+ffffffc008898fc8 t clock
+ffffffc0088990e0 t file_dentry_name
+ffffffc0088991cc t bdev_name
+ffffffc008899358 t flags_string
+ffffffc00889976c t device_node_string
+ffffffc008899da4 t fwnode_string
+ffffffc00889a014 t pointer_string
+ffffffc00889a064 t default_pointer
+ffffffc00889a43c t err_ptr
+ffffffc00889a504 t ip6_addr_string
+ffffffc00889a628 t ip4_addr_string
+ffffffc00889a710 t ip4_addr_string_sa
+ffffffc00889a8c4 t ip6_addr_string_sa
+ffffffc00889ab64 t ip6_compressed_string
+ffffffc00889af6c t ip6_string
+ffffffc00889b000 t ip4_string
+ffffffc00889b2d0 t special_hex_number
+ffffffc00889b30c t rtc_str
+ffffffc00889b4d8 t time64_str
+ffffffc00889b5a8 t date_str
+ffffffc00889b674 t time_str
+ffffffc00889b714 t fwnode_full_name_string
+ffffffc00889b7d8 T minmax_running_max
+ffffffc00889b8e4 T minmax_running_min
+ffffffc00889b9f0 T xas_load
+ffffffc00889bad4 t xas_start
+ffffffc00889bbd0 T xas_destroy
+ffffffc00889bc2c T xas_nomem
+ffffffc00889bcdc T xas_create_range
+ffffffc00889be08 t xas_create
+ffffffc00889c308 T xas_store
+ffffffc00889ca00 T xas_init_marks
+ffffffc00889cb0c T xas_get_mark
+ffffffc00889cb70 T xas_set_mark
+ffffffc00889cbfc T xas_clear_mark
+ffffffc00889cc90 T xas_split_alloc
+ffffffc00889cdcc T xas_split
+ffffffc00889d190 T xas_pause
+ffffffc00889d254 T __xas_prev
+ffffffc00889d418 T __xas_next
+ffffffc00889d5d8 T xas_find
+ffffffc00889d858 T xas_find_marked
+ffffffc00889db08 T xas_find_conflict
+ffffffc00889dd04 T xa_load
+ffffffc00889deec T __xa_erase
+ffffffc00889df8c T xa_erase
+ffffffc00889e04c T __xa_store
+ffffffc00889e1d8 t __xas_nomem
+ffffffc00889e340 T xa_store
+ffffffc00889e3b0 T __xa_cmpxchg
+ffffffc00889e6f4 T __xa_insert
+ffffffc00889ea48 T xa_store_range
+ffffffc00889ed38 T xa_get_order
+ffffffc00889ee8c T __xa_alloc
+ffffffc00889f048 T __xa_alloc_cyclic
+ffffffc00889f130 T __xa_set_mark
+ffffffc00889f2a0 T __xa_clear_mark
+ffffffc00889f418 T xa_get_mark
+ffffffc00889f580 T xa_set_mark
+ffffffc00889f5e0 T xa_clear_mark
+ffffffc00889f640 T xa_find
+ffffffc00889f724 T xa_find_after
+ffffffc00889f850 T xa_extract
+ffffffc00889fb0c T xa_delete_node
+ffffffc00889fb9c T xa_destroy
+ffffffc00889fd3c t __CortexA53843419_FFFFFFC008142004
+ffffffc00889fd48 T __noinstr_text_start
+ffffffc00889fd4c T asm_exit_to_user_mode
+ffffffc00889fdbc T el1t_64_sync_handler
+ffffffc00889fde0 t __panic_unhandled
+ffffffc00889fe5c T el1t_64_irq_handler
+ffffffc00889fe84 T el1t_64_fiq_handler
+ffffffc00889feac T el1t_64_error_handler
+ffffffc00889fed4 T el1h_64_sync_handler
+ffffffc00889ff8c t el1_abort
+ffffffc00889fff4 t el1_pc
+ffffffc0088a005c t el1_undef
+ffffffc0088a00b4 t el1_bti
+ffffffc0088a010c t el1_dbg
+ffffffc0088a0188 t el1_fpac
+ffffffc0088a01e4 T el1h_64_irq_handler
+ffffffc0088a0214 t el1_interrupt
+ffffffc0088a0300 T el1h_64_fiq_handler
+ffffffc0088a0334 T el1h_64_error_handler
+ffffffc0088a0388 t arm64_enter_nmi
+ffffffc0088a0418 t arm64_exit_nmi
+ffffffc0088a0490 T el0t_64_sync_handler
+ffffffc0088a058c t el0_svc
+ffffffc0088a0650 t el0_da
+ffffffc0088a0730 t el0_ia
+ffffffc0088a086c t el0_fpsimd_acc
+ffffffc0088a0944 t el0_sve_acc
+ffffffc0088a0a1c t el0_sme_acc
+ffffffc0088a0af4 t el0_fpsimd_exc
+ffffffc0088a0bcc t el0_sys
+ffffffc0088a0ca4 t el0_sp
+ffffffc0088a0d80 t el0_pc
+ffffffc0088a0ec0 t el0_undef
+ffffffc0088a0f98 t el0_bti
+ffffffc0088a1060 t el0_dbg
+ffffffc0088a112c t el0_fpac
+ffffffc0088a1204 t el0_inv
+ffffffc0088a12e4 T el0t_64_irq_handler
+ffffffc0088a130c t __el0_irq_handler_common
+ffffffc0088a1340 T el0t_64_fiq_handler
+ffffffc0088a1368 t __el0_fiq_handler_common
+ffffffc0088a139c T el0t_64_error_handler
+ffffffc0088a13c4 t __el0_error_handler_common
+ffffffc0088a14b4 T el0t_32_sync_handler
+ffffffc0088a14dc T el0t_32_irq_handler
+ffffffc0088a1504 T el0t_32_fiq_handler
+ffffffc0088a152c T el0t_32_error_handler
+ffffffc0088a1554 T handle_bad_stack
+ffffffc0088a15a8 t enter_from_kernel_mode
+ffffffc0088a1600 t exit_to_kernel_mode
+ffffffc0088a1640 t arm64_enter_el1_dbg
+ffffffc0088a166c t arm64_exit_el1_dbg
+ffffffc0088a1694 t el0_interrupt
+ffffffc0088a18d0 T arch_stack_walk
+ffffffc0088a1a8c T alt_cb_patch_nops
+ffffffc0088a1b24 t patch_alternative
+ffffffc0088a1c50 T spectre_bhb_patch_loop_mitigation_enable
+ffffffc0088a1ca4 T spectre_bhb_patch_fw_mitigation_enabled
+ffffffc0088a1cf8 T spectre_bhb_patch_loop_iter
+ffffffc0088a1d7c T spectre_bhb_patch_wa3
+ffffffc0088a1e08 t call_hvc_arch_workaround_1
+ffffffc0088a1e38 t call_smc_arch_workaround_1
+ffffffc0088a1e68 t qcom_link_stack_sanitisation
+ffffffc0088a1ec8 T cpu_do_idle
+ffffffc0088a1ee0 T arch_cpu_idle
+ffffffc0088a1f10 T __stack_chk_fail
+ffffffc0088a1f48 T __ktime_get_real_seconds
+ffffffc0088a1f60 T ct_nmi_exit
+ffffffc0088a2044 t ct_kernel_exit_state
+ffffffc0088a209c T ct_nmi_enter
+ffffffc0088a2168 t ct_kernel_enter_state
+ffffffc0088a21c0 T ct_idle_enter
+ffffffc0088a21e8 t ct_kernel_exit
+ffffffc0088a22a4 T ct_idle_exit
+ffffffc0088a22e4 t ct_kernel_enter
+ffffffc0088a23a0 T ct_irq_enter
+ffffffc0088a23cc T ct_irq_exit
+ffffffc0088a244c T __noinstr_text_end
+ffffffc0088a2450 T rest_init
+ffffffc0088a253c t kernel_init
+ffffffc0088a26f0 t _cpu_down
+ffffffc0088a2bf4 T __irq_alloc_descs
+ffffffc0088a2e88 T profile_init
+ffffffc0088a2f88 T create_proc_profile
+ffffffc0088a30a4 t audit_net_exit
+ffffffc0088a3100 T build_all_zonelists
+ffffffc0088a320c T free_area_init_core_hotplug
+ffffffc0088a33a4 T __add_pages
+ffffffc0088a34e8 T remove_pfn_range_from_zone
+ffffffc0088a374c T move_pfn_range_to_zone
+ffffffc0088a388c T online_pages
+ffffffc0088a3ad0 T add_memory_resource
+ffffffc0088a3d58 T __add_memory
+ffffffc0088a3df4 T offline_pages
+ffffffc0088a46e4 t try_remove_memory
+ffffffc0088a48f4 t hotadd_init_pgdat
+ffffffc0088a4978 t sparse_index_alloc
+ffffffc0088a4a0c t __earlyonly_bootmem_alloc
+ffffffc0088a4a4c t proc_net_ns_exit
+ffffffc0088a4a94 t vclkdev_alloc
+ffffffc0088a4b80 t sock_inuse_exit_net
+ffffffc0088a4bb0 t proto_exit_net
+ffffffc0088a4be8 t net_ns_net_exit
+ffffffc0088a4c28 t sysctl_core_net_exit
+ffffffc0088a4c80 t netdev_exit
+ffffffc0088a4cec t default_device_exit_batch
+ffffffc0088a4ea4 t default_device_exit_net
+ffffffc0088a50b4 t rtnetlink_net_exit
+ffffffc0088a50f4 t diag_net_exit
+ffffffc0088a5134 t fib_notifier_net_exit
+ffffffc0088a51a0 t dev_proc_net_exit
+ffffffc0088a5204 t dev_mc_net_exit
+ffffffc0088a523c t fib_rules_net_exit
+ffffffc0088a526c t netlink_net_exit
+ffffffc0088a52a4 t genl_pernet_exit
+ffffffc0088a52e4 t ip_rt_do_proc_exit
+ffffffc0088a5338 t sysctl_route_net_exit
+ffffffc0088a5390 t ipv4_inetpeer_exit
+ffffffc0088a53d8 t ipv4_frags_pre_exit_net
+ffffffc0088a53f8 t ipv4_frags_exit_net
+ffffffc0088a5434 t ip4_frags_ns_ctl_unregister
+ffffffc0088a5478 t tcp4_proc_exit_net
+ffffffc0088a54b0 t tcp_sk_exit
+ffffffc0088a54c0 t tcp_sk_exit_batch
+ffffffc0088a5598 t tcp_net_metrics_exit_batch
+ffffffc0088a5664 t raw_exit_net
+ffffffc0088a569c t udp4_proc_exit_net
+ffffffc0088a56d4 t udplite4_proc_exit_net
+ffffffc0088a570c t arp_net_exit
+ffffffc0088a5744 t devinet_exit_net
+ffffffc0088a5814 t ipv4_mib_exit_net
+ffffffc0088a5880 t igmp_net_exit
+ffffffc0088a58e4 t fib_net_exit
+ffffffc0088a5928 t fib_net_exit_batch
+ffffffc0088a598c T fib_proc_exit
+ffffffc0088a59f0 T fib4_notifier_exit
+ffffffc0088a5a20 t ping_v4_proc_exit_net
+ffffffc0088a5a58 t nexthop_net_exit_batch
+ffffffc0088a5af8 t ipv4_sysctl_exit_net
+ffffffc0088a5b48 t ip_proc_exit_net
+ffffffc0088a5bac T fib4_rules_exit
+ffffffc0088a5bdc t ipip_exit_batch_net
+ffffffc0088a5c18 t ipgre_tap_exit_batch_net
+ffffffc0088a5c54 t ipgre_exit_batch_net
+ffffffc0088a5c90 t erspan_exit_batch_net
+ffffffc0088a5ccc t vti_exit_batch_net
+ffffffc0088a5d08 t xfrm4_net_exit
+ffffffc0088a5d44 t xfrm4_net_sysctl_exit
+ffffffc0088a5d78 t xfrm_net_exit
+ffffffc0088a5dd8 T xfrm_sysctl_fini
+ffffffc0088a5e1c t xfrm_user_net_pre_exit
+ffffffc0088a5e30 t xfrm_user_net_exit
+ffffffc0088a5e84 t xfrmi_exit_batch_net
+ffffffc0088a5f9c t unix_net_exit
+ffffffc0088a5ff8 t inet6_net_exit
+ffffffc0088a6084 t if6_proc_net_exit
+ffffffc0088a60bc t addrconf_exit_net
+ffffffc0088a61c8 t ip6addrlbl_net_exit
+ffffffc0088a6268 t ipv6_inetpeer_exit
+ffffffc0088a62b0 t ip6_route_net_exit
+ffffffc0088a630c t ip6_route_net_exit_late
+ffffffc0088a6360 t ndisc_net_exit
+ffffffc0088a6398 t udplite6_proc_exit_net
+ffffffc0088a63d0 t raw6_exit_net
+ffffffc0088a6408 t igmp6_net_exit
+ffffffc0088a6460 t igmp6_proc_exit
+ffffffc0088a64b4 t ipv6_frags_pre_exit_net
+ffffffc0088a64d4 t ipv6_frags_exit_net
+ffffffc0088a6510 t ip6_frags_ns_sysctl_unregister
+ffffffc0088a6540 t tcpv6_net_exit
+ffffffc0088a6578 t tcpv6_net_exit_batch
+ffffffc0088a65a8 t ping_v6_proc_exit_net
+ffffffc0088a65e0 t ip6_flowlabel_net_exit
+ffffffc0088a661c t ip6_fl_purge
+ffffffc0088a6750 t ip6_flowlabel_proc_fini
+ffffffc0088a678c t seg6_net_exit
+ffffffc0088a67d8 T fib6_notifier_exit
+ffffffc0088a6808 t ioam6_net_exit
+ffffffc0088a686c t ipv6_sysctl_net_exit
+ffffffc0088a68ec t xfrm6_net_exit
+ffffffc0088a6928 t xfrm6_net_sysctl_exit
+ffffffc0088a695c t fib6_rules_net_exit_batch
+ffffffc0088a69c0 t ipv6_proc_exit_net
+ffffffc0088a6a24 t xfrm6_tunnel_net_exit
+ffffffc0088a6af4 t vti6_exit_batch_net
+ffffffc0088a6bb8 t vti6_destroy_tunnels
+ffffffc0088a6c48 t sit_exit_batch_net
+ffffffc0088a6ce8 t sit_destroy_tunnels
+ffffffc0088a6d80 t ip6_tnl_exit_batch_net
+ffffffc0088a6e20 t ip6_tnl_destroy_tunnels
+ffffffc0088a6eb8 t ip6gre_exit_batch_net
+ffffffc0088a6fe8 t packet_net_exit
+ffffffc0088a7044 t pfkey_net_exit
+ffffffc0088a70a8 t pfkey_exit_proc
+ffffffc0088a70e8 t sysctl_net_exit
+ffffffc0088a7118 T vmemmap_populate
+ffffffc0088a72b4 t mm_compute_batch_notifier
+ffffffc0088a72f8 t init_reserve_notifier
+ffffffc0088a7348 T reserve_bootmem_region
+ffffffc0088a7404 T alloc_pages_exact_nid
+ffffffc0088a75d0 T memmap_init_range
+ffffffc0088a76f0 t overlap_memmap_init
+ffffffc0088a77a8 t __init_single_page
+ffffffc0088a7850 T setup_zone_pageset
+ffffffc0088a7930 T init_currently_empty_zone
+ffffffc0088a7a30 t pgdat_init_internals
+ffffffc0088a7b44 T init_per_zone_wmark_min
+ffffffc0088a7b8c T __shuffle_zone
+ffffffc0088a7db0 t shuffle_valid_page
+ffffffc0088a7e3c T __shuffle_free_memory
+ffffffc0088a7ea4 t shuffle_param_set
+ffffffc0088a7f0c T sparse_buffer_alloc
+ffffffc0088a7f94 W vmemmap_populate_print_last
+ffffffc0088a7fa4 T sparse_add_section
+ffffffc0088a80e8 t section_activate
+ffffffc0088a82d0 t mminit_validate_memmodel_limits
+ffffffc0088a8390 T vmemmap_alloc_block
+ffffffc0088a848c T vmemmap_alloc_block_buf
+ffffffc0088a84f0 t altmap_alloc_block_buf
+ffffffc0088a85cc T vmemmap_verify
+ffffffc0088a8628 T vmemmap_pte_populate
+ffffffc0088a87b0 T vmemmap_pmd_populate
+ffffffc0088a8894 T vmemmap_pud_populate
+ffffffc0088a8980 T vmemmap_p4d_populate
+ffffffc0088a8990 T vmemmap_pgd_populate
+ffffffc0088a89b0 T vmemmap_populate_basepages
+ffffffc0088a8a30 T __populate_section_memmap
+ffffffc0088a8af4 t vmemmap_populate_compound_pages
+ffffffc0088a8c94 t vmemmap_populate_address
+ffffffc0088a8d5c t compound_section_tail_page
+ffffffc0088a8db8 t init_section_page_ext
+ffffffc0088a8e88 t page_ext_callback
+ffffffc0088a8ef8 T pgdat_page_ext_init
+ffffffc0088a8f04 t alloc_page_ext
+ffffffc0088a8f58 t online_page_ext
+ffffffc0088a8ff4 t offline_page_ext
+ffffffc0088a90b8 T __sched_text_start
+ffffffc0088a90bc T __switch_to
+ffffffc0088a92c8 T preempt_schedule
+ffffffc0088a9310 t __schedule
+ffffffc0088a9da8 T schedule
+ffffffc0088a9ea4 T schedule_idle
+ffffffc0088a9ef8 T schedule_preempt_disabled
+ffffffc0088a9f48 t preempt_schedule_common
+ffffffc0088a9fa8 T preempt_schedule_notrace
+ffffffc0088aa024 T preempt_schedule_irq
+ffffffc0088aa0cc T yield
+ffffffc0088aa104 T yield_to
+ffffffc0088aa374 T io_schedule_timeout
+ffffffc0088aa3f0 T io_schedule
+ffffffc0088aa53c T wait_for_completion
+ffffffc0088aa56c t wait_for_common
+ffffffc0088aa720 T wait_for_completion_timeout
+ffffffc0088aa750 T wait_for_completion_io
+ffffffc0088aa77c t wait_for_common_io
+ffffffc0088aa8f0 T wait_for_completion_io_timeout
+ffffffc0088aa91c T wait_for_completion_interruptible
+ffffffc0088aa95c T wait_for_completion_interruptible_timeout
+ffffffc0088aa98c T wait_for_completion_killable
+ffffffc0088aa9cc T wait_for_completion_state
+ffffffc0088aaa0c T wait_for_completion_killable_timeout
+ffffffc0088aaa3c T __wait_on_bit
+ffffffc0088aabf4 T out_of_line_wait_on_bit
+ffffffc0088aaca8 T out_of_line_wait_on_bit_timeout
+ffffffc0088aad6c T __wait_on_bit_lock
+ffffffc0088aafa8 T out_of_line_wait_on_bit_lock
+ffffffc0088ab05c T bit_wait
+ffffffc0088ab0cc T bit_wait_io
+ffffffc0088ab13c T bit_wait_timeout
+ffffffc0088ab1d0 T bit_wait_io_timeout
+ffffffc0088ab294 T mutex_lock
+ffffffc0088ab314 t __mutex_lock_slowpath
+ffffffc0088ab344 T mutex_unlock
+ffffffc0088ab3c4 t __mutex_unlock_slowpath
+ffffffc0088ab544 T ww_mutex_unlock
+ffffffc0088ab5e4 T mutex_trylock
+ffffffc0088ab674 T mutex_lock_interruptible
+ffffffc0088ab6f4 t __mutex_lock_interruptible_slowpath
+ffffffc0088ab724 T mutex_lock_killable
+ffffffc0088ab7a4 t __mutex_lock_killable_slowpath
+ffffffc0088ab7d4 T mutex_lock_io
+ffffffc0088ab870 T ww_mutex_lock
+ffffffc0088ab950 t __ww_mutex_lock_slowpath
+ffffffc0088ab984 T ww_mutex_lock_interruptible
+ffffffc0088aba64 t __ww_mutex_lock_interruptible_slowpath
+ffffffc0088aba94 t __mutex_lock
+ffffffc0088ac510 t __ww_mutex_lock
+ffffffc0088ad4d4 T down
+ffffffc0088ad534 t __down
+ffffffc0088ad568 T down_interruptible
+ffffffc0088ad5dc t __down_interruptible
+ffffffc0088ad610 T down_killable
+ffffffc0088ad684 t __down_killable
+ffffffc0088ad6b8 T down_trylock
+ffffffc0088ad710 T down_timeout
+ffffffc0088ad78c t __down_timeout
+ffffffc0088ad7c0 T up
+ffffffc0088ad82c t __up
+ffffffc0088ad8a0 t __down_common
+ffffffc0088adb10 T down_read
+ffffffc0088adf50 T down_read_interruptible
+ffffffc0088ae514 T down_read_killable
+ffffffc0088aead0 T down_write
+ffffffc0088aebac T down_write_killable
+ffffffc0088aec94 t rwsem_down_write_slowpath
+ffffffc0088af660 T __percpu_down_read
+ffffffc0088af7f0 T percpu_down_write
+ffffffc0088afa5c T rt_mutex_lock
+ffffffc0088afaec T rt_mutex_lock_interruptible
+ffffffc0088afb80 T rt_mutex_lock_killable
+ffffffc0088afc14 T rt_mutex_trylock
+ffffffc0088afca4 T rt_mutex_unlock
+ffffffc0088afd2c T rt_mutex_futex_trylock
+ffffffc0088afdd4 t rt_mutex_slowtrylock
+ffffffc0088afe80 T __rt_mutex_futex_trylock
+ffffffc0088afeec T __rt_mutex_futex_unlock
+ffffffc0088aff44 t mark_wakeup_next_waiter
+ffffffc0088b0048 T rt_mutex_futex_unlock
+ffffffc0088b0130 T rt_mutex_postunlock
+ffffffc0088b0190 T __rt_mutex_init
+ffffffc0088b01ac T rt_mutex_init_proxy_locked
+ffffffc0088b01f0 T rt_mutex_proxy_unlock
+ffffffc0088b0214 T __rt_mutex_start_proxy_lock
+ffffffc0088b0294 t try_to_take_rt_mutex
+ffffffc0088b0500 t task_blocks_on_rt_mutex
+ffffffc0088b0834 T rt_mutex_start_proxy_lock
+ffffffc0088b08dc t remove_waiter
+ffffffc0088b0b60 T rt_mutex_wait_proxy_lock
+ffffffc0088b0c04 t rt_mutex_slowlock_block
+ffffffc0088b0d84 T rt_mutex_cleanup_proxy_lock
+ffffffc0088b0e30 T rt_mutex_adjust_pi
+ffffffc0088b0f34 t rt_mutex_adjust_prio_chain
+ffffffc0088b1774 t rt_mutex_slowlock
+ffffffc0088b19d4 t rt_mutex_slowunlock
+ffffffc0088b1cb4 T console_conditional_schedule
+ffffffc0088b1cc4 T schedule_timeout
+ffffffc0088b1dfc T schedule_timeout_interruptible
+ffffffc0088b1e34 T schedule_timeout_killable
+ffffffc0088b1e6c T schedule_timeout_uninterruptible
+ffffffc0088b1ea4 T schedule_timeout_idle
+ffffffc0088b1edc T usleep_range_state
+ffffffc0088b1f84 t do_nanosleep
+ffffffc0088b20d8 t hrtimer_nanosleep_restart
+ffffffc0088b2174 T schedule_hrtimeout_range_clock
+ffffffc0088b2294 T schedule_hrtimeout_range
+ffffffc0088b22c4 T schedule_hrtimeout
+ffffffc0088b22fc t alarm_timer_nsleep_restart
+ffffffc0088b23ec T ldsem_down_read
+ffffffc0088b2768 T ldsem_down_write
+ffffffc0088b2a60 T __cpuidle_text_start
+ffffffc0088b2a60 T __sched_text_end
+ffffffc0088b2a64 T default_idle_call
+ffffffc0088b2bc4 t cpu_idle_poll
+ffffffc0088b2d7c T __cpuidle_text_end
+ffffffc0088b2d80 T __lock_text_start
+ffffffc0088b2d84 T _raw_spin_trylock
+ffffffc0088b2e40 T _raw_spin_trylock_bh
+ffffffc0088b2ef4 T _raw_spin_lock
+ffffffc0088b2f8c T _raw_spin_lock_irqsave
+ffffffc0088b3054 T _raw_spin_lock_irq
+ffffffc0088b3104 T _raw_spin_lock_bh
+ffffffc0088b319c T _raw_spin_unlock
+ffffffc0088b31f4 T _raw_spin_unlock_irqrestore
+ffffffc0088b3250 T _raw_spin_unlock_irq
+ffffffc0088b32b0 T _raw_spin_unlock_bh
+ffffffc0088b32fc T _raw_read_trylock
+ffffffc0088b33d8 T _raw_read_lock
+ffffffc0088b3454 T _raw_read_lock_irqsave
+ffffffc0088b3500 T _raw_read_lock_irq
+ffffffc0088b3594 T _raw_read_lock_bh
+ffffffc0088b3610 T _raw_read_unlock
+ffffffc0088b368c T _raw_read_unlock_irqrestore
+ffffffc0088b370c T _raw_read_unlock_irq
+ffffffc0088b3790 T _raw_read_unlock_bh
+ffffffc0088b3800 T _raw_write_trylock
+ffffffc0088b38bc T _raw_write_lock
+ffffffc0088b3950 T _raw_write_lock_nested
+ffffffc0088b39e4 T _raw_write_lock_irqsave
+ffffffc0088b3aa8 T _raw_write_lock_irq
+ffffffc0088b3b54 T _raw_write_lock_bh
+ffffffc0088b3be8 T _raw_write_unlock
+ffffffc0088b3c40 T _raw_write_unlock_irqrestore
+ffffffc0088b3c9c T _raw_write_unlock_irq
+ffffffc0088b3cfc T _raw_write_unlock_bh
+ffffffc0088b3e44 T queued_spin_lock_slowpath
+ffffffc0088b435c T queued_read_lock_slowpath
+ffffffc0088b45d0 T queued_write_lock_slowpath
+ffffffc0088b48c0 T __kprobes_text_end
+ffffffc0088b48c0 T __kprobes_text_start
+ffffffc0088b48c0 T __lock_text_end
+ffffffc0088b5000 T __hyp_idmap_text_end
+ffffffc0088b5000 T __hyp_idmap_text_start
+ffffffc0088b5000 T __hyp_stub_vectors
+ffffffc0088b5000 T __hyp_text_start
+ffffffc0088b5800 t elx_sync
+ffffffc0088b5850 t __finalise_el2
+ffffffc0088b5a34 t el2_sync_invalid
+ffffffc0088b5a38 t el2_irq_invalid
+ffffffc0088b5a3c t el2_fiq_invalid
+ffffffc0088b5a40 t el2_error_invalid
+ffffffc0088b5a44 t el1_sync_invalid
+ffffffc0088b5a48 t el1_irq_invalid
+ffffffc0088b5a4c t el1_fiq_invalid
+ffffffc0088b5a50 t el1_error_invalid
+ffffffc0088b6000 T __hyp_text_end
+ffffffc0088b6000 T __idmap_text_start
+ffffffc0088b6000 t enter_vhe
+ffffffc0088b6038 T cpu_resume
+ffffffc0088b6064 T cpu_soft_restart
+ffffffc0088b60a0 T init_kernel_el
+ffffffc0088b60b0 t init_el1
+ffffffc0088b60d8 t init_el2
+ffffffc0088b6278 t set_cpu_boot_mode_flag
+ffffffc0088b6298 T secondary_holding_pen
+ffffffc0088b62bc t pen
+ffffffc0088b62d0 T secondary_entry
+ffffffc0088b62dc t secondary_startup
+ffffffc0088b6304 t __secondary_switched
+ffffffc0088b63bc t __secondary_too_slow
+ffffffc0088b63cc T __enable_mmu
+ffffffc0088b6414 T __cpu_secondary_check52bitva
+ffffffc0088b641c t __no_granule_support
+ffffffc0088b6444 t __relocate_kernel
+ffffffc0088b64f0 t __primary_switch
+ffffffc0088b6568 T cpu_do_resume
+ffffffc0088b6614 T idmap_cpu_replace_ttbr1
+ffffffc0088b6650 T idmap_kpti_install_ng_mappings
+ffffffc0088b67f0 t __idmap_kpti_secondary
+ffffffc0088b6838 T __cpu_setup
+ffffffc0088b6944 T __idmap_text_end
+ffffffc0088c0000 D __start_rodata
+ffffffc0088c0000 T _etext
+ffffffc0088c0000 D vdso_start
+ffffffc0088c1000 D kallsyms_offsets
+ffffffc0088c1000 D vdso_end
+ffffffc0088deba0 D kallsyms_relative_base
+ffffffc0088deba8 D kallsyms_num_syms
+ffffffc0088debb0 D kallsyms_names
+ffffffc0089405f0 D kallsyms_markers
+ffffffc0089407d0 D kallsyms_token_table
+ffffffc008940b48 D kallsyms_token_index
+ffffffc008940fbd d .str.40.llvm.17157443236990872785
+ffffffc008940fd7 d .str.7.llvm.10184764501973911476
+ffffffc008941006 d .str.8.llvm.10184764501973911476
+ffffffc00894103d d .str.10.llvm.10184764501973911476
+ffffffc0089418b7 d .str.138.llvm.2839994057801121941
+ffffffc008941d77 d .str.10.llvm.10828936644202131411
+ffffffc008941d7f d .str.18.llvm.10828936644202131411
+ffffffc008941d84 d .str.88.llvm.10828936644202131411
+ffffffc0089427ff d .str.22.llvm.1325432341324286946
+ffffffc00894280e d .str.28.llvm.1325432341324286946
+ffffffc00894283b d .str.81.llvm.2839994057801121941
+ffffffc008942848 d .str.132.llvm.2839994057801121941
+ffffffc008942851 d .str.188.llvm.2839994057801121941
+ffffffc00894286a d .str.193.llvm.2839994057801121941
+ffffffc008942888 d .str.230.llvm.2839994057801121941
+ffffffc008942894 d .str.240.llvm.2839994057801121941
+ffffffc008942c09 d .str.24.llvm.5406210247544516271
+ffffffc008942c11 d .str.38.llvm.5406210247544516271
+ffffffc0089430a9 d .str.llvm.7434326271518807336
+ffffffc0089442ad d .str.2.llvm.15506451468879053990
+ffffffc0089442c2 d .str.33.llvm.17157443236990872785
+ffffffc0089442cf d .str.49.llvm.17157443236990872785
+ffffffc008944448 d .str.16.llvm.10828936644202131411
+ffffffc00894444f d .str.10.llvm.119440109613296993
+ffffffc0089444ee d .str.llvm.5548012332687123193
+ffffffc008944be8 d .str.38.llvm.10828936644202131411
+ffffffc008944bfb d .str.47.llvm.10828936644202131411
+ffffffc008944c06 d .str.53.llvm.10828936644202131411
+ffffffc008944c4d d .str.11.llvm.10828936644202131411
+ffffffc008944d52 d .str.24.llvm.10828936644202131411
+ffffffc008944dd9 d .str.17.llvm.10828936644202131411
+ffffffc008944de4 d .str.19.llvm.10828936644202131411
+ffffffc0089458da d .str.45.llvm.2839994057801121941
+ffffffc0089458e4 d .str.76.llvm.2839994057801121941
+ffffffc0089458ef d .str.87.llvm.2839994057801121941
+ffffffc0089458fd d .str.89.llvm.2839994057801121941
+ffffffc008945908 d .str.136.llvm.2839994057801121941
+ffffffc00894590f d .str.140.llvm.2839994057801121941
+ffffffc008945916 d .str.219.llvm.2839994057801121941
+ffffffc008945925 d .str.250.llvm.2839994057801121941
+ffffffc008945ac1 d .str.2.llvm.13385852690632021647
+ffffffc008945cc6 d .str.4.llvm.394536179053869618
+ffffffc008945ccf d .str.19.llvm.5406210247544516271
+ffffffc008946226 d .str.llvm.11290624885606263804
+ffffffc00894674f d .str.23.llvm.8514044982193009716
+ffffffc008946762 d .str.27.llvm.8514044982193009716
+ffffffc0089471e8 d .str.17.llvm.10184764501973911476
+ffffffc008947b70 d .str.63.llvm.10828936644202131411
+ffffffc008947e75 d .str.30.llvm.10828936644202131411
+ffffffc0089486fa d .str.17.llvm.2839994057801121941
+ffffffc008948702 d .str.31.llvm.2839994057801121941
+ffffffc00894870a d .str.256.llvm.2839994057801121941
+ffffffc008948717 d .str.257.llvm.2839994057801121941
+ffffffc008948722 d .str.269.llvm.2839994057801121941
+ffffffc008948a83 d .str.41.llvm.5406210247544516271
+ffffffc008948ef7 d .str.llvm.595817337993247225
+ffffffc00894a03c d .str.45.llvm.17157443236990872785
+ffffffc00894a9f9 d .str.61.llvm.10828936644202131411
+ffffffc00894ab81 d .str.29.llvm.10828936644202131411
+ffffffc00894b7c6 d .str.24.llvm.1325432341324286946
+ffffffc00894b7e9 d .str.9.llvm.2839994057801121941
+ffffffc00894b7f1 d .str.131.llvm.2839994057801121941
+ffffffc00894b7fa d .str.139.llvm.2839994057801121941
+ffffffc00894b801 d .str.158.llvm.2839994057801121941
+ffffffc00894b80c d .str.198.llvm.2839994057801121941
+ffffffc00894c5c2 d .str.7.llvm.8514044982193009716
+ffffffc00894c5d1 d .str.25.llvm.8514044982193009716
+ffffffc00894cb76 d .str.llvm.7310270503631090670
+ffffffc00894d3ea d .str.43.llvm.17157443236990872785
+ffffffc00894d3f8 d .str.47.llvm.17157443236990872785
+ffffffc00894d406 d .str.72.llvm.17157443236990872785
+ffffffc00894d434 d .str.21.llvm.10184764501973911476
+ffffffc00894de0b d .str.44.llvm.10828936644202131411
+ffffffc00894e01d d .str.84.llvm.10828936644202131411
+ffffffc00894e026 d .str.93.llvm.10828936644202131411
+ffffffc00894eade d .str.1.llvm.2839994057801121941
+ffffffc00894eae9 d .str.51.llvm.2839994057801121941
+ffffffc00894eaf5 d .str.61.llvm.2839994057801121941
+ffffffc00894eafc d .str.63.llvm.2839994057801121941
+ffffffc00894eb03 d .str.97.llvm.2839994057801121941
+ffffffc00894eb0c d .str.167.llvm.2839994057801121941
+ffffffc00894eb11 d .str.173.llvm.2839994057801121941
+ffffffc00894eb26 d .str.199.llvm.2839994057801121941
+ffffffc00894eb2d d .str.218.llvm.2839994057801121941
+ffffffc00894eb40 d .str.220.llvm.2839994057801121941
+ffffffc00894eb50 d .str.251.llvm.2839994057801121941
+ffffffc00894ebed d .str.7.llvm.13385852690632021647
+ffffffc00894eec5 d .str.8.llvm.5406210247544516271
+ffffffc00894eed5 d .str.40.llvm.5406210247544516271
+ffffffc00894f572 d k_cur.cur_chars
+ffffffc008950902 d .str.51.llvm.17157443236990872785
+ffffffc008950922 d .str.20.llvm.10184764501973911476
+ffffffc008951425 d .str.67.llvm.10828936644202131411
+ffffffc0089516b3 d .str.26.llvm.10828936644202131411
+ffffffc0089516c0 d .str.32.llvm.10828936644202131411
+ffffffc008951da6 d .str.123.llvm.2839994057801121941
+ffffffc008951f15 d .str.2.llvm.12018819166259637258
+ffffffc008951f6c d .str.12.llvm.1325432341324286946
+ffffffc008951fd5 d .str.32.llvm.2839994057801121941
+ffffffc008951fdd d .str.54.llvm.2839994057801121941
+ffffffc008951fec d .str.57.llvm.2839994057801121941
+ffffffc008951ff2 d .str.96.llvm.2839994057801121941
+ffffffc008951ffb d .str.114.llvm.2839994057801121941
+ffffffc008952008 d .str.144.llvm.2839994057801121941
+ffffffc008952011 d .str.162.llvm.2839994057801121941
+ffffffc008952015 d .str.203.llvm.2839994057801121941
+ffffffc008952019 d .str.235.llvm.2839994057801121941
+ffffffc00895232e d .str.12.llvm.5406210247544516271
+ffffffc00895233d d .str.45.llvm.5406210247544516271
+ffffffc008953027 d .str.17.llvm.8514044982193009716
+ffffffc008953a9f d .str.34.llvm.17157443236990872785
+ffffffc008953aae d .str.35.llvm.17157443236990872785
+ffffffc008953abb d .str.65.llvm.17157443236990872785
+ffffffc008953b31 d .str.5.llvm.10184764501973911476
+ffffffc008953b46 d .str.22.llvm.10184764501973911476
+ffffffc008953dae d .str.12.llvm.119440109613296993
+ffffffc008954079 d trunc_msg
+ffffffc008954611 d .str.46.llvm.10828936644202131411
+ffffffc0089548cf d .str.86.llvm.10828936644202131411
+ffffffc0089548da d .str.94.llvm.10828936644202131411
+ffffffc008955209 d .str.5.llvm.1325432341324286946
+ffffffc008955215 d .str.8.llvm.1325432341324286946
+ffffffc008955224 d .str.25.llvm.1325432341324286946
+ffffffc008955237 d .str.6.llvm.2839994057801121941
+ffffffc008955247 d .str.16.llvm.2839994057801121941
+ffffffc008955252 d .str.94.llvm.2839994057801121941
+ffffffc00895525c d .str.118.llvm.2839994057801121941
+ffffffc008955265 d .str.210.llvm.2839994057801121941
+ffffffc008955272 d .str.216.llvm.2839994057801121941
+ffffffc00895527a d .str.217.llvm.2839994057801121941
+ffffffc00895527e d .str.252.llvm.2839994057801121941
+ffffffc00895537f d .str.3.llvm.13385852690632021647
+ffffffc008955e5c d .str.9.llvm.8514044982193009716
+ffffffc008955e6b d .str.24.llvm.8514044982193009716
+ffffffc00895686b d .str.70.llvm.17157443236990872785
+ffffffc0089568be d .str.6.llvm.10184764501973911476
+ffffffc008957203 d .str.34.llvm.10828936644202131411
+ffffffc008957217 d .str.65.llvm.10828936644202131411
+ffffffc0089575c2 d .str.101.llvm.2839994057801121941
+ffffffc0089575c2 d .str.69.llvm.10828936644202131411
+ffffffc0089575c7 d .str.78.llvm.10828936644202131411
+ffffffc008958155 d .str.56.llvm.2839994057801121941
+ffffffc008958160 d .str.11.llvm.2839994057801121941
+ffffffc008958170 d .str.15.llvm.2839994057801121941
+ffffffc008958175 d .str.35.llvm.2839994057801121941
+ffffffc00895817c d .str.40.llvm.2839994057801121941
+ffffffc008958184 d .str.115.llvm.2839994057801121941
+ffffffc008958189 d .str.121.llvm.2839994057801121941
+ffffffc00895819a d .str.125.llvm.2839994057801121941
+ffffffc0089581a6 d .str.143.llvm.2839994057801121941
+ffffffc0089581af d .str.146.llvm.2839994057801121941
+ffffffc0089581b9 d .str.185.llvm.2839994057801121941
+ffffffc0089581c9 d .str.197.llvm.2839994057801121941
+ffffffc0089581df d .str.207.llvm.2839994057801121941
+ffffffc008958e2b d .str.8.llvm.8514044982193009716
+ffffffc008958e3a d .str.21.llvm.8514044982193009716
+ffffffc008959787 d .str.1.llvm.15306848999799627490
+ffffffc0089597c5 d .str.50.llvm.17157443236990872785
+ffffffc008959899 d .str.52.llvm.17157443236990872785
+ffffffc0089599d8 d .str.18.llvm.119440109613296993
+ffffffc00895a03b d .str.37.llvm.10828936644202131411
+ffffffc00895a044 d .str.42.llvm.10828936644202131411
+ffffffc00895a300 d .str.89.llvm.10828936644202131411
+ffffffc00895a623 d .str.129.llvm.2839994057801121941
+ffffffc00895acf9 d .str.16.llvm.1325432341324286946
+ffffffc00895ad0b d .str.17.llvm.1325432341324286946
+ffffffc00895ad28 d .str.26.llvm.2839994057801121941
+ffffffc00895ad30 d .str.44.llvm.2839994057801121941
+ffffffc00895ad3e d .str.53.llvm.2839994057801121941
+ffffffc00895ad4d d .str.142.llvm.2839994057801121941
+ffffffc00895ad54 d .str.180.llvm.2839994057801121941
+ffffffc00895ad68 d .str.204.llvm.2839994057801121941
+ffffffc00895ad6d d .str.236.llvm.2839994057801121941
+ffffffc00895b063 d .str.18.llvm.5406210247544516271
+ffffffc00895bbba d .str.16.llvm.8514044982193009716
+ffffffc00895bbca d .str.22.llvm.8514044982193009716
+ffffffc00895c11b d .str.llvm.13091352036548126779
+ffffffc00895c4d6 d .str.19.llvm.10184764501973911476
+ffffffc00895dcda d .str.1.llvm.1325432341324286946
+ffffffc00895dcf2 d .str.43.llvm.2839994057801121941
+ffffffc00895dcff d .str.122.llvm.2839994057801121941
+ffffffc00895dd0a d .str.156.llvm.2839994057801121941
+ffffffc00895dd19 d .str.159.llvm.2839994057801121941
+ffffffc00895dd2c d .str.191.llvm.2839994057801121941
+ffffffc00895dd37 d .str.205.llvm.2839994057801121941
+ffffffc00895dd43 d .str.206.llvm.2839994057801121941
+ffffffc00895dd73 d .str.5.llvm.17057028803095885502
+ffffffc00895df33 d .str.7.llvm.394536179053869618
+ffffffc00895f0a0 d .str.5.llvm.490999631721679793
+ffffffc00895f7ad d .str.1.llvm.4253098515854112094
+ffffffc00895f7ad d .str.2.llvm.8808484430526772073
+ffffffc00895f824 d .str.30.llvm.17157443236990872785
+ffffffc00895f853 d .str.9.llvm.10184764501973911476
+ffffffc00895f9bf d .str.91.llvm.10828936644202131411
+ffffffc008960122 d .str.1.llvm.7586756559919157470
+ffffffc00896033f d .str.41.llvm.10828936644202131411
+ffffffc00896034a d .str.48.llvm.10828936644202131411
+ffffffc008960357 d .str.54.llvm.10828936644202131411
+ffffffc008960365 d .str.56.llvm.10828936644202131411
+ffffffc00896064e d .str.14.llvm.10828936644202131411
+ffffffc008960654 d .str.31.llvm.10828936644202131411
+ffffffc008960fad d .str.10.llvm.1325432341324286946
+ffffffc008960fcc d .str.27.llvm.1325432341324286946
+ffffffc008961025 d .str.18.llvm.2839994057801121941
+ffffffc00896102d d .str.19.llvm.2839994057801121941
+ffffffc008961035 d .str.23.llvm.2839994057801121941
+ffffffc00896103e d .str.93.llvm.2839994057801121941
+ffffffc00896104a d .str.116.llvm.2839994057801121941
+ffffffc008961052 d .str.119.llvm.2839994057801121941
+ffffffc008961062 d .str.128.llvm.2839994057801121941
+ffffffc008961068 d .str.150.llvm.2839994057801121941
+ffffffc008961073 d .str.181.llvm.2839994057801121941
+ffffffc00896108a d .str.222.llvm.2839994057801121941
+ffffffc008961095 d .str.246.llvm.2839994057801121941
+ffffffc008961381 d .str.1.llvm.394536179053869618
+ffffffc00896138a d .str.5.llvm.394536179053869618
+ffffffc0089613a2 d .str.25.llvm.5406210247544516271
+ffffffc0089613aa d .str.39.llvm.5406210247544516271
+ffffffc008961e43 d .str.5.llvm.8514044982193009716
+ffffffc0089627fc d .str.6.llvm.17157443236990872785
+ffffffc008962807 d .str.59.llvm.17157443236990872785
+ffffffc008963203 d .str.271.llvm.2839994057801121941
+ffffffc00896347f d .str.74.llvm.10828936644202131411
+ffffffc008963638 d .str.9.llvm.4253429566290024804
+ffffffc008963ea8 d .str.20.llvm.2839994057801121941
+ffffffc008963eb0 d .str.24.llvm.2839994057801121941
+ffffffc008963eb9 d .str.36.llvm.2839994057801121941
+ffffffc008963ec3 d .str.37.llvm.2839994057801121941
+ffffffc008963ecd d .str.66.llvm.2839994057801121941
+ffffffc008963edd d .str.161.llvm.2839994057801121941
+ffffffc008963eef d .str.200.llvm.2839994057801121941
+ffffffc008963ef4 d .str.213.llvm.2839994057801121941
+ffffffc008964105 d .str.2.llvm.5406210247544516271
+ffffffc00896410c d .str.30.llvm.5406210247544516271
+ffffffc008964c01 d .str.28.llvm.8514044982193009716
+ffffffc0089656f6 d .str.62.llvm.17157443236990872785
+ffffffc008965712 d .str.23.llvm.10184764501973911476
+ffffffc0089658e5 d .str.llvm.7598746512580425016
+ffffffc008965e1d d .str.22.llvm.10828936644202131411
+ffffffc00896632a d .str.77.llvm.10828936644202131411
+ffffffc008966334 d .str.90.llvm.10828936644202131411
+ffffffc008966e35 d .str.33.llvm.2839994057801121941
+ffffffc008966e41 d .str.41.llvm.2839994057801121941
+ffffffc008966e4b d .str.83.llvm.2839994057801121941
+ffffffc008966e5a d .str.84.llvm.2839994057801121941
+ffffffc008966e60 d .str.141.llvm.2839994057801121941
+ffffffc008966e67 d .str.179.llvm.2839994057801121941
+ffffffc0089670c9 d .str.6.llvm.5406210247544516271
+ffffffc0089670d2 d .str.16.llvm.5406210247544516271
+ffffffc00896875e d .str.21.llvm.10828936644202131411
+ffffffc0089687c2 d .str.54.llvm.17157443236990872785
+ffffffc0089687ce d .str.66.llvm.17157443236990872785
+ffffffc008968b1a d .str.14.llvm.119440109613296993
+ffffffc008968b20 d .str.19.llvm.119440109613296993
+ffffffc00896970e d .str.76.llvm.10828936644202131411
+ffffffc008969717 d .str.79.llvm.10828936644202131411
+ffffffc008969722 d .str.92.llvm.10828936644202131411
+ffffffc00896973b d .str.llvm.8370740283577704413
+ffffffc008969745 d .str.3.llvm.8370740283577704413
+ffffffc008969c14 d .str.llvm.7209184343976523952
+ffffffc00896a0be d .str.4.llvm.12592449794136660960
+ffffffc00896a258 d .str.13.llvm.2839994057801121941
+ffffffc00896a267 d .str.29.llvm.2839994057801121941
+ffffffc00896a26e d .str.42.llvm.2839994057801121941
+ffffffc00896a277 d .str.69.llvm.2839994057801121941
+ffffffc00896a281 d .str.82.llvm.2839994057801121941
+ffffffc00896a28a d .str.110.llvm.2839994057801121941
+ffffffc00896a291 d .str.174.llvm.2839994057801121941
+ffffffc00896a29c d .str.211.llvm.2839994057801121941
+ffffffc00896a2a6 d .str.223.llvm.2839994057801121941
+ffffffc00896a2b3 d .str.254.llvm.2839994057801121941
+ffffffc00896a2be d .str.276.llvm.2839994057801121941
+ffffffc00896a38a d .str.5.llvm.13385852690632021647
+ffffffc00896a53d d .str.27.llvm.5406210247544516271
+ffffffc00896b10f d .str.26.llvm.8514044982193009716
+ffffffc00896baf0 d .str.71.llvm.17157443236990872785
+ffffffc00896bb15 d .str.2.llvm.10184764501973911476
+ffffffc00896bd16 d .str.13.llvm.119440109613296993
+ffffffc00896c4e9 d .str.99.llvm.2839994057801121941
+ffffffc00896c4f1 d .str.57.llvm.10828936644202131411
+ffffffc00896c884 d .str.13.llvm.10828936644202131411
+ffffffc00896c8de d .str.4.llvm.8370740283577704413
+ffffffc00896d389 d .str.6.llvm.1325432341324286946
+ffffffc00896d39b d .str.21.llvm.1325432341324286946
+ffffffc00896d3cd d .str.4.llvm.2839994057801121941
+ffffffc00896d3db d .str.59.llvm.2839994057801121941
+ffffffc00896d3eb d .str.111.llvm.2839994057801121941
+ffffffc00896d3f3 d .str.196.llvm.2839994057801121941
+ffffffc00896d407 d .str.201.llvm.2839994057801121941
+ffffffc00896d412 d .str.268.llvm.2839994057801121941
+ffffffc00896d730 d .str.35.llvm.5406210247544516271
+ffffffc00896d739 d .str.36.llvm.5406210247544516271
+ffffffc00896ea31 d .str.31.llvm.17157443236990872785
+ffffffc00896ea4d d .str.3.llvm.10184764501973911476
+ffffffc00896ec12 d .str.20.llvm.13573170903030736903
+ffffffc00896f3aa d .str.59.llvm.10828936644202131411
+ffffffc00896f4bb d .str.274.llvm.2839994057801121941
+ffffffc00896f736 d .str.9.llvm.10828936644202131411
+ffffffc00896f73d d .str.97.llvm.10828936644202131411
+ffffffc00897032d d .str.29.llvm.1325432341324286946
+ffffffc00897033d d .str.38.llvm.2839994057801121941
+ffffffc00897034b d .str.70.llvm.2839994057801121941
+ffffffc008970353 d .str.208.llvm.2839994057801121941
+ffffffc008970358 d .str.215.llvm.2839994057801121941
+ffffffc008970363 d .str.224.llvm.2839994057801121941
+ffffffc00897036a d .str.263.llvm.2839994057801121941
+ffffffc008970378 d .str.277.llvm.2839994057801121941
+ffffffc008970387 d .str.279.llvm.2839994057801121941
+ffffffc008970993 d .str.10.llvm.7246154809468623121
+ffffffc008970b3d d k_pad.app_map
+ffffffc00897125a d .str.4.llvm.8514044982193009716
+ffffffc00897125e d .str.18.llvm.8514044982193009716
+ffffffc008971282 d .str.llvm.5818914303303447587
+ffffffc0089713a7 d .str.9.llvm.13320531852100528006
+ffffffc008971aa7 d .str.llvm.15306848999799627490
+ffffffc008971ad4 d .str.53.llvm.17157443236990872785
+ffffffc008971c56 d .str.46.llvm.17157443236990872785
+ffffffc008971c75 d .str.11.llvm.10184764501973911476
+ffffffc008971fc8 d .str.11.llvm.119440109613296993
+ffffffc008972090 d .str.llvm.1325432341324286946
+ffffffc008972769 d .str.39.llvm.10828936644202131411
+ffffffc008972a2a d .str.85.llvm.10828936644202131411
+ffffffc008972a68 d .str.2.llvm.8370740283577704413
+ffffffc00897345e d .str.9.llvm.1325432341324286946
+ffffffc0089734c1 d .str.12.llvm.2839994057801121941
+ffffffc0089734cd d .str.71.llvm.2839994057801121941
+ffffffc0089734d6 d .str.75.llvm.2839994057801121941
+ffffffc0089734e1 d .str.79.llvm.2839994057801121941
+ffffffc0089734ea d .str.92.llvm.2839994057801121941
+ffffffc0089734f2 d .str.145.llvm.2839994057801121941
+ffffffc0089734f9 d .str.147.llvm.2839994057801121941
+ffffffc008973504 d .str.176.llvm.2839994057801121941
+ffffffc008973513 d .str.192.llvm.2839994057801121941
+ffffffc00897351c d .str.225.llvm.2839994057801121941
+ffffffc008973528 d .str.244.llvm.2839994057801121941
+ffffffc008973533 d .str.260.llvm.2839994057801121941
+ffffffc0089738a6 d .str.3.llvm.5406210247544516271
+ffffffc0089738ac d .str.4.llvm.5406210247544516271
+ffffffc0089738b7 d .str.37.llvm.5406210247544516271
+ffffffc0089744ef d .str.1.llvm.8514044982193009716
+ffffffc0089744f5 d .str.14.llvm.8514044982193009716
+ffffffc008974b61 d .str.1.llvm.7310270503631090670
+ffffffc008974e08 d .str.llvm.18192276436854584967
+ffffffc00897509d d .str.1.llvm.15506451468879053990
+ffffffc00897515d d .str.64.llvm.17157443236990872785
+ffffffc008975173 d .str.68.llvm.17157443236990872785
+ffffffc0089751c4 d .str.llvm.4824799507522487400
+ffffffc00897537f d .str.17.llvm.119440109613296993
+ffffffc0089755f2 d .str.166.llvm.2839994057801121941
+ffffffc008975ca6 d .str.36.llvm.10828936644202131411
+ffffffc008975cb3 d .str.43.llvm.10828936644202131411
+ffffffc008975cbe d .str.52.llvm.10828936644202131411
+ffffffc008975cd2 d .str.60.llvm.10828936644202131411
+ffffffc0089760d0 d .str.102.llvm.2839994057801121941
+ffffffc0089760d0 d .str.70.llvm.10828936644202131411
+ffffffc0089760d6 d .str.71.llvm.10828936644202131411
+ffffffc0089760db d .str.72.llvm.10828936644202131411
+ffffffc0089760e2 d .str.73.llvm.10828936644202131411
+ffffffc008976cfb d .str.3.llvm.1325432341324286946
+ffffffc008976d10 d .str.4.llvm.1325432341324286946
+ffffffc008976d29 d .str.7.llvm.1325432341324286946
+ffffffc008976d53 d .str.90.llvm.2839994057801121941
+ffffffc008976d59 d .str.95.llvm.2839994057801121941
+ffffffc008976d63 d .str.107.llvm.2839994057801121941
+ffffffc008976d67 d .str.117.llvm.2839994057801121941
+ffffffc008976d73 d .str.195.llvm.2839994057801121941
+ffffffc008976d90 d .str.261.llvm.2839994057801121941
+ffffffc008976d97 d .str.280.llvm.2839994057801121941
+ffffffc008976ea4 d .str.llvm.5228486089277653777
+ffffffc0089770b3 d .str.3.llvm.394536179053869618
+ffffffc008977113 d .str.5.llvm.5406210247544516271
+ffffffc00897711f d .str.21.llvm.5406210247544516271
+ffffffc0089776d1 d pty_line_name.ptychar
+ffffffc008977d8c d .str.llvm.3341469626979944368
+ffffffc008977d93 d .str.5.llvm.3341469626979944368
+ffffffc0089781ad d .str.llvm.6860115153151991603
+ffffffc008978689 d .str.38.llvm.17157443236990872785
+ffffffc0089786bc d .str.4.llvm.10184764501973911476
+ffffffc008978843 d .str.16.llvm.119440109613296993
+ffffffc008979066 d .str.81.llvm.10828936644202131411
+ffffffc0089799c6 d .str.18.llvm.1325432341324286946
+ffffffc008979a4c d .str.88.llvm.2839994057801121941
+ffffffc008979a54 d .str.154.llvm.2839994057801121941
+ffffffc008979a5c d .str.163.llvm.2839994057801121941
+ffffffc008979b18 d .str.6.llvm.13385852690632021647
+ffffffc008979ccf d .str.1.llvm.5406210247544516271
+ffffffc008979cd5 d .str.47.llvm.5406210247544516271
+ffffffc00897a34c d .str.llvm.6051529183915091818
+ffffffc00897b19d d .str.41.llvm.17157443236990872785
+ffffffc00897b1a1 d .str.61.llvm.17157443236990872785
+ffffffc00897b1e3 d .str.18.llvm.10184764501973911476
+ffffffc00897bbea d .str.62.llvm.10828936644202131411
+ffffffc00897be92 d .str.80.llvm.10828936644202131411
+ffffffc00897be99 d .str.82.llvm.10828936644202131411
+ffffffc00897c4ff d .str.49.llvm.2839994057801121941
+ffffffc00897cb8b d .str.19.llvm.1325432341324286946
+ffffffc00897cba0 d .str.26.llvm.1325432341324286946
+ffffffc00897cc04 d .str.8.llvm.2839994057801121941
+ffffffc00897cc0f d .str.148.llvm.2839994057801121941
+ffffffc00897cc19 d .str.178.llvm.2839994057801121941
+ffffffc00897cc30 d .str.194.llvm.2839994057801121941
+ffffffc00897cc47 d .str.214.llvm.2839994057801121941
+ffffffc00897cc55 d .str.227.llvm.2839994057801121941
+ffffffc00897cc65 d .str.229.llvm.2839994057801121941
+ffffffc00897cc70 d .str.264.llvm.2839994057801121941
+ffffffc00897cffb d .str.14.llvm.5406210247544516271
+ffffffc00897d008 d .str.28.llvm.5406210247544516271
+ffffffc00897d010 d .str.44.llvm.5406210247544516271
+ffffffc00897d019 d .str.46.llvm.5406210247544516271
+ffffffc00897daa7 d .str.13.llvm.8514044982193009716
+ffffffc00897e1f7 d .str.3.llvm.8973886849767798862
+ffffffc00897f3b8 d .str.17.llvm.12217046244500857986
+ffffffc00897fd14 d .str.2.llvm.2839994057801121941
+ffffffc00897fd23 d .str.27.llvm.2839994057801121941
+ffffffc00897fd2b d .str.98.llvm.2839994057801121941
+ffffffc00897fd31 d .str.104.llvm.2839994057801121941
+ffffffc00897fd39 d .str.113.llvm.2839994057801121941
+ffffffc00897fd41 d .str.151.llvm.2839994057801121941
+ffffffc00897fd4e d .str.155.llvm.2839994057801121941
+ffffffc00897fd55 d .str.169.llvm.2839994057801121941
+ffffffc00897fd5a d .str.175.llvm.2839994057801121941
+ffffffc00897fd66 d .str.177.llvm.2839994057801121941
+ffffffc00897fd75 d .str.184.llvm.2839994057801121941
+ffffffc00897fd81 d .str.189.llvm.2839994057801121941
+ffffffc00897fd95 d .str.231.llvm.2839994057801121941
+ffffffc008980b03 d .str.12.llvm.8514044982193009716
+ffffffc008981376 d .str.llvm.10184764501973911476
+ffffffc0089813a3 d .str.13.llvm.10184764501973911476
+ffffffc0089814b3 d .str.llvm.4620605711985391676
+ffffffc0089817fa d .str.1.llvm.6705054073016716196
+ffffffc008982868 d .str.llvm.7236256543490611112
+ffffffc008982f82 d .str.13.llvm.1325432341324286946
+ffffffc008982f9b d .str.23.llvm.1325432341324286946
+ffffffc008982fbd d .str.10.llvm.2839994057801121941
+ffffffc008982fc9 d .str.47.llvm.2839994057801121941
+ffffffc008982fd8 d .str.55.llvm.2839994057801121941
+ffffffc008982fe4 d .str.72.llvm.2839994057801121941
+ffffffc008982fee d .str.130.llvm.2839994057801121941
+ffffffc008982ff2 d .str.134.llvm.2839994057801121941
+ffffffc008982ffc d .str.221.llvm.2839994057801121941
+ffffffc00898300c d .str.232.llvm.2839994057801121941
+ffffffc008983018 d .str.267.llvm.2839994057801121941
+ffffffc0089830af d .str.llvm.13385852690632021647
+ffffffc00898331c d .str.9.llvm.5406210247544516271
+ffffffc008983324 d .str.48.llvm.5406210247544516271
+ffffffc00898377c d k_pad.pad_chars
+ffffffc008983d3e d .str.6.llvm.8514044982193009716
+ffffffc008984811 d .str.12.llvm.10184764501973911476
+ffffffc0089848e8 d .str.1.llvm.10074570819090284717
+ffffffc008984b6e d .str.3.llvm.15839233575021980101
+ffffffc008984d1f d .str.212.llvm.2839994057801121941
+ffffffc0089855c3 d .str.96.llvm.10828936644202131411
+ffffffc008985fef d .str.126.llvm.2839994057801121941
+ffffffc008985ff8 d .str.153.llvm.2839994057801121941
+ffffffc008985ffe d .str.242.llvm.2839994057801121941
+ffffffc00898600a d .str.247.llvm.2839994057801121941
+ffffffc008986343 d .str.13.llvm.5406210247544516271
+ffffffc00898634a d .str.15.llvm.5406210247544516271
+ffffffc00898786e d .str.32.llvm.17157443236990872785
+ffffffc00898787e d .str.69.llvm.17157443236990872785
+ffffffc008987c09 d task_index_to_char.state_char
+ffffffc008987c09 d task_index_to_char.state_char
+ffffffc008987c09 d task_index_to_char.state_char
+ffffffc008987c09 d task_index_to_char.state_char
+ffffffc0089882a3 d .str.33.llvm.10828936644202131411
+ffffffc0089882b1 d .str.35.llvm.10828936644202131411
+ffffffc0089882c6 d .str.40.llvm.10828936644202131411
+ffffffc0089882cf d .str.45.llvm.10828936644202131411
+ffffffc0089882dd d .str.64.llvm.10828936644202131411
+ffffffc008988a96 d .str.12.llvm.7209184343976523952
+ffffffc008988fee d .str.15.llvm.1325432341324286946
+ffffffc008988ffd d .str.28.llvm.2839994057801121941
+ffffffc008989004 d .str.168.llvm.2839994057801121941
+ffffffc00898900c d .str.182.llvm.2839994057801121941
+ffffffc008989021 d .str.183.llvm.2839994057801121941
+ffffffc008989036 d .str.209.llvm.2839994057801121941
+ffffffc008989042 d .str.238.llvm.2839994057801121941
+ffffffc00898904e d .str.266.llvm.2839994057801121941
+ffffffc0089892f6 d .str.2.llvm.394536179053869618
+ffffffc0089893ff d .str.llvm.5406210247544516271
+ffffffc008989403 d .str.7.llvm.5406210247544516271
+ffffffc00898940f d .str.20.llvm.5406210247544516271
+ffffffc00898941c d .str.29.llvm.5406210247544516271
+ffffffc008989422 d .str.34.llvm.5406210247544516271
+ffffffc00898afeb d .str.llvm.15597034190159369793
+ffffffc00898b485 d .str.51.llvm.10828936644202131411
+ffffffc00898b89f d .str.23.llvm.10828936644202131411
+ffffffc00898b8a9 d .str.87.llvm.10828936644202131411
+ffffffc00898c1a0 d .str.14.llvm.1325432341324286946
+ffffffc00898c1ce d .str.7.llvm.2839994057801121941
+ffffffc00898c1db d .str.22.llvm.2839994057801121941
+ffffffc00898c1e2 d .str.50.llvm.2839994057801121941
+ffffffc00898c1eb d .str.133.llvm.2839994057801121941
+ffffffc00898c1f4 d .str.171.llvm.2839994057801121941
+ffffffc00898c1f8 d .str.190.llvm.2839994057801121941
+ffffffc00898c204 d .str.237.llvm.2839994057801121941
+ffffffc00898c20f d .str.245.llvm.2839994057801121941
+ffffffc00898c21a d .str.258.llvm.2839994057801121941
+ffffffc00898c565 d .str.11.llvm.5406210247544516271
+ffffffc00898c56d d .str.32.llvm.5406210247544516271
+ffffffc00898d05a d .str.15.llvm.8514044982193009716
+ffffffc00898da47 d .str.45.llvm.7237144372136711134
+ffffffc00898da9e d .str.44.llvm.17157443236990872785
+ffffffc00898daac d .str.63.llvm.17157443236990872785
+ffffffc00898db44 d .str.1.llvm.10184764501973911476
+ffffffc00898ddb5 d .str.272.llvm.2839994057801121941
+ffffffc00898df96 d .str.22.llvm.5406210247544516271
+ffffffc00898e452 d .str.58.llvm.10828936644202131411
+ffffffc00898e715 d .str.75.llvm.10828936644202131411
+ffffffc00898f136 d .str.2.llvm.1325432341324286946
+ffffffc00898f149 d .str.20.llvm.1325432341324286946
+ffffffc00898f153 d .str.48.llvm.2839994057801121941
+ffffffc00898f165 d .str.62.llvm.2839994057801121941
+ffffffc00898f16a d .str.109.llvm.2839994057801121941
+ffffffc00898f16f d .str.120.llvm.2839994057801121941
+ffffffc00898f17b d .str.160.llvm.2839994057801121941
+ffffffc00898f185 d .str.172.llvm.2839994057801121941
+ffffffc00898f189 d .str.226.llvm.2839994057801121941
+ffffffc00898f18e d .str.243.llvm.2839994057801121941
+ffffffc00898f19b d .str.248.llvm.2839994057801121941
+ffffffc00898f1a7 d .str.255.llvm.2839994057801121941
+ffffffc00898f252 d .str.4.llvm.13385852690632021647
+ffffffc00898f42a d .str.33.llvm.5406210247544516271
+ffffffc00898f42e d .str.42.llvm.5406210247544516271
+ffffffc00898f437 d .str.43.llvm.5406210247544516271
+ffffffc00898f77a d .str.11.llvm.7246154809468623121
+ffffffc0089900a7 d .str.1.llvm.2088446206789591054
+ffffffc00899095d d .str.37.llvm.17157443236990872785
+ffffffc008990963 d .str.56.llvm.17157443236990872785
+ffffffc008990975 d .str.58.llvm.17157443236990872785
+ffffffc00899098a d .str.14.llvm.10184764501973911476
+ffffffc0089914c7 d .str.55.llvm.10828936644202131411
+ffffffc00899194f d .str.12.llvm.10828936644202131411
+ffffffc00899195a d .str.25.llvm.10828936644202131411
+ffffffc008992467 d .str.11.llvm.1325432341324286946
+ffffffc0089924a3 d .str.30.llvm.2839994057801121941
+ffffffc0089924a9 d .str.39.llvm.2839994057801121941
+ffffffc0089924b4 d .str.67.llvm.2839994057801121941
+ffffffc0089924c5 d .str.80.llvm.2839994057801121941
+ffffffc0089924ce d .str.106.llvm.2839994057801121941
+ffffffc0089924d5 d .str.149.llvm.2839994057801121941
+ffffffc0089924e2 d .str.165.llvm.2839994057801121941
+ffffffc0089924ed d .str.234.llvm.2839994057801121941
+ffffffc0089924f8 d .str.241.llvm.2839994057801121941
+ffffffc008992503 d .str.259.llvm.2839994057801121941
+ffffffc00899250e d .str.278.llvm.2839994057801121941
+ffffffc008992685 d .str.1.llvm.13385852690632021647
+ffffffc0089928d2 d .str.31.llvm.5406210247544516271
+ffffffc0089937f2 d __func__.net_ratelimit.llvm.7310199626326219398
+ffffffc008993e35 d .str.48.llvm.17157443236990872785
+ffffffc00899407a d .str.15.llvm.119440109613296993
+ffffffc0089941b7 d .str.llvm.12911736169370296521
+ffffffc0089942c4 d .str.llvm.13667559978278320452
+ffffffc008994768 d .str.15.llvm.10828936644202131411
+ffffffc008994a6b d .str.1.llvm.8370740283577704413
+ffffffc00899558f d .str.46.llvm.2839994057801121941
+ffffffc008995598 d .str.58.llvm.2839994057801121941
+ffffffc0089955a5 d .str.64.llvm.2839994057801121941
+ffffffc0089955ac d .str.68.llvm.2839994057801121941
+ffffffc0089955ba d .str.100.llvm.2839994057801121941
+ffffffc0089955c0 d .str.124.llvm.2839994057801121941
+ffffffc0089955c9 d .str.135.llvm.2839994057801121941
+ffffffc0089955d3 d .str.137.llvm.2839994057801121941
+ffffffc0089955d8 d .str.157.llvm.2839994057801121941
+ffffffc0089955e6 d .str.164.llvm.2839994057801121941
+ffffffc0089955f0 d .str.186.llvm.2839994057801121941
+ffffffc00899560a d .str.202.llvm.2839994057801121941
+ffffffc008995886 d .str.10.llvm.5406210247544516271
+ffffffc008996226 d .str.2.llvm.8514044982193009716
+ffffffc00899622f d .str.10.llvm.8514044982193009716
+ffffffc00899623e d .str.11.llvm.8514044982193009716
+ffffffc008996243 d .str.20.llvm.8514044982193009716
+ffffffc008997005 d .str.15.llvm.10184764501973911476
+ffffffc008997404 d .str.23.llvm.5406210247544516271
+ffffffc00899741e d .str.2.llvm.13667559978278320452
+ffffffc008997c19 d .str.20.llvm.10828936644202131411
+ffffffc00899856e d .str.3.llvm.2839994057801121941
+ffffffc00899857d d .str.21.llvm.2839994057801121941
+ffffffc008998584 d .str.25.llvm.2839994057801121941
+ffffffc00899858f d .str.60.llvm.2839994057801121941
+ffffffc008998596 d .str.73.llvm.2839994057801121941
+ffffffc0089985a1 d .str.78.llvm.2839994057801121941
+ffffffc0089985ab d .str.91.llvm.2839994057801121941
+ffffffc0089985b3 d .str.105.llvm.2839994057801121941
+ffffffc0089985b8 d .str.127.llvm.2839994057801121941
+ffffffc0089985bf d .str.249.llvm.2839994057801121941
+ffffffc0089985cc d .str.270.llvm.2839994057801121941
+ffffffc0089985d8 d .str.275.llvm.2839994057801121941
+ffffffc008998960 d .str.17.llvm.5406210247544516271
+ffffffc008998f0d d .str.22.llvm.6790867041058039520
+ffffffc008999165 d .str.19.llvm.8514044982193009716
+ffffffc008999b40 d .str.273.llvm.2839994057801121941
+ffffffc008999b40 d .str.llvm.6705054073016716196
+ffffffc008999bfa d .str.55.llvm.17157443236990872785
+ffffffc008999c49 d .str.16.llvm.10184764501973911476
+ffffffc008999c82 d .str.24.llvm.10184764501973911476
+ffffffc008999d9e d .str.llvm.13294162302897432044
+ffffffc00899a533 d .str.49.llvm.10828936644202131411
+ffffffc00899a53c d .str.66.llvm.10828936644202131411
+ffffffc00899a7c9 d .str.27.llvm.10828936644202131411
+ffffffc00899a7ec d .str.18.llvm.12217046244500857986
+ffffffc00899b3dd d .str.5.llvm.2839994057801121941
+ffffffc00899b3e9 d .str.34.llvm.2839994057801121941
+ffffffc00899b3f4 d .str.253.llvm.2839994057801121941
+ffffffc00899b64e d .str.26.llvm.5406210247544516271
+ffffffc00899c086 d .str.29.llvm.8514044982193009716
+ffffffc00899cab9 d .str.36.llvm.17157443236990872785
+ffffffc00899cac6 d .str.57.llvm.17157443236990872785
+ffffffc00899cad3 d .str.67.llvm.17157443236990872785
+ffffffc00899cf22 d .str.11.llvm.13667559978278320452
+ffffffc00899d537 d .str.50.llvm.10828936644202131411
+ffffffc00899d616 d .str.llvm.6169229261187563557
+ffffffc00899d82b d .str.28.llvm.10828936644202131411
+ffffffc00899d836 d .str.83.llvm.10828936644202131411
+ffffffc00899d83e d .str.95.llvm.10828936644202131411
+ffffffc00899dabd d .str.85.llvm.2839994057801121941
+ffffffc00899e094 d .str.llvm.14613504075069117453
+ffffffc00899e184 d .str.llvm.2839994057801121941
+ffffffc00899e18d d .str.74.llvm.2839994057801121941
+ffffffc00899e197 d .str.86.llvm.2839994057801121941
+ffffffc00899e1a3 d .str.112.llvm.2839994057801121941
+ffffffc00899e1ab d .str.228.llvm.2839994057801121941
+ffffffc00899e1b4 d .str.239.llvm.2839994057801121941
+ffffffc00899e1c2 d .str.265.llvm.2839994057801121941
+ffffffc00899e35e d .str.llvm.394536179053869618
+ffffffc00899e36a d .str.6.llvm.394536179053869618
+ffffffc00899fbed d .str.7.llvm.17157443236990872785
+ffffffc00899fbf9 d .str.39.llvm.17157443236990872785
+ffffffc00899fbfd d .str.42.llvm.17157443236990872785
+ffffffc00899fc07 d .str.60.llvm.17157443236990872785
+ffffffc00899ffed d .str.3.llvm.8514044982193009716
+ffffffc0089a0017 d .str.152.llvm.2839994057801121941
+ffffffc0089a04cf d .str.68.llvm.10828936644202131411
+ffffffc0089a11b5 d .str.14.llvm.2839994057801121941
+ffffffc0089a11bd d .str.52.llvm.2839994057801121941
+ffffffc0089a11c8 d .str.65.llvm.2839994057801121941
+ffffffc0089a11d0 d .str.77.llvm.2839994057801121941
+ffffffc0089a11da d .str.103.llvm.2839994057801121941
+ffffffc0089a11e1 d .str.108.llvm.2839994057801121941
+ffffffc0089a11e8 d .str.170.llvm.2839994057801121941
+ffffffc0089a11f0 d .str.187.llvm.2839994057801121941
+ffffffc0089a1209 d .str.233.llvm.2839994057801121941
+ffffffc0089a1215 d .str.262.llvm.2839994057801121941
+ffffffc0089a2380 d .str.2.llvm.14826820588835570254
+ffffffc0089a2579 d str__initcall__trace_system_name
+ffffffc0089a2582 d __param_str_initcall_debug
+ffffffc0089a2591 D linux_proc_banner
+ffffffc0089a27d0 d mt_min_slots
+ffffffc0089a27d8 d mt_pivots
+ffffffc0089a27dc d mt_slots
+ffffffc0089a29c8 d btypes
+ffffffc0089a29e8 d str__raw_syscalls__trace_system_name
+ffffffc0089a29f8 d regoffset_table
+ffffffc0089a2c38 d user_aarch64_view.llvm.7237144372136711134
+ffffffc0089a2c58 d aarch64_regsets.llvm.7237144372136711134
+ffffffc0089a2ef8 D sys_call_table
+ffffffc0089a3d50 D aarch32_opcode_cond_checks
+ffffffc0089a3dd0 d esr_class_str.llvm.17157443236990872785
+ffffffc0089a3fd0 D cpu_psci_ops
+ffffffc0089a4018 D cpuinfo_op
+ffffffc0089a4038 d hwcap_str
+ffffffc0089a4348 d cpuregs_attr_group
+ffffffc0089a4370 d sme_cpuregs_attr_group
+ffffffc0089a4398 D cavium_erratum_27456_cpus
+ffffffc0089a43bc d workaround_clean_cache.llvm.10184764501973911476
+ffffffc0089a43e0 d erratum_843419_list.llvm.10184764501973911476
+ffffffc0089a44a0 d cavium_erratum_23154_cpus.llvm.10184764501973911476
+ffffffc0089a4518 d cavium_erratum_30115_cpus.llvm.10184764501973911476
+ffffffc0089a4548 d qcom_erratum_1003_list.llvm.10184764501973911476
+ffffffc0089a4608 d arm64_repeat_tlbi_list.llvm.10184764501973911476
+ffffffc0089a47c8 d erratum_speculative_at_list.llvm.10184764501973911476
+ffffffc0089a4810 d erratum_1463225.llvm.10184764501973911476
+ffffffc0089a4834 d tx2_family_cpus.llvm.10184764501973911476
+ffffffc0089a4858 d tsb_flush_fail_cpus.llvm.10184764501973911476
+ffffffc0089a4880 D arm64_errata
+ffffffc0089a4f20 d ftr_ctr
+ffffffc0089a4ff8 d compat_elf_hwcaps
+ffffffc0089a5038 d arm64_ftr_regs
+ffffffc0089a52a8 d ftr_id_pfr0
+ffffffc0089a5350 d ftr_id_pfr1
+ffffffc0089a5428 d ftr_id_dfr0
+ffffffc0089a54e8 d ftr_id_mmfr0
+ffffffc0089a55c0 d ftr_generic_32bits
+ffffffc0089a5698 d ftr_id_isar0
+ffffffc0089a5758 d ftr_id_isar4
+ffffffc0089a5830 d ftr_id_isar5
+ffffffc0089a58d8 d ftr_id_mmfr4
+ffffffc0089a59b0 d ftr_id_isar6
+ffffffc0089a5a70 d ftr_mvfr0
+ffffffc0089a5b48 d ftr_mvfr1
+ffffffc0089a5c20 d ftr_mvfr2
+ffffffc0089a5c68 d ftr_id_pfr2
+ffffffc0089a5cb0 d ftr_id_dfr1
+ffffffc0089a5ce0 d ftr_id_mmfr5
+ffffffc0089a5d10 d ftr_id_aa64pfr0
+ffffffc0089a5e90 d ftr_id_aa64pfr1
+ffffffc0089a5f38 d ftr_id_aa64zfr0
+ffffffc0089a6028 d ftr_id_aa64smfr0
+ffffffc0089a60e8 d ftr_id_aa64dfr0
+ffffffc0089a61a8 d ftr_raz
+ffffffc0089a61c0 d ftr_id_aa64isar0
+ffffffc0089a6328 d ftr_id_aa64isar1
+ffffffc0089a6490 d ftr_id_aa64isar2
+ffffffc0089a6520 d ftr_id_aa64mmfr0
+ffffffc0089a6688 d ftr_id_aa64mmfr1
+ffffffc0089a67c0 d ftr_id_aa64mmfr2
+ffffffc0089a6940 d ftr_zcr
+ffffffc0089a6970 d ftr_smcr
+ffffffc0089a69a0 d ftr_gmid
+ffffffc0089a69d0 d ftr_dczid
+ffffffc0089a6a18 d ftr_single32
+ffffffc0089a6a48 d arm64_features
+ffffffc0089a7548 d dev_attr_aarch32_el0
+ffffffc0089a7568 d arm64_elf_hwcaps
+ffffffc0089a85a8 d ptr_auth_hwcap_addr_matches
+ffffffc0089a86a8 d ptr_auth_hwcap_gen_matches
+ffffffc0089a87a8 d kernel_alternatives
+ffffffc0089a87d0 d str__ipi__trace_system_name
+ffffffc0089a87d8 D smp_spin_table_ops
+ffffffc0089a8840 d spectre_v4_params
+ffffffc0089a8ee0 d armv8_pmu_of_device_ids
+ffffffc0089aa330 d armv8_pmuv3_events_attr_group
+ffffffc0089aa358 d armv8_pmuv3_format_attr_group
+ffffffc0089aa380 d armv8_pmuv3_caps_attr_group
+ffffffc0089aa3a8 d armv8_pmuv3_perf_map
+ffffffc0089aa3d0 d armv8_pmuv3_perf_cache_map
+ffffffc0089aa478 d armv8_a53_perf_cache_map
+ffffffc0089aa520 d armv8_a57_perf_cache_map
+ffffffc0089aa5c8 d armv8_a73_perf_cache_map
+ffffffc0089aa670 d armv8_thunder_perf_cache_map
+ffffffc0089aa718 d armv8_vulcan_perf_cache_map
+ffffffc0089aaa30 d mld2_all_mcr
+ffffffc0089aaa40 d kyber_batch_size
+ffffffc0089aaa80 d new_state
+ffffffc0089aaaa0 d pcix_bus_speed
+ffffffc0089aaae0 d ext4_type_by_mode
+ffffffc0089aaae0 d fs_ftype_by_dtype
+ffffffc0089aab00 d prio2band
+ffffffc0089aab10 d kyber_depth
+ffffffc0089aab40 d __uuid_parse.si
+ffffffc0089aab60 d aarch64_insn_ldst_size
+ffffffc0089aab80 d ioprio_class_to_prio
+ffffffc0089aabf0 D kexec_file_loaders
+ffffffc0089aac00 D kexec_image_ops
+ffffffc0089aac38 d fault_info
+ffffffc0089ab270 d str__task__trace_system_name
+ffffffc0089ab278 D pidfd_fops
+ffffffc0089ab408 d vma_init.dummy_vm_ops
+ffffffc0089ab498 d vma_init.dummy_vm_ops
+ffffffc0089ab528 D taint_flags
+ffffffc0089ab561 d __param_str_panic_print
+ffffffc0089ab56d d __param_str_pause_on_oops
+ffffffc0089ab57b d __param_str_panic_on_warn
+ffffffc0089ab589 d __param_str_crash_kexec_post_notifiers
+ffffffc0089ab5a8 d clear_warn_once_fops
+ffffffc0089ab6d0 d str__cpuhp__trace_system_name
+ffffffc0089ab6d8 d cpuhp_cpu_root_attr_group
+ffffffc0089ab700 d cpuhp_cpu_attr_group
+ffffffc0089ab728 d cpuhp_smt_attr_group
+ffffffc0089ab750 D cpu_all_bits
+ffffffc0089ab758 D cpu_bit_bitmap
+ffffffc0089ab970 D softirq_to_name
+ffffffc0089ab9c8 d trace_raw_output_softirq.symbols
+ffffffc0089aba78 d resource_op
+ffffffc0089aba98 D sysctl_long_vals
+ffffffc0089abab3 d proc_wspace_sep
+ffffffc0089abab8 d ngroups_max
+ffffffc0089ababc d cap_last_cap
+ffffffc0089abac0 d six_hundred_forty_kb
+ffffffc0089abac4 D sysctl_vals
+ffffffc0089abaf4 D __cap_empty_set
+ffffffc0089abbec d str__signal__trace_system_name
+ffffffc0089abbf3 d sig_sicodes
+ffffffc0089abd90 d __param_str_disable_numa
+ffffffc0089abda7 d __param_str_power_efficient
+ffffffc0089abdc1 d __param_str_debug_force_rr_cpu
+ffffffc0089abdde d __param_str_watchdog_thresh
+ffffffc0089abdf8 d wq_watchdog_thresh_ops
+ffffffc0089abe20 d string_get_size.divisor
+ffffffc0089abe28 d ref_rate
+ffffffc0089abe30 d resource_string.mem_spec
+ffffffc0089abe38 d evt_2_cmd
+ffffffc0089abe38 d evt_2_cmd
+ffffffc0089abe40 d ext4_filetype_table
+ffffffc0089abe40 d ext4_filetype_table
+ffffffc0089abe40 d fs_dtype_by_ftype
+ffffffc0089abe48 d bcj_x86.mask_to_bit_num
+ffffffc0089abe50 d resource_string.io_spec
+ffffffc0089abe58 d evt_2_cmd
+ffffffc0089abe60 d resource_string.bus_spec
+ffffffc0089abe78 d wq_sysfs_group
+ffffffc0089abeb0 D param_ops_byte
+ffffffc0089abed0 D param_ops_short
+ffffffc0089abef0 D param_ops_ushort
+ffffffc0089abf10 D param_ops_int
+ffffffc0089abf30 D param_ops_uint
+ffffffc0089abf50 D param_ops_long
+ffffffc0089abf70 D param_ops_ulong
+ffffffc0089abf90 D param_ops_ullong
+ffffffc0089abfb0 D param_ops_hexint
+ffffffc0089abfd0 D param_ops_charp
+ffffffc0089abff0 D param_ops_bool
+ffffffc0089ac010 D param_ops_bool_enable_only
+ffffffc0089ac030 D param_ops_invbool
+ffffffc0089ac050 D param_ops_bint
+ffffffc0089ac070 D param_array_ops
+ffffffc0089ac090 D param_ops_string
+ffffffc0089ac0b0 d module_sysfs_ops
+ffffffc0089ac0c0 d module_uevent_ops
+ffffffc0089ac0d8 d kthread.param
+ffffffc0089ac0e0 d kernel_attr_group
+ffffffc0089ac123 d reboot_cmd
+ffffffc0089ac130 d reboot_attr_group
+ffffffc0089ac1a4 d str__sched__trace_system_name
+ffffffc0089ac1b0 d trace_raw_output_sched_switch.__flags
+ffffffc0089ac240 D sched_prio_to_weight
+ffffffc0089ac2e0 D sched_prio_to_wmult
+ffffffc0089ac458 d runnable_avg_yN_inv
+ffffffc0089ac5e0 D sched_feat_names
+ffffffc0089ac6b0 D sd_flag_debug
+ffffffc0089ac790 d sched_feat_fops
+ffffffc0089ac8a0 d sched_scaling_fops
+ffffffc0089ac9b0 d sched_debug_fops
+ffffffc0089acac0 d sched_debug_sops
+ffffffc0089acae0 d sd_flags_fops
+ffffffc0089acbf0 d sched_tunable_scaling_names
+ffffffc0089acc08 d schedstat_sops
+ffffffc0089acc28 d psi_io_proc_ops
+ffffffc0089acc80 d psi_memory_proc_ops
+ffffffc0089accd8 d psi_cpu_proc_ops
+ffffffc0089acd30 d psi_irq_proc_ops
+ffffffc0089acd88 d str__lock__trace_system_name
+ffffffc0089acd90 d trace_raw_output_contention_begin.__flags
+ffffffc0089ace00 d suspend_stats_fops
+ffffffc0089acf10 d attr_group
+ffffffc0089acf38 d suspend_attr_group
+ffffffc0089acfa0 D pm_labels
+ffffffc0089acfc0 d mem_sleep_labels
+ffffffc0089acfe0 d sysrq_poweroff_op
+ffffffc0089ad02c d str__printk__trace_system_name
+ffffffc0089ad038 D kmsg_fops
+ffffffc0089ad148 d __param_str_ignore_loglevel
+ffffffc0089ad15f d __param_str_time
+ffffffc0089ad16b d __param_str_console_suspend
+ffffffc0089ad182 d __param_str_console_no_auto_verbose
+ffffffc0089ad1a1 d __param_str_always_kmsg_dump
+ffffffc0089ad1e0 d ten_thousand
+ffffffc0089ad1e8 d irq_group
+ffffffc0089ad210 d __param_str_noirqdebug
+ffffffc0089ad224 d __param_str_irqfixup
+ffffffc0089ad238 D irqchip_fwnode_ops
+ffffffc0089ad2e8 D irq_domain_simple_ops
+ffffffc0089ad338 d irq_affinity_proc_ops
+ffffffc0089ad390 d irq_affinity_list_proc_ops
+ffffffc0089ad3e8 d default_affinity_proc_ops
+ffffffc0089ad440 d msi_domain_ops
+ffffffc0089ad490 d msi_irqs_group
+ffffffc0089ad4b8 d str__rcu__trace_system_name
+ffffffc0089ad4bc d __param_str_rcu_expedited
+ffffffc0089ad4d3 d __param_str_rcu_normal
+ffffffc0089ad4e7 d __param_str_rcu_normal_after_boot
+ffffffc0089ad506 d __param_str_rcu_cpu_stall_ftrace_dump
+ffffffc0089ad529 d __param_str_rcu_cpu_stall_suppress
+ffffffc0089ad549 d __param_str_rcu_cpu_stall_timeout
+ffffffc0089ad568 d __param_str_rcu_exp_cpu_stall_timeout
+ffffffc0089ad58b d __param_str_rcu_cpu_stall_suppress_at_boot
+ffffffc0089ad5b3 d __param_str_rcu_task_ipi_delay
+ffffffc0089ad5cf d __param_str_rcu_task_stall_timeout
+ffffffc0089ad5ef d __param_str_rcu_task_stall_info
+ffffffc0089ad60c d __param_str_rcu_task_stall_info_mult
+ffffffc0089ad62e d __param_str_rcu_task_enqueue_lim
+ffffffc0089ad64c d __param_str_rcu_task_contend_lim
+ffffffc0089ad66a d __param_str_rcu_task_collapse_lim
+ffffffc0089ad690 d rcu_tasks_gp_state_names
+ffffffc0089ad6f0 d __param_str_exp_holdoff
+ffffffc0089ad705 d __param_str_counter_wrap_check
+ffffffc0089ad721 d __param_str_convert_to_big
+ffffffc0089ad739 d __param_str_big_cpu_lim
+ffffffc0089ad74e d __param_str_small_contention_lim
+ffffffc0089ad76c d __param_str_srcu_retry_check_delay
+ffffffc0089ad78c d __param_str_srcu_max_nodelay_phase
+ffffffc0089ad7ac d __param_str_srcu_max_nodelay
+ffffffc0089ad7c8 d srcu_size_state_name
+ffffffc0089ad85c d __param_str_dump_tree
+ffffffc0089ad86e d __param_str_use_softirq
+ffffffc0089ad882 d __param_str_rcu_fanout_exact
+ffffffc0089ad89b d __param_str_rcu_fanout_leaf
+ffffffc0089ad8b3 d __param_str_kthread_prio
+ffffffc0089ad8c8 d __param_str_gp_preinit_delay
+ffffffc0089ad8e1 d __param_str_gp_init_delay
+ffffffc0089ad8f7 d __param_str_gp_cleanup_delay
+ffffffc0089ad910 d __param_str_rcu_min_cached_objs
+ffffffc0089ad92c d __param_str_rcu_delay_page_cache_fill_msec
+ffffffc0089ad953 d __param_str_blimit
+ffffffc0089ad962 d __param_str_qhimark
+ffffffc0089ad972 d __param_str_qlowmark
+ffffffc0089ad983 d __param_str_qovld
+ffffffc0089ad991 d __param_str_rcu_divisor
+ffffffc0089ad9a5 d __param_str_rcu_resched_ns
+ffffffc0089ad9bc d __param_str_jiffies_till_sched_qs
+ffffffc0089ad9da d __param_str_jiffies_to_sched_qs
+ffffffc0089ad9f6 d __param_str_jiffies_till_first_fqs
+ffffffc0089ada18 d first_fqs_jiffies_ops
+ffffffc0089ada38 d __param_str_jiffies_till_next_fqs
+ffffffc0089ada58 d next_fqs_jiffies_ops
+ffffffc0089ada78 d __param_str_rcu_kick_kthreads
+ffffffc0089ada92 d __param_str_sysrq_rcu
+ffffffc0089adaa4 d __param_str_nocb_nobypass_lim_per_jiffy
+ffffffc0089adac8 d __param_str_rcu_nocb_gp_stride
+ffffffc0089adae8 d gp_state_names
+ffffffc0089adb30 d sysrq_rcudump_op
+ffffffc0089adb50 D dma_dummy_ops
+ffffffc0089adc38 d rmem_dma_ops
+ffffffc0089adc50 d fops_io_tlb_used
+ffffffc0089add60 d rmem_swiotlb_ops
+ffffffc0089add98 d str__module__trace_system_name
+ffffffc0089add9f d __param_str_nomodule
+ffffffc0089adda8 d find_symbol.arr
+ffffffc0089adde8 d __param_str_module_blacklist
+ffffffc0089addf9 d __param_str_async_probe
+ffffffc0089ade10 d trace_raw_output_module_load.__flags
+ffffffc0089ade70 d vermagic
+ffffffc0089adeb8 d layout_sections.masks
+ffffffc0089adf20 d modules_proc_ops
+ffffffc0089adf78 d modules_op
+ffffffc0089adf98 d profile_setup.schedstr
+ffffffc0089adfa1 d profile_setup.sleepstr
+ffffffc0089adfa7 d profile_setup.kvmstr
+ffffffc0089adfb0 d prof_cpu_mask_proc_ops
+ffffffc0089ae008 d profile_proc_ops
+ffffffc0089ae068 d trace_raw_output_timer_start.__flags
+ffffffc0089ae0b8 d trace_raw_output_hrtimer_init.symbols
+ffffffc0089ae108 d trace_raw_output_hrtimer_init.symbols.39
+ffffffc0089ae198 d trace_raw_output_hrtimer_start.symbols
+ffffffc0089ae228 d trace_raw_output_tick_stop.symbols
+ffffffc0089ae298 d hrtimer_clock_to_base_table
+ffffffc0089ae2d8 d offsets
+ffffffc0089ae2f8 d clocksource_group
+ffffffc0089ae320 d timer_list_sops
+ffffffc0089ae340 D alarm_clock
+ffffffc0089ae3c0 d trace_raw_output_alarmtimer_suspend.__flags
+ffffffc0089ae410 d trace_raw_output_alarm_class.__flags
+ffffffc0089ae470 d alarmtimer_pm_ops
+ffffffc0089ae548 d posix_clocks
+ffffffc0089ae5a8 d clock_realtime
+ffffffc0089ae628 d clock_monotonic
+ffffffc0089ae6a8 d clock_monotonic_raw
+ffffffc0089ae728 d clock_realtime_coarse
+ffffffc0089ae7a8 d clock_monotonic_coarse
+ffffffc0089ae828 d clock_boottime
+ffffffc0089ae8a8 d clock_tai
+ffffffc0089ae928 D clock_posix_cpu
+ffffffc0089ae9a8 D clock_process
+ffffffc0089aea28 D clock_thread
+ffffffc0089aeaa8 d posix_clock_file_operations
+ffffffc0089aebb8 D clock_posix_dynamic
+ffffffc0089aec4c d __param_str_irqtime
+ffffffc0089aec58 d tk_debug_sleep_time_fops
+ffffffc0089aee08 D futex_q_init
+ffffffc0089aeec0 d ZSTD_estimateCCtxSize_internal.srcSizeTiers
+ffffffc0089aef20 d ZSTD_fcs_fieldSize
+ffffffc0089aef60 d audit_ops
+ffffffc0089aef80 d ZSTD_overlapCopy8.dec64table
+ffffffc0089aefe0 d nlmsg_tcpdiag_perms
+ffffffc0089af000 d LZ4_decompress_generic.dec64table
+ffffffc0089af020 d ZSTD_overlapCopy8.dec32table
+ffffffc0089af040 d LZ4_decompress_generic.inc32table
+ffffffc0089af060 d FSE_normalizeCount.rtbTable
+ffffffc0089af080 d ZSTD_did_fieldSize
+ffffffc0089af0a0 d bcj_ia64.branch_table
+ffffffc0089af120 d kallsyms_proc_ops
+ffffffc0089af178 d kallsyms_op
+ffffffc0089af218 d audit_feature_names
+ffffffc0089afdd0 d audit_nfcfgs
+ffffffc0089aff30 d audit_watch_fsnotify_ops
+ffffffc0089aff60 d audit_mark_fsnotify_ops
+ffffffc0089aff90 d audit_tree_ops
+ffffffc0089affc0 d hung_task_timeout_max
+ffffffc0089affc8 d sixty
+ffffffc0089b01e0 d seccomp_notify_ops
+ffffffc0089b02f6 d seccomp_actions_avail
+ffffffc0089b0338 d seccomp_log_names
+ffffffc0089b0460 d trace_clocks
+ffffffc0089b0538 D trace_min_max_fops
+ffffffc0089b0648 d print_func_help_header_irq.space
+ffffffc0089b0658 d trace_options_fops
+ffffffc0089b0768 d show_traces_fops
+ffffffc0089b0878 d set_tracer_fops
+ffffffc0089b0988 d tracing_cpumask_fops
+ffffffc0089b0a98 d tracing_iter_fops
+ffffffc0089b0ba8 d tracing_fops
+ffffffc0089b0cb8 d tracing_pipe_fops
+ffffffc0089b0dc8 d tracing_entries_fops
+ffffffc0089b0ed8 d tracing_total_entries_fops
+ffffffc0089b0fe8 d tracing_free_buffer_fops
+ffffffc0089b10f8 d tracing_mark_fops
+ffffffc0089b1208 d tracing_mark_raw_fops
+ffffffc0089b1318 d trace_clock_fops
+ffffffc0089b1428 d rb_simple_fops
+ffffffc0089b1538 d trace_time_stamp_mode_fops
+ffffffc0089b1648 d buffer_percent_fops
+ffffffc0089b1758 d tracing_err_log_fops
+ffffffc0089b1868 d show_traces_seq_ops
+ffffffc0089b1888 d tracer_seq_ops
+ffffffc0089b18a8 d trace_options_core_fops
+ffffffc0089b19b8 d tracing_err_log_seq_ops
+ffffffc0089b19d8 d tracing_buffers_fops
+ffffffc0089b1ae8 d tracing_stats_fops
+ffffffc0089b1bf8 d buffer_pipe_buf_ops
+ffffffc0089b1c18 d tracing_thresh_fops
+ffffffc0089b1d28 d tracing_readme_fops
+ffffffc0089b1e38 d tracing_saved_cmdlines_fops
+ffffffc0089b1f48 d tracing_saved_cmdlines_size_fops
+ffffffc0089b2058 d tracing_saved_tgids_fops
+ffffffc0089b2168 d readme_msg
+ffffffc0089b45c0 d tracing_saved_cmdlines_seq_ops
+ffffffc0089b45e0 d tracing_saved_tgids_seq_ops
+ffffffc0089b4610 d mark
+ffffffc0089b4670 d tracing_stat_fops
+ffffffc0089b4780 d trace_stat_seq_ops
+ffffffc0089b47c8 d ftrace_formats_fops
+ffffffc0089b48d8 d show_format_seq_ops
+ffffffc0089b4a38 d ftrace_avail_fops
+ffffffc0089b4b48 d ftrace_enable_fops
+ffffffc0089b4c58 d ftrace_event_id_fops
+ffffffc0089b4d68 d ftrace_event_filter_fops
+ffffffc0089b4e78 d ftrace_event_format_fops
+ffffffc0089b4f88 d ftrace_subsystem_filter_fops
+ffffffc0089b5098 d ftrace_system_enable_fops
+ffffffc0089b51a8 d trace_format_seq_ops
+ffffffc0089b51c8 d ftrace_set_event_fops
+ffffffc0089b52d8 d ftrace_tr_enable_fops
+ffffffc0089b53e8 d ftrace_set_event_pid_fops
+ffffffc0089b54f8 d ftrace_set_event_notrace_pid_fops
+ffffffc0089b5608 d ftrace_show_header_fops
+ffffffc0089b5718 d show_set_event_seq_ops
+ffffffc0089b5738 d show_set_pid_seq_ops
+ffffffc0089b5758 d show_set_no_pid_seq_ops
+ffffffc0089b5778 d show_event_seq_ops
+ffffffc0089b5938 d event_triggers_seq_ops
+ffffffc0089b5958 D event_trigger_fops
+ffffffc0089b5e08 d synth_events_fops
+ffffffc0089b5f18 d synth_events_seq_op
+ffffffc0089b5fc0 D event_hist_fops
+ffffffc0089b60d0 d hist_trigger_elt_data_ops
+ffffffc0089b60f0 d no_comm
+ffffffc0089b6110 d str__error_report__trace_system_name
+ffffffc0089b6120 d trace_raw_output_error_report_template.symbols
+ffffffc0089b6160 d str__power__trace_system_name
+ffffffc0089b6168 d trace_raw_output_device_pm_callback_start.symbols
+ffffffc0089b61f8 d trace_raw_output_pm_qos_update.symbols
+ffffffc0089b6238 d trace_raw_output_pm_qos_update_flags.symbols
+ffffffc0089b6278 d trace_raw_output_dev_pm_qos_request.symbols
+ffffffc0089b62a8 d str__rpm__trace_system_name
+ffffffc0089b62b0 d dynamic_events_ops
+ffffffc0089b63c0 d dyn_event_seq_op
+ffffffc0089b6452 D print_type_format_u8
+ffffffc0089b6455 D print_type_format_u16
+ffffffc0089b6458 D print_type_format_u32
+ffffffc0089b645b D print_type_format_u64
+ffffffc0089b645f D print_type_format_s8
+ffffffc0089b6462 D print_type_format_s16
+ffffffc0089b6465 D print_type_format_s32
+ffffffc0089b6468 D print_type_format_s64
+ffffffc0089b646c D print_type_format_x8
+ffffffc0089b6471 D print_type_format_x16
+ffffffc0089b6476 D print_type_format_x32
+ffffffc0089b647b D print_type_format_x64
+ffffffc0089b6481 D print_type_format_symbol
+ffffffc0089b6485 D print_type_format_string
+ffffffc0089b6490 d probe_fetch_types
+ffffffc0089b6890 d uprobe_events_ops
+ffffffc0089b69a0 d uprobe_profile_ops
+ffffffc0089b6ab0 d probes_seq_op
+ffffffc0089b6ad0 d profile_seq_op
+ffffffc0089b6b38 d bpf_opcode_in_insntable.public_insntable
+ffffffc0089b6c38 d interpreters_args
+ffffffc0089b6cb8 D bpf_tail_call_proto
+ffffffc0089b6d18 d str__xdp__trace_system_name
+ffffffc0089b6d20 V bpf_map_lookup_elem_proto
+ffffffc0089b6d80 V bpf_map_update_elem_proto
+ffffffc0089b6de0 V bpf_map_delete_elem_proto
+ffffffc0089b6e40 V bpf_map_push_elem_proto
+ffffffc0089b6ea0 V bpf_map_pop_elem_proto
+ffffffc0089b6f00 V bpf_map_peek_elem_proto
+ffffffc0089b6f60 V bpf_map_lookup_percpu_elem_proto
+ffffffc0089b6fc0 V bpf_spin_lock_proto
+ffffffc0089b7020 V bpf_spin_unlock_proto
+ffffffc0089b7080 V bpf_jiffies64_proto
+ffffffc0089b70e0 V bpf_get_prandom_u32_proto
+ffffffc0089b7140 V bpf_get_smp_processor_id_proto
+ffffffc0089b71a0 V bpf_get_numa_node_id_proto
+ffffffc0089b7200 V bpf_ktime_get_ns_proto
+ffffffc0089b7260 V bpf_ktime_get_boot_ns_proto
+ffffffc0089b72c0 V bpf_ktime_get_coarse_ns_proto
+ffffffc0089b7320 V bpf_ktime_get_tai_ns_proto
+ffffffc0089b7380 V bpf_get_current_pid_tgid_proto
+ffffffc0089b73e0 V bpf_get_current_uid_gid_proto
+ffffffc0089b7440 V bpf_get_current_comm_proto
+ffffffc0089b74a0 V bpf_get_current_cgroup_id_proto
+ffffffc0089b7500 V bpf_get_current_ancestor_cgroup_id_proto
+ffffffc0089b7560 V bpf_get_local_storage_proto
+ffffffc0089b75c0 V bpf_get_ns_current_pid_tgid_proto
+ffffffc0089b7620 V bpf_snprintf_btf_proto
+ffffffc0089b7680 V bpf_seq_printf_btf_proto
+ffffffc0089b76e0 V bpf_set_retval_proto
+ffffffc0089b7740 V bpf_get_retval_proto
+ffffffc0089b77a0 d ___bpf_prog_run.jumptable
+ffffffc0089b7fa0 d interpreters
+ffffffc0089b8020 d trace_raw_output_xdp_exception.symbols
+ffffffc0089b8090 d trace_raw_output_xdp_bulk_tx.symbols
+ffffffc0089b8100 d trace_raw_output_xdp_redirect_template.symbols
+ffffffc0089b8170 d trace_raw_output_xdp_cpumap_kthread.symbols
+ffffffc0089b81e0 d trace_raw_output_xdp_cpumap_enqueue.symbols
+ffffffc0089b8250 d trace_raw_output_xdp_devmap_xmit.symbols
+ffffffc0089b82c0 d trace_raw_output_mem_disconnect.symbols
+ffffffc0089b8320 d trace_raw_output_mem_connect.symbols
+ffffffc0089b8380 d trace_raw_output_mem_return_failed.symbols
+ffffffc0089b8428 d perf_fops
+ffffffc0089b8538 d pmu_dev_group
+ffffffc0089b8560 d perf_event_parse_addr_filter.actions
+ffffffc0089b8598 d if_tokens
+ffffffc0089b8618 d perf_mmap_vmops
+ffffffc0089b86a8 d task_bps_ht_params
+ffffffc0089b86d5 d str__filemap__trace_system_name
+ffffffc0089b86e0 D generic_file_vm_ops
+ffffffc0089b8770 d str__oom__trace_system_name
+ffffffc0089b8778 d trace_raw_output_reclaim_retry_zone.symbols
+ffffffc0089b87c8 d trace_raw_output_compact_retry.symbols
+ffffffc0089b8808 d trace_raw_output_compact_retry.symbols.59
+ffffffc0089b8848 d oom_constraint_text
+ffffffc0089b8888 d dirty_bytes_min
+ffffffc0089b8890 d str__pagemap__trace_system_name
+ffffffc0089b8898 d str__vmscan__trace_system_name
+ffffffc0089b88a0 d trace_raw_output_mm_vmscan_wakeup_kswapd.__flags
+ffffffc0089b8b20 d trace_raw_output_mm_vmscan_direct_reclaim_begin_template.__flags
+ffffffc0089b8da0 d trace_raw_output_mm_shrink_slab_start.__flags
+ffffffc0089b9020 d trace_raw_output_mm_vmscan_lru_isolate.symbols
+ffffffc0089b9080 d trace_raw_output_mm_vmscan_write_folio.__flags
+ffffffc0089b90e0 d trace_raw_output_mm_vmscan_lru_shrink_inactive.__flags
+ffffffc0089b9140 d trace_raw_output_mm_vmscan_lru_shrink_active.__flags
+ffffffc0089b91a0 d trace_raw_output_mm_vmscan_node_reclaim_begin.__flags
+ffffffc0089b9420 d trace_raw_output_mm_vmscan_throttled.__flags
+ffffffc0089b9470 d lru_gen_rw_fops
+ffffffc0089b9580 d lru_gen_ro_fops
+ffffffc0089b9690 d walk_mm.mm_walk_ops
+ffffffc0089b96e0 d lru_gen_seq_ops
+ffffffc0089b9738 d shmem_vm_ops.llvm.16762457728046073858
+ffffffc0089b97c8 d shmem_param_enums_huge
+ffffffc0089b9818 D shmem_fs_parameters
+ffffffc0089b9978 d shmem_fs_context_ops
+ffffffc0089b99a8 d shmem_export_ops
+ffffffc0089b9a00 d shmem_ops
+ffffffc0089b9ac0 d shmem_special_inode_operations
+ffffffc0089b9b80 d shmem_inode_operations
+ffffffc0089b9c40 d shmem_file_operations
+ffffffc0089b9d80 d shmem_dir_inode_operations
+ffffffc0089b9e40 d shmem_short_symlink_operations
+ffffffc0089b9f00 d shmem_symlink_inode_operations
+ffffffc0089b9fc0 D shmem_aops
+ffffffc0089ba060 D vmstat_text
+ffffffc0089ba4f8 d fragmentation_op
+ffffffc0089ba518 d pagetypeinfo_op
+ffffffc0089ba538 d vmstat_op
+ffffffc0089ba558 d zoneinfo_op
+ffffffc0089ba578 d unusable_fops
+ffffffc0089ba688 d extfrag_fops
+ffffffc0089ba798 d unusable_sops
+ffffffc0089ba7b8 d extfrag_sops
+ffffffc0089ba7d8 d bdi_dev_group
+ffffffc0089ba800 d bdi_debug_stats_fops
+ffffffc0089ba910 d str__percpu__trace_system_name
+ffffffc0089ba918 d trace_raw_output_percpu_alloc_percpu.__flags
+ffffffc0089bab98 d str__kmem__trace_system_name
+ffffffc0089baba0 d trace_raw_output_kmem_cache_alloc.__flags
+ffffffc0089bae20 d trace_raw_output_kmalloc.__flags
+ffffffc0089bb0a0 d trace_raw_output_mm_page_alloc.__flags
+ffffffc0089bb320 d trace_raw_output_rss_stat.symbols
+ffffffc0089bb370 d slabinfo_proc_ops
+ffffffc0089bb3c8 d slabinfo_op
+ffffffc0089bb3e8 d str__compaction__trace_system_name
+ffffffc0089bb3f8 d trace_raw_output_mm_compaction_end.symbols
+ffffffc0089bb498 d trace_raw_output_mm_compaction_try_to_compact_pages.__flags
+ffffffc0089bb718 d trace_raw_output_mm_compaction_suitable_template.symbols
+ffffffc0089bb768 d trace_raw_output_mm_compaction_suitable_template.symbols.106
+ffffffc0089bb808 d trace_raw_output_mm_compaction_defer_template.symbols
+ffffffc0089bb858 d trace_raw_output_kcompactd_wake_template.symbols
+ffffffc0089bb8c0 D pageflag_names
+ffffffc0089bba50 D gfpflag_names
+ffffffc0089bbca0 D vmaflag_names
+ffffffc0089bbeb8 d str__mmap_lock__trace_system_name
+ffffffc0089bbec8 d fault_around_bytes_fops
+ffffffc0089bbfd8 d mincore_walk_ops
+ffffffc0089bc028 d mlock_vma_pages_range.mlock_walk_ops
+ffffffc0089bc078 d str__mmap__trace_system_name
+ffffffc0089bc080 D mmap_rnd_bits_min
+ffffffc0089bc084 D mmap_rnd_bits_max
+ffffffc0089bc088 d __param_str_ignore_rlimit_data
+ffffffc0089bc0a0 d special_mapping_vmops.llvm.13466520832302769783
+ffffffc0089bc130 d legacy_special_mapping_vmops
+ffffffc0089bc1c0 d str__tlb__trace_system_name
+ffffffc0089bc1c4 d str__migrate__trace_system_name
+ffffffc0089bc1d0 d trace_raw_output_tlb_flush.symbols
+ffffffc0089bc230 d trace_raw_output_mm_migrate_pages.symbols
+ffffffc0089bc270 d trace_raw_output_mm_migrate_pages.symbols.37
+ffffffc0089bc310 d trace_raw_output_mm_migrate_pages_start.symbols
+ffffffc0089bc350 d trace_raw_output_mm_migrate_pages_start.symbols.48
+ffffffc0089bc410 d vmalloc_op
+ffffffc0089bc450 D compound_page_dtors
+ffffffc0089bc468 d fallbacks
+ffffffc0089bc4a8 d zone_names
+ffffffc0089bc4c8 D migratetype_names
+ffffffc0089bc4f0 d __param_str_shuffle
+ffffffc0089bc508 d shuffle_param_ops
+ffffffc0089bc528 d memblock_debug_fops
+ffffffc0089bc638 d __param_str_memmap_on_memory
+ffffffc0089bc658 d __param_str_online_policy
+ffffffc0089bc678 d online_policy_ops
+ffffffc0089bc698 d __param_str_auto_movable_ratio
+ffffffc0089bc6c0 d online_policy_to_str
+ffffffc0089bc788 d swapin_walk_ops
+ffffffc0089bc7d8 d cold_walk_ops
+ffffffc0089bc828 d madvise_free_walk_ops
+ffffffc0089bc878 d swap_aops
+ffffffc0089bc918 d swap_attr_group
+ffffffc0089bc940 d Bad_file
+ffffffc0089bc955 d Bad_offset
+ffffffc0089bc96c d Unused_offset
+ffffffc0089bc986 d Unused_file
+ffffffc0089bc9a0 d swaps_proc_ops
+ffffffc0089bc9f8 d swaps_op
+ffffffc0089bca88 d slab_attr_group
+ffffffc0089bcab0 d slab_sysfs_ops
+ffffffc0089bcac0 d slab_debugfs_fops
+ffffffc0089bcbd0 d slab_debugfs_sops
+ffffffc0089bcbf0 d str__thp__trace_system_name
+ffffffc0089bcbf8 d hugepage_attr_group
+ffffffc0089bcc20 d split_huge_pages_fops
+ffffffc0089bcd30 d str__huge_memory__trace_system_name
+ffffffc0089bcd40 d trace_raw_output_mm_khugepaged_scan_pmd.symbols
+ffffffc0089bcf20 d trace_raw_output_mm_collapse_huge_page.symbols
+ffffffc0089bd100 d trace_raw_output_mm_collapse_huge_page_isolate.symbols
+ffffffc0089bd2e0 d trace_raw_output_mm_khugepaged_scan_file.symbols
+ffffffc0089bd4f0 d proc_page_owner_operations
+ffffffc0089bd600 d str__page_isolation__trace_system_name
+ffffffc0089bd610 d zsmalloc_mops
+ffffffc0089bd628 D balloon_mops
+ffffffc0089bd640 d __param_str_enable
+ffffffc0089bd658 d secretmem_vm_ops.llvm.8210495105004198153
+ffffffc0089bd6e8 D secretmem_aops
+ffffffc0089bd788 d secretmem_fops
+ffffffc0089bd8c0 d secretmem_iops
+ffffffc0089bd980 d __param_str_page_reporting_order
+ffffffc0089bd9a8 d do_dentry_open.empty_fops
+ffffffc0089bdac0 D generic_ro_fops
+ffffffc0089bdc00 d alloc_file_pseudo.anon_ops
+ffffffc0089bdcc0 d alloc_super.default_op
+ffffffc0089bdd90 D def_chr_fops
+ffffffc0089bdeb8 D pipefifo_fops
+ffffffc0089bdfc8 d anon_pipe_buf_ops
+ffffffc0089bdfe8 d pipefs_ops
+ffffffc0089be0c0 d pipefs_dentry_operations
+ffffffc0089be1c0 D page_symlink_inode_operations
+ffffffc0089be35c d band_table
+ffffffc0089be438 D empty_name
+ffffffc0089be448 D slash_name
+ffffffc0089be458 D dotdot_name
+ffffffc0089be468 D empty_aops
+ffffffc0089be540 d inode_init_always.empty_iops
+ffffffc0089be600 d inode_init_always.no_open_fops
+ffffffc0089be740 d bad_inode_ops.llvm.3233799223940426884
+ffffffc0089be800 d bad_file_ops
+ffffffc0089be910 D mounts_op
+ffffffc0089be930 D mntns_operations
+ffffffc0089be980 D simple_dentry_operations
+ffffffc0089bea40 D simple_dir_operations
+ffffffc0089beb80 D simple_dir_inode_operations
+ffffffc0089bec40 d pseudo_fs_context_ops
+ffffffc0089bec70 D ram_aops
+ffffffc0089bed10 d simple_super_operations
+ffffffc0089bedc0 d alloc_anon_inode.anon_aops
+ffffffc0089bee80 D simple_symlink_inode_operations
+ffffffc0089bef40 d empty_dir_inode_operations
+ffffffc0089bf000 d empty_dir_operations
+ffffffc0089bf140 d generic_ci_dentry_ops
+ffffffc0089bf200 d str__writeback__trace_system_name
+ffffffc0089bf210 d trace_raw_output_writeback_dirty_inode_template.__flags
+ffffffc0089bf2c0 d trace_raw_output_writeback_dirty_inode_template.__flags.30
+ffffffc0089bf370 d trace_raw_output_writeback_work_class.symbols
+ffffffc0089bf400 d trace_raw_output_writeback_queue_io.symbols
+ffffffc0089bf490 d trace_raw_output_writeback_sb_inodes_requeue.__flags
+ffffffc0089bf540 d trace_raw_output_writeback_single_inode_template.__flags
+ffffffc0089bf5f0 d trace_raw_output_writeback_inode_template.__flags
+ffffffc0089bf6a0 D nosteal_pipe_buf_ops
+ffffffc0089bf6c0 d user_page_pipe_buf_ops
+ffffffc0089bf6e0 D default_pipe_buf_ops
+ffffffc0089bf700 D page_cache_pipe_buf_ops
+ffffffc0089bf740 D ns_dentry_operations
+ffffffc0089bf800 d ns_file_operations.llvm.18354850247980327239
+ffffffc0089bf910 d nsfs_ops
+ffffffc0089bf9c0 D legacy_fs_context_ops
+ffffffc0089bf9f0 d common_set_sb_flag
+ffffffc0089bfa50 d common_clear_sb_flag
+ffffffc0089bfaa0 d bool_names
+ffffffc0089bfb20 D fscontext_fops
+ffffffc0089bfc40 D proc_mounts_operations
+ffffffc0089bfd50 D proc_mountinfo_operations
+ffffffc0089bfe60 D proc_mountstats_operations
+ffffffc0089bffd8 D inotify_fsnotify_ops
+ffffffc0089c0008 d inotify_fops
+ffffffc0089c0118 d eventpoll_fops
+ffffffc0089c0228 d path_limits
+ffffffc0089c0240 d anon_inodefs_dentry_operations
+ffffffc0089c0330 d signalfd_fops
+ffffffc0089c0440 d timerfd_fops
+ffffffc0089c0550 d eventfd_fops
+ffffffc0089c0660 d userfaultfd_fops
+ffffffc0089c0770 d userfaultfd_dev_fops
+ffffffc0089c08a8 d aio_ctx_aops
+ffffffc0089c0948 d aio_ring_fops
+ffffffc0089c0a58 d aio_ring_vm_ops
+ffffffc0089c0ae8 d str__filelock__trace_system_name
+ffffffc0089c0af8 d trace_raw_output_locks_get_lock_context.symbols
+ffffffc0089c0b38 d trace_raw_output_filelock_lock.__flags
+ffffffc0089c0bf8 d trace_raw_output_filelock_lock.symbols
+ffffffc0089c0c38 d trace_raw_output_filelock_lease.__flags
+ffffffc0089c0cf8 d trace_raw_output_filelock_lease.symbols
+ffffffc0089c0d38 d trace_raw_output_generic_add_lease.__flags
+ffffffc0089c0df8 d trace_raw_output_generic_add_lease.symbols
+ffffffc0089c0e38 d trace_raw_output_leases_conflict.__flags
+ffffffc0089c0ef8 d trace_raw_output_leases_conflict.symbols
+ffffffc0089c0f38 d trace_raw_output_leases_conflict.__flags.60
+ffffffc0089c0ff8 d trace_raw_output_leases_conflict.symbols.61
+ffffffc0089c1038 d lease_manager_ops
+ffffffc0089c1090 d locks_seq_operations
+ffffffc0089c10c0 d bm_context_ops
+ffffffc0089c10f0 d bm_fill_super.bm_files
+ffffffc0089c1168 d bm_status_operations
+ffffffc0089c1278 d bm_register_operations
+ffffffc0089c1388 d s_ops
+ffffffc0089c1438 d bm_entry_operations
+ffffffc0089c16a8 D posix_acl_access_xattr_handler
+ffffffc0089c16d8 D posix_acl_default_xattr_handler
+ffffffc0089c18e0 d str__iomap__trace_system_name
+ffffffc0089c18e8 d trace_raw_output_iomap_class.symbols
+ffffffc0089c1948 d trace_raw_output_iomap_class.__flags
+ffffffc0089c19b8 d trace_raw_output_iomap_iter.__flags
+ffffffc0089c1a88 D proc_pid_maps_operations
+ffffffc0089c1b98 D proc_pid_smaps_operations
+ffffffc0089c1ca8 D proc_pid_smaps_rollup_operations
+ffffffc0089c1db8 D proc_clear_refs_operations
+ffffffc0089c1ec8 D proc_pagemap_operations
+ffffffc0089c1fd8 d proc_pid_maps_op
+ffffffc0089c1ff8 d proc_pid_smaps_op
+ffffffc0089c2018 d smaps_walk_ops
+ffffffc0089c2068 d smaps_shmem_walk_ops
+ffffffc0089c20b8 d show_smap_vma_flags.mnemonics
+ffffffc0089c2138 d clear_refs_walk_ops
+ffffffc0089c2188 d pagemap_ops
+ffffffc0089c21f0 D proc_sops
+ffffffc0089c22a0 d proc_iter_file_ops
+ffffffc0089c23b0 d proc_reg_file_ops
+ffffffc0089c24c0 D proc_link_inode_operations
+ffffffc0089c2580 d proc_root_inode_operations
+ffffffc0089c2640 d proc_root_operations
+ffffffc0089c2750 d proc_fs_parameters
+ffffffc0089c27d0 d proc_fs_context_ops
+ffffffc0089c2840 D proc_pid_link_inode_operations
+ffffffc0089c2900 d proc_def_inode_operations
+ffffffc0089c29c0 D pid_dentry_operations
+ffffffc0089c2a80 d proc_tgid_base_operations
+ffffffc0089c2b90 d tid_base_stuff
+ffffffc0089c3108 d tgid_base_stuff
+ffffffc0089c3780 d proc_tgid_base_inode_operations
+ffffffc0089c3840 d proc_environ_operations
+ffffffc0089c3950 d proc_auxv_operations
+ffffffc0089c3a60 d proc_single_file_operations
+ffffffc0089c3b70 d proc_pid_sched_operations
+ffffffc0089c3c80 d proc_tid_comm_inode_operations
+ffffffc0089c3d40 d proc_pid_set_comm_operations
+ffffffc0089c3e50 d proc_pid_cmdline_ops
+ffffffc0089c3f60 d proc_mem_operations
+ffffffc0089c4080 d proc_attr_dir_inode_operations
+ffffffc0089c4140 d proc_attr_dir_operations
+ffffffc0089c4250 d proc_oom_adj_operations
+ffffffc0089c4360 d proc_oom_score_adj_operations
+ffffffc0089c4470 d proc_loginuid_operations
+ffffffc0089c4580 d proc_sessionid_operations
+ffffffc0089c4690 d lnames
+ffffffc0089c4790 d attr_dir_stuff
+ffffffc0089c4880 d proc_pid_attr_operations
+ffffffc0089c49c0 d proc_task_inode_operations
+ffffffc0089c4a80 d proc_task_operations
+ffffffc0089c4bc0 d proc_map_files_inode_operations
+ffffffc0089c4c80 d proc_map_files_operations
+ffffffc0089c4d90 d proc_coredump_filter_operations
+ffffffc0089c4ea0 d proc_pid_set_timerslack_ns_operations
+ffffffc0089c4fc0 d proc_tid_base_inode_operations
+ffffffc0089c5080 d proc_tid_base_operations
+ffffffc0089c51c0 d proc_map_files_link_inode_operations
+ffffffc0089c5280 d tid_map_files_dentry_operations
+ffffffc0089c5340 D proc_net_dentry_ops
+ffffffc0089c5400 d proc_dir_operations
+ffffffc0089c5540 d proc_dir_inode_operations
+ffffffc0089c5600 d proc_file_inode_operations
+ffffffc0089c56c0 d proc_seq_ops
+ffffffc0089c5718 d proc_single_ops
+ffffffc0089c5780 d proc_misc_dentry_ops
+ffffffc0089c5940 d task_state_array
+ffffffc0089c59c0 d tid_fd_dentry_operations
+ffffffc0089c5a80 d proc_fdinfo_file_operations
+ffffffc0089c5bc0 D proc_fd_inode_operations
+ffffffc0089c5c80 D proc_fd_operations
+ffffffc0089c5dc0 D proc_fdinfo_inode_operations
+ffffffc0089c5e80 D proc_fdinfo_operations
+ffffffc0089c5f98 d tty_drivers_op
+ffffffc0089c5fb8 d consoles_op
+ffffffc0089c5fd8 d cpuinfo_proc_ops
+ffffffc0089c6030 d devinfo_ops
+ffffffc0089c6050 d int_seq_ops
+ffffffc0089c6070 d stat_proc_ops
+ffffffc0089c60c8 d show_irq_gap.zeros
+ffffffc0089c6100 d proc_ns_link_inode_operations
+ffffffc0089c61c0 D proc_ns_dir_inode_operations
+ffffffc0089c6280 D proc_ns_dir_operations
+ffffffc0089c63c0 d proc_self_inode_operations
+ffffffc0089c6480 d proc_thread_self_inode_operations
+ffffffc0089c6540 d register_sysctl_table.null_path.llvm.13686038943878111742
+ffffffc0089c6580 d proc_sys_dir_operations
+ffffffc0089c6640 d proc_sys_dir_file_operations
+ffffffc0089c6780 d proc_sys_dentry_operations
+ffffffc0089c6840 d proc_sys_inode_operations
+ffffffc0089c6900 d proc_sys_file_operations
+ffffffc0089c6a10 d sysctl_aliases
+ffffffc0089c6a70 d proc_net_seq_ops
+ffffffc0089c6ac8 d proc_net_single_ops
+ffffffc0089c6b40 D proc_net_inode_operations
+ffffffc0089c6c00 D proc_net_operations
+ffffffc0089c6d10 d kmsg_proc_ops
+ffffffc0089c6d68 d kpagecount_proc_ops
+ffffffc0089c6dc0 d kpageflags_proc_ops
+ffffffc0089c6e18 d kernfs_export_ops
+ffffffc0089c6e70 D kernfs_sops
+ffffffc0089c6f20 d kernfs_trusted_xattr_handler
+ffffffc0089c6f50 d kernfs_security_xattr_handler
+ffffffc0089c6f80 d kernfs_user_xattr_handler
+ffffffc0089c6fc0 d kernfs_iops
+ffffffc0089c7080 D kernfs_dir_iops
+ffffffc0089c7140 D kernfs_dir_fops
+ffffffc0089c7280 D kernfs_dops
+ffffffc0089c7340 D kernfs_file_fops
+ffffffc0089c7450 d kernfs_vm_ops
+ffffffc0089c74e0 d kernfs_seq_ops
+ffffffc0089c7500 D kernfs_symlink_iops
+ffffffc0089c75c0 d sysfs_prealloc_kfops_rw
+ffffffc0089c7630 d sysfs_prealloc_kfops_ro
+ffffffc0089c76a0 d sysfs_prealloc_kfops_wo
+ffffffc0089c7710 d sysfs_file_kfops_rw
+ffffffc0089c7780 d sysfs_file_kfops_ro
+ffffffc0089c77f0 d sysfs_file_kfops_wo
+ffffffc0089c7860 d sysfs_file_kfops_empty
+ffffffc0089c78d0 d sysfs_bin_kfops_mmap
+ffffffc0089c7940 d sysfs_bin_kfops_rw
+ffffffc0089c79b0 d sysfs_bin_kfops_ro
+ffffffc0089c7a20 d sysfs_bin_kfops_wo
+ffffffc0089c7a90 d sysfs_fs_context_ops
+ffffffc0089c7ad8 d devpts_sops
+ffffffc0089c7b88 d tokens
+ffffffc0089c7bf8 d tokens
+ffffffc0089c7c38 d tokens
+ffffffc0089c7c78 d tokens
+ffffffc0089c7cf0 D ext4_dir_operations
+ffffffc0089c7e00 d ext4_iomap_xattr_ops
+ffffffc0089c7e20 d ext4_dio_write_ops
+ffffffc0089c7e38 d ext4_file_vm_ops
+ffffffc0089c7f00 D ext4_file_inode_operations
+ffffffc0089c7fc0 D ext4_file_operations
+ffffffc0089c8170 d ext4_journalled_aops
+ffffffc0089c8210 d ext4_da_aops
+ffffffc0089c82b0 d ext4_aops
+ffffffc0089c8350 D ext4_iomap_report_ops
+ffffffc0089c8370 D ext4_iomap_ops
+ffffffc0089c8390 D ext4_iomap_overwrite_ops
+ffffffc0089c8440 D ext4_mb_seq_groups_ops
+ffffffc0089c8460 D ext4_mb_seq_structs_summary_ops
+ffffffc0089c8480 d ext4_groupinfo_slab_names
+ffffffc0089c84c0 D ext4_dir_inode_operations
+ffffffc0089c8580 D ext4_special_inode_operations
+ffffffc0089c87d0 d trace_raw_output_ext4_da_write_pages_extent.__flags
+ffffffc0089c8820 d trace_raw_output_ext4_request_blocks.__flags
+ffffffc0089c8920 d trace_raw_output_ext4_allocate_blocks.__flags
+ffffffc0089c8a20 d trace_raw_output_ext4_free_blocks.__flags
+ffffffc0089c8a90 d trace_raw_output_ext4_mballoc_alloc.__flags
+ffffffc0089c8b90 d trace_raw_output_ext4__fallocate_mode.__flags
+ffffffc0089c8bf0 d trace_raw_output_ext4__map_blocks_enter.__flags
+ffffffc0089c8cb0 d trace_raw_output_ext4__map_blocks_exit.__flags
+ffffffc0089c8d70 d trace_raw_output_ext4__map_blocks_exit.__flags.252
+ffffffc0089c8dc0 d trace_raw_output_ext4_ext_handle_unwritten_extents.__flags
+ffffffc0089c8e80 d trace_raw_output_ext4_get_implied_cluster_alloc_exit.__flags
+ffffffc0089c8ed0 d trace_raw_output_ext4__es_extent.__flags
+ffffffc0089c8f30 d trace_raw_output_ext4_es_find_extent_range_exit.__flags
+ffffffc0089c8f90 d trace_raw_output_ext4_es_lookup_extent_exit.__flags
+ffffffc0089c8ff0 d trace_raw_output_ext4_es_insert_delayed_block.__flags
+ffffffc0089c9050 d trace_raw_output_ext4_fc_stats.symbols
+ffffffc0089c9100 d trace_raw_output_ext4_fc_stats.symbols.355
+ffffffc0089c91b0 d trace_raw_output_ext4_fc_stats.symbols.356
+ffffffc0089c9260 d trace_raw_output_ext4_fc_stats.symbols.357
+ffffffc0089c9310 d trace_raw_output_ext4_fc_stats.symbols.358
+ffffffc0089c93c0 d trace_raw_output_ext4_fc_stats.symbols.359
+ffffffc0089c9470 d trace_raw_output_ext4_fc_stats.symbols.360
+ffffffc0089c9520 d trace_raw_output_ext4_fc_stats.symbols.361
+ffffffc0089c95d0 d trace_raw_output_ext4_fc_stats.symbols.362
+ffffffc0089c9680 d trace_raw_output_ext4_fc_stats.symbols.363
+ffffffc0089c9730 d err_translation
+ffffffc0089c97b0 d ext4_mount_opts
+ffffffc0089c99d0 d ext4_param_specs
+ffffffc0089ca430 d ext4_param_errors
+ffffffc0089ca470 d ext4_param_data
+ffffffc0089ca4b0 d ext4_param_data_err
+ffffffc0089ca4e0 d ext4_param_jqfmt
+ffffffc0089ca520 d ext4_param_dax
+ffffffc0089ca560 d ext4_context_ops
+ffffffc0089ca590 d ext4_sops
+ffffffc0089ca640 d ext4_export_ops
+ffffffc0089ca6c0 D ext4_encrypted_symlink_inode_operations
+ffffffc0089ca780 D ext4_symlink_inode_operations
+ffffffc0089ca840 D ext4_fast_symlink_inode_operations
+ffffffc0089ca94d d proc_dirname
+ffffffc0089ca958 d ext4_attr_ops
+ffffffc0089ca968 d ext4_group
+ffffffc0089ca990 d ext4_feat_group
+ffffffc0089ca9b8 d ext4_xattr_handler_map
+ffffffc0089caa10 D ext4_xattr_hurd_handler
+ffffffc0089caa40 D ext4_xattr_trusted_handler
+ffffffc0089caa70 D ext4_xattr_user_handler
+ffffffc0089caae8 D ext4_xattr_security_handler
+ffffffc0089cab40 d str__jbd2__trace_system_name
+ffffffc0089cab48 d jbd2_info_proc_ops
+ffffffc0089caba0 d jbd2_seq_info_ops
+ffffffc0089cabc0 d jbd2_slab_names
+ffffffc0089cac00 d ramfs_dir_inode_operations
+ffffffc0089cacc0 D ramfs_fs_parameters
+ffffffc0089cad00 d ramfs_context_ops
+ffffffc0089cad30 d ramfs_ops
+ffffffc0089cade0 D ramfs_file_operations
+ffffffc0089caf00 D ramfs_file_inode_operations
+ffffffc0089cafc0 d utf8agetab
+ffffffc0089cb01c d utf8nfdicfdata
+ffffffc0089cb0d4 d utf8nfdidata
+ffffffc0089cb18c d utf8data
+ffffffc0089daca8 D fuse_dev_fiq_ops
+ffffffc0089dacc8 D fuse_dev_operations
+ffffffc0089dadd8 d __param_str_allow_sys_admin_access
+ffffffc0089dae00 d fuse_common_inode_operations.llvm.12319877808028829885
+ffffffc0089daec0 d fuse_dir_inode_operations
+ffffffc0089daf80 d fuse_dir_operations
+ffffffc0089db0c0 d fuse_symlink_inode_operations
+ffffffc0089db180 d fuse_symlink_aops
+ffffffc0089db240 D fuse_root_dentry_operations
+ffffffc0089db300 D fuse_dentry_operations
+ffffffc0089db3c0 d fuse_file_operations
+ffffffc0089db4d0 d fuse_file_aops
+ffffffc0089db570 d fuse_file_vm_ops
+ffffffc0089db649 d __param_str_max_user_bgreq
+ffffffc0089db660 d __param_ops_max_user_bgreq
+ffffffc0089db680 d __param_str_max_user_congthresh
+ffffffc0089db6a0 d __param_ops_max_user_congthresh
+ffffffc0089db6c0 d fuse_context_submount_ops
+ffffffc0089db6f0 d fuse_super_operations
+ffffffc0089db7a0 d fuse_export_operations
+ffffffc0089db818 d bpf_features_group
+ffffffc0089db840 d bpf_attr_group
+ffffffc0089db868 d fuse_fs_parameters
+ffffffc0089dba28 d fuse_context_ops
+ffffffc0089dba58 d fuse_ctl_waiting_ops
+ffffffc0089dbb68 d fuse_ctl_abort_ops
+ffffffc0089dbc78 d fuse_conn_max_background_ops
+ffffffc0089dbd88 d fuse_conn_congestion_threshold_ops
+ffffffc0089dbe98 d fuse_ctl_context_ops
+ffffffc0089dbec8 d fuse_ctl_fill_super.empty_descr
+ffffffc0089dbee0 d fuse_xattr_handler
+ffffffc0089dbf10 d fuse_no_acl_access_xattr_handler
+ffffffc0089dbf40 d fuse_no_acl_default_xattr_handler
+ffffffc0089dbf80 d debugfs_dir_inode_operations
+ffffffc0089dc040 d debugfs_symlink_inode_operations
+ffffffc0089dc100 d debugfs_file_inode_operations
+ffffffc0089dc1c0 d debug_fill_super.debug_files
+ffffffc0089dc1d8 d debugfs_super_operations
+ffffffc0089dc2c0 d debugfs_dops
+ffffffc0089dc380 d fops_u8
+ffffffc0089dc490 d fops_u8_ro
+ffffffc0089dc5a0 d fops_u8_wo
+ffffffc0089dc6b0 d fops_u16
+ffffffc0089dc7c0 d fops_u16_ro
+ffffffc0089dc8d0 d fops_u16_wo
+ffffffc0089dc9e0 d fops_u32
+ffffffc0089dcaf0 d fops_u32_ro
+ffffffc0089dcc00 d fops_u32_wo
+ffffffc0089dcd10 d fops_u64
+ffffffc0089dce20 d fops_u64_ro
+ffffffc0089dcf30 d fops_u64_wo
+ffffffc0089dd040 d fops_ulong
+ffffffc0089dd150 d fops_ulong_ro
+ffffffc0089dd260 d fops_ulong_wo
+ffffffc0089dd370 d fops_x8
+ffffffc0089dd480 d fops_x8_ro
+ffffffc0089dd590 d fops_x8_wo
+ffffffc0089dd6a0 d fops_x16
+ffffffc0089dd7b0 d fops_x16_ro
+ffffffc0089dd8c0 d fops_x16_wo
+ffffffc0089dd9d0 d fops_x32
+ffffffc0089ddae0 d fops_x32_ro
+ffffffc0089ddbf0 d fops_x32_wo
+ffffffc0089ddd00 d fops_x64
+ffffffc0089dde10 d fops_x64_ro
+ffffffc0089ddf20 d fops_x64_wo
+ffffffc0089de030 d fops_size_t
+ffffffc0089de140 d fops_size_t_ro
+ffffffc0089de250 d fops_size_t_wo
+ffffffc0089de360 d fops_atomic_t
+ffffffc0089de470 d fops_atomic_t_ro
+ffffffc0089de580 d fops_atomic_t_wo
+ffffffc0089de690 d fops_bool
+ffffffc0089de7a0 d fops_bool_ro
+ffffffc0089de8b0 d fops_bool_wo
+ffffffc0089de9c0 d fops_str
+ffffffc0089dead0 d fops_str_ro
+ffffffc0089debe0 d fops_str_wo
+ffffffc0089decf0 d fops_blob
+ffffffc0089dee00 d u32_array_fops
+ffffffc0089def10 d debugfs_regset32_fops
+ffffffc0089df020 d debugfs_devm_entry_ops
+ffffffc0089df130 D debugfs_full_proxy_file_operations
+ffffffc0089df240 D debugfs_noop_file_operations
+ffffffc0089df350 D debugfs_open_proxy_file_operations
+ffffffc0089df460 d tracefs_file_operations
+ffffffc0089df580 d tracefs_dir_inode_operations
+ffffffc0089df640 d trace_fill_super.trace_files
+ffffffc0089df658 d tracefs_super_operations
+ffffffc0089df718 D erofs_sops
+ffffffc0089df7c8 d trace_raw_output_erofs_readpage.symbols
+ffffffc0089df7f8 d trace_raw_output_erofs__map_blocks_enter.__flags
+ffffffc0089df818 d trace_raw_output_erofs__map_blocks_exit.__flags
+ffffffc0089df838 d trace_raw_output_erofs__map_blocks_exit.__flags.43
+ffffffc0089df878 d erofs_anon_context_ops
+ffffffc0089df8a8 d erofs_context_ops
+ffffffc0089df8d8 d erofs_fc_fill_pseudo_super.empty_descr
+ffffffc0089df8f0 d erofs_fs_parameters
+ffffffc0089dfa10 d erofs_param_cache_strategy
+ffffffc0089dfa50 d erofs_dax_param_enums
+ffffffc0089dfa80 d erofs_export_ops
+ffffffc0089dfad8 d managed_cache_aops
+ffffffc0089dfbc0 D erofs_generic_iops
+ffffffc0089dfc80 D erofs_symlink_iops
+ffffffc0089dfd40 D erofs_fast_symlink_iops
+ffffffc0089dfe00 d erofs_iomap_ops
+ffffffc0089dfe20 D erofs_raw_access_aops
+ffffffc0089dfec0 D erofs_file_fops
+ffffffc0089e0000 D erofs_dir_iops
+ffffffc0089e00c0 D erofs_dir_fops
+ffffffc0089e01d0 d erofs_attr_ops
+ffffffc0089e01e0 d erofs_group
+ffffffc0089e0208 d erofs_feat_group
+ffffffc0089e0230 D erofs_xattr_user_handler
+ffffffc0089e0260 D erofs_xattr_trusted_handler
+ffffffc0089e0290 D erofs_xattr_security_handler
+ffffffc0089e02c0 d find_xattr_handlers
+ffffffc0089e02e0 d list_xattr_handlers
+ffffffc0089e0300 d erofs_xattr_handler.xattr_handler_map
+ffffffc0089e0338 d decompressors
+ffffffc0089e0378 D z_erofs_iomap_report_ops
+ffffffc0089e0398 D z_erofs_aops
+ffffffc0089e04e0 D lockdown_reasons
+ffffffc0089e05d0 d securityfs_context_ops
+ffffffc0089e0600 d securityfs_fill_super.files
+ffffffc0089e0618 d securityfs_super_operations
+ffffffc0089e06c8 d lsm_ops
+ffffffc0089e0858 d str__avc__trace_system_name
+ffffffc0089e0860 D secclass_map
+ffffffc0089e7228 d selinux_fs_parameters
+ffffffc0089e73b0 d sel_context_ops
+ffffffc0089e73e0 d sel_fill_super.selinux_files
+ffffffc0089e7608 d sel_load_ops
+ffffffc0089e7718 d sel_enforce_ops
+ffffffc0089e7828 d transaction_ops
+ffffffc0089e7938 d sel_policyvers_ops
+ffffffc0089e7a48 d sel_commit_bools_ops
+ffffffc0089e7b58 d sel_mls_ops
+ffffffc0089e7c68 d sel_disable_ops
+ffffffc0089e7d78 d sel_checkreqprot_ops
+ffffffc0089e7e88 d sel_handle_unknown_ops
+ffffffc0089e7f98 d sel_handle_status_ops
+ffffffc0089e80a8 d sel_policy_ops
+ffffffc0089e81b8 d sel_transition_ops
+ffffffc0089e82c8 d sel_bool_ops
+ffffffc0089e83d8 d sel_class_ops
+ffffffc0089e84e8 d sel_perm_ops
+ffffffc0089e85f8 d write_op
+ffffffc0089e8670 d sel_mmap_policy_ops
+ffffffc0089e8700 d sel_avc_cache_threshold_ops
+ffffffc0089e8810 d sel_avc_hash_stats_ops
+ffffffc0089e8920 d sel_avc_cache_stats_ops
+ffffffc0089e8a30 d sel_avc_cache_stats_seq_ops
+ffffffc0089e8a50 d sel_sidtab_hash_stats_ops
+ffffffc0089e8b60 d sel_initcon_ops
+ffffffc0089e8c70 d sel_policycap_ops
+ffffffc0089e8d88 d nlmsg_xfrm_perms
+ffffffc0089e8e50 d nlmsg_audit_perms
+ffffffc0089e8f70 d spec_order
+ffffffc0089e8fa0 d read_f
+ffffffc0089e8fe0 d write_f
+ffffffc0089e9020 d policydb_compat
+ffffffc0089e9108 d index_f
+ffffffc0089e9440 D selinux_policycap_names
+ffffffc0089e9480 d initial_sid_to_string
+ffffffc0089e95b8 d crypto_seq_ops.llvm.5228486089277653777
+ffffffc0089e95d8 d crypto_aead_type.llvm.5727768952746863567
+ffffffc0089e9620 d crypto_skcipher_type.llvm.12067929834754201081
+ffffffc0089e9668 d crypto_ahash_type.llvm.10494031705451376694
+ffffffc0089e96b0 d crypto_shash_type.llvm.16812449986304017470
+ffffffc0089e96f8 d crypto_akcipher_type
+ffffffc0089e9740 d crypto_kpp_type
+ffffffc0089e9788 d crypto_acomp_type
+ffffffc0089e97d0 d crypto_scomp_type
+ffffffc0089e9818 d __param_str_notests
+ffffffc0089e982a d __param_str_panic_on_fail
+ffffffc0089e9842 D md5_zero_message_hash
+ffffffc0089e9852 D sha1_zero_message_hash
+ffffffc0089e9866 D sha224_zero_message_hash
+ffffffc0089e9882 D sha256_zero_message_hash
+ffffffc0089e98a2 D sha384_zero_message_hash
+ffffffc0089e98d2 D sha512_zero_message_hash
+ffffffc0089e9918 d sha512_K
+ffffffc0089e9b98 d gf128mul_table_be
+ffffffc0089e9d98 d gf128mul_table_le
+ffffffc0089e9f98 d hctr2_hash_message.padding
+ffffffc0089ea000 D crypto_ft_tab
+ffffffc0089eb000 D crypto_it_tab
+ffffffc0089ec000 d crypto_fl_tab
+ffffffc0089ed000 d crypto_il_tab
+ffffffc0089ee000 d crypto_rng_type.llvm.10449926220273229198
+ffffffc0089ee048 d __param_str_dbg
+ffffffc0089ee058 d drbg_cores
+ffffffc0089ee478 d drbg_hmac_ops
+ffffffc0089ee498 d bdev_sops
+ffffffc0089ee548 D def_blk_fops
+ffffffc0089ee658 D def_blk_aops
+ffffffc0089eead8 d elv_sysfs_ops
+ffffffc0089eeba0 d blk_op_name
+ffffffc0089eecc0 d blk_errors
+ffffffc0089eedf0 d queue_sysfs_ops
+ffffffc0089eee60 d blk_mq_hw_sysfs_ops
+ffffffc0089eee70 d default_hw_ctx_group
+ffffffc0089eef38 D disk_type
+ffffffc0089eef68 d diskstats_op
+ffffffc0089eef88 d partitions_op
+ffffffc0089eefbc d __param_str_events_dfl_poll_msecs
+ffffffc0089eefd8 d disk_events_dfl_poll_msecs_param_ops
+ffffffc0089eeff8 d blk_ia_range_sysfs_ops
+ffffffc0089ef008 d blk_ia_range_group
+ffffffc0089ef030 d deadline_queue_debugfs_attrs
+ffffffc0089ef378 d deadline_read0_fifo_seq_ops
+ffffffc0089ef398 d deadline_write0_fifo_seq_ops
+ffffffc0089ef3b8 d deadline_read1_fifo_seq_ops
+ffffffc0089ef3d8 d deadline_write1_fifo_seq_ops
+ffffffc0089ef3f8 d deadline_read2_fifo_seq_ops
+ffffffc0089ef418 d deadline_write2_fifo_seq_ops
+ffffffc0089ef438 d deadline_dispatch0_seq_ops
+ffffffc0089ef458 d deadline_dispatch1_seq_ops
+ffffffc0089ef478 d deadline_dispatch2_seq_ops
+ffffffc0089ef498 d kyber_queue_debugfs_attrs
+ffffffc0089ef588 d kyber_hctx_debugfs_attrs
+ffffffc0089ef740 d kyber_latency_targets
+ffffffc0089ef758 d kyber_domain_names
+ffffffc0089ef778 d kyber_latency_type_names
+ffffffc0089ef788 d kyber_read_rqs_seq_ops
+ffffffc0089ef7a8 d kyber_write_rqs_seq_ops
+ffffffc0089ef7c8 d kyber_discard_rqs_seq_ops
+ffffffc0089ef7e8 d kyber_other_rqs_seq_ops
+ffffffc0089ef838 D bfq_timeout
+ffffffc0089ef858 d zone_cond_name
+ffffffc0089ef8d8 d cmd_flag_name
+ffffffc0089ef9b8 d rqf_name
+ffffffc0089efa78 d blk_mq_debugfs_queue_attrs
+ffffffc0089efb68 d blk_mq_debugfs_hctx_attrs
+ffffffc0089efd98 d blk_mq_rq_state_name_array
+ffffffc0089efdb0 d blk_mq_debugfs_fops
+ffffffc0089efec0 d queue_requeue_list_seq_ops
+ffffffc0089efee0 d blk_queue_flag_name
+ffffffc0089effd0 d hctx_dispatch_seq_ops
+ffffffc0089efff0 d alloc_policy_name
+ffffffc0089f0000 d hctx_flag_name
+ffffffc0089f0038 d hctx_types
+ffffffc0089f0050 d blk_mq_debugfs_ctx_attrs
+ffffffc0089f00f0 d ctx_default_rq_list_seq_ops
+ffffffc0089f0110 d ctx_read_rq_list_seq_ops
+ffffffc0089f0130 d ctx_poll_rq_list_seq_ops
+ffffffc0089f0168 d __param_str_num_prealloc_crypt_ctxs
+ffffffc0089f0190 D blk_crypto_modes
+ffffffc0089f0230 d blk_crypto_attr_ops
+ffffffc0089f0240 d blk_crypto_attr_group
+ffffffc0089f0268 d blk_crypto_modes_attr_group
+ffffffc0089f0290 d __param_str_num_prealloc_bounce_pg
+ffffffc0089f02bb d __param_str_num_keyslots
+ffffffc0089f02dc d __param_str_num_prealloc_fallback_crypt_ctxs
+ffffffc0089f0318 d blk_crypto_fallback_ll_ops
+ffffffc0089f039c d str__io_uring__trace_system_name
+ffffffc0089f03a8 d io_uring_fops.llvm.1709519943644796254
+ffffffc0089f04c0 D io_op_defs
+ffffffc0089f0fb5 D guid_null
+ffffffc0089f0fc5 D uuid_null
+ffffffc0089f0fd5 D guid_index
+ffffffc0089f0fe5 D uuid_index
+ffffffc0089f10bd d base64_table
+ffffffc0089f1118 d string_get_size.units_10
+ffffffc0089f1160 d string_get_size.units_2
+ffffffc0089f11a8 d string_get_size.units_str
+ffffffc0089f11b8 d string_get_size.rounding
+ffffffc0089f11cd D hex_asc
+ffffffc0089f11de D hex_asc_upper
+ffffffc0089f123c d S8
+ffffffc0089f133c d S6
+ffffffc0089f143c d S7
+ffffffc0089f153c d S5
+ffffffc0089f163c d S4
+ffffffc0089f173c d S2
+ffffffc0089f183c d S3
+ffffffc0089f193c d S1
+ffffffc0089f1a3c d pc2
+ffffffc0089f2a3c d pc1
+ffffffc0089f2b3c d rs
+ffffffc0089f2c3c d SHA256_K
+ffffffc0089f2d3c d __sha256_final.padding
+ffffffc0089f2d7c d str__rwmmio__trace_system_name
+ffffffc0089f2d84 D crc16_table
+ffffffc0089f2fc0 d crc32table_le
+ffffffc0089f4fc0 d crc32ctable_le
+ffffffc0089f6fc0 d crc32table_be
+ffffffc0089f8ffe d zlib_inflate.order
+ffffffc0089f9024 d zlib_fixedtables.lenfix
+ffffffc0089f9824 d zlib_fixedtables.distfix
+ffffffc0089f98a4 d zlib_inflate_table.lbase
+ffffffc0089f98e2 d zlib_inflate_table.lext
+ffffffc0089f9920 d zlib_inflate_table.dbase
+ffffffc0089f9960 d zlib_inflate_table.dext
+ffffffc0089f99a0 d configuration_table
+ffffffc0089f9a40 d extra_dbits
+ffffffc0089f9ab8 d extra_lbits
+ffffffc0089f9b2c d extra_blbits
+ffffffc0089f9b78 d bl_order
+ffffffc0089f9b8c d BIT_mask
+ffffffc0089f9c0c d BIT_mask
+ffffffc0089f9c8c d BIT_mask
+ffffffc0089f9d0c d BIT_mask
+ffffffc0089f9ef0 d ZSTD_defaultCMem
+ffffffc0089f9f08 d repStartValue
+ffffffc0089f9f14 d repStartValue
+ffffffc0089f9f20 d ZSTD_selectBlockCompressor.blockCompressor
+ffffffc0089fa060 d ZSTD_LLcode.LL_Code
+ffffffc0089fa0a0 d ZSTD_LLcode.LL_Code
+ffffffc0089fa0e0 d ZSTD_MLcode.ML_Code
+ffffffc0089fa160 d ZSTD_MLcode.ML_Code
+ffffffc0089fa1e0 d LL_defaultNorm
+ffffffc0089fa228 d LL_defaultNorm
+ffffffc0089fa270 d OF_defaultNorm
+ffffffc0089fa2aa d OF_defaultNorm
+ffffffc0089fa2e4 d ML_defaultNorm
+ffffffc0089fa34e d ML_defaultNorm
+ffffffc0089fa3b8 d attachDictSizeCutoffs
+ffffffc0089fa408 d ZSTD_defaultCParameters
+ffffffc0089fae1c d kInverseProbabilityLog256
+ffffffc0089fb21c d LL_bits
+ffffffc0089fb2ac d LL_bits
+ffffffc0089fb33c d LL_bits
+ffffffc0089fb3cc d LL_bits
+ffffffc0089fb45c d LL_bits
+ffffffc0089fb4ec d ML_bits
+ffffffc0089fb5c0 d ML_bits
+ffffffc0089fb694 d ML_bits
+ffffffc0089fb768 d ML_bits
+ffffffc0089fb83c d ML_bits
+ffffffc0089fb930 d ZSTD_ldm_gearTab
+ffffffc0089fc188 d algoTime
+ffffffc0089fc324 d OF_base
+ffffffc0089fc3a4 d OF_base
+ffffffc0089fc424 d OF_bits
+ffffffc0089fc4a4 d OF_bits
+ffffffc0089fc524 d ML_base
+ffffffc0089fc5f8 d ML_base
+ffffffc0089fc6cc d LL_base
+ffffffc0089fc75c d LL_base
+ffffffc0089fc818 d LL_defaultDTable
+ffffffc0089fca20 d OF_defaultDTable
+ffffffc0089fcb28 d ML_defaultDTable
+ffffffc0089fcee0 d __param_str_verbose
+ffffffc0089fcef8 D param_ops_dyndbg_classes
+ffffffc0089fcf18 d opt_array
+ffffffc0089fcf30 d ddebug_proc_fops
+ffffffc0089fd040 d proc_fops
+ffffffc0089fd098 d ddebug_proc_seqops
+ffffffc0089fd0e8 d names_0
+ffffffc0089fd518 d names_512
+ffffffc0089fd704 d nla_attr_len
+ffffffc0089fd718 d nla_attr_minlen
+ffffffc0089fd72c d __nla_validate_parse.__msg
+ffffffc0089fd754 d __nla_validate_parse.__msg.1
+ffffffc0089fd76b d __nla_validate_parse.__msg.2
+ffffffc0089fd793 d validate_nla.__msg
+ffffffc0089fd7ac d validate_nla.__msg.4
+ffffffc0089fd7c4 d validate_nla.__msg.5
+ffffffc0089fd7de d validate_nla.__msg.6
+ffffffc0089fd7f4 d validate_nla.__msg.7
+ffffffc0089fd817 d nla_validate_array.__msg
+ffffffc0089fd82f d nla_validate_range_unsigned.__msg
+ffffffc0089fd848 d nla_validate_range_unsigned.__msg.8
+ffffffc0089fd86b d nla_validate_range_unsigned.__msg.9
+ffffffc0089fd880 d nla_validate_int_range_signed.__msg
+ffffffc0089fd895 d nla_validate_mask.__msg
+ffffffc0089fd948 d gic_quirks
+ffffffc0089fd988 d gic_quirks
+ffffffc0089fda28 d gic_irq_domain_hierarchy_ops
+ffffffc0089fda78 d gic_irq_domain_ops
+ffffffc0089fdac8 d gic_irq_domain_ops
+ffffffc0089fdb18 d gic_chip_mode1
+ffffffc0089fdc20 d gic_chip
+ffffffc0089fdd28 d gicv2m_device_id
+ffffffc0089fdeb8 d gicv2m_domain_ops
+ffffffc0089fdf48 d partition_domain_ops
+ffffffc0089fdf98 d mbi_domain_ops
+ffffffc0089fe008 d its_sgi_domain_ops
+ffffffc0089fe058 d its_vpe_domain_ops
+ffffffc0089fe0a8 d its_device_id
+ffffffc0089fe238 d its_device_id
+ffffffc0089fe3c8 d its_quirks
+ffffffc0089fe468 d its_base_type_string
+ffffffc0089fe4a8 d its_domain_ops
+ffffffc0089fe508 d simple_pm_bus_of_match
+ffffffc0089fe9f8 d pci_speed_string.speed_strings
+ffffffc0089feac8 d agp_speeds
+ffffffc0089feacd D pcie_link_speed
+ffffffc0089feae0 D pci_dev_reset_method_attr_group
+ffffffc0089feb08 d pci_reset_fn_methods
+ffffffc0089febd8 d pci_dev_pm_ops
+ffffffc0089fec98 d pci_drv_group
+ffffffc0089fecc0 d pci_device_id_any
+ffffffc0089fece8 d pci_bus_group
+ffffffc0089fed10 d pcibus_group
+ffffffc0089fed38 d pci_dev_group
+ffffffc0089fed60 d pci_dev_config_attr_group
+ffffffc0089fed88 d pci_dev_rom_attr_group
+ffffffc0089fedb0 d pci_dev_reset_attr_group
+ffffffc0089fedd8 d pci_dev_resource_resize_group
+ffffffc0089fee00 d pci_dev_attr_group
+ffffffc0089fee28 d pci_dev_hp_attr_group
+ffffffc0089fee50 d pci_bridge_attr_group
+ffffffc0089fee78 d pcie_dev_attr_group
+ffffffc0089feea0 D pci_dev_type
+ffffffc0089feed0 D pci_dev_vpd_attr_group
+ffffffc0089feef8 d vc_caps
+ffffffc0089fef28 d pci_phys_vm_ops
+ffffffc0089fefb8 d port_pci_ids
+ffffffc0089ff058 d pcie_portdrv_err_handler
+ffffffc0089ff090 d pcie_portdrv_pm_ops
+ffffffc0089ff150 d __param_str_policy
+ffffffc0089ff168 d __param_ops_policy
+ffffffc0089ff188 D aspm_ctrl_attr_group
+ffffffc0089ff1b0 d aspm_ctrl_attrs_are_visible.aspm_state_map
+ffffffc0089ff1b8 D aer_stats_attr_group
+ffffffc0089ff1e0 d aer_error_severity_string
+ffffffc0089ff1f8 d aer_error_layer
+ffffffc0089ff210 d aer_agent_string
+ffffffc0089ff230 d aer_correctable_error_string
+ffffffc0089ff330 d aer_uncorrectable_error_string
+ffffffc0089ff458 d proc_bus_pci_ops
+ffffffc0089ff4b0 d proc_bus_pci_devices_op
+ffffffc0089ff4d0 d pci_slot_sysfs_ops
+ffffffc0089ff4e0 d pci_slot_default_group
+ffffffc0089ff608 d pci_dev_acs_enabled
+ffffffc0089ffd88 d fixed_dma_alias_tbl
+ffffffc0089ffe00 d pci_quirk_intel_pch_acs_ids
+ffffffc0089ffef0 D sriov_vf_dev_attr_group
+ffffffc0089fff18 D sriov_pf_dev_attr_group
+ffffffc0089fff40 D pci_generic_ecam_ops
+ffffffc0089fff80 d vga_arb_device_fops
+ffffffc008a000a8 d pci_epf_type
+ffffffc008a000d8 d gen_pci_of_match
+ffffffc008a00588 d gen_pci_cfg_cam_bus_ops
+ffffffc008a005c8 d pci_dw_ecam_bus_ops
+ffffffc008a00618 d dw_pcie_msi_domain_ops
+ffffffc008a00668 d epc_ops
+ffffffc008a006e0 d dw_plat_pcie_of_match
+ffffffc008a00938 d pcie_ep_ops
+ffffffc008a00958 d dw_plat_pcie_epc_features
+ffffffc008a00998 d dw_plat_pcie_rc_of_data
+ffffffc008a0099c d dw_plat_pcie_ep_of_data
+ffffffc008a009a0 d kirin_pcie_match
+ffffffc008a00bf8 d kirin_dw_pcie_ops
+ffffffc008a00c30 d kirin_pcie_host_ops
+ffffffc008a00c48 d pcie_kirin_regmap_conf
+ffffffc008a00d90 d kirin_960_data
+ffffffc008a00d94 d kirin_970_data
+ffffffc008a00d98 D dummy_con
+ffffffc008a00e68 d amba_pm
+ffffffc008a00f28 d amba_dev_group
+ffffffc008a00f50 d amba_stub_drv_ids
+ffffffc008a00f60 d clk_nodrv_ops
+ffffffc008a01040 d clk_summary_fops
+ffffffc008a01150 d clk_dump_fops
+ffffffc008a01260 d clk_rate_fops
+ffffffc008a01370 d clk_min_rate_fops
+ffffffc008a01480 d clk_max_rate_fops
+ffffffc008a01590 d clk_flags_fops
+ffffffc008a016a0 d clk_duty_cycle_fops
+ffffffc008a017b0 d clk_prepare_enable_fops
+ffffffc008a018c0 d current_parent_rw_fops
+ffffffc008a019d0 d current_parent_fops
+ffffffc008a01ae0 d possible_parents_fops
+ffffffc008a01bf0 d clk_flags
+ffffffc008a01cb0 D clk_divider_ops
+ffffffc008a01d88 D clk_divider_ro_ops
+ffffffc008a01e60 D clk_fixed_factor_ops
+ffffffc008a01f38 d of_fixed_factor_clk_ids
+ffffffc008a020c8 D clk_fixed_rate_ops
+ffffffc008a021a0 d of_fixed_clk_ids
+ffffffc008a02330 D clk_gate_ops
+ffffffc008a02408 D clk_multiplier_ops
+ffffffc008a024e0 D clk_mux_ops
+ffffffc008a025b8 D clk_mux_ro_ops
+ffffffc008a02690 D clk_fractional_divider_ops
+ffffffc008a02768 d gpio_clk_match_table
+ffffffc008a029c0 d virtio_dev_group
+ffffffc008a02a28 d virtio_pci_config_ops
+ffffffc008a02ab0 d virtio_pci_config_ops
+ffffffc008a02b38 d virtio_pci_config_nodev_ops
+ffffffc008a02bc0 d __param_str_force_legacy
+ffffffc008a02bd8 d virtio_pci_id_table
+ffffffc008a02c28 d virtio_pci_pm_ops
+ffffffc008a02ce8 d id_table
+ffffffc008a02cf8 d id_table
+ffffffc008a02d08 d id_table
+ffffffc008a02ee8 d hung_up_tty_fops
+ffffffc008a02ff8 d tty_fops.llvm.7434326271518807336
+ffffffc008a03108 d console_fops
+ffffffc008a03218 d cons_dev_group
+ffffffc008a033c0 D tty_ldiscs_seq_ops
+ffffffc008a033e0 D tty_port_default_client_ops
+ffffffc008a033f8 d baud_table
+ffffffc008a03474 d baud_bits
+ffffffc008a03560 d ptm_unix98_ops
+ffffffc008a03678 d pty_unix98_ops
+ffffffc008a03790 d sysrq_reboot_op
+ffffffc008a037b0 d __param_str_reset_seq
+ffffffc008a037c0 d __param_arr_reset_seq
+ffffffc008a037e0 d __param_str_sysrq_downtime_ms
+ffffffc008a037f8 d sysrq_loglevel_op
+ffffffc008a03818 d sysrq_crash_op
+ffffffc008a03838 d sysrq_term_op
+ffffffc008a03858 d sysrq_moom_op
+ffffffc008a03878 d sysrq_kill_op
+ffffffc008a03898 d sysrq_thaw_op
+ffffffc008a038b8 d sysrq_SAK_op
+ffffffc008a038d8 d sysrq_showallcpus_op
+ffffffc008a038f8 d sysrq_showmem_op
+ffffffc008a03918 d sysrq_unrt_op
+ffffffc008a03938 d sysrq_showregs_op
+ffffffc008a03958 d sysrq_show_timers_op
+ffffffc008a03978 d sysrq_unraw_op
+ffffffc008a03998 d sysrq_sync_op
+ffffffc008a039b8 d sysrq_showstate_op
+ffffffc008a039d8 d sysrq_mountro_op
+ffffffc008a039f8 d sysrq_showstate_blocked_op
+ffffffc008a03a18 d sysrq_ftrace_dump_op
+ffffffc008a03a38 d param_ops_sysrq_reset_seq
+ffffffc008a03a58 d sysrq_xlate
+ffffffc008a03d58 d sysrq_ids
+ffffffc008a03ee8 d sysrq_trigger_proc_ops
+ffffffc008a04380 d vcs_fops
+ffffffc008a044be d __param_str_brl_timeout
+ffffffc008a044d3 d __param_str_brl_nbchords
+ffffffc008a044f0 d kbd_ids
+ffffffc008a04748 d k_handler
+ffffffc008a047c8 d fn_handler
+ffffffc008a04868 d k_dead.ret_diacr
+ffffffc008a04883 d max_vals
+ffffffc008a04e3d d __param_str_default_utf8
+ffffffc008a04e4d d __param_str_global_cursor_default
+ffffffc008a04e66 d __param_str_cur_default
+ffffffc008a04e75 d __param_str_consoleblank
+ffffffc008a04e88 d vc_port_ops
+ffffffc008a04eb8 D color_table
+ffffffc008a04ec8 d __param_str_default_red
+ffffffc008a04ed8 d __param_arr_default_red
+ffffffc008a04ef8 d __param_str_default_grn
+ffffffc008a04f08 d __param_arr_default_grn
+ffffffc008a04f28 d __param_str_default_blu
+ffffffc008a04f38 d __param_arr_default_blu
+ffffffc008a04f58 d __param_str_color
+ffffffc008a04f61 d __param_str_italic
+ffffffc008a04f6b d __param_str_underline
+ffffffc008a04f78 d con_ops
+ffffffc008a05090 d vt_dev_group
+ffffffc008a050b8 d vc_translate_unicode.utf8_length_changes
+ffffffc008a050d0 d respond_ID.vt102_id
+ffffffc008a050d6 d status_report.teminal_ok
+ffffffc008a050dc d is_double_width.double_width
+ffffffc008a05140 d con_dev_group
+ffffffc008a05168 d hvc_port_ops
+ffffffc008a05198 d hvc_ops
+ffffffc008a052b0 d uart_ops
+ffffffc008a053c8 d uart_port_ops
+ffffffc008a053f8 d tty_dev_attr_group
+ffffffc008a05428 d __param_str_share_irqs
+ffffffc008a05438 d __param_str_nr_uarts
+ffffffc008a05446 d __param_str_skip_txen_test
+ffffffc008a05460 d univ8250_driver_ops
+ffffffc008a05490 d uart_config
+ffffffc008a06000 d serial8250_pops
+ffffffc008a06180 d pericom8250_pci_ids
+ffffffc008a06770 d of_platform_serial_table
+ffffffc008a07648 d of_serial_pm_ops
+ffffffc008a07708 d ttynull_port_ops
+ffffffc008a07738 d ttynull_ops
+ffffffc008a07850 d memory_fops
+ffffffc008a07960 d devlist
+ffffffc008a07ae0 d null_fops
+ffffffc008a07bf0 d zero_fops
+ffffffc008a07d00 d full_fops
+ffffffc008a07e10 d __param_str_ratelimit_disable
+ffffffc008a07e30 D random_fops
+ffffffc008a07f40 D urandom_fops
+ffffffc008a08050 d misc_seq_ops
+ffffffc008a08070 d misc_fops
+ffffffc008a08188 d hv_ops
+ffffffc008a081d0 d features
+ffffffc008a081d8 d portdev_fops
+ffffffc008a082e8 d port_attribute_group
+ffffffc008a08310 d port_fops
+ffffffc008a08420 d port_debugfs_fops
+ffffffc008a08530 d rproc_serial_id_table
+ffffffc008a08538 d __param_str_current_quality
+ffffffc008a08538 d rproc_serial_features
+ffffffc008a08551 d __param_str_default_quality
+ffffffc008a08570 d rng_chrdev_ops
+ffffffc008a08680 d rng_dev_group
+ffffffc008a086a8 d arm_cctrng_dt_match
+ffffffc008a08900 d cctrng_pm
+ffffffc008a089c0 d cn10k_rng_id_table
+ffffffc008a08a28 d iommu_buses
+ffffffc008a08a40 d iommu_group_sysfs_ops
+ffffffc008a08a50 d iommu_group_resv_type_string
+ffffffc008a08b38 d str__iommu__trace_system_name
+ffffffc008a08b40 d devices_attr_group
+ffffffc008a08b68 d iommu_dma_ops
+ffffffc008a08c50 d component_devices_fops
+ffffffc008a08d60 d device_uevent_ops
+ffffffc008a08d78 d devlink_group
+ffffffc008a08da0 d dev_sysfs_ops
+ffffffc008a08db0 d dev_attr_physical_location_group
+ffffffc008a08e08 d bus_uevent_ops
+ffffffc008a08e20 d driver_sysfs_ops
+ffffffc008a08e30 d bus_sysfs_ops
+ffffffc008a08e40 d deferred_devs_fops
+ffffffc008a08f50 d class_sysfs_ops
+ffffffc008a08f60 d platform_dev_pm_ops
+ffffffc008a09020 d platform_dev_group
+ffffffc008a09048 d cpu_root_attr_group
+ffffffc008a09070 d cpu_root_vulnerabilities_group
+ffffffc008a09098 d topology_attr_group
+ffffffc008a091c0 d cache_type_info
+ffffffc008a09220 d cache_default_group
+ffffffc008a09248 d software_node_ops
+ffffffc008a092f8 D power_group_name
+ffffffc008a09300 d pm_attr_group
+ffffffc008a09328 d pm_runtime_attr_group.llvm.15051132245558023808
+ffffffc008a09350 d pm_wakeup_attr_group.llvm.15051132245558023808
+ffffffc008a09378 d pm_qos_latency_tolerance_attr_group.llvm.15051132245558023808
+ffffffc008a093a0 d pm_qos_resume_latency_attr_group.llvm.15051132245558023808
+ffffffc008a093c8 d pm_qos_flags_attr_group.llvm.15051132245558023808
+ffffffc008a093f0 d ctrl_on
+ffffffc008a093f3 d _enabled
+ffffffc008a093fb d _disabled
+ffffffc008a09e48 d wakeup_sources_stats_fops
+ffffffc008a09f58 d wakeup_sources_stats_seq_ops
+ffffffc008a09f78 d wakeup_source_group
+ffffffc008a09fa4 d __param_str_path
+ffffffc008a09fb8 d firmware_param_ops
+ffffffc008a09fd8 d fw_path
+ffffffc008a0a048 d firmware_class_group
+ffffffc008a0a070 d fw_dev_attr_group
+ffffffc008a0a098 d online_type_to_str
+ffffffc008a0a0b8 d memory_memblk_attr_group
+ffffffc008a0a0e0 d memory_root_attr_group
+ffffffc008a0a1b8 d str__regmap__trace_system_name
+ffffffc008a0a280 d cache_types
+ffffffc008a0a290 d rbtree_fops
+ffffffc008a0a3a0 d regmap_name_fops
+ffffffc008a0a4b0 d regmap_reg_ranges_fops
+ffffffc008a0a5c0 d regmap_map_fops
+ffffffc008a0a6d0 d regmap_access_fops
+ffffffc008a0a7e0 d regmap_cache_only_fops
+ffffffc008a0a8f0 d regmap_cache_bypass_fops
+ffffffc008a0aa00 d regmap_range_fops
+ffffffc008a0ab50 d regmap_mmio
+ffffffc008a0abe0 d soc_attr_group
+ffffffc008a0ac1d d __param_str_rd_nr
+ffffffc008a0ac27 d __param_str_rd_size
+ffffffc008a0ac33 d __param_str_max_part
+ffffffc008a0ac40 d __param_str_max_part
+ffffffc008a0ac50 d brd_fops
+ffffffc008a0ad4c d __param_str_max_loop
+ffffffc008a0ad5a d __param_str_hw_queue_depth
+ffffffc008a0ad70 d loop_hw_qdepth_param_ops
+ffffffc008a0ad90 d loop_ctl_fops
+ffffffc008a0aea0 d loop_mq_ops
+ffffffc008a0af38 d lo_fops
+ffffffc008a0b06c d __param_str_num_request_queues
+ffffffc008a0b08a d __param_str_poll_queues
+ffffffc008a0b0a1 d __param_str_queue_depth
+ffffffc008a0b0b8 d virtio_mq_ops
+ffffffc008a0b150 d virtblk_fops
+ffffffc008a0b1f8 d virtblk_attr_group
+ffffffc008a0b220 d virtblk_cache_types
+ffffffc008a0b230 d __param_str_num_devices
+ffffffc008a0b248 d zram_control_class_group
+ffffffc008a0b270 d zram_devops
+ffffffc008a0b318 d zram_disk_group
+ffffffc008a0b340 d open_dice_of_match
+ffffffc008a0b4d0 d open_dice_fops
+ffffffc008a0b5e0 d vcpu_stall_detect_of_match
+ffffffc008a0b770 d syscon_regmap_config
+ffffffc008a0b8b8 d syscon_ids
+ffffffc008a0b8f8 d dma_buf_fops
+ffffffc008a0ba40 d dma_buf_dentry_ops
+ffffffc008a0bb00 d dma_buf_debug_fops
+ffffffc008a0bc1c d str__dma_fence__trace_system_name
+ffffffc008a0bc28 d dma_fence_stub_ops
+ffffffc008a0bc70 D dma_fence_array_ops
+ffffffc008a0bcb8 D dma_fence_chain_ops
+ffffffc008a0bd00 d dma_resv_describe.usage
+ffffffc008a0bd20 d dma_heap_fops
+ffffffc008a0be30 d dma_heap_sysfs_group
+ffffffc008a0be58 d dmabuf_sysfs_no_uevent_ops
+ffffffc008a0be70 d dma_buf_stats_sysfs_ops
+ffffffc008a0be80 d dma_buf_stats_default_group
+ffffffc008a0bea8 d loopback_ethtool_ops
+ffffffc008a0c0f8 d loopback_ops
+ffffffc008a0c398 d blackhole_netdev_ops
+ffffffc008a0c648 d uio_group
+ffffffc008a0c670 d map_sysfs_ops
+ffffffc008a0c680 d map_group
+ffffffc008a0c6a8 d portio_sysfs_ops
+ffffffc008a0c6b8 d portio_group
+ffffffc008a0c700 d uio_fops
+ffffffc008a0c810 d uio_physical_vm_ops
+ffffffc008a0c8a0 d uio_logical_vm_ops
+ffffffc008a0c948 d serio_pm_ops
+ffffffc008a0ca08 d serio_id_attr_group
+ffffffc008a0ca30 d serio_device_attr_group
+ffffffc008a0ca58 d serio_driver_group
+ffffffc008a0cab0 d input_dev_type
+ffffffc008a0cae0 d input_dev_pm_ops
+ffffffc008a0cba0 d input_dev_attr_group
+ffffffc008a0cbc8 d input_dev_id_attr_group
+ffffffc008a0cbf0 d input_dev_caps_attr_group
+ffffffc008a0cc18 d input_max_code
+ffffffc008a0cc98 d input_devices_proc_ops
+ffffffc008a0ccf0 d input_handlers_proc_ops
+ffffffc008a0cd48 d input_devices_seq_ops
+ffffffc008a0cd68 d input_handlers_seq_ops
+ffffffc008a0cd88 d rtc_days_in_month
+ffffffc008a0cd94 d rtc_ydays
+ffffffc008a0cdc8 d rtc_class_dev_pm_ops
+ffffffc008a0ce88 d str__rtc__trace_system_name
+ffffffc008a0cea8 d rtc_dev_fops
+ffffffc008a0cfb8 d pl030_ops
+ffffffc008a0d018 d pl031_ids
+ffffffc008a0d058 d syscon_reboot_of_match
+ffffffc008a0d1e8 d POWER_SUPPLY_CHARGE_BEHAVIOUR_TEXT
+ffffffc008a0d200 d power_supply_attr_group
+ffffffc008a0d228 d POWER_SUPPLY_STATUS_TEXT
+ffffffc008a0d250 d POWER_SUPPLY_CHARGE_TYPE_TEXT
+ffffffc008a0d3e8 d POWER_SUPPLY_HEALTH_TEXT
+ffffffc008a0d460 d POWER_SUPPLY_TECHNOLOGY_TEXT
+ffffffc008a0d498 d POWER_SUPPLY_CAPACITY_LEVEL_TEXT
+ffffffc008a0d4c8 d POWER_SUPPLY_TYPE_TEXT
+ffffffc008a0d530 d POWER_SUPPLY_SCOPE_TEXT
+ffffffc008a0d548 d POWER_SUPPLY_USB_TYPE_TEXT
+ffffffc008a0d598 d __param_str_stop_on_reboot
+ffffffc008a0d5e4 d __param_str_handle_boot_enabled
+ffffffc008a0d601 d __param_str_open_timeout
+ffffffc008a0d618 d watchdog_fops
+ffffffc008a0d728 d __param_str_create
+ffffffc008a0d738 d _dm_uevent_type_names
+ffffffc008a0d7e8 d _exits
+ffffffc008a0d828 d dm_rq_blk_dops
+ffffffc008a0d8d0 d __param_str_major
+ffffffc008a0d8dd d __param_str_reserved_bio_based_ios
+ffffffc008a0d8fb d __param_str_dm_numa_node
+ffffffc008a0d90f d __param_str_swap_bios
+ffffffc008a0d920 d dm_blk_dops
+ffffffc008a0d9c8 d dm_pr_ops
+ffffffc008a0d9f0 d _ctl_fops
+ffffffc008a0db00 d lookup_ioctl._ioctls
+ffffffc008a0dc30 d __param_str_kcopyd_subjob_size_kb
+ffffffc008a0dc50 d dm_sysfs_ops
+ffffffc008a0dc60 d dm_group
+ffffffc008a0dc88 d __param_str_stats_current_allocated_bytes
+ffffffc008a0dcd8 d dm_mq_ops
+ffffffc008a0dd70 d __param_str_reserved_rq_based_ios
+ffffffc008a0dd8d d __param_str_use_blk_mq
+ffffffc008a0dd9f d __param_str_dm_mq_nr_hw_queues
+ffffffc008a0ddb9 d __param_str_dm_mq_queue_depth
+ffffffc008a0ddd2 d __param_str_max_cache_size_bytes
+ffffffc008a0ddf0 d __param_str_max_age_seconds
+ffffffc008a0de09 d __param_str_retain_bytes
+ffffffc008a0de1f d __param_str_peak_allocated_bytes
+ffffffc008a0de3d d __param_str_allocated_kmem_cache_bytes
+ffffffc008a0de61 d __param_str_allocated_get_free_pages_bytes
+ffffffc008a0de89 d __param_str_allocated_vmalloc_bytes
+ffffffc008a0deaa d __param_str_current_allocated_bytes
+ffffffc008a0ded0 d adjust_total_allocated.class_ptr
+ffffffc008a0dee8 d crypt_ctr_optional._args
+ffffffc008a0def8 d crypt_iv_plain_ops
+ffffffc008a0df28 d crypt_iv_plain64_ops
+ffffffc008a0df58 d crypt_iv_plain64be_ops
+ffffffc008a0df88 d crypt_iv_essiv_ops
+ffffffc008a0dfb8 d crypt_iv_benbi_ops
+ffffffc008a0dfe8 d crypt_iv_null_ops
+ffffffc008a0e018 d crypt_iv_eboiv_ops
+ffffffc008a0e048 d crypt_iv_elephant_ops
+ffffffc008a0e078 d crypt_iv_lmk_ops
+ffffffc008a0e0a8 d crypt_iv_tcw_ops
+ffffffc008a0e0d8 d crypt_iv_random_ops
+ffffffc008a0e108 d __param_str_prefetch_cluster
+ffffffc008a0e128 d verity_parse_opt_args._args
+ffffffc008a0e138 d __param_str_dm_user_daemon_timeout_msec
+ffffffc008a0e160 d file_operations
+ffffffc008a0e2c0 D edac_mem_types
+ffffffc008a0e3a8 d __param_str_edac_mc_panic_on_ue
+ffffffc008a0e3c6 d __param_str_edac_mc_log_ue
+ffffffc008a0e3df d __param_str_edac_mc_log_ce
+ffffffc008a0e3f8 d __param_str_edac_mc_poll_msec
+ffffffc008a0e418 d __param_ops_edac_mc_poll_msec
+ffffffc008a0e438 d mci_attr_type
+ffffffc008a0e468 d mci_attr_grp
+ffffffc008a0e490 d dimm_attr_type
+ffffffc008a0e4c0 d dimm_attr_grp
+ffffffc008a0e4e8 d dev_types
+ffffffc008a0e528 d edac_caps
+ffffffc008a0e578 d csrow_attr_type
+ffffffc008a0e5a8 d csrow_attr_grp
+ffffffc008a0e5d0 d csrow_dev_dimm_group
+ffffffc008a0e5f8 d csrow_dev_ce_count_group
+ffffffc008a0e620 d device_ctl_info_ops
+ffffffc008a0e630 d device_ctrl_group
+ffffffc008a0e658 d device_instance_ops
+ffffffc008a0e668 d device_instance_group
+ffffffc008a0e690 d device_block_ops
+ffffffc008a0e6a0 d device_block_group
+ffffffc008a0e6c8 d __param_str_check_pci_errors
+ffffffc008a0e6e3 d __param_str_edac_pci_panic_on_pe
+ffffffc008a0e708 d edac_pci_sysfs_ops
+ffffffc008a0e718 d edac_pci_group
+ffffffc008a0e740 d pci_instance_ops
+ffffffc008a0e750 d pci_instance_group
+ffffffc008a0e778 d str__scmi__trace_system_name
+ffffffc008a0e780 d xfer_ops
+ffffffc008a0e7b0 d helpers_ops
+ffffffc008a0e7d8 d scmi_linux_errmap
+ffffffc008a0e808 d scmi_of_match
+ffffffc008a0e998 d versions_group
+ffffffc008a0e9c0 d notify_ops
+ffffffc008a0e9e0 d scmi_base.llvm.6107401838630197907
+ffffffc008a0ea10 d base_protocol_events.llvm.6107401838630197907
+ffffffc008a0ea30 d base_event_ops.llvm.6107401838630197907
+ffffffc008a0ea48 d base_events.llvm.6107401838630197907
+ffffffc008a0ea60 d scmi_clock.llvm.10535650909719321833
+ffffffc008a0ea90 d clk_proto_ops.llvm.10535650909719321833
+ffffffc008a0ead8 d clk_protocol_events.llvm.10535650909719321833
+ffffffc008a0eb10 d clk_event_ops.llvm.10535650909719321833
+ffffffc008a0eb28 d clk_events.llvm.10535650909719321833
+ffffffc008a0eb58 d scmi_perf.llvm.15437629319701580734
+ffffffc008a0eb88 d perf_proto_ops.llvm.15437629319701580734
+ffffffc008a0ebf0 d perf_protocol_events.llvm.15437629319701580734
+ffffffc008a0ec28 d perf_event_ops.llvm.15437629319701580734
+ffffffc008a0ec40 d perf_events.llvm.15437629319701580734
+ffffffc008a0ec70 d scmi_power.llvm.13116112095926547202
+ffffffc008a0eca0 d power_proto_ops.llvm.13116112095926547202
+ffffffc008a0ecc8 d power_protocol_events.llvm.13116112095926547202
+ffffffc008a0ece8 d power_event_ops.llvm.13116112095926547202
+ffffffc008a0ed00 d power_events.llvm.13116112095926547202
+ffffffc008a0ed18 d scmi_reset.llvm.503074279656154345
+ffffffc008a0ed48 d reset_proto_ops.llvm.503074279656154345
+ffffffc008a0ed80 d reset_protocol_events.llvm.503074279656154345
+ffffffc008a0eda0 d reset_event_ops.llvm.503074279656154345
+ffffffc008a0edb8 d reset_events.llvm.503074279656154345
+ffffffc008a0edd0 d scmi_sensors.llvm.4809612653187370124
+ffffffc008a0ee00 d sensor_proto_ops.llvm.4809612653187370124
+ffffffc008a0ee40 d sensor_protocol_events.llvm.4809612653187370124
+ffffffc008a0eec0 d sensor_event_ops.llvm.4809612653187370124
+ffffffc008a0eed8 d sensor_events.llvm.4809612653187370124
+ffffffc008a0ef08 d scmi_system.llvm.10596616772276138769
+ffffffc008a0ef38 d system_protocol_events.llvm.10596616772276138769
+ffffffc008a0ef58 d system_event_ops.llvm.10596616772276138769
+ffffffc008a0ef70 d system_events.llvm.10596616772276138769
+ffffffc008a0ef88 d scmi_voltage.llvm.9733833687185504827
+ffffffc008a0efd0 d scmi_powercap.llvm.18403948564163112369
+ffffffc008a0f000 d powercap_proto_ops.llvm.18403948564163112369
+ffffffc008a0f048 d powercap_protocol_events.llvm.18403948564163112369
+ffffffc008a0f068 d powercap_event_ops.llvm.18403948564163112369
+ffffffc008a0f080 d powercap_events.llvm.18403948564163112369
+ffffffc008a0f0b0 d scmi_smc_ops.llvm.12112730910732628816
+ffffffc008a0f108 D scmi_smc_desc
+ffffffc008a0f130 d psci_debugfs_ops
+ffffffc008a0f240 d psci_fn_ids
+ffffffc008a0f310 d psci_suspend_ops
+ffffffc008a0f368 d arch_timer_ppi_names
+ffffffc008a0f390 d ool_workarounds
+ffffffc008a0f490 d of_parse_phandle_with_args_map.dummy_mask
+ffffffc008a0f4d4 d of_parse_phandle_with_args_map.dummy_pass
+ffffffc008a0f518 D of_default_bus_match_table
+ffffffc008a0f900 d of_skipped_node_table
+ffffffc008a0fa90 d reserved_mem_matches
+ffffffc008a100d8 d of_supplier_bindings
+ffffffc008a102f8 D of_fwnode_ops
+ffffffc008a103b8 d of_irq_imap_abusers
+ffffffc008a103f8 d pmuirq_ops
+ffffffc008a10410 d pmunmi_ops
+ffffffc008a10428 d percpu_pmuirq_ops
+ffffffc008a10440 d percpu_pmunmi_ops
+ffffffc008a10458 d armpmu_common_attr_group
+ffffffc008a10480 d str__ras__trace_system_name
+ffffffc008a10488 d trace_raw_output_aer_event.__flags
+ffffffc008a10518 d trace_raw_output_aer_event.__flags.62
+ffffffc008a10658 d trace_fops
+ffffffc008a108a8 d socket_file_ops
+ffffffc008a109c0 d sockfs_inode_ops
+ffffffc008a10a80 d pf_family_names
+ffffffc008a10bf0 d sockfs_ops
+ffffffc008a10cc0 d sockfs_dentry_operations
+ffffffc008a10d80 d sockfs_xattr_handler
+ffffffc008a10db0 d sockfs_security_xattr_handler
+ffffffc008a11060 d proto_seq_ops
+ffffffc008a11098 D drop_reasons
+ffffffc008a112a8 d __const.skb_checksum.ops.llvm.5479456675584033067
+ffffffc008a112b8 d default_crc32c_ops
+ffffffc008a112c8 d rtnl_net_policy
+ffffffc008a11328 d rtnl_net_newid.__msg
+ffffffc008a11338 d rtnl_net_newid.__msg.7
+ffffffc008a11358 d rtnl_net_newid.__msg.8
+ffffffc008a11378 d rtnl_net_newid.__msg.9
+ffffffc008a1139f d rtnl_net_newid.__msg.10
+ffffffc008a113c2 d __nlmsg_parse.__msg
+ffffffc008a113d8 d __nlmsg_parse.__msg
+ffffffc008a113ee d __nlmsg_parse.__msg
+ffffffc008a11404 d __nlmsg_parse.__msg
+ffffffc008a1141a d __nlmsg_parse.__msg
+ffffffc008a11430 d __nlmsg_parse.__msg
+ffffffc008a11446 d __nlmsg_parse.__msg
+ffffffc008a1145c d __nlmsg_parse.__msg
+ffffffc008a11472 d __nlmsg_parse.__msg
+ffffffc008a11488 d __nlmsg_parse.__msg
+ffffffc008a1149e d __nlmsg_parse.__msg
+ffffffc008a114b4 d __nlmsg_parse.__msg
+ffffffc008a114ca d __nlmsg_parse.__msg
+ffffffc008a114e0 d rtnl_net_getid.__msg
+ffffffc008a11500 d rtnl_net_getid.__msg.11
+ffffffc008a11520 d rtnl_net_getid.__msg.12
+ffffffc008a11542 d rtnl_net_valid_getid_req.__msg
+ffffffc008a11574 d rtnl_valid_dump_net_req.__msg
+ffffffc008a11598 d rtnl_valid_dump_net_req.__msg.13
+ffffffc008a116f0 d flow_keys_dissector_keys
+ffffffc008a11780 d flow_keys_dissector_symmetric_keys
+ffffffc008a117d0 d flow_keys_basic_dissector_keys
+ffffffc008a117f0 d dev_validate_mtu.__msg
+ffffffc008a1180d d dev_validate_mtu.__msg.57
+ffffffc008a11830 d default_ethtool_ops
+ffffffc008a11a80 d skb_warn_bad_offload.null_features
+ffffffc008a11a88 d dev_xdp_attach.__msg.106
+ffffffc008a11aaa d dev_xdp_attach.__msg.107
+ffffffc008a11ae0 d dev_xdp_attach.__msg.109
+ffffffc008a11b02 d dev_xdp_attach.__msg.110
+ffffffc008a11b3b d dev_xdp_attach.__msg.112
+ffffffc008a11b62 d dev_xdp_attach.__msg.118
+ffffffc008a11d28 D dst_default_metrics
+ffffffc008a11db0 d neigh_stat_seq_ops
+ffffffc008a11dd0 d __neigh_update.__msg
+ffffffc008a11deb d __neigh_update.__msg.15
+ffffffc008a11e07 d neigh_add.__msg
+ffffffc008a11e25 d neigh_add.__msg.39
+ffffffc008a11e3a d neigh_add.__msg.40
+ffffffc008a11e52 d neigh_add.__msg.41
+ffffffc008a11e71 d neigh_add.__msg.42
+ffffffc008a11e86 d neigh_add.__msg.43
+ffffffc008a11ead d neigh_delete.__msg
+ffffffc008a11ecb d neigh_delete.__msg.44
+ffffffc008a11ee3 d neigh_get.__msg
+ffffffc008a11efa d neigh_get.__msg.45
+ffffffc008a11f18 d neigh_get.__msg.46
+ffffffc008a11f38 d neigh_get.__msg.47
+ffffffc008a11f4c d neigh_get.__msg.48
+ffffffc008a11f66 d neigh_valid_get_req.__msg
+ffffffc008a11f8e d neigh_valid_get_req.__msg.49
+ffffffc008a11fc0 d neigh_valid_get_req.__msg.50
+ffffffc008a11ff1 d neigh_valid_get_req.__msg.51
+ffffffc008a12027 d neigh_valid_get_req.__msg.52
+ffffffc008a12057 d neigh_valid_get_req.__msg.53
+ffffffc008a12085 d neigh_valid_dump_req.__msg
+ffffffc008a120ae d neigh_valid_dump_req.__msg.54
+ffffffc008a120e1 d neigh_valid_dump_req.__msg.55
+ffffffc008a12113 d neigh_valid_dump_req.__msg.56
+ffffffc008a12142 d neightbl_valid_dump_info.__msg
+ffffffc008a12171 d neightbl_valid_dump_info.__msg.57
+ffffffc008a121aa d neightbl_valid_dump_info.__msg.58
+ffffffc008a121e8 d nl_neightbl_policy
+ffffffc008a12288 d nl_ntbl_parm_policy
+ffffffc008a123c8 D nda_policy
+ffffffc008a12515 d rtnl_create_link.__msg
+ffffffc008a12537 d rtnl_create_link.__msg.2
+ffffffc008a12558 d ifla_policy
+ffffffc008a12968 d rtnetlink_rcv_msg.__msg
+ffffffc008a12985 d rtnl_valid_getlink_req.__msg
+ffffffc008a129a1 d rtnl_valid_getlink_req.__msg.9
+ffffffc008a129cf d rtnl_valid_getlink_req.__msg.10
+ffffffc008a129f9 d rtnl_ensure_unique_netns.__msg
+ffffffc008a12a21 d rtnl_ensure_unique_netns.__msg.11
+ffffffc008a12a51 d rtnl_dump_ifinfo.__msg
+ffffffc008a12a75 d rtnl_dump_ifinfo.__msg.12
+ffffffc008a12aa0 d rtnl_valid_dump_ifinfo_req.__msg
+ffffffc008a12abd d rtnl_valid_dump_ifinfo_req.__msg.13
+ffffffc008a12aec d rtnl_valid_dump_ifinfo_req.__msg.14
+ffffffc008a12b20 d ifla_info_policy
+ffffffc008a12b80 d ifla_vf_policy
+ffffffc008a12c60 d ifla_port_policy
+ffffffc008a12ce0 d do_set_proto_down.__msg
+ffffffc008a12d08 d ifla_proto_down_reason_policy
+ffffffc008a12d38 d do_set_proto_down.__msg.16
+ffffffc008a12d57 d do_set_proto_down.__msg.17
+ffffffc008a12d80 d ifla_xdp_policy
+ffffffc008a12e10 d __rtnl_newlink.__msg
+ffffffc008a12e24 d rtnl_newlink_create.__msg
+ffffffc008a12e41 d rtnl_alt_ifname.__msg
+ffffffc008a12e62 d rtnl_fdb_add.__msg
+ffffffc008a12e72 d rtnl_fdb_add.__msg.21
+ffffffc008a12e82 d rtnl_fdb_add.__msg.22
+ffffffc008a12e92 d rtnl_fdb_add.__msg.23
+ffffffc008a12ebe d fdb_vid_parse.__msg
+ffffffc008a12eda d fdb_vid_parse.__msg.24
+ffffffc008a12eea d rtnl_fdb_del.__msg
+ffffffc008a12efa d rtnl_fdb_del.__msg.25
+ffffffc008a12f0a d rtnl_fdb_del.__msg.26
+ffffffc008a12f1a d rtnl_fdb_del.__msg.27
+ffffffc008a12f50 d fdb_del_bulk_policy
+ffffffc008a13070 d rtnl_fdb_get.__msg
+ffffffc008a1309b d rtnl_fdb_get.__msg.29
+ffffffc008a130b2 d rtnl_fdb_get.__msg.30
+ffffffc008a130db d rtnl_fdb_get.__msg.31
+ffffffc008a130f2 d rtnl_fdb_get.__msg.32
+ffffffc008a1310e d rtnl_fdb_get.__msg.33
+ffffffc008a13129 d rtnl_fdb_get.__msg.34
+ffffffc008a1313a d rtnl_fdb_get.__msg.35
+ffffffc008a1314e d rtnl_fdb_get.__msg.36
+ffffffc008a13178 d valid_fdb_get_strict.__msg
+ffffffc008a1319b d valid_fdb_get_strict.__msg.37
+ffffffc008a131c8 d valid_fdb_get_strict.__msg.38
+ffffffc008a131f4 d valid_fdb_get_strict.__msg.39
+ffffffc008a13217 d valid_fdb_get_strict.__msg.40
+ffffffc008a13240 d valid_fdb_dump_strict.__msg
+ffffffc008a13264 d valid_fdb_dump_strict.__msg.41
+ffffffc008a13292 d valid_fdb_dump_strict.__msg.42
+ffffffc008a132c0 d valid_fdb_dump_strict.__msg.43
+ffffffc008a132ed d valid_fdb_dump_strict.__msg.44
+ffffffc008a13317 d valid_bridge_getlink_req.__msg
+ffffffc008a1333b d valid_bridge_getlink_req.__msg.45
+ffffffc008a13371 d valid_bridge_getlink_req.__msg.46
+ffffffc008a133a3 d rtnl_bridge_dellink.__msg
+ffffffc008a133b3 d rtnl_bridge_setlink.__msg
+ffffffc008a133c3 d rtnl_stats_get.__msg
+ffffffc008a133e9 d rtnl_valid_stats_req.__msg
+ffffffc008a13407 d rtnl_valid_stats_req.__msg.47
+ffffffc008a13437 d rtnl_valid_stats_req.__msg.48
+ffffffc008a13468 d rtnl_stats_get_policy
+ffffffc008a13498 d rtnl_stats_get_policy_filters
+ffffffc008a134f8 d rtnl_stats_get_parse_filters.__msg
+ffffffc008a13526 d nla_parse_nested.__msg
+ffffffc008a1353e d nla_parse_nested.__msg
+ffffffc008a13556 d nla_parse_nested.__msg
+ffffffc008a1356e d nla_parse_nested.__msg
+ffffffc008a13586 d nla_parse_nested.__msg
+ffffffc008a1359e d nla_parse_nested.__msg
+ffffffc008a135b6 d rtnl_stats_dump.__msg
+ffffffc008a135dd d rtnl_stats_set.__msg
+ffffffc008a13600 d rtnl_stats_set.__msg.50
+ffffffc008a13628 d ifla_stats_set_policy
+ffffffc008a14ec8 D bpf_xdp_get_buff_len_trace_proto
+ffffffc008a14f28 D bpf_skb_output_proto
+ffffffc008a14f88 D bpf_xdp_output_proto
+ffffffc008a14fe8 D bpf_get_socket_ptr_cookie_proto
+ffffffc008a15048 D bpf_sk_setsockopt_proto
+ffffffc008a150a8 D bpf_sk_getsockopt_proto
+ffffffc008a15108 D bpf_unlocked_sk_setsockopt_proto
+ffffffc008a15168 D bpf_unlocked_sk_getsockopt_proto
+ffffffc008a151c8 D bpf_tcp_sock_proto
+ffffffc008a15228 D sk_filter_verifier_ops
+ffffffc008a15260 D sk_filter_prog_ops
+ffffffc008a15268 D tc_cls_act_verifier_ops
+ffffffc008a152a0 D tc_cls_act_prog_ops
+ffffffc008a152a8 D xdp_verifier_ops
+ffffffc008a152e0 D xdp_prog_ops
+ffffffc008a152e8 D cg_skb_verifier_ops
+ffffffc008a15320 D cg_skb_prog_ops
+ffffffc008a15328 D lwt_in_verifier_ops
+ffffffc008a15360 D lwt_in_prog_ops
+ffffffc008a15368 D lwt_out_verifier_ops
+ffffffc008a153a0 D lwt_out_prog_ops
+ffffffc008a153a8 D lwt_xmit_verifier_ops
+ffffffc008a153e0 D lwt_xmit_prog_ops
+ffffffc008a153e8 D lwt_seg6local_verifier_ops
+ffffffc008a15420 D lwt_seg6local_prog_ops
+ffffffc008a15428 D cg_sock_verifier_ops
+ffffffc008a15460 D cg_sock_prog_ops
+ffffffc008a15468 D cg_sock_addr_verifier_ops
+ffffffc008a154a0 D cg_sock_addr_prog_ops
+ffffffc008a154a8 D sock_ops_verifier_ops
+ffffffc008a154e0 D sock_ops_prog_ops
+ffffffc008a154e8 D sk_skb_verifier_ops
+ffffffc008a15520 D sk_skb_prog_ops
+ffffffc008a15528 D sk_msg_verifier_ops
+ffffffc008a15560 D sk_msg_prog_ops
+ffffffc008a15568 D flow_dissector_verifier_ops
+ffffffc008a155a0 D flow_dissector_prog_ops
+ffffffc008a155a8 D sk_reuseport_verifier_ops
+ffffffc008a155e0 D sk_reuseport_prog_ops
+ffffffc008a155e8 D sk_lookup_prog_ops
+ffffffc008a155f0 D sk_lookup_verifier_ops
+ffffffc008a15628 D bpf_skc_to_tcp6_sock_proto
+ffffffc008a15688 D bpf_skc_to_tcp_sock_proto
+ffffffc008a156e8 D bpf_skc_to_tcp_timewait_sock_proto
+ffffffc008a15748 D bpf_skc_to_tcp_request_sock_proto
+ffffffc008a157a8 D bpf_skc_to_udp6_sock_proto
+ffffffc008a15808 D bpf_skc_to_unix_sock_proto
+ffffffc008a15868 D bpf_skc_to_mptcp_sock_proto
+ffffffc008a158c8 D bpf_sock_from_file_proto
+ffffffc008a15928 V bpf_event_output_data_proto
+ffffffc008a15988 V bpf_sk_storage_get_cg_sock_proto
+ffffffc008a159e8 V bpf_sk_storage_get_proto
+ffffffc008a15a48 V bpf_sk_storage_delete_proto
+ffffffc008a15aa8 V bpf_sock_map_update_proto
+ffffffc008a15b08 V bpf_sock_hash_update_proto
+ffffffc008a15b68 V bpf_msg_redirect_map_proto
+ffffffc008a15bc8 V bpf_msg_redirect_hash_proto
+ffffffc008a15c28 V bpf_sk_redirect_map_proto
+ffffffc008a15c88 V bpf_sk_redirect_hash_proto
+ffffffc008a15ce8 d chk_code_allowed.codes
+ffffffc008a15da0 d bpf_skb_load_bytes_proto
+ffffffc008a15e00 d bpf_skb_load_bytes_relative_proto
+ffffffc008a15e60 d bpf_get_socket_cookie_proto
+ffffffc008a15ec0 d bpf_get_socket_uid_proto
+ffffffc008a15f20 d bpf_skb_event_output_proto
+ffffffc008a15f80 d bpf_skb_store_bytes_proto
+ffffffc008a15fe0 d bpf_skb_pull_data_proto
+ffffffc008a16040 d bpf_csum_diff_proto
+ffffffc008a160a0 d bpf_csum_update_proto
+ffffffc008a16100 d bpf_csum_level_proto
+ffffffc008a16160 d bpf_l3_csum_replace_proto
+ffffffc008a161c0 d bpf_l4_csum_replace_proto
+ffffffc008a16220 d bpf_clone_redirect_proto
+ffffffc008a16280 d bpf_get_cgroup_classid_proto
+ffffffc008a162e0 d bpf_skb_vlan_push_proto
+ffffffc008a16340 d bpf_skb_vlan_pop_proto
+ffffffc008a163a0 d bpf_skb_change_proto_proto
+ffffffc008a16400 d bpf_skb_change_type_proto
+ffffffc008a16460 d bpf_skb_adjust_room_proto
+ffffffc008a164c0 d bpf_skb_change_tail_proto
+ffffffc008a16520 d bpf_skb_change_head_proto
+ffffffc008a16580 d bpf_skb_get_tunnel_key_proto
+ffffffc008a165e0 d bpf_skb_get_tunnel_opt_proto
+ffffffc008a16640 d bpf_redirect_proto
+ffffffc008a166a0 d bpf_redirect_neigh_proto
+ffffffc008a16700 d bpf_redirect_peer_proto
+ffffffc008a16760 d bpf_get_route_realm_proto
+ffffffc008a167c0 d bpf_get_hash_recalc_proto
+ffffffc008a16820 d bpf_set_hash_invalid_proto
+ffffffc008a16880 d bpf_set_hash_proto
+ffffffc008a168e0 d bpf_skb_under_cgroup_proto
+ffffffc008a16940 d bpf_skb_fib_lookup_proto
+ffffffc008a169a0 d bpf_skb_check_mtu_proto
+ffffffc008a16a00 d bpf_sk_fullsock_proto
+ffffffc008a16a60 d bpf_skb_get_xfrm_state_proto
+ffffffc008a16ac0 d bpf_sk_lookup_tcp_proto
+ffffffc008a16b20 d bpf_sk_lookup_udp_proto
+ffffffc008a16b80 d bpf_sk_release_proto
+ffffffc008a16be0 d bpf_get_listener_sock_proto
+ffffffc008a16c40 d bpf_skc_lookup_tcp_proto
+ffffffc008a16ca0 d bpf_tcp_check_syncookie_proto
+ffffffc008a16d00 d bpf_skb_ecn_set_ce_proto
+ffffffc008a16d60 d bpf_tcp_gen_syncookie_proto
+ffffffc008a16dc0 d bpf_sk_assign_proto
+ffffffc008a16e20 d bpf_skb_set_tstamp_proto
+ffffffc008a16e80 d bpf_skb_set_tunnel_key_proto
+ffffffc008a16ee0 d bpf_skb_set_tunnel_opt_proto
+ffffffc008a16f40 d bpf_xdp_event_output_proto
+ffffffc008a16fa0 d bpf_xdp_adjust_head_proto
+ffffffc008a17000 d bpf_xdp_adjust_meta_proto
+ffffffc008a17060 d bpf_xdp_redirect_proto
+ffffffc008a170c0 d bpf_xdp_redirect_map_proto
+ffffffc008a17120 d bpf_xdp_adjust_tail_proto
+ffffffc008a17180 d bpf_xdp_get_buff_len_proto
+ffffffc008a171e0 d bpf_xdp_load_bytes_proto
+ffffffc008a17240 d bpf_xdp_store_bytes_proto
+ffffffc008a172a0 d bpf_xdp_fib_lookup_proto
+ffffffc008a17300 d bpf_xdp_check_mtu_proto
+ffffffc008a17360 d bpf_xdp_sk_lookup_udp_proto
+ffffffc008a173c0 d bpf_xdp_sk_lookup_tcp_proto
+ffffffc008a17420 d bpf_xdp_skc_lookup_tcp_proto
+ffffffc008a17480 d bpf_lwt_in_push_encap_proto
+ffffffc008a174e0 d bpf_lwt_xmit_push_encap_proto
+ffffffc008a17540 d bpf_get_socket_cookie_sock_proto
+ffffffc008a175a0 d bpf_get_netns_cookie_sock_proto
+ffffffc008a17600 d bpf_bind_proto
+ffffffc008a17660 d bpf_get_socket_cookie_sock_addr_proto
+ffffffc008a176c0 d bpf_get_netns_cookie_sock_addr_proto
+ffffffc008a17720 d bpf_sock_addr_sk_lookup_tcp_proto
+ffffffc008a17780 d bpf_sock_addr_sk_lookup_udp_proto
+ffffffc008a177e0 d bpf_sock_addr_skc_lookup_tcp_proto
+ffffffc008a17840 d bpf_sock_addr_setsockopt_proto
+ffffffc008a178a0 d bpf_sock_addr_getsockopt_proto
+ffffffc008a17900 d bpf_sock_ops_setsockopt_proto
+ffffffc008a17960 d bpf_sock_ops_getsockopt_proto
+ffffffc008a179c0 d bpf_sock_ops_cb_flags_set_proto
+ffffffc008a17a20 d bpf_get_socket_cookie_sock_ops_proto
+ffffffc008a17a80 d bpf_get_netns_cookie_sock_ops_proto
+ffffffc008a17ae0 d bpf_sock_ops_load_hdr_opt_proto
+ffffffc008a17b40 d bpf_sock_ops_store_hdr_opt_proto
+ffffffc008a17ba0 d bpf_sock_ops_reserve_hdr_opt_proto
+ffffffc008a17c00 d sk_skb_pull_data_proto
+ffffffc008a17c60 d sk_skb_change_tail_proto
+ffffffc008a17cc0 d sk_skb_change_head_proto
+ffffffc008a17d20 d sk_skb_adjust_room_proto
+ffffffc008a17d80 d bpf_msg_apply_bytes_proto
+ffffffc008a17de0 d bpf_msg_cork_bytes_proto
+ffffffc008a17e40 d bpf_msg_pull_data_proto
+ffffffc008a17ea0 d bpf_msg_push_data_proto
+ffffffc008a17f00 d bpf_msg_pop_data_proto
+ffffffc008a17f60 d bpf_get_netns_cookie_sk_msg_proto
+ffffffc008a17fc0 d bpf_flow_dissector_load_bytes_proto
+ffffffc008a18020 d sk_select_reuseport_proto
+ffffffc008a18080 d sk_reuseport_load_bytes_proto
+ffffffc008a180e0 d sk_reuseport_load_bytes_relative_proto
+ffffffc008a18140 d bpf_sk_lookup_assign_proto
+ffffffc008a18888 d mem_id_rht_params
+ffffffc008a188d8 d dql_group
+ffffffc008a18900 D net_ns_type_operations
+ffffffc008a18930 d netstat_group
+ffffffc008a18958 d wireless_group
+ffffffc008a18980 d rx_queue_sysfs_ops
+ffffffc008a18990 d rx_queue_default_group
+ffffffc008a189b8 d netdev_queue_sysfs_ops
+ffffffc008a189c8 d netdev_queue_default_group
+ffffffc008a189f8 d net_class_group
+ffffffc008a18a20 d fmt_hex
+ffffffc008a18a28 d operstates
+ffffffc008a18a60 d fmt_u64
+ffffffc008a18a68 d dev_seq_ops
+ffffffc008a18a88 d softnet_seq_ops
+ffffffc008a18aa8 d ptype_seq_ops
+ffffffc008a18ac8 d dev_mc_seq_ops
+ffffffc008a18ae8 d fib_nl_newrule.__msg
+ffffffc008a18afb d fib_nl_newrule.__msg.2
+ffffffc008a18b15 d fib_nl_newrule.__msg.3
+ffffffc008a18b27 d fib_nl_delrule.__msg
+ffffffc008a18b3a d fib_nl_delrule.__msg.4
+ffffffc008a18b54 d fib_nl_delrule.__msg.5
+ffffffc008a18b68 d fib_rule_policy
+ffffffc008a18cf8 d fib_nl2rule.__msg
+ffffffc008a18d0f d fib_nl2rule.__msg.7
+ffffffc008a18d23 d fib_nl2rule.__msg.8
+ffffffc008a18d33 d fib_nl2rule.__msg.9
+ffffffc008a18d4f d fib_nl2rule.__msg.10
+ffffffc008a18d73 d fib_nl2rule.__msg.11
+ffffffc008a18d9b d fib_nl2rule.__msg.12
+ffffffc008a18db4 d fib_nl2rule.__msg.13
+ffffffc008a18dc6 d fib_nl2rule.__msg.14
+ffffffc008a18dda d fib_nl2rule.__msg.15
+ffffffc008a18dee d fib_nl2rule_l3mdev.__msg
+ffffffc008a18e16 d fib_valid_dumprule_req.__msg
+ffffffc008a18e3f d fib_valid_dumprule_req.__msg.17
+ffffffc008a18e72 d fib_valid_dumprule_req.__msg.18
+ffffffc008a18ea5 d str__skb__trace_system_name
+ffffffc008a18ea9 d str__net__trace_system_name
+ffffffc008a18ead d str__sock__trace_system_name
+ffffffc008a18eb2 d str__udp__trace_system_name
+ffffffc008a18eb6 d str__tcp__trace_system_name
+ffffffc008a18eba d str__fib__trace_system_name
+ffffffc008a18ebe d str__bridge__trace_system_name
+ffffffc008a18ec5 d str__neigh__trace_system_name
+ffffffc008a18ed0 d trace_raw_output_kfree_skb.symbols
+ffffffc008a192f8 d trace_raw_output_sock_exceed_buf_limit.symbols
+ffffffc008a19328 d trace_raw_output_inet_sock_set_state.symbols
+ffffffc008a19358 d trace_raw_output_inet_sock_set_state.symbols.241
+ffffffc008a193a8 d trace_raw_output_inet_sock_set_state.symbols.242
+ffffffc008a19478 d trace_raw_output_inet_sock_set_state.symbols.243
+ffffffc008a19548 d trace_raw_output_inet_sk_error_report.symbols
+ffffffc008a19578 d trace_raw_output_inet_sk_error_report.symbols.246
+ffffffc008a195c8 d trace_raw_output_tcp_event_sk_skb.symbols
+ffffffc008a195f8 d trace_raw_output_tcp_event_sk_skb.symbols.251
+ffffffc008a196c8 d trace_raw_output_tcp_event_sk.symbols
+ffffffc008a196f8 d trace_raw_output_tcp_retransmit_synack.symbols
+ffffffc008a19728 d trace_raw_output_tcp_probe.symbols
+ffffffc008a19760 d trace_raw_output_neigh_update.symbols
+ffffffc008a197f0 d trace_raw_output_neigh_update.symbols.346
+ffffffc008a19880 d trace_raw_output_neigh__update.symbols
+ffffffc008a19a40 D eth_header_ops
+ffffffc008a19a80 d qdisc_alloc.__msg
+ffffffc008a19a96 d qdisc_create_dflt.__msg
+ffffffc008a19ac8 d mq_class_ops
+ffffffc008a19b98 d netlink_ops
+ffffffc008a19c98 d netlink_rhashtable_params
+ffffffc008a19cc0 d netlink_family_ops
+ffffffc008a19ce0 d netlink_seq_ops
+ffffffc008a19d00 d genl_ctrl_ops
+ffffffc008a19d70 d genl_ctrl_groups
+ffffffc008a19d88 d ctrl_policy_family
+ffffffc008a19db8 d ctrl_policy_policy
+ffffffc008a19e98 d genl_header_check.__msg
+ffffffc008a19ebb d genl_header_check.__msg.7
+ffffffc008a1a300 D link_mode_params
+ffffffc008a1a5e8 D netif_msg_class_names
+ffffffc008a1a7c8 D wol_mode_names
+ffffffc008a1a8c8 D sof_timestamping_names
+ffffffc008a1aac8 D ts_tx_type_names
+ffffffc008a1ab48 D ts_rx_filter_names
+ffffffc008a1ad48 D udp_tunnel_type_names
+ffffffc008a1ada8 D netdev_features_strings
+ffffffc008a1b5a8 D rss_hash_func_strings
+ffffffc008a1b608 D tunable_strings
+ffffffc008a1b6a8 D phy_tunable_strings
+ffffffc008a1b728 D link_mode_names
+ffffffc008a1c2c8 D ethnl_header_policy
+ffffffc008a1c308 D ethnl_header_policy_stats
+ffffffc008a1c348 d ethnl_parse_header_dev_get.__msg
+ffffffc008a1c35f d ethnl_parse_header_dev_get.__msg.1
+ffffffc008a1c379 d ethnl_parse_header_dev_get.__msg.2
+ffffffc008a1c397 d ethnl_parse_header_dev_get.__msg.3
+ffffffc008a1c3ae d ethnl_parse_header_dev_get.__msg.4
+ffffffc008a1c3d1 d ethnl_reply_init.__msg
+ffffffc008a1c3f0 d ethnl_notify_handlers
+ffffffc008a1c518 d ethnl_default_notify_ops
+ffffffc008a1c648 d ethtool_genl_ops
+ffffffc008a1ce60 d ethtool_nl_mcgrps
+ffffffc008a1ce78 d ethnl_default_requests
+ffffffc008a1cfa8 d ethnl_parse_bitset.__msg
+ffffffc008a1cfcd d ethnl_parse_bitset.__msg.1
+ffffffc008a1cff8 d bitset_policy
+ffffffc008a1d058 d ethnl_update_bitset32_verbose.__msg
+ffffffc008a1d07d d ethnl_update_bitset32_verbose.__msg.3
+ffffffc008a1d0a1 d ethnl_update_bitset32_verbose.__msg.4
+ffffffc008a1d0e1 d ethnl_compact_sanity_checks.__msg
+ffffffc008a1d101 d ethnl_compact_sanity_checks.__msg.5
+ffffffc008a1d120 d ethnl_compact_sanity_checks.__msg.6
+ffffffc008a1d140 d ethnl_compact_sanity_checks.__msg.7
+ffffffc008a1d167 d ethnl_compact_sanity_checks.__msg.8
+ffffffc008a1d18f d ethnl_compact_sanity_checks.__msg.9
+ffffffc008a1d1b6 d ethnl_compact_sanity_checks.__msg.10
+ffffffc008a1d1e8 d bit_policy
+ffffffc008a1d228 d ethnl_parse_bit.__msg
+ffffffc008a1d23b d ethnl_parse_bit.__msg.11
+ffffffc008a1d257 d ethnl_parse_bit.__msg.12
+ffffffc008a1d26a d ethnl_parse_bit.__msg.13
+ffffffc008a1d290 D ethnl_strset_get_policy
+ffffffc008a1d2d0 D ethnl_strset_request_ops
+ffffffc008a1d308 d strset_stringsets_policy
+ffffffc008a1d328 d strset_parse_request.__msg
+ffffffc008a1d340 d get_stringset_policy
+ffffffc008a1d360 d info_template
+ffffffc008a1d4b0 d strset_prepare_data.__msg
+ffffffc008a1d4e0 D ethnl_linkinfo_get_policy
+ffffffc008a1d500 D ethnl_linkinfo_request_ops
+ffffffc008a1d538 D ethnl_linkinfo_set_policy
+ffffffc008a1d598 d ethnl_set_linkinfo.__msg
+ffffffc008a1d5b9 d ethnl_set_linkinfo.__msg.1
+ffffffc008a1d5d5 d linkinfo_prepare_data.__msg
+ffffffc008a1d5f8 D ethnl_linkmodes_get_policy
+ffffffc008a1d618 D ethnl_linkmodes_request_ops
+ffffffc008a1d650 D ethnl_linkmodes_set_policy
+ffffffc008a1d6f0 d ethnl_set_linkmodes.__msg
+ffffffc008a1d711 d ethnl_set_linkmodes.__msg.1
+ffffffc008a1d72d d linkmodes_prepare_data.__msg
+ffffffc008a1d74e d ethnl_check_linkmodes.__msg
+ffffffc008a1d76c d ethnl_check_linkmodes.__msg.2
+ffffffc008a1d783 d ethnl_update_linkmodes.__msg
+ffffffc008a1d7b6 d ethnl_update_linkmodes.__msg.3
+ffffffc008a1d7e8 D ethnl_linkstate_get_policy
+ffffffc008a1d808 D ethnl_linkstate_request_ops
+ffffffc008a1d840 D ethnl_debug_get_policy
+ffffffc008a1d860 D ethnl_debug_request_ops
+ffffffc008a1d898 D ethnl_debug_set_policy
+ffffffc008a1d8c8 D ethnl_wol_get_policy
+ffffffc008a1d8e8 D ethnl_wol_request_ops
+ffffffc008a1d920 D ethnl_wol_set_policy
+ffffffc008a1d974 d ethnl_set_wol.__msg
+ffffffc008a1d997 d ethnl_set_wol.__msg.1
+ffffffc008a1d9c8 D ethnl_features_get_policy
+ffffffc008a1d9e8 D ethnl_features_request_ops
+ffffffc008a1da20 D ethnl_features_set_policy
+ffffffc008a1da60 d ethnl_set_features.__msg
+ffffffc008a1da87 d features_send_reply.__msg
+ffffffc008a1daa8 D ethnl_privflags_get_policy
+ffffffc008a1dac8 D ethnl_privflags_request_ops
+ffffffc008a1db00 D ethnl_privflags_set_policy
+ffffffc008a1db30 D ethnl_rings_get_policy
+ffffffc008a1db50 D ethnl_rings_request_ops
+ffffffc008a1db88 D ethnl_rings_set_policy
+ffffffc008a1dc68 d ethnl_set_rings.__msg
+ffffffc008a1dc89 d ethnl_set_rings.__msg.1
+ffffffc008a1dca8 d ethnl_set_rings.__msg.2
+ffffffc008a1dcc6 d ethnl_set_rings.__msg.3
+ffffffc008a1dcf0 D ethnl_channels_get_policy
+ffffffc008a1dd10 D ethnl_channels_request_ops
+ffffffc008a1dd48 D ethnl_channels_set_policy
+ffffffc008a1dde8 d ethnl_set_channels.__msg
+ffffffc008a1de10 d ethnl_set_channels.__msg.1
+ffffffc008a1de5e d ethnl_set_channels.__msg.2
+ffffffc008a1deb0 D ethnl_coalesce_get_policy
+ffffffc008a1ded0 D ethnl_coalesce_request_ops
+ffffffc008a1df08 D ethnl_coalesce_set_policy
+ffffffc008a1e0a8 d ethnl_set_coalesce.__msg
+ffffffc008a1e0d0 D ethnl_pause_get_policy
+ffffffc008a1e0f0 D ethnl_pause_request_ops
+ffffffc008a1e128 D ethnl_pause_set_policy
+ffffffc008a1e178 D ethnl_eee_get_policy
+ffffffc008a1e198 D ethnl_eee_request_ops
+ffffffc008a1e1d0 D ethnl_eee_set_policy
+ffffffc008a1e250 D ethnl_tsinfo_get_policy
+ffffffc008a1e270 D ethnl_tsinfo_request_ops
+ffffffc008a1e2a8 D ethnl_cable_test_act_policy
+ffffffc008a1e2c8 D ethnl_cable_test_tdr_act_policy
+ffffffc008a1e2f8 d cable_test_tdr_act_cfg_policy
+ffffffc008a1e348 d ethnl_act_cable_test_tdr_cfg.__msg
+ffffffc008a1e35f d ethnl_act_cable_test_tdr_cfg.__msg.1
+ffffffc008a1e377 d ethnl_act_cable_test_tdr_cfg.__msg.2
+ffffffc008a1e38e d ethnl_act_cable_test_tdr_cfg.__msg.3
+ffffffc008a1e3ab d ethnl_act_cable_test_tdr_cfg.__msg.4
+ffffffc008a1e3c2 d ethnl_act_cable_test_tdr_cfg.__msg.5
+ffffffc008a1e3e0 D ethnl_tunnel_info_get_policy
+ffffffc008a1e400 d ethnl_tunnel_info_reply_size.__msg
+ffffffc008a1e430 D ethnl_fec_get_policy
+ffffffc008a1e450 D ethnl_fec_request_ops
+ffffffc008a1e488 D ethnl_fec_set_policy
+ffffffc008a1e4c8 d ethnl_set_fec.__msg
+ffffffc008a1e4e4 d ethnl_set_fec.__msg.1
+ffffffc008a1e4f8 D ethnl_module_eeprom_request_ops
+ffffffc008a1e530 D ethnl_module_eeprom_get_policy
+ffffffc008a1e5a0 d eeprom_parse_request.__msg
+ffffffc008a1e5d8 d eeprom_parse_request.__msg.1
+ffffffc008a1e604 d eeprom_parse_request.__msg.2
+ffffffc008a1e62b D stats_std_names
+ffffffc008a1e6ab D stats_eth_phy_names
+ffffffc008a1e6cb D stats_eth_mac_names
+ffffffc008a1e98b D stats_eth_ctrl_names
+ffffffc008a1e9eb D stats_rmon_names
+ffffffc008a1ea70 D ethnl_stats_get_policy
+ffffffc008a1eab0 D ethnl_stats_request_ops
+ffffffc008a1eae8 d stats_parse_request.__msg
+ffffffc008a1eb00 D ethnl_phc_vclocks_get_policy
+ffffffc008a1eb20 D ethnl_phc_vclocks_request_ops
+ffffffc008a1eb58 D ethnl_module_get_policy
+ffffffc008a1eb78 D ethnl_module_request_ops
+ffffffc008a1ebb0 D ethnl_module_set_policy
+ffffffc008a1ebe0 d module_set_power_mode.__msg
+ffffffc008a1ec20 D ethnl_pse_get_policy
+ffffffc008a1ec40 D ethnl_pse_request_ops
+ffffffc008a1ec78 D ethnl_pse_set_policy
+ffffffc008a1ecc8 d pse_get_pse_attributes.__msg
+ffffffc008a1ecdb d pse_get_pse_attributes.__msg.1
+ffffffc008a1ecee d pse_set_pse_config.__msg
+ffffffc008a1ed01 d pse_set_pse_config.__msg.2
+ffffffc008a1ed14 D ip_tos2prio
+ffffffc008a1ed28 d rt_cache_seq_ops
+ffffffc008a1ed48 d rt_cpu_seq_ops
+ffffffc008a1ed68 d inet_rtm_valid_getroute_req.__msg
+ffffffc008a1ed93 d inet_rtm_valid_getroute_req.__msg.15
+ffffffc008a1edc8 d inet_rtm_valid_getroute_req.__msg.16
+ffffffc008a1edfa d inet_rtm_valid_getroute_req.__msg.17
+ffffffc008a1ee30 d inet_rtm_valid_getroute_req.__msg.18
+ffffffc008a1ee61 d ipv4_route_flush_procname
+ffffffc008a1ee67 d ip_frag_cache_name
+ffffffc008a1ee78 d ip4_rhash_params
+ffffffc008a1f188 d tcp_vm_ops
+ffffffc008a1f348 D tcp_request_sock_ipv4_ops
+ffffffc008a1f370 D ipv4_specific
+ffffffc008a1f3d0 d tcp4_seq_ops
+ffffffc008a1f3f0 d tcp_metrics_nl_ops
+ffffffc008a1f420 d tcp_metrics_nl_policy
+ffffffc008a1f518 d tcpv4_offload.llvm.7806684545332652296
+ffffffc008a1f538 d raw_seq_ops
+ffffffc008a1f5a8 D udp_seq_ops
+ffffffc008a1f5c8 d udplite_protocol
+ffffffc008a1f5e0 d udpv4_offload.llvm.15458570210697026856
+ffffffc008a1f628 d arp_direct_ops
+ffffffc008a1f650 d arp_hh_ops
+ffffffc008a1f678 d arp_generic_ops
+ffffffc008a1f6a0 d arp_seq_ops
+ffffffc008a1f6c0 D icmp_err_convert
+ffffffc008a1f740 d icmp_pointers
+ffffffc008a1f968 d inet_af_policy
+ffffffc008a1f988 d ifa_ipv4_policy
+ffffffc008a1fa48 d inet_valid_dump_ifaddr_req.__msg
+ffffffc008a1fa76 d inet_valid_dump_ifaddr_req.__msg.44
+ffffffc008a1faae d inet_valid_dump_ifaddr_req.__msg.45
+ffffffc008a1fad8 d inet_valid_dump_ifaddr_req.__msg.46
+ffffffc008a1fb04 d inet_netconf_valid_get_req.__msg
+ffffffc008a1fb38 d devconf_ipv4_policy
+ffffffc008a1fbc8 d inet_netconf_valid_get_req.__msg.47
+ffffffc008a1fbfb d inet_netconf_dump_devconf.__msg
+ffffffc008a1fc29 d inet_netconf_dump_devconf.__msg.48
+ffffffc008a1fd90 D inet_stream_ops
+ffffffc008a1fe90 D inet_dgram_ops
+ffffffc008a1ff90 d ipip_offload
+ffffffc008a1ffb0 d inet_family_ops
+ffffffc008a1ffc8 d icmp_protocol
+ffffffc008a1ffe0 d udp_protocol
+ffffffc008a1fff8 d tcp_protocol
+ffffffc008a20010 d igmp_protocol
+ffffffc008a20028 d inet_sockraw_ops
+ffffffc008a20148 d igmp_mc_seq_ops
+ffffffc008a20168 d igmp_mcf_seq_ops
+ffffffc008a20200 D rtm_ipv4_policy
+ffffffc008a203f0 d fib_gw_from_via.__msg
+ffffffc008a20415 d fib_gw_from_via.__msg.1
+ffffffc008a20435 d fib_gw_from_via.__msg.2
+ffffffc008a20455 d fib_gw_from_via.__msg.3
+ffffffc008a2047b d ip_valid_fib_dump_req.__msg
+ffffffc008a2049f d ip_valid_fib_dump_req.__msg.5
+ffffffc008a204cd d ip_valid_fib_dump_req.__msg.6
+ffffffc008a204f0 d ip_valid_fib_dump_req.__msg.7
+ffffffc008a20548 d rtm_to_fib_config.__msg
+ffffffc008a20572 d rtm_to_fib_config.__msg.12
+ffffffc008a20585 d rtm_to_fib_config.__msg.13
+ffffffc008a205c1 d rtm_to_fib_config.__msg.14
+ffffffc008a205fc d lwtunnel_valid_encap_type.__msg
+ffffffc008a2062a d lwtunnel_valid_encap_type.__msg
+ffffffc008a20658 d lwtunnel_valid_encap_type.__msg
+ffffffc008a20686 d inet_rtm_delroute.__msg
+ffffffc008a206a0 d inet_rtm_delroute.__msg.15
+ffffffc008a206d8 d inet_dump_fib.__msg
+ffffffc008a206f8 D fib_props
+ffffffc008a20758 d fib_nh_common_init.__msg
+ffffffc008a20775 d fib_create_info.__msg
+ffffffc008a20783 d fib_create_info.__msg.1
+ffffffc008a207b8 d fib_create_info.__msg.2
+ffffffc008a207d2 d fib_create_info.__msg.3
+ffffffc008a207eb d fib_create_info.__msg.4
+ffffffc008a20832 d fib_create_info.__msg.5
+ffffffc008a20845 d fib_create_info.__msg.6
+ffffffc008a20853 d fib_create_info.__msg.7
+ffffffc008a20888 d fib_create_info.__msg.8
+ffffffc008a208b5 d fib_create_info.__msg.9
+ffffffc008a208cd d fib_check_nh_v4_gw.__msg
+ffffffc008a208e7 d fib_check_nh_v4_gw.__msg.10
+ffffffc008a2090a d fib_check_nh_v4_gw.__msg.11
+ffffffc008a20923 d fib_check_nh_v4_gw.__msg.12
+ffffffc008a2093f d fib_check_nh_v4_gw.__msg.13
+ffffffc008a2095b d fib_check_nh_v4_gw.__msg.14
+ffffffc008a20977 d fib_check_nh_v4_gw.__msg.15
+ffffffc008a2099c d fib_check_nh_nongw.__msg
+ffffffc008a209dc d fib_check_nh_nongw.__msg.16
+ffffffc008a209f9 d fib_get_nhs.__msg
+ffffffc008a20a28 d fib_trie_seq_ops
+ffffffc008a20a48 d fib_route_seq_ops
+ffffffc008a20a68 d fib_valid_key_len.__msg
+ffffffc008a20a7e d fib_valid_key_len.__msg.5
+ffffffc008a20aa8 d rtn_type_names
+ffffffc008a20b08 d fib4_notifier_ops_template
+ffffffc008a20b48 D ip_frag_ecn_table
+ffffffc008a20b80 d ping_v4_seq_ops
+ffffffc008a20ba0 D ip_tunnel_header_ops
+ffffffc008a20be0 d gre_offload
+ffffffc008a20c00 d ip_metrics_convert.__msg
+ffffffc008a20c14 d ip_metrics_convert.__msg.1
+ffffffc008a20c35 d ip_metrics_convert.__msg.2
+ffffffc008a20c52 d ip_metrics_convert.__msg.3
+ffffffc008a20c88 d rtm_getroute_parse_ip_proto.__msg
+ffffffc008a20ca3 d fib6_check_nexthop.__msg
+ffffffc008a20cc7 d fib6_check_nexthop.__msg.1
+ffffffc008a20cef d fib_check_nexthop.__msg
+ffffffc008a20d13 d fib_check_nexthop.__msg.2
+ffffffc008a20d48 d fib_check_nexthop.__msg.3
+ffffffc008a20d6c d check_src_addr.__msg
+ffffffc008a20da9 d nexthop_check_scope.__msg
+ffffffc008a20dd6 d nexthop_check_scope.__msg.4
+ffffffc008a20df2 d call_nexthop_notifiers.__msg
+ffffffc008a20e20 d rtm_nh_policy_new
+ffffffc008a20ef0 d rtm_to_nh_config.__msg
+ffffffc008a20f13 d rtm_to_nh_config.__msg.8
+ffffffc008a20f3d d rtm_to_nh_config.__msg.10
+ffffffc008a20f54 d rtm_to_nh_config.__msg.11
+ffffffc008a20f8f d rtm_to_nh_config.__msg.12
+ffffffc008a20fbd d rtm_to_nh_config.__msg.13
+ffffffc008a20fd6 d rtm_to_nh_config.__msg.14
+ffffffc008a20fe9 d rtm_to_nh_config.__msg.15
+ffffffc008a2102d d rtm_to_nh_config.__msg.16
+ffffffc008a2106e d rtm_to_nh_config.__msg.17
+ffffffc008a21083 d rtm_to_nh_config.__msg.18
+ffffffc008a2109c d rtm_to_nh_config.__msg.19
+ffffffc008a210bf d rtm_to_nh_config.__msg.20
+ffffffc008a210cf d rtm_to_nh_config.__msg.21
+ffffffc008a210df d rtm_to_nh_config.__msg.22
+ffffffc008a21102 d rtm_to_nh_config.__msg.23
+ffffffc008a2113b d rtm_to_nh_config.__msg.24
+ffffffc008a2115d d rtm_to_nh_config.__msg.25
+ffffffc008a21184 d nh_check_attr_group.__msg
+ffffffc008a211af d nh_check_attr_group.__msg.26
+ffffffc008a211d8 d nh_check_attr_group.__msg.27
+ffffffc008a211f1 d nh_check_attr_group.__msg.28
+ffffffc008a2121d d nh_check_attr_group.__msg.29
+ffffffc008a21230 d nh_check_attr_group.__msg.30
+ffffffc008a2125f d nh_check_attr_group.__msg.31
+ffffffc008a21290 d valid_group_nh.__msg
+ffffffc008a212c9 d valid_group_nh.__msg.32
+ffffffc008a212fd d valid_group_nh.__msg.33
+ffffffc008a21340 d nh_check_attr_fdb_group.__msg
+ffffffc008a2136d d nh_check_attr_fdb_group.__msg.34
+ffffffc008a213a8 d rtm_nh_res_policy_new
+ffffffc008a213e8 d rtm_to_nh_config_grp_res.__msg
+ffffffc008a2140c d rtm_nh_get_timer.__msg
+ffffffc008a21422 d nexthop_add.__msg
+ffffffc008a2143e d nexthop_add.__msg.35
+ffffffc008a2144b d insert_nexthop.__msg
+ffffffc008a21480 d insert_nexthop.__msg.36
+ffffffc008a214bc d replace_nexthop.__msg
+ffffffc008a21505 d replace_nexthop_grp.__msg
+ffffffc008a21535 d replace_nexthop_grp.__msg.37
+ffffffc008a21573 d replace_nexthop_grp.__msg.38
+ffffffc008a215b2 d call_nexthop_res_table_notifiers.__msg
+ffffffc008a215dd d replace_nexthop_single.__msg
+ffffffc008a21610 d rtm_nh_policy_get
+ffffffc008a21630 d __nh_valid_get_del_req.__msg
+ffffffc008a21649 d __nh_valid_get_del_req.__msg.39
+ffffffc008a2165f d __nh_valid_get_del_req.__msg.40
+ffffffc008a21678 d rtm_nh_policy_dump
+ffffffc008a21738 d __nh_valid_dump_req.__msg
+ffffffc008a2174d d __nh_valid_dump_req.__msg.41
+ffffffc008a21769 d __nh_valid_dump_req.__msg.42
+ffffffc008a2179b d rtm_get_nexthop_bucket.__msg
+ffffffc008a217b8 d rtm_nh_policy_get_bucket
+ffffffc008a21898 d nh_valid_get_bucket_req.__msg
+ffffffc008a218b8 d rtm_nh_res_bucket_policy_get
+ffffffc008a218d8 d nh_valid_get_bucket_req_res_bucket.__msg
+ffffffc008a218f0 d nexthop_find_group_resilient.__msg
+ffffffc008a21904 d nexthop_find_group_resilient.__msg.43
+ffffffc008a21928 d rtm_nh_policy_dump_bucket
+ffffffc008a21a08 d rtm_nh_res_bucket_policy_dump
+ffffffc008a21a48 d nh_valid_dump_nhid.__msg
+ffffffc008a21a70 d snmp4_net_list
+ffffffc008a22250 d snmp4_ipextstats_list
+ffffffc008a22380 d fib4_rule_configure.__msg
+ffffffc008a223aa d fib4_rule_configure.__msg.1
+ffffffc008a223b6 d __param_str_log_ecn_error
+ffffffc008a223c9 d __param_str_log_ecn_error
+ffffffc008a223de d __param_str_log_ecn_error
+ffffffc008a223f0 d __param_str_log_ecn_error
+ffffffc008a22409 d __param_str_log_ecn_error
+ffffffc008a22420 d ipip_policy
+ffffffc008a22570 d ipip_netdev_ops
+ffffffc008a22810 d ipip_tpi
+ffffffc008a22820 d ipip_tpi
+ffffffc008a22830 d net_gre_protocol
+ffffffc008a22848 d ipgre_protocol
+ffffffc008a22858 d ipgre_policy
+ffffffc008a229e8 d gre_tap_netdev_ops
+ffffffc008a22c88 d ipgre_netdev_ops
+ffffffc008a22f28 d ipgre_header_ops
+ffffffc008a22f68 d erspan_netdev_ops
+ffffffc008a23208 d vti_policy
+ffffffc008a23278 d vti_netdev_ops
+ffffffc008a23518 d esp_type
+ffffffc008a23550 d esp_init_state.__msg
+ffffffc008a23574 d esp_init_state.__msg.4
+ffffffc008a2359b d esp_init_aead.__msg
+ffffffc008a235b6 d esp_init_aead.__msg
+ffffffc008a235d1 d esp_init_aead.__msg.6
+ffffffc008a2360a d esp_init_aead.__msg.6
+ffffffc008a23643 d esp_init_authenc.__msg
+ffffffc008a2365e d esp_init_authenc.__msg
+ffffffc008a23679 d esp_init_authenc.__msg.13
+ffffffc008a23694 d esp_init_authenc.__msg.13
+ffffffc008a236af d esp_init_authenc.__msg.14
+ffffffc008a236e8 d esp_init_authenc.__msg.14
+ffffffc008a23721 d esp_init_authenc.__msg.15
+ffffffc008a2375a d esp_init_authenc.__msg.15
+ffffffc008a23793 d esp_init_authenc.__msg.16
+ffffffc008a237cc d esp_init_authenc.__msg.16
+ffffffc008a23808 d tunnel64_protocol
+ffffffc008a23820 d tunnel4_protocol
+ffffffc008a23858 d inet6_diag_handler
+ffffffc008a23878 d inet_diag_handler
+ffffffc008a238f8 d tcp_diag_handler
+ffffffc008a23930 d udplite_diag_handler
+ffffffc008a23968 d udp_diag_handler
+ffffffc008a239a0 d __param_str_fast_convergence
+ffffffc008a239bb d __param_str_beta
+ffffffc008a239ca d __param_str_initial_ssthresh
+ffffffc008a239e5 d __param_str_bic_scale
+ffffffc008a239f9 d __param_str_tcp_friendliness
+ffffffc008a23a14 d __param_str_hystart
+ffffffc008a23a26 d __param_str_hystart_detect
+ffffffc008a23a3f d __param_str_hystart_low_window
+ffffffc008a23a5c d __param_str_hystart_ack_delta_us
+ffffffc008a23a7b d cubic_root.v
+ffffffc008a23ac0 d xfrm4_policy_afinfo
+ffffffc008a23ae8 d xfrm4_input_afinfo.llvm.13516301134415204680
+ffffffc008a23af8 d esp4_protocol
+ffffffc008a23b10 d ah4_protocol
+ffffffc008a23b28 d ipcomp4_protocol
+ffffffc008a23bb0 d xfrm_pol_inexact_params
+ffffffc008a23f68 d __xfrm_init_state.__msg
+ffffffc008a23f81 d __xfrm_init_state.__msg.1
+ffffffc008a23fb6 d __xfrm_init_state.__msg.2
+ffffffc008a23fcf d __xfrm_init_state.__msg.3
+ffffffc008a23fe8 d __xfrm_init_state.__msg.4
+ffffffc008a24001 d xfrm4_mode_map
+ffffffc008a24010 d xfrm6_mode_map
+ffffffc008a24048 d xfrm_init_replay.__msg
+ffffffc008a24082 d xfrm_init_replay.__msg.1
+ffffffc008a240b0 d xfrm_mib_list
+ffffffc008a24330 D xfrm_msg_min
+ffffffc008a24398 D xfrma_policy
+ffffffc008a245a8 d verify_newpolicy_info.__msg
+ffffffc008a245bd d verify_newpolicy_info.__msg.1
+ffffffc008a245d3 d verify_newpolicy_info.__msg.2
+ffffffc008a2460e d verify_newpolicy_info.__msg.3
+ffffffc008a2464a d verify_newpolicy_info.__msg.4
+ffffffc008a24662 d verify_newpolicy_info.__msg.5
+ffffffc008a24687 d verify_policy_dir.__msg
+ffffffc008a246a0 d validate_tmpl.__msg
+ffffffc008a246cd d validate_tmpl.__msg.6
+ffffffc008a246fe d validate_tmpl.__msg.7
+ffffffc008a2472b d validate_tmpl.__msg.8
+ffffffc008a24746 d validate_tmpl.__msg.9
+ffffffc008a24798 d xfrm_dispatch
+ffffffc008a24c48 d xfrma_spd_policy
+ffffffc008a24c98 d verify_newsa_info.__msg
+ffffffc008a24caf d verify_newsa_info.__msg.11
+ffffffc008a24cea d verify_newsa_info.__msg.12
+ffffffc008a24d26 d verify_newsa_info.__msg.13
+ffffffc008a24d49 d verify_newsa_info.__msg.14
+ffffffc008a24d7f d verify_newsa_info.__msg.15
+ffffffc008a24db4 d verify_newsa_info.__msg.16
+ffffffc008a24dd4 d verify_newsa_info.__msg.17
+ffffffc008a24e26 d verify_newsa_info.__msg.18
+ffffffc008a24e7d d verify_newsa_info.__msg.19
+ffffffc008a24ea9 d verify_newsa_info.__msg.20
+ffffffc008a24ed3 d verify_newsa_info.__msg.21
+ffffffc008a24f16 d verify_newsa_info.__msg.22
+ffffffc008a24f44 d verify_newsa_info.__msg.23
+ffffffc008a24f6b d verify_newsa_info.__msg.24
+ffffffc008a24fa1 d verify_newsa_info.__msg.25
+ffffffc008a24fb6 d verify_newsa_info.__msg.26
+ffffffc008a24fc7 d verify_newsa_info.__msg.27
+ffffffc008a24fff d verify_aead.__msg
+ffffffc008a2501d d verify_auth_trunc.__msg
+ffffffc008a25041 d verify_one_alg.__msg
+ffffffc008a2506a d verify_sec_ctx_len.__msg
+ffffffc008a2508a d verify_replay.__msg
+ffffffc008a250ad d verify_replay.__msg.29
+ffffffc008a250ce d verify_replay.__msg.30
+ffffffc008a25107 d verify_replay.__msg.31
+ffffffc008a25129 d verify_replay.__msg.32
+ffffffc008a25156 d attach_aead.__msg
+ffffffc008a25179 d attach_auth_trunc.__msg
+ffffffc008a251a2 d attach_auth_trunc.__msg.33
+ffffffc008a251cd d attach_auth.__msg
+ffffffc008a251f0 d attach_crypt.__msg
+ffffffc008a25214 d attach_one_algo.__msg
+ffffffc008a25237 d verify_policy_type.__msg
+ffffffc008a2524b d ipcomp_init_state.__msg
+ffffffc008a25272 d ipcomp_init_state.__msg.1
+ffffffc008a252a0 d xfrmi_netdev_ops
+ffffffc008a25540 d xfrmi_policy
+ffffffc008a25580 d xfrmi_newlink.__msg
+ffffffc008a2559c d xfrmi_newlink.__msg.5
+ffffffc008a255b3 d xfrmi_changelink.__msg
+ffffffc008a255ca d xfrmi_changelink.__msg.6
+ffffffc008a255e6 d xfrmi_changelink.__msg.7
+ffffffc008a25610 d xfrm_if_cb
+ffffffc008a25620 d unix_seq_ops
+ffffffc008a25640 d unix_family_ops
+ffffffc008a25658 d unix_stream_ops
+ffffffc008a25758 d unix_dgram_ops
+ffffffc008a25858 d unix_seqpacket_ops
+ffffffc008a25a08 d __param_str_disable
+ffffffc008a25a15 d __param_str_disable_ipv6
+ffffffc008a25a27 d __param_str_autoconf
+ffffffc008a25a38 d inet6_family_ops
+ffffffc008a25a50 d ipv6_stub_impl
+ffffffc008a25b08 d ipv6_bpf_stub_impl
+ffffffc008a25b28 D inet6_stream_ops
+ffffffc008a25c28 D inet6_dgram_ops
+ffffffc008a25d28 d ac6_seq_ops
+ffffffc008a25e28 d if6_seq_ops
+ffffffc008a25e48 d addrconf_sysctl
+ffffffc008a26cc8 d two_five_five
+ffffffc008a26cd0 d inet6_af_policy
+ffffffc008a26d70 d inet6_set_iftoken.__msg
+ffffffc008a26d89 d inet6_set_iftoken.__msg.86
+ffffffc008a26db6 d inet6_set_iftoken.__msg.87
+ffffffc008a26de7 d inet6_set_iftoken.__msg.88
+ffffffc008a26e11 d inet6_valid_dump_ifinfo.__msg
+ffffffc008a26e3c d inet6_valid_dump_ifinfo.__msg.89
+ffffffc008a26e5c d inet6_valid_dump_ifinfo.__msg.90
+ffffffc008a26e90 d ifa_ipv6_policy
+ffffffc008a26f50 d inet6_rtm_newaddr.__msg
+ffffffc008a26f88 d inet6_rtm_valid_getaddr_req.__msg
+ffffffc008a26fb5 d inet6_rtm_valid_getaddr_req.__msg.91
+ffffffc008a26fec d inet6_rtm_valid_getaddr_req.__msg.92
+ffffffc008a2701f d inet6_valid_dump_ifaddr_req.__msg
+ffffffc008a2704d d inet6_valid_dump_ifaddr_req.__msg.93
+ffffffc008a27085 d inet6_valid_dump_ifaddr_req.__msg.94
+ffffffc008a270af d inet6_valid_dump_ifaddr_req.__msg.95
+ffffffc008a270db d inet6_netconf_valid_get_req.__msg
+ffffffc008a27108 d devconf_ipv6_policy
+ffffffc008a27198 d inet6_netconf_valid_get_req.__msg.96
+ffffffc008a271cb d inet6_netconf_dump_devconf.__msg
+ffffffc008a271f9 d inet6_netconf_dump_devconf.__msg.97
+ffffffc008a27238 d ifal_policy
+ffffffc008a27268 d ip6addrlbl_valid_get_req.__msg
+ffffffc008a27297 d ip6addrlbl_valid_get_req.__msg.9
+ffffffc008a272d0 d ip6addrlbl_valid_get_req.__msg.10
+ffffffc008a27305 d ip6addrlbl_valid_dump_req.__msg
+ffffffc008a27339 d ip6addrlbl_valid_dump_req.__msg.11
+ffffffc008a27377 d ip6addrlbl_valid_dump_req.__msg.12
+ffffffc008a273ba d str__fib6__trace_system_name
+ffffffc008a273bf d fib6_nh_init.__msg
+ffffffc008a273e2 d fib6_nh_init.__msg.1
+ffffffc008a273fb d fib6_nh_init.__msg.2
+ffffffc008a2741e d fib6_nh_init.__msg.3
+ffffffc008a27438 d fib6_prop
+ffffffc008a27468 d ip6_validate_gw.__msg
+ffffffc008a2748b d ip6_validate_gw.__msg.32
+ffffffc008a274a3 d ip6_validate_gw.__msg.33
+ffffffc008a274bf d ip6_validate_gw.__msg.34
+ffffffc008a274f7 d ip6_validate_gw.__msg.35
+ffffffc008a2751a d ip6_route_check_nh_onlink.__msg
+ffffffc008a27549 d ip6_route_info_create.__msg
+ffffffc008a27568 d ip6_route_info_create.__msg.36
+ffffffc008a27588 d ip6_route_info_create.__msg.37
+ffffffc008a2759b d ip6_route_info_create.__msg.38
+ffffffc008a275b1 d ip6_route_info_create.__msg.39
+ffffffc008a275cf d ip6_route_info_create.__msg.40
+ffffffc008a2760e d ip6_route_info_create.__msg.41
+ffffffc008a27628 d ip6_route_info_create.__msg.43
+ffffffc008a27655 d ip6_route_info_create.__msg.44
+ffffffc008a2766e d ip6_route_info_create.__msg.45
+ffffffc008a27685 d ip6_route_del.__msg
+ffffffc008a276a0 d fib6_null_entry_template
+ffffffc008a27750 d ip6_null_entry_template
+ffffffc008a27840 d ip6_template_metrics
+ffffffc008a27888 d ip6_prohibit_entry_template
+ffffffc008a27978 d ip6_blk_hole_entry_template
+ffffffc008a27a68 d rtm_to_fib6_config.__msg
+ffffffc008a27a9d d rtm_to_fib6_config.__msg.60
+ffffffc008a27ad9 d rtm_to_fib6_config.__msg.61
+ffffffc008a27b08 d rtm_ipv6_policy
+ffffffc008a27cf8 d ip6_route_multipath_add.__msg
+ffffffc008a27d3e d ip6_route_multipath_add.__msg.63
+ffffffc008a27d70 d ip6_route_multipath_add.__msg.64
+ffffffc008a27dbd d fib6_gw_from_attr.__msg
+ffffffc008a27de1 d inet6_rtm_delroute.__msg
+ffffffc008a27dfb d inet6_rtm_valid_getroute_req.__msg
+ffffffc008a27e26 d inet6_rtm_valid_getroute_req.__msg.65
+ffffffc008a27e5b d inet6_rtm_valid_getroute_req.__msg.66
+ffffffc008a27e85 d inet6_rtm_valid_getroute_req.__msg.67
+ffffffc008a27ebc d inet6_rtm_valid_getroute_req.__msg.68
+ffffffc008a27f00 D ipv6_route_seq_ops
+ffffffc008a27f20 d fib6_add_1.__msg
+ffffffc008a27f47 d fib6_add_1.__msg.5
+ffffffc008a27f6e d inet6_dump_fib.__msg
+ffffffc008a282c0 d ndisc_direct_ops
+ffffffc008a282e8 d ndisc_hh_ops
+ffffffc008a28310 d ndisc_generic_ops
+ffffffc008a28338 d ndisc_allow_add.__msg
+ffffffc008a28358 D udp6_seq_ops
+ffffffc008a28378 d udpv6_protocol.llvm.8973886849767798862
+ffffffc008a28390 d udplitev6_protocol.llvm.476615948494526996
+ffffffc008a283a8 D inet6_sockraw_ops
+ffffffc008a284a8 d raw6_seq_ops
+ffffffc008a28750 d icmpv6_protocol.llvm.14671545790358615582
+ffffffc008a28768 d tab_unreach
+ffffffc008a287a0 d igmp6_mc_seq_ops
+ffffffc008a287c0 d igmp6_mcf_seq_ops
+ffffffc008a287e0 d ip6_frag_cache_name
+ffffffc008a287f0 d ip6_rhash_params
+ffffffc008a28818 d frag_protocol
+ffffffc008a28830 D tcp_request_sock_ipv6_ops
+ffffffc008a28858 D ipv6_specific
+ffffffc008a288b8 d tcp6_seq_ops
+ffffffc008a288d8 d tcpv6_protocol.llvm.13091352036548126779
+ffffffc008a288f0 d ipv6_mapped
+ffffffc008a28950 d ping_v6_seq_ops
+ffffffc008a28970 d rthdr_protocol.llvm.4980646702464171750
+ffffffc008a28988 d destopt_protocol.llvm.4980646702464171750
+ffffffc008a289a0 d nodata_protocol.llvm.4980646702464171750
+ffffffc008a28ac0 d ip6fl_seq_ops
+ffffffc008a28ae0 d udpv6_offload.llvm.15381652765872095250
+ffffffc008a28b00 d seg6_genl_policy
+ffffffc008a28b80 d seg6_genl_ops
+ffffffc008a28c60 d fib6_notifier_ops_template
+ffffffc008a28ca0 d rht_ns_params
+ffffffc008a28cc8 d rht_sc_params
+ffffffc008a28cf0 d ioam6_genl_ops
+ffffffc008a28e78 d ioam6_genl_policy_addns
+ffffffc008a28eb8 d ioam6_genl_policy_delns
+ffffffc008a28ed8 d ioam6_genl_policy_addsc
+ffffffc008a28f38 d ioam6_genl_policy_delsc
+ffffffc008a28f88 d ioam6_genl_policy_ns_sc
+ffffffc008a28ff8 d xfrm6_policy_afinfo.llvm.15662529372188487229
+ffffffc008a29020 d xfrm6_input_afinfo.llvm.2877252691645993060
+ffffffc008a29030 d esp6_protocol
+ffffffc008a29048 d ah6_protocol
+ffffffc008a29060 d ipcomp6_protocol
+ffffffc008a29078 d fib6_rule_configure.__msg
+ffffffc008a290a2 d fib6_rule_configure.__msg.1
+ffffffc008a290b0 d snmp6_ipstats_list
+ffffffc008a292c0 d snmp6_icmp6_list
+ffffffc008a29320 d icmp6type2name
+ffffffc008a29b20 d snmp6_udp6_list
+ffffffc008a29bc0 d snmp6_udplite6_list
+ffffffc008a29c50 d esp6_type
+ffffffc008a29c88 d esp6_init_state.__msg
+ffffffc008a29cac d esp6_init_state.__msg.4
+ffffffc008a29cd8 d ipcomp6_type
+ffffffc008a29d10 d ipcomp6_init_state.__msg
+ffffffc008a29d31 d ipcomp6_init_state.__msg.1
+ffffffc008a29d70 d xfrm6_tunnel_type
+ffffffc008a29da8 d xfrm6_tunnel_init_state.__msg
+ffffffc008a29dd6 d xfrm6_tunnel_init_state.__msg.1
+ffffffc008a29e08 d tunnel6_input_afinfo
+ffffffc008a29e18 d tunnel46_protocol
+ffffffc008a29e30 d tunnel6_protocol
+ffffffc008a29e48 d mip6_rthdr_type
+ffffffc008a29e80 d mip6_destopt_type
+ffffffc008a29eb8 d mip6_rthdr_init_state.__msg
+ffffffc008a29ec6 d mip6_rthdr_init_state.__msg.1
+ffffffc008a29ef4 d mip6_destopt_init_state.__msg
+ffffffc008a29f02 d mip6_destopt_init_state.__msg.2
+ffffffc008a29f60 d vti6_policy
+ffffffc008a29fd0 d vti6_netdev_ops
+ffffffc008a2a280 d ipip6_policy
+ffffffc008a2a3d0 d ipip6_netdev_ops
+ffffffc008a2a690 d ip6_tnl_policy
+ffffffc008a2a7e0 d ip6_tnl_netdev_ops
+ffffffc008a2aa80 d tpi_v4
+ffffffc008a2aa90 d tpi_v6
+ffffffc008a2aab8 d ip6gre_policy
+ffffffc008a2ac48 d ip6gre_tap_netdev_ops
+ffffffc008a2aee8 d ip6gre_netdev_ops
+ffffffc008a2b188 d ip6gre_header_ops
+ffffffc008a2b1c8 d ip6erspan_netdev_ops
+ffffffc008a2b468 D in6addr_loopback
+ffffffc008a2b478 D in6addr_any
+ffffffc008a2b488 D in6addr_linklocal_allnodes
+ffffffc008a2b498 D in6addr_linklocal_allrouters
+ffffffc008a2b4a8 D in6addr_interfacelocal_allnodes
+ffffffc008a2b4b8 D in6addr_interfacelocal_allrouters
+ffffffc008a2b4c8 D in6addr_sitelocal_allrouters
+ffffffc008a2b4d8 d eafnosupport_fib6_nh_init.__msg
+ffffffc008a2b500 d sit_offload
+ffffffc008a2b520 d ip6ip6_offload
+ffffffc008a2b540 d ip4ip6_offload
+ffffffc008a2b560 d tcpv6_offload.llvm.10274928758129305885
+ffffffc008a2b580 d rthdr_offload
+ffffffc008a2b5a0 d dstopt_offload
+ffffffc008a2b6a8 d packet_seq_ops
+ffffffc008a2b6c8 d packet_family_ops
+ffffffc008a2b6e0 d packet_ops
+ffffffc008a2b7e0 d packet_ops_spkt
+ffffffc008a2b8e0 d packet_mmap_ops
+ffffffc008a2ba18 d pfkey_seq_ops
+ffffffc008a2ba38 d pfkey_family_ops
+ffffffc008a2ba50 d pfkey_ops
+ffffffc008a2bb50 d pfkey_funcs
+ffffffc008a2bc18 d sadb_ext_min_len
+ffffffc008a2bc34 d dummy_mark
+ffffffc008a2bc88 d vsock_device_ops
+ffffffc008a2bd98 d vsock_family_ops
+ffffffc008a2bdb0 d vsock_dgram_ops
+ffffffc008a2beb0 d vsock_stream_ops
+ffffffc008a2bfb0 d vsock_seqpacket_ops
+ffffffc008a2c0b0 d vsock_diag_handler
+ffffffc008a2c100 d virtio_vsock_vqs_init.names
+ffffffc008a2c170 d str__vsock__trace_system_name
+ffffffc008a2c176 d __param_str_virtio_transport_max_vsock_pkt_buf_size
+ffffffc008a2c1c0 d trace_raw_output_virtio_transport_alloc_pkt.symbols
+ffffffc008a2c1f0 d trace_raw_output_virtio_transport_alloc_pkt.symbols.23
+ffffffc008a2c280 d trace_raw_output_virtio_transport_recv_pkt.symbols
+ffffffc008a2c2b0 d trace_raw_output_virtio_transport_recv_pkt.symbols.35
+ffffffc008a2c368 d aarch64_insn_encoding_class
+ffffffc008a2c474 D _ctype
+ffffffc008a2c580 d fdt_errtable
+ffffffc008a2c620 D kobj_sysfs_ops
+ffffffc008a2c640 d kobject_actions
+ffffffc008a2c680 d zap_modalias_env.modalias_prefix
+ffffffc008a2c6c0 d uevent_net_rcv_skb.__msg
+ffffffc008a2c6e1 d uevent_net_broadcast.__msg
+ffffffc008a2c70c d str__maple_tree__trace_system_name
+ffffffc008a2ccbe d decpair
+ffffffc008a2cd86 d default_dec_spec
+ffffffc008a2cd8e d default_flag_spec
+ffffffc008a2cd98 d pff
+ffffffc008a2ce38 D linux_banner
+ffffffc008a2cfa0 D __sched_class_highest
+ffffffc008a2cfa0 D stop_sched_class
+ffffffc008a2d068 D dl_sched_class
+ffffffc008a2d130 D rt_sched_class
+ffffffc008a2d1f8 D fair_sched_class
+ffffffc008a2d2c0 D idle_sched_class
+ffffffc008a2d388 D __sched_class_lowest
+ffffffc008a2d388 D __start_ro_after_init
+ffffffc008a2d388 D randomize_kstack_offset
+ffffffc008a2d398 D rodata_enabled
+ffffffc008a2d3a0 D handle_arch_irq
+ffffffc008a2d3a8 D handle_arch_fiq
+ffffffc008a2d3b0 D vl_info
+ffffffc008a2d4f0 D signal_minsigstksz
+ffffffc008a2d4f8 d aarch64_vdso_maps
+ffffffc008a2d538 d vdso_info.2
+ffffffc008a2d540 d vdso_info.3
+ffffffc008a2d548 d vdso_info.4
+ffffffc008a2d550 d cpu_ops
+ffffffc008a2d650 d no_override
+ffffffc008a2d660 d cpu_hwcaps_ptrs
+ffffffc008a2d8f0 D id_aa64mmfr1_override
+ffffffc008a2d900 D id_aa64pfr0_override
+ffffffc008a2d910 D id_aa64pfr1_override
+ffffffc008a2d920 D id_aa64zfr0_override
+ffffffc008a2d930 D id_aa64smfr0_override
+ffffffc008a2d940 D id_aa64isar1_override
+ffffffc008a2d950 D id_aa64isar2_override
+ffffffc008a2d960 D module_alloc_base
+ffffffc008a2d968 d memory_limit
+ffffffc008a2d970 d disable_dma32
+ffffffc008a2d978 D memstart_addr
+ffffffc008a2d980 D arm64_dma_phys_limit
+ffffffc008a2d988 d protection_map
+ffffffc008a2da08 D idmap_t0sz
+ffffffc008a2da10 D kimage_vaddr
+ffffffc008a2da18 D kimage_voffset
+ffffffc008a2da20 D rodata_full
+ffffffc008a2da24 d cpu_mitigations
+ffffffc008a2da28 d notes_attr
+ffffffc008a2da68 d __printk_percpu_data_ready
+ffffffc008a2da6c D zone_dma_bits
+ffffffc008a2da70 d atomic_pool_kernel
+ffffffc008a2da78 d atomic_pool_dma
+ffffffc008a2da80 d atomic_pool_dma32
+ffffffc008a2da88 d constraints_initialized
+ffffffc008a2da8c d __nr_bp_slots
+ffffffc008a2da98 D pcpu_base_addr
+ffffffc008a2daa0 d pcpu_unit_size
+ffffffc008a2daa8 D pcpu_chunk_lists
+ffffffc008a2dab0 d pcpu_free_slot
+ffffffc008a2dab4 d pcpu_low_unit_cpu
+ffffffc008a2dab8 d pcpu_high_unit_cpu
+ffffffc008a2dabc d pcpu_unit_pages
+ffffffc008a2dac0 d pcpu_nr_units
+ffffffc008a2dac4 d pcpu_nr_groups
+ffffffc008a2dac8 d pcpu_group_offsets
+ffffffc008a2dad0 d pcpu_group_sizes
+ffffffc008a2dad8 d pcpu_unit_map
+ffffffc008a2dae0 D pcpu_unit_offsets
+ffffffc008a2dae8 d pcpu_atom_size
+ffffffc008a2daf0 d pcpu_chunk_struct_size
+ffffffc008a2daf8 D pcpu_sidelined_slot
+ffffffc008a2dafc D pcpu_to_depopulate_slot
+ffffffc008a2db00 D pcpu_nr_slots
+ffffffc008a2db08 D pcpu_reserved_chunk
+ffffffc008a2db10 D pcpu_first_chunk
+ffffffc008a2db18 d size_index
+ffffffc008a2db30 D kmalloc_caches
+ffffffc008a2dc80 d ioremap_max_page_shift
+ffffffc008a2dc81 d vmap_allow_huge
+ffffffc008a2dc82 d memmap_on_memory
+ffffffc008a2dc84 d kasan_arg_fault
+ffffffc008a2dc88 D kasan_mode
+ffffffc008a2dc8c d kasan_arg
+ffffffc008a2dc90 d kasan_arg_mode
+ffffffc008a2dc94 d secretmem_enable
+ffffffc008a2dc98 d bypass_usercopy_checks
+ffffffc008a2dca8 d seq_file_cache
+ffffffc008a2dcb0 d proc_inode_cachep
+ffffffc008a2dcb8 d pde_opener_cache
+ffffffc008a2dcc0 d nlink_tid
+ffffffc008a2dcc1 d nlink_tgid
+ffffffc008a2dcc8 D proc_dir_entry_cache
+ffffffc008a2dcd0 d self_inum
+ffffffc008a2dcd4 d thread_self_inum
+ffffffc008a2dcd8 d debugfs_allow
+ffffffc008a2dce0 d tracefs_ops.0
+ffffffc008a2dce8 d tracefs_ops.1
+ffffffc008a2dcf0 d capability_hooks
+ffffffc008a2dfc0 D security_hook_heads
+ffffffc008a2e620 d blob_sizes.0
+ffffffc008a2e624 d blob_sizes.1
+ffffffc008a2e628 d blob_sizes.2
+ffffffc008a2e62c d blob_sizes.3
+ffffffc008a2e630 d blob_sizes.4
+ffffffc008a2e634 d blob_sizes.5
+ffffffc008a2e638 d blob_sizes.6
+ffffffc008a2e640 d avc_node_cachep
+ffffffc008a2e648 d avc_xperms_cachep
+ffffffc008a2e650 d avc_xperms_decision_cachep
+ffffffc008a2e658 d avc_xperms_data_cachep
+ffffffc008a2e660 d avc_callbacks
+ffffffc008a2e668 d default_noexec
+ffffffc008a2e670 d selinux_hooks
+ffffffc008a302b8 D selinux_blob_sizes
+ffffffc008a302d8 d selinuxfs_mount
+ffffffc008a302e0 D selinux_null
+ffffffc008a302f0 d selnl
+ffffffc008a302f8 d ebitmap_node_cachep
+ffffffc008a30300 d hashtab_node_cachep
+ffffffc008a30308 d avtab_xperms_cachep
+ffffffc008a30310 d avtab_node_cachep
+ffffffc008a30318 d aer_stats_attrs
+ffffffc008a30350 d ptmx_fops
+ffffffc008a30460 D smccc_trng_available
+ffffffc008a30468 D smccc_has_sve_hint
+ffffffc008a30470 d __kvm_arm_hyp_services
+ffffffc008a30480 D arch_timer_read_counter
+ffffffc008a30488 d arch_timer_rate
+ffffffc008a3048c d arch_timer_uses_ppi
+ffffffc008a30490 d evtstrm_enable
+ffffffc008a30494 d arch_timer_ppi
+ffffffc008a304a8 d arch_timer_c3stop
+ffffffc008a304a9 d arch_counter_suspend_stop
+ffffffc008a304aa d arch_timer_mem_use_virtual
+ffffffc008a304b0 d cyclecounter
+ffffffc008a304c8 d arch_timer_mem
+ffffffc008a304d0 D initial_boot_params
+ffffffc008a304d8 d sock_inode_cachep
+ffffffc008a304e0 D skbuff_head_cache
+ffffffc008a304e8 d skbuff_fclone_cache
+ffffffc008a304f0 d skbuff_ext_cache
+ffffffc008a304f8 d net_class
+ffffffc008a30590 d rx_queue_ktype
+ffffffc008a305e0 d rx_queue_default_attrs
+ffffffc008a305f8 d rps_cpus_attribute
+ffffffc008a30618 d rps_dev_flow_table_cnt_attribute
+ffffffc008a30638 d netdev_queue_ktype
+ffffffc008a30688 d netdev_queue_default_attrs
+ffffffc008a306b8 d queue_trans_timeout
+ffffffc008a306d8 d queue_traffic_class
+ffffffc008a306f8 d xps_cpus_attribute
+ffffffc008a30718 d xps_rxqs_attribute
+ffffffc008a30738 d queue_tx_maxrate
+ffffffc008a30758 d dql_attrs
+ffffffc008a30788 d bql_limit_attribute
+ffffffc008a307a8 d bql_limit_max_attribute
+ffffffc008a307c8 d bql_limit_min_attribute
+ffffffc008a307e8 d bql_hold_time_attribute
+ffffffc008a30808 d bql_inflight_attribute
+ffffffc008a30828 d net_class_attrs
+ffffffc008a30930 d netstat_attrs
+ffffffc008a309f8 d genl_ctrl
+ffffffc008a30a68 d ethtool_genl_family
+ffffffc008a30ad8 d peer_cachep
+ffffffc008a30ae0 d tcp_metrics_nl_family
+ffffffc008a30b50 d fn_alias_kmem
+ffffffc008a30b58 d trie_leaf_kmem
+ffffffc008a30b60 d xfrm_dst_cache
+ffffffc008a30b68 d xfrm_state_cache
+ffffffc008a30b70 d seg6_genl_family
+ffffffc008a30be0 d ioam6_genl_family
+ffffffc008a30c50 D vmlinux_build_id
+ffffffc008a30c64 D no_hash_pointers
+ffffffc008a30c68 d debug_boot_weak_hash
+ffffffc008a30c70 D __start___jump_table
+ffffffc008a42620 D __end_ro_after_init
+ffffffc008a42620 D __start___tracepoints_ptrs
+ffffffc008a42620 D __stop___jump_table
+ffffffc008a42fa4 D __stop___tracepoints_ptrs
+ffffffc008a42fa4 d __tpstrtab_initcall_level
+ffffffc008a42fb3 d __tpstrtab_initcall_start
+ffffffc008a42fc2 d __tpstrtab_initcall_finish
+ffffffc008a42fd2 d __tpstrtab_sys_enter
+ffffffc008a42fdc d __tpstrtab_sys_exit
+ffffffc008a42fe5 d __tpstrtab_ipi_raise
+ffffffc008a42fef d __tpstrtab_ipi_entry
+ffffffc008a42ff9 d __tpstrtab_ipi_exit
+ffffffc008a43002 d __tpstrtab_task_newtask
+ffffffc008a4300f d __tpstrtab_task_rename
+ffffffc008a4301b d __tpstrtab_cpuhp_enter
+ffffffc008a43027 d __tpstrtab_cpuhp_multi_enter
+ffffffc008a43039 d __tpstrtab_cpuhp_exit
+ffffffc008a43044 d __tpstrtab_irq_handler_entry
+ffffffc008a43056 d __tpstrtab_irq_handler_exit
+ffffffc008a43067 d __tpstrtab_softirq_entry
+ffffffc008a43075 d __tpstrtab_softirq_exit
+ffffffc008a43082 d __tpstrtab_softirq_raise
+ffffffc008a43090 d __tpstrtab_tasklet_entry
+ffffffc008a4309e d __tpstrtab_tasklet_exit
+ffffffc008a430ab d __tpstrtab_signal_generate
+ffffffc008a430bb d __tpstrtab_signal_deliver
+ffffffc008a430ca d __tpstrtab_workqueue_queue_work
+ffffffc008a430df d __tpstrtab_workqueue_activate_work
+ffffffc008a430f7 d __tpstrtab_workqueue_execute_start
+ffffffc008a4310f d __tpstrtab_workqueue_execute_end
+ffffffc008a43125 d __tpstrtab_sched_kthread_stop
+ffffffc008a43138 d __tpstrtab_sched_kthread_stop_ret
+ffffffc008a4314f d __tpstrtab_sched_kthread_work_queue_work
+ffffffc008a4316d d __tpstrtab_sched_kthread_work_execute_start
+ffffffc008a4318e d __tpstrtab_sched_kthread_work_execute_end
+ffffffc008a431ad d __tpstrtab_sched_waking
+ffffffc008a431ba d __tpstrtab_sched_wakeup
+ffffffc008a431c7 d __tpstrtab_sched_wakeup_new
+ffffffc008a431d8 d __tpstrtab_sched_switch
+ffffffc008a431e5 d __tpstrtab_sched_migrate_task
+ffffffc008a431f8 d __tpstrtab_sched_process_free
+ffffffc008a4320b d __tpstrtab_sched_process_exit
+ffffffc008a4321e d __tpstrtab_sched_wait_task
+ffffffc008a4322e d __tpstrtab_sched_process_wait
+ffffffc008a43241 d __tpstrtab_sched_process_fork
+ffffffc008a43254 d __tpstrtab_sched_process_exec
+ffffffc008a43267 d __tpstrtab_sched_stat_wait
+ffffffc008a43277 d __tpstrtab_sched_stat_sleep
+ffffffc008a43288 d __tpstrtab_sched_stat_iowait
+ffffffc008a4329a d __tpstrtab_sched_stat_blocked
+ffffffc008a432ad d __tpstrtab_sched_blocked_reason
+ffffffc008a432c2 d __tpstrtab_sched_stat_runtime
+ffffffc008a432d5 d __tpstrtab_sched_pi_setprio
+ffffffc008a432e6 d __tpstrtab_sched_process_hang
+ffffffc008a432f9 d __tpstrtab_sched_move_numa
+ffffffc008a43309 d __tpstrtab_sched_stick_numa
+ffffffc008a4331a d __tpstrtab_sched_swap_numa
+ffffffc008a4332a d __tpstrtab_sched_wake_idle_without_ipi
+ffffffc008a43346 d __tpstrtab_pelt_cfs_tp
+ffffffc008a43352 d __tpstrtab_pelt_rt_tp
+ffffffc008a4335d d __tpstrtab_pelt_dl_tp
+ffffffc008a43368 d __tpstrtab_pelt_thermal_tp
+ffffffc008a43378 d __tpstrtab_pelt_irq_tp
+ffffffc008a43384 d __tpstrtab_pelt_se_tp
+ffffffc008a4338f d __tpstrtab_sched_cpu_capacity_tp
+ffffffc008a433a5 d __tpstrtab_sched_overutilized_tp
+ffffffc008a433bb d __tpstrtab_sched_util_est_cfs_tp
+ffffffc008a433d1 d __tpstrtab_sched_util_est_se_tp
+ffffffc008a433e6 d __tpstrtab_sched_update_nr_running_tp
+ffffffc008a43401 d __tpstrtab_contention_begin
+ffffffc008a43412 d __tpstrtab_contention_end
+ffffffc008a43421 d __tpstrtab_console
+ffffffc008a43429 d __tpstrtab_rcu_utilization
+ffffffc008a43439 d __tpstrtab_rcu_grace_period
+ffffffc008a4344a d __tpstrtab_rcu_future_grace_period
+ffffffc008a43462 d __tpstrtab_rcu_grace_period_init
+ffffffc008a43478 d __tpstrtab_rcu_exp_grace_period
+ffffffc008a4348d d __tpstrtab_rcu_exp_funnel_lock
+ffffffc008a434a1 d __tpstrtab_rcu_nocb_wake
+ffffffc008a434af d __tpstrtab_rcu_preempt_task
+ffffffc008a434c0 d __tpstrtab_rcu_unlock_preempted_task
+ffffffc008a434da d __tpstrtab_rcu_quiescent_state_report
+ffffffc008a434f5 d __tpstrtab_rcu_fqs
+ffffffc008a434fd d __tpstrtab_rcu_stall_warning
+ffffffc008a4350f d __tpstrtab_rcu_dyntick
+ffffffc008a4351b d __tpstrtab_rcu_callback
+ffffffc008a43528 d __tpstrtab_rcu_segcb_stats
+ffffffc008a43538 d __tpstrtab_rcu_kvfree_callback
+ffffffc008a4354c d __tpstrtab_rcu_batch_start
+ffffffc008a4355c d __tpstrtab_rcu_invoke_callback
+ffffffc008a43570 d __tpstrtab_rcu_invoke_kvfree_callback
+ffffffc008a4358b d __tpstrtab_rcu_invoke_kfree_bulk_callback
+ffffffc008a435aa d __tpstrtab_rcu_batch_end
+ffffffc008a435b8 d __tpstrtab_rcu_torture_read
+ffffffc008a435c9 d __tpstrtab_rcu_barrier
+ffffffc008a435d5 d __tpstrtab_swiotlb_bounced
+ffffffc008a435e5 d __tpstrtab_module_load
+ffffffc008a435f1 d __tpstrtab_module_free
+ffffffc008a435fd d __tpstrtab_module_request
+ffffffc008a4360c d __tpstrtab_timer_init
+ffffffc008a43617 d __tpstrtab_timer_start
+ffffffc008a43623 d __tpstrtab_timer_expire_entry
+ffffffc008a43636 d __tpstrtab_timer_expire_exit
+ffffffc008a43648 d __tpstrtab_timer_cancel
+ffffffc008a43655 d __tpstrtab_hrtimer_init
+ffffffc008a43662 d __tpstrtab_hrtimer_start
+ffffffc008a43670 d __tpstrtab_hrtimer_expire_entry
+ffffffc008a43685 d __tpstrtab_hrtimer_expire_exit
+ffffffc008a43699 d __tpstrtab_hrtimer_cancel
+ffffffc008a436a8 d __tpstrtab_itimer_state
+ffffffc008a436b5 d __tpstrtab_itimer_expire
+ffffffc008a436c3 d __tpstrtab_tick_stop
+ffffffc008a436cd d __tpstrtab_alarmtimer_suspend
+ffffffc008a436e0 d __tpstrtab_alarmtimer_fired
+ffffffc008a436f1 d __tpstrtab_alarmtimer_start
+ffffffc008a43702 d __tpstrtab_alarmtimer_cancel
+ffffffc008a43714 d __tpstrtab_error_report_end
+ffffffc008a43725 d __tpstrtab_cpu_idle
+ffffffc008a4372e d __tpstrtab_cpu_idle_miss
+ffffffc008a4373c d __tpstrtab_powernv_throttle
+ffffffc008a4374d d __tpstrtab_pstate_sample
+ffffffc008a4375b d __tpstrtab_cpu_frequency
+ffffffc008a43769 d __tpstrtab_cpu_frequency_limits
+ffffffc008a4377e d __tpstrtab_device_pm_callback_start
+ffffffc008a43797 d __tpstrtab_device_pm_callback_end
+ffffffc008a437ae d __tpstrtab_suspend_resume
+ffffffc008a437bd d __tpstrtab_wakeup_source_activate
+ffffffc008a437d4 d __tpstrtab_wakeup_source_deactivate
+ffffffc008a437ed d __tpstrtab_clock_enable
+ffffffc008a437fa d __tpstrtab_clock_disable
+ffffffc008a43808 d __tpstrtab_clock_set_rate
+ffffffc008a43817 d __tpstrtab_power_domain_target
+ffffffc008a4382b d __tpstrtab_pm_qos_add_request
+ffffffc008a4383e d __tpstrtab_pm_qos_update_request
+ffffffc008a43854 d __tpstrtab_pm_qos_remove_request
+ffffffc008a4386a d __tpstrtab_pm_qos_update_target
+ffffffc008a4387f d __tpstrtab_pm_qos_update_flags
+ffffffc008a43893 d __tpstrtab_dev_pm_qos_add_request
+ffffffc008a438aa d __tpstrtab_dev_pm_qos_update_request
+ffffffc008a438c4 d __tpstrtab_dev_pm_qos_remove_request
+ffffffc008a438de d __tpstrtab_guest_halt_poll_ns
+ffffffc008a438f1 d __tpstrtab_rpm_suspend
+ffffffc008a438fd d __tpstrtab_rpm_resume
+ffffffc008a43908 d __tpstrtab_rpm_idle
+ffffffc008a43911 d __tpstrtab_rpm_usage
+ffffffc008a4391b d __tpstrtab_rpm_return_int
+ffffffc008a4392a d __tpstrtab_xdp_exception
+ffffffc008a43938 d __tpstrtab_xdp_bulk_tx
+ffffffc008a43944 d __tpstrtab_xdp_redirect
+ffffffc008a43951 d __tpstrtab_xdp_redirect_err
+ffffffc008a43962 d __tpstrtab_xdp_redirect_map
+ffffffc008a43973 d __tpstrtab_xdp_redirect_map_err
+ffffffc008a43988 d __tpstrtab_xdp_cpumap_kthread
+ffffffc008a4399b d __tpstrtab_xdp_cpumap_enqueue
+ffffffc008a439ae d __tpstrtab_xdp_devmap_xmit
+ffffffc008a439be d __tpstrtab_mem_disconnect
+ffffffc008a439cd d __tpstrtab_mem_connect
+ffffffc008a439d9 d __tpstrtab_mem_return_failed
+ffffffc008a439eb d __tpstrtab_rseq_update
+ffffffc008a439f7 d __tpstrtab_rseq_ip_fixup
+ffffffc008a43a05 d __tpstrtab_mm_filemap_delete_from_page_cache
+ffffffc008a43a27 d __tpstrtab_mm_filemap_add_to_page_cache
+ffffffc008a43a44 d __tpstrtab_filemap_set_wb_err
+ffffffc008a43a57 d __tpstrtab_file_check_and_advance_wb_err
+ffffffc008a43a75 d __tpstrtab_oom_score_adj_update
+ffffffc008a43a8a d __tpstrtab_reclaim_retry_zone
+ffffffc008a43a9d d __tpstrtab_mark_victim
+ffffffc008a43aa9 d __tpstrtab_wake_reaper
+ffffffc008a43ab5 d __tpstrtab_start_task_reaping
+ffffffc008a43ac8 d __tpstrtab_finish_task_reaping
+ffffffc008a43adc d __tpstrtab_skip_task_reaping
+ffffffc008a43aee d __tpstrtab_compact_retry
+ffffffc008a43afc d __tpstrtab_mm_lru_insertion
+ffffffc008a43b0d d __tpstrtab_mm_lru_activate
+ffffffc008a43b1d d __tpstrtab_mm_vmscan_kswapd_sleep
+ffffffc008a43b34 d __tpstrtab_mm_vmscan_kswapd_wake
+ffffffc008a43b4a d __tpstrtab_mm_vmscan_wakeup_kswapd
+ffffffc008a43b62 d __tpstrtab_mm_vmscan_direct_reclaim_begin
+ffffffc008a43b81 d __tpstrtab_mm_vmscan_direct_reclaim_end
+ffffffc008a43b9e d __tpstrtab_mm_shrink_slab_start
+ffffffc008a43bb3 d __tpstrtab_mm_shrink_slab_end
+ffffffc008a43bc6 d __tpstrtab_mm_vmscan_lru_isolate
+ffffffc008a43bdc d __tpstrtab_mm_vmscan_write_folio
+ffffffc008a43bf2 d __tpstrtab_mm_vmscan_lru_shrink_inactive
+ffffffc008a43c10 d __tpstrtab_mm_vmscan_lru_shrink_active
+ffffffc008a43c2c d __tpstrtab_mm_vmscan_node_reclaim_begin
+ffffffc008a43c49 d __tpstrtab_mm_vmscan_node_reclaim_end
+ffffffc008a43c64 d __tpstrtab_mm_vmscan_throttled
+ffffffc008a43c78 d __tpstrtab_percpu_alloc_percpu
+ffffffc008a43c8c d __tpstrtab_percpu_free_percpu
+ffffffc008a43c9f d __tpstrtab_percpu_alloc_percpu_fail
+ffffffc008a43cb8 d __tpstrtab_percpu_create_chunk
+ffffffc008a43ccc d __tpstrtab_percpu_destroy_chunk
+ffffffc008a43ce1 d __tpstrtab_kmem_cache_alloc
+ffffffc008a43cf2 d __tpstrtab_kmalloc
+ffffffc008a43cfa d __tpstrtab_kfree
+ffffffc008a43d00 d __tpstrtab_kmem_cache_free
+ffffffc008a43d10 d __tpstrtab_mm_page_free
+ffffffc008a43d1d d __tpstrtab_mm_page_free_batched
+ffffffc008a43d32 d __tpstrtab_mm_page_alloc
+ffffffc008a43d40 d __tpstrtab_mm_page_alloc_zone_locked
+ffffffc008a43d5a d __tpstrtab_mm_page_pcpu_drain
+ffffffc008a43d6d d __tpstrtab_mm_page_alloc_extfrag
+ffffffc008a43d83 d __tpstrtab_rss_stat
+ffffffc008a43d8c d __tpstrtab_mm_compaction_isolate_migratepages
+ffffffc008a43daf d __tpstrtab_mm_compaction_isolate_freepages
+ffffffc008a43dcf d __tpstrtab_mm_compaction_migratepages
+ffffffc008a43dea d __tpstrtab_mm_compaction_begin
+ffffffc008a43dfe d __tpstrtab_mm_compaction_end
+ffffffc008a43e10 d __tpstrtab_mm_compaction_try_to_compact_pages
+ffffffc008a43e33 d __tpstrtab_mm_compaction_finished
+ffffffc008a43e4a d __tpstrtab_mm_compaction_suitable
+ffffffc008a43e61 d __tpstrtab_mm_compaction_deferred
+ffffffc008a43e78 d __tpstrtab_mm_compaction_defer_compaction
+ffffffc008a43e97 d __tpstrtab_mm_compaction_defer_reset
+ffffffc008a43eb1 d __tpstrtab_mm_compaction_kcompactd_sleep
+ffffffc008a43ecf d __tpstrtab_mm_compaction_wakeup_kcompactd
+ffffffc008a43eee d __tpstrtab_mm_compaction_kcompactd_wake
+ffffffc008a43f0b d __tpstrtab_mmap_lock_start_locking
+ffffffc008a43f23 d __tpstrtab_mmap_lock_released
+ffffffc008a43f36 d __tpstrtab_mmap_lock_acquire_returned
+ffffffc008a43f51 d __tpstrtab_vm_unmapped_area
+ffffffc008a43f62 d __tpstrtab_vma_mas_szero
+ffffffc008a43f70 d __tpstrtab_vma_store
+ffffffc008a43f7a d __tpstrtab_exit_mmap
+ffffffc008a43f84 d __tpstrtab_tlb_flush
+ffffffc008a43f8e d __tpstrtab_mm_migrate_pages
+ffffffc008a43f9f d __tpstrtab_mm_migrate_pages_start
+ffffffc008a43fb6 d __tpstrtab_set_migration_pte
+ffffffc008a43fc8 d __tpstrtab_remove_migration_pte
+ffffffc008a43fdd d __tpstrtab_hugepage_set_pmd
+ffffffc008a43fee d __tpstrtab_hugepage_update
+ffffffc008a43ffe d __tpstrtab_set_migration_pmd
+ffffffc008a44010 d __tpstrtab_remove_migration_pmd
+ffffffc008a44025 d __tpstrtab_mm_khugepaged_scan_pmd
+ffffffc008a4403c d __tpstrtab_mm_collapse_huge_page
+ffffffc008a44052 d __tpstrtab_mm_collapse_huge_page_isolate
+ffffffc008a44070 d __tpstrtab_mm_collapse_huge_page_swapin
+ffffffc008a4408d d __tpstrtab_mm_khugepaged_scan_file
+ffffffc008a440a5 d __tpstrtab_test_pages_isolated
+ffffffc008a440b9 d __tpstrtab_writeback_dirty_folio
+ffffffc008a440cf d __tpstrtab_folio_wait_writeback
+ffffffc008a440e4 d __tpstrtab_writeback_mark_inode_dirty
+ffffffc008a440ff d __tpstrtab_writeback_dirty_inode_start
+ffffffc008a4411b d __tpstrtab_writeback_dirty_inode
+ffffffc008a44131 d __tpstrtab_writeback_write_inode_start
+ffffffc008a4414d d __tpstrtab_writeback_write_inode
+ffffffc008a44163 d __tpstrtab_writeback_queue
+ffffffc008a44173 d __tpstrtab_writeback_exec
+ffffffc008a44182 d __tpstrtab_writeback_start
+ffffffc008a44192 d __tpstrtab_writeback_written
+ffffffc008a441a4 d __tpstrtab_writeback_wait
+ffffffc008a441b3 d __tpstrtab_writeback_pages_written
+ffffffc008a441cb d __tpstrtab_writeback_wake_background
+ffffffc008a441e5 d __tpstrtab_writeback_bdi_register
+ffffffc008a441fc d __tpstrtab_wbc_writepage
+ffffffc008a4420a d __tpstrtab_writeback_queue_io
+ffffffc008a4421d d __tpstrtab_global_dirty_state
+ffffffc008a44230 d __tpstrtab_bdi_dirty_ratelimit
+ffffffc008a44244 d __tpstrtab_balance_dirty_pages
+ffffffc008a44258 d __tpstrtab_writeback_sb_inodes_requeue
+ffffffc008a44274 d __tpstrtab_writeback_single_inode_start
+ffffffc008a44291 d __tpstrtab_writeback_single_inode
+ffffffc008a442a8 d __tpstrtab_writeback_lazytime
+ffffffc008a442bb d __tpstrtab_writeback_lazytime_iput
+ffffffc008a442d3 d __tpstrtab_writeback_dirty_inode_enqueue
+ffffffc008a442f1 d __tpstrtab_sb_mark_inode_writeback
+ffffffc008a44309 d __tpstrtab_sb_clear_inode_writeback
+ffffffc008a44322 d __tpstrtab_locks_get_lock_context
+ffffffc008a44339 d __tpstrtab_posix_lock_inode
+ffffffc008a4434a d __tpstrtab_fcntl_setlk
+ffffffc008a44356 d __tpstrtab_locks_remove_posix
+ffffffc008a44369 d __tpstrtab_flock_lock_inode
+ffffffc008a4437a d __tpstrtab_break_lease_noblock
+ffffffc008a4438e d __tpstrtab_break_lease_block
+ffffffc008a443a0 d __tpstrtab_break_lease_unblock
+ffffffc008a443b4 d __tpstrtab_generic_delete_lease
+ffffffc008a443c9 d __tpstrtab_time_out_leases
+ffffffc008a443d9 d __tpstrtab_generic_add_lease
+ffffffc008a443eb d __tpstrtab_leases_conflict
+ffffffc008a443fb d __tpstrtab_iomap_readpage
+ffffffc008a4440a d __tpstrtab_iomap_readahead
+ffffffc008a4441a d __tpstrtab_iomap_writepage
+ffffffc008a4442a d __tpstrtab_iomap_release_folio
+ffffffc008a4443e d __tpstrtab_iomap_invalidate_folio
+ffffffc008a44455 d __tpstrtab_iomap_dio_invalidate_fail
+ffffffc008a4446f d __tpstrtab_iomap_iter_dstmap
+ffffffc008a44481 d __tpstrtab_iomap_iter_srcmap
+ffffffc008a44493 d __tpstrtab_iomap_writepage_map
+ffffffc008a444a7 d __tpstrtab_iomap_iter
+ffffffc008a444b2 d __tpstrtab_ext4_other_inode_update_time
+ffffffc008a444cf d __tpstrtab_ext4_free_inode
+ffffffc008a444df d __tpstrtab_ext4_request_inode
+ffffffc008a444f2 d __tpstrtab_ext4_allocate_inode
+ffffffc008a44506 d __tpstrtab_ext4_evict_inode
+ffffffc008a44517 d __tpstrtab_ext4_drop_inode
+ffffffc008a44527 d __tpstrtab_ext4_nfs_commit_metadata
+ffffffc008a44540 d __tpstrtab_ext4_mark_inode_dirty
+ffffffc008a44556 d __tpstrtab_ext4_begin_ordered_truncate
+ffffffc008a44572 d __tpstrtab_ext4_write_begin
+ffffffc008a44583 d __tpstrtab_ext4_da_write_begin
+ffffffc008a44597 d __tpstrtab_ext4_write_end
+ffffffc008a445a6 d __tpstrtab_ext4_journalled_write_end
+ffffffc008a445c0 d __tpstrtab_ext4_da_write_end
+ffffffc008a445d2 d __tpstrtab_ext4_writepages
+ffffffc008a445e2 d __tpstrtab_ext4_da_write_pages
+ffffffc008a445f6 d __tpstrtab_ext4_da_write_pages_extent
+ffffffc008a44611 d __tpstrtab_ext4_writepages_result
+ffffffc008a44628 d __tpstrtab_ext4_writepage
+ffffffc008a44637 d __tpstrtab_ext4_readpage
+ffffffc008a44645 d __tpstrtab_ext4_releasepage
+ffffffc008a44656 d __tpstrtab_ext4_invalidate_folio
+ffffffc008a4466c d __tpstrtab_ext4_journalled_invalidate_folio
+ffffffc008a4468d d __tpstrtab_ext4_discard_blocks
+ffffffc008a446a1 d __tpstrtab_ext4_mb_new_inode_pa
+ffffffc008a446b6 d __tpstrtab_ext4_mb_new_group_pa
+ffffffc008a446cb d __tpstrtab_ext4_mb_release_inode_pa
+ffffffc008a446e4 d __tpstrtab_ext4_mb_release_group_pa
+ffffffc008a446fd d __tpstrtab_ext4_discard_preallocations
+ffffffc008a44719 d __tpstrtab_ext4_mb_discard_preallocations
+ffffffc008a44738 d __tpstrtab_ext4_request_blocks
+ffffffc008a4474c d __tpstrtab_ext4_allocate_blocks
+ffffffc008a44761 d __tpstrtab_ext4_free_blocks
+ffffffc008a44772 d __tpstrtab_ext4_sync_file_enter
+ffffffc008a44787 d __tpstrtab_ext4_sync_file_exit
+ffffffc008a4479b d __tpstrtab_ext4_sync_fs
+ffffffc008a447a8 d __tpstrtab_ext4_alloc_da_blocks
+ffffffc008a447bd d __tpstrtab_ext4_mballoc_alloc
+ffffffc008a447d0 d __tpstrtab_ext4_mballoc_prealloc
+ffffffc008a447e6 d __tpstrtab_ext4_mballoc_discard
+ffffffc008a447fb d __tpstrtab_ext4_mballoc_free
+ffffffc008a4480d d __tpstrtab_ext4_forget
+ffffffc008a44819 d __tpstrtab_ext4_da_update_reserve_space
+ffffffc008a44836 d __tpstrtab_ext4_da_reserve_space
+ffffffc008a4484c d __tpstrtab_ext4_da_release_space
+ffffffc008a44862 d __tpstrtab_ext4_mb_bitmap_load
+ffffffc008a44876 d __tpstrtab_ext4_mb_buddy_bitmap_load
+ffffffc008a44890 d __tpstrtab_ext4_load_inode_bitmap
+ffffffc008a448a7 d __tpstrtab_ext4_read_block_bitmap_load
+ffffffc008a448c3 d __tpstrtab_ext4_fallocate_enter
+ffffffc008a448d8 d __tpstrtab_ext4_punch_hole
+ffffffc008a448e8 d __tpstrtab_ext4_zero_range
+ffffffc008a448f8 d __tpstrtab_ext4_fallocate_exit
+ffffffc008a4490c d __tpstrtab_ext4_unlink_enter
+ffffffc008a4491e d __tpstrtab_ext4_unlink_exit
+ffffffc008a4492f d __tpstrtab_ext4_truncate_enter
+ffffffc008a44943 d __tpstrtab_ext4_truncate_exit
+ffffffc008a44956 d __tpstrtab_ext4_ext_convert_to_initialized_enter
+ffffffc008a4497c d __tpstrtab_ext4_ext_convert_to_initialized_fastpath
+ffffffc008a449a5 d __tpstrtab_ext4_ext_map_blocks_enter
+ffffffc008a449bf d __tpstrtab_ext4_ind_map_blocks_enter
+ffffffc008a449d9 d __tpstrtab_ext4_ext_map_blocks_exit
+ffffffc008a449f2 d __tpstrtab_ext4_ind_map_blocks_exit
+ffffffc008a44a0b d __tpstrtab_ext4_ext_load_extent
+ffffffc008a44a20 d __tpstrtab_ext4_load_inode
+ffffffc008a44a30 d __tpstrtab_ext4_journal_start
+ffffffc008a44a43 d __tpstrtab_ext4_journal_start_reserved
+ffffffc008a44a5f d __tpstrtab_ext4_trim_extent
+ffffffc008a44a70 d __tpstrtab_ext4_trim_all_free
+ffffffc008a44a83 d __tpstrtab_ext4_ext_handle_unwritten_extents
+ffffffc008a44aa5 d __tpstrtab_ext4_get_implied_cluster_alloc_exit
+ffffffc008a44ac9 d __tpstrtab_ext4_ext_show_extent
+ffffffc008a44ade d __tpstrtab_ext4_remove_blocks
+ffffffc008a44af1 d __tpstrtab_ext4_ext_rm_leaf
+ffffffc008a44b02 d __tpstrtab_ext4_ext_rm_idx
+ffffffc008a44b12 d __tpstrtab_ext4_ext_remove_space
+ffffffc008a44b28 d __tpstrtab_ext4_ext_remove_space_done
+ffffffc008a44b43 d __tpstrtab_ext4_es_insert_extent
+ffffffc008a44b59 d __tpstrtab_ext4_es_cache_extent
+ffffffc008a44b6e d __tpstrtab_ext4_es_remove_extent
+ffffffc008a44b84 d __tpstrtab_ext4_es_find_extent_range_enter
+ffffffc008a44ba4 d __tpstrtab_ext4_es_find_extent_range_exit
+ffffffc008a44bc3 d __tpstrtab_ext4_es_lookup_extent_enter
+ffffffc008a44bdf d __tpstrtab_ext4_es_lookup_extent_exit
+ffffffc008a44bfa d __tpstrtab_ext4_es_shrink_count
+ffffffc008a44c0f d __tpstrtab_ext4_es_shrink_scan_enter
+ffffffc008a44c29 d __tpstrtab_ext4_es_shrink_scan_exit
+ffffffc008a44c42 d __tpstrtab_ext4_collapse_range
+ffffffc008a44c56 d __tpstrtab_ext4_insert_range
+ffffffc008a44c68 d __tpstrtab_ext4_es_shrink
+ffffffc008a44c77 d __tpstrtab_ext4_es_insert_delayed_block
+ffffffc008a44c94 d __tpstrtab_ext4_fsmap_low_key
+ffffffc008a44ca7 d __tpstrtab_ext4_fsmap_high_key
+ffffffc008a44cbb d __tpstrtab_ext4_fsmap_mapping
+ffffffc008a44cce d __tpstrtab_ext4_getfsmap_low_key
+ffffffc008a44ce4 d __tpstrtab_ext4_getfsmap_high_key
+ffffffc008a44cfb d __tpstrtab_ext4_getfsmap_mapping
+ffffffc008a44d11 d __tpstrtab_ext4_shutdown
+ffffffc008a44d1f d __tpstrtab_ext4_error
+ffffffc008a44d2a d __tpstrtab_ext4_prefetch_bitmaps
+ffffffc008a44d40 d __tpstrtab_ext4_lazy_itable_init
+ffffffc008a44d56 d __tpstrtab_ext4_fc_replay_scan
+ffffffc008a44d6a d __tpstrtab_ext4_fc_replay
+ffffffc008a44d79 d __tpstrtab_ext4_fc_commit_start
+ffffffc008a44d8e d __tpstrtab_ext4_fc_commit_stop
+ffffffc008a44da2 d __tpstrtab_ext4_fc_stats
+ffffffc008a44db0 d __tpstrtab_ext4_fc_track_create
+ffffffc008a44dc5 d __tpstrtab_ext4_fc_track_link
+ffffffc008a44dd8 d __tpstrtab_ext4_fc_track_unlink
+ffffffc008a44ded d __tpstrtab_ext4_fc_track_inode
+ffffffc008a44e01 d __tpstrtab_ext4_fc_track_range
+ffffffc008a44e15 d __tpstrtab_ext4_fc_cleanup
+ffffffc008a44e25 d __tpstrtab_ext4_update_sb
+ffffffc008a44e34 d __tpstrtab_jbd2_checkpoint
+ffffffc008a44e44 d __tpstrtab_jbd2_start_commit
+ffffffc008a44e56 d __tpstrtab_jbd2_commit_locking
+ffffffc008a44e6a d __tpstrtab_jbd2_commit_flushing
+ffffffc008a44e7f d __tpstrtab_jbd2_commit_logging
+ffffffc008a44e93 d __tpstrtab_jbd2_drop_transaction
+ffffffc008a44ea9 d __tpstrtab_jbd2_end_commit
+ffffffc008a44eb9 d __tpstrtab_jbd2_submit_inode_data
+ffffffc008a44ed0 d __tpstrtab_jbd2_handle_start
+ffffffc008a44ee2 d __tpstrtab_jbd2_handle_restart
+ffffffc008a44ef6 d __tpstrtab_jbd2_handle_extend
+ffffffc008a44f09 d __tpstrtab_jbd2_handle_stats
+ffffffc008a44f1b d __tpstrtab_jbd2_run_stats
+ffffffc008a44f2a d __tpstrtab_jbd2_checkpoint_stats
+ffffffc008a44f40 d __tpstrtab_jbd2_update_log_tail
+ffffffc008a44f55 d __tpstrtab_jbd2_write_superblock
+ffffffc008a44f6b d __tpstrtab_jbd2_lock_buffer_stall
+ffffffc008a44f82 d __tpstrtab_jbd2_shrink_count
+ffffffc008a44f94 d __tpstrtab_jbd2_shrink_scan_enter
+ffffffc008a44fab d __tpstrtab_jbd2_shrink_scan_exit
+ffffffc008a44fc1 d __tpstrtab_jbd2_shrink_checkpoint_list
+ffffffc008a44fdd d __tpstrtab_erofs_lookup
+ffffffc008a44fea d __tpstrtab_erofs_fill_inode
+ffffffc008a44ffb d __tpstrtab_erofs_readpage
+ffffffc008a4500a d __tpstrtab_erofs_readpages
+ffffffc008a4501a d __tpstrtab_erofs_map_blocks_enter
+ffffffc008a45031 d __tpstrtab_z_erofs_map_blocks_iter_enter
+ffffffc008a4504f d __tpstrtab_erofs_map_blocks_exit
+ffffffc008a45065 d __tpstrtab_z_erofs_map_blocks_iter_exit
+ffffffc008a45082 d __tpstrtab_erofs_destroy_inode
+ffffffc008a45096 d __tpstrtab_selinux_audited
+ffffffc008a450a6 d __tpstrtab_block_touch_buffer
+ffffffc008a450b9 d __tpstrtab_block_dirty_buffer
+ffffffc008a450cc d __tpstrtab_block_rq_requeue
+ffffffc008a450dd d __tpstrtab_block_rq_complete
+ffffffc008a450ef d __tpstrtab_block_rq_error
+ffffffc008a450fe d __tpstrtab_block_rq_insert
+ffffffc008a4510e d __tpstrtab_block_rq_issue
+ffffffc008a4511d d __tpstrtab_block_rq_merge
+ffffffc008a4512c d __tpstrtab_block_bio_complete
+ffffffc008a4513f d __tpstrtab_block_bio_bounce
+ffffffc008a45150 d __tpstrtab_block_bio_backmerge
+ffffffc008a45164 d __tpstrtab_block_bio_frontmerge
+ffffffc008a45179 d __tpstrtab_block_bio_queue
+ffffffc008a45189 d __tpstrtab_block_getrq
+ffffffc008a45195 d __tpstrtab_block_plug
+ffffffc008a451a0 d __tpstrtab_block_unplug
+ffffffc008a451ad d __tpstrtab_block_split
+ffffffc008a451b9 d __tpstrtab_block_bio_remap
+ffffffc008a451c9 d __tpstrtab_block_rq_remap
+ffffffc008a451d8 d __tpstrtab_kyber_latency
+ffffffc008a451e6 d __tpstrtab_kyber_adjust
+ffffffc008a451f3 d __tpstrtab_kyber_throttled
+ffffffc008a45203 d __tpstrtab_io_uring_create
+ffffffc008a45213 d __tpstrtab_io_uring_register
+ffffffc008a45225 d __tpstrtab_io_uring_file_get
+ffffffc008a45237 d __tpstrtab_io_uring_queue_async_work
+ffffffc008a45251 d __tpstrtab_io_uring_defer
+ffffffc008a45260 d __tpstrtab_io_uring_link
+ffffffc008a4526e d __tpstrtab_io_uring_cqring_wait
+ffffffc008a45283 d __tpstrtab_io_uring_fail_link
+ffffffc008a45296 d __tpstrtab_io_uring_complete
+ffffffc008a452a8 d __tpstrtab_io_uring_submit_sqe
+ffffffc008a452bc d __tpstrtab_io_uring_poll_arm
+ffffffc008a452ce d __tpstrtab_io_uring_task_add
+ffffffc008a452e0 d __tpstrtab_io_uring_req_failed
+ffffffc008a452f4 d __tpstrtab_io_uring_cqe_overflow
+ffffffc008a4530a d __tpstrtab_io_uring_task_work_run
+ffffffc008a45321 d __tpstrtab_io_uring_short_write
+ffffffc008a45336 d __tpstrtab_io_uring_local_work_run
+ffffffc008a4534e d __tpstrtab_rwmmio_write
+ffffffc008a4535b d __tpstrtab_rwmmio_post_write
+ffffffc008a4536d d __tpstrtab_rwmmio_read
+ffffffc008a45379 d __tpstrtab_rwmmio_post_read
+ffffffc008a4538a d __tpstrtab_clk_enable
+ffffffc008a45395 d __tpstrtab_clk_enable_complete
+ffffffc008a453a9 d __tpstrtab_clk_disable
+ffffffc008a453b5 d __tpstrtab_clk_disable_complete
+ffffffc008a453ca d __tpstrtab_clk_prepare
+ffffffc008a453d6 d __tpstrtab_clk_prepare_complete
+ffffffc008a453eb d __tpstrtab_clk_unprepare
+ffffffc008a453f9 d __tpstrtab_clk_unprepare_complete
+ffffffc008a45410 d __tpstrtab_clk_set_rate
+ffffffc008a4541d d __tpstrtab_clk_set_rate_complete
+ffffffc008a45433 d __tpstrtab_clk_set_min_rate
+ffffffc008a45444 d __tpstrtab_clk_set_max_rate
+ffffffc008a45455 d __tpstrtab_clk_set_rate_range
+ffffffc008a45468 d __tpstrtab_clk_set_parent
+ffffffc008a45477 d __tpstrtab_clk_set_parent_complete
+ffffffc008a4548f d __tpstrtab_clk_set_phase
+ffffffc008a4549d d __tpstrtab_clk_set_phase_complete
+ffffffc008a454b4 d __tpstrtab_clk_set_duty_cycle
+ffffffc008a454c7 d __tpstrtab_clk_set_duty_cycle_complete
+ffffffc008a454e3 d __tpstrtab_add_device_to_group
+ffffffc008a454f7 d __tpstrtab_remove_device_from_group
+ffffffc008a45510 d __tpstrtab_attach_device_to_domain
+ffffffc008a45528 d __tpstrtab_detach_device_from_domain
+ffffffc008a45542 d __tpstrtab_map
+ffffffc008a45546 d __tpstrtab_unmap
+ffffffc008a4554c d __tpstrtab_io_page_fault
+ffffffc008a4555a d __tpstrtab_regmap_reg_write
+ffffffc008a4556b d __tpstrtab_regmap_reg_read
+ffffffc008a4557b d __tpstrtab_regmap_reg_read_cache
+ffffffc008a45591 d __tpstrtab_regmap_bulk_write
+ffffffc008a455a3 d __tpstrtab_regmap_bulk_read
+ffffffc008a455b4 d __tpstrtab_regmap_hw_read_start
+ffffffc008a455c9 d __tpstrtab_regmap_hw_read_done
+ffffffc008a455dd d __tpstrtab_regmap_hw_write_start
+ffffffc008a455f3 d __tpstrtab_regmap_hw_write_done
+ffffffc008a45608 d __tpstrtab_regcache_sync
+ffffffc008a45616 d __tpstrtab_regmap_cache_only
+ffffffc008a45628 d __tpstrtab_regmap_cache_bypass
+ffffffc008a4563c d __tpstrtab_regmap_async_write_start
+ffffffc008a45655 d __tpstrtab_regmap_async_io_complete
+ffffffc008a4566e d __tpstrtab_regmap_async_complete_start
+ffffffc008a4568a d __tpstrtab_regmap_async_complete_done
+ffffffc008a456a5 d __tpstrtab_regcache_drop_region
+ffffffc008a456ba d __tpstrtab_thermal_pressure_update
+ffffffc008a456d2 d __tpstrtab_devres_log
+ffffffc008a456dd d __tpstrtab_dma_fence_emit
+ffffffc008a456ec d __tpstrtab_dma_fence_init
+ffffffc008a456fb d __tpstrtab_dma_fence_destroy
+ffffffc008a4570d d __tpstrtab_dma_fence_enable_signal
+ffffffc008a45725 d __tpstrtab_dma_fence_signaled
+ffffffc008a45738 d __tpstrtab_dma_fence_wait_start
+ffffffc008a4574d d __tpstrtab_dma_fence_wait_end
+ffffffc008a45760 d __tpstrtab_rtc_set_time
+ffffffc008a4576d d __tpstrtab_rtc_read_time
+ffffffc008a4577b d __tpstrtab_rtc_set_alarm
+ffffffc008a45789 d __tpstrtab_rtc_read_alarm
+ffffffc008a45798 d __tpstrtab_rtc_irq_set_freq
+ffffffc008a457a9 d __tpstrtab_rtc_irq_set_state
+ffffffc008a457bb d __tpstrtab_rtc_alarm_irq_enable
+ffffffc008a457d0 d __tpstrtab_rtc_set_offset
+ffffffc008a457df d __tpstrtab_rtc_read_offset
+ffffffc008a457ef d __tpstrtab_rtc_timer_enqueue
+ffffffc008a45801 d __tpstrtab_rtc_timer_dequeue
+ffffffc008a45813 d __tpstrtab_rtc_timer_fired
+ffffffc008a45823 d __tpstrtab_watchdog_start
+ffffffc008a45832 d __tpstrtab_watchdog_ping
+ffffffc008a45840 d __tpstrtab_watchdog_stop
+ffffffc008a4584e d __tpstrtab_watchdog_set_timeout
+ffffffc008a45863 d __tpstrtab_scmi_fc_call
+ffffffc008a45870 d __tpstrtab_scmi_xfer_begin
+ffffffc008a45880 d __tpstrtab_scmi_xfer_response_wait
+ffffffc008a45898 d __tpstrtab_scmi_xfer_end
+ffffffc008a458a6 d __tpstrtab_scmi_rx_done
+ffffffc008a458b3 d __tpstrtab_scmi_msg_dump
+ffffffc008a458c1 d __tpstrtab_mc_event
+ffffffc008a458ca d __tpstrtab_arm_event
+ffffffc008a458d4 d __tpstrtab_non_standard_event
+ffffffc008a458e7 d __tpstrtab_aer_event
+ffffffc008a458f1 d __tpstrtab_kfree_skb
+ffffffc008a458fb d __tpstrtab_consume_skb
+ffffffc008a45907 d __tpstrtab_skb_copy_datagram_iovec
+ffffffc008a4591f d __tpstrtab_net_dev_start_xmit
+ffffffc008a45932 d __tpstrtab_net_dev_xmit
+ffffffc008a4593f d __tpstrtab_net_dev_xmit_timeout
+ffffffc008a45954 d __tpstrtab_net_dev_queue
+ffffffc008a45962 d __tpstrtab_netif_receive_skb
+ffffffc008a45974 d __tpstrtab_netif_rx
+ffffffc008a4597d d __tpstrtab_napi_gro_frags_entry
+ffffffc008a45992 d __tpstrtab_napi_gro_receive_entry
+ffffffc008a459a9 d __tpstrtab_netif_receive_skb_entry
+ffffffc008a459c1 d __tpstrtab_netif_receive_skb_list_entry
+ffffffc008a459de d __tpstrtab_netif_rx_entry
+ffffffc008a459ed d __tpstrtab_napi_gro_frags_exit
+ffffffc008a45a01 d __tpstrtab_napi_gro_receive_exit
+ffffffc008a45a17 d __tpstrtab_netif_receive_skb_exit
+ffffffc008a45a2e d __tpstrtab_netif_rx_exit
+ffffffc008a45a3c d __tpstrtab_netif_receive_skb_list_exit
+ffffffc008a45a58 d __tpstrtab_napi_poll
+ffffffc008a45a62 d __tpstrtab_sock_rcvqueue_full
+ffffffc008a45a75 d __tpstrtab_sock_exceed_buf_limit
+ffffffc008a45a8b d __tpstrtab_inet_sock_set_state
+ffffffc008a45a9f d __tpstrtab_inet_sk_error_report
+ffffffc008a45ab4 d __tpstrtab_udp_fail_queue_rcv_skb
+ffffffc008a45acb d __tpstrtab_tcp_retransmit_skb
+ffffffc008a45ade d __tpstrtab_tcp_send_reset
+ffffffc008a45aed d __tpstrtab_tcp_receive_reset
+ffffffc008a45aff d __tpstrtab_tcp_destroy_sock
+ffffffc008a45b10 d __tpstrtab_tcp_rcv_space_adjust
+ffffffc008a45b25 d __tpstrtab_tcp_retransmit_synack
+ffffffc008a45b3b d __tpstrtab_tcp_probe
+ffffffc008a45b45 d __tpstrtab_tcp_bad_csum
+ffffffc008a45b52 d __tpstrtab_tcp_cong_state_set
+ffffffc008a45b65 d __tpstrtab_fib_table_lookup
+ffffffc008a45b76 d __tpstrtab_qdisc_dequeue
+ffffffc008a45b84 d __tpstrtab_qdisc_enqueue
+ffffffc008a45b92 d __tpstrtab_qdisc_reset
+ffffffc008a45b9e d __tpstrtab_qdisc_destroy
+ffffffc008a45bac d __tpstrtab_qdisc_create
+ffffffc008a45bb9 d __tpstrtab_br_fdb_add
+ffffffc008a45bc4 d __tpstrtab_br_fdb_external_learn_add
+ffffffc008a45bde d __tpstrtab_fdb_delete
+ffffffc008a45be9 d __tpstrtab_br_fdb_update
+ffffffc008a45bf7 d __tpstrtab_neigh_create
+ffffffc008a45c04 d __tpstrtab_neigh_update
+ffffffc008a45c11 d __tpstrtab_neigh_update_done
+ffffffc008a45c23 d __tpstrtab_neigh_timer_handler
+ffffffc008a45c37 d __tpstrtab_neigh_event_send_done
+ffffffc008a45c4d d __tpstrtab_neigh_event_send_dead
+ffffffc008a45c63 d __tpstrtab_neigh_cleanup_and_release
+ffffffc008a45c7d d __tpstrtab_netlink_extack
+ffffffc008a45c8c d __tpstrtab_fib6_table_lookup
+ffffffc008a45c9e d __tpstrtab_virtio_transport_alloc_pkt
+ffffffc008a45cb9 d __tpstrtab_virtio_transport_recv_pkt
+ffffffc008a45cd3 d __tpstrtab_ma_op
+ffffffc008a45cd9 d __tpstrtab_ma_read
+ffffffc008a45ce1 d __tpstrtab_ma_write
+ffffffc008a45cf0 R __start_pci_fixups_early
+ffffffc008a462b0 R __end_pci_fixups_early
+ffffffc008a462b0 R __start_pci_fixups_header
+ffffffc008a47070 R __end_pci_fixups_header
+ffffffc008a47070 R __start_pci_fixups_final
+ffffffc008a481e0 R __end_pci_fixups_final
+ffffffc008a481e0 R __start_pci_fixups_enable
+ffffffc008a48230 R __end_pci_fixups_enable
+ffffffc008a48230 R __start_pci_fixups_resume
+ffffffc008a482c0 R __end_pci_fixups_resume
+ffffffc008a482c0 R __start_pci_fixups_resume_early
+ffffffc008a48450 R __end_pci_fixups_resume_early
+ffffffc008a48450 R __start_pci_fixups_suspend
+ffffffc008a48460 R __end_builtin_fw
+ffffffc008a48460 R __end_pci_fixups_suspend
+ffffffc008a48460 R __end_pci_fixups_suspend_late
+ffffffc008a48460 r __ksymtab_I_BDEV
+ffffffc008a48460 R __start___ksymtab
+ffffffc008a48460 R __start_builtin_fw
+ffffffc008a48460 R __start_pci_fixups_suspend_late
+ffffffc008a4846c r __ksymtab_LZ4_compress_default
+ffffffc008a48478 r __ksymtab_LZ4_compress_destSize
+ffffffc008a48484 r __ksymtab_LZ4_compress_fast
+ffffffc008a48490 r __ksymtab_LZ4_compress_fast_continue
+ffffffc008a4849c r __ksymtab_LZ4_decompress_fast
+ffffffc008a484a8 r __ksymtab_LZ4_decompress_fast_continue
+ffffffc008a484b4 r __ksymtab_LZ4_decompress_fast_usingDict
+ffffffc008a484c0 r __ksymtab_LZ4_decompress_safe
+ffffffc008a484cc r __ksymtab_LZ4_decompress_safe_continue
+ffffffc008a484d8 r __ksymtab_LZ4_decompress_safe_partial
+ffffffc008a484e4 r __ksymtab_LZ4_decompress_safe_usingDict
+ffffffc008a484f0 r __ksymtab_LZ4_loadDict
+ffffffc008a484fc r __ksymtab_LZ4_saveDict
+ffffffc008a48508 r __ksymtab_LZ4_setStreamDecode
+ffffffc008a48514 r __ksymtab_PageMovable
+ffffffc008a48520 r __ksymtab___ClearPageMovable
+ffffffc008a4852c r __ksymtab___SCK__tp_func_dma_fence_emit
+ffffffc008a48538 r __ksymtab___SCK__tp_func_dma_fence_enable_signal
+ffffffc008a48544 r __ksymtab___SCK__tp_func_dma_fence_signaled
+ffffffc008a48550 r __ksymtab___SCK__tp_func_kfree
+ffffffc008a4855c r __ksymtab___SCK__tp_func_kmalloc
+ffffffc008a48568 r __ksymtab___SCK__tp_func_kmem_cache_alloc
+ffffffc008a48574 r __ksymtab___SCK__tp_func_kmem_cache_free
+ffffffc008a48580 r __ksymtab___SCK__tp_func_mmap_lock_acquire_returned
+ffffffc008a4858c r __ksymtab___SCK__tp_func_mmap_lock_released
+ffffffc008a48598 r __ksymtab___SCK__tp_func_mmap_lock_start_locking
+ffffffc008a485a4 r __ksymtab___SetPageMovable
+ffffffc008a485b0 r __ksymtab____pskb_trim
+ffffffc008a485bc r __ksymtab____ratelimit
+ffffffc008a485c8 r __ksymtab___alloc_bucket_spinlocks
+ffffffc008a485d4 r __ksymtab___alloc_pages
+ffffffc008a485e0 r __ksymtab___alloc_skb
+ffffffc008a485ec r __ksymtab___arch_clear_user
+ffffffc008a485f8 r __ksymtab___arch_copy_from_user
+ffffffc008a48604 r __ksymtab___arch_copy_to_user
+ffffffc008a48610 r __ksymtab___arm_smccc_hvc
+ffffffc008a4861c r __ksymtab___arm_smccc_smc
+ffffffc008a48628 r __ksymtab___arm_smccc_sve_check
+ffffffc008a48634 r __ksymtab___ashlti3
+ffffffc008a48640 r __ksymtab___ashrti3
+ffffffc008a4864c r __ksymtab___bforget
+ffffffc008a48658 r __ksymtab___bh_read
+ffffffc008a48664 r __ksymtab___bh_read_batch
+ffffffc008a48670 r __ksymtab___bio_advance
+ffffffc008a4867c r __ksymtab___bitmap_and
+ffffffc008a48688 r __ksymtab___bitmap_andnot
+ffffffc008a48694 r __ksymtab___bitmap_clear
+ffffffc008a486a0 r __ksymtab___bitmap_complement
+ffffffc008a486ac r __ksymtab___bitmap_equal
+ffffffc008a486b8 r __ksymtab___bitmap_intersects
+ffffffc008a486c4 r __ksymtab___bitmap_or
+ffffffc008a486d0 r __ksymtab___bitmap_replace
+ffffffc008a486dc r __ksymtab___bitmap_set
+ffffffc008a486e8 r __ksymtab___bitmap_shift_left
+ffffffc008a486f4 r __ksymtab___bitmap_shift_right
+ffffffc008a48700 r __ksymtab___bitmap_subset
+ffffffc008a4870c r __ksymtab___bitmap_weight
+ffffffc008a48718 r __ksymtab___bitmap_weight_and
+ffffffc008a48724 r __ksymtab___bitmap_xor
+ffffffc008a48730 r __ksymtab___blk_alloc_disk
+ffffffc008a4873c r __ksymtab___blk_mq_alloc_disk
+ffffffc008a48748 r __ksymtab___blk_mq_end_request
+ffffffc008a48754 r __ksymtab___blk_rq_map_sg
+ffffffc008a48760 r __ksymtab___blkdev_issue_discard
+ffffffc008a4876c r __ksymtab___blkdev_issue_zeroout
+ffffffc008a48778 r __ksymtab___block_write_begin
+ffffffc008a48784 r __ksymtab___block_write_full_page
+ffffffc008a48790 r __ksymtab___blockdev_direct_IO
+ffffffc008a4879c r __ksymtab___bread_gfp
+ffffffc008a487a8 r __ksymtab___breadahead
+ffffffc008a487b4 r __ksymtab___break_lease
+ffffffc008a487c0 r __ksymtab___brelse
+ffffffc008a487cc r __ksymtab___cap_empty_set
+ffffffc008a487d8 r __ksymtab___check_object_size
+ffffffc008a487e4 r __ksymtab___check_sticky
+ffffffc008a487f0 r __ksymtab___clzdi2
+ffffffc008a487fc r __ksymtab___clzsi2
+ffffffc008a48808 r __ksymtab___cond_resched_lock
+ffffffc008a48814 r __ksymtab___cond_resched_rwlock_read
+ffffffc008a48820 r __ksymtab___cond_resched_rwlock_write
+ffffffc008a4882c r __ksymtab___const_udelay
+ffffffc008a48838 r __ksymtab___copy_overflow
+ffffffc008a48844 r __ksymtab___cpu_active_mask
+ffffffc008a48850 r __ksymtab___cpu_dying_mask
+ffffffc008a4885c r __ksymtab___cpu_online_mask
+ffffffc008a48868 r __ksymtab___cpu_possible_mask
+ffffffc008a48874 r __ksymtab___cpu_present_mask
+ffffffc008a48880 r __ksymtab___cpuhp_remove_state
+ffffffc008a4888c r __ksymtab___cpuhp_remove_state_cpuslocked
+ffffffc008a48898 r __ksymtab___cpuhp_setup_state
+ffffffc008a488a4 r __ksymtab___cpuhp_setup_state_cpuslocked
+ffffffc008a488b0 r __ksymtab___crc32c_le
+ffffffc008a488bc r __ksymtab___crc32c_le_shift
+ffffffc008a488c8 r __ksymtab___crypto_memneq
+ffffffc008a488d4 r __ksymtab___ctzdi2
+ffffffc008a488e0 r __ksymtab___ctzsi2
+ffffffc008a488ec r __ksymtab___d_drop
+ffffffc008a488f8 r __ksymtab___d_lookup_unhash_wake
+ffffffc008a48904 r __ksymtab___dec_node_page_state
+ffffffc008a48910 r __ksymtab___dec_zone_page_state
+ffffffc008a4891c r __ksymtab___delay
+ffffffc008a48928 r __ksymtab___destroy_inode
+ffffffc008a48934 r __ksymtab___dev_direct_xmit
+ffffffc008a48940 r __ksymtab___dev_get_by_flags
+ffffffc008a4894c r __ksymtab___dev_get_by_index
+ffffffc008a48958 r __ksymtab___dev_get_by_name
+ffffffc008a48964 r __ksymtab___dev_kfree_skb_any
+ffffffc008a48970 r __ksymtab___dev_kfree_skb_irq
+ffffffc008a4897c r __ksymtab___dev_queue_xmit
+ffffffc008a48988 r __ksymtab___dev_remove_pack
+ffffffc008a48994 r __ksymtab___dev_set_mtu
+ffffffc008a489a0 r __ksymtab___devm_release_region
+ffffffc008a489ac r __ksymtab___devm_request_region
+ffffffc008a489b8 r __ksymtab___do_once_done
+ffffffc008a489c4 r __ksymtab___do_once_sleepable_done
+ffffffc008a489d0 r __ksymtab___do_once_sleepable_start
+ffffffc008a489dc r __ksymtab___do_once_start
+ffffffc008a489e8 r __ksymtab___dst_destroy_metrics_generic
+ffffffc008a489f4 r __ksymtab___dynamic_dev_dbg
+ffffffc008a48a00 r __ksymtab___dynamic_netdev_dbg
+ffffffc008a48a0c r __ksymtab___dynamic_pr_debug
+ffffffc008a48a18 r __ksymtab___ethtool_get_link_ksettings
+ffffffc008a48a24 r __ksymtab___f_setown
+ffffffc008a48a30 r __ksymtab___fdget
+ffffffc008a48a3c r __ksymtab___fib6_flush_trees
+ffffffc008a48a48 r __ksymtab___filemap_get_folio
+ffffffc008a48a54 r __ksymtab___filemap_set_wb_err
+ffffffc008a48a60 r __ksymtab___find_get_block
+ffffffc008a48a6c r __ksymtab___find_nth_and_bit
+ffffffc008a48a78 r __ksymtab___find_nth_andnot_bit
+ffffffc008a48a84 r __ksymtab___find_nth_bit
+ffffffc008a48a90 r __ksymtab___flush_workqueue
+ffffffc008a48a9c r __ksymtab___folio_alloc
+ffffffc008a48aa8 r __ksymtab___folio_cancel_dirty
+ffffffc008a48ab4 r __ksymtab___folio_lock
+ffffffc008a48ac0 r __ksymtab___folio_put
+ffffffc008a48acc r __ksymtab___folio_start_writeback
+ffffffc008a48ad8 r __ksymtab___fput_sync
+ffffffc008a48ae4 r __ksymtab___free_pages
+ffffffc008a48af0 r __ksymtab___fs_parse
+ffffffc008a48afc r __ksymtab___generic_file_fsync
+ffffffc008a48b08 r __ksymtab___generic_file_write_iter
+ffffffc008a48b14 r __ksymtab___genradix_free
+ffffffc008a48b20 r __ksymtab___genradix_iter_peek
+ffffffc008a48b2c r __ksymtab___genradix_prealloc
+ffffffc008a48b38 r __ksymtab___genradix_ptr
+ffffffc008a48b44 r __ksymtab___genradix_ptr_alloc
+ffffffc008a48b50 r __ksymtab___get_free_pages
+ffffffc008a48b5c r __ksymtab___get_hash_from_flowi6
+ffffffc008a48b68 r __ksymtab___get_random_u32_below
+ffffffc008a48b74 r __ksymtab___getblk_gfp
+ffffffc008a48b80 r __ksymtab___hsiphash_unaligned
+ffffffc008a48b8c r __ksymtab___hw_addr_init
+ffffffc008a48b98 r __ksymtab___hw_addr_ref_sync_dev
+ffffffc008a48ba4 r __ksymtab___hw_addr_ref_unsync_dev
+ffffffc008a48bb0 r __ksymtab___hw_addr_sync
+ffffffc008a48bbc r __ksymtab___hw_addr_sync_dev
+ffffffc008a48bc8 r __ksymtab___hw_addr_unsync
+ffffffc008a48bd4 r __ksymtab___hw_addr_unsync_dev
+ffffffc008a48be0 r __ksymtab___icmp_send
+ffffffc008a48bec r __ksymtab___inc_node_page_state
+ffffffc008a48bf8 r __ksymtab___inc_zone_page_state
+ffffffc008a48c04 r __ksymtab___inet6_lookup_established
+ffffffc008a48c10 r __ksymtab___inet_hash
+ffffffc008a48c1c r __ksymtab___inet_stream_connect
+ffffffc008a48c28 r __ksymtab___init_rwsem
+ffffffc008a48c34 r __ksymtab___init_swait_queue_head
+ffffffc008a48c40 r __ksymtab___init_waitqueue_head
+ffffffc008a48c4c r __ksymtab___inode_add_bytes
+ffffffc008a48c58 r __ksymtab___inode_sub_bytes
+ffffffc008a48c64 r __ksymtab___insert_inode_hash
+ffffffc008a48c70 r __ksymtab___invalidate_device
+ffffffc008a48c7c r __ksymtab___ip4_datagram_connect
+ffffffc008a48c88 r __ksymtab___ip_dev_find
+ffffffc008a48c94 r __ksymtab___ip_mc_dec_group
+ffffffc008a48ca0 r __ksymtab___ip_mc_inc_group
+ffffffc008a48cac r __ksymtab___ip_options_compile
+ffffffc008a48cb8 r __ksymtab___ip_queue_xmit
+ffffffc008a48cc4 r __ksymtab___ip_select_ident
+ffffffc008a48cd0 r __ksymtab___ipv6_addr_type
+ffffffc008a48cdc r __ksymtab___irq_regs
+ffffffc008a48ce8 r __ksymtab___kasan_kmalloc
+ffffffc008a48cf4 r __ksymtab___kfifo_alloc
+ffffffc008a48d00 r __ksymtab___kfifo_dma_in_finish_r
+ffffffc008a48d0c r __ksymtab___kfifo_dma_in_prepare
+ffffffc008a48d18 r __ksymtab___kfifo_dma_in_prepare_r
+ffffffc008a48d24 r __ksymtab___kfifo_dma_out_finish_r
+ffffffc008a48d30 r __ksymtab___kfifo_dma_out_prepare
+ffffffc008a48d3c r __ksymtab___kfifo_dma_out_prepare_r
+ffffffc008a48d48 r __ksymtab___kfifo_free
+ffffffc008a48d54 r __ksymtab___kfifo_from_user
+ffffffc008a48d60 r __ksymtab___kfifo_from_user_r
+ffffffc008a48d6c r __ksymtab___kfifo_in
+ffffffc008a48d78 r __ksymtab___kfifo_in_r
+ffffffc008a48d84 r __ksymtab___kfifo_init
+ffffffc008a48d90 r __ksymtab___kfifo_len_r
+ffffffc008a48d9c r __ksymtab___kfifo_max_r
+ffffffc008a48da8 r __ksymtab___kfifo_out
+ffffffc008a48db4 r __ksymtab___kfifo_out_peek
+ffffffc008a48dc0 r __ksymtab___kfifo_out_peek_r
+ffffffc008a48dcc r __ksymtab___kfifo_out_r
+ffffffc008a48dd8 r __ksymtab___kfifo_skip_r
+ffffffc008a48de4 r __ksymtab___kfifo_to_user
+ffffffc008a48df0 r __ksymtab___kfifo_to_user_r
+ffffffc008a48dfc r __ksymtab___kfree_skb
+ffffffc008a48e08 r __ksymtab___kmalloc
+ffffffc008a48e14 r __ksymtab___kmalloc_node
+ffffffc008a48e20 r __ksymtab___kmalloc_node_track_caller
+ffffffc008a48e2c r __ksymtab___list_add_valid
+ffffffc008a48e38 r __ksymtab___list_del_entry_valid
+ffffffc008a48e44 r __ksymtab___local_bh_enable_ip
+ffffffc008a48e50 r __ksymtab___lock_buffer
+ffffffc008a48e5c r __ksymtab___lock_sock_fast
+ffffffc008a48e68 r __ksymtab___lshrti3
+ffffffc008a48e74 r __ksymtab___mark_inode_dirty
+ffffffc008a48e80 r __ksymtab___mb_cache_entry_free
+ffffffc008a48e8c r __ksymtab___memcpy
+ffffffc008a48e98 r __ksymtab___memcpy_fromio
+ffffffc008a48ea4 r __ksymtab___memcpy_toio
+ffffffc008a48eb0 r __ksymtab___memmove
+ffffffc008a48ebc r __ksymtab___memset
+ffffffc008a48ec8 r __ksymtab___memset_io
+ffffffc008a48ed4 r __ksymtab___mmap_lock_do_trace_acquire_returned
+ffffffc008a48ee0 r __ksymtab___mmap_lock_do_trace_released
+ffffffc008a48eec r __ksymtab___mmap_lock_do_trace_start_locking
+ffffffc008a48ef8 r __ksymtab___mod_node_page_state
+ffffffc008a48f04 r __ksymtab___mod_zone_page_state
+ffffffc008a48f10 r __ksymtab___module_put_and_kthread_exit
+ffffffc008a48f1c r __ksymtab___msecs_to_jiffies
+ffffffc008a48f28 r __ksymtab___mutex_init
+ffffffc008a48f34 r __ksymtab___napi_alloc_frag_align
+ffffffc008a48f40 r __ksymtab___napi_alloc_skb
+ffffffc008a48f4c r __ksymtab___napi_schedule
+ffffffc008a48f58 r __ksymtab___napi_schedule_irqoff
+ffffffc008a48f64 r __ksymtab___ndelay
+ffffffc008a48f70 r __ksymtab___neigh_create
+ffffffc008a48f7c r __ksymtab___neigh_event_send
+ffffffc008a48f88 r __ksymtab___neigh_for_each_release
+ffffffc008a48f94 r __ksymtab___neigh_set_probe_once
+ffffffc008a48fa0 r __ksymtab___netdev_alloc_frag_align
+ffffffc008a48fac r __ksymtab___netdev_alloc_skb
+ffffffc008a48fb8 r __ksymtab___netdev_notify_peers
+ffffffc008a48fc4 r __ksymtab___netif_napi_del
+ffffffc008a48fd0 r __ksymtab___netif_rx
+ffffffc008a48fdc r __ksymtab___netif_schedule
+ffffffc008a48fe8 r __ksymtab___netlink_dump_start
+ffffffc008a48ff4 r __ksymtab___netlink_kernel_create
+ffffffc008a49000 r __ksymtab___netlink_ns_capable
+ffffffc008a4900c r __ksymtab___nla_parse
+ffffffc008a49018 r __ksymtab___nla_put
+ffffffc008a49024 r __ksymtab___nla_put_64bit
+ffffffc008a49030 r __ksymtab___nla_put_nohdr
+ffffffc008a4903c r __ksymtab___nla_reserve
+ffffffc008a49048 r __ksymtab___nla_reserve_64bit
+ffffffc008a49054 r __ksymtab___nla_reserve_nohdr
+ffffffc008a49060 r __ksymtab___nla_validate
+ffffffc008a4906c r __ksymtab___nlmsg_put
+ffffffc008a49078 r __ksymtab___num_online_cpus
+ffffffc008a49084 r __ksymtab___of_get_address
+ffffffc008a49090 r __ksymtab___of_parse_phandle_with_args
+ffffffc008a4909c r __ksymtab___page_frag_cache_drain
+ffffffc008a490a8 r __ksymtab___pagevec_release
+ffffffc008a490b4 r __ksymtab___pci_register_driver
+ffffffc008a490c0 r __ksymtab___per_cpu_offset
+ffffffc008a490cc r __ksymtab___percpu_counter_compare
+ffffffc008a490d8 r __ksymtab___percpu_counter_init
+ffffffc008a490e4 r __ksymtab___percpu_counter_sum
+ffffffc008a490f0 r __ksymtab___posix_acl_chmod
+ffffffc008a490fc r __ksymtab___posix_acl_create
+ffffffc008a49108 r __ksymtab___printk_cpu_sync_put
+ffffffc008a49114 r __ksymtab___printk_cpu_sync_try_get
+ffffffc008a49120 r __ksymtab___printk_cpu_sync_wait
+ffffffc008a4912c r __ksymtab___printk_ratelimit
+ffffffc008a49138 r __ksymtab___pskb_copy_fclone
+ffffffc008a49144 r __ksymtab___pskb_pull_tail
+ffffffc008a49150 r __ksymtab___put_cred
+ffffffc008a4915c r __ksymtab___rb_erase_color
+ffffffc008a49168 r __ksymtab___rb_insert_augmented
+ffffffc008a49174 r __ksymtab___refrigerator
+ffffffc008a49180 r __ksymtab___register_binfmt
+ffffffc008a4918c r __ksymtab___register_blkdev
+ffffffc008a49198 r __ksymtab___register_chrdev
+ffffffc008a491a4 r __ksymtab___release_region
+ffffffc008a491b0 r __ksymtab___remove_inode_hash
+ffffffc008a491bc r __ksymtab___request_module
+ffffffc008a491c8 r __ksymtab___request_region
+ffffffc008a491d4 r __ksymtab___scm_destroy
+ffffffc008a491e0 r __ksymtab___scm_send
+ffffffc008a491ec r __ksymtab___seq_open_private
+ffffffc008a491f8 r __ksymtab___serio_register_driver
+ffffffc008a49204 r __ksymtab___serio_register_port
+ffffffc008a49210 r __ksymtab___set_page_dirty_nobuffers
+ffffffc008a4921c r __ksymtab___sg_alloc_table
+ffffffc008a49228 r __ksymtab___sg_free_table
+ffffffc008a49234 r __ksymtab___sg_page_iter_dma_next
+ffffffc008a49240 r __ksymtab___sg_page_iter_next
+ffffffc008a4924c r __ksymtab___sg_page_iter_start
+ffffffc008a49258 r __ksymtab___siphash_unaligned
+ffffffc008a49264 r __ksymtab___sk_backlog_rcv
+ffffffc008a49270 r __ksymtab___sk_dst_check
+ffffffc008a4927c r __ksymtab___sk_mem_reclaim
+ffffffc008a49288 r __ksymtab___sk_mem_schedule
+ffffffc008a49294 r __ksymtab___sk_queue_drop_skb
+ffffffc008a492a0 r __ksymtab___sk_receive_skb
+ffffffc008a492ac r __ksymtab___skb_checksum
+ffffffc008a492b8 r __ksymtab___skb_checksum_complete
+ffffffc008a492c4 r __ksymtab___skb_checksum_complete_head
+ffffffc008a492d0 r __ksymtab___skb_ext_del
+ffffffc008a492dc r __ksymtab___skb_ext_put
+ffffffc008a492e8 r __ksymtab___skb_flow_dissect
+ffffffc008a492f4 r __ksymtab___skb_flow_get_ports
+ffffffc008a49300 r __ksymtab___skb_free_datagram_locked
+ffffffc008a4930c r __ksymtab___skb_get_hash
+ffffffc008a49318 r __ksymtab___skb_gro_checksum_complete
+ffffffc008a49324 r __ksymtab___skb_gso_segment
+ffffffc008a49330 r __ksymtab___skb_pad
+ffffffc008a4933c r __ksymtab___skb_recv_datagram
+ffffffc008a49348 r __ksymtab___skb_recv_udp
+ffffffc008a49354 r __ksymtab___skb_try_recv_datagram
+ffffffc008a49360 r __ksymtab___skb_vlan_pop
+ffffffc008a4936c r __ksymtab___skb_wait_for_more_packets
+ffffffc008a49378 r __ksymtab___skb_warn_lro_forwarding
+ffffffc008a49384 r __ksymtab___sock_cmsg_send
+ffffffc008a49390 r __ksymtab___sock_create
+ffffffc008a4939c r __ksymtab___sock_queue_rcv_skb
+ffffffc008a493a8 r __ksymtab___sock_tx_timestamp
+ffffffc008a493b4 r __ksymtab___splice_from_pipe
+ffffffc008a493c0 r __ksymtab___stack_chk_fail
+ffffffc008a493cc r __ksymtab___sw_hweight16
+ffffffc008a493d8 r __ksymtab___sw_hweight32
+ffffffc008a493e4 r __ksymtab___sw_hweight64
+ffffffc008a493f0 r __ksymtab___sw_hweight8
+ffffffc008a493fc r __ksymtab___sync_dirty_buffer
+ffffffc008a49408 r __ksymtab___sysfs_match_string
+ffffffc008a49414 r __ksymtab___task_pid_nr_ns
+ffffffc008a49420 r __ksymtab___tasklet_hi_schedule
+ffffffc008a4942c r __ksymtab___tasklet_schedule
+ffffffc008a49438 r __ksymtab___traceiter_dma_fence_emit
+ffffffc008a49444 r __ksymtab___traceiter_dma_fence_enable_signal
+ffffffc008a49450 r __ksymtab___traceiter_dma_fence_signaled
+ffffffc008a4945c r __ksymtab___traceiter_kfree
+ffffffc008a49468 r __ksymtab___traceiter_kmalloc
+ffffffc008a49474 r __ksymtab___traceiter_kmem_cache_alloc
+ffffffc008a49480 r __ksymtab___traceiter_kmem_cache_free
+ffffffc008a4948c r __ksymtab___traceiter_mmap_lock_acquire_returned
+ffffffc008a49498 r __ksymtab___traceiter_mmap_lock_released
+ffffffc008a494a4 r __ksymtab___traceiter_mmap_lock_start_locking
+ffffffc008a494b0 r __ksymtab___tracepoint_dma_fence_emit
+ffffffc008a494bc r __ksymtab___tracepoint_dma_fence_enable_signal
+ffffffc008a494c8 r __ksymtab___tracepoint_dma_fence_signaled
+ffffffc008a494d4 r __ksymtab___tracepoint_kfree
+ffffffc008a494e0 r __ksymtab___tracepoint_kmalloc
+ffffffc008a494ec r __ksymtab___tracepoint_kmem_cache_alloc
+ffffffc008a494f8 r __ksymtab___tracepoint_kmem_cache_free
+ffffffc008a49504 r __ksymtab___tracepoint_mmap_lock_acquire_returned
+ffffffc008a49510 r __ksymtab___tracepoint_mmap_lock_released
+ffffffc008a4951c r __ksymtab___tracepoint_mmap_lock_start_locking
+ffffffc008a49528 r __ksymtab___tty_alloc_driver
+ffffffc008a49534 r __ksymtab___tty_insert_flip_char
+ffffffc008a49540 r __ksymtab___udelay
+ffffffc008a4954c r __ksymtab___udp_disconnect
+ffffffc008a49558 r __ksymtab___unregister_chrdev
+ffffffc008a49564 r __ksymtab___usecs_to_jiffies
+ffffffc008a49570 r __ksymtab___var_waitqueue
+ffffffc008a4957c r __ksymtab___vcalloc
+ffffffc008a49588 r __ksymtab___vfs_getxattr
+ffffffc008a49594 r __ksymtab___vfs_removexattr
+ffffffc008a495a0 r __ksymtab___vfs_setxattr
+ffffffc008a495ac r __ksymtab___vmalloc
+ffffffc008a495b8 r __ksymtab___vmalloc_array
+ffffffc008a495c4 r __ksymtab___wait_on_bit
+ffffffc008a495d0 r __ksymtab___wait_on_bit_lock
+ffffffc008a495dc r __ksymtab___wait_on_buffer
+ffffffc008a495e8 r __ksymtab___wake_up
+ffffffc008a495f4 r __ksymtab___wake_up_bit
+ffffffc008a49600 r __ksymtab___warn_flushing_systemwide_wq
+ffffffc008a4960c r __ksymtab___warn_printk
+ffffffc008a49618 r __ksymtab___xa_alloc
+ffffffc008a49624 r __ksymtab___xa_alloc_cyclic
+ffffffc008a49630 r __ksymtab___xa_clear_mark
+ffffffc008a4963c r __ksymtab___xa_cmpxchg
+ffffffc008a49648 r __ksymtab___xa_erase
+ffffffc008a49654 r __ksymtab___xa_insert
+ffffffc008a49660 r __ksymtab___xa_set_mark
+ffffffc008a4966c r __ksymtab___xa_store
+ffffffc008a49678 r __ksymtab___xfrm_decode_session
+ffffffc008a49684 r __ksymtab___xfrm_dst_lookup
+ffffffc008a49690 r __ksymtab___xfrm_init_state
+ffffffc008a4969c r __ksymtab___xfrm_policy_check
+ffffffc008a496a8 r __ksymtab___xfrm_route_forward
+ffffffc008a496b4 r __ksymtab___xfrm_state_delete
+ffffffc008a496c0 r __ksymtab___xfrm_state_destroy
+ffffffc008a496cc r __ksymtab___zerocopy_sg_from_iter
+ffffffc008a496d8 r __ksymtab__atomic_dec_and_lock
+ffffffc008a496e4 r __ksymtab__atomic_dec_and_lock_irqsave
+ffffffc008a496f0 r __ksymtab__bcd2bin
+ffffffc008a496fc r __ksymtab__bin2bcd
+ffffffc008a49708 r __ksymtab__copy_from_iter
+ffffffc008a49714 r __ksymtab__copy_from_iter_nocache
+ffffffc008a49720 r __ksymtab__copy_to_iter
+ffffffc008a4972c r __ksymtab__ctype
+ffffffc008a49738 r __ksymtab__dev_alert
+ffffffc008a49744 r __ksymtab__dev_crit
+ffffffc008a49750 r __ksymtab__dev_emerg
+ffffffc008a4975c r __ksymtab__dev_err
+ffffffc008a49768 r __ksymtab__dev_info
+ffffffc008a49774 r __ksymtab__dev_notice
+ffffffc008a49780 r __ksymtab__dev_printk
+ffffffc008a4978c r __ksymtab__dev_warn
+ffffffc008a49798 r __ksymtab__find_first_and_bit
+ffffffc008a497a4 r __ksymtab__find_first_bit
+ffffffc008a497b0 r __ksymtab__find_first_zero_bit
+ffffffc008a497bc r __ksymtab__find_last_bit
+ffffffc008a497c8 r __ksymtab__find_next_and_bit
+ffffffc008a497d4 r __ksymtab__find_next_andnot_bit
+ffffffc008a497e0 r __ksymtab__find_next_bit
+ffffffc008a497ec r __ksymtab__find_next_zero_bit
+ffffffc008a497f8 r __ksymtab__kstrtol
+ffffffc008a49804 r __ksymtab__kstrtoul
+ffffffc008a49810 r __ksymtab__local_bh_enable
+ffffffc008a4981c r __ksymtab__printk
+ffffffc008a49828 r __ksymtab__raw_read_lock
+ffffffc008a49834 r __ksymtab__raw_read_lock_bh
+ffffffc008a49840 r __ksymtab__raw_read_lock_irq
+ffffffc008a4984c r __ksymtab__raw_read_lock_irqsave
+ffffffc008a49858 r __ksymtab__raw_read_trylock
+ffffffc008a49864 r __ksymtab__raw_read_unlock
+ffffffc008a49870 r __ksymtab__raw_read_unlock_bh
+ffffffc008a4987c r __ksymtab__raw_read_unlock_irq
+ffffffc008a49888 r __ksymtab__raw_read_unlock_irqrestore
+ffffffc008a49894 r __ksymtab__raw_spin_lock
+ffffffc008a498a0 r __ksymtab__raw_spin_lock_bh
+ffffffc008a498ac r __ksymtab__raw_spin_lock_irq
+ffffffc008a498b8 r __ksymtab__raw_spin_lock_irqsave
+ffffffc008a498c4 r __ksymtab__raw_spin_trylock
+ffffffc008a498d0 r __ksymtab__raw_spin_trylock_bh
+ffffffc008a498dc r __ksymtab__raw_spin_unlock
+ffffffc008a498e8 r __ksymtab__raw_spin_unlock_bh
+ffffffc008a498f4 r __ksymtab__raw_spin_unlock_irq
+ffffffc008a49900 r __ksymtab__raw_spin_unlock_irqrestore
+ffffffc008a4990c r __ksymtab__raw_write_lock
+ffffffc008a49918 r __ksymtab__raw_write_lock_bh
+ffffffc008a49924 r __ksymtab__raw_write_lock_irq
+ffffffc008a49930 r __ksymtab__raw_write_lock_irqsave
+ffffffc008a4993c r __ksymtab__raw_write_lock_nested
+ffffffc008a49948 r __ksymtab__raw_write_trylock
+ffffffc008a49954 r __ksymtab__raw_write_unlock
+ffffffc008a49960 r __ksymtab__raw_write_unlock_bh
+ffffffc008a4996c r __ksymtab__raw_write_unlock_irq
+ffffffc008a49978 r __ksymtab__raw_write_unlock_irqrestore
+ffffffc008a49984 r __ksymtab__totalram_pages
+ffffffc008a49990 r __ksymtab_abort
+ffffffc008a4999c r __ksymtab_abort_creds
+ffffffc008a499a8 r __ksymtab_add_device_randomness
+ffffffc008a499b4 r __ksymtab_add_taint
+ffffffc008a499c0 r __ksymtab_add_timer
+ffffffc008a499cc r __ksymtab_add_to_page_cache_lru
+ffffffc008a499d8 r __ksymtab_add_to_pipe
+ffffffc008a499e4 r __ksymtab_add_wait_queue
+ffffffc008a499f0 r __ksymtab_add_wait_queue_exclusive
+ffffffc008a499fc r __ksymtab_address_space_init_once
+ffffffc008a49a08 r __ksymtab_adjust_managed_page_count
+ffffffc008a49a14 r __ksymtab_adjust_resource
+ffffffc008a49a20 r __ksymtab_aes_decrypt
+ffffffc008a49a2c r __ksymtab_aes_encrypt
+ffffffc008a49a38 r __ksymtab_aes_expandkey
+ffffffc008a49a44 r __ksymtab_alloc_anon_inode
+ffffffc008a49a50 r __ksymtab_alloc_buffer_head
+ffffffc008a49a5c r __ksymtab_alloc_chrdev_region
+ffffffc008a49a68 r __ksymtab_alloc_contig_range
+ffffffc008a49a74 r __ksymtab_alloc_cpu_rmap
+ffffffc008a49a80 r __ksymtab_alloc_etherdev_mqs
+ffffffc008a49a8c r __ksymtab_alloc_file_pseudo
+ffffffc008a49a98 r __ksymtab_alloc_netdev_mqs
+ffffffc008a49aa4 r __ksymtab_alloc_pages_exact
+ffffffc008a49ab0 r __ksymtab_alloc_skb_with_frags
+ffffffc008a49abc r __ksymtab_allocate_resource
+ffffffc008a49ac8 r __ksymtab_alt_cb_patch_nops
+ffffffc008a49ad4 r __ksymtab_always_delete_dentry
+ffffffc008a49ae0 r __ksymtab_amba_device_register
+ffffffc008a49aec r __ksymtab_amba_device_unregister
+ffffffc008a49af8 r __ksymtab_amba_driver_register
+ffffffc008a49b04 r __ksymtab_amba_driver_unregister
+ffffffc008a49b10 r __ksymtab_amba_release_regions
+ffffffc008a49b1c r __ksymtab_amba_request_regions
+ffffffc008a49b28 r __ksymtab_argv_free
+ffffffc008a49b34 r __ksymtab_argv_split
+ffffffc008a49b40 r __ksymtab_arm64_use_ng_mappings
+ffffffc008a49b4c r __ksymtab_arm_smccc_1_2_hvc
+ffffffc008a49b58 r __ksymtab_arm_smccc_1_2_smc
+ffffffc008a49b64 r __ksymtab_arp_create
+ffffffc008a49b70 r __ksymtab_arp_send
+ffffffc008a49b7c r __ksymtab_arp_tbl
+ffffffc008a49b88 r __ksymtab_arp_xmit
+ffffffc008a49b94 r __ksymtab_atomic_dec_and_mutex_lock
+ffffffc008a49ba0 r __ksymtab_audit_log
+ffffffc008a49bac r __ksymtab_audit_log_end
+ffffffc008a49bb8 r __ksymtab_audit_log_format
+ffffffc008a49bc4 r __ksymtab_audit_log_start
+ffffffc008a49bd0 r __ksymtab_audit_log_task_context
+ffffffc008a49bdc r __ksymtab_audit_log_task_info
+ffffffc008a49be8 r __ksymtab_autoremove_wake_function
+ffffffc008a49bf4 r __ksymtab_avenrun
+ffffffc008a49c00 r __ksymtab_balance_dirty_pages_ratelimited
+ffffffc008a49c0c r __ksymtab_bcmp
+ffffffc008a49c18 r __ksymtab_bd_abort_claiming
+ffffffc008a49c24 r __ksymtab_bdev_check_media_change
+ffffffc008a49c30 r __ksymtab_bdev_end_io_acct
+ffffffc008a49c3c r __ksymtab_bdev_start_io_acct
+ffffffc008a49c48 r __ksymtab_bdi_alloc
+ffffffc008a49c54 r __ksymtab_bdi_put
+ffffffc008a49c60 r __ksymtab_bdi_register
+ffffffc008a49c6c r __ksymtab_bdi_set_max_ratio
+ffffffc008a49c78 r __ksymtab_bdi_unregister
+ffffffc008a49c84 r __ksymtab_begin_new_exec
+ffffffc008a49c90 r __ksymtab_bh_uptodate_or_lock
+ffffffc008a49c9c r __ksymtab_bin2hex
+ffffffc008a49ca8 r __ksymtab_bio_add_page
+ffffffc008a49cb4 r __ksymtab_bio_add_pc_page
+ffffffc008a49cc0 r __ksymtab_bio_alloc_bioset
+ffffffc008a49ccc r __ksymtab_bio_alloc_clone
+ffffffc008a49cd8 r __ksymtab_bio_chain
+ffffffc008a49ce4 r __ksymtab_bio_copy_data
+ffffffc008a49cf0 r __ksymtab_bio_copy_data_iter
+ffffffc008a49cfc r __ksymtab_bio_endio
+ffffffc008a49d08 r __ksymtab_bio_free_pages
+ffffffc008a49d14 r __ksymtab_bio_init
+ffffffc008a49d20 r __ksymtab_bio_init_clone
+ffffffc008a49d2c r __ksymtab_bio_kmalloc
+ffffffc008a49d38 r __ksymtab_bio_put
+ffffffc008a49d44 r __ksymtab_bio_reset
+ffffffc008a49d50 r __ksymtab_bio_split
+ffffffc008a49d5c r __ksymtab_bio_split_to_limits
+ffffffc008a49d68 r __ksymtab_bio_uninit
+ffffffc008a49d74 r __ksymtab_bioset_exit
+ffffffc008a49d80 r __ksymtab_bioset_init
+ffffffc008a49d8c r __ksymtab_bit_wait
+ffffffc008a49d98 r __ksymtab_bit_wait_io
+ffffffc008a49da4 r __ksymtab_bit_waitqueue
+ffffffc008a49db0 r __ksymtab_bitmap_alloc
+ffffffc008a49dbc r __ksymtab_bitmap_alloc_node
+ffffffc008a49dc8 r __ksymtab_bitmap_allocate_region
+ffffffc008a49dd4 r __ksymtab_bitmap_bitremap
+ffffffc008a49de0 r __ksymtab_bitmap_cut
+ffffffc008a49dec r __ksymtab_bitmap_find_free_region
+ffffffc008a49df8 r __ksymtab_bitmap_find_next_zero_area_off
+ffffffc008a49e04 r __ksymtab_bitmap_free
+ffffffc008a49e10 r __ksymtab_bitmap_from_arr32
+ffffffc008a49e1c r __ksymtab_bitmap_parse
+ffffffc008a49e28 r __ksymtab_bitmap_parse_user
+ffffffc008a49e34 r __ksymtab_bitmap_parselist
+ffffffc008a49e40 r __ksymtab_bitmap_parselist_user
+ffffffc008a49e4c r __ksymtab_bitmap_print_bitmask_to_buf
+ffffffc008a49e58 r __ksymtab_bitmap_print_list_to_buf
+ffffffc008a49e64 r __ksymtab_bitmap_print_to_pagebuf
+ffffffc008a49e70 r __ksymtab_bitmap_release_region
+ffffffc008a49e7c r __ksymtab_bitmap_remap
+ffffffc008a49e88 r __ksymtab_bitmap_to_arr32
+ffffffc008a49e94 r __ksymtab_bitmap_zalloc
+ffffffc008a49ea0 r __ksymtab_bitmap_zalloc_node
+ffffffc008a49eac r __ksymtab_blackhole_netdev
+ffffffc008a49eb8 r __ksymtab_blake2b_compress_generic
+ffffffc008a49ec4 r __ksymtab_blake2s_compress_generic
+ffffffc008a49ed0 r __ksymtab_blake2s_final
+ffffffc008a49edc r __ksymtab_blake2s_update
+ffffffc008a49ee8 r __ksymtab_blk_check_plugged
+ffffffc008a49ef4 r __ksymtab_blk_dump_rq_flags
+ffffffc008a49f00 r __ksymtab_blk_execute_rq
+ffffffc008a49f0c r __ksymtab_blk_finish_plug
+ffffffc008a49f18 r __ksymtab_blk_get_queue
+ffffffc008a49f24 r __ksymtab_blk_limits_io_min
+ffffffc008a49f30 r __ksymtab_blk_limits_io_opt
+ffffffc008a49f3c r __ksymtab_blk_mq_alloc_disk_for_queue
+ffffffc008a49f48 r __ksymtab_blk_mq_alloc_request
+ffffffc008a49f54 r __ksymtab_blk_mq_alloc_tag_set
+ffffffc008a49f60 r __ksymtab_blk_mq_complete_request
+ffffffc008a49f6c r __ksymtab_blk_mq_delay_kick_requeue_list
+ffffffc008a49f78 r __ksymtab_blk_mq_delay_run_hw_queue
+ffffffc008a49f84 r __ksymtab_blk_mq_delay_run_hw_queues
+ffffffc008a49f90 r __ksymtab_blk_mq_destroy_queue
+ffffffc008a49f9c r __ksymtab_blk_mq_end_request
+ffffffc008a49fa8 r __ksymtab_blk_mq_free_tag_set
+ffffffc008a49fb4 r __ksymtab_blk_mq_init_allocated_queue
+ffffffc008a49fc0 r __ksymtab_blk_mq_init_queue
+ffffffc008a49fcc r __ksymtab_blk_mq_kick_requeue_list
+ffffffc008a49fd8 r __ksymtab_blk_mq_requeue_request
+ffffffc008a49fe4 r __ksymtab_blk_mq_rq_cpu
+ffffffc008a49ff0 r __ksymtab_blk_mq_run_hw_queue
+ffffffc008a49ffc r __ksymtab_blk_mq_run_hw_queues
+ffffffc008a4a008 r __ksymtab_blk_mq_start_hw_queue
+ffffffc008a4a014 r __ksymtab_blk_mq_start_hw_queues
+ffffffc008a4a020 r __ksymtab_blk_mq_start_request
+ffffffc008a4a02c r __ksymtab_blk_mq_start_stopped_hw_queues
+ffffffc008a4a038 r __ksymtab_blk_mq_stop_hw_queue
+ffffffc008a4a044 r __ksymtab_blk_mq_stop_hw_queues
+ffffffc008a4a050 r __ksymtab_blk_mq_tagset_busy_iter
+ffffffc008a4a05c r __ksymtab_blk_mq_tagset_wait_completed_request
+ffffffc008a4a068 r __ksymtab_blk_mq_unique_tag
+ffffffc008a4a074 r __ksymtab_blk_pm_runtime_init
+ffffffc008a4a080 r __ksymtab_blk_post_runtime_resume
+ffffffc008a4a08c r __ksymtab_blk_post_runtime_suspend
+ffffffc008a4a098 r __ksymtab_blk_pre_runtime_resume
+ffffffc008a4a0a4 r __ksymtab_blk_pre_runtime_suspend
+ffffffc008a4a0b0 r __ksymtab_blk_put_queue
+ffffffc008a4a0bc r __ksymtab_blk_queue_alignment_offset
+ffffffc008a4a0c8 r __ksymtab_blk_queue_bounce_limit
+ffffffc008a4a0d4 r __ksymtab_blk_queue_chunk_sectors
+ffffffc008a4a0e0 r __ksymtab_blk_queue_dma_alignment
+ffffffc008a4a0ec r __ksymtab_blk_queue_flag_clear
+ffffffc008a4a0f8 r __ksymtab_blk_queue_flag_set
+ffffffc008a4a104 r __ksymtab_blk_queue_io_min
+ffffffc008a4a110 r __ksymtab_blk_queue_io_opt
+ffffffc008a4a11c r __ksymtab_blk_queue_logical_block_size
+ffffffc008a4a128 r __ksymtab_blk_queue_max_discard_sectors
+ffffffc008a4a134 r __ksymtab_blk_queue_max_hw_sectors
+ffffffc008a4a140 r __ksymtab_blk_queue_max_secure_erase_sectors
+ffffffc008a4a14c r __ksymtab_blk_queue_max_segment_size
+ffffffc008a4a158 r __ksymtab_blk_queue_max_segments
+ffffffc008a4a164 r __ksymtab_blk_queue_max_write_zeroes_sectors
+ffffffc008a4a170 r __ksymtab_blk_queue_physical_block_size
+ffffffc008a4a17c r __ksymtab_blk_queue_segment_boundary
+ffffffc008a4a188 r __ksymtab_blk_queue_update_dma_alignment
+ffffffc008a4a194 r __ksymtab_blk_queue_update_dma_pad
+ffffffc008a4a1a0 r __ksymtab_blk_queue_virt_boundary
+ffffffc008a4a1ac r __ksymtab_blk_rq_append_bio
+ffffffc008a4a1b8 r __ksymtab_blk_rq_init
+ffffffc008a4a1c4 r __ksymtab_blk_rq_map_kern
+ffffffc008a4a1d0 r __ksymtab_blk_rq_map_user
+ffffffc008a4a1dc r __ksymtab_blk_rq_map_user_io
+ffffffc008a4a1e8 r __ksymtab_blk_rq_map_user_iov
+ffffffc008a4a1f4 r __ksymtab_blk_rq_unmap_user
+ffffffc008a4a200 r __ksymtab_blk_set_queue_depth
+ffffffc008a4a20c r __ksymtab_blk_set_runtime_active
+ffffffc008a4a218 r __ksymtab_blk_set_stacking_limits
+ffffffc008a4a224 r __ksymtab_blk_stack_limits
+ffffffc008a4a230 r __ksymtab_blk_start_plug
+ffffffc008a4a23c r __ksymtab_blk_sync_queue
+ffffffc008a4a248 r __ksymtab_blkdev_get_by_dev
+ffffffc008a4a254 r __ksymtab_blkdev_get_by_path
+ffffffc008a4a260 r __ksymtab_blkdev_issue_discard
+ffffffc008a4a26c r __ksymtab_blkdev_issue_flush
+ffffffc008a4a278 r __ksymtab_blkdev_issue_secure_erase
+ffffffc008a4a284 r __ksymtab_blkdev_issue_zeroout
+ffffffc008a4a290 r __ksymtab_blkdev_put
+ffffffc008a4a29c r __ksymtab_block_commit_write
+ffffffc008a4a2a8 r __ksymtab_block_dirty_folio
+ffffffc008a4a2b4 r __ksymtab_block_invalidate_folio
+ffffffc008a4a2c0 r __ksymtab_block_is_partially_uptodate
+ffffffc008a4a2cc r __ksymtab_block_page_mkwrite
+ffffffc008a4a2d8 r __ksymtab_block_read_full_folio
+ffffffc008a4a2e4 r __ksymtab_block_truncate_page
+ffffffc008a4a2f0 r __ksymtab_block_write_begin
+ffffffc008a4a2fc r __ksymtab_block_write_end
+ffffffc008a4a308 r __ksymtab_block_write_full_page
+ffffffc008a4a314 r __ksymtab_bmap
+ffffffc008a4a320 r __ksymtab_bpf_empty_prog_array
+ffffffc008a4a32c r __ksymtab_bpf_sk_lookup_enabled
+ffffffc008a4a338 r __ksymtab_bpf_stats_enabled_key
+ffffffc008a4a344 r __ksymtab_bprm_change_interp
+ffffffc008a4a350 r __ksymtab_brioctl_set
+ffffffc008a4a35c r __ksymtab_bsearch
+ffffffc008a4a368 r __ksymtab_buffer_check_dirty_writeback
+ffffffc008a4a374 r __ksymtab_buffer_migrate_folio
+ffffffc008a4a380 r __ksymtab_build_skb
+ffffffc008a4a38c r __ksymtab_build_skb_around
+ffffffc008a4a398 r __ksymtab_caches_clean_inval_pou
+ffffffc008a4a3a4 r __ksymtab_cad_pid
+ffffffc008a4a3b0 r __ksymtab_call_blocking_lsm_notifier
+ffffffc008a4a3bc r __ksymtab_call_fib_notifier
+ffffffc008a4a3c8 r __ksymtab_call_fib_notifiers
+ffffffc008a4a3d4 r __ksymtab_call_netdevice_notifiers
+ffffffc008a4a3e0 r __ksymtab_call_usermodehelper
+ffffffc008a4a3ec r __ksymtab_call_usermodehelper_exec
+ffffffc008a4a3f8 r __ksymtab_call_usermodehelper_setup
+ffffffc008a4a404 r __ksymtab_can_do_mlock
+ffffffc008a4a410 r __ksymtab_cancel_delayed_work
+ffffffc008a4a41c r __ksymtab_cancel_delayed_work_sync
+ffffffc008a4a428 r __ksymtab_cancel_work
+ffffffc008a4a434 r __ksymtab_capable
+ffffffc008a4a440 r __ksymtab_capable_wrt_inode_uidgid
+ffffffc008a4a44c r __ksymtab_cdev_add
+ffffffc008a4a458 r __ksymtab_cdev_alloc
+ffffffc008a4a464 r __ksymtab_cdev_del
+ffffffc008a4a470 r __ksymtab_cdev_device_add
+ffffffc008a4a47c r __ksymtab_cdev_device_del
+ffffffc008a4a488 r __ksymtab_cdev_init
+ffffffc008a4a494 r __ksymtab_cdev_set_parent
+ffffffc008a4a4a0 r __ksymtab_chacha_block_generic
+ffffffc008a4a4ac r __ksymtab_chacha_crypt_generic
+ffffffc008a4a4b8 r __ksymtab_check_zeroed_user
+ffffffc008a4a4c4 r __ksymtab_clean_bdev_aliases
+ffffffc008a4a4d0 r __ksymtab_clear_inode
+ffffffc008a4a4dc r __ksymtab_clear_nlink
+ffffffc008a4a4e8 r __ksymtab_clear_page
+ffffffc008a4a4f4 r __ksymtab_clear_page_dirty_for_io
+ffffffc008a4a500 r __ksymtab_clk_add_alias
+ffffffc008a4a50c r __ksymtab_clk_bulk_get
+ffffffc008a4a518 r __ksymtab_clk_bulk_get_all
+ffffffc008a4a524 r __ksymtab_clk_bulk_put_all
+ffffffc008a4a530 r __ksymtab_clk_get
+ffffffc008a4a53c r __ksymtab_clk_get_sys
+ffffffc008a4a548 r __ksymtab_clk_hw_get_clk
+ffffffc008a4a554 r __ksymtab_clk_hw_register_clkdev
+ffffffc008a4a560 r __ksymtab_clk_put
+ffffffc008a4a56c r __ksymtab_clk_register_clkdev
+ffffffc008a4a578 r __ksymtab_clkdev_add
+ffffffc008a4a584 r __ksymtab_clkdev_drop
+ffffffc008a4a590 r __ksymtab_clock_t_to_jiffies
+ffffffc008a4a59c r __ksymtab_clocksource_change_rating
+ffffffc008a4a5a8 r __ksymtab_clocksource_unregister
+ffffffc008a4a5b4 r __ksymtab_close_fd
+ffffffc008a4a5c0 r __ksymtab_color_table
+ffffffc008a4a5cc r __ksymtab_commit_creds
+ffffffc008a4a5d8 r __ksymtab_complete
+ffffffc008a4a5e4 r __ksymtab_complete_all
+ffffffc008a4a5f0 r __ksymtab_completion_done
+ffffffc008a4a5fc r __ksymtab_component_match_add_release
+ffffffc008a4a608 r __ksymtab_component_match_add_typed
+ffffffc008a4a614 r __ksymtab_con_copy_unimap
+ffffffc008a4a620 r __ksymtab_con_is_bound
+ffffffc008a4a62c r __ksymtab_con_is_visible
+ffffffc008a4a638 r __ksymtab_con_set_default_unimap
+ffffffc008a4a644 r __ksymtab_console_blank_hook
+ffffffc008a4a650 r __ksymtab_console_blanked
+ffffffc008a4a65c r __ksymtab_console_conditional_schedule
+ffffffc008a4a668 r __ksymtab_console_lock
+ffffffc008a4a674 r __ksymtab_console_set_on_cmdline
+ffffffc008a4a680 r __ksymtab_console_start
+ffffffc008a4a68c r __ksymtab_console_stop
+ffffffc008a4a698 r __ksymtab_console_suspend_enabled
+ffffffc008a4a6a4 r __ksymtab_console_trylock
+ffffffc008a4a6b0 r __ksymtab_console_unlock
+ffffffc008a4a6bc r __ksymtab_consume_skb
+ffffffc008a4a6c8 r __ksymtab_cont_write_begin
+ffffffc008a4a6d4 r __ksymtab_contig_page_data
+ffffffc008a4a6e0 r __ksymtab_copy_fsxattr_to_user
+ffffffc008a4a6ec r __ksymtab_copy_highpage
+ffffffc008a4a6f8 r __ksymtab_copy_page
+ffffffc008a4a704 r __ksymtab_copy_page_from_iter
+ffffffc008a4a710 r __ksymtab_copy_page_from_iter_atomic
+ffffffc008a4a71c r __ksymtab_copy_page_to_iter
+ffffffc008a4a728 r __ksymtab_copy_string_kernel
+ffffffc008a4a734 r __ksymtab_cpu_all_bits
+ffffffc008a4a740 r __ksymtab_cpu_hwcaps
+ffffffc008a4a74c r __ksymtab_cpu_number
+ffffffc008a4a758 r __ksymtab_cpu_rmap_add
+ffffffc008a4a764 r __ksymtab_cpu_rmap_put
+ffffffc008a4a770 r __ksymtab_cpu_rmap_update
+ffffffc008a4a77c r __ksymtab_cpumask_any_and_distribute
+ffffffc008a4a788 r __ksymtab_cpumask_any_distribute
+ffffffc008a4a794 r __ksymtab_cpumask_local_spread
+ffffffc008a4a7a0 r __ksymtab_cpumask_next_wrap
+ffffffc008a4a7ac r __ksymtab_crc16
+ffffffc008a4a7b8 r __ksymtab_crc16_table
+ffffffc008a4a7c4 r __ksymtab_crc32_be
+ffffffc008a4a7d0 r __ksymtab_crc32_le
+ffffffc008a4a7dc r __ksymtab_crc32_le_shift
+ffffffc008a4a7e8 r __ksymtab_crc32c
+ffffffc008a4a7f4 r __ksymtab_crc32c_csum_stub
+ffffffc008a4a800 r __ksymtab_crc32c_impl
+ffffffc008a4a80c r __ksymtab_create_empty_buffers
+ffffffc008a4a818 r __ksymtab_cred_fscmp
+ffffffc008a4a824 r __ksymtab_crypto_aes_inv_sbox
+ffffffc008a4a830 r __ksymtab_crypto_aes_sbox
+ffffffc008a4a83c r __ksymtab_crypto_nhpoly1305_final
+ffffffc008a4a848 r __ksymtab_crypto_nhpoly1305_final_helper
+ffffffc008a4a854 r __ksymtab_crypto_nhpoly1305_init
+ffffffc008a4a860 r __ksymtab_crypto_nhpoly1305_setkey
+ffffffc008a4a86c r __ksymtab_crypto_nhpoly1305_update
+ffffffc008a4a878 r __ksymtab_crypto_nhpoly1305_update_helper
+ffffffc008a4a884 r __ksymtab_crypto_sha1_finup
+ffffffc008a4a890 r __ksymtab_crypto_sha1_update
+ffffffc008a4a89c r __ksymtab_crypto_sha256_finup
+ffffffc008a4a8a8 r __ksymtab_crypto_sha256_update
+ffffffc008a4a8b4 r __ksymtab_crypto_sha512_finup
+ffffffc008a4a8c0 r __ksymtab_crypto_sha512_update
+ffffffc008a4a8cc r __ksymtab_csum_and_copy_from_iter
+ffffffc008a4a8d8 r __ksymtab_csum_and_copy_to_iter
+ffffffc008a4a8e4 r __ksymtab_csum_ipv6_magic
+ffffffc008a4a8f0 r __ksymtab_csum_partial
+ffffffc008a4a8fc r __ksymtab_csum_tcpudp_nofold
+ffffffc008a4a908 r __ksymtab_current_time
+ffffffc008a4a914 r __ksymtab_current_umask
+ffffffc008a4a920 r __ksymtab_current_work
+ffffffc008a4a92c r __ksymtab_d_add
+ffffffc008a4a938 r __ksymtab_d_add_ci
+ffffffc008a4a944 r __ksymtab_d_alloc
+ffffffc008a4a950 r __ksymtab_d_alloc_anon
+ffffffc008a4a95c r __ksymtab_d_alloc_name
+ffffffc008a4a968 r __ksymtab_d_alloc_parallel
+ffffffc008a4a974 r __ksymtab_d_delete
+ffffffc008a4a980 r __ksymtab_d_drop
+ffffffc008a4a98c r __ksymtab_d_exact_alias
+ffffffc008a4a998 r __ksymtab_d_find_alias
+ffffffc008a4a9a4 r __ksymtab_d_find_any_alias
+ffffffc008a4a9b0 r __ksymtab_d_genocide
+ffffffc008a4a9bc r __ksymtab_d_hash_and_lookup
+ffffffc008a4a9c8 r __ksymtab_d_instantiate
+ffffffc008a4a9d4 r __ksymtab_d_instantiate_anon
+ffffffc008a4a9e0 r __ksymtab_d_instantiate_new
+ffffffc008a4a9ec r __ksymtab_d_invalidate
+ffffffc008a4a9f8 r __ksymtab_d_lookup
+ffffffc008a4aa04 r __ksymtab_d_make_root
+ffffffc008a4aa10 r __ksymtab_d_mark_dontcache
+ffffffc008a4aa1c r __ksymtab_d_move
+ffffffc008a4aa28 r __ksymtab_d_obtain_alias
+ffffffc008a4aa34 r __ksymtab_d_obtain_root
+ffffffc008a4aa40 r __ksymtab_d_path
+ffffffc008a4aa4c r __ksymtab_d_prune_aliases
+ffffffc008a4aa58 r __ksymtab_d_rehash
+ffffffc008a4aa64 r __ksymtab_d_set_d_op
+ffffffc008a4aa70 r __ksymtab_d_set_fallthru
+ffffffc008a4aa7c r __ksymtab_d_splice_alias
+ffffffc008a4aa88 r __ksymtab_d_tmpfile
+ffffffc008a4aa94 r __ksymtab_datagram_poll
+ffffffc008a4aaa0 r __ksymtab_dcache_dir_close
+ffffffc008a4aaac r __ksymtab_dcache_dir_lseek
+ffffffc008a4aab8 r __ksymtab_dcache_dir_open
+ffffffc008a4aac4 r __ksymtab_dcache_readdir
+ffffffc008a4aad0 r __ksymtab_deactivate_locked_super
+ffffffc008a4aadc r __ksymtab_deactivate_super
+ffffffc008a4aae8 r __ksymtab_debugfs_create_automount
+ffffffc008a4aaf4 r __ksymtab_dec_node_page_state
+ffffffc008a4ab00 r __ksymtab_dec_zone_page_state
+ffffffc008a4ab0c r __ksymtab_default_blu
+ffffffc008a4ab18 r __ksymtab_default_grn
+ffffffc008a4ab24 r __ksymtab_default_llseek
+ffffffc008a4ab30 r __ksymtab_default_qdisc_ops
+ffffffc008a4ab3c r __ksymtab_default_red
+ffffffc008a4ab48 r __ksymtab_default_wake_function
+ffffffc008a4ab54 r __ksymtab_del_gendisk
+ffffffc008a4ab60 r __ksymtab_del_timer
+ffffffc008a4ab6c r __ksymtab_del_timer_sync
+ffffffc008a4ab78 r __ksymtab_delayed_work_timer_fn
+ffffffc008a4ab84 r __ksymtab_dentry_create
+ffffffc008a4ab90 r __ksymtab_dentry_open
+ffffffc008a4ab9c r __ksymtab_dentry_path_raw
+ffffffc008a4aba8 r __ksymtab_dev_activate
+ffffffc008a4abb4 r __ksymtab_dev_add_offload
+ffffffc008a4abc0 r __ksymtab_dev_add_pack
+ffffffc008a4abcc r __ksymtab_dev_addr_add
+ffffffc008a4abd8 r __ksymtab_dev_addr_del
+ffffffc008a4abe4 r __ksymtab_dev_addr_mod
+ffffffc008a4abf0 r __ksymtab_dev_alloc_name
+ffffffc008a4abfc r __ksymtab_dev_base_lock
+ffffffc008a4ac08 r __ksymtab_dev_change_flags
+ffffffc008a4ac14 r __ksymtab_dev_close
+ffffffc008a4ac20 r __ksymtab_dev_close_many
+ffffffc008a4ac2c r __ksymtab_dev_deactivate
+ffffffc008a4ac38 r __ksymtab_dev_disable_lro
+ffffffc008a4ac44 r __ksymtab_dev_driver_string
+ffffffc008a4ac50 r __ksymtab_dev_get_by_index
+ffffffc008a4ac5c r __ksymtab_dev_get_by_index_rcu
+ffffffc008a4ac68 r __ksymtab_dev_get_by_name
+ffffffc008a4ac74 r __ksymtab_dev_get_by_name_rcu
+ffffffc008a4ac80 r __ksymtab_dev_get_by_napi_id
+ffffffc008a4ac8c r __ksymtab_dev_get_flags
+ffffffc008a4ac98 r __ksymtab_dev_get_iflink
+ffffffc008a4aca4 r __ksymtab_dev_get_mac_address
+ffffffc008a4acb0 r __ksymtab_dev_get_port_parent_id
+ffffffc008a4acbc r __ksymtab_dev_get_stats
+ffffffc008a4acc8 r __ksymtab_dev_getbyhwaddr_rcu
+ffffffc008a4acd4 r __ksymtab_dev_getfirstbyhwtype
+ffffffc008a4ace0 r __ksymtab_dev_graft_qdisc
+ffffffc008a4acec r __ksymtab_dev_load
+ffffffc008a4acf8 r __ksymtab_dev_loopback_xmit
+ffffffc008a4ad04 r __ksymtab_dev_lstats_read
+ffffffc008a4ad10 r __ksymtab_dev_mc_add
+ffffffc008a4ad1c r __ksymtab_dev_mc_add_excl
+ffffffc008a4ad28 r __ksymtab_dev_mc_add_global
+ffffffc008a4ad34 r __ksymtab_dev_mc_del
+ffffffc008a4ad40 r __ksymtab_dev_mc_del_global
+ffffffc008a4ad4c r __ksymtab_dev_mc_flush
+ffffffc008a4ad58 r __ksymtab_dev_mc_init
+ffffffc008a4ad64 r __ksymtab_dev_mc_sync
+ffffffc008a4ad70 r __ksymtab_dev_mc_sync_multiple
+ffffffc008a4ad7c r __ksymtab_dev_mc_unsync
+ffffffc008a4ad88 r __ksymtab_dev_open
+ffffffc008a4ad94 r __ksymtab_dev_pick_tx_cpu_id
+ffffffc008a4ada0 r __ksymtab_dev_pick_tx_zero
+ffffffc008a4adac r __ksymtab_dev_pre_changeaddr_notify
+ffffffc008a4adb8 r __ksymtab_dev_printk_emit
+ffffffc008a4adc4 r __ksymtab_dev_remove_offload
+ffffffc008a4add0 r __ksymtab_dev_remove_pack
+ffffffc008a4addc r __ksymtab_dev_set_alias
+ffffffc008a4ade8 r __ksymtab_dev_set_allmulti
+ffffffc008a4adf4 r __ksymtab_dev_set_mac_address
+ffffffc008a4ae00 r __ksymtab_dev_set_mac_address_user
+ffffffc008a4ae0c r __ksymtab_dev_set_mtu
+ffffffc008a4ae18 r __ksymtab_dev_set_promiscuity
+ffffffc008a4ae24 r __ksymtab_dev_set_threaded
+ffffffc008a4ae30 r __ksymtab_dev_trans_start
+ffffffc008a4ae3c r __ksymtab_dev_uc_add
+ffffffc008a4ae48 r __ksymtab_dev_uc_add_excl
+ffffffc008a4ae54 r __ksymtab_dev_uc_del
+ffffffc008a4ae60 r __ksymtab_dev_uc_flush
+ffffffc008a4ae6c r __ksymtab_dev_uc_init
+ffffffc008a4ae78 r __ksymtab_dev_uc_sync
+ffffffc008a4ae84 r __ksymtab_dev_uc_sync_multiple
+ffffffc008a4ae90 r __ksymtab_dev_uc_unsync
+ffffffc008a4ae9c r __ksymtab_dev_valid_name
+ffffffc008a4aea8 r __ksymtab_dev_vprintk_emit
+ffffffc008a4aeb4 r __ksymtab_device_add_disk
+ffffffc008a4aec0 r __ksymtab_device_get_ethdev_address
+ffffffc008a4aecc r __ksymtab_device_get_mac_address
+ffffffc008a4aed8 r __ksymtab_device_match_acpi_dev
+ffffffc008a4aee4 r __ksymtab_device_match_acpi_handle
+ffffffc008a4aef0 r __ksymtab_devm_alloc_etherdev_mqs
+ffffffc008a4aefc r __ksymtab_devm_arch_io_reserve_memtype_wc
+ffffffc008a4af08 r __ksymtab_devm_arch_phys_wc_add
+ffffffc008a4af14 r __ksymtab_devm_clk_get
+ffffffc008a4af20 r __ksymtab_devm_clk_get_optional
+ffffffc008a4af2c r __ksymtab_devm_clk_hw_register_clkdev
+ffffffc008a4af38 r __ksymtab_devm_clk_put
+ffffffc008a4af44 r __ksymtab_devm_free_irq
+ffffffc008a4af50 r __ksymtab_devm_gen_pool_create
+ffffffc008a4af5c r __ksymtab_devm_get_clk_from_child
+ffffffc008a4af68 r __ksymtab_devm_input_allocate_device
+ffffffc008a4af74 r __ksymtab_devm_ioport_map
+ffffffc008a4af80 r __ksymtab_devm_ioport_unmap
+ffffffc008a4af8c r __ksymtab_devm_ioremap
+ffffffc008a4af98 r __ksymtab_devm_ioremap_resource
+ffffffc008a4afa4 r __ksymtab_devm_ioremap_wc
+ffffffc008a4afb0 r __ksymtab_devm_iounmap
+ffffffc008a4afbc r __ksymtab_devm_kvasprintf
+ffffffc008a4afc8 r __ksymtab_devm_memremap
+ffffffc008a4afd4 r __ksymtab_devm_memunmap
+ffffffc008a4afe0 r __ksymtab_devm_of_iomap
+ffffffc008a4afec r __ksymtab_devm_pci_alloc_host_bridge
+ffffffc008a4aff8 r __ksymtab_devm_pci_remap_cfg_resource
+ffffffc008a4b004 r __ksymtab_devm_pci_remap_cfgspace
+ffffffc008a4b010 r __ksymtab_devm_pci_remap_iospace
+ffffffc008a4b01c r __ksymtab_devm_register_netdev
+ffffffc008a4b028 r __ksymtab_devm_register_reboot_notifier
+ffffffc008a4b034 r __ksymtab_devm_release_resource
+ffffffc008a4b040 r __ksymtab_devm_request_any_context_irq
+ffffffc008a4b04c r __ksymtab_devm_request_resource
+ffffffc008a4b058 r __ksymtab_devm_request_threaded_irq
+ffffffc008a4b064 r __ksymtab_dget_parent
+ffffffc008a4b070 r __ksymtab_disable_irq
+ffffffc008a4b07c r __ksymtab_disable_irq_nosync
+ffffffc008a4b088 r __ksymtab_discard_new_inode
+ffffffc008a4b094 r __ksymtab_disk_stack_limits
+ffffffc008a4b0a0 r __ksymtab_dm_consume_args
+ffffffc008a4b0ac r __ksymtab_dm_get_device
+ffffffc008a4b0b8 r __ksymtab_dm_io
+ffffffc008a4b0c4 r __ksymtab_dm_io_client_create
+ffffffc008a4b0d0 r __ksymtab_dm_io_client_destroy
+ffffffc008a4b0dc r __ksymtab_dm_kcopyd_client_create
+ffffffc008a4b0e8 r __ksymtab_dm_kcopyd_client_destroy
+ffffffc008a4b0f4 r __ksymtab_dm_kcopyd_client_flush
+ffffffc008a4b100 r __ksymtab_dm_kcopyd_copy
+ffffffc008a4b10c r __ksymtab_dm_kcopyd_do_callback
+ffffffc008a4b118 r __ksymtab_dm_kcopyd_prepare_callback
+ffffffc008a4b124 r __ksymtab_dm_kcopyd_zero
+ffffffc008a4b130 r __ksymtab_dm_kobject_release
+ffffffc008a4b13c r __ksymtab_dm_mq_kick_requeue_list
+ffffffc008a4b148 r __ksymtab_dm_put_device
+ffffffc008a4b154 r __ksymtab_dm_read_arg
+ffffffc008a4b160 r __ksymtab_dm_read_arg_group
+ffffffc008a4b16c r __ksymtab_dm_register_target
+ffffffc008a4b178 r __ksymtab_dm_shift_arg
+ffffffc008a4b184 r __ksymtab_dm_table_event
+ffffffc008a4b190 r __ksymtab_dm_table_get_md
+ffffffc008a4b19c r __ksymtab_dm_table_get_mode
+ffffffc008a4b1a8 r __ksymtab_dm_table_get_size
+ffffffc008a4b1b4 r __ksymtab_dm_table_run_md_queue_async
+ffffffc008a4b1c0 r __ksymtab_dm_unregister_target
+ffffffc008a4b1cc r __ksymtab_dma_alloc_attrs
+ffffffc008a4b1d8 r __ksymtab_dma_fence_add_callback
+ffffffc008a4b1e4 r __ksymtab_dma_fence_allocate_private_stub
+ffffffc008a4b1f0 r __ksymtab_dma_fence_array_create
+ffffffc008a4b1fc r __ksymtab_dma_fence_array_first
+ffffffc008a4b208 r __ksymtab_dma_fence_array_next
+ffffffc008a4b214 r __ksymtab_dma_fence_array_ops
+ffffffc008a4b220 r __ksymtab_dma_fence_chain_find_seqno
+ffffffc008a4b22c r __ksymtab_dma_fence_chain_init
+ffffffc008a4b238 r __ksymtab_dma_fence_chain_ops
+ffffffc008a4b244 r __ksymtab_dma_fence_chain_walk
+ffffffc008a4b250 r __ksymtab_dma_fence_context_alloc
+ffffffc008a4b25c r __ksymtab_dma_fence_default_wait
+ffffffc008a4b268 r __ksymtab_dma_fence_describe
+ffffffc008a4b274 r __ksymtab_dma_fence_enable_sw_signaling
+ffffffc008a4b280 r __ksymtab_dma_fence_free
+ffffffc008a4b28c r __ksymtab_dma_fence_get_status
+ffffffc008a4b298 r __ksymtab_dma_fence_get_stub
+ffffffc008a4b2a4 r __ksymtab_dma_fence_init
+ffffffc008a4b2b0 r __ksymtab_dma_fence_match_context
+ffffffc008a4b2bc r __ksymtab_dma_fence_release
+ffffffc008a4b2c8 r __ksymtab_dma_fence_remove_callback
+ffffffc008a4b2d4 r __ksymtab_dma_fence_signal
+ffffffc008a4b2e0 r __ksymtab_dma_fence_signal_locked
+ffffffc008a4b2ec r __ksymtab_dma_fence_signal_timestamp
+ffffffc008a4b2f8 r __ksymtab_dma_fence_signal_timestamp_locked
+ffffffc008a4b304 r __ksymtab_dma_fence_wait_any_timeout
+ffffffc008a4b310 r __ksymtab_dma_fence_wait_timeout
+ffffffc008a4b31c r __ksymtab_dma_free_attrs
+ffffffc008a4b328 r __ksymtab_dma_get_sgtable_attrs
+ffffffc008a4b334 r __ksymtab_dma_map_page_attrs
+ffffffc008a4b340 r __ksymtab_dma_map_resource
+ffffffc008a4b34c r __ksymtab_dma_map_sg_attrs
+ffffffc008a4b358 r __ksymtab_dma_mmap_attrs
+ffffffc008a4b364 r __ksymtab_dma_pool_alloc
+ffffffc008a4b370 r __ksymtab_dma_pool_create
+ffffffc008a4b37c r __ksymtab_dma_pool_destroy
+ffffffc008a4b388 r __ksymtab_dma_pool_free
+ffffffc008a4b394 r __ksymtab_dma_resv_add_fence
+ffffffc008a4b3a0 r __ksymtab_dma_resv_copy_fences
+ffffffc008a4b3ac r __ksymtab_dma_resv_fini
+ffffffc008a4b3b8 r __ksymtab_dma_resv_init
+ffffffc008a4b3c4 r __ksymtab_dma_resv_iter_first_unlocked
+ffffffc008a4b3d0 r __ksymtab_dma_resv_iter_next_unlocked
+ffffffc008a4b3dc r __ksymtab_dma_resv_replace_fences
+ffffffc008a4b3e8 r __ksymtab_dma_resv_reserve_fences
+ffffffc008a4b3f4 r __ksymtab_dma_set_coherent_mask
+ffffffc008a4b400 r __ksymtab_dma_set_mask
+ffffffc008a4b40c r __ksymtab_dma_sync_sg_for_cpu
+ffffffc008a4b418 r __ksymtab_dma_sync_sg_for_device
+ffffffc008a4b424 r __ksymtab_dma_sync_single_for_cpu
+ffffffc008a4b430 r __ksymtab_dma_sync_single_for_device
+ffffffc008a4b43c r __ksymtab_dma_unmap_page_attrs
+ffffffc008a4b448 r __ksymtab_dma_unmap_resource
+ffffffc008a4b454 r __ksymtab_dma_unmap_sg_attrs
+ffffffc008a4b460 r __ksymtab_dmam_alloc_attrs
+ffffffc008a4b46c r __ksymtab_dmam_free_coherent
+ffffffc008a4b478 r __ksymtab_dmam_pool_create
+ffffffc008a4b484 r __ksymtab_dmam_pool_destroy
+ffffffc008a4b490 r __ksymtab_do_SAK
+ffffffc008a4b49c r __ksymtab_do_blank_screen
+ffffffc008a4b4a8 r __ksymtab_do_clone_file_range
+ffffffc008a4b4b4 r __ksymtab_do_settimeofday64
+ffffffc008a4b4c0 r __ksymtab_do_splice_direct
+ffffffc008a4b4cc r __ksymtab_do_trace_netlink_extack
+ffffffc008a4b4d8 r __ksymtab_do_unblank_screen
+ffffffc008a4b4e4 r __ksymtab_do_wait_intr
+ffffffc008a4b4f0 r __ksymtab_do_wait_intr_irq
+ffffffc008a4b4fc r __ksymtab_done_path_create
+ffffffc008a4b508 r __ksymtab_dotdot_name
+ffffffc008a4b514 r __ksymtab_down
+ffffffc008a4b520 r __ksymtab_down_interruptible
+ffffffc008a4b52c r __ksymtab_down_killable
+ffffffc008a4b538 r __ksymtab_down_read
+ffffffc008a4b544 r __ksymtab_down_read_interruptible
+ffffffc008a4b550 r __ksymtab_down_read_killable
+ffffffc008a4b55c r __ksymtab_down_read_trylock
+ffffffc008a4b568 r __ksymtab_down_timeout
+ffffffc008a4b574 r __ksymtab_down_trylock
+ffffffc008a4b580 r __ksymtab_down_write
+ffffffc008a4b58c r __ksymtab_down_write_killable
+ffffffc008a4b598 r __ksymtab_down_write_trylock
+ffffffc008a4b5a4 r __ksymtab_downgrade_write
+ffffffc008a4b5b0 r __ksymtab_dput
+ffffffc008a4b5bc r __ksymtab_dql_completed
+ffffffc008a4b5c8 r __ksymtab_dql_init
+ffffffc008a4b5d4 r __ksymtab_dql_reset
+ffffffc008a4b5e0 r __ksymtab_drop_nlink
+ffffffc008a4b5ec r __ksymtab_drop_reasons
+ffffffc008a4b5f8 r __ksymtab_drop_super
+ffffffc008a4b604 r __ksymtab_drop_super_exclusive
+ffffffc008a4b610 r __ksymtab_dst_alloc
+ffffffc008a4b61c r __ksymtab_dst_cow_metrics_generic
+ffffffc008a4b628 r __ksymtab_dst_default_metrics
+ffffffc008a4b634 r __ksymtab_dst_destroy
+ffffffc008a4b640 r __ksymtab_dst_dev_put
+ffffffc008a4b64c r __ksymtab_dst_discard_out
+ffffffc008a4b658 r __ksymtab_dst_init
+ffffffc008a4b664 r __ksymtab_dst_release
+ffffffc008a4b670 r __ksymtab_dst_release_immediate
+ffffffc008a4b67c r __ksymtab_dump_align
+ffffffc008a4b688 r __ksymtab_dump_emit
+ffffffc008a4b694 r __ksymtab_dump_page
+ffffffc008a4b6a0 r __ksymtab_dump_skip
+ffffffc008a4b6ac r __ksymtab_dump_skip_to
+ffffffc008a4b6b8 r __ksymtab_dump_stack
+ffffffc008a4b6c4 r __ksymtab_dump_stack_lvl
+ffffffc008a4b6d0 r __ksymtab_dup_iter
+ffffffc008a4b6dc r __ksymtab_edac_mc_find
+ffffffc008a4b6e8 r __ksymtab_elevator_alloc
+ffffffc008a4b6f4 r __ksymtab_elv_bio_merge_ok
+ffffffc008a4b700 r __ksymtab_elv_rb_add
+ffffffc008a4b70c r __ksymtab_elv_rb_del
+ffffffc008a4b718 r __ksymtab_elv_rb_find
+ffffffc008a4b724 r __ksymtab_elv_rb_former_request
+ffffffc008a4b730 r __ksymtab_elv_rb_latter_request
+ffffffc008a4b73c r __ksymtab_empty_aops
+ffffffc008a4b748 r __ksymtab_empty_name
+ffffffc008a4b754 r __ksymtab_empty_zero_page
+ffffffc008a4b760 r __ksymtab_enable_irq
+ffffffc008a4b76c r __ksymtab_end_buffer_async_write
+ffffffc008a4b778 r __ksymtab_end_buffer_read_sync
+ffffffc008a4b784 r __ksymtab_end_buffer_write_sync
+ffffffc008a4b790 r __ksymtab_end_page_writeback
+ffffffc008a4b79c r __ksymtab_errseq_check
+ffffffc008a4b7a8 r __ksymtab_errseq_check_and_advance
+ffffffc008a4b7b4 r __ksymtab_errseq_sample
+ffffffc008a4b7c0 r __ksymtab_errseq_set
+ffffffc008a4b7cc r __ksymtab_eth_commit_mac_addr_change
+ffffffc008a4b7d8 r __ksymtab_eth_get_headlen
+ffffffc008a4b7e4 r __ksymtab_eth_gro_complete
+ffffffc008a4b7f0 r __ksymtab_eth_gro_receive
+ffffffc008a4b7fc r __ksymtab_eth_header
+ffffffc008a4b808 r __ksymtab_eth_header_cache
+ffffffc008a4b814 r __ksymtab_eth_header_cache_update
+ffffffc008a4b820 r __ksymtab_eth_header_parse
+ffffffc008a4b82c r __ksymtab_eth_header_parse_protocol
+ffffffc008a4b838 r __ksymtab_eth_mac_addr
+ffffffc008a4b844 r __ksymtab_eth_platform_get_mac_address
+ffffffc008a4b850 r __ksymtab_eth_prepare_mac_addr_change
+ffffffc008a4b85c r __ksymtab_eth_type_trans
+ffffffc008a4b868 r __ksymtab_eth_validate_addr
+ffffffc008a4b874 r __ksymtab_ether_setup
+ffffffc008a4b880 r __ksymtab_ethtool_convert_legacy_u32_to_link_mode
+ffffffc008a4b88c r __ksymtab_ethtool_convert_link_mode_to_legacy_u32
+ffffffc008a4b898 r __ksymtab_ethtool_get_phc_vclocks
+ffffffc008a4b8a4 r __ksymtab_ethtool_intersect_link_masks
+ffffffc008a4b8b0 r __ksymtab_ethtool_notify
+ffffffc008a4b8bc r __ksymtab_ethtool_op_get_link
+ffffffc008a4b8c8 r __ksymtab_ethtool_op_get_ts_info
+ffffffc008a4b8d4 r __ksymtab_ethtool_rx_flow_rule_create
+ffffffc008a4b8e0 r __ksymtab_ethtool_rx_flow_rule_destroy
+ffffffc008a4b8ec r __ksymtab_ethtool_sprintf
+ffffffc008a4b8f8 r __ksymtab_ethtool_virtdev_set_link_ksettings
+ffffffc008a4b904 r __ksymtab_f_setown
+ffffffc008a4b910 r __ksymtab_fasync_helper
+ffffffc008a4b91c r __ksymtab_fault_in_iov_iter_readable
+ffffffc008a4b928 r __ksymtab_fault_in_iov_iter_writeable
+ffffffc008a4b934 r __ksymtab_fault_in_readable
+ffffffc008a4b940 r __ksymtab_fault_in_safe_writeable
+ffffffc008a4b94c r __ksymtab_fault_in_subpage_writeable
+ffffffc008a4b958 r __ksymtab_fault_in_writeable
+ffffffc008a4b964 r __ksymtab_fc_mount
+ffffffc008a4b970 r __ksymtab_fd_install
+ffffffc008a4b97c r __ksymtab_fg_console
+ffffffc008a4b988 r __ksymtab_fget
+ffffffc008a4b994 r __ksymtab_fget_raw
+ffffffc008a4b9a0 r __ksymtab_fib6_info_hw_flags_set
+ffffffc008a4b9ac r __ksymtab_fib_default_rule_add
+ffffffc008a4b9b8 r __ksymtab_fib_notifier_ops_register
+ffffffc008a4b9c4 r __ksymtab_fib_notifier_ops_unregister
+ffffffc008a4b9d0 r __ksymtab_fiemap_fill_next_extent
+ffffffc008a4b9dc r __ksymtab_fiemap_prep
+ffffffc008a4b9e8 r __ksymtab_file_check_and_advance_wb_err
+ffffffc008a4b9f4 r __ksymtab_file_fdatawait_range
+ffffffc008a4ba00 r __ksymtab_file_modified
+ffffffc008a4ba0c r __ksymtab_file_ns_capable
+ffffffc008a4ba18 r __ksymtab_file_open_root
+ffffffc008a4ba24 r __ksymtab_file_path
+ffffffc008a4ba30 r __ksymtab_file_remove_privs
+ffffffc008a4ba3c r __ksymtab_file_update_time
+ffffffc008a4ba48 r __ksymtab_file_write_and_wait_range
+ffffffc008a4ba54 r __ksymtab_fileattr_fill_flags
+ffffffc008a4ba60 r __ksymtab_fileattr_fill_xflags
+ffffffc008a4ba6c r __ksymtab_filemap_check_errors
+ffffffc008a4ba78 r __ksymtab_filemap_dirty_folio
+ffffffc008a4ba84 r __ksymtab_filemap_fault
+ffffffc008a4ba90 r __ksymtab_filemap_fdatawait_keep_errors
+ffffffc008a4ba9c r __ksymtab_filemap_fdatawait_range
+ffffffc008a4baa8 r __ksymtab_filemap_fdatawait_range_keep_errors
+ffffffc008a4bab4 r __ksymtab_filemap_fdatawrite
+ffffffc008a4bac0 r __ksymtab_filemap_fdatawrite_range
+ffffffc008a4bacc r __ksymtab_filemap_fdatawrite_wbc
+ffffffc008a4bad8 r __ksymtab_filemap_flush
+ffffffc008a4bae4 r __ksymtab_filemap_get_folios
+ffffffc008a4baf0 r __ksymtab_filemap_get_folios_contig
+ffffffc008a4bafc r __ksymtab_filemap_invalidate_lock_two
+ffffffc008a4bb08 r __ksymtab_filemap_invalidate_unlock_two
+ffffffc008a4bb14 r __ksymtab_filemap_map_pages
+ffffffc008a4bb20 r __ksymtab_filemap_page_mkwrite
+ffffffc008a4bb2c r __ksymtab_filemap_range_has_page
+ffffffc008a4bb38 r __ksymtab_filemap_release_folio
+ffffffc008a4bb44 r __ksymtab_filemap_write_and_wait_range
+ffffffc008a4bb50 r __ksymtab_filp_close
+ffffffc008a4bb5c r __ksymtab_filp_open
+ffffffc008a4bb68 r __ksymtab_finalize_exec
+ffffffc008a4bb74 r __ksymtab_find_get_pages_range_tag
+ffffffc008a4bb80 r __ksymtab_find_inode_by_ino_rcu
+ffffffc008a4bb8c r __ksymtab_find_inode_nowait
+ffffffc008a4bb98 r __ksymtab_find_inode_rcu
+ffffffc008a4bba4 r __ksymtab_find_next_clump8
+ffffffc008a4bbb0 r __ksymtab_find_vma
+ffffffc008a4bbbc r __ksymtab_find_vma_intersection
+ffffffc008a4bbc8 r __ksymtab_finish_no_open
+ffffffc008a4bbd4 r __ksymtab_finish_open
+ffffffc008a4bbe0 r __ksymtab_finish_swait
+ffffffc008a4bbec r __ksymtab_finish_wait
+ffffffc008a4bbf8 r __ksymtab_fixed_size_llseek
+ffffffc008a4bc04 r __ksymtab_flow_action_cookie_create
+ffffffc008a4bc10 r __ksymtab_flow_action_cookie_destroy
+ffffffc008a4bc1c r __ksymtab_flow_block_cb_alloc
+ffffffc008a4bc28 r __ksymtab_flow_block_cb_decref
+ffffffc008a4bc34 r __ksymtab_flow_block_cb_free
+ffffffc008a4bc40 r __ksymtab_flow_block_cb_incref
+ffffffc008a4bc4c r __ksymtab_flow_block_cb_is_busy
+ffffffc008a4bc58 r __ksymtab_flow_block_cb_lookup
+ffffffc008a4bc64 r __ksymtab_flow_block_cb_priv
+ffffffc008a4bc70 r __ksymtab_flow_block_cb_setup_simple
+ffffffc008a4bc7c r __ksymtab_flow_get_u32_dst
+ffffffc008a4bc88 r __ksymtab_flow_get_u32_src
+ffffffc008a4bc94 r __ksymtab_flow_hash_from_keys
+ffffffc008a4bca0 r __ksymtab_flow_indr_block_cb_alloc
+ffffffc008a4bcac r __ksymtab_flow_indr_dev_exists
+ffffffc008a4bcb8 r __ksymtab_flow_indr_dev_register
+ffffffc008a4bcc4 r __ksymtab_flow_indr_dev_setup_offload
+ffffffc008a4bcd0 r __ksymtab_flow_indr_dev_unregister
+ffffffc008a4bcdc r __ksymtab_flow_keys_basic_dissector
+ffffffc008a4bce8 r __ksymtab_flow_keys_dissector
+ffffffc008a4bcf4 r __ksymtab_flow_rule_alloc
+ffffffc008a4bd00 r __ksymtab_flow_rule_match_basic
+ffffffc008a4bd0c r __ksymtab_flow_rule_match_control
+ffffffc008a4bd18 r __ksymtab_flow_rule_match_ct
+ffffffc008a4bd24 r __ksymtab_flow_rule_match_cvlan
+ffffffc008a4bd30 r __ksymtab_flow_rule_match_enc_control
+ffffffc008a4bd3c r __ksymtab_flow_rule_match_enc_ip
+ffffffc008a4bd48 r __ksymtab_flow_rule_match_enc_ipv4_addrs
+ffffffc008a4bd54 r __ksymtab_flow_rule_match_enc_ipv6_addrs
+ffffffc008a4bd60 r __ksymtab_flow_rule_match_enc_keyid
+ffffffc008a4bd6c r __ksymtab_flow_rule_match_enc_opts
+ffffffc008a4bd78 r __ksymtab_flow_rule_match_enc_ports
+ffffffc008a4bd84 r __ksymtab_flow_rule_match_eth_addrs
+ffffffc008a4bd90 r __ksymtab_flow_rule_match_icmp
+ffffffc008a4bd9c r __ksymtab_flow_rule_match_ip
+ffffffc008a4bda8 r __ksymtab_flow_rule_match_ipv4_addrs
+ffffffc008a4bdb4 r __ksymtab_flow_rule_match_ipv6_addrs
+ffffffc008a4bdc0 r __ksymtab_flow_rule_match_l2tpv3
+ffffffc008a4bdcc r __ksymtab_flow_rule_match_meta
+ffffffc008a4bdd8 r __ksymtab_flow_rule_match_mpls
+ffffffc008a4bde4 r __ksymtab_flow_rule_match_ports
+ffffffc008a4bdf0 r __ksymtab_flow_rule_match_ports_range
+ffffffc008a4bdfc r __ksymtab_flow_rule_match_pppoe
+ffffffc008a4be08 r __ksymtab_flow_rule_match_tcp
+ffffffc008a4be14 r __ksymtab_flow_rule_match_vlan
+ffffffc008a4be20 r __ksymtab_flush_dcache_folio
+ffffffc008a4be2c r __ksymtab_flush_dcache_page
+ffffffc008a4be38 r __ksymtab_flush_delayed_work
+ffffffc008a4be44 r __ksymtab_flush_rcu_work
+ffffffc008a4be50 r __ksymtab_flush_signals
+ffffffc008a4be5c r __ksymtab_folio_account_redirty
+ffffffc008a4be68 r __ksymtab_folio_add_lru
+ffffffc008a4be74 r __ksymtab_folio_clear_dirty_for_io
+ffffffc008a4be80 r __ksymtab_folio_end_private_2
+ffffffc008a4be8c r __ksymtab_folio_end_writeback
+ffffffc008a4be98 r __ksymtab_folio_mapped
+ffffffc008a4bea4 r __ksymtab_folio_mapping
+ffffffc008a4beb0 r __ksymtab_folio_mark_accessed
+ffffffc008a4bebc r __ksymtab_folio_mark_dirty
+ffffffc008a4bec8 r __ksymtab_folio_migrate_copy
+ffffffc008a4bed4 r __ksymtab_folio_migrate_flags
+ffffffc008a4bee0 r __ksymtab_folio_migrate_mapping
+ffffffc008a4beec r __ksymtab_folio_redirty_for_writepage
+ffffffc008a4bef8 r __ksymtab_folio_unlock
+ffffffc008a4bf04 r __ksymtab_folio_wait_bit
+ffffffc008a4bf10 r __ksymtab_folio_wait_bit_killable
+ffffffc008a4bf1c r __ksymtab_folio_wait_private_2
+ffffffc008a4bf28 r __ksymtab_folio_wait_private_2_killable
+ffffffc008a4bf34 r __ksymtab_folio_write_one
+ffffffc008a4bf40 r __ksymtab_follow_down
+ffffffc008a4bf4c r __ksymtab_follow_down_one
+ffffffc008a4bf58 r __ksymtab_follow_pfn
+ffffffc008a4bf64 r __ksymtab_follow_up
+ffffffc008a4bf70 r __ksymtab_force_sig
+ffffffc008a4bf7c r __ksymtab_forget_all_cached_acls
+ffffffc008a4bf88 r __ksymtab_forget_cached_acl
+ffffffc008a4bf94 r __ksymtab_fpsimd_context_busy
+ffffffc008a4bfa0 r __ksymtab_fput
+ffffffc008a4bfac r __ksymtab_fqdir_exit
+ffffffc008a4bfb8 r __ksymtab_fqdir_init
+ffffffc008a4bfc4 r __ksymtab_free_anon_bdev
+ffffffc008a4bfd0 r __ksymtab_free_bucket_spinlocks
+ffffffc008a4bfdc r __ksymtab_free_buffer_head
+ffffffc008a4bfe8 r __ksymtab_free_contig_range
+ffffffc008a4bff4 r __ksymtab_free_inode_nonrcu
+ffffffc008a4c000 r __ksymtab_free_irq
+ffffffc008a4c00c r __ksymtab_free_irq_cpu_rmap
+ffffffc008a4c018 r __ksymtab_free_netdev
+ffffffc008a4c024 r __ksymtab_free_pages
+ffffffc008a4c030 r __ksymtab_free_pages_exact
+ffffffc008a4c03c r __ksymtab_free_task
+ffffffc008a4c048 r __ksymtab_freeze_bdev
+ffffffc008a4c054 r __ksymtab_freeze_super
+ffffffc008a4c060 r __ksymtab_freezer_active
+ffffffc008a4c06c r __ksymtab_freezing_slow_path
+ffffffc008a4c078 r __ksymtab_fs_bio_set
+ffffffc008a4c084 r __ksymtab_fs_context_for_mount
+ffffffc008a4c090 r __ksymtab_fs_context_for_reconfigure
+ffffffc008a4c09c r __ksymtab_fs_context_for_submount
+ffffffc008a4c0a8 r __ksymtab_fs_lookup_param
+ffffffc008a4c0b4 r __ksymtab_fs_overflowgid
+ffffffc008a4c0c0 r __ksymtab_fs_overflowuid
+ffffffc008a4c0cc r __ksymtab_fs_param_is_blob
+ffffffc008a4c0d8 r __ksymtab_fs_param_is_blockdev
+ffffffc008a4c0e4 r __ksymtab_fs_param_is_bool
+ffffffc008a4c0f0 r __ksymtab_fs_param_is_enum
+ffffffc008a4c0fc r __ksymtab_fs_param_is_fd
+ffffffc008a4c108 r __ksymtab_fs_param_is_path
+ffffffc008a4c114 r __ksymtab_fs_param_is_s32
+ffffffc008a4c120 r __ksymtab_fs_param_is_string
+ffffffc008a4c12c r __ksymtab_fs_param_is_u32
+ffffffc008a4c138 r __ksymtab_fs_param_is_u64
+ffffffc008a4c144 r __ksymtab_fsync_bdev
+ffffffc008a4c150 r __ksymtab_full_name_hash
+ffffffc008a4c15c r __ksymtab_fuse_dequeue_forget
+ffffffc008a4c168 r __ksymtab_fuse_mount_destroy
+ffffffc008a4c174 r __ksymtab_fwnode_get_mac_address
+ffffffc008a4c180 r __ksymtab_fwnode_graph_parse_endpoint
+ffffffc008a4c18c r __ksymtab_fwnode_iomap
+ffffffc008a4c198 r __ksymtab_fwnode_irq_get
+ffffffc008a4c1a4 r __ksymtab_fwnode_irq_get_byname
+ffffffc008a4c1b0 r __ksymtab_gc_inflight_list
+ffffffc008a4c1bc r __ksymtab_gen_estimator_active
+ffffffc008a4c1c8 r __ksymtab_gen_estimator_read
+ffffffc008a4c1d4 r __ksymtab_gen_kill_estimator
+ffffffc008a4c1e0 r __ksymtab_gen_new_estimator
+ffffffc008a4c1ec r __ksymtab_gen_pool_add_owner
+ffffffc008a4c1f8 r __ksymtab_gen_pool_alloc_algo_owner
+ffffffc008a4c204 r __ksymtab_gen_pool_best_fit
+ffffffc008a4c210 r __ksymtab_gen_pool_create
+ffffffc008a4c21c r __ksymtab_gen_pool_destroy
+ffffffc008a4c228 r __ksymtab_gen_pool_dma_alloc
+ffffffc008a4c234 r __ksymtab_gen_pool_dma_alloc_algo
+ffffffc008a4c240 r __ksymtab_gen_pool_dma_alloc_align
+ffffffc008a4c24c r __ksymtab_gen_pool_dma_zalloc
+ffffffc008a4c258 r __ksymtab_gen_pool_dma_zalloc_algo
+ffffffc008a4c264 r __ksymtab_gen_pool_dma_zalloc_align
+ffffffc008a4c270 r __ksymtab_gen_pool_first_fit
+ffffffc008a4c27c r __ksymtab_gen_pool_first_fit_align
+ffffffc008a4c288 r __ksymtab_gen_pool_first_fit_order_align
+ffffffc008a4c294 r __ksymtab_gen_pool_fixed_alloc
+ffffffc008a4c2a0 r __ksymtab_gen_pool_for_each_chunk
+ffffffc008a4c2ac r __ksymtab_gen_pool_free_owner
+ffffffc008a4c2b8 r __ksymtab_gen_pool_has_addr
+ffffffc008a4c2c4 r __ksymtab_gen_pool_set_algo
+ffffffc008a4c2d0 r __ksymtab_gen_pool_virt_to_phys
+ffffffc008a4c2dc r __ksymtab_gen_replace_estimator
+ffffffc008a4c2e8 r __ksymtab_generate_random_guid
+ffffffc008a4c2f4 r __ksymtab_generate_random_uuid
+ffffffc008a4c300 r __ksymtab_generic_block_bmap
+ffffffc008a4c30c r __ksymtab_generic_check_addressable
+ffffffc008a4c318 r __ksymtab_generic_cont_expand_simple
+ffffffc008a4c324 r __ksymtab_generic_copy_file_range
+ffffffc008a4c330 r __ksymtab_generic_delete_inode
+ffffffc008a4c33c r __ksymtab_generic_error_remove_page
+ffffffc008a4c348 r __ksymtab_generic_fadvise
+ffffffc008a4c354 r __ksymtab_generic_file_direct_write
+ffffffc008a4c360 r __ksymtab_generic_file_fsync
+ffffffc008a4c36c r __ksymtab_generic_file_llseek
+ffffffc008a4c378 r __ksymtab_generic_file_llseek_size
+ffffffc008a4c384 r __ksymtab_generic_file_mmap
+ffffffc008a4c390 r __ksymtab_generic_file_open
+ffffffc008a4c39c r __ksymtab_generic_file_read_iter
+ffffffc008a4c3a8 r __ksymtab_generic_file_readonly_mmap
+ffffffc008a4c3b4 r __ksymtab_generic_file_splice_read
+ffffffc008a4c3c0 r __ksymtab_generic_file_write_iter
+ffffffc008a4c3cc r __ksymtab_generic_fill_statx_attr
+ffffffc008a4c3d8 r __ksymtab_generic_fillattr
+ffffffc008a4c3e4 r __ksymtab_generic_listxattr
+ffffffc008a4c3f0 r __ksymtab_generic_parse_monolithic
+ffffffc008a4c3fc r __ksymtab_generic_perform_write
+ffffffc008a4c408 r __ksymtab_generic_permission
+ffffffc008a4c414 r __ksymtab_generic_pipe_buf_get
+ffffffc008a4c420 r __ksymtab_generic_pipe_buf_release
+ffffffc008a4c42c r __ksymtab_generic_pipe_buf_try_steal
+ffffffc008a4c438 r __ksymtab_generic_read_dir
+ffffffc008a4c444 r __ksymtab_generic_remap_file_range_prep
+ffffffc008a4c450 r __ksymtab_generic_ro_fops
+ffffffc008a4c45c r __ksymtab_generic_set_encrypted_ci_d_ops
+ffffffc008a4c468 r __ksymtab_generic_setlease
+ffffffc008a4c474 r __ksymtab_generic_shutdown_super
+ffffffc008a4c480 r __ksymtab_generic_splice_sendpage
+ffffffc008a4c48c r __ksymtab_generic_update_time
+ffffffc008a4c498 r __ksymtab_generic_write_checks
+ffffffc008a4c4a4 r __ksymtab_generic_write_checks_count
+ffffffc008a4c4b0 r __ksymtab_generic_write_end
+ffffffc008a4c4bc r __ksymtab_generic_writepages
+ffffffc008a4c4c8 r __ksymtab_genl_lock
+ffffffc008a4c4d4 r __ksymtab_genl_notify
+ffffffc008a4c4e0 r __ksymtab_genl_register_family
+ffffffc008a4c4ec r __ksymtab_genl_unlock
+ffffffc008a4c4f8 r __ksymtab_genl_unregister_family
+ffffffc008a4c504 r __ksymtab_genlmsg_multicast_allns
+ffffffc008a4c510 r __ksymtab_genlmsg_put
+ffffffc008a4c51c r __ksymtab_get_acl
+ffffffc008a4c528 r __ksymtab_get_anon_bdev
+ffffffc008a4c534 r __ksymtab_get_cached_acl
+ffffffc008a4c540 r __ksymtab_get_cached_acl_rcu
+ffffffc008a4c54c r __ksymtab_get_fs_type
+ffffffc008a4c558 r __ksymtab_get_next_ino
+ffffffc008a4c564 r __ksymtab_get_option
+ffffffc008a4c570 r __ksymtab_get_options
+ffffffc008a4c57c r __ksymtab_get_random_bytes
+ffffffc008a4c588 r __ksymtab_get_random_u16
+ffffffc008a4c594 r __ksymtab_get_random_u32
+ffffffc008a4c5a0 r __ksymtab_get_random_u64
+ffffffc008a4c5ac r __ksymtab_get_random_u8
+ffffffc008a4c5b8 r __ksymtab_get_task_cred
+ffffffc008a4c5c4 r __ksymtab_get_tree_bdev
+ffffffc008a4c5d0 r __ksymtab_get_tree_keyed
+ffffffc008a4c5dc r __ksymtab_get_tree_nodev
+ffffffc008a4c5e8 r __ksymtab_get_tree_single
+ffffffc008a4c5f4 r __ksymtab_get_tree_single_reconf
+ffffffc008a4c600 r __ksymtab_get_unmapped_area
+ffffffc008a4c60c r __ksymtab_get_unused_fd_flags
+ffffffc008a4c618 r __ksymtab_get_user_ifreq
+ffffffc008a4c624 r __ksymtab_get_user_pages
+ffffffc008a4c630 r __ksymtab_get_user_pages_remote
+ffffffc008a4c63c r __ksymtab_get_user_pages_unlocked
+ffffffc008a4c648 r __ksymtab_get_zeroed_page
+ffffffc008a4c654 r __ksymtab_gf128mul_4k_bbe
+ffffffc008a4c660 r __ksymtab_gf128mul_4k_lle
+ffffffc008a4c66c r __ksymtab_gf128mul_64k_bbe
+ffffffc008a4c678 r __ksymtab_gf128mul_bbe
+ffffffc008a4c684 r __ksymtab_gf128mul_free_64k
+ffffffc008a4c690 r __ksymtab_gf128mul_init_4k_bbe
+ffffffc008a4c69c r __ksymtab_gf128mul_init_4k_lle
+ffffffc008a4c6a8 r __ksymtab_gf128mul_init_64k_bbe
+ffffffc008a4c6b4 r __ksymtab_gf128mul_lle
+ffffffc008a4c6c0 r __ksymtab_gf128mul_x8_ble
+ffffffc008a4c6cc r __ksymtab_gic_nonsecure_priorities
+ffffffc008a4c6d8 r __ksymtab_gic_pmr_sync
+ffffffc008a4c6e4 r __ksymtab_give_up_console
+ffffffc008a4c6f0 r __ksymtab_glob_match
+ffffffc008a4c6fc r __ksymtab_global_cursor_default
+ffffffc008a4c708 r __ksymtab_gnet_stats_add_basic
+ffffffc008a4c714 r __ksymtab_gnet_stats_add_queue
+ffffffc008a4c720 r __ksymtab_gnet_stats_basic_sync_init
+ffffffc008a4c72c r __ksymtab_gnet_stats_copy_app
+ffffffc008a4c738 r __ksymtab_gnet_stats_copy_basic
+ffffffc008a4c744 r __ksymtab_gnet_stats_copy_basic_hw
+ffffffc008a4c750 r __ksymtab_gnet_stats_copy_queue
+ffffffc008a4c75c r __ksymtab_gnet_stats_copy_rate_est
+ffffffc008a4c768 r __ksymtab_gnet_stats_finish_copy
+ffffffc008a4c774 r __ksymtab_gnet_stats_start_copy
+ffffffc008a4c780 r __ksymtab_gnet_stats_start_copy_compat
+ffffffc008a4c78c r __ksymtab_grab_cache_page_write_begin
+ffffffc008a4c798 r __ksymtab_gre_parse_header
+ffffffc008a4c7a4 r __ksymtab_gro_cells_destroy
+ffffffc008a4c7b0 r __ksymtab_gro_cells_init
+ffffffc008a4c7bc r __ksymtab_gro_cells_receive
+ffffffc008a4c7c8 r __ksymtab_gro_find_complete_by_type
+ffffffc008a4c7d4 r __ksymtab_gro_find_receive_by_type
+ffffffc008a4c7e0 r __ksymtab_groups_alloc
+ffffffc008a4c7ec r __ksymtab_groups_free
+ffffffc008a4c7f8 r __ksymtab_groups_sort
+ffffffc008a4c804 r __ksymtab_guid_null
+ffffffc008a4c810 r __ksymtab_guid_parse
+ffffffc008a4c81c r __ksymtab_handle_edge_irq
+ffffffc008a4c828 r __ksymtab_handle_sysrq
+ffffffc008a4c834 r __ksymtab_has_capability
+ffffffc008a4c840 r __ksymtab_has_capability_noaudit
+ffffffc008a4c84c r __ksymtab_hash_and_copy_to_iter
+ffffffc008a4c858 r __ksymtab_hashlen_string
+ffffffc008a4c864 r __ksymtab_hchacha_block_generic
+ffffffc008a4c870 r __ksymtab_hex2bin
+ffffffc008a4c87c r __ksymtab_hex_asc
+ffffffc008a4c888 r __ksymtab_hex_asc_upper
+ffffffc008a4c894 r __ksymtab_hex_dump_to_buffer
+ffffffc008a4c8a0 r __ksymtab_hex_to_bin
+ffffffc008a4c8ac r __ksymtab_high_memory
+ffffffc008a4c8b8 r __ksymtab_hsiphash_1u32
+ffffffc008a4c8c4 r __ksymtab_hsiphash_2u32
+ffffffc008a4c8d0 r __ksymtab_hsiphash_3u32
+ffffffc008a4c8dc r __ksymtab_hsiphash_4u32
+ffffffc008a4c8e8 r __ksymtab_icmp6_send
+ffffffc008a4c8f4 r __ksymtab_icmp_err_convert
+ffffffc008a4c900 r __ksymtab_icmp_global_allow
+ffffffc008a4c90c r __ksymtab_icmpv6_err_convert
+ffffffc008a4c918 r __ksymtab_ida_alloc_range
+ffffffc008a4c924 r __ksymtab_ida_destroy
+ffffffc008a4c930 r __ksymtab_ida_free
+ffffffc008a4c93c r __ksymtab_idr_alloc_cyclic
+ffffffc008a4c948 r __ksymtab_idr_destroy
+ffffffc008a4c954 r __ksymtab_idr_for_each
+ffffffc008a4c960 r __ksymtab_idr_get_next
+ffffffc008a4c96c r __ksymtab_idr_get_next_ul
+ffffffc008a4c978 r __ksymtab_idr_preload
+ffffffc008a4c984 r __ksymtab_idr_replace
+ffffffc008a4c990 r __ksymtab_iget5_locked
+ffffffc008a4c99c r __ksymtab_iget_failed
+ffffffc008a4c9a8 r __ksymtab_iget_locked
+ffffffc008a4c9b4 r __ksymtab_ignore_console_lock_warning
+ffffffc008a4c9c0 r __ksymtab_igrab
+ffffffc008a4c9cc r __ksymtab_ihold
+ffffffc008a4c9d8 r __ksymtab_ilookup
+ffffffc008a4c9e4 r __ksymtab_ilookup5
+ffffffc008a4c9f0 r __ksymtab_ilookup5_nowait
+ffffffc008a4c9fc r __ksymtab_import_iovec
+ffffffc008a4ca08 r __ksymtab_import_single_range
+ffffffc008a4ca14 r __ksymtab_in4_pton
+ffffffc008a4ca20 r __ksymtab_in6_dev_finish_destroy
+ffffffc008a4ca2c r __ksymtab_in6_pton
+ffffffc008a4ca38 r __ksymtab_in6addr_any
+ffffffc008a4ca44 r __ksymtab_in6addr_interfacelocal_allnodes
+ffffffc008a4ca50 r __ksymtab_in6addr_interfacelocal_allrouters
+ffffffc008a4ca5c r __ksymtab_in6addr_linklocal_allnodes
+ffffffc008a4ca68 r __ksymtab_in6addr_linklocal_allrouters
+ffffffc008a4ca74 r __ksymtab_in6addr_loopback
+ffffffc008a4ca80 r __ksymtab_in6addr_sitelocal_allrouters
+ffffffc008a4ca8c r __ksymtab_in_aton
+ffffffc008a4ca98 r __ksymtab_in_dev_finish_destroy
+ffffffc008a4caa4 r __ksymtab_in_egroup_p
+ffffffc008a4cab0 r __ksymtab_in_group_p
+ffffffc008a4cabc r __ksymtab_in_lock_functions
+ffffffc008a4cac8 r __ksymtab_inc_nlink
+ffffffc008a4cad4 r __ksymtab_inc_node_page_state
+ffffffc008a4cae0 r __ksymtab_inc_zone_page_state
+ffffffc008a4caec r __ksymtab_inet6_add_offload
+ffffffc008a4caf8 r __ksymtab_inet6_add_protocol
+ffffffc008a4cb04 r __ksymtab_inet6_bind
+ffffffc008a4cb10 r __ksymtab_inet6_csk_route_req
+ffffffc008a4cb1c r __ksymtab_inet6_del_offload
+ffffffc008a4cb28 r __ksymtab_inet6_del_protocol
+ffffffc008a4cb34 r __ksymtab_inet6_getname
+ffffffc008a4cb40 r __ksymtab_inet6_ioctl
+ffffffc008a4cb4c r __ksymtab_inet6_offloads
+ffffffc008a4cb58 r __ksymtab_inet6_protos
+ffffffc008a4cb64 r __ksymtab_inet6_register_protosw
+ffffffc008a4cb70 r __ksymtab_inet6_release
+ffffffc008a4cb7c r __ksymtab_inet6_unregister_protosw
+ffffffc008a4cb88 r __ksymtab_inet6addr_notifier_call_chain
+ffffffc008a4cb94 r __ksymtab_inet6addr_validator_notifier_call_chain
+ffffffc008a4cba0 r __ksymtab_inet_accept
+ffffffc008a4cbac r __ksymtab_inet_add_offload
+ffffffc008a4cbb8 r __ksymtab_inet_add_protocol
+ffffffc008a4cbc4 r __ksymtab_inet_addr_is_any
+ffffffc008a4cbd0 r __ksymtab_inet_addr_type
+ffffffc008a4cbdc r __ksymtab_inet_addr_type_dev_table
+ffffffc008a4cbe8 r __ksymtab_inet_addr_type_table
+ffffffc008a4cbf4 r __ksymtab_inet_bind
+ffffffc008a4cc00 r __ksymtab_inet_confirm_addr
+ffffffc008a4cc0c r __ksymtab_inet_csk_accept
+ffffffc008a4cc18 r __ksymtab_inet_csk_clear_xmit_timers
+ffffffc008a4cc24 r __ksymtab_inet_csk_complete_hashdance
+ffffffc008a4cc30 r __ksymtab_inet_csk_delete_keepalive_timer
+ffffffc008a4cc3c r __ksymtab_inet_csk_destroy_sock
+ffffffc008a4cc48 r __ksymtab_inet_csk_init_xmit_timers
+ffffffc008a4cc54 r __ksymtab_inet_csk_prepare_forced_close
+ffffffc008a4cc60 r __ksymtab_inet_csk_reqsk_queue_add
+ffffffc008a4cc6c r __ksymtab_inet_csk_reqsk_queue_drop
+ffffffc008a4cc78 r __ksymtab_inet_csk_reqsk_queue_drop_and_put
+ffffffc008a4cc84 r __ksymtab_inet_csk_reset_keepalive_timer
+ffffffc008a4cc90 r __ksymtab_inet_current_timestamp
+ffffffc008a4cc9c r __ksymtab_inet_del_offload
+ffffffc008a4cca8 r __ksymtab_inet_del_protocol
+ffffffc008a4ccb4 r __ksymtab_inet_dev_addr_type
+ffffffc008a4ccc0 r __ksymtab_inet_dgram_connect
+ffffffc008a4cccc r __ksymtab_inet_dgram_ops
+ffffffc008a4ccd8 r __ksymtab_inet_frag_destroy
+ffffffc008a4cce4 r __ksymtab_inet_frag_find
+ffffffc008a4ccf0 r __ksymtab_inet_frag_kill
+ffffffc008a4ccfc r __ksymtab_inet_frag_pull_head
+ffffffc008a4cd08 r __ksymtab_inet_frag_queue_insert
+ffffffc008a4cd14 r __ksymtab_inet_frag_rbtree_purge
+ffffffc008a4cd20 r __ksymtab_inet_frag_reasm_finish
+ffffffc008a4cd2c r __ksymtab_inet_frag_reasm_prepare
+ffffffc008a4cd38 r __ksymtab_inet_frags_fini
+ffffffc008a4cd44 r __ksymtab_inet_frags_init
+ffffffc008a4cd50 r __ksymtab_inet_get_local_port_range
+ffffffc008a4cd5c r __ksymtab_inet_getname
+ffffffc008a4cd68 r __ksymtab_inet_ioctl
+ffffffc008a4cd74 r __ksymtab_inet_listen
+ffffffc008a4cd80 r __ksymtab_inet_offloads
+ffffffc008a4cd8c r __ksymtab_inet_peer_xrlim_allow
+ffffffc008a4cd98 r __ksymtab_inet_proto_csum_replace16
+ffffffc008a4cda4 r __ksymtab_inet_proto_csum_replace4
+ffffffc008a4cdb0 r __ksymtab_inet_proto_csum_replace_by_diff
+ffffffc008a4cdbc r __ksymtab_inet_protos
+ffffffc008a4cdc8 r __ksymtab_inet_pton_with_scope
+ffffffc008a4cdd4 r __ksymtab_inet_put_port
+ffffffc008a4cde0 r __ksymtab_inet_rcv_saddr_equal
+ffffffc008a4cdec r __ksymtab_inet_recvmsg
+ffffffc008a4cdf8 r __ksymtab_inet_register_protosw
+ffffffc008a4ce04 r __ksymtab_inet_release
+ffffffc008a4ce10 r __ksymtab_inet_reqsk_alloc
+ffffffc008a4ce1c r __ksymtab_inet_rtx_syn_ack
+ffffffc008a4ce28 r __ksymtab_inet_select_addr
+ffffffc008a4ce34 r __ksymtab_inet_sendmsg
+ffffffc008a4ce40 r __ksymtab_inet_sendpage
+ffffffc008a4ce4c r __ksymtab_inet_shutdown
+ffffffc008a4ce58 r __ksymtab_inet_sk_get_local_port_range
+ffffffc008a4ce64 r __ksymtab_inet_sk_rebuild_header
+ffffffc008a4ce70 r __ksymtab_inet_sk_rx_dst_set
+ffffffc008a4ce7c r __ksymtab_inet_sk_set_state
+ffffffc008a4ce88 r __ksymtab_inet_sock_destruct
+ffffffc008a4ce94 r __ksymtab_inet_stream_connect
+ffffffc008a4cea0 r __ksymtab_inet_stream_ops
+ffffffc008a4ceac r __ksymtab_inet_twsk_deschedule_put
+ffffffc008a4ceb8 r __ksymtab_inet_unregister_protosw
+ffffffc008a4cec4 r __ksymtab_inetdev_by_index
+ffffffc008a4ced0 r __ksymtab_inetpeer_invalidate_tree
+ffffffc008a4cedc r __ksymtab_init_net
+ffffffc008a4cee8 r __ksymtab_init_on_alloc
+ffffffc008a4cef4 r __ksymtab_init_on_free
+ffffffc008a4cf00 r __ksymtab_init_pseudo
+ffffffc008a4cf0c r __ksymtab_init_special_inode
+ffffffc008a4cf18 r __ksymtab_init_task
+ffffffc008a4cf24 r __ksymtab_init_timer_key
+ffffffc008a4cf30 r __ksymtab_init_wait_entry
+ffffffc008a4cf3c r __ksymtab_init_wait_var_entry
+ffffffc008a4cf48 r __ksymtab_inode_add_bytes
+ffffffc008a4cf54 r __ksymtab_inode_dio_wait
+ffffffc008a4cf60 r __ksymtab_inode_get_bytes
+ffffffc008a4cf6c r __ksymtab_inode_init_always
+ffffffc008a4cf78 r __ksymtab_inode_init_once
+ffffffc008a4cf84 r __ksymtab_inode_init_owner
+ffffffc008a4cf90 r __ksymtab_inode_insert5
+ffffffc008a4cf9c r __ksymtab_inode_io_list_del
+ffffffc008a4cfa8 r __ksymtab_inode_maybe_inc_iversion
+ffffffc008a4cfb4 r __ksymtab_inode_needs_sync
+ffffffc008a4cfc0 r __ksymtab_inode_newsize_ok
+ffffffc008a4cfcc r __ksymtab_inode_nohighmem
+ffffffc008a4cfd8 r __ksymtab_inode_owner_or_capable
+ffffffc008a4cfe4 r __ksymtab_inode_permission
+ffffffc008a4cff0 r __ksymtab_inode_set_bytes
+ffffffc008a4cffc r __ksymtab_inode_set_flags
+ffffffc008a4d008 r __ksymtab_inode_sub_bytes
+ffffffc008a4d014 r __ksymtab_inode_to_bdi
+ffffffc008a4d020 r __ksymtab_inode_update_time
+ffffffc008a4d02c r __ksymtab_input_alloc_absinfo
+ffffffc008a4d038 r __ksymtab_input_allocate_device
+ffffffc008a4d044 r __ksymtab_input_close_device
+ffffffc008a4d050 r __ksymtab_input_copy_abs
+ffffffc008a4d05c r __ksymtab_input_enable_softrepeat
+ffffffc008a4d068 r __ksymtab_input_event
+ffffffc008a4d074 r __ksymtab_input_flush_device
+ffffffc008a4d080 r __ksymtab_input_free_device
+ffffffc008a4d08c r __ksymtab_input_free_minor
+ffffffc008a4d098 r __ksymtab_input_get_keycode
+ffffffc008a4d0a4 r __ksymtab_input_get_new_minor
+ffffffc008a4d0b0 r __ksymtab_input_get_poll_interval
+ffffffc008a4d0bc r __ksymtab_input_get_timestamp
+ffffffc008a4d0c8 r __ksymtab_input_grab_device
+ffffffc008a4d0d4 r __ksymtab_input_handler_for_each_handle
+ffffffc008a4d0e0 r __ksymtab_input_inject_event
+ffffffc008a4d0ec r __ksymtab_input_match_device_id
+ffffffc008a4d0f8 r __ksymtab_input_mt_assign_slots
+ffffffc008a4d104 r __ksymtab_input_mt_destroy_slots
+ffffffc008a4d110 r __ksymtab_input_mt_drop_unused
+ffffffc008a4d11c r __ksymtab_input_mt_get_slot_by_key
+ffffffc008a4d128 r __ksymtab_input_mt_init_slots
+ffffffc008a4d134 r __ksymtab_input_mt_report_finger_count
+ffffffc008a4d140 r __ksymtab_input_mt_report_pointer_emulation
+ffffffc008a4d14c r __ksymtab_input_mt_report_slot_state
+ffffffc008a4d158 r __ksymtab_input_mt_sync_frame
+ffffffc008a4d164 r __ksymtab_input_open_device
+ffffffc008a4d170 r __ksymtab_input_register_device
+ffffffc008a4d17c r __ksymtab_input_register_handle
+ffffffc008a4d188 r __ksymtab_input_register_handler
+ffffffc008a4d194 r __ksymtab_input_release_device
+ffffffc008a4d1a0 r __ksymtab_input_reset_device
+ffffffc008a4d1ac r __ksymtab_input_scancode_to_scalar
+ffffffc008a4d1b8 r __ksymtab_input_set_abs_params
+ffffffc008a4d1c4 r __ksymtab_input_set_capability
+ffffffc008a4d1d0 r __ksymtab_input_set_keycode
+ffffffc008a4d1dc r __ksymtab_input_set_max_poll_interval
+ffffffc008a4d1e8 r __ksymtab_input_set_min_poll_interval
+ffffffc008a4d1f4 r __ksymtab_input_set_poll_interval
+ffffffc008a4d200 r __ksymtab_input_set_timestamp
+ffffffc008a4d20c r __ksymtab_input_setup_polling
+ffffffc008a4d218 r __ksymtab_input_unregister_device
+ffffffc008a4d224 r __ksymtab_input_unregister_handle
+ffffffc008a4d230 r __ksymtab_input_unregister_handler
+ffffffc008a4d23c r __ksymtab_insert_inode_locked
+ffffffc008a4d248 r __ksymtab_insert_inode_locked4
+ffffffc008a4d254 r __ksymtab_int_sqrt
+ffffffc008a4d260 r __ksymtab_invalidate_bdev
+ffffffc008a4d26c r __ksymtab_invalidate_disk
+ffffffc008a4d278 r __ksymtab_invalidate_inode_buffers
+ffffffc008a4d284 r __ksymtab_invalidate_mapping_pages
+ffffffc008a4d290 r __ksymtab_io_schedule
+ffffffc008a4d29c r __ksymtab_io_schedule_timeout
+ffffffc008a4d2a8 r __ksymtab_io_uring_get_socket
+ffffffc008a4d2b4 r __ksymtab_ioc_lookup_icq
+ffffffc008a4d2c0 r __ksymtab_iomem_resource
+ffffffc008a4d2cc r __ksymtab_iommu_dma_get_resv_regions
+ffffffc008a4d2d8 r __ksymtab_iommu_get_msi_cookie
+ffffffc008a4d2e4 r __ksymtab_iommu_put_resv_regions
+ffffffc008a4d2f0 r __ksymtab_ioport_resource
+ffffffc008a4d2fc r __ksymtab_ioremap_prot
+ffffffc008a4d308 r __ksymtab_iounmap
+ffffffc008a4d314 r __ksymtab_iov_iter_advance
+ffffffc008a4d320 r __ksymtab_iov_iter_alignment
+ffffffc008a4d32c r __ksymtab_iov_iter_bvec
+ffffffc008a4d338 r __ksymtab_iov_iter_discard
+ffffffc008a4d344 r __ksymtab_iov_iter_gap_alignment
+ffffffc008a4d350 r __ksymtab_iov_iter_get_pages2
+ffffffc008a4d35c r __ksymtab_iov_iter_get_pages_alloc2
+ffffffc008a4d368 r __ksymtab_iov_iter_init
+ffffffc008a4d374 r __ksymtab_iov_iter_kvec
+ffffffc008a4d380 r __ksymtab_iov_iter_npages
+ffffffc008a4d38c r __ksymtab_iov_iter_pipe
+ffffffc008a4d398 r __ksymtab_iov_iter_revert
+ffffffc008a4d3a4 r __ksymtab_iov_iter_single_seg_count
+ffffffc008a4d3b0 r __ksymtab_iov_iter_xarray
+ffffffc008a4d3bc r __ksymtab_iov_iter_zero
+ffffffc008a4d3c8 r __ksymtab_ip4_datagram_connect
+ffffffc008a4d3d4 r __ksymtab_ip6_dst_alloc
+ffffffc008a4d3e0 r __ksymtab_ip6_dst_hoplimit
+ffffffc008a4d3ec r __ksymtab_ip6_err_gen_icmpv6_unreach
+ffffffc008a4d3f8 r __ksymtab_ip6_find_1stfragopt
+ffffffc008a4d404 r __ksymtab_ip6_frag_init
+ffffffc008a4d410 r __ksymtab_ip6_frag_next
+ffffffc008a4d41c r __ksymtab_ip6_fraglist_init
+ffffffc008a4d428 r __ksymtab_ip6_fraglist_prepare
+ffffffc008a4d434 r __ksymtab_ip6_output
+ffffffc008a4d440 r __ksymtab_ip6_tnl_change_mtu
+ffffffc008a4d44c r __ksymtab_ip6_tnl_encap_add_ops
+ffffffc008a4d458 r __ksymtab_ip6_tnl_encap_del_ops
+ffffffc008a4d464 r __ksymtab_ip6_tnl_get_cap
+ffffffc008a4d470 r __ksymtab_ip6_tnl_get_iflink
+ffffffc008a4d47c r __ksymtab_ip6_tnl_get_link_net
+ffffffc008a4d488 r __ksymtab_ip6_tnl_parse_tlv_enc_lim
+ffffffc008a4d494 r __ksymtab_ip6_tnl_rcv
+ffffffc008a4d4a0 r __ksymtab_ip6_tnl_xmit
+ffffffc008a4d4ac r __ksymtab_ip6_xmit
+ffffffc008a4d4b8 r __ksymtab_ip6tun_encaps
+ffffffc008a4d4c4 r __ksymtab_ip_check_defrag
+ffffffc008a4d4d0 r __ksymtab_ip_cmsg_recv_offset
+ffffffc008a4d4dc r __ksymtab_ip_compute_csum
+ffffffc008a4d4e8 r __ksymtab_ip_defrag
+ffffffc008a4d4f4 r __ksymtab_ip_do_fragment
+ffffffc008a4d500 r __ksymtab_ip_frag_ecn_table
+ffffffc008a4d50c r __ksymtab_ip_frag_init
+ffffffc008a4d518 r __ksymtab_ip_frag_next
+ffffffc008a4d524 r __ksymtab_ip_fraglist_init
+ffffffc008a4d530 r __ksymtab_ip_fraglist_prepare
+ffffffc008a4d53c r __ksymtab_ip_generic_getfrag
+ffffffc008a4d548 r __ksymtab_ip_getsockopt
+ffffffc008a4d554 r __ksymtab_ip_local_deliver
+ffffffc008a4d560 r __ksymtab_ip_mc_check_igmp
+ffffffc008a4d56c r __ksymtab_ip_mc_inc_group
+ffffffc008a4d578 r __ksymtab_ip_mc_join_group
+ffffffc008a4d584 r __ksymtab_ip_mc_leave_group
+ffffffc008a4d590 r __ksymtab_ip_options_compile
+ffffffc008a4d59c r __ksymtab_ip_options_rcv_srr
+ffffffc008a4d5a8 r __ksymtab_ip_output
+ffffffc008a4d5b4 r __ksymtab_ip_queue_xmit
+ffffffc008a4d5c0 r __ksymtab_ip_route_input_noref
+ffffffc008a4d5cc r __ksymtab_ip_send_check
+ffffffc008a4d5d8 r __ksymtab_ip_setsockopt
+ffffffc008a4d5e4 r __ksymtab_ip_sock_set_freebind
+ffffffc008a4d5f0 r __ksymtab_ip_sock_set_mtu_discover
+ffffffc008a4d5fc r __ksymtab_ip_sock_set_pktinfo
+ffffffc008a4d608 r __ksymtab_ip_sock_set_recverr
+ffffffc008a4d614 r __ksymtab_ip_sock_set_tos
+ffffffc008a4d620 r __ksymtab_ip_tos2prio
+ffffffc008a4d62c r __ksymtab_ip_tunnel_encap_add_ops
+ffffffc008a4d638 r __ksymtab_ip_tunnel_encap_del_ops
+ffffffc008a4d644 r __ksymtab_ip_tunnel_get_iflink
+ffffffc008a4d650 r __ksymtab_ip_tunnel_get_link_net
+ffffffc008a4d65c r __ksymtab_ip_tunnel_header_ops
+ffffffc008a4d668 r __ksymtab_ip_tunnel_metadata_cnt
+ffffffc008a4d674 r __ksymtab_ip_tunnel_parse_protocol
+ffffffc008a4d680 r __ksymtab_iptun_encaps
+ffffffc008a4d68c r __ksymtab_iput
+ffffffc008a4d698 r __ksymtab_ipv4_specific
+ffffffc008a4d6a4 r __ksymtab_ipv6_chk_addr
+ffffffc008a4d6b0 r __ksymtab_ipv6_chk_addr_and_flags
+ffffffc008a4d6bc r __ksymtab_ipv6_chk_custom_prefix
+ffffffc008a4d6c8 r __ksymtab_ipv6_chk_prefix
+ffffffc008a4d6d4 r __ksymtab_ipv6_dev_find
+ffffffc008a4d6e0 r __ksymtab_ipv6_dev_get_saddr
+ffffffc008a4d6ec r __ksymtab_ipv6_dev_mc_dec
+ffffffc008a4d6f8 r __ksymtab_ipv6_dev_mc_inc
+ffffffc008a4d704 r __ksymtab_ipv6_ext_hdr
+ffffffc008a4d710 r __ksymtab_ipv6_find_hdr
+ffffffc008a4d71c r __ksymtab_ipv6_flowlabel_exclusive
+ffffffc008a4d728 r __ksymtab_ipv6_getsockopt
+ffffffc008a4d734 r __ksymtab_ipv6_mc_check_mld
+ffffffc008a4d740 r __ksymtab_ipv6_push_frag_opts
+ffffffc008a4d74c r __ksymtab_ipv6_select_ident
+ffffffc008a4d758 r __ksymtab_ipv6_setsockopt
+ffffffc008a4d764 r __ksymtab_ipv6_skip_exthdr
+ffffffc008a4d770 r __ksymtab_ipv6_sock_mc_drop
+ffffffc008a4d77c r __ksymtab_ipv6_sock_mc_join
+ffffffc008a4d788 r __ksymtab_irq_cpu_rmap_add
+ffffffc008a4d794 r __ksymtab_irq_domain_set_info
+ffffffc008a4d7a0 r __ksymtab_irq_set_chip
+ffffffc008a4d7ac r __ksymtab_irq_set_chip_data
+ffffffc008a4d7b8 r __ksymtab_irq_set_handler_data
+ffffffc008a4d7c4 r __ksymtab_irq_set_irq_type
+ffffffc008a4d7d0 r __ksymtab_irq_set_irq_wake
+ffffffc008a4d7dc r __ksymtab_irq_stat
+ffffffc008a4d7e8 r __ksymtab_is_bad_inode
+ffffffc008a4d7f4 r __ksymtab_is_console_locked
+ffffffc008a4d800 r __ksymtab_is_free_buddy_page
+ffffffc008a4d80c r __ksymtab_is_subdir
+ffffffc008a4d818 r __ksymtab_is_vmalloc_addr
+ffffffc008a4d824 r __ksymtab_iter_div_u64_rem
+ffffffc008a4d830 r __ksymtab_iter_file_splice_write
+ffffffc008a4d83c r __ksymtab_iterate_dir
+ffffffc008a4d848 r __ksymtab_iterate_fd
+ffffffc008a4d854 r __ksymtab_iterate_supers_type
+ffffffc008a4d860 r __ksymtab_iunique
+ffffffc008a4d86c r __ksymtab_jbd2__journal_restart
+ffffffc008a4d878 r __ksymtab_jbd2__journal_start
+ffffffc008a4d884 r __ksymtab_jbd2_complete_transaction
+ffffffc008a4d890 r __ksymtab_jbd2_fc_begin_commit
+ffffffc008a4d89c r __ksymtab_jbd2_fc_end_commit
+ffffffc008a4d8a8 r __ksymtab_jbd2_fc_end_commit_fallback
+ffffffc008a4d8b4 r __ksymtab_jbd2_fc_get_buf
+ffffffc008a4d8c0 r __ksymtab_jbd2_fc_release_bufs
+ffffffc008a4d8cc r __ksymtab_jbd2_fc_wait_bufs
+ffffffc008a4d8d8 r __ksymtab_jbd2_inode_cache
+ffffffc008a4d8e4 r __ksymtab_jbd2_journal_abort
+ffffffc008a4d8f0 r __ksymtab_jbd2_journal_ack_err
+ffffffc008a4d8fc r __ksymtab_jbd2_journal_begin_ordered_truncate
+ffffffc008a4d908 r __ksymtab_jbd2_journal_blocks_per_page
+ffffffc008a4d914 r __ksymtab_jbd2_journal_check_available_features
+ffffffc008a4d920 r __ksymtab_jbd2_journal_check_used_features
+ffffffc008a4d92c r __ksymtab_jbd2_journal_clear_err
+ffffffc008a4d938 r __ksymtab_jbd2_journal_clear_features
+ffffffc008a4d944 r __ksymtab_jbd2_journal_destroy
+ffffffc008a4d950 r __ksymtab_jbd2_journal_dirty_metadata
+ffffffc008a4d95c r __ksymtab_jbd2_journal_errno
+ffffffc008a4d968 r __ksymtab_jbd2_journal_extend
+ffffffc008a4d974 r __ksymtab_jbd2_journal_finish_inode_data_buffers
+ffffffc008a4d980 r __ksymtab_jbd2_journal_flush
+ffffffc008a4d98c r __ksymtab_jbd2_journal_force_commit
+ffffffc008a4d998 r __ksymtab_jbd2_journal_force_commit_nested
+ffffffc008a4d9a4 r __ksymtab_jbd2_journal_forget
+ffffffc008a4d9b0 r __ksymtab_jbd2_journal_free_reserved
+ffffffc008a4d9bc r __ksymtab_jbd2_journal_get_create_access
+ffffffc008a4d9c8 r __ksymtab_jbd2_journal_get_undo_access
+ffffffc008a4d9d4 r __ksymtab_jbd2_journal_get_write_access
+ffffffc008a4d9e0 r __ksymtab_jbd2_journal_grab_journal_head
+ffffffc008a4d9ec r __ksymtab_jbd2_journal_init_dev
+ffffffc008a4d9f8 r __ksymtab_jbd2_journal_init_inode
+ffffffc008a4da04 r __ksymtab_jbd2_journal_init_jbd_inode
+ffffffc008a4da10 r __ksymtab_jbd2_journal_inode_ranged_wait
+ffffffc008a4da1c r __ksymtab_jbd2_journal_inode_ranged_write
+ffffffc008a4da28 r __ksymtab_jbd2_journal_invalidate_folio
+ffffffc008a4da34 r __ksymtab_jbd2_journal_load
+ffffffc008a4da40 r __ksymtab_jbd2_journal_lock_updates
+ffffffc008a4da4c r __ksymtab_jbd2_journal_put_journal_head
+ffffffc008a4da58 r __ksymtab_jbd2_journal_release_jbd_inode
+ffffffc008a4da64 r __ksymtab_jbd2_journal_restart
+ffffffc008a4da70 r __ksymtab_jbd2_journal_revoke
+ffffffc008a4da7c r __ksymtab_jbd2_journal_set_features
+ffffffc008a4da88 r __ksymtab_jbd2_journal_set_triggers
+ffffffc008a4da94 r __ksymtab_jbd2_journal_start
+ffffffc008a4daa0 r __ksymtab_jbd2_journal_start_commit
+ffffffc008a4daac r __ksymtab_jbd2_journal_start_reserved
+ffffffc008a4dab8 r __ksymtab_jbd2_journal_stop
+ffffffc008a4dac4 r __ksymtab_jbd2_journal_submit_inode_data_buffers
+ffffffc008a4dad0 r __ksymtab_jbd2_journal_try_to_free_buffers
+ffffffc008a4dadc r __ksymtab_jbd2_journal_unlock_updates
+ffffffc008a4dae8 r __ksymtab_jbd2_journal_update_sb_errno
+ffffffc008a4daf4 r __ksymtab_jbd2_journal_wipe
+ffffffc008a4db00 r __ksymtab_jbd2_log_wait_commit
+ffffffc008a4db0c r __ksymtab_jbd2_submit_inode_data
+ffffffc008a4db18 r __ksymtab_jbd2_trans_will_send_data_barrier
+ffffffc008a4db24 r __ksymtab_jbd2_transaction_committed
+ffffffc008a4db30 r __ksymtab_jbd2_wait_inode_data
+ffffffc008a4db3c r __ksymtab_jiffies
+ffffffc008a4db48 r __ksymtab_jiffies64_to_msecs
+ffffffc008a4db54 r __ksymtab_jiffies64_to_nsecs
+ffffffc008a4db60 r __ksymtab_jiffies_64
+ffffffc008a4db6c r __ksymtab_jiffies_64_to_clock_t
+ffffffc008a4db78 r __ksymtab_jiffies_to_clock_t
+ffffffc008a4db84 r __ksymtab_jiffies_to_msecs
+ffffffc008a4db90 r __ksymtab_jiffies_to_timespec64
+ffffffc008a4db9c r __ksymtab_jiffies_to_usecs
+ffffffc008a4dba8 r __ksymtab_kasan_flag_enabled
+ffffffc008a4dbb4 r __ksymtab_kasprintf
+ffffffc008a4dbc0 r __ksymtab_kblockd_mod_delayed_work_on
+ffffffc008a4dbcc r __ksymtab_kblockd_schedule_work
+ffffffc008a4dbd8 r __ksymtab_kd_mksound
+ffffffc008a4dbe4 r __ksymtab_kern_path
+ffffffc008a4dbf0 r __ksymtab_kern_path_create
+ffffffc008a4dbfc r __ksymtab_kern_unmount
+ffffffc008a4dc08 r __ksymtab_kern_unmount_array
+ffffffc008a4dc14 r __ksymtab_kernel_accept
+ffffffc008a4dc20 r __ksymtab_kernel_bind
+ffffffc008a4dc2c r __ksymtab_kernel_connect
+ffffffc008a4dc38 r __ksymtab_kernel_cpustat
+ffffffc008a4dc44 r __ksymtab_kernel_getpeername
+ffffffc008a4dc50 r __ksymtab_kernel_getsockname
+ffffffc008a4dc5c r __ksymtab_kernel_listen
+ffffffc008a4dc68 r __ksymtab_kernel_neon_begin
+ffffffc008a4dc74 r __ksymtab_kernel_neon_end
+ffffffc008a4dc80 r __ksymtab_kernel_param_lock
+ffffffc008a4dc8c r __ksymtab_kernel_param_unlock
+ffffffc008a4dc98 r __ksymtab_kernel_read
+ffffffc008a4dca4 r __ksymtab_kernel_recvmsg
+ffffffc008a4dcb0 r __ksymtab_kernel_sendmsg
+ffffffc008a4dcbc r __ksymtab_kernel_sendmsg_locked
+ffffffc008a4dcc8 r __ksymtab_kernel_sendpage
+ffffffc008a4dcd4 r __ksymtab_kernel_sendpage_locked
+ffffffc008a4dce0 r __ksymtab_kernel_sigaction
+ffffffc008a4dcec r __ksymtab_kernel_sock_ip_overhead
+ffffffc008a4dcf8 r __ksymtab_kernel_sock_shutdown
+ffffffc008a4dd04 r __ksymtab_kernel_write
+ffffffc008a4dd10 r __ksymtab_kfree
+ffffffc008a4dd1c r __ksymtab_kfree_const
+ffffffc008a4dd28 r __ksymtab_kfree_link
+ffffffc008a4dd34 r __ksymtab_kfree_sensitive
+ffffffc008a4dd40 r __ksymtab_kfree_skb_list_reason
+ffffffc008a4dd4c r __ksymtab_kfree_skb_partial
+ffffffc008a4dd58 r __ksymtab_kfree_skb_reason
+ffffffc008a4dd64 r __ksymtab_kill_anon_super
+ffffffc008a4dd70 r __ksymtab_kill_block_super
+ffffffc008a4dd7c r __ksymtab_kill_fasync
+ffffffc008a4dd88 r __ksymtab_kill_litter_super
+ffffffc008a4dd94 r __ksymtab_kill_pgrp
+ffffffc008a4dda0 r __ksymtab_kill_pid
+ffffffc008a4ddac r __ksymtab_kimage_vaddr
+ffffffc008a4ddb8 r __ksymtab_kimage_voffset
+ffffffc008a4ddc4 r __ksymtab_kiocb_set_cancel_fn
+ffffffc008a4ddd0 r __ksymtab_km_migrate
+ffffffc008a4dddc r __ksymtab_km_new_mapping
+ffffffc008a4dde8 r __ksymtab_km_policy_expired
+ffffffc008a4ddf4 r __ksymtab_km_policy_notify
+ffffffc008a4de00 r __ksymtab_km_query
+ffffffc008a4de0c r __ksymtab_km_report
+ffffffc008a4de18 r __ksymtab_km_state_expired
+ffffffc008a4de24 r __ksymtab_km_state_notify
+ffffffc008a4de30 r __ksymtab_kmalloc_caches
+ffffffc008a4de3c r __ksymtab_kmalloc_large
+ffffffc008a4de48 r __ksymtab_kmalloc_large_node
+ffffffc008a4de54 r __ksymtab_kmalloc_node_trace
+ffffffc008a4de60 r __ksymtab_kmalloc_size_roundup
+ffffffc008a4de6c r __ksymtab_kmalloc_trace
+ffffffc008a4de78 r __ksymtab_kmem_cache_alloc
+ffffffc008a4de84 r __ksymtab_kmem_cache_alloc_bulk
+ffffffc008a4de90 r __ksymtab_kmem_cache_alloc_lru
+ffffffc008a4de9c r __ksymtab_kmem_cache_alloc_node
+ffffffc008a4dea8 r __ksymtab_kmem_cache_create
+ffffffc008a4deb4 r __ksymtab_kmem_cache_create_usercopy
+ffffffc008a4dec0 r __ksymtab_kmem_cache_destroy
+ffffffc008a4decc r __ksymtab_kmem_cache_free
+ffffffc008a4ded8 r __ksymtab_kmem_cache_free_bulk
+ffffffc008a4dee4 r __ksymtab_kmem_cache_shrink
+ffffffc008a4def0 r __ksymtab_kmem_cache_size
+ffffffc008a4defc r __ksymtab_kmemdup
+ffffffc008a4df08 r __ksymtab_kmemdup_nul
+ffffffc008a4df14 r __ksymtab_kobject_add
+ffffffc008a4df20 r __ksymtab_kobject_del
+ffffffc008a4df2c r __ksymtab_kobject_get
+ffffffc008a4df38 r __ksymtab_kobject_get_unless_zero
+ffffffc008a4df44 r __ksymtab_kobject_init
+ffffffc008a4df50 r __ksymtab_kobject_put
+ffffffc008a4df5c r __ksymtab_kobject_set_name
+ffffffc008a4df68 r __ksymtab_krealloc
+ffffffc008a4df74 r __ksymtab_kset_register
+ffffffc008a4df80 r __ksymtab_kset_unregister
+ffffffc008a4df8c r __ksymtab_ksize
+ffffffc008a4df98 r __ksymtab_kstat
+ffffffc008a4dfa4 r __ksymtab_kstrdup
+ffffffc008a4dfb0 r __ksymtab_kstrdup_const
+ffffffc008a4dfbc r __ksymtab_kstrndup
+ffffffc008a4dfc8 r __ksymtab_kstrtobool
+ffffffc008a4dfd4 r __ksymtab_kstrtobool_from_user
+ffffffc008a4dfe0 r __ksymtab_kstrtoint
+ffffffc008a4dfec r __ksymtab_kstrtoint_from_user
+ffffffc008a4dff8 r __ksymtab_kstrtol_from_user
+ffffffc008a4e004 r __ksymtab_kstrtoll
+ffffffc008a4e010 r __ksymtab_kstrtoll_from_user
+ffffffc008a4e01c r __ksymtab_kstrtos16
+ffffffc008a4e028 r __ksymtab_kstrtos16_from_user
+ffffffc008a4e034 r __ksymtab_kstrtos8
+ffffffc008a4e040 r __ksymtab_kstrtos8_from_user
+ffffffc008a4e04c r __ksymtab_kstrtou16
+ffffffc008a4e058 r __ksymtab_kstrtou16_from_user
+ffffffc008a4e064 r __ksymtab_kstrtou8
+ffffffc008a4e070 r __ksymtab_kstrtou8_from_user
+ffffffc008a4e07c r __ksymtab_kstrtouint
+ffffffc008a4e088 r __ksymtab_kstrtouint_from_user
+ffffffc008a4e094 r __ksymtab_kstrtoul_from_user
+ffffffc008a4e0a0 r __ksymtab_kstrtoull
+ffffffc008a4e0ac r __ksymtab_kstrtoull_from_user
+ffffffc008a4e0b8 r __ksymtab_kthread_bind
+ffffffc008a4e0c4 r __ksymtab_kthread_complete_and_exit
+ffffffc008a4e0d0 r __ksymtab_kthread_create_on_cpu
+ffffffc008a4e0dc r __ksymtab_kthread_create_on_node
+ffffffc008a4e0e8 r __ksymtab_kthread_create_worker
+ffffffc008a4e0f4 r __ksymtab_kthread_create_worker_on_cpu
+ffffffc008a4e100 r __ksymtab_kthread_delayed_work_timer_fn
+ffffffc008a4e10c r __ksymtab_kthread_destroy_worker
+ffffffc008a4e118 r __ksymtab_kthread_should_stop
+ffffffc008a4e124 r __ksymtab_kthread_stop
+ffffffc008a4e130 r __ksymtab_ktime_get_coarse_real_ts64
+ffffffc008a4e13c r __ksymtab_ktime_get_coarse_ts64
+ffffffc008a4e148 r __ksymtab_ktime_get_raw_ts64
+ffffffc008a4e154 r __ksymtab_ktime_get_real_ts64
+ffffffc008a4e160 r __ksymtab_kvasprintf
+ffffffc008a4e16c r __ksymtab_kvasprintf_const
+ffffffc008a4e178 r __ksymtab_kvfree
+ffffffc008a4e184 r __ksymtab_kvfree_sensitive
+ffffffc008a4e190 r __ksymtab_kvmalloc_node
+ffffffc008a4e19c r __ksymtab_kvrealloc
+ffffffc008a4e1a8 r __ksymtab_laptop_mode
+ffffffc008a4e1b4 r __ksymtab_lease_get_mtime
+ffffffc008a4e1c0 r __ksymtab_lease_modify
+ffffffc008a4e1cc r __ksymtab_linkwatch_fire_event
+ffffffc008a4e1d8 r __ksymtab_list_sort
+ffffffc008a4e1e4 r __ksymtab_lock_rename
+ffffffc008a4e1f0 r __ksymtab_lock_sock_nested
+ffffffc008a4e1fc r __ksymtab_lock_two_nondirectories
+ffffffc008a4e208 r __ksymtab_lockref_get
+ffffffc008a4e214 r __ksymtab_lockref_get_not_dead
+ffffffc008a4e220 r __ksymtab_lockref_get_not_zero
+ffffffc008a4e22c r __ksymtab_lockref_mark_dead
+ffffffc008a4e238 r __ksymtab_lockref_put_not_zero
+ffffffc008a4e244 r __ksymtab_lockref_put_or_lock
+ffffffc008a4e250 r __ksymtab_lockref_put_return
+ffffffc008a4e25c r __ksymtab_locks_copy_conflock
+ffffffc008a4e268 r __ksymtab_locks_copy_lock
+ffffffc008a4e274 r __ksymtab_locks_delete_block
+ffffffc008a4e280 r __ksymtab_locks_free_lock
+ffffffc008a4e28c r __ksymtab_locks_init_lock
+ffffffc008a4e298 r __ksymtab_locks_lock_inode_wait
+ffffffc008a4e2a4 r __ksymtab_locks_remove_posix
+ffffffc008a4e2b0 r __ksymtab_logfc
+ffffffc008a4e2bc r __ksymtab_lookup_bdev
+ffffffc008a4e2c8 r __ksymtab_lookup_constant
+ffffffc008a4e2d4 r __ksymtab_lookup_one
+ffffffc008a4e2e0 r __ksymtab_lookup_one_len
+ffffffc008a4e2ec r __ksymtab_lookup_one_len_unlocked
+ffffffc008a4e2f8 r __ksymtab_lookup_one_positive_unlocked
+ffffffc008a4e304 r __ksymtab_lookup_one_unlocked
+ffffffc008a4e310 r __ksymtab_lookup_positive_unlocked
+ffffffc008a4e31c r __ksymtab_loops_per_jiffy
+ffffffc008a4e328 r __ksymtab_lru_cache_add
+ffffffc008a4e334 r __ksymtab_mac_pton
+ffffffc008a4e340 r __ksymtab_make_bad_inode
+ffffffc008a4e34c r __ksymtab_make_flow_keys_digest
+ffffffc008a4e358 r __ksymtab_mangle_path
+ffffffc008a4e364 r __ksymtab_mark_buffer_async_write
+ffffffc008a4e370 r __ksymtab_mark_buffer_dirty
+ffffffc008a4e37c r __ksymtab_mark_buffer_dirty_inode
+ffffffc008a4e388 r __ksymtab_mark_buffer_write_io_error
+ffffffc008a4e394 r __ksymtab_mark_page_accessed
+ffffffc008a4e3a0 r __ksymtab_match_hex
+ffffffc008a4e3ac r __ksymtab_match_int
+ffffffc008a4e3b8 r __ksymtab_match_octal
+ffffffc008a4e3c4 r __ksymtab_match_strdup
+ffffffc008a4e3d0 r __ksymtab_match_string
+ffffffc008a4e3dc r __ksymtab_match_strlcpy
+ffffffc008a4e3e8 r __ksymtab_match_token
+ffffffc008a4e3f4 r __ksymtab_match_u64
+ffffffc008a4e400 r __ksymtab_match_uint
+ffffffc008a4e40c r __ksymtab_match_wildcard
+ffffffc008a4e418 r __ksymtab_max_mapnr
+ffffffc008a4e424 r __ksymtab_may_setattr
+ffffffc008a4e430 r __ksymtab_may_umount
+ffffffc008a4e43c r __ksymtab_may_umount_tree
+ffffffc008a4e448 r __ksymtab_mb_cache_create
+ffffffc008a4e454 r __ksymtab_mb_cache_destroy
+ffffffc008a4e460 r __ksymtab_mb_cache_entry_create
+ffffffc008a4e46c r __ksymtab_mb_cache_entry_delete_or_get
+ffffffc008a4e478 r __ksymtab_mb_cache_entry_find_first
+ffffffc008a4e484 r __ksymtab_mb_cache_entry_find_next
+ffffffc008a4e490 r __ksymtab_mb_cache_entry_get
+ffffffc008a4e49c r __ksymtab_mb_cache_entry_touch
+ffffffc008a4e4a8 r __ksymtab_mb_cache_entry_wait_unused
+ffffffc008a4e4b4 r __ksymtab_mem_encrypt_active
+ffffffc008a4e4c0 r __ksymtab_mem_map
+ffffffc008a4e4cc r __ksymtab_mem_section
+ffffffc008a4e4d8 r __ksymtab_memchr
+ffffffc008a4e4e4 r __ksymtab_memchr_inv
+ffffffc008a4e4f0 r __ksymtab_memcmp
+ffffffc008a4e4fc r __ksymtab_memcpy
+ffffffc008a4e508 r __ksymtab_memcpy_and_pad
+ffffffc008a4e514 r __ksymtab_memdup_user
+ffffffc008a4e520 r __ksymtab_memdup_user_nul
+ffffffc008a4e52c r __ksymtab_memmove
+ffffffc008a4e538 r __ksymtab_memory_read_from_buffer
+ffffffc008a4e544 r __ksymtab_memparse
+ffffffc008a4e550 r __ksymtab_mempool_alloc
+ffffffc008a4e55c r __ksymtab_mempool_alloc_pages
+ffffffc008a4e568 r __ksymtab_mempool_alloc_slab
+ffffffc008a4e574 r __ksymtab_mempool_create
+ffffffc008a4e580 r __ksymtab_mempool_create_node
+ffffffc008a4e58c r __ksymtab_mempool_destroy
+ffffffc008a4e598 r __ksymtab_mempool_exit
+ffffffc008a4e5a4 r __ksymtab_mempool_free
+ffffffc008a4e5b0 r __ksymtab_mempool_free_pages
+ffffffc008a4e5bc r __ksymtab_mempool_free_slab
+ffffffc008a4e5c8 r __ksymtab_mempool_init
+ffffffc008a4e5d4 r __ksymtab_mempool_init_node
+ffffffc008a4e5e0 r __ksymtab_mempool_kfree
+ffffffc008a4e5ec r __ksymtab_mempool_kmalloc
+ffffffc008a4e5f8 r __ksymtab_mempool_resize
+ffffffc008a4e604 r __ksymtab_memremap
+ffffffc008a4e610 r __ksymtab_memscan
+ffffffc008a4e61c r __ksymtab_memset
+ffffffc008a4e628 r __ksymtab_memset16
+ffffffc008a4e634 r __ksymtab_memset32
+ffffffc008a4e640 r __ksymtab_memset64
+ffffffc008a4e64c r __ksymtab_memstart_addr
+ffffffc008a4e658 r __ksymtab_memunmap
+ffffffc008a4e664 r __ksymtab_memweight
+ffffffc008a4e670 r __ksymtab_migrate_folio
+ffffffc008a4e67c r __ksymtab_mini_qdisc_pair_block_init
+ffffffc008a4e688 r __ksymtab_mini_qdisc_pair_init
+ffffffc008a4e694 r __ksymtab_mini_qdisc_pair_swap
+ffffffc008a4e6a0 r __ksymtab_minmax_running_max
+ffffffc008a4e6ac r __ksymtab_misc_deregister
+ffffffc008a4e6b8 r __ksymtab_misc_register
+ffffffc008a4e6c4 r __ksymtab_mktime64
+ffffffc008a4e6d0 r __ksymtab_mnt_drop_write_file
+ffffffc008a4e6dc r __ksymtab_mnt_set_expiry
+ffffffc008a4e6e8 r __ksymtab_mntget
+ffffffc008a4e6f4 r __ksymtab_mntput
+ffffffc008a4e700 r __ksymtab_mod_node_page_state
+ffffffc008a4e70c r __ksymtab_mod_timer
+ffffffc008a4e718 r __ksymtab_mod_timer_pending
+ffffffc008a4e724 r __ksymtab_mod_zone_page_state
+ffffffc008a4e730 r __ksymtab_mode_strip_sgid
+ffffffc008a4e73c r __ksymtab_mount_bdev
+ffffffc008a4e748 r __ksymtab_mount_nodev
+ffffffc008a4e754 r __ksymtab_mount_single
+ffffffc008a4e760 r __ksymtab_mount_subtree
+ffffffc008a4e76c r __ksymtab_movable_zone
+ffffffc008a4e778 r __ksymtab_mpage_read_folio
+ffffffc008a4e784 r __ksymtab_mpage_readahead
+ffffffc008a4e790 r __ksymtab_mpage_writepages
+ffffffc008a4e79c r __ksymtab_mq_change_real_num_tx
+ffffffc008a4e7a8 r __ksymtab_msi_desc_to_pci_dev
+ffffffc008a4e7b4 r __ksymtab_msleep
+ffffffc008a4e7c0 r __ksymtab_msleep_interruptible
+ffffffc008a4e7cc r __ksymtab_mt_find
+ffffffc008a4e7d8 r __ksymtab_mt_find_after
+ffffffc008a4e7e4 r __ksymtab_mtree_alloc_range
+ffffffc008a4e7f0 r __ksymtab_mtree_alloc_rrange
+ffffffc008a4e7fc r __ksymtab_mtree_destroy
+ffffffc008a4e808 r __ksymtab_mtree_erase
+ffffffc008a4e814 r __ksymtab_mtree_insert
+ffffffc008a4e820 r __ksymtab_mtree_insert_range
+ffffffc008a4e82c r __ksymtab_mtree_load
+ffffffc008a4e838 r __ksymtab_mtree_store
+ffffffc008a4e844 r __ksymtab_mtree_store_range
+ffffffc008a4e850 r __ksymtab_mul_u64_u64_div_u64
+ffffffc008a4e85c r __ksymtab_mutex_is_locked
+ffffffc008a4e868 r __ksymtab_mutex_lock
+ffffffc008a4e874 r __ksymtab_mutex_lock_interruptible
+ffffffc008a4e880 r __ksymtab_mutex_lock_killable
+ffffffc008a4e88c r __ksymtab_mutex_trylock
+ffffffc008a4e898 r __ksymtab_mutex_unlock
+ffffffc008a4e8a4 r __ksymtab_n_tty_ioctl_helper
+ffffffc008a4e8b0 r __ksymtab_names_cachep
+ffffffc008a4e8bc r __ksymtab_napi_build_skb
+ffffffc008a4e8c8 r __ksymtab_napi_busy_loop
+ffffffc008a4e8d4 r __ksymtab_napi_complete_done
+ffffffc008a4e8e0 r __ksymtab_napi_consume_skb
+ffffffc008a4e8ec r __ksymtab_napi_disable
+ffffffc008a4e8f8 r __ksymtab_napi_enable
+ffffffc008a4e904 r __ksymtab_napi_get_frags
+ffffffc008a4e910 r __ksymtab_napi_gro_flush
+ffffffc008a4e91c r __ksymtab_napi_gro_frags
+ffffffc008a4e928 r __ksymtab_napi_gro_receive
+ffffffc008a4e934 r __ksymtab_napi_schedule_prep
+ffffffc008a4e940 r __ksymtab_ndisc_mc_map
+ffffffc008a4e94c r __ksymtab_ndisc_ns_create
+ffffffc008a4e958 r __ksymtab_ndisc_send_skb
+ffffffc008a4e964 r __ksymtab_ndo_dflt_fdb_add
+ffffffc008a4e970 r __ksymtab_ndo_dflt_fdb_del
+ffffffc008a4e97c r __ksymtab_ndo_dflt_fdb_dump
+ffffffc008a4e988 r __ksymtab_neigh_app_ns
+ffffffc008a4e994 r __ksymtab_neigh_carrier_down
+ffffffc008a4e9a0 r __ksymtab_neigh_changeaddr
+ffffffc008a4e9ac r __ksymtab_neigh_connected_output
+ffffffc008a4e9b8 r __ksymtab_neigh_destroy
+ffffffc008a4e9c4 r __ksymtab_neigh_direct_output
+ffffffc008a4e9d0 r __ksymtab_neigh_event_ns
+ffffffc008a4e9dc r __ksymtab_neigh_for_each
+ffffffc008a4e9e8 r __ksymtab_neigh_ifdown
+ffffffc008a4e9f4 r __ksymtab_neigh_lookup
+ffffffc008a4ea00 r __ksymtab_neigh_lookup_nodev
+ffffffc008a4ea0c r __ksymtab_neigh_parms_alloc
+ffffffc008a4ea18 r __ksymtab_neigh_parms_release
+ffffffc008a4ea24 r __ksymtab_neigh_proc_dointvec
+ffffffc008a4ea30 r __ksymtab_neigh_proc_dointvec_jiffies
+ffffffc008a4ea3c r __ksymtab_neigh_proc_dointvec_ms_jiffies
+ffffffc008a4ea48 r __ksymtab_neigh_rand_reach_time
+ffffffc008a4ea54 r __ksymtab_neigh_resolve_output
+ffffffc008a4ea60 r __ksymtab_neigh_seq_next
+ffffffc008a4ea6c r __ksymtab_neigh_seq_start
+ffffffc008a4ea78 r __ksymtab_neigh_seq_stop
+ffffffc008a4ea84 r __ksymtab_neigh_sysctl_register
+ffffffc008a4ea90 r __ksymtab_neigh_sysctl_unregister
+ffffffc008a4ea9c r __ksymtab_neigh_table_clear
+ffffffc008a4eaa8 r __ksymtab_neigh_table_init
+ffffffc008a4eab4 r __ksymtab_neigh_update
+ffffffc008a4eac0 r __ksymtab_neigh_xmit
+ffffffc008a4eacc r __ksymtab_net_disable_timestamp
+ffffffc008a4ead8 r __ksymtab_net_enable_timestamp
+ffffffc008a4eae4 r __ksymtab_net_ratelimit
+ffffffc008a4eaf0 r __ksymtab_netdev_adjacent_change_abort
+ffffffc008a4eafc r __ksymtab_netdev_adjacent_change_commit
+ffffffc008a4eb08 r __ksymtab_netdev_adjacent_change_prepare
+ffffffc008a4eb14 r __ksymtab_netdev_adjacent_get_private
+ffffffc008a4eb20 r __ksymtab_netdev_alert
+ffffffc008a4eb2c r __ksymtab_netdev_bind_sb_channel_queue
+ffffffc008a4eb38 r __ksymtab_netdev_bonding_info_change
+ffffffc008a4eb44 r __ksymtab_netdev_change_features
+ffffffc008a4eb50 r __ksymtab_netdev_class_create_file_ns
+ffffffc008a4eb5c r __ksymtab_netdev_class_remove_file_ns
+ffffffc008a4eb68 r __ksymtab_netdev_core_stats_alloc
+ffffffc008a4eb74 r __ksymtab_netdev_crit
+ffffffc008a4eb80 r __ksymtab_netdev_emerg
+ffffffc008a4eb8c r __ksymtab_netdev_err
+ffffffc008a4eb98 r __ksymtab_netdev_features_change
+ffffffc008a4eba4 r __ksymtab_netdev_get_xmit_slave
+ffffffc008a4ebb0 r __ksymtab_netdev_has_any_upper_dev
+ffffffc008a4ebbc r __ksymtab_netdev_has_upper_dev
+ffffffc008a4ebc8 r __ksymtab_netdev_has_upper_dev_all_rcu
+ffffffc008a4ebd4 r __ksymtab_netdev_increment_features
+ffffffc008a4ebe0 r __ksymtab_netdev_info
+ffffffc008a4ebec r __ksymtab_netdev_lower_dev_get_private
+ffffffc008a4ebf8 r __ksymtab_netdev_lower_get_first_private_rcu
+ffffffc008a4ec04 r __ksymtab_netdev_lower_get_next
+ffffffc008a4ec10 r __ksymtab_netdev_lower_get_next_private
+ffffffc008a4ec1c r __ksymtab_netdev_lower_get_next_private_rcu
+ffffffc008a4ec28 r __ksymtab_netdev_lower_state_changed
+ffffffc008a4ec34 r __ksymtab_netdev_master_upper_dev_get
+ffffffc008a4ec40 r __ksymtab_netdev_master_upper_dev_get_rcu
+ffffffc008a4ec4c r __ksymtab_netdev_master_upper_dev_link
+ffffffc008a4ec58 r __ksymtab_netdev_max_backlog
+ffffffc008a4ec64 r __ksymtab_netdev_name_in_use
+ffffffc008a4ec70 r __ksymtab_netdev_next_lower_dev_rcu
+ffffffc008a4ec7c r __ksymtab_netdev_notice
+ffffffc008a4ec88 r __ksymtab_netdev_notify_peers
+ffffffc008a4ec94 r __ksymtab_netdev_offload_xstats_disable
+ffffffc008a4eca0 r __ksymtab_netdev_offload_xstats_enable
+ffffffc008a4ecac r __ksymtab_netdev_offload_xstats_enabled
+ffffffc008a4ecb8 r __ksymtab_netdev_offload_xstats_get
+ffffffc008a4ecc4 r __ksymtab_netdev_offload_xstats_push_delta
+ffffffc008a4ecd0 r __ksymtab_netdev_offload_xstats_report_delta
+ffffffc008a4ecdc r __ksymtab_netdev_offload_xstats_report_used
+ffffffc008a4ece8 r __ksymtab_netdev_pick_tx
+ffffffc008a4ecf4 r __ksymtab_netdev_port_same_parent_id
+ffffffc008a4ed00 r __ksymtab_netdev_printk
+ffffffc008a4ed0c r __ksymtab_netdev_refcnt_read
+ffffffc008a4ed18 r __ksymtab_netdev_reset_tc
+ffffffc008a4ed24 r __ksymtab_netdev_rss_key_fill
+ffffffc008a4ed30 r __ksymtab_netdev_rx_csum_fault
+ffffffc008a4ed3c r __ksymtab_netdev_set_num_tc
+ffffffc008a4ed48 r __ksymtab_netdev_set_sb_channel
+ffffffc008a4ed54 r __ksymtab_netdev_set_tc_queue
+ffffffc008a4ed60 r __ksymtab_netdev_sk_get_lowest_dev
+ffffffc008a4ed6c r __ksymtab_netdev_state_change
+ffffffc008a4ed78 r __ksymtab_netdev_stats_to_stats64
+ffffffc008a4ed84 r __ksymtab_netdev_txq_to_tc
+ffffffc008a4ed90 r __ksymtab_netdev_unbind_sb_channel
+ffffffc008a4ed9c r __ksymtab_netdev_update_features
+ffffffc008a4eda8 r __ksymtab_netdev_upper_dev_link
+ffffffc008a4edb4 r __ksymtab_netdev_upper_dev_unlink
+ffffffc008a4edc0 r __ksymtab_netdev_upper_get_next_dev_rcu
+ffffffc008a4edcc r __ksymtab_netdev_warn
+ffffffc008a4edd8 r __ksymtab_netif_carrier_off
+ffffffc008a4ede4 r __ksymtab_netif_carrier_on
+ffffffc008a4edf0 r __ksymtab_netif_device_attach
+ffffffc008a4edfc r __ksymtab_netif_device_detach
+ffffffc008a4ee08 r __ksymtab_netif_get_num_default_rss_queues
+ffffffc008a4ee14 r __ksymtab_netif_inherit_tso_max
+ffffffc008a4ee20 r __ksymtab_netif_napi_add_weight
+ffffffc008a4ee2c r __ksymtab_netif_receive_skb
+ffffffc008a4ee38 r __ksymtab_netif_receive_skb_core
+ffffffc008a4ee44 r __ksymtab_netif_receive_skb_list
+ffffffc008a4ee50 r __ksymtab_netif_rx
+ffffffc008a4ee5c r __ksymtab_netif_schedule_queue
+ffffffc008a4ee68 r __ksymtab_netif_set_real_num_queues
+ffffffc008a4ee74 r __ksymtab_netif_set_real_num_rx_queues
+ffffffc008a4ee80 r __ksymtab_netif_set_real_num_tx_queues
+ffffffc008a4ee8c r __ksymtab_netif_set_tso_max_segs
+ffffffc008a4ee98 r __ksymtab_netif_set_tso_max_size
+ffffffc008a4eea4 r __ksymtab_netif_set_xps_queue
+ffffffc008a4eeb0 r __ksymtab_netif_skb_features
+ffffffc008a4eebc r __ksymtab_netif_stacked_transfer_operstate
+ffffffc008a4eec8 r __ksymtab_netif_tx_lock
+ffffffc008a4eed4 r __ksymtab_netif_tx_stop_all_queues
+ffffffc008a4eee0 r __ksymtab_netif_tx_unlock
+ffffffc008a4eeec r __ksymtab_netif_tx_wake_queue
+ffffffc008a4eef8 r __ksymtab_netlink_ack
+ffffffc008a4ef04 r __ksymtab_netlink_broadcast
+ffffffc008a4ef10 r __ksymtab_netlink_capable
+ffffffc008a4ef1c r __ksymtab_netlink_kernel_release
+ffffffc008a4ef28 r __ksymtab_netlink_net_capable
+ffffffc008a4ef34 r __ksymtab_netlink_ns_capable
+ffffffc008a4ef40 r __ksymtab_netlink_rcv_skb
+ffffffc008a4ef4c r __ksymtab_netlink_register_notifier
+ffffffc008a4ef58 r __ksymtab_netlink_set_err
+ffffffc008a4ef64 r __ksymtab_netlink_unicast
+ffffffc008a4ef70 r __ksymtab_netlink_unregister_notifier
+ffffffc008a4ef7c r __ksymtab_netstamp_needed_key
+ffffffc008a4ef88 r __ksymtab_new_inode
+ffffffc008a4ef94 r __ksymtab_next_arg
+ffffffc008a4efa0 r __ksymtab_nexthop_bucket_set_hw_flags
+ffffffc008a4efac r __ksymtab_nexthop_res_grp_activity_update
+ffffffc008a4efb8 r __ksymtab_nexthop_set_hw_flags
+ffffffc008a4efc4 r __ksymtab_nla_append
+ffffffc008a4efd0 r __ksymtab_nla_find
+ffffffc008a4efdc r __ksymtab_nla_memcmp
+ffffffc008a4efe8 r __ksymtab_nla_memcpy
+ffffffc008a4eff4 r __ksymtab_nla_policy_len
+ffffffc008a4f000 r __ksymtab_nla_put
+ffffffc008a4f00c r __ksymtab_nla_put_64bit
+ffffffc008a4f018 r __ksymtab_nla_put_nohdr
+ffffffc008a4f024 r __ksymtab_nla_reserve
+ffffffc008a4f030 r __ksymtab_nla_reserve_64bit
+ffffffc008a4f03c r __ksymtab_nla_reserve_nohdr
+ffffffc008a4f048 r __ksymtab_nla_strcmp
+ffffffc008a4f054 r __ksymtab_nla_strdup
+ffffffc008a4f060 r __ksymtab_nla_strscpy
+ffffffc008a4f06c r __ksymtab_nlmsg_notify
+ffffffc008a4f078 r __ksymtab_nmi_panic
+ffffffc008a4f084 r __ksymtab_no_pci_devices
+ffffffc008a4f090 r __ksymtab_no_seek_end_llseek
+ffffffc008a4f09c r __ksymtab_no_seek_end_llseek_size
+ffffffc008a4f0a8 r __ksymtab_node_states
+ffffffc008a4f0b4 r __ksymtab_nonseekable_open
+ffffffc008a4f0c0 r __ksymtab_noop_dirty_folio
+ffffffc008a4f0cc r __ksymtab_noop_fsync
+ffffffc008a4f0d8 r __ksymtab_noop_llseek
+ffffffc008a4f0e4 r __ksymtab_noop_qdisc
+ffffffc008a4f0f0 r __ksymtab_nosteal_pipe_buf_ops
+ffffffc008a4f0fc r __ksymtab_notify_change
+ffffffc008a4f108 r __ksymtab_nr_cpu_ids
+ffffffc008a4f114 r __ksymtab_ns_capable
+ffffffc008a4f120 r __ksymtab_ns_capable_noaudit
+ffffffc008a4f12c r __ksymtab_ns_capable_setid
+ffffffc008a4f138 r __ksymtab_ns_to_kernel_old_timeval
+ffffffc008a4f144 r __ksymtab_ns_to_timespec64
+ffffffc008a4f150 r __ksymtab_nsecs_to_jiffies64
+ffffffc008a4f15c r __ksymtab_of_chosen
+ffffffc008a4f168 r __ksymtab_of_clk_get
+ffffffc008a4f174 r __ksymtab_of_clk_get_by_name
+ffffffc008a4f180 r __ksymtab_of_count_phandle_with_args
+ffffffc008a4f18c r __ksymtab_of_cpu_node_to_id
+ffffffc008a4f198 r __ksymtab_of_device_alloc
+ffffffc008a4f1a4 r __ksymtab_of_device_get_match_data
+ffffffc008a4f1b0 r __ksymtab_of_device_is_available
+ffffffc008a4f1bc r __ksymtab_of_device_is_big_endian
+ffffffc008a4f1c8 r __ksymtab_of_device_is_compatible
+ffffffc008a4f1d4 r __ksymtab_of_device_register
+ffffffc008a4f1e0 r __ksymtab_of_device_unregister
+ffffffc008a4f1ec r __ksymtab_of_find_all_nodes
+ffffffc008a4f1f8 r __ksymtab_of_find_compatible_node
+ffffffc008a4f204 r __ksymtab_of_find_device_by_node
+ffffffc008a4f210 r __ksymtab_of_find_matching_node_and_match
+ffffffc008a4f21c r __ksymtab_of_find_net_device_by_node
+ffffffc008a4f228 r __ksymtab_of_find_node_by_name
+ffffffc008a4f234 r __ksymtab_of_find_node_by_phandle
+ffffffc008a4f240 r __ksymtab_of_find_node_by_type
+ffffffc008a4f24c r __ksymtab_of_find_node_opts_by_path
+ffffffc008a4f258 r __ksymtab_of_find_node_with_property
+ffffffc008a4f264 r __ksymtab_of_find_property
+ffffffc008a4f270 r __ksymtab_of_get_child_by_name
+ffffffc008a4f27c r __ksymtab_of_get_compatible_child
+ffffffc008a4f288 r __ksymtab_of_get_cpu_node
+ffffffc008a4f294 r __ksymtab_of_get_cpu_state_node
+ffffffc008a4f2a0 r __ksymtab_of_get_ethdev_address
+ffffffc008a4f2ac r __ksymtab_of_get_mac_address
+ffffffc008a4f2b8 r __ksymtab_of_get_next_available_child
+ffffffc008a4f2c4 r __ksymtab_of_get_next_child
+ffffffc008a4f2d0 r __ksymtab_of_get_next_cpu_node
+ffffffc008a4f2dc r __ksymtab_of_get_next_parent
+ffffffc008a4f2e8 r __ksymtab_of_get_parent
+ffffffc008a4f2f4 r __ksymtab_of_get_property
+ffffffc008a4f300 r __ksymtab_of_graph_get_endpoint_by_regs
+ffffffc008a4f30c r __ksymtab_of_graph_get_endpoint_count
+ffffffc008a4f318 r __ksymtab_of_graph_get_next_endpoint
+ffffffc008a4f324 r __ksymtab_of_graph_get_port_by_id
+ffffffc008a4f330 r __ksymtab_of_graph_get_port_parent
+ffffffc008a4f33c r __ksymtab_of_graph_get_remote_endpoint
+ffffffc008a4f348 r __ksymtab_of_graph_get_remote_node
+ffffffc008a4f354 r __ksymtab_of_graph_get_remote_port
+ffffffc008a4f360 r __ksymtab_of_graph_get_remote_port_parent
+ffffffc008a4f36c r __ksymtab_of_graph_is_present
+ffffffc008a4f378 r __ksymtab_of_graph_parse_endpoint
+ffffffc008a4f384 r __ksymtab_of_io_request_and_map
+ffffffc008a4f390 r __ksymtab_of_iomap
+ffffffc008a4f39c r __ksymtab_of_machine_is_compatible
+ffffffc008a4f3a8 r __ksymtab_of_match_device
+ffffffc008a4f3b4 r __ksymtab_of_match_node
+ffffffc008a4f3c0 r __ksymtab_of_n_addr_cells
+ffffffc008a4f3cc r __ksymtab_of_n_size_cells
+ffffffc008a4f3d8 r __ksymtab_of_node_name_eq
+ffffffc008a4f3e4 r __ksymtab_of_node_name_prefix
+ffffffc008a4f3f0 r __ksymtab_of_parse_phandle_with_args_map
+ffffffc008a4f3fc r __ksymtab_of_pci_range_to_resource
+ffffffc008a4f408 r __ksymtab_of_platform_bus_probe
+ffffffc008a4f414 r __ksymtab_of_platform_device_create
+ffffffc008a4f420 r __ksymtab_of_root
+ffffffc008a4f42c r __ksymtab_of_translate_address
+ffffffc008a4f438 r __ksymtab_of_translate_dma_address
+ffffffc008a4f444 r __ksymtab_on_each_cpu_cond_mask
+ffffffc008a4f450 r __ksymtab_oops_in_progress
+ffffffc008a4f45c r __ksymtab_open_exec
+ffffffc008a4f468 r __ksymtab_open_with_fake_path
+ffffffc008a4f474 r __ksymtab_out_of_line_wait_on_bit
+ffffffc008a4f480 r __ksymtab_out_of_line_wait_on_bit_lock
+ffffffc008a4f48c r __ksymtab_overflowgid
+ffffffc008a4f498 r __ksymtab_overflowuid
+ffffffc008a4f4a4 r __ksymtab_override_creds
+ffffffc008a4f4b0 r __ksymtab_paddr_vmcoreinfo_note
+ffffffc008a4f4bc r __ksymtab_page_cache_next_miss
+ffffffc008a4f4c8 r __ksymtab_page_cache_prev_miss
+ffffffc008a4f4d4 r __ksymtab_page_frag_alloc_align
+ffffffc008a4f4e0 r __ksymtab_page_frag_free
+ffffffc008a4f4ec r __ksymtab_page_get_link
+ffffffc008a4f4f8 r __ksymtab_page_mapped
+ffffffc008a4f504 r __ksymtab_page_mapping
+ffffffc008a4f510 r __ksymtab_page_offline_begin
+ffffffc008a4f51c r __ksymtab_page_offline_end
+ffffffc008a4f528 r __ksymtab_page_put_link
+ffffffc008a4f534 r __ksymtab_page_readlink
+ffffffc008a4f540 r __ksymtab_page_symlink
+ffffffc008a4f54c r __ksymtab_page_symlink_inode_operations
+ffffffc008a4f558 r __ksymtab_page_zero_new_buffers
+ffffffc008a4f564 r __ksymtab_pagecache_get_page
+ffffffc008a4f570 r __ksymtab_pagecache_isize_extended
+ffffffc008a4f57c r __ksymtab_pagevec_lookup_range_tag
+ffffffc008a4f588 r __ksymtab_panic
+ffffffc008a4f594 r __ksymtab_panic_blink
+ffffffc008a4f5a0 r __ksymtab_panic_notifier_list
+ffffffc008a4f5ac r __ksymtab_param_array_ops
+ffffffc008a4f5b8 r __ksymtab_param_free_charp
+ffffffc008a4f5c4 r __ksymtab_param_get_bool
+ffffffc008a4f5d0 r __ksymtab_param_get_byte
+ffffffc008a4f5dc r __ksymtab_param_get_charp
+ffffffc008a4f5e8 r __ksymtab_param_get_dyndbg_classes
+ffffffc008a4f5f4 r __ksymtab_param_get_hexint
+ffffffc008a4f600 r __ksymtab_param_get_int
+ffffffc008a4f60c r __ksymtab_param_get_invbool
+ffffffc008a4f618 r __ksymtab_param_get_long
+ffffffc008a4f624 r __ksymtab_param_get_short
+ffffffc008a4f630 r __ksymtab_param_get_string
+ffffffc008a4f63c r __ksymtab_param_get_uint
+ffffffc008a4f648 r __ksymtab_param_get_ullong
+ffffffc008a4f654 r __ksymtab_param_get_ulong
+ffffffc008a4f660 r __ksymtab_param_get_ushort
+ffffffc008a4f66c r __ksymtab_param_ops_bint
+ffffffc008a4f678 r __ksymtab_param_ops_bool
+ffffffc008a4f684 r __ksymtab_param_ops_byte
+ffffffc008a4f690 r __ksymtab_param_ops_charp
+ffffffc008a4f69c r __ksymtab_param_ops_dyndbg_classes
+ffffffc008a4f6a8 r __ksymtab_param_ops_hexint
+ffffffc008a4f6b4 r __ksymtab_param_ops_int
+ffffffc008a4f6c0 r __ksymtab_param_ops_invbool
+ffffffc008a4f6cc r __ksymtab_param_ops_long
+ffffffc008a4f6d8 r __ksymtab_param_ops_short
+ffffffc008a4f6e4 r __ksymtab_param_ops_string
+ffffffc008a4f6f0 r __ksymtab_param_ops_uint
+ffffffc008a4f6fc r __ksymtab_param_ops_ullong
+ffffffc008a4f708 r __ksymtab_param_ops_ulong
+ffffffc008a4f714 r __ksymtab_param_ops_ushort
+ffffffc008a4f720 r __ksymtab_param_set_bint
+ffffffc008a4f72c r __ksymtab_param_set_bool
+ffffffc008a4f738 r __ksymtab_param_set_byte
+ffffffc008a4f744 r __ksymtab_param_set_charp
+ffffffc008a4f750 r __ksymtab_param_set_copystring
+ffffffc008a4f75c r __ksymtab_param_set_dyndbg_classes
+ffffffc008a4f768 r __ksymtab_param_set_hexint
+ffffffc008a4f774 r __ksymtab_param_set_int
+ffffffc008a4f780 r __ksymtab_param_set_invbool
+ffffffc008a4f78c r __ksymtab_param_set_long
+ffffffc008a4f798 r __ksymtab_param_set_short
+ffffffc008a4f7a4 r __ksymtab_param_set_uint
+ffffffc008a4f7b0 r __ksymtab_param_set_ullong
+ffffffc008a4f7bc r __ksymtab_param_set_ulong
+ffffffc008a4f7c8 r __ksymtab_param_set_ushort
+ffffffc008a4f7d4 r __ksymtab_parse_int_array_user
+ffffffc008a4f7e0 r __ksymtab_passthru_features_check
+ffffffc008a4f7ec r __ksymtab_path_get
+ffffffc008a4f7f8 r __ksymtab_path_has_submounts
+ffffffc008a4f804 r __ksymtab_path_is_mountpoint
+ffffffc008a4f810 r __ksymtab_path_is_under
+ffffffc008a4f81c r __ksymtab_path_put
+ffffffc008a4f828 r __ksymtab_pci_add_new_bus
+ffffffc008a4f834 r __ksymtab_pci_add_resource
+ffffffc008a4f840 r __ksymtab_pci_add_resource_offset
+ffffffc008a4f84c r __ksymtab_pci_alloc_dev
+ffffffc008a4f858 r __ksymtab_pci_alloc_host_bridge
+ffffffc008a4f864 r __ksymtab_pci_alloc_irq_vectors_affinity
+ffffffc008a4f870 r __ksymtab_pci_assign_resource
+ffffffc008a4f87c r __ksymtab_pci_back_from_sleep
+ffffffc008a4f888 r __ksymtab_pci_bus_add_devices
+ffffffc008a4f894 r __ksymtab_pci_bus_alloc_resource
+ffffffc008a4f8a0 r __ksymtab_pci_bus_assign_resources
+ffffffc008a4f8ac r __ksymtab_pci_bus_claim_resources
+ffffffc008a4f8b8 r __ksymtab_pci_bus_find_capability
+ffffffc008a4f8c4 r __ksymtab_pci_bus_read_config_byte
+ffffffc008a4f8d0 r __ksymtab_pci_bus_read_config_dword
+ffffffc008a4f8dc r __ksymtab_pci_bus_read_config_word
+ffffffc008a4f8e8 r __ksymtab_pci_bus_read_dev_vendor_id
+ffffffc008a4f8f4 r __ksymtab_pci_bus_set_ops
+ffffffc008a4f900 r __ksymtab_pci_bus_size_bridges
+ffffffc008a4f90c r __ksymtab_pci_bus_type
+ffffffc008a4f918 r __ksymtab_pci_bus_write_config_byte
+ffffffc008a4f924 r __ksymtab_pci_bus_write_config_dword
+ffffffc008a4f930 r __ksymtab_pci_bus_write_config_word
+ffffffc008a4f93c r __ksymtab_pci_choose_state
+ffffffc008a4f948 r __ksymtab_pci_claim_resource
+ffffffc008a4f954 r __ksymtab_pci_clear_master
+ffffffc008a4f960 r __ksymtab_pci_clear_mwi
+ffffffc008a4f96c r __ksymtab_pci_dev_driver
+ffffffc008a4f978 r __ksymtab_pci_dev_get
+ffffffc008a4f984 r __ksymtab_pci_dev_present
+ffffffc008a4f990 r __ksymtab_pci_dev_put
+ffffffc008a4f99c r __ksymtab_pci_disable_device
+ffffffc008a4f9a8 r __ksymtab_pci_disable_link_state
+ffffffc008a4f9b4 r __ksymtab_pci_disable_link_state_locked
+ffffffc008a4f9c0 r __ksymtab_pci_disable_msi
+ffffffc008a4f9cc r __ksymtab_pci_disable_msix
+ffffffc008a4f9d8 r __ksymtab_pci_enable_atomic_ops_to_root
+ffffffc008a4f9e4 r __ksymtab_pci_enable_device
+ffffffc008a4f9f0 r __ksymtab_pci_enable_device_io
+ffffffc008a4f9fc r __ksymtab_pci_enable_device_mem
+ffffffc008a4fa08 r __ksymtab_pci_enable_msi
+ffffffc008a4fa14 r __ksymtab_pci_enable_msix_range
+ffffffc008a4fa20 r __ksymtab_pci_enable_wake
+ffffffc008a4fa2c r __ksymtab_pci_find_bus
+ffffffc008a4fa38 r __ksymtab_pci_find_capability
+ffffffc008a4fa44 r __ksymtab_pci_find_next_bus
+ffffffc008a4fa50 r __ksymtab_pci_find_parent_resource
+ffffffc008a4fa5c r __ksymtab_pci_find_resource
+ffffffc008a4fa68 r __ksymtab_pci_fixup_cardbus
+ffffffc008a4fa74 r __ksymtab_pci_fixup_device
+ffffffc008a4fa80 r __ksymtab_pci_free_host_bridge
+ffffffc008a4fa8c r __ksymtab_pci_free_irq
+ffffffc008a4fa98 r __ksymtab_pci_free_irq_vectors
+ffffffc008a4faa4 r __ksymtab_pci_free_resource_list
+ffffffc008a4fab0 r __ksymtab_pci_get_class
+ffffffc008a4fabc r __ksymtab_pci_get_device
+ffffffc008a4fac8 r __ksymtab_pci_get_domain_bus_and_slot
+ffffffc008a4fad4 r __ksymtab_pci_get_slot
+ffffffc008a4fae0 r __ksymtab_pci_get_subsys
+ffffffc008a4faec r __ksymtab_pci_iomap
+ffffffc008a4faf8 r __ksymtab_pci_iomap_range
+ffffffc008a4fb04 r __ksymtab_pci_iounmap
+ffffffc008a4fb10 r __ksymtab_pci_irq_get_affinity
+ffffffc008a4fb1c r __ksymtab_pci_irq_vector
+ffffffc008a4fb28 r __ksymtab_pci_map_rom
+ffffffc008a4fb34 r __ksymtab_pci_match_id
+ffffffc008a4fb40 r __ksymtab_pci_msi_enabled
+ffffffc008a4fb4c r __ksymtab_pci_msi_vec_count
+ffffffc008a4fb58 r __ksymtab_pci_msix_vec_count
+ffffffc008a4fb64 r __ksymtab_pci_pci_problems
+ffffffc008a4fb70 r __ksymtab_pci_pme_active
+ffffffc008a4fb7c r __ksymtab_pci_pme_capable
+ffffffc008a4fb88 r __ksymtab_pci_prepare_to_sleep
+ffffffc008a4fb94 r __ksymtab_pci_read_config_byte
+ffffffc008a4fba0 r __ksymtab_pci_read_config_dword
+ffffffc008a4fbac r __ksymtab_pci_read_config_word
+ffffffc008a4fbb8 r __ksymtab_pci_read_vpd
+ffffffc008a4fbc4 r __ksymtab_pci_read_vpd_any
+ffffffc008a4fbd0 r __ksymtab_pci_rebar_get_possible_sizes
+ffffffc008a4fbdc r __ksymtab_pci_reenable_device
+ffffffc008a4fbe8 r __ksymtab_pci_release_region
+ffffffc008a4fbf4 r __ksymtab_pci_release_regions
+ffffffc008a4fc00 r __ksymtab_pci_release_resource
+ffffffc008a4fc0c r __ksymtab_pci_release_selected_regions
+ffffffc008a4fc18 r __ksymtab_pci_remap_iospace
+ffffffc008a4fc24 r __ksymtab_pci_remove_bus
+ffffffc008a4fc30 r __ksymtab_pci_request_irq
+ffffffc008a4fc3c r __ksymtab_pci_request_region
+ffffffc008a4fc48 r __ksymtab_pci_request_regions
+ffffffc008a4fc54 r __ksymtab_pci_request_regions_exclusive
+ffffffc008a4fc60 r __ksymtab_pci_request_selected_regions
+ffffffc008a4fc6c r __ksymtab_pci_request_selected_regions_exclusive
+ffffffc008a4fc78 r __ksymtab_pci_resize_resource
+ffffffc008a4fc84 r __ksymtab_pci_restore_state
+ffffffc008a4fc90 r __ksymtab_pci_root_buses
+ffffffc008a4fc9c r __ksymtab_pci_save_state
+ffffffc008a4fca8 r __ksymtab_pci_scan_bridge
+ffffffc008a4fcb4 r __ksymtab_pci_scan_bus
+ffffffc008a4fcc0 r __ksymtab_pci_scan_root_bus
+ffffffc008a4fccc r __ksymtab_pci_scan_root_bus_bridge
+ffffffc008a4fcd8 r __ksymtab_pci_scan_single_device
+ffffffc008a4fce4 r __ksymtab_pci_scan_slot
+ffffffc008a4fcf0 r __ksymtab_pci_select_bars
+ffffffc008a4fcfc r __ksymtab_pci_set_master
+ffffffc008a4fd08 r __ksymtab_pci_set_mwi
+ffffffc008a4fd14 r __ksymtab_pci_set_power_state
+ffffffc008a4fd20 r __ksymtab_pci_setup_cardbus
+ffffffc008a4fd2c r __ksymtab_pci_stop_and_remove_bus_device
+ffffffc008a4fd38 r __ksymtab_pci_try_set_mwi
+ffffffc008a4fd44 r __ksymtab_pci_unmap_iospace
+ffffffc008a4fd50 r __ksymtab_pci_unmap_rom
+ffffffc008a4fd5c r __ksymtab_pci_unregister_driver
+ffffffc008a4fd68 r __ksymtab_pci_wait_for_pending_transaction
+ffffffc008a4fd74 r __ksymtab_pci_wake_from_d3
+ffffffc008a4fd80 r __ksymtab_pci_write_config_byte
+ffffffc008a4fd8c r __ksymtab_pci_write_config_dword
+ffffffc008a4fd98 r __ksymtab_pci_write_config_word
+ffffffc008a4fda4 r __ksymtab_pci_write_vpd
+ffffffc008a4fdb0 r __ksymtab_pci_write_vpd_any
+ffffffc008a4fdbc r __ksymtab_pcibios_bus_to_resource
+ffffffc008a4fdc8 r __ksymtab_pcibios_resource_to_bus
+ffffffc008a4fdd4 r __ksymtab_pcie_bandwidth_available
+ffffffc008a4fde0 r __ksymtab_pcie_capability_clear_and_set_dword
+ffffffc008a4fdec r __ksymtab_pcie_capability_clear_and_set_word
+ffffffc008a4fdf8 r __ksymtab_pcie_capability_read_dword
+ffffffc008a4fe04 r __ksymtab_pcie_capability_read_word
+ffffffc008a4fe10 r __ksymtab_pcie_capability_write_dword
+ffffffc008a4fe1c r __ksymtab_pcie_capability_write_word
+ffffffc008a4fe28 r __ksymtab_pcie_get_mps
+ffffffc008a4fe34 r __ksymtab_pcie_get_readrq
+ffffffc008a4fe40 r __ksymtab_pcie_get_speed_cap
+ffffffc008a4fe4c r __ksymtab_pcie_get_width_cap
+ffffffc008a4fe58 r __ksymtab_pcie_port_service_register
+ffffffc008a4fe64 r __ksymtab_pcie_port_service_unregister
+ffffffc008a4fe70 r __ksymtab_pcie_print_link_status
+ffffffc008a4fe7c r __ksymtab_pcie_relaxed_ordering_enabled
+ffffffc008a4fe88 r __ksymtab_pcie_set_mps
+ffffffc008a4fe94 r __ksymtab_pcie_set_readrq
+ffffffc008a4fea0 r __ksymtab_pcim_enable_device
+ffffffc008a4feac r __ksymtab_pcim_iomap
+ffffffc008a4feb8 r __ksymtab_pcim_iomap_regions
+ffffffc008a4fec4 r __ksymtab_pcim_iomap_regions_request_all
+ffffffc008a4fed0 r __ksymtab_pcim_iomap_table
+ffffffc008a4fedc r __ksymtab_pcim_iounmap
+ffffffc008a4fee8 r __ksymtab_pcim_iounmap_regions
+ffffffc008a4fef4 r __ksymtab_pcim_pin_device
+ffffffc008a4ff00 r __ksymtab_pcim_set_mwi
+ffffffc008a4ff0c r __ksymtab_pcix_get_max_mmrbc
+ffffffc008a4ff18 r __ksymtab_pcix_get_mmrbc
+ffffffc008a4ff24 r __ksymtab_pcix_set_mmrbc
+ffffffc008a4ff30 r __ksymtab_peernet2id
+ffffffc008a4ff3c r __ksymtab_percpu_counter_add_batch
+ffffffc008a4ff48 r __ksymtab_percpu_counter_batch
+ffffffc008a4ff54 r __ksymtab_percpu_counter_destroy
+ffffffc008a4ff60 r __ksymtab_percpu_counter_set
+ffffffc008a4ff6c r __ksymtab_percpu_counter_sync
+ffffffc008a4ff78 r __ksymtab_pfifo_fast_ops
+ffffffc008a4ff84 r __ksymtab_pfn_is_map_memory
+ffffffc008a4ff90 r __ksymtab_phys_mem_access_prot
+ffffffc008a4ff9c r __ksymtab_pid_task
+ffffffc008a4ffa8 r __ksymtab_pin_user_pages
+ffffffc008a4ffb4 r __ksymtab_pin_user_pages_remote
+ffffffc008a4ffc0 r __ksymtab_pin_user_pages_unlocked
+ffffffc008a4ffcc r __ksymtab_ping_prot
+ffffffc008a4ffd8 r __ksymtab_pipe_lock
+ffffffc008a4ffe4 r __ksymtab_pipe_unlock
+ffffffc008a4fff0 r __ksymtab_platform_get_ethdev_address
+ffffffc008a4fffc r __ksymtab_pm_set_vt_switch
+ffffffc008a50008 r __ksymtab_pm_suspend
+ffffffc008a50014 r __ksymtab_pm_vt_switch_required
+ffffffc008a50020 r __ksymtab_pm_vt_switch_unregister
+ffffffc008a5002c r __ksymtab_pneigh_enqueue
+ffffffc008a50038 r __ksymtab_pneigh_lookup
+ffffffc008a50044 r __ksymtab_poll_freewait
+ffffffc008a50050 r __ksymtab_poll_initwait
+ffffffc008a5005c r __ksymtab_poly1305_core_blocks
+ffffffc008a50068 r __ksymtab_poly1305_core_emit
+ffffffc008a50074 r __ksymtab_poly1305_core_setkey
+ffffffc008a50080 r __ksymtab_posix_acl_alloc
+ffffffc008a5008c r __ksymtab_posix_acl_chmod
+ffffffc008a50098 r __ksymtab_posix_acl_equiv_mode
+ffffffc008a500a4 r __ksymtab_posix_acl_from_mode
+ffffffc008a500b0 r __ksymtab_posix_acl_from_xattr
+ffffffc008a500bc r __ksymtab_posix_acl_init
+ffffffc008a500c8 r __ksymtab_posix_acl_to_xattr
+ffffffc008a500d4 r __ksymtab_posix_acl_update_mode
+ffffffc008a500e0 r __ksymtab_posix_acl_valid
+ffffffc008a500ec r __ksymtab_posix_lock_file
+ffffffc008a500f8 r __ksymtab_posix_test_lock
+ffffffc008a50104 r __ksymtab_prandom_bytes_state
+ffffffc008a50110 r __ksymtab_prandom_seed_full_state
+ffffffc008a5011c r __ksymtab_prandom_u32_state
+ffffffc008a50128 r __ksymtab_preempt_schedule
+ffffffc008a50134 r __ksymtab_prepare_creds
+ffffffc008a50140 r __ksymtab_prepare_kernel_cred
+ffffffc008a5014c r __ksymtab_prepare_to_swait_event
+ffffffc008a50158 r __ksymtab_prepare_to_swait_exclusive
+ffffffc008a50164 r __ksymtab_prepare_to_wait
+ffffffc008a50170 r __ksymtab_prepare_to_wait_event
+ffffffc008a5017c r __ksymtab_prepare_to_wait_exclusive
+ffffffc008a50188 r __ksymtab_print_hex_dump
+ffffffc008a50194 r __ksymtab_printk_timed_ratelimit
+ffffffc008a501a0 r __ksymtab_probe_irq_mask
+ffffffc008a501ac r __ksymtab_probe_irq_off
+ffffffc008a501b8 r __ksymtab_probe_irq_on
+ffffffc008a501c4 r __ksymtab_proc_create
+ffffffc008a501d0 r __ksymtab_proc_create_data
+ffffffc008a501dc r __ksymtab_proc_create_mount_point
+ffffffc008a501e8 r __ksymtab_proc_create_seq_private
+ffffffc008a501f4 r __ksymtab_proc_create_single_data
+ffffffc008a50200 r __ksymtab_proc_do_large_bitmap
+ffffffc008a5020c r __ksymtab_proc_dobool
+ffffffc008a50218 r __ksymtab_proc_dointvec
+ffffffc008a50224 r __ksymtab_proc_dointvec_jiffies
+ffffffc008a50230 r __ksymtab_proc_dointvec_minmax
+ffffffc008a5023c r __ksymtab_proc_dointvec_ms_jiffies
+ffffffc008a50248 r __ksymtab_proc_dointvec_userhz_jiffies
+ffffffc008a50254 r __ksymtab_proc_dostring
+ffffffc008a50260 r __ksymtab_proc_douintvec
+ffffffc008a5026c r __ksymtab_proc_doulongvec_minmax
+ffffffc008a50278 r __ksymtab_proc_doulongvec_ms_jiffies_minmax
+ffffffc008a50284 r __ksymtab_proc_mkdir
+ffffffc008a50290 r __ksymtab_proc_mkdir_mode
+ffffffc008a5029c r __ksymtab_proc_remove
+ffffffc008a502a8 r __ksymtab_proc_set_size
+ffffffc008a502b4 r __ksymtab_proc_set_user
+ffffffc008a502c0 r __ksymtab_proc_symlink
+ffffffc008a502cc r __ksymtab_profile_pc
+ffffffc008a502d8 r __ksymtab_proto_register
+ffffffc008a502e4 r __ksymtab_proto_unregister
+ffffffc008a502f0 r __ksymtab_psched_ppscfg_precompute
+ffffffc008a502fc r __ksymtab_psched_ratecfg_precompute
+ffffffc008a50308 r __ksymtab_pskb_expand_head
+ffffffc008a50314 r __ksymtab_pskb_extract
+ffffffc008a50320 r __ksymtab_pskb_trim_rcsum_slow
+ffffffc008a5032c r __ksymtab_put_cmsg
+ffffffc008a50338 r __ksymtab_put_cmsg_scm_timestamping
+ffffffc008a50344 r __ksymtab_put_cmsg_scm_timestamping64
+ffffffc008a50350 r __ksymtab_put_disk
+ffffffc008a5035c r __ksymtab_put_fs_context
+ffffffc008a50368 r __ksymtab_put_pages_list
+ffffffc008a50374 r __ksymtab_put_unused_fd
+ffffffc008a50380 r __ksymtab_put_user_ifreq
+ffffffc008a5038c r __ksymtab_qdisc_create_dflt
+ffffffc008a50398 r __ksymtab_qdisc_put
+ffffffc008a503a4 r __ksymtab_qdisc_put_unlocked
+ffffffc008a503b0 r __ksymtab_qdisc_reset
+ffffffc008a503bc r __ksymtab_queue_delayed_work_on
+ffffffc008a503c8 r __ksymtab_queue_rcu_work
+ffffffc008a503d4 r __ksymtab_queue_work_on
+ffffffc008a503e0 r __ksymtab_queued_read_lock_slowpath
+ffffffc008a503ec r __ksymtab_queued_spin_lock_slowpath
+ffffffc008a503f8 r __ksymtab_queued_write_lock_slowpath
+ffffffc008a50404 r __ksymtab_radix_tree_delete
+ffffffc008a50410 r __ksymtab_radix_tree_delete_item
+ffffffc008a5041c r __ksymtab_radix_tree_gang_lookup
+ffffffc008a50428 r __ksymtab_radix_tree_gang_lookup_tag
+ffffffc008a50434 r __ksymtab_radix_tree_gang_lookup_tag_slot
+ffffffc008a50440 r __ksymtab_radix_tree_insert
+ffffffc008a5044c r __ksymtab_radix_tree_iter_delete
+ffffffc008a50458 r __ksymtab_radix_tree_iter_resume
+ffffffc008a50464 r __ksymtab_radix_tree_lookup
+ffffffc008a50470 r __ksymtab_radix_tree_lookup_slot
+ffffffc008a5047c r __ksymtab_radix_tree_maybe_preload
+ffffffc008a50488 r __ksymtab_radix_tree_next_chunk
+ffffffc008a50494 r __ksymtab_radix_tree_preload
+ffffffc008a504a0 r __ksymtab_radix_tree_replace_slot
+ffffffc008a504ac r __ksymtab_radix_tree_tag_clear
+ffffffc008a504b8 r __ksymtab_radix_tree_tag_get
+ffffffc008a504c4 r __ksymtab_radix_tree_tag_set
+ffffffc008a504d0 r __ksymtab_radix_tree_tagged
+ffffffc008a504dc r __ksymtab_ram_aops
+ffffffc008a504e8 r __ksymtab_rational_best_approximation
+ffffffc008a504f4 r __ksymtab_rawv6_mh_filter_register
+ffffffc008a50500 r __ksymtab_rawv6_mh_filter_unregister
+ffffffc008a5050c r __ksymtab_rb_erase
+ffffffc008a50518 r __ksymtab_rb_first
+ffffffc008a50524 r __ksymtab_rb_first_postorder
+ffffffc008a50530 r __ksymtab_rb_insert_color
+ffffffc008a5053c r __ksymtab_rb_last
+ffffffc008a50548 r __ksymtab_rb_next
+ffffffc008a50554 r __ksymtab_rb_next_postorder
+ffffffc008a50560 r __ksymtab_rb_prev
+ffffffc008a5056c r __ksymtab_rb_replace_node
+ffffffc008a50578 r __ksymtab_rb_replace_node_rcu
+ffffffc008a50584 r __ksymtab_read_cache_folio
+ffffffc008a50590 r __ksymtab_read_cache_page
+ffffffc008a5059c r __ksymtab_read_cache_page_gfp
+ffffffc008a505a8 r __ksymtab_readahead_expand
+ffffffc008a505b4 r __ksymtab_recalc_sigpending
+ffffffc008a505c0 r __ksymtab_reciprocal_value
+ffffffc008a505cc r __ksymtab_reciprocal_value_adv
+ffffffc008a505d8 r __ksymtab_redirty_page_for_writepage
+ffffffc008a505e4 r __ksymtab_redraw_screen
+ffffffc008a505f0 r __ksymtab_refcount_dec_and_lock
+ffffffc008a505fc r __ksymtab_refcount_dec_and_lock_irqsave
+ffffffc008a50608 r __ksymtab_refcount_dec_and_mutex_lock
+ffffffc008a50614 r __ksymtab_refcount_dec_and_rtnl_lock
+ffffffc008a50620 r __ksymtab_refcount_dec_if_one
+ffffffc008a5062c r __ksymtab_refcount_dec_not_one
+ffffffc008a50638 r __ksymtab_refcount_warn_saturate
+ffffffc008a50644 r __ksymtab_register_blocking_lsm_notifier
+ffffffc008a50650 r __ksymtab_register_chrdev_region
+ffffffc008a5065c r __ksymtab_register_console
+ffffffc008a50668 r __ksymtab_register_fib_notifier
+ffffffc008a50674 r __ksymtab_register_filesystem
+ffffffc008a50680 r __ksymtab_register_inet6addr_notifier
+ffffffc008a5068c r __ksymtab_register_inet6addr_validator_notifier
+ffffffc008a50698 r __ksymtab_register_inetaddr_notifier
+ffffffc008a506a4 r __ksymtab_register_inetaddr_validator_notifier
+ffffffc008a506b0 r __ksymtab_register_memory_notifier
+ffffffc008a506bc r __ksymtab_register_module_notifier
+ffffffc008a506c8 r __ksymtab_register_netdev
+ffffffc008a506d4 r __ksymtab_register_netdevice
+ffffffc008a506e0 r __ksymtab_register_netdevice_notifier
+ffffffc008a506ec r __ksymtab_register_netdevice_notifier_dev_net
+ffffffc008a506f8 r __ksymtab_register_netdevice_notifier_net
+ffffffc008a50704 r __ksymtab_register_nexthop_notifier
+ffffffc008a50710 r __ksymtab_register_reboot_notifier
+ffffffc008a5071c r __ksymtab_register_restart_handler
+ffffffc008a50728 r __ksymtab_register_shrinker
+ffffffc008a50734 r __ksymtab_register_sysctl
+ffffffc008a50740 r __ksymtab_register_sysctl_mount_point
+ffffffc008a5074c r __ksymtab_register_sysctl_paths
+ffffffc008a50758 r __ksymtab_register_sysctl_table
+ffffffc008a50764 r __ksymtab_register_sysrq_key
+ffffffc008a50770 r __ksymtab_regset_get
+ffffffc008a5077c r __ksymtab_regset_get_alloc
+ffffffc008a50788 r __ksymtab_release_dentry_name_snapshot
+ffffffc008a50794 r __ksymtab_release_firmware
+ffffffc008a507a0 r __ksymtab_release_pages
+ffffffc008a507ac r __ksymtab_release_resource
+ffffffc008a507b8 r __ksymtab_release_sock
+ffffffc008a507c4 r __ksymtab_remap_pfn_range
+ffffffc008a507d0 r __ksymtab_remap_vmalloc_range
+ffffffc008a507dc r __ksymtab_remove_arg_zero
+ffffffc008a507e8 r __ksymtab_remove_proc_entry
+ffffffc008a507f4 r __ksymtab_remove_proc_subtree
+ffffffc008a50800 r __ksymtab_remove_wait_queue
+ffffffc008a5080c r __ksymtab_rename_lock
+ffffffc008a50818 r __ksymtab_request_firmware
+ffffffc008a50824 r __ksymtab_request_firmware_into_buf
+ffffffc008a50830 r __ksymtab_request_firmware_nowait
+ffffffc008a5083c r __ksymtab_request_partial_firmware_into_buf
+ffffffc008a50848 r __ksymtab_request_resource
+ffffffc008a50854 r __ksymtab_request_threaded_irq
+ffffffc008a50860 r __ksymtab_reservation_ww_class
+ffffffc008a5086c r __ksymtab_reset_devices
+ffffffc008a50878 r __ksymtab_resource_list_create_entry
+ffffffc008a50884 r __ksymtab_resource_list_free
+ffffffc008a50890 r __ksymtab_retire_super
+ffffffc008a5089c r __ksymtab_reuseport_add_sock
+ffffffc008a508a8 r __ksymtab_reuseport_alloc
+ffffffc008a508b4 r __ksymtab_reuseport_attach_prog
+ffffffc008a508c0 r __ksymtab_reuseport_detach_prog
+ffffffc008a508cc r __ksymtab_reuseport_detach_sock
+ffffffc008a508d8 r __ksymtab_reuseport_has_conns_set
+ffffffc008a508e4 r __ksymtab_reuseport_migrate_sock
+ffffffc008a508f0 r __ksymtab_reuseport_select_sock
+ffffffc008a508fc r __ksymtab_reuseport_stop_listen_sock
+ffffffc008a50908 r __ksymtab_revert_creds
+ffffffc008a50914 r __ksymtab_rfs_needed
+ffffffc008a50920 r __ksymtab_rng_is_initialized
+ffffffc008a5092c r __ksymtab_rps_cpu_mask
+ffffffc008a50938 r __ksymtab_rps_may_expire_flow
+ffffffc008a50944 r __ksymtab_rps_needed
+ffffffc008a50950 r __ksymtab_rps_sock_flow_table
+ffffffc008a5095c r __ksymtab_rt6_lookup
+ffffffc008a50968 r __ksymtab_rt_dst_alloc
+ffffffc008a50974 r __ksymtab_rt_dst_clone
+ffffffc008a50980 r __ksymtab_rt_mutex_base_init
+ffffffc008a5098c r __ksymtab_rtc_add_group
+ffffffc008a50998 r __ksymtab_rtc_add_groups
+ffffffc008a509a4 r __ksymtab_rtc_month_days
+ffffffc008a509b0 r __ksymtab_rtc_time64_to_tm
+ffffffc008a509bc r __ksymtab_rtc_tm_to_time64
+ffffffc008a509c8 r __ksymtab_rtc_valid_tm
+ffffffc008a509d4 r __ksymtab_rtc_year_days
+ffffffc008a509e0 r __ksymtab_rtnetlink_put_metrics
+ffffffc008a509ec r __ksymtab_rtnl_configure_link
+ffffffc008a509f8 r __ksymtab_rtnl_create_link
+ffffffc008a50a04 r __ksymtab_rtnl_is_locked
+ffffffc008a50a10 r __ksymtab_rtnl_kfree_skbs
+ffffffc008a50a1c r __ksymtab_rtnl_link_get_net
+ffffffc008a50a28 r __ksymtab_rtnl_lock
+ffffffc008a50a34 r __ksymtab_rtnl_lock_killable
+ffffffc008a50a40 r __ksymtab_rtnl_nla_parse_ifla
+ffffffc008a50a4c r __ksymtab_rtnl_notify
+ffffffc008a50a58 r __ksymtab_rtnl_offload_xstats_notify
+ffffffc008a50a64 r __ksymtab_rtnl_set_sk_err
+ffffffc008a50a70 r __ksymtab_rtnl_trylock
+ffffffc008a50a7c r __ksymtab_rtnl_unicast
+ffffffc008a50a88 r __ksymtab_rtnl_unlock
+ffffffc008a50a94 r __ksymtab_rw_verify_area
+ffffffc008a50aa0 r __ksymtab_sb_min_blocksize
+ffffffc008a50aac r __ksymtab_sb_set_blocksize
+ffffffc008a50ab8 r __ksymtab_schedule
+ffffffc008a50ac4 r __ksymtab_schedule_timeout
+ffffffc008a50ad0 r __ksymtab_schedule_timeout_idle
+ffffffc008a50adc r __ksymtab_schedule_timeout_interruptible
+ffffffc008a50ae8 r __ksymtab_schedule_timeout_killable
+ffffffc008a50af4 r __ksymtab_schedule_timeout_uninterruptible
+ffffffc008a50b00 r __ksymtab_scm_detach_fds
+ffffffc008a50b0c r __ksymtab_scm_fp_dup
+ffffffc008a50b18 r __ksymtab_scnprintf
+ffffffc008a50b24 r __ksymtab_secpath_set
+ffffffc008a50b30 r __ksymtab_secure_ipv6_port_ephemeral
+ffffffc008a50b3c r __ksymtab_secure_tcpv6_seq
+ffffffc008a50b48 r __ksymtab_secure_tcpv6_ts_off
+ffffffc008a50b54 r __ksymtab_security_cred_getsecid
+ffffffc008a50b60 r __ksymtab_security_current_getsecid_subj
+ffffffc008a50b6c r __ksymtab_security_d_instantiate
+ffffffc008a50b78 r __ksymtab_security_dentry_create_files_as
+ffffffc008a50b84 r __ksymtab_security_dentry_init_security
+ffffffc008a50b90 r __ksymtab_security_free_mnt_opts
+ffffffc008a50b9c r __ksymtab_security_inet_conn_established
+ffffffc008a50ba8 r __ksymtab_security_inet_conn_request
+ffffffc008a50bb4 r __ksymtab_security_inode_copy_up
+ffffffc008a50bc0 r __ksymtab_security_inode_copy_up_xattr
+ffffffc008a50bcc r __ksymtab_security_inode_getsecctx
+ffffffc008a50bd8 r __ksymtab_security_inode_init_security
+ffffffc008a50be4 r __ksymtab_security_inode_invalidate_secctx
+ffffffc008a50bf0 r __ksymtab_security_inode_listsecurity
+ffffffc008a50bfc r __ksymtab_security_inode_notifysecctx
+ffffffc008a50c08 r __ksymtab_security_inode_setsecctx
+ffffffc008a50c14 r __ksymtab_security_ismaclabel
+ffffffc008a50c20 r __ksymtab_security_locked_down
+ffffffc008a50c2c r __ksymtab_security_old_inode_init_security
+ffffffc008a50c38 r __ksymtab_security_release_secctx
+ffffffc008a50c44 r __ksymtab_security_req_classify_flow
+ffffffc008a50c50 r __ksymtab_security_sb_clone_mnt_opts
+ffffffc008a50c5c r __ksymtab_security_sb_eat_lsm_opts
+ffffffc008a50c68 r __ksymtab_security_sb_mnt_opts_compat
+ffffffc008a50c74 r __ksymtab_security_sb_remount
+ffffffc008a50c80 r __ksymtab_security_sb_set_mnt_opts
+ffffffc008a50c8c r __ksymtab_security_sctp_assoc_established
+ffffffc008a50c98 r __ksymtab_security_sctp_assoc_request
+ffffffc008a50ca4 r __ksymtab_security_sctp_bind_connect
+ffffffc008a50cb0 r __ksymtab_security_sctp_sk_clone
+ffffffc008a50cbc r __ksymtab_security_secctx_to_secid
+ffffffc008a50cc8 r __ksymtab_security_secid_to_secctx
+ffffffc008a50cd4 r __ksymtab_security_secmark_refcount_dec
+ffffffc008a50ce0 r __ksymtab_security_secmark_refcount_inc
+ffffffc008a50cec r __ksymtab_security_secmark_relabel_packet
+ffffffc008a50cf8 r __ksymtab_security_sk_classify_flow
+ffffffc008a50d04 r __ksymtab_security_sk_clone
+ffffffc008a50d10 r __ksymtab_security_sock_graft
+ffffffc008a50d1c r __ksymtab_security_sock_rcv_skb
+ffffffc008a50d28 r __ksymtab_security_socket_getpeersec_dgram
+ffffffc008a50d34 r __ksymtab_security_socket_socketpair
+ffffffc008a50d40 r __ksymtab_security_task_getsecid_obj
+ffffffc008a50d4c r __ksymtab_security_tun_dev_alloc_security
+ffffffc008a50d58 r __ksymtab_security_tun_dev_attach
+ffffffc008a50d64 r __ksymtab_security_tun_dev_attach_queue
+ffffffc008a50d70 r __ksymtab_security_tun_dev_create
+ffffffc008a50d7c r __ksymtab_security_tun_dev_free_security
+ffffffc008a50d88 r __ksymtab_security_tun_dev_open
+ffffffc008a50d94 r __ksymtab_security_unix_may_send
+ffffffc008a50da0 r __ksymtab_security_unix_stream_connect
+ffffffc008a50dac r __ksymtab_send_sig
+ffffffc008a50db8 r __ksymtab_send_sig_info
+ffffffc008a50dc4 r __ksymtab_send_sig_mceerr
+ffffffc008a50dd0 r __ksymtab_seq_bprintf
+ffffffc008a50ddc r __ksymtab_seq_dentry
+ffffffc008a50de8 r __ksymtab_seq_escape_mem
+ffffffc008a50df4 r __ksymtab_seq_file_path
+ffffffc008a50e00 r __ksymtab_seq_hex_dump
+ffffffc008a50e0c r __ksymtab_seq_hlist_next
+ffffffc008a50e18 r __ksymtab_seq_hlist_next_percpu
+ffffffc008a50e24 r __ksymtab_seq_hlist_next_rcu
+ffffffc008a50e30 r __ksymtab_seq_hlist_start
+ffffffc008a50e3c r __ksymtab_seq_hlist_start_head
+ffffffc008a50e48 r __ksymtab_seq_hlist_start_head_rcu
+ffffffc008a50e54 r __ksymtab_seq_hlist_start_percpu
+ffffffc008a50e60 r __ksymtab_seq_hlist_start_rcu
+ffffffc008a50e6c r __ksymtab_seq_list_next
+ffffffc008a50e78 r __ksymtab_seq_list_next_rcu
+ffffffc008a50e84 r __ksymtab_seq_list_start
+ffffffc008a50e90 r __ksymtab_seq_list_start_head
+ffffffc008a50e9c r __ksymtab_seq_list_start_head_rcu
+ffffffc008a50ea8 r __ksymtab_seq_list_start_rcu
+ffffffc008a50eb4 r __ksymtab_seq_lseek
+ffffffc008a50ec0 r __ksymtab_seq_open
+ffffffc008a50ecc r __ksymtab_seq_open_private
+ffffffc008a50ed8 r __ksymtab_seq_pad
+ffffffc008a50ee4 r __ksymtab_seq_path
+ffffffc008a50ef0 r __ksymtab_seq_printf
+ffffffc008a50efc r __ksymtab_seq_put_decimal_ll
+ffffffc008a50f08 r __ksymtab_seq_put_decimal_ull
+ffffffc008a50f14 r __ksymtab_seq_putc
+ffffffc008a50f20 r __ksymtab_seq_puts
+ffffffc008a50f2c r __ksymtab_seq_read
+ffffffc008a50f38 r __ksymtab_seq_read_iter
+ffffffc008a50f44 r __ksymtab_seq_release
+ffffffc008a50f50 r __ksymtab_seq_release_private
+ffffffc008a50f5c r __ksymtab_seq_vprintf
+ffffffc008a50f68 r __ksymtab_seq_write
+ffffffc008a50f74 r __ksymtab_serial8250_do_pm
+ffffffc008a50f80 r __ksymtab_serial8250_do_set_termios
+ffffffc008a50f8c r __ksymtab_serial8250_register_8250_port
+ffffffc008a50f98 r __ksymtab_serial8250_resume_port
+ffffffc008a50fa4 r __ksymtab_serial8250_set_isa_configurator
+ffffffc008a50fb0 r __ksymtab_serial8250_suspend_port
+ffffffc008a50fbc r __ksymtab_serial8250_unregister_port
+ffffffc008a50fc8 r __ksymtab_serio_bus
+ffffffc008a50fd4 r __ksymtab_serio_close
+ffffffc008a50fe0 r __ksymtab_serio_interrupt
+ffffffc008a50fec r __ksymtab_serio_open
+ffffffc008a50ff8 r __ksymtab_serio_reconnect
+ffffffc008a51004 r __ksymtab_serio_rescan
+ffffffc008a51010 r __ksymtab_serio_unregister_child_port
+ffffffc008a5101c r __ksymtab_serio_unregister_driver
+ffffffc008a51028 r __ksymtab_serio_unregister_port
+ffffffc008a51034 r __ksymtab_set_anon_super
+ffffffc008a51040 r __ksymtab_set_anon_super_fc
+ffffffc008a5104c r __ksymtab_set_bh_page
+ffffffc008a51058 r __ksymtab_set_binfmt
+ffffffc008a51064 r __ksymtab_set_blocksize
+ffffffc008a51070 r __ksymtab_set_cached_acl
+ffffffc008a5107c r __ksymtab_set_capacity
+ffffffc008a51088 r __ksymtab_set_create_files_as
+ffffffc008a51094 r __ksymtab_set_current_groups
+ffffffc008a510a0 r __ksymtab_set_disk_ro
+ffffffc008a510ac r __ksymtab_set_freezable
+ffffffc008a510b8 r __ksymtab_set_groups
+ffffffc008a510c4 r __ksymtab_set_nlink
+ffffffc008a510d0 r __ksymtab_set_normalized_timespec64
+ffffffc008a510dc r __ksymtab_set_page_dirty
+ffffffc008a510e8 r __ksymtab_set_page_dirty_lock
+ffffffc008a510f4 r __ksymtab_set_page_writeback
+ffffffc008a51100 r __ksymtab_set_posix_acl
+ffffffc008a5110c r __ksymtab_set_security_override
+ffffffc008a51118 r __ksymtab_set_security_override_from_ctx
+ffffffc008a51124 r __ksymtab_set_user_nice
+ffffffc008a51130 r __ksymtab_setattr_copy
+ffffffc008a5113c r __ksymtab_setattr_prepare
+ffffffc008a51148 r __ksymtab_setattr_should_drop_suidgid
+ffffffc008a51154 r __ksymtab_setup_arg_pages
+ffffffc008a51160 r __ksymtab_setup_max_cpus
+ffffffc008a5116c r __ksymtab_setup_new_exec
+ffffffc008a51178 r __ksymtab_sg_alloc_append_table_from_pages
+ffffffc008a51184 r __ksymtab_sg_alloc_table
+ffffffc008a51190 r __ksymtab_sg_alloc_table_from_pages_segment
+ffffffc008a5119c r __ksymtab_sg_copy_buffer
+ffffffc008a511a8 r __ksymtab_sg_copy_from_buffer
+ffffffc008a511b4 r __ksymtab_sg_copy_to_buffer
+ffffffc008a511c0 r __ksymtab_sg_free_append_table
+ffffffc008a511cc r __ksymtab_sg_free_table
+ffffffc008a511d8 r __ksymtab_sg_init_one
+ffffffc008a511e4 r __ksymtab_sg_init_table
+ffffffc008a511f0 r __ksymtab_sg_last
+ffffffc008a511fc r __ksymtab_sg_miter_next
+ffffffc008a51208 r __ksymtab_sg_miter_skip
+ffffffc008a51214 r __ksymtab_sg_miter_start
+ffffffc008a51220 r __ksymtab_sg_miter_stop
+ffffffc008a5122c r __ksymtab_sg_nents
+ffffffc008a51238 r __ksymtab_sg_nents_for_len
+ffffffc008a51244 r __ksymtab_sg_next
+ffffffc008a51250 r __ksymtab_sg_pcopy_from_buffer
+ffffffc008a5125c r __ksymtab_sg_pcopy_to_buffer
+ffffffc008a51268 r __ksymtab_sg_zero_buffer
+ffffffc008a51274 r __ksymtab_sget
+ffffffc008a51280 r __ksymtab_sget_fc
+ffffffc008a5128c r __ksymtab_sgl_alloc
+ffffffc008a51298 r __ksymtab_sgl_alloc_order
+ffffffc008a512a4 r __ksymtab_sgl_free
+ffffffc008a512b0 r __ksymtab_sgl_free_n_order
+ffffffc008a512bc r __ksymtab_sgl_free_order
+ffffffc008a512c8 r __ksymtab_sha1_init
+ffffffc008a512d4 r __ksymtab_sha1_transform
+ffffffc008a512e0 r __ksymtab_sha224_final
+ffffffc008a512ec r __ksymtab_sha224_update
+ffffffc008a512f8 r __ksymtab_sha256
+ffffffc008a51304 r __ksymtab_sha256_final
+ffffffc008a51310 r __ksymtab_sha256_update
+ffffffc008a5131c r __ksymtab_shmem_aops
+ffffffc008a51328 r __ksymtab_shrink_dcache_parent
+ffffffc008a51334 r __ksymtab_shrink_dcache_sb
+ffffffc008a51340 r __ksymtab_si_meminfo
+ffffffc008a5134c r __ksymtab_sigprocmask
+ffffffc008a51358 r __ksymtab_simple_dentry_operations
+ffffffc008a51364 r __ksymtab_simple_dir_inode_operations
+ffffffc008a51370 r __ksymtab_simple_dir_operations
+ffffffc008a5137c r __ksymtab_simple_empty
+ffffffc008a51388 r __ksymtab_simple_fill_super
+ffffffc008a51394 r __ksymtab_simple_get_link
+ffffffc008a513a0 r __ksymtab_simple_getattr
+ffffffc008a513ac r __ksymtab_simple_link
+ffffffc008a513b8 r __ksymtab_simple_lookup
+ffffffc008a513c4 r __ksymtab_simple_nosetlease
+ffffffc008a513d0 r __ksymtab_simple_open
+ffffffc008a513dc r __ksymtab_simple_pin_fs
+ffffffc008a513e8 r __ksymtab_simple_read_from_buffer
+ffffffc008a513f4 r __ksymtab_simple_recursive_removal
+ffffffc008a51400 r __ksymtab_simple_release_fs
+ffffffc008a5140c r __ksymtab_simple_rename
+ffffffc008a51418 r __ksymtab_simple_rmdir
+ffffffc008a51424 r __ksymtab_simple_setattr
+ffffffc008a51430 r __ksymtab_simple_statfs
+ffffffc008a5143c r __ksymtab_simple_strtol
+ffffffc008a51448 r __ksymtab_simple_strtoll
+ffffffc008a51454 r __ksymtab_simple_strtoul
+ffffffc008a51460 r __ksymtab_simple_strtoull
+ffffffc008a5146c r __ksymtab_simple_symlink_inode_operations
+ffffffc008a51478 r __ksymtab_simple_transaction_get
+ffffffc008a51484 r __ksymtab_simple_transaction_read
+ffffffc008a51490 r __ksymtab_simple_transaction_release
+ffffffc008a5149c r __ksymtab_simple_transaction_set
+ffffffc008a514a8 r __ksymtab_simple_unlink
+ffffffc008a514b4 r __ksymtab_simple_write_begin
+ffffffc008a514c0 r __ksymtab_simple_write_to_buffer
+ffffffc008a514cc r __ksymtab_single_open
+ffffffc008a514d8 r __ksymtab_single_open_size
+ffffffc008a514e4 r __ksymtab_single_release
+ffffffc008a514f0 r __ksymtab_single_task_running
+ffffffc008a514fc r __ksymtab_siphash_1u32
+ffffffc008a51508 r __ksymtab_siphash_1u64
+ffffffc008a51514 r __ksymtab_siphash_2u64
+ffffffc008a51520 r __ksymtab_siphash_3u32
+ffffffc008a5152c r __ksymtab_siphash_3u64
+ffffffc008a51538 r __ksymtab_siphash_4u64
+ffffffc008a51544 r __ksymtab_sk_alloc
+ffffffc008a51550 r __ksymtab_sk_busy_loop_end
+ffffffc008a5155c r __ksymtab_sk_capable
+ffffffc008a51568 r __ksymtab_sk_common_release
+ffffffc008a51574 r __ksymtab_sk_dst_check
+ffffffc008a51580 r __ksymtab_sk_error_report
+ffffffc008a5158c r __ksymtab_sk_filter_trim_cap
+ffffffc008a51598 r __ksymtab_sk_free
+ffffffc008a515a4 r __ksymtab_sk_mc_loop
+ffffffc008a515b0 r __ksymtab_sk_net_capable
+ffffffc008a515bc r __ksymtab_sk_ns_capable
+ffffffc008a515c8 r __ksymtab_sk_page_frag_refill
+ffffffc008a515d4 r __ksymtab_sk_reset_timer
+ffffffc008a515e0 r __ksymtab_sk_send_sigurg
+ffffffc008a515ec r __ksymtab_sk_stop_timer
+ffffffc008a515f8 r __ksymtab_sk_stop_timer_sync
+ffffffc008a51604 r __ksymtab_sk_stream_error
+ffffffc008a51610 r __ksymtab_sk_stream_kill_queues
+ffffffc008a5161c r __ksymtab_sk_stream_wait_close
+ffffffc008a51628 r __ksymtab_sk_stream_wait_connect
+ffffffc008a51634 r __ksymtab_sk_stream_wait_memory
+ffffffc008a51640 r __ksymtab_sk_wait_data
+ffffffc008a5164c r __ksymtab_skb_abort_seq_read
+ffffffc008a51658 r __ksymtab_skb_add_rx_frag
+ffffffc008a51664 r __ksymtab_skb_append
+ffffffc008a51670 r __ksymtab_skb_checksum
+ffffffc008a5167c r __ksymtab_skb_checksum_help
+ffffffc008a51688 r __ksymtab_skb_checksum_setup
+ffffffc008a51694 r __ksymtab_skb_checksum_trimmed
+ffffffc008a516a0 r __ksymtab_skb_clone
+ffffffc008a516ac r __ksymtab_skb_clone_sk
+ffffffc008a516b8 r __ksymtab_skb_coalesce_rx_frag
+ffffffc008a516c4 r __ksymtab_skb_copy
+ffffffc008a516d0 r __ksymtab_skb_copy_and_csum_bits
+ffffffc008a516dc r __ksymtab_skb_copy_and_csum_datagram_msg
+ffffffc008a516e8 r __ksymtab_skb_copy_and_csum_dev
+ffffffc008a516f4 r __ksymtab_skb_copy_and_hash_datagram_iter
+ffffffc008a51700 r __ksymtab_skb_copy_bits
+ffffffc008a5170c r __ksymtab_skb_copy_datagram_from_iter
+ffffffc008a51718 r __ksymtab_skb_copy_datagram_iter
+ffffffc008a51724 r __ksymtab_skb_copy_expand
+ffffffc008a51730 r __ksymtab_skb_copy_header
+ffffffc008a5173c r __ksymtab_skb_csum_hwoffload_help
+ffffffc008a51748 r __ksymtab_skb_dequeue
+ffffffc008a51754 r __ksymtab_skb_dequeue_tail
+ffffffc008a51760 r __ksymtab_skb_dump
+ffffffc008a5176c r __ksymtab_skb_ensure_writable
+ffffffc008a51778 r __ksymtab_skb_eth_gso_segment
+ffffffc008a51784 r __ksymtab_skb_eth_pop
+ffffffc008a51790 r __ksymtab_skb_eth_push
+ffffffc008a5179c r __ksymtab_skb_expand_head
+ffffffc008a517a8 r __ksymtab_skb_ext_add
+ffffffc008a517b4 r __ksymtab_skb_find_text
+ffffffc008a517c0 r __ksymtab_skb_flow_dissect_ct
+ffffffc008a517cc r __ksymtab_skb_flow_dissect_hash
+ffffffc008a517d8 r __ksymtab_skb_flow_dissect_meta
+ffffffc008a517e4 r __ksymtab_skb_flow_dissect_tunnel_info
+ffffffc008a517f0 r __ksymtab_skb_flow_dissector_init
+ffffffc008a517fc r __ksymtab_skb_flow_get_icmp_tci
+ffffffc008a51808 r __ksymtab_skb_free_datagram
+ffffffc008a51814 r __ksymtab_skb_get_hash_perturb
+ffffffc008a51820 r __ksymtab_skb_headers_offset_update
+ffffffc008a5182c r __ksymtab_skb_kill_datagram
+ffffffc008a51838 r __ksymtab_skb_mac_gso_segment
+ffffffc008a51844 r __ksymtab_skb_orphan_partial
+ffffffc008a51850 r __ksymtab_skb_page_frag_refill
+ffffffc008a5185c r __ksymtab_skb_prepare_seq_read
+ffffffc008a51868 r __ksymtab_skb_pull
+ffffffc008a51874 r __ksymtab_skb_pull_data
+ffffffc008a51880 r __ksymtab_skb_push
+ffffffc008a5188c r __ksymtab_skb_put
+ffffffc008a51898 r __ksymtab_skb_queue_head
+ffffffc008a518a4 r __ksymtab_skb_queue_purge
+ffffffc008a518b0 r __ksymtab_skb_queue_tail
+ffffffc008a518bc r __ksymtab_skb_realloc_headroom
+ffffffc008a518c8 r __ksymtab_skb_recv_datagram
+ffffffc008a518d4 r __ksymtab_skb_seq_read
+ffffffc008a518e0 r __ksymtab_skb_set_owner_w
+ffffffc008a518ec r __ksymtab_skb_split
+ffffffc008a518f8 r __ksymtab_skb_store_bits
+ffffffc008a51904 r __ksymtab_skb_trim
+ffffffc008a51910 r __ksymtab_skb_try_coalesce
+ffffffc008a5191c r __ksymtab_skb_tunnel_check_pmtu
+ffffffc008a51928 r __ksymtab_skb_tx_error
+ffffffc008a51934 r __ksymtab_skb_udp_tunnel_segment
+ffffffc008a51940 r __ksymtab_skb_unlink
+ffffffc008a5194c r __ksymtab_skb_vlan_pop
+ffffffc008a51958 r __ksymtab_skb_vlan_push
+ffffffc008a51964 r __ksymtab_skb_vlan_untag
+ffffffc008a51970 r __ksymtab_skip_spaces
+ffffffc008a5197c r __ksymtab_slash_name
+ffffffc008a51988 r __ksymtab_smp_call_function
+ffffffc008a51994 r __ksymtab_smp_call_function_many
+ffffffc008a519a0 r __ksymtab_smp_call_function_single
+ffffffc008a519ac r __ksymtab_snprintf
+ffffffc008a519b8 r __ksymtab_sock_alloc
+ffffffc008a519c4 r __ksymtab_sock_alloc_file
+ffffffc008a519d0 r __ksymtab_sock_alloc_send_pskb
+ffffffc008a519dc r __ksymtab_sock_bind_add
+ffffffc008a519e8 r __ksymtab_sock_bindtoindex
+ffffffc008a519f4 r __ksymtab_sock_cmsg_send
+ffffffc008a51a00 r __ksymtab_sock_common_getsockopt
+ffffffc008a51a0c r __ksymtab_sock_common_recvmsg
+ffffffc008a51a18 r __ksymtab_sock_common_setsockopt
+ffffffc008a51a24 r __ksymtab_sock_copy_user_timeval
+ffffffc008a51a30 r __ksymtab_sock_create
+ffffffc008a51a3c r __ksymtab_sock_create_kern
+ffffffc008a51a48 r __ksymtab_sock_create_lite
+ffffffc008a51a54 r __ksymtab_sock_dequeue_err_skb
+ffffffc008a51a60 r __ksymtab_sock_diag_put_filterinfo
+ffffffc008a51a6c r __ksymtab_sock_edemux
+ffffffc008a51a78 r __ksymtab_sock_efree
+ffffffc008a51a84 r __ksymtab_sock_enable_timestamps
+ffffffc008a51a90 r __ksymtab_sock_from_file
+ffffffc008a51a9c r __ksymtab_sock_get_timeout
+ffffffc008a51aa8 r __ksymtab_sock_gettstamp
+ffffffc008a51ab4 r __ksymtab_sock_i_ino
+ffffffc008a51ac0 r __ksymtab_sock_i_uid
+ffffffc008a51acc r __ksymtab_sock_init_data
+ffffffc008a51ad8 r __ksymtab_sock_init_data_uid
+ffffffc008a51ae4 r __ksymtab_sock_kfree_s
+ffffffc008a51af0 r __ksymtab_sock_kmalloc
+ffffffc008a51afc r __ksymtab_sock_kzfree_s
+ffffffc008a51b08 r __ksymtab_sock_load_diag_module
+ffffffc008a51b14 r __ksymtab_sock_no_accept
+ffffffc008a51b20 r __ksymtab_sock_no_bind
+ffffffc008a51b2c r __ksymtab_sock_no_connect
+ffffffc008a51b38 r __ksymtab_sock_no_getname
+ffffffc008a51b44 r __ksymtab_sock_no_ioctl
+ffffffc008a51b50 r __ksymtab_sock_no_linger
+ffffffc008a51b5c r __ksymtab_sock_no_listen
+ffffffc008a51b68 r __ksymtab_sock_no_mmap
+ffffffc008a51b74 r __ksymtab_sock_no_recvmsg
+ffffffc008a51b80 r __ksymtab_sock_no_sendmsg
+ffffffc008a51b8c r __ksymtab_sock_no_sendmsg_locked
+ffffffc008a51b98 r __ksymtab_sock_no_sendpage
+ffffffc008a51ba4 r __ksymtab_sock_no_sendpage_locked
+ffffffc008a51bb0 r __ksymtab_sock_no_shutdown
+ffffffc008a51bbc r __ksymtab_sock_no_socketpair
+ffffffc008a51bc8 r __ksymtab_sock_pfree
+ffffffc008a51bd4 r __ksymtab_sock_queue_err_skb
+ffffffc008a51be0 r __ksymtab_sock_queue_rcv_skb_reason
+ffffffc008a51bec r __ksymtab_sock_recv_errqueue
+ffffffc008a51bf8 r __ksymtab_sock_recvmsg
+ffffffc008a51c04 r __ksymtab_sock_register
+ffffffc008a51c10 r __ksymtab_sock_release
+ffffffc008a51c1c r __ksymtab_sock_rfree
+ffffffc008a51c28 r __ksymtab_sock_sendmsg
+ffffffc008a51c34 r __ksymtab_sock_set_keepalive
+ffffffc008a51c40 r __ksymtab_sock_set_mark
+ffffffc008a51c4c r __ksymtab_sock_set_priority
+ffffffc008a51c58 r __ksymtab_sock_set_rcvbuf
+ffffffc008a51c64 r __ksymtab_sock_set_reuseaddr
+ffffffc008a51c70 r __ksymtab_sock_set_reuseport
+ffffffc008a51c7c r __ksymtab_sock_set_sndtimeo
+ffffffc008a51c88 r __ksymtab_sock_setsockopt
+ffffffc008a51c94 r __ksymtab_sock_unregister
+ffffffc008a51ca0 r __ksymtab_sock_wake_async
+ffffffc008a51cac r __ksymtab_sock_wfree
+ffffffc008a51cb8 r __ksymtab_sock_wmalloc
+ffffffc008a51cc4 r __ksymtab_sockfd_lookup
+ffffffc008a51cd0 r __ksymtab_sockopt_capable
+ffffffc008a51cdc r __ksymtab_sockopt_lock_sock
+ffffffc008a51ce8 r __ksymtab_sockopt_ns_capable
+ffffffc008a51cf4 r __ksymtab_sockopt_release_sock
+ffffffc008a51d00 r __ksymtab_softnet_data
+ffffffc008a51d0c r __ksymtab_sort
+ffffffc008a51d18 r __ksymtab_sort_r
+ffffffc008a51d24 r __ksymtab_splice_direct_to_actor
+ffffffc008a51d30 r __ksymtab_sprintf
+ffffffc008a51d3c r __ksymtab_sscanf
+ffffffc008a51d48 r __ksymtab_stack_depot_get_extra_bits
+ffffffc008a51d54 r __ksymtab_start_tty
+ffffffc008a51d60 r __ksymtab_stop_tty
+ffffffc008a51d6c r __ksymtab_stpcpy
+ffffffc008a51d78 r __ksymtab_strcasecmp
+ffffffc008a51d84 r __ksymtab_strcat
+ffffffc008a51d90 r __ksymtab_strchr
+ffffffc008a51d9c r __ksymtab_strchrnul
+ffffffc008a51da8 r __ksymtab_strcmp
+ffffffc008a51db4 r __ksymtab_strcpy
+ffffffc008a51dc0 r __ksymtab_strcspn
+ffffffc008a51dcc r __ksymtab_stream_open
+ffffffc008a51dd8 r __ksymtab_strim
+ffffffc008a51de4 r __ksymtab_string_escape_mem
+ffffffc008a51df0 r __ksymtab_string_get_size
+ffffffc008a51dfc r __ksymtab_string_unescape
+ffffffc008a51e08 r __ksymtab_strlcat
+ffffffc008a51e14 r __ksymtab_strlcpy
+ffffffc008a51e20 r __ksymtab_strlen
+ffffffc008a51e2c r __ksymtab_strncasecmp
+ffffffc008a51e38 r __ksymtab_strncat
+ffffffc008a51e44 r __ksymtab_strnchr
+ffffffc008a51e50 r __ksymtab_strncmp
+ffffffc008a51e5c r __ksymtab_strncpy
+ffffffc008a51e68 r __ksymtab_strncpy_from_user
+ffffffc008a51e74 r __ksymtab_strndup_user
+ffffffc008a51e80 r __ksymtab_strnlen
+ffffffc008a51e8c r __ksymtab_strnlen_user
+ffffffc008a51e98 r __ksymtab_strnstr
+ffffffc008a51ea4 r __ksymtab_strpbrk
+ffffffc008a51eb0 r __ksymtab_strrchr
+ffffffc008a51ebc r __ksymtab_strreplace
+ffffffc008a51ec8 r __ksymtab_strscpy
+ffffffc008a51ed4 r __ksymtab_strscpy_pad
+ffffffc008a51ee0 r __ksymtab_strsep
+ffffffc008a51eec r __ksymtab_strspn
+ffffffc008a51ef8 r __ksymtab_strstr
+ffffffc008a51f04 r __ksymtab_submit_bh
+ffffffc008a51f10 r __ksymtab_submit_bio
+ffffffc008a51f1c r __ksymtab_submit_bio_noacct
+ffffffc008a51f28 r __ksymtab_submit_bio_wait
+ffffffc008a51f34 r __ksymtab_super_setup_bdi
+ffffffc008a51f40 r __ksymtab_super_setup_bdi_name
+ffffffc008a51f4c r __ksymtab_swake_up_all
+ffffffc008a51f58 r __ksymtab_swake_up_locked
+ffffffc008a51f64 r __ksymtab_swake_up_one
+ffffffc008a51f70 r __ksymtab_sync_blockdev
+ffffffc008a51f7c r __ksymtab_sync_blockdev_range
+ffffffc008a51f88 r __ksymtab_sync_dirty_buffer
+ffffffc008a51f94 r __ksymtab_sync_filesystem
+ffffffc008a51fa0 r __ksymtab_sync_inode_metadata
+ffffffc008a51fac r __ksymtab_sync_inodes_sb
+ffffffc008a51fb8 r __ksymtab_sync_mapping_buffers
+ffffffc008a51fc4 r __ksymtab_synchronize_hardirq
+ffffffc008a51fd0 r __ksymtab_synchronize_irq
+ffffffc008a51fdc r __ksymtab_synchronize_net
+ffffffc008a51fe8 r __ksymtab_synchronize_shrinkers
+ffffffc008a51ff4 r __ksymtab_sys_tz
+ffffffc008a52000 r __ksymtab_sysctl_devconf_inherit_init_net
+ffffffc008a5200c r __ksymtab_sysctl_fb_tunnels_only_for_init_net
+ffffffc008a52018 r __ksymtab_sysctl_max_skb_frags
+ffffffc008a52024 r __ksymtab_sysctl_optmem_max
+ffffffc008a52030 r __ksymtab_sysctl_rmem_max
+ffffffc008a5203c r __ksymtab_sysctl_tcp_mem
+ffffffc008a52048 r __ksymtab_sysctl_udp_mem
+ffffffc008a52054 r __ksymtab_sysctl_vals
+ffffffc008a52060 r __ksymtab_sysctl_wmem_max
+ffffffc008a5206c r __ksymtab_sysfs_format_mac
+ffffffc008a52078 r __ksymtab_sysfs_streq
+ffffffc008a52084 r __ksymtab_system_state
+ffffffc008a52090 r __ksymtab_system_wq
+ffffffc008a5209c r __ksymtab_tag_pages_for_writeback
+ffffffc008a520a8 r __ksymtab_take_dentry_name_snapshot
+ffffffc008a520b4 r __ksymtab_task_lookup_next_fd_rcu
+ffffffc008a520c0 r __ksymtab_tasklet_init
+ffffffc008a520cc r __ksymtab_tasklet_kill
+ffffffc008a520d8 r __ksymtab_tasklet_setup
+ffffffc008a520e4 r __ksymtab_tasklet_unlock_spin_wait
+ffffffc008a520f0 r __ksymtab_tcp_add_backlog
+ffffffc008a520fc r __ksymtab_tcp_bpf_bypass_getsockopt
+ffffffc008a52108 r __ksymtab_tcp_check_req
+ffffffc008a52114 r __ksymtab_tcp_child_process
+ffffffc008a52120 r __ksymtab_tcp_close
+ffffffc008a5212c r __ksymtab_tcp_conn_request
+ffffffc008a52138 r __ksymtab_tcp_connect
+ffffffc008a52144 r __ksymtab_tcp_create_openreq_child
+ffffffc008a52150 r __ksymtab_tcp_disconnect
+ffffffc008a5215c r __ksymtab_tcp_enter_cwr
+ffffffc008a52168 r __ksymtab_tcp_enter_quickack_mode
+ffffffc008a52174 r __ksymtab_tcp_fastopen_defer_connect
+ffffffc008a52180 r __ksymtab_tcp_filter
+ffffffc008a5218c r __ksymtab_tcp_getsockopt
+ffffffc008a52198 r __ksymtab_tcp_gro_complete
+ffffffc008a521a4 r __ksymtab_tcp_hashinfo
+ffffffc008a521b0 r __ksymtab_tcp_init_sock
+ffffffc008a521bc r __ksymtab_tcp_initialize_rcv_mss
+ffffffc008a521c8 r __ksymtab_tcp_ioctl
+ffffffc008a521d4 r __ksymtab_tcp_ld_RTO_revert
+ffffffc008a521e0 r __ksymtab_tcp_make_synack
+ffffffc008a521ec r __ksymtab_tcp_memory_allocated
+ffffffc008a521f8 r __ksymtab_tcp_mmap
+ffffffc008a52204 r __ksymtab_tcp_mss_to_mtu
+ffffffc008a52210 r __ksymtab_tcp_mtu_to_mss
+ffffffc008a5221c r __ksymtab_tcp_mtup_init
+ffffffc008a52228 r __ksymtab_tcp_openreq_init_rwin
+ffffffc008a52234 r __ksymtab_tcp_parse_options
+ffffffc008a52240 r __ksymtab_tcp_peek_len
+ffffffc008a5224c r __ksymtab_tcp_poll
+ffffffc008a52258 r __ksymtab_tcp_prot
+ffffffc008a52264 r __ksymtab_tcp_rcv_established
+ffffffc008a52270 r __ksymtab_tcp_rcv_state_process
+ffffffc008a5227c r __ksymtab_tcp_read_done
+ffffffc008a52288 r __ksymtab_tcp_read_skb
+ffffffc008a52294 r __ksymtab_tcp_read_sock
+ffffffc008a522a0 r __ksymtab_tcp_recv_skb
+ffffffc008a522ac r __ksymtab_tcp_recvmsg
+ffffffc008a522b8 r __ksymtab_tcp_release_cb
+ffffffc008a522c4 r __ksymtab_tcp_req_err
+ffffffc008a522d0 r __ksymtab_tcp_rtx_synack
+ffffffc008a522dc r __ksymtab_tcp_select_initial_window
+ffffffc008a522e8 r __ksymtab_tcp_sendmsg
+ffffffc008a522f4 r __ksymtab_tcp_sendpage
+ffffffc008a52300 r __ksymtab_tcp_seq_next
+ffffffc008a5230c r __ksymtab_tcp_seq_start
+ffffffc008a52318 r __ksymtab_tcp_seq_stop
+ffffffc008a52324 r __ksymtab_tcp_set_rcvlowat
+ffffffc008a52330 r __ksymtab_tcp_setsockopt
+ffffffc008a5233c r __ksymtab_tcp_shutdown
+ffffffc008a52348 r __ksymtab_tcp_simple_retransmit
+ffffffc008a52354 r __ksymtab_tcp_sock_set_cork
+ffffffc008a52360 r __ksymtab_tcp_sock_set_keepcnt
+ffffffc008a5236c r __ksymtab_tcp_sock_set_keepidle
+ffffffc008a52378 r __ksymtab_tcp_sock_set_keepintvl
+ffffffc008a52384 r __ksymtab_tcp_sock_set_nodelay
+ffffffc008a52390 r __ksymtab_tcp_sock_set_quickack
+ffffffc008a5239c r __ksymtab_tcp_sock_set_syncnt
+ffffffc008a523a8 r __ksymtab_tcp_sock_set_user_timeout
+ffffffc008a523b4 r __ksymtab_tcp_sockets_allocated
+ffffffc008a523c0 r __ksymtab_tcp_splice_read
+ffffffc008a523cc r __ksymtab_tcp_stream_memory_free
+ffffffc008a523d8 r __ksymtab_tcp_syn_ack_timeout
+ffffffc008a523e4 r __ksymtab_tcp_sync_mss
+ffffffc008a523f0 r __ksymtab_tcp_time_wait
+ffffffc008a523fc r __ksymtab_tcp_timewait_state_process
+ffffffc008a52408 r __ksymtab_tcp_tx_delay_enabled
+ffffffc008a52414 r __ksymtab_tcp_v4_conn_request
+ffffffc008a52420 r __ksymtab_tcp_v4_connect
+ffffffc008a5242c r __ksymtab_tcp_v4_destroy_sock
+ffffffc008a52438 r __ksymtab_tcp_v4_do_rcv
+ffffffc008a52444 r __ksymtab_tcp_v4_mtu_reduced
+ffffffc008a52450 r __ksymtab_tcp_v4_send_check
+ffffffc008a5245c r __ksymtab_tcp_v4_syn_recv_sock
+ffffffc008a52468 r __ksymtab_test_taint
+ffffffc008a52474 r __ksymtab_thaw_bdev
+ffffffc008a52480 r __ksymtab_thaw_super
+ffffffc008a5248c r __ksymtab_thread_group_exited
+ffffffc008a52498 r __ksymtab_time64_to_tm
+ffffffc008a524a4 r __ksymtab_timer_reduce
+ffffffc008a524b0 r __ksymtab_timespec64_to_jiffies
+ffffffc008a524bc r __ksymtab_timestamp_truncate
+ffffffc008a524c8 r __ksymtab_touch_atime
+ffffffc008a524d4 r __ksymtab_touch_buffer
+ffffffc008a524e0 r __ksymtab_touch_softlockup_watchdog
+ffffffc008a524ec r __ksymtab_touchscreen_parse_properties
+ffffffc008a524f8 r __ksymtab_touchscreen_report_pos
+ffffffc008a52504 r __ksymtab_touchscreen_set_mt_pos
+ffffffc008a52510 r __ksymtab_trace_event_printf
+ffffffc008a5251c r __ksymtab_trace_print_array_seq
+ffffffc008a52528 r __ksymtab_trace_print_flags_seq
+ffffffc008a52534 r __ksymtab_trace_print_hex_dump_seq
+ffffffc008a52540 r __ksymtab_trace_print_hex_seq
+ffffffc008a5254c r __ksymtab_trace_print_symbols_seq
+ffffffc008a52558 r __ksymtab_trace_raw_output_prep
+ffffffc008a52564 r __ksymtab_trace_seq_hex_dump
+ffffffc008a52570 r __ksymtab_truncate_inode_pages
+ffffffc008a5257c r __ksymtab_truncate_inode_pages_final
+ffffffc008a52588 r __ksymtab_truncate_inode_pages_range
+ffffffc008a52594 r __ksymtab_truncate_pagecache
+ffffffc008a525a0 r __ksymtab_truncate_pagecache_range
+ffffffc008a525ac r __ksymtab_truncate_setsize
+ffffffc008a525b8 r __ksymtab_try_lookup_one_len
+ffffffc008a525c4 r __ksymtab_try_offline_node
+ffffffc008a525d0 r __ksymtab_try_to_del_timer_sync
+ffffffc008a525dc r __ksymtab_try_to_free_buffers
+ffffffc008a525e8 r __ksymtab_try_to_release_page
+ffffffc008a525f4 r __ksymtab_try_to_writeback_inodes_sb
+ffffffc008a52600 r __ksymtab_try_wait_for_completion
+ffffffc008a5260c r __ksymtab_tso_build_data
+ffffffc008a52618 r __ksymtab_tso_build_hdr
+ffffffc008a52624 r __ksymtab_tso_count_descs
+ffffffc008a52630 r __ksymtab_tso_start
+ffffffc008a5263c r __ksymtab_tty_chars_in_buffer
+ffffffc008a52648 r __ksymtab_tty_check_change
+ffffffc008a52654 r __ksymtab_tty_devnum
+ffffffc008a52660 r __ksymtab_tty_do_resize
+ffffffc008a5266c r __ksymtab_tty_driver_flush_buffer
+ffffffc008a52678 r __ksymtab_tty_driver_kref_put
+ffffffc008a52684 r __ksymtab_tty_flip_buffer_push
+ffffffc008a52690 r __ksymtab_tty_hangup
+ffffffc008a5269c r __ksymtab_tty_hung_up_p
+ffffffc008a526a8 r __ksymtab_tty_insert_flip_string_fixed_flag
+ffffffc008a526b4 r __ksymtab_tty_insert_flip_string_flags
+ffffffc008a526c0 r __ksymtab_tty_kref_put
+ffffffc008a526cc r __ksymtab_tty_lock
+ffffffc008a526d8 r __ksymtab_tty_name
+ffffffc008a526e4 r __ksymtab_tty_port_alloc_xmit_buf
+ffffffc008a526f0 r __ksymtab_tty_port_block_til_ready
+ffffffc008a526fc r __ksymtab_tty_port_carrier_raised
+ffffffc008a52708 r __ksymtab_tty_port_close
+ffffffc008a52714 r __ksymtab_tty_port_close_end
+ffffffc008a52720 r __ksymtab_tty_port_close_start
+ffffffc008a5272c r __ksymtab_tty_port_destroy
+ffffffc008a52738 r __ksymtab_tty_port_free_xmit_buf
+ffffffc008a52744 r __ksymtab_tty_port_hangup
+ffffffc008a52750 r __ksymtab_tty_port_init
+ffffffc008a5275c r __ksymtab_tty_port_lower_dtr_rts
+ffffffc008a52768 r __ksymtab_tty_port_open
+ffffffc008a52774 r __ksymtab_tty_port_put
+ffffffc008a52780 r __ksymtab_tty_port_raise_dtr_rts
+ffffffc008a5278c r __ksymtab_tty_port_tty_get
+ffffffc008a52798 r __ksymtab_tty_port_tty_set
+ffffffc008a527a4 r __ksymtab_tty_register_device
+ffffffc008a527b0 r __ksymtab_tty_register_driver
+ffffffc008a527bc r __ksymtab_tty_register_ldisc
+ffffffc008a527c8 r __ksymtab_tty_std_termios
+ffffffc008a527d4 r __ksymtab_tty_termios_baud_rate
+ffffffc008a527e0 r __ksymtab_tty_termios_copy_hw
+ffffffc008a527ec r __ksymtab_tty_termios_hw_change
+ffffffc008a527f8 r __ksymtab_tty_termios_input_baud_rate
+ffffffc008a52804 r __ksymtab_tty_unlock
+ffffffc008a52810 r __ksymtab_tty_unregister_device
+ffffffc008a5281c r __ksymtab_tty_unregister_driver
+ffffffc008a52828 r __ksymtab_tty_unregister_ldisc
+ffffffc008a52834 r __ksymtab_tty_unthrottle
+ffffffc008a52840 r __ksymtab_tty_vhangup
+ffffffc008a5284c r __ksymtab_tty_wait_until_sent
+ffffffc008a52858 r __ksymtab_tty_write_room
+ffffffc008a52864 r __ksymtab_uart_add_one_port
+ffffffc008a52870 r __ksymtab_uart_get_baud_rate
+ffffffc008a5287c r __ksymtab_uart_get_divisor
+ffffffc008a52888 r __ksymtab_uart_match_port
+ffffffc008a52894 r __ksymtab_uart_register_driver
+ffffffc008a528a0 r __ksymtab_uart_remove_one_port
+ffffffc008a528ac r __ksymtab_uart_resume_port
+ffffffc008a528b8 r __ksymtab_uart_suspend_port
+ffffffc008a528c4 r __ksymtab_uart_unregister_driver
+ffffffc008a528d0 r __ksymtab_uart_update_timeout
+ffffffc008a528dc r __ksymtab_uart_write_wakeup
+ffffffc008a528e8 r __ksymtab_udp6_csum_init
+ffffffc008a528f4 r __ksymtab_udp6_seq_ops
+ffffffc008a52900 r __ksymtab_udp6_set_csum
+ffffffc008a5290c r __ksymtab_udp_disconnect
+ffffffc008a52918 r __ksymtab_udp_encap_disable
+ffffffc008a52924 r __ksymtab_udp_encap_enable
+ffffffc008a52930 r __ksymtab_udp_flow_hashrnd
+ffffffc008a5293c r __ksymtab_udp_flush_pending_frames
+ffffffc008a52948 r __ksymtab_udp_gro_complete
+ffffffc008a52954 r __ksymtab_udp_gro_receive
+ffffffc008a52960 r __ksymtab_udp_ioctl
+ffffffc008a5296c r __ksymtab_udp_lib_get_port
+ffffffc008a52978 r __ksymtab_udp_lib_getsockopt
+ffffffc008a52984 r __ksymtab_udp_lib_rehash
+ffffffc008a52990 r __ksymtab_udp_lib_setsockopt
+ffffffc008a5299c r __ksymtab_udp_lib_unhash
+ffffffc008a529a8 r __ksymtab_udp_memory_allocated
+ffffffc008a529b4 r __ksymtab_udp_poll
+ffffffc008a529c0 r __ksymtab_udp_pre_connect
+ffffffc008a529cc r __ksymtab_udp_prot
+ffffffc008a529d8 r __ksymtab_udp_push_pending_frames
+ffffffc008a529e4 r __ksymtab_udp_read_skb
+ffffffc008a529f0 r __ksymtab_udp_sendmsg
+ffffffc008a529fc r __ksymtab_udp_seq_next
+ffffffc008a52a08 r __ksymtab_udp_seq_ops
+ffffffc008a52a14 r __ksymtab_udp_seq_start
+ffffffc008a52a20 r __ksymtab_udp_seq_stop
+ffffffc008a52a2c r __ksymtab_udp_set_csum
+ffffffc008a52a38 r __ksymtab_udp_sk_rx_dst_set
+ffffffc008a52a44 r __ksymtab_udp_skb_destructor
+ffffffc008a52a50 r __ksymtab_udp_table
+ffffffc008a52a5c r __ksymtab_udplite_prot
+ffffffc008a52a68 r __ksymtab_udplite_table
+ffffffc008a52a74 r __ksymtab_udpv6_encap_enable
+ffffffc008a52a80 r __ksymtab_unix_attach_fds
+ffffffc008a52a8c r __ksymtab_unix_destruct_scm
+ffffffc008a52a98 r __ksymtab_unix_detach_fds
+ffffffc008a52aa4 r __ksymtab_unix_gc_lock
+ffffffc008a52ab0 r __ksymtab_unix_get_socket
+ffffffc008a52abc r __ksymtab_unix_tot_inflight
+ffffffc008a52ac8 r __ksymtab_unlock_buffer
+ffffffc008a52ad4 r __ksymtab_unlock_new_inode
+ffffffc008a52ae0 r __ksymtab_unlock_page
+ffffffc008a52aec r __ksymtab_unlock_rename
+ffffffc008a52af8 r __ksymtab_unlock_two_nondirectories
+ffffffc008a52b04 r __ksymtab_unmap_mapping_range
+ffffffc008a52b10 r __ksymtab_unpin_user_page
+ffffffc008a52b1c r __ksymtab_unpin_user_page_range_dirty_lock
+ffffffc008a52b28 r __ksymtab_unpin_user_pages
+ffffffc008a52b34 r __ksymtab_unpin_user_pages_dirty_lock
+ffffffc008a52b40 r __ksymtab_unregister_binfmt
+ffffffc008a52b4c r __ksymtab_unregister_blkdev
+ffffffc008a52b58 r __ksymtab_unregister_blocking_lsm_notifier
+ffffffc008a52b64 r __ksymtab_unregister_chrdev_region
+ffffffc008a52b70 r __ksymtab_unregister_console
+ffffffc008a52b7c r __ksymtab_unregister_fib_notifier
+ffffffc008a52b88 r __ksymtab_unregister_filesystem
+ffffffc008a52b94 r __ksymtab_unregister_inet6addr_notifier
+ffffffc008a52ba0 r __ksymtab_unregister_inet6addr_validator_notifier
+ffffffc008a52bac r __ksymtab_unregister_inetaddr_notifier
+ffffffc008a52bb8 r __ksymtab_unregister_inetaddr_validator_notifier
+ffffffc008a52bc4 r __ksymtab_unregister_memory_notifier
+ffffffc008a52bd0 r __ksymtab_unregister_module_notifier
+ffffffc008a52bdc r __ksymtab_unregister_netdev
+ffffffc008a52be8 r __ksymtab_unregister_netdevice_many
+ffffffc008a52bf4 r __ksymtab_unregister_netdevice_notifier
+ffffffc008a52c00 r __ksymtab_unregister_netdevice_notifier_dev_net
+ffffffc008a52c0c r __ksymtab_unregister_netdevice_notifier_net
+ffffffc008a52c18 r __ksymtab_unregister_netdevice_queue
+ffffffc008a52c24 r __ksymtab_unregister_nexthop_notifier
+ffffffc008a52c30 r __ksymtab_unregister_reboot_notifier
+ffffffc008a52c3c r __ksymtab_unregister_restart_handler
+ffffffc008a52c48 r __ksymtab_unregister_shrinker
+ffffffc008a52c54 r __ksymtab_unregister_sysctl_table
+ffffffc008a52c60 r __ksymtab_unregister_sysrq_key
+ffffffc008a52c6c r __ksymtab_up
+ffffffc008a52c78 r __ksymtab_up_read
+ffffffc008a52c84 r __ksymtab_up_write
+ffffffc008a52c90 r __ksymtab_update_region
+ffffffc008a52c9c r __ksymtab_user_path_at_empty
+ffffffc008a52ca8 r __ksymtab_user_path_create
+ffffffc008a52cb4 r __ksymtab_usleep_range_state
+ffffffc008a52cc0 r __ksymtab_utf8_casefold
+ffffffc008a52ccc r __ksymtab_utf8_casefold_hash
+ffffffc008a52cd8 r __ksymtab_utf8_load
+ffffffc008a52ce4 r __ksymtab_utf8_normalize
+ffffffc008a52cf0 r __ksymtab_utf8_strncasecmp
+ffffffc008a52cfc r __ksymtab_utf8_strncasecmp_folded
+ffffffc008a52d08 r __ksymtab_utf8_strncmp
+ffffffc008a52d14 r __ksymtab_utf8_unload
+ffffffc008a52d20 r __ksymtab_utf8_validate
+ffffffc008a52d2c r __ksymtab_uuid_is_valid
+ffffffc008a52d38 r __ksymtab_uuid_null
+ffffffc008a52d44 r __ksymtab_uuid_parse
+ffffffc008a52d50 r __ksymtab_validate_slab_cache
+ffffffc008a52d5c r __ksymtab_vc_cons
+ffffffc008a52d68 r __ksymtab_vc_resize
+ffffffc008a52d74 r __ksymtab_vcalloc
+ffffffc008a52d80 r __ksymtab_verify_spi_info
+ffffffc008a52d8c r __ksymtab_vfree
+ffffffc008a52d98 r __ksymtab_vfs_clone_file_range
+ffffffc008a52da4 r __ksymtab_vfs_copy_file_range
+ffffffc008a52db0 r __ksymtab_vfs_create
+ffffffc008a52dbc r __ksymtab_vfs_create_mount
+ffffffc008a52dc8 r __ksymtab_vfs_dedupe_file_range
+ffffffc008a52dd4 r __ksymtab_vfs_dedupe_file_range_one
+ffffffc008a52de0 r __ksymtab_vfs_dup_fs_context
+ffffffc008a52dec r __ksymtab_vfs_fadvise
+ffffffc008a52df8 r __ksymtab_vfs_fileattr_get
+ffffffc008a52e04 r __ksymtab_vfs_fileattr_set
+ffffffc008a52e10 r __ksymtab_vfs_fsync
+ffffffc008a52e1c r __ksymtab_vfs_fsync_range
+ffffffc008a52e28 r __ksymtab_vfs_get_fsid
+ffffffc008a52e34 r __ksymtab_vfs_get_link
+ffffffc008a52e40 r __ksymtab_vfs_get_super
+ffffffc008a52e4c r __ksymtab_vfs_get_tree
+ffffffc008a52e58 r __ksymtab_vfs_getattr
+ffffffc008a52e64 r __ksymtab_vfs_getattr_nosec
+ffffffc008a52e70 r __ksymtab_vfs_iocb_iter_read
+ffffffc008a52e7c r __ksymtab_vfs_iocb_iter_write
+ffffffc008a52e88 r __ksymtab_vfs_ioctl
+ffffffc008a52e94 r __ksymtab_vfs_iter_read
+ffffffc008a52ea0 r __ksymtab_vfs_iter_write
+ffffffc008a52eac r __ksymtab_vfs_link
+ffffffc008a52eb8 r __ksymtab_vfs_llseek
+ffffffc008a52ec4 r __ksymtab_vfs_mkdir
+ffffffc008a52ed0 r __ksymtab_vfs_mknod
+ffffffc008a52edc r __ksymtab_vfs_mkobj
+ffffffc008a52ee8 r __ksymtab_vfs_parse_fs_param
+ffffffc008a52ef4 r __ksymtab_vfs_parse_fs_param_source
+ffffffc008a52f00 r __ksymtab_vfs_parse_fs_string
+ffffffc008a52f0c r __ksymtab_vfs_path_lookup
+ffffffc008a52f18 r __ksymtab_vfs_readlink
+ffffffc008a52f24 r __ksymtab_vfs_rename
+ffffffc008a52f30 r __ksymtab_vfs_rmdir
+ffffffc008a52f3c r __ksymtab_vfs_set_acl_prepare
+ffffffc008a52f48 r __ksymtab_vfs_setpos
+ffffffc008a52f54 r __ksymtab_vfs_statfs
+ffffffc008a52f60 r __ksymtab_vfs_symlink
+ffffffc008a52f6c r __ksymtab_vfs_tmpfile_open
+ffffffc008a52f78 r __ksymtab_vfs_unlink
+ffffffc008a52f84 r __ksymtab_vga_client_register
+ffffffc008a52f90 r __ksymtab_vga_get
+ffffffc008a52f9c r __ksymtab_vga_put
+ffffffc008a52fa8 r __ksymtab_vga_remove_vgacon
+ffffffc008a52fb4 r __ksymtab_vga_set_legacy_decoding
+ffffffc008a52fc0 r __ksymtab_vlan_ioctl_set
+ffffffc008a52fcc r __ksymtab_vm_brk
+ffffffc008a52fd8 r __ksymtab_vm_brk_flags
+ffffffc008a52fe4 r __ksymtab_vm_event_states
+ffffffc008a52ff0 r __ksymtab_vm_get_page_prot
+ffffffc008a52ffc r __ksymtab_vm_insert_page
+ffffffc008a53008 r __ksymtab_vm_insert_pages
+ffffffc008a53014 r __ksymtab_vm_iomap_memory
+ffffffc008a53020 r __ksymtab_vm_map_pages
+ffffffc008a5302c r __ksymtab_vm_map_pages_zero
+ffffffc008a53038 r __ksymtab_vm_map_ram
+ffffffc008a53044 r __ksymtab_vm_mmap
+ffffffc008a53050 r __ksymtab_vm_munmap
+ffffffc008a5305c r __ksymtab_vm_node_stat
+ffffffc008a53068 r __ksymtab_vm_unmap_ram
+ffffffc008a53074 r __ksymtab_vm_zone_stat
+ffffffc008a53080 r __ksymtab_vma_set_file
+ffffffc008a5308c r __ksymtab_vmalloc
+ffffffc008a53098 r __ksymtab_vmalloc_32
+ffffffc008a530a4 r __ksymtab_vmalloc_32_user
+ffffffc008a530b0 r __ksymtab_vmalloc_array
+ffffffc008a530bc r __ksymtab_vmalloc_node
+ffffffc008a530c8 r __ksymtab_vmalloc_to_page
+ffffffc008a530d4 r __ksymtab_vmalloc_to_pfn
+ffffffc008a530e0 r __ksymtab_vmalloc_user
+ffffffc008a530ec r __ksymtab_vmap
+ffffffc008a530f8 r __ksymtab_vmemdup_user
+ffffffc008a53104 r __ksymtab_vmf_insert_mixed
+ffffffc008a53110 r __ksymtab_vmf_insert_mixed_mkwrite
+ffffffc008a5311c r __ksymtab_vmf_insert_mixed_prot
+ffffffc008a53128 r __ksymtab_vmf_insert_pfn
+ffffffc008a53134 r __ksymtab_vmf_insert_pfn_prot
+ffffffc008a53140 r __ksymtab_vprintk
+ffffffc008a5314c r __ksymtab_vprintk_emit
+ffffffc008a53158 r __ksymtab_vscnprintf
+ffffffc008a53164 r __ksymtab_vsnprintf
+ffffffc008a53170 r __ksymtab_vsprintf
+ffffffc008a5317c r __ksymtab_vsscanf
+ffffffc008a53188 r __ksymtab_vunmap
+ffffffc008a53194 r __ksymtab_vzalloc
+ffffffc008a531a0 r __ksymtab_vzalloc_node
+ffffffc008a531ac r __ksymtab_wait_for_completion
+ffffffc008a531b8 r __ksymtab_wait_for_completion_interruptible
+ffffffc008a531c4 r __ksymtab_wait_for_completion_interruptible_timeout
+ffffffc008a531d0 r __ksymtab_wait_for_completion_io
+ffffffc008a531dc r __ksymtab_wait_for_completion_io_timeout
+ffffffc008a531e8 r __ksymtab_wait_for_completion_killable
+ffffffc008a531f4 r __ksymtab_wait_for_completion_killable_timeout
+ffffffc008a53200 r __ksymtab_wait_for_completion_state
+ffffffc008a5320c r __ksymtab_wait_for_completion_timeout
+ffffffc008a53218 r __ksymtab_wait_for_random_bytes
+ffffffc008a53224 r __ksymtab_wait_woken
+ffffffc008a53230 r __ksymtab_wake_bit_function
+ffffffc008a5323c r __ksymtab_wake_up_bit
+ffffffc008a53248 r __ksymtab_wake_up_process
+ffffffc008a53254 r __ksymtab_wake_up_var
+ffffffc008a53260 r __ksymtab_woken_wake_function
+ffffffc008a5326c r __ksymtab_would_dump
+ffffffc008a53278 r __ksymtab_write_cache_pages
+ffffffc008a53284 r __ksymtab_write_dirty_buffer
+ffffffc008a53290 r __ksymtab_write_inode_now
+ffffffc008a5329c r __ksymtab_writeback_inodes_sb
+ffffffc008a532a8 r __ksymtab_writeback_inodes_sb_nr
+ffffffc008a532b4 r __ksymtab_ww_mutex_lock
+ffffffc008a532c0 r __ksymtab_ww_mutex_lock_interruptible
+ffffffc008a532cc r __ksymtab_ww_mutex_trylock
+ffffffc008a532d8 r __ksymtab_ww_mutex_unlock
+ffffffc008a532e4 r __ksymtab_xa_clear_mark
+ffffffc008a532f0 r __ksymtab_xa_destroy
+ffffffc008a532fc r __ksymtab_xa_erase
+ffffffc008a53308 r __ksymtab_xa_extract
+ffffffc008a53314 r __ksymtab_xa_find
+ffffffc008a53320 r __ksymtab_xa_find_after
+ffffffc008a5332c r __ksymtab_xa_get_mark
+ffffffc008a53338 r __ksymtab_xa_get_order
+ffffffc008a53344 r __ksymtab_xa_load
+ffffffc008a53350 r __ksymtab_xa_set_mark
+ffffffc008a5335c r __ksymtab_xa_store
+ffffffc008a53368 r __ksymtab_xa_store_range
+ffffffc008a53374 r __ksymtab_xattr_full_name
+ffffffc008a53380 r __ksymtab_xattr_supported_namespace
+ffffffc008a5338c r __ksymtab_xfrm4_protocol_deregister
+ffffffc008a53398 r __ksymtab_xfrm4_protocol_register
+ffffffc008a533a4 r __ksymtab_xfrm4_rcv
+ffffffc008a533b0 r __ksymtab_xfrm4_rcv_encap
+ffffffc008a533bc r __ksymtab_xfrm4_tunnel_deregister
+ffffffc008a533c8 r __ksymtab_xfrm4_tunnel_register
+ffffffc008a533d4 r __ksymtab_xfrm6_input_addr
+ffffffc008a533e0 r __ksymtab_xfrm6_protocol_deregister
+ffffffc008a533ec r __ksymtab_xfrm6_protocol_register
+ffffffc008a533f8 r __ksymtab_xfrm6_rcv
+ffffffc008a53404 r __ksymtab_xfrm6_rcv_encap
+ffffffc008a53410 r __ksymtab_xfrm6_rcv_spi
+ffffffc008a5341c r __ksymtab_xfrm6_rcv_tnl
+ffffffc008a53428 r __ksymtab_xfrm6_tunnel_alloc_spi
+ffffffc008a53434 r __ksymtab_xfrm6_tunnel_deregister
+ffffffc008a53440 r __ksymtab_xfrm6_tunnel_register
+ffffffc008a5344c r __ksymtab_xfrm6_tunnel_spi_lookup
+ffffffc008a53458 r __ksymtab_xfrm_alloc_spi
+ffffffc008a53464 r __ksymtab_xfrm_dev_state_flush
+ffffffc008a53470 r __ksymtab_xfrm_dst_ifdown
+ffffffc008a5347c r __ksymtab_xfrm_find_acq
+ffffffc008a53488 r __ksymtab_xfrm_find_acq_byseq
+ffffffc008a53494 r __ksymtab_xfrm_flush_gc
+ffffffc008a534a0 r __ksymtab_xfrm_get_acqseq
+ffffffc008a534ac r __ksymtab_xfrm_if_register_cb
+ffffffc008a534b8 r __ksymtab_xfrm_if_unregister_cb
+ffffffc008a534c4 r __ksymtab_xfrm_init_replay
+ffffffc008a534d0 r __ksymtab_xfrm_init_state
+ffffffc008a534dc r __ksymtab_xfrm_input
+ffffffc008a534e8 r __ksymtab_xfrm_input_register_afinfo
+ffffffc008a534f4 r __ksymtab_xfrm_input_resume
+ffffffc008a53500 r __ksymtab_xfrm_input_unregister_afinfo
+ffffffc008a5350c r __ksymtab_xfrm_lookup
+ffffffc008a53518 r __ksymtab_xfrm_lookup_route
+ffffffc008a53524 r __ksymtab_xfrm_lookup_with_ifid
+ffffffc008a53530 r __ksymtab_xfrm_migrate
+ffffffc008a5353c r __ksymtab_xfrm_migrate_state_find
+ffffffc008a53548 r __ksymtab_xfrm_parse_spi
+ffffffc008a53554 r __ksymtab_xfrm_policy_alloc
+ffffffc008a53560 r __ksymtab_xfrm_policy_byid
+ffffffc008a5356c r __ksymtab_xfrm_policy_bysel_ctx
+ffffffc008a53578 r __ksymtab_xfrm_policy_delete
+ffffffc008a53584 r __ksymtab_xfrm_policy_destroy
+ffffffc008a53590 r __ksymtab_xfrm_policy_flush
+ffffffc008a5359c r __ksymtab_xfrm_policy_hash_rebuild
+ffffffc008a535a8 r __ksymtab_xfrm_policy_insert
+ffffffc008a535b4 r __ksymtab_xfrm_policy_register_afinfo
+ffffffc008a535c0 r __ksymtab_xfrm_policy_unregister_afinfo
+ffffffc008a535cc r __ksymtab_xfrm_policy_walk
+ffffffc008a535d8 r __ksymtab_xfrm_policy_walk_done
+ffffffc008a535e4 r __ksymtab_xfrm_policy_walk_init
+ffffffc008a535f0 r __ksymtab_xfrm_register_km
+ffffffc008a535fc r __ksymtab_xfrm_register_type
+ffffffc008a53608 r __ksymtab_xfrm_register_type_offload
+ffffffc008a53614 r __ksymtab_xfrm_replay_seqhi
+ffffffc008a53620 r __ksymtab_xfrm_sad_getinfo
+ffffffc008a5362c r __ksymtab_xfrm_spd_getinfo
+ffffffc008a53638 r __ksymtab_xfrm_state_add
+ffffffc008a53644 r __ksymtab_xfrm_state_alloc
+ffffffc008a53650 r __ksymtab_xfrm_state_check_expire
+ffffffc008a5365c r __ksymtab_xfrm_state_delete
+ffffffc008a53668 r __ksymtab_xfrm_state_delete_tunnel
+ffffffc008a53674 r __ksymtab_xfrm_state_flush
+ffffffc008a53680 r __ksymtab_xfrm_state_free
+ffffffc008a5368c r __ksymtab_xfrm_state_insert
+ffffffc008a53698 r __ksymtab_xfrm_state_lookup
+ffffffc008a536a4 r __ksymtab_xfrm_state_lookup_byaddr
+ffffffc008a536b0 r __ksymtab_xfrm_state_lookup_byspi
+ffffffc008a536bc r __ksymtab_xfrm_state_migrate
+ffffffc008a536c8 r __ksymtab_xfrm_state_register_afinfo
+ffffffc008a536d4 r __ksymtab_xfrm_state_unregister_afinfo
+ffffffc008a536e0 r __ksymtab_xfrm_state_update
+ffffffc008a536ec r __ksymtab_xfrm_state_walk
+ffffffc008a536f8 r __ksymtab_xfrm_state_walk_done
+ffffffc008a53704 r __ksymtab_xfrm_state_walk_init
+ffffffc008a53710 r __ksymtab_xfrm_stateonly_find
+ffffffc008a5371c r __ksymtab_xfrm_trans_queue
+ffffffc008a53728 r __ksymtab_xfrm_trans_queue_net
+ffffffc008a53734 r __ksymtab_xfrm_unregister_km
+ffffffc008a53740 r __ksymtab_xfrm_unregister_type
+ffffffc008a5374c r __ksymtab_xfrm_unregister_type_offload
+ffffffc008a53758 r __ksymtab_xfrm_user_policy
+ffffffc008a53764 r __ksymtab_xxh32
+ffffffc008a53770 r __ksymtab_xxh32_copy_state
+ffffffc008a5377c r __ksymtab_xxh32_digest
+ffffffc008a53788 r __ksymtab_xxh32_reset
+ffffffc008a53794 r __ksymtab_xxh32_update
+ffffffc008a537a0 r __ksymtab_xxh64
+ffffffc008a537ac r __ksymtab_xxh64_copy_state
+ffffffc008a537b8 r __ksymtab_xxh64_digest
+ffffffc008a537c4 r __ksymtab_xxh64_reset
+ffffffc008a537d0 r __ksymtab_xxh64_update
+ffffffc008a537dc r __ksymtab_xz_dec_end
+ffffffc008a537e8 r __ksymtab_xz_dec_init
+ffffffc008a537f4 r __ksymtab_xz_dec_reset
+ffffffc008a53800 r __ksymtab_xz_dec_run
+ffffffc008a5380c r __ksymtab_yield
+ffffffc008a53818 r __ksymtab_zero_fill_bio
+ffffffc008a53824 r __ksymtab_zero_pfn
+ffffffc008a53830 r __ksymtab_zerocopy_sg_from_iter
+ffffffc008a5383c r __ksymtab_zlib_deflate
+ffffffc008a53848 r __ksymtab_zlib_deflateEnd
+ffffffc008a53854 r __ksymtab_zlib_deflateInit2
+ffffffc008a53860 r __ksymtab_zlib_deflateReset
+ffffffc008a5386c r __ksymtab_zlib_deflate_dfltcc_enabled
+ffffffc008a53878 r __ksymtab_zlib_deflate_workspacesize
+ffffffc008a53884 r __ksymtab_zlib_inflate
+ffffffc008a53890 r __ksymtab_zlib_inflateEnd
+ffffffc008a5389c r __ksymtab_zlib_inflateIncomp
+ffffffc008a538a8 r __ksymtab_zlib_inflateInit2
+ffffffc008a538b4 r __ksymtab_zlib_inflateReset
+ffffffc008a538c0 r __ksymtab_zlib_inflate_blob
+ffffffc008a538cc r __ksymtab_zlib_inflate_workspacesize
+ffffffc008a538d8 r __ksymtab_zstd_cctx_workspace_bound
+ffffffc008a538e4 r __ksymtab_zstd_compress_bound
+ffffffc008a538f0 r __ksymtab_zstd_compress_cctx
+ffffffc008a538fc r __ksymtab_zstd_compress_stream
+ffffffc008a53908 r __ksymtab_zstd_cstream_workspace_bound
+ffffffc008a53914 r __ksymtab_zstd_dctx_workspace_bound
+ffffffc008a53920 r __ksymtab_zstd_decompress_dctx
+ffffffc008a5392c r __ksymtab_zstd_decompress_stream
+ffffffc008a53938 r __ksymtab_zstd_dstream_workspace_bound
+ffffffc008a53944 r __ksymtab_zstd_end_stream
+ffffffc008a53950 r __ksymtab_zstd_find_frame_compressed_size
+ffffffc008a5395c r __ksymtab_zstd_flush_stream
+ffffffc008a53968 r __ksymtab_zstd_get_error_code
+ffffffc008a53974 r __ksymtab_zstd_get_error_name
+ffffffc008a53980 r __ksymtab_zstd_get_frame_header
+ffffffc008a5398c r __ksymtab_zstd_get_params
+ffffffc008a53998 r __ksymtab_zstd_init_cctx
+ffffffc008a539a4 r __ksymtab_zstd_init_cstream
+ffffffc008a539b0 r __ksymtab_zstd_init_dctx
+ffffffc008a539bc r __ksymtab_zstd_init_dstream
+ffffffc008a539c8 r __ksymtab_zstd_is_error
+ffffffc008a539d4 r __ksymtab_zstd_max_clevel
+ffffffc008a539e0 r __ksymtab_zstd_min_clevel
+ffffffc008a539ec r __ksymtab_zstd_reset_cstream
+ffffffc008a539f8 r __ksymtab_zstd_reset_dstream
+ffffffc008a53a04 r __ksymtab_FSE_readNCount
+ffffffc008a53a04 R __start___ksymtab_gpl
+ffffffc008a53a04 R __stop___ksymtab
+ffffffc008a53a10 r __ksymtab_HUF_readStats
+ffffffc008a53a1c r __ksymtab_HUF_readStats_wksp
+ffffffc008a53a28 r __ksymtab_ZSTD_customCalloc
+ffffffc008a53a34 r __ksymtab_ZSTD_customFree
+ffffffc008a53a40 r __ksymtab_ZSTD_customMalloc
+ffffffc008a53a4c r __ksymtab_ZSTD_getErrorCode
+ffffffc008a53a58 r __ksymtab_ZSTD_getErrorName
+ffffffc008a53a64 r __ksymtab_ZSTD_isError
+ffffffc008a53a70 r __ksymtab___SCK__tp_func_add_device_to_group
+ffffffc008a53a7c r __ksymtab___SCK__tp_func_arm_event
+ffffffc008a53a88 r __ksymtab___SCK__tp_func_attach_device_to_domain
+ffffffc008a53a94 r __ksymtab___SCK__tp_func_block_bio_complete
+ffffffc008a53aa0 r __ksymtab___SCK__tp_func_block_bio_queue
+ffffffc008a53aac r __ksymtab___SCK__tp_func_block_bio_remap
+ffffffc008a53ab8 r __ksymtab___SCK__tp_func_block_getrq
+ffffffc008a53ac4 r __ksymtab___SCK__tp_func_block_rq_complete
+ffffffc008a53ad0 r __ksymtab___SCK__tp_func_block_rq_insert
+ffffffc008a53adc r __ksymtab___SCK__tp_func_block_rq_issue
+ffffffc008a53ae8 r __ksymtab___SCK__tp_func_block_rq_merge
+ffffffc008a53af4 r __ksymtab___SCK__tp_func_block_rq_remap
+ffffffc008a53b00 r __ksymtab___SCK__tp_func_block_rq_requeue
+ffffffc008a53b0c r __ksymtab___SCK__tp_func_block_split
+ffffffc008a53b18 r __ksymtab___SCK__tp_func_block_unplug
+ffffffc008a53b24 r __ksymtab___SCK__tp_func_br_fdb_add
+ffffffc008a53b30 r __ksymtab___SCK__tp_func_br_fdb_external_learn_add
+ffffffc008a53b3c r __ksymtab___SCK__tp_func_br_fdb_update
+ffffffc008a53b48 r __ksymtab___SCK__tp_func_clock_set_rate
+ffffffc008a53b54 r __ksymtab___SCK__tp_func_console
+ffffffc008a53b60 r __ksymtab___SCK__tp_func_consume_skb
+ffffffc008a53b6c r __ksymtab___SCK__tp_func_cpu_frequency
+ffffffc008a53b78 r __ksymtab___SCK__tp_func_cpu_idle
+ffffffc008a53b84 r __ksymtab___SCK__tp_func_detach_device_from_domain
+ffffffc008a53b90 r __ksymtab___SCK__tp_func_device_pm_callback_end
+ffffffc008a53b9c r __ksymtab___SCK__tp_func_device_pm_callback_start
+ffffffc008a53ba8 r __ksymtab___SCK__tp_func_error_report_end
+ffffffc008a53bb4 r __ksymtab___SCK__tp_func_fdb_delete
+ffffffc008a53bc0 r __ksymtab___SCK__tp_func_fib6_table_lookup
+ffffffc008a53bcc r __ksymtab___SCK__tp_func_hrtimer_expire_entry
+ffffffc008a53bd8 r __ksymtab___SCK__tp_func_hrtimer_expire_exit
+ffffffc008a53be4 r __ksymtab___SCK__tp_func_io_page_fault
+ffffffc008a53bf0 r __ksymtab___SCK__tp_func_ipi_entry
+ffffffc008a53bfc r __ksymtab___SCK__tp_func_ipi_exit
+ffffffc008a53c08 r __ksymtab___SCK__tp_func_ipi_raise
+ffffffc008a53c14 r __ksymtab___SCK__tp_func_irq_handler_entry
+ffffffc008a53c20 r __ksymtab___SCK__tp_func_irq_handler_exit
+ffffffc008a53c2c r __ksymtab___SCK__tp_func_kfree_skb
+ffffffc008a53c38 r __ksymtab___SCK__tp_func_map
+ffffffc008a53c44 r __ksymtab___SCK__tp_func_mc_event
+ffffffc008a53c50 r __ksymtab___SCK__tp_func_napi_poll
+ffffffc008a53c5c r __ksymtab___SCK__tp_func_neigh_cleanup_and_release
+ffffffc008a53c68 r __ksymtab___SCK__tp_func_neigh_event_send_dead
+ffffffc008a53c74 r __ksymtab___SCK__tp_func_neigh_event_send_done
+ffffffc008a53c80 r __ksymtab___SCK__tp_func_neigh_timer_handler
+ffffffc008a53c8c r __ksymtab___SCK__tp_func_neigh_update
+ffffffc008a53c98 r __ksymtab___SCK__tp_func_neigh_update_done
+ffffffc008a53ca4 r __ksymtab___SCK__tp_func_non_standard_event
+ffffffc008a53cb0 r __ksymtab___SCK__tp_func_pelt_cfs_tp
+ffffffc008a53cbc r __ksymtab___SCK__tp_func_pelt_dl_tp
+ffffffc008a53cc8 r __ksymtab___SCK__tp_func_pelt_irq_tp
+ffffffc008a53cd4 r __ksymtab___SCK__tp_func_pelt_rt_tp
+ffffffc008a53ce0 r __ksymtab___SCK__tp_func_pelt_se_tp
+ffffffc008a53cec r __ksymtab___SCK__tp_func_pelt_thermal_tp
+ffffffc008a53cf8 r __ksymtab___SCK__tp_func_powernv_throttle
+ffffffc008a53d04 r __ksymtab___SCK__tp_func_remove_device_from_group
+ffffffc008a53d10 r __ksymtab___SCK__tp_func_rpm_idle
+ffffffc008a53d1c r __ksymtab___SCK__tp_func_rpm_resume
+ffffffc008a53d28 r __ksymtab___SCK__tp_func_rpm_return_int
+ffffffc008a53d34 r __ksymtab___SCK__tp_func_rpm_suspend
+ffffffc008a53d40 r __ksymtab___SCK__tp_func_rwmmio_post_read
+ffffffc008a53d4c r __ksymtab___SCK__tp_func_rwmmio_post_write
+ffffffc008a53d58 r __ksymtab___SCK__tp_func_rwmmio_read
+ffffffc008a53d64 r __ksymtab___SCK__tp_func_rwmmio_write
+ffffffc008a53d70 r __ksymtab___SCK__tp_func_sched_cpu_capacity_tp
+ffffffc008a53d7c r __ksymtab___SCK__tp_func_sched_overutilized_tp
+ffffffc008a53d88 r __ksymtab___SCK__tp_func_sched_stat_blocked
+ffffffc008a53d94 r __ksymtab___SCK__tp_func_sched_stat_iowait
+ffffffc008a53da0 r __ksymtab___SCK__tp_func_sched_stat_runtime
+ffffffc008a53dac r __ksymtab___SCK__tp_func_sched_stat_sleep
+ffffffc008a53db8 r __ksymtab___SCK__tp_func_sched_stat_wait
+ffffffc008a53dc4 r __ksymtab___SCK__tp_func_sched_switch
+ffffffc008a53dd0 r __ksymtab___SCK__tp_func_sched_update_nr_running_tp
+ffffffc008a53ddc r __ksymtab___SCK__tp_func_sched_util_est_cfs_tp
+ffffffc008a53de8 r __ksymtab___SCK__tp_func_sched_util_est_se_tp
+ffffffc008a53df4 r __ksymtab___SCK__tp_func_sched_waking
+ffffffc008a53e00 r __ksymtab___SCK__tp_func_suspend_resume
+ffffffc008a53e0c r __ksymtab___SCK__tp_func_task_newtask
+ffffffc008a53e18 r __ksymtab___SCK__tp_func_task_rename
+ffffffc008a53e24 r __ksymtab___SCK__tp_func_tcp_bad_csum
+ffffffc008a53e30 r __ksymtab___SCK__tp_func_tcp_send_reset
+ffffffc008a53e3c r __ksymtab___SCK__tp_func_unmap
+ffffffc008a53e48 r __ksymtab___SCK__tp_func_wbc_writepage
+ffffffc008a53e54 r __ksymtab___SCK__tp_func_workqueue_execute_end
+ffffffc008a53e60 r __ksymtab___SCK__tp_func_workqueue_execute_start
+ffffffc008a53e6c r __ksymtab___SCK__tp_func_xdp_bulk_tx
+ffffffc008a53e78 r __ksymtab___SCK__tp_func_xdp_exception
+ffffffc008a53e84 r __ksymtab___account_locked_vm
+ffffffc008a53e90 r __ksymtab___alloc_pages_bulk
+ffffffc008a53e9c r __ksymtab___alloc_percpu
+ffffffc008a53ea8 r __ksymtab___alloc_percpu_gfp
+ffffffc008a53eb4 r __ksymtab___audit_inode_child
+ffffffc008a53ec0 r __ksymtab___audit_log_nfcfg
+ffffffc008a53ecc r __ksymtab___balance_callbacks
+ffffffc008a53ed8 r __ksymtab___bio_add_page
+ffffffc008a53ee4 r __ksymtab___bio_release_pages
+ffffffc008a53ef0 r __ksymtab___blk_mq_debugfs_rq_show
+ffffffc008a53efc r __ksymtab___blk_req_zone_write_lock
+ffffffc008a53f08 r __ksymtab___blk_req_zone_write_unlock
+ffffffc008a53f14 r __ksymtab___bpf_call_base
+ffffffc008a53f20 r __ksymtab___class_create
+ffffffc008a53f2c r __ksymtab___class_register
+ffffffc008a53f38 r __ksymtab___clk_determine_rate
+ffffffc008a53f44 r __ksymtab___clk_get_hw
+ffffffc008a53f50 r __ksymtab___clk_get_name
+ffffffc008a53f5c r __ksymtab___clk_hw_register_divider
+ffffffc008a53f68 r __ksymtab___clk_hw_register_fixed_rate
+ffffffc008a53f74 r __ksymtab___clk_hw_register_gate
+ffffffc008a53f80 r __ksymtab___clk_hw_register_mux
+ffffffc008a53f8c r __ksymtab___clk_is_enabled
+ffffffc008a53f98 r __ksymtab___clk_mux_determine_rate
+ffffffc008a53fa4 r __ksymtab___clk_mux_determine_rate_closest
+ffffffc008a53fb0 r __ksymtab___clocksource_register_scale
+ffffffc008a53fbc r __ksymtab___clocksource_update_freq_scale
+ffffffc008a53fc8 r __ksymtab___cpuhp_state_add_instance
+ffffffc008a53fd4 r __ksymtab___cpuhp_state_remove_instance
+ffffffc008a53fe0 r __ksymtab___crypto_alloc_tfm
+ffffffc008a53fec r __ksymtab___crypto_xor
+ffffffc008a53ff8 r __ksymtab___dev_change_net_namespace
+ffffffc008a54004 r __ksymtab___dev_forward_skb
+ffffffc008a54010 r __ksymtab___devm_alloc_percpu
+ffffffc008a5401c r __ksymtab___devm_clk_hw_register_divider
+ffffffc008a54028 r __ksymtab___devm_clk_hw_register_gate
+ffffffc008a54034 r __ksymtab___devm_clk_hw_register_mux
+ffffffc008a54040 r __ksymtab___devm_irq_alloc_descs
+ffffffc008a5404c r __ksymtab___devm_pci_epc_create
+ffffffc008a54058 r __ksymtab___devm_regmap_init
+ffffffc008a54064 r __ksymtab___devm_regmap_init_mmio_clk
+ffffffc008a54070 r __ksymtab___devm_rtc_register_device
+ffffffc008a5407c r __ksymtab___devm_uio_register_device
+ffffffc008a54088 r __ksymtab___devres_alloc_node
+ffffffc008a54094 r __ksymtab___dma_fence_unwrap_merge
+ffffffc008a540a0 r __ksymtab___fib_lookup
+ffffffc008a540ac r __ksymtab___fl6_sock_lookup
+ffffffc008a540b8 r __ksymtab___folio_lock_killable
+ffffffc008a540c4 r __ksymtab___free_iova
+ffffffc008a540d0 r __ksymtab___fsnotify_inode_delete
+ffffffc008a540dc r __ksymtab___fsnotify_parent
+ffffffc008a540e8 r __ksymtab___ftrace_vbprintk
+ffffffc008a540f4 r __ksymtab___ftrace_vprintk
+ffffffc008a54100 r __ksymtab___get_task_comm
+ffffffc008a5410c r __ksymtab___get_task_ioprio
+ffffffc008a54118 r __ksymtab___hrtimer_get_remaining
+ffffffc008a54124 r __ksymtab___hvc_resize
+ffffffc008a54130 r __ksymtab___hwspin_lock_timeout
+ffffffc008a5413c r __ksymtab___hwspin_trylock
+ffffffc008a54148 r __ksymtab___hwspin_unlock
+ffffffc008a54154 r __ksymtab___inet_inherit_port
+ffffffc008a54160 r __ksymtab___inet_lookup_established
+ffffffc008a5416c r __ksymtab___inet_lookup_listener
+ffffffc008a54178 r __ksymtab___inet_twsk_schedule
+ffffffc008a54184 r __ksymtab___iomap_dio_rw
+ffffffc008a54190 r __ksymtab___ioread32_copy
+ffffffc008a5419c r __ksymtab___iowrite32_copy
+ffffffc008a541a8 r __ksymtab___iowrite64_copy
+ffffffc008a541b4 r __ksymtab___ip6_datagram_connect
+ffffffc008a541c0 r __ksymtab___ip6_local_out
+ffffffc008a541cc r __ksymtab___ip_tunnel_change_mtu
+ffffffc008a541d8 r __ksymtab___iptunnel_pull_header
+ffffffc008a541e4 r __ksymtab___ipv6_fixup_options
+ffffffc008a541f0 r __ksymtab___irq_alloc_descs
+ffffffc008a541fc r __ksymtab___irq_apply_affinity_hint
+ffffffc008a54208 r __ksymtab___irq_domain_add
+ffffffc008a54214 r __ksymtab___irq_domain_alloc_fwnode
+ffffffc008a54220 r __ksymtab___irq_domain_alloc_irqs
+ffffffc008a5422c r __ksymtab___irq_resolve_mapping
+ffffffc008a54238 r __ksymtab___irq_set_handler
+ffffffc008a54244 r __ksymtab___kernel_write
+ffffffc008a54250 r __ksymtab___kthread_init_worker
+ffffffc008a5425c r __ksymtab___kthread_should_park
+ffffffc008a54268 r __ksymtab___list_lru_init
+ffffffc008a54274 r __ksymtab___memcat_p
+ffffffc008a54280 r __ksymtab___migrate_task
+ffffffc008a5428c r __ksymtab___mmdrop
+ffffffc008a54298 r __ksymtab___mnt_is_readonly
+ffffffc008a542a4 r __ksymtab___mt_destroy
+ffffffc008a542b0 r __ksymtab___ndisc_fill_addr_option
+ffffffc008a542bc r __ksymtab___netdev_watchdog_up
+ffffffc008a542c8 r __ksymtab___netif_set_xps_queue
+ffffffc008a542d4 r __ksymtab___page_file_index
+ffffffc008a542e0 r __ksymtab___page_mapcount
+ffffffc008a542ec r __ksymtab___pci_epc_create
+ffffffc008a542f8 r __ksymtab___pci_epf_register_driver
+ffffffc008a54304 r __ksymtab___pci_reset_function_locked
+ffffffc008a54310 r __ksymtab___percpu_down_read
+ffffffc008a5431c r __ksymtab___percpu_init_rwsem
+ffffffc008a54328 r __ksymtab___platform_create_bundle
+ffffffc008a54334 r __ksymtab___platform_driver_probe
+ffffffc008a54340 r __ksymtab___platform_driver_register
+ffffffc008a5434c r __ksymtab___platform_register_drivers
+ffffffc008a54358 r __ksymtab___pm_relax
+ffffffc008a54364 r __ksymtab___pm_runtime_disable
+ffffffc008a54370 r __ksymtab___pm_runtime_idle
+ffffffc008a5437c r __ksymtab___pm_runtime_resume
+ffffffc008a54388 r __ksymtab___pm_runtime_set_status
+ffffffc008a54394 r __ksymtab___pm_runtime_suspend
+ffffffc008a543a0 r __ksymtab___pm_runtime_use_autosuspend
+ffffffc008a543ac r __ksymtab___pm_stay_awake
+ffffffc008a543b8 r __ksymtab___pneigh_lookup
+ffffffc008a543c4 r __ksymtab___put_task_struct
+ffffffc008a543d0 r __ksymtab___rcu_read_lock
+ffffffc008a543dc r __ksymtab___rcu_read_unlock
+ffffffc008a543e8 r __ksymtab___regmap_init
+ffffffc008a543f4 r __ksymtab___regmap_init_mmio_clk
+ffffffc008a54400 r __ksymtab___request_percpu_irq
+ffffffc008a5440c r __ksymtab___rht_bucket_nested
+ffffffc008a54418 r __ksymtab___ring_buffer_alloc
+ffffffc008a54424 r __ksymtab___root_device_register
+ffffffc008a54430 r __ksymtab___round_jiffies
+ffffffc008a5443c r __ksymtab___round_jiffies_relative
+ffffffc008a54448 r __ksymtab___round_jiffies_up
+ffffffc008a54454 r __ksymtab___round_jiffies_up_relative
+ffffffc008a54460 r __ksymtab___rt_mutex_init
+ffffffc008a5446c r __ksymtab___rtnl_link_register
+ffffffc008a54478 r __ksymtab___rtnl_link_unregister
+ffffffc008a54484 r __ksymtab___sbitmap_queue_get
+ffffffc008a54490 r __ksymtab___sk_flush_backlog
+ffffffc008a5449c r __ksymtab___skb_get_hash_symmetric
+ffffffc008a544a8 r __ksymtab___skb_tstamp_tx
+ffffffc008a544b4 r __ksymtab___skb_zcopy_downgrade_managed
+ffffffc008a544c0 r __ksymtab___sock_recv_cmsgs
+ffffffc008a544cc r __ksymtab___sock_recv_timestamp
+ffffffc008a544d8 r __ksymtab___sock_recv_wifi_status
+ffffffc008a544e4 r __ksymtab___srcu_read_lock
+ffffffc008a544f0 r __ksymtab___srcu_read_unlock
+ffffffc008a544fc r __ksymtab___stack_depot_save
+ffffffc008a54508 r __ksymtab___static_key_deferred_flush
+ffffffc008a54514 r __ksymtab___static_key_slow_dec_deferred
+ffffffc008a54520 r __ksymtab___suspend_report_result
+ffffffc008a5452c r __ksymtab___symbol_get
+ffffffc008a54538 r __ksymtab___sync_icache_dcache
+ffffffc008a54544 r __ksymtab___synth_event_gen_cmd_start
+ffffffc008a54550 r __ksymtab___task_rq_lock
+ffffffc008a5455c r __ksymtab___tcp_send_ack
+ffffffc008a54568 r __ksymtab___trace_array_puts
+ffffffc008a54574 r __ksymtab___trace_bprintk
+ffffffc008a54580 r __ksymtab___trace_bputs
+ffffffc008a5458c r __ksymtab___trace_printk
+ffffffc008a54598 r __ksymtab___trace_puts
+ffffffc008a545a4 r __ksymtab___trace_trigger_soft_disabled
+ffffffc008a545b0 r __ksymtab___traceiter_add_device_to_group
+ffffffc008a545bc r __ksymtab___traceiter_arm_event
+ffffffc008a545c8 r __ksymtab___traceiter_attach_device_to_domain
+ffffffc008a545d4 r __ksymtab___traceiter_block_bio_complete
+ffffffc008a545e0 r __ksymtab___traceiter_block_bio_queue
+ffffffc008a545ec r __ksymtab___traceiter_block_bio_remap
+ffffffc008a545f8 r __ksymtab___traceiter_block_getrq
+ffffffc008a54604 r __ksymtab___traceiter_block_rq_complete
+ffffffc008a54610 r __ksymtab___traceiter_block_rq_insert
+ffffffc008a5461c r __ksymtab___traceiter_block_rq_issue
+ffffffc008a54628 r __ksymtab___traceiter_block_rq_merge
+ffffffc008a54634 r __ksymtab___traceiter_block_rq_remap
+ffffffc008a54640 r __ksymtab___traceiter_block_rq_requeue
+ffffffc008a5464c r __ksymtab___traceiter_block_split
+ffffffc008a54658 r __ksymtab___traceiter_block_unplug
+ffffffc008a54664 r __ksymtab___traceiter_br_fdb_add
+ffffffc008a54670 r __ksymtab___traceiter_br_fdb_external_learn_add
+ffffffc008a5467c r __ksymtab___traceiter_br_fdb_update
+ffffffc008a54688 r __ksymtab___traceiter_clock_set_rate
+ffffffc008a54694 r __ksymtab___traceiter_console
+ffffffc008a546a0 r __ksymtab___traceiter_consume_skb
+ffffffc008a546ac r __ksymtab___traceiter_cpu_frequency
+ffffffc008a546b8 r __ksymtab___traceiter_cpu_idle
+ffffffc008a546c4 r __ksymtab___traceiter_detach_device_from_domain
+ffffffc008a546d0 r __ksymtab___traceiter_device_pm_callback_end
+ffffffc008a546dc r __ksymtab___traceiter_device_pm_callback_start
+ffffffc008a546e8 r __ksymtab___traceiter_error_report_end
+ffffffc008a546f4 r __ksymtab___traceiter_fdb_delete
+ffffffc008a54700 r __ksymtab___traceiter_fib6_table_lookup
+ffffffc008a5470c r __ksymtab___traceiter_hrtimer_expire_entry
+ffffffc008a54718 r __ksymtab___traceiter_hrtimer_expire_exit
+ffffffc008a54724 r __ksymtab___traceiter_io_page_fault
+ffffffc008a54730 r __ksymtab___traceiter_ipi_entry
+ffffffc008a5473c r __ksymtab___traceiter_ipi_exit
+ffffffc008a54748 r __ksymtab___traceiter_ipi_raise
+ffffffc008a54754 r __ksymtab___traceiter_irq_handler_entry
+ffffffc008a54760 r __ksymtab___traceiter_irq_handler_exit
+ffffffc008a5476c r __ksymtab___traceiter_kfree_skb
+ffffffc008a54778 r __ksymtab___traceiter_map
+ffffffc008a54784 r __ksymtab___traceiter_mc_event
+ffffffc008a54790 r __ksymtab___traceiter_napi_poll
+ffffffc008a5479c r __ksymtab___traceiter_neigh_cleanup_and_release
+ffffffc008a547a8 r __ksymtab___traceiter_neigh_event_send_dead
+ffffffc008a547b4 r __ksymtab___traceiter_neigh_event_send_done
+ffffffc008a547c0 r __ksymtab___traceiter_neigh_timer_handler
+ffffffc008a547cc r __ksymtab___traceiter_neigh_update
+ffffffc008a547d8 r __ksymtab___traceiter_neigh_update_done
+ffffffc008a547e4 r __ksymtab___traceiter_non_standard_event
+ffffffc008a547f0 r __ksymtab___traceiter_pelt_cfs_tp
+ffffffc008a547fc r __ksymtab___traceiter_pelt_dl_tp
+ffffffc008a54808 r __ksymtab___traceiter_pelt_irq_tp
+ffffffc008a54814 r __ksymtab___traceiter_pelt_rt_tp
+ffffffc008a54820 r __ksymtab___traceiter_pelt_se_tp
+ffffffc008a5482c r __ksymtab___traceiter_pelt_thermal_tp
+ffffffc008a54838 r __ksymtab___traceiter_powernv_throttle
+ffffffc008a54844 r __ksymtab___traceiter_remove_device_from_group
+ffffffc008a54850 r __ksymtab___traceiter_rpm_idle
+ffffffc008a5485c r __ksymtab___traceiter_rpm_resume
+ffffffc008a54868 r __ksymtab___traceiter_rpm_return_int
+ffffffc008a54874 r __ksymtab___traceiter_rpm_suspend
+ffffffc008a54880 r __ksymtab___traceiter_rwmmio_post_read
+ffffffc008a5488c r __ksymtab___traceiter_rwmmio_post_write
+ffffffc008a54898 r __ksymtab___traceiter_rwmmio_read
+ffffffc008a548a4 r __ksymtab___traceiter_rwmmio_write
+ffffffc008a548b0 r __ksymtab___traceiter_sched_cpu_capacity_tp
+ffffffc008a548bc r __ksymtab___traceiter_sched_overutilized_tp
+ffffffc008a548c8 r __ksymtab___traceiter_sched_stat_blocked
+ffffffc008a548d4 r __ksymtab___traceiter_sched_stat_iowait
+ffffffc008a548e0 r __ksymtab___traceiter_sched_stat_runtime
+ffffffc008a548ec r __ksymtab___traceiter_sched_stat_sleep
+ffffffc008a548f8 r __ksymtab___traceiter_sched_stat_wait
+ffffffc008a54904 r __ksymtab___traceiter_sched_switch
+ffffffc008a54910 r __ksymtab___traceiter_sched_update_nr_running_tp
+ffffffc008a5491c r __ksymtab___traceiter_sched_util_est_cfs_tp
+ffffffc008a54928 r __ksymtab___traceiter_sched_util_est_se_tp
+ffffffc008a54934 r __ksymtab___traceiter_sched_waking
+ffffffc008a54940 r __ksymtab___traceiter_suspend_resume
+ffffffc008a5494c r __ksymtab___traceiter_task_newtask
+ffffffc008a54958 r __ksymtab___traceiter_task_rename
+ffffffc008a54964 r __ksymtab___traceiter_tcp_bad_csum
+ffffffc008a54970 r __ksymtab___traceiter_tcp_send_reset
+ffffffc008a5497c r __ksymtab___traceiter_unmap
+ffffffc008a54988 r __ksymtab___traceiter_wbc_writepage
+ffffffc008a54994 r __ksymtab___traceiter_workqueue_execute_end
+ffffffc008a549a0 r __ksymtab___traceiter_workqueue_execute_start
+ffffffc008a549ac r __ksymtab___traceiter_xdp_bulk_tx
+ffffffc008a549b8 r __ksymtab___traceiter_xdp_exception
+ffffffc008a549c4 r __ksymtab___tracepoint_add_device_to_group
+ffffffc008a549d0 r __ksymtab___tracepoint_arm_event
+ffffffc008a549dc r __ksymtab___tracepoint_attach_device_to_domain
+ffffffc008a549e8 r __ksymtab___tracepoint_block_bio_complete
+ffffffc008a549f4 r __ksymtab___tracepoint_block_bio_queue
+ffffffc008a54a00 r __ksymtab___tracepoint_block_bio_remap
+ffffffc008a54a0c r __ksymtab___tracepoint_block_getrq
+ffffffc008a54a18 r __ksymtab___tracepoint_block_rq_complete
+ffffffc008a54a24 r __ksymtab___tracepoint_block_rq_insert
+ffffffc008a54a30 r __ksymtab___tracepoint_block_rq_issue
+ffffffc008a54a3c r __ksymtab___tracepoint_block_rq_merge
+ffffffc008a54a48 r __ksymtab___tracepoint_block_rq_remap
+ffffffc008a54a54 r __ksymtab___tracepoint_block_rq_requeue
+ffffffc008a54a60 r __ksymtab___tracepoint_block_split
+ffffffc008a54a6c r __ksymtab___tracepoint_block_unplug
+ffffffc008a54a78 r __ksymtab___tracepoint_br_fdb_add
+ffffffc008a54a84 r __ksymtab___tracepoint_br_fdb_external_learn_add
+ffffffc008a54a90 r __ksymtab___tracepoint_br_fdb_update
+ffffffc008a54a9c r __ksymtab___tracepoint_clock_set_rate
+ffffffc008a54aa8 r __ksymtab___tracepoint_console
+ffffffc008a54ab4 r __ksymtab___tracepoint_consume_skb
+ffffffc008a54ac0 r __ksymtab___tracepoint_cpu_frequency
+ffffffc008a54acc r __ksymtab___tracepoint_cpu_idle
+ffffffc008a54ad8 r __ksymtab___tracepoint_detach_device_from_domain
+ffffffc008a54ae4 r __ksymtab___tracepoint_device_pm_callback_end
+ffffffc008a54af0 r __ksymtab___tracepoint_device_pm_callback_start
+ffffffc008a54afc r __ksymtab___tracepoint_error_report_end
+ffffffc008a54b08 r __ksymtab___tracepoint_fdb_delete
+ffffffc008a54b14 r __ksymtab___tracepoint_fib6_table_lookup
+ffffffc008a54b20 r __ksymtab___tracepoint_hrtimer_expire_entry
+ffffffc008a54b2c r __ksymtab___tracepoint_hrtimer_expire_exit
+ffffffc008a54b38 r __ksymtab___tracepoint_io_page_fault
+ffffffc008a54b44 r __ksymtab___tracepoint_ipi_entry
+ffffffc008a54b50 r __ksymtab___tracepoint_ipi_exit
+ffffffc008a54b5c r __ksymtab___tracepoint_ipi_raise
+ffffffc008a54b68 r __ksymtab___tracepoint_irq_handler_entry
+ffffffc008a54b74 r __ksymtab___tracepoint_irq_handler_exit
+ffffffc008a54b80 r __ksymtab___tracepoint_kfree_skb
+ffffffc008a54b8c r __ksymtab___tracepoint_map
+ffffffc008a54b98 r __ksymtab___tracepoint_mc_event
+ffffffc008a54ba4 r __ksymtab___tracepoint_napi_poll
+ffffffc008a54bb0 r __ksymtab___tracepoint_neigh_cleanup_and_release
+ffffffc008a54bbc r __ksymtab___tracepoint_neigh_event_send_dead
+ffffffc008a54bc8 r __ksymtab___tracepoint_neigh_event_send_done
+ffffffc008a54bd4 r __ksymtab___tracepoint_neigh_timer_handler
+ffffffc008a54be0 r __ksymtab___tracepoint_neigh_update
+ffffffc008a54bec r __ksymtab___tracepoint_neigh_update_done
+ffffffc008a54bf8 r __ksymtab___tracepoint_non_standard_event
+ffffffc008a54c04 r __ksymtab___tracepoint_pelt_cfs_tp
+ffffffc008a54c10 r __ksymtab___tracepoint_pelt_dl_tp
+ffffffc008a54c1c r __ksymtab___tracepoint_pelt_irq_tp
+ffffffc008a54c28 r __ksymtab___tracepoint_pelt_rt_tp
+ffffffc008a54c34 r __ksymtab___tracepoint_pelt_se_tp
+ffffffc008a54c40 r __ksymtab___tracepoint_pelt_thermal_tp
+ffffffc008a54c4c r __ksymtab___tracepoint_powernv_throttle
+ffffffc008a54c58 r __ksymtab___tracepoint_remove_device_from_group
+ffffffc008a54c64 r __ksymtab___tracepoint_rpm_idle
+ffffffc008a54c70 r __ksymtab___tracepoint_rpm_resume
+ffffffc008a54c7c r __ksymtab___tracepoint_rpm_return_int
+ffffffc008a54c88 r __ksymtab___tracepoint_rpm_suspend
+ffffffc008a54c94 r __ksymtab___tracepoint_rwmmio_post_read
+ffffffc008a54ca0 r __ksymtab___tracepoint_rwmmio_post_write
+ffffffc008a54cac r __ksymtab___tracepoint_rwmmio_read
+ffffffc008a54cb8 r __ksymtab___tracepoint_rwmmio_write
+ffffffc008a54cc4 r __ksymtab___tracepoint_sched_cpu_capacity_tp
+ffffffc008a54cd0 r __ksymtab___tracepoint_sched_overutilized_tp
+ffffffc008a54cdc r __ksymtab___tracepoint_sched_stat_blocked
+ffffffc008a54ce8 r __ksymtab___tracepoint_sched_stat_iowait
+ffffffc008a54cf4 r __ksymtab___tracepoint_sched_stat_runtime
+ffffffc008a54d00 r __ksymtab___tracepoint_sched_stat_sleep
+ffffffc008a54d0c r __ksymtab___tracepoint_sched_stat_wait
+ffffffc008a54d18 r __ksymtab___tracepoint_sched_switch
+ffffffc008a54d24 r __ksymtab___tracepoint_sched_update_nr_running_tp
+ffffffc008a54d30 r __ksymtab___tracepoint_sched_util_est_cfs_tp
+ffffffc008a54d3c r __ksymtab___tracepoint_sched_util_est_se_tp
+ffffffc008a54d48 r __ksymtab___tracepoint_sched_waking
+ffffffc008a54d54 r __ksymtab___tracepoint_suspend_resume
+ffffffc008a54d60 r __ksymtab___tracepoint_task_newtask
+ffffffc008a54d6c r __ksymtab___tracepoint_task_rename
+ffffffc008a54d78 r __ksymtab___tracepoint_tcp_bad_csum
+ffffffc008a54d84 r __ksymtab___tracepoint_tcp_send_reset
+ffffffc008a54d90 r __ksymtab___tracepoint_unmap
+ffffffc008a54d9c r __ksymtab___tracepoint_wbc_writepage
+ffffffc008a54da8 r __ksymtab___tracepoint_workqueue_execute_end
+ffffffc008a54db4 r __ksymtab___tracepoint_workqueue_execute_start
+ffffffc008a54dc0 r __ksymtab___tracepoint_xdp_bulk_tx
+ffffffc008a54dcc r __ksymtab___tracepoint_xdp_exception
+ffffffc008a54dd8 r __ksymtab___udp4_lib_lookup
+ffffffc008a54de4 r __ksymtab___udp6_lib_lookup
+ffffffc008a54df0 r __ksymtab___udp_enqueue_schedule_skb
+ffffffc008a54dfc r __ksymtab___udp_gso_segment
+ffffffc008a54e08 r __ksymtab___uio_register_device
+ffffffc008a54e14 r __ksymtab___update_load_avg_blocked_se
+ffffffc008a54e20 r __ksymtab___vfs_removexattr_locked
+ffffffc008a54e2c r __ksymtab___vfs_setxattr_locked
+ffffffc008a54e38 r __ksymtab___virtio_unbreak_device
+ffffffc008a54e44 r __ksymtab___virtqueue_break
+ffffffc008a54e50 r __ksymtab___virtqueue_unbreak
+ffffffc008a54e5c r __ksymtab___wait_rcu_gp
+ffffffc008a54e68 r __ksymtab___wake_up_locked
+ffffffc008a54e74 r __ksymtab___wake_up_locked_key
+ffffffc008a54e80 r __ksymtab___wake_up_locked_key_bookmark
+ffffffc008a54e8c r __ksymtab___wake_up_locked_sync_key
+ffffffc008a54e98 r __ksymtab___wake_up_sync
+ffffffc008a54ea4 r __ksymtab___wake_up_sync_key
+ffffffc008a54eb0 r __ksymtab___xas_next
+ffffffc008a54ebc r __ksymtab___xas_prev
+ffffffc008a54ec8 r __ksymtab___xdp_build_skb_from_frame
+ffffffc008a54ed4 r __ksymtab___xdp_release_frame
+ffffffc008a54ee0 r __ksymtab___xdp_rxq_info_reg
+ffffffc008a54eec r __ksymtab__printk_deferred
+ffffffc008a54ef8 r __ksymtab__proc_mkdir
+ffffffc008a54f04 r __ksymtab__trace_android_vh_record_pcpu_rwsem_starttime
+ffffffc008a54f10 r __ksymtab_access_process_vm
+ffffffc008a54f1c r __ksymtab_account_locked_vm
+ffffffc008a54f28 r __ksymtab_ack_all_badblocks
+ffffffc008a54f34 r __ksymtab_acomp_request_alloc
+ffffffc008a54f40 r __ksymtab_acomp_request_free
+ffffffc008a54f4c r __ksymtab_activate_task
+ffffffc008a54f58 r __ksymtab_add_cpu
+ffffffc008a54f64 r __ksymtab_add_disk_randomness
+ffffffc008a54f70 r __ksymtab_add_hwgenerator_randomness
+ffffffc008a54f7c r __ksymtab_add_input_randomness
+ffffffc008a54f88 r __ksymtab_add_interrupt_randomness
+ffffffc008a54f94 r __ksymtab_add_memory
+ffffffc008a54fa0 r __ksymtab_add_memory_driver_managed
+ffffffc008a54fac r __ksymtab_add_swap_extent
+ffffffc008a54fb8 r __ksymtab_add_timer_on
+ffffffc008a54fc4 r __ksymtab_add_uevent_var
+ffffffc008a54fd0 r __ksymtab_add_wait_queue_priority
+ffffffc008a54fdc r __ksymtab_addrconf_add_linklocal
+ffffffc008a54fe8 r __ksymtab_addrconf_prefix_rcv_add_addr
+ffffffc008a54ff4 r __ksymtab_aead_exit_geniv
+ffffffc008a55000 r __ksymtab_aead_geniv_alloc
+ffffffc008a5500c r __ksymtab_aead_init_geniv
+ffffffc008a55018 r __ksymtab_aead_register_instance
+ffffffc008a55024 r __ksymtab_ahash_register_instance
+ffffffc008a55030 r __ksymtab_akcipher_register_instance
+ffffffc008a5503c r __ksymtab_alarm_cancel
+ffffffc008a55048 r __ksymtab_alarm_expires_remaining
+ffffffc008a55054 r __ksymtab_alarm_forward
+ffffffc008a55060 r __ksymtab_alarm_forward_now
+ffffffc008a5506c r __ksymtab_alarm_init
+ffffffc008a55078 r __ksymtab_alarm_restart
+ffffffc008a55084 r __ksymtab_alarm_start
+ffffffc008a55090 r __ksymtab_alarm_start_relative
+ffffffc008a5509c r __ksymtab_alarm_try_to_cancel
+ffffffc008a550a8 r __ksymtab_alarmtimer_get_rtcdev
+ffffffc008a550b4 r __ksymtab_alg_test
+ffffffc008a550c0 r __ksymtab_all_vm_events
+ffffffc008a550cc r __ksymtab_alloc_iova
+ffffffc008a550d8 r __ksymtab_alloc_iova_fast
+ffffffc008a550e4 r __ksymtab_alloc_page_buffers
+ffffffc008a550f0 r __ksymtab_alloc_skb_for_msg
+ffffffc008a550fc r __ksymtab_alloc_workqueue
+ffffffc008a55108 r __ksymtab_amba_bustype
+ffffffc008a55114 r __ksymtab_amba_device_add
+ffffffc008a55120 r __ksymtab_amba_device_alloc
+ffffffc008a5512c r __ksymtab_amba_device_put
+ffffffc008a55138 r __ksymtab_anon_inode_getfd
+ffffffc008a55144 r __ksymtab_anon_inode_getfd_secure
+ffffffc008a55150 r __ksymtab_anon_inode_getfile
+ffffffc008a5515c r __ksymtab_anon_transport_class_register
+ffffffc008a55168 r __ksymtab_anon_transport_class_unregister
+ffffffc008a55174 r __ksymtab_apply_to_existing_page_range
+ffffffc008a55180 r __ksymtab_apply_to_page_range
+ffffffc008a5518c r __ksymtab_arch_freq_scale
+ffffffc008a55198 r __ksymtab_arch_timer_read_counter
+ffffffc008a551a4 r __ksymtab_arm64_mm_context_get
+ffffffc008a551b0 r __ksymtab_arm64_mm_context_put
+ffffffc008a551bc r __ksymtab_arm_smccc_1_1_get_conduit
+ffffffc008a551c8 r __ksymtab_arm_smccc_get_version
+ffffffc008a551d4 r __ksymtab_async_schedule_node
+ffffffc008a551e0 r __ksymtab_async_schedule_node_domain
+ffffffc008a551ec r __ksymtab_async_synchronize_cookie
+ffffffc008a551f8 r __ksymtab_async_synchronize_cookie_domain
+ffffffc008a55204 r __ksymtab_async_synchronize_full
+ffffffc008a55210 r __ksymtab_async_synchronize_full_domain
+ffffffc008a5521c r __ksymtab_atomic_notifier_call_chain
+ffffffc008a55228 r __ksymtab_atomic_notifier_chain_register
+ffffffc008a55234 r __ksymtab_atomic_notifier_chain_register_unique_prio
+ffffffc008a55240 r __ksymtab_atomic_notifier_chain_unregister
+ffffffc008a5524c r __ksymtab_attribute_container_classdev_to_container
+ffffffc008a55258 r __ksymtab_attribute_container_find_class_device
+ffffffc008a55264 r __ksymtab_attribute_container_register
+ffffffc008a55270 r __ksymtab_attribute_container_unregister
+ffffffc008a5527c r __ksymtab_audit_enabled
+ffffffc008a55288 r __ksymtab_available_idle_cpu
+ffffffc008a55294 r __ksymtab_badblocks_check
+ffffffc008a552a0 r __ksymtab_badblocks_clear
+ffffffc008a552ac r __ksymtab_badblocks_exit
+ffffffc008a552b8 r __ksymtab_badblocks_init
+ffffffc008a552c4 r __ksymtab_badblocks_set
+ffffffc008a552d0 r __ksymtab_badblocks_show
+ffffffc008a552dc r __ksymtab_badblocks_store
+ffffffc008a552e8 r __ksymtab_balance_dirty_pages_ratelimited_flags
+ffffffc008a552f4 r __ksymtab_balance_push_callback
+ffffffc008a55300 r __ksymtab_balloon_mops
+ffffffc008a5530c r __ksymtab_balloon_page_alloc
+ffffffc008a55318 r __ksymtab_balloon_page_dequeue
+ffffffc008a55324 r __ksymtab_balloon_page_enqueue
+ffffffc008a55330 r __ksymtab_balloon_page_list_dequeue
+ffffffc008a5533c r __ksymtab_balloon_page_list_enqueue
+ffffffc008a55348 r __ksymtab_base64_decode
+ffffffc008a55354 r __ksymtab_base64_encode
+ffffffc008a55360 r __ksymtab_bd_link_disk_holder
+ffffffc008a5536c r __ksymtab_bd_prepare_to_claim
+ffffffc008a55378 r __ksymtab_bd_unlink_disk_holder
+ffffffc008a55384 r __ksymtab_bdev_alignment_offset
+ffffffc008a55390 r __ksymtab_bdev_discard_alignment
+ffffffc008a5539c r __ksymtab_bdev_disk_changed
+ffffffc008a553a8 r __ksymtab_bdev_nr_zones
+ffffffc008a553b4 r __ksymtab_bdi_dev_name
+ffffffc008a553c0 r __ksymtab_bio_add_zone_append_page
+ffffffc008a553cc r __ksymtab_bio_crypt_set_ctx
+ffffffc008a553d8 r __ksymtab_bio_end_io_acct_remapped
+ffffffc008a553e4 r __ksymtab_bio_iov_iter_get_pages
+ffffffc008a553f0 r __ksymtab_bio_poll
+ffffffc008a553fc r __ksymtab_bio_start_io_acct
+ffffffc008a55408 r __ksymtab_bio_start_io_acct_time
+ffffffc008a55414 r __ksymtab_bio_trim
+ffffffc008a55420 r __ksymtab_bit_wait_io_timeout
+ffffffc008a5542c r __ksymtab_bit_wait_timeout
+ffffffc008a55438 r __ksymtab_blk_abort_request
+ffffffc008a55444 r __ksymtab_blk_bio_list_merge
+ffffffc008a55450 r __ksymtab_blk_clear_pm_only
+ffffffc008a5545c r __ksymtab_blk_crypto_derive_sw_secret
+ffffffc008a55468 r __ksymtab_blk_crypto_evict_key
+ffffffc008a55474 r __ksymtab_blk_crypto_has_capabilities
+ffffffc008a55480 r __ksymtab_blk_crypto_init_key
+ffffffc008a5548c r __ksymtab_blk_crypto_intersect_capabilities
+ffffffc008a55498 r __ksymtab_blk_crypto_keyslot_index
+ffffffc008a554a4 r __ksymtab_blk_crypto_profile_destroy
+ffffffc008a554b0 r __ksymtab_blk_crypto_profile_init
+ffffffc008a554bc r __ksymtab_blk_crypto_register
+ffffffc008a554c8 r __ksymtab_blk_crypto_reprogram_all_keys
+ffffffc008a554d4 r __ksymtab_blk_crypto_start_using_key
+ffffffc008a554e0 r __ksymtab_blk_crypto_update_capabilities
+ffffffc008a554ec r __ksymtab_blk_execute_rq_nowait
+ffffffc008a554f8 r __ksymtab_blk_fill_rwbs
+ffffffc008a55504 r __ksymtab_blk_freeze_queue_start
+ffffffc008a55510 r __ksymtab_blk_insert_cloned_request
+ffffffc008a5551c r __ksymtab_blk_io_schedule
+ffffffc008a55528 r __ksymtab_blk_lld_busy
+ffffffc008a55534 r __ksymtab_blk_mark_disk_dead
+ffffffc008a55540 r __ksymtab_blk_mq_alloc_request_hctx
+ffffffc008a5554c r __ksymtab_blk_mq_alloc_sq_tag_set
+ffffffc008a55558 r __ksymtab_blk_mq_complete_request_remote
+ffffffc008a55564 r __ksymtab_blk_mq_debugfs_rq_show
+ffffffc008a55570 r __ksymtab_blk_mq_end_request_batch
+ffffffc008a5557c r __ksymtab_blk_mq_flush_busy_ctxs
+ffffffc008a55588 r __ksymtab_blk_mq_free_request
+ffffffc008a55594 r __ksymtab_blk_mq_freeze_queue
+ffffffc008a555a0 r __ksymtab_blk_mq_freeze_queue_wait
+ffffffc008a555ac r __ksymtab_blk_mq_freeze_queue_wait_timeout
+ffffffc008a555b8 r __ksymtab_blk_mq_hctx_set_fq_lock_class
+ffffffc008a555c4 r __ksymtab_blk_mq_map_queues
+ffffffc008a555d0 r __ksymtab_blk_mq_pci_map_queues
+ffffffc008a555dc r __ksymtab_blk_mq_queue_inflight
+ffffffc008a555e8 r __ksymtab_blk_mq_quiesce_queue
+ffffffc008a555f4 r __ksymtab_blk_mq_quiesce_queue_nowait
+ffffffc008a55600 r __ksymtab_blk_mq_sched_mark_restart_hctx
+ffffffc008a5560c r __ksymtab_blk_mq_sched_try_insert_merge
+ffffffc008a55618 r __ksymtab_blk_mq_sched_try_merge
+ffffffc008a55624 r __ksymtab_blk_mq_start_stopped_hw_queue
+ffffffc008a55630 r __ksymtab_blk_mq_unfreeze_queue
+ffffffc008a5563c r __ksymtab_blk_mq_unquiesce_queue
+ffffffc008a55648 r __ksymtab_blk_mq_update_nr_hw_queues
+ffffffc008a55654 r __ksymtab_blk_mq_virtio_map_queues
+ffffffc008a55660 r __ksymtab_blk_mq_wait_quiesce_done
+ffffffc008a5566c r __ksymtab_blk_next_bio
+ffffffc008a55678 r __ksymtab_blk_op_str
+ffffffc008a55684 r __ksymtab_blk_queue_can_use_dma_map_merging
+ffffffc008a55690 r __ksymtab_blk_queue_flag_test_and_set
+ffffffc008a5569c r __ksymtab_blk_queue_max_discard_segments
+ffffffc008a556a8 r __ksymtab_blk_queue_max_zone_append_sectors
+ffffffc008a556b4 r __ksymtab_blk_queue_required_elevator_features
+ffffffc008a556c0 r __ksymtab_blk_queue_rq_timeout
+ffffffc008a556cc r __ksymtab_blk_queue_write_cache
+ffffffc008a556d8 r __ksymtab_blk_queue_zone_write_granularity
+ffffffc008a556e4 r __ksymtab_blk_req_needs_zone_write_lock
+ffffffc008a556f0 r __ksymtab_blk_req_zone_write_trylock
+ffffffc008a556fc r __ksymtab_blk_revalidate_disk_zones
+ffffffc008a55708 r __ksymtab_blk_rq_is_poll
+ffffffc008a55714 r __ksymtab_blk_rq_prep_clone
+ffffffc008a55720 r __ksymtab_blk_rq_unprep_clone
+ffffffc008a5572c r __ksymtab_blk_set_pm_only
+ffffffc008a55738 r __ksymtab_blk_stat_disable_accounting
+ffffffc008a55744 r __ksymtab_blk_stat_enable_accounting
+ffffffc008a55750 r __ksymtab_blk_status_to_errno
+ffffffc008a5575c r __ksymtab_blk_steal_bios
+ffffffc008a55768 r __ksymtab_blk_update_request
+ffffffc008a55774 r __ksymtab_blk_zone_cond_str
+ffffffc008a55780 r __ksymtab_blkdev_report_zones
+ffffffc008a5578c r __ksymtab_blkdev_zone_mgmt
+ffffffc008a55798 r __ksymtab_blockdev_superblock
+ffffffc008a557a4 r __ksymtab_blocking_notifier_call_chain
+ffffffc008a557b0 r __ksymtab_blocking_notifier_call_chain_robust
+ffffffc008a557bc r __ksymtab_blocking_notifier_chain_register
+ffffffc008a557c8 r __ksymtab_blocking_notifier_chain_register_unique_prio
+ffffffc008a557d4 r __ksymtab_blocking_notifier_chain_unregister
+ffffffc008a557e0 r __ksymtab_bpf_event_output
+ffffffc008a557ec r __ksymtab_bpf_master_redirect_enabled_key
+ffffffc008a557f8 r __ksymtab_bpf_prog_alloc
+ffffffc008a55804 r __ksymtab_bpf_prog_create
+ffffffc008a55810 r __ksymtab_bpf_prog_create_from_user
+ffffffc008a5581c r __ksymtab_bpf_prog_destroy
+ffffffc008a55828 r __ksymtab_bpf_prog_free
+ffffffc008a55834 r __ksymtab_bpf_prog_select_runtime
+ffffffc008a55840 r __ksymtab_bpf_redirect_info
+ffffffc008a5584c r __ksymtab_bpf_warn_invalid_xdp_action
+ffffffc008a55858 r __ksymtab_bprintf
+ffffffc008a55864 r __ksymtab_bstr_printf
+ffffffc008a55870 r __ksymtab_bus_create_file
+ffffffc008a5587c r __ksymtab_bus_find_device
+ffffffc008a55888 r __ksymtab_bus_for_each_dev
+ffffffc008a55894 r __ksymtab_bus_for_each_drv
+ffffffc008a558a0 r __ksymtab_bus_get_device_klist
+ffffffc008a558ac r __ksymtab_bus_get_kset
+ffffffc008a558b8 r __ksymtab_bus_register
+ffffffc008a558c4 r __ksymtab_bus_register_notifier
+ffffffc008a558d0 r __ksymtab_bus_remove_file
+ffffffc008a558dc r __ksymtab_bus_rescan_devices
+ffffffc008a558e8 r __ksymtab_bus_sort_breadthfirst
+ffffffc008a558f4 r __ksymtab_bus_unregister
+ffffffc008a55900 r __ksymtab_bus_unregister_notifier
+ffffffc008a5590c r __ksymtab_cache_line_size
+ffffffc008a55918 r __ksymtab_call_netevent_notifiers
+ffffffc008a55924 r __ksymtab_call_rcu
+ffffffc008a55930 r __ksymtab_call_rcu_tasks
+ffffffc008a5593c r __ksymtab_call_srcu
+ffffffc008a55948 r __ksymtab_cancel_work_sync
+ffffffc008a55954 r __ksymtab_check_move_unevictable_folios
+ffffffc008a55960 r __ksymtab_check_move_unevictable_pages
+ffffffc008a5596c r __ksymtab_check_preempt_curr
+ffffffc008a55978 r __ksymtab_class_compat_create_link
+ffffffc008a55984 r __ksymtab_class_compat_register
+ffffffc008a55990 r __ksymtab_class_compat_remove_link
+ffffffc008a5599c r __ksymtab_class_compat_unregister
+ffffffc008a559a8 r __ksymtab_class_create_file_ns
+ffffffc008a559b4 r __ksymtab_class_destroy
+ffffffc008a559c0 r __ksymtab_class_dev_iter_exit
+ffffffc008a559cc r __ksymtab_class_dev_iter_init
+ffffffc008a559d8 r __ksymtab_class_dev_iter_next
+ffffffc008a559e4 r __ksymtab_class_find_device
+ffffffc008a559f0 r __ksymtab_class_for_each_device
+ffffffc008a559fc r __ksymtab_class_interface_register
+ffffffc008a55a08 r __ksymtab_class_interface_unregister
+ffffffc008a55a14 r __ksymtab_class_remove_file_ns
+ffffffc008a55a20 r __ksymtab_class_unregister
+ffffffc008a55a2c r __ksymtab_cleanup_srcu_struct
+ffffffc008a55a38 r __ksymtab_clear_selection
+ffffffc008a55a44 r __ksymtab_clk_bulk_disable
+ffffffc008a55a50 r __ksymtab_clk_bulk_enable
+ffffffc008a55a5c r __ksymtab_clk_bulk_get_optional
+ffffffc008a55a68 r __ksymtab_clk_bulk_prepare
+ffffffc008a55a74 r __ksymtab_clk_bulk_put
+ffffffc008a55a80 r __ksymtab_clk_bulk_unprepare
+ffffffc008a55a8c r __ksymtab_clk_disable
+ffffffc008a55a98 r __ksymtab_clk_divider_ops
+ffffffc008a55aa4 r __ksymtab_clk_divider_ro_ops
+ffffffc008a55ab0 r __ksymtab_clk_enable
+ffffffc008a55abc r __ksymtab_clk_fixed_factor_ops
+ffffffc008a55ac8 r __ksymtab_clk_fixed_rate_ops
+ffffffc008a55ad4 r __ksymtab_clk_fractional_divider_ops
+ffffffc008a55ae0 r __ksymtab_clk_gate_is_enabled
+ffffffc008a55aec r __ksymtab_clk_gate_ops
+ffffffc008a55af8 r __ksymtab_clk_gate_restore_context
+ffffffc008a55b04 r __ksymtab_clk_get_accuracy
+ffffffc008a55b10 r __ksymtab_clk_get_parent
+ffffffc008a55b1c r __ksymtab_clk_get_phase
+ffffffc008a55b28 r __ksymtab_clk_get_rate
+ffffffc008a55b34 r __ksymtab_clk_get_scaled_duty_cycle
+ffffffc008a55b40 r __ksymtab_clk_has_parent
+ffffffc008a55b4c r __ksymtab_clk_hw_get_flags
+ffffffc008a55b58 r __ksymtab_clk_hw_get_name
+ffffffc008a55b64 r __ksymtab_clk_hw_get_num_parents
+ffffffc008a55b70 r __ksymtab_clk_hw_get_parent
+ffffffc008a55b7c r __ksymtab_clk_hw_get_parent_by_index
+ffffffc008a55b88 r __ksymtab_clk_hw_get_parent_index
+ffffffc008a55b94 r __ksymtab_clk_hw_get_rate
+ffffffc008a55ba0 r __ksymtab_clk_hw_get_rate_range
+ffffffc008a55bac r __ksymtab_clk_hw_init_rate_request
+ffffffc008a55bb8 r __ksymtab_clk_hw_is_enabled
+ffffffc008a55bc4 r __ksymtab_clk_hw_is_prepared
+ffffffc008a55bd0 r __ksymtab_clk_hw_rate_is_protected
+ffffffc008a55bdc r __ksymtab_clk_hw_register
+ffffffc008a55be8 r __ksymtab_clk_hw_register_composite
+ffffffc008a55bf4 r __ksymtab_clk_hw_register_fixed_factor
+ffffffc008a55c00 r __ksymtab_clk_hw_register_fixed_factor_parent_hw
+ffffffc008a55c0c r __ksymtab_clk_hw_register_fractional_divider
+ffffffc008a55c18 r __ksymtab_clk_hw_round_rate
+ffffffc008a55c24 r __ksymtab_clk_hw_set_parent
+ffffffc008a55c30 r __ksymtab_clk_hw_set_rate_range
+ffffffc008a55c3c r __ksymtab_clk_hw_unregister
+ffffffc008a55c48 r __ksymtab_clk_hw_unregister_composite
+ffffffc008a55c54 r __ksymtab_clk_hw_unregister_divider
+ffffffc008a55c60 r __ksymtab_clk_hw_unregister_fixed_factor
+ffffffc008a55c6c r __ksymtab_clk_hw_unregister_fixed_rate
+ffffffc008a55c78 r __ksymtab_clk_hw_unregister_gate
+ffffffc008a55c84 r __ksymtab_clk_hw_unregister_mux
+ffffffc008a55c90 r __ksymtab_clk_is_enabled_when_prepared
+ffffffc008a55c9c r __ksymtab_clk_is_match
+ffffffc008a55ca8 r __ksymtab_clk_multiplier_ops
+ffffffc008a55cb4 r __ksymtab_clk_mux_determine_rate_flags
+ffffffc008a55cc0 r __ksymtab_clk_mux_index_to_val
+ffffffc008a55ccc r __ksymtab_clk_mux_ops
+ffffffc008a55cd8 r __ksymtab_clk_mux_ro_ops
+ffffffc008a55ce4 r __ksymtab_clk_mux_val_to_index
+ffffffc008a55cf0 r __ksymtab_clk_notifier_register
+ffffffc008a55cfc r __ksymtab_clk_notifier_unregister
+ffffffc008a55d08 r __ksymtab_clk_prepare
+ffffffc008a55d14 r __ksymtab_clk_rate_exclusive_get
+ffffffc008a55d20 r __ksymtab_clk_rate_exclusive_put
+ffffffc008a55d2c r __ksymtab_clk_register
+ffffffc008a55d38 r __ksymtab_clk_register_composite
+ffffffc008a55d44 r __ksymtab_clk_register_divider_table
+ffffffc008a55d50 r __ksymtab_clk_register_fixed_factor
+ffffffc008a55d5c r __ksymtab_clk_register_fixed_rate
+ffffffc008a55d68 r __ksymtab_clk_register_fractional_divider
+ffffffc008a55d74 r __ksymtab_clk_register_gate
+ffffffc008a55d80 r __ksymtab_clk_register_mux_table
+ffffffc008a55d8c r __ksymtab_clk_restore_context
+ffffffc008a55d98 r __ksymtab_clk_round_rate
+ffffffc008a55da4 r __ksymtab_clk_save_context
+ffffffc008a55db0 r __ksymtab_clk_set_duty_cycle
+ffffffc008a55dbc r __ksymtab_clk_set_max_rate
+ffffffc008a55dc8 r __ksymtab_clk_set_min_rate
+ffffffc008a55dd4 r __ksymtab_clk_set_parent
+ffffffc008a55de0 r __ksymtab_clk_set_phase
+ffffffc008a55dec r __ksymtab_clk_set_rate
+ffffffc008a55df8 r __ksymtab_clk_set_rate_exclusive
+ffffffc008a55e04 r __ksymtab_clk_set_rate_range
+ffffffc008a55e10 r __ksymtab_clk_sync_state
+ffffffc008a55e1c r __ksymtab_clk_unprepare
+ffffffc008a55e28 r __ksymtab_clk_unregister
+ffffffc008a55e34 r __ksymtab_clk_unregister_divider
+ffffffc008a55e40 r __ksymtab_clk_unregister_fixed_factor
+ffffffc008a55e4c r __ksymtab_clk_unregister_fixed_rate
+ffffffc008a55e58 r __ksymtab_clk_unregister_gate
+ffffffc008a55e64 r __ksymtab_clk_unregister_mux
+ffffffc008a55e70 r __ksymtab_clkdev_create
+ffffffc008a55e7c r __ksymtab_clkdev_hw_create
+ffffffc008a55e88 r __ksymtab_clockevent_delta2ns
+ffffffc008a55e94 r __ksymtab_clockevents_config_and_register
+ffffffc008a55ea0 r __ksymtab_clockevents_register_device
+ffffffc008a55eac r __ksymtab_clockevents_unbind_device
+ffffffc008a55eb8 r __ksymtab_clocks_calc_mult_shift
+ffffffc008a55ec4 r __ksymtab_clone_private_mount
+ffffffc008a55ed0 r __ksymtab_compat_only_sysfs_link_entry_to_kobj
+ffffffc008a55edc r __ksymtab_component_add
+ffffffc008a55ee8 r __ksymtab_component_add_typed
+ffffffc008a55ef4 r __ksymtab_component_bind_all
+ffffffc008a55f00 r __ksymtab_component_compare_dev
+ffffffc008a55f0c r __ksymtab_component_compare_dev_name
+ffffffc008a55f18 r __ksymtab_component_compare_of
+ffffffc008a55f24 r __ksymtab_component_del
+ffffffc008a55f30 r __ksymtab_component_master_add_with_match
+ffffffc008a55f3c r __ksymtab_component_master_del
+ffffffc008a55f48 r __ksymtab_component_release_of
+ffffffc008a55f54 r __ksymtab_component_unbind_all
+ffffffc008a55f60 r __ksymtab_con_debug_enter
+ffffffc008a55f6c r __ksymtab_con_debug_leave
+ffffffc008a55f78 r __ksymtab_cond_synchronize_rcu
+ffffffc008a55f84 r __ksymtab_cond_synchronize_rcu_expedited
+ffffffc008a55f90 r __ksymtab_cond_synchronize_rcu_expedited_full
+ffffffc008a55f9c r __ksymtab_cond_synchronize_rcu_full
+ffffffc008a55fa8 r __ksymtab_console_drivers
+ffffffc008a55fb4 r __ksymtab_console_printk
+ffffffc008a55fc0 r __ksymtab_console_verbose
+ffffffc008a55fcc r __ksymtab_context_tracking
+ffffffc008a55fd8 r __ksymtab_copy_bpf_fprog_from_user
+ffffffc008a55fe4 r __ksymtab_copy_from_kernel_nofault
+ffffffc008a55ff0 r __ksymtab_copy_from_user_nofault
+ffffffc008a55ffc r __ksymtab_copy_to_user_nofault
+ffffffc008a56008 r __ksymtab_copy_user_highpage
+ffffffc008a56014 r __ksymtab_cpu_bit_bitmap
+ffffffc008a56020 r __ksymtab_cpu_cluster_pm_enter
+ffffffc008a5602c r __ksymtab_cpu_cluster_pm_exit
+ffffffc008a56038 r __ksymtab_cpu_device_create
+ffffffc008a56044 r __ksymtab_cpu_have_feature
+ffffffc008a56050 r __ksymtab_cpu_hotplug_disable
+ffffffc008a5605c r __ksymtab_cpu_hotplug_enable
+ffffffc008a56068 r __ksymtab_cpu_irqtime
+ffffffc008a56074 r __ksymtab_cpu_is_hotpluggable
+ffffffc008a56080 r __ksymtab_cpu_mitigations_auto_nosmt
+ffffffc008a5608c r __ksymtab_cpu_mitigations_off
+ffffffc008a56098 r __ksymtab_cpu_pm_enter
+ffffffc008a560a4 r __ksymtab_cpu_pm_exit
+ffffffc008a560b0 r __ksymtab_cpu_pm_register_notifier
+ffffffc008a560bc r __ksymtab_cpu_pm_unregister_notifier
+ffffffc008a560c8 r __ksymtab_cpu_scale
+ffffffc008a560d4 r __ksymtab_cpu_subsys
+ffffffc008a560e0 r __ksymtab_cpu_topology
+ffffffc008a560ec r __ksymtab_cpuhp_tasks_frozen
+ffffffc008a560f8 r __ksymtab_cpupri_find_fitness
+ffffffc008a56104 r __ksymtab_cpus_read_lock
+ffffffc008a56110 r __ksymtab_cpus_read_trylock
+ffffffc008a5611c r __ksymtab_cpus_read_unlock
+ffffffc008a56128 r __ksymtab_crypto_aead_decrypt
+ffffffc008a56134 r __ksymtab_crypto_aead_encrypt
+ffffffc008a56140 r __ksymtab_crypto_aead_setauthsize
+ffffffc008a5614c r __ksymtab_crypto_aead_setkey
+ffffffc008a56158 r __ksymtab_crypto_aes_set_key
+ffffffc008a56164 r __ksymtab_crypto_ahash_digest
+ffffffc008a56170 r __ksymtab_crypto_ahash_final
+ffffffc008a5617c r __ksymtab_crypto_ahash_finup
+ffffffc008a56188 r __ksymtab_crypto_ahash_setkey
+ffffffc008a56194 r __ksymtab_crypto_alg_extsize
+ffffffc008a561a0 r __ksymtab_crypto_alg_list
+ffffffc008a561ac r __ksymtab_crypto_alg_mod_lookup
+ffffffc008a561b8 r __ksymtab_crypto_alg_sem
+ffffffc008a561c4 r __ksymtab_crypto_alg_tested
+ffffffc008a561d0 r __ksymtab_crypto_alloc_acomp
+ffffffc008a561dc r __ksymtab_crypto_alloc_acomp_node
+ffffffc008a561e8 r __ksymtab_crypto_alloc_aead
+ffffffc008a561f4 r __ksymtab_crypto_alloc_ahash
+ffffffc008a56200 r __ksymtab_crypto_alloc_akcipher
+ffffffc008a5620c r __ksymtab_crypto_alloc_base
+ffffffc008a56218 r __ksymtab_crypto_alloc_kpp
+ffffffc008a56224 r __ksymtab_crypto_alloc_rng
+ffffffc008a56230 r __ksymtab_crypto_alloc_shash
+ffffffc008a5623c r __ksymtab_crypto_alloc_skcipher
+ffffffc008a56248 r __ksymtab_crypto_alloc_sync_skcipher
+ffffffc008a56254 r __ksymtab_crypto_alloc_tfm_node
+ffffffc008a56260 r __ksymtab_crypto_attr_alg_name
+ffffffc008a5626c r __ksymtab_crypto_authenc_extractkeys
+ffffffc008a56278 r __ksymtab_crypto_chain
+ffffffc008a56284 r __ksymtab_crypto_check_attr_type
+ffffffc008a56290 r __ksymtab_crypto_cipher_decrypt_one
+ffffffc008a5629c r __ksymtab_crypto_cipher_encrypt_one
+ffffffc008a562a8 r __ksymtab_crypto_cipher_setkey
+ffffffc008a562b4 r __ksymtab_crypto_comp_compress
+ffffffc008a562c0 r __ksymtab_crypto_comp_decompress
+ffffffc008a562cc r __ksymtab_crypto_create_tfm_node
+ffffffc008a562d8 r __ksymtab_crypto_default_rng
+ffffffc008a562e4 r __ksymtab_crypto_del_default_rng
+ffffffc008a562f0 r __ksymtab_crypto_dequeue_request
+ffffffc008a562fc r __ksymtab_crypto_destroy_tfm
+ffffffc008a56308 r __ksymtab_crypto_drop_spawn
+ffffffc008a56314 r __ksymtab_crypto_enqueue_request
+ffffffc008a56320 r __ksymtab_crypto_enqueue_request_head
+ffffffc008a5632c r __ksymtab_crypto_find_alg
+ffffffc008a56338 r __ksymtab_crypto_ft_tab
+ffffffc008a56344 r __ksymtab_crypto_get_attr_type
+ffffffc008a56350 r __ksymtab_crypto_get_default_null_skcipher
+ffffffc008a5635c r __ksymtab_crypto_get_default_rng
+ffffffc008a56368 r __ksymtab_crypto_grab_aead
+ffffffc008a56374 r __ksymtab_crypto_grab_ahash
+ffffffc008a56380 r __ksymtab_crypto_grab_akcipher
+ffffffc008a5638c r __ksymtab_crypto_grab_kpp
+ffffffc008a56398 r __ksymtab_crypto_grab_shash
+ffffffc008a563a4 r __ksymtab_crypto_grab_skcipher
+ffffffc008a563b0 r __ksymtab_crypto_grab_spawn
+ffffffc008a563bc r __ksymtab_crypto_has_ahash
+ffffffc008a563c8 r __ksymtab_crypto_has_alg
+ffffffc008a563d4 r __ksymtab_crypto_has_kpp
+ffffffc008a563e0 r __ksymtab_crypto_has_shash
+ffffffc008a563ec r __ksymtab_crypto_has_skcipher
+ffffffc008a563f8 r __ksymtab_crypto_hash_alg_has_setkey
+ffffffc008a56404 r __ksymtab_crypto_hash_walk_done
+ffffffc008a56410 r __ksymtab_crypto_hash_walk_first
+ffffffc008a5641c r __ksymtab_crypto_inc
+ffffffc008a56428 r __ksymtab_crypto_init_queue
+ffffffc008a56434 r __ksymtab_crypto_inst_setname
+ffffffc008a56440 r __ksymtab_crypto_it_tab
+ffffffc008a5644c r __ksymtab_crypto_larval_alloc
+ffffffc008a56458 r __ksymtab_crypto_larval_kill
+ffffffc008a56464 r __ksymtab_crypto_lookup_template
+ffffffc008a56470 r __ksymtab_crypto_mod_get
+ffffffc008a5647c r __ksymtab_crypto_mod_put
+ffffffc008a56488 r __ksymtab_crypto_probing_notify
+ffffffc008a56494 r __ksymtab_crypto_put_default_null_skcipher
+ffffffc008a564a0 r __ksymtab_crypto_put_default_rng
+ffffffc008a564ac r __ksymtab_crypto_register_acomp
+ffffffc008a564b8 r __ksymtab_crypto_register_acomps
+ffffffc008a564c4 r __ksymtab_crypto_register_aead
+ffffffc008a564d0 r __ksymtab_crypto_register_aeads
+ffffffc008a564dc r __ksymtab_crypto_register_ahash
+ffffffc008a564e8 r __ksymtab_crypto_register_ahashes
+ffffffc008a564f4 r __ksymtab_crypto_register_akcipher
+ffffffc008a56500 r __ksymtab_crypto_register_alg
+ffffffc008a5650c r __ksymtab_crypto_register_algs
+ffffffc008a56518 r __ksymtab_crypto_register_instance
+ffffffc008a56524 r __ksymtab_crypto_register_kpp
+ffffffc008a56530 r __ksymtab_crypto_register_notifier
+ffffffc008a5653c r __ksymtab_crypto_register_rng
+ffffffc008a56548 r __ksymtab_crypto_register_rngs
+ffffffc008a56554 r __ksymtab_crypto_register_scomp
+ffffffc008a56560 r __ksymtab_crypto_register_scomps
+ffffffc008a5656c r __ksymtab_crypto_register_shash
+ffffffc008a56578 r __ksymtab_crypto_register_shashes
+ffffffc008a56584 r __ksymtab_crypto_register_skcipher
+ffffffc008a56590 r __ksymtab_crypto_register_skciphers
+ffffffc008a5659c r __ksymtab_crypto_register_template
+ffffffc008a565a8 r __ksymtab_crypto_register_templates
+ffffffc008a565b4 r __ksymtab_crypto_remove_final
+ffffffc008a565c0 r __ksymtab_crypto_remove_spawns
+ffffffc008a565cc r __ksymtab_crypto_req_done
+ffffffc008a565d8 r __ksymtab_crypto_rng_reset
+ffffffc008a565e4 r __ksymtab_crypto_shash_alg_has_setkey
+ffffffc008a565f0 r __ksymtab_crypto_shash_digest
+ffffffc008a565fc r __ksymtab_crypto_shash_final
+ffffffc008a56608 r __ksymtab_crypto_shash_finup
+ffffffc008a56614 r __ksymtab_crypto_shash_setkey
+ffffffc008a56620 r __ksymtab_crypto_shash_tfm_digest
+ffffffc008a5662c r __ksymtab_crypto_shash_update
+ffffffc008a56638 r __ksymtab_crypto_shoot_alg
+ffffffc008a56644 r __ksymtab_crypto_skcipher_decrypt
+ffffffc008a56650 r __ksymtab_crypto_skcipher_encrypt
+ffffffc008a5665c r __ksymtab_crypto_skcipher_setkey
+ffffffc008a56668 r __ksymtab_crypto_spawn_tfm
+ffffffc008a56674 r __ksymtab_crypto_spawn_tfm2
+ffffffc008a56680 r __ksymtab_crypto_type_has_alg
+ffffffc008a5668c r __ksymtab_crypto_unregister_acomp
+ffffffc008a56698 r __ksymtab_crypto_unregister_acomps
+ffffffc008a566a4 r __ksymtab_crypto_unregister_aead
+ffffffc008a566b0 r __ksymtab_crypto_unregister_aeads
+ffffffc008a566bc r __ksymtab_crypto_unregister_ahash
+ffffffc008a566c8 r __ksymtab_crypto_unregister_ahashes
+ffffffc008a566d4 r __ksymtab_crypto_unregister_akcipher
+ffffffc008a566e0 r __ksymtab_crypto_unregister_alg
+ffffffc008a566ec r __ksymtab_crypto_unregister_algs
+ffffffc008a566f8 r __ksymtab_crypto_unregister_instance
+ffffffc008a56704 r __ksymtab_crypto_unregister_kpp
+ffffffc008a56710 r __ksymtab_crypto_unregister_notifier
+ffffffc008a5671c r __ksymtab_crypto_unregister_rng
+ffffffc008a56728 r __ksymtab_crypto_unregister_rngs
+ffffffc008a56734 r __ksymtab_crypto_unregister_scomp
+ffffffc008a56740 r __ksymtab_crypto_unregister_scomps
+ffffffc008a5674c r __ksymtab_crypto_unregister_shash
+ffffffc008a56758 r __ksymtab_crypto_unregister_shashes
+ffffffc008a56764 r __ksymtab_crypto_unregister_skcipher
+ffffffc008a56770 r __ksymtab_crypto_unregister_skciphers
+ffffffc008a5677c r __ksymtab_crypto_unregister_template
+ffffffc008a56788 r __ksymtab_crypto_unregister_templates
+ffffffc008a56794 r __ksymtab_crypto_wait_for_test
+ffffffc008a567a0 r __ksymtab_ct_idle_enter
+ffffffc008a567ac r __ksymtab_ct_idle_exit
+ffffffc008a567b8 r __ksymtab_current_is_async
+ffffffc008a567c4 r __ksymtab_d_same_name
+ffffffc008a567d0 r __ksymtab_deactivate_task
+ffffffc008a567dc r __ksymtab_debug_locks
+ffffffc008a567e8 r __ksymtab_debug_locks_off
+ffffffc008a567f4 r __ksymtab_debug_locks_silent
+ffffffc008a56800 r __ksymtab_debugfs_attr_read
+ffffffc008a5680c r __ksymtab_debugfs_attr_write
+ffffffc008a56818 r __ksymtab_debugfs_attr_write_signed
+ffffffc008a56824 r __ksymtab_debugfs_create_atomic_t
+ffffffc008a56830 r __ksymtab_debugfs_create_blob
+ffffffc008a5683c r __ksymtab_debugfs_create_bool
+ffffffc008a56848 r __ksymtab_debugfs_create_devm_seqfile
+ffffffc008a56854 r __ksymtab_debugfs_create_dir
+ffffffc008a56860 r __ksymtab_debugfs_create_file
+ffffffc008a5686c r __ksymtab_debugfs_create_file_size
+ffffffc008a56878 r __ksymtab_debugfs_create_file_unsafe
+ffffffc008a56884 r __ksymtab_debugfs_create_regset32
+ffffffc008a56890 r __ksymtab_debugfs_create_size_t
+ffffffc008a5689c r __ksymtab_debugfs_create_symlink
+ffffffc008a568a8 r __ksymtab_debugfs_create_u16
+ffffffc008a568b4 r __ksymtab_debugfs_create_u32
+ffffffc008a568c0 r __ksymtab_debugfs_create_u32_array
+ffffffc008a568cc r __ksymtab_debugfs_create_u64
+ffffffc008a568d8 r __ksymtab_debugfs_create_u8
+ffffffc008a568e4 r __ksymtab_debugfs_create_ulong
+ffffffc008a568f0 r __ksymtab_debugfs_create_x16
+ffffffc008a568fc r __ksymtab_debugfs_create_x32
+ffffffc008a56908 r __ksymtab_debugfs_create_x64
+ffffffc008a56914 r __ksymtab_debugfs_create_x8
+ffffffc008a56920 r __ksymtab_debugfs_file_get
+ffffffc008a5692c r __ksymtab_debugfs_file_put
+ffffffc008a56938 r __ksymtab_debugfs_initialized
+ffffffc008a56944 r __ksymtab_debugfs_lookup
+ffffffc008a56950 r __ksymtab_debugfs_lookup_and_remove
+ffffffc008a5695c r __ksymtab_debugfs_print_regs32
+ffffffc008a56968 r __ksymtab_debugfs_read_file_bool
+ffffffc008a56974 r __ksymtab_debugfs_real_fops
+ffffffc008a56980 r __ksymtab_debugfs_remove
+ffffffc008a5698c r __ksymtab_debugfs_rename
+ffffffc008a56998 r __ksymtab_debugfs_write_file_bool
+ffffffc008a569a4 r __ksymtab_decode_rs8
+ffffffc008a569b0 r __ksymtab_dequeue_signal
+ffffffc008a569bc r __ksymtab_des3_ede_decrypt
+ffffffc008a569c8 r __ksymtab_des3_ede_encrypt
+ffffffc008a569d4 r __ksymtab_des3_ede_expand_key
+ffffffc008a569e0 r __ksymtab_des_decrypt
+ffffffc008a569ec r __ksymtab_des_encrypt
+ffffffc008a569f8 r __ksymtab_des_expand_key
+ffffffc008a56a04 r __ksymtab_destroy_workqueue
+ffffffc008a56a10 r __ksymtab_dev_err_probe
+ffffffc008a56a1c r __ksymtab_dev_fetch_sw_netstats
+ffffffc008a56a28 r __ksymtab_dev_fill_forward_path
+ffffffc008a56a34 r __ksymtab_dev_fill_metadata_dst
+ffffffc008a56a40 r __ksymtab_dev_forward_skb
+ffffffc008a56a4c r __ksymtab_dev_fwnode
+ffffffc008a56a58 r __ksymtab_dev_get_regmap
+ffffffc008a56a64 r __ksymtab_dev_get_tstats64
+ffffffc008a56a70 r __ksymtab_dev_nit_active
+ffffffc008a56a7c r __ksymtab_dev_pm_clear_wake_irq
+ffffffc008a56a88 r __ksymtab_dev_pm_disable_wake_irq
+ffffffc008a56a94 r __ksymtab_dev_pm_domain_attach
+ffffffc008a56aa0 r __ksymtab_dev_pm_domain_attach_by_id
+ffffffc008a56aac r __ksymtab_dev_pm_domain_attach_by_name
+ffffffc008a56ab8 r __ksymtab_dev_pm_domain_detach
+ffffffc008a56ac4 r __ksymtab_dev_pm_domain_set
+ffffffc008a56ad0 r __ksymtab_dev_pm_domain_start
+ffffffc008a56adc r __ksymtab_dev_pm_enable_wake_irq
+ffffffc008a56ae8 r __ksymtab_dev_pm_get_subsys_data
+ffffffc008a56af4 r __ksymtab_dev_pm_put_subsys_data
+ffffffc008a56b00 r __ksymtab_dev_pm_qos_add_ancestor_request
+ffffffc008a56b0c r __ksymtab_dev_pm_qos_add_notifier
+ffffffc008a56b18 r __ksymtab_dev_pm_qos_add_request
+ffffffc008a56b24 r __ksymtab_dev_pm_qos_expose_flags
+ffffffc008a56b30 r __ksymtab_dev_pm_qos_expose_latency_limit
+ffffffc008a56b3c r __ksymtab_dev_pm_qos_expose_latency_tolerance
+ffffffc008a56b48 r __ksymtab_dev_pm_qos_flags
+ffffffc008a56b54 r __ksymtab_dev_pm_qos_hide_flags
+ffffffc008a56b60 r __ksymtab_dev_pm_qos_hide_latency_limit
+ffffffc008a56b6c r __ksymtab_dev_pm_qos_hide_latency_tolerance
+ffffffc008a56b78 r __ksymtab_dev_pm_qos_read_value
+ffffffc008a56b84 r __ksymtab_dev_pm_qos_remove_notifier
+ffffffc008a56b90 r __ksymtab_dev_pm_qos_remove_request
+ffffffc008a56b9c r __ksymtab_dev_pm_qos_update_request
+ffffffc008a56ba8 r __ksymtab_dev_pm_qos_update_user_latency_tolerance
+ffffffc008a56bb4 r __ksymtab_dev_pm_set_dedicated_wake_irq
+ffffffc008a56bc0 r __ksymtab_dev_pm_set_dedicated_wake_irq_reverse
+ffffffc008a56bcc r __ksymtab_dev_pm_set_wake_irq
+ffffffc008a56bd8 r __ksymtab_dev_queue_xmit_nit
+ffffffc008a56be4 r __ksymtab_dev_set_name
+ffffffc008a56bf0 r __ksymtab_dev_xdp_prog_count
+ffffffc008a56bfc r __ksymtab_device_add
+ffffffc008a56c08 r __ksymtab_device_add_groups
+ffffffc008a56c14 r __ksymtab_device_add_software_node
+ffffffc008a56c20 r __ksymtab_device_attach
+ffffffc008a56c2c r __ksymtab_device_bind_driver
+ffffffc008a56c38 r __ksymtab_device_change_owner
+ffffffc008a56c44 r __ksymtab_device_create
+ffffffc008a56c50 r __ksymtab_device_create_bin_file
+ffffffc008a56c5c r __ksymtab_device_create_file
+ffffffc008a56c68 r __ksymtab_device_create_managed_software_node
+ffffffc008a56c74 r __ksymtab_device_create_with_groups
+ffffffc008a56c80 r __ksymtab_device_del
+ffffffc008a56c8c r __ksymtab_device_destroy
+ffffffc008a56c98 r __ksymtab_device_dma_supported
+ffffffc008a56ca4 r __ksymtab_device_driver_attach
+ffffffc008a56cb0 r __ksymtab_device_find_any_child
+ffffffc008a56cbc r __ksymtab_device_find_child
+ffffffc008a56cc8 r __ksymtab_device_find_child_by_name
+ffffffc008a56cd4 r __ksymtab_device_for_each_child
+ffffffc008a56ce0 r __ksymtab_device_for_each_child_reverse
+ffffffc008a56cec r __ksymtab_device_get_child_node_count
+ffffffc008a56cf8 r __ksymtab_device_get_dma_attr
+ffffffc008a56d04 r __ksymtab_device_get_match_data
+ffffffc008a56d10 r __ksymtab_device_get_named_child_node
+ffffffc008a56d1c r __ksymtab_device_get_next_child_node
+ffffffc008a56d28 r __ksymtab_device_get_phy_mode
+ffffffc008a56d34 r __ksymtab_device_initialize
+ffffffc008a56d40 r __ksymtab_device_iommu_capable
+ffffffc008a56d4c r __ksymtab_device_link_add
+ffffffc008a56d58 r __ksymtab_device_link_del
+ffffffc008a56d64 r __ksymtab_device_link_remove
+ffffffc008a56d70 r __ksymtab_device_match_any
+ffffffc008a56d7c r __ksymtab_device_match_devt
+ffffffc008a56d88 r __ksymtab_device_match_fwnode
+ffffffc008a56d94 r __ksymtab_device_match_name
+ffffffc008a56da0 r __ksymtab_device_match_of_node
+ffffffc008a56dac r __ksymtab_device_move
+ffffffc008a56db8 r __ksymtab_device_node_to_regmap
+ffffffc008a56dc4 r __ksymtab_device_pm_wait_for_dev
+ffffffc008a56dd0 r __ksymtab_device_property_match_string
+ffffffc008a56ddc r __ksymtab_device_property_present
+ffffffc008a56de8 r __ksymtab_device_property_read_string
+ffffffc008a56df4 r __ksymtab_device_property_read_string_array
+ffffffc008a56e00 r __ksymtab_device_property_read_u16_array
+ffffffc008a56e0c r __ksymtab_device_property_read_u32_array
+ffffffc008a56e18 r __ksymtab_device_property_read_u64_array
+ffffffc008a56e24 r __ksymtab_device_property_read_u8_array
+ffffffc008a56e30 r __ksymtab_device_register
+ffffffc008a56e3c r __ksymtab_device_release_driver
+ffffffc008a56e48 r __ksymtab_device_remove_bin_file
+ffffffc008a56e54 r __ksymtab_device_remove_file
+ffffffc008a56e60 r __ksymtab_device_remove_file_self
+ffffffc008a56e6c r __ksymtab_device_remove_groups
+ffffffc008a56e78 r __ksymtab_device_remove_software_node
+ffffffc008a56e84 r __ksymtab_device_rename
+ffffffc008a56e90 r __ksymtab_device_reprobe
+ffffffc008a56e9c r __ksymtab_device_set_node
+ffffffc008a56ea8 r __ksymtab_device_set_of_node_from_dev
+ffffffc008a56eb4 r __ksymtab_device_set_wakeup_capable
+ffffffc008a56ec0 r __ksymtab_device_set_wakeup_enable
+ffffffc008a56ecc r __ksymtab_device_show_bool
+ffffffc008a56ed8 r __ksymtab_device_show_int
+ffffffc008a56ee4 r __ksymtab_device_show_ulong
+ffffffc008a56ef0 r __ksymtab_device_store_bool
+ffffffc008a56efc r __ksymtab_device_store_int
+ffffffc008a56f08 r __ksymtab_device_store_ulong
+ffffffc008a56f14 r __ksymtab_device_unregister
+ffffffc008a56f20 r __ksymtab_device_wakeup_disable
+ffffffc008a56f2c r __ksymtab_device_wakeup_enable
+ffffffc008a56f38 r __ksymtab_devm_add_action
+ffffffc008a56f44 r __ksymtab_devm_bitmap_alloc
+ffffffc008a56f50 r __ksymtab_devm_bitmap_zalloc
+ffffffc008a56f5c r __ksymtab_devm_blk_crypto_profile_init
+ffffffc008a56f68 r __ksymtab_devm_clk_bulk_get
+ffffffc008a56f74 r __ksymtab_devm_clk_bulk_get_all
+ffffffc008a56f80 r __ksymtab_devm_clk_bulk_get_optional
+ffffffc008a56f8c r __ksymtab_devm_clk_get_enabled
+ffffffc008a56f98 r __ksymtab_devm_clk_get_optional_enabled
+ffffffc008a56fa4 r __ksymtab_devm_clk_get_optional_prepared
+ffffffc008a56fb0 r __ksymtab_devm_clk_get_prepared
+ffffffc008a56fbc r __ksymtab_devm_clk_hw_get_clk
+ffffffc008a56fc8 r __ksymtab_devm_clk_hw_register
+ffffffc008a56fd4 r __ksymtab_devm_clk_hw_register_fixed_factor
+ffffffc008a56fe0 r __ksymtab_devm_clk_hw_register_fixed_factor_index
+ffffffc008a56fec r __ksymtab_devm_clk_hw_register_fixed_factor_parent_hw
+ffffffc008a56ff8 r __ksymtab_devm_clk_notifier_register
+ffffffc008a57004 r __ksymtab_devm_clk_register
+ffffffc008a57010 r __ksymtab_devm_device_add_group
+ffffffc008a5701c r __ksymtab_devm_device_add_groups
+ffffffc008a57028 r __ksymtab_devm_device_remove_group
+ffffffc008a57034 r __ksymtab_devm_device_remove_groups
+ffffffc008a57040 r __ksymtab_devm_free_pages
+ffffffc008a5704c r __ksymtab_devm_free_percpu
+ffffffc008a57058 r __ksymtab_devm_get_free_pages
+ffffffc008a57064 r __ksymtab_devm_hwrng_register
+ffffffc008a57070 r __ksymtab_devm_hwrng_unregister
+ffffffc008a5707c r __ksymtab_devm_hwspin_lock_free
+ffffffc008a57088 r __ksymtab_devm_hwspin_lock_register
+ffffffc008a57094 r __ksymtab_devm_hwspin_lock_request
+ffffffc008a570a0 r __ksymtab_devm_hwspin_lock_request_specific
+ffffffc008a570ac r __ksymtab_devm_hwspin_lock_unregister
+ffffffc008a570b8 r __ksymtab_devm_init_badblocks
+ffffffc008a570c4 r __ksymtab_devm_ioremap_uc
+ffffffc008a570d0 r __ksymtab_devm_kasprintf
+ffffffc008a570dc r __ksymtab_devm_kasprintf_strarray
+ffffffc008a570e8 r __ksymtab_devm_kfree
+ffffffc008a570f4 r __ksymtab_devm_kmalloc
+ffffffc008a57100 r __ksymtab_devm_kmemdup
+ffffffc008a5710c r __ksymtab_devm_krealloc
+ffffffc008a57118 r __ksymtab_devm_kstrdup
+ffffffc008a57124 r __ksymtab_devm_kstrdup_const
+ffffffc008a57130 r __ksymtab_devm_of_clk_add_hw_provider
+ffffffc008a5713c r __ksymtab_devm_of_platform_depopulate
+ffffffc008a57148 r __ksymtab_devm_of_platform_populate
+ffffffc008a57154 r __ksymtab_devm_pci_epc_destroy
+ffffffc008a57160 r __ksymtab_devm_platform_get_and_ioremap_resource
+ffffffc008a5716c r __ksymtab_devm_platform_get_irqs_affinity
+ffffffc008a57178 r __ksymtab_devm_platform_ioremap_resource
+ffffffc008a57184 r __ksymtab_devm_platform_ioremap_resource_byname
+ffffffc008a57190 r __ksymtab_devm_pm_clk_create
+ffffffc008a5719c r __ksymtab_devm_pm_runtime_enable
+ffffffc008a571a8 r __ksymtab_devm_power_supply_get_by_phandle
+ffffffc008a571b4 r __ksymtab_devm_power_supply_register
+ffffffc008a571c0 r __ksymtab_devm_power_supply_register_no_ws
+ffffffc008a571cc r __ksymtab_devm_register_power_off_handler
+ffffffc008a571d8 r __ksymtab_devm_register_restart_handler
+ffffffc008a571e4 r __ksymtab_devm_register_sys_off_handler
+ffffffc008a571f0 r __ksymtab_devm_regmap_field_alloc
+ffffffc008a571fc r __ksymtab_devm_regmap_field_bulk_alloc
+ffffffc008a57208 r __ksymtab_devm_regmap_field_bulk_free
+ffffffc008a57214 r __ksymtab_devm_regmap_field_free
+ffffffc008a57220 r __ksymtab_devm_release_action
+ffffffc008a5722c r __ksymtab_devm_remove_action
+ffffffc008a57238 r __ksymtab_devm_request_pci_bus_resources
+ffffffc008a57244 r __ksymtab_devm_rtc_allocate_device
+ffffffc008a57250 r __ksymtab_devm_rtc_device_register
+ffffffc008a5725c r __ksymtab_devm_watchdog_register_device
+ffffffc008a57268 r __ksymtab_devres_add
+ffffffc008a57274 r __ksymtab_devres_close_group
+ffffffc008a57280 r __ksymtab_devres_destroy
+ffffffc008a5728c r __ksymtab_devres_find
+ffffffc008a57298 r __ksymtab_devres_for_each_res
+ffffffc008a572a4 r __ksymtab_devres_free
+ffffffc008a572b0 r __ksymtab_devres_get
+ffffffc008a572bc r __ksymtab_devres_open_group
+ffffffc008a572c8 r __ksymtab_devres_release
+ffffffc008a572d4 r __ksymtab_devres_release_group
+ffffffc008a572e0 r __ksymtab_devres_remove
+ffffffc008a572ec r __ksymtab_devres_remove_group
+ffffffc008a572f8 r __ksymtab_dirty_writeback_interval
+ffffffc008a57304 r __ksymtab_disable_hardirq
+ffffffc008a57310 r __ksymtab_disable_percpu_irq
+ffffffc008a5731c r __ksymtab_disk_alloc_independent_access_ranges
+ffffffc008a57328 r __ksymtab_disk_force_media_change
+ffffffc008a57334 r __ksymtab_disk_set_independent_access_ranges
+ffffffc008a57340 r __ksymtab_disk_set_zoned
+ffffffc008a5734c r __ksymtab_disk_uevent
+ffffffc008a57358 r __ksymtab_disk_update_readahead
+ffffffc008a57364 r __ksymtab_divider_determine_rate
+ffffffc008a57370 r __ksymtab_divider_get_val
+ffffffc008a5737c r __ksymtab_divider_recalc_rate
+ffffffc008a57388 r __ksymtab_divider_ro_determine_rate
+ffffffc008a57394 r __ksymtab_divider_ro_round_rate_parent
+ffffffc008a573a0 r __ksymtab_divider_round_rate_parent
+ffffffc008a573ac r __ksymtab_dm_accept_partial_bio
+ffffffc008a573b8 r __ksymtab_dm_bio_from_per_bio_data
+ffffffc008a573c4 r __ksymtab_dm_bio_get_target_bio_nr
+ffffffc008a573d0 r __ksymtab_dm_bufio_client_create
+ffffffc008a573dc r __ksymtab_dm_bufio_client_destroy
+ffffffc008a573e8 r __ksymtab_dm_bufio_forget
+ffffffc008a573f4 r __ksymtab_dm_bufio_forget_buffers
+ffffffc008a57400 r __ksymtab_dm_bufio_get
+ffffffc008a5740c r __ksymtab_dm_bufio_get_aux_data
+ffffffc008a57418 r __ksymtab_dm_bufio_get_block_data
+ffffffc008a57424 r __ksymtab_dm_bufio_get_block_number
+ffffffc008a57430 r __ksymtab_dm_bufio_get_block_size
+ffffffc008a5743c r __ksymtab_dm_bufio_get_client
+ffffffc008a57448 r __ksymtab_dm_bufio_get_device_size
+ffffffc008a57454 r __ksymtab_dm_bufio_get_dm_io_client
+ffffffc008a57460 r __ksymtab_dm_bufio_issue_discard
+ffffffc008a5746c r __ksymtab_dm_bufio_issue_flush
+ffffffc008a57478 r __ksymtab_dm_bufio_mark_buffer_dirty
+ffffffc008a57484 r __ksymtab_dm_bufio_mark_partial_buffer_dirty
+ffffffc008a57490 r __ksymtab_dm_bufio_new
+ffffffc008a5749c r __ksymtab_dm_bufio_prefetch
+ffffffc008a574a8 r __ksymtab_dm_bufio_read
+ffffffc008a574b4 r __ksymtab_dm_bufio_release
+ffffffc008a574c0 r __ksymtab_dm_bufio_release_move
+ffffffc008a574cc r __ksymtab_dm_bufio_set_minimum_buffers
+ffffffc008a574d8 r __ksymtab_dm_bufio_set_sector_offset
+ffffffc008a574e4 r __ksymtab_dm_bufio_write_dirty_buffers
+ffffffc008a574f0 r __ksymtab_dm_bufio_write_dirty_buffers_async
+ffffffc008a574fc r __ksymtab_dm_copy_name_and_uuid
+ffffffc008a57508 r __ksymtab_dm_device_name
+ffffffc008a57514 r __ksymtab_dm_disk
+ffffffc008a57520 r __ksymtab_dm_get_dev_t
+ffffffc008a5752c r __ksymtab_dm_get_md
+ffffffc008a57538 r __ksymtab_dm_get_queue_limits
+ffffffc008a57544 r __ksymtab_dm_get_reserved_bio_based_ios
+ffffffc008a57550 r __ksymtab_dm_hold
+ffffffc008a5755c r __ksymtab_dm_internal_resume
+ffffffc008a57568 r __ksymtab_dm_internal_resume_fast
+ffffffc008a57574 r __ksymtab_dm_internal_suspend_fast
+ffffffc008a57580 r __ksymtab_dm_internal_suspend_noflush
+ffffffc008a5758c r __ksymtab_dm_noflush_suspending
+ffffffc008a57598 r __ksymtab_dm_path_uevent
+ffffffc008a575a4 r __ksymtab_dm_per_bio_data
+ffffffc008a575b0 r __ksymtab_dm_post_suspending
+ffffffc008a575bc r __ksymtab_dm_put
+ffffffc008a575c8 r __ksymtab_dm_report_zones
+ffffffc008a575d4 r __ksymtab_dm_send_uevents
+ffffffc008a575e0 r __ksymtab_dm_set_target_max_io_len
+ffffffc008a575ec r __ksymtab_dm_start_time_ns_from_clone
+ffffffc008a575f8 r __ksymtab_dm_submit_bio_remap
+ffffffc008a57604 r __ksymtab_dm_suspended
+ffffffc008a57610 r __ksymtab_dm_table_device_name
+ffffffc008a5761c r __ksymtab_dm_table_set_type
+ffffffc008a57628 r __ksymtab_dma_alloc_noncontiguous
+ffffffc008a57634 r __ksymtab_dma_alloc_pages
+ffffffc008a57640 r __ksymtab_dma_buf_attach
+ffffffc008a5764c r __ksymtab_dma_buf_begin_cpu_access
+ffffffc008a57658 r __ksymtab_dma_buf_begin_cpu_access_partial
+ffffffc008a57664 r __ksymtab_dma_buf_detach
+ffffffc008a57670 r __ksymtab_dma_buf_dynamic_attach
+ffffffc008a5767c r __ksymtab_dma_buf_end_cpu_access
+ffffffc008a57688 r __ksymtab_dma_buf_end_cpu_access_partial
+ffffffc008a57694 r __ksymtab_dma_buf_export
+ffffffc008a576a0 r __ksymtab_dma_buf_fd
+ffffffc008a576ac r __ksymtab_dma_buf_get
+ffffffc008a576b8 r __ksymtab_dma_buf_get_each
+ffffffc008a576c4 r __ksymtab_dma_buf_get_flags
+ffffffc008a576d0 r __ksymtab_dma_buf_map_attachment
+ffffffc008a576dc r __ksymtab_dma_buf_mmap
+ffffffc008a576e8 r __ksymtab_dma_buf_move_notify
+ffffffc008a576f4 r __ksymtab_dma_buf_pin
+ffffffc008a57700 r __ksymtab_dma_buf_put
+ffffffc008a5770c r __ksymtab_dma_buf_unmap_attachment
+ffffffc008a57718 r __ksymtab_dma_buf_unpin
+ffffffc008a57724 r __ksymtab_dma_buf_vmap
+ffffffc008a57730 r __ksymtab_dma_buf_vunmap
+ffffffc008a5773c r __ksymtab_dma_can_mmap
+ffffffc008a57748 r __ksymtab_dma_fence_unwrap_first
+ffffffc008a57754 r __ksymtab_dma_fence_unwrap_next
+ffffffc008a57760 r __ksymtab_dma_free_noncontiguous
+ffffffc008a5776c r __ksymtab_dma_free_pages
+ffffffc008a57778 r __ksymtab_dma_get_merge_boundary
+ffffffc008a57784 r __ksymtab_dma_get_required_mask
+ffffffc008a57790 r __ksymtab_dma_heap_add
+ffffffc008a5779c r __ksymtab_dma_heap_buffer_alloc
+ffffffc008a577a8 r __ksymtab_dma_heap_buffer_free
+ffffffc008a577b4 r __ksymtab_dma_heap_bufferfd_alloc
+ffffffc008a577c0 r __ksymtab_dma_heap_find
+ffffffc008a577cc r __ksymtab_dma_heap_get_dev
+ffffffc008a577d8 r __ksymtab_dma_heap_get_drvdata
+ffffffc008a577e4 r __ksymtab_dma_heap_get_name
+ffffffc008a577f0 r __ksymtab_dma_heap_put
+ffffffc008a577fc r __ksymtab_dma_map_sgtable
+ffffffc008a57808 r __ksymtab_dma_max_mapping_size
+ffffffc008a57814 r __ksymtab_dma_mmap_noncontiguous
+ffffffc008a57820 r __ksymtab_dma_mmap_pages
+ffffffc008a5782c r __ksymtab_dma_need_sync
+ffffffc008a57838 r __ksymtab_dma_opt_mapping_size
+ffffffc008a57844 r __ksymtab_dma_pci_p2pdma_supported
+ffffffc008a57850 r __ksymtab_dma_resv_describe
+ffffffc008a5785c r __ksymtab_dma_resv_get_fences
+ffffffc008a57868 r __ksymtab_dma_resv_get_singleton
+ffffffc008a57874 r __ksymtab_dma_resv_iter_first
+ffffffc008a57880 r __ksymtab_dma_resv_iter_next
+ffffffc008a5788c r __ksymtab_dma_resv_test_signaled
+ffffffc008a57898 r __ksymtab_dma_resv_wait_timeout
+ffffffc008a578a4 r __ksymtab_dma_vmap_noncontiguous
+ffffffc008a578b0 r __ksymtab_dma_vunmap_noncontiguous
+ffffffc008a578bc r __ksymtab_do_take_over_console
+ffffffc008a578c8 r __ksymtab_do_tcp_sendpages
+ffffffc008a578d4 r __ksymtab_do_trace_rcu_torture_read
+ffffffc008a578e0 r __ksymtab_do_unregister_con_driver
+ffffffc008a578ec r __ksymtab_do_xdp_generic
+ffffffc008a578f8 r __ksymtab_double_rq_lock
+ffffffc008a57904 r __ksymtab_dpm_for_each_dev
+ffffffc008a57910 r __ksymtab_dpm_resume_end
+ffffffc008a5791c r __ksymtab_dpm_resume_start
+ffffffc008a57928 r __ksymtab_dpm_suspend_end
+ffffffc008a57934 r __ksymtab_dpm_suspend_start
+ffffffc008a57940 r __ksymtab_drain_workqueue
+ffffffc008a5794c r __ksymtab_driver_attach
+ffffffc008a57958 r __ksymtab_driver_create_file
+ffffffc008a57964 r __ksymtab_driver_deferred_probe_check_state
+ffffffc008a57970 r __ksymtab_driver_deferred_probe_timeout
+ffffffc008a5797c r __ksymtab_driver_find
+ffffffc008a57988 r __ksymtab_driver_find_device
+ffffffc008a57994 r __ksymtab_driver_for_each_device
+ffffffc008a579a0 r __ksymtab_driver_register
+ffffffc008a579ac r __ksymtab_driver_remove_file
+ffffffc008a579b8 r __ksymtab_driver_set_override
+ffffffc008a579c4 r __ksymtab_driver_unregister
+ffffffc008a579d0 r __ksymtab_dst_blackhole_mtu
+ffffffc008a579dc r __ksymtab_dst_blackhole_redirect
+ffffffc008a579e8 r __ksymtab_dst_blackhole_update_pmtu
+ffffffc008a579f4 r __ksymtab_dst_cache_destroy
+ffffffc008a57a00 r __ksymtab_dst_cache_get
+ffffffc008a57a0c r __ksymtab_dst_cache_get_ip4
+ffffffc008a57a18 r __ksymtab_dst_cache_get_ip6
+ffffffc008a57a24 r __ksymtab_dst_cache_init
+ffffffc008a57a30 r __ksymtab_dst_cache_reset_now
+ffffffc008a57a3c r __ksymtab_dst_cache_set_ip4
+ffffffc008a57a48 r __ksymtab_dst_cache_set_ip6
+ffffffc008a57a54 r __ksymtab_dummy_con
+ffffffc008a57a60 r __ksymtab_dummy_irq_chip
+ffffffc008a57a6c r __ksymtab_dump_backtrace
+ffffffc008a57a78 r __ksymtab_dw_handle_msi_irq
+ffffffc008a57a84 r __ksymtab_dw_pcie_ep_init
+ffffffc008a57a90 r __ksymtab_dw_pcie_ep_init_complete
+ffffffc008a57a9c r __ksymtab_dw_pcie_ep_init_notify
+ffffffc008a57aa8 r __ksymtab_dw_pcie_ep_linkup
+ffffffc008a57ab4 r __ksymtab_dw_pcie_ep_raise_legacy_irq
+ffffffc008a57ac0 r __ksymtab_dw_pcie_ep_raise_msi_irq
+ffffffc008a57acc r __ksymtab_dw_pcie_ep_reset_bar
+ffffffc008a57ad8 r __ksymtab_dw_pcie_find_capability
+ffffffc008a57ae4 r __ksymtab_dw_pcie_find_ext_capability
+ffffffc008a57af0 r __ksymtab_dw_pcie_host_deinit
+ffffffc008a57afc r __ksymtab_dw_pcie_host_init
+ffffffc008a57b08 r __ksymtab_dw_pcie_link_up
+ffffffc008a57b14 r __ksymtab_dw_pcie_own_conf_map_bus
+ffffffc008a57b20 r __ksymtab_dw_pcie_read
+ffffffc008a57b2c r __ksymtab_dw_pcie_read_dbi
+ffffffc008a57b38 r __ksymtab_dw_pcie_setup_rc
+ffffffc008a57b44 r __ksymtab_dw_pcie_upconfig_setup
+ffffffc008a57b50 r __ksymtab_dw_pcie_wait_for_link
+ffffffc008a57b5c r __ksymtab_dw_pcie_write
+ffffffc008a57b68 r __ksymtab_dw_pcie_write_dbi
+ffffffc008a57b74 r __ksymtab_dynevent_create
+ffffffc008a57b80 r __ksymtab_edac_device_add_device
+ffffffc008a57b8c r __ksymtab_edac_device_alloc_ctl_info
+ffffffc008a57b98 r __ksymtab_edac_device_alloc_index
+ffffffc008a57ba4 r __ksymtab_edac_device_del_device
+ffffffc008a57bb0 r __ksymtab_edac_device_free_ctl_info
+ffffffc008a57bbc r __ksymtab_edac_device_handle_ce_count
+ffffffc008a57bc8 r __ksymtab_edac_device_handle_ue_count
+ffffffc008a57bd4 r __ksymtab_edac_get_owner
+ffffffc008a57be0 r __ksymtab_edac_get_sysfs_subsys
+ffffffc008a57bec r __ksymtab_edac_has_mcs
+ffffffc008a57bf8 r __ksymtab_edac_layer_name
+ffffffc008a57c04 r __ksymtab_edac_mc_add_mc_with_groups
+ffffffc008a57c10 r __ksymtab_edac_mc_alloc
+ffffffc008a57c1c r __ksymtab_edac_mc_del_mc
+ffffffc008a57c28 r __ksymtab_edac_mc_find_csrow_by_page
+ffffffc008a57c34 r __ksymtab_edac_mc_free
+ffffffc008a57c40 r __ksymtab_edac_mc_handle_error
+ffffffc008a57c4c r __ksymtab_edac_mem_types
+ffffffc008a57c58 r __ksymtab_edac_mod_work
+ffffffc008a57c64 r __ksymtab_edac_op_state
+ffffffc008a57c70 r __ksymtab_edac_pci_add_device
+ffffffc008a57c7c r __ksymtab_edac_pci_alloc_ctl_info
+ffffffc008a57c88 r __ksymtab_edac_pci_alloc_index
+ffffffc008a57c94 r __ksymtab_edac_pci_create_generic_ctl
+ffffffc008a57ca0 r __ksymtab_edac_pci_del_device
+ffffffc008a57cac r __ksymtab_edac_pci_free_ctl_info
+ffffffc008a57cb8 r __ksymtab_edac_pci_handle_npe
+ffffffc008a57cc4 r __ksymtab_edac_pci_handle_pe
+ffffffc008a57cd0 r __ksymtab_edac_pci_release_generic_ctl
+ffffffc008a57cdc r __ksymtab_edac_queue_work
+ffffffc008a57ce8 r __ksymtab_edac_raw_mc_handle_error
+ffffffc008a57cf4 r __ksymtab_edac_stop_work
+ffffffc008a57d00 r __ksymtab_elv_register
+ffffffc008a57d0c r __ksymtab_elv_rqhash_add
+ffffffc008a57d18 r __ksymtab_elv_rqhash_del
+ffffffc008a57d24 r __ksymtab_elv_unregister
+ffffffc008a57d30 r __ksymtab_emergency_restart
+ffffffc008a57d3c r __ksymtab_enable_percpu_irq
+ffffffc008a57d48 r __ksymtab_errno_to_blk_status
+ffffffc008a57d54 r __ksymtab_esp6_input_done2
+ffffffc008a57d60 r __ksymtab_esp6_output_head
+ffffffc008a57d6c r __ksymtab_esp6_output_tail
+ffffffc008a57d78 r __ksymtab_esp_input_done2
+ffffffc008a57d84 r __ksymtab_esp_output_head
+ffffffc008a57d90 r __ksymtab_esp_output_tail
+ffffffc008a57d9c r __ksymtab_ethnl_cable_test_alloc
+ffffffc008a57da8 r __ksymtab_ethnl_cable_test_amplitude
+ffffffc008a57db4 r __ksymtab_ethnl_cable_test_fault_length
+ffffffc008a57dc0 r __ksymtab_ethnl_cable_test_finished
+ffffffc008a57dcc r __ksymtab_ethnl_cable_test_free
+ffffffc008a57dd8 r __ksymtab_ethnl_cable_test_pulse
+ffffffc008a57de4 r __ksymtab_ethnl_cable_test_result
+ffffffc008a57df0 r __ksymtab_ethnl_cable_test_step
+ffffffc008a57dfc r __ksymtab_ethtool_params_from_link_mode
+ffffffc008a57e08 r __ksymtab_ethtool_set_ethtool_phy_ops
+ffffffc008a57e14 r __ksymtab_event_triggers_call
+ffffffc008a57e20 r __ksymtab_event_triggers_post_call
+ffffffc008a57e2c r __ksymtab_eventfd_ctx_do_read
+ffffffc008a57e38 r __ksymtab_eventfd_ctx_fdget
+ffffffc008a57e44 r __ksymtab_eventfd_ctx_fileget
+ffffffc008a57e50 r __ksymtab_eventfd_ctx_put
+ffffffc008a57e5c r __ksymtab_eventfd_ctx_remove_wait_queue
+ffffffc008a57e68 r __ksymtab_eventfd_fget
+ffffffc008a57e74 r __ksymtab_eventfd_signal
+ffffffc008a57e80 r __ksymtab_evict_inodes
+ffffffc008a57e8c r __ksymtab_execute_in_process_context
+ffffffc008a57e98 r __ksymtab_exportfs_decode_fh
+ffffffc008a57ea4 r __ksymtab_exportfs_decode_fh_raw
+ffffffc008a57eb0 r __ksymtab_exportfs_encode_fh
+ffffffc008a57ebc r __ksymtab_exportfs_encode_inode_fh
+ffffffc008a57ec8 r __ksymtab_fanout_mutex
+ffffffc008a57ed4 r __ksymtab_fib4_rule_default
+ffffffc008a57ee0 r __ksymtab_fib6_check_nexthop
+ffffffc008a57eec r __ksymtab_fib6_get_table
+ffffffc008a57ef8 r __ksymtab_fib6_info_destroy_rcu
+ffffffc008a57f04 r __ksymtab_fib6_new_table
+ffffffc008a57f10 r __ksymtab_fib6_rule_default
+ffffffc008a57f1c r __ksymtab_fib_add_nexthop
+ffffffc008a57f28 r __ksymtab_fib_alias_hw_flags_set
+ffffffc008a57f34 r __ksymtab_fib_info_nh_uses_dev
+ffffffc008a57f40 r __ksymtab_fib_new_table
+ffffffc008a57f4c r __ksymtab_fib_nexthop_info
+ffffffc008a57f58 r __ksymtab_fib_nh_common_init
+ffffffc008a57f64 r __ksymtab_fib_nh_common_release
+ffffffc008a57f70 r __ksymtab_fib_nl_delrule
+ffffffc008a57f7c r __ksymtab_fib_nl_newrule
+ffffffc008a57f88 r __ksymtab_fib_rule_matchall
+ffffffc008a57f94 r __ksymtab_fib_rules_dump
+ffffffc008a57fa0 r __ksymtab_fib_rules_lookup
+ffffffc008a57fac r __ksymtab_fib_rules_register
+ffffffc008a57fb8 r __ksymtab_fib_rules_seq_read
+ffffffc008a57fc4 r __ksymtab_fib_rules_unregister
+ffffffc008a57fd0 r __ksymtab_fib_table_lookup
+ffffffc008a57fdc r __ksymtab_file_ra_state_init
+ffffffc008a57fe8 r __ksymtab_filemap_add_folio
+ffffffc008a57ff4 r __ksymtab_filemap_migrate_folio
+ffffffc008a58000 r __ksymtab_filemap_range_has_writeback
+ffffffc008a5800c r __ksymtab_filemap_read
+ffffffc008a58018 r __ksymtab_filp_open_block
+ffffffc008a58024 r __ksymtab_filter_irq_stacks
+ffffffc008a58030 r __ksymtab_filter_match_preds
+ffffffc008a5803c r __ksymtab_find_extend_vma
+ffffffc008a58048 r __ksymtab_find_ge_pid
+ffffffc008a58054 r __ksymtab_find_get_pid
+ffffffc008a58060 r __ksymtab_find_iova
+ffffffc008a5806c r __ksymtab_find_mci_by_dev
+ffffffc008a58078 r __ksymtab_find_pid_ns
+ffffffc008a58084 r __ksymtab_find_task_by_vpid
+ffffffc008a58090 r __ksymtab_find_user
+ffffffc008a5809c r __ksymtab_find_vpid
+ffffffc008a580a8 r __ksymtab_finish_rcuwait
+ffffffc008a580b4 r __ksymtab_firmware_kobj
+ffffffc008a580c0 r __ksymtab_firmware_request_builtin
+ffffffc008a580cc r __ksymtab_firmware_request_cache
+ffffffc008a580d8 r __ksymtab_firmware_request_nowarn
+ffffffc008a580e4 r __ksymtab_firmware_request_platform
+ffffffc008a580f0 r __ksymtab_fixup_user_fault
+ffffffc008a580fc r __ksymtab_fl6_merge_options
+ffffffc008a58108 r __ksymtab_fl6_update_dst
+ffffffc008a58114 r __ksymtab_flush_delayed_fput
+ffffffc008a58120 r __ksymtab_flush_work
+ffffffc008a5812c r __ksymtab_folio_add_wait_queue
+ffffffc008a58138 r __ksymtab_folio_invalidate
+ffffffc008a58144 r __ksymtab_folio_mkclean
+ffffffc008a58150 r __ksymtab_folio_wait_stable
+ffffffc008a5815c r __ksymtab_folio_wait_writeback
+ffffffc008a58168 r __ksymtab_folio_wait_writeback_killable
+ffffffc008a58174 r __ksymtab_follow_pte
+ffffffc008a58180 r __ksymtab_for_each_kernel_tracepoint
+ffffffc008a5818c r __ksymtab_free_fib_info
+ffffffc008a58198 r __ksymtab_free_iova
+ffffffc008a581a4 r __ksymtab_free_iova_fast
+ffffffc008a581b0 r __ksymtab_free_percpu
+ffffffc008a581bc r __ksymtab_free_percpu_irq
+ffffffc008a581c8 r __ksymtab_free_rs
+ffffffc008a581d4 r __ksymtab_free_uid
+ffffffc008a581e0 r __ksymtab_free_vm_area
+ffffffc008a581ec r __ksymtab_freq_qos_add_notifier
+ffffffc008a581f8 r __ksymtab_freq_qos_add_request
+ffffffc008a58204 r __ksymtab_freq_qos_remove_notifier
+ffffffc008a58210 r __ksymtab_freq_qos_remove_request
+ffffffc008a5821c r __ksymtab_freq_qos_update_request
+ffffffc008a58228 r __ksymtab_fs_ftype_to_dtype
+ffffffc008a58234 r __ksymtab_fs_kobj
+ffffffc008a58240 r __ksymtab_fs_umode_to_dtype
+ffffffc008a5824c r __ksymtab_fs_umode_to_ftype
+ffffffc008a58258 r __ksymtab_fsl8250_handle_irq
+ffffffc008a58264 r __ksymtab_fsl_mc_device_group
+ffffffc008a58270 r __ksymtab_fsnotify
+ffffffc008a5827c r __ksymtab_fsnotify_add_mark
+ffffffc008a58288 r __ksymtab_fsnotify_alloc_group
+ffffffc008a58294 r __ksymtab_fsnotify_destroy_mark
+ffffffc008a582a0 r __ksymtab_fsnotify_find_mark
+ffffffc008a582ac r __ksymtab_fsnotify_get_cookie
+ffffffc008a582b8 r __ksymtab_fsnotify_init_mark
+ffffffc008a582c4 r __ksymtab_fsnotify_put_group
+ffffffc008a582d0 r __ksymtab_fsnotify_put_mark
+ffffffc008a582dc r __ksymtab_fsnotify_wait_marks_destroyed
+ffffffc008a582e8 r __ksymtab_fsstack_copy_attr_all
+ffffffc008a582f4 r __ksymtab_fsstack_copy_inode_size
+ffffffc008a58300 r __ksymtab_ftrace_dump
+ffffffc008a5830c r __ksymtab_fuse_abort_conn
+ffffffc008a58318 r __ksymtab_fuse_conn_destroy
+ffffffc008a58324 r __ksymtab_fuse_conn_get
+ffffffc008a58330 r __ksymtab_fuse_conn_init
+ffffffc008a5833c r __ksymtab_fuse_conn_put
+ffffffc008a58348 r __ksymtab_fuse_dev_alloc
+ffffffc008a58354 r __ksymtab_fuse_dev_alloc_install
+ffffffc008a58360 r __ksymtab_fuse_dev_fiq_ops
+ffffffc008a5836c r __ksymtab_fuse_dev_free
+ffffffc008a58378 r __ksymtab_fuse_dev_install
+ffffffc008a58384 r __ksymtab_fuse_dev_operations
+ffffffc008a58390 r __ksymtab_fuse_dev_release
+ffffffc008a5839c r __ksymtab_fuse_direct_io
+ffffffc008a583a8 r __ksymtab_fuse_do_ioctl
+ffffffc008a583b4 r __ksymtab_fuse_do_open
+ffffffc008a583c0 r __ksymtab_fuse_file_poll
+ffffffc008a583cc r __ksymtab_fuse_fill_super_common
+ffffffc008a583d8 r __ksymtab_fuse_free_conn
+ffffffc008a583e4 r __ksymtab_fuse_get_unique
+ffffffc008a583f0 r __ksymtab_fuse_init_fs_context_submount
+ffffffc008a583fc r __ksymtab_fuse_len_args
+ffffffc008a58408 r __ksymtab_fuse_mount_remove
+ffffffc008a58414 r __ksymtab_fuse_request_end
+ffffffc008a58420 r __ksymtab_fuse_send_init
+ffffffc008a5842c r __ksymtab_fuse_simple_background
+ffffffc008a58438 r __ksymtab_fuse_sync_release
+ffffffc008a58444 r __ksymtab_fw_devlink_purge_absent_suppliers
+ffffffc008a58450 r __ksymtab_fw_fallback_config
+ffffffc008a5845c r __ksymtab_fwnode_connection_find_match
+ffffffc008a58468 r __ksymtab_fwnode_connection_find_matches
+ffffffc008a58474 r __ksymtab_fwnode_count_parents
+ffffffc008a58480 r __ksymtab_fwnode_create_software_node
+ffffffc008a5848c r __ksymtab_fwnode_device_is_available
+ffffffc008a58498 r __ksymtab_fwnode_find_reference
+ffffffc008a584a4 r __ksymtab_fwnode_get_name
+ffffffc008a584b0 r __ksymtab_fwnode_get_named_child_node
+ffffffc008a584bc r __ksymtab_fwnode_get_next_available_child_node
+ffffffc008a584c8 r __ksymtab_fwnode_get_next_child_node
+ffffffc008a584d4 r __ksymtab_fwnode_get_next_parent
+ffffffc008a584e0 r __ksymtab_fwnode_get_nth_parent
+ffffffc008a584ec r __ksymtab_fwnode_get_parent
+ffffffc008a584f8 r __ksymtab_fwnode_get_phy_mode
+ffffffc008a58504 r __ksymtab_fwnode_graph_get_endpoint_by_id
+ffffffc008a58510 r __ksymtab_fwnode_graph_get_endpoint_count
+ffffffc008a5851c r __ksymtab_fwnode_graph_get_next_endpoint
+ffffffc008a58528 r __ksymtab_fwnode_graph_get_port_parent
+ffffffc008a58534 r __ksymtab_fwnode_graph_get_remote_endpoint
+ffffffc008a58540 r __ksymtab_fwnode_graph_get_remote_port
+ffffffc008a5854c r __ksymtab_fwnode_graph_get_remote_port_parent
+ffffffc008a58558 r __ksymtab_fwnode_handle_get
+ffffffc008a58564 r __ksymtab_fwnode_handle_put
+ffffffc008a58570 r __ksymtab_fwnode_property_get_reference_args
+ffffffc008a5857c r __ksymtab_fwnode_property_match_string
+ffffffc008a58588 r __ksymtab_fwnode_property_present
+ffffffc008a58594 r __ksymtab_fwnode_property_read_string
+ffffffc008a585a0 r __ksymtab_fwnode_property_read_string_array
+ffffffc008a585ac r __ksymtab_fwnode_property_read_u16_array
+ffffffc008a585b8 r __ksymtab_fwnode_property_read_u32_array
+ffffffc008a585c4 r __ksymtab_fwnode_property_read_u64_array
+ffffffc008a585d0 r __ksymtab_fwnode_property_read_u8_array
+ffffffc008a585dc r __ksymtab_fwnode_remove_software_node
+ffffffc008a585e8 r __ksymtab_gcd
+ffffffc008a585f4 r __ksymtab_gen_pool_avail
+ffffffc008a58600 r __ksymtab_gen_pool_get
+ffffffc008a5860c r __ksymtab_gen_pool_size
+ffffffc008a58618 r __ksymtab_generic_access_phys
+ffffffc008a58624 r __ksymtab_generic_device_group
+ffffffc008a58630 r __ksymtab_generic_fh_to_dentry
+ffffffc008a5863c r __ksymtab_generic_fh_to_parent
+ffffffc008a58648 r __ksymtab_generic_handle_domain_irq
+ffffffc008a58654 r __ksymtab_generic_handle_domain_irq_safe
+ffffffc008a58660 r __ksymtab_generic_handle_irq
+ffffffc008a5866c r __ksymtab_generic_handle_irq_safe
+ffffffc008a58678 r __ksymtab_generic_online_page
+ffffffc008a58684 r __ksymtab_get_cached_msi_msg
+ffffffc008a58690 r __ksymtab_get_completed_synchronize_rcu
+ffffffc008a5869c r __ksymtab_get_completed_synchronize_rcu_full
+ffffffc008a586a8 r __ksymtab_get_cpu_device
+ffffffc008a586b4 r __ksymtab_get_cpu_idle_time_us
+ffffffc008a586c0 r __ksymtab_get_cpu_iowait_time_us
+ffffffc008a586cc r __ksymtab_get_current_tty
+ffffffc008a586d8 r __ksymtab_get_device
+ffffffc008a586e4 r __ksymtab_get_device_system_crosststamp
+ffffffc008a586f0 r __ksymtab_get_each_object_track
+ffffffc008a586fc r __ksymtab_get_itimerspec64
+ffffffc008a58708 r __ksymtab_get_kernel_pages
+ffffffc008a58714 r __ksymtab_get_max_files
+ffffffc008a58720 r __ksymtab_get_net_ns_by_id
+ffffffc008a5872c r __ksymtab_get_net_ns_by_pid
+ffffffc008a58738 r __ksymtab_get_old_itimerspec32
+ffffffc008a58744 r __ksymtab_get_old_timespec32
+ffffffc008a58750 r __ksymtab_get_page_owner_handle
+ffffffc008a5875c r __ksymtab_get_pfnblock_flags_mask
+ffffffc008a58768 r __ksymtab_get_pid_task
+ffffffc008a58774 r __ksymtab_get_slabinfo
+ffffffc008a58780 r __ksymtab_get_state_synchronize_rcu
+ffffffc008a5878c r __ksymtab_get_state_synchronize_rcu_full
+ffffffc008a58798 r __ksymtab_get_state_synchronize_srcu
+ffffffc008a587a4 r __ksymtab_get_task_mm
+ffffffc008a587b0 r __ksymtab_get_task_pid
+ffffffc008a587bc r __ksymtab_get_timespec64
+ffffffc008a587c8 r __ksymtab_get_user_pages_fast
+ffffffc008a587d4 r __ksymtab_get_user_pages_fast_only
+ffffffc008a587e0 r __ksymtab_get_wchan
+ffffffc008a587ec r __ksymtab_getboottime64
+ffffffc008a587f8 r __ksymtab_gic_v3_cpu_init
+ffffffc008a58804 r __ksymtab_gic_v3_dist_init
+ffffffc008a58810 r __ksymtab_gic_v3_dist_wait_for_rwp
+ffffffc008a5881c r __ksymtab_gic_v3_resume
+ffffffc008a58828 r __ksymtab_gre_add_protocol
+ffffffc008a58834 r __ksymtab_gre_del_protocol
+ffffffc008a58840 r __ksymtab_gretap_fb_dev_create
+ffffffc008a5884c r __ksymtab_guid_gen
+ffffffc008a58858 r __ksymtab_handle_bad_irq
+ffffffc008a58864 r __ksymtab_handle_fasteoi_irq
+ffffffc008a58870 r __ksymtab_handle_fasteoi_nmi
+ffffffc008a5887c r __ksymtab_handle_level_irq
+ffffffc008a58888 r __ksymtab_handle_mm_fault
+ffffffc008a58894 r __ksymtab_handle_nested_irq
+ffffffc008a588a0 r __ksymtab_handle_simple_irq
+ffffffc008a588ac r __ksymtab_handle_untracked_irq
+ffffffc008a588b8 r __ksymtab_housekeeping_affine
+ffffffc008a588c4 r __ksymtab_housekeeping_any_cpu
+ffffffc008a588d0 r __ksymtab_housekeeping_cpumask
+ffffffc008a588dc r __ksymtab_housekeeping_enabled
+ffffffc008a588e8 r __ksymtab_housekeeping_overridden
+ffffffc008a588f4 r __ksymtab_housekeeping_test_cpu
+ffffffc008a58900 r __ksymtab_hrtimer_active
+ffffffc008a5890c r __ksymtab_hrtimer_cancel
+ffffffc008a58918 r __ksymtab_hrtimer_forward
+ffffffc008a58924 r __ksymtab_hrtimer_init
+ffffffc008a58930 r __ksymtab_hrtimer_init_sleeper
+ffffffc008a5893c r __ksymtab_hrtimer_resolution
+ffffffc008a58948 r __ksymtab_hrtimer_sleeper_start_expires
+ffffffc008a58954 r __ksymtab_hrtimer_start_range_ns
+ffffffc008a58960 r __ksymtab_hrtimer_try_to_cancel
+ffffffc008a5896c r __ksymtab_hvc_alloc
+ffffffc008a58978 r __ksymtab_hvc_instantiate
+ffffffc008a58984 r __ksymtab_hvc_kick
+ffffffc008a58990 r __ksymtab_hvc_poll
+ffffffc008a5899c r __ksymtab_hvc_remove
+ffffffc008a589a8 r __ksymtab_hw_protection_shutdown
+ffffffc008a589b4 r __ksymtab_hwrng_msleep
+ffffffc008a589c0 r __ksymtab_hwrng_register
+ffffffc008a589cc r __ksymtab_hwrng_unregister
+ffffffc008a589d8 r __ksymtab_hwspin_lock_free
+ffffffc008a589e4 r __ksymtab_hwspin_lock_get_id
+ffffffc008a589f0 r __ksymtab_hwspin_lock_register
+ffffffc008a589fc r __ksymtab_hwspin_lock_request
+ffffffc008a58a08 r __ksymtab_hwspin_lock_request_specific
+ffffffc008a58a14 r __ksymtab_hwspin_lock_unregister
+ffffffc008a58a20 r __ksymtab_icmp_build_probe
+ffffffc008a58a2c r __ksymtab_idr_alloc
+ffffffc008a58a38 r __ksymtab_idr_alloc_u32
+ffffffc008a58a44 r __ksymtab_idr_find
+ffffffc008a58a50 r __ksymtab_idr_remove
+ffffffc008a58a5c r __ksymtab_inet6_cleanup_sock
+ffffffc008a58a68 r __ksymtab_inet6_csk_addr2sockaddr
+ffffffc008a58a74 r __ksymtab_inet6_csk_update_pmtu
+ffffffc008a58a80 r __ksymtab_inet6_csk_xmit
+ffffffc008a58a8c r __ksymtab_inet6_destroy_sock
+ffffffc008a58a98 r __ksymtab_inet6_hash
+ffffffc008a58aa4 r __ksymtab_inet6_hash_connect
+ffffffc008a58ab0 r __ksymtab_inet6_lookup
+ffffffc008a58abc r __ksymtab_inet6_lookup_listener
+ffffffc008a58ac8 r __ksymtab_inet6_sk_rebuild_header
+ffffffc008a58ad4 r __ksymtab_inet6_sock_destruct
+ffffffc008a58ae0 r __ksymtab_inet_bhash2_reset_saddr
+ffffffc008a58aec r __ksymtab_inet_bhash2_update_saddr
+ffffffc008a58af8 r __ksymtab_inet_csk_addr2sockaddr
+ffffffc008a58b04 r __ksymtab_inet_csk_clone_lock
+ffffffc008a58b10 r __ksymtab_inet_csk_get_port
+ffffffc008a58b1c r __ksymtab_inet_csk_listen_start
+ffffffc008a58b28 r __ksymtab_inet_csk_listen_stop
+ffffffc008a58b34 r __ksymtab_inet_csk_reqsk_queue_hash_add
+ffffffc008a58b40 r __ksymtab_inet_csk_route_child_sock
+ffffffc008a58b4c r __ksymtab_inet_csk_route_req
+ffffffc008a58b58 r __ksymtab_inet_csk_update_pmtu
+ffffffc008a58b64 r __ksymtab_inet_ctl_sock_create
+ffffffc008a58b70 r __ksymtab_inet_diag_bc_sk
+ffffffc008a58b7c r __ksymtab_inet_diag_dump_icsk
+ffffffc008a58b88 r __ksymtab_inet_diag_dump_one_icsk
+ffffffc008a58b94 r __ksymtab_inet_diag_find_one_icsk
+ffffffc008a58ba0 r __ksymtab_inet_diag_msg_attrs_fill
+ffffffc008a58bac r __ksymtab_inet_diag_msg_common_fill
+ffffffc008a58bb8 r __ksymtab_inet_diag_register
+ffffffc008a58bc4 r __ksymtab_inet_diag_unregister
+ffffffc008a58bd0 r __ksymtab_inet_ehash_locks_alloc
+ffffffc008a58bdc r __ksymtab_inet_ehash_nolisten
+ffffffc008a58be8 r __ksymtab_inet_getpeer
+ffffffc008a58bf4 r __ksymtab_inet_hash
+ffffffc008a58c00 r __ksymtab_inet_hash_connect
+ffffffc008a58c0c r __ksymtab_inet_hashinfo2_init_mod
+ffffffc008a58c18 r __ksymtab_inet_peer_base_init
+ffffffc008a58c24 r __ksymtab_inet_pernet_hashinfo_alloc
+ffffffc008a58c30 r __ksymtab_inet_pernet_hashinfo_free
+ffffffc008a58c3c r __ksymtab_inet_putpeer
+ffffffc008a58c48 r __ksymtab_inet_send_prepare
+ffffffc008a58c54 r __ksymtab_inet_sk_diag_fill
+ffffffc008a58c60 r __ksymtab_inet_twsk_alloc
+ffffffc008a58c6c r __ksymtab_inet_twsk_hashdance
+ffffffc008a58c78 r __ksymtab_inet_twsk_purge
+ffffffc008a58c84 r __ksymtab_inet_twsk_put
+ffffffc008a58c90 r __ksymtab_inet_unhash
+ffffffc008a58c9c r __ksymtab_init_dummy_netdev
+ffffffc008a58ca8 r __ksymtab_init_iova_domain
+ffffffc008a58cb4 r __ksymtab_init_pid_ns
+ffffffc008a58cc0 r __ksymtab_init_rs_gfp
+ffffffc008a58ccc r __ksymtab_init_rs_non_canonical
+ffffffc008a58cd8 r __ksymtab_init_srcu_struct
+ffffffc008a58ce4 r __ksymtab_init_user_ns
+ffffffc008a58cf0 r __ksymtab_init_uts_ns
+ffffffc008a58cfc r __ksymtab_inode_sb_list_add
+ffffffc008a58d08 r __ksymtab_input_class
+ffffffc008a58d14 r __ksymtab_input_device_enabled
+ffffffc008a58d20 r __ksymtab_input_event_from_user
+ffffffc008a58d2c r __ksymtab_input_event_to_user
+ffffffc008a58d38 r __ksymtab_input_ff_create
+ffffffc008a58d44 r __ksymtab_input_ff_destroy
+ffffffc008a58d50 r __ksymtab_input_ff_effect_from_user
+ffffffc008a58d5c r __ksymtab_input_ff_erase
+ffffffc008a58d68 r __ksymtab_input_ff_event
+ffffffc008a58d74 r __ksymtab_input_ff_flush
+ffffffc008a58d80 r __ksymtab_input_ff_upload
+ffffffc008a58d8c r __ksymtab_insert_resource
+ffffffc008a58d98 r __ksymtab_insert_resource_expand_to_fit
+ffffffc008a58da4 r __ksymtab_int_pow
+ffffffc008a58db0 r __ksymtab_invalidate_bh_lrus
+ffffffc008a58dbc r __ksymtab_invalidate_inode_pages2
+ffffffc008a58dc8 r __ksymtab_invalidate_inode_pages2_range
+ffffffc008a58dd4 r __ksymtab_inverse_translate
+ffffffc008a58de0 r __ksymtab_io_uring_cmd_complete_in_task
+ffffffc008a58dec r __ksymtab_io_uring_cmd_done
+ffffffc008a58df8 r __ksymtab_io_uring_cmd_import_fixed
+ffffffc008a58e04 r __ksymtab_ioc_find_get_icq
+ffffffc008a58e10 r __ksymtab_iocb_bio_iopoll
+ffffffc008a58e1c r __ksymtab_iomap_bmap
+ffffffc008a58e28 r __ksymtab_iomap_dio_bio_end_io
+ffffffc008a58e34 r __ksymtab_iomap_dio_complete
+ffffffc008a58e40 r __ksymtab_iomap_dio_rw
+ffffffc008a58e4c r __ksymtab_iomap_fiemap
+ffffffc008a58e58 r __ksymtab_iomap_file_buffered_write
+ffffffc008a58e64 r __ksymtab_iomap_file_unshare
+ffffffc008a58e70 r __ksymtab_iomap_finish_ioends
+ffffffc008a58e7c r __ksymtab_iomap_invalidate_folio
+ffffffc008a58e88 r __ksymtab_iomap_ioend_try_merge
+ffffffc008a58e94 r __ksymtab_iomap_is_partially_uptodate
+ffffffc008a58ea0 r __ksymtab_iomap_page_mkwrite
+ffffffc008a58eac r __ksymtab_iomap_read_folio
+ffffffc008a58eb8 r __ksymtab_iomap_readahead
+ffffffc008a58ec4 r __ksymtab_iomap_release_folio
+ffffffc008a58ed0 r __ksymtab_iomap_seek_data
+ffffffc008a58edc r __ksymtab_iomap_seek_hole
+ffffffc008a58ee8 r __ksymtab_iomap_sort_ioends
+ffffffc008a58ef4 r __ksymtab_iomap_swapfile_activate
+ffffffc008a58f00 r __ksymtab_iomap_truncate_page
+ffffffc008a58f0c r __ksymtab_iomap_writepages
+ffffffc008a58f18 r __ksymtab_iomap_zero_range
+ffffffc008a58f24 r __ksymtab_iommu_alloc_resv_region
+ffffffc008a58f30 r __ksymtab_iommu_attach_device
+ffffffc008a58f3c r __ksymtab_iommu_attach_device_pasid
+ffffffc008a58f48 r __ksymtab_iommu_attach_group
+ffffffc008a58f54 r __ksymtab_iommu_default_passthrough
+ffffffc008a58f60 r __ksymtab_iommu_detach_device
+ffffffc008a58f6c r __ksymtab_iommu_detach_device_pasid
+ffffffc008a58f78 r __ksymtab_iommu_detach_group
+ffffffc008a58f84 r __ksymtab_iommu_dev_disable_feature
+ffffffc008a58f90 r __ksymtab_iommu_dev_enable_feature
+ffffffc008a58f9c r __ksymtab_iommu_device_link
+ffffffc008a58fa8 r __ksymtab_iommu_device_register
+ffffffc008a58fb4 r __ksymtab_iommu_device_sysfs_add
+ffffffc008a58fc0 r __ksymtab_iommu_device_sysfs_remove
+ffffffc008a58fcc r __ksymtab_iommu_device_unlink
+ffffffc008a58fd8 r __ksymtab_iommu_device_unregister
+ffffffc008a58fe4 r __ksymtab_iommu_domain_alloc
+ffffffc008a58ff0 r __ksymtab_iommu_domain_free
+ffffffc008a58ffc r __ksymtab_iommu_enable_nesting
+ffffffc008a59008 r __ksymtab_iommu_fwspec_add_ids
+ffffffc008a59014 r __ksymtab_iommu_fwspec_free
+ffffffc008a59020 r __ksymtab_iommu_fwspec_init
+ffffffc008a5902c r __ksymtab_iommu_get_domain_for_dev
+ffffffc008a59038 r __ksymtab_iommu_get_domain_for_dev_pasid
+ffffffc008a59044 r __ksymtab_iommu_get_group_resv_regions
+ffffffc008a59050 r __ksymtab_iommu_group_add_device
+ffffffc008a5905c r __ksymtab_iommu_group_alloc
+ffffffc008a59068 r __ksymtab_iommu_group_claim_dma_owner
+ffffffc008a59074 r __ksymtab_iommu_group_dma_owner_claimed
+ffffffc008a59080 r __ksymtab_iommu_group_for_each_dev
+ffffffc008a5908c r __ksymtab_iommu_group_get
+ffffffc008a59098 r __ksymtab_iommu_group_get_by_id
+ffffffc008a590a4 r __ksymtab_iommu_group_get_iommudata
+ffffffc008a590b0 r __ksymtab_iommu_group_id
+ffffffc008a590bc r __ksymtab_iommu_group_put
+ffffffc008a590c8 r __ksymtab_iommu_group_ref_get
+ffffffc008a590d4 r __ksymtab_iommu_group_release_dma_owner
+ffffffc008a590e0 r __ksymtab_iommu_group_remove_device
+ffffffc008a590ec r __ksymtab_iommu_group_set_iommudata
+ffffffc008a590f8 r __ksymtab_iommu_group_set_name
+ffffffc008a59104 r __ksymtab_iommu_iova_to_phys
+ffffffc008a59110 r __ksymtab_iommu_map
+ffffffc008a5911c r __ksymtab_iommu_map_atomic
+ffffffc008a59128 r __ksymtab_iommu_map_sg
+ffffffc008a59134 r __ksymtab_iommu_page_response
+ffffffc008a59140 r __ksymtab_iommu_present
+ffffffc008a5914c r __ksymtab_iommu_register_device_fault_handler
+ffffffc008a59158 r __ksymtab_iommu_report_device_fault
+ffffffc008a59164 r __ksymtab_iommu_set_fault_handler
+ffffffc008a59170 r __ksymtab_iommu_set_pgtable_quirks
+ffffffc008a5917c r __ksymtab_iommu_setup_dma_ops
+ffffffc008a59188 r __ksymtab_iommu_unmap
+ffffffc008a59194 r __ksymtab_iommu_unmap_fast
+ffffffc008a591a0 r __ksymtab_iommu_unregister_device_fault_handler
+ffffffc008a591ac r __ksymtab_iov_iter_is_aligned
+ffffffc008a591b8 r __ksymtab_iova_cache_get
+ffffffc008a591c4 r __ksymtab_iova_cache_put
+ffffffc008a591d0 r __ksymtab_iova_domain_init_rcaches
+ffffffc008a591dc r __ksymtab_ip4_datagram_release_cb
+ffffffc008a591e8 r __ksymtab_ip6_append_data
+ffffffc008a591f4 r __ksymtab_ip6_datagram_connect
+ffffffc008a59200 r __ksymtab_ip6_datagram_connect_v6_only
+ffffffc008a5920c r __ksymtab_ip6_datagram_recv_ctl
+ffffffc008a59218 r __ksymtab_ip6_datagram_release_cb
+ffffffc008a59224 r __ksymtab_ip6_datagram_send_ctl
+ffffffc008a59230 r __ksymtab_ip6_dst_lookup
+ffffffc008a5923c r __ksymtab_ip6_dst_lookup_flow
+ffffffc008a59248 r __ksymtab_ip6_dst_lookup_tunnel
+ffffffc008a59254 r __ksymtab_ip6_flush_pending_frames
+ffffffc008a59260 r __ksymtab_ip6_input
+ffffffc008a5926c r __ksymtab_ip6_local_out
+ffffffc008a59278 r __ksymtab_ip6_pol_route
+ffffffc008a59284 r __ksymtab_ip6_push_pending_frames
+ffffffc008a59290 r __ksymtab_ip6_redirect
+ffffffc008a5929c r __ksymtab_ip6_route_input_lookup
+ffffffc008a592a8 r __ksymtab_ip6_route_lookup
+ffffffc008a592b4 r __ksymtab_ip6_route_output_flags
+ffffffc008a592c0 r __ksymtab_ip6_route_output_flags_noref
+ffffffc008a592cc r __ksymtab_ip6_sk_dst_lookup_flow
+ffffffc008a592d8 r __ksymtab_ip6_sk_redirect
+ffffffc008a592e4 r __ksymtab_ip6_sk_update_pmtu
+ffffffc008a592f0 r __ksymtab_ip6_tnl_encap_setup
+ffffffc008a592fc r __ksymtab_ip6_tnl_rcv_ctl
+ffffffc008a59308 r __ksymtab_ip6_tnl_xmit_ctl
+ffffffc008a59314 r __ksymtab_ip6_update_pmtu
+ffffffc008a59320 r __ksymtab_ip_build_and_send_pkt
+ffffffc008a5932c r __ksymtab_ip_fib_metrics_init
+ffffffc008a59338 r __ksymtab_ip_icmp_error_rfc4884
+ffffffc008a59344 r __ksymtab_ip_local_out
+ffffffc008a59350 r __ksymtab_ip_md_tunnel_xmit
+ffffffc008a5935c r __ksymtab_ip_route_output_flow
+ffffffc008a59368 r __ksymtab_ip_route_output_key_hash
+ffffffc008a59374 r __ksymtab_ip_route_output_tunnel
+ffffffc008a59380 r __ksymtab_ip_tunnel_change_mtu
+ffffffc008a5938c r __ksymtab_ip_tunnel_changelink
+ffffffc008a59398 r __ksymtab_ip_tunnel_ctl
+ffffffc008a593a4 r __ksymtab_ip_tunnel_delete_nets
+ffffffc008a593b0 r __ksymtab_ip_tunnel_dellink
+ffffffc008a593bc r __ksymtab_ip_tunnel_encap_setup
+ffffffc008a593c8 r __ksymtab_ip_tunnel_init
+ffffffc008a593d4 r __ksymtab_ip_tunnel_init_net
+ffffffc008a593e0 r __ksymtab_ip_tunnel_lookup
+ffffffc008a593ec r __ksymtab_ip_tunnel_need_metadata
+ffffffc008a593f8 r __ksymtab_ip_tunnel_netlink_encap_parms
+ffffffc008a59404 r __ksymtab_ip_tunnel_netlink_parms
+ffffffc008a59410 r __ksymtab_ip_tunnel_newlink
+ffffffc008a5941c r __ksymtab_ip_tunnel_rcv
+ffffffc008a59428 r __ksymtab_ip_tunnel_setup
+ffffffc008a59434 r __ksymtab_ip_tunnel_siocdevprivate
+ffffffc008a59440 r __ksymtab_ip_tunnel_uninit
+ffffffc008a5944c r __ksymtab_ip_tunnel_unneed_metadata
+ffffffc008a59458 r __ksymtab_ip_tunnel_xmit
+ffffffc008a59464 r __ksymtab_ip_valid_fib_dump_req
+ffffffc008a59470 r __ksymtab_ipcomp_destroy
+ffffffc008a5947c r __ksymtab_ipcomp_init_state
+ffffffc008a59488 r __ksymtab_ipcomp_input
+ffffffc008a59494 r __ksymtab_ipcomp_output
+ffffffc008a594a0 r __ksymtab_ipi_desc_get
+ffffffc008a594ac r __ksymtab_ipi_get_hwirq
+ffffffc008a594b8 r __ksymtab_ipi_send_mask
+ffffffc008a594c4 r __ksymtab_ipi_send_single
+ffffffc008a594d0 r __ksymtab_iptunnel_handle_offloads
+ffffffc008a594dc r __ksymtab_iptunnel_metadata_reply
+ffffffc008a594e8 r __ksymtab_iptunnel_xmit
+ffffffc008a594f4 r __ksymtab_ipv4_redirect
+ffffffc008a59500 r __ksymtab_ipv4_sk_redirect
+ffffffc008a5950c r __ksymtab_ipv4_sk_update_pmtu
+ffffffc008a59518 r __ksymtab_ipv4_update_pmtu
+ffffffc008a59524 r __ksymtab_ipv6_bpf_stub
+ffffffc008a59530 r __ksymtab_ipv6_dup_options
+ffffffc008a5953c r __ksymtab_ipv6_find_tlv
+ffffffc008a59548 r __ksymtab_ipv6_mod_enabled
+ffffffc008a59554 r __ksymtab_ipv6_opt_accepted
+ffffffc008a59560 r __ksymtab_ipv6_proxy_select_ident
+ffffffc008a5956c r __ksymtab_ipv6_recv_error
+ffffffc008a59578 r __ksymtab_ipv6_stub
+ffffffc008a59584 r __ksymtab_irq_check_status_bit
+ffffffc008a59590 r __ksymtab_irq_chip_ack_parent
+ffffffc008a5959c r __ksymtab_irq_chip_disable_parent
+ffffffc008a595a8 r __ksymtab_irq_chip_enable_parent
+ffffffc008a595b4 r __ksymtab_irq_chip_eoi_parent
+ffffffc008a595c0 r __ksymtab_irq_chip_get_parent_state
+ffffffc008a595cc r __ksymtab_irq_chip_mask_ack_parent
+ffffffc008a595d8 r __ksymtab_irq_chip_mask_parent
+ffffffc008a595e4 r __ksymtab_irq_chip_release_resources_parent
+ffffffc008a595f0 r __ksymtab_irq_chip_request_resources_parent
+ffffffc008a595fc r __ksymtab_irq_chip_retrigger_hierarchy
+ffffffc008a59608 r __ksymtab_irq_chip_set_affinity_parent
+ffffffc008a59614 r __ksymtab_irq_chip_set_parent_state
+ffffffc008a59620 r __ksymtab_irq_chip_set_type_parent
+ffffffc008a5962c r __ksymtab_irq_chip_set_vcpu_affinity_parent
+ffffffc008a59638 r __ksymtab_irq_chip_set_wake_parent
+ffffffc008a59644 r __ksymtab_irq_chip_unmask_parent
+ffffffc008a59650 r __ksymtab_irq_create_fwspec_mapping
+ffffffc008a5965c r __ksymtab_irq_create_mapping_affinity
+ffffffc008a59668 r __ksymtab_irq_create_of_mapping
+ffffffc008a59674 r __ksymtab_irq_dispose_mapping
+ffffffc008a59680 r __ksymtab_irq_do_set_affinity
+ffffffc008a5968c r __ksymtab_irq_domain_add_legacy
+ffffffc008a59698 r __ksymtab_irq_domain_alloc_irqs_parent
+ffffffc008a596a4 r __ksymtab_irq_domain_associate
+ffffffc008a596b0 r __ksymtab_irq_domain_associate_many
+ffffffc008a596bc r __ksymtab_irq_domain_check_msi_remap
+ffffffc008a596c8 r __ksymtab_irq_domain_create_hierarchy
+ffffffc008a596d4 r __ksymtab_irq_domain_create_legacy
+ffffffc008a596e0 r __ksymtab_irq_domain_create_simple
+ffffffc008a596ec r __ksymtab_irq_domain_disconnect_hierarchy
+ffffffc008a596f8 r __ksymtab_irq_domain_free_fwnode
+ffffffc008a59704 r __ksymtab_irq_domain_free_irqs_common
+ffffffc008a59710 r __ksymtab_irq_domain_free_irqs_parent
+ffffffc008a5971c r __ksymtab_irq_domain_get_irq_data
+ffffffc008a59728 r __ksymtab_irq_domain_pop_irq
+ffffffc008a59734 r __ksymtab_irq_domain_push_irq
+ffffffc008a59740 r __ksymtab_irq_domain_remove
+ffffffc008a5974c r __ksymtab_irq_domain_reset_irq_data
+ffffffc008a59758 r __ksymtab_irq_domain_set_hwirq_and_chip
+ffffffc008a59764 r __ksymtab_irq_domain_simple_ops
+ffffffc008a59770 r __ksymtab_irq_domain_translate_onecell
+ffffffc008a5977c r __ksymtab_irq_domain_translate_twocell
+ffffffc008a59788 r __ksymtab_irq_domain_update_bus_token
+ffffffc008a59794 r __ksymtab_irq_domain_xlate_onecell
+ffffffc008a597a0 r __ksymtab_irq_domain_xlate_onetwocell
+ffffffc008a597ac r __ksymtab_irq_domain_xlate_twocell
+ffffffc008a597b8 r __ksymtab_irq_find_matching_fwspec
+ffffffc008a597c4 r __ksymtab_irq_force_affinity
+ffffffc008a597d0 r __ksymtab_irq_free_descs
+ffffffc008a597dc r __ksymtab_irq_get_default_host
+ffffffc008a597e8 r __ksymtab_irq_get_irq_data
+ffffffc008a597f4 r __ksymtab_irq_get_irqchip_state
+ffffffc008a59800 r __ksymtab_irq_get_percpu_devid_partition
+ffffffc008a5980c r __ksymtab_irq_has_action
+ffffffc008a59818 r __ksymtab_irq_modify_status
+ffffffc008a59824 r __ksymtab_irq_of_parse_and_map
+ffffffc008a59830 r __ksymtab_irq_percpu_is_enabled
+ffffffc008a5983c r __ksymtab_irq_set_affinity
+ffffffc008a59848 r __ksymtab_irq_set_affinity_notifier
+ffffffc008a59854 r __ksymtab_irq_set_chained_handler_and_data
+ffffffc008a59860 r __ksymtab_irq_set_chip_and_handler_name
+ffffffc008a5986c r __ksymtab_irq_set_default_host
+ffffffc008a59878 r __ksymtab_irq_set_irqchip_state
+ffffffc008a59884 r __ksymtab_irq_set_parent
+ffffffc008a59890 r __ksymtab_irq_set_vcpu_affinity
+ffffffc008a5989c r __ksymtab_irq_to_desc
+ffffffc008a598a8 r __ksymtab_irq_wake_thread
+ffffffc008a598b4 r __ksymtab_irq_work_queue
+ffffffc008a598c0 r __ksymtab_irq_work_queue_on
+ffffffc008a598cc r __ksymtab_irq_work_run
+ffffffc008a598d8 r __ksymtab_irq_work_sync
+ffffffc008a598e4 r __ksymtab_irqchip_fwnode_ops
+ffffffc008a598f0 r __ksymtab_is_dma_buf_file
+ffffffc008a598fc r __ksymtab_is_skb_forwardable
+ffffffc008a59908 r __ksymtab_is_software_node
+ffffffc008a59914 r __ksymtab_is_swiotlb_active
+ffffffc008a59920 r __ksymtab_is_virtio_device
+ffffffc008a5992c r __ksymtab_isolate_and_split_free_page
+ffffffc008a59938 r __ksymtab_isolate_anon_lru_page
+ffffffc008a59944 r __ksymtab_jump_label_rate_limit
+ffffffc008a59950 r __ksymtab_jump_label_update_timeout
+ffffffc008a5995c r __ksymtab_kasan_mode
+ffffffc008a59968 r __ksymtab_kasprintf_strarray
+ffffffc008a59974 r __ksymtab_kern_mount
+ffffffc008a59980 r __ksymtab_kernel_can_power_off
+ffffffc008a5998c r __ksymtab_kernel_halt
+ffffffc008a59998 r __ksymtab_kernel_kobj
+ffffffc008a599a4 r __ksymtab_kernel_power_off
+ffffffc008a599b0 r __ksymtab_kernel_read_file
+ffffffc008a599bc r __ksymtab_kernel_read_file_from_fd
+ffffffc008a599c8 r __ksymtab_kernel_read_file_from_path
+ffffffc008a599d4 r __ksymtab_kernel_read_file_from_path_initns
+ffffffc008a599e0 r __ksymtab_kernel_restart
+ffffffc008a599ec r __ksymtab_kernfs_find_and_get_ns
+ffffffc008a599f8 r __ksymtab_kernfs_get
+ffffffc008a59a04 r __ksymtab_kernfs_notify
+ffffffc008a59a10 r __ksymtab_kernfs_path_from_node
+ffffffc008a59a1c r __ksymtab_kernfs_put
+ffffffc008a59a28 r __ksymtab_kexec_crash_loaded
+ffffffc008a59a34 r __ksymtab_kfree_strarray
+ffffffc008a59a40 r __ksymtab_kick_all_cpus_sync
+ffffffc008a59a4c r __ksymtab_kick_process
+ffffffc008a59a58 r __ksymtab_kill_device
+ffffffc008a59a64 r __ksymtab_kill_pid_usb_asyncio
+ffffffc008a59a70 r __ksymtab_kiocb_modified
+ffffffc008a59a7c r __ksymtab_klist_add_before
+ffffffc008a59a88 r __ksymtab_klist_add_behind
+ffffffc008a59a94 r __ksymtab_klist_add_head
+ffffffc008a59aa0 r __ksymtab_klist_add_tail
+ffffffc008a59aac r __ksymtab_klist_del
+ffffffc008a59ab8 r __ksymtab_klist_init
+ffffffc008a59ac4 r __ksymtab_klist_iter_exit
+ffffffc008a59ad0 r __ksymtab_klist_iter_init
+ffffffc008a59adc r __ksymtab_klist_iter_init_node
+ffffffc008a59ae8 r __ksymtab_klist_next
+ffffffc008a59af4 r __ksymtab_klist_node_attached
+ffffffc008a59b00 r __ksymtab_klist_prev
+ffffffc008a59b0c r __ksymtab_klist_remove
+ffffffc008a59b18 r __ksymtab_kmem_dump_obj
+ffffffc008a59b24 r __ksymtab_kmem_valid_obj
+ffffffc008a59b30 r __ksymtab_kmsg_dump_get_buffer
+ffffffc008a59b3c r __ksymtab_kmsg_dump_get_line
+ffffffc008a59b48 r __ksymtab_kmsg_dump_reason_str
+ffffffc008a59b54 r __ksymtab_kmsg_dump_register
+ffffffc008a59b60 r __ksymtab_kmsg_dump_rewind
+ffffffc008a59b6c r __ksymtab_kmsg_dump_unregister
+ffffffc008a59b78 r __ksymtab_kobj_ns_drop
+ffffffc008a59b84 r __ksymtab_kobj_ns_grab_current
+ffffffc008a59b90 r __ksymtab_kobj_sysfs_ops
+ffffffc008a59b9c r __ksymtab_kobject_create_and_add
+ffffffc008a59ba8 r __ksymtab_kobject_get_path
+ffffffc008a59bb4 r __ksymtab_kobject_init_and_add
+ffffffc008a59bc0 r __ksymtab_kobject_move
+ffffffc008a59bcc r __ksymtab_kobject_rename
+ffffffc008a59bd8 r __ksymtab_kobject_uevent
+ffffffc008a59be4 r __ksymtab_kobject_uevent_env
+ffffffc008a59bf0 r __ksymtab_kpp_register_instance
+ffffffc008a59bfc r __ksymtab_kset_create_and_add
+ffffffc008a59c08 r __ksymtab_kset_find_obj
+ffffffc008a59c14 r __ksymtab_ksoftirqd
+ffffffc008a59c20 r __ksymtab_kstat_irqs_cpu
+ffffffc008a59c2c r __ksymtab_kstat_irqs_usr
+ffffffc008a59c38 r __ksymtab_kstrdup_quotable
+ffffffc008a59c44 r __ksymtab_kstrdup_quotable_cmdline
+ffffffc008a59c50 r __ksymtab_kstrdup_quotable_file
+ffffffc008a59c5c r __ksymtab_kswapd
+ffffffc008a59c68 r __ksymtab_ksys_sync_helper
+ffffffc008a59c74 r __ksymtab_kthread_bind_mask
+ffffffc008a59c80 r __ksymtab_kthread_cancel_delayed_work_sync
+ffffffc008a59c8c r __ksymtab_kthread_cancel_work_sync
+ffffffc008a59c98 r __ksymtab_kthread_data
+ffffffc008a59ca4 r __ksymtab_kthread_flush_work
+ffffffc008a59cb0 r __ksymtab_kthread_flush_worker
+ffffffc008a59cbc r __ksymtab_kthread_freezable_should_stop
+ffffffc008a59cc8 r __ksymtab_kthread_func
+ffffffc008a59cd4 r __ksymtab_kthread_mod_delayed_work
+ffffffc008a59ce0 r __ksymtab_kthread_park
+ffffffc008a59cec r __ksymtab_kthread_parkme
+ffffffc008a59cf8 r __ksymtab_kthread_queue_delayed_work
+ffffffc008a59d04 r __ksymtab_kthread_queue_work
+ffffffc008a59d10 r __ksymtab_kthread_should_park
+ffffffc008a59d1c r __ksymtab_kthread_unpark
+ffffffc008a59d28 r __ksymtab_kthread_unuse_mm
+ffffffc008a59d34 r __ksymtab_kthread_use_mm
+ffffffc008a59d40 r __ksymtab_kthread_worker_fn
+ffffffc008a59d4c r __ksymtab_ktime_add_safe
+ffffffc008a59d58 r __ksymtab_ktime_get
+ffffffc008a59d64 r __ksymtab_ktime_get_boot_fast_ns
+ffffffc008a59d70 r __ksymtab_ktime_get_coarse_with_offset
+ffffffc008a59d7c r __ksymtab_ktime_get_mono_fast_ns
+ffffffc008a59d88 r __ksymtab_ktime_get_raw
+ffffffc008a59d94 r __ksymtab_ktime_get_raw_fast_ns
+ffffffc008a59da0 r __ksymtab_ktime_get_real_fast_ns
+ffffffc008a59dac r __ksymtab_ktime_get_real_seconds
+ffffffc008a59db8 r __ksymtab_ktime_get_resolution_ns
+ffffffc008a59dc4 r __ksymtab_ktime_get_seconds
+ffffffc008a59dd0 r __ksymtab_ktime_get_snapshot
+ffffffc008a59ddc r __ksymtab_ktime_get_tai_fast_ns
+ffffffc008a59de8 r __ksymtab_ktime_get_ts64
+ffffffc008a59df4 r __ksymtab_ktime_get_with_offset
+ffffffc008a59e00 r __ksymtab_ktime_mono_to_any
+ffffffc008a59e0c r __ksymtab_kvfree_call_rcu
+ffffffc008a59e18 r __ksymtab_kvm_arch_ptp_get_crosststamp
+ffffffc008a59e24 r __ksymtab_kvm_arm_hyp_service_available
+ffffffc008a59e30 r __ksymtab_kvm_has_memrelinquish_services
+ffffffc008a59e3c r __ksymtab_lcm
+ffffffc008a59e48 r __ksymtab_lcm_not_zero
+ffffffc008a59e54 r __ksymtab_lease_register_notifier
+ffffffc008a59e60 r __ksymtab_lease_unregister_notifier
+ffffffc008a59e6c r __ksymtab_list_lru_add
+ffffffc008a59e78 r __ksymtab_list_lru_count_node
+ffffffc008a59e84 r __ksymtab_list_lru_count_one
+ffffffc008a59e90 r __ksymtab_list_lru_del
+ffffffc008a59e9c r __ksymtab_list_lru_destroy
+ffffffc008a59ea8 r __ksymtab_list_lru_isolate
+ffffffc008a59eb4 r __ksymtab_list_lru_isolate_move
+ffffffc008a59ec0 r __ksymtab_list_lru_walk_node
+ffffffc008a59ecc r __ksymtab_list_lru_walk_one
+ffffffc008a59ed8 r __ksymtab_llist_add_batch
+ffffffc008a59ee4 r __ksymtab_llist_del_first
+ffffffc008a59ef0 r __ksymtab_llist_reverse_order
+ffffffc008a59efc r __ksymtab_lock_system_sleep
+ffffffc008a59f08 r __ksymtab_locks_alloc_lock
+ffffffc008a59f14 r __ksymtab_locks_owner_has_blockers
+ffffffc008a59f20 r __ksymtab_locks_release_private
+ffffffc008a59f2c r __ksymtab_log_abnormal_wakeup_reason
+ffffffc008a59f38 r __ksymtab_log_post_read_mmio
+ffffffc008a59f44 r __ksymtab_log_post_write_mmio
+ffffffc008a59f50 r __ksymtab_log_read_mmio
+ffffffc008a59f5c r __ksymtab_log_suspend_abort_reason
+ffffffc008a59f68 r __ksymtab_log_threaded_irq_wakeup_reason
+ffffffc008a59f74 r __ksymtab_log_write_mmio
+ffffffc008a59f80 r __ksymtab_lzo1x_1_compress
+ffffffc008a59f8c r __ksymtab_lzo1x_decompress_safe
+ffffffc008a59f98 r __ksymtab_lzorle1x_1_compress
+ffffffc008a59fa4 r __ksymtab_mark_mounts_for_expiry
+ffffffc008a59fb0 r __ksymtab_mas_destroy
+ffffffc008a59fbc r __ksymtab_mas_empty_area
+ffffffc008a59fc8 r __ksymtab_mas_empty_area_rev
+ffffffc008a59fd4 r __ksymtab_mas_erase
+ffffffc008a59fe0 r __ksymtab_mas_expected_entries
+ffffffc008a59fec r __ksymtab_mas_find
+ffffffc008a59ff8 r __ksymtab_mas_find_range
+ffffffc008a5a004 r __ksymtab_mas_find_range_rev
+ffffffc008a5a010 r __ksymtab_mas_find_rev
+ffffffc008a5a01c r __ksymtab_mas_next
+ffffffc008a5a028 r __ksymtab_mas_next_range
+ffffffc008a5a034 r __ksymtab_mas_pause
+ffffffc008a5a040 r __ksymtab_mas_prev
+ffffffc008a5a04c r __ksymtab_mas_prev_range
+ffffffc008a5a058 r __ksymtab_mas_store
+ffffffc008a5a064 r __ksymtab_mas_store_gfp
+ffffffc008a5a070 r __ksymtab_mas_store_prealloc
+ffffffc008a5a07c r __ksymtab_mas_walk
+ffffffc008a5a088 r __ksymtab_max_load_balance_interval
+ffffffc008a5a094 r __ksymtab_md5_zero_message_hash
+ffffffc008a5a0a0 r __ksymtab_mem_dump_obj
+ffffffc008a5a0ac r __ksymtab_memalloc_socks_key
+ffffffc008a5a0b8 r __ksymtab_memblock_end_of_DRAM
+ffffffc008a5a0c4 r __ksymtab_memblock_free
+ffffffc008a5a0d0 r __ksymtab_memory_block_size_bytes
+ffffffc008a5a0dc r __ksymtab_memory_group_register_dynamic
+ffffffc008a5a0e8 r __ksymtab_memory_group_register_static
+ffffffc008a5a0f4 r __ksymtab_memory_group_unregister
+ffffffc008a5a100 r __ksymtab_metadata_dst_alloc
+ffffffc008a5a10c r __ksymtab_metadata_dst_alloc_percpu
+ffffffc008a5a118 r __ksymtab_metadata_dst_free
+ffffffc008a5a124 r __ksymtab_metadata_dst_free_percpu
+ffffffc008a5a130 r __ksymtab_mhp_get_pluggable_range
+ffffffc008a5a13c r __ksymtab_migrate_disable
+ffffffc008a5a148 r __ksymtab_migrate_enable
+ffffffc008a5a154 r __ksymtab_migrate_pages
+ffffffc008a5a160 r __ksymtab_migrate_swap
+ffffffc008a5a16c r __ksymtab_mm_account_pinned_pages
+ffffffc008a5a178 r __ksymtab_mm_kobj
+ffffffc008a5a184 r __ksymtab_mm_trace_rss_stat
+ffffffc008a5a190 r __ksymtab_mm_unaccount_pinned_pages
+ffffffc008a5a19c r __ksymtab_mmput
+ffffffc008a5a1a8 r __ksymtab_mmput_async
+ffffffc008a5a1b4 r __ksymtab_mnt_drop_write
+ffffffc008a5a1c0 r __ksymtab_mnt_want_write
+ffffffc008a5a1cc r __ksymtab_mnt_want_write_file
+ffffffc008a5a1d8 r __ksymtab_mod_delayed_work_on
+ffffffc008a5a1e4 r __ksymtab_modify_user_hw_breakpoint
+ffffffc008a5a1f0 r __ksymtab_msg_zerocopy_callback
+ffffffc008a5a1fc r __ksymtab_msg_zerocopy_put_abort
+ffffffc008a5a208 r __ksymtab_msg_zerocopy_realloc
+ffffffc008a5a214 r __ksymtab_msi_first_desc
+ffffffc008a5a220 r __ksymtab_msi_get_virq
+ffffffc008a5a22c r __ksymtab_msi_lock_descs
+ffffffc008a5a238 r __ksymtab_msi_next_desc
+ffffffc008a5a244 r __ksymtab_msi_unlock_descs
+ffffffc008a5a250 r __ksymtab_mt_next
+ffffffc008a5a25c r __ksymtab_mt_prev
+ffffffc008a5a268 r __ksymtab_mte_async_or_asymm_mode
+ffffffc008a5a274 r __ksymtab_mutex_lock_io
+ffffffc008a5a280 r __ksymtab_n_tty_inherit_ops
+ffffffc008a5a28c r __ksymtab_name_to_dev_t
+ffffffc008a5a298 r __ksymtab_nd_tbl
+ffffffc008a5a2a4 r __ksymtab_ndo_dflt_bridge_getlink
+ffffffc008a5a2b0 r __ksymtab_net_namespace_list
+ffffffc008a5a2bc r __ksymtab_net_ns_type_operations
+ffffffc008a5a2c8 r __ksymtab_net_rwsem
+ffffffc008a5a2d4 r __ksymtab_netdev_cmd_to_name
+ffffffc008a5a2e0 r __ksymtab_netdev_is_rx_handler_busy
+ffffffc008a5a2ec r __ksymtab_netdev_rx_handler_register
+ffffffc008a5a2f8 r __ksymtab_netdev_rx_handler_unregister
+ffffffc008a5a304 r __ksymtab_netdev_set_default_ethtool_ops
+ffffffc008a5a310 r __ksymtab_netdev_walk_all_lower_dev
+ffffffc008a5a31c r __ksymtab_netdev_walk_all_lower_dev_rcu
+ffffffc008a5a328 r __ksymtab_netdev_walk_all_upper_dev_rcu
+ffffffc008a5a334 r __ksymtab_netif_carrier_event
+ffffffc008a5a340 r __ksymtab_netlink_add_tap
+ffffffc008a5a34c r __ksymtab_netlink_has_listeners
+ffffffc008a5a358 r __ksymtab_netlink_remove_tap
+ffffffc008a5a364 r __ksymtab_netlink_strict_get_check
+ffffffc008a5a370 r __ksymtab_nexthop_find_by_id
+ffffffc008a5a37c r __ksymtab_nexthop_for_each_fib6_nh
+ffffffc008a5a388 r __ksymtab_nexthop_free_rcu
+ffffffc008a5a394 r __ksymtab_nexthop_select_path
+ffffffc008a5a3a0 r __ksymtab_nf_conn_btf_access_lock
+ffffffc008a5a3ac r __ksymtab_nfct_btf_struct_access
+ffffffc008a5a3b8 r __ksymtab_nl_table
+ffffffc008a5a3c4 r __ksymtab_nl_table_lock
+ffffffc008a5a3d0 r __ksymtab_no_action
+ffffffc008a5a3dc r __ksymtab_no_hash_pointers
+ffffffc008a5a3e8 r __ksymtab_noop_backing_dev_info
+ffffffc008a5a3f4 r __ksymtab_noop_direct_IO
+ffffffc008a5a400 r __ksymtab_nr_free_buffer_pages
+ffffffc008a5a40c r __ksymtab_nr_ipi_get
+ffffffc008a5a418 r __ksymtab_nr_irqs
+ffffffc008a5a424 r __ksymtab_nr_swap_pages
+ffffffc008a5a430 r __ksymtab_nsec_to_clock_t
+ffffffc008a5a43c r __ksymtab_nsecs_to_jiffies
+ffffffc008a5a448 r __ksymtab_of_add_property
+ffffffc008a5a454 r __ksymtab_of_address_to_resource
+ffffffc008a5a460 r __ksymtab_of_alias_get_highest_id
+ffffffc008a5a46c r __ksymtab_of_alias_get_id
+ffffffc008a5a478 r __ksymtab_of_clk_add_hw_provider
+ffffffc008a5a484 r __ksymtab_of_clk_add_provider
+ffffffc008a5a490 r __ksymtab_of_clk_del_provider
+ffffffc008a5a49c r __ksymtab_of_clk_get_from_provider
+ffffffc008a5a4a8 r __ksymtab_of_clk_get_parent_count
+ffffffc008a5a4b4 r __ksymtab_of_clk_get_parent_name
+ffffffc008a5a4c0 r __ksymtab_of_clk_hw_onecell_get
+ffffffc008a5a4cc r __ksymtab_of_clk_hw_register
+ffffffc008a5a4d8 r __ksymtab_of_clk_hw_simple_get
+ffffffc008a5a4e4 r __ksymtab_of_clk_parent_fill
+ffffffc008a5a4f0 r __ksymtab_of_clk_set_defaults
+ffffffc008a5a4fc r __ksymtab_of_clk_src_onecell_get
+ffffffc008a5a508 r __ksymtab_of_clk_src_simple_get
+ffffffc008a5a514 r __ksymtab_of_console_check
+ffffffc008a5a520 r __ksymtab_of_device_compatible_match
+ffffffc008a5a52c r __ksymtab_of_device_modalias
+ffffffc008a5a538 r __ksymtab_of_device_request_module
+ffffffc008a5a544 r __ksymtab_of_device_uevent_modalias
+ffffffc008a5a550 r __ksymtab_of_dma_configure_id
+ffffffc008a5a55c r __ksymtab_of_dma_is_coherent
+ffffffc008a5a568 r __ksymtab_of_fdt_unflatten_tree
+ffffffc008a5a574 r __ksymtab_of_fwnode_ops
+ffffffc008a5a580 r __ksymtab_of_gen_pool_get
+ffffffc008a5a58c r __ksymtab_of_get_pci_domain_nr
+ffffffc008a5a598 r __ksymtab_of_get_phy_mode
+ffffffc008a5a5a4 r __ksymtab_of_hwspin_lock_get_id
+ffffffc008a5a5b0 r __ksymtab_of_hwspin_lock_get_id_byname
+ffffffc008a5a5bc r __ksymtab_of_irq_find_parent
+ffffffc008a5a5c8 r __ksymtab_of_irq_get
+ffffffc008a5a5d4 r __ksymtab_of_irq_get_byname
+ffffffc008a5a5e0 r __ksymtab_of_irq_parse_and_map_pci
+ffffffc008a5a5ec r __ksymtab_of_irq_parse_one
+ffffffc008a5a5f8 r __ksymtab_of_irq_parse_raw
+ffffffc008a5a604 r __ksymtab_of_irq_to_resource
+ffffffc008a5a610 r __ksymtab_of_irq_to_resource_table
+ffffffc008a5a61c r __ksymtab_of_map_id
+ffffffc008a5a628 r __ksymtab_of_modalias_node
+ffffffc008a5a634 r __ksymtab_of_msi_configure
+ffffffc008a5a640 r __ksymtab_of_pci_address_to_resource
+ffffffc008a5a64c r __ksymtab_of_pci_check_probe_only
+ffffffc008a5a658 r __ksymtab_of_pci_dma_range_parser_init
+ffffffc008a5a664 r __ksymtab_of_pci_find_child_device
+ffffffc008a5a670 r __ksymtab_of_pci_get_devfn
+ffffffc008a5a67c r __ksymtab_of_pci_get_max_link_speed
+ffffffc008a5a688 r __ksymtab_of_pci_get_slot_power_limit
+ffffffc008a5a694 r __ksymtab_of_pci_parse_bus_range
+ffffffc008a5a6a0 r __ksymtab_of_pci_range_parser_init
+ffffffc008a5a6ac r __ksymtab_of_pci_range_parser_one
+ffffffc008a5a6b8 r __ksymtab_of_phandle_args_to_fwspec
+ffffffc008a5a6c4 r __ksymtab_of_phandle_iterator_init
+ffffffc008a5a6d0 r __ksymtab_of_phandle_iterator_next
+ffffffc008a5a6dc r __ksymtab_of_platform_default_populate
+ffffffc008a5a6e8 r __ksymtab_of_platform_depopulate
+ffffffc008a5a6f4 r __ksymtab_of_platform_device_destroy
+ffffffc008a5a700 r __ksymtab_of_platform_populate
+ffffffc008a5a70c r __ksymtab_of_pm_clk_add_clk
+ffffffc008a5a718 r __ksymtab_of_pm_clk_add_clks
+ffffffc008a5a724 r __ksymtab_of_prop_next_string
+ffffffc008a5a730 r __ksymtab_of_prop_next_u32
+ffffffc008a5a73c r __ksymtab_of_property_count_elems_of_size
+ffffffc008a5a748 r __ksymtab_of_property_match_string
+ffffffc008a5a754 r __ksymtab_of_property_read_string
+ffffffc008a5a760 r __ksymtab_of_property_read_string_helper
+ffffffc008a5a76c r __ksymtab_of_property_read_u32_index
+ffffffc008a5a778 r __ksymtab_of_property_read_u64
+ffffffc008a5a784 r __ksymtab_of_property_read_u64_index
+ffffffc008a5a790 r __ksymtab_of_property_read_variable_u16_array
+ffffffc008a5a79c r __ksymtab_of_property_read_variable_u32_array
+ffffffc008a5a7a8 r __ksymtab_of_property_read_variable_u64_array
+ffffffc008a5a7b4 r __ksymtab_of_property_read_variable_u8_array
+ffffffc008a5a7c0 r __ksymtab_of_remove_property
+ffffffc008a5a7cc r __ksymtab_of_reserved_mem_device_init_by_idx
+ffffffc008a5a7d8 r __ksymtab_of_reserved_mem_device_init_by_name
+ffffffc008a5a7e4 r __ksymtab_of_reserved_mem_device_release
+ffffffc008a5a7f0 r __ksymtab_of_reserved_mem_lookup
+ffffffc008a5a7fc r __ksymtab_offline_and_remove_memory
+ffffffc008a5a808 r __ksymtab_open_related_ns
+ffffffc008a5a814 r __ksymtab_orderly_poweroff
+ffffffc008a5a820 r __ksymtab_orderly_reboot
+ffffffc008a5a82c r __ksymtab_out_of_line_wait_on_bit_timeout
+ffffffc008a5a838 r __ksymtab_page_cache_async_ra
+ffffffc008a5a844 r __ksymtab_page_cache_ra_unbounded
+ffffffc008a5a850 r __ksymtab_page_cache_sync_ra
+ffffffc008a5a85c r __ksymtab_page_endio
+ffffffc008a5a868 r __ksymtab_page_ext_get
+ffffffc008a5a874 r __ksymtab_page_ext_put
+ffffffc008a5a880 r __ksymtab_page_is_ram
+ffffffc008a5a88c r __ksymtab_page_relinquish
+ffffffc008a5a898 r __ksymtab_page_reporting_register
+ffffffc008a5a8a4 r __ksymtab_page_reporting_unregister
+ffffffc008a5a8b0 r __ksymtab_panic_reboot_mode
+ffffffc008a5a8bc r __ksymtab_panic_timeout
+ffffffc008a5a8c8 r __ksymtab_param_ops_bool_enable_only
+ffffffc008a5a8d4 r __ksymtab_param_set_bool_enable_only
+ffffffc008a5a8e0 r __ksymtab_param_set_uint_minmax
+ffffffc008a5a8ec r __ksymtab_paste_selection
+ffffffc008a5a8f8 r __ksymtab_pci_add_dynid
+ffffffc008a5a904 r __ksymtab_pci_aer_clear_nonfatal_status
+ffffffc008a5a910 r __ksymtab_pci_assign_unassigned_bridge_resources
+ffffffc008a5a91c r __ksymtab_pci_assign_unassigned_bus_resources
+ffffffc008a5a928 r __ksymtab_pci_ats_disabled
+ffffffc008a5a934 r __ksymtab_pci_ats_supported
+ffffffc008a5a940 r __ksymtab_pci_bridge_secondary_bus_reset
+ffffffc008a5a94c r __ksymtab_pci_bus_add_device
+ffffffc008a5a958 r __ksymtab_pci_bus_max_busnr
+ffffffc008a5a964 r __ksymtab_pci_bus_resource_n
+ffffffc008a5a970 r __ksymtab_pci_cfg_access_lock
+ffffffc008a5a97c r __ksymtab_pci_cfg_access_trylock
+ffffffc008a5a988 r __ksymtab_pci_cfg_access_unlock
+ffffffc008a5a994 r __ksymtab_pci_check_and_mask_intx
+ffffffc008a5a9a0 r __ksymtab_pci_check_and_unmask_intx
+ffffffc008a5a9ac r __ksymtab_pci_common_swizzle
+ffffffc008a5a9b8 r __ksymtab_pci_create_root_bus
+ffffffc008a5a9c4 r __ksymtab_pci_create_slot
+ffffffc008a5a9d0 r __ksymtab_pci_d3cold_disable
+ffffffc008a5a9dc r __ksymtab_pci_d3cold_enable
+ffffffc008a5a9e8 r __ksymtab_pci_destroy_slot
+ffffffc008a5a9f4 r __ksymtab_pci_dev_lock
+ffffffc008a5aa00 r __ksymtab_pci_dev_run_wake
+ffffffc008a5aa0c r __ksymtab_pci_dev_trylock
+ffffffc008a5aa18 r __ksymtab_pci_dev_unlock
+ffffffc008a5aa24 r __ksymtab_pci_device_group
+ffffffc008a5aa30 r __ksymtab_pci_device_is_present
+ffffffc008a5aa3c r __ksymtab_pci_disable_ats
+ffffffc008a5aa48 r __ksymtab_pci_disable_pcie_error_reporting
+ffffffc008a5aa54 r __ksymtab_pci_disable_rom
+ffffffc008a5aa60 r __ksymtab_pci_disable_sriov
+ffffffc008a5aa6c r __ksymtab_pci_ecam_create
+ffffffc008a5aa78 r __ksymtab_pci_ecam_free
+ffffffc008a5aa84 r __ksymtab_pci_ecam_map_bus
+ffffffc008a5aa90 r __ksymtab_pci_enable_ats
+ffffffc008a5aa9c r __ksymtab_pci_enable_pcie_error_reporting
+ffffffc008a5aaa8 r __ksymtab_pci_enable_rom
+ffffffc008a5aab4 r __ksymtab_pci_enable_sriov
+ffffffc008a5aac0 r __ksymtab_pci_epc_add_epf
+ffffffc008a5aacc r __ksymtab_pci_epc_clear_bar
+ffffffc008a5aad8 r __ksymtab_pci_epc_destroy
+ffffffc008a5aae4 r __ksymtab_pci_epc_get
+ffffffc008a5aaf0 r __ksymtab_pci_epc_get_features
+ffffffc008a5aafc r __ksymtab_pci_epc_get_first_free_bar
+ffffffc008a5ab08 r __ksymtab_pci_epc_get_msi
+ffffffc008a5ab14 r __ksymtab_pci_epc_get_msix
+ffffffc008a5ab20 r __ksymtab_pci_epc_get_next_free_bar
+ffffffc008a5ab2c r __ksymtab_pci_epc_init_notify
+ffffffc008a5ab38 r __ksymtab_pci_epc_linkup
+ffffffc008a5ab44 r __ksymtab_pci_epc_map_addr
+ffffffc008a5ab50 r __ksymtab_pci_epc_map_msi_irq
+ffffffc008a5ab5c r __ksymtab_pci_epc_mem_alloc_addr
+ffffffc008a5ab68 r __ksymtab_pci_epc_mem_exit
+ffffffc008a5ab74 r __ksymtab_pci_epc_mem_free_addr
+ffffffc008a5ab80 r __ksymtab_pci_epc_mem_init
+ffffffc008a5ab8c r __ksymtab_pci_epc_multi_mem_init
+ffffffc008a5ab98 r __ksymtab_pci_epc_put
+ffffffc008a5aba4 r __ksymtab_pci_epc_raise_irq
+ffffffc008a5abb0 r __ksymtab_pci_epc_remove_epf
+ffffffc008a5abbc r __ksymtab_pci_epc_set_bar
+ffffffc008a5abc8 r __ksymtab_pci_epc_set_msi
+ffffffc008a5abd4 r __ksymtab_pci_epc_set_msix
+ffffffc008a5abe0 r __ksymtab_pci_epc_start
+ffffffc008a5abec r __ksymtab_pci_epc_stop
+ffffffc008a5abf8 r __ksymtab_pci_epc_unmap_addr
+ffffffc008a5ac04 r __ksymtab_pci_epc_write_header
+ffffffc008a5ac10 r __ksymtab_pci_epf_add_vepf
+ffffffc008a5ac1c r __ksymtab_pci_epf_alloc_space
+ffffffc008a5ac28 r __ksymtab_pci_epf_bind
+ffffffc008a5ac34 r __ksymtab_pci_epf_create
+ffffffc008a5ac40 r __ksymtab_pci_epf_destroy
+ffffffc008a5ac4c r __ksymtab_pci_epf_free_space
+ffffffc008a5ac58 r __ksymtab_pci_epf_remove_vepf
+ffffffc008a5ac64 r __ksymtab_pci_epf_type_add_cfs
+ffffffc008a5ac70 r __ksymtab_pci_epf_unbind
+ffffffc008a5ac7c r __ksymtab_pci_epf_unregister_driver
+ffffffc008a5ac88 r __ksymtab_pci_find_dvsec_capability
+ffffffc008a5ac94 r __ksymtab_pci_find_ext_capability
+ffffffc008a5aca0 r __ksymtab_pci_find_host_bridge
+ffffffc008a5acac r __ksymtab_pci_find_ht_capability
+ffffffc008a5acb8 r __ksymtab_pci_find_next_capability
+ffffffc008a5acc4 r __ksymtab_pci_find_next_ext_capability
+ffffffc008a5acd0 r __ksymtab_pci_find_next_ht_capability
+ffffffc008a5acdc r __ksymtab_pci_find_vsec_capability
+ffffffc008a5ace8 r __ksymtab_pci_flags
+ffffffc008a5acf4 r __ksymtab_pci_generic_config_read
+ffffffc008a5ad00 r __ksymtab_pci_generic_config_read32
+ffffffc008a5ad0c r __ksymtab_pci_generic_config_write
+ffffffc008a5ad18 r __ksymtab_pci_generic_config_write32
+ffffffc008a5ad24 r __ksymtab_pci_generic_ecam_ops
+ffffffc008a5ad30 r __ksymtab_pci_get_dsn
+ffffffc008a5ad3c r __ksymtab_pci_host_common_probe
+ffffffc008a5ad48 r __ksymtab_pci_host_common_remove
+ffffffc008a5ad54 r __ksymtab_pci_host_probe
+ffffffc008a5ad60 r __ksymtab_pci_hp_add_bridge
+ffffffc008a5ad6c r __ksymtab_pci_ignore_hotplug
+ffffffc008a5ad78 r __ksymtab_pci_intx
+ffffffc008a5ad84 r __ksymtab_pci_iomap_wc
+ffffffc008a5ad90 r __ksymtab_pci_iomap_wc_range
+ffffffc008a5ad9c r __ksymtab_pci_ioremap_bar
+ffffffc008a5ada8 r __ksymtab_pci_ioremap_wc_bar
+ffffffc008a5adb4 r __ksymtab_pci_iov_get_pf_drvdata
+ffffffc008a5adc0 r __ksymtab_pci_iov_vf_id
+ffffffc008a5adcc r __ksymtab_pci_iov_virtfn_devfn
+ffffffc008a5add8 r __ksymtab_pci_load_and_free_saved_state
+ffffffc008a5ade4 r __ksymtab_pci_load_saved_state
+ffffffc008a5adf0 r __ksymtab_pci_lock_rescan_remove
+ffffffc008a5adfc r __ksymtab_pci_msi_create_irq_domain
+ffffffc008a5ae08 r __ksymtab_pci_msi_mask_irq
+ffffffc008a5ae14 r __ksymtab_pci_msi_unmask_irq
+ffffffc008a5ae20 r __ksymtab_pci_num_vf
+ffffffc008a5ae2c r __ksymtab_pci_pio_to_address
+ffffffc008a5ae38 r __ksymtab_pci_platform_power_transition
+ffffffc008a5ae44 r __ksymtab_pci_power_names
+ffffffc008a5ae50 r __ksymtab_pci_probe_reset_bus
+ffffffc008a5ae5c r __ksymtab_pci_probe_reset_slot
+ffffffc008a5ae68 r __ksymtab_pci_remove_root_bus
+ffffffc008a5ae74 r __ksymtab_pci_rescan_bus
+ffffffc008a5ae80 r __ksymtab_pci_reset_bus
+ffffffc008a5ae8c r __ksymtab_pci_reset_function
+ffffffc008a5ae98 r __ksymtab_pci_reset_function_locked
+ffffffc008a5aea4 r __ksymtab_pci_restore_msi_state
+ffffffc008a5aeb0 r __ksymtab_pci_scan_child_bus
+ffffffc008a5aebc r __ksymtab_pci_set_cacheline_size
+ffffffc008a5aec8 r __ksymtab_pci_set_host_bridge_release
+ffffffc008a5aed4 r __ksymtab_pci_set_pcie_reset_state
+ffffffc008a5aee0 r __ksymtab_pci_slots_kset
+ffffffc008a5aeec r __ksymtab_pci_speed_string
+ffffffc008a5aef8 r __ksymtab_pci_sriov_configure_simple
+ffffffc008a5af04 r __ksymtab_pci_sriov_get_totalvfs
+ffffffc008a5af10 r __ksymtab_pci_sriov_set_totalvfs
+ffffffc008a5af1c r __ksymtab_pci_status_get_and_clear_errors
+ffffffc008a5af28 r __ksymtab_pci_stop_and_remove_bus_device_locked
+ffffffc008a5af34 r __ksymtab_pci_stop_root_bus
+ffffffc008a5af40 r __ksymtab_pci_store_saved_state
+ffffffc008a5af4c r __ksymtab_pci_try_reset_function
+ffffffc008a5af58 r __ksymtab_pci_unlock_rescan_remove
+ffffffc008a5af64 r __ksymtab_pci_user_read_config_byte
+ffffffc008a5af70 r __ksymtab_pci_user_read_config_dword
+ffffffc008a5af7c r __ksymtab_pci_user_read_config_word
+ffffffc008a5af88 r __ksymtab_pci_user_write_config_byte
+ffffffc008a5af94 r __ksymtab_pci_user_write_config_dword
+ffffffc008a5afa0 r __ksymtab_pci_user_write_config_word
+ffffffc008a5afac r __ksymtab_pci_vfs_assigned
+ffffffc008a5afb8 r __ksymtab_pci_vpd_alloc
+ffffffc008a5afc4 r __ksymtab_pci_vpd_check_csum
+ffffffc008a5afd0 r __ksymtab_pci_vpd_find_id_string
+ffffffc008a5afdc r __ksymtab_pci_vpd_find_ro_info_keyword
+ffffffc008a5afe8 r __ksymtab_pci_walk_bus
+ffffffc008a5aff4 r __ksymtab_pci_write_msi_msg
+ffffffc008a5b000 r __ksymtab_pcie_aspm_enabled
+ffffffc008a5b00c r __ksymtab_pcie_bus_configure_settings
+ffffffc008a5b018 r __ksymtab_pcie_flr
+ffffffc008a5b024 r __ksymtab_pcie_link_speed
+ffffffc008a5b030 r __ksymtab_pcie_port_bus_type
+ffffffc008a5b03c r __ksymtab_pcie_port_find_device
+ffffffc008a5b048 r __ksymtab_pcie_reset_flr
+ffffffc008a5b054 r __ksymtab_pcie_update_link_speed
+ffffffc008a5b060 r __ksymtab_pcpu_nr_pages
+ffffffc008a5b06c r __ksymtab_peernet2id_alloc
+ffffffc008a5b078 r __ksymtab_per_cpu_ptr_to_phys
+ffffffc008a5b084 r __ksymtab_percpu_down_write
+ffffffc008a5b090 r __ksymtab_percpu_free_rwsem
+ffffffc008a5b09c r __ksymtab_percpu_is_read_locked
+ffffffc008a5b0a8 r __ksymtab_percpu_ref_exit
+ffffffc008a5b0b4 r __ksymtab_percpu_ref_init
+ffffffc008a5b0c0 r __ksymtab_percpu_ref_is_zero
+ffffffc008a5b0cc r __ksymtab_percpu_ref_kill_and_confirm
+ffffffc008a5b0d8 r __ksymtab_percpu_ref_reinit
+ffffffc008a5b0e4 r __ksymtab_percpu_ref_resurrect
+ffffffc008a5b0f0 r __ksymtab_percpu_ref_switch_to_atomic
+ffffffc008a5b0fc r __ksymtab_percpu_ref_switch_to_atomic_sync
+ffffffc008a5b108 r __ksymtab_percpu_ref_switch_to_percpu
+ffffffc008a5b114 r __ksymtab_percpu_up_write
+ffffffc008a5b120 r __ksymtab_perf_aux_output_begin
+ffffffc008a5b12c r __ksymtab_perf_aux_output_end
+ffffffc008a5b138 r __ksymtab_perf_aux_output_flag
+ffffffc008a5b144 r __ksymtab_perf_aux_output_skip
+ffffffc008a5b150 r __ksymtab_perf_event_addr_filters_sync
+ffffffc008a5b15c r __ksymtab_perf_event_create_kernel_counter
+ffffffc008a5b168 r __ksymtab_perf_event_disable
+ffffffc008a5b174 r __ksymtab_perf_event_enable
+ffffffc008a5b180 r __ksymtab_perf_event_pause
+ffffffc008a5b18c r __ksymtab_perf_event_period
+ffffffc008a5b198 r __ksymtab_perf_event_read_local
+ffffffc008a5b1a4 r __ksymtab_perf_event_read_value
+ffffffc008a5b1b0 r __ksymtab_perf_event_refresh
+ffffffc008a5b1bc r __ksymtab_perf_event_release_kernel
+ffffffc008a5b1c8 r __ksymtab_perf_event_sysfs_show
+ffffffc008a5b1d4 r __ksymtab_perf_event_update_userpage
+ffffffc008a5b1e0 r __ksymtab_perf_get_aux
+ffffffc008a5b1ec r __ksymtab_perf_pmu_migrate_context
+ffffffc008a5b1f8 r __ksymtab_perf_pmu_register
+ffffffc008a5b204 r __ksymtab_perf_pmu_unregister
+ffffffc008a5b210 r __ksymtab_perf_swevent_get_recursion_context
+ffffffc008a5b21c r __ksymtab_perf_tp_event
+ffffffc008a5b228 r __ksymtab_perf_trace_buf_alloc
+ffffffc008a5b234 r __ksymtab_perf_trace_run_bpf_submit
+ffffffc008a5b240 r __ksymtab_pernet_ops_rwsem
+ffffffc008a5b24c r __ksymtab_pfn_to_online_page
+ffffffc008a5b258 r __ksymtab_pick_highest_pushable_task
+ffffffc008a5b264 r __ksymtab_pick_migrate_task
+ffffffc008a5b270 r __ksymtab_pid_nr_ns
+ffffffc008a5b27c r __ksymtab_pid_vnr
+ffffffc008a5b288 r __ksymtab_pin_user_pages_fast
+ffffffc008a5b294 r __ksymtab_pin_user_pages_fast_only
+ffffffc008a5b2a0 r __ksymtab_ping_bind
+ffffffc008a5b2ac r __ksymtab_ping_close
+ffffffc008a5b2b8 r __ksymtab_ping_common_sendmsg
+ffffffc008a5b2c4 r __ksymtab_ping_err
+ffffffc008a5b2d0 r __ksymtab_ping_get_port
+ffffffc008a5b2dc r __ksymtab_ping_getfrag
+ffffffc008a5b2e8 r __ksymtab_ping_hash
+ffffffc008a5b2f4 r __ksymtab_ping_init_sock
+ffffffc008a5b300 r __ksymtab_ping_queue_rcv_skb
+ffffffc008a5b30c r __ksymtab_ping_rcv
+ffffffc008a5b318 r __ksymtab_ping_recvmsg
+ffffffc008a5b324 r __ksymtab_ping_seq_next
+ffffffc008a5b330 r __ksymtab_ping_seq_start
+ffffffc008a5b33c r __ksymtab_ping_seq_stop
+ffffffc008a5b348 r __ksymtab_ping_unhash
+ffffffc008a5b354 r __ksymtab_pingv6_ops
+ffffffc008a5b360 r __ksymtab_pingv6_prot
+ffffffc008a5b36c r __ksymtab_pktgen_xfrm_outer_mode_output
+ffffffc008a5b378 r __ksymtab_platform_add_devices
+ffffffc008a5b384 r __ksymtab_platform_bus
+ffffffc008a5b390 r __ksymtab_platform_bus_type
+ffffffc008a5b39c r __ksymtab_platform_device_add
+ffffffc008a5b3a8 r __ksymtab_platform_device_add_data
+ffffffc008a5b3b4 r __ksymtab_platform_device_add_resources
+ffffffc008a5b3c0 r __ksymtab_platform_device_alloc
+ffffffc008a5b3cc r __ksymtab_platform_device_del
+ffffffc008a5b3d8 r __ksymtab_platform_device_put
+ffffffc008a5b3e4 r __ksymtab_platform_device_register
+ffffffc008a5b3f0 r __ksymtab_platform_device_register_full
+ffffffc008a5b3fc r __ksymtab_platform_device_unregister
+ffffffc008a5b408 r __ksymtab_platform_driver_unregister
+ffffffc008a5b414 r __ksymtab_platform_find_device_by_driver
+ffffffc008a5b420 r __ksymtab_platform_get_irq
+ffffffc008a5b42c r __ksymtab_platform_get_irq_byname
+ffffffc008a5b438 r __ksymtab_platform_get_irq_byname_optional
+ffffffc008a5b444 r __ksymtab_platform_get_irq_optional
+ffffffc008a5b450 r __ksymtab_platform_get_mem_or_io
+ffffffc008a5b45c r __ksymtab_platform_get_resource
+ffffffc008a5b468 r __ksymtab_platform_get_resource_byname
+ffffffc008a5b474 r __ksymtab_platform_irq_count
+ffffffc008a5b480 r __ksymtab_platform_irqchip_probe
+ffffffc008a5b48c r __ksymtab_platform_msi_create_irq_domain
+ffffffc008a5b498 r __ksymtab_platform_msi_domain_alloc_irqs
+ffffffc008a5b4a4 r __ksymtab_platform_msi_domain_free_irqs
+ffffffc008a5b4b0 r __ksymtab_platform_unregister_drivers
+ffffffc008a5b4bc r __ksymtab_play_idle_precise
+ffffffc008a5b4c8 r __ksymtab_pm_clk_add
+ffffffc008a5b4d4 r __ksymtab_pm_clk_add_clk
+ffffffc008a5b4e0 r __ksymtab_pm_clk_add_notifier
+ffffffc008a5b4ec r __ksymtab_pm_clk_create
+ffffffc008a5b4f8 r __ksymtab_pm_clk_destroy
+ffffffc008a5b504 r __ksymtab_pm_clk_init
+ffffffc008a5b510 r __ksymtab_pm_clk_remove
+ffffffc008a5b51c r __ksymtab_pm_clk_remove_clk
+ffffffc008a5b528 r __ksymtab_pm_clk_resume
+ffffffc008a5b534 r __ksymtab_pm_clk_runtime_resume
+ffffffc008a5b540 r __ksymtab_pm_clk_runtime_suspend
+ffffffc008a5b54c r __ksymtab_pm_clk_suspend
+ffffffc008a5b558 r __ksymtab_pm_generic_freeze
+ffffffc008a5b564 r __ksymtab_pm_generic_freeze_late
+ffffffc008a5b570 r __ksymtab_pm_generic_freeze_noirq
+ffffffc008a5b57c r __ksymtab_pm_generic_poweroff
+ffffffc008a5b588 r __ksymtab_pm_generic_poweroff_late
+ffffffc008a5b594 r __ksymtab_pm_generic_poweroff_noirq
+ffffffc008a5b5a0 r __ksymtab_pm_generic_restore
+ffffffc008a5b5ac r __ksymtab_pm_generic_restore_early
+ffffffc008a5b5b8 r __ksymtab_pm_generic_restore_noirq
+ffffffc008a5b5c4 r __ksymtab_pm_generic_resume
+ffffffc008a5b5d0 r __ksymtab_pm_generic_resume_early
+ffffffc008a5b5dc r __ksymtab_pm_generic_resume_noirq
+ffffffc008a5b5e8 r __ksymtab_pm_generic_runtime_resume
+ffffffc008a5b5f4 r __ksymtab_pm_generic_runtime_suspend
+ffffffc008a5b600 r __ksymtab_pm_generic_suspend
+ffffffc008a5b60c r __ksymtab_pm_generic_suspend_late
+ffffffc008a5b618 r __ksymtab_pm_generic_suspend_noirq
+ffffffc008a5b624 r __ksymtab_pm_generic_thaw
+ffffffc008a5b630 r __ksymtab_pm_generic_thaw_early
+ffffffc008a5b63c r __ksymtab_pm_generic_thaw_noirq
+ffffffc008a5b648 r __ksymtab_pm_get_active_wakeup_sources
+ffffffc008a5b654 r __ksymtab_pm_power_off
+ffffffc008a5b660 r __ksymtab_pm_print_active_wakeup_sources
+ffffffc008a5b66c r __ksymtab_pm_relax
+ffffffc008a5b678 r __ksymtab_pm_runtime_allow
+ffffffc008a5b684 r __ksymtab_pm_runtime_autosuspend_expiration
+ffffffc008a5b690 r __ksymtab_pm_runtime_barrier
+ffffffc008a5b69c r __ksymtab_pm_runtime_enable
+ffffffc008a5b6a8 r __ksymtab_pm_runtime_forbid
+ffffffc008a5b6b4 r __ksymtab_pm_runtime_force_resume
+ffffffc008a5b6c0 r __ksymtab_pm_runtime_force_suspend
+ffffffc008a5b6cc r __ksymtab_pm_runtime_get_if_active
+ffffffc008a5b6d8 r __ksymtab_pm_runtime_irq_safe
+ffffffc008a5b6e4 r __ksymtab_pm_runtime_no_callbacks
+ffffffc008a5b6f0 r __ksymtab_pm_runtime_set_autosuspend_delay
+ffffffc008a5b6fc r __ksymtab_pm_runtime_set_memalloc_noio
+ffffffc008a5b708 r __ksymtab_pm_runtime_suspended_time
+ffffffc008a5b714 r __ksymtab_pm_schedule_suspend
+ffffffc008a5b720 r __ksymtab_pm_stay_awake
+ffffffc008a5b72c r __ksymtab_pm_suspend_default_s2idle
+ffffffc008a5b738 r __ksymtab_pm_suspend_global_flags
+ffffffc008a5b744 r __ksymtab_pm_suspend_target_state
+ffffffc008a5b750 r __ksymtab_pm_system_wakeup
+ffffffc008a5b75c r __ksymtab_pm_wakeup_dev_event
+ffffffc008a5b768 r __ksymtab_pm_wakeup_pending
+ffffffc008a5b774 r __ksymtab_pm_wakeup_ws_event
+ffffffc008a5b780 r __ksymtab_pm_wq
+ffffffc008a5b78c r __ksymtab_poll_state_synchronize_rcu
+ffffffc008a5b798 r __ksymtab_poll_state_synchronize_rcu_full
+ffffffc008a5b7a4 r __ksymtab_poll_state_synchronize_srcu
+ffffffc008a5b7b0 r __ksymtab_poly1305_final_generic
+ffffffc008a5b7bc r __ksymtab_poly1305_init_generic
+ffffffc008a5b7c8 r __ksymtab_poly1305_update_generic
+ffffffc008a5b7d4 r __ksymtab_polyval_mul_non4k
+ffffffc008a5b7e0 r __ksymtab_polyval_update_non4k
+ffffffc008a5b7ec r __ksymtab_posix_acl_access_xattr_handler
+ffffffc008a5b7f8 r __ksymtab_posix_acl_clone
+ffffffc008a5b804 r __ksymtab_posix_acl_create
+ffffffc008a5b810 r __ksymtab_posix_acl_default_xattr_handler
+ffffffc008a5b81c r __ksymtab_posix_clock_register
+ffffffc008a5b828 r __ksymtab_posix_clock_unregister
+ffffffc008a5b834 r __ksymtab_power_group_name
+ffffffc008a5b840 r __ksymtab_power_supply_am_i_supplied
+ffffffc008a5b84c r __ksymtab_power_supply_batinfo_ocv2cap
+ffffffc008a5b858 r __ksymtab_power_supply_battery_bti_in_range
+ffffffc008a5b864 r __ksymtab_power_supply_changed
+ffffffc008a5b870 r __ksymtab_power_supply_charge_behaviour_parse
+ffffffc008a5b87c r __ksymtab_power_supply_charge_behaviour_show
+ffffffc008a5b888 r __ksymtab_power_supply_class
+ffffffc008a5b894 r __ksymtab_power_supply_external_power_changed
+ffffffc008a5b8a0 r __ksymtab_power_supply_find_ocv2cap_table
+ffffffc008a5b8ac r __ksymtab_power_supply_get_battery_info
+ffffffc008a5b8b8 r __ksymtab_power_supply_get_by_name
+ffffffc008a5b8c4 r __ksymtab_power_supply_get_by_phandle
+ffffffc008a5b8d0 r __ksymtab_power_supply_get_by_phandle_array
+ffffffc008a5b8dc r __ksymtab_power_supply_get_drvdata
+ffffffc008a5b8e8 r __ksymtab_power_supply_get_maintenance_charging_setting
+ffffffc008a5b8f4 r __ksymtab_power_supply_get_property
+ffffffc008a5b900 r __ksymtab_power_supply_get_property_from_supplier
+ffffffc008a5b90c r __ksymtab_power_supply_is_system_supplied
+ffffffc008a5b918 r __ksymtab_power_supply_notifier
+ffffffc008a5b924 r __ksymtab_power_supply_ocv2cap_simple
+ffffffc008a5b930 r __ksymtab_power_supply_powers
+ffffffc008a5b93c r __ksymtab_power_supply_property_is_writeable
+ffffffc008a5b948 r __ksymtab_power_supply_put
+ffffffc008a5b954 r __ksymtab_power_supply_put_battery_info
+ffffffc008a5b960 r __ksymtab_power_supply_reg_notifier
+ffffffc008a5b96c r __ksymtab_power_supply_register
+ffffffc008a5b978 r __ksymtab_power_supply_register_no_ws
+ffffffc008a5b984 r __ksymtab_power_supply_set_battery_charged
+ffffffc008a5b990 r __ksymtab_power_supply_set_property
+ffffffc008a5b99c r __ksymtab_power_supply_temp2resist_simple
+ffffffc008a5b9a8 r __ksymtab_power_supply_unreg_notifier
+ffffffc008a5b9b4 r __ksymtab_power_supply_unregister
+ffffffc008a5b9c0 r __ksymtab_power_supply_vbat2ri
+ffffffc008a5b9cc r __ksymtab_preempt_schedule_notrace
+ffffffc008a5b9d8 r __ksymtab_proc_create_net_data
+ffffffc008a5b9e4 r __ksymtab_proc_create_net_data_write
+ffffffc008a5b9f0 r __ksymtab_proc_create_net_single
+ffffffc008a5b9fc r __ksymtab_proc_create_net_single_write
+ffffffc008a5ba08 r __ksymtab_proc_dou8vec_minmax
+ffffffc008a5ba14 r __ksymtab_proc_douintvec_minmax
+ffffffc008a5ba20 r __ksymtab_proc_get_parent_data
+ffffffc008a5ba2c r __ksymtab_proc_mkdir_data
+ffffffc008a5ba38 r __ksymtab_prof_on
+ffffffc008a5ba44 r __ksymtab_profile_event_register
+ffffffc008a5ba50 r __ksymtab_profile_event_unregister
+ffffffc008a5ba5c r __ksymtab_profile_hits
+ffffffc008a5ba68 r __ksymtab_property_entries_dup
+ffffffc008a5ba74 r __ksymtab_property_entries_free
+ffffffc008a5ba80 r __ksymtab_psi_memstall_enter
+ffffffc008a5ba8c r __ksymtab_psi_memstall_leave
+ffffffc008a5ba98 r __ksymtab_pskb_put
+ffffffc008a5baa4 r __ksymtab_put_device
+ffffffc008a5bab0 r __ksymtab_put_io_context
+ffffffc008a5babc r __ksymtab_put_iova_domain
+ffffffc008a5bac8 r __ksymtab_put_itimerspec64
+ffffffc008a5bad4 r __ksymtab_put_old_itimerspec32
+ffffffc008a5bae0 r __ksymtab_put_old_timespec32
+ffffffc008a5baec r __ksymtab_put_pid
+ffffffc008a5baf8 r __ksymtab_put_timespec64
+ffffffc008a5bb04 r __ksymtab_putback_movable_pages
+ffffffc008a5bb10 r __ksymtab_pvclock_gtod_register_notifier
+ffffffc008a5bb1c r __ksymtab_pvclock_gtod_unregister_notifier
+ffffffc008a5bb28 r __ksymtab_queue_work_node
+ffffffc008a5bb34 r __ksymtab_radix_tree_preloads
+ffffffc008a5bb40 r __ksymtab_random_get_entropy_fallback
+ffffffc008a5bb4c r __ksymtab_ras_userspace_consumers
+ffffffc008a5bb58 r __ksymtab_raw_abort
+ffffffc008a5bb64 r __ksymtab_raw_hash_sk
+ffffffc008a5bb70 r __ksymtab_raw_notifier_call_chain
+ffffffc008a5bb7c r __ksymtab_raw_notifier_call_chain_robust
+ffffffc008a5bb88 r __ksymtab_raw_notifier_chain_register
+ffffffc008a5bb94 r __ksymtab_raw_notifier_chain_unregister
+ffffffc008a5bba0 r __ksymtab_raw_seq_next
+ffffffc008a5bbac r __ksymtab_raw_seq_start
+ffffffc008a5bbb8 r __ksymtab_raw_seq_stop
+ffffffc008a5bbc4 r __ksymtab_raw_spin_rq_lock_nested
+ffffffc008a5bbd0 r __ksymtab_raw_spin_rq_unlock
+ffffffc008a5bbdc r __ksymtab_raw_unhash_sk
+ffffffc008a5bbe8 r __ksymtab_raw_v4_hashinfo
+ffffffc008a5bbf4 r __ksymtab_raw_v4_match
+ffffffc008a5bc00 r __ksymtab_raw_v6_hashinfo
+ffffffc008a5bc0c r __ksymtab_raw_v6_match
+ffffffc008a5bc18 r __ksymtab_rcu_barrier
+ffffffc008a5bc24 r __ksymtab_rcu_barrier_tasks
+ffffffc008a5bc30 r __ksymtab_rcu_bind_current_to_nocb
+ffffffc008a5bc3c r __ksymtab_rcu_check_boost_fail
+ffffffc008a5bc48 r __ksymtab_rcu_cpu_stall_suppress
+ffffffc008a5bc54 r __ksymtab_rcu_cpu_stall_suppress_at_boot
+ffffffc008a5bc60 r __ksymtab_rcu_exp_batches_completed
+ffffffc008a5bc6c r __ksymtab_rcu_exp_jiffies_till_stall_check
+ffffffc008a5bc78 r __ksymtab_rcu_expedite_gp
+ffffffc008a5bc84 r __ksymtab_rcu_force_quiescent_state
+ffffffc008a5bc90 r __ksymtab_rcu_fwd_progress_check
+ffffffc008a5bc9c r __ksymtab_rcu_get_gp_kthreads_prio
+ffffffc008a5bca8 r __ksymtab_rcu_get_gp_seq
+ffffffc008a5bcb4 r __ksymtab_rcu_gp_is_expedited
+ffffffc008a5bcc0 r __ksymtab_rcu_gp_is_normal
+ffffffc008a5bccc r __ksymtab_rcu_gp_set_torture_wait
+ffffffc008a5bcd8 r __ksymtab_rcu_gp_slow_register
+ffffffc008a5bce4 r __ksymtab_rcu_gp_slow_unregister
+ffffffc008a5bcf0 r __ksymtab_rcu_inkernel_boot_has_ended
+ffffffc008a5bcfc r __ksymtab_rcu_is_watching
+ffffffc008a5bd08 r __ksymtab_rcu_jiffies_till_stall_check
+ffffffc008a5bd14 r __ksymtab_rcu_momentary_dyntick_idle
+ffffffc008a5bd20 r __ksymtab_rcu_nocb_cpu_deoffload
+ffffffc008a5bd2c r __ksymtab_rcu_nocb_cpu_offload
+ffffffc008a5bd38 r __ksymtab_rcu_nocb_flush_deferred_wakeup
+ffffffc008a5bd44 r __ksymtab_rcu_note_context_switch
+ffffffc008a5bd50 r __ksymtab_rcu_scheduler_active
+ffffffc008a5bd5c r __ksymtab_rcu_unexpedite_gp
+ffffffc008a5bd68 r __ksymtab_rcutorture_get_gp_data
+ffffffc008a5bd74 r __ksymtab_rcuwait_wake_up
+ffffffc008a5bd80 r __ksymtab_read_sanitised_ftr_reg
+ffffffc008a5bd8c r __ksymtab_readahead_gfp_mask
+ffffffc008a5bd98 r __ksymtab_reboot_mode
+ffffffc008a5bda4 r __ksymtab_receive_fd
+ffffffc008a5bdb0 r __ksymtab_reclaim_shmem_address_space
+ffffffc008a5bdbc r __ksymtab_regcache_cache_bypass
+ffffffc008a5bdc8 r __ksymtab_regcache_cache_only
+ffffffc008a5bdd4 r __ksymtab_regcache_drop_region
+ffffffc008a5bde0 r __ksymtab_regcache_mark_dirty
+ffffffc008a5bdec r __ksymtab_regcache_sync
+ffffffc008a5bdf8 r __ksymtab_regcache_sync_region
+ffffffc008a5be04 r __ksymtab_region_intersects
+ffffffc008a5be10 r __ksymtab_register_die_notifier
+ffffffc008a5be1c r __ksymtab_register_firmware_config_sysctl
+ffffffc008a5be28 r __ksymtab_register_ftrace_export
+ffffffc008a5be34 r __ksymtab_register_kernel_break_hook
+ffffffc008a5be40 r __ksymtab_register_keyboard_notifier
+ffffffc008a5be4c r __ksymtab_register_net_sysctl
+ffffffc008a5be58 r __ksymtab_register_netevent_notifier
+ffffffc008a5be64 r __ksymtab_register_oom_notifier
+ffffffc008a5be70 r __ksymtab_register_pernet_device
+ffffffc008a5be7c r __ksymtab_register_pernet_subsys
+ffffffc008a5be88 r __ksymtab_register_platform_power_off
+ffffffc008a5be94 r __ksymtab_register_pm_notifier
+ffffffc008a5bea0 r __ksymtab_register_sys_off_handler
+ffffffc008a5beac r __ksymtab_register_syscore_ops
+ffffffc008a5beb8 r __ksymtab_register_trace_event
+ffffffc008a5bec4 r __ksymtab_register_tracepoint_module_notifier
+ffffffc008a5bed0 r __ksymtab_register_user_break_hook
+ffffffc008a5bedc r __ksymtab_register_user_hw_breakpoint
+ffffffc008a5bee8 r __ksymtab_register_virtio_device
+ffffffc008a5bef4 r __ksymtab_register_virtio_driver
+ffffffc008a5bf00 r __ksymtab_register_vmap_purge_notifier
+ffffffc008a5bf0c r __ksymtab_register_vt_notifier
+ffffffc008a5bf18 r __ksymtab_register_wide_hw_breakpoint
+ffffffc008a5bf24 r __ksymtab_regmap_async_complete
+ffffffc008a5bf30 r __ksymtab_regmap_async_complete_cb
+ffffffc008a5bf3c r __ksymtab_regmap_attach_dev
+ffffffc008a5bf48 r __ksymtab_regmap_bulk_read
+ffffffc008a5bf54 r __ksymtab_regmap_bulk_write
+ffffffc008a5bf60 r __ksymtab_regmap_can_raw_write
+ffffffc008a5bf6c r __ksymtab_regmap_check_range_table
+ffffffc008a5bf78 r __ksymtab_regmap_exit
+ffffffc008a5bf84 r __ksymtab_regmap_field_alloc
+ffffffc008a5bf90 r __ksymtab_regmap_field_bulk_alloc
+ffffffc008a5bf9c r __ksymtab_regmap_field_bulk_free
+ffffffc008a5bfa8 r __ksymtab_regmap_field_free
+ffffffc008a5bfb4 r __ksymtab_regmap_field_read
+ffffffc008a5bfc0 r __ksymtab_regmap_field_test_bits
+ffffffc008a5bfcc r __ksymtab_regmap_field_update_bits_base
+ffffffc008a5bfd8 r __ksymtab_regmap_fields_read
+ffffffc008a5bfe4 r __ksymtab_regmap_fields_update_bits_base
+ffffffc008a5bff0 r __ksymtab_regmap_get_device
+ffffffc008a5bffc r __ksymtab_regmap_get_max_register
+ffffffc008a5c008 r __ksymtab_regmap_get_raw_read_max
+ffffffc008a5c014 r __ksymtab_regmap_get_raw_write_max
+ffffffc008a5c020 r __ksymtab_regmap_get_reg_stride
+ffffffc008a5c02c r __ksymtab_regmap_get_val_bytes
+ffffffc008a5c038 r __ksymtab_regmap_get_val_endian
+ffffffc008a5c044 r __ksymtab_regmap_mmio_attach_clk
+ffffffc008a5c050 r __ksymtab_regmap_mmio_detach_clk
+ffffffc008a5c05c r __ksymtab_regmap_multi_reg_write
+ffffffc008a5c068 r __ksymtab_regmap_multi_reg_write_bypassed
+ffffffc008a5c074 r __ksymtab_regmap_noinc_read
+ffffffc008a5c080 r __ksymtab_regmap_noinc_write
+ffffffc008a5c08c r __ksymtab_regmap_parse_val
+ffffffc008a5c098 r __ksymtab_regmap_raw_read
+ffffffc008a5c0a4 r __ksymtab_regmap_raw_write
+ffffffc008a5c0b0 r __ksymtab_regmap_raw_write_async
+ffffffc008a5c0bc r __ksymtab_regmap_read
+ffffffc008a5c0c8 r __ksymtab_regmap_reg_in_ranges
+ffffffc008a5c0d4 r __ksymtab_regmap_register_patch
+ffffffc008a5c0e0 r __ksymtab_regmap_reinit_cache
+ffffffc008a5c0ec r __ksymtab_regmap_test_bits
+ffffffc008a5c0f8 r __ksymtab_regmap_update_bits_base
+ffffffc008a5c104 r __ksymtab_regmap_write
+ffffffc008a5c110 r __ksymtab_regmap_write_async
+ffffffc008a5c11c r __ksymtab_remove_cpu
+ffffffc008a5c128 r __ksymtab_remove_memory
+ffffffc008a5c134 r __ksymtab_remove_resource
+ffffffc008a5c140 r __ksymtab_replace_page_cache_page
+ffffffc008a5c14c r __ksymtab_report_iommu_fault
+ffffffc008a5c158 r __ksymtab_request_any_context_irq
+ffffffc008a5c164 r __ksymtab_request_firmware_direct
+ffffffc008a5c170 r __ksymtab_resched_curr
+ffffffc008a5c17c r __ksymtab_reserve_iova
+ffffffc008a5c188 r __ksymtab_reset_hung_task_detector
+ffffffc008a5c194 r __ksymtab_restore_online_page_callback
+ffffffc008a5c1a0 r __ksymtab_return_address
+ffffffc008a5c1ac r __ksymtab_rhashtable_destroy
+ffffffc008a5c1b8 r __ksymtab_rhashtable_free_and_destroy
+ffffffc008a5c1c4 r __ksymtab_rhashtable_init
+ffffffc008a5c1d0 r __ksymtab_rhashtable_insert_slow
+ffffffc008a5c1dc r __ksymtab_rhashtable_walk_enter
+ffffffc008a5c1e8 r __ksymtab_rhashtable_walk_exit
+ffffffc008a5c1f4 r __ksymtab_rhashtable_walk_next
+ffffffc008a5c200 r __ksymtab_rhashtable_walk_peek
+ffffffc008a5c20c r __ksymtab_rhashtable_walk_start_check
+ffffffc008a5c218 r __ksymtab_rhashtable_walk_stop
+ffffffc008a5c224 r __ksymtab_rhltable_init
+ffffffc008a5c230 r __ksymtab_rht_bucket_nested
+ffffffc008a5c23c r __ksymtab_rht_bucket_nested_insert
+ffffffc008a5c248 r __ksymtab_ring_buffer_alloc_read_page
+ffffffc008a5c254 r __ksymtab_ring_buffer_bytes_cpu
+ffffffc008a5c260 r __ksymtab_ring_buffer_change_overwrite
+ffffffc008a5c26c r __ksymtab_ring_buffer_commit_overrun_cpu
+ffffffc008a5c278 r __ksymtab_ring_buffer_consume
+ffffffc008a5c284 r __ksymtab_ring_buffer_discard_commit
+ffffffc008a5c290 r __ksymtab_ring_buffer_dropped_events_cpu
+ffffffc008a5c29c r __ksymtab_ring_buffer_empty
+ffffffc008a5c2a8 r __ksymtab_ring_buffer_empty_cpu
+ffffffc008a5c2b4 r __ksymtab_ring_buffer_entries
+ffffffc008a5c2c0 r __ksymtab_ring_buffer_entries_cpu
+ffffffc008a5c2cc r __ksymtab_ring_buffer_event_data
+ffffffc008a5c2d8 r __ksymtab_ring_buffer_event_length
+ffffffc008a5c2e4 r __ksymtab_ring_buffer_free
+ffffffc008a5c2f0 r __ksymtab_ring_buffer_free_read_page
+ffffffc008a5c2fc r __ksymtab_ring_buffer_iter_advance
+ffffffc008a5c308 r __ksymtab_ring_buffer_iter_dropped
+ffffffc008a5c314 r __ksymtab_ring_buffer_iter_empty
+ffffffc008a5c320 r __ksymtab_ring_buffer_iter_peek
+ffffffc008a5c32c r __ksymtab_ring_buffer_iter_reset
+ffffffc008a5c338 r __ksymtab_ring_buffer_lock_reserve
+ffffffc008a5c344 r __ksymtab_ring_buffer_normalize_time_stamp
+ffffffc008a5c350 r __ksymtab_ring_buffer_oldest_event_ts
+ffffffc008a5c35c r __ksymtab_ring_buffer_overrun_cpu
+ffffffc008a5c368 r __ksymtab_ring_buffer_overruns
+ffffffc008a5c374 r __ksymtab_ring_buffer_peek
+ffffffc008a5c380 r __ksymtab_ring_buffer_read_events_cpu
+ffffffc008a5c38c r __ksymtab_ring_buffer_read_finish
+ffffffc008a5c398 r __ksymtab_ring_buffer_read_page
+ffffffc008a5c3a4 r __ksymtab_ring_buffer_read_prepare
+ffffffc008a5c3b0 r __ksymtab_ring_buffer_read_prepare_sync
+ffffffc008a5c3bc r __ksymtab_ring_buffer_read_start
+ffffffc008a5c3c8 r __ksymtab_ring_buffer_record_disable
+ffffffc008a5c3d4 r __ksymtab_ring_buffer_record_disable_cpu
+ffffffc008a5c3e0 r __ksymtab_ring_buffer_record_enable
+ffffffc008a5c3ec r __ksymtab_ring_buffer_record_enable_cpu
+ffffffc008a5c3f8 r __ksymtab_ring_buffer_record_off
+ffffffc008a5c404 r __ksymtab_ring_buffer_record_on
+ffffffc008a5c410 r __ksymtab_ring_buffer_reset
+ffffffc008a5c41c r __ksymtab_ring_buffer_reset_cpu
+ffffffc008a5c428 r __ksymtab_ring_buffer_resize
+ffffffc008a5c434 r __ksymtab_ring_buffer_size
+ffffffc008a5c440 r __ksymtab_ring_buffer_time_stamp
+ffffffc008a5c44c r __ksymtab_ring_buffer_unlock_commit
+ffffffc008a5c458 r __ksymtab_ring_buffer_write
+ffffffc008a5c464 r __ksymtab_root_device_unregister
+ffffffc008a5c470 r __ksymtab_round_jiffies
+ffffffc008a5c47c r __ksymtab_round_jiffies_relative
+ffffffc008a5c488 r __ksymtab_round_jiffies_up
+ffffffc008a5c494 r __ksymtab_round_jiffies_up_relative
+ffffffc008a5c4a0 r __ksymtab_rt_mutex_lock
+ffffffc008a5c4ac r __ksymtab_rt_mutex_lock_interruptible
+ffffffc008a5c4b8 r __ksymtab_rt_mutex_lock_killable
+ffffffc008a5c4c4 r __ksymtab_rt_mutex_trylock
+ffffffc008a5c4d0 r __ksymtab_rt_mutex_unlock
+ffffffc008a5c4dc r __ksymtab_rtc_alarm_irq_enable
+ffffffc008a5c4e8 r __ksymtab_rtc_class_close
+ffffffc008a5c4f4 r __ksymtab_rtc_class_open
+ffffffc008a5c500 r __ksymtab_rtc_initialize_alarm
+ffffffc008a5c50c r __ksymtab_rtc_ktime_to_tm
+ffffffc008a5c518 r __ksymtab_rtc_read_alarm
+ffffffc008a5c524 r __ksymtab_rtc_read_time
+ffffffc008a5c530 r __ksymtab_rtc_set_alarm
+ffffffc008a5c53c r __ksymtab_rtc_set_time
+ffffffc008a5c548 r __ksymtab_rtc_tm_to_ktime
+ffffffc008a5c554 r __ksymtab_rtc_update_irq
+ffffffc008a5c560 r __ksymtab_rtc_update_irq_enable
+ffffffc008a5c56c r __ksymtab_rtm_getroute_parse_ip_proto
+ffffffc008a5c578 r __ksymtab_rtnl_af_register
+ffffffc008a5c584 r __ksymtab_rtnl_af_unregister
+ffffffc008a5c590 r __ksymtab_rtnl_delete_link
+ffffffc008a5c59c r __ksymtab_rtnl_get_net_ns_capable
+ffffffc008a5c5a8 r __ksymtab_rtnl_link_register
+ffffffc008a5c5b4 r __ksymtab_rtnl_link_unregister
+ffffffc008a5c5c0 r __ksymtab_rtnl_put_cacheinfo
+ffffffc008a5c5cc r __ksymtab_rtnl_register_module
+ffffffc008a5c5d8 r __ksymtab_rtnl_unregister
+ffffffc008a5c5e4 r __ksymtab_rtnl_unregister_all
+ffffffc008a5c5f0 r __ksymtab_runqueues
+ffffffc008a5c5fc r __ksymtab_s2idle_wake
+ffffffc008a5c608 r __ksymtab_sbitmap_add_wait_queue
+ffffffc008a5c614 r __ksymtab_sbitmap_any_bit_set
+ffffffc008a5c620 r __ksymtab_sbitmap_bitmap_show
+ffffffc008a5c62c r __ksymtab_sbitmap_del_wait_queue
+ffffffc008a5c638 r __ksymtab_sbitmap_finish_wait
+ffffffc008a5c644 r __ksymtab_sbitmap_get
+ffffffc008a5c650 r __ksymtab_sbitmap_get_shallow
+ffffffc008a5c65c r __ksymtab_sbitmap_init_node
+ffffffc008a5c668 r __ksymtab_sbitmap_prepare_to_wait
+ffffffc008a5c674 r __ksymtab_sbitmap_queue_clear
+ffffffc008a5c680 r __ksymtab_sbitmap_queue_get_shallow
+ffffffc008a5c68c r __ksymtab_sbitmap_queue_init_node
+ffffffc008a5c698 r __ksymtab_sbitmap_queue_min_shallow_depth
+ffffffc008a5c6a4 r __ksymtab_sbitmap_queue_recalculate_wake_batch
+ffffffc008a5c6b0 r __ksymtab_sbitmap_queue_resize
+ffffffc008a5c6bc r __ksymtab_sbitmap_queue_show
+ffffffc008a5c6c8 r __ksymtab_sbitmap_queue_wake_all
+ffffffc008a5c6d4 r __ksymtab_sbitmap_queue_wake_up
+ffffffc008a5c6e0 r __ksymtab_sbitmap_resize
+ffffffc008a5c6ec r __ksymtab_sbitmap_show
+ffffffc008a5c6f8 r __ksymtab_sbitmap_weight
+ffffffc008a5c704 r __ksymtab_scatterwalk_copychunks
+ffffffc008a5c710 r __ksymtab_scatterwalk_ffwd
+ffffffc008a5c71c r __ksymtab_scatterwalk_map_and_copy
+ffffffc008a5c728 r __ksymtab_sch_frag_xmit_hook
+ffffffc008a5c734 r __ksymtab_sched_clock
+ffffffc008a5c740 r __ksymtab_sched_clock_register
+ffffffc008a5c74c r __ksymtab_sched_feat_keys
+ffffffc008a5c758 r __ksymtab_sched_feat_names
+ffffffc008a5c764 r __ksymtab_sched_set_fifo
+ffffffc008a5c770 r __ksymtab_sched_set_fifo_low
+ffffffc008a5c77c r __ksymtab_sched_set_normal
+ffffffc008a5c788 r __ksymtab_sched_setattr
+ffffffc008a5c794 r __ksymtab_sched_setattr_nocheck
+ffffffc008a5c7a0 r __ksymtab_sched_setscheduler
+ffffffc008a5c7ac r __ksymtab_sched_setscheduler_nocheck
+ffffffc008a5c7b8 r __ksymtab_sched_show_task
+ffffffc008a5c7c4 r __ksymtab_schedule_hrtimeout
+ffffffc008a5c7d0 r __ksymtab_schedule_hrtimeout_range
+ffffffc008a5c7dc r __ksymtab_schedule_hrtimeout_range_clock
+ffffffc008a5c7e8 r __ksymtab_scmi_driver_register
+ffffffc008a5c7f4 r __ksymtab_scmi_driver_unregister
+ffffffc008a5c800 r __ksymtab_scmi_protocol_register
+ffffffc008a5c80c r __ksymtab_scmi_protocol_unregister
+ffffffc008a5c818 r __ksymtab_screen_glyph
+ffffffc008a5c824 r __ksymtab_screen_glyph_unicode
+ffffffc008a5c830 r __ksymtab_screen_pos
+ffffffc008a5c83c r __ksymtab_secure_ipv4_port_ephemeral
+ffffffc008a5c848 r __ksymtab_secure_tcp_seq
+ffffffc008a5c854 r __ksymtab_security_file_ioctl
+ffffffc008a5c860 r __ksymtab_security_inode_create
+ffffffc008a5c86c r __ksymtab_security_inode_mkdir
+ffffffc008a5c878 r __ksymtab_security_inode_setattr
+ffffffc008a5c884 r __ksymtab_security_kernel_load_data
+ffffffc008a5c890 r __ksymtab_security_kernel_post_load_data
+ffffffc008a5c89c r __ksymtab_security_kernel_post_read_file
+ffffffc008a5c8a8 r __ksymtab_security_kernel_read_file
+ffffffc008a5c8b4 r __ksymtab_securityfs_create_dir
+ffffffc008a5c8c0 r __ksymtab_securityfs_create_file
+ffffffc008a5c8cc r __ksymtab_securityfs_create_symlink
+ffffffc008a5c8d8 r __ksymtab_securityfs_remove
+ffffffc008a5c8e4 r __ksymtab_select_fallback_rq
+ffffffc008a5c8f0 r __ksymtab_seq_buf_printf
+ffffffc008a5c8fc r __ksymtab_serial8250_clear_and_reinit_fifos
+ffffffc008a5c908 r __ksymtab_serial8250_do_get_mctrl
+ffffffc008a5c914 r __ksymtab_serial8250_do_set_divisor
+ffffffc008a5c920 r __ksymtab_serial8250_do_set_ldisc
+ffffffc008a5c92c r __ksymtab_serial8250_do_set_mctrl
+ffffffc008a5c938 r __ksymtab_serial8250_do_shutdown
+ffffffc008a5c944 r __ksymtab_serial8250_do_startup
+ffffffc008a5c950 r __ksymtab_serial8250_em485_config
+ffffffc008a5c95c r __ksymtab_serial8250_em485_destroy
+ffffffc008a5c968 r __ksymtab_serial8250_em485_start_tx
+ffffffc008a5c974 r __ksymtab_serial8250_em485_stop_tx
+ffffffc008a5c980 r __ksymtab_serial8250_em485_supported
+ffffffc008a5c98c r __ksymtab_serial8250_get_port
+ffffffc008a5c998 r __ksymtab_serial8250_handle_irq
+ffffffc008a5c9a4 r __ksymtab_serial8250_init_port
+ffffffc008a5c9b0 r __ksymtab_serial8250_modem_status
+ffffffc008a5c9bc r __ksymtab_serial8250_read_char
+ffffffc008a5c9c8 r __ksymtab_serial8250_rpm_get
+ffffffc008a5c9d4 r __ksymtab_serial8250_rpm_get_tx
+ffffffc008a5c9e0 r __ksymtab_serial8250_rpm_put
+ffffffc008a5c9ec r __ksymtab_serial8250_rpm_put_tx
+ffffffc008a5c9f8 r __ksymtab_serial8250_rx_chars
+ffffffc008a5ca04 r __ksymtab_serial8250_set_defaults
+ffffffc008a5ca10 r __ksymtab_serial8250_tx_chars
+ffffffc008a5ca1c r __ksymtab_serial8250_update_uartclk
+ffffffc008a5ca28 r __ksymtab_set_capacity_and_notify
+ffffffc008a5ca34 r __ksymtab_set_cpus_allowed_ptr
+ffffffc008a5ca40 r __ksymtab_set_direct_map_range_uncached
+ffffffc008a5ca4c r __ksymtab_set_memory_decrypted
+ffffffc008a5ca58 r __ksymtab_set_memory_encrypted
+ffffffc008a5ca64 r __ksymtab_set_next_entity
+ffffffc008a5ca70 r __ksymtab_set_online_page_callback
+ffffffc008a5ca7c r __ksymtab_set_primary_fwnode
+ffffffc008a5ca88 r __ksymtab_set_secondary_fwnode
+ffffffc008a5ca94 r __ksymtab_set_selection_kernel
+ffffffc008a5caa0 r __ksymtab_set_task_cpu
+ffffffc008a5caac r __ksymtab_set_task_ioprio
+ffffffc008a5cab8 r __ksymtab_set_worker_desc
+ffffffc008a5cac4 r __ksymtab_sg_alloc_table_chained
+ffffffc008a5cad0 r __ksymtab_sg_free_table_chained
+ffffffc008a5cadc r __ksymtab_sha1_zero_message_hash
+ffffffc008a5cae8 r __ksymtab_sha224_zero_message_hash
+ffffffc008a5caf4 r __ksymtab_sha256_zero_message_hash
+ffffffc008a5cb00 r __ksymtab_sha384_zero_message_hash
+ffffffc008a5cb0c r __ksymtab_sha512_zero_message_hash
+ffffffc008a5cb18 r __ksymtab_shash_ahash_digest
+ffffffc008a5cb24 r __ksymtab_shash_ahash_finup
+ffffffc008a5cb30 r __ksymtab_shash_ahash_update
+ffffffc008a5cb3c r __ksymtab_shash_free_singlespawn_instance
+ffffffc008a5cb48 r __ksymtab_shash_register_instance
+ffffffc008a5cb54 r __ksymtab_shmem_file_setup
+ffffffc008a5cb60 r __ksymtab_shmem_file_setup_with_mnt
+ffffffc008a5cb6c r __ksymtab_shmem_read_mapping_page_gfp
+ffffffc008a5cb78 r __ksymtab_shmem_truncate_range
+ffffffc008a5cb84 r __ksymtab_show_class_attr_string
+ffffffc008a5cb90 r __ksymtab_show_rcu_gp_kthreads
+ffffffc008a5cb9c r __ksymtab_show_rcu_tasks_classic_gp_kthread
+ffffffc008a5cba8 r __ksymtab_show_regs
+ffffffc008a5cbb4 r __ksymtab_si_mem_available
+ffffffc008a5cbc0 r __ksymtab_si_swapinfo
+ffffffc008a5cbcc r __ksymtab_simple_attr_open
+ffffffc008a5cbd8 r __ksymtab_simple_attr_read
+ffffffc008a5cbe4 r __ksymtab_simple_attr_release
+ffffffc008a5cbf0 r __ksymtab_simple_attr_write
+ffffffc008a5cbfc r __ksymtab_simple_attr_write_signed
+ffffffc008a5cc08 r __ksymtab_simple_rename_exchange
+ffffffc008a5cc14 r __ksymtab_sk_attach_filter
+ffffffc008a5cc20 r __ksymtab_sk_clear_memalloc
+ffffffc008a5cc2c r __ksymtab_sk_clone_lock
+ffffffc008a5cc38 r __ksymtab_sk_detach_filter
+ffffffc008a5cc44 r __ksymtab_sk_free_unlock_clone
+ffffffc008a5cc50 r __ksymtab_sk_set_memalloc
+ffffffc008a5cc5c r __ksymtab_sk_set_peek_off
+ffffffc008a5cc68 r __ksymtab_sk_setup_caps
+ffffffc008a5cc74 r __ksymtab_skb_append_pagefrags
+ffffffc008a5cc80 r __ksymtab_skb_complete_tx_timestamp
+ffffffc008a5cc8c r __ksymtab_skb_complete_wifi_ack
+ffffffc008a5cc98 r __ksymtab_skb_consume_udp
+ffffffc008a5cca4 r __ksymtab_skb_copy_ubufs
+ffffffc008a5ccb0 r __ksymtab_skb_cow_data
+ffffffc008a5ccbc r __ksymtab_skb_gso_validate_mac_len
+ffffffc008a5ccc8 r __ksymtab_skb_gso_validate_network_len
+ffffffc008a5ccd4 r __ksymtab_skb_morph
+ffffffc008a5cce0 r __ksymtab_skb_mpls_dec_ttl
+ffffffc008a5ccec r __ksymtab_skb_mpls_pop
+ffffffc008a5ccf8 r __ksymtab_skb_mpls_push
+ffffffc008a5cd04 r __ksymtab_skb_mpls_update_lse
+ffffffc008a5cd10 r __ksymtab_skb_partial_csum_set
+ffffffc008a5cd1c r __ksymtab_skb_pull_rcsum
+ffffffc008a5cd28 r __ksymtab_skb_scrub_packet
+ffffffc008a5cd34 r __ksymtab_skb_segment
+ffffffc008a5cd40 r __ksymtab_skb_segment_list
+ffffffc008a5cd4c r __ksymtab_skb_send_sock_locked
+ffffffc008a5cd58 r __ksymtab_skb_splice_bits
+ffffffc008a5cd64 r __ksymtab_skb_to_sgvec
+ffffffc008a5cd70 r __ksymtab_skb_to_sgvec_nomark
+ffffffc008a5cd7c r __ksymtab_skb_tstamp_tx
+ffffffc008a5cd88 r __ksymtab_skb_zerocopy
+ffffffc008a5cd94 r __ksymtab_skb_zerocopy_headlen
+ffffffc008a5cda0 r __ksymtab_skb_zerocopy_iter_stream
+ffffffc008a5cdac r __ksymtab_skcipher_alloc_instance_simple
+ffffffc008a5cdb8 r __ksymtab_skcipher_register_instance
+ffffffc008a5cdc4 r __ksymtab_skcipher_walk_aead_decrypt
+ffffffc008a5cdd0 r __ksymtab_skcipher_walk_aead_encrypt
+ffffffc008a5cddc r __ksymtab_skcipher_walk_async
+ffffffc008a5cde8 r __ksymtab_skcipher_walk_complete
+ffffffc008a5cdf4 r __ksymtab_skcipher_walk_done
+ffffffc008a5ce00 r __ksymtab_skcipher_walk_virt
+ffffffc008a5ce0c r __ksymtab_smp_call_function_any
+ffffffc008a5ce18 r __ksymtab_smp_call_function_single_async
+ffffffc008a5ce24 r __ksymtab_smp_call_on_cpu
+ffffffc008a5ce30 r __ksymtab_smpboot_register_percpu_thread
+ffffffc008a5ce3c r __ksymtab_smpboot_unregister_percpu_thread
+ffffffc008a5ce48 r __ksymtab_snmp_fold_field
+ffffffc008a5ce54 r __ksymtab_soc_device_match
+ffffffc008a5ce60 r __ksymtab_soc_device_register
+ffffffc008a5ce6c r __ksymtab_soc_device_unregister
+ffffffc008a5ce78 r __ksymtab_sock_diag_check_cookie
+ffffffc008a5ce84 r __ksymtab_sock_diag_destroy
+ffffffc008a5ce90 r __ksymtab_sock_diag_put_meminfo
+ffffffc008a5ce9c r __ksymtab_sock_diag_register
+ffffffc008a5cea8 r __ksymtab_sock_diag_register_inet_compat
+ffffffc008a5ceb4 r __ksymtab_sock_diag_save_cookie
+ffffffc008a5cec0 r __ksymtab_sock_diag_unregister
+ffffffc008a5cecc r __ksymtab_sock_diag_unregister_inet_compat
+ffffffc008a5ced8 r __ksymtab_sock_gen_put
+ffffffc008a5cee4 r __ksymtab_sock_inuse_get
+ffffffc008a5cef0 r __ksymtab_sock_prot_inuse_get
+ffffffc008a5cefc r __ksymtab_software_node_find_by_name
+ffffffc008a5cf08 r __ksymtab_software_node_fwnode
+ffffffc008a5cf14 r __ksymtab_software_node_register
+ffffffc008a5cf20 r __ksymtab_software_node_register_node_group
+ffffffc008a5cf2c r __ksymtab_software_node_register_nodes
+ffffffc008a5cf38 r __ksymtab_software_node_unregister
+ffffffc008a5cf44 r __ksymtab_software_node_unregister_node_group
+ffffffc008a5cf50 r __ksymtab_software_node_unregister_nodes
+ffffffc008a5cf5c r __ksymtab_splice_to_pipe
+ffffffc008a5cf68 r __ksymtab_split_page
+ffffffc008a5cf74 r __ksymtab_sprint_symbol
+ffffffc008a5cf80 r __ksymtab_sprint_symbol_build_id
+ffffffc008a5cf8c r __ksymtab_sprint_symbol_no_offset
+ffffffc008a5cf98 r __ksymtab_srcu_barrier
+ffffffc008a5cfa4 r __ksymtab_srcu_batches_completed
+ffffffc008a5cfb0 r __ksymtab_srcu_init_notifier_head
+ffffffc008a5cfbc r __ksymtab_srcu_notifier_call_chain
+ffffffc008a5cfc8 r __ksymtab_srcu_notifier_chain_register
+ffffffc008a5cfd4 r __ksymtab_srcu_notifier_chain_unregister
+ffffffc008a5cfe0 r __ksymtab_srcu_torture_stats_print
+ffffffc008a5cfec r __ksymtab_srcutorture_get_gp_data
+ffffffc008a5cff8 r __ksymtab_stack_depot_fetch
+ffffffc008a5d004 r __ksymtab_stack_depot_init
+ffffffc008a5d010 r __ksymtab_stack_depot_print
+ffffffc008a5d01c r __ksymtab_stack_depot_save
+ffffffc008a5d028 r __ksymtab_stack_depot_snprint
+ffffffc008a5d034 r __ksymtab_stack_trace_print
+ffffffc008a5d040 r __ksymtab_stack_trace_save
+ffffffc008a5d04c r __ksymtab_stack_trace_save_regs
+ffffffc008a5d058 r __ksymtab_stack_trace_save_tsk
+ffffffc008a5d064 r __ksymtab_stack_trace_snprint
+ffffffc008a5d070 r __ksymtab_start_poll_synchronize_rcu
+ffffffc008a5d07c r __ksymtab_start_poll_synchronize_rcu_expedited
+ffffffc008a5d088 r __ksymtab_start_poll_synchronize_rcu_expedited_full
+ffffffc008a5d094 r __ksymtab_start_poll_synchronize_rcu_full
+ffffffc008a5d0a0 r __ksymtab_start_poll_synchronize_srcu
+ffffffc008a5d0ac r __ksymtab_static_key_count
+ffffffc008a5d0b8 r __ksymtab_static_key_disable
+ffffffc008a5d0c4 r __ksymtab_static_key_disable_cpuslocked
+ffffffc008a5d0d0 r __ksymtab_static_key_enable
+ffffffc008a5d0dc r __ksymtab_static_key_enable_cpuslocked
+ffffffc008a5d0e8 r __ksymtab_static_key_initialized
+ffffffc008a5d0f4 r __ksymtab_static_key_slow_dec
+ffffffc008a5d100 r __ksymtab_static_key_slow_inc
+ffffffc008a5d10c r __ksymtab_stop_machine
+ffffffc008a5d118 r __ksymtab_stop_one_cpu
+ffffffc008a5d124 r __ksymtab_stop_one_cpu_nowait
+ffffffc008a5d130 r __ksymtab_subsys_dev_iter_exit
+ffffffc008a5d13c r __ksymtab_subsys_dev_iter_init
+ffffffc008a5d148 r __ksymtab_subsys_dev_iter_next
+ffffffc008a5d154 r __ksymtab_subsys_find_device_by_id
+ffffffc008a5d160 r __ksymtab_subsys_interface_register
+ffffffc008a5d16c r __ksymtab_subsys_interface_unregister
+ffffffc008a5d178 r __ksymtab_subsys_system_register
+ffffffc008a5d184 r __ksymtab_subsys_virtual_register
+ffffffc008a5d190 r __ksymtab_suspend_set_ops
+ffffffc008a5d19c r __ksymtab_suspend_valid_only_mem
+ffffffc008a5d1a8 r __ksymtab_swapcache_mapping
+ffffffc008a5d1b4 r __ksymtab_swiotlb_max_segment
+ffffffc008a5d1c0 r __ksymtab_sync_blockdev_nowait
+ffffffc008a5d1cc r __ksymtab_synchronize_rcu
+ffffffc008a5d1d8 r __ksymtab_synchronize_rcu_expedited
+ffffffc008a5d1e4 r __ksymtab_synchronize_rcu_tasks
+ffffffc008a5d1f0 r __ksymtab_synchronize_srcu
+ffffffc008a5d1fc r __ksymtab_synchronize_srcu_expedited
+ffffffc008a5d208 r __ksymtab_synth_event_add_field
+ffffffc008a5d214 r __ksymtab_synth_event_add_field_str
+ffffffc008a5d220 r __ksymtab_synth_event_add_fields
+ffffffc008a5d22c r __ksymtab_synth_event_add_next_val
+ffffffc008a5d238 r __ksymtab_synth_event_add_val
+ffffffc008a5d244 r __ksymtab_synth_event_cmd_init
+ffffffc008a5d250 r __ksymtab_synth_event_create
+ffffffc008a5d25c r __ksymtab_synth_event_delete
+ffffffc008a5d268 r __ksymtab_synth_event_gen_cmd_array_start
+ffffffc008a5d274 r __ksymtab_synth_event_trace
+ffffffc008a5d280 r __ksymtab_synth_event_trace_array
+ffffffc008a5d28c r __ksymtab_synth_event_trace_end
+ffffffc008a5d298 r __ksymtab_synth_event_trace_start
+ffffffc008a5d2a4 r __ksymtab_syscon_node_to_regmap
+ffffffc008a5d2b0 r __ksymtab_syscon_regmap_lookup_by_compatible
+ffffffc008a5d2bc r __ksymtab_syscon_regmap_lookup_by_phandle
+ffffffc008a5d2c8 r __ksymtab_syscon_regmap_lookup_by_phandle_args
+ffffffc008a5d2d4 r __ksymtab_syscon_regmap_lookup_by_phandle_optional
+ffffffc008a5d2e0 r __ksymtab_syscore_resume
+ffffffc008a5d2ec r __ksymtab_syscore_suspend
+ffffffc008a5d2f8 r __ksymtab_sysctl_long_vals
+ffffffc008a5d304 r __ksymtab_sysctl_sched_features
+ffffffc008a5d310 r __ksymtab_sysctl_sched_latency
+ffffffc008a5d31c r __ksymtab_sysctl_vfs_cache_pressure
+ffffffc008a5d328 r __ksymtab_sysfs_add_file_to_group
+ffffffc008a5d334 r __ksymtab_sysfs_add_link_to_group
+ffffffc008a5d340 r __ksymtab_sysfs_break_active_protection
+ffffffc008a5d34c r __ksymtab_sysfs_change_owner
+ffffffc008a5d358 r __ksymtab_sysfs_chmod_file
+ffffffc008a5d364 r __ksymtab_sysfs_create_bin_file
+ffffffc008a5d370 r __ksymtab_sysfs_create_file_ns
+ffffffc008a5d37c r __ksymtab_sysfs_create_files
+ffffffc008a5d388 r __ksymtab_sysfs_create_group
+ffffffc008a5d394 r __ksymtab_sysfs_create_groups
+ffffffc008a5d3a0 r __ksymtab_sysfs_create_link
+ffffffc008a5d3ac r __ksymtab_sysfs_create_link_nowarn
+ffffffc008a5d3b8 r __ksymtab_sysfs_create_mount_point
+ffffffc008a5d3c4 r __ksymtab_sysfs_emit
+ffffffc008a5d3d0 r __ksymtab_sysfs_emit_at
+ffffffc008a5d3dc r __ksymtab_sysfs_file_change_owner
+ffffffc008a5d3e8 r __ksymtab_sysfs_group_change_owner
+ffffffc008a5d3f4 r __ksymtab_sysfs_groups_change_owner
+ffffffc008a5d400 r __ksymtab_sysfs_merge_group
+ffffffc008a5d40c r __ksymtab_sysfs_notify
+ffffffc008a5d418 r __ksymtab_sysfs_remove_bin_file
+ffffffc008a5d424 r __ksymtab_sysfs_remove_file_from_group
+ffffffc008a5d430 r __ksymtab_sysfs_remove_file_ns
+ffffffc008a5d43c r __ksymtab_sysfs_remove_file_self
+ffffffc008a5d448 r __ksymtab_sysfs_remove_files
+ffffffc008a5d454 r __ksymtab_sysfs_remove_group
+ffffffc008a5d460 r __ksymtab_sysfs_remove_groups
+ffffffc008a5d46c r __ksymtab_sysfs_remove_link
+ffffffc008a5d478 r __ksymtab_sysfs_remove_link_from_group
+ffffffc008a5d484 r __ksymtab_sysfs_remove_mount_point
+ffffffc008a5d490 r __ksymtab_sysfs_rename_link_ns
+ffffffc008a5d49c r __ksymtab_sysfs_unbreak_active_protection
+ffffffc008a5d4a8 r __ksymtab_sysfs_unmerge_group
+ffffffc008a5d4b4 r __ksymtab_sysfs_update_group
+ffffffc008a5d4c0 r __ksymtab_sysfs_update_groups
+ffffffc008a5d4cc r __ksymtab_sysrq_mask
+ffffffc008a5d4d8 r __ksymtab_sysrq_toggle_support
+ffffffc008a5d4e4 r __ksymtab_system_32bit_el0_cpumask
+ffffffc008a5d4f0 r __ksymtab_system_freezable_power_efficient_wq
+ffffffc008a5d4fc r __ksymtab_system_freezable_wq
+ffffffc008a5d508 r __ksymtab_system_highpri_wq
+ffffffc008a5d514 r __ksymtab_system_long_wq
+ffffffc008a5d520 r __ksymtab_system_power_efficient_wq
+ffffffc008a5d52c r __ksymtab_system_unbound_wq
+ffffffc008a5d538 r __ksymtab_task_active_pid_ns
+ffffffc008a5d544 r __ksymtab_task_cputime_adjusted
+ffffffc008a5d550 r __ksymtab_task_rq_lock
+ffffffc008a5d55c r __ksymtab_task_user_regset_view
+ffffffc008a5d568 r __ksymtab_tasklet_unlock
+ffffffc008a5d574 r __ksymtab_tasklet_unlock_wait
+ffffffc008a5d580 r __ksymtab_tasklist_lock
+ffffffc008a5d58c r __ksymtab_tcp_abort
+ffffffc008a5d598 r __ksymtab_tcp_ca_openreq_child
+ffffffc008a5d5a4 r __ksymtab_tcp_cong_avoid_ai
+ffffffc008a5d5b0 r __ksymtab_tcp_done
+ffffffc008a5d5bc r __ksymtab_tcp_enter_memory_pressure
+ffffffc008a5d5c8 r __ksymtab_tcp_get_info
+ffffffc008a5d5d4 r __ksymtab_tcp_get_syncookie_mss
+ffffffc008a5d5e0 r __ksymtab_tcp_leave_memory_pressure
+ffffffc008a5d5ec r __ksymtab_tcp_memory_per_cpu_fw_alloc
+ffffffc008a5d5f8 r __ksymtab_tcp_memory_pressure
+ffffffc008a5d604 r __ksymtab_tcp_orphan_count
+ffffffc008a5d610 r __ksymtab_tcp_parse_mss_option
+ffffffc008a5d61c r __ksymtab_tcp_rate_check_app_limited
+ffffffc008a5d628 r __ksymtab_tcp_register_congestion_control
+ffffffc008a5d634 r __ksymtab_tcp_register_ulp
+ffffffc008a5d640 r __ksymtab_tcp_reno_cong_avoid
+ffffffc008a5d64c r __ksymtab_tcp_reno_ssthresh
+ffffffc008a5d658 r __ksymtab_tcp_reno_undo_cwnd
+ffffffc008a5d664 r __ksymtab_tcp_sendmsg_locked
+ffffffc008a5d670 r __ksymtab_tcp_sendpage_locked
+ffffffc008a5d67c r __ksymtab_tcp_set_keepalive
+ffffffc008a5d688 r __ksymtab_tcp_set_state
+ffffffc008a5d694 r __ksymtab_tcp_slow_start
+ffffffc008a5d6a0 r __ksymtab_tcp_twsk_destructor
+ffffffc008a5d6ac r __ksymtab_tcp_twsk_purge
+ffffffc008a5d6b8 r __ksymtab_tcp_twsk_unique
+ffffffc008a5d6c4 r __ksymtab_tcp_unregister_congestion_control
+ffffffc008a5d6d0 r __ksymtab_tcp_unregister_ulp
+ffffffc008a5d6dc r __ksymtab_tcpv6_prot
+ffffffc008a5d6e8 r __ksymtab_thermal_pressure
+ffffffc008a5d6f4 r __ksymtab_this_cpu_has_cap
+ffffffc008a5d700 r __ksymtab_thp_get_unmapped_area
+ffffffc008a5d70c r __ksymtab_thread_group_cputime_adjusted
+ffffffc008a5d718 r __ksymtab_tick_broadcast_control
+ffffffc008a5d724 r __ksymtab_tick_broadcast_oneshot_control
+ffffffc008a5d730 r __ksymtab_tick_nohz_get_idle_calls_cpu
+ffffffc008a5d73c r __ksymtab_tick_nohz_get_sleep_length
+ffffffc008a5d748 r __ksymtab_timecounter_cyc2time
+ffffffc008a5d754 r __ksymtab_timecounter_init
+ffffffc008a5d760 r __ksymtab_timecounter_read
+ffffffc008a5d76c r __ksymtab_timer_of_init
+ffffffc008a5d778 r __ksymtab_timer_unstable_counter_workaround
+ffffffc008a5d784 r __ksymtab_timerqueue_add
+ffffffc008a5d790 r __ksymtab_timerqueue_del
+ffffffc008a5d79c r __ksymtab_timerqueue_iterate_next
+ffffffc008a5d7a8 r __ksymtab_to_software_node
+ffffffc008a5d7b4 r __ksymtab_topology_clear_scale_freq_source
+ffffffc008a5d7c0 r __ksymtab_topology_set_scale_freq_source
+ffffffc008a5d7cc r __ksymtab_topology_update_done
+ffffffc008a5d7d8 r __ksymtab_topology_update_thermal_pressure
+ffffffc008a5d7e4 r __ksymtab_trace_add_event_call
+ffffffc008a5d7f0 r __ksymtab_trace_array_destroy
+ffffffc008a5d7fc r __ksymtab_trace_array_get_by_name
+ffffffc008a5d808 r __ksymtab_trace_array_init_printk
+ffffffc008a5d814 r __ksymtab_trace_array_printk
+ffffffc008a5d820 r __ksymtab_trace_array_put
+ffffffc008a5d82c r __ksymtab_trace_array_set_clr_event
+ffffffc008a5d838 r __ksymtab_trace_clock
+ffffffc008a5d844 r __ksymtab_trace_clock_global
+ffffffc008a5d850 r __ksymtab_trace_clock_jiffies
+ffffffc008a5d85c r __ksymtab_trace_clock_local
+ffffffc008a5d868 r __ksymtab_trace_define_field
+ffffffc008a5d874 r __ksymtab_trace_dump_stack
+ffffffc008a5d880 r __ksymtab_trace_event_buffer_commit
+ffffffc008a5d88c r __ksymtab_trace_event_buffer_lock_reserve
+ffffffc008a5d898 r __ksymtab_trace_event_buffer_reserve
+ffffffc008a5d8a4 r __ksymtab_trace_event_ignore_this_pid
+ffffffc008a5d8b0 r __ksymtab_trace_event_raw_init
+ffffffc008a5d8bc r __ksymtab_trace_event_reg
+ffffffc008a5d8c8 r __ksymtab_trace_get_event_file
+ffffffc008a5d8d4 r __ksymtab_trace_handle_return
+ffffffc008a5d8e0 r __ksymtab_trace_output_call
+ffffffc008a5d8ec r __ksymtab_trace_print_bitmask_seq
+ffffffc008a5d8f8 r __ksymtab_trace_printk_init_buffers
+ffffffc008a5d904 r __ksymtab_trace_put_event_file
+ffffffc008a5d910 r __ksymtab_trace_remove_event_call
+ffffffc008a5d91c r __ksymtab_trace_seq_bitmask
+ffffffc008a5d928 r __ksymtab_trace_seq_bprintf
+ffffffc008a5d934 r __ksymtab_trace_seq_path
+ffffffc008a5d940 r __ksymtab_trace_seq_printf
+ffffffc008a5d94c r __ksymtab_trace_seq_putc
+ffffffc008a5d958 r __ksymtab_trace_seq_putmem
+ffffffc008a5d964 r __ksymtab_trace_seq_putmem_hex
+ffffffc008a5d970 r __ksymtab_trace_seq_puts
+ffffffc008a5d97c r __ksymtab_trace_seq_to_user
+ffffffc008a5d988 r __ksymtab_trace_seq_vprintf
+ffffffc008a5d994 r __ksymtab_trace_set_clr_event
+ffffffc008a5d9a0 r __ksymtab_trace_vbprintk
+ffffffc008a5d9ac r __ksymtab_trace_vprintk
+ffffffc008a5d9b8 r __ksymtab_tracepoint_probe_register
+ffffffc008a5d9c4 r __ksymtab_tracepoint_probe_register_prio
+ffffffc008a5d9d0 r __ksymtab_tracepoint_probe_register_prio_may_exist
+ffffffc008a5d9dc r __ksymtab_tracepoint_probe_unregister
+ffffffc008a5d9e8 r __ksymtab_tracepoint_srcu
+ffffffc008a5d9f4 r __ksymtab_tracing_alloc_snapshot
+ffffffc008a5da00 r __ksymtab_tracing_cond_snapshot_data
+ffffffc008a5da0c r __ksymtab_tracing_is_on
+ffffffc008a5da18 r __ksymtab_tracing_off
+ffffffc008a5da24 r __ksymtab_tracing_on
+ffffffc008a5da30 r __ksymtab_tracing_snapshot
+ffffffc008a5da3c r __ksymtab_tracing_snapshot_alloc
+ffffffc008a5da48 r __ksymtab_tracing_snapshot_cond
+ffffffc008a5da54 r __ksymtab_tracing_snapshot_cond_disable
+ffffffc008a5da60 r __ksymtab_tracing_snapshot_cond_enable
+ffffffc008a5da6c r __ksymtab_transport_add_device
+ffffffc008a5da78 r __ksymtab_transport_class_register
+ffffffc008a5da84 r __ksymtab_transport_class_unregister
+ffffffc008a5da90 r __ksymtab_transport_configure_device
+ffffffc008a5da9c r __ksymtab_transport_destroy_device
+ffffffc008a5daa8 r __ksymtab_transport_remove_device
+ffffffc008a5dab4 r __ksymtab_transport_setup_device
+ffffffc008a5dac0 r __ksymtab_tty_buffer_lock_exclusive
+ffffffc008a5dacc r __ksymtab_tty_buffer_request_room
+ffffffc008a5dad8 r __ksymtab_tty_buffer_set_limit
+ffffffc008a5dae4 r __ksymtab_tty_buffer_space_avail
+ffffffc008a5daf0 r __ksymtab_tty_buffer_unlock_exclusive
+ffffffc008a5dafc r __ksymtab_tty_dev_name_to_number
+ffffffc008a5db08 r __ksymtab_tty_encode_baud_rate
+ffffffc008a5db14 r __ksymtab_tty_get_char_size
+ffffffc008a5db20 r __ksymtab_tty_get_frame_size
+ffffffc008a5db2c r __ksymtab_tty_get_icount
+ffffffc008a5db38 r __ksymtab_tty_get_pgrp
+ffffffc008a5db44 r __ksymtab_tty_init_termios
+ffffffc008a5db50 r __ksymtab_tty_kclose
+ffffffc008a5db5c r __ksymtab_tty_kopen_exclusive
+ffffffc008a5db68 r __ksymtab_tty_kopen_shared
+ffffffc008a5db74 r __ksymtab_tty_ldisc_deref
+ffffffc008a5db80 r __ksymtab_tty_ldisc_flush
+ffffffc008a5db8c r __ksymtab_tty_ldisc_receive_buf
+ffffffc008a5db98 r __ksymtab_tty_ldisc_ref
+ffffffc008a5dba4 r __ksymtab_tty_ldisc_ref_wait
+ffffffc008a5dbb0 r __ksymtab_tty_mode_ioctl
+ffffffc008a5dbbc r __ksymtab_tty_perform_flush
+ffffffc008a5dbc8 r __ksymtab_tty_port_default_client_ops
+ffffffc008a5dbd4 r __ksymtab_tty_port_install
+ffffffc008a5dbe0 r __ksymtab_tty_port_link_device
+ffffffc008a5dbec r __ksymtab_tty_port_register_device
+ffffffc008a5dbf8 r __ksymtab_tty_port_register_device_attr
+ffffffc008a5dc04 r __ksymtab_tty_port_register_device_attr_serdev
+ffffffc008a5dc10 r __ksymtab_tty_port_register_device_serdev
+ffffffc008a5dc1c r __ksymtab_tty_port_tty_hangup
+ffffffc008a5dc28 r __ksymtab_tty_port_tty_wakeup
+ffffffc008a5dc34 r __ksymtab_tty_port_unregister_device
+ffffffc008a5dc40 r __ksymtab_tty_prepare_flip_string
+ffffffc008a5dc4c r __ksymtab_tty_put_char
+ffffffc008a5dc58 r __ksymtab_tty_register_device_attr
+ffffffc008a5dc64 r __ksymtab_tty_release_struct
+ffffffc008a5dc70 r __ksymtab_tty_save_termios
+ffffffc008a5dc7c r __ksymtab_tty_set_ldisc
+ffffffc008a5dc88 r __ksymtab_tty_set_termios
+ffffffc008a5dc94 r __ksymtab_tty_standard_install
+ffffffc008a5dca0 r __ksymtab_tty_termios_encode_baud_rate
+ffffffc008a5dcac r __ksymtab_tty_wakeup
+ffffffc008a5dcb8 r __ksymtab_uart_console_device
+ffffffc008a5dcc4 r __ksymtab_uart_console_write
+ffffffc008a5dcd0 r __ksymtab_uart_get_rs485_mode
+ffffffc008a5dcdc r __ksymtab_uart_handle_cts_change
+ffffffc008a5dce8 r __ksymtab_uart_handle_dcd_change
+ffffffc008a5dcf4 r __ksymtab_uart_insert_char
+ffffffc008a5dd00 r __ksymtab_uart_parse_earlycon
+ffffffc008a5dd0c r __ksymtab_uart_parse_options
+ffffffc008a5dd18 r __ksymtab_uart_set_options
+ffffffc008a5dd24 r __ksymtab_uart_try_toggle_sysrq
+ffffffc008a5dd30 r __ksymtab_uart_xchar_out
+ffffffc008a5dd3c r __ksymtab_udp4_hwcsum
+ffffffc008a5dd48 r __ksymtab_udp_abort
+ffffffc008a5dd54 r __ksymtab_udp_cmsg_send
+ffffffc008a5dd60 r __ksymtab_udp_destruct_common
+ffffffc008a5dd6c r __ksymtab_udp_memory_per_cpu_fw_alloc
+ffffffc008a5dd78 r __ksymtab_udp_tunnel_nic_ops
+ffffffc008a5dd84 r __ksymtab_uio_event_notify
+ffffffc008a5dd90 r __ksymtab_uio_unregister_device
+ffffffc008a5dd9c r __ksymtab_unix_inq_len
+ffffffc008a5dda8 r __ksymtab_unix_outq_len
+ffffffc008a5ddb4 r __ksymtab_unix_peer_get
+ffffffc008a5ddc0 r __ksymtab_unlock_system_sleep
+ffffffc008a5ddcc r __ksymtab_unmap_mapping_pages
+ffffffc008a5ddd8 r __ksymtab_unregister_die_notifier
+ffffffc008a5dde4 r __ksymtab_unregister_firmware_config_sysctl
+ffffffc008a5ddf0 r __ksymtab_unregister_ftrace_export
+ffffffc008a5ddfc r __ksymtab_unregister_hw_breakpoint
+ffffffc008a5de08 r __ksymtab_unregister_kernel_break_hook
+ffffffc008a5de14 r __ksymtab_unregister_keyboard_notifier
+ffffffc008a5de20 r __ksymtab_unregister_net_sysctl_table
+ffffffc008a5de2c r __ksymtab_unregister_netevent_notifier
+ffffffc008a5de38 r __ksymtab_unregister_oom_notifier
+ffffffc008a5de44 r __ksymtab_unregister_pernet_device
+ffffffc008a5de50 r __ksymtab_unregister_pernet_subsys
+ffffffc008a5de5c r __ksymtab_unregister_platform_power_off
+ffffffc008a5de68 r __ksymtab_unregister_pm_notifier
+ffffffc008a5de74 r __ksymtab_unregister_sys_off_handler
+ffffffc008a5de80 r __ksymtab_unregister_syscore_ops
+ffffffc008a5de8c r __ksymtab_unregister_trace_event
+ffffffc008a5de98 r __ksymtab_unregister_tracepoint_module_notifier
+ffffffc008a5dea4 r __ksymtab_unregister_user_break_hook
+ffffffc008a5deb0 r __ksymtab_unregister_virtio_device
+ffffffc008a5debc r __ksymtab_unregister_virtio_driver
+ffffffc008a5dec8 r __ksymtab_unregister_vmap_purge_notifier
+ffffffc008a5ded4 r __ksymtab_unregister_vt_notifier
+ffffffc008a5dee0 r __ksymtab_unregister_wide_hw_breakpoint
+ffffffc008a5deec r __ksymtab_unshare_fs_struct
+ffffffc008a5def8 r __ksymtab_update_rq_clock
+ffffffc008a5df04 r __ksymtab_uprobe_register
+ffffffc008a5df10 r __ksymtab_uprobe_register_refctr
+ffffffc008a5df1c r __ksymtab_uprobe_unregister
+ffffffc008a5df28 r __ksymtab_usermodehelper_read_lock_wait
+ffffffc008a5df34 r __ksymtab_usermodehelper_read_trylock
+ffffffc008a5df40 r __ksymtab_usermodehelper_read_unlock
+ffffffc008a5df4c r __ksymtab_utf8_data_table
+ffffffc008a5df58 r __ksymtab_uuid_gen
+ffffffc008a5df64 r __ksymtab_validate_xmit_skb_list
+ffffffc008a5df70 r __ksymtab_vbin_printf
+ffffffc008a5df7c r __ksymtab_vc_scrolldelta_helper
+ffffffc008a5df88 r __ksymtab_vfs_cancel_lock
+ffffffc008a5df94 r __ksymtab_vfs_fallocate
+ffffffc008a5dfa0 r __ksymtab_vfs_getxattr
+ffffffc008a5dfac r __ksymtab_vfs_inode_has_locks
+ffffffc008a5dfb8 r __ksymtab_vfs_kern_mount
+ffffffc008a5dfc4 r __ksymtab_vfs_listxattr
+ffffffc008a5dfd0 r __ksymtab_vfs_lock_file
+ffffffc008a5dfdc r __ksymtab_vfs_removexattr
+ffffffc008a5dfe8 r __ksymtab_vfs_setlease
+ffffffc008a5dff4 r __ksymtab_vfs_setxattr
+ffffffc008a5e000 r __ksymtab_vfs_submount
+ffffffc008a5e00c r __ksymtab_vfs_test_lock
+ffffffc008a5e018 r __ksymtab_vfs_truncate
+ffffffc008a5e024 r __ksymtab_vga_default_device
+ffffffc008a5e030 r __ksymtab_virtio_add_status
+ffffffc008a5e03c r __ksymtab_virtio_break_device
+ffffffc008a5e048 r __ksymtab_virtio_check_driver_offered_feature
+ffffffc008a5e054 r __ksymtab_virtio_check_mem_acc_cb
+ffffffc008a5e060 r __ksymtab_virtio_config_changed
+ffffffc008a5e06c r __ksymtab_virtio_device_freeze
+ffffffc008a5e078 r __ksymtab_virtio_device_restore
+ffffffc008a5e084 r __ksymtab_virtio_max_dma_size
+ffffffc008a5e090 r __ksymtab_virtio_require_restricted_mem_acc
+ffffffc008a5e09c r __ksymtab_virtio_reset_device
+ffffffc008a5e0a8 r __ksymtab_virtio_transport_connect
+ffffffc008a5e0b4 r __ksymtab_virtio_transport_deliver_tap_pkt
+ffffffc008a5e0c0 r __ksymtab_virtio_transport_destruct
+ffffffc008a5e0cc r __ksymtab_virtio_transport_dgram_allow
+ffffffc008a5e0d8 r __ksymtab_virtio_transport_dgram_bind
+ffffffc008a5e0e4 r __ksymtab_virtio_transport_dgram_dequeue
+ffffffc008a5e0f0 r __ksymtab_virtio_transport_dgram_enqueue
+ffffffc008a5e0fc r __ksymtab_virtio_transport_do_socket_init
+ffffffc008a5e108 r __ksymtab_virtio_transport_free_pkt
+ffffffc008a5e114 r __ksymtab_virtio_transport_get_credit
+ffffffc008a5e120 r __ksymtab_virtio_transport_inc_tx_pkt
+ffffffc008a5e12c r __ksymtab_virtio_transport_max_vsock_pkt_buf_size
+ffffffc008a5e138 r __ksymtab_virtio_transport_notify_buffer_size
+ffffffc008a5e144 r __ksymtab_virtio_transport_notify_poll_in
+ffffffc008a5e150 r __ksymtab_virtio_transport_notify_poll_out
+ffffffc008a5e15c r __ksymtab_virtio_transport_notify_recv_init
+ffffffc008a5e168 r __ksymtab_virtio_transport_notify_recv_post_dequeue
+ffffffc008a5e174 r __ksymtab_virtio_transport_notify_recv_pre_block
+ffffffc008a5e180 r __ksymtab_virtio_transport_notify_recv_pre_dequeue
+ffffffc008a5e18c r __ksymtab_virtio_transport_notify_send_init
+ffffffc008a5e198 r __ksymtab_virtio_transport_notify_send_post_enqueue
+ffffffc008a5e1a4 r __ksymtab_virtio_transport_notify_send_pre_block
+ffffffc008a5e1b0 r __ksymtab_virtio_transport_notify_send_pre_enqueue
+ffffffc008a5e1bc r __ksymtab_virtio_transport_put_credit
+ffffffc008a5e1c8 r __ksymtab_virtio_transport_recv_pkt
+ffffffc008a5e1d4 r __ksymtab_virtio_transport_release
+ffffffc008a5e1e0 r __ksymtab_virtio_transport_seqpacket_dequeue
+ffffffc008a5e1ec r __ksymtab_virtio_transport_seqpacket_enqueue
+ffffffc008a5e1f8 r __ksymtab_virtio_transport_seqpacket_has_data
+ffffffc008a5e204 r __ksymtab_virtio_transport_shutdown
+ffffffc008a5e210 r __ksymtab_virtio_transport_stream_allow
+ffffffc008a5e21c r __ksymtab_virtio_transport_stream_dequeue
+ffffffc008a5e228 r __ksymtab_virtio_transport_stream_enqueue
+ffffffc008a5e234 r __ksymtab_virtio_transport_stream_has_data
+ffffffc008a5e240 r __ksymtab_virtio_transport_stream_has_space
+ffffffc008a5e24c r __ksymtab_virtio_transport_stream_is_active
+ffffffc008a5e258 r __ksymtab_virtio_transport_stream_rcvhiwat
+ffffffc008a5e264 r __ksymtab_virtqueue_add_inbuf
+ffffffc008a5e270 r __ksymtab_virtqueue_add_inbuf_ctx
+ffffffc008a5e27c r __ksymtab_virtqueue_add_outbuf
+ffffffc008a5e288 r __ksymtab_virtqueue_add_sgs
+ffffffc008a5e294 r __ksymtab_virtqueue_detach_unused_buf
+ffffffc008a5e2a0 r __ksymtab_virtqueue_disable_cb
+ffffffc008a5e2ac r __ksymtab_virtqueue_disable_dma_api_for_buffers
+ffffffc008a5e2b8 r __ksymtab_virtqueue_enable_cb
+ffffffc008a5e2c4 r __ksymtab_virtqueue_enable_cb_delayed
+ffffffc008a5e2d0 r __ksymtab_virtqueue_enable_cb_prepare
+ffffffc008a5e2dc r __ksymtab_virtqueue_get_avail_addr
+ffffffc008a5e2e8 r __ksymtab_virtqueue_get_buf
+ffffffc008a5e2f4 r __ksymtab_virtqueue_get_buf_ctx
+ffffffc008a5e300 r __ksymtab_virtqueue_get_desc_addr
+ffffffc008a5e30c r __ksymtab_virtqueue_get_used_addr
+ffffffc008a5e318 r __ksymtab_virtqueue_get_vring
+ffffffc008a5e324 r __ksymtab_virtqueue_get_vring_size
+ffffffc008a5e330 r __ksymtab_virtqueue_is_broken
+ffffffc008a5e33c r __ksymtab_virtqueue_kick
+ffffffc008a5e348 r __ksymtab_virtqueue_kick_prepare
+ffffffc008a5e354 r __ksymtab_virtqueue_notify
+ffffffc008a5e360 r __ksymtab_virtqueue_poll
+ffffffc008a5e36c r __ksymtab_virtqueue_resize
+ffffffc008a5e378 r __ksymtab_vm_memory_committed
+ffffffc008a5e384 r __ksymtab_vm_unmap_aliases
+ffffffc008a5e390 r __ksymtab_vm_unmapped_area
+ffffffc008a5e39c r __ksymtab_vmalloc_huge
+ffffffc008a5e3a8 r __ksymtab_vmalloc_nr_pages
+ffffffc008a5e3b4 r __ksymtab_vmf_insert_pfn_pmd_prot
+ffffffc008a5e3c0 r __ksymtab_vp_legacy_config_vector
+ffffffc008a5e3cc r __ksymtab_vp_legacy_get_driver_features
+ffffffc008a5e3d8 r __ksymtab_vp_legacy_get_features
+ffffffc008a5e3e4 r __ksymtab_vp_legacy_get_queue_enable
+ffffffc008a5e3f0 r __ksymtab_vp_legacy_get_queue_size
+ffffffc008a5e3fc r __ksymtab_vp_legacy_get_status
+ffffffc008a5e408 r __ksymtab_vp_legacy_probe
+ffffffc008a5e414 r __ksymtab_vp_legacy_queue_vector
+ffffffc008a5e420 r __ksymtab_vp_legacy_remove
+ffffffc008a5e42c r __ksymtab_vp_legacy_set_features
+ffffffc008a5e438 r __ksymtab_vp_legacy_set_queue_address
+ffffffc008a5e444 r __ksymtab_vp_legacy_set_status
+ffffffc008a5e450 r __ksymtab_vp_modern_config_vector
+ffffffc008a5e45c r __ksymtab_vp_modern_generation
+ffffffc008a5e468 r __ksymtab_vp_modern_get_driver_features
+ffffffc008a5e474 r __ksymtab_vp_modern_get_features
+ffffffc008a5e480 r __ksymtab_vp_modern_get_num_queues
+ffffffc008a5e48c r __ksymtab_vp_modern_get_queue_enable
+ffffffc008a5e498 r __ksymtab_vp_modern_get_queue_reset
+ffffffc008a5e4a4 r __ksymtab_vp_modern_get_queue_size
+ffffffc008a5e4b0 r __ksymtab_vp_modern_get_status
+ffffffc008a5e4bc r __ksymtab_vp_modern_map_vq_notify
+ffffffc008a5e4c8 r __ksymtab_vp_modern_probe
+ffffffc008a5e4d4 r __ksymtab_vp_modern_queue_address
+ffffffc008a5e4e0 r __ksymtab_vp_modern_queue_vector
+ffffffc008a5e4ec r __ksymtab_vp_modern_remove
+ffffffc008a5e4f8 r __ksymtab_vp_modern_set_features
+ffffffc008a5e504 r __ksymtab_vp_modern_set_queue_enable
+ffffffc008a5e510 r __ksymtab_vp_modern_set_queue_reset
+ffffffc008a5e51c r __ksymtab_vp_modern_set_queue_size
+ffffffc008a5e528 r __ksymtab_vp_modern_set_status
+ffffffc008a5e534 r __ksymtab_vprintk_default
+ffffffc008a5e540 r __ksymtab_vring_create_virtqueue
+ffffffc008a5e54c r __ksymtab_vring_del_virtqueue
+ffffffc008a5e558 r __ksymtab_vring_interrupt
+ffffffc008a5e564 r __ksymtab_vring_new_virtqueue
+ffffffc008a5e570 r __ksymtab_vring_transport_features
+ffffffc008a5e57c r __ksymtab_vsock_add_pending
+ffffffc008a5e588 r __ksymtab_vsock_add_tap
+ffffffc008a5e594 r __ksymtab_vsock_addr_bound
+ffffffc008a5e5a0 r __ksymtab_vsock_addr_cast
+ffffffc008a5e5ac r __ksymtab_vsock_addr_equals_addr
+ffffffc008a5e5b8 r __ksymtab_vsock_addr_init
+ffffffc008a5e5c4 r __ksymtab_vsock_addr_unbind
+ffffffc008a5e5d0 r __ksymtab_vsock_addr_validate
+ffffffc008a5e5dc r __ksymtab_vsock_assign_transport
+ffffffc008a5e5e8 r __ksymtab_vsock_bind_table
+ffffffc008a5e5f4 r __ksymtab_vsock_connected_table
+ffffffc008a5e600 r __ksymtab_vsock_core_get_transport
+ffffffc008a5e60c r __ksymtab_vsock_core_register
+ffffffc008a5e618 r __ksymtab_vsock_core_unregister
+ffffffc008a5e624 r __ksymtab_vsock_create_connected
+ffffffc008a5e630 r __ksymtab_vsock_data_ready
+ffffffc008a5e63c r __ksymtab_vsock_deliver_tap
+ffffffc008a5e648 r __ksymtab_vsock_enqueue_accept
+ffffffc008a5e654 r __ksymtab_vsock_find_bound_socket
+ffffffc008a5e660 r __ksymtab_vsock_find_cid
+ffffffc008a5e66c r __ksymtab_vsock_find_connected_socket
+ffffffc008a5e678 r __ksymtab_vsock_for_each_connected_socket
+ffffffc008a5e684 r __ksymtab_vsock_insert_connected
+ffffffc008a5e690 r __ksymtab_vsock_remove_bound
+ffffffc008a5e69c r __ksymtab_vsock_remove_connected
+ffffffc008a5e6a8 r __ksymtab_vsock_remove_pending
+ffffffc008a5e6b4 r __ksymtab_vsock_remove_sock
+ffffffc008a5e6c0 r __ksymtab_vsock_remove_tap
+ffffffc008a5e6cc r __ksymtab_vsock_stream_has_data
+ffffffc008a5e6d8 r __ksymtab_vsock_stream_has_space
+ffffffc008a5e6e4 r __ksymtab_vsock_table_lock
+ffffffc008a5e6f0 r __ksymtab_vt_get_leds
+ffffffc008a5e6fc r __ksymtab_wait_for_device_probe
+ffffffc008a5e708 r __ksymtab_wait_for_initramfs
+ffffffc008a5e714 r __ksymtab_wait_for_stable_page
+ffffffc008a5e720 r __ksymtab_wait_on_page_writeback
+ffffffc008a5e72c r __ksymtab_wake_up_all_idle_cpus
+ffffffc008a5e738 r __ksymtab_wake_up_if_idle
+ffffffc008a5e744 r __ksymtab_wakeme_after_rcu
+ffffffc008a5e750 r __ksymtab_wakeup_source_add
+ffffffc008a5e75c r __ksymtab_wakeup_source_create
+ffffffc008a5e768 r __ksymtab_wakeup_source_destroy
+ffffffc008a5e774 r __ksymtab_wakeup_source_register
+ffffffc008a5e780 r __ksymtab_wakeup_source_remove
+ffffffc008a5e78c r __ksymtab_wakeup_source_unregister
+ffffffc008a5e798 r __ksymtab_wakeup_sources_read_lock
+ffffffc008a5e7a4 r __ksymtab_wakeup_sources_read_unlock
+ffffffc008a5e7b0 r __ksymtab_wakeup_sources_walk_next
+ffffffc008a5e7bc r __ksymtab_wakeup_sources_walk_start
+ffffffc008a5e7c8 r __ksymtab_walk_iomem_res_desc
+ffffffc008a5e7d4 r __ksymtab_watchdog_init_timeout
+ffffffc008a5e7e0 r __ksymtab_watchdog_register_device
+ffffffc008a5e7ec r __ksymtab_watchdog_set_last_hw_keepalive
+ffffffc008a5e7f8 r __ksymtab_watchdog_set_restart_priority
+ffffffc008a5e804 r __ksymtab_watchdog_unregister_device
+ffffffc008a5e810 r __ksymtab_wb_writeout_inc
+ffffffc008a5e81c r __ksymtab_work_busy
+ffffffc008a5e828 r __ksymtab_work_on_cpu
+ffffffc008a5e834 r __ksymtab_work_on_cpu_safe
+ffffffc008a5e840 r __ksymtab_workqueue_congested
+ffffffc008a5e84c r __ksymtab_workqueue_set_max_active
+ffffffc008a5e858 r __ksymtab_wq_worker_comm
+ffffffc008a5e864 r __ksymtab_xa_delete_node
+ffffffc008a5e870 r __ksymtab_xas_clear_mark
+ffffffc008a5e87c r __ksymtab_xas_create_range
+ffffffc008a5e888 r __ksymtab_xas_find
+ffffffc008a5e894 r __ksymtab_xas_find_conflict
+ffffffc008a5e8a0 r __ksymtab_xas_find_marked
+ffffffc008a5e8ac r __ksymtab_xas_get_mark
+ffffffc008a5e8b8 r __ksymtab_xas_init_marks
+ffffffc008a5e8c4 r __ksymtab_xas_load
+ffffffc008a5e8d0 r __ksymtab_xas_nomem
+ffffffc008a5e8dc r __ksymtab_xas_pause
+ffffffc008a5e8e8 r __ksymtab_xas_set_mark
+ffffffc008a5e8f4 r __ksymtab_xas_split
+ffffffc008a5e900 r __ksymtab_xas_split_alloc
+ffffffc008a5e90c r __ksymtab_xas_store
+ffffffc008a5e918 r __ksymtab_xdp_alloc_skb_bulk
+ffffffc008a5e924 r __ksymtab_xdp_attachment_setup
+ffffffc008a5e930 r __ksymtab_xdp_build_skb_from_frame
+ffffffc008a5e93c r __ksymtab_xdp_convert_zc_to_xdp_frame
+ffffffc008a5e948 r __ksymtab_xdp_do_flush
+ffffffc008a5e954 r __ksymtab_xdp_do_redirect
+ffffffc008a5e960 r __ksymtab_xdp_do_redirect_frame
+ffffffc008a5e96c r __ksymtab_xdp_flush_frame_bulk
+ffffffc008a5e978 r __ksymtab_xdp_master_redirect
+ffffffc008a5e984 r __ksymtab_xdp_reg_mem_model
+ffffffc008a5e990 r __ksymtab_xdp_return_buff
+ffffffc008a5e99c r __ksymtab_xdp_return_frame
+ffffffc008a5e9a8 r __ksymtab_xdp_return_frame_bulk
+ffffffc008a5e9b4 r __ksymtab_xdp_return_frame_rx_napi
+ffffffc008a5e9c0 r __ksymtab_xdp_rxq_info_is_reg
+ffffffc008a5e9cc r __ksymtab_xdp_rxq_info_reg_mem_model
+ffffffc008a5e9d8 r __ksymtab_xdp_rxq_info_unreg
+ffffffc008a5e9e4 r __ksymtab_xdp_rxq_info_unreg_mem_model
+ffffffc008a5e9f0 r __ksymtab_xdp_rxq_info_unused
+ffffffc008a5e9fc r __ksymtab_xdp_unreg_mem_model
+ffffffc008a5ea08 r __ksymtab_xdp_warn
+ffffffc008a5ea14 r __ksymtab_xfrm_aalg_get_byid
+ffffffc008a5ea20 r __ksymtab_xfrm_aalg_get_byidx
+ffffffc008a5ea2c r __ksymtab_xfrm_aalg_get_byname
+ffffffc008a5ea38 r __ksymtab_xfrm_aead_get_byname
+ffffffc008a5ea44 r __ksymtab_xfrm_audit_policy_add
+ffffffc008a5ea50 r __ksymtab_xfrm_audit_policy_delete
+ffffffc008a5ea5c r __ksymtab_xfrm_audit_state_add
+ffffffc008a5ea68 r __ksymtab_xfrm_audit_state_delete
+ffffffc008a5ea74 r __ksymtab_xfrm_audit_state_icvfail
+ffffffc008a5ea80 r __ksymtab_xfrm_audit_state_notfound
+ffffffc008a5ea8c r __ksymtab_xfrm_audit_state_notfound_simple
+ffffffc008a5ea98 r __ksymtab_xfrm_audit_state_replay
+ffffffc008a5eaa4 r __ksymtab_xfrm_audit_state_replay_overflow
+ffffffc008a5eab0 r __ksymtab_xfrm_calg_get_byid
+ffffffc008a5eabc r __ksymtab_xfrm_calg_get_byname
+ffffffc008a5eac8 r __ksymtab_xfrm_count_pfkey_auth_supported
+ffffffc008a5ead4 r __ksymtab_xfrm_count_pfkey_enc_supported
+ffffffc008a5eae0 r __ksymtab_xfrm_ealg_get_byid
+ffffffc008a5eaec r __ksymtab_xfrm_ealg_get_byidx
+ffffffc008a5eaf8 r __ksymtab_xfrm_ealg_get_byname
+ffffffc008a5eb04 r __ksymtab_xfrm_local_error
+ffffffc008a5eb10 r __ksymtab_xfrm_msg_min
+ffffffc008a5eb1c r __ksymtab_xfrm_output
+ffffffc008a5eb28 r __ksymtab_xfrm_output_resume
+ffffffc008a5eb34 r __ksymtab_xfrm_probe_algs
+ffffffc008a5eb40 r __ksymtab_xfrm_state_afinfo_get_rcu
+ffffffc008a5eb4c r __ksymtab_xfrm_state_mtu
+ffffffc008a5eb58 r __ksymtab_xfrma_policy
+ffffffc008a5eb64 r __ksymtab_yield_to
+ffffffc008a5eb70 r __ksymtab_zap_vma_ptes
+ffffffc008a5eb7c r __ksymtab_zs_compact
+ffffffc008a5eb88 r __ksymtab_zs_create_pool
+ffffffc008a5eb94 r __ksymtab_zs_destroy_pool
+ffffffc008a5eba0 r __ksymtab_zs_free
+ffffffc008a5ebac r __ksymtab_zs_get_total_pages
+ffffffc008a5ebb8 r __ksymtab_zs_huge_class_size
+ffffffc008a5ebc4 r __ksymtab_zs_malloc
+ffffffc008a5ebd0 r __ksymtab_zs_map_object
+ffffffc008a5ebdc r __ksymtab_zs_pool_stats
+ffffffc008a5ebe8 r __ksymtab_zs_unmap_object
+ffffffc008a5ebf4 R __start___kcrctab
+ffffffc008a5ebf4 R __start___kcrctab_gpl
+ffffffc008a5ebf4 R __stop___kcrctab
+ffffffc008a5ebf4 R __stop___kcrctab_gpl
+ffffffc008a5ebf4 R __stop___ksymtab_gpl
+ffffffc008a83f40 r __param_initcall_debug
+ffffffc008a83f40 R __start___param
+ffffffc008a83f68 r __param_panic
+ffffffc008a83f90 r __param_panic_print
+ffffffc008a83fb8 r __param_pause_on_oops
+ffffffc008a83fe0 r __param_panic_on_warn
+ffffffc008a84008 r __param_crash_kexec_post_notifiers
+ffffffc008a84030 r __param_disable_numa
+ffffffc008a84058 r __param_power_efficient
+ffffffc008a84080 r __param_debug_force_rr_cpu
+ffffffc008a840a8 r __param_watchdog_thresh
+ffffffc008a840d0 r __param_ignore_loglevel
+ffffffc008a840f8 r __param_time
+ffffffc008a84120 r __param_console_suspend
+ffffffc008a84148 r __param_console_no_auto_verbose
+ffffffc008a84170 r __param_always_kmsg_dump
+ffffffc008a84198 r __param_noirqdebug
+ffffffc008a841c0 r __param_irqfixup
+ffffffc008a841e8 r __param_rcu_expedited
+ffffffc008a84210 r __param_rcu_normal
+ffffffc008a84238 r __param_rcu_normal_after_boot
+ffffffc008a84260 r __param_rcu_cpu_stall_ftrace_dump
+ffffffc008a84288 r __param_rcu_cpu_stall_suppress
+ffffffc008a842b0 r __param_rcu_cpu_stall_timeout
+ffffffc008a842d8 r __param_rcu_exp_cpu_stall_timeout
+ffffffc008a84300 r __param_rcu_cpu_stall_suppress_at_boot
+ffffffc008a84328 r __param_rcu_task_ipi_delay
+ffffffc008a84350 r __param_rcu_task_stall_timeout
+ffffffc008a84378 r __param_rcu_task_stall_info
+ffffffc008a843a0 r __param_rcu_task_stall_info_mult
+ffffffc008a843c8 r __param_rcu_task_enqueue_lim
+ffffffc008a843f0 r __param_rcu_task_contend_lim
+ffffffc008a84418 r __param_rcu_task_collapse_lim
+ffffffc008a84440 r __param_exp_holdoff
+ffffffc008a84468 r __param_counter_wrap_check
+ffffffc008a84490 r __param_convert_to_big
+ffffffc008a844b8 r __param_big_cpu_lim
+ffffffc008a844e0 r __param_small_contention_lim
+ffffffc008a84508 r __param_srcu_retry_check_delay
+ffffffc008a84530 r __param_srcu_max_nodelay_phase
+ffffffc008a84558 r __param_srcu_max_nodelay
+ffffffc008a84580 r __param_dump_tree
+ffffffc008a845a8 r __param_use_softirq
+ffffffc008a845d0 r __param_rcu_fanout_exact
+ffffffc008a845f8 r __param_rcu_fanout_leaf
+ffffffc008a84620 r __param_kthread_prio
+ffffffc008a84648 r __param_gp_preinit_delay
+ffffffc008a84670 r __param_gp_init_delay
+ffffffc008a84698 r __param_gp_cleanup_delay
+ffffffc008a846c0 r __param_rcu_min_cached_objs
+ffffffc008a846e8 r __param_rcu_delay_page_cache_fill_msec
+ffffffc008a84710 r __param_blimit
+ffffffc008a84738 r __param_qhimark
+ffffffc008a84760 r __param_qlowmark
+ffffffc008a84788 r __param_qovld
+ffffffc008a847b0 r __param_rcu_divisor
+ffffffc008a847d8 r __param_rcu_resched_ns
+ffffffc008a84800 r __param_jiffies_till_sched_qs
+ffffffc008a84828 r __param_jiffies_to_sched_qs
+ffffffc008a84850 r __param_jiffies_till_first_fqs
+ffffffc008a84878 r __param_jiffies_till_next_fqs
+ffffffc008a848a0 r __param_rcu_kick_kthreads
+ffffffc008a848c8 r __param_sysrq_rcu
+ffffffc008a848f0 r __param_nocb_nobypass_lim_per_jiffy
+ffffffc008a84918 r __param_rcu_nocb_gp_stride
+ffffffc008a84940 r __param_nomodule
+ffffffc008a84968 r __param_module_blacklist
+ffffffc008a84990 r __param_async_probe
+ffffffc008a849b8 r __param_irqtime
+ffffffc008a849e0 r __param_ignore_rlimit_data
+ffffffc008a84a08 r __param_shuffle
+ffffffc008a84a30 r __param_memmap_on_memory
+ffffffc008a84a58 r __param_online_policy
+ffffffc008a84a80 r __param_auto_movable_ratio
+ffffffc008a84aa8 r __param_enable
+ffffffc008a84ad0 r __param_page_reporting_order
+ffffffc008a84af8 r __param_allow_sys_admin_access
+ffffffc008a84b20 r __param_max_user_bgreq
+ffffffc008a84b48 r __param_max_user_congthresh
+ffffffc008a84b70 r __param_notests
+ffffffc008a84b98 r __param_panic_on_fail
+ffffffc008a84bc0 r __param_dbg
+ffffffc008a84be8 r __param_events_dfl_poll_msecs
+ffffffc008a84c10 r __param_num_prealloc_crypt_ctxs
+ffffffc008a84c38 r __param_num_prealloc_bounce_pg
+ffffffc008a84c60 r __param_num_keyslots
+ffffffc008a84c88 r __param_num_prealloc_fallback_crypt_ctxs
+ffffffc008a84cb0 r __param_verbose
+ffffffc008a84cd8 r __param_policy
+ffffffc008a84d00 r __param_force_legacy
+ffffffc008a84d28 r __param_reset_seq
+ffffffc008a84d50 r __param_sysrq_downtime_ms
+ffffffc008a84d78 r __param_brl_timeout
+ffffffc008a84da0 r __param_brl_nbchords
+ffffffc008a84dc8 r __param_default_utf8
+ffffffc008a84df0 r __param_global_cursor_default
+ffffffc008a84e18 r __param_cur_default
+ffffffc008a84e40 r __param_consoleblank
+ffffffc008a84e68 r __param_default_red
+ffffffc008a84e90 r __param_default_grn
+ffffffc008a84eb8 r __param_default_blu
+ffffffc008a84ee0 r __param_color
+ffffffc008a84f08 r __param_italic
+ffffffc008a84f30 r __param_underline
+ffffffc008a84f58 r __param_share_irqs
+ffffffc008a84f80 r __param_nr_uarts
+ffffffc008a84fa8 r __param_skip_txen_test
+ffffffc008a84fd0 r __param_ratelimit_disable
+ffffffc008a84ff8 r __param_current_quality
+ffffffc008a85020 r __param_default_quality
+ffffffc008a85048 r __param_path
+ffffffc008a85070 r __param_rd_nr
+ffffffc008a85098 r __param_rd_size
+ffffffc008a850c0 r __param_max_part
+ffffffc008a850e8 r __param_max_loop
+ffffffc008a85110 r __param_max_part
+ffffffc008a85138 r __param_hw_queue_depth
+ffffffc008a85160 r __param_num_request_queues
+ffffffc008a85188 r __param_poll_queues
+ffffffc008a851b0 r __param_queue_depth
+ffffffc008a851d8 r __param_num_devices
+ffffffc008a85200 r __param_stop_on_reboot
+ffffffc008a85228 r __param_handle_boot_enabled
+ffffffc008a85250 r __param_open_timeout
+ffffffc008a85278 r __param_create
+ffffffc008a852a0 r __param_major
+ffffffc008a852c8 r __param_reserved_bio_based_ios
+ffffffc008a852f0 r __param_dm_numa_node
+ffffffc008a85318 r __param_swap_bios
+ffffffc008a85340 r __param_kcopyd_subjob_size_kb
+ffffffc008a85368 r __param_stats_current_allocated_bytes
+ffffffc008a85390 r __param_reserved_rq_based_ios
+ffffffc008a853b8 r __param_use_blk_mq
+ffffffc008a853e0 r __param_dm_mq_nr_hw_queues
+ffffffc008a85408 r __param_dm_mq_queue_depth
+ffffffc008a85430 r __param_max_cache_size_bytes
+ffffffc008a85458 r __param_max_age_seconds
+ffffffc008a85480 r __param_retain_bytes
+ffffffc008a854a8 r __param_peak_allocated_bytes
+ffffffc008a854d0 r __param_allocated_kmem_cache_bytes
+ffffffc008a854f8 r __param_allocated_get_free_pages_bytes
+ffffffc008a85520 r __param_allocated_vmalloc_bytes
+ffffffc008a85548 r __param_current_allocated_bytes
+ffffffc008a85570 r __param_prefetch_cluster
+ffffffc008a85598 r __param_dm_user_daemon_timeout_msec
+ffffffc008a855c0 r __param_edac_mc_panic_on_ue
+ffffffc008a855e8 r __param_edac_mc_log_ue
+ffffffc008a85610 r __param_edac_mc_log_ce
+ffffffc008a85638 r __param_edac_mc_poll_msec
+ffffffc008a85660 r __param_check_pci_errors
+ffffffc008a85688 r __param_edac_pci_panic_on_pe
+ffffffc008a856b0 r __param_log_ecn_error
+ffffffc008a856d8 r __param_log_ecn_error
+ffffffc008a85700 r __param_fast_convergence
+ffffffc008a85728 r __param_beta
+ffffffc008a85750 r __param_initial_ssthresh
+ffffffc008a85778 r __param_bic_scale
+ffffffc008a857a0 r __param_tcp_friendliness
+ffffffc008a857c8 r __param_hystart
+ffffffc008a857f0 r __param_hystart_detect
+ffffffc008a85818 r __param_hystart_low_window
+ffffffc008a85840 r __param_hystart_ack_delta_us
+ffffffc008a85868 r __param_disable
+ffffffc008a85890 r __param_disable_ipv6
+ffffffc008a858b8 r __param_autoconf
+ffffffc008a858e0 r __param_log_ecn_error
+ffffffc008a85908 r __param_log_ecn_error
+ffffffc008a85930 r __param_log_ecn_error
+ffffffc008a85958 r __param_virtio_transport_max_vsock_pkt_buf_size
+ffffffc008a85980 d __modver_attr
+ffffffc008a85980 D __start___modver
+ffffffc008a85980 R __stop___param
+ffffffc008a859c8 d __modver_attr
+ffffffc008a85a10 d __modver_attr
+ffffffc008a85a58 d __modver_attr
+ffffffc008a85aa0 d __modver_attr
+ffffffc008a85ae8 d __modver_attr
+ffffffc008a85b30 R __start___ex_table
+ffffffc008a85b30 D __stop___modver
+ffffffc008a87174 R __start_notes
+ffffffc008a87174 R __stop___ex_table
+ffffffc008a87174 r _note_41
+ffffffc008a8718c r _note_42
+ffffffc008a871c8 R __stop_notes
+ffffffc008a88000 R __end_rodata
+ffffffc008a88000 T __entry_tramp_text_start
+ffffffc008a88000 R __hyp_events_end
+ffffffc008a88000 R __hyp_events_start
+ffffffc008a88000 T tramp_vectors
+ffffffc008a8a000 T tramp_exit_native
+ffffffc008a8a038 T tramp_exit_compat
+ffffffc008a8b000 T __entry_tramp_text_end
+ffffffc008a8b010 T __relocate_new_kernel_start
+ffffffc008a8b010 T arm64_relocate_new_kernel
+ffffffc008a8b130 T __relocate_new_kernel_end
+ffffffc008a8c000 T idmap_pg_dir
+ffffffc008a8d000 T tramp_pg_dir
+ffffffc008a8e000 T reserved_pg_dir
+ffffffc008a8f000 T swapper_pg_dir
+ffffffc008a90000 T __init_begin
+ffffffc008a90000 T __inittext_begin
+ffffffc008a90000 t __pi_$d.0
+ffffffc008a90000 T _sinittext
+ffffffc008a90004 t __pi_$x.1
+ffffffc008a90004 t __pi_kaslr_early_init
+ffffffc008a900e4 t __pi_cmdline_contains_nokaslr
+ffffffc008a90194 t __pi_$d.0
+ffffffc008a90198 t __pi_$x.1
+ffffffc008a90198 t __pi_fdt_ro_probe_
+ffffffc008a9022c t __pi_$d.2
+ffffffc008a90230 t __pi_$x.3
+ffffffc008a90230 t __pi_fdt_header_size_
+ffffffc008a90270 t __pi_$d.4
+ffffffc008a90274 t __pi_$x.5
+ffffffc008a90274 t __pi_fdt_header_size
+ffffffc008a902bc t __pi_$d.6
+ffffffc008a902c0 t __pi_$x.7
+ffffffc008a902c0 t __pi_fdt_check_header
+ffffffc008a903fc t __pi_$d.8
+ffffffc008a90400 t __pi_$x.9
+ffffffc008a90400 t __pi_fdt_offset_ptr
+ffffffc008a904a0 t __pi_$d.10
+ffffffc008a904a4 t __pi_$x.11
+ffffffc008a904a4 t __pi_fdt_next_tag
+ffffffc008a905c4 t __pi_$d.13
+ffffffc008a905c8 t __pi_$x.14
+ffffffc008a905c8 t __pi_fdt_check_node_offset_
+ffffffc008a90608 t __pi_$d.15
+ffffffc008a9060c t __pi_$x.16
+ffffffc008a9060c t __pi_fdt_check_prop_offset_
+ffffffc008a9064c t __pi_$d.17
+ffffffc008a90650 t __pi_$x.18
+ffffffc008a90650 t __pi_fdt_next_node
+ffffffc008a90740 t __pi_$d.19
+ffffffc008a90744 t __pi_$x.20
+ffffffc008a90744 t __pi_fdt_first_subnode
+ffffffc008a90778 t __pi_$d.21
+ffffffc008a9077c t __pi_$x.22
+ffffffc008a9077c t __pi_fdt_next_subnode
+ffffffc008a907cc t __pi_$d.23
+ffffffc008a907d0 t __pi_$x.24
+ffffffc008a907d0 t __pi_fdt_find_string_
+ffffffc008a90844 t __pi_$d.25
+ffffffc008a90848 t __pi_$x.26
+ffffffc008a90848 t __pi_fdt_move
+ffffffc008a908a8 t __pi_$d.0
+ffffffc008a908ac t __pi_$x.1
+ffffffc008a908ac t __pi_fdt_get_string
+ffffffc008a909b4 t __pi_$d.2
+ffffffc008a909b8 t __pi_$x.3
+ffffffc008a909b8 t __pi_fdt_string
+ffffffc008a909d0 t __pi_$d.4
+ffffffc008a909d4 t __pi_$x.5
+ffffffc008a909d4 t __pi_fdt_find_max_phandle
+ffffffc008a90a58 t __pi_$d.6
+ffffffc008a90a5c t __pi_$x.7
+ffffffc008a90a5c t __pi_fdt_get_phandle
+ffffffc008a90b08 t __pi_$d.8
+ffffffc008a90b0c t __pi_$x.9
+ffffffc008a90b0c t __pi_fdt_generate_phandle
+ffffffc008a90b64 t __pi_$d.10
+ffffffc008a90b68 t __pi_$x.11
+ffffffc008a90b68 t __pi_fdt_get_mem_rsv
+ffffffc008a90bd4 t __pi_fdt_mem_rsv
+ffffffc008a90c38 t __pi_$d.12
+ffffffc008a90c3c t __pi_$x.13
+ffffffc008a90c3c t __pi_fdt_num_mem_rsv
+ffffffc008a90c8c t __pi_$d.14
+ffffffc008a90c90 t __pi_$x.15
+ffffffc008a90c90 t __pi_fdt_subnode_offset_namelen
+ffffffc008a90d84 t __pi_$d.16
+ffffffc008a90d88 t __pi_$x.17
+ffffffc008a90d88 t __pi_fdt_subnode_offset
+ffffffc008a90dd0 t __pi_$d.18
+ffffffc008a90dd4 t __pi_$x.19
+ffffffc008a90dd4 t __pi_fdt_path_offset_namelen
+ffffffc008a90eec t __pi_$d.20
+ffffffc008a90ef0 t __pi_$x.21
+ffffffc008a90ef0 t __pi_fdt_get_alias_namelen
+ffffffc008a90f60 t __pi_$d.22
+ffffffc008a90f64 t __pi_$x.23
+ffffffc008a90f64 t __pi_fdt_path_offset
+ffffffc008a90f9c t __pi_$d.24
+ffffffc008a90fa0 t __pi_$x.25
+ffffffc008a90fa0 t __pi_fdt_get_name
+ffffffc008a91040 t __pi_$d.26
+ffffffc008a91044 t __pi_$x.27
+ffffffc008a91044 t __pi_fdt_first_property_offset
+ffffffc008a9107c t __pi_nextprop_
+ffffffc008a910f0 t __pi_$d.28
+ffffffc008a910f4 t __pi_$x.29
+ffffffc008a910f4 t __pi_fdt_next_property_offset
+ffffffc008a9112c t __pi_$d.30
+ffffffc008a91130 t __pi_$x.31
+ffffffc008a91130 t __pi_fdt_get_property_by_offset
+ffffffc008a91170 t __pi_fdt_get_property_by_offset_
+ffffffc008a911d4 t __pi_$d.32
+ffffffc008a911d8 t __pi_$x.33
+ffffffc008a911d8 t __pi_fdt_get_property_namelen
+ffffffc008a9121c t __pi_fdt_get_property_namelen_
+ffffffc008a91300 t __pi_$d.34
+ffffffc008a91304 t __pi_$x.35
+ffffffc008a91304 t __pi_fdt_get_property
+ffffffc008a91354 t __pi_$d.36
+ffffffc008a91358 t __pi_$x.37
+ffffffc008a91358 t __pi_fdt_getprop_namelen
+ffffffc008a913c0 t __pi_$d.38
+ffffffc008a913c4 t __pi_$x.39
+ffffffc008a913c4 t __pi_fdt_getprop_by_offset
+ffffffc008a9147c t __pi_$d.40
+ffffffc008a91480 t __pi_$x.41
+ffffffc008a91480 t __pi_fdt_getprop
+ffffffc008a914d0 t __pi_$d.42
+ffffffc008a914d4 t __pi_$x.43
+ffffffc008a914d4 t __pi_fdt_get_alias
+ffffffc008a9150c t __pi_$d.44
+ffffffc008a91510 t __pi_$x.45
+ffffffc008a91510 t __pi_fdt_get_path
+ffffffc008a9167c t __pi_$d.46
+ffffffc008a91680 t __pi_$x.47
+ffffffc008a91680 t __pi_fdt_supernode_atdepth_offset
+ffffffc008a9173c t __pi_$d.48
+ffffffc008a91740 t __pi_$x.49
+ffffffc008a91740 t __pi_fdt_node_depth
+ffffffc008a9177c t __pi_$d.50
+ffffffc008a91780 t __pi_$x.51
+ffffffc008a91780 t __pi_fdt_parent_offset
+ffffffc008a917e4 t __pi_$d.52
+ffffffc008a917e8 t __pi_$x.53
+ffffffc008a917e8 t __pi_fdt_node_offset_by_prop_value
+ffffffc008a918b8 t __pi_$d.54
+ffffffc008a918bc t __pi_$x.55
+ffffffc008a918bc t __pi_fdt_node_offset_by_phandle
+ffffffc008a91940 t __pi_$d.56
+ffffffc008a91944 t __pi_$x.57
+ffffffc008a91944 t __pi_fdt_stringlist_contains
+ffffffc008a919e0 t __pi_$d.58
+ffffffc008a919e4 t __pi_$x.59
+ffffffc008a919e4 t __pi_fdt_stringlist_count
+ffffffc008a91a90 t __pi_$d.60
+ffffffc008a91a94 t __pi_$x.61
+ffffffc008a91a94 t __pi_fdt_stringlist_search
+ffffffc008a91b80 t __pi_$d.62
+ffffffc008a91b84 t __pi_$x.63
+ffffffc008a91b84 t __pi_fdt_stringlist_get
+ffffffc008a91c70 t __pi_$d.64
+ffffffc008a91c74 t __pi_$x.65
+ffffffc008a91c74 t __pi_fdt_node_check_compatible
+ffffffc008a91cf0 t __pi_$d.66
+ffffffc008a91cf4 t __pi_$x.67
+ffffffc008a91cf4 t __pi_fdt_node_offset_by_compatible
+ffffffc008a91d70 T primary_entry
+ffffffc008a91d88 t preserve_boot_args
+ffffffc008a91da8 t clear_page_tables
+ffffffc008a91dc0 t remap_region
+ffffffc008a91e08 t create_idmap
+ffffffc008a91f20 t create_kernel_mapping
+ffffffc008a91fc4 t __primary_switched
+ffffffc008a92090 t set_reset_devices
+ffffffc008a920b0 t debug_kernel
+ffffffc008a920d0 t quiet_kernel
+ffffffc008a920f0 t loglevel
+ffffffc008a92174 t warn_bootconfig
+ffffffc008a92188 t init_setup
+ffffffc008a921d0 t rdinit_setup
+ffffffc008a92218 T parse_early_options
+ffffffc008a9226c t do_early_param
+ffffffc008a92378 T parse_early_param
+ffffffc008a92404 W arch_post_acpi_subsys_init
+ffffffc008a92414 W thread_stack_cache_init
+ffffffc008a92424 W mem_encrypt_init
+ffffffc008a92434 W poking_init
+ffffffc008a92444 t early_randomize_kstack_offset
+ffffffc008a924dc W arch_call_rest_init
+ffffffc008a924f8 T start_kernel
+ffffffc008a92a1c t setup_boot_config
+ffffffc008a92bc0 t setup_command_line
+ffffffc008a92da0 t unknown_bootoption
+ffffffc008a92ed8 t print_unknown_bootoptions
+ffffffc008a93048 t set_init_arg
+ffffffc008a930dc t mm_init
+ffffffc008a93130 t initcall_debug_enable
+ffffffc008a931b8 t initcall_blacklist
+ffffffc008a9332c t set_debug_rodata
+ffffffc008a933e8 T console_on_rootfs
+ffffffc008a93460 t get_boot_config_from_initrd
+ffffffc008a93558 t bootconfig_params
+ffffffc008a9359c t xbc_make_cmdline
+ffffffc008a93680 t xbc_snprint_cmdline
+ffffffc008a937d4 t repair_env_string
+ffffffc008a93860 t obsolete_checksetup
+ffffffc008a9394c t report_meminit
+ffffffc008a939d0 t kernel_init_freeable
+ffffffc008a93acc t do_pre_smp_initcalls
+ffffffc008a93bf0 t do_basic_setup
+ffffffc008a93c20 t do_initcalls
+ffffffc008a93cc0 t do_initcall_level
+ffffffc008a93e60 t ignore_unknown_bootoption
+ffffffc008a93ecc t early_hostname
+ffffffc008a93f28 t load_ramdisk
+ffffffc008a93f60 t readonly
+ffffffc008a93f94 t readwrite
+ffffffc008a93fc8 t root_dev_setup
+ffffffc008a94008 t rootwait_setup
+ffffffc008a94034 t root_data_setup
+ffffffc008a94054 t fs_names_setup
+ffffffc008a94074 t root_delay_setup
+ffffffc008a940b8 T mount_block_root
+ffffffc008a94334 t split_fs_names
+ffffffc008a94394 t do_mount_root
+ffffffc008a94540 T mount_root
+ffffffc008a945d4 t mount_nodev_root
+ffffffc008a946c4 t create_dev
+ffffffc008a94738 T prepare_namespace
+ffffffc008a948d4 T init_rootfs
+ffffffc008a94940 t prompt_ramdisk
+ffffffc008a94978 t ramdisk_start_setup
+ffffffc008a949bc T rd_load_image
+ffffffc008a94ccc t identify_ramdisk_image
+ffffffc008a94f74 t crd_load
+ffffffc008a95010 T rd_load_disk
+ffffffc008a95070 t create_dev
+ffffffc008a950dc t compr_fill
+ffffffc008a95154 t compr_flush
+ffffffc008a951e0 t error
+ffffffc008a95224 T __initstub__kmod_mounts__429_40_kernel_do_mounts_initrd_sysctls_init7
+ffffffc008a9526c t no_initrd
+ffffffc008a9528c t early_initrdmem
+ffffffc008a95328 t early_initrd
+ffffffc008a95358 T initrd_load
+ffffffc008a9541c t handle_initrd
+ffffffc008a95618 t init_linuxrc
+ffffffc008a95694 t retain_initrd_param
+ffffffc008a956c0 t keepinitrd_setup
+ffffffc008a956e0 t initramfs_async_setup
+ffffffc008a95718 T reserve_initrd_mem
+ffffffc008a95828 W free_initrd_mem
+ffffffc008a9588c T __initstub__kmod_initramfs__400_762_populate_rootfsrootfs
+ffffffc008a958b8 t populate_rootfs
+ffffffc008a9591c t do_populate_rootfs
+ffffffc008a959e4 t unpack_to_rootfs
+ffffffc008a95cd4 t populate_initrd_image
+ffffffc008a95dd0 t kexec_free_initrd
+ffffffc008a95e98 t flush_buffer
+ffffffc008a95fa0 t error
+ffffffc008a95fbc t dir_utime
+ffffffc008a9608c t do_start
+ffffffc008a96118 t do_collect
+ffffffc008a961f4 t do_header
+ffffffc008a963f8 t do_skip
+ffffffc008a9647c t do_name
+ffffffc008a96694 t do_copy
+ffffffc008a9685c t do_symlink
+ffffffc008a9695c t do_reset
+ffffffc008a969dc t parse_header
+ffffffc008a96b1c t free_hash
+ffffffc008a96b7c t clean_path
+ffffffc008a96c3c t maybe_link
+ffffffc008a96cd4 t dir_add
+ffffffc008a96d80 t find_link
+ffffffc008a96e94 t xwrite
+ffffffc008a96f80 t lpj_setup
+ffffffc008a96fc4 T __initstub__kmod_debug_monitors__400_63_create_debug_debugfs_entry5
+ffffffc008a9700c t early_debug_disable
+ffffffc008a97028 T __initstub__kmod_debug_monitors__402_139_debug_monitors_init2
+ffffffc008a9708c T debug_traps_init
+ffffffc008a970f4 T set_handle_irq
+ffffffc008a97154 T set_handle_fiq
+ffffffc008a971b4 T init_IRQ
+ffffffc008a9732c T vec_init_vq_map
+ffffffc008a97398 T sve_setup
+ffffffc008a97578 T sme_setup
+ffffffc008a976b8 T __initstub__kmod_fpsimd__399_2058_fpsimd_init1
+ffffffc008a976e4 t fpsimd_init
+ffffffc008a977a0 t sve_sysctl_init
+ffffffc008a97800 t sme_sysctl_init
+ffffffc008a9787c T __initstub__kmod_process__408_746_tagged_addr_init1
+ffffffc008a978cc T __initstub__kmod_ptrace__413_42_trace_init_flags_sys_enterearly
+ffffffc008a978f0 T __initstub__kmod_ptrace__415_66_trace_init_flags_sys_exitearly
+ffffffc008a97914 T smp_setup_processor_id
+ffffffc008a97960 T get_early_fdt_ptr
+ffffffc008a97978 T early_fdt_map
+ffffffc008a97a10 T __initstub__kmod_setup__406_285_reserve_memblock_reserved_regions3
+ffffffc008a97a3c t reserve_memblock_reserved_regions
+ffffffc008a97b94 T setup_arch
+ffffffc008a97d90 t setup_machine_fdt
+ffffffc008a97eb4 t request_standard_resources
+ffffffc008a98098 t smp_build_mpidr_hash
+ffffffc008a98240 T __initstub__kmod_setup__408_412_topology_init4
+ffffffc008a9826c t topology_init
+ffffffc008a98358 T __initstub__kmod_setup__410_446_register_arm64_panic_block6
+ffffffc008a983a4 T minsigstksz_setup
+ffffffc008a98450 T time_init
+ffffffc008a984ec T early_brk64
+ffffffc008a98538 T trap_init
+ffffffc008a98588 T __initstub__kmod_vdso__403_461_vdso_init3
+ffffffc008a985cc t __vdso_init
+ffffffc008a986cc t cpu_psci_cpu_init
+ffffffc008a986e0 t cpu_psci_cpu_prepare
+ffffffc008a98730 T init_cpu_ops
+ffffffc008a987f4 t cpu_read_enable_method
+ffffffc008a9887c T __initstub__kmod_cpuinfo__341_359_cpuinfo_regs_init6
+ffffffc008a988a4 t cpuinfo_regs_init
+ffffffc008a989a4 T cpuinfo_store_boot_cpu
+ffffffc008a98a10 T init_cpu_features
+ffffffc008a98bfc t sort_ftr_regs
+ffffffc008a98d4c t parse_32bit_el0_param
+ffffffc008a98d6c T __initstub__kmod_cpufeature__411_1486_aarch32_el0_sysfs_init6
+ffffffc008a98dc0 t parse_kpti
+ffffffc008a98e3c T setup_cpu_features
+ffffffc008a98f38 T __initstub__kmod_cpufeature__415_3360_init_32bit_el0_mask4s
+ffffffc008a98f60 t init_32bit_el0_mask
+ffffffc008a99000 T __initstub__kmod_cpufeature__417_3468_enable_mrs_emulation1
+ffffffc008a99034 t init_cpu_hwcaps_indirect_list_from_array
+ffffffc008a990d8 t enable_cpu_capabilities
+ffffffc008a991d0 T apply_alternatives_all
+ffffffc008a99228 T apply_boot_alternatives
+ffffffc008a99290 T smp_cpus_done
+ffffffc008a992dc t hyp_mode_check
+ffffffc008a99354 T smp_prepare_boot_cpu
+ffffffc008a993b4 T smp_init_cpus
+ffffffc008a99490 t of_parse_and_init_cpus
+ffffffc008a995b0 t smp_cpu_setup
+ffffffc008a99674 T smp_prepare_cpus
+ffffffc008a997b8 T set_smp_ipi_range
+ffffffc008a998d4 t is_mpidr_duplicate
+ffffffc008a999a0 T __initstub__kmod_topology__341_252_init_amu_fie1
+ffffffc008a999b4 t parse_spectre_v2_param
+ffffffc008a999d4 t parse_spectre_v4_param
+ffffffc008a99a6c T spectre_v4_patch_fw_mitigation_enable
+ffffffc008a99b1c T smccc_patch_fw_mitigation_conduit
+ffffffc008a99b74 t parse_spectre_bhb_param
+ffffffc008a99b94 T spectre_bhb_patch_clearbhb
+ffffffc008a99bd4 T init_feature_override
+ffffffc008a99c60 t parse_cmdline
+ffffffc008a99cbc t mmfr1_vh_filter
+ffffffc008a99ce8 t pfr0_sve_filter
+ffffffc008a99d14 t pfr1_sme_filter
+ffffffc008a99d3c t get_bootargs_cmdline
+ffffffc008a99db8 t __parse_cmdline
+ffffffc008a99f44 t match_options
+ffffffc008a9a0e4 t find_field
+ffffffc008a9a1ac T __initstub__kmod_perf_event__422_1398_armv8_pmu_driver_init6
+ffffffc008a9a1e4 T __initstub__kmod_hw_breakpoint__398_1018_arch_hw_breakpoint_init3
+ffffffc008a9a20c t arch_hw_breakpoint_init
+ffffffc008a9a31c T cpu_suspend_set_dbg_restorer
+ffffffc008a9a344 T __initstub__kmod_suspend__401_163_cpu_suspend_initearly
+ffffffc008a9a36c t cpu_suspend_init
+ffffffc008a9a3cc t parse_no_stealacc
+ffffffc008a9a3ec T pv_time_init
+ffffffc008a9a4ac t has_pv_steal_clock
+ffffffc008a9a594 T __initstub__kmod_kaslr__298_93_kaslr_init4
+ffffffc008a9a5c0 t kaslr_init
+ffffffc008a9a694 T kasan_hw_tags_enable
+ffffffc008a9a6c8 T __initstub__kmod_mte__438_576_register_mte_tcf_preferred_sysctl4
+ffffffc008a9a7b0 T __initstub__kmod_uprobes__406_208_arch_init_uprobes6
+ffffffc008a9a7f4 T hook_debug_fault_code
+ffffffc008a9a830 t early_disable_dma32
+ffffffc008a9a888 t early_mem
+ffffffc008a9a914 T arm64_memblock_init
+ffffffc008a9ab98 t reserve_crashkernel
+ffffffc008a9ad3c T bootmem_init
+ffffffc008a9adac t zone_sizes_init
+ffffffc008a9aeac T mem_init
+ffffffc008a9aef8 t reserve_crashkernel_low
+ffffffc008a9afa0 t max_zone_phys
+ffffffc008a9b014 t ioremap_guard_setup
+ffffffc008a9b034 T early_ioremap_init
+ffffffc008a9b060 T __initstub__kmod_mmap__375_78_adjust_protection_map3
+ffffffc008a9b0b0 T pgtable_cache_init
+ffffffc008a9b0c0 T create_pgd_mapping
+ffffffc008a9b178 T mark_linear_text_alias_ro
+ffffffc008a9b2f4 t enable_crash_mem_map
+ffffffc008a9b314 T __initstub__kmod_mmu__439_738_map_entry_trampoline1
+ffffffc008a9b340 t map_entry_trampoline
+ffffffc008a9b48c T paging_init
+ffffffc008a9b804 t map_kernel
+ffffffc008a9bad8 t map_mem
+ffffffc008a9bc8c t create_idmap
+ffffffc008a9befc T early_fixmap_init
+ffffffc008a9c22c T fixmap_remap_fdt
+ffffffc008a9c30c t create_mapping_noalloc
+ffffffc008a9c3a0 T __initstub__kmod_mmu__478_1779_prevent_bootmem_remove_initearly
+ffffffc008a9c3c8 t prevent_bootmem_remove_init
+ffffffc008a9c430 t map_kernel_segment
+ffffffc008a9c53c t early_pgtable_alloc
+ffffffc008a9c62c t __map_memblock
+ffffffc008a9c774 T __initstub__kmod_context__409_399_asids_update_limit3
+ffffffc008a9c868 T __initstub__kmod_context__411_422_asids_initearly
+ffffffc008a9c96c W arch_task_cache_init
+ffffffc008a9c97c T fork_init
+ffffffc008a9caa8 t coredump_filter_setup
+ffffffc008a9caec T fork_idle
+ffffffc008a9cbdc T proc_caches_init
+ffffffc008a9cdb4 T __initstub__kmod_exec_domain__396_35_proc_execdomains_init6
+ffffffc008a9ce00 T __initstub__kmod_panic__399_109_kernel_panic_sysctls_init7
+ffffffc008a9ce48 T __initstub__kmod_panic__401_128_kernel_panic_sysfs_init7
+ffffffc008a9ce8c T __initstub__kmod_panic__411_746_register_warn_debugfs6
+ffffffc008a9cee0 t oops_setup
+ffffffc008a9cf38 t panic_on_taint_setup
+ffffffc008a9d030 T cpuhp_threads_init
+ffffffc008a9d0c8 t cpuhp_init_state
+ffffffc008a9d1a4 T __initstub__kmod_cpu__443_1624_alloc_frozen_cpus1
+ffffffc008a9d1b8 T __initstub__kmod_cpu__445_1671_cpu_hotplug_pm_sync_init1
+ffffffc008a9d1f8 T __initstub__kmod_cpu__453_2600_cpuhp_sysfs_init6
+ffffffc008a9d220 t cpuhp_sysfs_init
+ffffffc008a9d2ec T boot_cpu_init
+ffffffc008a9d400 T boot_cpu_hotplug_init
+ffffffc008a9d4c8 t mitigations_parse_cmdline
+ffffffc008a9d59c T __initstub__kmod_exit__469_101_kernel_exit_sysctls_init7
+ffffffc008a9d5e4 T __initstub__kmod_exit__471_120_kernel_exit_sysfs_init7
+ffffffc008a9d628 T softirq_init
+ffffffc008a9d6f8 T __initstub__kmod_softirq__436_1038_spawn_ksoftirqdearly
+ffffffc008a9d724 t spawn_ksoftirqd
+ffffffc008a9d78c W arch_probe_nr_irqs
+ffffffc008a9d7a0 W arch_early_irq_init
+ffffffc008a9d7b4 T __initstub__kmod_resource__386_149_ioresources_init6
+ffffffc008a9d7e0 t ioresources_init
+ffffffc008a9d860 T reserve_region_with_split
+ffffffc008a9d958 t __reserve_region_with_split
+ffffffc008a9db20 t reserve_setup
+ffffffc008a9dcb8 T __initstub__kmod_resource__413_2015_iomem_init_inode5
+ffffffc008a9dce0 t iomem_init_inode
+ffffffc008a9dda0 t strict_iomem
+ffffffc008a9de0c T sysctl_init_bases
+ffffffc008a9dea0 t file_caps_disable
+ffffffc008a9debc T __initstub__kmod_user__374_257_uid_cache_init4
+ffffffc008a9dee8 t uid_cache_init
+ffffffc008a9dfcc t setup_print_fatal_signals
+ffffffc008a9e038 T signals_init
+ffffffc008a9e08c T __initstub__kmod_workqueue__511_5698_wq_sysfs_init1
+ffffffc008a9e0b4 t wq_sysfs_init
+ffffffc008a9e104 T workqueue_init_early
+ffffffc008a9e484 T workqueue_init
+ffffffc008a9e750 T pid_idr_init
+ffffffc008a9e848 T sort_main_extable
+ffffffc008a9e8b8 T __initstub__kmod_params__432_974_param_sysfs_init4
+ffffffc008a9e8e0 t param_sysfs_init
+ffffffc008a9e960 t version_sysfs_builtin
+ffffffc008a9ea04 t param_sysfs_builtin
+ffffffc008a9eb14 t locate_module_kobject
+ffffffc008a9ebfc t kernel_add_sysfs_param
+ffffffc008a9ecac T nsproxy_cache_init
+ffffffc008a9ed08 T __initstub__kmod_ksysfs__393_273_ksysfs_init1
+ffffffc008a9ed30 t ksysfs_init
+ffffffc008a9edfc T cred_init
+ffffffc008a9ee54 t reboot_setup
+ffffffc008a9f048 T __initstub__kmod_reboot__438_1310_reboot_ksysfs_init7
+ffffffc008a9f070 t reboot_ksysfs_init
+ffffffc008a9f108 T idle_thread_set_boot_cpu
+ffffffc008a9f150 T idle_threads_init
+ffffffc008a9f24c T __initstub__kmod_ucount__309_376_user_namespace_sysctl_init4
+ffffffc008a9f278 t user_namespace_sysctl_init
+ffffffc008a9f360 t setup_schedstats
+ffffffc008a9f3fc T __initstub__kmod_core__728_4682_sched_core_sysctl_init7
+ffffffc008a9f444 t setup_resched_latency_warn_ms
+ffffffc008a9f4cc T init_idle
+ffffffc008a9f6fc T sched_init_smp
+ffffffc008a9f7e0 T __initstub__kmod_core__801_9781_migration_initearly
+ffffffc008a9f80c t migration_init
+ffffffc008a9f878 T sched_init
+ffffffc008a9fc24 t setup_sched_thermal_decay_shift
+ffffffc008a9fcc0 T __initstub__kmod_fair__443_213_sched_fair_sysctl_init7
+ffffffc008a9fd08 T sched_init_granularity
+ffffffc008a9fd34 T init_sched_fair_class
+ffffffc008a9fe4c t cpu_idle_poll_setup
+ffffffc008a9fe6c t cpu_idle_nopoll_setup
+ffffffc008a9fe88 T __initstub__kmod_build_policy__442_65_sched_rt_sysctl_init7
+ffffffc008a9fed0 T init_sched_rt_class
+ffffffc008a9ff84 T __initstub__kmod_build_policy__462_534_sched_pelt_sysctl_init7
+ffffffc008a9ffcc T __initstub__kmod_build_policy__473_52_sched_dl_sysctl_init7
+ffffffc008aa0014 T init_sched_dl_class
+ffffffc008aa00c8 T sched_clock_init
+ffffffc008aa0128 T __initstub__kmod_build_utility__438_345_sched_init_debug7
+ffffffc008aa0154 t sched_init_debug
+ffffffc008aa0330 T __initstub__kmod_build_utility__449_231_proc_schedstat_init4
+ffffffc008aa0380 T wait_bit_init
+ffffffc008aa03b4 t sched_debug_setup
+ffffffc008aa03d4 t setup_relax_domain_level
+ffffffc008aa0424 t setup_psi
+ffffffc008aa0460 T psi_init
+ffffffc008aa0624 T __initstub__kmod_build_utility__581_1575_psi_proc_init6
+ffffffc008aa0650 t psi_proc_init
+ffffffc008aa0704 T housekeeping_init
+ffffffc008aa07d8 t housekeeping_nohz_full_setup
+ffffffc008aa0808 t housekeeping_isolcpus_setup
+ffffffc008aa09a0 t housekeeping_setup
+ffffffc008aa0c48 T __initstub__kmod_main__421_467_pm_debugfs_init7
+ffffffc008aa0c9c T __initstub__kmod_main__424_940_pm_init1
+ffffffc008aa0cc4 t pm_init
+ffffffc008aa0d6c T pm_states_init
+ffffffc008aa0dac t mem_sleep_default_setup
+ffffffc008aa0e20 T __initstub__kmod_poweroff__207_45_pm_sysrq_init4
+ffffffc008aa0e60 T __initstub__kmod_wakeup_reason__414_438_wakeup_reason_init7
+ffffffc008aa0e88 t wakeup_reason_init
+ffffffc008aa0fb4 t control_devkmsg
+ffffffc008aa108c t log_buf_len_setup
+ffffffc008aa1100 T setup_log_buf
+ffffffc008aa1474 t log_buf_add_cpu
+ffffffc008aa1518 t add_to_rb
+ffffffc008aa1640 t ignore_loglevel_setup
+ffffffc008aa1684 t console_msg_format_setup
+ffffffc008aa16f4 t console_setup
+ffffffc008aa1840 t console_suspend_disable
+ffffffc008aa185c t keep_bootcon_setup
+ffffffc008aa18a0 T console_init
+ffffffc008aa1aa0 T __initstub__kmod_printk__435_3362_printk_late_init7
+ffffffc008aa1acc t printk_late_init
+ffffffc008aa1c58 t log_buf_len_update
+ffffffc008aa1d14 T printk_sysctl_init
+ffffffc008aa1d58 t irq_affinity_setup
+ffffffc008aa1dec T __initstub__kmod_irqdesc__371_334_irq_sysfs_init2
+ffffffc008aa1e14 t irq_sysfs_init
+ffffffc008aa1f44 T early_irq_init
+ffffffc008aa208c t init_irq_default_affinity
+ffffffc008aa2100 t setup_forced_irqthreads
+ffffffc008aa2140 t irqfixup_setup
+ffffffc008aa2190 t irqpoll_setup
+ffffffc008aa21e0 T __initstub__kmod_pm__412_248_irq_pm_init_ops6
+ffffffc008aa2218 T __initstub__kmod_update__488_240_rcu_set_runtime_mode1
+ffffffc008aa2254 T rcu_init_tasks_generic
+ffffffc008aa227c t rcu_spawn_tasks_kthread
+ffffffc008aa22fc T rcupdate_announce_bootup_oddness
+ffffffc008aa23a0 t rcu_tasks_bootup_oddness
+ffffffc008aa2430 t rcu_spawn_tasks_kthread_generic
+ffffffc008aa24cc T __initstub__kmod_srcutree__437_1730_srcu_bootup_announceearly
+ffffffc008aa24f8 t srcu_bootup_announce
+ffffffc008aa2598 T srcu_init
+ffffffc008aa26b8 T __initstub__kmod_srcutree__439_1824_init_srcu_module_notifier7
+ffffffc008aa26e0 t init_srcu_module_notifier
+ffffffc008aa2748 T kfree_rcu_scheduler_running
+ffffffc008aa2880 T __initstub__kmod_tree__637_4466_rcu_spawn_gp_kthreadearly
+ffffffc008aa28ac t rcu_spawn_gp_kthread
+ffffffc008aa2a44 T rcu_init
+ffffffc008aa2b98 t kfree_rcu_batch_init
+ffffffc008aa2d5c t sanitize_kthread_prio
+ffffffc008aa2dc0 t rcu_init_one
+ffffffc008aa3244 t rcu_dump_rcu_node_tree
+ffffffc008aa335c T __initstub__kmod_tree__656_135_check_cpu_stall_initearly
+ffffffc008aa339c T __initstub__kmod_tree__747_1025_rcu_sysrq_initearly
+ffffffc008aa33ec t rcu_nocb_setup
+ffffffc008aa3484 t parse_rcu_nocb_poll
+ffffffc008aa34a4 T rcu_init_nohz
+ffffffc008aa3630 t rcu_organize_nocb_kthreads
+ffffffc008aa3864 t rcu_spawn_core_kthreads
+ffffffc008aa3940 t rcu_start_exp_gp_kworkers
+ffffffc008aa3a4c t rcu_boot_init_percpu_data
+ffffffc008aa3b54 t rcu_boot_init_nocb_percpu_data
+ffffffc008aa3c14 t rcu_bootup_announce_oddness
+ffffffc008aa3e4c t rmem_dma_setup
+ffffffc008aa3ed0 t setup_io_tlb_npages
+ffffffc008aa4004 T swiotlb_adjust_size
+ffffffc008aa40d8 T swiotlb_update_mem_attributes
+ffffffc008aa41dc T swiotlb_init_remap
+ffffffc008aa4520 T swiotlb_init
+ffffffc008aa4550 T swiotlb_exit
+ffffffc008aa4720 T __initstub__kmod_swiotlb__427_946_swiotlb_create_default_debugfs7
+ffffffc008aa47b8 t rmem_swiotlb_setup
+ffffffc008aa489c t early_coherent_pool
+ffffffc008aa4908 T __initstub__kmod_pool__396_222_dma_atomic_pool_init2
+ffffffc008aa4930 t dma_atomic_pool_init
+ffffffc008aa4a40 t __dma_atomic_pool_init
+ffffffc008aa4b28 t dma_atomic_pool_debugfs_init
+ffffffc008aa4bc8 T __initstub__kmod_procfs__384_146_proc_modules_init6
+ffffffc008aa4c10 T __initstub__kmod_profile__420_553_create_proc_profile4
+ffffffc008aa4c3c T __initstub__kmod_timer__461_276_timer_sysctl_init6
+ffffffc008aa4c84 T init_timers
+ffffffc008aa4cc0 t init_timer_cpus
+ffffffc008aa4da0 t setup_hrtimer_hres
+ffffffc008aa4ddc T hrtimers_init
+ffffffc008aa4e2c W read_persistent_wall_and_boot_offset
+ffffffc008aa4e70 T timekeeping_init
+ffffffc008aa50b4 T __initstub__kmod_timekeeping__412_1928_timekeeping_init_ops6
+ffffffc008aa50ec t ntp_tick_adj_setup
+ffffffc008aa513c T ntp_init
+ffffffc008aa5234 T __initstub__kmod_clocksource__372_1057_clocksource_done_booting5
+ffffffc008aa5260 t clocksource_done_booting
+ffffffc008aa52c8 T __initstub__kmod_clocksource__382_1458_init_clocksource_sysfs6
+ffffffc008aa52f0 t init_clocksource_sysfs
+ffffffc008aa5358 t boot_override_clocksource
+ffffffc008aa53c0 t boot_override_clock
+ffffffc008aa5434 T __initstub__kmod_jiffies__362_69_init_jiffies_clocksource1
+ffffffc008aa5470 W clocksource_default_clock
+ffffffc008aa5488 T __initstub__kmod_timer_list__384_359_init_timer_list_procfs6
+ffffffc008aa54e0 T __initstub__kmod_alarmtimer__420_964_alarmtimer_init6
+ffffffc008aa5508 t alarmtimer_init
+ffffffc008aa55e0 T __initstub__kmod_posix_timers__400_280_init_posix_timers6
+ffffffc008aa563c T posix_cputimers_init_work
+ffffffc008aa5664 T __initstub__kmod_clockevents__377_777_clockevents_init_sysfs6
+ffffffc008aa568c t clockevents_init_sysfs
+ffffffc008aa56d8 t tick_init_sysfs
+ffffffc008aa57d8 t tick_broadcast_init_sysfs
+ffffffc008aa5838 T tick_init
+ffffffc008aa5864 T tick_broadcast_init
+ffffffc008aa5920 T generic_sched_clock_init
+ffffffc008aa5a54 T __initstub__kmod_sched_clock__371_299_sched_clock_syscore_init6
+ffffffc008aa5a8c t setup_tick_nohz
+ffffffc008aa5ac8 t skew_tick
+ffffffc008aa5b34 T __initstub__kmod_timekeeping_debug__411_44_tk_debug_sleep_time_init7
+ffffffc008aa5b88 T __initstub__kmod_core__422_1153_futex_init1
+ffffffc008aa5bb4 t futex_init
+ffffffc008aa5ca4 T call_function_init
+ffffffc008aa5d48 t nosmp
+ffffffc008aa5d80 t nrcpus
+ffffffc008aa5e10 t maxcpus
+ffffffc008aa5e94 T setup_nr_cpu_ids
+ffffffc008aa5ecc T smp_init
+ffffffc008aa5f60 T __initstub__kmod_kallsyms__519_961_kallsyms_init6
+ffffffc008aa5fa8 T parse_crashkernel
+ffffffc008aa5fd4 t __parse_crashkernel
+ffffffc008aa60bc T parse_crashkernel_high
+ffffffc008aa60f0 T parse_crashkernel_low
+ffffffc008aa6124 t parse_crashkernel_dummy
+ffffffc008aa6138 T __initstub__kmod_crash_core__384_514_crash_save_vmcoreinfo_init4
+ffffffc008aa6160 t crash_save_vmcoreinfo_init
+ffffffc008aa681c t get_last_crashkernel
+ffffffc008aa692c t parse_crashkernel_suffix
+ffffffc008aa6a18 t parse_crashkernel_mem
+ffffffc008aa6c44 t parse_crashkernel_simple
+ffffffc008aa6d28 T __initstub__kmod_kexec_core__427_952_kexec_core_sysctl_init7
+ffffffc008aa6d70 T __initstub__kmod_kexec_core__432_1128_crash_notes_memory_init4
+ffffffc008aa6d98 t crash_notes_memory_init
+ffffffc008aa6dfc T __initstub__kmod_stop_machine__388_586_cpu_stop_initearly
+ffffffc008aa6e28 t cpu_stop_init
+ffffffc008aa6f1c T __initstub__kmod_audit__607_1712_audit_init2
+ffffffc008aa6f48 t audit_init
+ffffffc008aa70e8 t audit_enable
+ffffffc008aa722c t audit_backlog_limit_set
+ffffffc008aa72e8 t audit_net_init
+ffffffc008aa73bc T audit_register_class
+ffffffc008aa748c T __initstub__kmod_audit_watch__437_503_audit_watch_init6
+ffffffc008aa74b8 t audit_watch_init
+ffffffc008aa7510 T __initstub__kmod_audit_fsnotify__437_193_audit_fsnotify_init6
+ffffffc008aa753c t audit_fsnotify_init
+ffffffc008aa7594 T __initstub__kmod_audit_tree__442_1086_audit_tree_init6
+ffffffc008aa75c0 t audit_tree_init
+ffffffc008aa7664 T __initstub__kmod_hung_task__420_406_hung_task_init4
+ffffffc008aa7690 t hung_task_init
+ffffffc008aa7744 W watchdog_nmi_probe
+ffffffc008aa7758 t nowatchdog_setup
+ffffffc008aa7774 t nosoftlockup_setup
+ffffffc008aa7790 t watchdog_thresh_setup
+ffffffc008aa77fc T lockup_detector_init
+ffffffc008aa7880 t lockup_detector_setup
+ffffffc008aa7928 T __initstub__kmod_seccomp__530_2406_seccomp_sysctl_init6
+ffffffc008aa7954 t seccomp_sysctl_init
+ffffffc008aa79ac T __initstub__kmod_utsname_sysctl__256_154_utsname_sysctl_init6
+ffffffc008aa79f4 T __initstub__kmod_tracepoint__341_140_release_early_probes2
+ffffffc008aa7a20 t release_early_probes
+ffffffc008aa7a88 T __initstub__kmod_tracepoint__360_737_init_tracepoints6
+ffffffc008aa7ab0 t init_tracepoints
+ffffffc008aa7b10 t set_cmdline_ftrace
+ffffffc008aa7b70 t set_ftrace_dump_on_oops
+ffffffc008aa7c14 t stop_trace_on_warning
+ffffffc008aa7c7c t boot_alloc_snapshot
+ffffffc008aa7c9c t boot_snapshot
+ffffffc008aa7cc4 t set_trace_boot_options
+ffffffc008aa7d04 t set_trace_boot_clock
+ffffffc008aa7d58 t set_tracepoint_printk
+ffffffc008aa7ddc t set_tracepoint_printk_stop
+ffffffc008aa7dfc t set_buf_size
+ffffffc008aa7e78 t set_tracing_thresh
+ffffffc008aa7f04 T register_tracer
+ffffffc008aa80f8 t apply_trace_boot_options
+ffffffc008aa81c4 T __initstub__kmod_trace__466_9737_trace_eval_init4
+ffffffc008aa81ec t trace_eval_init
+ffffffc008aa82ac T __initstub__kmod_trace__468_9747_trace_eval_sync7s
+ffffffc008aa82e8 T __initstub__kmod_trace__470_9882_tracer_init_tracefs5
+ffffffc008aa8314 t tracer_init_tracefs
+ffffffc008aa8420 T ftrace_boot_snapshot
+ffffffc008aa84a4 T early_trace_init
+ffffffc008aa853c t tracer_alloc_buffers
+ffffffc008aa8898 T trace_init
+ffffffc008aa88c4 T __initstub__kmod_trace__474_10396_late_trace_init7s
+ffffffc008aa88f0 t late_trace_init
+ffffffc008aa8974 t eval_map_work_func
+ffffffc008aa89c0 t tracer_init_tracefs_work_func
+ffffffc008aa8b08 t create_trace_instances
+ffffffc008aa8c20 T init_events
+ffffffc008aa8cc8 T __initstub__kmod_trace_printk__401_393_init_trace_printk_function_export5
+ffffffc008aa8cf4 t init_trace_printk_function_export
+ffffffc008aa8d44 T __initstub__kmod_trace_printk__403_400_init_trace_printkearly
+ffffffc008aa8d80 t setup_trace_event
+ffffffc008aa8dcc T __initstub__kmod_trace_events__452_3801_event_trace_enable_againearly
+ffffffc008aa8df4 t event_trace_enable_again
+ffffffc008aa8e60 T event_trace_init
+ffffffc008aa8f28 t early_event_add_tracer
+ffffffc008aa8fb4 T trace_event_init
+ffffffc008aa8fe4 t event_trace_memsetup
+ffffffc008aa9060 t event_trace_enable
+ffffffc008aa91e8 t event_trace_init_fields
+ffffffc008aa9580 t early_enable_events
+ffffffc008aa969c T register_event_command
+ffffffc008aa9750 T unregister_event_command
+ffffffc008aa97fc T register_trigger_cmds
+ffffffc008aa984c t register_trigger_traceon_traceoff_cmds
+ffffffc008aa98b8 t register_trigger_enable_disable_cmds
+ffffffc008aa9928 T __initstub__kmod_trace_eprobe__405_1081_trace_events_eprobe_init_early1
+ffffffc008aa9950 t trace_events_eprobe_init_early
+ffffffc008aa99a8 T __initstub__kmod_trace_events_synth__416_2249_trace_events_synth_init_early1
+ffffffc008aa99d0 t trace_events_synth_init_early
+ffffffc008aa9a28 T __initstub__kmod_trace_events_synth__418_2273_trace_events_synth_init5
+ffffffc008aa9a50 t trace_events_synth_init
+ffffffc008aa9ad0 T register_trigger_hist_cmd
+ffffffc008aa9b10 T register_trigger_hist_enable_disable_cmds
+ffffffc008aa9b94 T __initstub__kmod_trace_dynevent__397_271_init_dynamic_event5
+ffffffc008aa9bc0 t init_dynamic_event
+ffffffc008aa9c10 T __initstub__kmod_trace_uprobe__627_1667_init_uprobe_trace5
+ffffffc008aa9c38 t init_uprobe_trace
+ffffffc008aa9cc8 T __initstub__kmod_irq_work__374_318_irq_work_init_threadsearly
+ffffffc008aa9cdc T __initstub__kmod_cpu_pm__337_213_cpu_pm_init1
+ffffffc008aa9d14 T scs_init
+ffffffc008aa9d68 T perf_event_init
+ffffffc008aa9ea0 t perf_event_init_all_cpus
+ffffffc008aa9fe4 T __initstub__kmod_core__698_13622_perf_event_sysfs_init6
+ffffffc008aaa00c t perf_event_sysfs_init
+ffffffc008aaa0e8 T init_hw_breakpoint
+ffffffc008aaa174 t init_breakpoint_slots
+ffffffc008aaa388 T uprobes_init
+ffffffc008aaa40c T jump_label_init
+ffffffc008aaa560 T __initstub__kmod_jump_label__352_745_jump_label_init_moduleearly
+ffffffc008aaa5a0 T pagecache_init
+ffffffc008aaa614 T __initstub__kmod_oom_kill__455_741_oom_init4
+ffffffc008aaa640 t oom_init
+ffffffc008aaa6cc T page_writeback_init
+ffffffc008aaa7c4 T swap_setup
+ffffffc008aaa7f8 T __initstub__kmod_vmscan__632_6147_init_lru_gen7
+ffffffc008aaa824 t init_lru_gen
+ffffffc008aaa8d0 T __initstub__kmod_vmscan__666_7870_kswapd_init6
+ffffffc008aaa908 T shmem_init
+ffffffc008aaaa00 T init_mm_internals
+ffffffc008aaab7c t start_shepherd_timer
+ffffffc008aaac9c T __initstub__kmod_vmstat__451_2254_extfrag_debug_init6
+ffffffc008aaacc8 t extfrag_debug_init
+ffffffc008aaad5c T __initstub__kmod_backing_dev__428_232_bdi_class_init2
+ffffffc008aaad84 t bdi_class_init
+ffffffc008aaae00 T __initstub__kmod_backing_dev__430_242_default_bdi_init4
+ffffffc008aaae54 T mminit_verify_zonelist
+ffffffc008aaaf88 T mminit_verify_pageflags_layout
+ffffffc008aab0ac t set_mminit_loglevel
+ffffffc008aab118 T __initstub__kmod_mm_init__427_194_mm_compute_batch_init6
+ffffffc008aab144 t mm_compute_batch_init
+ffffffc008aab18c T __initstub__kmod_mm_init__429_206_mm_sysfs_init2
+ffffffc008aab1e0 T pcpu_alloc_alloc_info
+ffffffc008aab2b0 T pcpu_free_alloc_info
+ffffffc008aab2e0 T pcpu_setup_first_chunk
+ffffffc008aabc64 t pcpu_alloc_first_chunk
+ffffffc008aabfd0 t percpu_alloc_setup
+ffffffc008aac018 T pcpu_embed_first_chunk
+ffffffc008aac35c t pcpu_build_alloc_info
+ffffffc008aac954 T setup_per_cpu_areas
+ffffffc008aaca2c T __initstub__kmod_percpu__470_3463_percpu_enable_async4
+ffffffc008aaca64 t setup_slab_nomerge
+ffffffc008aaca80 t setup_slab_merge
+ffffffc008aacaa0 T create_boot_cache
+ffffffc008aacb9c T create_kmalloc_cache
+ffffffc008aacc7c T setup_kmalloc_cache_index_table
+ffffffc008aacca8 T create_kmalloc_caches
+ffffffc008aacd7c t new_kmalloc_cache
+ffffffc008aace38 T __initstub__kmod_slab_common__472_1328_slab_proc_init6
+ffffffc008aace80 T __initstub__kmod_compaction__522_3091_kcompactd_init4
+ffffffc008aacea8 t kcompactd_init
+ffffffc008aacf2c T __initstub__kmod_workingset__446_750_workingset_init6
+ffffffc008aacf54 t workingset_init
+ffffffc008aad034 t disable_randmaps
+ffffffc008aad050 T __initstub__kmod_memory__437_164_init_zero_pfnearly
+ffffffc008aad084 T __initstub__kmod_memory__472_4500_fault_around_debugfs7
+ffffffc008aad0d8 t cmdline_parse_stack_guard_gap
+ffffffc008aad158 T mmap_init
+ffffffc008aad19c T __initstub__kmod_mmap__469_3756_init_user_reserve4
+ffffffc008aad1e0 T __initstub__kmod_mmap__473_3777_init_admin_reserve4
+ffffffc008aad224 T __initstub__kmod_mmap__475_3847_init_reserve_notifier4
+ffffffc008aad25c T anon_vma_init
+ffffffc008aad2e0 t set_nohugeiomap
+ffffffc008aad300 t set_nohugevmalloc
+ffffffc008aad320 T vm_area_add_early
+ffffffc008aad394 T vm_area_register_early
+ffffffc008aad450 T vmalloc_init
+ffffffc008aad648 T __initstub__kmod_vmalloc__481_4205_proc_vmalloc_init6
+ffffffc008aad698 t early_init_on_alloc
+ffffffc008aad6cc t early_init_on_free
+ffffffc008aad700 T init_mem_debugging_and_hardening
+ffffffc008aad780 T memblock_free_pages
+ffffffc008aad7b0 T page_alloc_init_late
+ffffffc008aad820 t build_all_zonelists_init
+ffffffc008aad8d8 T memmap_alloc
+ffffffc008aad920 T setup_per_cpu_pageset
+ffffffc008aad99c T get_pfn_range_for_nid
+ffffffc008aada80 T __absent_pages_in_range
+ffffffc008aadb58 T absent_pages_in_range
+ffffffc008aadb90 T set_pageblock_order
+ffffffc008aadba0 T node_map_pfn_alignment
+ffffffc008aadcb8 T free_area_init
+ffffffc008aadf14 t find_zone_movable_pfns_for_nodes
+ffffffc008aae300 t free_area_init_node
+ffffffc008aae3f4 t memmap_init
+ffffffc008aae534 t cmdline_parse_kernelcore
+ffffffc008aae5a4 t cmdline_parse_movablecore
+ffffffc008aae5e0 T mem_init_print_info
+ffffffc008aae79c T set_dma_reserve
+ffffffc008aae7b4 T page_alloc_init
+ffffffc008aae824 T __initstub__kmod_page_alloc__620_8978_init_per_zone_wmark_min2
+ffffffc008aae854 T alloc_large_system_hash
+ffffffc008aaeb04 t early_calculate_totalpages
+ffffffc008aaebc4 t calculate_node_totalpages
+ffffffc008aaeccc t free_area_init_core
+ffffffc008aaee40 t zone_spanned_pages_in_node
+ffffffc008aaef2c t zone_absent_pages_in_node
+ffffffc008aaf0cc t adjust_zone_range_for_zone_movable
+ffffffc008aaf15c t memmap_init_zone_range
+ffffffc008aaf228 t init_unavailable_range
+ffffffc008aaf388 t cmdline_parse_core
+ffffffc008aaf460 T memblock_alloc_range_nid
+ffffffc008aaf61c T memblock_phys_alloc_range
+ffffffc008aaf6e4 T memblock_phys_alloc_try_nid
+ffffffc008aaf720 T memblock_alloc_exact_nid_raw
+ffffffc008aaf7f4 t memblock_alloc_internal
+ffffffc008aaf8d4 T memblock_alloc_try_nid_raw
+ffffffc008aaf9ac T memblock_alloc_try_nid
+ffffffc008aafaa0 T memblock_free_late
+ffffffc008aafbe8 T memblock_enforce_memory_limit
+ffffffc008aafc84 T memblock_cap_memory_range
+ffffffc008aafdf0 T memblock_mem_limit_remove_map
+ffffffc008aafe70 T memblock_allow_resize
+ffffffc008aafe8c t early_memblock
+ffffffc008aafed8 T reset_all_zones_managed_pages
+ffffffc008aaff1c T memblock_free_all
+ffffffc008aaffac t free_low_memory_core_early
+ffffffc008ab00f4 T __initstub__kmod_memblock__454_2177_memblock_init_debugfs6
+ffffffc008ab0120 t memblock_init_debugfs
+ffffffc008ab01c0 t memmap_init_reserved_pages
+ffffffc008ab02a4 t __free_pages_memory
+ffffffc008ab034c t setup_memhp_default_state
+ffffffc008ab0388 t cmdline_parse_movable_node
+ffffffc008ab03a8 T __initstub__kmod_swap_state__448_909_swap_init_sysfs4
+ffffffc008ab03d0 t swap_init_sysfs
+ffffffc008ab0468 T __initstub__kmod_swapfile__465_2701_procswaps_init6
+ffffffc008ab04b0 T __initstub__kmod_swapfile__468_2710_max_swapfiles_check7
+ffffffc008ab04c4 T __initstub__kmod_swapfile__494_3704_swapfile_init4
+ffffffc008ab04ec t swapfile_init
+ffffffc008ab057c T subsection_map_init
+ffffffc008ab0668 T sparse_init
+ffffffc008ab081c t memblocks_present
+ffffffc008ab08a8 t sparse_init_nid
+ffffffc008ab0b84 t memory_present
+ffffffc008ab0d04 t sparse_early_usemaps_alloc_pgdat_section
+ffffffc008ab0d80 t sparse_buffer_init
+ffffffc008ab0df0 t sparse_buffer_fini
+ffffffc008ab0e44 t check_usemap_section_nr
+ffffffc008ab0f68 t setup_slub_debug
+ffffffc008ab10f8 t setup_slub_min_order
+ffffffc008ab1164 t setup_slub_max_order
+ffffffc008ab11f0 t setup_slub_min_objects
+ffffffc008ab125c T kmem_cache_init
+ffffffc008ab13e8 t bootstrap
+ffffffc008ab1518 t init_freelist_randomization
+ffffffc008ab15f8 T kmem_cache_init_late
+ffffffc008ab1648 T __initstub__kmod_slub__460_6078_slab_sysfs_init6
+ffffffc008ab1670 t slab_sysfs_init
+ffffffc008ab1810 T __initstub__kmod_slub__463_6293_slab_debugfs_init6
+ffffffc008ab183c t slab_debugfs_init
+ffffffc008ab1940 t early_kasan_fault
+ffffffc008ab19bc t kasan_set_multi_shot
+ffffffc008ab1a08 t early_kasan_flag
+ffffffc008ab1a84 t early_kasan_mode
+ffffffc008ab1b1c t early_kasan_flag_vmalloc
+ffffffc008ab1b98 t early_kasan_flag_page_alloc_sample
+ffffffc008ab1c04 t early_kasan_flag_page_alloc_sample_order
+ffffffc008ab1c6c T kasan_init_hw_tags
+ffffffc008ab1dac t early_kasan_flag_stacktrace
+ffffffc008ab1e28 t early_kasan_flag_stack_ring_size
+ffffffc008ab1e6c T kasan_init_tags
+ffffffc008ab1f28 T __initstub__kmod_huge_memory__455_521_hugepage_init4
+ffffffc008ab1f50 t hugepage_init
+ffffffc008ab2068 t setup_transparent_hugepage
+ffffffc008ab2248 T __initstub__kmod_huge_memory__471_3202_split_huge_pages_debugfs7
+ffffffc008ab2298 t hugepage_init_sysfs
+ffffffc008ab2374 t hugepage_exit_sysfs
+ffffffc008ab23d0 T khugepaged_init
+ffffffc008ab2464 T khugepaged_destroy
+ffffffc008ab2498 t early_page_owner_param
+ffffffc008ab24f0 t need_page_owner
+ffffffc008ab2508 t init_page_owner
+ffffffc008ab27c8 T __initstub__kmod_page_owner__426_745_pageowner_init7
+ffffffc008ab27f4 t pageowner_init
+ffffffc008ab2860 T __initstub__kmod_zsmalloc__445_2366_zs_init6
+ffffffc008ab28c8 t early_ioremap_debug_setup
+ffffffc008ab28e8 W early_memremap_pgprot_adjust
+ffffffc008ab28fc T early_ioremap_reset
+ffffffc008ab290c T early_ioremap_setup
+ffffffc008ab2970 T __initstub__kmod_early_ioremap__411_99_check_early_ioremap_leak7
+ffffffc008ab2998 t check_early_ioremap_leak
+ffffffc008ab2a14 T early_iounmap
+ffffffc008ab2b70 T early_ioremap
+ffffffc008ab2bb4 t __early_ioremap
+ffffffc008ab2d7c T early_memremap
+ffffffc008ab2de4 T early_memremap_ro
+ffffffc008ab2e4c T copy_from_early_mem
+ffffffc008ab2ef8 T early_memunmap
+ffffffc008ab2f24 t setup_early_page_ext
+ffffffc008ab2f44 T page_ext_init
+ffffffc008ab30c8 T __initstub__kmod_secretmem__418_293_secretmem_init5
+ffffffc008ab30f0 t secretmem_init
+ffffffc008ab3150 t parse_hardened_usercopy
+ffffffc008ab31ac T __initstub__kmod_usercopy__410_276_set_hardened_usercopy7
+ffffffc008ab31f8 T __initstub__kmod_file_table__421_130_init_fs_stat_sysctls5
+ffffffc008ab3224 t init_fs_stat_sysctls
+ffffffc008ab3284 T files_init
+ffffffc008ab32f8 T files_maxfiles_init
+ffffffc008ab3374 T chrdev_init
+ffffffc008ab33b8 T __initstub__kmod_exec__463_2157_init_fs_exec_sysctls5
+ffffffc008ab3400 T __initstub__kmod_pipe__435_1511_init_pipe_fs5
+ffffffc008ab3428 t init_pipe_fs
+ffffffc008ab34c0 T __initstub__kmod_namei__450_1076_init_fs_namei_sysctls5
+ffffffc008ab3508 T __initstub__kmod_fcntl__424_1041_fcntl_init6
+ffffffc008ab3564 T __initstub__kmod_dcache__389_202_init_fs_dcache_sysctls5
+ffffffc008ab35ac t set_dhash_entries
+ffffffc008ab3624 T vfs_caches_init_early
+ffffffc008ab3664 t dcache_init_early
+ffffffc008ab36ec T vfs_caches_init
+ffffffc008ab37a0 T __initstub__kmod_inode__414_140_init_fs_inode_sysctlsearly
+ffffffc008ab37e8 t set_ihash_entries
+ffffffc008ab3860 T inode_init_early
+ffffffc008ab38d0 T inode_init
+ffffffc008ab3928 T list_bdev_fs_names
+ffffffc008ab39fc T __initstub__kmod_filesystems__398_258_proc_filesystems_init6
+ffffffc008ab3a48 t set_mhash_entries
+ffffffc008ab3ac0 t set_mphash_entries
+ffffffc008ab3b38 T mnt_init
+ffffffc008ab3c94 t init_mount_tree
+ffffffc008ab3e2c T __initstub__kmod_namespace__455_4719_init_fs_namespace_sysctls5
+ffffffc008ab3e74 T seq_file_init
+ffffffc008ab3ec8 T __initstub__kmod_fs_writeback__532_2339_start_dirtytime_writeback6
+ffffffc008ab3f1c T nsfs_init
+ffffffc008ab3f7c T init_mount
+ffffffc008ab403c T init_umount
+ffffffc008ab40c4 T init_chdir
+ffffffc008ab4178 T init_chroot
+ffffffc008ab424c T init_chown
+ffffffc008ab4318 T init_chmod
+ffffffc008ab43ac T init_eaccess
+ffffffc008ab444c T init_stat
+ffffffc008ab44f8 T init_mknod
+ffffffc008ab462c T init_link
+ffffffc008ab473c T init_symlink
+ffffffc008ab47f4 T init_unlink
+ffffffc008ab482c T init_mkdir
+ffffffc008ab4908 T init_rmdir
+ffffffc008ab4940 T init_utimes
+ffffffc008ab49d4 T init_dup
+ffffffc008ab4a50 T buffer_init
+ffffffc008ab4b1c T __initstub__kmod_direct_io__429_1346_dio_init6
+ffffffc008ab4b78 T __initstub__kmod_fsnotify__402_601_fsnotify_init1
+ffffffc008ab4ba4 t fsnotify_init
+ffffffc008ab4c1c T __initstub__kmod_inotify_user__439_891_inotify_user_setup5
+ffffffc008ab4c48 t inotify_user_setup
+ffffffc008ab4d7c T __initstub__kmod_eventpoll__668_2419_eventpoll_init5
+ffffffc008ab4da8 t eventpoll_init
+ffffffc008ab4f08 T __initstub__kmod_anon_inodes__387_270_anon_inode_init5
+ffffffc008ab4f34 t anon_inode_init
+ffffffc008ab4fb0 T __initstub__kmod_userfaultfd__454_2191_userfaultfd_init6
+ffffffc008ab4fd8 t userfaultfd_init
+ffffffc008ab5054 T __initstub__kmod_aio__433_307_aio_setup6
+ffffffc008ab5080 t aio_setup
+ffffffc008ab514c T __initstub__kmod_locks__438_121_init_fs_locks_sysctlsearly
+ffffffc008ab5194 T __initstub__kmod_locks__479_2916_proc_locks_init5
+ffffffc008ab51e4 T __initstub__kmod_locks__481_2939_filelock_init1
+ffffffc008ab5210 t filelock_init
+ffffffc008ab530c T __initstub__kmod_binfmt_misc__415_834_init_misc_binfmt1
+ffffffc008ab5334 t init_misc_binfmt
+ffffffc008ab538c T __initstub__kmod_binfmt_script__331_156_init_script_binfmt1
+ffffffc008ab53c8 T __initstub__kmod_binfmt_elf__437_2345_init_elf_binfmt1
+ffffffc008ab5404 T __initstub__kmod_mbcache__341_440_mbcache_init6
+ffffffc008ab5468 T __initstub__kmod_coredump__434_985_init_fs_coredump_sysctls5
+ffffffc008ab54b0 T __initstub__kmod_iomap__465_1553_iomap_init5
+ffffffc008ab54f0 T proc_init_kmemcache
+ffffffc008ab55a0 T proc_root_init
+ffffffc008ab5644 T set_proc_pid_nlink
+ffffffc008ab5668 T proc_tty_init
+ffffffc008ab5718 T __initstub__kmod_proc__322_19_proc_cmdline_init5
+ffffffc008ab5764 T __initstub__kmod_proc__339_98_proc_consoles_init5
+ffffffc008ab57b4 T __initstub__kmod_proc__339_28_proc_cpuinfo_init5
+ffffffc008ab57fc T __initstub__kmod_proc__424_64_proc_devices_init5
+ffffffc008ab5828 t proc_devices_init
+ffffffc008ab5880 T __initstub__kmod_proc__355_42_proc_interrupts_init5
+ffffffc008ab58d0 T __initstub__kmod_proc__377_37_proc_loadavg_init5
+ffffffc008ab592c T __initstub__kmod_proc__413_177_proc_meminfo_init5
+ffffffc008ab5988 T __initstub__kmod_proc__358_242_proc_stat_init5
+ffffffc008ab59d0 T __initstub__kmod_proc__355_49_proc_uptime_init5
+ffffffc008ab5a2c T __initstub__kmod_proc__322_27_proc_version_init5
+ffffffc008ab5a88 T __initstub__kmod_proc__355_37_proc_softirqs_init5
+ffffffc008ab5ae4 T proc_self_init
+ffffffc008ab5b18 T proc_thread_self_init
+ffffffc008ab5b4c T __register_sysctl_init
+ffffffc008ab5bb4 T proc_sys_init
+ffffffc008ab5c08 T proc_net_init
+ffffffc008ab5c54 t proc_net_ns_init
+ffffffc008ab5d30 T __initstub__kmod_proc__352_63_proc_kmsg_init5
+ffffffc008ab5d78 T __initstub__kmod_proc__418_342_proc_page_init5
+ffffffc008ab5da4 t proc_page_init
+ffffffc008ab5e04 T __initstub__kmod_proc__322_96_proc_boot_config_init5
+ffffffc008ab5e2c t proc_boot_config_init
+ffffffc008ab5edc t copy_xbc_key_value_list
+ffffffc008ab60e0 T kernfs_init
+ffffffc008ab6160 t kernfs_lock_init
+ffffffc008ab61ec T sysfs_init
+ffffffc008ab626c T __initstub__kmod_devpts__393_637_init_devpts_fs6
+ffffffc008ab6294 t init_devpts_fs
+ffffffc008ab62f8 T ext4_init_system_zone
+ffffffc008ab635c T ext4_init_es
+ffffffc008ab63c0 T ext4_init_pending
+ffffffc008ab6424 T ext4_init_mballoc
+ffffffc008ab6500 T ext4_init_pageio
+ffffffc008ab65a4 T ext4_init_post_read_processing
+ffffffc008ab6640 T __initstub__kmod_ext4__842_7310_ext4_init_fs6
+ffffffc008ab6668 t ext4_init_fs
+ffffffc008ab6804 t init_inodecache
+ffffffc008ab686c T ext4_init_sysfs
+ffffffc008ab694c T ext4_fc_init_dentry_cache
+ffffffc008ab69b0 T jbd2_journal_init_transaction_cache
+ffffffc008ab6a3c T jbd2_journal_init_revoke_record_cache
+ffffffc008ab6ac8 T jbd2_journal_init_revoke_table_cache
+ffffffc008ab6b50 T __initstub__kmod_jbd2__554_3198_journal_init6
+ffffffc008ab6b78 t journal_init
+ffffffc008ab6bd4 t journal_init_caches
+ffffffc008ab6c28 t jbd2_journal_init_journal_head_cache
+ffffffc008ab6cac t jbd2_journal_init_handle_cache
+ffffffc008ab6d30 t jbd2_journal_init_inode_cache
+ffffffc008ab6db8 T __initstub__kmod_ramfs__409_299_init_ramfs_fs5
+ffffffc008ab6dec T fuse_dev_init
+ffffffc008ab6e74 T __initstub__kmod_fuse__569_2237_fuse_init6
+ffffffc008ab6e9c t fuse_init
+ffffffc008ab7054 t fuse_fs_init
+ffffffc008ab710c T fuse_ctl_init
+ffffffc008ab7140 t debugfs_kernel
+ffffffc008ab71d0 T __initstub__kmod_debugfs__423_906_debugfs_init1
+ffffffc008ab71f8 t debugfs_init
+ffffffc008ab7298 T tracefs_create_instance_dir
+ffffffc008ab7314 T __initstub__kmod_tracefs__394_645_tracefs_init1
+ffffffc008ab733c t tracefs_init
+ffffffc008ab73a0 T __initstub__kmod_erofs__482_1121_erofs_module_init6
+ffffffc008ab73c8 t erofs_module_init
+ffffffc008ab74bc T erofs_init_shrinker
+ffffffc008ab74f8 T erofs_init_sysfs
+ffffffc008ab75a0 T z_erofs_init_zip_subsystem
+ffffffc008ab77fc t capability_init
+ffffffc008ab7840 T __initstub__kmod_min_addr__375_53_init_mmap_min_addr0
+ffffffc008ab7870 T early_security_init
+ffffffc008ab790c t prepare_lsm
+ffffffc008ab79e4 t initialize_lsm
+ffffffc008ab7a8c T security_init
+ffffffc008ab7b08 t ordered_lsm_init
+ffffffc008ab7d78 t choose_major_lsm
+ffffffc008ab7d98 t choose_lsm_order
+ffffffc008ab7db8 t enable_debug
+ffffffc008ab7dd8 T security_add_hooks
+ffffffc008ab7ea4 t lsm_allowed
+ffffffc008ab7f1c t lsm_set_blob_sizes
+ffffffc008ab801c t ordered_lsm_parse
+ffffffc008ab8384 t lsm_early_cred
+ffffffc008ab83ec t lsm_early_task
+ffffffc008ab8454 t append_ordered_lsm
+ffffffc008ab854c T __initstub__kmod_inode__413_350_securityfs_init1
+ffffffc008ab8574 t securityfs_init
+ffffffc008ab8620 T avc_init
+ffffffc008ab86f8 T avc_add_callback
+ffffffc008ab8770 t enforcing_setup
+ffffffc008ab87f0 t checkreqprot_setup
+ffffffc008ab8884 t selinux_init
+ffffffc008ab89ec T __initstub__kmod_selinux__637_2251_init_sel_fs6
+ffffffc008ab8a14 t init_sel_fs
+ffffffc008ab8b64 T __initstub__kmod_selinux__450_121_selnl_init6
+ffffffc008ab8b90 t selnl_init
+ffffffc008ab8c24 T __initstub__kmod_selinux__636_279_sel_netif_init6
+ffffffc008ab8c50 t sel_netif_init
+ffffffc008ab8cb4 T __initstub__kmod_selinux__637_305_sel_netnode_init6
+ffffffc008ab8cf8 T __initstub__kmod_selinux__637_238_sel_netport_init6
+ffffffc008ab8d3c T ebitmap_cache_init
+ffffffc008ab8d90 T hashtab_cache_init
+ffffffc008ab8de4 T avtab_cache_init
+ffffffc008ab8e64 T __initstub__kmod_selinux__712_3831_aurule_init6
+ffffffc008ab8e90 t aurule_init
+ffffffc008ab8edc t integrity_iintcache_init
+ffffffc008ab8f3c T integrity_load_keys
+ffffffc008ab8f4c T __initstub__kmod_integrity__383_232_integrity_fs_init7
+ffffffc008ab8f74 t integrity_fs_init
+ffffffc008ab9004 t integrity_audit_setup
+ffffffc008ab9084 T __initstub__kmod_crypto_algapi__510_1311_crypto_algapi_init7
+ffffffc008ab90d4 T crypto_init_proc
+ffffffc008ab9120 T __initstub__kmod_seqiv__406_183_seqiv_module_init4
+ffffffc008ab9154 T __initstub__kmod_echainiv__406_160_echainiv_module_init4
+ffffffc008ab9188 T __initstub__kmod_cryptomgr__478_257_cryptomgr_init3
+ffffffc008ab91c4 T __initstub__kmod_hmac__406_258_hmac_module_init4
+ffffffc008ab91f8 T __initstub__kmod_xcbc__331_270_crypto_xcbc_module_init4
+ffffffc008ab922c T __initstub__kmod_crypto_null__392_221_crypto_null_mod_init4
+ffffffc008ab9254 t crypto_null_mod_init
+ffffffc008ab92f4 T __initstub__kmod_md5__332_245_md5_mod_init4
+ffffffc008ab9328 T __initstub__kmod_sha1_generic__387_89_sha1_generic_mod_init4
+ffffffc008ab935c T __initstub__kmod_sha256_generic__388_101_sha256_generic_mod_init4
+ffffffc008ab9394 T __initstub__kmod_sha512_generic__388_218_sha512_generic_mod_init4
+ffffffc008ab93cc T __initstub__kmod_blake2b_generic__332_174_blake2b_mod_init4
+ffffffc008ab9404 T __initstub__kmod_cbc__331_218_crypto_cbc_module_init4
+ffffffc008ab9438 T __initstub__kmod_ctr__333_355_crypto_ctr_module_init4
+ffffffc008ab9470 T __initstub__kmod_xctr__331_185_crypto_xctr_module_init4
+ffffffc008ab94a4 T __initstub__kmod_hctr2__411_575_hctr2_module_init4
+ffffffc008ab94dc T __initstub__kmod_adiantum__415_613_adiantum_module_init4
+ffffffc008ab9510 T __initstub__kmod_nhpoly1305__346_248_nhpoly1305_mod_init4
+ffffffc008ab9544 T __initstub__kmod_gcm__408_1159_crypto_gcm_module_init4
+ffffffc008ab956c t crypto_gcm_module_init
+ffffffc008ab95f8 T __initstub__kmod_chacha20poly1305__408_671_chacha20poly1305_module_init4
+ffffffc008ab9630 T __initstub__kmod_des_generic__331_125_des_generic_mod_init4
+ffffffc008ab9668 T __initstub__kmod_aes_generic__334_1314_aes_init4
+ffffffc008ab969c T __initstub__kmod_chacha_generic__331_128_chacha_generic_mod_init4
+ffffffc008ab96d4 T __initstub__kmod_poly1305_generic__333_142_poly1305_mod_init4
+ffffffc008ab9708 T __initstub__kmod_deflate__388_334_deflate_mod_init4
+ffffffc008ab9730 t deflate_mod_init
+ffffffc008ab979c T __initstub__kmod_crc32c_generic__331_161_crc32c_mod_init4
+ffffffc008ab97d0 T __initstub__kmod_authenc__483_464_crypto_authenc_module_init4
+ffffffc008ab9804 T __initstub__kmod_authencesn__481_479_crypto_authenc_esn_module_init4
+ffffffc008ab9838 T __initstub__kmod_lzo__384_158_lzo_mod_init4
+ffffffc008ab9860 t lzo_mod_init
+ffffffc008ab98c8 T __initstub__kmod_lzo_rle__384_158_lzorle_mod_init4
+ffffffc008ab98f0 t lzorle_mod_init
+ffffffc008ab9958 T __initstub__kmod_lz4__358_155_lz4_mod_init4
+ffffffc008ab9980 t lz4_mod_init
+ffffffc008ab99e8 T __initstub__kmod_ansi_cprng__337_470_prng_mod_init4
+ffffffc008ab9a20 T __initstub__kmod_drbg__400_2148_drbg_init4
+ffffffc008ab9a48 t drbg_init
+ffffffc008ab9ae8 t drbg_fill_array
+ffffffc008ab9bf0 T __initstub__kmod_jitterentropy_rng__331_211_jent_mod_init6
+ffffffc008ab9c18 t jent_mod_init
+ffffffc008ab9c6c T __initstub__kmod_ghash_generic__334_178_ghash_mod_init4
+ffffffc008ab9ca0 T __initstub__kmod_polyval_generic__336_239_polyval_mod_init4
+ffffffc008ab9cd4 T __initstub__kmod_zstd__388_253_zstd_mod_init4
+ffffffc008ab9cfc t zstd_mod_init
+ffffffc008ab9d64 T __initstub__kmod_essiv__407_646_essiv_module_init4
+ffffffc008ab9d98 T bdev_cache_init
+ffffffc008ab9e44 T __initstub__kmod_fops__450_712_blkdev_init6
+ffffffc008ab9e84 T __initstub__kmod_bio__495_1762_init_bio4
+ffffffc008ab9eb0 t init_bio
+ffffffc008ab9f84 t elevator_setup
+ffffffc008ab9fbc T blk_dev_init
+ffffffc008aba088 T __initstub__kmod_blk_ioc__451_457_blk_ioc_init4
+ffffffc008aba0e4 T __initstub__kmod_blk_timeout__439_99_blk_timeout_init7
+ffffffc008aba104 T __initstub__kmod_blk_mq__518_4953_blk_mq_init4
+ffffffc008aba130 t blk_mq_init
+ffffffc008aba258 T printk_all_partitions
+ffffffc008aba4a0 T __initstub__kmod_genhd__448_923_genhd_device_init4
+ffffffc008aba4c8 t genhd_device_init
+ffffffc008aba554 T __initstub__kmod_genhd__450_1335_proc_genhd_init6
+ffffffc008aba580 t proc_genhd_init
+ffffffc008aba5f0 t force_gpt_fn
+ffffffc008aba610 T __initstub__kmod_mq_deadline__445_1242_deadline_init6
+ffffffc008aba644 T __initstub__kmod_kyber_iosched__465_1051_kyber_init6
+ffffffc008aba678 T __initstub__kmod_bfq__517_7527_bfq_init6
+ffffffc008aba6a0 t bfq_init
+ffffffc008aba73c T __initstub__kmod_blk_crypto__438_99_bio_crypt_ctx_init4
+ffffffc008aba768 t bio_crypt_ctx_init
+ffffffc008aba824 T __initstub__kmod_blk_crypto_sysfs__436_173_blk_crypto_sysfs_init4
+ffffffc008aba884 T __initstub__kmod_io_uring__832_4146_io_uring_init6
+ffffffc008aba8b0 t io_uring_init
+ffffffc008aba90c T io_uring_optable_init
+ffffffc008aba97c T __initstub__kmod_io_wq__467_1417_io_wq_init4
+ffffffc008aba9a4 t io_wq_init
+ffffffc008abaa1c T __initstub__kmod_libblake2s__333_69_blake2s_mod_init6
+ffffffc008abaa30 T __initstub__kmod_libcrc32c__333_74_libcrc32c_mod_init6
+ffffffc008abaa8c T __initstub__kmod_percpu_counter__349_257_percpu_counter_startup6
+ffffffc008abaab8 t percpu_counter_startup
+ffffffc008abab60 T __initstub__kmod_audit__383_89_audit_classes_init6
+ffffffc008abab8c t audit_classes_init
+ffffffc008abac04 t dyndbg_setup
+ffffffc008abac18 T __initstub__kmod_dynamic_debug__627_1453_dynamic_debug_initearly
+ffffffc008abac44 t dynamic_debug_init
+ffffffc008abaed4 T __initstub__kmod_dynamic_debug__629_1456_dynamic_debug_init_control5
+ffffffc008abaefc t dynamic_debug_init_control
+ffffffc008abafc0 T __initstub__kmod_sg_pool__377_180_sg_pool_init4
+ffffffc008abafe8 t sg_pool_init
+ffffffc008abb0f4 t is_stack_depot_disabled
+ffffffc008abb15c T stack_depot_want_early_init
+ffffffc008abb184 T stack_depot_early_init
+ffffffc008abb274 T xbc_get_info
+ffffffc008abb2c4 T xbc_root_node
+ffffffc008abb2ec T xbc_node_index
+ffffffc008abb30c T xbc_node_get_parent
+ffffffc008abb334 T xbc_node_get_child
+ffffffc008abb35c T xbc_node_get_next
+ffffffc008abb384 T xbc_node_get_data
+ffffffc008abb3c4 T xbc_node_find_subkey
+ffffffc008abb4f0 t xbc_node_match_prefix
+ffffffc008abb5a8 T xbc_node_find_value
+ffffffc008abb660 T xbc_node_compose_key_after
+ffffffc008abb870 T xbc_node_find_next_leaf
+ffffffc008abb958 T xbc_node_find_next_key_value
+ffffffc008abb9fc T xbc_exit
+ffffffc008abba74 T xbc_init
+ffffffc008abbc20 t xbc_parse_tree
+ffffffc008abbde4 t xbc_verify_tree
+ffffffc008abc0d8 t xbc_parse_kv
+ffffffc008abc2a4 t xbc_parse_key
+ffffffc008abc314 t xbc_close_brace
+ffffffc008abc358 t __xbc_parse_keys
+ffffffc008abc3c0 t __xbc_parse_value
+ffffffc008abc5b0 t xbc_parse_array
+ffffffc008abc684 t __xbc_close_brace
+ffffffc008abc72c t __xbc_add_key
+ffffffc008abc828 t xbc_valid_keyword
+ffffffc008abc87c t find_match_node
+ffffffc008abc928 t __xbc_add_sibling
+ffffffc008abca28 t xbc_add_node
+ffffffc008abca90 t __xbc_open_brace
+ffffffc008abcb18 T irqchip_init
+ffffffc008abcb4c T gic_cascade_irq
+ffffffc008abcb98 T gic_init
+ffffffc008abcbf4 t __gic_init_bases
+ffffffc008abcc8c t gicv2_force_probe_cfg
+ffffffc008abccc0 T gic_of_init
+ffffffc008abd02c t gic_of_setup_kvm_info
+ffffffc008abd0b8 t gic_smp_init
+ffffffc008abd1a4 T gicv2m_init
+ffffffc008abd1fc t gicv2m_of_init
+ffffffc008abd500 t gicv2m_init_one
+ffffffc008abd718 t gicv3_nolpi_cfg
+ffffffc008abd74c t gic_of_init
+ffffffc008abd9d0 t gic_init_bases
+ffffffc008abdd14 t gic_populate_ppi_partitions
+ffffffc008abe028 t gic_of_setup_kvm_info
+ffffffc008abe11c t gic_smp_init
+ffffffc008abe208 T mbi_init
+ffffffc008abe4c0 T its_lpi_memreserve_init
+ffffffc008abe4d4 T its_init
+ffffffc008abe72c t its_of_probe
+ffffffc008abe8f0 t allocate_lpi_tables
+ffffffc008abea3c t its_reset_one
+ffffffc008abead8 t its_probe_one
+ffffffc008abf670 t its_map_one
+ffffffc008abf7bc t its_compute_its_list_map
+ffffffc008abf8cc t its_setup_lpi_prop_table
+ffffffc008abfaa0 t its_lpi_init
+ffffffc008abfb44 T __initstub__kmod_irq_gic_v3_its_platform_msi__371_163_its_pmsi_initearly
+ffffffc008abfb70 t its_pmsi_of_init
+ffffffc008abfc1c t its_pmsi_init_one
+ffffffc008abfcf0 T __initstub__kmod_irq_gic_v3_its_pci_msi__398_202_its_pci_msi_initearly
+ffffffc008abfd1c t its_pci_of_msi_init
+ffffffc008abfde0 t its_pci_msi_init_one
+ffffffc008abfebc T __initstub__kmod_simple_pm_bus__340_91_simple_pm_bus_driver_init6
+ffffffc008abfef4 T __initstub__kmod_probe__391_109_pcibus_class_init2
+ffffffc008abff30 T pci_sort_breadthfirst
+ffffffc008abff6c t pci_sort_bf_cmp
+ffffffc008abffd0 t pcie_port_pm_setup
+ffffffc008ac0048 W pcibios_setup
+ffffffc008ac0058 T pci_register_set_vga_state
+ffffffc008ac0070 T __initstub__kmod_pci__499_6732_pci_resource_alignment_sysfs_init7
+ffffffc008ac00ac t pci_setup
+ffffffc008ac0564 T __initstub__kmod_pci__502_6907_pci_realloc_setup_params0
+ffffffc008ac0590 t pci_realloc_setup_params
+ffffffc008ac05ec T __initstub__kmod_pci_driver__425_1726_pci_driver_init2
+ffffffc008ac0614 t pci_driver_init
+ffffffc008ac0658 T __initstub__kmod_pci_sysfs__389_1530_pci_sysfs_init7
+ffffffc008ac0680 t pci_sysfs_init
+ffffffc008ac0700 T pci_realloc_get_opt
+ffffffc008ac0774 T pci_assign_unassigned_resources
+ffffffc008ac07c8 t pcie_port_setup
+ffffffc008ac086c T __initstub__kmod_pcieportdrv__389_252_pcie_portdrv_init6
+ffffffc008ac0894 t pcie_portdrv_init
+ffffffc008ac08f8 t pcie_aspm_disable
+ffffffc008ac0998 T pcie_aer_init
+ffffffc008ac09ec t pcie_pme_setup
+ffffffc008ac0a38 T pcie_pme_init
+ffffffc008ac0a6c T __initstub__kmod_proc__398_472_pci_proc_init6
+ffffffc008ac0a98 t pci_proc_init
+ffffffc008ac0b48 T __initstub__kmod_slot__391_381_pci_slot_init4
+ffffffc008ac0bb0 T __initstub__kmod_quirks__417_195_pci_apply_final_quirks5s
+ffffffc008ac0bdc t pci_apply_final_quirks
+ffffffc008ac0d5c T __initstub__kmod_vgaarb__396_1564_vga_arb_device_init4s
+ffffffc008ac0d84 t vga_arb_device_init
+ffffffc008ac0e48 T __initstub__kmod_pci_epc_core__414_849_pci_epc_init6
+ffffffc008ac0e70 t pci_epc_init
+ffffffc008ac0ee4 T __initstub__kmod_pci_epf_core__399_561_pci_epf_init6
+ffffffc008ac0f0c t pci_epf_init
+ffffffc008ac0f68 T __initstub__kmod_pci_host_generic__388_87_gen_pci_driver_init6
+ffffffc008ac0fa0 T __initstub__kmod_pcie_designware_plat__388_187_dw_plat_pcie_driver_init6
+ffffffc008ac0fd8 T __initstub__kmod_pcie_kirin__416_829_kirin_pcie_driver_init6
+ffffffc008ac1010 T __initstub__kmod_bus__415_462_amba_init2
+ffffffc008ac1044 T __initstub__kmod_bus__417_498_amba_stub_drv_init7s
+ffffffc008ac1098 t clk_ignore_unused_setup
+ffffffc008ac10b8 T __initstub__kmod_clk__485_1416_clk_disable_unused7s
+ffffffc008ac10e4 t clk_disable_unused
+ffffffc008ac128c T __initstub__kmod_clk__517_3662_clk_debug_init7
+ffffffc008ac12b8 t clk_debug_init
+ffffffc008ac1404 T of_clk_init
+ffffffc008ac16dc t clk_disable_unused_subtree
+ffffffc008ac1b18 t clk_unprepare_unused_subtree
+ffffffc008ac1de4 T of_fixed_factor_clk_setup
+ffffffc008ac1e10 T __initstub__kmod_clk_fixed_factor__348_341_of_fixed_factor_clk_driver_init6
+ffffffc008ac1e48 T of_fixed_clk_setup
+ffffffc008ac1e74 T __initstub__kmod_clk_fixed_rate__374_239_of_fixed_clk_driver_init6
+ffffffc008ac1eac T __initstub__kmod_clk_gpio__339_249_gpio_clk_driver_init6
+ffffffc008ac1ee4 T __initstub__kmod_virtio__398_568_virtio_init1
+ffffffc008ac1f28 T __initstub__kmod_virtio_pci__414_647_virtio_pci_driver_init6
+ffffffc008ac1f68 T __initstub__kmod_virtio_balloon__424_1128_virtio_balloon_driver_init6
+ffffffc008ac1f9c T __initstub__kmod_tty_io__434_3518_tty_class_init2
+ffffffc008ac1ffc T tty_init
+ffffffc008ac2158 T n_tty_init
+ffffffc008ac218c T __initstub__kmod_n_null__384_63_n_null_init6
+ffffffc008ac21c8 T __initstub__kmod_pty__391_947_pty_init6
+ffffffc008ac21f4 t unix98_pty_init
+ffffffc008ac241c t sysrq_always_enabled_setup
+ffffffc008ac2460 T __initstub__kmod_sysrq__424_1202_sysrq_init6
+ffffffc008ac248c t sysrq_init
+ffffffc008ac2500 T vcs_init
+ffffffc008ac25ec T kbd_init
+ffffffc008ac2728 T console_map_init
+ffffffc008ac2794 T __initstub__kmod_vt__419_3548_con_initcon
+ffffffc008ac27c0 t con_init
+ffffffc008ac2b08 T vty_init
+ffffffc008ac2c74 T __initstub__kmod_vt__431_4325_vtconsole_class_init2
+ffffffc008ac2ca0 t vtconsole_class_init
+ffffffc008ac2dc8 T __initstub__kmod_hvc_console__387_246_hvc_console_initcon
+ffffffc008ac2e00 T uart_get_console
+ffffffc008ac2e90 T setup_earlycon
+ffffffc008ac2f8c t register_earlycon
+ffffffc008ac30a4 t param_setup_earlycon
+ffffffc008ac30f8 T of_setup_earlycon
+ffffffc008ac33c4 t earlycon_init
+ffffffc008ac3470 t earlycon_print_info
+ffffffc008ac3540 t parse_options
+ffffffc008ac3694 T __initstub__kmod_8250__392_690_univ8250_console_initcon
+ffffffc008ac36bc t univ8250_console_init
+ffffffc008ac370c T early_serial_setup
+ffffffc008ac383c t serial8250_isa_init_ports
+ffffffc008ac3984 T __initstub__kmod_8250__398_1249_serial8250_init6
+ffffffc008ac39ac t serial8250_init
+ffffffc008ac3ab4 t serial8250_register_ports
+ffffffc008ac3be4 T early_serial8250_setup
+ffffffc008ac3c7c t init_port
+ffffffc008ac3d74 T __initstub__kmod_8250_pericom__395_211_pericom8250_pci_driver_init6
+ffffffc008ac3db4 T __initstub__kmod_8250_of__390_353_of_platform_serial_driver_init6
+ffffffc008ac3dec T __initstub__kmod_ttynull__384_106_ttynull_init6
+ffffffc008ac3e14 t ttynull_init
+ffffffc008ac3f20 T __initstub__kmod_mem__419_787_chr_dev_init5
+ffffffc008ac3f48 t chr_dev_init
+ffffffc008ac402c t parse_trust_cpu
+ffffffc008ac4060 t parse_trust_bootloader
+ffffffc008ac4094 T random_init_early
+ffffffc008ac4238 t arch_get_random_seed_longs_early
+ffffffc008ac4348 T random_init
+ffffffc008ac44f4 T add_bootloader_randomness
+ffffffc008ac455c T __initstub__kmod_random__488_1642_random_sysctls_init6
+ffffffc008ac45b0 T __initstub__kmod_misc__386_293_misc_init4
+ffffffc008ac45d8 t misc_init
+ffffffc008ac46dc T virtio_cons_early_init
+ffffffc008ac4720 T __initstub__kmod_virtio_console__423_2293_virtio_console_init6
+ffffffc008ac4748 t virtio_console_init
+ffffffc008ac4868 T __initstub__kmod_rng_core__348_718_hwrng_modinit5
+ffffffc008ac4890 t hwrng_modinit
+ffffffc008ac493c T __initstub__kmod_cctrng__396_709_cctrng_mod_init6
+ffffffc008ac4974 T __initstub__kmod_arm_smccc_trng__347_119_smccc_trng_driver_init6
+ffffffc008ac49ac T __initstub__kmod_cn10k_rng__388_181_cn10k_rng_driver_init6
+ffffffc008ac49ec T __initstub__kmod_iommu__416_195_iommu_subsys_init4
+ffffffc008ac4a14 t iommu_subsys_init
+ffffffc008ac4b64 t iommu_set_def_domain_type
+ffffffc008ac4bf0 t iommu_dma_setup
+ffffffc008ac4c38 T __initstub__kmod_iommu__461_2590_iommu_init1
+ffffffc008ac4c8c T __initstub__kmod_iommu_sysfs__384_47_iommu_dev_init2
+ffffffc008ac4cc8 t iommu_dma_forcedac_setup
+ffffffc008ac4d2c T __initstub__kmod_dma_iommu__412_1712_iommu_dma_init3
+ffffffc008ac4d58 T __initstub__kmod_component__339_118_component_debug_init1
+ffffffc008ac4da0 T __initstub__kmod_core__499_700_devlink_class_init2
+ffffffc008ac4dc8 t devlink_class_init
+ffffffc008ac4e38 T __initstub__kmod_core__507_1269_sync_state_resume_initcall7
+ffffffc008ac4e68 t fw_devlink_setup
+ffffffc008ac4f24 t fw_devlink_strict_setup
+ffffffc008ac4f58 T wait_for_init_devices_probe
+ffffffc008ac4fc8 T devices_init
+ffffffc008ac509c T buses_init
+ffffffc008ac5124 t deferred_probe_timeout_setup
+ffffffc008ac519c T __initstub__kmod_dd__389_371_deferred_probe_initcall7
+ffffffc008ac53a0 t save_async_options
+ffffffc008ac5430 T classes_init
+ffffffc008ac5484 W early_platform_cleanup
+ffffffc008ac5494 T platform_bus_init
+ffffffc008ac551c T cpu_dev_init
+ffffffc008ac5574 t cpu_register_vulnerabilities
+ffffffc008ac55c8 T firmware_init
+ffffffc008ac5618 T driver_init
+ffffffc008ac569c T __initstub__kmod_topology__384_194_topology_sysfs_init6
+ffffffc008ac5704 T container_dev_init
+ffffffc008ac5768 T __initstub__kmod_cacheinfo__339_723_cacheinfo_sysfs_init6
+ffffffc008ac57d0 T __initstub__kmod_swnode__358_1167_software_node_init2
+ffffffc008ac5828 T __initstub__kmod_wakeup__454_1240_wakeup_sources_debugfs_init2
+ffffffc008ac587c T __initstub__kmod_wakeup_stats__339_217_wakeup_sources_sysfs_init2
+ffffffc008ac58d0 T __initstub__kmod_firmware_class__429_1659_firmware_class_init5
+ffffffc008ac58f8 t firmware_class_init
+ffffffc008ac5958 T memory_dev_init
+ffffffc008ac5a60 t add_boot_memory_block
+ffffffc008ac5b14 T __initstub__kmod_regmap__496_3513_regmap_initcall2
+ffffffc008ac5b44 T __initstub__kmod_soc__341_192_soc_bus_register1
+ffffffc008ac5b6c t soc_bus_register
+ffffffc008ac5bb4 T __initstub__kmod_arch_topology__422_250_register_cpu_capacity_sysctl4
+ffffffc008ac5c70 T topology_parse_cpu_capacity
+ffffffc008ac5e30 T __initstub__kmod_arch_topology__427_479_free_raw_capacity1
+ffffffc008ac5e74 T reset_cpu_topology
+ffffffc008ac5f1c W parse_acpi_topology
+ffffffc008ac5f30 T init_cpu_topology
+ffffffc008ac5f7c t parse_dt_topology
+ffffffc008ac6068 t parse_socket
+ffffffc008ac615c t parse_cluster
+ffffffc008ac636c t parse_core
+ffffffc008ac6560 t get_cpu_for_node
+ffffffc008ac6648 t ramdisk_size
+ffffffc008ac668c T __initstub__kmod_brd__451_528_brd_init6
+ffffffc008ac66b4 t brd_init
+ffffffc008ac67e4 T __initstub__kmod_loop__461_2273_loop_init6
+ffffffc008ac680c t loop_init
+ffffffc008ac6924 t max_loop_setup
+ffffffc008ac6968 T __initstub__kmod_virtio_blk__460_1307_virtio_blk_init6
+ffffffc008ac6990 t virtio_blk_init
+ffffffc008ac6a48 T __initstub__kmod_zram__442_2162_zram_init6
+ffffffc008ac6a70 t zram_init
+ffffffc008ac6bc4 T __initstub__kmod_open_dice__384_204_open_dice_init6
+ffffffc008ac6c0c t open_dice_probe
+ffffffc008ac6d6c T __initstub__kmod_vcpu_stall_detector__369_219_vcpu_stall_detect_driver_init6
+ffffffc008ac6da4 T __initstub__kmod_syscon__375_329_syscon_init2
+ffffffc008ac6ddc T __initstub__kmod_dma_buf__415_1667_dma_buf_init4
+ffffffc008ac6e04 t dma_buf_init
+ffffffc008ac6ee8 T __initstub__kmod_dma_heap__417_470_dma_heap_init4
+ffffffc008ac6fd8 t loopback_net_init
+ffffffc008ac707c T __initstub__kmod_loopback__617_280_blackhole_netdev_init6
+ffffffc008ac70a4 t blackhole_netdev_init
+ffffffc008ac7144 T __initstub__kmod_uio__391_1086_uio_init6
+ffffffc008ac716c t uio_init
+ffffffc008ac72c4 T __initstub__kmod_serio__384_1048_serio_init4
+ffffffc008ac72ec t serio_init
+ffffffc008ac7348 T __initstub__kmod_serport__392_308_serport_init6
+ffffffc008ac7370 t serport_init
+ffffffc008ac73c8 T __initstub__kmod_input_core__432_2695_input_init4
+ffffffc008ac73f0 t input_init
+ffffffc008ac749c t input_proc_init
+ffffffc008ac7554 T __initstub__kmod_rtc_core__372_487_rtc_init4
+ffffffc008ac757c t rtc_init
+ffffffc008ac75fc T rtc_dev_init
+ffffffc008ac7654 T __initstub__kmod_rtc_pl030__411_170_pl030_driver_init6
+ffffffc008ac7688 T __initstub__kmod_rtc_pl031__411_466_pl031_driver_init6
+ffffffc008ac76bc T __initstub__kmod_syscon_reboot__369_100_syscon_reboot_driver_init6
+ffffffc008ac76f4 T __initstub__kmod_power_supply__373_1560_power_supply_class_init4
+ffffffc008ac771c t power_supply_class_init
+ffffffc008ac7788 T __initstub__kmod_watchdog__434_479_watchdog_init4s
+ffffffc008ac77c0 t watchdog_deferred_registration
+ffffffc008ac7888 T watchdog_dev_init
+ffffffc008ac797c T __initstub__kmod_dm_mod__424_300_dm_init_init7
+ffffffc008ac79a4 t dm_init_init
+ffffffc008ac7acc t dm_parse_devices
+ffffffc008ac7bc0 t dm_setup_cleanup
+ffffffc008ac7cac t dm_parse_device_entry
+ffffffc008ac7e00 t str_field_delimit
+ffffffc008ac7e80 t dm_parse_table
+ffffffc008ac7f0c t dm_parse_table_entry
+ffffffc008ac80ac T __initstub__kmod_dm_mod__479_3395_dm_init6
+ffffffc008ac80d4 t dm_init
+ffffffc008ac819c t local_init
+ffffffc008ac825c T dm_target_init
+ffffffc008ac8290 T dm_linear_init
+ffffffc008ac82ec T dm_stripe_init
+ffffffc008ac8344 T dm_interface_init
+ffffffc008ac83c4 T dm_early_create
+ffffffc008ac8640 T dm_io_init
+ffffffc008ac86a4 T dm_kcopyd_init
+ffffffc008ac8748 T dm_statistics_init
+ffffffc008ac876c T __initstub__kmod_dm_bufio__463_2162_dm_bufio_init6
+ffffffc008ac8794 t dm_bufio_init
+ffffffc008ac89b4 T __initstub__kmod_dm_crypt__542_3674_dm_crypt_init6
+ffffffc008ac89dc t dm_crypt_init
+ffffffc008ac8a38 T __initstub__kmod_dm_verity__437_1515_dm_verity_init6
+ffffffc008ac8a60 t dm_verity_init
+ffffffc008ac8abc T __initstub__kmod_dm_user__442_1282_dm_user_init6
+ffffffc008ac8ae4 t dm_user_init
+ffffffc008ac8b40 T edac_mc_sysfs_init
+ffffffc008ac8bec T __initstub__kmod_edac_core__389_163_edac_init4
+ffffffc008ac8c14 t edac_init
+ffffffc008ac8cf0 T scmi_bus_init
+ffffffc008ac8d4c T __initstub__kmod_scmi_module__521_2672_scmi_driver_init4
+ffffffc008ac8d74 t scmi_driver_init
+ffffffc008ac8e1c T scmi_base_register
+ffffffc008ac8e50 T scmi_clock_register
+ffffffc008ac8e84 T scmi_perf_register
+ffffffc008ac8eb8 T scmi_power_register
+ffffffc008ac8eec T scmi_reset_register
+ffffffc008ac8f20 T scmi_sensors_register
+ffffffc008ac8f54 T scmi_system_register
+ffffffc008ac8f88 T scmi_voltage_register
+ffffffc008ac8fbc T scmi_powercap_register
+ffffffc008ac8ff0 T __initstub__kmod_psci__412_466_psci_debugfs_init7
+ffffffc008ac9018 t psci_debugfs_init
+ffffffc008ac9094 T psci_dt_init
+ffffffc008ac9148 t psci_0_1_init
+ffffffc008ac92cc t psci_0_2_init
+ffffffc008ac9304 t psci_1_0_init
+ffffffc008ac9364 t psci_probe
+ffffffc008ac94c8 t psci_0_2_set_functions
+ffffffc008ac956c t psci_init_migrate
+ffffffc008ac96b4 t psci_init_smccc
+ffffffc008ac9788 t psci_init_system_suspend
+ffffffc008ac9800 T arm_smccc_version_init
+ffffffc008ac986c t smccc_probe_trng
+ffffffc008ac98e8 T __initstub__kmod_smccc__341_61_smccc_devices_init6
+ffffffc008ac9914 t smccc_devices_init
+ffffffc008ac99c8 T kvm_init_hyp_services
+ffffffc008ac9b48 T __initstub__kmod_soc_id__354_106_smccc_soc_init6
+ffffffc008ac9b70 t smccc_soc_init
+ffffffc008ac9e10 T timer_probe
+ffffffc008ac9f38 t early_evtstrm_cfg
+ffffffc008ac9f6c t arch_timer_of_init
+ffffffc008aca13c t arch_timer_mem_of_init
+ffffffc008aca360 t arch_timer_of_configure_rate
+ffffffc008aca3fc t arch_timer_register
+ffffffc008aca558 t arch_timer_needs_of_probing
+ffffffc008aca5c8 t arch_timer_common_init
+ffffffc008aca608 t arch_timer_banner
+ffffffc008aca704 t arch_counter_register
+ffffffc008aca898 t arch_timer_mem_find_best_frame
+ffffffc008aca9b8 t arch_timer_mem_frame_get_cntfrq
+ffffffc008acaa44 t arch_timer_mem_frame_register
+ffffffc008acab58 t arch_timer_mem_register
+ffffffc008acac40 T __initstub__kmod_dummy_timer__369_37_dummy_timer_registerearly
+ffffffc008acaca4 T of_core_init
+ffffffc008acadb8 T __initstub__kmod_platform__419_604_of_platform_default_populate_init3s
+ffffffc008acade0 t of_platform_default_populate_init
+ffffffc008acaedc T __initstub__kmod_platform__421_611_of_platform_sync_state_init7s
+ffffffc008acaf0c T of_fdt_limit_memory
+ffffffc008acb064 T early_init_fdt_scan_reserved_mem
+ffffffc008acb11c t fdt_scan_reserved_mem
+ffffffc008acb234 T early_init_fdt_reserve_self
+ffffffc008acb2a8 T of_scan_flat_dt
+ffffffc008acb3c4 T of_scan_flat_dt_subnodes
+ffffffc008acb474 T of_get_flat_dt_subnode_by_name
+ffffffc008acb4d8 T of_get_flat_dt_root
+ffffffc008acb4ec T of_get_flat_dt_prop
+ffffffc008acb52c T of_flat_dt_is_compatible
+ffffffc008acb568 T of_get_flat_dt_phandle
+ffffffc008acb5a0 T of_flat_dt_get_machine_name
+ffffffc008acb608 T of_flat_dt_match_machine
+ffffffc008acb7a0 t of_flat_dt_match
+ffffffc008acb820 T early_init_dt_check_for_usable_mem_range
+ffffffc008acb9b4 T dt_mem_next_cell
+ffffffc008acb9f0 T early_init_dt_scan_chosen_stdout
+ffffffc008acbbc8 T early_init_dt_scan_root
+ffffffc008acbc98 T early_init_dt_scan_memory
+ffffffc008acbee4 W early_init_dt_add_memory_arch
+ffffffc008acbf58 T early_init_dt_scan_chosen
+ffffffc008acc108 t early_init_dt_check_for_initrd
+ffffffc008acc240 T early_init_dt_verify
+ffffffc008acc2b4 T early_init_dt_scan_nodes
+ffffffc008acc2f4 T early_init_dt_scan
+ffffffc008acc33c T unflatten_device_tree
+ffffffc008acc39c t early_init_dt_alloc_memory_arch
+ffffffc008acc404 T unflatten_and_copy_device_tree
+ffffffc008acc4a0 T __initstub__kmod_fdt__398_1416_of_fdt_raw_init7
+ffffffc008acc4c8 t of_fdt_raw_init
+ffffffc008acc550 t __reserved_mem_check_root
+ffffffc008acc624 t __reserved_mem_reserve_reg
+ffffffc008acc81c t early_init_dt_reserve_memory
+ffffffc008acc8ac T of_flat_dt_translate_address
+ffffffc008acc8e0 t fdt_translate_address
+ffffffc008accac0 t fdt_translate_one
+ffffffc008accc44 t fdt_bus_default_count_cells
+ffffffc008acccfc t fdt_bus_default_map
+ffffffc008accd84 t fdt_bus_default_translate
+ffffffc008acce34 T of_dma_get_max_cpu_address
+ffffffc008accf6c T of_irq_init
+ffffffc008acd384 T fdt_reserved_mem_save_node
+ffffffc008acd3f8 T fdt_init_reserved_mem
+ffffffc008acd608 t __rmem_check_for_overlap
+ffffffc008acd764 t __reserved_mem_alloc_size
+ffffffc008acd9d0 t __reserved_mem_init_node
+ffffffc008acdaac t __rmem_cmp
+ffffffc008acdaf0 t early_init_dt_alloc_reserved_memory_arch
+ffffffc008acdb98 T __initstub__kmod_arm_pmu__393_977_arm_pmu_hp_init4
+ffffffc008acdc18 T __initstub__kmod_ras__416_38_ras_init4
+ffffffc008acdc5c t parse_ras_param
+ffffffc008acdc70 T ras_add_daemon_trace
+ffffffc008acdcdc T ras_debugfs_init
+ffffffc008acdd1c T __initstub__kmod_socket__726_3209_sock_init1
+ffffffc008acdd44 t sock_init
+ffffffc008acde0c T __initstub__kmod_sock__908_3777_net_inuse_init1
+ffffffc008acde38 t net_inuse_init
+ffffffc008acde7c T __initstub__kmod_sock__915_4094_proto_init4
+ffffffc008acdeb0 t sock_inuse_init_net
+ffffffc008acdf0c t proto_init_net
+ffffffc008acdf64 T skb_init
+ffffffc008ace01c T __initstub__kmod_net_namespace__591_385_net_defaults_init1
+ffffffc008ace048 t net_defaults_init
+ffffffc008ace08c T net_ns_init
+ffffffc008ace17c t setup_net
+ffffffc008ace5d0 t net_defaults_init_net
+ffffffc008ace5f8 t net_ns_net_init
+ffffffc008ace644 T __initstub__kmod_flow_dissector__781_1961_init_default_flow_dissectors1
+ffffffc008ace670 t init_default_flow_dissectors
+ffffffc008ace6e0 t fb_tunnels_only_for_init_net_sysctl_setup
+ffffffc008ace758 T __initstub__kmod_sysctl_net_core__687_687_sysctl_core_init5
+ffffffc008ace780 t sysctl_core_init
+ffffffc008ace7d0 t sysctl_core_net_init
+ffffffc008ace830 T __initstub__kmod_dev__1135_11438_net_dev_init4
+ffffffc008ace858 t net_dev_init
+ffffffc008aceb0c t netdev_init
+ffffffc008acebcc T __initstub__kmod_neighbour__708_3906_neigh_init4
+ffffffc008acebf8 t neigh_init
+ffffffc008acecb0 T rtnetlink_init
+ffffffc008aceeec t rtnetlink_net_init
+ffffffc008acef8c T __initstub__kmod_sock_diag__646_340_sock_diag_init6
+ffffffc008acefb4 t sock_diag_init
+ffffffc008acf00c t diag_net_init
+ffffffc008acf0a4 T __initstub__kmod_fib_notifier__491_199_fib_notifier_init4
+ffffffc008acf0d8 t fib_notifier_net_init
+ffffffc008acf140 T netdev_kobject_init
+ffffffc008acf188 T dev_proc_init
+ffffffc008acf1cc t dev_proc_net_init
+ffffffc008acf2a4 t dev_mc_net_init
+ffffffc008acf2fc T __initstub__kmod_fib_rules__712_1319_fib_rules_init4
+ffffffc008acf324 t fib_rules_init
+ffffffc008acf428 t fib_rules_net_init
+ffffffc008acf450 T __initstub__kmod_eth__677_492_eth_offload_init5
+ffffffc008acf488 T __initstub__kmod_af_netlink__751_2962_netlink_proto_init1
+ffffffc008acf4b0 t netlink_proto_init
+ffffffc008acf5e0 t netlink_add_usersock_entry
+ffffffc008acf69c t netlink_net_init
+ffffffc008acf6f4 t netlink_tap_init_net
+ffffffc008acf76c T __initstub__kmod_genetlink__592_1498_genl_init1
+ffffffc008acf798 t genl_init
+ffffffc008acf7f0 t genl_pernet_init
+ffffffc008acf890 T __initstub__kmod_ethtool_nl__582_1077_ethnl_init4
+ffffffc008acf8b8 t ethnl_init
+ffffffc008acf948 T ip_rt_init
+ffffffc008acfb8c T ip_static_sysctl_init
+ffffffc008acfbd0 t ip_rt_do_proc_init
+ffffffc008acfc70 t sysctl_route_net_init
+ffffffc008acfcd4 t netns_ip_rt_init
+ffffffc008acfd04 t rt_genid_init
+ffffffc008acfd50 t ipv4_inetpeer_init
+ffffffc008acfdb8 T inet_initpeers
+ffffffc008acfe60 T ipfrag_init
+ffffffc008acff20 t ipv4_frags_init_net
+ffffffc008acffc8 t ip4_frags_ns_ctl_register
+ffffffc008ad0054 T ip_init
+ffffffc008ad0088 T inet_hashinfo2_init
+ffffffc008ad015c t set_thash_entries
+ffffffc008ad01a0 T tcp_init
+ffffffc008ad04c8 T tcp_tasklet_init
+ffffffc008ad0580 T tcp4_proc_init
+ffffffc008ad05b4 T tcp_v4_init
+ffffffc008ad06e0 t tcp4_proc_init_net
+ffffffc008ad073c t tcp_sk_init
+ffffffc008ad08ec T __initstub__kmod_tcp_cong__713_266_tcp_congestion_default7
+ffffffc008ad0928 t set_tcpmhash_entries
+ffffffc008ad096c T tcp_metrics_init
+ffffffc008ad09cc t tcp_net_metrics_init
+ffffffc008ad0a74 T tcpv4_offload_init
+ffffffc008ad0aac T raw_proc_init
+ffffffc008ad0ae0 T raw_proc_exit
+ffffffc008ad0b34 T raw_init
+ffffffc008ad0b78 t raw_init_net
+ffffffc008ad0bd4 t raw_sysctl_init
+ffffffc008ad0be8 T udp4_proc_init
+ffffffc008ad0c1c t set_uhash_entries
+ffffffc008ad0c8c T udp_table_init
+ffffffc008ad0d80 T udp_init
+ffffffc008ad0e90 t udp4_proc_init_net
+ffffffc008ad0eec t udp_sysctl_init
+ffffffc008ad0f0c T udplite4_register
+ffffffc008ad0fbc t udplite4_proc_init_net
+ffffffc008ad1018 T udpv4_offload_init
+ffffffc008ad1050 T arp_init
+ffffffc008ad10c8 t arp_net_init
+ffffffc008ad1120 T icmp_init
+ffffffc008ad1248 t icmp_sk_init
+ffffffc008ad1278 T devinet_init
+ffffffc008ad1368 t devinet_init_net
+ffffffc008ad14d8 T __initstub__kmod_af_inet__835_1923_ipv4_offload_init5
+ffffffc008ad1504 t ipv4_offload_init
+ffffffc008ad15bc T __initstub__kmod_af_inet__838_2056_inet_init5
+ffffffc008ad15e4 t inet_init
+ffffffc008ad1854 t ipv4_proc_init
+ffffffc008ad18e4 t ipv4_mib_init_net
+ffffffc008ad1bb4 t inet_init_net
+ffffffc008ad1cb0 T igmp_mc_init
+ffffffc008ad1d30 t igmp_net_init
+ffffffc008ad1e08 T ip_fib_init
+ffffffc008ad1eb4 t fib_net_init
+ffffffc008ad1f90 t ip_fib_net_init
+ffffffc008ad2020 T fib_trie_init
+ffffffc008ad20a0 T fib_proc_init
+ffffffc008ad2174 T fib4_notifier_init
+ffffffc008ad21cc T __initstub__kmod_inet_fragment__664_216_inet_frag_wq_init0
+ffffffc008ad21f8 t inet_frag_wq_init
+ffffffc008ad2258 T ping_proc_init
+ffffffc008ad228c T ping_init
+ffffffc008ad22c0 t ping_v4_proc_init_net
+ffffffc008ad2318 T ip_tunnel_core_init
+ffffffc008ad2328 T __initstub__kmod_gre_offload__698_286_gre_offload_init6
+ffffffc008ad2350 t gre_offload_init
+ffffffc008ad23c4 T __initstub__kmod_nexthop__765_3789_nexthop_init4
+ffffffc008ad23f0 t nexthop_init
+ffffffc008ad2518 t nexthop_net_init
+ffffffc008ad2594 T __initstub__kmod_sysctl_net_ipv4__709_1470_sysctl_ipv4_init6
+ffffffc008ad25bc t sysctl_ipv4_init
+ffffffc008ad262c t ipv4_sysctl_init_net
+ffffffc008ad26b0 T ip_misc_proc_init
+ffffffc008ad26e4 t ip_proc_init_net
+ffffffc008ad27b0 T fib4_rules_init
+ffffffc008ad2884 T __initstub__kmod_ipip__700_658_ipip_init6
+ffffffc008ad28ac t ipip_init
+ffffffc008ad2964 t ipip_init_net
+ffffffc008ad29a8 T __initstub__kmod_gre__705_216_gre_init6
+ffffffc008ad29d0 t gre_init
+ffffffc008ad2a30 T __initstub__kmod_ip_gre__707_1789_ipgre_init6
+ffffffc008ad2a58 t ipgre_init
+ffffffc008ad2ba8 t ipgre_tap_init_net
+ffffffc008ad2bec t ipgre_init_net
+ffffffc008ad2c2c t erspan_init_net
+ffffffc008ad2c70 T __initstub__kmod_ip_vti__698_722_vti_init6
+ffffffc008ad2c98 t vti_init
+ffffffc008ad2dcc t vti_init_net
+ffffffc008ad2e64 T __initstub__kmod_esp4__732_1246_esp4_init6
+ffffffc008ad2e8c t esp4_init
+ffffffc008ad2f24 T __initstub__kmod_tunnel4__651_295_tunnel4_init6
+ffffffc008ad2f4c t tunnel4_init
+ffffffc008ad2fc8 T __initstub__kmod_inet_diag__728_1481_inet_diag_init6
+ffffffc008ad2ff0 t inet_diag_init
+ffffffc008ad30b8 T __initstub__kmod_tcp_diag__712_247_tcp_diag_init6
+ffffffc008ad30ec T __initstub__kmod_udp_diag__620_296_udp_diag_init6
+ffffffc008ad3114 t udp_diag_init
+ffffffc008ad317c T __initstub__kmod_tcp_cubic__735_551_cubictcp_register6
+ffffffc008ad31a4 t cubictcp_register
+ffffffc008ad323c T xfrm4_init
+ffffffc008ad3298 t xfrm4_net_init
+ffffffc008ad3338 T xfrm4_state_init
+ffffffc008ad336c T xfrm4_protocol_init
+ffffffc008ad33a0 T xfrm_init
+ffffffc008ad33e4 t xfrm_net_init
+ffffffc008ad34c4 t xfrm_statistics_init
+ffffffc008ad3534 t xfrm_policy_init
+ffffffc008ad36d8 T xfrm_state_init
+ffffffc008ad37e4 T xfrm_input_init
+ffffffc008ad38d8 T xfrm_sysctl_init
+ffffffc008ad39a8 T xfrm_dev_init
+ffffffc008ad39dc T xfrm_proc_init
+ffffffc008ad3a30 T __initstub__kmod_xfrm_user__642_3816_xfrm_user_init6
+ffffffc008ad3a58 t xfrm_user_init
+ffffffc008ad3aac t xfrm_user_net_init
+ffffffc008ad3b50 T __initstub__kmod_xfrm_interface__797_1192_xfrmi_init6
+ffffffc008ad3b78 t xfrmi_init
+ffffffc008ad3c54 t xfrmi4_init
+ffffffc008ad3cfc t xfrmi6_init
+ffffffc008ad3e00 T __initstub__kmod_unix__659_3782_af_unix_init5
+ffffffc008ad3e28 t af_unix_init
+ffffffc008ad3f08 t unix_net_init
+ffffffc008ad3ff0 T unix_sysctl_register
+ffffffc008ad4050 T __initstub__kmod_ipv6__821_1328_inet6_init6
+ffffffc008ad4078 t inet6_init
+ffffffc008ad4444 t inet6_net_init
+ffffffc008ad4570 t ipv6_init_mibs
+ffffffc008ad46a0 T ac6_proc_init
+ffffffc008ad46f8 T ipv6_anycast_init
+ffffffc008ad4738 T if6_proc_init
+ffffffc008ad476c T addrconf_init
+ffffffc008ad49e0 t if6_proc_net_init
+ffffffc008ad4a38 t addrconf_init_net
+ffffffc008ad4bf0 T ipv6_addr_label_init
+ffffffc008ad4c24 T ipv6_addr_label_rtnl_register
+ffffffc008ad4cb8 t ip6addrlbl_net_init
+ffffffc008ad4d90 T ipv6_route_sysctl_init
+ffffffc008ad4e50 T ip6_route_init_special_entries
+ffffffc008ad500c T ip6_route_init
+ffffffc008ad5294 t ipv6_inetpeer_init
+ffffffc008ad52fc t ip6_route_net_init
+ffffffc008ad54c4 t ip6_route_net_init_late
+ffffffc008ad556c T fib6_init
+ffffffc008ad565c t fib6_net_init
+ffffffc008ad57c8 t fib6_tables_init
+ffffffc008ad5830 T ndisc_init
+ffffffc008ad58cc T ndisc_late_init
+ffffffc008ad5900 t ndisc_net_init
+ffffffc008ad59f4 T udp6_proc_init
+ffffffc008ad5a50 T udpv6_init
+ffffffc008ad5ac0 T udplitev6_init
+ffffffc008ad5b30 T udplite6_proc_init
+ffffffc008ad5b64 t udplite6_proc_init_net
+ffffffc008ad5bc0 T raw6_proc_init
+ffffffc008ad5bf4 T rawv6_init
+ffffffc008ad5c28 t raw6_init_net
+ffffffc008ad5c84 T icmpv6_init
+ffffffc008ad5dd8 T ipv6_icmp_sysctl_init
+ffffffc008ad5e50 T igmp6_init
+ffffffc008ad5eec T igmp6_late_init
+ffffffc008ad5f20 t igmp6_net_init
+ffffffc008ad6040 t igmp6_proc_init
+ffffffc008ad60e0 T ipv6_frag_init
+ffffffc008ad61ec t ipv6_frags_init_net
+ffffffc008ad6288 t ip6_frags_ns_sysctl_register
+ffffffc008ad630c T tcp6_proc_init
+ffffffc008ad6368 T tcpv6_init
+ffffffc008ad63f8 t tcpv6_net_init
+ffffffc008ad6438 T pingv6_init
+ffffffc008ad64c0 t ping_v6_proc_init_net
+ffffffc008ad6518 T ipv6_exthdrs_init
+ffffffc008ad65b4 t ip6_flowlabel_proc_init
+ffffffc008ad660c T seg6_init
+ffffffc008ad6684 t seg6_net_init
+ffffffc008ad6720 T fib6_notifier_init
+ffffffc008ad6774 T ioam6_init
+ffffffc008ad6804 t ioam6_net_init
+ffffffc008ad68d0 t ipv6_sysctl_net_init
+ffffffc008ad6a04 T xfrm6_init
+ffffffc008ad6ab0 t xfrm6_net_init
+ffffffc008ad6b50 T xfrm6_state_init
+ffffffc008ad6b84 T xfrm6_protocol_init
+ffffffc008ad6bb8 T fib6_rules_init
+ffffffc008ad6bec t fib6_rules_net_init
+ffffffc008ad6c9c T ipv6_misc_proc_init
+ffffffc008ad6cd0 t ipv6_proc_init_net
+ffffffc008ad6d90 T __initstub__kmod_esp6__792_1299_esp6_init6
+ffffffc008ad6db8 t esp6_init
+ffffffc008ad6e50 T __initstub__kmod_ipcomp6__690_216_ipcomp6_init6
+ffffffc008ad6e78 t ipcomp6_init
+ffffffc008ad6f10 T __initstub__kmod_xfrm6_tunnel__639_402_xfrm6_tunnel_init6
+ffffffc008ad6f38 t xfrm6_tunnel_init
+ffffffc008ad7068 t xfrm6_tunnel_net_init
+ffffffc008ad70d0 T __initstub__kmod_tunnel6__663_303_tunnel6_init6
+ffffffc008ad70f8 t tunnel6_init
+ffffffc008ad71d0 T __initstub__kmod_mip6__632_405_mip6_init6
+ffffffc008ad71f8 t mip6_init
+ffffffc008ad72d4 T __initstub__kmod_ip6_vti__815_1329_vti6_tunnel_init6
+ffffffc008ad72fc t vti6_tunnel_init
+ffffffc008ad7490 t vti6_init_net
+ffffffc008ad7574 t vti6_fb_tnl_dev_init
+ffffffc008ad75f0 T __initstub__kmod_sit__740_1955_sit_init6
+ffffffc008ad7618 t sit_init
+ffffffc008ad7710 t sit_init_net
+ffffffc008ad780c t ipip6_fb_tunnel_init
+ffffffc008ad7890 T __initstub__kmod_ip6_tunnel__847_2366_ip6_tunnel_init6
+ffffffc008ad78b8 t ip6_tunnel_init
+ffffffc008ad79c0 t ip6_tnl_init_net
+ffffffc008ad7ab4 t ip6_fb_tnl_dev_init
+ffffffc008ad7b30 T __initstub__kmod_ip6_gre__747_2424_ip6gre_init6
+ffffffc008ad7b58 t ip6gre_init
+ffffffc008ad7c58 t ip6gre_init_net
+ffffffc008ad7d7c T __initstub__kmod_ip6_offload__719_488_ipv6_offload_init5
+ffffffc008ad7da8 t ipv6_offload_init
+ffffffc008ad7e58 T tcpv6_offload_init
+ffffffc008ad7e90 T ipv6_exthdrs_offload_init
+ffffffc008ad7f04 T __initstub__kmod_af_packet__746_4761_packet_init6
+ffffffc008ad7f2c t packet_init
+ffffffc008ad7ff0 t packet_net_init
+ffffffc008ad8070 T __initstub__kmod_af_key__643_3923_ipsec_pfkey_init6
+ffffffc008ad8098 t ipsec_pfkey_init
+ffffffc008ad814c t pfkey_net_init
+ffffffc008ad81d8 T net_sysctl_init
+ffffffc008ad825c t sysctl_net_init
+ffffffc008ad82a0 T __initstub__kmod_vsock__606_2450_vsock_init6
+ffffffc008ad82c8 t vsock_init
+ffffffc008ad83e4 T __initstub__kmod_vsock_diag__579_174_vsock_diag_init6
+ffffffc008ad8418 T __initstub__kmod_vmw_vsock_virtio_transport__598_845_virtio_vsock_init6
+ffffffc008ad8440 t virtio_vsock_init
+ffffffc008ad84dc T __initstub__kmod_vsock_loopback__582_187_vsock_loopback_init6
+ffffffc008ad8504 t vsock_loopback_init
+ffffffc008ad85b8 T init_vmlinux_build_id
+ffffffc008ad8600 T decompress_method
+ffffffc008ad8688 T unlz4
+ffffffc008ad8a60 T dump_stack_set_arch_desc
+ffffffc008ad8b00 T __initstub__kmod_kobject_uevent__582_814_kobject_uevent_init2
+ffffffc008ad8b34 T maple_tree_init
+ffffffc008ad8b88 T radix_tree_init
+ffffffc008ad8c24 t debug_boot_weak_hash_enable
+ffffffc008ad8c68 T __initstub__kmod_vsprintf__631_777_vsprintf_init_hashval4
+ffffffc008ad8c98 T no_hash_pointers_enable
+ffffffc008ad8d80 t __CortexA53843419_FFFFFFC008ABC000
+ffffffc008ad8d88 T __exittext_begin
+ffffffc008ad8d88 T _einittext
+ffffffc008ad8d88 t zs_stat_exit
+ffffffc008ad8d98 t zs_exit
+ffffffc008ad8dd4 t exit_misc_binfmt
+ffffffc008ad8e14 t exit_script_binfmt
+ffffffc008ad8e48 t exit_elf_binfmt
+ffffffc008ad8e7c t mbcache_exit
+ffffffc008ad8eb0 t ext4_exit_fs
+ffffffc008ad8f88 t jbd2_remove_jbd_stats_proc_entry
+ffffffc008ad8fcc t journal_exit
+ffffffc008ad9014 t fuse_exit
+ffffffc008ad9068 t erofs_module_exit
+ffffffc008ad90d8 t crypto_algapi_exit
+ffffffc008ad9110 T crypto_exit_proc
+ffffffc008ad9148 t seqiv_module_exit
+ffffffc008ad917c t echainiv_module_exit
+ffffffc008ad91b0 t cryptomgr_exit
+ffffffc008ad91f4 t hmac_module_exit
+ffffffc008ad9228 t crypto_xcbc_module_exit
+ffffffc008ad925c t crypto_null_mod_fini
+ffffffc008ad92ac t md5_mod_fini
+ffffffc008ad92e0 t sha1_generic_mod_fini
+ffffffc008ad9314 t sha256_generic_mod_fini
+ffffffc008ad934c t sha512_generic_mod_fini
+ffffffc008ad9384 t blake2b_mod_fini
+ffffffc008ad93bc t crypto_cbc_module_exit
+ffffffc008ad93f0 t crypto_ctr_module_exit
+ffffffc008ad9428 t crypto_xctr_module_exit
+ffffffc008ad945c t hctr2_module_exit
+ffffffc008ad9494 t adiantum_module_exit
+ffffffc008ad94c8 t nhpoly1305_mod_exit
+ffffffc008ad94fc t crypto_gcm_module_exit
+ffffffc008ad9540 t chacha20poly1305_module_exit
+ffffffc008ad9578 t des_generic_mod_fini
+ffffffc008ad95b0 t aes_fini
+ffffffc008ad95e4 t chacha_generic_mod_fini
+ffffffc008ad961c t poly1305_mod_exit
+ffffffc008ad9650 t deflate_mod_fini
+ffffffc008ad9694 t crc32c_mod_fini
+ffffffc008ad96c8 t crypto_authenc_module_exit
+ffffffc008ad96fc t crypto_authenc_esn_module_exit
+ffffffc008ad9730 t lzo_mod_fini
+ffffffc008ad9770 t lzorle_mod_fini
+ffffffc008ad97b0 t lz4_mod_fini
+ffffffc008ad97f0 t prng_mod_fini
+ffffffc008ad9828 t drbg_exit
+ffffffc008ad9860 t jent_mod_exit
+ffffffc008ad9894 t ghash_mod_exit
+ffffffc008ad98c8 t polyval_mod_exit
+ffffffc008ad98fc t zstd_mod_fini
+ffffffc008ad993c t essiv_module_exit
+ffffffc008ad9970 t deadline_exit
+ffffffc008ad99a4 t kyber_exit
+ffffffc008ad99d8 t bfq_exit
+ffffffc008ad9a18 t libcrc32c_mod_fini
+ffffffc008ad9a50 t simple_pm_bus_driver_exit
+ffffffc008ad9a84 t pci_epc_exit
+ffffffc008ad9ab8 t pci_epf_exit
+ffffffc008ad9aec t gen_pci_driver_exit
+ffffffc008ad9b1c t kirin_pcie_remove
+ffffffc008ad9bf0 t kirin_pcie_driver_exit
+ffffffc008ad9c24 t virtio_exit
+ffffffc008ad9c64 t virtio_pci_driver_exit
+ffffffc008ad9c98 t virtio_balloon_driver_exit
+ffffffc008ad9ccc t n_null_exit
+ffffffc008ad9d00 t serial8250_exit
+ffffffc008ad9d5c t pericom8250_pci_driver_exit
+ffffffc008ad9d90 t of_platform_serial_driver_exit
+ffffffc008ad9dc4 t ttynull_exit
+ffffffc008ad9e30 t virtio_console_fini
+ffffffc008ad9e90 t unregister_miscdev
+ffffffc008ad9ec4 t hwrng_modexit
+ffffffc008ad9f38 t cctrng_mod_exit
+ffffffc008ad9f6c t smccc_trng_driver_exit
+ffffffc008ad9fa0 t cn10k_rng_driver_exit
+ffffffc008ad9fd4 t deferred_probe_exit
+ffffffc008ada00c t software_node_exit
+ffffffc008ada04c t firmware_class_exit
+ffffffc008ada098 t brd_exit
+ffffffc008ada0e0 t loop_exit
+ffffffc008ada1ec t virtio_blk_fini
+ffffffc008ada240 t zram_exit
+ffffffc008ada26c t open_dice_exit
+ffffffc008ada2a0 t vcpu_stall_detect_driver_exit
+ffffffc008ada2d4 t dma_buf_deinit
+ffffffc008ada32c t uio_exit
+ffffffc008ada394 t serio_exit
+ffffffc008ada3d8 t serport_exit
+ffffffc008ada40c t input_exit
+ffffffc008ada450 t pl030_driver_exit
+ffffffc008ada484 t pl031_driver_exit
+ffffffc008ada4b8 t power_supply_class_exit
+ffffffc008ada4ec t watchdog_exit
+ffffffc008ada524 T watchdog_dev_exit
+ffffffc008ada574 t dm_exit
+ffffffc008ada5e8 t dm_bufio_exit
+ffffffc008ada6d4 t dm_crypt_exit
+ffffffc008ada708 t dm_verity_exit
+ffffffc008ada73c t dm_user_exit
+ffffffc008ada770 t edac_exit
+ffffffc008ada7c8 T scmi_bus_exit
+ffffffc008ada828 t scmi_transports_exit
+ffffffc008ada838 t scmi_driver_exit
+ffffffc008ada8dc T scmi_base_unregister
+ffffffc008ada910 T scmi_clock_unregister
+ffffffc008ada944 T scmi_perf_unregister
+ffffffc008ada978 T scmi_power_unregister
+ffffffc008ada9ac T scmi_reset_unregister
+ffffffc008ada9e0 T scmi_sensors_unregister
+ffffffc008adaa14 T scmi_system_unregister
+ffffffc008adaa48 T scmi_voltage_unregister
+ffffffc008adaa7c T scmi_powercap_unregister
+ffffffc008adaab0 t smccc_soc_exit
+ffffffc008adaafc t ipip_fini
+ffffffc008adab68 t gre_exit
+ffffffc008adaba0 t ipgre_fini
+ffffffc008adac20 t vti_fini
+ffffffc008adac90 t esp4_fini
+ffffffc008adacf4 t tunnel4_fini
+ffffffc008adad64 t inet_diag_exit
+ffffffc008adadd8 t tcp_diag_exit
+ffffffc008adae0c t udp_diag_exit
+ffffffc008adae4c t cubictcp_unregister
+ffffffc008adae80 t xfrm_user_exit
+ffffffc008adaee0 t xfrmi_fini
+ffffffc008adaf2c t af_unix_exit
+ffffffc008adafa0 t esp6_fini
+ffffffc008adb004 t ipcomp6_fini
+ffffffc008adb068 t xfrm6_tunnel_fini
+ffffffc008adb0fc t tunnel6_fini
+ffffffc008adb1a4 t mip6_fini
+ffffffc008adb214 t vti6_tunnel_cleanup
+ffffffc008adb2a4 t sit_cleanup
+ffffffc008adb308 t ip6_tunnel_cleanup
+ffffffc008adb3a0 t ip6gre_fini
+ffffffc008adb408 t packet_exit
+ffffffc008adb47c t ipsec_pfkey_exit
+ffffffc008adb4f0 t vsock_exit
+ffffffc008adb538 t vsock_diag_exit
+ffffffc008adb56c t virtio_vsock_exit
+ffffffc008adb5b8 t vsock_loopback_exit
+ffffffc008adb6a0 R __alt_instructions
+ffffffc008adb6a0 T __exittext_end
+ffffffc008b6e9d0 R __alt_instructions_end
+ffffffc008b70000 R __initdata_begin
+ffffffc008b70000 R __inittext_end
+ffffffc008b70000 R init_idmap_pg_dir
+ffffffc008b75000 R init_idmap_pg_end
+ffffffc008b75000 d kthreadd_done
+ffffffc008b75020 d parse_early_param.done
+ffffffc008b75021 d parse_early_param.tmp_cmdline
+ffffffc008b75828 D late_time_init
+ffffffc008b75830 d setup_boot_config.tmp_cmdline
+ffffffc008b76030 d xbc_namebuf
+ffffffc008b76130 D boot_command_line
+ffffffc008b76930 d initcall_level_names
+ffffffc008b76970 d initcall_levels
+ffffffc008b769b8 d root_fs_names
+ffffffc008b769c0 d root_mount_data
+ffffffc008b769c8 d root_device_name
+ffffffc008b769d0 d root_delay
+ffffffc008b769d4 d saved_root_name
+ffffffc008b76a14 D rd_image_start
+ffffffc008b76a18 d mount_initrd
+ffffffc008b76a20 D phys_initrd_start
+ffffffc008b76a28 D phys_initrd_size
+ffffffc008b76a30 d do_retain_initrd
+ffffffc008b76a31 d initramfs_async
+ffffffc008b76a32 d unpack_to_rootfs.msg_buf
+ffffffc008b76a78 d header_buf
+ffffffc008b76a80 d symlink_buf
+ffffffc008b76a88 d name_buf
+ffffffc008b76a90 d state
+ffffffc008b76a98 d this_header
+ffffffc008b76aa0 d message
+ffffffc008b76aa8 d my_inptr
+ffffffc008b76ab0 d byte_count
+ffffffc008b76ab8 d victim
+ffffffc008b76ac0 d collected
+ffffffc008b76ac8 d collect
+ffffffc008b76ad0 d remains
+ffffffc008b76ad8 d next_state
+ffffffc008b76adc d csum_present
+ffffffc008b76ae0 d name_len
+ffffffc008b76ae8 d body_len
+ffffffc008b76af0 d next_header
+ffffffc008b76af8 d mode
+ffffffc008b76b00 d ino
+ffffffc008b76b08 d uid
+ffffffc008b76b0c d gid
+ffffffc008b76b10 d nlink
+ffffffc008b76b18 d mtime
+ffffffc008b76b20 d major
+ffffffc008b76b28 d minor
+ffffffc008b76b30 d rdev
+ffffffc008b76b34 d hdr_csum
+ffffffc008b76b38 d wfile
+ffffffc008b76b40 d wfile_pos
+ffffffc008b76b48 d io_csum
+ffffffc008b76b50 d head
+ffffffc008b76c50 d dir_list
+ffffffc008b76c60 d actions
+ffffffc008b76ca0 d early_fdt_ptr
+ffffffc008b76ca8 D __fdt_pointer
+ffffffc008b76cb0 d bootcpu_valid
+ffffffc008b76cb8 d __boot_status
+ffffffc008b76cc0 D memstart_offset_seed
+ffffffc008b76cc8 D kaslr_feature_override
+ffffffc008b76cd8 d crash_mem_map
+ffffffc008b76ce0 d __TRACE_SYSTEM_HI_SOFTIRQ
+ffffffc008b76cf8 d __TRACE_SYSTEM_TIMER_SOFTIRQ
+ffffffc008b76d10 d __TRACE_SYSTEM_NET_TX_SOFTIRQ
+ffffffc008b76d28 d __TRACE_SYSTEM_NET_RX_SOFTIRQ
+ffffffc008b76d40 d __TRACE_SYSTEM_BLOCK_SOFTIRQ
+ffffffc008b76d58 d __TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
+ffffffc008b76d70 d __TRACE_SYSTEM_TASKLET_SOFTIRQ
+ffffffc008b76d88 d __TRACE_SYSTEM_SCHED_SOFTIRQ
+ffffffc008b76da0 d __TRACE_SYSTEM_HRTIMER_SOFTIRQ
+ffffffc008b76db8 d __TRACE_SYSTEM_RCU_SOFTIRQ
+ffffffc008b76dd0 D main_extable_sort_needed
+ffffffc008b76dd8 d new_log_buf_len
+ffffffc008b76de0 d setup_text_buf
+ffffffc008b771b0 d __TRACE_SYSTEM_TICK_DEP_MASK_NONE
+ffffffc008b771c8 d __TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
+ffffffc008b771e0 d __TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
+ffffffc008b771f8 d __TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
+ffffffc008b77210 d __TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
+ffffffc008b77228 d __TRACE_SYSTEM_TICK_DEP_BIT_SCHED
+ffffffc008b77240 d __TRACE_SYSTEM_TICK_DEP_MASK_SCHED
+ffffffc008b77258 d __TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
+ffffffc008b77270 d __TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
+ffffffc008b77288 d __TRACE_SYSTEM_TICK_DEP_BIT_RCU
+ffffffc008b772a0 d __TRACE_SYSTEM_TICK_DEP_MASK_RCU
+ffffffc008b772b8 d __TRACE_SYSTEM_ALARM_REALTIME
+ffffffc008b772d0 d __TRACE_SYSTEM_ALARM_BOOTTIME
+ffffffc008b772e8 d __TRACE_SYSTEM_ALARM_REALTIME_FREEZER
+ffffffc008b77300 d __TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
+ffffffc008b77318 d suffix_tbl
+ffffffc008b77330 d audit_net_ops
+ffffffc008b77370 d bootup_tracer_buf
+ffffffc008b773d4 d trace_boot_options_buf
+ffffffc008b77438 d trace_boot_clock_buf
+ffffffc008b774a0 d trace_boot_clock
+ffffffc008b774a8 d tracepoint_printk_stop_on_boot
+ffffffc008b774b0 d eval_map_work
+ffffffc008b774e0 d eval_map_wq
+ffffffc008b774e8 d tracerfs_init_work
+ffffffc008b77518 d events
+ffffffc008b77588 d bootup_event_buf
+ffffffc008b77d88 d __TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
+ffffffc008b77da0 d __TRACE_SYSTEM_ERROR_DETECTOR_KASAN
+ffffffc008b77db8 d __TRACE_SYSTEM_ERROR_DETECTOR_WARN
+ffffffc008b77dd0 d __TRACE_SYSTEM_XDP_ABORTED
+ffffffc008b77de8 d __TRACE_SYSTEM_XDP_DROP
+ffffffc008b77e00 d __TRACE_SYSTEM_XDP_PASS
+ffffffc008b77e18 d __TRACE_SYSTEM_XDP_TX
+ffffffc008b77e30 d __TRACE_SYSTEM_XDP_REDIRECT
+ffffffc008b77e48 d __TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
+ffffffc008b77e60 d __TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
+ffffffc008b77e78 d __TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
+ffffffc008b77e90 d __TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
+ffffffc008b77ea8 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b77ec0 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b77ed8 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b77ef0 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b77f08 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b77f20 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b77f38 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b77f50 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b77f68 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b77f80 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b77f98 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b77fb0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b77fc8 d __TRACE_SYSTEM_ZONE_DMA
+ffffffc008b77fe0 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b77ff8 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b78010 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b78028 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b78040 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b78058 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b78070 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b78088 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b780a0 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b780b8 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b780d0 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b780e8 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b78100 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b78118 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b78130 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b78148 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b78160 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b78178 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b78190 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b781a8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b781c0 d __TRACE_SYSTEM_ZONE_DMA
+ffffffc008b781d8 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b781f0 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b78208 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b78220 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b78238 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b78250 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b78268 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b78280 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b78298 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b782b0 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b782c8 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b782e0 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b782f8 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b78310 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b78328 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b78340 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b78358 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b78370 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b78388 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b783a0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b783b8 d __TRACE_SYSTEM_ZONE_DMA
+ffffffc008b783d0 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b783e8 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b78400 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b78418 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b78430 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b78448 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b78460 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b78478 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b78490 D pcpu_chosen_fc
+ffffffc008b78494 d pcpu_build_alloc_info.group_map
+ffffffc008b78514 d pcpu_build_alloc_info.group_cnt
+ffffffc008b78598 d pcpu_build_alloc_info.mask
+ffffffc008b785a0 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b785b8 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b785d0 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b785e8 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b78600 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b78618 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b78630 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b78648 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b78660 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b78678 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b78690 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b786a8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b786c0 d __TRACE_SYSTEM_ZONE_DMA
+ffffffc008b786d8 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b786f0 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b78708 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b78720 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b78738 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b78750 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b78768 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b78780 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b78798 d __TRACE_SYSTEM_MM_FILEPAGES
+ffffffc008b787b0 d __TRACE_SYSTEM_MM_ANONPAGES
+ffffffc008b787c8 d __TRACE_SYSTEM_MM_SWAPENTS
+ffffffc008b787e0 d __TRACE_SYSTEM_MM_SHMEMPAGES
+ffffffc008b787f8 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b78810 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b78828 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b78840 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b78858 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b78870 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b78888 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b788a0 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b788b8 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b788d0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b788e8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b78900 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b78918 d __TRACE_SYSTEM_ZONE_DMA
+ffffffc008b78930 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b78948 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b78960 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b78978 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b78990 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b789a8 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b789c0 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b789d8 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b789f0 d __TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
+ffffffc008b78a08 d __TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
+ffffffc008b78a20 d __TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
+ffffffc008b78a38 d __TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
+ffffffc008b78a50 d __TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
+ffffffc008b78a68 d __TRACE_SYSTEM_MIGRATE_ASYNC
+ffffffc008b78a80 d __TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
+ffffffc008b78a98 d __TRACE_SYSTEM_MIGRATE_SYNC
+ffffffc008b78ab0 d __TRACE_SYSTEM_MR_COMPACTION
+ffffffc008b78ac8 d __TRACE_SYSTEM_MR_MEMORY_FAILURE
+ffffffc008b78ae0 d __TRACE_SYSTEM_MR_MEMORY_HOTPLUG
+ffffffc008b78af8 d __TRACE_SYSTEM_MR_SYSCALL
+ffffffc008b78b10 d __TRACE_SYSTEM_MR_MEMPOLICY_MBIND
+ffffffc008b78b28 d __TRACE_SYSTEM_MR_NUMA_MISPLACED
+ffffffc008b78b40 d __TRACE_SYSTEM_MR_CONTIG_RANGE
+ffffffc008b78b58 d __TRACE_SYSTEM_MR_LONGTERM_PIN
+ffffffc008b78b70 d __TRACE_SYSTEM_MR_DEMOTION
+ffffffc008b78b88 d vmlist
+ffffffc008b78b90 d arch_zone_lowest_possible_pfn
+ffffffc008b78bb0 d arch_zone_highest_possible_pfn
+ffffffc008b78bd0 d zone_movable_pfn.0
+ffffffc008b78bd8 d dma_reserve
+ffffffc008b78be0 d nr_kernel_pages
+ffffffc008b78be8 d nr_all_pages
+ffffffc008b78bf0 d required_kernelcore_percent
+ffffffc008b78bf8 d required_kernelcore
+ffffffc008b78c00 d required_movablecore_percent
+ffffffc008b78c08 d required_movablecore
+ffffffc008b78c10 d reset_managed_pages_done
+ffffffc008b78c18 d kmem_cache_init.boot_kmem_cache
+ffffffc008b78d18 d kmem_cache_init.boot_kmem_cache_node
+ffffffc008b78e18 d kasan_arg_vmalloc
+ffffffc008b78e1c d kasan_arg_stacktrace
+ffffffc008b78e20 d __TRACE_SYSTEM_SCAN_FAIL
+ffffffc008b78e38 d __TRACE_SYSTEM_SCAN_SUCCEED
+ffffffc008b78e50 d __TRACE_SYSTEM_SCAN_PMD_NULL
+ffffffc008b78e68 d __TRACE_SYSTEM_SCAN_PMD_NONE
+ffffffc008b78e80 d __TRACE_SYSTEM_SCAN_PMD_MAPPED
+ffffffc008b78e98 d __TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
+ffffffc008b78eb0 d __TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
+ffffffc008b78ec8 d __TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
+ffffffc008b78ee0 d __TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
+ffffffc008b78ef8 d __TRACE_SYSTEM_SCAN_PTE_UFFD_WP
+ffffffc008b78f10 d __TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
+ffffffc008b78f28 d __TRACE_SYSTEM_SCAN_PAGE_RO
+ffffffc008b78f40 d __TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
+ffffffc008b78f58 d __TRACE_SYSTEM_SCAN_PAGE_NULL
+ffffffc008b78f70 d __TRACE_SYSTEM_SCAN_SCAN_ABORT
+ffffffc008b78f88 d __TRACE_SYSTEM_SCAN_PAGE_COUNT
+ffffffc008b78fa0 d __TRACE_SYSTEM_SCAN_PAGE_LRU
+ffffffc008b78fb8 d __TRACE_SYSTEM_SCAN_PAGE_LOCK
+ffffffc008b78fd0 d __TRACE_SYSTEM_SCAN_PAGE_ANON
+ffffffc008b78fe8 d __TRACE_SYSTEM_SCAN_PAGE_COMPOUND
+ffffffc008b79000 d __TRACE_SYSTEM_SCAN_ANY_PROCESS
+ffffffc008b79018 d __TRACE_SYSTEM_SCAN_VMA_NULL
+ffffffc008b79030 d __TRACE_SYSTEM_SCAN_VMA_CHECK
+ffffffc008b79048 d __TRACE_SYSTEM_SCAN_ADDRESS_RANGE
+ffffffc008b79060 d __TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
+ffffffc008b79078 d __TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
+ffffffc008b79090 d __TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
+ffffffc008b790a8 d __TRACE_SYSTEM_SCAN_TRUNCATED
+ffffffc008b790c0 d __TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
+ffffffc008b790d8 d page_owner_enabled
+ffffffc008b790e0 d prev_map
+ffffffc008b79118 d slot_virt
+ffffffc008b79150 d prev_size
+ffffffc008b79188 d early_ioremap_debug
+ffffffc008b79189 d enable_checks
+ffffffc008b79190 d dhash_entries
+ffffffc008b79198 d ihash_entries
+ffffffc008b791a0 d mhash_entries
+ffffffc008b791a8 d mphash_entries
+ffffffc008b791b0 d __TRACE_SYSTEM_WB_REASON_BACKGROUND
+ffffffc008b791c8 d __TRACE_SYSTEM_WB_REASON_VMSCAN
+ffffffc008b791e0 d __TRACE_SYSTEM_WB_REASON_SYNC
+ffffffc008b791f8 d __TRACE_SYSTEM_WB_REASON_PERIODIC
+ffffffc008b79210 d __TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
+ffffffc008b79228 d __TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
+ffffffc008b79240 d __TRACE_SYSTEM_WB_REASON_FORKER_THREAD
+ffffffc008b79258 d __TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
+ffffffc008b79270 d proc_net_ns_ops
+ffffffc008b792b0 d __TRACE_SYSTEM_BH_New
+ffffffc008b792c8 d __TRACE_SYSTEM_BH_Mapped
+ffffffc008b792e0 d __TRACE_SYSTEM_BH_Unwritten
+ffffffc008b792f8 d __TRACE_SYSTEM_BH_Boundary
+ffffffc008b79310 d __TRACE_SYSTEM_ES_WRITTEN_B
+ffffffc008b79328 d __TRACE_SYSTEM_ES_UNWRITTEN_B
+ffffffc008b79340 d __TRACE_SYSTEM_ES_DELAYED_B
+ffffffc008b79358 d __TRACE_SYSTEM_ES_HOLE_B
+ffffffc008b79370 d __TRACE_SYSTEM_ES_REFERENCED_B
+ffffffc008b79388 d __TRACE_SYSTEM_EXT4_FC_REASON_XATTR
+ffffffc008b793a0 d __TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
+ffffffc008b793b8 d __TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
+ffffffc008b793d0 d __TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
+ffffffc008b793e8 d __TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
+ffffffc008b79400 d __TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
+ffffffc008b79418 d __TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
+ffffffc008b79430 d __TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
+ffffffc008b79448 d __TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
+ffffffc008b79460 d __TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
+ffffffc008b79478 d __TRACE_SYSTEM_EXT4_FC_REASON_MAX
+ffffffc008b79490 d lsm_enabled_true
+ffffffc008b79498 d exclusive
+ffffffc008b794a0 d debug
+ffffffc008b794a4 d lsm_enabled_false
+ffffffc008b794a8 d ordered_lsms
+ffffffc008b794b0 d chosen_lsm_order
+ffffffc008b794b8 d chosen_major_lsm
+ffffffc008b794c0 d last_lsm
+ffffffc008b794c4 d selinux_enforcing_boot
+ffffffc008b794c8 D selinux_enabled_boot
+ffffffc008b794cc d ddebug_init_success
+ffffffc008b794cd d __stack_depot_early_init_passed
+ffffffc008b794d0 d xbc_data
+ffffffc008b794d8 d xbc_node_num
+ffffffc008b794e0 d xbc_data_size
+ffffffc008b794e8 d xbc_nodes
+ffffffc008b794f0 d brace_index
+ffffffc008b794f4 d xbc_err_pos
+ffffffc008b794f8 d xbc_err_msg
+ffffffc008b79500 d last_parent
+ffffffc008b79508 d open_brace
+ffffffc008b79548 d gic_cnt
+ffffffc008b79550 d gic_v2_kvm_info
+ffffffc008b79628 d gic_v3_kvm_info
+ffffffc008b79700 d clk_ignore_unused
+ffffffc008b79701 D earlycon_acpi_spcr_enable
+ffffffc008b79702 d trust_cpu
+ffffffc008b79703 d trust_bootloader
+ffffffc008b79708 D loopback_net_ops
+ffffffc008b79748 d _inits
+ffffffc008b79788 d arch_timers_present
+ffffffc008b7978c D dt_root_addr_cells
+ffffffc008b79790 D dt_root_size_cells
+ffffffc008b79798 d proto_net_ops
+ffffffc008b797d8 d net_ns_ops
+ffffffc008b79818 d sysctl_core_ops
+ffffffc008b79858 d netdev_net_ops
+ffffffc008b79898 d default_device_ops
+ffffffc008b798d8 d dev_proc_ops
+ffffffc008b79918 d dev_mc_net_ops
+ffffffc008b79958 d __TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
+ffffffc008b79970 d __TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
+ffffffc008b79988 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
+ffffffc008b799a0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
+ffffffc008b799b8 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
+ffffffc008b799d0 d __TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
+ffffffc008b799e8 d __TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
+ffffffc008b79a00 d __TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
+ffffffc008b79a18 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
+ffffffc008b79a30 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
+ffffffc008b79a48 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
+ffffffc008b79a60 d __TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
+ffffffc008b79a78 d __TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
+ffffffc008b79a90 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
+ffffffc008b79aa8 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
+ffffffc008b79ac0 d __TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
+ffffffc008b79ad8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
+ffffffc008b79af0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
+ffffffc008b79b08 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
+ffffffc008b79b20 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
+ffffffc008b79b38 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
+ffffffc008b79b50 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
+ffffffc008b79b68 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
+ffffffc008b79b80 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
+ffffffc008b79b98 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
+ffffffc008b79bb0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
+ffffffc008b79bc8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
+ffffffc008b79be0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
+ffffffc008b79bf8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
+ffffffc008b79c10 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
+ffffffc008b79c28 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
+ffffffc008b79c40 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
+ffffffc008b79c58 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
+ffffffc008b79c70 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
+ffffffc008b79c88 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
+ffffffc008b79ca0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
+ffffffc008b79cb8 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
+ffffffc008b79cd0 d __TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
+ffffffc008b79ce8 d __TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
+ffffffc008b79d00 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
+ffffffc008b79d18 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
+ffffffc008b79d30 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
+ffffffc008b79d48 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
+ffffffc008b79d60 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
+ffffffc008b79d78 d __TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
+ffffffc008b79d90 d __TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
+ffffffc008b79da8 d __TRACE_SYSTEM_SKB_DROP_REASON_XDP
+ffffffc008b79dc0 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
+ffffffc008b79dd8 d __TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
+ffffffc008b79df0 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
+ffffffc008b79e08 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
+ffffffc008b79e20 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
+ffffffc008b79e38 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
+ffffffc008b79e50 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
+ffffffc008b79e68 d __TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
+ffffffc008b79e80 d __TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
+ffffffc008b79e98 d __TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
+ffffffc008b79eb0 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
+ffffffc008b79ec8 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
+ffffffc008b79ee0 d __TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
+ffffffc008b79ef8 d __TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
+ffffffc008b79f10 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
+ffffffc008b79f28 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
+ffffffc008b79f40 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
+ffffffc008b79f58 d __TRACE_SYSTEM_SKB_DROP_REASON_MAX
+ffffffc008b79f70 d __TRACE_SYSTEM_2
+ffffffc008b79f88 d __TRACE_SYSTEM_10
+ffffffc008b79fa0 d __TRACE_SYSTEM_IPPROTO_TCP
+ffffffc008b79fb8 d __TRACE_SYSTEM_IPPROTO_DCCP
+ffffffc008b79fd0 d __TRACE_SYSTEM_IPPROTO_SCTP
+ffffffc008b79fe8 d __TRACE_SYSTEM_IPPROTO_MPTCP
+ffffffc008b7a000 d __TRACE_SYSTEM_TCP_ESTABLISHED
+ffffffc008b7a018 d __TRACE_SYSTEM_TCP_SYN_SENT
+ffffffc008b7a030 d __TRACE_SYSTEM_TCP_SYN_RECV
+ffffffc008b7a048 d __TRACE_SYSTEM_TCP_FIN_WAIT1
+ffffffc008b7a060 d __TRACE_SYSTEM_TCP_FIN_WAIT2
+ffffffc008b7a078 d __TRACE_SYSTEM_TCP_TIME_WAIT
+ffffffc008b7a090 d __TRACE_SYSTEM_TCP_CLOSE
+ffffffc008b7a0a8 d __TRACE_SYSTEM_TCP_CLOSE_WAIT
+ffffffc008b7a0c0 d __TRACE_SYSTEM_TCP_LAST_ACK
+ffffffc008b7a0d8 d __TRACE_SYSTEM_TCP_LISTEN
+ffffffc008b7a0f0 d __TRACE_SYSTEM_TCP_CLOSING
+ffffffc008b7a108 d __TRACE_SYSTEM_TCP_NEW_SYN_RECV
+ffffffc008b7a120 d __TRACE_SYSTEM_0
+ffffffc008b7a138 d __TRACE_SYSTEM_1
+ffffffc008b7a150 d netlink_net_ops
+ffffffc008b7a190 d sysctl_route_ops
+ffffffc008b7a1d0 d ip_rt_ops
+ffffffc008b7a210 d rt_genid_ops
+ffffffc008b7a250 d ipv4_inetpeer_ops
+ffffffc008b7a290 d ip_rt_proc_ops
+ffffffc008b7a2d0 d thash_entries
+ffffffc008b7a2d8 d tcp_sk_ops
+ffffffc008b7a318 d tcp_net_metrics_ops
+ffffffc008b7a358 d raw_net_ops
+ffffffc008b7a398 d raw_sysctl_ops
+ffffffc008b7a3d8 d uhash_entries
+ffffffc008b7a3e0 d udp_sysctl_ops
+ffffffc008b7a420 d icmp_sk_ops
+ffffffc008b7a460 d devinet_ops
+ffffffc008b7a4a0 d ipv4_mib_ops
+ffffffc008b7a4e0 d af_inet_ops
+ffffffc008b7a520 d ipv4_sysctl_ops
+ffffffc008b7a560 d ip_proc_ops
+ffffffc008b7a5a0 d xfrm4_net_ops
+ffffffc008b7a5e0 d xfrm_net_ops
+ffffffc008b7a620 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
+ffffffc008b7a638 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
+ffffffc008b7a650 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
+ffffffc008b7a668 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
+ffffffc008b7a680 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
+ffffffc008b7a698 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
+ffffffc008b7a6b0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
+ffffffc008b7a6c8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
+ffffffc008b7a6e0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
+ffffffc008b7a6f8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
+ffffffc008b7a7a1 d __pi_$d.2
+ffffffc008b7a7b4 d __pi_$d.68
+ffffffc008b7a7c8 d __pi_$d.12
+ffffffc008b7a7d1 d __setup_str_set_reset_devices
+ffffffc008b7a7df d __setup_str_debug_kernel
+ffffffc008b7a7e5 d __setup_str_quiet_kernel
+ffffffc008b7a7eb d __setup_str_loglevel
+ffffffc008b7a7f4 d __setup_str_warn_bootconfig
+ffffffc008b7a7ff d __setup_str_init_setup
+ffffffc008b7a805 d __setup_str_rdinit_setup
+ffffffc008b7a80d d __setup_str_early_randomize_kstack_offset
+ffffffc008b7a825 d __setup_str_initcall_blacklist
+ffffffc008b7a839 d __setup_str_set_debug_rodata
+ffffffc008b7a840 d __setup_str_early_hostname
+ffffffc008b7a849 d __setup_str_load_ramdisk
+ffffffc008b7a857 d __setup_str_readonly
+ffffffc008b7a85a d __setup_str_readwrite
+ffffffc008b7a85d d __setup_str_root_dev_setup
+ffffffc008b7a863 d __setup_str_rootwait_setup
+ffffffc008b7a86c d __setup_str_root_data_setup
+ffffffc008b7a877 d __setup_str_fs_names_setup
+ffffffc008b7a883 d __setup_str_root_delay_setup
+ffffffc008b7a88e d __setup_str_prompt_ramdisk
+ffffffc008b7a89e d __setup_str_ramdisk_start_setup
+ffffffc008b7a8ad d __setup_str_no_initrd
+ffffffc008b7a8b6 d __setup_str_early_initrdmem
+ffffffc008b7a8c0 d __setup_str_early_initrd
+ffffffc008b7a8c7 d __setup_str_retain_initrd_param
+ffffffc008b7a8d5 d __setup_str_keepinitrd_setup
+ffffffc008b7a8e0 d __setup_str_initramfs_async_setup
+ffffffc008b7a8f1 d __setup_str_lpj_setup
+ffffffc008b7a8f6 d __setup_str_early_debug_disable
+ffffffc008b7a908 d dt_supported_cpu_ops
+ffffffc008b7a920 d __setup_str_parse_32bit_el0_param
+ffffffc008b7a93b d __setup_str_parse_kpti
+ffffffc008b7a940 d __setup_str_parse_spectre_v2_param
+ffffffc008b7a94d d __setup_str_parse_spectre_v4_param
+ffffffc008b7a952 d __setup_str_parse_spectre_bhb_param
+ffffffc008b7a960 d regs
+ffffffc008b7a998 d mmfr1
+ffffffc008b7a9e8 d pfr0
+ffffffc008b7aa38 d pfr1
+ffffffc008b7aab8 d isar1
+ffffffc008b7ab50 d isar2
+ffffffc008b7abb8 d smfr0
+ffffffc008b7ac08 d kaslr
+ffffffc008b7ac58 d aliases
+ffffffc008b7b0e8 d __setup_str_parse_no_stealacc
+ffffffc008b7b0f5 d __setup_str_early_disable_dma32
+ffffffc008b7b103 d __setup_str_early_mem
+ffffffc008b7b107 d __setup_str_ioremap_guard_setup
+ffffffc008b7b115 d __setup_str_enable_crash_mem_map
+ffffffc008b7b121 d __setup_str_coredump_filter_setup
+ffffffc008b7b132 d __setup_str_oops_setup
+ffffffc008b7b137 d __setup_str_panic_on_taint_setup
+ffffffc008b7b146 d __setup_str_mitigations_parse_cmdline
+ffffffc008b7b152 d __setup_str_reserve_setup
+ffffffc008b7b15b d __setup_str_strict_iomem
+ffffffc008b7b162 d __setup_str_file_caps_disable
+ffffffc008b7b16f d __setup_str_setup_print_fatal_signals
+ffffffc008b7b184 d __setup_str_reboot_setup
+ffffffc008b7b18c d __setup_str_setup_schedstats
+ffffffc008b7b198 d __setup_str_setup_resched_latency_warn_ms
+ffffffc008b7b1b1 d __setup_str_setup_sched_thermal_decay_shift
+ffffffc008b7b1cc d __setup_str_cpu_idle_poll_setup
+ffffffc008b7b1d2 d __setup_str_cpu_idle_nopoll_setup
+ffffffc008b7b1d6 d __setup_str_sched_debug_setup
+ffffffc008b7b1e4 d __setup_str_setup_relax_domain_level
+ffffffc008b7b1f8 d __setup_str_setup_psi
+ffffffc008b7b1fd d __setup_str_housekeeping_nohz_full_setup
+ffffffc008b7b208 d __setup_str_housekeeping_isolcpus_setup
+ffffffc008b7b212 d __setup_str_mem_sleep_default_setup
+ffffffc008b7b225 d __setup_str_control_devkmsg
+ffffffc008b7b235 d __setup_str_log_buf_len_setup
+ffffffc008b7b241 d __setup_str_ignore_loglevel_setup
+ffffffc008b7b251 d __setup_str_console_msg_format_setup
+ffffffc008b7b265 d __setup_str_console_setup
+ffffffc008b7b26e d __setup_str_console_suspend_disable
+ffffffc008b7b281 d __setup_str_keep_bootcon_setup
+ffffffc008b7b28e d __setup_str_irq_affinity_setup
+ffffffc008b7b29b d __setup_str_setup_forced_irqthreads
+ffffffc008b7b2a6 d __setup_str_noirqdebug_setup
+ffffffc008b7b2b1 d __setup_str_irqfixup_setup
+ffffffc008b7b2ba d __setup_str_irqpoll_setup
+ffffffc008b7b2c2 d __setup_str_rcu_nocb_setup
+ffffffc008b7b2cc d __setup_str_parse_rcu_nocb_poll
+ffffffc008b7b2da d __setup_str_setup_io_tlb_npages
+ffffffc008b7b2e2 d __setup_str_early_coherent_pool
+ffffffc008b7b2f0 d __setup_str_profile_setup
+ffffffc008b7b2f9 d __setup_str_setup_hrtimer_hres
+ffffffc008b7b302 d __setup_str_ntp_tick_adj_setup
+ffffffc008b7b310 d __setup_str_boot_override_clocksource
+ffffffc008b7b31d d __setup_str_boot_override_clock
+ffffffc008b7b324 d __setup_str_setup_tick_nohz
+ffffffc008b7b32a d __setup_str_skew_tick
+ffffffc008b7b334 d __setup_str_nosmp
+ffffffc008b7b33a d __setup_str_nrcpus
+ffffffc008b7b342 d __setup_str_maxcpus
+ffffffc008b7b34a d __setup_str_parse_crashkernel_dummy
+ffffffc008b7b356 d __setup_str_audit_enable
+ffffffc008b7b35d d __setup_str_audit_backlog_limit_set
+ffffffc008b7b372 d __setup_str_nowatchdog_setup
+ffffffc008b7b37d d __setup_str_nosoftlockup_setup
+ffffffc008b7b38a d __setup_str_watchdog_thresh_setup
+ffffffc008b7b39b d __setup_str_set_cmdline_ftrace
+ffffffc008b7b3a3 d __setup_str_set_ftrace_dump_on_oops
+ffffffc008b7b3b7 d __setup_str_stop_trace_on_warning
+ffffffc008b7b3cb d __setup_str_boot_alloc_snapshot
+ffffffc008b7b3da d __setup_str_boot_snapshot
+ffffffc008b7b3ef d __setup_str_set_trace_boot_options
+ffffffc008b7b3fe d __setup_str_set_trace_boot_clock
+ffffffc008b7b40b d __setup_str_set_tracepoint_printk
+ffffffc008b7b415 d __setup_str_set_tracepoint_printk_stop
+ffffffc008b7b42c d __setup_str_set_buf_size
+ffffffc008b7b43c d __setup_str_set_tracing_thresh
+ffffffc008b7b44c d __setup_str_setup_trace_event
+ffffffc008b7b459 d __setup_str_set_mminit_loglevel
+ffffffc008b7b470 D pcpu_fc_names
+ffffffc008b7b488 d __setup_str_percpu_alloc_setup
+ffffffc008b7b498 d __setup_str_slub_nomerge
+ffffffc008b7b4a5 d __setup_str_slub_merge
+ffffffc008b7b4b0 d __setup_str_setup_slab_nomerge
+ffffffc008b7b4bd d __setup_str_setup_slab_merge
+ffffffc008b7b4c8 D kmalloc_info
+ffffffc008b7b788 d __setup_str_disable_randmaps
+ffffffc008b7b793 d __setup_str_cmdline_parse_stack_guard_gap
+ffffffc008b7b7a4 d __setup_str_set_nohugeiomap
+ffffffc008b7b7b0 d __setup_str_set_nohugevmalloc
+ffffffc008b7b7be d __setup_str_early_init_on_alloc
+ffffffc008b7b7cc d __setup_str_early_init_on_free
+ffffffc008b7b7d9 d __setup_str_cmdline_parse_kernelcore
+ffffffc008b7b7e4 d __setup_str_cmdline_parse_movablecore
+ffffffc008b7b7f0 d __setup_str_early_memblock
+ffffffc008b7b7f9 d __setup_str_setup_memhp_default_state
+ffffffc008b7b80e d __setup_str_cmdline_parse_movable_node
+ffffffc008b7b81b d __setup_str_setup_slub_debug
+ffffffc008b7b826 d __setup_str_setup_slub_min_order
+ffffffc008b7b836 d __setup_str_setup_slub_max_order
+ffffffc008b7b846 d __setup_str_setup_slub_min_objects
+ffffffc008b7b858 d __setup_str_early_kasan_fault
+ffffffc008b7b864 d __setup_str_kasan_set_multi_shot
+ffffffc008b7b875 d __setup_str_early_kasan_flag
+ffffffc008b7b87b d __setup_str_early_kasan_mode
+ffffffc008b7b886 d __setup_str_early_kasan_flag_vmalloc
+ffffffc008b7b894 d __setup_str_early_kasan_flag_page_alloc_sample
+ffffffc008b7b8ac d __setup_str_early_kasan_flag_page_alloc_sample_order
+ffffffc008b7b8ca d __setup_str_early_kasan_flag_stacktrace
+ffffffc008b7b8db d __setup_str_early_kasan_flag_stack_ring_size
+ffffffc008b7b8f1 d __setup_str_setup_transparent_hugepage
+ffffffc008b7b907 d __setup_str_early_page_owner_param
+ffffffc008b7b912 d __setup_str_early_ioremap_debug_setup
+ffffffc008b7b926 d __setup_str_setup_early_page_ext
+ffffffc008b7b935 d __setup_str_parse_hardened_usercopy
+ffffffc008b7b948 d __setup_str_set_dhash_entries
+ffffffc008b7b957 d __setup_str_set_ihash_entries
+ffffffc008b7b966 d __setup_str_set_mhash_entries
+ffffffc008b7b975 d __setup_str_set_mphash_entries
+ffffffc008b7b985 d __setup_str_debugfs_kernel
+ffffffc008b7b98d d __setup_str_choose_major_lsm
+ffffffc008b7b997 d __setup_str_choose_lsm_order
+ffffffc008b7b99c d __setup_str_enable_debug
+ffffffc008b7b9a6 d __setup_str_enforcing_setup
+ffffffc008b7b9b1 d __setup_str_checkreqprot_setup
+ffffffc008b7b9bf d __setup_str_integrity_audit_setup
+ffffffc008b7b9d0 d __setup_str_elevator_setup
+ffffffc008b7b9da d __setup_str_force_gpt_fn
+ffffffc008b7b9de d __setup_str_dyndbg_setup
+ffffffc008b7b9e6 d __setup_str_is_stack_depot_disabled
+ffffffc008b7b9fa d __setup_str_gicv2_force_probe_cfg
+ffffffc008b7ba14 d __setup_str_gicv3_nolpi_cfg
+ffffffc008b7ba28 d __setup_str_pcie_port_pm_setup
+ffffffc008b7ba36 d __setup_str_pci_setup
+ffffffc008b7ba3a d __setup_str_pcie_port_setup
+ffffffc008b7ba46 d __setup_str_pcie_aspm_disable
+ffffffc008b7ba51 d __setup_str_pcie_pme_setup
+ffffffc008b7ba5b d __setup_str_clk_ignore_unused_setup
+ffffffc008b7ba6d d __setup_str_sysrq_always_enabled_setup
+ffffffc008b7ba82 d __setup_str_param_setup_earlycon
+ffffffc008b7ba8b d __setup_str_parse_trust_cpu
+ffffffc008b7ba9c d __setup_str_parse_trust_bootloader
+ffffffc008b7bab4 d __setup_str_iommu_set_def_domain_type
+ffffffc008b7bac6 d __setup_str_iommu_dma_setup
+ffffffc008b7bad3 d __setup_str_iommu_dma_forcedac_setup
+ffffffc008b7bae2 d __setup_str_fw_devlink_setup
+ffffffc008b7baed d __setup_str_fw_devlink_strict_setup
+ffffffc008b7baff d __setup_str_deferred_probe_timeout_setup
+ffffffc008b7bb17 d __setup_str_save_async_options
+ffffffc008b7bb2b d __setup_str_ramdisk_size
+ffffffc008b7bb39 d __setup_str_max_loop_setup
+ffffffc008b7bb48 d dm_allowed_targets
+ffffffc008b7bb78 d psci_of_match
+ffffffc008b7be98 d __setup_str_early_evtstrm_cfg
+ffffffc008b7bec0 d arch_timer_mem_of_match
+ffffffc008b7c050 d arch_timer_of_match
+ffffffc008b7c2a8 d __setup_str_parse_ras_param
+ffffffc008b7c2ac d __setup_str_fb_tunnels_only_for_init_net_sysctl_setup
+ffffffc008b7c2b8 d __setup_str_set_thash_entries
+ffffffc008b7c2c7 d __setup_str_set_tcpmhash_entries
+ffffffc008b7c2d9 d __setup_str_set_uhash_entries
+ffffffc008b7c2e8 d fib4_rules_ops_template
+ffffffc008b7c398 d ip6addrlbl_init_table
+ffffffc008b7c438 d fib6_rules_ops_template
+ffffffc008b7c4e8 d compressed_formats
+ffffffc008b7c5c0 d __setup_str_debug_boot_weak_hash_enable
+ffffffc008b7c5d5 d __setup_str_no_hash_pointers_enable
+ffffffc008b7c5e8 d __event_initcall_level
+ffffffc008b7c5e8 D __start_ftrace_events
+ffffffc008b7c5f0 d __event_initcall_start
+ffffffc008b7c5f8 d __event_initcall_finish
+ffffffc008b7c600 d __event_sys_enter
+ffffffc008b7c608 d __event_sys_exit
+ffffffc008b7c610 d __event_ipi_raise
+ffffffc008b7c618 d __event_ipi_entry
+ffffffc008b7c620 d __event_ipi_exit
+ffffffc008b7c628 d __event_task_newtask
+ffffffc008b7c630 d __event_task_rename
+ffffffc008b7c638 d __event_cpuhp_enter
+ffffffc008b7c640 d __event_cpuhp_multi_enter
+ffffffc008b7c648 d __event_cpuhp_exit
+ffffffc008b7c650 d __event_irq_handler_entry
+ffffffc008b7c658 d __event_irq_handler_exit
+ffffffc008b7c660 d __event_softirq_entry
+ffffffc008b7c668 d __event_softirq_exit
+ffffffc008b7c670 d __event_softirq_raise
+ffffffc008b7c678 d __event_tasklet_entry
+ffffffc008b7c680 d __event_tasklet_exit
+ffffffc008b7c688 d __event_signal_generate
+ffffffc008b7c690 d __event_signal_deliver
+ffffffc008b7c698 d __event_workqueue_queue_work
+ffffffc008b7c6a0 d __event_workqueue_activate_work
+ffffffc008b7c6a8 d __event_workqueue_execute_start
+ffffffc008b7c6b0 d __event_workqueue_execute_end
+ffffffc008b7c6b8 d __event_sched_kthread_stop
+ffffffc008b7c6c0 d __event_sched_kthread_stop_ret
+ffffffc008b7c6c8 d __event_sched_kthread_work_queue_work
+ffffffc008b7c6d0 d __event_sched_kthread_work_execute_start
+ffffffc008b7c6d8 d __event_sched_kthread_work_execute_end
+ffffffc008b7c6e0 d __event_sched_waking
+ffffffc008b7c6e8 d __event_sched_wakeup
+ffffffc008b7c6f0 d __event_sched_wakeup_new
+ffffffc008b7c6f8 d __event_sched_switch
+ffffffc008b7c700 d __event_sched_migrate_task
+ffffffc008b7c708 d __event_sched_process_free
+ffffffc008b7c710 d __event_sched_process_exit
+ffffffc008b7c718 d __event_sched_wait_task
+ffffffc008b7c720 d __event_sched_process_wait
+ffffffc008b7c728 d __event_sched_process_fork
+ffffffc008b7c730 d __event_sched_process_exec
+ffffffc008b7c738 d __event_sched_stat_wait
+ffffffc008b7c740 d __event_sched_stat_sleep
+ffffffc008b7c748 d __event_sched_stat_iowait
+ffffffc008b7c750 d __event_sched_stat_blocked
+ffffffc008b7c758 d __event_sched_blocked_reason
+ffffffc008b7c760 d __event_sched_stat_runtime
+ffffffc008b7c768 d __event_sched_pi_setprio
+ffffffc008b7c770 d __event_sched_process_hang
+ffffffc008b7c778 d __event_sched_move_numa
+ffffffc008b7c780 d __event_sched_stick_numa
+ffffffc008b7c788 d __event_sched_swap_numa
+ffffffc008b7c790 d __event_sched_wake_idle_without_ipi
+ffffffc008b7c798 d __event_contention_begin
+ffffffc008b7c7a0 d __event_contention_end
+ffffffc008b7c7a8 d __event_console
+ffffffc008b7c7b0 d __event_rcu_utilization
+ffffffc008b7c7b8 d __event_rcu_grace_period
+ffffffc008b7c7c0 d __event_rcu_future_grace_period
+ffffffc008b7c7c8 d __event_rcu_grace_period_init
+ffffffc008b7c7d0 d __event_rcu_exp_grace_period
+ffffffc008b7c7d8 d __event_rcu_exp_funnel_lock
+ffffffc008b7c7e0 d __event_rcu_nocb_wake
+ffffffc008b7c7e8 d __event_rcu_preempt_task
+ffffffc008b7c7f0 d __event_rcu_unlock_preempted_task
+ffffffc008b7c7f8 d __event_rcu_quiescent_state_report
+ffffffc008b7c800 d __event_rcu_fqs
+ffffffc008b7c808 d __event_rcu_stall_warning
+ffffffc008b7c810 d __event_rcu_dyntick
+ffffffc008b7c818 d __event_rcu_callback
+ffffffc008b7c820 d __event_rcu_segcb_stats
+ffffffc008b7c828 d __event_rcu_kvfree_callback
+ffffffc008b7c830 d __event_rcu_batch_start
+ffffffc008b7c838 d __event_rcu_invoke_callback
+ffffffc008b7c840 d __event_rcu_invoke_kvfree_callback
+ffffffc008b7c848 d __event_rcu_invoke_kfree_bulk_callback
+ffffffc008b7c850 d __event_rcu_batch_end
+ffffffc008b7c858 d __event_rcu_torture_read
+ffffffc008b7c860 d __event_rcu_barrier
+ffffffc008b7c868 d __event_swiotlb_bounced
+ffffffc008b7c870 d __event_module_load
+ffffffc008b7c878 d __event_module_free
+ffffffc008b7c880 d __event_module_request
+ffffffc008b7c888 d __event_timer_init
+ffffffc008b7c890 d __event_timer_start
+ffffffc008b7c898 d __event_timer_expire_entry
+ffffffc008b7c8a0 d __event_timer_expire_exit
+ffffffc008b7c8a8 d __event_timer_cancel
+ffffffc008b7c8b0 d __event_hrtimer_init
+ffffffc008b7c8b8 d __event_hrtimer_start
+ffffffc008b7c8c0 d __event_hrtimer_expire_entry
+ffffffc008b7c8c8 d __event_hrtimer_expire_exit
+ffffffc008b7c8d0 d __event_hrtimer_cancel
+ffffffc008b7c8d8 d __event_itimer_state
+ffffffc008b7c8e0 d __event_itimer_expire
+ffffffc008b7c8e8 d __event_tick_stop
+ffffffc008b7c8f0 d __event_alarmtimer_suspend
+ffffffc008b7c8f8 d __event_alarmtimer_fired
+ffffffc008b7c900 d __event_alarmtimer_start
+ffffffc008b7c908 d __event_alarmtimer_cancel
+ffffffc008b7c910 d __event_function
+ffffffc008b7c918 d __event_funcgraph_entry
+ffffffc008b7c920 d __event_funcgraph_exit
+ffffffc008b7c928 d __event_context_switch
+ffffffc008b7c930 d __event_wakeup
+ffffffc008b7c938 d __event_kernel_stack
+ffffffc008b7c940 d __event_user_stack
+ffffffc008b7c948 d __event_bprint
+ffffffc008b7c950 d __event_print
+ffffffc008b7c958 d __event_raw_data
+ffffffc008b7c960 d __event_bputs
+ffffffc008b7c968 d __event_mmiotrace_rw
+ffffffc008b7c970 d __event_mmiotrace_map
+ffffffc008b7c978 d __event_branch
+ffffffc008b7c980 d __event_hwlat
+ffffffc008b7c988 d __event_func_repeats
+ffffffc008b7c990 d __event_osnoise
+ffffffc008b7c998 d __event_timerlat
+ffffffc008b7c9a0 d __event_error_report_end
+ffffffc008b7c9a8 d __event_cpu_idle
+ffffffc008b7c9b0 d __event_cpu_idle_miss
+ffffffc008b7c9b8 d __event_powernv_throttle
+ffffffc008b7c9c0 d __event_pstate_sample
+ffffffc008b7c9c8 d __event_cpu_frequency
+ffffffc008b7c9d0 d __event_cpu_frequency_limits
+ffffffc008b7c9d8 d __event_device_pm_callback_start
+ffffffc008b7c9e0 d __event_device_pm_callback_end
+ffffffc008b7c9e8 d __event_suspend_resume
+ffffffc008b7c9f0 d __event_wakeup_source_activate
+ffffffc008b7c9f8 d __event_wakeup_source_deactivate
+ffffffc008b7ca00 d __event_clock_enable
+ffffffc008b7ca08 d __event_clock_disable
+ffffffc008b7ca10 d __event_clock_set_rate
+ffffffc008b7ca18 d __event_power_domain_target
+ffffffc008b7ca20 d __event_pm_qos_add_request
+ffffffc008b7ca28 d __event_pm_qos_update_request
+ffffffc008b7ca30 d __event_pm_qos_remove_request
+ffffffc008b7ca38 d __event_pm_qos_update_target
+ffffffc008b7ca40 d __event_pm_qos_update_flags
+ffffffc008b7ca48 d __event_dev_pm_qos_add_request
+ffffffc008b7ca50 d __event_dev_pm_qos_update_request
+ffffffc008b7ca58 d __event_dev_pm_qos_remove_request
+ffffffc008b7ca60 d __event_guest_halt_poll_ns
+ffffffc008b7ca68 d __event_rpm_suspend
+ffffffc008b7ca70 d __event_rpm_resume
+ffffffc008b7ca78 d __event_rpm_idle
+ffffffc008b7ca80 d __event_rpm_usage
+ffffffc008b7ca88 d __event_rpm_return_int
+ffffffc008b7ca90 d __event_xdp_exception
+ffffffc008b7ca98 d __event_xdp_bulk_tx
+ffffffc008b7caa0 d __event_xdp_redirect
+ffffffc008b7caa8 d __event_xdp_redirect_err
+ffffffc008b7cab0 d __event_xdp_redirect_map
+ffffffc008b7cab8 d __event_xdp_redirect_map_err
+ffffffc008b7cac0 d __event_xdp_cpumap_kthread
+ffffffc008b7cac8 d __event_xdp_cpumap_enqueue
+ffffffc008b7cad0 d __event_xdp_devmap_xmit
+ffffffc008b7cad8 d __event_mem_disconnect
+ffffffc008b7cae0 d __event_mem_connect
+ffffffc008b7cae8 d __event_mem_return_failed
+ffffffc008b7caf0 d __event_rseq_update
+ffffffc008b7caf8 d __event_rseq_ip_fixup
+ffffffc008b7cb00 d __event_mm_filemap_delete_from_page_cache
+ffffffc008b7cb08 d __event_mm_filemap_add_to_page_cache
+ffffffc008b7cb10 d __event_filemap_set_wb_err
+ffffffc008b7cb18 d __event_file_check_and_advance_wb_err
+ffffffc008b7cb20 d __event_oom_score_adj_update
+ffffffc008b7cb28 d __event_reclaim_retry_zone
+ffffffc008b7cb30 d __event_mark_victim
+ffffffc008b7cb38 d __event_wake_reaper
+ffffffc008b7cb40 d __event_start_task_reaping
+ffffffc008b7cb48 d __event_finish_task_reaping
+ffffffc008b7cb50 d __event_skip_task_reaping
+ffffffc008b7cb58 d __event_compact_retry
+ffffffc008b7cb60 d __event_mm_lru_insertion
+ffffffc008b7cb68 d __event_mm_lru_activate
+ffffffc008b7cb70 d __event_mm_vmscan_kswapd_sleep
+ffffffc008b7cb78 d __event_mm_vmscan_kswapd_wake
+ffffffc008b7cb80 d __event_mm_vmscan_wakeup_kswapd
+ffffffc008b7cb88 d __event_mm_vmscan_direct_reclaim_begin
+ffffffc008b7cb90 d __event_mm_vmscan_direct_reclaim_end
+ffffffc008b7cb98 d __event_mm_shrink_slab_start
+ffffffc008b7cba0 d __event_mm_shrink_slab_end
+ffffffc008b7cba8 d __event_mm_vmscan_lru_isolate
+ffffffc008b7cbb0 d __event_mm_vmscan_write_folio
+ffffffc008b7cbb8 d __event_mm_vmscan_lru_shrink_inactive
+ffffffc008b7cbc0 d __event_mm_vmscan_lru_shrink_active
+ffffffc008b7cbc8 d __event_mm_vmscan_node_reclaim_begin
+ffffffc008b7cbd0 d __event_mm_vmscan_node_reclaim_end
+ffffffc008b7cbd8 d __event_mm_vmscan_throttled
+ffffffc008b7cbe0 d __event_percpu_alloc_percpu
+ffffffc008b7cbe8 d __event_percpu_free_percpu
+ffffffc008b7cbf0 d __event_percpu_alloc_percpu_fail
+ffffffc008b7cbf8 d __event_percpu_create_chunk
+ffffffc008b7cc00 d __event_percpu_destroy_chunk
+ffffffc008b7cc08 d __event_kmem_cache_alloc
+ffffffc008b7cc10 d __event_kmalloc
+ffffffc008b7cc18 d __event_kfree
+ffffffc008b7cc20 d __event_kmem_cache_free
+ffffffc008b7cc28 d __event_mm_page_free
+ffffffc008b7cc30 d __event_mm_page_free_batched
+ffffffc008b7cc38 d __event_mm_page_alloc
+ffffffc008b7cc40 d __event_mm_page_alloc_zone_locked
+ffffffc008b7cc48 d __event_mm_page_pcpu_drain
+ffffffc008b7cc50 d __event_mm_page_alloc_extfrag
+ffffffc008b7cc58 d __event_rss_stat
+ffffffc008b7cc60 d __event_mm_compaction_isolate_migratepages
+ffffffc008b7cc68 d __event_mm_compaction_isolate_freepages
+ffffffc008b7cc70 d __event_mm_compaction_migratepages
+ffffffc008b7cc78 d __event_mm_compaction_begin
+ffffffc008b7cc80 d __event_mm_compaction_end
+ffffffc008b7cc88 d __event_mm_compaction_try_to_compact_pages
+ffffffc008b7cc90 d __event_mm_compaction_finished
+ffffffc008b7cc98 d __event_mm_compaction_suitable
+ffffffc008b7cca0 d __event_mm_compaction_deferred
+ffffffc008b7cca8 d __event_mm_compaction_defer_compaction
+ffffffc008b7ccb0 d __event_mm_compaction_defer_reset
+ffffffc008b7ccb8 d __event_mm_compaction_kcompactd_sleep
+ffffffc008b7ccc0 d __event_mm_compaction_wakeup_kcompactd
+ffffffc008b7ccc8 d __event_mm_compaction_kcompactd_wake
+ffffffc008b7ccd0 d __event_mmap_lock_start_locking
+ffffffc008b7ccd8 d __event_mmap_lock_released
+ffffffc008b7cce0 d __event_mmap_lock_acquire_returned
+ffffffc008b7cce8 d __event_vm_unmapped_area
+ffffffc008b7ccf0 d __event_vma_mas_szero
+ffffffc008b7ccf8 d __event_vma_store
+ffffffc008b7cd00 d __event_exit_mmap
+ffffffc008b7cd08 d __event_tlb_flush
+ffffffc008b7cd10 d __event_mm_migrate_pages
+ffffffc008b7cd18 d __event_mm_migrate_pages_start
+ffffffc008b7cd20 d __event_set_migration_pte
+ffffffc008b7cd28 d __event_remove_migration_pte
+ffffffc008b7cd30 d __event_hugepage_set_pmd
+ffffffc008b7cd38 d __event_hugepage_update
+ffffffc008b7cd40 d __event_set_migration_pmd
+ffffffc008b7cd48 d __event_remove_migration_pmd
+ffffffc008b7cd50 d __event_mm_khugepaged_scan_pmd
+ffffffc008b7cd58 d __event_mm_collapse_huge_page
+ffffffc008b7cd60 d __event_mm_collapse_huge_page_isolate
+ffffffc008b7cd68 d __event_mm_collapse_huge_page_swapin
+ffffffc008b7cd70 d __event_mm_khugepaged_scan_file
+ffffffc008b7cd78 d __event_test_pages_isolated
+ffffffc008b7cd80 d __event_writeback_dirty_folio
+ffffffc008b7cd88 d __event_folio_wait_writeback
+ffffffc008b7cd90 d __event_writeback_mark_inode_dirty
+ffffffc008b7cd98 d __event_writeback_dirty_inode_start
+ffffffc008b7cda0 d __event_writeback_dirty_inode
+ffffffc008b7cda8 d __event_writeback_write_inode_start
+ffffffc008b7cdb0 d __event_writeback_write_inode
+ffffffc008b7cdb8 d __event_writeback_queue
+ffffffc008b7cdc0 d __event_writeback_exec
+ffffffc008b7cdc8 d __event_writeback_start
+ffffffc008b7cdd0 d __event_writeback_written
+ffffffc008b7cdd8 d __event_writeback_wait
+ffffffc008b7cde0 d __event_writeback_pages_written
+ffffffc008b7cde8 d __event_writeback_wake_background
+ffffffc008b7cdf0 d __event_writeback_bdi_register
+ffffffc008b7cdf8 d __event_wbc_writepage
+ffffffc008b7ce00 d __event_writeback_queue_io
+ffffffc008b7ce08 d __event_global_dirty_state
+ffffffc008b7ce10 d __event_bdi_dirty_ratelimit
+ffffffc008b7ce18 d __event_balance_dirty_pages
+ffffffc008b7ce20 d __event_writeback_sb_inodes_requeue
+ffffffc008b7ce28 d __event_writeback_single_inode_start
+ffffffc008b7ce30 d __event_writeback_single_inode
+ffffffc008b7ce38 d __event_writeback_lazytime
+ffffffc008b7ce40 d __event_writeback_lazytime_iput
+ffffffc008b7ce48 d __event_writeback_dirty_inode_enqueue
+ffffffc008b7ce50 d __event_sb_mark_inode_writeback
+ffffffc008b7ce58 d __event_sb_clear_inode_writeback
+ffffffc008b7ce60 d __event_locks_get_lock_context
+ffffffc008b7ce68 d __event_posix_lock_inode
+ffffffc008b7ce70 d __event_fcntl_setlk
+ffffffc008b7ce78 d __event_locks_remove_posix
+ffffffc008b7ce80 d __event_flock_lock_inode
+ffffffc008b7ce88 d __event_break_lease_noblock
+ffffffc008b7ce90 d __event_break_lease_block
+ffffffc008b7ce98 d __event_break_lease_unblock
+ffffffc008b7cea0 d __event_generic_delete_lease
+ffffffc008b7cea8 d __event_time_out_leases
+ffffffc008b7ceb0 d __event_generic_add_lease
+ffffffc008b7ceb8 d __event_leases_conflict
+ffffffc008b7cec0 d __event_iomap_readpage
+ffffffc008b7cec8 d __event_iomap_readahead
+ffffffc008b7ced0 d __event_iomap_writepage
+ffffffc008b7ced8 d __event_iomap_release_folio
+ffffffc008b7cee0 d __event_iomap_invalidate_folio
+ffffffc008b7cee8 d __event_iomap_dio_invalidate_fail
+ffffffc008b7cef0 d __event_iomap_iter_dstmap
+ffffffc008b7cef8 d __event_iomap_iter_srcmap
+ffffffc008b7cf00 d __event_iomap_writepage_map
+ffffffc008b7cf08 d __event_iomap_iter
+ffffffc008b7cf10 d __event_ext4_other_inode_update_time
+ffffffc008b7cf18 d __event_ext4_free_inode
+ffffffc008b7cf20 d __event_ext4_request_inode
+ffffffc008b7cf28 d __event_ext4_allocate_inode
+ffffffc008b7cf30 d __event_ext4_evict_inode
+ffffffc008b7cf38 d __event_ext4_drop_inode
+ffffffc008b7cf40 d __event_ext4_nfs_commit_metadata
+ffffffc008b7cf48 d __event_ext4_mark_inode_dirty
+ffffffc008b7cf50 d __event_ext4_begin_ordered_truncate
+ffffffc008b7cf58 d __event_ext4_write_begin
+ffffffc008b7cf60 d __event_ext4_da_write_begin
+ffffffc008b7cf68 d __event_ext4_write_end
+ffffffc008b7cf70 d __event_ext4_journalled_write_end
+ffffffc008b7cf78 d __event_ext4_da_write_end
+ffffffc008b7cf80 d __event_ext4_writepages
+ffffffc008b7cf88 d __event_ext4_da_write_pages
+ffffffc008b7cf90 d __event_ext4_da_write_pages_extent
+ffffffc008b7cf98 d __event_ext4_writepages_result
+ffffffc008b7cfa0 d __event_ext4_writepage
+ffffffc008b7cfa8 d __event_ext4_readpage
+ffffffc008b7cfb0 d __event_ext4_releasepage
+ffffffc008b7cfb8 d __event_ext4_invalidate_folio
+ffffffc008b7cfc0 d __event_ext4_journalled_invalidate_folio
+ffffffc008b7cfc8 d __event_ext4_discard_blocks
+ffffffc008b7cfd0 d __event_ext4_mb_new_inode_pa
+ffffffc008b7cfd8 d __event_ext4_mb_new_group_pa
+ffffffc008b7cfe0 d __event_ext4_mb_release_inode_pa
+ffffffc008b7cfe8 d __event_ext4_mb_release_group_pa
+ffffffc008b7cff0 d __event_ext4_discard_preallocations
+ffffffc008b7cff8 d __event_ext4_mb_discard_preallocations
+ffffffc008b7d000 d __event_ext4_request_blocks
+ffffffc008b7d008 d __event_ext4_allocate_blocks
+ffffffc008b7d010 d __event_ext4_free_blocks
+ffffffc008b7d018 d __event_ext4_sync_file_enter
+ffffffc008b7d020 d __event_ext4_sync_file_exit
+ffffffc008b7d028 d __event_ext4_sync_fs
+ffffffc008b7d030 d __event_ext4_alloc_da_blocks
+ffffffc008b7d038 d __event_ext4_mballoc_alloc
+ffffffc008b7d040 d __event_ext4_mballoc_prealloc
+ffffffc008b7d048 d __event_ext4_mballoc_discard
+ffffffc008b7d050 d __event_ext4_mballoc_free
+ffffffc008b7d058 d __event_ext4_forget
+ffffffc008b7d060 d __event_ext4_da_update_reserve_space
+ffffffc008b7d068 d __event_ext4_da_reserve_space
+ffffffc008b7d070 d __event_ext4_da_release_space
+ffffffc008b7d078 d __event_ext4_mb_bitmap_load
+ffffffc008b7d080 d __event_ext4_mb_buddy_bitmap_load
+ffffffc008b7d088 d __event_ext4_load_inode_bitmap
+ffffffc008b7d090 d __event_ext4_read_block_bitmap_load
+ffffffc008b7d098 d __event_ext4_fallocate_enter
+ffffffc008b7d0a0 d __event_ext4_punch_hole
+ffffffc008b7d0a8 d __event_ext4_zero_range
+ffffffc008b7d0b0 d __event_ext4_fallocate_exit
+ffffffc008b7d0b8 d __event_ext4_unlink_enter
+ffffffc008b7d0c0 d __event_ext4_unlink_exit
+ffffffc008b7d0c8 d __event_ext4_truncate_enter
+ffffffc008b7d0d0 d __event_ext4_truncate_exit
+ffffffc008b7d0d8 d __event_ext4_ext_convert_to_initialized_enter
+ffffffc008b7d0e0 d __event_ext4_ext_convert_to_initialized_fastpath
+ffffffc008b7d0e8 d __event_ext4_ext_map_blocks_enter
+ffffffc008b7d0f0 d __event_ext4_ind_map_blocks_enter
+ffffffc008b7d0f8 d __event_ext4_ext_map_blocks_exit
+ffffffc008b7d100 d __event_ext4_ind_map_blocks_exit
+ffffffc008b7d108 d __event_ext4_ext_load_extent
+ffffffc008b7d110 d __event_ext4_load_inode
+ffffffc008b7d118 d __event_ext4_journal_start
+ffffffc008b7d120 d __event_ext4_journal_start_reserved
+ffffffc008b7d128 d __event_ext4_trim_extent
+ffffffc008b7d130 d __event_ext4_trim_all_free
+ffffffc008b7d138 d __event_ext4_ext_handle_unwritten_extents
+ffffffc008b7d140 d __event_ext4_get_implied_cluster_alloc_exit
+ffffffc008b7d148 d __event_ext4_ext_show_extent
+ffffffc008b7d150 d __event_ext4_remove_blocks
+ffffffc008b7d158 d __event_ext4_ext_rm_leaf
+ffffffc008b7d160 d __event_ext4_ext_rm_idx
+ffffffc008b7d168 d __event_ext4_ext_remove_space
+ffffffc008b7d170 d __event_ext4_ext_remove_space_done
+ffffffc008b7d178 d __event_ext4_es_insert_extent
+ffffffc008b7d180 d __event_ext4_es_cache_extent
+ffffffc008b7d188 d __event_ext4_es_remove_extent
+ffffffc008b7d190 d __event_ext4_es_find_extent_range_enter
+ffffffc008b7d198 d __event_ext4_es_find_extent_range_exit
+ffffffc008b7d1a0 d __event_ext4_es_lookup_extent_enter
+ffffffc008b7d1a8 d __event_ext4_es_lookup_extent_exit
+ffffffc008b7d1b0 d __event_ext4_es_shrink_count
+ffffffc008b7d1b8 d __event_ext4_es_shrink_scan_enter
+ffffffc008b7d1c0 d __event_ext4_es_shrink_scan_exit
+ffffffc008b7d1c8 d __event_ext4_collapse_range
+ffffffc008b7d1d0 d __event_ext4_insert_range
+ffffffc008b7d1d8 d __event_ext4_es_shrink
+ffffffc008b7d1e0 d __event_ext4_es_insert_delayed_block
+ffffffc008b7d1e8 d __event_ext4_fsmap_low_key
+ffffffc008b7d1f0 d __event_ext4_fsmap_high_key
+ffffffc008b7d1f8 d __event_ext4_fsmap_mapping
+ffffffc008b7d200 d __event_ext4_getfsmap_low_key
+ffffffc008b7d208 d __event_ext4_getfsmap_high_key
+ffffffc008b7d210 d __event_ext4_getfsmap_mapping
+ffffffc008b7d218 d __event_ext4_shutdown
+ffffffc008b7d220 d __event_ext4_error
+ffffffc008b7d228 d __event_ext4_prefetch_bitmaps
+ffffffc008b7d230 d __event_ext4_lazy_itable_init
+ffffffc008b7d238 d __event_ext4_fc_replay_scan
+ffffffc008b7d240 d __event_ext4_fc_replay
+ffffffc008b7d248 d __event_ext4_fc_commit_start
+ffffffc008b7d250 d __event_ext4_fc_commit_stop
+ffffffc008b7d258 d __event_ext4_fc_stats
+ffffffc008b7d260 d __event_ext4_fc_track_create
+ffffffc008b7d268 d __event_ext4_fc_track_link
+ffffffc008b7d270 d __event_ext4_fc_track_unlink
+ffffffc008b7d278 d __event_ext4_fc_track_inode
+ffffffc008b7d280 d __event_ext4_fc_track_range
+ffffffc008b7d288 d __event_ext4_fc_cleanup
+ffffffc008b7d290 d __event_ext4_update_sb
+ffffffc008b7d298 d __event_jbd2_checkpoint
+ffffffc008b7d2a0 d __event_jbd2_start_commit
+ffffffc008b7d2a8 d __event_jbd2_commit_locking
+ffffffc008b7d2b0 d __event_jbd2_commit_flushing
+ffffffc008b7d2b8 d __event_jbd2_commit_logging
+ffffffc008b7d2c0 d __event_jbd2_drop_transaction
+ffffffc008b7d2c8 d __event_jbd2_end_commit
+ffffffc008b7d2d0 d __event_jbd2_submit_inode_data
+ffffffc008b7d2d8 d __event_jbd2_handle_start
+ffffffc008b7d2e0 d __event_jbd2_handle_restart
+ffffffc008b7d2e8 d __event_jbd2_handle_extend
+ffffffc008b7d2f0 d __event_jbd2_handle_stats
+ffffffc008b7d2f8 d __event_jbd2_run_stats
+ffffffc008b7d300 d __event_jbd2_checkpoint_stats
+ffffffc008b7d308 d __event_jbd2_update_log_tail
+ffffffc008b7d310 d __event_jbd2_write_superblock
+ffffffc008b7d318 d __event_jbd2_lock_buffer_stall
+ffffffc008b7d320 d __event_jbd2_shrink_count
+ffffffc008b7d328 d __event_jbd2_shrink_scan_enter
+ffffffc008b7d330 d __event_jbd2_shrink_scan_exit
+ffffffc008b7d338 d __event_jbd2_shrink_checkpoint_list
+ffffffc008b7d340 d __event_erofs_lookup
+ffffffc008b7d348 d __event_erofs_fill_inode
+ffffffc008b7d350 d __event_erofs_readpage
+ffffffc008b7d358 d __event_erofs_readpages
+ffffffc008b7d360 d __event_erofs_map_blocks_enter
+ffffffc008b7d368 d __event_z_erofs_map_blocks_iter_enter
+ffffffc008b7d370 d __event_erofs_map_blocks_exit
+ffffffc008b7d378 d __event_z_erofs_map_blocks_iter_exit
+ffffffc008b7d380 d __event_erofs_destroy_inode
+ffffffc008b7d388 d __event_selinux_audited
+ffffffc008b7d390 d __event_block_touch_buffer
+ffffffc008b7d398 d __event_block_dirty_buffer
+ffffffc008b7d3a0 d __event_block_rq_requeue
+ffffffc008b7d3a8 d __event_block_rq_complete
+ffffffc008b7d3b0 d __event_block_rq_error
+ffffffc008b7d3b8 d __event_block_rq_insert
+ffffffc008b7d3c0 d __event_block_rq_issue
+ffffffc008b7d3c8 d __event_block_rq_merge
+ffffffc008b7d3d0 d __event_block_bio_complete
+ffffffc008b7d3d8 d __event_block_bio_bounce
+ffffffc008b7d3e0 d __event_block_bio_backmerge
+ffffffc008b7d3e8 d __event_block_bio_frontmerge
+ffffffc008b7d3f0 d __event_block_bio_queue
+ffffffc008b7d3f8 d __event_block_getrq
+ffffffc008b7d400 d __event_block_plug
+ffffffc008b7d408 d __event_block_unplug
+ffffffc008b7d410 d __event_block_split
+ffffffc008b7d418 d __event_block_bio_remap
+ffffffc008b7d420 d __event_block_rq_remap
+ffffffc008b7d428 d __event_kyber_latency
+ffffffc008b7d430 d __event_kyber_adjust
+ffffffc008b7d438 d __event_kyber_throttled
+ffffffc008b7d440 d __event_io_uring_create
+ffffffc008b7d448 d __event_io_uring_register
+ffffffc008b7d450 d __event_io_uring_file_get
+ffffffc008b7d458 d __event_io_uring_queue_async_work
+ffffffc008b7d460 d __event_io_uring_defer
+ffffffc008b7d468 d __event_io_uring_link
+ffffffc008b7d470 d __event_io_uring_cqring_wait
+ffffffc008b7d478 d __event_io_uring_fail_link
+ffffffc008b7d480 d __event_io_uring_complete
+ffffffc008b7d488 d __event_io_uring_submit_sqe
+ffffffc008b7d490 d __event_io_uring_poll_arm
+ffffffc008b7d498 d __event_io_uring_task_add
+ffffffc008b7d4a0 d __event_io_uring_req_failed
+ffffffc008b7d4a8 d __event_io_uring_cqe_overflow
+ffffffc008b7d4b0 d __event_io_uring_task_work_run
+ffffffc008b7d4b8 d __event_io_uring_short_write
+ffffffc008b7d4c0 d __event_io_uring_local_work_run
+ffffffc008b7d4c8 d __event_rwmmio_write
+ffffffc008b7d4d0 d __event_rwmmio_post_write
+ffffffc008b7d4d8 d __event_rwmmio_read
+ffffffc008b7d4e0 d __event_rwmmio_post_read
+ffffffc008b7d4e8 d __event_clk_enable
+ffffffc008b7d4f0 d __event_clk_enable_complete
+ffffffc008b7d4f8 d __event_clk_disable
+ffffffc008b7d500 d __event_clk_disable_complete
+ffffffc008b7d508 d __event_clk_prepare
+ffffffc008b7d510 d __event_clk_prepare_complete
+ffffffc008b7d518 d __event_clk_unprepare
+ffffffc008b7d520 d __event_clk_unprepare_complete
+ffffffc008b7d528 d __event_clk_set_rate
+ffffffc008b7d530 d __event_clk_set_rate_complete
+ffffffc008b7d538 d __event_clk_set_min_rate
+ffffffc008b7d540 d __event_clk_set_max_rate
+ffffffc008b7d548 d __event_clk_set_rate_range
+ffffffc008b7d550 d __event_clk_set_parent
+ffffffc008b7d558 d __event_clk_set_parent_complete
+ffffffc008b7d560 d __event_clk_set_phase
+ffffffc008b7d568 d __event_clk_set_phase_complete
+ffffffc008b7d570 d __event_clk_set_duty_cycle
+ffffffc008b7d578 d __event_clk_set_duty_cycle_complete
+ffffffc008b7d580 d __event_add_device_to_group
+ffffffc008b7d588 d __event_remove_device_from_group
+ffffffc008b7d590 d __event_attach_device_to_domain
+ffffffc008b7d598 d __event_detach_device_from_domain
+ffffffc008b7d5a0 d __event_map
+ffffffc008b7d5a8 d __event_unmap
+ffffffc008b7d5b0 d __event_io_page_fault
+ffffffc008b7d5b8 d __event_regmap_reg_write
+ffffffc008b7d5c0 d __event_regmap_reg_read
+ffffffc008b7d5c8 d __event_regmap_reg_read_cache
+ffffffc008b7d5d0 d __event_regmap_bulk_write
+ffffffc008b7d5d8 d __event_regmap_bulk_read
+ffffffc008b7d5e0 d __event_regmap_hw_read_start
+ffffffc008b7d5e8 d __event_regmap_hw_read_done
+ffffffc008b7d5f0 d __event_regmap_hw_write_start
+ffffffc008b7d5f8 d __event_regmap_hw_write_done
+ffffffc008b7d600 d __event_regcache_sync
+ffffffc008b7d608 d __event_regmap_cache_only
+ffffffc008b7d610 d __event_regmap_cache_bypass
+ffffffc008b7d618 d __event_regmap_async_write_start
+ffffffc008b7d620 d __event_regmap_async_io_complete
+ffffffc008b7d628 d __event_regmap_async_complete_start
+ffffffc008b7d630 d __event_regmap_async_complete_done
+ffffffc008b7d638 d __event_regcache_drop_region
+ffffffc008b7d640 d __event_thermal_pressure_update
+ffffffc008b7d648 d __event_devres_log
+ffffffc008b7d650 d __event_dma_fence_emit
+ffffffc008b7d658 d __event_dma_fence_init
+ffffffc008b7d660 d __event_dma_fence_destroy
+ffffffc008b7d668 d __event_dma_fence_enable_signal
+ffffffc008b7d670 d __event_dma_fence_signaled
+ffffffc008b7d678 d __event_dma_fence_wait_start
+ffffffc008b7d680 d __event_dma_fence_wait_end
+ffffffc008b7d688 d __event_rtc_set_time
+ffffffc008b7d690 d __event_rtc_read_time
+ffffffc008b7d698 d __event_rtc_set_alarm
+ffffffc008b7d6a0 d __event_rtc_read_alarm
+ffffffc008b7d6a8 d __event_rtc_irq_set_freq
+ffffffc008b7d6b0 d __event_rtc_irq_set_state
+ffffffc008b7d6b8 d __event_rtc_alarm_irq_enable
+ffffffc008b7d6c0 d __event_rtc_set_offset
+ffffffc008b7d6c8 d __event_rtc_read_offset
+ffffffc008b7d6d0 d __event_rtc_timer_enqueue
+ffffffc008b7d6d8 d __event_rtc_timer_dequeue
+ffffffc008b7d6e0 d __event_rtc_timer_fired
+ffffffc008b7d6e8 d __event_watchdog_start
+ffffffc008b7d6f0 d __event_watchdog_ping
+ffffffc008b7d6f8 d __event_watchdog_stop
+ffffffc008b7d700 d __event_watchdog_set_timeout
+ffffffc008b7d708 d __event_scmi_fc_call
+ffffffc008b7d710 d __event_scmi_xfer_begin
+ffffffc008b7d718 d __event_scmi_xfer_response_wait
+ffffffc008b7d720 d __event_scmi_xfer_end
+ffffffc008b7d728 d __event_scmi_rx_done
+ffffffc008b7d730 d __event_scmi_msg_dump
+ffffffc008b7d738 d __event_mc_event
+ffffffc008b7d740 d __event_arm_event
+ffffffc008b7d748 d __event_non_standard_event
+ffffffc008b7d750 d __event_aer_event
+ffffffc008b7d758 d __event_kfree_skb
+ffffffc008b7d760 d __event_consume_skb
+ffffffc008b7d768 d __event_skb_copy_datagram_iovec
+ffffffc008b7d770 d __event_net_dev_start_xmit
+ffffffc008b7d778 d __event_net_dev_xmit
+ffffffc008b7d780 d __event_net_dev_xmit_timeout
+ffffffc008b7d788 d __event_net_dev_queue
+ffffffc008b7d790 d __event_netif_receive_skb
+ffffffc008b7d798 d __event_netif_rx
+ffffffc008b7d7a0 d __event_napi_gro_frags_entry
+ffffffc008b7d7a8 d __event_napi_gro_receive_entry
+ffffffc008b7d7b0 d __event_netif_receive_skb_entry
+ffffffc008b7d7b8 d __event_netif_receive_skb_list_entry
+ffffffc008b7d7c0 d __event_netif_rx_entry
+ffffffc008b7d7c8 d __event_napi_gro_frags_exit
+ffffffc008b7d7d0 d __event_napi_gro_receive_exit
+ffffffc008b7d7d8 d __event_netif_receive_skb_exit
+ffffffc008b7d7e0 d __event_netif_rx_exit
+ffffffc008b7d7e8 d __event_netif_receive_skb_list_exit
+ffffffc008b7d7f0 d __event_napi_poll
+ffffffc008b7d7f8 d __event_sock_rcvqueue_full
+ffffffc008b7d800 d __event_sock_exceed_buf_limit
+ffffffc008b7d808 d __event_inet_sock_set_state
+ffffffc008b7d810 d __event_inet_sk_error_report
+ffffffc008b7d818 d __event_udp_fail_queue_rcv_skb
+ffffffc008b7d820 d __event_tcp_retransmit_skb
+ffffffc008b7d828 d __event_tcp_send_reset
+ffffffc008b7d830 d __event_tcp_receive_reset
+ffffffc008b7d838 d __event_tcp_destroy_sock
+ffffffc008b7d840 d __event_tcp_rcv_space_adjust
+ffffffc008b7d848 d __event_tcp_retransmit_synack
+ffffffc008b7d850 d __event_tcp_probe
+ffffffc008b7d858 d __event_tcp_bad_csum
+ffffffc008b7d860 d __event_tcp_cong_state_set
+ffffffc008b7d868 d __event_fib_table_lookup
+ffffffc008b7d870 d __event_qdisc_dequeue
+ffffffc008b7d878 d __event_qdisc_enqueue
+ffffffc008b7d880 d __event_qdisc_reset
+ffffffc008b7d888 d __event_qdisc_destroy
+ffffffc008b7d890 d __event_qdisc_create
+ffffffc008b7d898 d __event_br_fdb_add
+ffffffc008b7d8a0 d __event_br_fdb_external_learn_add
+ffffffc008b7d8a8 d __event_fdb_delete
+ffffffc008b7d8b0 d __event_br_fdb_update
+ffffffc008b7d8b8 d __event_neigh_create
+ffffffc008b7d8c0 d __event_neigh_update
+ffffffc008b7d8c8 d __event_neigh_update_done
+ffffffc008b7d8d0 d __event_neigh_timer_handler
+ffffffc008b7d8d8 d __event_neigh_event_send_done
+ffffffc008b7d8e0 d __event_neigh_event_send_dead
+ffffffc008b7d8e8 d __event_neigh_cleanup_and_release
+ffffffc008b7d8f0 d __event_netlink_extack
+ffffffc008b7d8f8 d __event_fib6_table_lookup
+ffffffc008b7d900 d __event_virtio_transport_alloc_pkt
+ffffffc008b7d908 d __event_virtio_transport_recv_pkt
+ffffffc008b7d910 d __event_ma_op
+ffffffc008b7d918 d __event_ma_read
+ffffffc008b7d920 d __event_ma_write
+ffffffc008b7d928 d TRACE_SYSTEM_HI_SOFTIRQ
+ffffffc008b7d928 D __start_ftrace_eval_maps
+ffffffc008b7d928 D __stop_ftrace_events
+ffffffc008b7d930 d TRACE_SYSTEM_TIMER_SOFTIRQ
+ffffffc008b7d938 d TRACE_SYSTEM_NET_TX_SOFTIRQ
+ffffffc008b7d940 d TRACE_SYSTEM_NET_RX_SOFTIRQ
+ffffffc008b7d948 d TRACE_SYSTEM_BLOCK_SOFTIRQ
+ffffffc008b7d950 d TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
+ffffffc008b7d958 d TRACE_SYSTEM_TASKLET_SOFTIRQ
+ffffffc008b7d960 d TRACE_SYSTEM_SCHED_SOFTIRQ
+ffffffc008b7d968 d TRACE_SYSTEM_HRTIMER_SOFTIRQ
+ffffffc008b7d970 d TRACE_SYSTEM_RCU_SOFTIRQ
+ffffffc008b7d978 d TRACE_SYSTEM_TICK_DEP_MASK_NONE
+ffffffc008b7d980 d TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
+ffffffc008b7d988 d TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
+ffffffc008b7d990 d TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
+ffffffc008b7d998 d TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
+ffffffc008b7d9a0 d TRACE_SYSTEM_TICK_DEP_BIT_SCHED
+ffffffc008b7d9a8 d TRACE_SYSTEM_TICK_DEP_MASK_SCHED
+ffffffc008b7d9b0 d TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
+ffffffc008b7d9b8 d TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
+ffffffc008b7d9c0 d TRACE_SYSTEM_TICK_DEP_BIT_RCU
+ffffffc008b7d9c8 d TRACE_SYSTEM_TICK_DEP_MASK_RCU
+ffffffc008b7d9d0 d TRACE_SYSTEM_ALARM_REALTIME
+ffffffc008b7d9d8 d TRACE_SYSTEM_ALARM_BOOTTIME
+ffffffc008b7d9e0 d TRACE_SYSTEM_ALARM_REALTIME_FREEZER
+ffffffc008b7d9e8 d TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
+ffffffc008b7d9f0 d TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
+ffffffc008b7d9f8 d TRACE_SYSTEM_ERROR_DETECTOR_KASAN
+ffffffc008b7da00 d TRACE_SYSTEM_ERROR_DETECTOR_WARN
+ffffffc008b7da08 d TRACE_SYSTEM_XDP_ABORTED
+ffffffc008b7da10 d TRACE_SYSTEM_XDP_DROP
+ffffffc008b7da18 d TRACE_SYSTEM_XDP_PASS
+ffffffc008b7da20 d TRACE_SYSTEM_XDP_TX
+ffffffc008b7da28 d TRACE_SYSTEM_XDP_REDIRECT
+ffffffc008b7da30 d TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
+ffffffc008b7da38 d TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
+ffffffc008b7da40 d TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
+ffffffc008b7da48 d TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
+ffffffc008b7da50 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b7da58 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b7da60 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b7da68 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b7da70 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b7da78 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b7da80 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b7da88 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b7da90 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b7da98 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b7daa0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b7daa8 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b7dab0 d TRACE_SYSTEM_ZONE_DMA
+ffffffc008b7dab8 d TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b7dac0 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b7dac8 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b7dad0 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b7dad8 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b7dae0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b7dae8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b7daf0 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b7daf8 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b7db00 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b7db08 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b7db10 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b7db18 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b7db20 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b7db28 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b7db30 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b7db38 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b7db40 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b7db48 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b7db50 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b7db58 d TRACE_SYSTEM_ZONE_DMA
+ffffffc008b7db60 d TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b7db68 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b7db70 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b7db78 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b7db80 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b7db88 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b7db90 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b7db98 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b7dba0 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b7dba8 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b7dbb0 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b7dbb8 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b7dbc0 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b7dbc8 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b7dbd0 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b7dbd8 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b7dbe0 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b7dbe8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b7dbf0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b7dbf8 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b7dc00 d TRACE_SYSTEM_ZONE_DMA
+ffffffc008b7dc08 d TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b7dc10 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b7dc18 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b7dc20 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b7dc28 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b7dc30 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b7dc38 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b7dc40 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b7dc48 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b7dc50 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b7dc58 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b7dc60 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b7dc68 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b7dc70 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b7dc78 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b7dc80 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b7dc88 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b7dc90 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b7dc98 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b7dca0 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b7dca8 d TRACE_SYSTEM_ZONE_DMA
+ffffffc008b7dcb0 d TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b7dcb8 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b7dcc0 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b7dcc8 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b7dcd0 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b7dcd8 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b7dce0 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b7dce8 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b7dcf0 d TRACE_SYSTEM_MM_FILEPAGES
+ffffffc008b7dcf8 d TRACE_SYSTEM_MM_ANONPAGES
+ffffffc008b7dd00 d TRACE_SYSTEM_MM_SWAPENTS
+ffffffc008b7dd08 d TRACE_SYSTEM_MM_SHMEMPAGES
+ffffffc008b7dd10 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffc008b7dd18 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffc008b7dd20 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffc008b7dd28 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffc008b7dd30 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffc008b7dd38 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffc008b7dd40 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffc008b7dd48 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffc008b7dd50 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffc008b7dd58 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffc008b7dd60 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffc008b7dd68 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffc008b7dd70 d TRACE_SYSTEM_ZONE_DMA
+ffffffc008b7dd78 d TRACE_SYSTEM_ZONE_DMA32
+ffffffc008b7dd80 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffc008b7dd88 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffc008b7dd90 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffc008b7dd98 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffc008b7dda0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffc008b7dda8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffc008b7ddb0 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffc008b7ddb8 d TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
+ffffffc008b7ddc0 d TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
+ffffffc008b7ddc8 d TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
+ffffffc008b7ddd0 d TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
+ffffffc008b7ddd8 d TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
+ffffffc008b7dde0 d TRACE_SYSTEM_MIGRATE_ASYNC
+ffffffc008b7dde8 d TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
+ffffffc008b7ddf0 d TRACE_SYSTEM_MIGRATE_SYNC
+ffffffc008b7ddf8 d TRACE_SYSTEM_MR_COMPACTION
+ffffffc008b7de00 d TRACE_SYSTEM_MR_MEMORY_FAILURE
+ffffffc008b7de08 d TRACE_SYSTEM_MR_MEMORY_HOTPLUG
+ffffffc008b7de10 d TRACE_SYSTEM_MR_SYSCALL
+ffffffc008b7de18 d TRACE_SYSTEM_MR_MEMPOLICY_MBIND
+ffffffc008b7de20 d TRACE_SYSTEM_MR_NUMA_MISPLACED
+ffffffc008b7de28 d TRACE_SYSTEM_MR_CONTIG_RANGE
+ffffffc008b7de30 d TRACE_SYSTEM_MR_LONGTERM_PIN
+ffffffc008b7de38 d TRACE_SYSTEM_MR_DEMOTION
+ffffffc008b7de40 d TRACE_SYSTEM_SCAN_FAIL
+ffffffc008b7de48 d TRACE_SYSTEM_SCAN_SUCCEED
+ffffffc008b7de50 d TRACE_SYSTEM_SCAN_PMD_NULL
+ffffffc008b7de58 d TRACE_SYSTEM_SCAN_PMD_NONE
+ffffffc008b7de60 d TRACE_SYSTEM_SCAN_PMD_MAPPED
+ffffffc008b7de68 d TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
+ffffffc008b7de70 d TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
+ffffffc008b7de78 d TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
+ffffffc008b7de80 d TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
+ffffffc008b7de88 d TRACE_SYSTEM_SCAN_PTE_UFFD_WP
+ffffffc008b7de90 d TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
+ffffffc008b7de98 d TRACE_SYSTEM_SCAN_PAGE_RO
+ffffffc008b7dea0 d TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
+ffffffc008b7dea8 d TRACE_SYSTEM_SCAN_PAGE_NULL
+ffffffc008b7deb0 d TRACE_SYSTEM_SCAN_SCAN_ABORT
+ffffffc008b7deb8 d TRACE_SYSTEM_SCAN_PAGE_COUNT
+ffffffc008b7dec0 d TRACE_SYSTEM_SCAN_PAGE_LRU
+ffffffc008b7dec8 d TRACE_SYSTEM_SCAN_PAGE_LOCK
+ffffffc008b7ded0 d TRACE_SYSTEM_SCAN_PAGE_ANON
+ffffffc008b7ded8 d TRACE_SYSTEM_SCAN_PAGE_COMPOUND
+ffffffc008b7dee0 d TRACE_SYSTEM_SCAN_ANY_PROCESS
+ffffffc008b7dee8 d TRACE_SYSTEM_SCAN_VMA_NULL
+ffffffc008b7def0 d TRACE_SYSTEM_SCAN_VMA_CHECK
+ffffffc008b7def8 d TRACE_SYSTEM_SCAN_ADDRESS_RANGE
+ffffffc008b7df00 d TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
+ffffffc008b7df08 d TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
+ffffffc008b7df10 d TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
+ffffffc008b7df18 d TRACE_SYSTEM_SCAN_TRUNCATED
+ffffffc008b7df20 d TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
+ffffffc008b7df28 d TRACE_SYSTEM_WB_REASON_BACKGROUND
+ffffffc008b7df30 d TRACE_SYSTEM_WB_REASON_VMSCAN
+ffffffc008b7df38 d TRACE_SYSTEM_WB_REASON_SYNC
+ffffffc008b7df40 d TRACE_SYSTEM_WB_REASON_PERIODIC
+ffffffc008b7df48 d TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
+ffffffc008b7df50 d TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
+ffffffc008b7df58 d TRACE_SYSTEM_WB_REASON_FORKER_THREAD
+ffffffc008b7df60 d TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
+ffffffc008b7df68 d TRACE_SYSTEM_BH_New
+ffffffc008b7df70 d TRACE_SYSTEM_BH_Mapped
+ffffffc008b7df78 d TRACE_SYSTEM_BH_Unwritten
+ffffffc008b7df80 d TRACE_SYSTEM_BH_Boundary
+ffffffc008b7df88 d TRACE_SYSTEM_ES_WRITTEN_B
+ffffffc008b7df90 d TRACE_SYSTEM_ES_UNWRITTEN_B
+ffffffc008b7df98 d TRACE_SYSTEM_ES_DELAYED_B
+ffffffc008b7dfa0 d TRACE_SYSTEM_ES_HOLE_B
+ffffffc008b7dfa8 d TRACE_SYSTEM_ES_REFERENCED_B
+ffffffc008b7dfb0 d TRACE_SYSTEM_EXT4_FC_REASON_XATTR
+ffffffc008b7dfb8 d TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
+ffffffc008b7dfc0 d TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
+ffffffc008b7dfc8 d TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
+ffffffc008b7dfd0 d TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
+ffffffc008b7dfd8 d TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
+ffffffc008b7dfe0 d TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
+ffffffc008b7dfe8 d TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
+ffffffc008b7dff0 d TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
+ffffffc008b7dff8 d TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
+ffffffc008b7e000 d TRACE_SYSTEM_EXT4_FC_REASON_MAX
+ffffffc008b7e008 d TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
+ffffffc008b7e010 d TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
+ffffffc008b7e018 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
+ffffffc008b7e020 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
+ffffffc008b7e028 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
+ffffffc008b7e030 d TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
+ffffffc008b7e038 d TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
+ffffffc008b7e040 d TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
+ffffffc008b7e048 d TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
+ffffffc008b7e050 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
+ffffffc008b7e058 d TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
+ffffffc008b7e060 d TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
+ffffffc008b7e068 d TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
+ffffffc008b7e070 d TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
+ffffffc008b7e078 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
+ffffffc008b7e080 d TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
+ffffffc008b7e088 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
+ffffffc008b7e090 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
+ffffffc008b7e098 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
+ffffffc008b7e0a0 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
+ffffffc008b7e0a8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
+ffffffc008b7e0b0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
+ffffffc008b7e0b8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
+ffffffc008b7e0c0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
+ffffffc008b7e0c8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
+ffffffc008b7e0d0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
+ffffffc008b7e0d8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
+ffffffc008b7e0e0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
+ffffffc008b7e0e8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
+ffffffc008b7e0f0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
+ffffffc008b7e0f8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
+ffffffc008b7e100 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
+ffffffc008b7e108 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
+ffffffc008b7e110 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
+ffffffc008b7e118 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
+ffffffc008b7e120 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
+ffffffc008b7e128 d TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
+ffffffc008b7e130 d TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
+ffffffc008b7e138 d TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
+ffffffc008b7e140 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
+ffffffc008b7e148 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
+ffffffc008b7e150 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
+ffffffc008b7e158 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
+ffffffc008b7e160 d TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
+ffffffc008b7e168 d TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
+ffffffc008b7e170 d TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
+ffffffc008b7e178 d TRACE_SYSTEM_SKB_DROP_REASON_XDP
+ffffffc008b7e180 d TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
+ffffffc008b7e188 d TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
+ffffffc008b7e190 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
+ffffffc008b7e198 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
+ffffffc008b7e1a0 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
+ffffffc008b7e1a8 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
+ffffffc008b7e1b0 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
+ffffffc008b7e1b8 d TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
+ffffffc008b7e1c0 d TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
+ffffffc008b7e1c8 d TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
+ffffffc008b7e1d0 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
+ffffffc008b7e1d8 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
+ffffffc008b7e1e0 d TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
+ffffffc008b7e1e8 d TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
+ffffffc008b7e1f0 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
+ffffffc008b7e1f8 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
+ffffffc008b7e200 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
+ffffffc008b7e208 d TRACE_SYSTEM_SKB_DROP_REASON_MAX
+ffffffc008b7e210 d TRACE_SYSTEM_2
+ffffffc008b7e218 d TRACE_SYSTEM_10
+ffffffc008b7e220 d TRACE_SYSTEM_IPPROTO_TCP
+ffffffc008b7e228 d TRACE_SYSTEM_IPPROTO_DCCP
+ffffffc008b7e230 d TRACE_SYSTEM_IPPROTO_SCTP
+ffffffc008b7e238 d TRACE_SYSTEM_IPPROTO_MPTCP
+ffffffc008b7e240 d TRACE_SYSTEM_TCP_ESTABLISHED
+ffffffc008b7e248 d TRACE_SYSTEM_TCP_SYN_SENT
+ffffffc008b7e250 d TRACE_SYSTEM_TCP_SYN_RECV
+ffffffc008b7e258 d TRACE_SYSTEM_TCP_FIN_WAIT1
+ffffffc008b7e260 d TRACE_SYSTEM_TCP_FIN_WAIT2
+ffffffc008b7e268 d TRACE_SYSTEM_TCP_TIME_WAIT
+ffffffc008b7e270 d TRACE_SYSTEM_TCP_CLOSE
+ffffffc008b7e278 d TRACE_SYSTEM_TCP_CLOSE_WAIT
+ffffffc008b7e280 d TRACE_SYSTEM_TCP_LAST_ACK
+ffffffc008b7e288 d TRACE_SYSTEM_TCP_LISTEN
+ffffffc008b7e290 d TRACE_SYSTEM_TCP_CLOSING
+ffffffc008b7e298 d TRACE_SYSTEM_TCP_NEW_SYN_RECV
+ffffffc008b7e2a0 d TRACE_SYSTEM_0
+ffffffc008b7e2a8 d TRACE_SYSTEM_1
+ffffffc008b7e2b0 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
+ffffffc008b7e2b8 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
+ffffffc008b7e2c0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
+ffffffc008b7e2c8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
+ffffffc008b7e2d0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
+ffffffc008b7e2d8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
+ffffffc008b7e2e0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
+ffffffc008b7e2e8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
+ffffffc008b7e2f0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
+ffffffc008b7e2f8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
+ffffffc008b7e300 D __clk_of_table
+ffffffc008b7e300 d __of_table_fixed_factor_clk
+ffffffc008b7e300 D __stop_ftrace_eval_maps
+ffffffc008b7e3c8 d __of_table_fixed_clk
+ffffffc008b7e490 d __clk_of_table_sentinel
+ffffffc008b7e558 d __of_table_dma
+ffffffc008b7e558 D __reservedmem_of_table
+ffffffc008b7e620 d __of_table_dma
+ffffffc008b7e6e8 d __rmem_of_table_sentinel
+ffffffc008b7e7b0 d __of_table_armv7_arch_timer
+ffffffc008b7e7b0 D __timer_of_table
+ffffffc008b7e878 d __of_table_armv8_arch_timer
+ffffffc008b7e940 d __of_table_armv7_arch_timer_mem
+ffffffc008b7ea08 d __timer_of_table_sentinel
+ffffffc008b7ead0 D __cpu_method_of_table
+ffffffc008b7eae0 D __dtb_end
+ffffffc008b7eae0 D __dtb_start
+ffffffc008b7eae0 D __irqchip_of_table
+ffffffc008b7eae0 d __of_table_gic_400
+ffffffc008b7eba8 d __of_table_arm11mp_gic
+ffffffc008b7ec70 d __of_table_arm1176jzf_dc_gic
+ffffffc008b7ed38 d __of_table_cortex_a15_gic
+ffffffc008b7ee00 d __of_table_cortex_a9_gic
+ffffffc008b7eec8 d __of_table_cortex_a7_gic
+ffffffc008b7ef90 d __of_table_msm_8660_qgic
+ffffffc008b7f058 d __of_table_msm_qgic2
+ffffffc008b7f120 d __of_table_pl390
+ffffffc008b7f1e8 d __of_table_gic_v3
+ffffffc008b7f2b0 d irqchip_of_match_end
+ffffffc008b7f378 d __UNIQUE_ID___earlycon_uart8250387
+ffffffc008b7f378 D __earlycon_table
+ffffffc008b7f410 d __UNIQUE_ID___earlycon_uart388
+ffffffc008b7f4a8 d __UNIQUE_ID___earlycon_ns16550389
+ffffffc008b7f540 d __UNIQUE_ID___earlycon_ns16550a390
+ffffffc008b7f5d8 d __UNIQUE_ID___earlycon_uart391
+ffffffc008b7f670 d __UNIQUE_ID___earlycon_uart392
+ffffffc008b7f708 D __earlycon_table_end
+ffffffc008b7f708 d __lsm_capability
+ffffffc008b7f708 D __start_lsm_info
+ffffffc008b7f738 d __lsm_selinux
+ffffffc008b7f768 d __lsm_integrity
+ffffffc008b7f798 D __end_early_lsm_info
+ffffffc008b7f798 D __end_lsm_info
+ffffffc008b7f798 D __kunit_suites_end
+ffffffc008b7f798 D __kunit_suites_start
+ffffffc008b7f798 D __start_early_lsm_info
+ffffffc008b7f7a0 d __setup_set_reset_devices
+ffffffc008b7f7a0 D __setup_start
+ffffffc008b7f7b8 d __setup_debug_kernel
+ffffffc008b7f7d0 d __setup_quiet_kernel
+ffffffc008b7f7e8 d __setup_loglevel
+ffffffc008b7f800 d __setup_warn_bootconfig
+ffffffc008b7f818 d __setup_init_setup
+ffffffc008b7f830 d __setup_rdinit_setup
+ffffffc008b7f848 d __setup_early_randomize_kstack_offset
+ffffffc008b7f860 d __setup_initcall_blacklist
+ffffffc008b7f878 d __setup_set_debug_rodata
+ffffffc008b7f890 d __setup_early_hostname
+ffffffc008b7f8a8 d __setup_load_ramdisk
+ffffffc008b7f8c0 d __setup_readonly
+ffffffc008b7f8d8 d __setup_readwrite
+ffffffc008b7f8f0 d __setup_root_dev_setup
+ffffffc008b7f908 d __setup_rootwait_setup
+ffffffc008b7f920 d __setup_root_data_setup
+ffffffc008b7f938 d __setup_fs_names_setup
+ffffffc008b7f950 d __setup_root_delay_setup
+ffffffc008b7f968 d __setup_prompt_ramdisk
+ffffffc008b7f980 d __setup_ramdisk_start_setup
+ffffffc008b7f998 d __setup_no_initrd
+ffffffc008b7f9b0 d __setup_early_initrdmem
+ffffffc008b7f9c8 d __setup_early_initrd
+ffffffc008b7f9e0 d __setup_retain_initrd_param
+ffffffc008b7f9f8 d __setup_keepinitrd_setup
+ffffffc008b7fa10 d __setup_initramfs_async_setup
+ffffffc008b7fa28 d __setup_lpj_setup
+ffffffc008b7fa40 d __setup_early_debug_disable
+ffffffc008b7fa58 d __setup_parse_32bit_el0_param
+ffffffc008b7fa70 d __setup_parse_kpti
+ffffffc008b7fa88 d __setup_parse_spectre_v2_param
+ffffffc008b7faa0 d __setup_parse_spectre_v4_param
+ffffffc008b7fab8 d __setup_parse_spectre_bhb_param
+ffffffc008b7fad0 d __setup_parse_no_stealacc
+ffffffc008b7fae8 d __setup_early_disable_dma32
+ffffffc008b7fb00 d __setup_early_mem
+ffffffc008b7fb18 d __setup_ioremap_guard_setup
+ffffffc008b7fb30 d __setup_enable_crash_mem_map
+ffffffc008b7fb48 d __setup_coredump_filter_setup
+ffffffc008b7fb60 d __setup_oops_setup
+ffffffc008b7fb78 d __setup_panic_on_taint_setup
+ffffffc008b7fb90 d __setup_mitigations_parse_cmdline
+ffffffc008b7fba8 d __setup_reserve_setup
+ffffffc008b7fbc0 d __setup_strict_iomem
+ffffffc008b7fbd8 d __setup_file_caps_disable
+ffffffc008b7fbf0 d __setup_setup_print_fatal_signals
+ffffffc008b7fc08 d __setup_reboot_setup
+ffffffc008b7fc20 d __setup_setup_schedstats
+ffffffc008b7fc38 d __setup_setup_resched_latency_warn_ms
+ffffffc008b7fc50 d __setup_setup_sched_thermal_decay_shift
+ffffffc008b7fc68 d __setup_cpu_idle_poll_setup
+ffffffc008b7fc80 d __setup_cpu_idle_nopoll_setup
+ffffffc008b7fc98 d __setup_sched_debug_setup
+ffffffc008b7fcb0 d __setup_setup_relax_domain_level
+ffffffc008b7fcc8 d __setup_setup_psi
+ffffffc008b7fce0 d __setup_housekeeping_nohz_full_setup
+ffffffc008b7fcf8 d __setup_housekeeping_isolcpus_setup
+ffffffc008b7fd10 d __setup_mem_sleep_default_setup
+ffffffc008b7fd28 d __setup_control_devkmsg
+ffffffc008b7fd40 d __setup_log_buf_len_setup
+ffffffc008b7fd58 d __setup_ignore_loglevel_setup
+ffffffc008b7fd70 d __setup_console_msg_format_setup
+ffffffc008b7fd88 d __setup_console_setup
+ffffffc008b7fda0 d __setup_console_suspend_disable
+ffffffc008b7fdb8 d __setup_keep_bootcon_setup
+ffffffc008b7fdd0 d __setup_irq_affinity_setup
+ffffffc008b7fde8 d __setup_setup_forced_irqthreads
+ffffffc008b7fe00 d __setup_noirqdebug_setup
+ffffffc008b7fe18 d __setup_irqfixup_setup
+ffffffc008b7fe30 d __setup_irqpoll_setup
+ffffffc008b7fe48 d __setup_rcu_nocb_setup
+ffffffc008b7fe60 d __setup_parse_rcu_nocb_poll
+ffffffc008b7fe78 d __setup_setup_io_tlb_npages
+ffffffc008b7fe90 d __setup_early_coherent_pool
+ffffffc008b7fea8 d __setup_profile_setup
+ffffffc008b7fec0 d __setup_setup_hrtimer_hres
+ffffffc008b7fed8 d __setup_ntp_tick_adj_setup
+ffffffc008b7fef0 d __setup_boot_override_clocksource
+ffffffc008b7ff08 d __setup_boot_override_clock
+ffffffc008b7ff20 d __setup_setup_tick_nohz
+ffffffc008b7ff38 d __setup_skew_tick
+ffffffc008b7ff50 d __setup_nosmp
+ffffffc008b7ff68 d __setup_nrcpus
+ffffffc008b7ff80 d __setup_maxcpus
+ffffffc008b7ff98 d __setup_parse_crashkernel_dummy
+ffffffc008b7ffb0 d __setup_audit_enable
+ffffffc008b7ffc8 d __setup_audit_backlog_limit_set
+ffffffc008b7ffe0 d __setup_nowatchdog_setup
+ffffffc008b7fff8 d __setup_nosoftlockup_setup
+ffffffc008b80010 d __setup_watchdog_thresh_setup
+ffffffc008b80028 d __setup_set_cmdline_ftrace
+ffffffc008b80040 d __setup_set_ftrace_dump_on_oops
+ffffffc008b80058 d __setup_stop_trace_on_warning
+ffffffc008b80070 d __setup_boot_alloc_snapshot
+ffffffc008b80088 d __setup_boot_snapshot
+ffffffc008b800a0 d __setup_set_trace_boot_options
+ffffffc008b800b8 d __setup_set_trace_boot_clock
+ffffffc008b800d0 d __setup_set_tracepoint_printk
+ffffffc008b800e8 d __setup_set_tracepoint_printk_stop
+ffffffc008b80100 d __setup_set_buf_size
+ffffffc008b80118 d __setup_set_tracing_thresh
+ffffffc008b80130 d __setup_setup_trace_event
+ffffffc008b80148 d __setup_set_mminit_loglevel
+ffffffc008b80160 d __setup_percpu_alloc_setup
+ffffffc008b80178 d __setup_slub_nomerge
+ffffffc008b80190 d __setup_slub_merge
+ffffffc008b801a8 d __setup_setup_slab_nomerge
+ffffffc008b801c0 d __setup_setup_slab_merge
+ffffffc008b801d8 d __setup_disable_randmaps
+ffffffc008b801f0 d __setup_cmdline_parse_stack_guard_gap
+ffffffc008b80208 d __setup_set_nohugeiomap
+ffffffc008b80220 d __setup_set_nohugevmalloc
+ffffffc008b80238 d __setup_early_init_on_alloc
+ffffffc008b80250 d __setup_early_init_on_free
+ffffffc008b80268 d __setup_cmdline_parse_kernelcore
+ffffffc008b80280 d __setup_cmdline_parse_movablecore
+ffffffc008b80298 d __setup_early_memblock
+ffffffc008b802b0 d __setup_setup_memhp_default_state
+ffffffc008b802c8 d __setup_cmdline_parse_movable_node
+ffffffc008b802e0 d __setup_setup_slub_debug
+ffffffc008b802f8 d __setup_setup_slub_min_order
+ffffffc008b80310 d __setup_setup_slub_max_order
+ffffffc008b80328 d __setup_setup_slub_min_objects
+ffffffc008b80340 d __setup_early_kasan_fault
+ffffffc008b80358 d __setup_kasan_set_multi_shot
+ffffffc008b80370 d __setup_early_kasan_flag
+ffffffc008b80388 d __setup_early_kasan_mode
+ffffffc008b803a0 d __setup_early_kasan_flag_vmalloc
+ffffffc008b803b8 d __setup_early_kasan_flag_page_alloc_sample
+ffffffc008b803d0 d __setup_early_kasan_flag_page_alloc_sample_order
+ffffffc008b803e8 d __setup_early_kasan_flag_stacktrace
+ffffffc008b80400 d __setup_early_kasan_flag_stack_ring_size
+ffffffc008b80418 d __setup_setup_transparent_hugepage
+ffffffc008b80430 d __setup_early_page_owner_param
+ffffffc008b80448 d __setup_early_ioremap_debug_setup
+ffffffc008b80460 d __setup_setup_early_page_ext
+ffffffc008b80478 d __setup_parse_hardened_usercopy
+ffffffc008b80490 d __setup_set_dhash_entries
+ffffffc008b804a8 d __setup_set_ihash_entries
+ffffffc008b804c0 d __setup_set_mhash_entries
+ffffffc008b804d8 d __setup_set_mphash_entries
+ffffffc008b804f0 d __setup_debugfs_kernel
+ffffffc008b80508 d __setup_choose_major_lsm
+ffffffc008b80520 d __setup_choose_lsm_order
+ffffffc008b80538 d __setup_enable_debug
+ffffffc008b80550 d __setup_enforcing_setup
+ffffffc008b80568 d __setup_checkreqprot_setup
+ffffffc008b80580 d __setup_integrity_audit_setup
+ffffffc008b80598 d __setup_elevator_setup
+ffffffc008b805b0 d __setup_force_gpt_fn
+ffffffc008b805c8 d __setup_dyndbg_setup
+ffffffc008b805e0 d __setup_is_stack_depot_disabled
+ffffffc008b805f8 d __setup_gicv2_force_probe_cfg
+ffffffc008b80610 d __setup_gicv3_nolpi_cfg
+ffffffc008b80628 d __setup_pcie_port_pm_setup
+ffffffc008b80640 d __setup_pci_setup
+ffffffc008b80658 d __setup_pcie_port_setup
+ffffffc008b80670 d __setup_pcie_aspm_disable
+ffffffc008b80688 d __setup_pcie_pme_setup
+ffffffc008b806a0 d __setup_clk_ignore_unused_setup
+ffffffc008b806b8 d __setup_sysrq_always_enabled_setup
+ffffffc008b806d0 d __setup_param_setup_earlycon
+ffffffc008b806e8 d __setup_parse_trust_cpu
+ffffffc008b80700 d __setup_parse_trust_bootloader
+ffffffc008b80718 d __setup_iommu_set_def_domain_type
+ffffffc008b80730 d __setup_iommu_dma_setup
+ffffffc008b80748 d __setup_iommu_dma_forcedac_setup
+ffffffc008b80760 d __setup_fw_devlink_setup
+ffffffc008b80778 d __setup_fw_devlink_strict_setup
+ffffffc008b80790 d __setup_deferred_probe_timeout_setup
+ffffffc008b807a8 d __setup_save_async_options
+ffffffc008b807c0 d __setup_ramdisk_size
+ffffffc008b807d8 d __setup_max_loop_setup
+ffffffc008b807f0 d __setup_early_evtstrm_cfg
+ffffffc008b80808 d __setup_parse_ras_param
+ffffffc008b80820 d __setup_fb_tunnels_only_for_init_net_sysctl_setup
+ffffffc008b80838 d __setup_set_thash_entries
+ffffffc008b80850 d __setup_set_tcpmhash_entries
+ffffffc008b80868 d __setup_set_uhash_entries
+ffffffc008b80880 d __setup_debug_boot_weak_hash_enable
+ffffffc008b80898 d __setup_no_hash_pointers_enable
+ffffffc008b808b0 d __initcall__kmod_ptrace__413_42_trace_init_flags_sys_enterearly
+ffffffc008b808b0 D __initcall_start
+ffffffc008b808b0 D __setup_end
+ffffffc008b808b4 d __initcall__kmod_ptrace__415_66_trace_init_flags_sys_exitearly
+ffffffc008b808b8 d __initcall__kmod_suspend__401_163_cpu_suspend_initearly
+ffffffc008b808bc d __initcall__kmod_mmu__478_1779_prevent_bootmem_remove_initearly
+ffffffc008b808c0 d __initcall__kmod_context__411_422_asids_initearly
+ffffffc008b808c4 d __initcall__kmod_softirq__436_1038_spawn_ksoftirqdearly
+ffffffc008b808c8 d __initcall__kmod_core__801_9781_migration_initearly
+ffffffc008b808cc d __initcall__kmod_srcutree__437_1730_srcu_bootup_announceearly
+ffffffc008b808d0 d __initcall__kmod_tree__637_4466_rcu_spawn_gp_kthreadearly
+ffffffc008b808d4 d __initcall__kmod_tree__656_135_check_cpu_stall_initearly
+ffffffc008b808d8 d __initcall__kmod_tree__747_1025_rcu_sysrq_initearly
+ffffffc008b808dc d __initcall__kmod_stop_machine__388_586_cpu_stop_initearly
+ffffffc008b808e0 d __initcall__kmod_trace_printk__403_400_init_trace_printkearly
+ffffffc008b808e4 d __initcall__kmod_trace_events__452_3801_event_trace_enable_againearly
+ffffffc008b808e8 d __initcall__kmod_irq_work__374_318_irq_work_init_threadsearly
+ffffffc008b808ec d __initcall__kmod_jump_label__352_745_jump_label_init_moduleearly
+ffffffc008b808f0 d __initcall__kmod_memory__437_164_init_zero_pfnearly
+ffffffc008b808f4 d __initcall__kmod_inode__414_140_init_fs_inode_sysctlsearly
+ffffffc008b808f8 d __initcall__kmod_locks__438_121_init_fs_locks_sysctlsearly
+ffffffc008b808fc d __initcall__kmod_dynamic_debug__627_1453_dynamic_debug_initearly
+ffffffc008b80900 d __initcall__kmod_irq_gic_v3_its_platform_msi__371_163_its_pmsi_initearly
+ffffffc008b80904 d __initcall__kmod_irq_gic_v3_its_pci_msi__398_202_its_pci_msi_initearly
+ffffffc008b80908 d __initcall__kmod_dummy_timer__369_37_dummy_timer_registerearly
+ffffffc008b8090c D __initcall0_start
+ffffffc008b8090c d __initcall__kmod_min_addr__375_53_init_mmap_min_addr0
+ffffffc008b80910 d __initcall__kmod_pci__502_6907_pci_realloc_setup_params0
+ffffffc008b80914 d __initcall__kmod_inet_fragment__664_216_inet_frag_wq_init0
+ffffffc008b80918 D __initcall1_start
+ffffffc008b80918 d __initcall__kmod_fpsimd__399_2058_fpsimd_init1
+ffffffc008b8091c d __initcall__kmod_process__408_746_tagged_addr_init1
+ffffffc008b80920 d __initcall__kmod_cpufeature__417_3468_enable_mrs_emulation1
+ffffffc008b80924 d __initcall__kmod_topology__341_252_init_amu_fie1
+ffffffc008b80928 d __initcall__kmod_mmu__439_738_map_entry_trampoline1
+ffffffc008b8092c d __initcall__kmod_cpu__443_1624_alloc_frozen_cpus1
+ffffffc008b80930 d __initcall__kmod_cpu__445_1671_cpu_hotplug_pm_sync_init1
+ffffffc008b80934 d __initcall__kmod_workqueue__511_5698_wq_sysfs_init1
+ffffffc008b80938 d __initcall__kmod_ksysfs__393_273_ksysfs_init1
+ffffffc008b8093c d __initcall__kmod_main__424_940_pm_init1
+ffffffc008b80940 d __initcall__kmod_update__488_240_rcu_set_runtime_mode1
+ffffffc008b80944 d __initcall__kmod_jiffies__362_69_init_jiffies_clocksource1
+ffffffc008b80948 d __initcall__kmod_core__422_1153_futex_init1
+ffffffc008b8094c d __initcall__kmod_trace_eprobe__405_1081_trace_events_eprobe_init_early1
+ffffffc008b80950 d __initcall__kmod_trace_events_synth__416_2249_trace_events_synth_init_early1
+ffffffc008b80954 d __initcall__kmod_cpu_pm__337_213_cpu_pm_init1
+ffffffc008b80958 d __initcall__kmod_fsnotify__402_601_fsnotify_init1
+ffffffc008b8095c d __initcall__kmod_locks__481_2939_filelock_init1
+ffffffc008b80960 d __initcall__kmod_binfmt_misc__415_834_init_misc_binfmt1
+ffffffc008b80964 d __initcall__kmod_binfmt_script__331_156_init_script_binfmt1
+ffffffc008b80968 d __initcall__kmod_binfmt_elf__437_2345_init_elf_binfmt1
+ffffffc008b8096c d __initcall__kmod_debugfs__423_906_debugfs_init1
+ffffffc008b80970 d __initcall__kmod_tracefs__394_645_tracefs_init1
+ffffffc008b80974 d __initcall__kmod_inode__413_350_securityfs_init1
+ffffffc008b80978 d __initcall__kmod_virtio__398_568_virtio_init1
+ffffffc008b8097c d __initcall__kmod_iommu__461_2590_iommu_init1
+ffffffc008b80980 d __initcall__kmod_component__339_118_component_debug_init1
+ffffffc008b80984 d __initcall__kmod_soc__341_192_soc_bus_register1
+ffffffc008b80988 d __initcall__kmod_arch_topology__427_479_free_raw_capacity1
+ffffffc008b8098c d __initcall__kmod_socket__726_3209_sock_init1
+ffffffc008b80990 d __initcall__kmod_sock__908_3777_net_inuse_init1
+ffffffc008b80994 d __initcall__kmod_net_namespace__591_385_net_defaults_init1
+ffffffc008b80998 d __initcall__kmod_flow_dissector__781_1961_init_default_flow_dissectors1
+ffffffc008b8099c d __initcall__kmod_af_netlink__751_2962_netlink_proto_init1
+ffffffc008b809a0 d __initcall__kmod_genetlink__592_1498_genl_init1
+ffffffc008b809a4 D __initcall2_start
+ffffffc008b809a4 d __initcall__kmod_debug_monitors__402_139_debug_monitors_init2
+ffffffc008b809a8 d __initcall__kmod_irqdesc__371_334_irq_sysfs_init2
+ffffffc008b809ac d __initcall__kmod_pool__396_222_dma_atomic_pool_init2
+ffffffc008b809b0 d __initcall__kmod_audit__607_1712_audit_init2
+ffffffc008b809b4 d __initcall__kmod_tracepoint__341_140_release_early_probes2
+ffffffc008b809b8 d __initcall__kmod_backing_dev__428_232_bdi_class_init2
+ffffffc008b809bc d __initcall__kmod_mm_init__429_206_mm_sysfs_init2
+ffffffc008b809c0 d __initcall__kmod_page_alloc__620_8978_init_per_zone_wmark_min2
+ffffffc008b809c4 d __initcall__kmod_probe__391_109_pcibus_class_init2
+ffffffc008b809c8 d __initcall__kmod_pci_driver__425_1726_pci_driver_init2
+ffffffc008b809cc d __initcall__kmod_bus__415_462_amba_init2
+ffffffc008b809d0 d __initcall__kmod_tty_io__434_3518_tty_class_init2
+ffffffc008b809d4 d __initcall__kmod_vt__431_4325_vtconsole_class_init2
+ffffffc008b809d8 d __initcall__kmod_iommu_sysfs__384_47_iommu_dev_init2
+ffffffc008b809dc d __initcall__kmod_core__499_700_devlink_class_init2
+ffffffc008b809e0 d __initcall__kmod_swnode__358_1167_software_node_init2
+ffffffc008b809e4 d __initcall__kmod_wakeup__454_1240_wakeup_sources_debugfs_init2
+ffffffc008b809e8 d __initcall__kmod_wakeup_stats__339_217_wakeup_sources_sysfs_init2
+ffffffc008b809ec d __initcall__kmod_regmap__496_3513_regmap_initcall2
+ffffffc008b809f0 d __initcall__kmod_syscon__375_329_syscon_init2
+ffffffc008b809f4 d __initcall__kmod_kobject_uevent__582_814_kobject_uevent_init2
+ffffffc008b809f8 D __initcall3_start
+ffffffc008b809f8 d __initcall__kmod_setup__406_285_reserve_memblock_reserved_regions3
+ffffffc008b809fc d __initcall__kmod_vdso__403_461_vdso_init3
+ffffffc008b80a00 d __initcall__kmod_hw_breakpoint__398_1018_arch_hw_breakpoint_init3
+ffffffc008b80a04 d __initcall__kmod_mmap__375_78_adjust_protection_map3
+ffffffc008b80a08 d __initcall__kmod_context__409_399_asids_update_limit3
+ffffffc008b80a0c d __initcall__kmod_cryptomgr__478_257_cryptomgr_init3
+ffffffc008b80a10 d __initcall__kmod_dma_iommu__412_1712_iommu_dma_init3
+ffffffc008b80a14 d __initcall__kmod_platform__419_604_of_platform_default_populate_init3s
+ffffffc008b80a18 D __initcall4_start
+ffffffc008b80a18 d __initcall__kmod_setup__408_412_topology_init4
+ffffffc008b80a1c d __initcall__kmod_kaslr__298_93_kaslr_init4
+ffffffc008b80a20 d __initcall__kmod_mte__438_576_register_mte_tcf_preferred_sysctl4
+ffffffc008b80a24 d __initcall__kmod_user__374_257_uid_cache_init4
+ffffffc008b80a28 d __initcall__kmod_params__432_974_param_sysfs_init4
+ffffffc008b80a2c d __initcall__kmod_ucount__309_376_user_namespace_sysctl_init4
+ffffffc008b80a30 d __initcall__kmod_build_utility__449_231_proc_schedstat_init4
+ffffffc008b80a34 d __initcall__kmod_poweroff__207_45_pm_sysrq_init4
+ffffffc008b80a38 d __initcall__kmod_profile__420_553_create_proc_profile4
+ffffffc008b80a3c d __initcall__kmod_crash_core__384_514_crash_save_vmcoreinfo_init4
+ffffffc008b80a40 d __initcall__kmod_kexec_core__432_1128_crash_notes_memory_init4
+ffffffc008b80a44 d __initcall__kmod_hung_task__420_406_hung_task_init4
+ffffffc008b80a48 d __initcall__kmod_trace__466_9737_trace_eval_init4
+ffffffc008b80a4c d __initcall__kmod_oom_kill__455_741_oom_init4
+ffffffc008b80a50 d __initcall__kmod_backing_dev__430_242_default_bdi_init4
+ffffffc008b80a54 d __initcall__kmod_percpu__470_3463_percpu_enable_async4
+ffffffc008b80a58 d __initcall__kmod_compaction__522_3091_kcompactd_init4
+ffffffc008b80a5c d __initcall__kmod_mmap__469_3756_init_user_reserve4
+ffffffc008b80a60 d __initcall__kmod_mmap__473_3777_init_admin_reserve4
+ffffffc008b80a64 d __initcall__kmod_mmap__475_3847_init_reserve_notifier4
+ffffffc008b80a68 d __initcall__kmod_swap_state__448_909_swap_init_sysfs4
+ffffffc008b80a6c d __initcall__kmod_swapfile__494_3704_swapfile_init4
+ffffffc008b80a70 d __initcall__kmod_huge_memory__455_521_hugepage_init4
+ffffffc008b80a74 d __initcall__kmod_seqiv__406_183_seqiv_module_init4
+ffffffc008b80a78 d __initcall__kmod_echainiv__406_160_echainiv_module_init4
+ffffffc008b80a7c d __initcall__kmod_hmac__406_258_hmac_module_init4
+ffffffc008b80a80 d __initcall__kmod_xcbc__331_270_crypto_xcbc_module_init4
+ffffffc008b80a84 d __initcall__kmod_crypto_null__392_221_crypto_null_mod_init4
+ffffffc008b80a88 d __initcall__kmod_md5__332_245_md5_mod_init4
+ffffffc008b80a8c d __initcall__kmod_sha1_generic__387_89_sha1_generic_mod_init4
+ffffffc008b80a90 d __initcall__kmod_sha256_generic__388_101_sha256_generic_mod_init4
+ffffffc008b80a94 d __initcall__kmod_sha512_generic__388_218_sha512_generic_mod_init4
+ffffffc008b80a98 d __initcall__kmod_blake2b_generic__332_174_blake2b_mod_init4
+ffffffc008b80a9c d __initcall__kmod_cbc__331_218_crypto_cbc_module_init4
+ffffffc008b80aa0 d __initcall__kmod_ctr__333_355_crypto_ctr_module_init4
+ffffffc008b80aa4 d __initcall__kmod_xctr__331_185_crypto_xctr_module_init4
+ffffffc008b80aa8 d __initcall__kmod_hctr2__411_575_hctr2_module_init4
+ffffffc008b80aac d __initcall__kmod_adiantum__415_613_adiantum_module_init4
+ffffffc008b80ab0 d __initcall__kmod_nhpoly1305__346_248_nhpoly1305_mod_init4
+ffffffc008b80ab4 d __initcall__kmod_gcm__408_1159_crypto_gcm_module_init4
+ffffffc008b80ab8 d __initcall__kmod_chacha20poly1305__408_671_chacha20poly1305_module_init4
+ffffffc008b80abc d __initcall__kmod_des_generic__331_125_des_generic_mod_init4
+ffffffc008b80ac0 d __initcall__kmod_aes_generic__334_1314_aes_init4
+ffffffc008b80ac4 d __initcall__kmod_chacha_generic__331_128_chacha_generic_mod_init4
+ffffffc008b80ac8 d __initcall__kmod_poly1305_generic__333_142_poly1305_mod_init4
+ffffffc008b80acc d __initcall__kmod_deflate__388_334_deflate_mod_init4
+ffffffc008b80ad0 d __initcall__kmod_crc32c_generic__331_161_crc32c_mod_init4
+ffffffc008b80ad4 d __initcall__kmod_authenc__483_464_crypto_authenc_module_init4
+ffffffc008b80ad8 d __initcall__kmod_authencesn__481_479_crypto_authenc_esn_module_init4
+ffffffc008b80adc d __initcall__kmod_lzo__384_158_lzo_mod_init4
+ffffffc008b80ae0 d __initcall__kmod_lzo_rle__384_158_lzorle_mod_init4
+ffffffc008b80ae4 d __initcall__kmod_lz4__358_155_lz4_mod_init4
+ffffffc008b80ae8 d __initcall__kmod_ansi_cprng__337_470_prng_mod_init4
+ffffffc008b80aec d __initcall__kmod_drbg__400_2148_drbg_init4
+ffffffc008b80af0 d __initcall__kmod_ghash_generic__334_178_ghash_mod_init4
+ffffffc008b80af4 d __initcall__kmod_polyval_generic__336_239_polyval_mod_init4
+ffffffc008b80af8 d __initcall__kmod_zstd__388_253_zstd_mod_init4
+ffffffc008b80afc d __initcall__kmod_essiv__407_646_essiv_module_init4
+ffffffc008b80b00 d __initcall__kmod_bio__495_1762_init_bio4
+ffffffc008b80b04 d __initcall__kmod_blk_ioc__451_457_blk_ioc_init4
+ffffffc008b80b08 d __initcall__kmod_blk_mq__518_4953_blk_mq_init4
+ffffffc008b80b0c d __initcall__kmod_genhd__448_923_genhd_device_init4
+ffffffc008b80b10 d __initcall__kmod_blk_crypto__438_99_bio_crypt_ctx_init4
+ffffffc008b80b14 d __initcall__kmod_blk_crypto_sysfs__436_173_blk_crypto_sysfs_init4
+ffffffc008b80b18 d __initcall__kmod_io_wq__467_1417_io_wq_init4
+ffffffc008b80b1c d __initcall__kmod_sg_pool__377_180_sg_pool_init4
+ffffffc008b80b20 d __initcall__kmod_slot__391_381_pci_slot_init4
+ffffffc008b80b24 d __initcall__kmod_misc__386_293_misc_init4
+ffffffc008b80b28 d __initcall__kmod_iommu__416_195_iommu_subsys_init4
+ffffffc008b80b2c d __initcall__kmod_arch_topology__422_250_register_cpu_capacity_sysctl4
+ffffffc008b80b30 d __initcall__kmod_dma_buf__415_1667_dma_buf_init4
+ffffffc008b80b34 d __initcall__kmod_dma_heap__417_470_dma_heap_init4
+ffffffc008b80b38 d __initcall__kmod_serio__384_1048_serio_init4
+ffffffc008b80b3c d __initcall__kmod_input_core__432_2695_input_init4
+ffffffc008b80b40 d __initcall__kmod_rtc_core__372_487_rtc_init4
+ffffffc008b80b44 d __initcall__kmod_power_supply__373_1560_power_supply_class_init4
+ffffffc008b80b48 d __initcall__kmod_edac_core__389_163_edac_init4
+ffffffc008b80b4c d __initcall__kmod_scmi_module__521_2672_scmi_driver_init4
+ffffffc008b80b50 d __initcall__kmod_arm_pmu__393_977_arm_pmu_hp_init4
+ffffffc008b80b54 d __initcall__kmod_ras__416_38_ras_init4
+ffffffc008b80b58 d __initcall__kmod_sock__915_4094_proto_init4
+ffffffc008b80b5c d __initcall__kmod_dev__1135_11438_net_dev_init4
+ffffffc008b80b60 d __initcall__kmod_neighbour__708_3906_neigh_init4
+ffffffc008b80b64 d __initcall__kmod_fib_notifier__491_199_fib_notifier_init4
+ffffffc008b80b68 d __initcall__kmod_fib_rules__712_1319_fib_rules_init4
+ffffffc008b80b6c d __initcall__kmod_ethtool_nl__582_1077_ethnl_init4
+ffffffc008b80b70 d __initcall__kmod_nexthop__765_3789_nexthop_init4
+ffffffc008b80b74 d __initcall__kmod_vsprintf__631_777_vsprintf_init_hashval4
+ffffffc008b80b78 d __initcall__kmod_cpufeature__415_3360_init_32bit_el0_mask4s
+ffffffc008b80b7c d __initcall__kmod_vgaarb__396_1564_vga_arb_device_init4s
+ffffffc008b80b80 d __initcall__kmod_watchdog__434_479_watchdog_init4s
+ffffffc008b80b84 D __initcall5_start
+ffffffc008b80b84 d __initcall__kmod_debug_monitors__400_63_create_debug_debugfs_entry5
+ffffffc008b80b88 d __initcall__kmod_resource__413_2015_iomem_init_inode5
+ffffffc008b80b8c d __initcall__kmod_clocksource__372_1057_clocksource_done_booting5
+ffffffc008b80b90 d __initcall__kmod_trace__470_9882_tracer_init_tracefs5
+ffffffc008b80b94 d __initcall__kmod_trace_printk__401_393_init_trace_printk_function_export5
+ffffffc008b80b98 d __initcall__kmod_trace_events_synth__418_2273_trace_events_synth_init5
+ffffffc008b80b9c d __initcall__kmod_trace_dynevent__397_271_init_dynamic_event5
+ffffffc008b80ba0 d __initcall__kmod_trace_uprobe__627_1667_init_uprobe_trace5
+ffffffc008b80ba4 d __initcall__kmod_secretmem__418_293_secretmem_init5
+ffffffc008b80ba8 d __initcall__kmod_file_table__421_130_init_fs_stat_sysctls5
+ffffffc008b80bac d __initcall__kmod_exec__463_2157_init_fs_exec_sysctls5
+ffffffc008b80bb0 d __initcall__kmod_pipe__435_1511_init_pipe_fs5
+ffffffc008b80bb4 d __initcall__kmod_namei__450_1076_init_fs_namei_sysctls5
+ffffffc008b80bb8 d __initcall__kmod_dcache__389_202_init_fs_dcache_sysctls5
+ffffffc008b80bbc d __initcall__kmod_namespace__455_4719_init_fs_namespace_sysctls5
+ffffffc008b80bc0 d __initcall__kmod_inotify_user__439_891_inotify_user_setup5
+ffffffc008b80bc4 d __initcall__kmod_eventpoll__668_2419_eventpoll_init5
+ffffffc008b80bc8 d __initcall__kmod_anon_inodes__387_270_anon_inode_init5
+ffffffc008b80bcc d __initcall__kmod_locks__479_2916_proc_locks_init5
+ffffffc008b80bd0 d __initcall__kmod_coredump__434_985_init_fs_coredump_sysctls5
+ffffffc008b80bd4 d __initcall__kmod_iomap__465_1553_iomap_init5
+ffffffc008b80bd8 d __initcall__kmod_proc__322_19_proc_cmdline_init5
+ffffffc008b80bdc d __initcall__kmod_proc__339_98_proc_consoles_init5
+ffffffc008b80be0 d __initcall__kmod_proc__339_28_proc_cpuinfo_init5
+ffffffc008b80be4 d __initcall__kmod_proc__424_64_proc_devices_init5
+ffffffc008b80be8 d __initcall__kmod_proc__355_42_proc_interrupts_init5
+ffffffc008b80bec d __initcall__kmod_proc__377_37_proc_loadavg_init5
+ffffffc008b80bf0 d __initcall__kmod_proc__413_177_proc_meminfo_init5
+ffffffc008b80bf4 d __initcall__kmod_proc__358_242_proc_stat_init5
+ffffffc008b80bf8 d __initcall__kmod_proc__355_49_proc_uptime_init5
+ffffffc008b80bfc d __initcall__kmod_proc__322_27_proc_version_init5
+ffffffc008b80c00 d __initcall__kmod_proc__355_37_proc_softirqs_init5
+ffffffc008b80c04 d __initcall__kmod_proc__352_63_proc_kmsg_init5
+ffffffc008b80c08 d __initcall__kmod_proc__418_342_proc_page_init5
+ffffffc008b80c0c d __initcall__kmod_proc__322_96_proc_boot_config_init5
+ffffffc008b80c10 d __initcall__kmod_ramfs__409_299_init_ramfs_fs5
+ffffffc008b80c14 d __initcall__kmod_dynamic_debug__629_1456_dynamic_debug_init_control5
+ffffffc008b80c18 d __initcall__kmod_mem__419_787_chr_dev_init5
+ffffffc008b80c1c d __initcall__kmod_rng_core__348_718_hwrng_modinit5
+ffffffc008b80c20 d __initcall__kmod_firmware_class__429_1659_firmware_class_init5
+ffffffc008b80c24 d __initcall__kmod_sysctl_net_core__687_687_sysctl_core_init5
+ffffffc008b80c28 d __initcall__kmod_eth__677_492_eth_offload_init5
+ffffffc008b80c2c d __initcall__kmod_af_inet__835_1923_ipv4_offload_init5
+ffffffc008b80c30 d __initcall__kmod_af_inet__838_2056_inet_init5
+ffffffc008b80c34 d __initcall__kmod_unix__659_3782_af_unix_init5
+ffffffc008b80c38 d __initcall__kmod_ip6_offload__719_488_ipv6_offload_init5
+ffffffc008b80c3c d __initcall__kmod_quirks__417_195_pci_apply_final_quirks5s
+ffffffc008b80c40 d __initcall__kmod_initramfs__400_762_populate_rootfsrootfs
+ffffffc008b80c40 D __initcallrootfs_start
+ffffffc008b80c44 D __initcall6_start
+ffffffc008b80c44 d __initcall__kmod_setup__410_446_register_arm64_panic_block6
+ffffffc008b80c48 d __initcall__kmod_cpuinfo__341_359_cpuinfo_regs_init6
+ffffffc008b80c4c d __initcall__kmod_cpufeature__411_1486_aarch32_el0_sysfs_init6
+ffffffc008b80c50 d __initcall__kmod_perf_event__422_1398_armv8_pmu_driver_init6
+ffffffc008b80c54 d __initcall__kmod_uprobes__406_208_arch_init_uprobes6
+ffffffc008b80c58 d __initcall__kmod_exec_domain__396_35_proc_execdomains_init6
+ffffffc008b80c5c d __initcall__kmod_panic__411_746_register_warn_debugfs6
+ffffffc008b80c60 d __initcall__kmod_cpu__453_2600_cpuhp_sysfs_init6
+ffffffc008b80c64 d __initcall__kmod_resource__386_149_ioresources_init6
+ffffffc008b80c68 d __initcall__kmod_build_utility__581_1575_psi_proc_init6
+ffffffc008b80c6c d __initcall__kmod_pm__412_248_irq_pm_init_ops6
+ffffffc008b80c70 d __initcall__kmod_procfs__384_146_proc_modules_init6
+ffffffc008b80c74 d __initcall__kmod_timer__461_276_timer_sysctl_init6
+ffffffc008b80c78 d __initcall__kmod_timekeeping__412_1928_timekeeping_init_ops6
+ffffffc008b80c7c d __initcall__kmod_clocksource__382_1458_init_clocksource_sysfs6
+ffffffc008b80c80 d __initcall__kmod_timer_list__384_359_init_timer_list_procfs6
+ffffffc008b80c84 d __initcall__kmod_alarmtimer__420_964_alarmtimer_init6
+ffffffc008b80c88 d __initcall__kmod_posix_timers__400_280_init_posix_timers6
+ffffffc008b80c8c d __initcall__kmod_clockevents__377_777_clockevents_init_sysfs6
+ffffffc008b80c90 d __initcall__kmod_sched_clock__371_299_sched_clock_syscore_init6
+ffffffc008b80c94 d __initcall__kmod_kallsyms__519_961_kallsyms_init6
+ffffffc008b80c98 d __initcall__kmod_audit_watch__437_503_audit_watch_init6
+ffffffc008b80c9c d __initcall__kmod_audit_fsnotify__437_193_audit_fsnotify_init6
+ffffffc008b80ca0 d __initcall__kmod_audit_tree__442_1086_audit_tree_init6
+ffffffc008b80ca4 d __initcall__kmod_seccomp__530_2406_seccomp_sysctl_init6
+ffffffc008b80ca8 d __initcall__kmod_utsname_sysctl__256_154_utsname_sysctl_init6
+ffffffc008b80cac d __initcall__kmod_tracepoint__360_737_init_tracepoints6
+ffffffc008b80cb0 d __initcall__kmod_core__698_13622_perf_event_sysfs_init6
+ffffffc008b80cb4 d __initcall__kmod_vmscan__666_7870_kswapd_init6
+ffffffc008b80cb8 d __initcall__kmod_vmstat__451_2254_extfrag_debug_init6
+ffffffc008b80cbc d __initcall__kmod_mm_init__427_194_mm_compute_batch_init6
+ffffffc008b80cc0 d __initcall__kmod_slab_common__472_1328_slab_proc_init6
+ffffffc008b80cc4 d __initcall__kmod_workingset__446_750_workingset_init6
+ffffffc008b80cc8 d __initcall__kmod_vmalloc__481_4205_proc_vmalloc_init6
+ffffffc008b80ccc d __initcall__kmod_memblock__454_2177_memblock_init_debugfs6
+ffffffc008b80cd0 d __initcall__kmod_swapfile__465_2701_procswaps_init6
+ffffffc008b80cd4 d __initcall__kmod_slub__460_6078_slab_sysfs_init6
+ffffffc008b80cd8 d __initcall__kmod_slub__463_6293_slab_debugfs_init6
+ffffffc008b80cdc d __initcall__kmod_zsmalloc__445_2366_zs_init6
+ffffffc008b80ce0 d __initcall__kmod_fcntl__424_1041_fcntl_init6
+ffffffc008b80ce4 d __initcall__kmod_filesystems__398_258_proc_filesystems_init6
+ffffffc008b80ce8 d __initcall__kmod_fs_writeback__532_2339_start_dirtytime_writeback6
+ffffffc008b80cec d __initcall__kmod_direct_io__429_1346_dio_init6
+ffffffc008b80cf0 d __initcall__kmod_userfaultfd__454_2191_userfaultfd_init6
+ffffffc008b80cf4 d __initcall__kmod_aio__433_307_aio_setup6
+ffffffc008b80cf8 d __initcall__kmod_mbcache__341_440_mbcache_init6
+ffffffc008b80cfc d __initcall__kmod_devpts__393_637_init_devpts_fs6
+ffffffc008b80d00 d __initcall__kmod_ext4__842_7310_ext4_init_fs6
+ffffffc008b80d04 d __initcall__kmod_jbd2__554_3198_journal_init6
+ffffffc008b80d08 d __initcall__kmod_fuse__569_2237_fuse_init6
+ffffffc008b80d0c d __initcall__kmod_erofs__482_1121_erofs_module_init6
+ffffffc008b80d10 d __initcall__kmod_selinux__637_2251_init_sel_fs6
+ffffffc008b80d14 d __initcall__kmod_selinux__450_121_selnl_init6
+ffffffc008b80d18 d __initcall__kmod_selinux__636_279_sel_netif_init6
+ffffffc008b80d1c d __initcall__kmod_selinux__637_305_sel_netnode_init6
+ffffffc008b80d20 d __initcall__kmod_selinux__637_238_sel_netport_init6
+ffffffc008b80d24 d __initcall__kmod_selinux__712_3831_aurule_init6
+ffffffc008b80d28 d __initcall__kmod_jitterentropy_rng__331_211_jent_mod_init6
+ffffffc008b80d2c d __initcall__kmod_fops__450_712_blkdev_init6
+ffffffc008b80d30 d __initcall__kmod_genhd__450_1335_proc_genhd_init6
+ffffffc008b80d34 d __initcall__kmod_mq_deadline__445_1242_deadline_init6
+ffffffc008b80d38 d __initcall__kmod_kyber_iosched__465_1051_kyber_init6
+ffffffc008b80d3c d __initcall__kmod_bfq__517_7527_bfq_init6
+ffffffc008b80d40 d __initcall__kmod_io_uring__832_4146_io_uring_init6
+ffffffc008b80d44 d __initcall__kmod_libblake2s__333_69_blake2s_mod_init6
+ffffffc008b80d48 d __initcall__kmod_libcrc32c__333_74_libcrc32c_mod_init6
+ffffffc008b80d4c d __initcall__kmod_percpu_counter__349_257_percpu_counter_startup6
+ffffffc008b80d50 d __initcall__kmod_audit__383_89_audit_classes_init6
+ffffffc008b80d54 d __initcall__kmod_simple_pm_bus__340_91_simple_pm_bus_driver_init6
+ffffffc008b80d58 d __initcall__kmod_pcieportdrv__389_252_pcie_portdrv_init6
+ffffffc008b80d5c d __initcall__kmod_proc__398_472_pci_proc_init6
+ffffffc008b80d60 d __initcall__kmod_pci_epc_core__414_849_pci_epc_init6
+ffffffc008b80d64 d __initcall__kmod_pci_epf_core__399_561_pci_epf_init6
+ffffffc008b80d68 d __initcall__kmod_pci_host_generic__388_87_gen_pci_driver_init6
+ffffffc008b80d6c d __initcall__kmod_pcie_designware_plat__388_187_dw_plat_pcie_driver_init6
+ffffffc008b80d70 d __initcall__kmod_pcie_kirin__416_829_kirin_pcie_driver_init6
+ffffffc008b80d74 d __initcall__kmod_clk_fixed_factor__348_341_of_fixed_factor_clk_driver_init6
+ffffffc008b80d78 d __initcall__kmod_clk_fixed_rate__374_239_of_fixed_clk_driver_init6
+ffffffc008b80d7c d __initcall__kmod_clk_gpio__339_249_gpio_clk_driver_init6
+ffffffc008b80d80 d __initcall__kmod_virtio_pci__414_647_virtio_pci_driver_init6
+ffffffc008b80d84 d __initcall__kmod_virtio_balloon__424_1128_virtio_balloon_driver_init6
+ffffffc008b80d88 d __initcall__kmod_n_null__384_63_n_null_init6
+ffffffc008b80d8c d __initcall__kmod_pty__391_947_pty_init6
+ffffffc008b80d90 d __initcall__kmod_sysrq__424_1202_sysrq_init6
+ffffffc008b80d94 d __initcall__kmod_8250__398_1249_serial8250_init6
+ffffffc008b80d98 d __initcall__kmod_8250_pericom__395_211_pericom8250_pci_driver_init6
+ffffffc008b80d9c d __initcall__kmod_8250_of__390_353_of_platform_serial_driver_init6
+ffffffc008b80da0 d __initcall__kmod_ttynull__384_106_ttynull_init6
+ffffffc008b80da4 d __initcall__kmod_random__488_1642_random_sysctls_init6
+ffffffc008b80da8 d __initcall__kmod_virtio_console__423_2293_virtio_console_init6
+ffffffc008b80dac d __initcall__kmod_cctrng__396_709_cctrng_mod_init6
+ffffffc008b80db0 d __initcall__kmod_arm_smccc_trng__347_119_smccc_trng_driver_init6
+ffffffc008b80db4 d __initcall__kmod_cn10k_rng__388_181_cn10k_rng_driver_init6
+ffffffc008b80db8 d __initcall__kmod_topology__384_194_topology_sysfs_init6
+ffffffc008b80dbc d __initcall__kmod_cacheinfo__339_723_cacheinfo_sysfs_init6
+ffffffc008b80dc0 d __initcall__kmod_brd__451_528_brd_init6
+ffffffc008b80dc4 d __initcall__kmod_loop__461_2273_loop_init6
+ffffffc008b80dc8 d __initcall__kmod_virtio_blk__460_1307_virtio_blk_init6
+ffffffc008b80dcc d __initcall__kmod_zram__442_2162_zram_init6
+ffffffc008b80dd0 d __initcall__kmod_open_dice__384_204_open_dice_init6
+ffffffc008b80dd4 d __initcall__kmod_vcpu_stall_detector__369_219_vcpu_stall_detect_driver_init6
+ffffffc008b80dd8 d __initcall__kmod_loopback__617_280_blackhole_netdev_init6
+ffffffc008b80ddc d __initcall__kmod_uio__391_1086_uio_init6
+ffffffc008b80de0 d __initcall__kmod_serport__392_308_serport_init6
+ffffffc008b80de4 d __initcall__kmod_rtc_pl030__411_170_pl030_driver_init6
+ffffffc008b80de8 d __initcall__kmod_rtc_pl031__411_466_pl031_driver_init6
+ffffffc008b80dec d __initcall__kmod_syscon_reboot__369_100_syscon_reboot_driver_init6
+ffffffc008b80df0 d __initcall__kmod_dm_mod__479_3395_dm_init6
+ffffffc008b80df4 d __initcall__kmod_dm_bufio__463_2162_dm_bufio_init6
+ffffffc008b80df8 d __initcall__kmod_dm_crypt__542_3674_dm_crypt_init6
+ffffffc008b80dfc d __initcall__kmod_dm_verity__437_1515_dm_verity_init6
+ffffffc008b80e00 d __initcall__kmod_dm_user__442_1282_dm_user_init6
+ffffffc008b80e04 d __initcall__kmod_smccc__341_61_smccc_devices_init6
+ffffffc008b80e08 d __initcall__kmod_soc_id__354_106_smccc_soc_init6
+ffffffc008b80e0c d __initcall__kmod_sock_diag__646_340_sock_diag_init6
+ffffffc008b80e10 d __initcall__kmod_gre_offload__698_286_gre_offload_init6
+ffffffc008b80e14 d __initcall__kmod_sysctl_net_ipv4__709_1470_sysctl_ipv4_init6
+ffffffc008b80e18 d __initcall__kmod_ipip__700_658_ipip_init6
+ffffffc008b80e1c d __initcall__kmod_gre__705_216_gre_init6
+ffffffc008b80e20 d __initcall__kmod_ip_gre__707_1789_ipgre_init6
+ffffffc008b80e24 d __initcall__kmod_ip_vti__698_722_vti_init6
+ffffffc008b80e28 d __initcall__kmod_esp4__732_1246_esp4_init6
+ffffffc008b80e2c d __initcall__kmod_tunnel4__651_295_tunnel4_init6
+ffffffc008b80e30 d __initcall__kmod_inet_diag__728_1481_inet_diag_init6
+ffffffc008b80e34 d __initcall__kmod_tcp_diag__712_247_tcp_diag_init6
+ffffffc008b80e38 d __initcall__kmod_udp_diag__620_296_udp_diag_init6
+ffffffc008b80e3c d __initcall__kmod_tcp_cubic__735_551_cubictcp_register6
+ffffffc008b80e40 d __initcall__kmod_xfrm_user__642_3816_xfrm_user_init6
+ffffffc008b80e44 d __initcall__kmod_xfrm_interface__797_1192_xfrmi_init6
+ffffffc008b80e48 d __initcall__kmod_ipv6__821_1328_inet6_init6
+ffffffc008b80e4c d __initcall__kmod_esp6__792_1299_esp6_init6
+ffffffc008b80e50 d __initcall__kmod_ipcomp6__690_216_ipcomp6_init6
+ffffffc008b80e54 d __initcall__kmod_xfrm6_tunnel__639_402_xfrm6_tunnel_init6
+ffffffc008b80e58 d __initcall__kmod_tunnel6__663_303_tunnel6_init6
+ffffffc008b80e5c d __initcall__kmod_mip6__632_405_mip6_init6
+ffffffc008b80e60 d __initcall__kmod_ip6_vti__815_1329_vti6_tunnel_init6
+ffffffc008b80e64 d __initcall__kmod_sit__740_1955_sit_init6
+ffffffc008b80e68 d __initcall__kmod_ip6_tunnel__847_2366_ip6_tunnel_init6
+ffffffc008b80e6c d __initcall__kmod_ip6_gre__747_2424_ip6gre_init6
+ffffffc008b80e70 d __initcall__kmod_af_packet__746_4761_packet_init6
+ffffffc008b80e74 d __initcall__kmod_af_key__643_3923_ipsec_pfkey_init6
+ffffffc008b80e78 d __initcall__kmod_vsock__606_2450_vsock_init6
+ffffffc008b80e7c d __initcall__kmod_vsock_diag__579_174_vsock_diag_init6
+ffffffc008b80e80 d __initcall__kmod_vmw_vsock_virtio_transport__598_845_virtio_vsock_init6
+ffffffc008b80e84 d __initcall__kmod_vsock_loopback__582_187_vsock_loopback_init6
+ffffffc008b80e88 D __initcall7_start
+ffffffc008b80e88 d __initcall__kmod_mounts__429_40_kernel_do_mounts_initrd_sysctls_init7
+ffffffc008b80e8c d __initcall__kmod_panic__399_109_kernel_panic_sysctls_init7
+ffffffc008b80e90 d __initcall__kmod_panic__401_128_kernel_panic_sysfs_init7
+ffffffc008b80e94 d __initcall__kmod_exit__469_101_kernel_exit_sysctls_init7
+ffffffc008b80e98 d __initcall__kmod_exit__471_120_kernel_exit_sysfs_init7
+ffffffc008b80e9c d __initcall__kmod_reboot__438_1310_reboot_ksysfs_init7
+ffffffc008b80ea0 d __initcall__kmod_core__728_4682_sched_core_sysctl_init7
+ffffffc008b80ea4 d __initcall__kmod_fair__443_213_sched_fair_sysctl_init7
+ffffffc008b80ea8 d __initcall__kmod_build_policy__442_65_sched_rt_sysctl_init7
+ffffffc008b80eac d __initcall__kmod_build_policy__462_534_sched_pelt_sysctl_init7
+ffffffc008b80eb0 d __initcall__kmod_build_policy__473_52_sched_dl_sysctl_init7
+ffffffc008b80eb4 d __initcall__kmod_build_utility__438_345_sched_init_debug7
+ffffffc008b80eb8 d __initcall__kmod_main__421_467_pm_debugfs_init7
+ffffffc008b80ebc d __initcall__kmod_wakeup_reason__414_438_wakeup_reason_init7
+ffffffc008b80ec0 d __initcall__kmod_printk__435_3362_printk_late_init7
+ffffffc008b80ec4 d __initcall__kmod_srcutree__439_1824_init_srcu_module_notifier7
+ffffffc008b80ec8 d __initcall__kmod_swiotlb__427_946_swiotlb_create_default_debugfs7
+ffffffc008b80ecc d __initcall__kmod_timekeeping_debug__411_44_tk_debug_sleep_time_init7
+ffffffc008b80ed0 d __initcall__kmod_kexec_core__427_952_kexec_core_sysctl_init7
+ffffffc008b80ed4 d __initcall__kmod_vmscan__632_6147_init_lru_gen7
+ffffffc008b80ed8 d __initcall__kmod_memory__472_4500_fault_around_debugfs7
+ffffffc008b80edc d __initcall__kmod_swapfile__468_2710_max_swapfiles_check7
+ffffffc008b80ee0 d __initcall__kmod_huge_memory__471_3202_split_huge_pages_debugfs7
+ffffffc008b80ee4 d __initcall__kmod_page_owner__426_745_pageowner_init7
+ffffffc008b80ee8 d __initcall__kmod_early_ioremap__411_99_check_early_ioremap_leak7
+ffffffc008b80eec d __initcall__kmod_usercopy__410_276_set_hardened_usercopy7
+ffffffc008b80ef0 d __initcall__kmod_integrity__383_232_integrity_fs_init7
+ffffffc008b80ef4 d __initcall__kmod_crypto_algapi__510_1311_crypto_algapi_init7
+ffffffc008b80ef8 d __initcall__kmod_blk_timeout__439_99_blk_timeout_init7
+ffffffc008b80efc d __initcall__kmod_pci__499_6732_pci_resource_alignment_sysfs_init7
+ffffffc008b80f00 d __initcall__kmod_pci_sysfs__389_1530_pci_sysfs_init7
+ffffffc008b80f04 d __initcall__kmod_clk__517_3662_clk_debug_init7
+ffffffc008b80f08 d __initcall__kmod_core__507_1269_sync_state_resume_initcall7
+ffffffc008b80f0c d __initcall__kmod_dd__389_371_deferred_probe_initcall7
+ffffffc008b80f10 d __initcall__kmod_dm_mod__424_300_dm_init_init7
+ffffffc008b80f14 d __initcall__kmod_psci__412_466_psci_debugfs_init7
+ffffffc008b80f18 d __initcall__kmod_fdt__398_1416_of_fdt_raw_init7
+ffffffc008b80f1c d __initcall__kmod_tcp_cong__713_266_tcp_congestion_default7
+ffffffc008b80f20 d __initcall__kmod_trace__468_9747_trace_eval_sync7s
+ffffffc008b80f24 d __initcall__kmod_trace__474_10396_late_trace_init7s
+ffffffc008b80f28 d __initcall__kmod_bus__417_498_amba_stub_drv_init7s
+ffffffc008b80f2c d __initcall__kmod_clk__485_1416_clk_disable_unused7s
+ffffffc008b80f30 d __initcall__kmod_platform__421_611_of_platform_sync_state_init7s
+ffffffc008b80f34 D __con_initcall_start
+ffffffc008b80f34 d __initcall__kmod_vt__419_3548_con_initcon
+ffffffc008b80f34 D __initcall_end
+ffffffc008b80f38 d __initcall__kmod_hvc_console__387_246_hvc_console_initcon
+ffffffc008b80f3c d __initcall__kmod_8250__392_690_univ8250_console_initcon
+ffffffc008b80f40 D __con_initcall_end
+ffffffc008b80f40 D __initramfs_start
+ffffffc008b80f40 d __irf_start
+ffffffc008b81140 D __initramfs_size
+ffffffc008b81140 d __irf_end
+ffffffc008b82000 D __per_cpu_load
+ffffffc008b82000 D __per_cpu_start
+ffffffc008b82000 D this_cpu_vector
+ffffffc008b82008 D cpu_number
+ffffffc008b82010 D bp_hardening_data
+ffffffc008b82020 D arm64_ssbd_callback_required
+ffffffc008b82028 d mte_tcf_preferred
+ffffffc008b82040 D kstack_offset
+ffffffc008b82048 d cpu_loops_per_jiffy
+ffffffc008b82050 d mde_ref_count
+ffffffc008b82054 d kde_ref_count
+ffffffc008b82058 D nmi_contexts
+ffffffc008b82068 D irq_stack_ptr
+ffffffc008b82070 D irq_shadow_call_stack_ptr
+ffffffc008b82078 D fpsimd_context_busy
+ffffffc008b82080 d fpsimd_last_state
+ffffffc008b820a8 d __in_cortex_a76_erratum_1463225_wa
+ffffffc008b820b0 D __entry_task
+ffffffc008b820c0 D overflow_stack
+ffffffc008b830c0 D cpu_data
+ffffffc008b835a0 d arch_core_cycles_prev
+ffffffc008b835a8 d arch_const_cycles_prev
+ffffffc008b835b0 d stepping_kernel_bp
+ffffffc008b835b8 d bp_on_reg
+ffffffc008b83638 d wp_on_reg
+ffffffc008b836b8 d stolen_time_region
+ffffffc008b836c0 d active_asids
+ffffffc008b836c8 d reserved_asids
+ffffffc008b836d0 D process_counts
+ffffffc008b836d8 d cached_stacks
+ffffffc008b836e8 d cpuhp_state
+ffffffc008b83760 d __percpu_rwsem_rc_cpu_hotplug_lock
+ffffffc008b83768 D ksoftirqd
+ffffffc008b83770 d tasklet_vec
+ffffffc008b83780 d tasklet_hi_vec
+ffffffc008b83790 d wq_watchdog_touched_cpu
+ffffffc008b83798 d wq_rr_cpu_last
+ffffffc008b837a0 d idle_threads
+ffffffc008b837a8 d cpu_hotplug_state
+ffffffc008b837b0 D kstat
+ffffffc008b837e0 d push_work
+ffffffc008b83810 D kernel_cpustat
+ffffffc008b83860 d load_balance_mask
+ffffffc008b83868 d select_rq_mask
+ffffffc008b83870 d local_cpu_mask
+ffffffc008b83878 d local_cpu_mask_dl
+ffffffc008b83880 d rt_push_head
+ffffffc008b83890 d rt_pull_head
+ffffffc008b838a0 d dl_push_head
+ffffffc008b838b0 d dl_pull_head
+ffffffc008b838c0 D cpu_irqtime
+ffffffc008b83900 d system_group_pcpu
+ffffffc008b83980 D sd_numa
+ffffffc008b83988 D sd_llc_id
+ffffffc008b83990 D sd_llc
+ffffffc008b83998 D sd_llc_size
+ffffffc008b839a0 D sd_llc_shared
+ffffffc008b839a8 D sd_asym_packing
+ffffffc008b839b0 D sd_asym_cpucapacity
+ffffffc008b839b8 d printk_count_nmi
+ffffffc008b839b9 d printk_count
+ffffffc008b839bc d printk_pending
+ffffffc008b839c0 d wake_up_klogd_work
+ffffffc008b839e0 d printk_context
+ffffffc008b83a00 d rcu_tasks__percpu
+ffffffc008b83b40 d tasks_rcu_exit_srcu_srcu_data
+ffffffc008b83cc0 d krc
+ffffffc008b83f28 d cpu_profile_hits
+ffffffc008b83f38 d cpu_profile_flip
+ffffffc008b83f40 d timer_bases
+ffffffc008b86440 D hrtimer_bases
+ffffffc008b86680 d tick_percpu_dev
+ffffffc008b869f8 D tick_cpu_device
+ffffffc008b86a08 d tick_oneshot_wakeup_device
+ffffffc008b86a10 d tick_cpu_sched
+ffffffc008b86af8 d cpu_stopper
+ffffffc008b86b58 d watchdog_report_ts
+ffffffc008b86b60 d softlockup_touch_sync
+ffffffc008b86b68 d hrtimer_interrupts
+ffffffc008b86b70 d hrtimer_interrupts_saved
+ffffffc008b86b78 d watchdog_hrtimer
+ffffffc008b86bc0 d softlockup_completion
+ffffffc008b86be0 d softlockup_stop_work
+ffffffc008b86c10 d watchdog_touch_ts
+ffffffc008b86c40 d tracepoint_srcu_srcu_data
+ffffffc008b86dc0 d trace_taskinfo_save
+ffffffc008b86dc8 D trace_buffered_event
+ffffffc008b86dd0 D trace_buffered_event_cnt
+ffffffc008b86dd4 d ftrace_stack_reserve
+ffffffc008b86dd8 d ftrace_stacks
+ffffffc008b8edd8 d cpu_access_lock
+ffffffc008b8ee08 d raised_list
+ffffffc008b8ee10 d lazy_list
+ffffffc008b8ee18 d bpf_user_rnd_state
+ffffffc008b8ee28 d scs_cache
+ffffffc008b8ee38 d running_sample_length
+ffffffc008b8ee40 d perf_sched_cb_usages
+ffffffc008b8ee48 d sched_cb_list
+ffffffc008b8ee58 d perf_cgroup_events
+ffffffc008b8ee60 d active_ctx_list
+ffffffc008b8ee70 d perf_throttled_seq
+ffffffc008b8ee78 d perf_throttled_count
+ffffffc008b8ee80 d swevent_htable
+ffffffc008b8eed0 D __perf_regs
+ffffffc008b8f410 d pmu_sb_events
+ffffffc008b8f428 d nop_txn_flags
+ffffffc008b8f42c d callchain_recursion
+ffffffc008b8f440 d __percpu_rwsem_rc_bp_cpuinfo_sem
+ffffffc008b8f448 d bp_cpuinfo
+ffffffc008b8f468 d __percpu_rwsem_rc_dup_mmap_sem
+ffffffc008b8f470 D context_tracking
+ffffffc008b8f488 D dirty_throttle_leaks
+ffffffc008b8f48c d bdp_ratelimits
+ffffffc008b8f490 d lru_rotate
+ffffffc008b8f510 d cpu_fbatches
+ffffffc008b8f790 d lru_add_drain_work
+ffffffc008b8f7c0 d vmstat_work
+ffffffc008b8f848 D vm_event_states
+ffffffc008b8fb28 d mlock_pvec
+ffffffc008b8fba8 d vmap_block_queue
+ffffffc008b8fbc0 d vfree_deferred
+ffffffc008b8fbf8 d ne_fit_preload_node
+ffffffc008b8fc00 d boot_nodestats
+ffffffc008b8fc40 d boot_pageset
+ffffffc008b8fd40 d boot_zonestats
+ffffffc008b8fd4c d __percpu_rwsem_rc_mem_hotplug_lock
+ffffffc008b8fd50 d swp_slots
+ffffffc008b8fdb8 d slub_flush
+ffffffc008b8fdf8 D kasan_page_alloc_skip
+ffffffc008b8fe00 d zs_map_area
+ffffffc008b8fe18 d nr_dentry
+ffffffc008b8fe20 d nr_dentry_unused
+ffffffc008b8fe28 d nr_dentry_negative
+ffffffc008b8fe30 d nr_inodes
+ffffffc008b8fe38 d last_ino
+ffffffc008b8fe40 d nr_unused
+ffffffc008b8fe48 d bh_lrus
+ffffffc008b8fec8 d bh_accounting
+ffffffc008b8fed0 d file_lock_list
+ffffffc008b8fee0 d __percpu_rwsem_rc_file_rwsem
+ffffffc008b8fee8 d discard_pa_seq
+ffffffc008b8fef0 d erofs_pcb
+ffffffc008b8ff10 D avc_cache_stats
+ffffffc008b8ff28 d scomp_scratch
+ffffffc008b8ff40 d blk_cpu_done
+ffffffc008b8ff48 d sgi_intid
+ffffffc008b8ff4c d has_rss
+ffffffc008b8ff50 d cpu_lpi_count
+ffffffc008b8ff58 d batched_entropy_u8
+ffffffc008b8ffc8 d batched_entropy_u16
+ffffffc008b90038 d batched_entropy_u32
+ffffffc008b900a8 d batched_entropy_u64
+ffffffc008b90118 d crngs
+ffffffc008b90140 d irq_randomness
+ffffffc008b901c0 d device_links_srcu_srcu_data
+ffffffc008b90340 d cpu_sys_devices
+ffffffc008b90348 d ci_cpu_cacheinfo
+ffffffc008b90360 d ci_cache_dev
+ffffffc008b90368 d ci_index_dev
+ffffffc008b90380 d wakeup_srcu_srcu_data
+ffffffc008b90500 d sft_data
+ffffffc008b90508 D arch_freq_scale
+ffffffc008b90510 D cpu_scale
+ffffffc008b90518 D thermal_pressure
+ffffffc008b90520 d freq_factor
+ffffffc008b90528 D timer_unstable_counter_workaround
+ffffffc008b90530 d saved_cntkctl
+ffffffc008b90540 d dummy_timer_evt
+ffffffc008b90640 d cpu_irq
+ffffffc008b90648 d cpu_irq_ops
+ffffffc008b90650 d cpu_armpmu
+ffffffc008b90658 d napi_alloc_cache
+ffffffc008b90888 d netdev_alloc_cache
+ffffffc008b908a0 d __net_cookie
+ffffffc008b908b0 d flush_works
+ffffffc008b908e0 D bpf_redirect_info
+ffffffc008b90918 d bpf_sp
+ffffffc008b90b20 d __sock_cookie
+ffffffc008b90b30 d sch_frag_data_storage
+ffffffc008b90b80 d rt_cache_stat
+ffffffc008b90ba0 D tcp_memory_per_cpu_fw_alloc
+ffffffc008b90ba4 D tcp_orphan_count
+ffffffc008b90ba8 d tsq_tasklet
+ffffffc008b90be0 d ipv4_tcp_sk
+ffffffc008b90be8 D udp_memory_per_cpu_fw_alloc
+ffffffc008b90bf0 d ipv4_icmp_sk
+ffffffc008b90bf8 d xfrm_trans_tasklet
+ffffffc008b90c48 d ipv6_icmp_sk
+ffffffc008b90c50 d distribute_cpu_mask_prev
+ffffffc008b90c58 D __irq_regs
+ffffffc008b90c60 D radix_tree_preloads
+ffffffc008b90c80 D irq_stat
+ffffffc008b90cc0 d cpu_worker_pools
+ffffffc008b91300 D runqueues
+ffffffc008b91f80 d osq_node
+ffffffc008b91fc0 d qnodes
+ffffffc008b92000 d rcu_data
+ffffffc008b92380 d cfd_data
+ffffffc008b923c0 d call_single_queue
+ffffffc008b92400 d csd_data
+ffffffc008b92440 D softnet_data
+ffffffc008b92740 d rt_uncached_list
+ffffffc008b92780 d rt6_uncached_list
+ffffffc008b927a8 D __per_cpu_end
+ffffffc008b927a8 R __rela_end
+ffffffc008b927a8 R __rela_start
+ffffffc008b927a8 R __relr_start
+ffffffc008b968f0 R __relr_end
+ffffffc008ba0000 R __init_end
+ffffffc008ba0000 R __initdata_end
+ffffffc008ba0000 D __start_init_task
+ffffffc008ba0000 R _data
+ffffffc008ba0000 R _sdata
+ffffffc008ba0000 D init_stack
+ffffffc008ba0000 D init_thread_union
+ffffffc008ba4000 D __end_init_task
+ffffffc008ba4000 D __nosave_begin
+ffffffc008ba4000 D __nosave_end
+ffffffc008ba4000 d vdso_data_store
+ffffffc008ba5000 D boot_args
+ffffffc008ba5040 D mmlist_lock
+ffffffc008ba5080 D tasklist_lock
+ffffffc008ba50c0 d softirq_vec
+ffffffc008ba5140 d pidmap_lock
+ffffffc008ba5180 d bit_wait_table
+ffffffc008ba6980 D mod_tree
+ffffffc008ba69c0 D jiffies
+ffffffc008ba69c0 D jiffies_64
+ffffffc008ba6a00 D jiffies_lock
+ffffffc008ba6a40 D jiffies_seq
+ffffffc008ba6a80 d tick_broadcast_lock
+ffffffc008ba6ac0 d hash_lock
+ffffffc008ba6b00 d folio_wait_table
+ffffffc008ba8300 D vm_numa_event
+ffffffc008ba8300 D vm_zone_stat
+ffffffc008ba8380 D vm_node_stat
+ffffffc008ba8500 d nr_files
+ffffffc008ba8540 D rename_lock
+ffffffc008ba8580 d inode_hash_lock
+ffffffc008ba85c0 D mount_lock
+ffffffc008ba8600 d bdev_lock
+ffffffc008ba8640 d aes_sbox
+ffffffc008ba8640 D crypto_aes_sbox
+ffffffc008ba8740 d aes_inv_sbox
+ffffffc008ba8740 D crypto_aes_inv_sbox
+ffffffc008ba8840 D early_boot_irqs_disabled
+ffffffc008ba8841 D static_key_initialized
+ffffffc008ba8844 D system_state
+ffffffc008ba8848 d amu_cpus
+ffffffc008ba8850 d elf_hwcap
+ffffffc008ba8860 d allow_mismatched_32bit_el0
+ffffffc008ba8868 d ipi_desc
+ffffffc008ba88a0 d nr_ipi
+ffffffc008ba88a4 d ipi_irq_base
+ffffffc008ba88a8 d __nospectre_bhb
+ffffffc008ba88a9 d __nospectre_v2
+ffffffc008ba88ac d __spectre_v4_policy
+ffffffc008ba88b0 d sysctl_perf_user_access
+ffffffc008ba88b4 D panic_on_warn
+ffffffc008ba88b8 d warn_limit
+ffffffc008ba88bc d sysctl_oops_all_cpu_backtrace
+ffffffc008ba88c0 D __cpu_active_mask
+ffffffc008ba88c8 D __cpu_dying_mask
+ffffffc008ba88d0 D __cpu_present_mask
+ffffffc008ba88d8 D __cpu_online_mask
+ffffffc008ba88e0 D __num_online_cpus
+ffffffc008ba88e8 D __cpu_possible_mask
+ffffffc008ba88f0 D print_fatal_signals
+ffffffc008ba88f8 D system_highpri_wq
+ffffffc008ba8900 D system_unbound_wq
+ffffffc008ba8908 D system_freezable_wq
+ffffffc008ba8910 D system_power_efficient_wq
+ffffffc008ba8918 D system_freezable_power_efficient_wq
+ffffffc008ba8920 D system_long_wq
+ffffffc008ba8928 D system_wq
+ffffffc008ba8930 D scheduler_running
+ffffffc008ba8934 D sched_smp_initialized
+ffffffc008ba8938 D sysctl_resched_latency_warn_ms
+ffffffc008ba893c D sysctl_resched_latency_warn_once
+ffffffc008ba8940 D sysctl_sched_features
+ffffffc008ba8944 D sysctl_sched_nr_migrate
+ffffffc008ba8948 D max_load_balance_interval
+ffffffc008ba8950 D sysctl_sched_child_runs_first
+ffffffc008ba8954 D sysctl_sched_migration_cost
+ffffffc008ba8958 d cpu_idle_force_poll
+ffffffc008ba895c D sched_pelt_lshift
+ffffffc008ba8960 d psi_period
+ffffffc008ba8961 D sched_debug_verbose
+ffffffc008ba8964 d psi_bug
+ffffffc008ba8968 D freeze_timeout_msecs
+ffffffc008ba896c D s2idle_state
+ffffffc008ba8970 D ignore_console_lock_warning
+ffffffc008ba8974 d devkmsg_log
+ffffffc008ba8978 d ignore_loglevel
+ffffffc008ba897c d suppress_panic_printk
+ffffffc008ba8980 d keep_bootcon
+ffffffc008ba8984 D suppress_printk
+ffffffc008ba8988 D printk_delay_msec
+ffffffc008ba898c D noirqdebug
+ffffffc008ba8990 d irqfixup
+ffffffc008ba8994 d rcu_boot_ended
+ffffffc008ba8998 d rcu_task_ipi_delay
+ffffffc008ba899c d rcu_task_stall_timeout
+ffffffc008ba89a0 d rcu_task_stall_info
+ffffffc008ba89a4 d rcu_task_stall_info_mult
+ffffffc008ba89a8 d rcu_task_enqueue_lim
+ffffffc008ba89ac d rcu_task_contend_lim
+ffffffc008ba89b0 d rcu_task_collapse_lim
+ffffffc008ba89b4 D rcu_exp_cpu_stall_timeout
+ffffffc008ba89b8 D rcu_cpu_stall_timeout
+ffffffc008ba89bc D rcu_cpu_stall_suppress
+ffffffc008ba89c0 D rcu_cpu_stall_ftrace_dump
+ffffffc008ba89c4 D rcu_cpu_stall_suppress_at_boot
+ffffffc008ba89c8 d big_cpu_lim
+ffffffc008ba89cc d small_contention_lim
+ffffffc008ba89d0 d srcu_init_done
+ffffffc008ba89d4 D rcu_num_lvls
+ffffffc008ba89d8 D rcu_num_nodes
+ffffffc008ba89dc d rcu_nocb_poll
+ffffffc008ba89e0 D sysctl_panic_on_rcu_stall
+ffffffc008ba89e4 D sysctl_max_rcu_stall_to_panic
+ffffffc008ba89e8 d rcu_scheduler_fully_active
+ffffffc008ba89ec D rcu_scheduler_active
+ffffffc008ba89f0 d dma_direct_map_resource.__print_once
+ffffffc008ba89f1 d swiotlb_tbl_map_single.__print_once
+ffffffc008ba89f4 D prof_on
+ffffffc008ba89f8 D hrtimer_resolution
+ffffffc008ba89fc d hrtimer_hres_enabled
+ffffffc008ba8a00 D timekeeping_suspended
+ffffffc008ba8a04 D tick_do_timer_cpu
+ffffffc008ba8a08 D tick_nohz_enabled
+ffffffc008ba8a10 D tick_nohz_active
+ffffffc008ba8a20 d __futex_data.0
+ffffffc008ba8a30 d __futex_data.1
+ffffffc008ba8a38 D nr_cpu_ids
+ffffffc008ba8a40 d audit_tree_mark_cachep
+ffffffc008ba8a48 D sysctl_hung_task_check_count
+ffffffc008ba8a50 D sysctl_hung_task_timeout_secs
+ffffffc008ba8a58 D sysctl_hung_task_warnings
+ffffffc008ba8a5c D sysctl_hung_task_panic
+ffffffc008ba8a60 D sysctl_hung_task_check_interval_secs
+ffffffc008ba8a68 d did_panic
+ffffffc008ba8a6c d sysctl_hung_task_all_cpu_backtrace
+ffffffc008ba8a70 D watchdog_user_enabled
+ffffffc008ba8a74 D nmi_watchdog_user_enabled
+ffffffc008ba8a78 D soft_watchdog_user_enabled
+ffffffc008ba8a7c D watchdog_thresh
+ffffffc008ba8a80 D watchdog_cpumask
+ffffffc008ba8a88 D softlockup_panic
+ffffffc008ba8a90 d watchdog_allowed_mask
+ffffffc008ba8a98 D watchdog_enabled
+ffffffc008ba8aa0 d nmi_watchdog_available
+ffffffc008ba8aa4 D sysctl_softlockup_all_cpu_backtrace
+ffffffc008ba8aa8 d sample_period
+ffffffc008ba8ab0 d softlockup_initialized
+ffffffc008ba8ab8 d ftrace_exports_list
+ffffffc008ba8ac0 d tracing_selftest_running
+ffffffc008ba8ac8 d trace_types
+ffffffc008ba8ad0 D tracing_buffer_mask
+ffffffc008ba8ad8 D tracing_selftest_disabled
+ffffffc008ba8ae0 D tracing_thresh
+ffffffc008ba8ae8 d event_hash
+ffffffc008ba8ee8 d trace_printk_enabled
+ffffffc008ba8ef0 D nop_trace
+ffffffc008ba8f88 D sysctl_perf_event_paranoid
+ffffffc008ba8f8c D sysctl_perf_event_mlock
+ffffffc008ba8f90 D sysctl_perf_event_sample_rate
+ffffffc008ba8f94 D sysctl_perf_cpu_time_max_percent
+ffffffc008ba8f98 d max_samples_per_tick
+ffffffc008ba8f9c d perf_sample_period_ns
+ffffffc008ba8fa0 d perf_sample_allowed_ns
+ffffffc008ba8fa4 d nr_switch_events
+ffffffc008ba8fa8 d nr_comm_events
+ffffffc008ba8fac d nr_namespaces_events
+ffffffc008ba8fb0 d nr_mmap_events
+ffffffc008ba8fb4 d nr_ksymbol_events
+ffffffc008ba8fb8 d nr_bpf_events
+ffffffc008ba8fbc d nr_text_poke_events
+ffffffc008ba8fc0 d nr_build_id_events
+ffffffc008ba8fc4 d nr_cgroup_events
+ffffffc008ba8fc8 d nr_task_events
+ffffffc008ba8fcc d nr_freq_events
+ffffffc008ba8fd0 D sysctl_perf_event_max_stack
+ffffffc008ba8fd4 D sysctl_perf_event_max_contexts_per_stack
+ffffffc008ba8fd8 d oom_killer_disabled
+ffffffc008ba8fe0 d lru_gen_min_ttl
+ffffffc008ba8fe8 d shmem_huge
+ffffffc008ba8ff0 D sysctl_overcommit_memory
+ffffffc008ba8ff4 D sysctl_overcommit_ratio
+ffffffc008ba8ff8 D sysctl_overcommit_kbytes
+ffffffc008ba9000 D sysctl_max_map_count
+ffffffc008ba9008 D sysctl_user_reserve_kbytes
+ffffffc008ba9010 D sysctl_admin_reserve_kbytes
+ffffffc008ba9018 D sysctl_stat_interval
+ffffffc008ba901c d stable_pages_required_show.__print_once
+ffffffc008ba9020 d pcpu_async_enabled
+ffffffc008ba9028 D __per_cpu_offset
+ffffffc008ba9128 D sysctl_compact_unevictable_allowed
+ffffffc008ba912c D sysctl_compaction_proactiveness
+ffffffc008ba9130 d bucket_order
+ffffffc008ba9138 D randomize_va_space
+ffffffc008ba9140 D highest_memmap_pfn
+ffffffc008ba9148 d fault_around_bytes
+ffffffc008ba9150 D zero_pfn
+ffffffc008ba9158 D mmap_rnd_bits
+ffffffc008ba915c d vmap_initialized
+ffffffc008ba9160 D watermark_boost_factor
+ffffffc008ba9164 d _init_on_alloc_enabled_early
+ffffffc008ba9165 d _init_on_free_enabled_early
+ffffffc008ba9168 D totalreserve_pages
+ffffffc008ba9170 D totalcma_pages
+ffffffc008ba9178 D gfp_allowed_mask
+ffffffc008ba9180 D node_states
+ffffffc008ba91b0 D page_group_by_mobility_disabled
+ffffffc008ba91b8 D _totalram_pages
+ffffffc008ba91c0 d online_policy
+ffffffc008ba91c4 d auto_movable_ratio
+ffffffc008ba91c8 d enable_vma_readahead
+ffffffc008ba91d0 D swapper_spaces
+ffffffc008ba92b0 D transparent_hugepage_flags
+ffffffc008ba92b8 D huge_zero_pfn
+ffffffc008ba92c0 D huge_zero_page
+ffffffc008ba92c8 d mm_slot_cache
+ffffffc008ba92d0 d khugepaged_pages_to_scan
+ffffffc008ba92d4 d khugepaged_max_ptes_none
+ffffffc008ba92d8 d khugepaged_max_ptes_swap
+ffffffc008ba92dc d khugepaged_max_ptes_shared
+ffffffc008ba92e0 d mm_slots_hash
+ffffffc008bab2e0 d khugepaged_thread
+ffffffc008bab2e8 d khugepaged_scan_sleep_millisecs
+ffffffc008bab2ec d khugepaged_alloc_sleep_millisecs
+ffffffc008bab2f0 d pr_dev_info
+ffffffc008bab2f8 d filp_cachep
+ffffffc008bab300 d pipe_mnt
+ffffffc008bab308 d sysctl_protected_hardlinks
+ffffffc008bab30c d sysctl_protected_symlinks
+ffffffc008bab310 d sysctl_protected_fifos
+ffffffc008bab314 d sysctl_protected_regular
+ffffffc008bab318 d fasync_cache
+ffffffc008bab320 D names_cachep
+ffffffc008bab328 d dentry_cache
+ffffffc008bab330 d dentry_hashtable
+ffffffc008bab338 d d_hash_shift
+ffffffc008bab33c D sysctl_vfs_cache_pressure
+ffffffc008bab340 d inode_cachep
+ffffffc008bab348 d inode_hashtable
+ffffffc008bab350 d i_hash_shift
+ffffffc008bab354 d i_hash_mask
+ffffffc008bab358 D sysctl_nr_open
+ffffffc008bab360 d sysctl_mount_max
+ffffffc008bab368 d mnt_cache
+ffffffc008bab370 d m_hash_shift
+ffffffc008bab374 d m_hash_mask
+ffffffc008bab378 d mount_hashtable
+ffffffc008bab380 d mp_hash_shift
+ffffffc008bab384 d mp_hash_mask
+ffffffc008bab388 d mountpoint_hashtable
+ffffffc008bab390 d bh_cachep
+ffffffc008bab398 d dio_cache
+ffffffc008bab3a0 d inotify_max_queued_events
+ffffffc008bab3a8 D inotify_inode_mark_cachep
+ffffffc008bab3b0 d pwq_cache
+ffffffc008bab3b8 d ephead_cache
+ffffffc008bab3c0 d epi_cache
+ffffffc008bab3c8 d max_user_watches
+ffffffc008bab3d0 d anon_inode_mnt
+ffffffc008bab3d8 d userfaultfd_ctx_cachep
+ffffffc008bab3e0 D sysctl_unprivileged_userfaultfd
+ffffffc008bab3e8 d flctx_cache
+ffffffc008bab3f0 d filelock_cache
+ffffffc008bab3f8 d allow_sys_admin_access
+ffffffc008bab400 d erofs_inode_cachep
+ffffffc008bab408 d z_erofs_workqueue
+ffffffc008bab410 d pcluster_pool
+ffffffc008bab590 d iint_cache
+ffffffc008bab598 D blockdev_superblock
+ffffffc008bab5a0 d bdev_cachep
+ffffffc008bab5a8 d bvec_slabs
+ffffffc008bab608 d blk_timeout_mask
+ffffffc008bab60c D debug_locks
+ffffffc008bab610 D debug_locks_silent
+ffffffc008bab614 D percpu_counter_batch
+ffffffc008bab618 d gic_data
+ffffffc008babc60 d gic_cpu_map
+ffffffc008babc68 d gic_data
+ffffffc008babce0 d sysrq_always_enabled
+ffffffc008babce4 d sysrq_enabled
+ffffffc008babce8 d hvc_needs_init
+ffffffc008babcec d ratelimit_disable
+ffffffc008babcf0 d crng_init
+ffffffc008babcf4 d iommu_dma_strict
+ffffffc008babcf8 d iommu_def_domain_type
+ffffffc008babcfc d iommu_cmd_line
+ffffffc008babd00 D iommu_dma_forcedac
+ffffffc008babd01 d iommu_dma_map_page.__print_once
+ffffffc008babd04 D events_check_enabled
+ffffffc008babd08 d pm_abort_suspend
+ffffffc008babd0c d wakeup_irq.0
+ffffffc008babd10 d wakeup_irq.1
+ffffffc008babd14 d do_xfer.__print_once
+ffffffc008babd18 d sock_mnt
+ffffffc008babd20 d net_families
+ffffffc008babe90 D sysctl_net_busy_poll
+ffffffc008babe94 D sysctl_net_busy_read
+ffffffc008babe98 D sysctl_wmem_max
+ffffffc008babe9c D sysctl_rmem_max
+ffffffc008babea0 D sysctl_wmem_default
+ffffffc008babea4 D sysctl_rmem_default
+ffffffc008babea8 D sysctl_optmem_max
+ffffffc008babeac D sysctl_tstamp_allow_data
+ffffffc008babeb0 d sock_set_timeout.warned
+ffffffc008babeb8 D sysctl_max_skb_frags
+ffffffc008babec0 D crc32c_csum_stub
+ffffffc008babec8 d flow_keys_dissector_symmetric
+ffffffc008babf0c D flow_keys_dissector
+ffffffc008babf50 D flow_keys_basic_dissector
+ffffffc008babf94 D sysctl_fb_tunnels_only_for_init_net
+ffffffc008babf98 D sysctl_devconf_inherit_init_net
+ffffffc008babfa0 D ptype_all
+ffffffc008babfb0 d xps_needed
+ffffffc008babfc0 d xps_rxqs_needed
+ffffffc008babfd0 D netdev_max_backlog
+ffffffc008babfd4 D netdev_tstamp_prequeue
+ffffffc008babfd8 D netdev_budget
+ffffffc008babfdc D netdev_budget_usecs
+ffffffc008babfe0 D weight_p
+ffffffc008babfe4 D dev_weight_rx_bias
+ffffffc008babfe8 D dev_weight_tx_bias
+ffffffc008babfec D dev_rx_weight
+ffffffc008babff0 D dev_tx_weight
+ffffffc008babff8 D rps_sock_flow_table
+ffffffc008bac000 D rps_cpu_mask
+ffffffc008bac008 D rps_needed
+ffffffc008bac018 D rfs_needed
+ffffffc008bac028 D netdev_flow_limit_table_len
+ffffffc008bac02c D netdev_unregister_timeout_secs
+ffffffc008bac030 D ptype_base
+ffffffc008bac130 d napi_hash
+ffffffc008bac930 D sysctl_skb_defer_max
+ffffffc008bac938 d neigh_tables
+ffffffc008bac950 d neigh_sysctl_template
+ffffffc008baced8 D ipv6_bpf_stub
+ffffffc008bacee0 D gro_normal_batch
+ffffffc008bacee8 d offload_base
+ffffffc008bacef8 d eth_packet_offload
+ffffffc008bacf28 D pfifo_fast_ops
+ffffffc008bacfe0 D noop_qdisc_ops
+ffffffc008bad098 D noqueue_qdisc_ops
+ffffffc008bad150 D mq_qdisc_ops
+ffffffc008bad208 D nl_table
+ffffffc008bad210 D netdev_rss_key
+ffffffc008bad244 d ethnl_ok
+ffffffc008bad248 d ip_rt_redirect_silence
+ffffffc008bad24c d ip_rt_redirect_number
+ffffffc008bad250 d ip_rt_redirect_load
+ffffffc008bad254 d ip_idents_mask
+ffffffc008bad258 d ip_idents
+ffffffc008bad260 d ip_tstamps
+ffffffc008bad268 d ip_rt_gc_timeout
+ffffffc008bad26c d ip_rt_error_burst
+ffffffc008bad270 d ip_rt_error_cost
+ffffffc008bad274 d ip_min_valid_pmtu
+ffffffc008bad278 d ip_rt_gc_min_interval
+ffffffc008bad27c d ip_rt_gc_interval
+ffffffc008bad280 d ip_rt_gc_elasticity
+ffffffc008bad284 D inet_peer_minttl
+ffffffc008bad288 D inet_peer_maxttl
+ffffffc008bad28c D inet_peer_threshold
+ffffffc008bad290 D inet_protos
+ffffffc008bada90 D inet_offloads
+ffffffc008bae290 d inet_ehashfn.inet_ehash_secret
+ffffffc008bae298 D sysctl_tcp_mem
+ffffffc008bae2b0 D tcp_memory_pressure
+ffffffc008bae2b8 d tcp_gro_dev_warn.__once
+ffffffc008bae2bc D sysctl_tcp_max_orphans
+ffffffc008bae2c0 D tcp_request_sock_ops
+ffffffc008bae300 d tcp_metrics_hash_log
+ffffffc008bae308 d tcp_metrics_hash
+ffffffc008bae310 D sysctl_udp_mem
+ffffffc008bae328 d udp_flow_hashrnd.hashrnd
+ffffffc008bae32c d udp_busylocks_log
+ffffffc008bae330 d udp_busylocks
+ffffffc008bae338 d udp_ehashfn.udp_ehash_secret
+ffffffc008bae340 D udp_table
+ffffffc008bae358 D udplite_table
+ffffffc008bae370 d arp_packet_type
+ffffffc008bae3d8 D sysctl_icmp_msgs_per_sec
+ffffffc008bae3dc D sysctl_icmp_msgs_burst
+ffffffc008bae3e0 d inet_af_ops
+ffffffc008bae428 d ip_packet_offload
+ffffffc008bae458 d ip_packet_type
+ffffffc008bae4c0 D iptun_encaps
+ffffffc008bae500 D ip6tun_encaps
+ffffffc008bae540 d sysctl_tcp_low_latency
+ffffffc008bae548 d ipip_link_ops
+ffffffc008bae618 d ipip_handler
+ffffffc008bae640 d ipip_net_id
+ffffffc008bae648 d gre_proto
+ffffffc008bae658 d ipgre_tap_ops
+ffffffc008bae728 d ipgre_link_ops
+ffffffc008bae7f8 d erspan_link_ops
+ffffffc008bae8c8 d gre_tap_net_id
+ffffffc008bae8cc d ipgre_net_id
+ffffffc008bae8d0 d erspan_net_id
+ffffffc008bae8d8 d vti_link_ops
+ffffffc008bae9a8 d vti_ipcomp4_protocol
+ffffffc008bae9d8 d vti_ah4_protocol
+ffffffc008baea08 d vti_esp4_protocol
+ffffffc008baea38 d vti_net_id
+ffffffc008baea40 d tunnel4_handlers
+ffffffc008baea48 d tunnel64_handlers
+ffffffc008baea50 d tunnelmpls4_handlers
+ffffffc008baea80 d fast_convergence
+ffffffc008baea84 d beta
+ffffffc008baea88 d initial_ssthresh
+ffffffc008baea8c d bic_scale
+ffffffc008baea90 d tcp_friendliness
+ffffffc008baea94 d hystart
+ffffffc008baea98 d hystart_detect
+ffffffc008baea9c d hystart_low_window
+ffffffc008baeaa0 d hystart_ack_delta_us
+ffffffc008baeac0 d cubictcp
+ffffffc008baeb80 d cube_factor
+ffffffc008baeb88 d cube_rtt_scale
+ffffffc008baeb8c d beta_scale
+ffffffc008baeb90 d esp4_handlers
+ffffffc008baeb98 d ah4_handlers
+ffffffc008baeba0 d ipcomp4_handlers
+ffffffc008baeba8 d xfrm_policy_afinfo
+ffffffc008baec00 d xfrm_if_cb
+ffffffc008baec08 d xfrmi_link_ops
+ffffffc008baecd8 d xfrmi_net_id
+ffffffc008baece0 d xfrmi_ipcomp4_protocol
+ffffffc008baed10 d xfrmi_ah4_protocol
+ffffffc008baed40 d xfrmi_esp4_protocol
+ffffffc008baed70 d xfrmi_ip6ip_handler
+ffffffc008baed98 d xfrmi_ipv6_handler
+ffffffc008baedc0 d xfrmi_ipcomp6_protocol
+ffffffc008baedf0 d xfrmi_ah6_protocol
+ffffffc008baee20 d xfrmi_esp6_protocol
+ffffffc008baee50 d ipv6_packet_type
+ffffffc008baeeb8 d inet6_ops
+ffffffc008baef00 d ipv6_devconf
+ffffffc008baf018 d ipv6_devconf_dflt
+ffffffc008baf130 d fib6_node_kmem
+ffffffc008baf138 d udp6_ehashfn.udp6_ehash_secret
+ffffffc008baf13c d udp6_ehashfn.udp_ipv6_hash_secret
+ffffffc008baf140 d mh_filter
+ffffffc008baf148 D sysctl_mld_max_msf
+ffffffc008baf14c D sysctl_mld_qrv
+ffffffc008baf150 D tcp6_request_sock_ops
+ffffffc008baf190 d esp6_handlers
+ffffffc008baf198 d ah6_handlers
+ffffffc008baf1a0 d ipcomp6_handlers
+ffffffc008baf1a8 d xfrm46_tunnel_handler
+ffffffc008baf1d0 d xfrm6_tunnel_handler
+ffffffc008baf1f8 d xfrm6_tunnel_spi_kmem
+ffffffc008baf200 d xfrm6_tunnel_net_id
+ffffffc008baf208 d tunnel6_handlers
+ffffffc008baf210 d tunnel46_handlers
+ffffffc008baf218 d tunnelmpls6_handlers
+ffffffc008baf220 d vti6_link_ops
+ffffffc008baf2f0 d vti_ip6ip_handler
+ffffffc008baf318 d vti_ipv6_handler
+ffffffc008baf340 d vti_ipcomp6_protocol
+ffffffc008baf370 d vti_ah6_protocol
+ffffffc008baf3a0 d vti_esp6_protocol
+ffffffc008baf3d0 d vti6_net_id
+ffffffc008baf3d8 d sit_link_ops
+ffffffc008baf4a8 d sit_handler
+ffffffc008baf4d0 d ipip_handler
+ffffffc008baf4f8 d sit_net_id
+ffffffc008baf500 d ip6_link_ops
+ffffffc008baf5d0 d ip4ip6_handler
+ffffffc008baf5f8 d ip6ip6_handler
+ffffffc008baf620 d ip6_tnl_net_id
+ffffffc008baf628 d ip6gre_tap_ops
+ffffffc008baf6f8 d ip6gre_link_ops
+ffffffc008baf7c8 d ip6erspan_tap_ops
+ffffffc008baf898 d ip6gre_protocol
+ffffffc008baf8b0 d ip6gre_net_id
+ffffffc008baf8b8 D ipv6_stub
+ffffffc008baf8c0 D inet6_protos
+ffffffc008bb00c0 D inet6_offloads
+ffffffc008bb08c0 d ipv6_packet_offload
+ffffffc008bb08f0 d inet6_ehashfn.inet6_ehash_secret
+ffffffc008bb08f4 d inet6_ehashfn.ipv6_hash_secret
+ffffffc008bb08f8 d pfkey_net_id
+ffffffc008bb0900 d vsock_tap_all
+ffffffc008bb0910 d ptr_key
+ffffffc008bb0920 d filled_random_ptr_key
+ffffffc008bb0924 D kptr_restrict
+ffffffc008bb0940 D __idmap_kpti_flag
+ffffffc008bb0948 D __SCK__tp_func_initcall_level
+ffffffc008bb0950 D __SCK__tp_func_initcall_start
+ffffffc008bb0958 D __SCK__tp_func_initcall_finish
+ffffffc008bb0960 d trace_event_fields_initcall_level
+ffffffc008bb09b0 d trace_event_type_funcs_initcall_level
+ffffffc008bb09d0 d print_fmt_initcall_level
+ffffffc008bb09f0 d event_initcall_level
+ffffffc008bb0a80 d trace_event_fields_initcall_start
+ffffffc008bb0ad0 d trace_event_type_funcs_initcall_start
+ffffffc008bb0af0 d print_fmt_initcall_start
+ffffffc008bb0b08 d event_initcall_start
+ffffffc008bb0b98 d trace_event_fields_initcall_finish
+ffffffc008bb0c10 d trace_event_type_funcs_initcall_finish
+ffffffc008bb0c30 d print_fmt_initcall_finish
+ffffffc008bb0c58 d event_initcall_finish
+ffffffc008bb0ce8 D loops_per_jiffy
+ffffffc008bb0cf0 d argv_init
+ffffffc008bb0e00 d ramdisk_execute_command
+ffffffc008bb0e08 d blacklisted_initcalls
+ffffffc008bb0e18 D envp_init
+ffffffc008bb10d8 D root_mountflags
+ffffffc008bb10e0 D rootfs_fs_type
+ffffffc008bb1128 d kern_do_mounts_initrd_table
+ffffffc008bb11a8 d handle_initrd.argv
+ffffffc008bb11b8 d wait_for_initramfs.__already_done
+ffffffc008bb11b9 d update_cpu_features.__already_done
+ffffffc008bb11ba d has_useable_gicv3_cpuif.__already_done
+ffffffc008bb11bb d unmap_kernel_at_el0.__already_done
+ffffffc008bb11bc d spectre_bhb_enable_mitigation.__already_done
+ffffffc008bb11bd d spectre_v2_mitigations_off.__already_done
+ffffffc008bb11be d spectre_v4_mitigations_off.__already_done
+ffffffc008bb11bf d hw_breakpoint_control.__already_done
+ffffffc008bb11c0 d hw_breakpoint_slot_setup.__already_done
+ffffffc008bb11c1 d stolen_time_cpu_online.__already_done
+ffffffc008bb11c2 d mte_enable_kernel_sync.__already_done
+ffffffc008bb11c3 d __mte_enable_kernel.__already_done
+ffffffc008bb11c4 d dup_mm_exe_file.__already_done
+ffffffc008bb11c5 d __cpu_hotplug_enable.__already_done
+ffffffc008bb11c6 d tasklet_clear_sched.__already_done
+ffffffc008bb11c7 d warn_sysctl_write.__already_done
+ffffffc008bb11c8 d warn_legacy_capability_use.__already_done
+ffffffc008bb11c9 d warn_deprecated_v2.__already_done
+ffffffc008bb11ca d __queue_work.__already_done
+ffffffc008bb11cb d check_flush_dependency.__already_done
+ffffffc008bb11cc d check_flush_dependency.__already_done.39
+ffffffc008bb11cd d update_rq_clock.__already_done
+ffffffc008bb11ce d rq_pin_lock.__already_done
+ffffffc008bb11cf d assert_clock_updated.__already_done
+ffffffc008bb11d0 d __do_set_cpus_allowed.__already_done
+ffffffc008bb11d1 d finish_task_switch.__already_done
+ffffffc008bb11d2 d sched_submit_work.__already_done
+ffffffc008bb11d3 d nohz_balance_exit_idle.__already_done
+ffffffc008bb11d4 d nohz_balance_enter_idle.__already_done
+ffffffc008bb11d5 d assert_clock_updated.__already_done
+ffffffc008bb11d6 d hrtick_start_fair.__already_done
+ffffffc008bb11d7 d _nohz_idle_balance.__already_done
+ffffffc008bb11d8 d rq_pin_lock.__already_done
+ffffffc008bb11d9 d check_schedstat_required.__already_done
+ffffffc008bb11da d set_next_buddy.__already_done
+ffffffc008bb11db d set_last_buddy.__already_done
+ffffffc008bb11dc d load_avg_is_decayed.__already_done
+ffffffc008bb11dd d rq_pin_lock.__already_done
+ffffffc008bb11de d check_schedstat_required.__already_done
+ffffffc008bb11df d assert_clock_updated.__already_done
+ffffffc008bb11e0 d pick_next_rt_entity.__already_done
+ffffffc008bb11e1 d sched_rt_runtime_exceeded.__already_done
+ffffffc008bb11e2 d replenish_dl_entity.__already_done
+ffffffc008bb11e3 d __sub_running_bw.__already_done
+ffffffc008bb11e4 d __sub_rq_bw.__already_done
+ffffffc008bb11e5 d __sub_rq_bw.__already_done.28
+ffffffc008bb11e6 d __add_rq_bw.__already_done
+ffffffc008bb11e7 d __add_running_bw.__already_done
+ffffffc008bb11e8 d __add_running_bw.__already_done.32
+ffffffc008bb11e9 d enqueue_task_dl.__already_done
+ffffffc008bb11ea d assert_clock_updated.__already_done
+ffffffc008bb11eb d asym_cpu_capacity_update_data.__already_done
+ffffffc008bb11ec d sd_init.__already_done
+ffffffc008bb11ed d sd_init.__already_done.270
+ffffffc008bb11ee d rq_pin_lock.__already_done
+ffffffc008bb11ef d check_syslog_permissions.__already_done
+ffffffc008bb11f0 d console_emit_next_record.__already_done
+ffffffc008bb11f1 d prb_reserve_in_last.__already_done
+ffffffc008bb11f2 d prb_reserve_in_last.__already_done.1
+ffffffc008bb11f3 d __handle_irq_event_percpu.__already_done
+ffffffc008bb11f4 d irq_validate_effective_affinity.__already_done
+ffffffc008bb11f5 d irq_wait_for_poll.__already_done
+ffffffc008bb11f6 d handle_percpu_devid_irq.__already_done
+ffffffc008bb11f7 d bad_chained_irq.__already_done
+ffffffc008bb11f8 d synchronize_rcu_tasks_generic.__already_done
+ffffffc008bb11f9 d rcu_spawn_tasks_kthread_generic.__already_done
+ffffffc008bb11fa d rcutree_migrate_callbacks.__already_done
+ffffffc008bb11fb d rcu_note_context_switch.__already_done
+ffffffc008bb11fc d rcu_stall_kick_kthreads.__already_done
+ffffffc008bb11fd d rcu_spawn_gp_kthread.__already_done
+ffffffc008bb11fe d rcu_spawn_core_kthreads.__already_done
+ffffffc008bb11ff d rcu_spawn_cpu_nocb_kthread.__already_done
+ffffffc008bb1200 d rcu_spawn_cpu_nocb_kthread.__already_done.271
+ffffffc008bb1201 d dma_direct_map_page.__already_done
+ffffffc008bb1202 d dma_direct_map_page.__already_done
+ffffffc008bb1203 d swiotlb_map.__already_done
+ffffffc008bb1204 d swiotlb_bounce.__already_done
+ffffffc008bb1205 d swiotlb_bounce.__already_done.34
+ffffffc008bb1206 d swiotlb_bounce.__already_done.36
+ffffffc008bb1207 d call_timer_fn.__already_done
+ffffffc008bb1208 d hrtimer_interrupt.__already_done
+ffffffc008bb1209 d timekeeping_adjust.__already_done
+ffffffc008bb120a d clocksource_start_suspend_timing.__already_done
+ffffffc008bb120b d __clocksource_update_freq_scale.__already_done
+ffffffc008bb120c d alarmtimer_freezerset.__already_done
+ffffffc008bb120d d __do_sys_setitimer.__already_done
+ffffffc008bb120e d clockevents_program_event.__already_done
+ffffffc008bb120f d __clockevents_switch_state.__already_done
+ffffffc008bb1210 d tick_nohz_stop_tick.__already_done
+ffffffc008bb1211 d cpu_stopper_thread.__already_done
+ffffffc008bb1212 d ring_buffer_event_time_stamp.__already_done
+ffffffc008bb1213 d rb_check_timestamp.__already_done
+ffffffc008bb1214 d tracing_snapshot.__already_done
+ffffffc008bb1215 d tracing_snapshot_cond.__already_done
+ffffffc008bb1216 d tracing_alloc_snapshot.__already_done
+ffffffc008bb1217 d trace_check_vprintf.__already_done
+ffffffc008bb1218 d early_trace_init.__already_done
+ffffffc008bb1219 d alloc_percpu_trace_buffer.__already_done
+ffffffc008bb121a d create_trace_option_files.__already_done
+ffffffc008bb121b d tracing_read_pipe.__already_done
+ffffffc008bb121c d tracing_dentry_percpu.__already_done
+ffffffc008bb121d d create_trace_instances.__already_done
+ffffffc008bb121e d create_trace_instances.__already_done.207
+ffffffc008bb121f d tracer_alloc_buffers.__already_done
+ffffffc008bb1220 d init_events.__already_done
+ffffffc008bb1221 d detect_dups.__already_done
+ffffffc008bb1222 d test_event_printk.__already_done
+ffffffc008bb1223 d test_event_printk.__already_done.6
+ffffffc008bb1224 d perf_trace_buf_alloc.__already_done
+ffffffc008bb1225 d __uprobe_perf_func.__already_done
+ffffffc008bb1226 d bpf_user_rnd_init_once.___done
+ffffffc008bb1227 d perf_event_ksymbol.__already_done
+ffffffc008bb1228 d jump_label_can_update.__already_done
+ffffffc008bb1229 d memremap.__already_done
+ffffffc008bb122a d memremap.__already_done.1
+ffffffc008bb122b d rseq_warn_flags.__already_done
+ffffffc008bb122c d rseq_warn_flags.__already_done.14
+ffffffc008bb122d d free_large_kmalloc.__already_done
+ffffffc008bb122e d may_expand_vm.__already_done
+ffffffc008bb122f d __do_sys_remap_file_pages.__already_done
+ffffffc008bb1230 d vma_to_resize.__already_done
+ffffffc008bb1231 d __alloc_pages.__warned
+ffffffc008bb1232 d __alloc_pages_slowpath.__warned
+ffffffc008bb1233 d __alloc_pages_slowpath.__warned.54
+ffffffc008bb1234 d __alloc_pages_slowpath.__warned.55
+ffffffc008bb1235 d __alloc_pages_may_oom.__warned
+ffffffc008bb1236 d __next_mem_range.__already_done
+ffffffc008bb1237 d __next_mem_range_rev.__already_done
+ffffffc008bb1238 d memblock_alloc_range_nid.__already_done
+ffffffc008bb1239 d __add_pages.__already_done
+ffffffc008bb123a d madvise_populate.__already_done
+ffffffc008bb123b d enable_swap_slots_cache.__already_done
+ffffffc008bb123c d vmemmap_verify.__already_done
+ffffffc008bb123d d altmap_alloc_block_buf.__already_done
+ffffffc008bb123e d virt_to_cache.__already_done
+ffffffc008bb123f d setup_arg_pages.__already_done
+ffffffc008bb1240 d do_execveat_common.__already_done
+ffffffc008bb1241 d get_fs_type.__already_done
+ffffffc008bb1242 d warn_mandlock.__already_done
+ffffffc008bb1243 d mount_too_revealing.__already_done
+ffffffc008bb1244 d show_mark_fhandle.__already_done
+ffffffc008bb1245 d inotify_remove_from_idr.__already_done
+ffffffc008bb1246 d inotify_remove_from_idr.__already_done.1
+ffffffc008bb1247 d inotify_remove_from_idr.__already_done.2
+ffffffc008bb1248 d __do_sys_flock.__already_done
+ffffffc008bb1249 d hidepid2str.__already_done
+ffffffc008bb124a d __set_oom_adj.__already_done
+ffffffc008bb124b d find_next_ancestor.__already_done
+ffffffc008bb124c d kernfs_put.__already_done
+ffffffc008bb124d d ext4_end_bio.__already_done
+ffffffc008bb124e d ext4_journal_data_mode_check.__already_done
+ffffffc008bb124f d ext4_xattr_inode_update_ref.__already_done
+ffffffc008bb1250 d ext4_xattr_inode_update_ref.__already_done.14
+ffffffc008bb1251 d ext4_xattr_inode_update_ref.__already_done.16
+ffffffc008bb1252 d ext4_xattr_inode_update_ref.__already_done.17
+ffffffc008bb1253 d __jbd2_log_start_commit.__already_done
+ffffffc008bb1254 d selinux_audit_rule_match.__already_done
+ffffffc008bb1255 d selinux_audit_rule_match.__already_done.24
+ffffffc008bb1256 d bvec_iter_advance.__already_done
+ffffffc008bb1257 d dd_exit_sched.__already_done
+ffffffc008bb1258 d blk_crypto_start_using_key.__already_done
+ffffffc008bb1259 d blk_crypto_fallback_start_using_mode.__already_done
+ffffffc008bb125a d io_epoll_ctl_prep.__already_done
+ffffffc008bb125b d io_wqe_create_worker.__already_done
+ffffffc008bb125c d percpu_ref_kill_and_confirm.__already_done
+ffffffc008bb125d d percpu_ref_switch_to_atomic_rcu.__already_done
+ffffffc008bb125e d refcount_warn_saturate.__already_done
+ffffffc008bb125f d refcount_warn_saturate.__already_done.1
+ffffffc008bb1260 d refcount_warn_saturate.__already_done.2
+ffffffc008bb1261 d refcount_warn_saturate.__already_done.4
+ffffffc008bb1262 d refcount_warn_saturate.__already_done.6
+ffffffc008bb1263 d refcount_warn_saturate.__already_done.8
+ffffffc008bb1264 d refcount_dec_not_one.__already_done
+ffffffc008bb1265 d netdev_reg_state.__already_done
+ffffffc008bb1266 d depot_alloc_stack.__already_done
+ffffffc008bb1267 d gic_check_cpu_features.__already_done
+ffffffc008bb1268 d gic_cpu_sys_reg_init.__already_done
+ffffffc008bb1269 d gic_request_region.__already_done
+ffffffc008bb126a d __gic_handle_irq.__already_done
+ffffffc008bb126b d its_cpu_init_lpis.__already_done
+ffffffc008bb126c d its_msi_prepare.__already_done
+ffffffc008bb126d d pci_disable_device.__already_done
+ffffffc008bb126e d pci_disable_acs_redir.__already_done
+ffffffc008bb126f d pci_specified_resource_alignment.__already_done
+ffffffc008bb1270 d pci_pm_suspend.__already_done
+ffffffc008bb1271 d pci_legacy_suspend.__already_done
+ffffffc008bb1272 d pci_pm_suspend_noirq.__already_done
+ffffffc008bb1273 d pci_pm_runtime_suspend.__already_done
+ffffffc008bb1274 d of_irq_parse_pci.__already_done
+ffffffc008bb1275 d quirk_intel_mc_errata.__already_done
+ffffffc008bb1276 d devm_pci_epc_destroy.__already_done
+ffffffc008bb1277 d dma_map_single_attrs.__already_done
+ffffffc008bb1278 d do_con_write.__already_done
+ffffffc008bb1279 d syscore_suspend.__already_done
+ffffffc008bb127a d syscore_suspend.__already_done.2
+ffffffc008bb127b d syscore_resume.__already_done
+ffffffc008bb127c d syscore_resume.__already_done.9
+ffffffc008bb127d d dev_pm_attach_wake_irq.__already_done
+ffffffc008bb127e d wakeup_source_activate.__already_done
+ffffffc008bb127f d fw_run_sysfs_fallback.__already_done
+ffffffc008bb1280 d regmap_register_patch.__already_done
+ffffffc008bb1281 d regmap_field_init.__already_done
+ffffffc008bb1282 d loop_control_remove.__already_done
+ffffffc008bb1283 d bvec_iter_advance.__already_done
+ffffffc008bb1284 d dm_bvec_iter_rewind.__already_done
+ffffffc008bb1285 d bvec_iter_advance.__already_done
+ffffffc008bb1286 d bvec_iter_advance.__already_done
+ffffffc008bb1287 d csrow_dev_is_visible.__already_done
+ffffffc008bb1288 d scmi_rx_callback.__already_done
+ffffffc008bb1289 d __arch_timer_check_delta.__already_done
+ffffffc008bb128a d of_graph_parse_endpoint.__already_done
+ffffffc008bb128b d of_graph_get_next_endpoint.__already_done
+ffffffc008bb128c d of_node_is_pcie.__already_done
+ffffffc008bb128d d __sock_create.__already_done
+ffffffc008bb128e d kernel_sendpage.__already_done
+ffffffc008bb128f d skb_expand_head.__already_done
+ffffffc008bb1290 d __skb_vlan_pop.__already_done
+ffffffc008bb1291 d skb_vlan_push.__already_done
+ffffffc008bb1292 d ts_secret_init.___done
+ffffffc008bb1293 d net_secret_init.___done
+ffffffc008bb1294 d __flow_hash_secret_init.___done
+ffffffc008bb1295 d __dev_get_by_flags.__already_done
+ffffffc008bb1296 d dev_change_name.__already_done
+ffffffc008bb1297 d __netdev_notify_peers.__already_done
+ffffffc008bb1298 d netif_set_real_num_tx_queues.__already_done
+ffffffc008bb1299 d netif_set_real_num_rx_queues.__already_done
+ffffffc008bb129a d skb_checksum_help.__already_done
+ffffffc008bb129b d skb_checksum_help.__already_done.52
+ffffffc008bb129c d netdev_rx_csum_fault.__already_done
+ffffffc008bb129d d netdev_is_rx_handler_busy.__already_done
+ffffffc008bb129e d netdev_rx_handler_unregister.__already_done
+ffffffc008bb129f d netif_napi_add_weight.__print_once
+ffffffc008bb12a0 d netdev_has_upper_dev.__already_done
+ffffffc008bb12a1 d netdev_has_any_upper_dev.__already_done
+ffffffc008bb12a2 d netdev_master_upper_dev_get.__already_done
+ffffffc008bb12a3 d netdev_offload_xstats_enable.__already_done
+ffffffc008bb12a4 d netdev_offload_xstats_disable.__already_done
+ffffffc008bb12a5 d netdev_offload_xstats_enabled.__already_done
+ffffffc008bb12a6 d netdev_offload_xstats_get.__already_done
+ffffffc008bb12a7 d netdev_offload_xstats_push_delta.__already_done
+ffffffc008bb12a8 d netdev_lower_state_changed.__already_done
+ffffffc008bb12a9 d __dev_change_flags.__already_done
+ffffffc008bb12aa d dev_change_xdp_fd.__already_done
+ffffffc008bb12ab d __netdev_update_features.__already_done
+ffffffc008bb12ac d register_netdevice.__already_done
+ffffffc008bb12ad d free_netdev.__already_done
+ffffffc008bb12ae d unregister_netdevice_queue.__already_done
+ffffffc008bb12af d unregister_netdevice_many.__already_done
+ffffffc008bb12b0 d __dev_change_net_namespace.__already_done
+ffffffc008bb12b1 d __dev_open.__already_done
+ffffffc008bb12b2 d __dev_close_many.__already_done
+ffffffc008bb12b3 d netdev_reg_state.__already_done
+ffffffc008bb12b4 d call_netdevice_notifiers_info.__already_done
+ffffffc008bb12b5 d netif_get_rxqueue.__already_done
+ffffffc008bb12b6 d get_rps_cpu.__already_done
+ffffffc008bb12b7 d __napi_poll.__print_once
+ffffffc008bb12b8 d __napi_poll.__already_done
+ffffffc008bb12b9 d __netdev_upper_dev_link.__already_done
+ffffffc008bb12ba d __netdev_has_upper_dev.__already_done
+ffffffc008bb12bb d __netdev_master_upper_dev_get.__already_done
+ffffffc008bb12bc d __netdev_upper_dev_unlink.__already_done
+ffffffc008bb12bd d call_netdevice_notifiers_info_robust.__already_done
+ffffffc008bb12be d __dev_set_promiscuity.__already_done
+ffffffc008bb12bf d __dev_set_allmulti.__already_done
+ffffffc008bb12c0 d dev_xdp_attach.__already_done
+ffffffc008bb12c1 d udp_tunnel_get_rx_info.__already_done
+ffffffc008bb12c2 d udp_tunnel_drop_rx_info.__already_done
+ffffffc008bb12c3 d vlan_get_rx_ctag_filter_info.__already_done
+ffffffc008bb12c4 d vlan_drop_rx_ctag_filter_info.__already_done
+ffffffc008bb12c5 d vlan_get_rx_stag_filter_info.__already_done
+ffffffc008bb12c6 d vlan_drop_rx_stag_filter_info.__already_done
+ffffffc008bb12c7 d list_netdevice.__already_done
+ffffffc008bb12c8 d unlist_netdevice.__already_done
+ffffffc008bb12c9 d flush_all_backlogs.__already_done
+ffffffc008bb12ca d dev_xdp_uninstall.__already_done
+ffffffc008bb12cb d netdev_has_any_lower_dev.__already_done
+ffffffc008bb12cc d default_device_exit_net.__already_done
+ffffffc008bb12cd d dev_addr_add.__already_done
+ffffffc008bb12ce d dev_addr_del.__already_done
+ffffffc008bb12cf d netdev_reg_state.__already_done
+ffffffc008bb12d0 d dst_release.__already_done
+ffffffc008bb12d1 d dst_release_immediate.__already_done
+ffffffc008bb12d2 d pneigh_lookup.__already_done
+ffffffc008bb12d3 d neigh_add.__already_done
+ffffffc008bb12d4 d neigh_delete.__already_done
+ffffffc008bb12d5 d rtnl_offload_xstats_notify.__already_done
+ffffffc008bb12d6 d rtnl_fill_ifinfo.__already_done
+ffffffc008bb12d7 d rtnl_xdp_prog_skb.__already_done
+ffffffc008bb12d8 d rtnl_fill_statsinfo.__already_done
+ffffffc008bb12d9 d rtnl_af_lookup.__already_done
+ffffffc008bb12da d bpf_warn_invalid_xdp_action.__already_done
+ffffffc008bb12db d ____bpf_xdp_adjust_tail.__already_done
+ffffffc008bb12dc d sk_lookup.__already_done
+ffffffc008bb12dd d bpf_sk_lookup.__already_done
+ffffffc008bb12de d __bpf_sk_lookup.__already_done
+ffffffc008bb12df d fib_rules_seq_read.__already_done
+ffffffc008bb12e0 d fib_rules_event.__already_done
+ffffffc008bb12e1 d dev_watchdog.__already_done
+ffffffc008bb12e2 d netlink_sendmsg.__already_done
+ffffffc008bb12e3 d __ethtool_get_link_ksettings.__already_done
+ffffffc008bb12e4 d netdev_rss_key_fill.___done
+ffffffc008bb12e5 d ethtool_get_settings.__already_done
+ffffffc008bb12e6 d ethtool_set_settings.__already_done
+ffffffc008bb12e7 d ethtool_get_link_ksettings.__already_done
+ffffffc008bb12e8 d ethtool_set_link_ksettings.__already_done
+ffffffc008bb12e9 d ethtool_notify.__already_done
+ffffffc008bb12ea d ethtool_notify.__already_done.6
+ffffffc008bb12eb d ethnl_default_notify.__already_done
+ffffffc008bb12ec d ethnl_default_notify.__already_done.9
+ffffffc008bb12ed d ethnl_default_doit.__already_done
+ffffffc008bb12ee d ethnl_default_doit.__already_done.15
+ffffffc008bb12ef d ethnl_default_doit.__already_done.17
+ffffffc008bb12f0 d ethnl_default_start.__already_done
+ffffffc008bb12f1 d strset_parse_request.__already_done
+ffffffc008bb12f2 d features_send_reply.__already_done
+ffffffc008bb12f3 d ethnl_get_priv_flags_info.__already_done
+ffffffc008bb12f4 d fnhe_hashfun.___done
+ffffffc008bb12f5 d __inet_hash_connect.___done
+ffffffc008bb12f6 d inet_ehashfn.___done
+ffffffc008bb12f7 d tcp_recv_skb.__already_done
+ffffffc008bb12f8 d tcp_recvmsg_locked.__already_done
+ffffffc008bb12f9 d tcp_send_loss_probe.__already_done
+ffffffc008bb12fa d raw_sendmsg.__already_done
+ffffffc008bb12fb d udp_flow_hashrnd.___done
+ffffffc008bb12fc d udp_ehashfn.___done
+ffffffc008bb12fd d inet_ifa_byprefix.__already_done
+ffffffc008bb12fe d __inet_del_ifa.__already_done
+ffffffc008bb12ff d inet_hash_remove.__already_done
+ffffffc008bb1300 d inet_set_ifa.__already_done
+ffffffc008bb1301 d __inet_insert_ifa.__already_done
+ffffffc008bb1302 d inet_hash_insert.__already_done
+ffffffc008bb1303 d inetdev_event.__already_done
+ffffffc008bb1304 d inetdev_init.__already_done
+ffffffc008bb1305 d inetdev_destroy.__already_done
+ffffffc008bb1306 d inet_rtm_newaddr.__already_done
+ffffffc008bb1307 d ip_mc_autojoin_config.__already_done
+ffffffc008bb1308 d inet_rtm_deladdr.__already_done
+ffffffc008bb1309 d __ip_mc_dec_group.__already_done
+ffffffc008bb130a d ip_mc_unmap.__already_done
+ffffffc008bb130b d ip_mc_remap.__already_done
+ffffffc008bb130c d ip_mc_down.__already_done
+ffffffc008bb130d d ip_mc_init_dev.__already_done
+ffffffc008bb130e d ip_mc_up.__already_done
+ffffffc008bb130f d ip_mc_destroy_dev.__already_done
+ffffffc008bb1310 d ip_mc_leave_group.__already_done
+ffffffc008bb1311 d ip_mc_source.__already_done
+ffffffc008bb1312 d ip_mc_msfilter.__already_done
+ffffffc008bb1313 d ip_mc_msfget.__already_done
+ffffffc008bb1314 d ip_mc_gsfget.__already_done
+ffffffc008bb1315 d ____ip_mc_inc_group.__already_done
+ffffffc008bb1316 d __ip_mc_join_group.__already_done
+ffffffc008bb1317 d ip_mc_rejoin_groups.__already_done
+ffffffc008bb1318 d ip_valid_fib_dump_req.__already_done
+ffffffc008bb1319 d ip_fib_net_exit.__already_done
+ffffffc008bb131a d call_fib4_notifiers.__already_done
+ffffffc008bb131b d fib4_seq_read.__already_done
+ffffffc008bb131c d call_nexthop_notifiers.__already_done
+ffffffc008bb131d d call_nexthop_res_table_notifiers.__already_done
+ffffffc008bb131e d __ip_tunnel_create.__already_done
+ffffffc008bb131f d xfrm_hash_rebuild.__already_done
+ffffffc008bb1320 d ipv6_sock_ac_join.__already_done
+ffffffc008bb1321 d ipv6_sock_ac_drop.__already_done
+ffffffc008bb1322 d __ipv6_sock_ac_close.__already_done
+ffffffc008bb1323 d __ipv6_dev_ac_inc.__already_done
+ffffffc008bb1324 d __ipv6_dev_ac_dec.__already_done
+ffffffc008bb1325 d ipv6_del_addr.__already_done
+ffffffc008bb1326 d addrconf_verify_rtnl.__already_done
+ffffffc008bb1327 d inet6_addr_add.__already_done
+ffffffc008bb1328 d addrconf_add_dev.__already_done
+ffffffc008bb1329 d ipv6_find_idev.__already_done
+ffffffc008bb132a d ipv6_mc_config.__already_done
+ffffffc008bb132b d __ipv6_ifa_notify.__already_done
+ffffffc008bb132c d addrconf_sit_config.__already_done
+ffffffc008bb132d d add_v4_addrs.__already_done
+ffffffc008bb132e d addrconf_gre_config.__already_done
+ffffffc008bb132f d init_loopback.__already_done
+ffffffc008bb1330 d addrconf_dev_config.__already_done
+ffffffc008bb1331 d addrconf_type_change.__already_done
+ffffffc008bb1332 d ipv6_add_dev.__already_done
+ffffffc008bb1333 d inet6_set_iftoken.__already_done
+ffffffc008bb1334 d inet6_addr_modify.__already_done
+ffffffc008bb1335 d addrconf_ifdown.__already_done
+ffffffc008bb1336 d rt6_exception_hash.___done
+ffffffc008bb1337 d udp6_ehashfn.___done
+ffffffc008bb1338 d udp6_ehashfn.___done.4
+ffffffc008bb1339 d ipv6_sock_mc_drop.__already_done
+ffffffc008bb133a d __ipv6_sock_mc_close.__already_done
+ffffffc008bb133b d __ipv6_dev_mc_dec.__already_done
+ffffffc008bb133c d ipv6_dev_mc_dec.__already_done
+ffffffc008bb133d d __ipv6_sock_mc_join.__already_done
+ffffffc008bb133e d __ipv6_dev_mc_inc.__already_done
+ffffffc008bb133f d ipv6_mc_rejoin_groups.__already_done
+ffffffc008bb1340 d ipip6_tunnel_del_prl.__already_done
+ffffffc008bb1341 d ipip6_tunnel_add_prl.__already_done
+ffffffc008bb1342 d inet6_ehashfn.___done
+ffffffc008bb1343 d inet6_ehashfn.___done.1
+ffffffc008bb1344 d tpacket_rcv.__already_done
+ffffffc008bb1345 d tpacket_parse_header.__already_done
+ffffffc008bb1346 d format_decode.__already_done
+ffffffc008bb1347 d set_field_width.__already_done
+ffffffc008bb1348 d set_precision.__already_done
+ffffffc008bb1349 d pointer.__already_done
+ffffffc008bb1350 d initramfs_domain
+ffffffc008bb1368 D init_shadow_call_stack
+ffffffc008bb2380 D init_task
+ffffffc008bb34c0 d init_signals
+ffffffc008bb38e0 d init_sighand
+ffffffc008bb4100 d debug_enabled
+ffffffc008bb4108 d user_step_hook
+ffffffc008bb4118 d kernel_step_hook
+ffffffc008bb4128 d user_break_hook
+ffffffc008bb4138 d kernel_break_hook
+ffffffc008bb4148 d fpsimd_cpu_pm_notifier_block
+ffffffc008bb4160 d sve_default_vl_table
+ffffffc008bb41e0 d sme_default_vl_table
+ffffffc008bb4260 d tagged_addr_sysctl_table
+ffffffc008bb42e0 D __SCK__tp_func_sys_enter
+ffffffc008bb42e8 D __SCK__tp_func_sys_exit
+ffffffc008bb42f0 d trace_event_fields_sys_enter
+ffffffc008bb4368 d trace_event_type_funcs_sys_enter
+ffffffc008bb4388 d print_fmt_sys_enter
+ffffffc008bb4410 d event_sys_enter
+ffffffc008bb44a0 d trace_event_fields_sys_exit
+ffffffc008bb4518 d trace_event_type_funcs_sys_exit
+ffffffc008bb4538 d print_fmt_sys_exit
+ffffffc008bb4560 d event_sys_exit
+ffffffc008bb45f0 D __cpu_logical_map
+ffffffc008bb46f0 d mem_res
+ffffffc008bb47b0 d arm64_panic_block
+ffffffc008bb47c8 d undef_hook
+ffffffc008bb47d8 d bug_break_hook
+ffffffc008bb47f8 d cfi_break_hook
+ffffffc008bb4818 d fault_break_hook
+ffffffc008bb4838 d arm64_show_signal.rs
+ffffffc008bb4860 D vdso_data
+ffffffc008bb4868 d cpuregs_kobj_type
+ffffffc008bb48b8 d cpuregs_id_attrs
+ffffffc008bb48d0 d cpuregs_attr_midr_el1
+ffffffc008bb48f0 d cpuregs_attr_revidr_el1
+ffffffc008bb4910 d sme_cpuregs_id_attrs
+ffffffc008bb4920 d cpuregs_attr_smidr_el1
+ffffffc008bb4940 d .compoundliteral.llvm.10184764501973911476
+ffffffc008bb4950 d .compoundliteral.25.llvm.10184764501973911476
+ffffffc008bb4960 d .compoundliteral
+ffffffc008bb4998 d .compoundliteral
+ffffffc008bb49c8 d .compoundliteral
+ffffffc008bb49d8 d .compoundliteral
+ffffffc008bb4a90 d .compoundliteral.10
+ffffffc008bb4ac8 d .compoundliteral.12
+ffffffc008bb4b00 d .compoundliteral.14
+ffffffc008bb4b38 d .compoundliteral.16
+ffffffc008bb4b70 d .compoundliteral.18
+ffffffc008bb4ba8 d .compoundliteral.20
+ffffffc008bb4be0 d .compoundliteral.22
+ffffffc008bb4c18 d .compoundliteral.24
+ffffffc008bb4c50 d .compoundliteral.26
+ffffffc008bb4c88 d .compoundliteral.28
+ffffffc008bb4cc0 d .compoundliteral.30
+ffffffc008bb4cf8 d .compoundliteral.32
+ffffffc008bb4d30 d .compoundliteral.34
+ffffffc008bb4d68 d .compoundliteral.36
+ffffffc008bb4da0 d .compoundliteral.38
+ffffffc008bb4dd8 d .compoundliteral.40
+ffffffc008bb4e10 d .compoundliteral.42
+ffffffc008bb4e48 d .compoundliteral.44
+ffffffc008bb4e80 d .compoundliteral.46
+ffffffc008bb4eb8 d .compoundliteral.48
+ffffffc008bb4ef0 d .compoundliteral.50
+ffffffc008bb4f28 d .compoundliteral.52
+ffffffc008bb4f60 d .compoundliteral.54
+ffffffc008bb4f98 d .compoundliteral.56
+ffffffc008bb4fd0 d .compoundliteral.58
+ffffffc008bb5008 d .compoundliteral.60
+ffffffc008bb5040 d .compoundliteral.62
+ffffffc008bb5078 d .compoundliteral.64
+ffffffc008bb50b0 d .compoundliteral.66
+ffffffc008bb50e8 d .compoundliteral.68
+ffffffc008bb5120 d .compoundliteral.70
+ffffffc008bb5158 d .compoundliteral.72
+ffffffc008bb5190 d .compoundliteral.74
+ffffffc008bb51c8 d .compoundliteral.76
+ffffffc008bb5200 d .compoundliteral.78
+ffffffc008bb5238 d .compoundliteral.80
+ffffffc008bb5270 d .compoundliteral.82
+ffffffc008bb52a8 d enable_mismatched_32bit_el0.lucky_winner
+ffffffc008bb52b0 d mrs_hook
+ffffffc008bb52e0 D arm64_ftr_reg_ctrel0
+ffffffc008bb5318 D __SCK__tp_func_ipi_raise
+ffffffc008bb5320 D __SCK__tp_func_ipi_entry
+ffffffc008bb5328 D __SCK__tp_func_ipi_exit
+ffffffc008bb5330 d trace_event_fields_ipi_raise
+ffffffc008bb53a8 d trace_event_type_funcs_ipi_raise
+ffffffc008bb53c8 d print_fmt_ipi_raise
+ffffffc008bb5408 d event_ipi_raise
+ffffffc008bb5498 d trace_event_fields_ipi_handler
+ffffffc008bb54e8 d trace_event_type_funcs_ipi_handler
+ffffffc008bb5508 d print_fmt_ipi_handler
+ffffffc008bb5520 d event_ipi_entry
+ffffffc008bb55b0 d event_ipi_exit
+ffffffc008bb5640 d cpu_running
+ffffffc008bb5660 d cpu_count
+ffffffc008bb5668 d ssbs_emulation_hook
+ffffffc008bb5698 d armv8_pmu_driver
+ffffffc008bb5788 d armv8_pmuv3_event_attrs
+ffffffc008bb5a58 d .compoundliteral.7
+ffffffc008bb5a88 d .compoundliteral.7
+ffffffc008bb5a98 d .compoundliteral.9
+ffffffc008bb5ac8 d .compoundliteral.11
+ffffffc008bb5af8 d .compoundliteral.13
+ffffffc008bb5b28 d .compoundliteral.15
+ffffffc008bb5b58 d .compoundliteral.17
+ffffffc008bb5b88 d .compoundliteral.19
+ffffffc008bb5bb8 d .compoundliteral.21
+ffffffc008bb5be8 d .compoundliteral.23
+ffffffc008bb5c18 d .compoundliteral.25
+ffffffc008bb5c48 d .compoundliteral.27
+ffffffc008bb5c78 d .compoundliteral.29
+ffffffc008bb5ca8 d .compoundliteral.31
+ffffffc008bb5cd8 d .compoundliteral.33
+ffffffc008bb5d08 d .compoundliteral.35
+ffffffc008bb5d38 d .compoundliteral.37
+ffffffc008bb5d68 d .compoundliteral.39
+ffffffc008bb5d98 d .compoundliteral.41
+ffffffc008bb5dc8 d .compoundliteral.43
+ffffffc008bb5df8 d .compoundliteral.45
+ffffffc008bb5e28 d .compoundliteral.47
+ffffffc008bb5e58 d .compoundliteral.49
+ffffffc008bb5e88 d .compoundliteral.51
+ffffffc008bb5eb8 d .compoundliteral.53
+ffffffc008bb5ee8 d .compoundliteral.55
+ffffffc008bb5f18 d .compoundliteral.57
+ffffffc008bb5f48 d .compoundliteral.59
+ffffffc008bb5f78 d .compoundliteral.61
+ffffffc008bb5fa8 d .compoundliteral.63
+ffffffc008bb5fd8 d .compoundliteral.65
+ffffffc008bb6008 d .compoundliteral.67
+ffffffc008bb6038 d .compoundliteral.69
+ffffffc008bb6068 d .compoundliteral.71
+ffffffc008bb6098 d .compoundliteral.73
+ffffffc008bb60c8 d .compoundliteral.75
+ffffffc008bb60f8 d .compoundliteral.77
+ffffffc008bb6128 d .compoundliteral.79
+ffffffc008bb6158 d .compoundliteral.81
+ffffffc008bb6188 d .compoundliteral.83
+ffffffc008bb61b8 d .compoundliteral.85
+ffffffc008bb61e8 d .compoundliteral.87
+ffffffc008bb6218 d .compoundliteral.89
+ffffffc008bb6248 d .compoundliteral.91
+ffffffc008bb6278 d .compoundliteral.93
+ffffffc008bb62a8 d .compoundliteral.95
+ffffffc008bb62d8 d .compoundliteral.97
+ffffffc008bb6308 d .compoundliteral.99
+ffffffc008bb6338 d .compoundliteral.101
+ffffffc008bb6368 d .compoundliteral.103
+ffffffc008bb6398 d .compoundliteral.105
+ffffffc008bb63c8 d .compoundliteral.107
+ffffffc008bb63f8 d .compoundliteral.109
+ffffffc008bb6428 d .compoundliteral.111
+ffffffc008bb6458 d .compoundliteral.113
+ffffffc008bb6488 d .compoundliteral.115
+ffffffc008bb64b8 d .compoundliteral.117
+ffffffc008bb64e8 d .compoundliteral.119
+ffffffc008bb6518 d .compoundliteral.121
+ffffffc008bb6548 d .compoundliteral.123
+ffffffc008bb6578 d .compoundliteral.125
+ffffffc008bb65a8 d .compoundliteral.127
+ffffffc008bb65d8 d .compoundliteral.129
+ffffffc008bb6608 d .compoundliteral.131
+ffffffc008bb6638 d .compoundliteral.133
+ffffffc008bb6668 d .compoundliteral.135
+ffffffc008bb6698 d .compoundliteral.137
+ffffffc008bb66c8 d .compoundliteral.139
+ffffffc008bb66f8 d .compoundliteral.141
+ffffffc008bb6728 d .compoundliteral.143
+ffffffc008bb6758 d .compoundliteral.145
+ffffffc008bb6788 d .compoundliteral.147
+ffffffc008bb67b8 d .compoundliteral.149
+ffffffc008bb67e8 d .compoundliteral.151
+ffffffc008bb6818 d .compoundliteral.153
+ffffffc008bb6848 d .compoundliteral.155
+ffffffc008bb6878 d .compoundliteral.157
+ffffffc008bb68a8 d .compoundliteral.159
+ffffffc008bb68d8 d .compoundliteral.161
+ffffffc008bb6908 d .compoundliteral.163
+ffffffc008bb6938 d .compoundliteral.165
+ffffffc008bb6968 d .compoundliteral.167
+ffffffc008bb6998 d .compoundliteral.169
+ffffffc008bb69c8 d .compoundliteral.171
+ffffffc008bb69f8 d .compoundliteral.173
+ffffffc008bb6a28 d .compoundliteral.175
+ffffffc008bb6a58 d .compoundliteral.177
+ffffffc008bb6a88 d .compoundliteral.179
+ffffffc008bb6ab8 d .compoundliteral.181
+ffffffc008bb6ae8 d armv8_pmuv3_format_attrs
+ffffffc008bb6b08 d format_attr_event
+ffffffc008bb6b28 d format_attr_long
+ffffffc008bb6b48 d format_attr_rdpmc
+ffffffc008bb6b68 d armv8_pmuv3_caps_attrs
+ffffffc008bb6b88 d dev_attr_slots
+ffffffc008bb6ba8 d dev_attr_bus_slots
+ffffffc008bb6bc8 d dev_attr_bus_width
+ffffffc008bb6be8 d armv8_pmu_sysctl_table
+ffffffc008bb6c68 D __SCK__pv_steal_clock
+ffffffc008bb6c70 d dev_attr_mte_tcf_preferred
+ffffffc008bb6c90 d uprobes_break_hook
+ffffffc008bb6cb0 d uprobes_step_hook
+ffffffc008bb6cc8 d __do_kernel_fault._rs
+ffffffc008bb6cf0 d ioremap_guard_lock
+ffffffc008bb6d20 d ioremap_phys_range_hook._rs
+ffffffc008bb6d48 d iounmap_phys_range_hook._rs
+ffffffc008bb6d70 d iounmap_phys_range_hook._rs.5
+ffffffc008bb6d98 D __boot_cpu_mode
+ffffffc008bb6da0 d fixmap_lock
+ffffffc008bb6dd0 d prevent_bootmem_remove_nb
+ffffffc008bb6de8 d new_context.cur_idx
+ffffffc008bb6df0 D __SCK__tp_func_task_newtask
+ffffffc008bb6df8 D __SCK__tp_func_task_rename
+ffffffc008bb6e00 d trace_event_fields_task_newtask
+ffffffc008bb6ec8 d trace_event_type_funcs_task_newtask
+ffffffc008bb6ee8 d print_fmt_task_newtask
+ffffffc008bb6f58 d event_task_newtask
+ffffffc008bb6fe8 d trace_event_fields_task_rename
+ffffffc008bb70b0 d trace_event_type_funcs_task_rename
+ffffffc008bb70d0 d print_fmt_task_rename
+ffffffc008bb7140 d event_task_rename
+ffffffc008bb71d0 d default_dump_filter
+ffffffc008bb71d8 D panic_on_oops
+ffffffc008bb71dc D panic_timeout
+ffffffc008bb71e0 d kern_panic_table
+ffffffc008bb72a0 d warn_count_attr
+ffffffc008bb72c0 D panic_cpu
+ffffffc008bb72c8 D __SCK__tp_func_cpuhp_enter
+ffffffc008bb72d0 D __SCK__tp_func_cpuhp_multi_enter
+ffffffc008bb72d8 D __SCK__tp_func_cpuhp_exit
+ffffffc008bb72e0 d trace_event_fields_cpuhp_enter
+ffffffc008bb73a8 d trace_event_type_funcs_cpuhp_enter
+ffffffc008bb73c8 d print_fmt_cpuhp_enter
+ffffffc008bb7420 d event_cpuhp_enter
+ffffffc008bb74b0 d trace_event_fields_cpuhp_multi_enter
+ffffffc008bb7578 d trace_event_type_funcs_cpuhp_multi_enter
+ffffffc008bb7598 d print_fmt_cpuhp_multi_enter
+ffffffc008bb75f0 d event_cpuhp_multi_enter
+ffffffc008bb7680 d trace_event_fields_cpuhp_exit
+ffffffc008bb7748 d trace_event_type_funcs_cpuhp_exit
+ffffffc008bb7768 d print_fmt_cpuhp_exit
+ffffffc008bb77c0 d event_cpuhp_exit
+ffffffc008bb7850 d cpu_add_remove_lock
+ffffffc008bb7880 d cpu_hotplug_lock
+ffffffc008bb78e0 d cpuhp_threads
+ffffffc008bb7940 d cpuhp_state_mutex
+ffffffc008bb7970 d cpu_hotplug_pm_sync_init.cpu_hotplug_pm_callback_nb
+ffffffc008bb7988 d cpuhp_hp_states
+ffffffc008bb9f30 d cpuhp_smt_attrs
+ffffffc008bb9f48 d dev_attr_control
+ffffffc008bb9f68 d dev_attr_control
+ffffffc008bb9f88 d dev_attr_active
+ffffffc008bb9fa8 d dev_attr_active
+ffffffc008bb9fc8 d dev_attr_active
+ffffffc008bb9fe8 d cpuhp_cpu_root_attrs
+ffffffc008bb9ff8 d dev_attr_states
+ffffffc008bba018 d cpuhp_cpu_attrs
+ffffffc008bba038 d dev_attr_state
+ffffffc008bba058 d dev_attr_state
+ffffffc008bba078 d dev_attr_target
+ffffffc008bba098 d dev_attr_fail
+ffffffc008bba0b8 d oops_limit
+ffffffc008bba0c0 d kern_exit_table
+ffffffc008bba140 d oops_count_attr
+ffffffc008bba160 d check_stack_usage.lowest_to_date
+ffffffc008bba168 D __SCK__tp_func_irq_handler_entry
+ffffffc008bba170 D __SCK__tp_func_irq_handler_exit
+ffffffc008bba178 D __SCK__tp_func_softirq_entry
+ffffffc008bba180 D __SCK__tp_func_softirq_exit
+ffffffc008bba188 D __SCK__tp_func_softirq_raise
+ffffffc008bba190 D __SCK__tp_func_tasklet_entry
+ffffffc008bba198 D __SCK__tp_func_tasklet_exit
+ffffffc008bba1a0 d trace_event_fields_irq_handler_entry
+ffffffc008bba218 d trace_event_type_funcs_irq_handler_entry
+ffffffc008bba238 d print_fmt_irq_handler_entry
+ffffffc008bba268 d event_irq_handler_entry
+ffffffc008bba2f8 d trace_event_fields_irq_handler_exit
+ffffffc008bba370 d trace_event_type_funcs_irq_handler_exit
+ffffffc008bba390 d print_fmt_irq_handler_exit
+ffffffc008bba3d0 d event_irq_handler_exit
+ffffffc008bba460 d trace_event_fields_softirq
+ffffffc008bba4b0 d trace_event_type_funcs_softirq
+ffffffc008bba4d0 d print_fmt_softirq
+ffffffc008bba630 d event_softirq_entry
+ffffffc008bba6c0 d event_softirq_exit
+ffffffc008bba750 d event_softirq_raise
+ffffffc008bba7e0 d trace_event_fields_tasklet
+ffffffc008bba830 d trace_event_type_funcs_tasklet
+ffffffc008bba850 d print_fmt_tasklet
+ffffffc008bba870 d event_tasklet_entry
+ffffffc008bba900 d event_tasklet_exit
+ffffffc008bba990 d softirq_threads
+ffffffc008bba9f0 D ioport_resource
+ffffffc008bbaa50 D iomem_resource
+ffffffc008bbaab0 d muxed_resource_wait
+ffffffc008bbaac8 d iomem_fs_type
+ffffffc008bbab10 d proc_do_static_key.static_key_mutex
+ffffffc008bbab40 d kernel_base_table.llvm.13241536184444368231
+ffffffc008bbabc0 d vm_base_table.llvm.13241536184444368231
+ffffffc008bbac40 d debug_base_table.llvm.13241536184444368231
+ffffffc008bbacc0 d dev_base_table.llvm.13241536184444368231
+ffffffc008bbad40 d sysctl_writes_strict
+ffffffc008bbad48 d kern_table
+ffffffc008bbb548 d vm_table
+ffffffc008bbbc48 d debug_table
+ffffffc008bbbcc8 D file_caps_enabled
+ffffffc008bbbcd0 D init_user_ns
+ffffffc008bbbf08 D root_user
+ffffffc008bbbfb0 D __SCK__tp_func_signal_generate
+ffffffc008bbbfb8 D __SCK__tp_func_signal_deliver
+ffffffc008bbbfc0 d trace_event_fields_signal_generate
+ffffffc008bbc100 d trace_event_type_funcs_signal_generate
+ffffffc008bbc120 d print_fmt_signal_generate
+ffffffc008bbc1a8 d event_signal_generate
+ffffffc008bbc238 d trace_event_fields_signal_deliver
+ffffffc008bbc328 d trace_event_type_funcs_signal_deliver
+ffffffc008bbc348 d print_fmt_signal_deliver
+ffffffc008bbc3c0 d event_signal_deliver
+ffffffc008bbc450 d print_dropped_signal.ratelimit_state
+ffffffc008bbc478 D overflowuid
+ffffffc008bbc47c D overflowgid
+ffffffc008bbc480 D fs_overflowuid
+ffffffc008bbc484 D fs_overflowgid
+ffffffc008bbc488 D uts_sem
+ffffffc008bbc4c8 d umhelper_sem.llvm.5184948946919138057
+ffffffc008bbc508 d usermodehelper_disabled_waitq.llvm.5184948946919138057
+ffffffc008bbc520 d usermodehelper_disabled.llvm.5184948946919138057
+ffffffc008bbc528 d running_helpers_waitq
+ffffffc008bbc540 d usermodehelper_bset
+ffffffc008bbc548 d usermodehelper_inheritable
+ffffffc008bbc550 D usermodehelper_table
+ffffffc008bbc610 D __SCK__tp_func_workqueue_queue_work
+ffffffc008bbc618 D __SCK__tp_func_workqueue_activate_work
+ffffffc008bbc620 D __SCK__tp_func_workqueue_execute_start
+ffffffc008bbc628 D __SCK__tp_func_workqueue_execute_end
+ffffffc008bbc630 d trace_event_fields_workqueue_queue_work
+ffffffc008bbc720 d trace_event_type_funcs_workqueue_queue_work
+ffffffc008bbc740 d print_fmt_workqueue_queue_work
+ffffffc008bbc7c8 d event_workqueue_queue_work
+ffffffc008bbc858 d trace_event_fields_workqueue_activate_work
+ffffffc008bbc8a8 d trace_event_type_funcs_workqueue_activate_work
+ffffffc008bbc8c8 d print_fmt_workqueue_activate_work
+ffffffc008bbc8e8 d event_workqueue_activate_work
+ffffffc008bbc978 d trace_event_fields_workqueue_execute_start
+ffffffc008bbc9f0 d trace_event_type_funcs_workqueue_execute_start
+ffffffc008bbca10 d print_fmt_workqueue_execute_start
+ffffffc008bbca50 d event_workqueue_execute_start
+ffffffc008bbcae0 d trace_event_fields_workqueue_execute_end
+ffffffc008bbcb58 d trace_event_type_funcs_workqueue_execute_end
+ffffffc008bbcb78 d print_fmt_workqueue_execute_end
+ffffffc008bbcbb8 d event_workqueue_execute_end
+ffffffc008bbcc48 d wq_pool_mutex
+ffffffc008bbcc78 d workqueues
+ffffffc008bbcc88 d worker_pool_idr
+ffffffc008bbcca0 d wq_pool_attach_mutex
+ffffffc008bbccd0 d wq_subsys
+ffffffc008bbcda8 d wq_sysfs_unbound_attrs
+ffffffc008bbce48 d wq_watchdog_touched
+ffffffc008bbce50 d wq_watchdog_thresh
+ffffffc008bbce58 d __cancel_work_timer.cancel_waitq
+ffffffc008bbce70 d wq_sysfs_cpumask_attr
+ffffffc008bbce90 d wq_sysfs_groups
+ffffffc008bbcea0 d wq_sysfs_attrs
+ffffffc008bbceb8 d dev_attr_per_cpu
+ffffffc008bbced8 d dev_attr_max_active
+ffffffc008bbcef8 D init_pid_ns
+ffffffc008bbcf78 D pid_max
+ffffffc008bbcf7c D pid_max_min
+ffffffc008bbcf80 D pid_max_max
+ffffffc008bbcf88 D init_struct_pid
+ffffffc008bbcff8 D text_mutex
+ffffffc008bbd028 d param_lock
+ffffffc008bbd058 D module_ktype
+ffffffc008bbd0a8 d kmalloced_params
+ffffffc008bbd0b8 d kthread_create_list
+ffffffc008bbd0c8 D init_nsproxy
+ffffffc008bbd110 D reboot_notifier_list
+ffffffc008bbd158 d kernel_attrs
+ffffffc008bbd1a8 d fscaps_attr
+ffffffc008bbd1c8 d uevent_seqnum_attr
+ffffffc008bbd1e8 d profiling_attr
+ffffffc008bbd208 d kexec_loaded_attr
+ffffffc008bbd228 d kexec_crash_loaded_attr
+ffffffc008bbd248 d kexec_crash_size_attr
+ffffffc008bbd268 d vmcoreinfo_attr
+ffffffc008bbd288 d rcu_expedited_attr
+ffffffc008bbd2a8 d rcu_normal_attr
+ffffffc008bbd2c8 d init_groups
+ffffffc008bbd2d0 D init_cred
+ffffffc008bbd358 D panic_reboot_mode
+ffffffc008bbd35c D reboot_default
+ffffffc008bbd360 D reboot_type
+ffffffc008bbd368 d power_off_prep_handler_list
+ffffffc008bbd3b0 d restart_prep_handler_list
+ffffffc008bbd3f8 D system_transition_mutex
+ffffffc008bbd428 d ctrl_alt_del.cad_work
+ffffffc008bbd458 d C_A_D
+ffffffc008bbd460 d poweroff_work
+ffffffc008bbd490 d poweroff_work
+ffffffc008bbd4c0 d reboot_work.llvm.8057704619303983170
+ffffffc008bbd4f0 d hw_protection_shutdown.allow_proceed
+ffffffc008bbd4f4 d poweroff_cmd
+ffffffc008bbd5f8 d run_cmd.envp
+ffffffc008bbd610 d hw_failure_emergency_poweroff_work
+ffffffc008bbd698 d reboot_attrs
+ffffffc008bbd6b0 d reboot_mode_attr
+ffffffc008bbd6d0 d reboot_cpu_attr
+ffffffc008bbd6f0 d kern_reboot_table
+ffffffc008bbd7b0 d next_cookie
+ffffffc008bbd7b8 d async_global_pending
+ffffffc008bbd7c8 d async_dfl_domain.llvm.4055576815006711874
+ffffffc008bbd7e0 d async_done
+ffffffc008bbd7f8 d smpboot_threads_lock
+ffffffc008bbd828 d hotplug_threads
+ffffffc008bbd838 D init_ucounts
+ffffffc008bbd8c8 d set_root
+ffffffc008bbd940 d user_table
+ffffffc008bbdc00 d ue_int_max
+ffffffc008bbdc08 D modprobe_path
+ffffffc008bbdd08 d kmod_concurrent_max
+ffffffc008bbdd10 d __request_module._rs
+ffffffc008bbdd38 d kmod_wq
+ffffffc008bbdd50 d __request_module._rs.1
+ffffffc008bbdd78 d __request_module._rs.3
+ffffffc008bbdda0 d call_modprobe.envp
+ffffffc008bbddc0 D __SCK__tp_func_sched_kthread_stop
+ffffffc008bbddc8 D __SCK__tp_func_sched_kthread_stop_ret
+ffffffc008bbddd0 D __SCK__tp_func_sched_kthread_work_queue_work
+ffffffc008bbddd8 D __SCK__tp_func_sched_kthread_work_execute_start
+ffffffc008bbdde0 D __SCK__tp_func_sched_kthread_work_execute_end
+ffffffc008bbdde8 D __SCK__tp_func_sched_waking
+ffffffc008bbddf0 D __SCK__tp_func_sched_wakeup
+ffffffc008bbddf8 D __SCK__tp_func_sched_wakeup_new
+ffffffc008bbde00 D __SCK__tp_func_sched_switch
+ffffffc008bbde08 D __SCK__tp_func_sched_migrate_task
+ffffffc008bbde10 D __SCK__tp_func_sched_process_free
+ffffffc008bbde18 D __SCK__tp_func_sched_process_exit
+ffffffc008bbde20 D __SCK__tp_func_sched_wait_task
+ffffffc008bbde28 D __SCK__tp_func_sched_process_wait
+ffffffc008bbde30 D __SCK__tp_func_sched_process_fork
+ffffffc008bbde38 D __SCK__tp_func_sched_process_exec
+ffffffc008bbde40 D __SCK__tp_func_sched_stat_wait
+ffffffc008bbde48 D __SCK__tp_func_sched_stat_sleep
+ffffffc008bbde50 D __SCK__tp_func_sched_stat_iowait
+ffffffc008bbde58 D __SCK__tp_func_sched_stat_blocked
+ffffffc008bbde60 D __SCK__tp_func_sched_blocked_reason
+ffffffc008bbde68 D __SCK__tp_func_sched_pi_setprio
+ffffffc008bbde70 D __SCK__tp_func_sched_process_hang
+ffffffc008bbde78 D __SCK__tp_func_sched_move_numa
+ffffffc008bbde80 D __SCK__tp_func_sched_stick_numa
+ffffffc008bbde88 D __SCK__tp_func_sched_swap_numa
+ffffffc008bbde90 D __SCK__tp_func_sched_wake_idle_without_ipi
+ffffffc008bbde98 D __SCK__tp_func_pelt_cfs_tp
+ffffffc008bbdea0 D __SCK__tp_func_pelt_rt_tp
+ffffffc008bbdea8 D __SCK__tp_func_pelt_dl_tp
+ffffffc008bbdeb0 D __SCK__tp_func_pelt_thermal_tp
+ffffffc008bbdeb8 D __SCK__tp_func_pelt_irq_tp
+ffffffc008bbdec0 D __SCK__tp_func_pelt_se_tp
+ffffffc008bbdec8 D __SCK__tp_func_sched_cpu_capacity_tp
+ffffffc008bbded0 D __SCK__tp_func_sched_overutilized_tp
+ffffffc008bbded8 D __SCK__tp_func_sched_util_est_cfs_tp
+ffffffc008bbdee0 D __SCK__tp_func_sched_util_est_se_tp
+ffffffc008bbdee8 D __SCK__tp_func_sched_update_nr_running_tp
+ffffffc008bbdef0 d trace_event_fields_sched_kthread_stop
+ffffffc008bbdf68 d trace_event_type_funcs_sched_kthread_stop
+ffffffc008bbdf88 d print_fmt_sched_kthread_stop
+ffffffc008bbdfb0 d event_sched_kthread_stop
+ffffffc008bbe040 d trace_event_fields_sched_kthread_stop_ret
+ffffffc008bbe090 d trace_event_type_funcs_sched_kthread_stop_ret
+ffffffc008bbe0b0 d print_fmt_sched_kthread_stop_ret
+ffffffc008bbe0c8 d event_sched_kthread_stop_ret
+ffffffc008bbe158 d trace_event_fields_sched_kthread_work_queue_work
+ffffffc008bbe1f8 d trace_event_type_funcs_sched_kthread_work_queue_work
+ffffffc008bbe218 d print_fmt_sched_kthread_work_queue_work
+ffffffc008bbe268 d event_sched_kthread_work_queue_work
+ffffffc008bbe2f8 d trace_event_fields_sched_kthread_work_execute_start
+ffffffc008bbe370 d trace_event_type_funcs_sched_kthread_work_execute_start
+ffffffc008bbe390 d print_fmt_sched_kthread_work_execute_start
+ffffffc008bbe3d0 d event_sched_kthread_work_execute_start
+ffffffc008bbe460 d trace_event_fields_sched_kthread_work_execute_end
+ffffffc008bbe4d8 d trace_event_type_funcs_sched_kthread_work_execute_end
+ffffffc008bbe4f8 d print_fmt_sched_kthread_work_execute_end
+ffffffc008bbe538 d event_sched_kthread_work_execute_end
+ffffffc008bbe5c8 d trace_event_fields_sched_wakeup_template
+ffffffc008bbe690 d trace_event_type_funcs_sched_wakeup_template
+ffffffc008bbe6b0 d print_fmt_sched_wakeup_template
+ffffffc008bbe710 d event_sched_waking
+ffffffc008bbe7a0 d event_sched_wakeup
+ffffffc008bbe830 d event_sched_wakeup_new
+ffffffc008bbe8c0 d trace_event_fields_sched_switch
+ffffffc008bbea00 d trace_event_type_funcs_sched_switch
+ffffffc008bbea20 d print_fmt_sched_switch
+ffffffc008bbed58 d event_sched_switch
+ffffffc008bbede8 d trace_event_fields_sched_migrate_task
+ffffffc008bbeed8 d trace_event_type_funcs_sched_migrate_task
+ffffffc008bbeef8 d print_fmt_sched_migrate_task
+ffffffc008bbef68 d event_sched_migrate_task
+ffffffc008bbeff8 d trace_event_fields_sched_process_template
+ffffffc008bbf098 d trace_event_type_funcs_sched_process_template
+ffffffc008bbf0b8 d print_fmt_sched_process_template
+ffffffc008bbf0f8 d event_sched_process_free
+ffffffc008bbf188 d event_sched_process_exit
+ffffffc008bbf218 d event_sched_wait_task
+ffffffc008bbf2a8 d trace_event_fields_sched_process_wait
+ffffffc008bbf348 d trace_event_type_funcs_sched_process_wait
+ffffffc008bbf368 d print_fmt_sched_process_wait
+ffffffc008bbf3a8 d event_sched_process_wait
+ffffffc008bbf438 d trace_event_fields_sched_process_fork
+ffffffc008bbf500 d trace_event_type_funcs_sched_process_fork
+ffffffc008bbf520 d print_fmt_sched_process_fork
+ffffffc008bbf590 d event_sched_process_fork
+ffffffc008bbf620 d trace_event_fields_sched_process_exec
+ffffffc008bbf6c0 d trace_event_type_funcs_sched_process_exec
+ffffffc008bbf6e0 d print_fmt_sched_process_exec
+ffffffc008bbf730 d event_sched_process_exec
+ffffffc008bbf7c0 d trace_event_fields_sched_stat_template
+ffffffc008bbf860 d trace_event_type_funcs_sched_stat_template
+ffffffc008bbf880 d print_fmt_sched_stat_template
+ffffffc008bbf8d8 d event_sched_stat_wait
+ffffffc008bbf968 d event_sched_stat_sleep
+ffffffc008bbf9f8 d event_sched_stat_iowait
+ffffffc008bbfa88 d event_sched_stat_blocked
+ffffffc008bbfb18 d trace_event_fields_sched_blocked_reason
+ffffffc008bbfbb8 d trace_event_type_funcs_sched_blocked_reason
+ffffffc008bbfbd8 d print_fmt_sched_blocked_reason
+ffffffc008bbfc20 d event_sched_blocked_reason
+ffffffc008bbfcb0 d trace_event_fields_sched_stat_runtime
+ffffffc008bbfd78 d trace_event_type_funcs_sched_stat_runtime
+ffffffc008bbfd98 d print_fmt_sched_stat_runtime
+ffffffc008bbfe28 d event_sched_stat_runtime
+ffffffc008bbfeb8 d trace_event_fields_sched_pi_setprio
+ffffffc008bbff80 d trace_event_type_funcs_sched_pi_setprio
+ffffffc008bbffa0 d print_fmt_sched_pi_setprio
+ffffffc008bbfff8 d event_sched_pi_setprio
+ffffffc008bc0088 d trace_event_fields_sched_process_hang
+ffffffc008bc0100 d trace_event_type_funcs_sched_process_hang
+ffffffc008bc0120 d print_fmt_sched_process_hang
+ffffffc008bc0148 d event_sched_process_hang
+ffffffc008bc01d8 d trace_event_fields_sched_move_numa
+ffffffc008bc0318 d trace_event_type_funcs_sched_move_numa
+ffffffc008bc0338 d print_fmt_sched_move_numa
+ffffffc008bc03d8 d event_sched_move_numa
+ffffffc008bc0468 d trace_event_fields_sched_numa_pair_template
+ffffffc008bc0620 d trace_event_type_funcs_sched_numa_pair_template
+ffffffc008bc0640 d print_fmt_sched_numa_pair_template
+ffffffc008bc0748 d event_sched_stick_numa
+ffffffc008bc07d8 d event_sched_swap_numa
+ffffffc008bc0868 d trace_event_fields_sched_wake_idle_without_ipi
+ffffffc008bc08b8 d trace_event_type_funcs_sched_wake_idle_without_ipi
+ffffffc008bc08d8 d print_fmt_sched_wake_idle_without_ipi
+ffffffc008bc08f0 d event_sched_wake_idle_without_ipi
+ffffffc008bc0980 d sched_core_sysctls
+ffffffc008bc0a00 D __SCK__tp_func_sched_stat_runtime
+ffffffc008bc0a08 D balance_push_callback
+ffffffc008bc0a18 d sched_nr_latency
+ffffffc008bc0a1c d normalized_sysctl_sched_min_granularity
+ffffffc008bc0a20 d normalized_sysctl_sched_latency
+ffffffc008bc0a24 d normalized_sysctl_sched_wakeup_granularity
+ffffffc008bc0a28 d sched_fair_sysctls
+ffffffc008bc0aa8 D sysctl_sched_latency
+ffffffc008bc0aac D sysctl_sched_min_granularity
+ffffffc008bc0ab0 D sysctl_sched_idle_min_granularity
+ffffffc008bc0ab4 D sysctl_sched_wakeup_granularity
+ffffffc008bc0ab8 D sysctl_sched_tunable_scaling
+ffffffc008bc0ac0 d sched_pelt_multiplier.mutex
+ffffffc008bc0af0 d sysctl_sched_pelt_multiplier
+ffffffc008bc0af4 d sysctl_sched_dl_period_max
+ffffffc008bc0af8 d sysctl_sched_dl_period_min
+ffffffc008bc0b00 d sched_rt_sysctls
+ffffffc008bc0c00 d sysctl_sched_rr_timeslice
+ffffffc008bc0c08 d sched_rt_handler.mutex
+ffffffc008bc0c38 d sched_rr_handler.mutex
+ffffffc008bc0c68 d sched_pelt_sysctls
+ffffffc008bc0ce8 d sched_dl_sysctls
+ffffffc008bc0da8 D sched_rr_timeslice
+ffffffc008bc0dac D sysctl_sched_rt_runtime
+ffffffc008bc0db0 D sysctl_sched_rt_period
+ffffffc008bc0db8 d resched_latency_warn.latency_check_ratelimit
+ffffffc008bc0de0 d sched_domain_topology
+ffffffc008bc0de8 D psi_cgroups_enabled
+ffffffc008bc0df8 D psi_system
+ffffffc008bc1138 d psi_enable
+ffffffc008bc113c d default_relax_domain_level
+ffffffc008bc1140 d default_topology
+ffffffc008bc1200 d asym_cap_list
+ffffffc008bc1210 D sched_domains_mutex
+ffffffc008bc1240 D sched_feat_keys
+ffffffc008bc13e0 D __SCK__tp_func_contention_begin
+ffffffc008bc13e8 D __SCK__tp_func_contention_end
+ffffffc008bc13f0 d trace_event_fields_contention_begin
+ffffffc008bc1468 d trace_event_type_funcs_contention_begin
+ffffffc008bc1488 d print_fmt_contention_begin
+ffffffc008bc1558 d event_contention_begin
+ffffffc008bc15e8 d trace_event_fields_contention_end
+ffffffc008bc1660 d trace_event_type_funcs_contention_end
+ffffffc008bc1680 d print_fmt_contention_end
+ffffffc008bc16a8 d event_contention_end
+ffffffc008bc1738 D max_lock_depth
+ffffffc008bc1740 d pm_chain_head.llvm.11836944113996509966
+ffffffc008bc1788 d attr_groups
+ffffffc008bc17a0 d g
+ffffffc008bc17e8 d state_attr
+ffffffc008bc1808 d pm_async_attr
+ffffffc008bc1828 d wakeup_count_attr
+ffffffc008bc1848 d mem_sleep_attr
+ffffffc008bc1868 d sync_on_suspend_attr
+ffffffc008bc1888 d wake_lock_attr
+ffffffc008bc18a8 d wake_unlock_attr
+ffffffc008bc18c8 d pm_freeze_timeout_attr
+ffffffc008bc18e8 d suspend_attrs
+ffffffc008bc1958 d success
+ffffffc008bc1978 d fail
+ffffffc008bc1998 d failed_freeze
+ffffffc008bc19b8 d failed_prepare
+ffffffc008bc19d8 d failed_suspend
+ffffffc008bc19f8 d failed_suspend_late
+ffffffc008bc1a18 d failed_suspend_noirq
+ffffffc008bc1a38 d failed_resume
+ffffffc008bc1a58 d failed_resume_early
+ffffffc008bc1a78 d failed_resume_noirq
+ffffffc008bc1a98 d last_failed_dev
+ffffffc008bc1ab8 d last_failed_errno
+ffffffc008bc1ad8 d last_failed_step
+ffffffc008bc1af8 D pm_async_enabled
+ffffffc008bc1afc D sync_on_suspend_enabled
+ffffffc008bc1b00 d vt_switch_mutex
+ffffffc008bc1b30 d pm_vt_switch_list
+ffffffc008bc1b40 D mem_sleep_default
+ffffffc008bc1b48 d s2idle_wait_head
+ffffffc008bc1b60 D mem_sleep_current
+ffffffc008bc1b68 d wakelocks_lock
+ffffffc008bc1b98 d parent_irqs
+ffffffc008bc1ba8 d leaf_irqs
+ffffffc008bc1bb8 d wakeup_reason_pm_notifier_block
+ffffffc008bc1bd0 d attr_group
+ffffffc008bc1bf8 d attrs
+ffffffc008bc1c10 d resume_reason
+ffffffc008bc1c30 d suspend_time
+ffffffc008bc1c50 D __SCK__tp_func_console
+ffffffc008bc1c58 d trace_event_fields_console
+ffffffc008bc1ca8 d trace_event_type_funcs_console
+ffffffc008bc1cc8 d print_fmt_console
+ffffffc008bc1ce0 d event_console
+ffffffc008bc1d70 D log_wait
+ffffffc008bc1d88 d log_buf
+ffffffc008bc1d90 d log_buf_len
+ffffffc008bc1d98 d prb
+ffffffc008bc1da0 d printk_rb_static
+ffffffc008bc1df8 d printk_time
+ffffffc008bc1dfc d do_syslog.saved_console_loglevel
+ffffffc008bc1e00 d syslog_lock
+ffffffc008bc1e30 D console_suspend_enabled
+ffffffc008bc1e38 d console_sem
+ffffffc008bc1e50 d preferred_console
+ffffffc008bc1e58 d dump_list
+ffffffc008bc1e68 d printk_cpu_sync_owner
+ffffffc008bc1e70 d _printk_rb_static_descs
+ffffffc008bd9e70 d _printk_rb_static_infos
+ffffffc008c31e70 D console_printk
+ffffffc008c31e80 D printk_ratelimit_state
+ffffffc008c31ea8 D devkmsg_log_str
+ffffffc008c31eb8 d printk_sysctls.llvm.6705054073016716196
+ffffffc008c320b8 D nr_irqs
+ffffffc008c320c0 d irq_desc_tree.llvm.3623140331279670652
+ffffffc008c320d0 d sparse_irq_lock.llvm.3623140331279670652
+ffffffc008c32100 d irq_kobj_type
+ffffffc008c32150 d irq_groups
+ffffffc008c32160 d irq_attrs
+ffffffc008c321a0 d per_cpu_count_attr
+ffffffc008c321c0 d chip_name_attr
+ffffffc008c321e0 d hwirq_attr
+ffffffc008c32200 d type_attr
+ffffffc008c32220 d wakeup_attr
+ffffffc008c32240 d name_attr
+ffffffc008c32260 d actions_attr
+ffffffc008c32280 d print_irq_desc.ratelimit
+ffffffc008c322a8 d print_irq_desc.ratelimit
+ffffffc008c322d0 d poll_spurious_irq_timer
+ffffffc008c32308 d report_bad_irq.count
+ffffffc008c32310 d resend_tasklet
+ffffffc008c32340 D chained_action
+ffffffc008c323c0 D no_irq_chip
+ffffffc008c324c8 D dummy_irq_chip
+ffffffc008c325d0 d probing_active
+ffffffc008c32600 d irq_domain_mutex
+ffffffc008c32630 d irq_domain_list
+ffffffc008c32640 d register_irq_proc.register_lock
+ffffffc008c32670 d migrate_one_irq._rs
+ffffffc008c32698 d irq_pm_syscore_ops
+ffffffc008c326c0 d msi_domain_ops_default
+ffffffc008c32700 D __SCK__tp_func_rcu_utilization
+ffffffc008c32708 D __SCK__tp_func_rcu_grace_period
+ffffffc008c32710 D __SCK__tp_func_rcu_future_grace_period
+ffffffc008c32718 D __SCK__tp_func_rcu_grace_period_init
+ffffffc008c32720 D __SCK__tp_func_rcu_exp_grace_period
+ffffffc008c32728 D __SCK__tp_func_rcu_exp_funnel_lock
+ffffffc008c32730 D __SCK__tp_func_rcu_nocb_wake
+ffffffc008c32738 D __SCK__tp_func_rcu_preempt_task
+ffffffc008c32740 D __SCK__tp_func_rcu_unlock_preempted_task
+ffffffc008c32748 D __SCK__tp_func_rcu_quiescent_state_report
+ffffffc008c32750 D __SCK__tp_func_rcu_fqs
+ffffffc008c32758 D __SCK__tp_func_rcu_stall_warning
+ffffffc008c32760 D __SCK__tp_func_rcu_dyntick
+ffffffc008c32768 D __SCK__tp_func_rcu_callback
+ffffffc008c32770 D __SCK__tp_func_rcu_segcb_stats
+ffffffc008c32778 D __SCK__tp_func_rcu_kvfree_callback
+ffffffc008c32780 D __SCK__tp_func_rcu_batch_start
+ffffffc008c32788 D __SCK__tp_func_rcu_invoke_callback
+ffffffc008c32790 D __SCK__tp_func_rcu_invoke_kvfree_callback
+ffffffc008c32798 D __SCK__tp_func_rcu_invoke_kfree_bulk_callback
+ffffffc008c327a0 D __SCK__tp_func_rcu_batch_end
+ffffffc008c327a8 D __SCK__tp_func_rcu_torture_read
+ffffffc008c327b0 D __SCK__tp_func_rcu_barrier
+ffffffc008c327b8 d trace_event_fields_rcu_utilization
+ffffffc008c32808 d trace_event_type_funcs_rcu_utilization
+ffffffc008c32828 d print_fmt_rcu_utilization
+ffffffc008c32838 d event_rcu_utilization
+ffffffc008c328c8 d trace_event_fields_rcu_grace_period
+ffffffc008c32968 d trace_event_type_funcs_rcu_grace_period
+ffffffc008c32988 d print_fmt_rcu_grace_period
+ffffffc008c329c0 d event_rcu_grace_period
+ffffffc008c32a50 d trace_event_fields_rcu_future_grace_period
+ffffffc008c32b90 d trace_event_type_funcs_rcu_future_grace_period
+ffffffc008c32bb0 d print_fmt_rcu_future_grace_period
+ffffffc008c32c38 d event_rcu_future_grace_period
+ffffffc008c32cc8 d trace_event_fields_rcu_grace_period_init
+ffffffc008c32de0 d trace_event_type_funcs_rcu_grace_period_init
+ffffffc008c32e00 d print_fmt_rcu_grace_period_init
+ffffffc008c32e68 d event_rcu_grace_period_init
+ffffffc008c32ef8 d trace_event_fields_rcu_exp_grace_period
+ffffffc008c32f98 d trace_event_type_funcs_rcu_exp_grace_period
+ffffffc008c32fb8 d print_fmt_rcu_exp_grace_period
+ffffffc008c32ff0 d event_rcu_exp_grace_period
+ffffffc008c33080 d trace_event_fields_rcu_exp_funnel_lock
+ffffffc008c33170 d trace_event_type_funcs_rcu_exp_funnel_lock
+ffffffc008c33190 d print_fmt_rcu_exp_funnel_lock
+ffffffc008c331e8 d event_rcu_exp_funnel_lock
+ffffffc008c33278 d trace_event_fields_rcu_nocb_wake
+ffffffc008c33318 d trace_event_type_funcs_rcu_nocb_wake
+ffffffc008c33338 d print_fmt_rcu_nocb_wake
+ffffffc008c33368 d event_rcu_nocb_wake
+ffffffc008c333f8 d trace_event_fields_rcu_preempt_task
+ffffffc008c33498 d trace_event_type_funcs_rcu_preempt_task
+ffffffc008c334b8 d print_fmt_rcu_preempt_task
+ffffffc008c334f0 d event_rcu_preempt_task
+ffffffc008c33580 d trace_event_fields_rcu_unlock_preempted_task
+ffffffc008c33620 d trace_event_type_funcs_rcu_unlock_preempted_task
+ffffffc008c33640 d print_fmt_rcu_unlock_preempted_task
+ffffffc008c33678 d event_rcu_unlock_preempted_task
+ffffffc008c33708 d trace_event_fields_rcu_quiescent_state_report
+ffffffc008c33870 d trace_event_type_funcs_rcu_quiescent_state_report
+ffffffc008c33890 d print_fmt_rcu_quiescent_state_report
+ffffffc008c33918 d event_rcu_quiescent_state_report
+ffffffc008c339a8 d trace_event_fields_rcu_fqs
+ffffffc008c33a70 d trace_event_type_funcs_rcu_fqs
+ffffffc008c33a90 d print_fmt_rcu_fqs
+ffffffc008c33ad8 d event_rcu_fqs
+ffffffc008c33b68 d trace_event_fields_rcu_stall_warning
+ffffffc008c33be0 d trace_event_type_funcs_rcu_stall_warning
+ffffffc008c33c00 d print_fmt_rcu_stall_warning
+ffffffc008c33c20 d event_rcu_stall_warning
+ffffffc008c33cb0 d trace_event_fields_rcu_dyntick
+ffffffc008c33d78 d trace_event_type_funcs_rcu_dyntick
+ffffffc008c33d98 d print_fmt_rcu_dyntick
+ffffffc008c33df8 d event_rcu_dyntick
+ffffffc008c33e88 d trace_event_fields_rcu_callback
+ffffffc008c33f50 d trace_event_type_funcs_rcu_callback
+ffffffc008c33f70 d print_fmt_rcu_callback
+ffffffc008c33fb8 d event_rcu_callback
+ffffffc008c34048 d trace_event_fields_rcu_segcb_stats
+ffffffc008c340e8 d trace_event_type_funcs_rcu_segcb_stats
+ffffffc008c34108 d print_fmt_rcu_segcb_stats
+ffffffc008c34208 d event_rcu_segcb_stats
+ffffffc008c34298 d trace_event_fields_rcu_kvfree_callback
+ffffffc008c34360 d trace_event_type_funcs_rcu_kvfree_callback
+ffffffc008c34380 d print_fmt_rcu_kvfree_callback
+ffffffc008c343d0 d event_rcu_kvfree_callback
+ffffffc008c34460 d trace_event_fields_rcu_batch_start
+ffffffc008c34500 d trace_event_type_funcs_rcu_batch_start
+ffffffc008c34520 d print_fmt_rcu_batch_start
+ffffffc008c34560 d event_rcu_batch_start
+ffffffc008c345f0 d trace_event_fields_rcu_invoke_callback
+ffffffc008c34690 d trace_event_type_funcs_rcu_invoke_callback
+ffffffc008c346b0 d print_fmt_rcu_invoke_callback
+ffffffc008c346e8 d event_rcu_invoke_callback
+ffffffc008c34778 d trace_event_fields_rcu_invoke_kvfree_callback
+ffffffc008c34818 d trace_event_type_funcs_rcu_invoke_kvfree_callback
+ffffffc008c34838 d print_fmt_rcu_invoke_kvfree_callback
+ffffffc008c34878 d event_rcu_invoke_kvfree_callback
+ffffffc008c34908 d trace_event_fields_rcu_invoke_kfree_bulk_callback
+ffffffc008c349a8 d trace_event_type_funcs_rcu_invoke_kfree_bulk_callback
+ffffffc008c349c8 d print_fmt_rcu_invoke_kfree_bulk_callback
+ffffffc008c34a10 d event_rcu_invoke_kfree_bulk_callback
+ffffffc008c34aa0 d trace_event_fields_rcu_batch_end
+ffffffc008c34bb8 d trace_event_type_funcs_rcu_batch_end
+ffffffc008c34bd8 d print_fmt_rcu_batch_end
+ffffffc008c34c78 d event_rcu_batch_end
+ffffffc008c34d08 d trace_event_fields_rcu_torture_read
+ffffffc008c34df8 d trace_event_type_funcs_rcu_torture_read
+ffffffc008c34e18 d print_fmt_rcu_torture_read
+ffffffc008c34e80 d event_rcu_torture_read
+ffffffc008c34f10 d trace_event_fields_rcu_barrier
+ffffffc008c35000 d trace_event_type_funcs_rcu_barrier
+ffffffc008c35020 d print_fmt_rcu_barrier
+ffffffc008c35078 d event_rcu_barrier
+ffffffc008c35108 d rcu_expedited_nesting
+ffffffc008c35110 d rcu_tasks
+ffffffc008c35258 d tasks_rcu_exit_srcu
+ffffffc008c35438 d exp_holdoff
+ffffffc008c35440 d counter_wrap_check
+ffffffc008c35448 d convert_to_big
+ffffffc008c35450 d srcu_retry_check_delay
+ffffffc008c35458 d srcu_max_nodelay_phase
+ffffffc008c35460 d srcu_max_nodelay
+ffffffc008c35468 d srcu_boot_list
+ffffffc008c35478 d srcu_module_nb
+ffffffc008c35490 d rcu_name
+ffffffc008c3549c d use_softirq
+ffffffc008c354a0 d rcu_fanout_leaf
+ffffffc008c354a4 D num_rcu_lvl
+ffffffc008c354ac d kthread_prio
+ffffffc008c354b0 d rcu_min_cached_objs
+ffffffc008c354b4 d rcu_delay_page_cache_fill_msec
+ffffffc008c354b8 d blimit
+ffffffc008c354c0 d qhimark
+ffffffc008c354c8 d qlowmark
+ffffffc008c354d0 d qovld
+ffffffc008c354d8 d rcu_divisor
+ffffffc008c354e0 d rcu_resched_ns
+ffffffc008c354e8 d jiffies_till_sched_qs
+ffffffc008c354f0 d jiffies_till_first_fqs
+ffffffc008c354f8 d jiffies_till_next_fqs
+ffffffc008c35500 d rcu_state
+ffffffc008c35f80 d rcu_init.rcu_pm_notify_nb
+ffffffc008c35f98 d qovld_calc
+ffffffc008c35fa0 d nocb_nobypass_lim_per_jiffy
+ffffffc008c35fa4 d rcu_nocb_gp_stride
+ffffffc008c35fa8 d rcu_cpu_thread_spec
+ffffffc008c36008 d kfree_rcu_shrinker
+ffffffc008c36040 d rcu_panic_block
+ffffffc008c36058 D __SCK__tp_func_swiotlb_bounced
+ffffffc008c36060 d trace_event_fields_swiotlb_bounced
+ffffffc008c36150 d trace_event_type_funcs_swiotlb_bounced
+ffffffc008c36170 d print_fmt_swiotlb_bounced
+ffffffc008c36220 d event_swiotlb_bounced
+ffffffc008c362b0 d default_nslabs
+ffffffc008c362b8 d swiotlb_tbl_map_single._rs
+ffffffc008c362e0 d swiotlb_tbl_map_single._rs.12
+ffffffc008c36308 D __SCK__tp_func_module_load
+ffffffc008c36310 D __SCK__tp_func_module_free
+ffffffc008c36318 D __SCK__tp_func_module_request
+ffffffc008c36320 d trace_event_fields_module_load
+ffffffc008c36398 d trace_event_type_funcs_module_load
+ffffffc008c363b8 d print_fmt_module_load
+ffffffc008c36460 d event_module_load
+ffffffc008c364f0 d trace_event_fields_module_free
+ffffffc008c36540 d trace_event_type_funcs_module_free
+ffffffc008c36560 d print_fmt_module_free
+ffffffc008c36578 d event_module_free
+ffffffc008c36608 d trace_event_fields_module_request
+ffffffc008c366a8 d trace_event_type_funcs_module_request
+ffffffc008c366c8 d print_fmt_module_request
+ffffffc008c36718 d event_module_request
+ffffffc008c367a8 D module_mutex
+ffffffc008c367d8 d module_notify_list.llvm.11009985442442523538
+ffffffc008c36820 D module_uevent
+ffffffc008c36858 d modinfo_version
+ffffffc008c36890 d modinfo_srcversion
+ffffffc008c368c8 d modinfo_scmversion
+ffffffc008c36900 d modinfo_initstate
+ffffffc008c36938 d modinfo_coresize
+ffffffc008c36970 d modinfo_initsize
+ffffffc008c369a8 d modinfo_taint
+ffffffc008c369e0 d module_wq
+ffffffc008c369f8 d init_free_wq
+ffffffc008c36a28 D modules
+ffffffc008c36a38 D modinfo_attrs_count
+ffffffc008c36a40 D modinfo_attrs
+ffffffc008c36a88 d task_exit_notifier.llvm.17098145561721510979
+ffffffc008c36ad0 d munmap_notifier.llvm.17098145561721510979
+ffffffc008c36b18 d profile_flip_mutex
+ffffffc008c36b48 D __SCK__tp_func_timer_init
+ffffffc008c36b50 D __SCK__tp_func_timer_start
+ffffffc008c36b58 D __SCK__tp_func_timer_expire_entry
+ffffffc008c36b60 D __SCK__tp_func_timer_expire_exit
+ffffffc008c36b68 D __SCK__tp_func_timer_cancel
+ffffffc008c36b70 D __SCK__tp_func_hrtimer_init
+ffffffc008c36b78 D __SCK__tp_func_hrtimer_start
+ffffffc008c36b80 D __SCK__tp_func_hrtimer_expire_entry
+ffffffc008c36b88 D __SCK__tp_func_hrtimer_expire_exit
+ffffffc008c36b90 D __SCK__tp_func_hrtimer_cancel
+ffffffc008c36b98 D __SCK__tp_func_itimer_state
+ffffffc008c36ba0 D __SCK__tp_func_itimer_expire
+ffffffc008c36ba8 D __SCK__tp_func_tick_stop
+ffffffc008c36bb0 d trace_event_fields_timer_class
+ffffffc008c36c00 d trace_event_type_funcs_timer_class
+ffffffc008c36c20 d print_fmt_timer_class
+ffffffc008c36c38 d event_timer_init
+ffffffc008c36cc8 d trace_event_fields_timer_start
+ffffffc008c36db8 d trace_event_type_funcs_timer_start
+ffffffc008c36dd8 d print_fmt_timer_start
+ffffffc008c36f40 d event_timer_start
+ffffffc008c36fd0 d trace_event_fields_timer_expire_entry
+ffffffc008c37098 d trace_event_type_funcs_timer_expire_entry
+ffffffc008c370b8 d print_fmt_timer_expire_entry
+ffffffc008c37118 d event_timer_expire_entry
+ffffffc008c371a8 d event_timer_expire_exit
+ffffffc008c37238 d event_timer_cancel
+ffffffc008c372c8 d trace_event_fields_hrtimer_init
+ffffffc008c37368 d trace_event_type_funcs_hrtimer_init
+ffffffc008c37388 d print_fmt_hrtimer_init
+ffffffc008c375a0 d event_hrtimer_init
+ffffffc008c37630 d trace_event_fields_hrtimer_start
+ffffffc008c37720 d trace_event_type_funcs_hrtimer_start
+ffffffc008c37740 d print_fmt_hrtimer_start
+ffffffc008c37950 d event_hrtimer_start
+ffffffc008c379e0 d trace_event_fields_hrtimer_expire_entry
+ffffffc008c37a80 d trace_event_type_funcs_hrtimer_expire_entry
+ffffffc008c37aa0 d print_fmt_hrtimer_expire_entry
+ffffffc008c37b00 d event_hrtimer_expire_entry
+ffffffc008c37b90 d trace_event_fields_hrtimer_class
+ffffffc008c37be0 d trace_event_type_funcs_hrtimer_class
+ffffffc008c37c00 d print_fmt_hrtimer_class
+ffffffc008c37c20 d event_hrtimer_expire_exit
+ffffffc008c37cb0 d event_hrtimer_cancel
+ffffffc008c37d40 d trace_event_fields_itimer_state
+ffffffc008c37e58 d trace_event_type_funcs_itimer_state
+ffffffc008c37e78 d print_fmt_itimer_state
+ffffffc008c37f30 d event_itimer_state
+ffffffc008c37fc0 d trace_event_fields_itimer_expire
+ffffffc008c38060 d trace_event_type_funcs_itimer_expire
+ffffffc008c38080 d print_fmt_itimer_expire
+ffffffc008c380c8 d event_itimer_expire
+ffffffc008c38158 d trace_event_fields_tick_stop
+ffffffc008c381d0 d trace_event_type_funcs_tick_stop
+ffffffc008c381f0 d print_fmt_tick_stop
+ffffffc008c38340 d event_tick_stop
+ffffffc008c383d0 d timer_update_work.llvm.4747649932514714841
+ffffffc008c38400 d timer_sysctl
+ffffffc008c38480 d sysctl_timer_migration
+ffffffc008c38488 d timer_keys_mutex
+ffffffc008c384b8 d hrtimer_work.llvm.16767609905546697516
+ffffffc008c38500 d migration_cpu_base
+ffffffc008c38740 d tk_fast_mono
+ffffffc008c387c0 d tk_fast_raw
+ffffffc008c38838 d dummy_clock
+ffffffc008c388d0 d timekeeping_syscore_ops
+ffffffc008c388f8 D tick_usec
+ffffffc008c38900 d time_status
+ffffffc008c38908 d time_maxerror
+ffffffc008c38910 d time_esterror
+ffffffc008c38918 d ntp_next_leap_sec
+ffffffc008c38920 d sync_work
+ffffffc008c38950 d time_constant
+ffffffc008c38958 d sync_hw_clock.offset_nsec
+ffffffc008c38960 d clocksource_list
+ffffffc008c38970 d clocksource_mutex
+ffffffc008c389a0 d clocksource_subsys
+ffffffc008c38a78 d device_clocksource
+ffffffc008c38df0 d clocksource_groups
+ffffffc008c38e00 d clocksource_attrs
+ffffffc008c38e20 d dev_attr_current_clocksource
+ffffffc008c38e40 d dev_attr_unbind_clocksource
+ffffffc008c38e60 d dev_attr_available_clocksource
+ffffffc008c38e80 d clocksource_jiffies
+ffffffc008c38f18 D __SCK__tp_func_alarmtimer_suspend
+ffffffc008c38f20 D __SCK__tp_func_alarmtimer_fired
+ffffffc008c38f28 D __SCK__tp_func_alarmtimer_start
+ffffffc008c38f30 D __SCK__tp_func_alarmtimer_cancel
+ffffffc008c38f38 d trace_event_fields_alarmtimer_suspend
+ffffffc008c38fb0 d trace_event_type_funcs_alarmtimer_suspend
+ffffffc008c38fd0 d print_fmt_alarmtimer_suspend
+ffffffc008c390e8 d event_alarmtimer_suspend
+ffffffc008c39178 d trace_event_fields_alarm_class
+ffffffc008c39240 d trace_event_type_funcs_alarm_class
+ffffffc008c39260 d print_fmt_alarm_class
+ffffffc008c39398 d event_alarmtimer_fired
+ffffffc008c39428 d event_alarmtimer_start
+ffffffc008c394b8 d event_alarmtimer_cancel
+ffffffc008c39548 d alarmtimer_driver
+ffffffc008c39638 d alarmtimer_rtc_interface
+ffffffc008c39660 d clockevents_mutex
+ffffffc008c39690 d clockevent_devices
+ffffffc008c396a0 d clockevents_released
+ffffffc008c396b0 d clockevents_subsys
+ffffffc008c39788 d dev_attr_current_device
+ffffffc008c397a8 d dev_attr_unbind_device
+ffffffc008c397c8 d tick_bc_dev
+ffffffc008c39b40 d ce_broadcast_hrtimer.llvm.733442964656157889
+ffffffc008c39c40 d irqtime
+ffffffc008c39c80 d cd
+ffffffc008c39cf0 d sched_clock_ops
+ffffffc008c39d18 d futex_atomic_op_inuser._rs
+ffffffc008c39d40 D setup_max_cpus
+ffffffc008c39d48 d kexec_core_sysctls
+ffffffc008c39dc8 D crashk_low_res
+ffffffc008c39e28 D crashk_res
+ffffffc008c39e88 d stop_cpus_mutex
+ffffffc008c39eb8 d cpu_stop_threads
+ffffffc008c39f18 d audit_failure
+ffffffc008c39f1c d audit_backlog_limit
+ffffffc008c39f20 d audit_backlog_wait_time
+ffffffc008c39f28 d kauditd_wait
+ffffffc008c39f40 d audit_backlog_wait
+ffffffc008c39f58 d audit_sig_pid
+ffffffc008c39f5c d audit_sig_uid.0
+ffffffc008c39f60 d af
+ffffffc008c39f70 d audit_rules_list
+ffffffc008c39ff0 d prio_high
+ffffffc008c39ff8 d prio_low
+ffffffc008c3a000 D audit_filter_mutex
+ffffffc008c3a030 D audit_filter_list
+ffffffc008c3a0b0 d prune_list
+ffffffc008c3a0c0 d tree_list
+ffffffc008c3a0d0 d panic_block
+ffffffc008c3a0e8 d hung_task_init.hungtask_pm_notify_nb
+ffffffc008c3a100 d hung_task_sysctls
+ffffffc008c3a2c0 D watchdog_cpumask_bits
+ffffffc008c3a2c8 d watchdog_mutex.llvm.9223971397601822148
+ffffffc008c3a2f8 d watchdog_sysctls
+ffffffc008c3a4f8 d seccomp_actions_logged
+ffffffc008c3a500 d seccomp_sysctl_path
+ffffffc008c3a518 d seccomp_sysctl_table
+ffffffc008c3a5d8 d uts_kern_table
+ffffffc008c3a798 d hostname_poll
+ffffffc008c3a7b8 d domainname_poll
+ffffffc008c3a7d8 d uts_root_table
+ffffffc008c3a858 D tracepoint_srcu
+ffffffc008c3aa38 d tracepoints_mutex
+ffffffc008c3aa68 d tracepoint_module_list_mutex
+ffffffc008c3aa98 d tracepoint_notify_list
+ffffffc008c3aae0 d tracepoint_module_list
+ffffffc008c3aaf0 d tracepoint_module_nb
+ffffffc008c3ab08 d ftrace_export_lock
+ffffffc008c3ab38 D ftrace_trace_arrays
+ffffffc008c3ab48 D trace_types_lock
+ffffffc008c3ab78 d global_trace
+ffffffc008c3acb0 d tracepoint_printk_mutex
+ffffffc008c3ace0 d trace_options
+ffffffc008c3adb0 d trace_buf_size
+ffffffc008c3adb8 d tracing_err_log_lock
+ffffffc008c3ade8 d all_cpu_access_lock
+ffffffc008c3ae28 d trace_module_nb
+ffffffc008c3ae40 d trace_module_nb
+ffffffc008c3ae58 d trace_panic_notifier
+ffffffc008c3ae70 d trace_die_notifier
+ffffffc008c3ae88 D trace_event_sem
+ffffffc008c3aec8 d next_event_type
+ffffffc008c3aed0 d ftrace_event_list
+ffffffc008c3aee0 d trace_fn_event
+ffffffc008c3af10 d trace_ctx_event
+ffffffc008c3af40 d trace_wake_event
+ffffffc008c3af70 d trace_stack_event
+ffffffc008c3afa0 d trace_user_stack_event
+ffffffc008c3afd0 d trace_bputs_event
+ffffffc008c3b000 d trace_bprint_event
+ffffffc008c3b030 d trace_print_event
+ffffffc008c3b060 d trace_hwlat_event
+ffffffc008c3b090 d trace_osnoise_event
+ffffffc008c3b0c0 d trace_timerlat_event
+ffffffc008c3b0f0 d trace_raw_data_event
+ffffffc008c3b120 d trace_func_repeats_event
+ffffffc008c3b150 d trace_fn_funcs
+ffffffc008c3b170 d trace_ctx_funcs
+ffffffc008c3b190 d trace_wake_funcs
+ffffffc008c3b1b0 d trace_stack_funcs
+ffffffc008c3b1d0 d trace_user_stack_funcs
+ffffffc008c3b1f0 d trace_bputs_funcs
+ffffffc008c3b210 d trace_bprint_funcs
+ffffffc008c3b230 d trace_print_funcs
+ffffffc008c3b250 d trace_hwlat_funcs
+ffffffc008c3b270 d trace_osnoise_funcs
+ffffffc008c3b290 d trace_timerlat_funcs
+ffffffc008c3b2b0 d trace_raw_data_funcs
+ffffffc008c3b2d0 d trace_func_repeats_funcs
+ffffffc008c3b2f0 d all_stat_sessions_mutex
+ffffffc008c3b320 d all_stat_sessions
+ffffffc008c3b330 d btrace_mutex
+ffffffc008c3b360 d trace_bprintk_fmt_list
+ffffffc008c3b370 d module_trace_bprintk_format_nb
+ffffffc008c3b388 d sched_register_mutex
+ffffffc008c3b3b8 d nop_flags
+ffffffc008c3b3d0 d nop_opts
+ffffffc008c3b400 D ftrace_events
+ffffffc008c3b410 d ftrace_generic_fields
+ffffffc008c3b420 d ftrace_common_fields
+ffffffc008c3b430 d module_strings
+ffffffc008c3b440 d event_subsystems
+ffffffc008c3b450 D event_mutex
+ffffffc008c3b480 D event_function
+ffffffc008c3b510 D event_funcgraph_entry
+ffffffc008c3b5a0 D event_funcgraph_exit
+ffffffc008c3b630 D event_context_switch
+ffffffc008c3b6c0 D event_wakeup
+ffffffc008c3b750 D event_kernel_stack
+ffffffc008c3b7e0 D event_user_stack
+ffffffc008c3b870 D event_bprint
+ffffffc008c3b900 D event_print
+ffffffc008c3b990 D event_raw_data
+ffffffc008c3ba20 D event_bputs
+ffffffc008c3bab0 D event_mmiotrace_rw
+ffffffc008c3bb40 D event_mmiotrace_map
+ffffffc008c3bbd0 D event_branch
+ffffffc008c3bc60 D event_hwlat
+ffffffc008c3bcf0 D event_func_repeats
+ffffffc008c3bd80 D event_osnoise
+ffffffc008c3be10 D event_timerlat
+ffffffc008c3bea0 d ftrace_event_fields_function
+ffffffc008c3bf18 d ftrace_event_fields_funcgraph_entry
+ffffffc008c3bf90 d ftrace_event_fields_funcgraph_exit
+ffffffc008c3c080 d ftrace_event_fields_context_switch
+ffffffc008c3c1c0 d ftrace_event_fields_wakeup
+ffffffc008c3c300 d ftrace_event_fields_kernel_stack
+ffffffc008c3c378 d ftrace_event_fields_user_stack
+ffffffc008c3c3f0 d ftrace_event_fields_bprint
+ffffffc008c3c490 d ftrace_event_fields_print
+ffffffc008c3c508 d ftrace_event_fields_raw_data
+ffffffc008c3c580 d ftrace_event_fields_bputs
+ffffffc008c3c5f8 d ftrace_event_fields_mmiotrace_rw
+ffffffc008c3c710 d ftrace_event_fields_mmiotrace_map
+ffffffc008c3c800 d ftrace_event_fields_branch
+ffffffc008c3c8f0 d ftrace_event_fields_hwlat
+ffffffc008c3ca58 d ftrace_event_fields_func_repeats
+ffffffc008c3cb48 d ftrace_event_fields_osnoise
+ffffffc008c3ccb0 d ftrace_event_fields_timerlat
+ffffffc008c3cd50 d err_text
+ffffffc008c3cde0 d err_text
+ffffffc008c3ce28 d err_text
+ffffffc008c3cfa8 d trigger_cmd_mutex
+ffffffc008c3cfd8 d trigger_commands
+ffffffc008c3cfe8 d named_triggers
+ffffffc008c3cff8 d trigger_traceon_cmd
+ffffffc008c3d048 d trigger_traceoff_cmd
+ffffffc008c3d098 d traceon_count_trigger_ops
+ffffffc008c3d0b8 d traceon_trigger_ops
+ffffffc008c3d0d8 d traceoff_count_trigger_ops
+ffffffc008c3d0f8 d traceoff_trigger_ops
+ffffffc008c3d118 d trigger_stacktrace_cmd
+ffffffc008c3d168 d stacktrace_count_trigger_ops
+ffffffc008c3d188 d stacktrace_trigger_ops
+ffffffc008c3d1a8 d trigger_enable_cmd
+ffffffc008c3d1f8 d trigger_disable_cmd
+ffffffc008c3d248 d event_enable_count_trigger_ops
+ffffffc008c3d268 d event_enable_trigger_ops
+ffffffc008c3d288 d event_disable_count_trigger_ops
+ffffffc008c3d2a8 d event_disable_trigger_ops
+ffffffc008c3d2c8 d eprobe_dyn_event_ops
+ffffffc008c3d300 d eprobe_funcs
+ffffffc008c3d320 d eprobe_fields_array
+ffffffc008c3d370 d eprobe_trigger_ops
+ffffffc008c3d390 d event_trigger_cmd
+ffffffc008c3d3e0 d synth_event_ops
+ffffffc008c3d418 d lastcmd_mutex
+ffffffc008c3d448 d synth_event_funcs
+ffffffc008c3d468 d synth_event_fields_array
+ffffffc008c3d4b8 d trigger_hist_cmd
+ffffffc008c3d508 d trigger_hist_enable_cmd
+ffffffc008c3d558 d trigger_hist_disable_cmd
+ffffffc008c3d5a8 d event_hist_trigger_named_ops
+ffffffc008c3d5c8 d event_hist_trigger_ops
+ffffffc008c3d5e8 d hist_enable_count_trigger_ops
+ffffffc008c3d608 d hist_enable_trigger_ops
+ffffffc008c3d628 d hist_disable_count_trigger_ops
+ffffffc008c3d648 d hist_disable_trigger_ops
+ffffffc008c3d668 D __SCK__tp_func_error_report_end
+ffffffc008c3d670 d trace_event_fields_error_report_template
+ffffffc008c3d6e8 d trace_event_type_funcs_error_report_template
+ffffffc008c3d708 d print_fmt_error_report_template
+ffffffc008c3d7b0 d event_error_report_end
+ffffffc008c3d840 D __SCK__tp_func_cpu_idle
+ffffffc008c3d848 D __SCK__tp_func_cpu_idle_miss
+ffffffc008c3d850 D __SCK__tp_func_powernv_throttle
+ffffffc008c3d858 D __SCK__tp_func_pstate_sample
+ffffffc008c3d860 D __SCK__tp_func_cpu_frequency
+ffffffc008c3d868 D __SCK__tp_func_cpu_frequency_limits
+ffffffc008c3d870 D __SCK__tp_func_device_pm_callback_start
+ffffffc008c3d878 D __SCK__tp_func_device_pm_callback_end
+ffffffc008c3d880 D __SCK__tp_func_suspend_resume
+ffffffc008c3d888 D __SCK__tp_func_wakeup_source_activate
+ffffffc008c3d890 D __SCK__tp_func_wakeup_source_deactivate
+ffffffc008c3d898 D __SCK__tp_func_clock_enable
+ffffffc008c3d8a0 D __SCK__tp_func_clock_disable
+ffffffc008c3d8a8 D __SCK__tp_func_clock_set_rate
+ffffffc008c3d8b0 D __SCK__tp_func_power_domain_target
+ffffffc008c3d8b8 D __SCK__tp_func_pm_qos_add_request
+ffffffc008c3d8c0 D __SCK__tp_func_pm_qos_update_request
+ffffffc008c3d8c8 D __SCK__tp_func_pm_qos_remove_request
+ffffffc008c3d8d0 D __SCK__tp_func_pm_qos_update_target
+ffffffc008c3d8d8 D __SCK__tp_func_pm_qos_update_flags
+ffffffc008c3d8e0 D __SCK__tp_func_dev_pm_qos_add_request
+ffffffc008c3d8e8 D __SCK__tp_func_dev_pm_qos_update_request
+ffffffc008c3d8f0 D __SCK__tp_func_dev_pm_qos_remove_request
+ffffffc008c3d8f8 D __SCK__tp_func_guest_halt_poll_ns
+ffffffc008c3d900 d trace_event_fields_cpu
+ffffffc008c3d978 d trace_event_type_funcs_cpu
+ffffffc008c3d998 d print_fmt_cpu
+ffffffc008c3d9e8 d event_cpu_idle
+ffffffc008c3da78 d trace_event_fields_cpu_idle_miss
+ffffffc008c3db18 d trace_event_type_funcs_cpu_idle_miss
+ffffffc008c3db38 d print_fmt_cpu_idle_miss
+ffffffc008c3dbb0 d event_cpu_idle_miss
+ffffffc008c3dc40 d trace_event_fields_powernv_throttle
+ffffffc008c3dce0 d trace_event_type_funcs_powernv_throttle
+ffffffc008c3dd00 d print_fmt_powernv_throttle
+ffffffc008c3dd48 d event_powernv_throttle
+ffffffc008c3ddd8 d trace_event_fields_pstate_sample
+ffffffc008c3df68 d trace_event_type_funcs_pstate_sample
+ffffffc008c3df88 d print_fmt_pstate_sample
+ffffffc008c3e0f0 d event_pstate_sample
+ffffffc008c3e180 d event_cpu_frequency
+ffffffc008c3e210 d trace_event_fields_cpu_frequency_limits
+ffffffc008c3e2b0 d trace_event_type_funcs_cpu_frequency_limits
+ffffffc008c3e2d0 d print_fmt_cpu_frequency_limits
+ffffffc008c3e348 d event_cpu_frequency_limits
+ffffffc008c3e3d8 d trace_event_fields_device_pm_callback_start
+ffffffc008c3e4c8 d trace_event_type_funcs_device_pm_callback_start
+ffffffc008c3e4e8 d print_fmt_device_pm_callback_start
+ffffffc008c3e628 d event_device_pm_callback_start
+ffffffc008c3e6b8 d trace_event_fields_device_pm_callback_end
+ffffffc008c3e758 d trace_event_type_funcs_device_pm_callback_end
+ffffffc008c3e778 d print_fmt_device_pm_callback_end
+ffffffc008c3e7c0 d event_device_pm_callback_end
+ffffffc008c3e850 d trace_event_fields_suspend_resume
+ffffffc008c3e8f0 d trace_event_type_funcs_suspend_resume
+ffffffc008c3e910 d print_fmt_suspend_resume
+ffffffc008c3e960 d event_suspend_resume
+ffffffc008c3e9f0 d trace_event_fields_wakeup_source
+ffffffc008c3ea68 d trace_event_type_funcs_wakeup_source
+ffffffc008c3ea88 d print_fmt_wakeup_source
+ffffffc008c3eac8 d event_wakeup_source_activate
+ffffffc008c3eb58 d event_wakeup_source_deactivate
+ffffffc008c3ebe8 d trace_event_fields_clock
+ffffffc008c3ec88 d trace_event_type_funcs_clock
+ffffffc008c3eca8 d print_fmt_clock
+ffffffc008c3ed10 d event_clock_enable
+ffffffc008c3eda0 d event_clock_disable
+ffffffc008c3ee30 d event_clock_set_rate
+ffffffc008c3eec0 d trace_event_fields_power_domain
+ffffffc008c3ef60 d trace_event_type_funcs_power_domain
+ffffffc008c3ef80 d print_fmt_power_domain
+ffffffc008c3efe8 d event_power_domain_target
+ffffffc008c3f078 d trace_event_fields_cpu_latency_qos_request
+ffffffc008c3f0c8 d trace_event_type_funcs_cpu_latency_qos_request
+ffffffc008c3f0e8 d print_fmt_cpu_latency_qos_request
+ffffffc008c3f110 d event_pm_qos_add_request
+ffffffc008c3f1a0 d event_pm_qos_update_request
+ffffffc008c3f230 d event_pm_qos_remove_request
+ffffffc008c3f2c0 d trace_event_fields_pm_qos_update
+ffffffc008c3f360 d trace_event_type_funcs_pm_qos_update
+ffffffc008c3f380 d print_fmt_pm_qos_update
+ffffffc008c3f458 d event_pm_qos_update_target
+ffffffc008c3f4e8 d trace_event_type_funcs_pm_qos_update_flags
+ffffffc008c3f508 d print_fmt_pm_qos_update_flags
+ffffffc008c3f5e0 d event_pm_qos_update_flags
+ffffffc008c3f670 d trace_event_fields_dev_pm_qos_request
+ffffffc008c3f710 d trace_event_type_funcs_dev_pm_qos_request
+ffffffc008c3f730 d print_fmt_dev_pm_qos_request
+ffffffc008c3f7f8 d event_dev_pm_qos_add_request
+ffffffc008c3f888 d event_dev_pm_qos_update_request
+ffffffc008c3f918 d event_dev_pm_qos_remove_request
+ffffffc008c3f9a8 d trace_event_fields_guest_halt_poll_ns
+ffffffc008c3fa48 d trace_event_type_funcs_guest_halt_poll_ns
+ffffffc008c3fa68 d print_fmt_guest_halt_poll_ns
+ffffffc008c3fab8 d event_guest_halt_poll_ns
+ffffffc008c3fb48 D __SCK__tp_func_rpm_suspend
+ffffffc008c3fb50 D __SCK__tp_func_rpm_resume
+ffffffc008c3fb58 D __SCK__tp_func_rpm_idle
+ffffffc008c3fb60 D __SCK__tp_func_rpm_usage
+ffffffc008c3fb68 D __SCK__tp_func_rpm_return_int
+ffffffc008c3fb70 d trace_event_fields_rpm_internal
+ffffffc008c3fcd8 d trace_event_type_funcs_rpm_internal
+ffffffc008c3fcf8 d print_fmt_rpm_internal
+ffffffc008c3fdc8 d event_rpm_suspend
+ffffffc008c3fe58 d event_rpm_resume
+ffffffc008c3fee8 d event_rpm_idle
+ffffffc008c3ff78 d event_rpm_usage
+ffffffc008c40008 d trace_event_fields_rpm_return_int
+ffffffc008c400a8 d trace_event_type_funcs_rpm_return_int
+ffffffc008c400c8 d print_fmt_rpm_return_int
+ffffffc008c40108 d event_rpm_return_int
+ffffffc008c40198 d dyn_event_ops_mutex
+ffffffc008c401c8 d dyn_event_ops_list
+ffffffc008c401d8 D dyn_event_list
+ffffffc008c401e8 d trace_probe_err_text
+ffffffc008c403b8 d trace_uprobe_ops
+ffffffc008c403f0 d uprobe_funcs
+ffffffc008c40410 d uprobe_fields_array
+ffffffc008c40460 d cpu_pm_syscore_ops
+ffffffc008c40488 d bpf_user_rnd_init_once.___once_key
+ffffffc008c40498 D __SCK__tp_func_xdp_exception
+ffffffc008c404a0 D __SCK__tp_func_xdp_bulk_tx
+ffffffc008c404a8 D __SCK__tp_func_xdp_redirect
+ffffffc008c404b0 D __SCK__tp_func_xdp_redirect_err
+ffffffc008c404b8 D __SCK__tp_func_xdp_redirect_map
+ffffffc008c404c0 D __SCK__tp_func_xdp_redirect_map_err
+ffffffc008c404c8 D __SCK__tp_func_xdp_cpumap_kthread
+ffffffc008c404d0 D __SCK__tp_func_xdp_cpumap_enqueue
+ffffffc008c404d8 D __SCK__tp_func_xdp_devmap_xmit
+ffffffc008c404e0 D __SCK__tp_func_mem_disconnect
+ffffffc008c404e8 D __SCK__tp_func_mem_connect
+ffffffc008c404f0 D __SCK__tp_func_mem_return_failed
+ffffffc008c404f8 d trace_event_fields_xdp_exception
+ffffffc008c40598 d trace_event_type_funcs_xdp_exception
+ffffffc008c405b8 d print_fmt_xdp_exception
+ffffffc008c406a0 d event_xdp_exception
+ffffffc008c40730 d trace_event_fields_xdp_bulk_tx
+ffffffc008c40820 d trace_event_type_funcs_xdp_bulk_tx
+ffffffc008c40840 d print_fmt_xdp_bulk_tx
+ffffffc008c40948 d event_xdp_bulk_tx
+ffffffc008c409d8 d trace_event_fields_xdp_redirect_template
+ffffffc008c40b18 d trace_event_type_funcs_xdp_redirect_template
+ffffffc008c40b38 d print_fmt_xdp_redirect_template
+ffffffc008c40c88 d event_xdp_redirect
+ffffffc008c40d18 d event_xdp_redirect_err
+ffffffc008c40da8 d event_xdp_redirect_map
+ffffffc008c40e38 d event_xdp_redirect_map_err
+ffffffc008c40ec8 d trace_event_fields_xdp_cpumap_kthread
+ffffffc008c41058 d trace_event_type_funcs_xdp_cpumap_kthread
+ffffffc008c41078 d print_fmt_xdp_cpumap_kthread
+ffffffc008c41200 d event_xdp_cpumap_kthread
+ffffffc008c41290 d trace_event_fields_xdp_cpumap_enqueue
+ffffffc008c413a8 d trace_event_type_funcs_xdp_cpumap_enqueue
+ffffffc008c413c8 d print_fmt_xdp_cpumap_enqueue
+ffffffc008c414f8 d event_xdp_cpumap_enqueue
+ffffffc008c41588 d trace_event_fields_xdp_devmap_xmit
+ffffffc008c416a0 d trace_event_type_funcs_xdp_devmap_xmit
+ffffffc008c416c0 d print_fmt_xdp_devmap_xmit
+ffffffc008c41800 d event_xdp_devmap_xmit
+ffffffc008c41890 d trace_event_fields_mem_disconnect
+ffffffc008c41958 d trace_event_type_funcs_mem_disconnect
+ffffffc008c41978 d print_fmt_mem_disconnect
+ffffffc008c41a90 d event_mem_disconnect
+ffffffc008c41b20 d trace_event_fields_mem_connect
+ffffffc008c41c38 d trace_event_type_funcs_mem_connect
+ffffffc008c41c58 d print_fmt_mem_connect
+ffffffc008c41d88 d event_mem_connect
+ffffffc008c41e18 d trace_event_fields_mem_return_failed
+ffffffc008c41eb8 d trace_event_type_funcs_mem_return_failed
+ffffffc008c41ed8 d print_fmt_mem_return_failed
+ffffffc008c41fe0 d event_mem_return_failed
+ffffffc008c42070 d dummy_bpf_prog
+ffffffc008c420c0 d perf_duration_work
+ffffffc008c420e0 D dev_attr_nr_addr_filters
+ffffffc008c42100 d pmus_lock
+ffffffc008c42130 d pmus
+ffffffc008c42140 d perf_swevent
+ffffffc008c42268 d perf_cpu_clock
+ffffffc008c42390 d perf_task_clock
+ffffffc008c424b8 d perf_reboot_notifier
+ffffffc008c424d0 D __SCK__perf_snapshot_branch_stack
+ffffffc008c424d8 d perf_duration_warn._rs
+ffffffc008c42500 d perf_sched_work
+ffffffc008c42588 d perf_sched_mutex
+ffffffc008c425b8 d perf_tracepoint
+ffffffc008c426e0 d perf_uprobe
+ffffffc008c42808 d uprobe_attr_groups
+ffffffc008c42818 d uprobe_format_group
+ffffffc008c42840 d uprobe_attrs
+ffffffc008c42858 d format_attr_retprobe
+ffffffc008c42878 d format_attr_ref_ctr_offset
+ffffffc008c42898 d pmu_bus
+ffffffc008c42970 d pmu_dev_groups
+ffffffc008c42980 d pmu_dev_attrs
+ffffffc008c42998 d dev_attr_type
+ffffffc008c429b8 d dev_attr_type
+ffffffc008c429d8 d dev_attr_type
+ffffffc008c429f8 d dev_attr_type
+ffffffc008c42a18 d dev_attr_type
+ffffffc008c42a38 d dev_attr_perf_event_mux_interval_ms
+ffffffc008c42a58 d mux_interval_mutex
+ffffffc008c42a88 d callchain_mutex
+ffffffc008c42ab8 d perf_breakpoint
+ffffffc008c42be0 d hw_breakpoint_exceptions_nb
+ffffffc008c42bf8 d bp_cpuinfo_sem
+ffffffc008c42c58 d delayed_uprobe_lock
+ffffffc008c42c88 d dup_mmap_sem
+ffffffc008c42ce8 d uprobe_exception_nb
+ffffffc008c42d00 d delayed_uprobe_list
+ffffffc008c42d10 d prepare_uretprobe._rs
+ffffffc008c42d38 d jump_label_mutex
+ffffffc008c42d68 d jump_label_module_nb
+ffffffc008c42d80 D __SCK__tp_func_rseq_update
+ffffffc008c42d88 D __SCK__tp_func_rseq_ip_fixup
+ffffffc008c42d90 d trace_event_fields_rseq_update
+ffffffc008c42de0 d trace_event_type_funcs_rseq_update
+ffffffc008c42e00 d print_fmt_rseq_update
+ffffffc008c42e20 d event_rseq_update
+ffffffc008c42eb0 d trace_event_fields_rseq_ip_fixup
+ffffffc008c42f78 d trace_event_type_funcs_rseq_ip_fixup
+ffffffc008c42f98 d print_fmt_rseq_ip_fixup
+ffffffc008c43028 d event_rseq_ip_fixup
+ffffffc008c430b8 d rseq_get_rseq_cs._rs
+ffffffc008c430e0 D __SCK__tp_func_mm_filemap_delete_from_page_cache
+ffffffc008c430e8 D __SCK__tp_func_mm_filemap_add_to_page_cache
+ffffffc008c430f0 D __SCK__tp_func_filemap_set_wb_err
+ffffffc008c430f8 D __SCK__tp_func_file_check_and_advance_wb_err
+ffffffc008c43100 d trace_event_fields_mm_filemap_op_page_cache
+ffffffc008c431f0 d trace_event_type_funcs_mm_filemap_op_page_cache
+ffffffc008c43210 d print_fmt_mm_filemap_op_page_cache
+ffffffc008c432d0 d event_mm_filemap_delete_from_page_cache
+ffffffc008c43360 d event_mm_filemap_add_to_page_cache
+ffffffc008c433f0 d trace_event_fields_filemap_set_wb_err
+ffffffc008c43490 d trace_event_type_funcs_filemap_set_wb_err
+ffffffc008c434b0 d print_fmt_filemap_set_wb_err
+ffffffc008c43548 d event_filemap_set_wb_err
+ffffffc008c435d8 d trace_event_fields_file_check_and_advance_wb_err
+ffffffc008c436c8 d trace_event_type_funcs_file_check_and_advance_wb_err
+ffffffc008c436e8 d print_fmt_file_check_and_advance_wb_err
+ffffffc008c437a0 d event_file_check_and_advance_wb_err
+ffffffc008c43830 D sysctl_page_lock_unfairness
+ffffffc008c43838 d dio_warn_stale_pagecache._rs
+ffffffc008c43860 D __SCK__tp_func_oom_score_adj_update
+ffffffc008c43868 D __SCK__tp_func_reclaim_retry_zone
+ffffffc008c43870 D __SCK__tp_func_mark_victim
+ffffffc008c43878 D __SCK__tp_func_wake_reaper
+ffffffc008c43880 D __SCK__tp_func_start_task_reaping
+ffffffc008c43888 D __SCK__tp_func_finish_task_reaping
+ffffffc008c43890 D __SCK__tp_func_skip_task_reaping
+ffffffc008c43898 D __SCK__tp_func_compact_retry
+ffffffc008c438a0 d trace_event_fields_oom_score_adj_update
+ffffffc008c43940 d trace_event_type_funcs_oom_score_adj_update
+ffffffc008c43960 d print_fmt_oom_score_adj_update
+ffffffc008c439b0 d event_oom_score_adj_update
+ffffffc008c43a40 d trace_event_fields_reclaim_retry_zone
+ffffffc008c43ba8 d trace_event_type_funcs_reclaim_retry_zone
+ffffffc008c43bc8 d print_fmt_reclaim_retry_zone
+ffffffc008c43d28 d event_reclaim_retry_zone
+ffffffc008c43db8 d trace_event_fields_mark_victim
+ffffffc008c43e08 d trace_event_type_funcs_mark_victim
+ffffffc008c43e28 d print_fmt_mark_victim
+ffffffc008c43e40 d event_mark_victim
+ffffffc008c43ed0 d trace_event_fields_wake_reaper
+ffffffc008c43f20 d trace_event_type_funcs_wake_reaper
+ffffffc008c43f40 d print_fmt_wake_reaper
+ffffffc008c43f58 d event_wake_reaper
+ffffffc008c43fe8 d trace_event_fields_start_task_reaping
+ffffffc008c44038 d trace_event_type_funcs_start_task_reaping
+ffffffc008c44058 d print_fmt_start_task_reaping
+ffffffc008c44070 d event_start_task_reaping
+ffffffc008c44100 d trace_event_fields_finish_task_reaping
+ffffffc008c44150 d trace_event_type_funcs_finish_task_reaping
+ffffffc008c44170 d print_fmt_finish_task_reaping
+ffffffc008c44188 d event_finish_task_reaping
+ffffffc008c44218 d trace_event_fields_skip_task_reaping
+ffffffc008c44268 d trace_event_type_funcs_skip_task_reaping
+ffffffc008c44288 d print_fmt_skip_task_reaping
+ffffffc008c442a0 d event_skip_task_reaping
+ffffffc008c44330 d trace_event_fields_compact_retry
+ffffffc008c44448 d trace_event_type_funcs_compact_retry
+ffffffc008c44468 d print_fmt_compact_retry
+ffffffc008c44600 d event_compact_retry
+ffffffc008c44690 D oom_adj_mutex
+ffffffc008c446c0 d oom_victims_wait
+ffffffc008c446d8 d oom_notify_list.llvm.15798605709325044204
+ffffffc008c44720 d pagefault_out_of_memory.pfoom_rs
+ffffffc008c44748 d vm_oom_kill_table
+ffffffc008c44848 d oom_reaper_wait
+ffffffc008c44860 d sysctl_oom_dump_tasks
+ffffffc008c44868 d oom_kill_process.oom_rs
+ffffffc008c44890 D oom_lock
+ffffffc008c448c0 d ratelimit_pages
+ffffffc008c448c8 d vm_page_writeback_sysctls
+ffffffc008c44ac8 d vm_dirty_ratio
+ffffffc008c44acc d dirty_background_ratio
+ffffffc008c44ad0 D dirty_writeback_interval
+ffffffc008c44ad4 D dirty_expire_interval
+ffffffc008c44ad8 d isolate_lru_page._rs
+ffffffc008c44b00 D __SCK__tp_func_mm_lru_insertion
+ffffffc008c44b08 D __SCK__tp_func_mm_lru_activate
+ffffffc008c44b10 d trace_event_fields_mm_lru_insertion
+ffffffc008c44bd8 d trace_event_type_funcs_mm_lru_insertion
+ffffffc008c44bf8 d print_fmt_mm_lru_insertion
+ffffffc008c44d18 d event_mm_lru_insertion
+ffffffc008c44da8 d trace_event_fields_mm_lru_activate
+ffffffc008c44e20 d trace_event_type_funcs_mm_lru_activate
+ffffffc008c44e40 d print_fmt_mm_lru_activate
+ffffffc008c44e70 d event_mm_lru_activate
+ffffffc008c44f00 d __lru_add_drain_all.lock
+ffffffc008c44f30 D __SCK__tp_func_mm_vmscan_kswapd_sleep
+ffffffc008c44f38 D __SCK__tp_func_mm_vmscan_kswapd_wake
+ffffffc008c44f40 D __SCK__tp_func_mm_vmscan_wakeup_kswapd
+ffffffc008c44f48 D __SCK__tp_func_mm_vmscan_direct_reclaim_begin
+ffffffc008c44f50 D __SCK__tp_func_mm_vmscan_direct_reclaim_end
+ffffffc008c44f58 D __SCK__tp_func_mm_shrink_slab_start
+ffffffc008c44f60 D __SCK__tp_func_mm_shrink_slab_end
+ffffffc008c44f68 D __SCK__tp_func_mm_vmscan_lru_isolate
+ffffffc008c44f70 D __SCK__tp_func_mm_vmscan_write_folio
+ffffffc008c44f78 D __SCK__tp_func_mm_vmscan_lru_shrink_inactive
+ffffffc008c44f80 D __SCK__tp_func_mm_vmscan_lru_shrink_active
+ffffffc008c44f88 D __SCK__tp_func_mm_vmscan_node_reclaim_begin
+ffffffc008c44f90 D __SCK__tp_func_mm_vmscan_node_reclaim_end
+ffffffc008c44f98 D __SCK__tp_func_mm_vmscan_throttled
+ffffffc008c44fa0 d trace_event_fields_mm_vmscan_kswapd_sleep
+ffffffc008c44ff0 d trace_event_type_funcs_mm_vmscan_kswapd_sleep
+ffffffc008c45010 d print_fmt_mm_vmscan_kswapd_sleep
+ffffffc008c45028 d event_mm_vmscan_kswapd_sleep
+ffffffc008c450b8 d trace_event_fields_mm_vmscan_kswapd_wake
+ffffffc008c45158 d trace_event_type_funcs_mm_vmscan_kswapd_wake
+ffffffc008c45178 d print_fmt_mm_vmscan_kswapd_wake
+ffffffc008c451a0 d event_mm_vmscan_kswapd_wake
+ffffffc008c45230 d trace_event_fields_mm_vmscan_wakeup_kswapd
+ffffffc008c452f8 d trace_event_type_funcs_mm_vmscan_wakeup_kswapd
+ffffffc008c45318 d print_fmt_mm_vmscan_wakeup_kswapd
+ffffffc008c45fe0 d event_mm_vmscan_wakeup_kswapd
+ffffffc008c46070 d trace_event_fields_mm_vmscan_direct_reclaim_begin_template
+ffffffc008c460e8 d trace_event_type_funcs_mm_vmscan_direct_reclaim_begin_template
+ffffffc008c46108 d print_fmt_mm_vmscan_direct_reclaim_begin_template
+ffffffc008c46dc0 d event_mm_vmscan_direct_reclaim_begin
+ffffffc008c46e50 d trace_event_fields_mm_vmscan_direct_reclaim_end_template
+ffffffc008c46ea0 d trace_event_type_funcs_mm_vmscan_direct_reclaim_end_template
+ffffffc008c46ec0 d print_fmt_mm_vmscan_direct_reclaim_end_template
+ffffffc008c46ee8 d event_mm_vmscan_direct_reclaim_end
+ffffffc008c46f78 d trace_event_fields_mm_shrink_slab_start
+ffffffc008c47108 d trace_event_type_funcs_mm_shrink_slab_start
+ffffffc008c47128 d print_fmt_mm_shrink_slab_start
+ffffffc008c47ea0 d event_mm_shrink_slab_start
+ffffffc008c47f30 d trace_event_fields_mm_shrink_slab_end
+ffffffc008c48070 d trace_event_type_funcs_mm_shrink_slab_end
+ffffffc008c48090 d print_fmt_mm_shrink_slab_end
+ffffffc008c48158 d event_mm_shrink_slab_end
+ffffffc008c481e8 d trace_event_fields_mm_vmscan_lru_isolate
+ffffffc008c48350 d trace_event_type_funcs_mm_vmscan_lru_isolate
+ffffffc008c48370 d print_fmt_mm_vmscan_lru_isolate
+ffffffc008c48528 d event_mm_vmscan_lru_isolate
+ffffffc008c485b8 d trace_event_fields_mm_vmscan_write_folio
+ffffffc008c48630 d trace_event_type_funcs_mm_vmscan_write_folio
+ffffffc008c48650 d print_fmt_mm_vmscan_write_folio
+ffffffc008c48970 d event_mm_vmscan_write_folio
+ffffffc008c48a00 d trace_event_fields_mm_vmscan_lru_shrink_inactive
+ffffffc008c48c30 d trace_event_type_funcs_mm_vmscan_lru_shrink_inactive
+ffffffc008c48c50 d print_fmt_mm_vmscan_lru_shrink_inactive
+ffffffc008c48ed8 d event_mm_vmscan_lru_shrink_inactive
+ffffffc008c48f68 d trace_event_fields_mm_vmscan_lru_shrink_active
+ffffffc008c490a8 d trace_event_type_funcs_mm_vmscan_lru_shrink_active
+ffffffc008c490c8 d print_fmt_mm_vmscan_lru_shrink_active
+ffffffc008c49278 d event_mm_vmscan_lru_shrink_active
+ffffffc008c49308 d trace_event_fields_mm_vmscan_node_reclaim_begin
+ffffffc008c493a8 d trace_event_type_funcs_mm_vmscan_node_reclaim_begin
+ffffffc008c493c8 d print_fmt_mm_vmscan_node_reclaim_begin
+ffffffc008c4a090 d event_mm_vmscan_node_reclaim_begin
+ffffffc008c4a120 d event_mm_vmscan_node_reclaim_end
+ffffffc008c4a1b0 d trace_event_fields_mm_vmscan_throttled
+ffffffc008c4a278 d trace_event_type_funcs_mm_vmscan_throttled
+ffffffc008c4a298 d print_fmt_mm_vmscan_throttled
+ffffffc008c4a450 d event_mm_vmscan_throttled
+ffffffc008c4a4e0 D vm_swappiness
+ffffffc008c4a4e8 D shrinker_list
+ffffffc008c4a4f8 D shrinker_rwsem
+ffffffc008c4a538 d get_mm_list.mm_list
+ffffffc008c4a550 d lru_gen_attr_group
+ffffffc008c4a578 d lru_gen_attrs
+ffffffc008c4a590 d lru_gen_min_ttl_attr
+ffffffc008c4a5b0 d lru_gen_enabled_attr
+ffffffc008c4a5d0 d lru_gen_change_state.state_mutex
+ffffffc008c4a600 d shmem_swaplist
+ffffffc008c4a610 d shmem_swaplist_mutex
+ffffffc008c4a640 d shmem_fs_type
+ffffffc008c4a688 D shmem_enabled_attr
+ffffffc008c4a6a8 d __vm_enough_memory._rs
+ffffffc008c4a6d0 d page_offline_rwsem
+ffffffc008c4a710 d shepherd
+ffffffc008c4a798 d bdi_dev_groups
+ffffffc008c4a7a8 d bdi_dev_attrs
+ffffffc008c4a7d0 d dev_attr_read_ahead_kb
+ffffffc008c4a7f0 d dev_attr_min_ratio
+ffffffc008c4a810 d dev_attr_max_ratio
+ffffffc008c4a830 d dev_attr_stable_pages_required
+ffffffc008c4a850 D bdi_list
+ffffffc008c4a860 D vm_committed_as_batch
+ffffffc008c4a868 D __SCK__tp_func_percpu_alloc_percpu
+ffffffc008c4a870 D __SCK__tp_func_percpu_free_percpu
+ffffffc008c4a878 D __SCK__tp_func_percpu_alloc_percpu_fail
+ffffffc008c4a880 D __SCK__tp_func_percpu_create_chunk
+ffffffc008c4a888 D __SCK__tp_func_percpu_destroy_chunk
+ffffffc008c4a890 d trace_event_fields_percpu_alloc_percpu
+ffffffc008c4aa48 d trace_event_type_funcs_percpu_alloc_percpu
+ffffffc008c4aa68 d print_fmt_percpu_alloc_percpu
+ffffffc008c4b7f0 d event_percpu_alloc_percpu
+ffffffc008c4b880 d trace_event_fields_percpu_free_percpu
+ffffffc008c4b920 d trace_event_type_funcs_percpu_free_percpu
+ffffffc008c4b940 d print_fmt_percpu_free_percpu
+ffffffc008c4b988 d event_percpu_free_percpu
+ffffffc008c4ba18 d trace_event_fields_percpu_alloc_percpu_fail
+ffffffc008c4bae0 d trace_event_type_funcs_percpu_alloc_percpu_fail
+ffffffc008c4bb00 d print_fmt_percpu_alloc_percpu_fail
+ffffffc008c4bb68 d event_percpu_alloc_percpu_fail
+ffffffc008c4bbf8 d trace_event_fields_percpu_create_chunk
+ffffffc008c4bc48 d trace_event_type_funcs_percpu_create_chunk
+ffffffc008c4bc68 d print_fmt_percpu_create_chunk
+ffffffc008c4bc88 d event_percpu_create_chunk
+ffffffc008c4bd18 d trace_event_fields_percpu_destroy_chunk
+ffffffc008c4bd68 d trace_event_type_funcs_percpu_destroy_chunk
+ffffffc008c4bd88 d print_fmt_percpu_destroy_chunk
+ffffffc008c4bda8 d event_percpu_destroy_chunk
+ffffffc008c4be38 d pcpu_alloc.warn_limit
+ffffffc008c4be40 d pcpu_alloc_mutex
+ffffffc008c4be70 d pcpu_balance_work
+ffffffc008c4bea0 D __SCK__tp_func_kmem_cache_alloc
+ffffffc008c4bea8 D __SCK__tp_func_kmalloc
+ffffffc008c4beb0 D __SCK__tp_func_kfree
+ffffffc008c4beb8 D __SCK__tp_func_kmem_cache_free
+ffffffc008c4bec0 D __SCK__tp_func_mm_page_free
+ffffffc008c4bec8 D __SCK__tp_func_mm_page_free_batched
+ffffffc008c4bed0 D __SCK__tp_func_mm_page_alloc
+ffffffc008c4bed8 D __SCK__tp_func_mm_page_alloc_zone_locked
+ffffffc008c4bee0 D __SCK__tp_func_mm_page_pcpu_drain
+ffffffc008c4bee8 D __SCK__tp_func_mm_page_alloc_extfrag
+ffffffc008c4bef0 D __SCK__tp_func_rss_stat
+ffffffc008c4bef8 d trace_event_fields_kmem_cache_alloc
+ffffffc008c4c038 d trace_event_type_funcs_kmem_cache_alloc
+ffffffc008c4c058 d print_fmt_kmem_cache_alloc
+ffffffc008c4cdb0 d event_kmem_cache_alloc
+ffffffc008c4ce40 d trace_event_fields_kmalloc
+ffffffc008c4cf58 d trace_event_type_funcs_kmalloc
+ffffffc008c4cf78 d print_fmt_kmalloc
+ffffffc008c4dd00 d event_kmalloc
+ffffffc008c4dd90 d trace_event_fields_kfree
+ffffffc008c4de08 d trace_event_type_funcs_kfree
+ffffffc008c4de28 d print_fmt_kfree
+ffffffc008c4de68 d event_kfree
+ffffffc008c4def8 d trace_event_fields_kmem_cache_free
+ffffffc008c4df98 d trace_event_type_funcs_kmem_cache_free
+ffffffc008c4dfb8 d print_fmt_kmem_cache_free
+ffffffc008c4e010 d event_kmem_cache_free
+ffffffc008c4e0a0 d trace_event_fields_mm_page_free
+ffffffc008c4e118 d trace_event_type_funcs_mm_page_free
+ffffffc008c4e138 d print_fmt_mm_page_free
+ffffffc008c4e378 d event_mm_page_free
+ffffffc008c4e408 d trace_event_fields_mm_page_free_batched
+ffffffc008c4e458 d trace_event_type_funcs_mm_page_free_batched
+ffffffc008c4e478 d print_fmt_mm_page_free_batched
+ffffffc008c4e6a8 d event_mm_page_free_batched
+ffffffc008c4e738 d trace_event_fields_mm_page_alloc
+ffffffc008c4e800 d trace_event_type_funcs_mm_page_alloc
+ffffffc008c4e820 d print_fmt_mm_page_alloc
+ffffffc008c4f750 d event_mm_page_alloc
+ffffffc008c4f7e0 d trace_event_fields_mm_page
+ffffffc008c4f8a8 d trace_event_type_funcs_mm_page
+ffffffc008c4f8c8 d print_fmt_mm_page
+ffffffc008c4fb80 d event_mm_page_alloc_zone_locked
+ffffffc008c4fc10 d trace_event_fields_mm_page_pcpu_drain
+ffffffc008c4fcb0 d trace_event_type_funcs_mm_page_pcpu_drain
+ffffffc008c4fcd0 d print_fmt_mm_page_pcpu_drain
+ffffffc008c4ff30 d event_mm_page_pcpu_drain
+ffffffc008c4ffc0 d trace_event_fields_mm_page_alloc_extfrag
+ffffffc008c500d8 d trace_event_type_funcs_mm_page_alloc_extfrag
+ffffffc008c500f8 d print_fmt_mm_page_alloc_extfrag
+ffffffc008c50438 d event_mm_page_alloc_extfrag
+ffffffc008c504c8 d trace_event_fields_rss_stat
+ffffffc008c50590 d trace_event_type_funcs_rss_stat
+ffffffc008c505b0 d print_fmt_rss_stat
+ffffffc008c506a0 d event_rss_stat
+ffffffc008c50730 d slab_caches_to_rcu_destroy
+ffffffc008c50740 d slab_caches_to_rcu_destroy_work
+ffffffc008c50770 D slab_mutex
+ffffffc008c507a0 D slab_caches
+ffffffc008c507b0 D __SCK__tp_func_mm_compaction_isolate_migratepages
+ffffffc008c507b8 D __SCK__tp_func_mm_compaction_isolate_freepages
+ffffffc008c507c0 D __SCK__tp_func_mm_compaction_migratepages
+ffffffc008c507c8 D __SCK__tp_func_mm_compaction_begin
+ffffffc008c507d0 D __SCK__tp_func_mm_compaction_end
+ffffffc008c507d8 D __SCK__tp_func_mm_compaction_try_to_compact_pages
+ffffffc008c507e0 D __SCK__tp_func_mm_compaction_finished
+ffffffc008c507e8 D __SCK__tp_func_mm_compaction_suitable
+ffffffc008c507f0 D __SCK__tp_func_mm_compaction_deferred
+ffffffc008c507f8 D __SCK__tp_func_mm_compaction_defer_compaction
+ffffffc008c50800 D __SCK__tp_func_mm_compaction_defer_reset
+ffffffc008c50808 D __SCK__tp_func_mm_compaction_kcompactd_sleep
+ffffffc008c50810 D __SCK__tp_func_mm_compaction_wakeup_kcompactd
+ffffffc008c50818 D __SCK__tp_func_mm_compaction_kcompactd_wake
+ffffffc008c50820 d trace_event_fields_mm_compaction_isolate_template
+ffffffc008c508e8 d trace_event_type_funcs_mm_compaction_isolate_template
+ffffffc008c50908 d print_fmt_mm_compaction_isolate_template
+ffffffc008c50980 d event_mm_compaction_isolate_migratepages
+ffffffc008c50a10 d event_mm_compaction_isolate_freepages
+ffffffc008c50aa0 d trace_event_fields_mm_compaction_migratepages
+ffffffc008c50b18 d trace_event_type_funcs_mm_compaction_migratepages
+ffffffc008c50b38 d print_fmt_mm_compaction_migratepages
+ffffffc008c50b80 d event_mm_compaction_migratepages
+ffffffc008c50c10 d trace_event_fields_mm_compaction_begin
+ffffffc008c50d00 d trace_event_type_funcs_mm_compaction_begin
+ffffffc008c50d20 d print_fmt_mm_compaction_begin
+ffffffc008c50dd0 d event_mm_compaction_begin
+ffffffc008c50e60 d trace_event_fields_mm_compaction_end
+ffffffc008c50f78 d trace_event_type_funcs_mm_compaction_end
+ffffffc008c50f98 d print_fmt_mm_compaction_end
+ffffffc008c511c0 d event_mm_compaction_end
+ffffffc008c51250 d trace_event_fields_mm_compaction_try_to_compact_pages
+ffffffc008c512f0 d trace_event_type_funcs_mm_compaction_try_to_compact_pages
+ffffffc008c51310 d print_fmt_mm_compaction_try_to_compact_pages
+ffffffc008c51fd8 d event_mm_compaction_try_to_compact_pages
+ffffffc008c52068 d trace_event_fields_mm_compaction_suitable_template
+ffffffc008c52130 d trace_event_type_funcs_mm_compaction_suitable_template
+ffffffc008c52150 d print_fmt_mm_compaction_suitable_template
+ffffffc008c52370 d event_mm_compaction_finished
+ffffffc008c52400 d event_mm_compaction_suitable
+ffffffc008c52490 d trace_event_fields_mm_compaction_defer_template
+ffffffc008c525a8 d trace_event_type_funcs_mm_compaction_defer_template
+ffffffc008c525c8 d print_fmt_mm_compaction_defer_template
+ffffffc008c526d8 d event_mm_compaction_deferred
+ffffffc008c52768 d event_mm_compaction_defer_compaction
+ffffffc008c527f8 d event_mm_compaction_defer_reset
+ffffffc008c52888 d trace_event_fields_mm_compaction_kcompactd_sleep
+ffffffc008c528d8 d trace_event_type_funcs_mm_compaction_kcompactd_sleep
+ffffffc008c528f8 d print_fmt_mm_compaction_kcompactd_sleep
+ffffffc008c52910 d event_mm_compaction_kcompactd_sleep
+ffffffc008c529a0 d trace_event_fields_kcompactd_wake_template
+ffffffc008c52a40 d trace_event_type_funcs_kcompactd_wake_template
+ffffffc008c52a60 d print_fmt_kcompactd_wake_template
+ffffffc008c52b28 d event_mm_compaction_wakeup_kcompactd
+ffffffc008c52bb8 d event_mm_compaction_kcompactd_wake
+ffffffc008c52c48 D sysctl_extfrag_threshold
+ffffffc008c52c50 d workingset_shadow_shrinker
+ffffffc008c52c88 D migrate_reason_names
+ffffffc008c52cd0 D __SCK__tp_func_mmap_lock_start_locking
+ffffffc008c52cd8 D __SCK__tp_func_mmap_lock_released
+ffffffc008c52ce0 D __SCK__tp_func_mmap_lock_acquire_returned
+ffffffc008c52ce8 d trace_event_fields_mmap_lock
+ffffffc008c52d88 d trace_event_type_funcs_mmap_lock
+ffffffc008c52da8 d print_fmt_mmap_lock
+ffffffc008c52e08 d event_mmap_lock_start_locking
+ffffffc008c52e98 d event_mmap_lock_released
+ffffffc008c52f28 d trace_event_fields_mmap_lock_acquire_returned
+ffffffc008c52ff0 d trace_event_type_funcs_mmap_lock_acquire_returned
+ffffffc008c53010 d print_fmt_mmap_lock_acquire_returned
+ffffffc008c530a0 d event_mmap_lock_acquire_returned
+ffffffc008c53130 D __SCK__tp_func_vm_unmapped_area
+ffffffc008c53138 D __SCK__tp_func_vma_mas_szero
+ffffffc008c53140 D __SCK__tp_func_vma_store
+ffffffc008c53148 D __SCK__tp_func_exit_mmap
+ffffffc008c53150 d trace_event_fields_vm_unmapped_area
+ffffffc008c532b8 d trace_event_type_funcs_vm_unmapped_area
+ffffffc008c532d8 d print_fmt_vm_unmapped_area
+ffffffc008c53478 d event_vm_unmapped_area
+ffffffc008c53508 d trace_event_fields_vma_mas_szero
+ffffffc008c535a8 d trace_event_type_funcs_vma_mas_szero
+ffffffc008c535c8 d print_fmt_vma_mas_szero
+ffffffc008c53630 d event_vma_mas_szero
+ffffffc008c536c0 d trace_event_fields_vma_store
+ffffffc008c53788 d trace_event_type_funcs_vma_store
+ffffffc008c537a8 d print_fmt_vma_store
+ffffffc008c53820 d event_vma_store
+ffffffc008c538b0 d trace_event_fields_exit_mmap
+ffffffc008c53928 d trace_event_type_funcs_exit_mmap
+ffffffc008c53948 d print_fmt_exit_mmap
+ffffffc008c53968 d event_exit_mmap
+ffffffc008c539f8 d mm_all_locks_mutex
+ffffffc008c53a28 d reserve_mem_nb
+ffffffc008c53a40 D stack_guard_gap
+ffffffc008c53a48 D __SCK__tp_func_tlb_flush
+ffffffc008c53a50 d trace_event_fields_tlb_flush
+ffffffc008c53ac8 d trace_event_type_funcs_tlb_flush
+ffffffc008c53ae8 d print_fmt_tlb_flush
+ffffffc008c53c30 d event_tlb_flush
+ffffffc008c53cc0 D __SCK__tp_func_mm_migrate_pages
+ffffffc008c53cc8 D __SCK__tp_func_mm_migrate_pages_start
+ffffffc008c53cd0 D __SCK__tp_func_set_migration_pte
+ffffffc008c53cd8 D __SCK__tp_func_remove_migration_pte
+ffffffc008c53ce0 d trace_event_fields_mm_migrate_pages
+ffffffc008c53e20 d trace_event_type_funcs_mm_migrate_pages
+ffffffc008c53e40 d print_fmt_mm_migrate_pages
+ffffffc008c540e8 d event_mm_migrate_pages
+ffffffc008c54178 d trace_event_fields_mm_migrate_pages_start
+ffffffc008c541f0 d trace_event_type_funcs_mm_migrate_pages_start
+ffffffc008c54210 d print_fmt_mm_migrate_pages_start
+ffffffc008c54410 d event_mm_migrate_pages_start
+ffffffc008c544a0 d trace_event_fields_migration_pte
+ffffffc008c54540 d trace_event_type_funcs_migration_pte
+ffffffc008c54560 d print_fmt_migration_pte
+ffffffc008c545a0 d event_set_migration_pte
+ffffffc008c54630 d event_remove_migration_pte
+ffffffc008c546c0 D vmap_area_list
+ffffffc008c546d0 d vmap_notify_list
+ffffffc008c54718 d free_vmap_area_list
+ffffffc008c54728 d vmap_purge_lock
+ffffffc008c54758 d purge_vmap_area_list
+ffffffc008c54768 d drain_vmap_work
+ffffffc008c54798 D vm_numa_stat_key
+ffffffc008c547a8 D sysctl_lowmem_reserve_ratio
+ffffffc008c547b8 D min_free_kbytes
+ffffffc008c547bc D user_min_free_kbytes
+ffffffc008c547c0 D watermark_scale_factor
+ffffffc008c547c8 d warn_alloc.nopage_rs
+ffffffc008c547f0 d pcp_batch_high_lock
+ffffffc008c54820 d pcpu_drain_mutex
+ffffffc008c54850 D init_on_alloc
+ffffffc008c54860 D init_mm
+ffffffc008c54c08 d memblock_alloc_range_nid._rs
+ffffffc008c54c30 d memblock_find_in_range._rs
+ffffffc008c54c58 D memblock
+ffffffc008c54cb8 d mem_hotplug_lock
+ffffffc008c54d18 D max_mem_size
+ffffffc008c54d20 d online_page_callback_lock
+ffffffc008c54d50 d online_page_callback
+ffffffc008c54d58 d do_migrate_range.migrate_rs
+ffffffc008c54d80 d end_swap_bio_write._rs
+ffffffc008c54da8 d sio_write_complete._rs
+ffffffc008c54dd0 d end_swap_bio_read._rs
+ffffffc008c54df8 d sio_read_complete._rs
+ffffffc008c54e20 d swapin_readahead_hits
+ffffffc008c54e28 d swap_attrs
+ffffffc008c54e38 d vma_ra_enabled_attr
+ffffffc008c54e58 d swap_active_head
+ffffffc008c54e68 d least_priority
+ffffffc008c54e70 d swapon_mutex
+ffffffc008c54ea0 d proc_poll_wait
+ffffffc008c54eb8 d swap_slots_cache_enable_mutex.llvm.14480556168898662775
+ffffffc008c54ee8 d swap_slots_cache_mutex
+ffffffc008c54f18 d pools_reg_lock
+ffffffc008c54f48 d pools_lock
+ffffffc008c54f78 d dev_attr_pools
+ffffffc008c54f98 d slub_max_order
+ffffffc008c54fa0 d slab_memory_callback_nb
+ffffffc008c54fb8 d slab_out_of_memory.slub_oom_rs
+ffffffc008c54fe0 d flush_lock
+ffffffc008c55010 d slab_ktype
+ffffffc008c55060 d slab_attrs
+ffffffc008c55148 d slab_size_attr
+ffffffc008c55168 d object_size_attr
+ffffffc008c55188 d objs_per_slab_attr
+ffffffc008c551a8 d order_attr
+ffffffc008c551c8 d min_partial_attr
+ffffffc008c551e8 d cpu_partial_attr
+ffffffc008c55208 d objects_attr
+ffffffc008c55228 d objects_partial_attr
+ffffffc008c55248 d partial_attr
+ffffffc008c55268 d cpu_slabs_attr
+ffffffc008c55288 d ctor_attr
+ffffffc008c552a8 d aliases_attr
+ffffffc008c552c8 d align_attr
+ffffffc008c552e8 d hwcache_align_attr
+ffffffc008c55308 d reclaim_account_attr
+ffffffc008c55328 d destroy_by_rcu_attr
+ffffffc008c55348 d shrink_attr
+ffffffc008c55368 d slabs_cpu_partial_attr
+ffffffc008c55388 d total_objects_attr
+ffffffc008c553a8 d slabs_attr
+ffffffc008c553c8 d sanity_checks_attr
+ffffffc008c553e8 d trace_attr
+ffffffc008c55408 d red_zone_attr
+ffffffc008c55428 d poison_attr
+ffffffc008c55448 d store_user_attr
+ffffffc008c55468 d validate_attr
+ffffffc008c55488 d cache_dma_attr
+ffffffc008c554a8 d usersize_attr
+ffffffc008c554c8 D kasan_flag_vmalloc
+ffffffc008c554d8 D kasan_page_alloc_sample
+ffffffc008c554e0 D kasan_page_alloc_sample_order
+ffffffc008c554e8 D kasan_flag_stacktrace
+ffffffc008c554f8 D __SCK__tp_func_hugepage_set_pmd
+ffffffc008c55500 D __SCK__tp_func_hugepage_update
+ffffffc008c55508 D __SCK__tp_func_set_migration_pmd
+ffffffc008c55510 D __SCK__tp_func_remove_migration_pmd
+ffffffc008c55518 d trace_event_fields_hugepage_set_pmd
+ffffffc008c55590 d trace_event_type_funcs_hugepage_set_pmd
+ffffffc008c555b0 d print_fmt_hugepage_set_pmd
+ffffffc008c555e8 d event_hugepage_set_pmd
+ffffffc008c55678 d trace_event_fields_hugepage_update
+ffffffc008c55740 d trace_event_type_funcs_hugepage_update
+ffffffc008c55760 d print_fmt_hugepage_update
+ffffffc008c557d8 d event_hugepage_update
+ffffffc008c55868 d trace_event_fields_migration_pmd
+ffffffc008c558e0 d trace_event_type_funcs_migration_pmd
+ffffffc008c55900 d print_fmt_migration_pmd
+ffffffc008c55930 d event_set_migration_pmd
+ffffffc008c559c0 d event_remove_migration_pmd
+ffffffc008c55a50 d split_huge_page_to_list._rs
+ffffffc008c55a78 d huge_zero_page_shrinker
+ffffffc008c55ab0 d deferred_split_shrinker
+ffffffc008c55ae8 d hugepage_attr
+ffffffc008c55b18 d enabled_attr
+ffffffc008c55b38 d defrag_attr
+ffffffc008c55b58 d use_zero_page_attr
+ffffffc008c55b78 d hpage_pmd_size_attr
+ffffffc008c55b98 d split_huge_pages_write.split_debug_mutex
+ffffffc008c55bc8 D __SCK__tp_func_mm_khugepaged_scan_pmd
+ffffffc008c55bd0 D __SCK__tp_func_mm_collapse_huge_page
+ffffffc008c55bd8 D __SCK__tp_func_mm_collapse_huge_page_isolate
+ffffffc008c55be0 D __SCK__tp_func_mm_collapse_huge_page_swapin
+ffffffc008c55be8 D __SCK__tp_func_mm_khugepaged_scan_file
+ffffffc008c55bf0 d trace_event_fields_mm_khugepaged_scan_pmd
+ffffffc008c55d30 d trace_event_type_funcs_mm_khugepaged_scan_pmd
+ffffffc008c55d50 d print_fmt_mm_khugepaged_scan_pmd
+ffffffc008c562a8 d event_mm_khugepaged_scan_pmd
+ffffffc008c56338 d trace_event_fields_mm_collapse_huge_page
+ffffffc008c563d8 d trace_event_type_funcs_mm_collapse_huge_page
+ffffffc008c563f8 d print_fmt_mm_collapse_huge_page
+ffffffc008c568d8 d event_mm_collapse_huge_page
+ffffffc008c56968 d trace_event_fields_mm_collapse_huge_page_isolate
+ffffffc008c56a58 d trace_event_type_funcs_mm_collapse_huge_page_isolate
+ffffffc008c56a78 d print_fmt_mm_collapse_huge_page_isolate
+ffffffc008c56fa0 d event_mm_collapse_huge_page_isolate
+ffffffc008c57030 d trace_event_fields_mm_collapse_huge_page_swapin
+ffffffc008c570f8 d trace_event_type_funcs_mm_collapse_huge_page_swapin
+ffffffc008c57118 d print_fmt_mm_collapse_huge_page_swapin
+ffffffc008c57180 d event_mm_collapse_huge_page_swapin
+ffffffc008c57210 d trace_event_fields_mm_khugepaged_scan_file
+ffffffc008c57328 d trace_event_type_funcs_mm_khugepaged_scan_file
+ffffffc008c57348 d print_fmt_mm_khugepaged_scan_file
+ffffffc008c57870 d event_mm_khugepaged_scan_file
+ffffffc008c57900 d khugepaged_attr
+ffffffc008c57950 d khugepaged_scan
+ffffffc008c57970 d khugepaged_wait
+ffffffc008c57988 D khugepaged_collapse_control
+ffffffc008c57998 d khugepaged_mutex
+ffffffc008c579c8 d khugepaged_defrag_attr
+ffffffc008c579e8 d khugepaged_max_ptes_none_attr
+ffffffc008c57a08 d khugepaged_max_ptes_swap_attr
+ffffffc008c57a28 d khugepaged_max_ptes_shared_attr
+ffffffc008c57a48 d pages_to_scan_attr
+ffffffc008c57a68 d pages_collapsed_attr
+ffffffc008c57a88 d full_scans_attr
+ffffffc008c57aa8 d scan_sleep_millisecs_attr
+ffffffc008c57ac8 d alloc_sleep_millisecs_attr
+ffffffc008c57ae8 D khugepaged_attr_group
+ffffffc008c57b10 D page_owner_ops
+ffffffc008c57b30 D __SCK__tp_func_test_pages_isolated
+ffffffc008c57b38 d trace_event_fields_test_pages_isolated
+ffffffc008c57bd8 d trace_event_type_funcs_test_pages_isolated
+ffffffc008c57bf8 d print_fmt_test_pages_isolated
+ffffffc008c57c90 d event_test_pages_isolated
+ffffffc008c57d20 D page_ext_size
+ffffffc008c57d28 d secretmem_fs
+ffffffc008c57d70 D page_reporting_order
+ffffffc008c57d78 d page_reporting_mutex
+ffffffc008c57da8 d warn_unsupported._rs
+ffffffc008c57dd0 d files_stat.llvm.13128416354326294063
+ffffffc008c57de8 d delayed_fput_work
+ffffffc008c57e70 d fs_stat_sysctls
+ffffffc008c57f70 d super_blocks
+ffffffc008c57f80 d unnamed_dev_ida
+ffffffc008c57f90 d chrdevs_lock.llvm.13371783268363921433
+ffffffc008c57fc0 d ktype_cdev_dynamic
+ffffffc008c58010 d ktype_cdev_default
+ffffffc008c58060 d formats
+ffffffc008c58070 d fs_exec_sysctls
+ffffffc008c580f0 d pipe_user_pages_soft
+ffffffc008c580f8 d pipe_max_size
+ffffffc008c58100 d pipe_fs_type
+ffffffc008c58148 d fs_pipe_sysctls
+ffffffc008c58248 d namei_sysctls
+ffffffc008c58388 d ioctl_fibmap._rs
+ffffffc008c583b0 d d_splice_alias._rs
+ffffffc008c583d8 d fs_dcache_sysctls
+ffffffc008c58458 d dentry_stat
+ffffffc008c58488 d inodes_sysctls
+ffffffc008c58548 D sysctl_nr_open_min
+ffffffc008c5854c D sysctl_nr_open_max
+ffffffc008c58580 D init_files
+ffffffc008c58840 d mnt_group_ida.llvm.4253429566290024804
+ffffffc008c58850 d namespace_sem
+ffffffc008c58890 d ex_mountpoints
+ffffffc008c588a0 d mnt_id_ida
+ffffffc008c588b0 d delayed_mntput_work
+ffffffc008c58938 d mnt_ns_seq
+ffffffc008c58940 d fs_namespace_sysctls
+ffffffc008c589c0 d seq_read_iter._rs
+ffffffc008c589e8 D dirtytime_expire_interval
+ffffffc008c589f0 D __SCK__tp_func_writeback_dirty_folio
+ffffffc008c589f8 D __SCK__tp_func_folio_wait_writeback
+ffffffc008c58a00 D __SCK__tp_func_writeback_mark_inode_dirty
+ffffffc008c58a08 D __SCK__tp_func_writeback_dirty_inode_start
+ffffffc008c58a10 D __SCK__tp_func_writeback_dirty_inode
+ffffffc008c58a18 D __SCK__tp_func_writeback_write_inode_start
+ffffffc008c58a20 D __SCK__tp_func_writeback_write_inode
+ffffffc008c58a28 D __SCK__tp_func_writeback_queue
+ffffffc008c58a30 D __SCK__tp_func_writeback_exec
+ffffffc008c58a38 D __SCK__tp_func_writeback_start
+ffffffc008c58a40 D __SCK__tp_func_writeback_written
+ffffffc008c58a48 D __SCK__tp_func_writeback_wait
+ffffffc008c58a50 D __SCK__tp_func_writeback_pages_written
+ffffffc008c58a58 D __SCK__tp_func_writeback_wake_background
+ffffffc008c58a60 D __SCK__tp_func_writeback_bdi_register
+ffffffc008c58a68 D __SCK__tp_func_wbc_writepage
+ffffffc008c58a70 D __SCK__tp_func_writeback_queue_io
+ffffffc008c58a78 D __SCK__tp_func_global_dirty_state
+ffffffc008c58a80 D __SCK__tp_func_bdi_dirty_ratelimit
+ffffffc008c58a88 D __SCK__tp_func_balance_dirty_pages
+ffffffc008c58a90 D __SCK__tp_func_writeback_sb_inodes_requeue
+ffffffc008c58a98 D __SCK__tp_func_writeback_single_inode_start
+ffffffc008c58aa0 D __SCK__tp_func_writeback_single_inode
+ffffffc008c58aa8 D __SCK__tp_func_writeback_lazytime
+ffffffc008c58ab0 D __SCK__tp_func_writeback_lazytime_iput
+ffffffc008c58ab8 D __SCK__tp_func_writeback_dirty_inode_enqueue
+ffffffc008c58ac0 D __SCK__tp_func_sb_mark_inode_writeback
+ffffffc008c58ac8 D __SCK__tp_func_sb_clear_inode_writeback
+ffffffc008c58ad0 d trace_event_fields_writeback_folio_template
+ffffffc008c58b70 d trace_event_type_funcs_writeback_folio_template
+ffffffc008c58b90 d print_fmt_writeback_folio_template
+ffffffc008c58be0 d event_writeback_dirty_folio
+ffffffc008c58c70 d event_folio_wait_writeback
+ffffffc008c58d00 d trace_event_fields_writeback_dirty_inode_template
+ffffffc008c58dc8 d trace_event_type_funcs_writeback_dirty_inode_template
+ffffffc008c58de8 d print_fmt_writeback_dirty_inode_template
+ffffffc008c59088 d event_writeback_mark_inode_dirty
+ffffffc008c59118 d event_writeback_dirty_inode_start
+ffffffc008c591a8 d event_writeback_dirty_inode
+ffffffc008c59238 d trace_event_fields_writeback_write_inode_template
+ffffffc008c59300 d trace_event_type_funcs_writeback_write_inode_template
+ffffffc008c59320 d print_fmt_writeback_write_inode_template
+ffffffc008c593a8 d event_writeback_write_inode_start
+ffffffc008c59438 d event_writeback_write_inode
+ffffffc008c594c8 d trace_event_fields_writeback_work_class
+ffffffc008c59658 d trace_event_type_funcs_writeback_work_class
+ffffffc008c59678 d print_fmt_writeback_work_class
+ffffffc008c59930 d event_writeback_queue
+ffffffc008c599c0 d event_writeback_exec
+ffffffc008c59a50 d event_writeback_start
+ffffffc008c59ae0 d event_writeback_written
+ffffffc008c59b70 d event_writeback_wait
+ffffffc008c59c00 d trace_event_fields_writeback_pages_written
+ffffffc008c59c50 d trace_event_type_funcs_writeback_pages_written
+ffffffc008c59c70 d print_fmt_writeback_pages_written
+ffffffc008c59c88 d event_writeback_pages_written
+ffffffc008c59d18 d trace_event_fields_writeback_class
+ffffffc008c59d90 d trace_event_type_funcs_writeback_class
+ffffffc008c59db0 d print_fmt_writeback_class
+ffffffc008c59df8 d event_writeback_wake_background
+ffffffc008c59e88 d trace_event_fields_writeback_bdi_register
+ffffffc008c59ed8 d trace_event_type_funcs_writeback_bdi_register
+ffffffc008c59ef8 d print_fmt_writeback_bdi_register
+ffffffc008c59f10 d event_writeback_bdi_register
+ffffffc008c59fa0 d trace_event_fields_wbc_class
+ffffffc008c5a180 d trace_event_type_funcs_wbc_class
+ffffffc008c5a1a0 d print_fmt_wbc_class
+ffffffc008c5a2e0 d event_wbc_writepage
+ffffffc008c5a370 d trace_event_fields_writeback_queue_io
+ffffffc008c5a488 d trace_event_type_funcs_writeback_queue_io
+ffffffc008c5a4a8 d print_fmt_writeback_queue_io
+ffffffc008c5a698 d event_writeback_queue_io
+ffffffc008c5a728 d trace_event_fields_global_dirty_state
+ffffffc008c5a868 d trace_event_type_funcs_global_dirty_state
+ffffffc008c5a888 d print_fmt_global_dirty_state
+ffffffc008c5a960 d event_global_dirty_state
+ffffffc008c5a9f0 d trace_event_fields_bdi_dirty_ratelimit
+ffffffc008c5ab58 d trace_event_type_funcs_bdi_dirty_ratelimit
+ffffffc008c5ab78 d print_fmt_bdi_dirty_ratelimit
+ffffffc008c5aca8 d event_bdi_dirty_ratelimit
+ffffffc008c5ad38 d trace_event_fields_balance_dirty_pages
+ffffffc008c5afb8 d trace_event_type_funcs_balance_dirty_pages
+ffffffc008c5afd8 d print_fmt_balance_dirty_pages
+ffffffc008c5b198 d event_balance_dirty_pages
+ffffffc008c5b228 d trace_event_fields_writeback_sb_inodes_requeue
+ffffffc008c5b318 d trace_event_type_funcs_writeback_sb_inodes_requeue
+ffffffc008c5b338 d print_fmt_writeback_sb_inodes_requeue
+ffffffc008c5b520 d event_writeback_sb_inodes_requeue
+ffffffc008c5b5b0 d trace_event_fields_writeback_single_inode_template
+ffffffc008c5b718 d trace_event_type_funcs_writeback_single_inode_template
+ffffffc008c5b738 d print_fmt_writeback_single_inode_template
+ffffffc008c5b978 d event_writeback_single_inode_start
+ffffffc008c5ba08 d event_writeback_single_inode
+ffffffc008c5ba98 d trace_event_fields_writeback_inode_template
+ffffffc008c5bb88 d trace_event_type_funcs_writeback_inode_template
+ffffffc008c5bba8 d print_fmt_writeback_inode_template
+ffffffc008c5bd98 d event_writeback_lazytime
+ffffffc008c5be28 d event_writeback_lazytime_iput
+ffffffc008c5beb8 d event_writeback_dirty_inode_enqueue
+ffffffc008c5bf48 d event_sb_mark_inode_writeback
+ffffffc008c5bfd8 d event_sb_clear_inode_writeback
+ffffffc008c5c068 d dirtytime_work
+ffffffc008c5c0f0 D init_fs
+ffffffc008c5c128 d nsfs
+ffffffc008c5c170 d buffer_io_error._rs
+ffffffc008c5c198 d buffer_io_error._rs
+ffffffc008c5c1c0 d __find_get_block_slow.last_warned
+ffffffc008c5c1e8 d connector_reaper_work
+ffffffc008c5c218 d destroy_list
+ffffffc008c5c228 d reaper_work.llvm.18257486102552763611
+ffffffc008c5c2b0 d fsnotify_add_mark_list._rs
+ffffffc008c5c2d8 d inotify_table
+ffffffc008c5c3d8 d it_int_max
+ffffffc008c5c3e0 d epmutex
+ffffffc008c5c410 d tfile_check_list
+ffffffc008c5c418 d epoll_table
+ffffffc008c5c498 d long_max
+ffffffc008c5c4a0 d anon_inode_fs_type
+ffffffc008c5c4e8 d cancel_list
+ffffffc008c5c4f8 d timerfd_work.llvm.8555337218208337935
+ffffffc008c5c528 d eventfd_ida
+ffffffc008c5c538 d userfaultfd_misc
+ffffffc008c5c588 d aio_setup.aio_fs
+ffffffc008c5c5d0 d aio_sysctls
+ffffffc008c5c690 d aio_max_nr
+ffffffc008c5c698 D __SCK__tp_func_locks_get_lock_context
+ffffffc008c5c6a0 D __SCK__tp_func_posix_lock_inode
+ffffffc008c5c6a8 D __SCK__tp_func_fcntl_setlk
+ffffffc008c5c6b0 D __SCK__tp_func_locks_remove_posix
+ffffffc008c5c6b8 D __SCK__tp_func_flock_lock_inode
+ffffffc008c5c6c0 D __SCK__tp_func_break_lease_noblock
+ffffffc008c5c6c8 D __SCK__tp_func_break_lease_block
+ffffffc008c5c6d0 D __SCK__tp_func_break_lease_unblock
+ffffffc008c5c6d8 D __SCK__tp_func_generic_delete_lease
+ffffffc008c5c6e0 D __SCK__tp_func_time_out_leases
+ffffffc008c5c6e8 D __SCK__tp_func_generic_add_lease
+ffffffc008c5c6f0 D __SCK__tp_func_leases_conflict
+ffffffc008c5c6f8 d trace_event_fields_locks_get_lock_context
+ffffffc008c5c7c0 d trace_event_type_funcs_locks_get_lock_context
+ffffffc008c5c7e0 d print_fmt_locks_get_lock_context
+ffffffc008c5c8d0 d event_locks_get_lock_context
+ffffffc008c5c960 d trace_event_fields_filelock_lock
+ffffffc008c5cb40 d trace_event_type_funcs_filelock_lock
+ffffffc008c5cb60 d print_fmt_filelock_lock
+ffffffc008c5ce10 d event_posix_lock_inode
+ffffffc008c5cea0 d event_fcntl_setlk
+ffffffc008c5cf30 d event_locks_remove_posix
+ffffffc008c5cfc0 d event_flock_lock_inode
+ffffffc008c5d050 d trace_event_fields_filelock_lease
+ffffffc008c5d1e0 d trace_event_type_funcs_filelock_lease
+ffffffc008c5d200 d print_fmt_filelock_lease
+ffffffc008c5d4a8 d event_break_lease_noblock
+ffffffc008c5d538 d event_break_lease_block
+ffffffc008c5d5c8 d event_break_lease_unblock
+ffffffc008c5d658 d event_generic_delete_lease
+ffffffc008c5d6e8 d event_time_out_leases
+ffffffc008c5d778 d trace_event_fields_generic_add_lease
+ffffffc008c5d8e0 d trace_event_type_funcs_generic_add_lease
+ffffffc008c5d900 d print_fmt_generic_add_lease
+ffffffc008c5db68 d event_generic_add_lease
+ffffffc008c5dbf8 d trace_event_fields_leases_conflict
+ffffffc008c5dd38 d trace_event_type_funcs_leases_conflict
+ffffffc008c5dd58 d print_fmt_leases_conflict
+ffffffc008c5e0b8 d event_leases_conflict
+ffffffc008c5e148 d file_rwsem
+ffffffc008c5e1a8 d lease_break_time
+ffffffc008c5e1b0 d locks_sysctls
+ffffffc008c5e270 d leases_enable
+ffffffc008c5e278 d misc_format
+ffffffc008c5e2b0 d bm_fs_type
+ffffffc008c5e2f8 d entries
+ffffffc008c5e308 d script_format
+ffffffc008c5e340 d elf_format
+ffffffc008c5e378 d do_coredump._rs
+ffffffc008c5e3a0 d do_coredump._rs.9
+ffffffc008c5e3c8 d core_pattern
+ffffffc008c5e448 d core_name_size
+ffffffc008c5e450 d coredump_sysctls
+ffffffc008c5e550 D __SCK__tp_func_iomap_readpage
+ffffffc008c5e558 D __SCK__tp_func_iomap_readahead
+ffffffc008c5e560 D __SCK__tp_func_iomap_writepage
+ffffffc008c5e568 D __SCK__tp_func_iomap_release_folio
+ffffffc008c5e570 D __SCK__tp_func_iomap_invalidate_folio
+ffffffc008c5e578 D __SCK__tp_func_iomap_dio_invalidate_fail
+ffffffc008c5e580 D __SCK__tp_func_iomap_iter_dstmap
+ffffffc008c5e588 D __SCK__tp_func_iomap_iter_srcmap
+ffffffc008c5e590 D __SCK__tp_func_iomap_writepage_map
+ffffffc008c5e598 D __SCK__tp_func_iomap_iter
+ffffffc008c5e5a0 d trace_event_fields_iomap_readpage_class
+ffffffc008c5e640 d trace_event_type_funcs_iomap_readpage_class
+ffffffc008c5e660 d print_fmt_iomap_readpage_class
+ffffffc008c5e6f8 d event_iomap_readpage
+ffffffc008c5e788 d event_iomap_readahead
+ffffffc008c5e818 d trace_event_fields_iomap_range_class
+ffffffc008c5e908 d trace_event_type_funcs_iomap_range_class
+ffffffc008c5e928 d print_fmt_iomap_range_class
+ffffffc008c5e9f0 d event_iomap_writepage
+ffffffc008c5ea80 d event_iomap_release_folio
+ffffffc008c5eb10 d event_iomap_invalidate_folio
+ffffffc008c5eba0 d event_iomap_dio_invalidate_fail
+ffffffc008c5ec30 d trace_event_fields_iomap_class
+ffffffc008c5ed98 d trace_event_type_funcs_iomap_class
+ffffffc008c5edb8 d print_fmt_iomap_class
+ffffffc008c5f000 d event_iomap_iter_dstmap
+ffffffc008c5f090 d event_iomap_iter_srcmap
+ffffffc008c5f120 d event_iomap_writepage_map
+ffffffc008c5f1b0 d trace_event_fields_iomap_iter
+ffffffc008c5f2f0 d trace_event_type_funcs_iomap_iter
+ffffffc008c5f310 d print_fmt_iomap_iter
+ffffffc008c5f4b8 d event_iomap_iter
+ffffffc008c5f548 d iomap_finish_ioend._rs
+ffffffc008c5f570 d iomap_dio_iter._rs
+ffffffc008c5f598 d proc_fs_type
+ffffffc008c5f5e0 D proc_root
+ffffffc008c5f690 d proc_inum_ida.llvm.11486506462492008284
+ffffffc008c5f6a0 d sysctl_table_root.llvm.13686038943878111742
+ffffffc008c5f718 d root_table
+ffffffc008c5f798 d __kernfs_iattrs.iattr_mutex
+ffffffc008c5f7c8 D kernfs_xattr_handlers
+ffffffc008c5f7e8 d kernfs_notify.kernfs_notify_work
+ffffffc008c5f818 d kernfs_notify_list
+ffffffc008c5f820 d sysfs_fs_type
+ffffffc008c5f868 d pty_limit
+ffffffc008c5f86c d pty_reserve
+ffffffc008c5f870 d devpts_fs_type
+ffffffc008c5f8b8 d pty_root_table
+ffffffc008c5f938 d pty_kern_table
+ffffffc008c5f9b8 d pty_table
+ffffffc008c5fab8 d pty_limit_max
+ffffffc008c5fac0 d es_reclaim_extents._rs
+ffffffc008c5fae8 d ext4_ioctl_checkpoint._rs
+ffffffc008c5fb10 d ext4_groupinfo_create_slab.ext4_grpinfo_slab_create_mutex
+ffffffc008c5fb40 D __SCK__tp_func_ext4_other_inode_update_time
+ffffffc008c5fb48 D __SCK__tp_func_ext4_free_inode
+ffffffc008c5fb50 D __SCK__tp_func_ext4_request_inode
+ffffffc008c5fb58 D __SCK__tp_func_ext4_allocate_inode
+ffffffc008c5fb60 D __SCK__tp_func_ext4_evict_inode
+ffffffc008c5fb68 D __SCK__tp_func_ext4_drop_inode
+ffffffc008c5fb70 D __SCK__tp_func_ext4_nfs_commit_metadata
+ffffffc008c5fb78 D __SCK__tp_func_ext4_mark_inode_dirty
+ffffffc008c5fb80 D __SCK__tp_func_ext4_begin_ordered_truncate
+ffffffc008c5fb88 D __SCK__tp_func_ext4_write_begin
+ffffffc008c5fb90 D __SCK__tp_func_ext4_da_write_begin
+ffffffc008c5fb98 D __SCK__tp_func_ext4_write_end
+ffffffc008c5fba0 D __SCK__tp_func_ext4_journalled_write_end
+ffffffc008c5fba8 D __SCK__tp_func_ext4_da_write_end
+ffffffc008c5fbb0 D __SCK__tp_func_ext4_writepages
+ffffffc008c5fbb8 D __SCK__tp_func_ext4_da_write_pages
+ffffffc008c5fbc0 D __SCK__tp_func_ext4_da_write_pages_extent
+ffffffc008c5fbc8 D __SCK__tp_func_ext4_writepages_result
+ffffffc008c5fbd0 D __SCK__tp_func_ext4_writepage
+ffffffc008c5fbd8 D __SCK__tp_func_ext4_readpage
+ffffffc008c5fbe0 D __SCK__tp_func_ext4_releasepage
+ffffffc008c5fbe8 D __SCK__tp_func_ext4_invalidate_folio
+ffffffc008c5fbf0 D __SCK__tp_func_ext4_journalled_invalidate_folio
+ffffffc008c5fbf8 D __SCK__tp_func_ext4_discard_blocks
+ffffffc008c5fc00 D __SCK__tp_func_ext4_mb_new_inode_pa
+ffffffc008c5fc08 D __SCK__tp_func_ext4_mb_new_group_pa
+ffffffc008c5fc10 D __SCK__tp_func_ext4_mb_release_inode_pa
+ffffffc008c5fc18 D __SCK__tp_func_ext4_mb_release_group_pa
+ffffffc008c5fc20 D __SCK__tp_func_ext4_discard_preallocations
+ffffffc008c5fc28 D __SCK__tp_func_ext4_mb_discard_preallocations
+ffffffc008c5fc30 D __SCK__tp_func_ext4_request_blocks
+ffffffc008c5fc38 D __SCK__tp_func_ext4_allocate_blocks
+ffffffc008c5fc40 D __SCK__tp_func_ext4_free_blocks
+ffffffc008c5fc48 D __SCK__tp_func_ext4_sync_file_enter
+ffffffc008c5fc50 D __SCK__tp_func_ext4_sync_file_exit
+ffffffc008c5fc58 D __SCK__tp_func_ext4_sync_fs
+ffffffc008c5fc60 D __SCK__tp_func_ext4_alloc_da_blocks
+ffffffc008c5fc68 D __SCK__tp_func_ext4_mballoc_alloc
+ffffffc008c5fc70 D __SCK__tp_func_ext4_mballoc_prealloc
+ffffffc008c5fc78 D __SCK__tp_func_ext4_mballoc_discard
+ffffffc008c5fc80 D __SCK__tp_func_ext4_mballoc_free
+ffffffc008c5fc88 D __SCK__tp_func_ext4_forget
+ffffffc008c5fc90 D __SCK__tp_func_ext4_da_update_reserve_space
+ffffffc008c5fc98 D __SCK__tp_func_ext4_da_reserve_space
+ffffffc008c5fca0 D __SCK__tp_func_ext4_da_release_space
+ffffffc008c5fca8 D __SCK__tp_func_ext4_mb_bitmap_load
+ffffffc008c5fcb0 D __SCK__tp_func_ext4_mb_buddy_bitmap_load
+ffffffc008c5fcb8 D __SCK__tp_func_ext4_load_inode_bitmap
+ffffffc008c5fcc0 D __SCK__tp_func_ext4_read_block_bitmap_load
+ffffffc008c5fcc8 D __SCK__tp_func_ext4_fallocate_enter
+ffffffc008c5fcd0 D __SCK__tp_func_ext4_punch_hole
+ffffffc008c5fcd8 D __SCK__tp_func_ext4_zero_range
+ffffffc008c5fce0 D __SCK__tp_func_ext4_fallocate_exit
+ffffffc008c5fce8 D __SCK__tp_func_ext4_unlink_enter
+ffffffc008c5fcf0 D __SCK__tp_func_ext4_unlink_exit
+ffffffc008c5fcf8 D __SCK__tp_func_ext4_truncate_enter
+ffffffc008c5fd00 D __SCK__tp_func_ext4_truncate_exit
+ffffffc008c5fd08 D __SCK__tp_func_ext4_ext_convert_to_initialized_enter
+ffffffc008c5fd10 D __SCK__tp_func_ext4_ext_convert_to_initialized_fastpath
+ffffffc008c5fd18 D __SCK__tp_func_ext4_ext_map_blocks_enter
+ffffffc008c5fd20 D __SCK__tp_func_ext4_ind_map_blocks_enter
+ffffffc008c5fd28 D __SCK__tp_func_ext4_ext_map_blocks_exit
+ffffffc008c5fd30 D __SCK__tp_func_ext4_ind_map_blocks_exit
+ffffffc008c5fd38 D __SCK__tp_func_ext4_ext_load_extent
+ffffffc008c5fd40 D __SCK__tp_func_ext4_load_inode
+ffffffc008c5fd48 D __SCK__tp_func_ext4_journal_start
+ffffffc008c5fd50 D __SCK__tp_func_ext4_journal_start_reserved
+ffffffc008c5fd58 D __SCK__tp_func_ext4_trim_extent
+ffffffc008c5fd60 D __SCK__tp_func_ext4_trim_all_free
+ffffffc008c5fd68 D __SCK__tp_func_ext4_ext_handle_unwritten_extents
+ffffffc008c5fd70 D __SCK__tp_func_ext4_get_implied_cluster_alloc_exit
+ffffffc008c5fd78 D __SCK__tp_func_ext4_ext_show_extent
+ffffffc008c5fd80 D __SCK__tp_func_ext4_remove_blocks
+ffffffc008c5fd88 D __SCK__tp_func_ext4_ext_rm_leaf
+ffffffc008c5fd90 D __SCK__tp_func_ext4_ext_rm_idx
+ffffffc008c5fd98 D __SCK__tp_func_ext4_ext_remove_space
+ffffffc008c5fda0 D __SCK__tp_func_ext4_ext_remove_space_done
+ffffffc008c5fda8 D __SCK__tp_func_ext4_es_insert_extent
+ffffffc008c5fdb0 D __SCK__tp_func_ext4_es_cache_extent
+ffffffc008c5fdb8 D __SCK__tp_func_ext4_es_remove_extent
+ffffffc008c5fdc0 D __SCK__tp_func_ext4_es_find_extent_range_enter
+ffffffc008c5fdc8 D __SCK__tp_func_ext4_es_find_extent_range_exit
+ffffffc008c5fdd0 D __SCK__tp_func_ext4_es_lookup_extent_enter
+ffffffc008c5fdd8 D __SCK__tp_func_ext4_es_lookup_extent_exit
+ffffffc008c5fde0 D __SCK__tp_func_ext4_es_shrink_count
+ffffffc008c5fde8 D __SCK__tp_func_ext4_es_shrink_scan_enter
+ffffffc008c5fdf0 D __SCK__tp_func_ext4_es_shrink_scan_exit
+ffffffc008c5fdf8 D __SCK__tp_func_ext4_collapse_range
+ffffffc008c5fe00 D __SCK__tp_func_ext4_insert_range
+ffffffc008c5fe08 D __SCK__tp_func_ext4_es_shrink
+ffffffc008c5fe10 D __SCK__tp_func_ext4_es_insert_delayed_block
+ffffffc008c5fe18 D __SCK__tp_func_ext4_fsmap_low_key
+ffffffc008c5fe20 D __SCK__tp_func_ext4_fsmap_high_key
+ffffffc008c5fe28 D __SCK__tp_func_ext4_fsmap_mapping
+ffffffc008c5fe30 D __SCK__tp_func_ext4_getfsmap_low_key
+ffffffc008c5fe38 D __SCK__tp_func_ext4_getfsmap_high_key
+ffffffc008c5fe40 D __SCK__tp_func_ext4_getfsmap_mapping
+ffffffc008c5fe48 D __SCK__tp_func_ext4_shutdown
+ffffffc008c5fe50 D __SCK__tp_func_ext4_error
+ffffffc008c5fe58 D __SCK__tp_func_ext4_prefetch_bitmaps
+ffffffc008c5fe60 D __SCK__tp_func_ext4_lazy_itable_init
+ffffffc008c5fe68 D __SCK__tp_func_ext4_fc_replay_scan
+ffffffc008c5fe70 D __SCK__tp_func_ext4_fc_replay
+ffffffc008c5fe78 D __SCK__tp_func_ext4_fc_commit_start
+ffffffc008c5fe80 D __SCK__tp_func_ext4_fc_commit_stop
+ffffffc008c5fe88 D __SCK__tp_func_ext4_fc_stats
+ffffffc008c5fe90 D __SCK__tp_func_ext4_fc_track_create
+ffffffc008c5fe98 D __SCK__tp_func_ext4_fc_track_link
+ffffffc008c5fea0 D __SCK__tp_func_ext4_fc_track_unlink
+ffffffc008c5fea8 D __SCK__tp_func_ext4_fc_track_inode
+ffffffc008c5feb0 D __SCK__tp_func_ext4_fc_track_range
+ffffffc008c5feb8 D __SCK__tp_func_ext4_fc_cleanup
+ffffffc008c5fec0 D __SCK__tp_func_ext4_update_sb
+ffffffc008c5fec8 d trace_event_fields_ext4_other_inode_update_time
+ffffffc008c5ffe0 d trace_event_type_funcs_ext4_other_inode_update_time
+ffffffc008c60000 d print_fmt_ext4_other_inode_update_time
+ffffffc008c600e8 d event_ext4_other_inode_update_time
+ffffffc008c60178 d trace_event_fields_ext4_free_inode
+ffffffc008c60290 d trace_event_type_funcs_ext4_free_inode
+ffffffc008c602b0 d print_fmt_ext4_free_inode
+ffffffc008c60388 d event_ext4_free_inode
+ffffffc008c60418 d trace_event_fields_ext4_request_inode
+ffffffc008c604b8 d trace_event_type_funcs_ext4_request_inode
+ffffffc008c604d8 d print_fmt_ext4_request_inode
+ffffffc008c60578 d event_ext4_request_inode
+ffffffc008c60608 d trace_event_fields_ext4_allocate_inode
+ffffffc008c606d0 d trace_event_type_funcs_ext4_allocate_inode
+ffffffc008c606f0 d print_fmt_ext4_allocate_inode
+ffffffc008c607b0 d event_ext4_allocate_inode
+ffffffc008c60840 d trace_event_fields_ext4_evict_inode
+ffffffc008c608e0 d trace_event_type_funcs_ext4_evict_inode
+ffffffc008c60900 d print_fmt_ext4_evict_inode
+ffffffc008c609a0 d event_ext4_evict_inode
+ffffffc008c60a30 d trace_event_fields_ext4_drop_inode
+ffffffc008c60ad0 d trace_event_type_funcs_ext4_drop_inode
+ffffffc008c60af0 d print_fmt_ext4_drop_inode
+ffffffc008c60b88 d event_ext4_drop_inode
+ffffffc008c60c18 d trace_event_fields_ext4_nfs_commit_metadata
+ffffffc008c60c90 d trace_event_type_funcs_ext4_nfs_commit_metadata
+ffffffc008c60cb0 d print_fmt_ext4_nfs_commit_metadata
+ffffffc008c60d38 d event_ext4_nfs_commit_metadata
+ffffffc008c60dc8 d trace_event_fields_ext4_mark_inode_dirty
+ffffffc008c60e68 d trace_event_type_funcs_ext4_mark_inode_dirty
+ffffffc008c60e88 d print_fmt_ext4_mark_inode_dirty
+ffffffc008c60f30 d event_ext4_mark_inode_dirty
+ffffffc008c60fc0 d trace_event_fields_ext4_begin_ordered_truncate
+ffffffc008c61060 d trace_event_type_funcs_ext4_begin_ordered_truncate
+ffffffc008c61080 d print_fmt_ext4_begin_ordered_truncate
+ffffffc008c61128 d event_ext4_begin_ordered_truncate
+ffffffc008c611b8 d trace_event_fields_ext4__write_begin
+ffffffc008c61280 d trace_event_type_funcs_ext4__write_begin
+ffffffc008c612a0 d print_fmt_ext4__write_begin
+ffffffc008c61350 d event_ext4_write_begin
+ffffffc008c613e0 d event_ext4_da_write_begin
+ffffffc008c61470 d trace_event_fields_ext4__write_end
+ffffffc008c61560 d trace_event_type_funcs_ext4__write_end
+ffffffc008c61580 d print_fmt_ext4__write_end
+ffffffc008c61640 d event_ext4_write_end
+ffffffc008c616d0 d event_ext4_journalled_write_end
+ffffffc008c61760 d event_ext4_da_write_end
+ffffffc008c617f0 d trace_event_fields_ext4_writepages
+ffffffc008c619a8 d trace_event_type_funcs_ext4_writepages
+ffffffc008c619c8 d print_fmt_ext4_writepages
+ffffffc008c61b78 d event_ext4_writepages
+ffffffc008c61c08 d trace_event_fields_ext4_da_write_pages
+ffffffc008c61cf8 d trace_event_type_funcs_ext4_da_write_pages
+ffffffc008c61d18 d print_fmt_ext4_da_write_pages
+ffffffc008c61e00 d event_ext4_da_write_pages
+ffffffc008c61e90 d trace_event_fields_ext4_da_write_pages_extent
+ffffffc008c61f80 d trace_event_type_funcs_ext4_da_write_pages_extent
+ffffffc008c61fa0 d print_fmt_ext4_da_write_pages_extent
+ffffffc008c62110 d event_ext4_da_write_pages_extent
+ffffffc008c621a0 d trace_event_fields_ext4_writepages_result
+ffffffc008c622e0 d trace_event_type_funcs_ext4_writepages_result
+ffffffc008c62300 d print_fmt_ext4_writepages_result
+ffffffc008c62438 d event_ext4_writepages_result
+ffffffc008c624c8 d trace_event_fields_ext4__page_op
+ffffffc008c62568 d trace_event_type_funcs_ext4__page_op
+ffffffc008c62588 d print_fmt_ext4__page_op
+ffffffc008c62638 d event_ext4_writepage
+ffffffc008c626c8 d event_ext4_readpage
+ffffffc008c62758 d event_ext4_releasepage
+ffffffc008c627e8 d trace_event_fields_ext4_invalidate_folio_op
+ffffffc008c628d8 d trace_event_type_funcs_ext4_invalidate_folio_op
+ffffffc008c628f8 d print_fmt_ext4_invalidate_folio_op
+ffffffc008c629e0 d event_ext4_invalidate_folio
+ffffffc008c62a70 d event_ext4_journalled_invalidate_folio
+ffffffc008c62b00 d trace_event_fields_ext4_discard_blocks
+ffffffc008c62ba0 d trace_event_type_funcs_ext4_discard_blocks
+ffffffc008c62bc0 d print_fmt_ext4_discard_blocks
+ffffffc008c62c50 d event_ext4_discard_blocks
+ffffffc008c62ce0 d trace_event_fields_ext4__mb_new_pa
+ffffffc008c62dd0 d trace_event_type_funcs_ext4__mb_new_pa
+ffffffc008c62df0 d print_fmt_ext4__mb_new_pa
+ffffffc008c62ec8 d event_ext4_mb_new_inode_pa
+ffffffc008c62f58 d event_ext4_mb_new_group_pa
+ffffffc008c62fe8 d trace_event_fields_ext4_mb_release_inode_pa
+ffffffc008c630b0 d trace_event_type_funcs_ext4_mb_release_inode_pa
+ffffffc008c630d0 d print_fmt_ext4_mb_release_inode_pa
+ffffffc008c63188 d event_ext4_mb_release_inode_pa
+ffffffc008c63218 d trace_event_fields_ext4_mb_release_group_pa
+ffffffc008c632b8 d trace_event_type_funcs_ext4_mb_release_group_pa
+ffffffc008c632d8 d print_fmt_ext4_mb_release_group_pa
+ffffffc008c63370 d event_ext4_mb_release_group_pa
+ffffffc008c63400 d trace_event_fields_ext4_discard_preallocations
+ffffffc008c634c8 d trace_event_type_funcs_ext4_discard_preallocations
+ffffffc008c634e8 d print_fmt_ext4_discard_preallocations
+ffffffc008c63598 d event_ext4_discard_preallocations
+ffffffc008c63628 d trace_event_fields_ext4_mb_discard_preallocations
+ffffffc008c636a0 d trace_event_type_funcs_ext4_mb_discard_preallocations
+ffffffc008c636c0 d print_fmt_ext4_mb_discard_preallocations
+ffffffc008c63740 d event_ext4_mb_discard_preallocations
+ffffffc008c637d0 d trace_event_fields_ext4_request_blocks
+ffffffc008c63988 d trace_event_type_funcs_ext4_request_blocks
+ffffffc008c639a8 d print_fmt_ext4_request_blocks
+ffffffc008c63c90 d event_ext4_request_blocks
+ffffffc008c63d20 d trace_event_fields_ext4_allocate_blocks
+ffffffc008c63f00 d trace_event_type_funcs_ext4_allocate_blocks
+ffffffc008c63f20 d print_fmt_ext4_allocate_blocks
+ffffffc008c64218 d event_ext4_allocate_blocks
+ffffffc008c642a8 d trace_event_fields_ext4_free_blocks
+ffffffc008c643c0 d trace_event_type_funcs_ext4_free_blocks
+ffffffc008c643e0 d print_fmt_ext4_free_blocks
+ffffffc008c64568 d event_ext4_free_blocks
+ffffffc008c645f8 d trace_event_fields_ext4_sync_file_enter
+ffffffc008c646c0 d trace_event_type_funcs_ext4_sync_file_enter
+ffffffc008c646e0 d print_fmt_ext4_sync_file_enter
+ffffffc008c647b0 d event_ext4_sync_file_enter
+ffffffc008c64840 d trace_event_fields_ext4_sync_file_exit
+ffffffc008c648e0 d trace_event_type_funcs_ext4_sync_file_exit
+ffffffc008c64900 d print_fmt_ext4_sync_file_exit
+ffffffc008c64998 d event_ext4_sync_file_exit
+ffffffc008c64a28 d trace_event_fields_ext4_sync_fs
+ffffffc008c64aa0 d trace_event_type_funcs_ext4_sync_fs
+ffffffc008c64ac0 d print_fmt_ext4_sync_fs
+ffffffc008c64b38 d event_ext4_sync_fs
+ffffffc008c64bc8 d trace_event_fields_ext4_alloc_da_blocks
+ffffffc008c64c68 d trace_event_type_funcs_ext4_alloc_da_blocks
+ffffffc008c64c88 d print_fmt_ext4_alloc_da_blocks
+ffffffc008c64d38 d event_ext4_alloc_da_blocks
+ffffffc008c64dc8 d trace_event_fields_ext4_mballoc_alloc
+ffffffc008c65110 d trace_event_type_funcs_ext4_mballoc_alloc
+ffffffc008c65130 d print_fmt_ext4_mballoc_alloc
+ffffffc008c65500 d event_ext4_mballoc_alloc
+ffffffc008c65590 d trace_event_fields_ext4_mballoc_prealloc
+ffffffc008c65748 d trace_event_type_funcs_ext4_mballoc_prealloc
+ffffffc008c65768 d print_fmt_ext4_mballoc_prealloc
+ffffffc008c658a8 d event_ext4_mballoc_prealloc
+ffffffc008c65938 d trace_event_fields_ext4__mballoc
+ffffffc008c65a28 d trace_event_type_funcs_ext4__mballoc
+ffffffc008c65a48 d print_fmt_ext4__mballoc
+ffffffc008c65b18 d event_ext4_mballoc_discard
+ffffffc008c65ba8 d event_ext4_mballoc_free
+ffffffc008c65c38 d trace_event_fields_ext4_forget
+ffffffc008c65d28 d trace_event_type_funcs_ext4_forget
+ffffffc008c65d48 d print_fmt_ext4_forget
+ffffffc008c65e20 d event_ext4_forget
+ffffffc008c65eb0 d trace_event_fields_ext4_da_update_reserve_space
+ffffffc008c65ff0 d trace_event_type_funcs_ext4_da_update_reserve_space
+ffffffc008c66010 d print_fmt_ext4_da_update_reserve_space
+ffffffc008c66140 d event_ext4_da_update_reserve_space
+ffffffc008c661d0 d trace_event_fields_ext4_da_reserve_space
+ffffffc008c662c0 d trace_event_type_funcs_ext4_da_reserve_space
+ffffffc008c662e0 d print_fmt_ext4_da_reserve_space
+ffffffc008c663d0 d event_ext4_da_reserve_space
+ffffffc008c66460 d trace_event_fields_ext4_da_release_space
+ffffffc008c66578 d trace_event_type_funcs_ext4_da_release_space
+ffffffc008c66598 d print_fmt_ext4_da_release_space
+ffffffc008c666a8 d event_ext4_da_release_space
+ffffffc008c66738 d trace_event_fields_ext4__bitmap_load
+ffffffc008c667b0 d trace_event_type_funcs_ext4__bitmap_load
+ffffffc008c667d0 d print_fmt_ext4__bitmap_load
+ffffffc008c66848 d event_ext4_mb_bitmap_load
+ffffffc008c668d8 d event_ext4_mb_buddy_bitmap_load
+ffffffc008c66968 d event_ext4_load_inode_bitmap
+ffffffc008c669f8 d trace_event_fields_ext4_read_block_bitmap_load
+ffffffc008c66a98 d trace_event_type_funcs_ext4_read_block_bitmap_load
+ffffffc008c66ab8 d print_fmt_ext4_read_block_bitmap_load
+ffffffc008c66b50 d event_ext4_read_block_bitmap_load
+ffffffc008c66be0 d trace_event_fields_ext4__fallocate_mode
+ffffffc008c66cd0 d trace_event_type_funcs_ext4__fallocate_mode
+ffffffc008c66cf0 d print_fmt_ext4__fallocate_mode
+ffffffc008c66e48 d event_ext4_fallocate_enter
+ffffffc008c66ed8 d event_ext4_punch_hole
+ffffffc008c66f68 d event_ext4_zero_range
+ffffffc008c66ff8 d trace_event_fields_ext4_fallocate_exit
+ffffffc008c670e8 d trace_event_type_funcs_ext4_fallocate_exit
+ffffffc008c67108 d print_fmt_ext4_fallocate_exit
+ffffffc008c671c8 d event_ext4_fallocate_exit
+ffffffc008c67258 d trace_event_fields_ext4_unlink_enter
+ffffffc008c67320 d trace_event_type_funcs_ext4_unlink_enter
+ffffffc008c67340 d print_fmt_ext4_unlink_enter
+ffffffc008c67408 d event_ext4_unlink_enter
+ffffffc008c67498 d trace_event_fields_ext4_unlink_exit
+ffffffc008c67538 d trace_event_type_funcs_ext4_unlink_exit
+ffffffc008c67558 d print_fmt_ext4_unlink_exit
+ffffffc008c675f0 d event_ext4_unlink_exit
+ffffffc008c67680 d trace_event_fields_ext4__truncate
+ffffffc008c67720 d trace_event_type_funcs_ext4__truncate
+ffffffc008c67740 d print_fmt_ext4__truncate
+ffffffc008c677e0 d event_ext4_truncate_enter
+ffffffc008c67870 d event_ext4_truncate_exit
+ffffffc008c67900 d trace_event_fields_ext4_ext_convert_to_initialized_enter
+ffffffc008c67a40 d trace_event_type_funcs_ext4_ext_convert_to_initialized_enter
+ffffffc008c67a60 d print_fmt_ext4_ext_convert_to_initialized_enter
+ffffffc008c67b58 d event_ext4_ext_convert_to_initialized_enter
+ffffffc008c67be8 d trace_event_fields_ext4_ext_convert_to_initialized_fastpath
+ffffffc008c67da0 d trace_event_type_funcs_ext4_ext_convert_to_initialized_fastpath
+ffffffc008c67dc0 d print_fmt_ext4_ext_convert_to_initialized_fastpath
+ffffffc008c67f00 d event_ext4_ext_convert_to_initialized_fastpath
+ffffffc008c67f90 d trace_event_fields_ext4__map_blocks_enter
+ffffffc008c68080 d trace_event_type_funcs_ext4__map_blocks_enter
+ffffffc008c680a0 d print_fmt_ext4__map_blocks_enter
+ffffffc008c68290 d event_ext4_ext_map_blocks_enter
+ffffffc008c68320 d event_ext4_ind_map_blocks_enter
+ffffffc008c683b0 d trace_event_fields_ext4__map_blocks_exit
+ffffffc008c68518 d trace_event_type_funcs_ext4__map_blocks_exit
+ffffffc008c68538 d print_fmt_ext4__map_blocks_exit
+ffffffc008c68808 d event_ext4_ext_map_blocks_exit
+ffffffc008c68898 d event_ext4_ind_map_blocks_exit
+ffffffc008c68928 d trace_event_fields_ext4_ext_load_extent
+ffffffc008c689f0 d trace_event_type_funcs_ext4_ext_load_extent
+ffffffc008c68a10 d print_fmt_ext4_ext_load_extent
+ffffffc008c68ac0 d event_ext4_ext_load_extent
+ffffffc008c68b50 d trace_event_fields_ext4_load_inode
+ffffffc008c68bc8 d trace_event_type_funcs_ext4_load_inode
+ffffffc008c68be8 d print_fmt_ext4_load_inode
+ffffffc008c68c70 d event_ext4_load_inode
+ffffffc008c68d00 d trace_event_fields_ext4_journal_start
+ffffffc008c68df0 d trace_event_type_funcs_ext4_journal_start
+ffffffc008c68e10 d print_fmt_ext4_journal_start
+ffffffc008c68ef0 d event_ext4_journal_start
+ffffffc008c68f80 d trace_event_fields_ext4_journal_start_reserved
+ffffffc008c69020 d trace_event_type_funcs_ext4_journal_start_reserved
+ffffffc008c69040 d print_fmt_ext4_journal_start_reserved
+ffffffc008c690d8 d event_ext4_journal_start_reserved
+ffffffc008c69168 d trace_event_fields_ext4__trim
+ffffffc008c69258 d trace_event_type_funcs_ext4__trim
+ffffffc008c69278 d print_fmt_ext4__trim
+ffffffc008c692e8 d event_ext4_trim_extent
+ffffffc008c69378 d event_ext4_trim_all_free
+ffffffc008c69408 d trace_event_fields_ext4_ext_handle_unwritten_extents
+ffffffc008c69570 d trace_event_type_funcs_ext4_ext_handle_unwritten_extents
+ffffffc008c69590 d print_fmt_ext4_ext_handle_unwritten_extents
+ffffffc008c69818 d event_ext4_ext_handle_unwritten_extents
+ffffffc008c698a8 d trace_event_fields_ext4_get_implied_cluster_alloc_exit
+ffffffc008c699c0 d trace_event_type_funcs_ext4_get_implied_cluster_alloc_exit
+ffffffc008c699e0 d print_fmt_ext4_get_implied_cluster_alloc_exit
+ffffffc008c69b68 d event_ext4_get_implied_cluster_alloc_exit
+ffffffc008c69bf8 d trace_event_fields_ext4_ext_show_extent
+ffffffc008c69ce8 d trace_event_type_funcs_ext4_ext_show_extent
+ffffffc008c69d08 d print_fmt_ext4_ext_show_extent
+ffffffc008c69df8 d event_ext4_ext_show_extent
+ffffffc008c69e88 d trace_event_fields_ext4_remove_blocks
+ffffffc008c6a040 d trace_event_type_funcs_ext4_remove_blocks
+ffffffc008c6a060 d print_fmt_ext4_remove_blocks
+ffffffc008c6a200 d event_ext4_remove_blocks
+ffffffc008c6a290 d trace_event_fields_ext4_ext_rm_leaf
+ffffffc008c6a420 d trace_event_type_funcs_ext4_ext_rm_leaf
+ffffffc008c6a440 d print_fmt_ext4_ext_rm_leaf
+ffffffc008c6a5d0 d event_ext4_ext_rm_leaf
+ffffffc008c6a660 d trace_event_fields_ext4_ext_rm_idx
+ffffffc008c6a700 d trace_event_type_funcs_ext4_ext_rm_idx
+ffffffc008c6a720 d print_fmt_ext4_ext_rm_idx
+ffffffc008c6a7d8 d event_ext4_ext_rm_idx
+ffffffc008c6a868 d trace_event_fields_ext4_ext_remove_space
+ffffffc008c6a958 d trace_event_type_funcs_ext4_ext_remove_space
+ffffffc008c6a978 d print_fmt_ext4_ext_remove_space
+ffffffc008c6aa50 d event_ext4_ext_remove_space
+ffffffc008c6aae0 d trace_event_fields_ext4_ext_remove_space_done
+ffffffc008c6ac70 d trace_event_type_funcs_ext4_ext_remove_space_done
+ffffffc008c6ac90 d print_fmt_ext4_ext_remove_space_done
+ffffffc008c6ae10 d event_ext4_ext_remove_space_done
+ffffffc008c6aea0 d trace_event_fields_ext4__es_extent
+ffffffc008c6afb8 d trace_event_type_funcs_ext4__es_extent
+ffffffc008c6afd8 d print_fmt_ext4__es_extent
+ffffffc008c6b158 d event_ext4_es_insert_extent
+ffffffc008c6b1e8 d event_ext4_es_cache_extent
+ffffffc008c6b278 d trace_event_fields_ext4_es_remove_extent
+ffffffc008c6b340 d trace_event_type_funcs_ext4_es_remove_extent
+ffffffc008c6b360 d print_fmt_ext4_es_remove_extent
+ffffffc008c6b410 d event_ext4_es_remove_extent
+ffffffc008c6b4a0 d trace_event_fields_ext4_es_find_extent_range_enter
+ffffffc008c6b540 d trace_event_type_funcs_ext4_es_find_extent_range_enter
+ffffffc008c6b560 d print_fmt_ext4_es_find_extent_range_enter
+ffffffc008c6b5f8 d event_ext4_es_find_extent_range_enter
+ffffffc008c6b688 d trace_event_fields_ext4_es_find_extent_range_exit
+ffffffc008c6b7a0 d trace_event_type_funcs_ext4_es_find_extent_range_exit
+ffffffc008c6b7c0 d print_fmt_ext4_es_find_extent_range_exit
+ffffffc008c6b940 d event_ext4_es_find_extent_range_exit
+ffffffc008c6b9d0 d trace_event_fields_ext4_es_lookup_extent_enter
+ffffffc008c6ba70 d trace_event_type_funcs_ext4_es_lookup_extent_enter
+ffffffc008c6ba90 d print_fmt_ext4_es_lookup_extent_enter
+ffffffc008c6bb28 d event_ext4_es_lookup_extent_enter
+ffffffc008c6bbb8 d trace_event_fields_ext4_es_lookup_extent_exit
+ffffffc008c6bcf8 d trace_event_type_funcs_ext4_es_lookup_extent_exit
+ffffffc008c6bd18 d print_fmt_ext4_es_lookup_extent_exit
+ffffffc008c6bec0 d event_ext4_es_lookup_extent_exit
+ffffffc008c6bf50 d trace_event_fields_ext4__es_shrink_enter
+ffffffc008c6bff0 d trace_event_type_funcs_ext4__es_shrink_enter
+ffffffc008c6c010 d print_fmt_ext4__es_shrink_enter
+ffffffc008c6c0b0 d event_ext4_es_shrink_count
+ffffffc008c6c140 d event_ext4_es_shrink_scan_enter
+ffffffc008c6c1d0 d trace_event_fields_ext4_es_shrink_scan_exit
+ffffffc008c6c270 d trace_event_type_funcs_ext4_es_shrink_scan_exit
+ffffffc008c6c290 d print_fmt_ext4_es_shrink_scan_exit
+ffffffc008c6c330 d event_ext4_es_shrink_scan_exit
+ffffffc008c6c3c0 d trace_event_fields_ext4_collapse_range
+ffffffc008c6c488 d trace_event_type_funcs_ext4_collapse_range
+ffffffc008c6c4a8 d print_fmt_ext4_collapse_range
+ffffffc008c6c560 d event_ext4_collapse_range
+ffffffc008c6c5f0 d trace_event_fields_ext4_insert_range
+ffffffc008c6c6b8 d trace_event_type_funcs_ext4_insert_range
+ffffffc008c6c6d8 d print_fmt_ext4_insert_range
+ffffffc008c6c790 d event_ext4_insert_range
+ffffffc008c6c820 d trace_event_fields_ext4_es_shrink
+ffffffc008c6c910 d trace_event_type_funcs_ext4_es_shrink
+ffffffc008c6c930 d print_fmt_ext4_es_shrink
+ffffffc008c6ca08 d event_ext4_es_shrink
+ffffffc008c6ca98 d trace_event_fields_ext4_es_insert_delayed_block
+ffffffc008c6cbd8 d trace_event_type_funcs_ext4_es_insert_delayed_block
+ffffffc008c6cbf8 d print_fmt_ext4_es_insert_delayed_block
+ffffffc008c6cd98 d event_ext4_es_insert_delayed_block
+ffffffc008c6ce28 d trace_event_fields_ext4_fsmap_class
+ffffffc008c6cf40 d trace_event_type_funcs_ext4_fsmap_class
+ffffffc008c6cf60 d print_fmt_ext4_fsmap_class
+ffffffc008c6d080 d event_ext4_fsmap_low_key
+ffffffc008c6d110 d event_ext4_fsmap_high_key
+ffffffc008c6d1a0 d event_ext4_fsmap_mapping
+ffffffc008c6d230 d trace_event_fields_ext4_getfsmap_class
+ffffffc008c6d348 d trace_event_type_funcs_ext4_getfsmap_class
+ffffffc008c6d368 d print_fmt_ext4_getfsmap_class
+ffffffc008c6d490 d event_ext4_getfsmap_low_key
+ffffffc008c6d520 d event_ext4_getfsmap_high_key
+ffffffc008c6d5b0 d event_ext4_getfsmap_mapping
+ffffffc008c6d640 d trace_event_fields_ext4_shutdown
+ffffffc008c6d6b8 d trace_event_type_funcs_ext4_shutdown
+ffffffc008c6d6d8 d print_fmt_ext4_shutdown
+ffffffc008c6d750 d event_ext4_shutdown
+ffffffc008c6d7e0 d trace_event_fields_ext4_error
+ffffffc008c6d880 d trace_event_type_funcs_ext4_error
+ffffffc008c6d8a0 d print_fmt_ext4_error
+ffffffc008c6d938 d event_ext4_error
+ffffffc008c6d9c8 d trace_event_fields_ext4_prefetch_bitmaps
+ffffffc008c6da90 d trace_event_type_funcs_ext4_prefetch_bitmaps
+ffffffc008c6dab0 d print_fmt_ext4_prefetch_bitmaps
+ffffffc008c6db50 d event_ext4_prefetch_bitmaps
+ffffffc008c6dbe0 d trace_event_fields_ext4_lazy_itable_init
+ffffffc008c6dc58 d trace_event_type_funcs_ext4_lazy_itable_init
+ffffffc008c6dc78 d print_fmt_ext4_lazy_itable_init
+ffffffc008c6dcf0 d event_ext4_lazy_itable_init
+ffffffc008c6dd80 d trace_event_fields_ext4_fc_replay_scan
+ffffffc008c6de20 d trace_event_type_funcs_ext4_fc_replay_scan
+ffffffc008c6de40 d print_fmt_ext4_fc_replay_scan
+ffffffc008c6ded0 d event_ext4_fc_replay_scan
+ffffffc008c6df60 d trace_event_fields_ext4_fc_replay
+ffffffc008c6e050 d trace_event_type_funcs_ext4_fc_replay
+ffffffc008c6e070 d print_fmt_ext4_fc_replay
+ffffffc008c6e128 d event_ext4_fc_replay
+ffffffc008c6e1b8 d trace_event_fields_ext4_fc_commit_start
+ffffffc008c6e230 d trace_event_type_funcs_ext4_fc_commit_start
+ffffffc008c6e250 d print_fmt_ext4_fc_commit_start
+ffffffc008c6e2c8 d event_ext4_fc_commit_start
+ffffffc008c6e358 d trace_event_fields_ext4_fc_commit_stop
+ffffffc008c6e498 d trace_event_type_funcs_ext4_fc_commit_stop
+ffffffc008c6e4b8 d print_fmt_ext4_fc_commit_stop
+ffffffc008c6e5b8 d event_ext4_fc_commit_stop
+ffffffc008c6e648 d trace_event_fields_ext4_fc_stats
+ffffffc008c6e738 d trace_event_type_funcs_ext4_fc_stats
+ffffffc008c6e758 d print_fmt_ext4_fc_stats
+ffffffc008c6fea8 d event_ext4_fc_stats
+ffffffc008c6ff38 d trace_event_fields_ext4_fc_track_dentry
+ffffffc008c70028 d trace_event_type_funcs_ext4_fc_track_dentry
+ffffffc008c70048 d print_fmt_ext4_fc_track_dentry
+ffffffc008c70110 d event_ext4_fc_track_create
+ffffffc008c701a0 d event_ext4_fc_track_link
+ffffffc008c70230 d event_ext4_fc_track_unlink
+ffffffc008c702c0 d trace_event_fields_ext4_fc_track_inode
+ffffffc008c703b0 d trace_event_type_funcs_ext4_fc_track_inode
+ffffffc008c703d0 d print_fmt_ext4_fc_track_inode
+ffffffc008c70498 d event_ext4_fc_track_inode
+ffffffc008c70528 d trace_event_fields_ext4_fc_track_range
+ffffffc008c70668 d trace_event_type_funcs_ext4_fc_track_range
+ffffffc008c70688 d print_fmt_ext4_fc_track_range
+ffffffc008c70778 d event_ext4_fc_track_range
+ffffffc008c70808 d trace_event_fields_ext4_fc_cleanup
+ffffffc008c708d0 d trace_event_type_funcs_ext4_fc_cleanup
+ffffffc008c708f0 d print_fmt_ext4_fc_cleanup
+ffffffc008c70998 d event_ext4_fc_cleanup
+ffffffc008c70a28 d trace_event_fields_ext4_update_sb
+ffffffc008c70ac8 d trace_event_type_funcs_ext4_update_sb
+ffffffc008c70ae8 d print_fmt_ext4_update_sb
+ffffffc008c70b78 d event_ext4_update_sb
+ffffffc008c70c08 d ext4_li_mtx
+ffffffc008c70c38 d ext4_fs_type
+ffffffc008c70c80 d ext3_fs_type
+ffffffc008c70cc8 d ext4_sb_ktype
+ffffffc008c70d18 d ext4_feat_ktype
+ffffffc008c70d68 d ext4_groups
+ffffffc008c70d78 d ext4_attrs
+ffffffc008c70ed8 d ext4_attr_delayed_allocation_blocks
+ffffffc008c70ef8 d ext4_attr_session_write_kbytes
+ffffffc008c70f18 d ext4_attr_lifetime_write_kbytes
+ffffffc008c70f38 d ext4_attr_reserved_clusters
+ffffffc008c70f58 d ext4_attr_sra_exceeded_retry_limit
+ffffffc008c70f78 d ext4_attr_max_writeback_mb_bump
+ffffffc008c70f98 d ext4_attr_trigger_fs_error
+ffffffc008c70fb8 d ext4_attr_first_error_time
+ffffffc008c70fd8 d ext4_attr_last_error_time
+ffffffc008c70ff8 d ext4_attr_journal_task
+ffffffc008c71018 d ext4_attr_inode_readahead_blks
+ffffffc008c71038 d ext4_attr_inode_goal
+ffffffc008c71058 d ext4_attr_mb_stats
+ffffffc008c71078 d ext4_attr_mb_max_to_scan
+ffffffc008c71098 d ext4_attr_mb_min_to_scan
+ffffffc008c710b8 d ext4_attr_mb_order2_req
+ffffffc008c710d8 d ext4_attr_mb_stream_req
+ffffffc008c710f8 d ext4_attr_mb_group_prealloc
+ffffffc008c71118 d ext4_attr_mb_max_inode_prealloc
+ffffffc008c71138 d ext4_attr_mb_max_linear_groups
+ffffffc008c71158 d old_bump_val
+ffffffc008c71160 d ext4_attr_extent_max_zeroout_kb
+ffffffc008c71180 d ext4_attr_err_ratelimit_interval_ms
+ffffffc008c711a0 d ext4_attr_err_ratelimit_burst
+ffffffc008c711c0 d ext4_attr_warning_ratelimit_interval_ms
+ffffffc008c711e0 d ext4_attr_warning_ratelimit_burst
+ffffffc008c71200 d ext4_attr_msg_ratelimit_interval_ms
+ffffffc008c71220 d ext4_attr_msg_ratelimit_burst
+ffffffc008c71240 d ext4_attr_errors_count
+ffffffc008c71260 d ext4_attr_warning_count
+ffffffc008c71280 d ext4_attr_msg_count
+ffffffc008c712a0 d ext4_attr_first_error_ino
+ffffffc008c712c0 d ext4_attr_last_error_ino
+ffffffc008c712e0 d ext4_attr_first_error_block
+ffffffc008c71300 d ext4_attr_last_error_block
+ffffffc008c71320 d ext4_attr_first_error_line
+ffffffc008c71340 d ext4_attr_last_error_line
+ffffffc008c71360 d ext4_attr_first_error_func
+ffffffc008c71380 d ext4_attr_last_error_func
+ffffffc008c713a0 d ext4_attr_first_error_errcode
+ffffffc008c713c0 d ext4_attr_last_error_errcode
+ffffffc008c713e0 d ext4_attr_mb_prefetch
+ffffffc008c71400 d ext4_attr_mb_prefetch_limit
+ffffffc008c71420 d ext4_attr_last_trim_minblks
+ffffffc008c71440 d ext4_feat_groups
+ffffffc008c71450 d ext4_feat_attrs
+ffffffc008c71488 d ext4_attr_lazy_itable_init
+ffffffc008c714a8 d ext4_attr_batched_discard
+ffffffc008c714c8 d ext4_attr_meta_bg_resize
+ffffffc008c714e8 d ext4_attr_casefold
+ffffffc008c71508 d ext4_attr_metadata_csum_seed
+ffffffc008c71528 d ext4_attr_fast_commit
+ffffffc008c71548 D ext4_xattr_handlers
+ffffffc008c71580 D __SCK__tp_func_jbd2_checkpoint
+ffffffc008c71588 D __SCK__tp_func_jbd2_start_commit
+ffffffc008c71590 D __SCK__tp_func_jbd2_commit_locking
+ffffffc008c71598 D __SCK__tp_func_jbd2_commit_flushing
+ffffffc008c715a0 D __SCK__tp_func_jbd2_commit_logging
+ffffffc008c715a8 D __SCK__tp_func_jbd2_drop_transaction
+ffffffc008c715b0 D __SCK__tp_func_jbd2_end_commit
+ffffffc008c715b8 D __SCK__tp_func_jbd2_submit_inode_data
+ffffffc008c715c0 D __SCK__tp_func_jbd2_handle_start
+ffffffc008c715c8 D __SCK__tp_func_jbd2_handle_restart
+ffffffc008c715d0 D __SCK__tp_func_jbd2_handle_extend
+ffffffc008c715d8 D __SCK__tp_func_jbd2_handle_stats
+ffffffc008c715e0 D __SCK__tp_func_jbd2_run_stats
+ffffffc008c715e8 D __SCK__tp_func_jbd2_checkpoint_stats
+ffffffc008c715f0 D __SCK__tp_func_jbd2_update_log_tail
+ffffffc008c715f8 D __SCK__tp_func_jbd2_write_superblock
+ffffffc008c71600 D __SCK__tp_func_jbd2_lock_buffer_stall
+ffffffc008c71608 D __SCK__tp_func_jbd2_shrink_count
+ffffffc008c71610 D __SCK__tp_func_jbd2_shrink_scan_enter
+ffffffc008c71618 D __SCK__tp_func_jbd2_shrink_scan_exit
+ffffffc008c71620 D __SCK__tp_func_jbd2_shrink_checkpoint_list
+ffffffc008c71628 d trace_event_fields_jbd2_checkpoint
+ffffffc008c716a0 d trace_event_type_funcs_jbd2_checkpoint
+ffffffc008c716c0 d print_fmt_jbd2_checkpoint
+ffffffc008c71740 d event_jbd2_checkpoint
+ffffffc008c717d0 d trace_event_fields_jbd2_commit
+ffffffc008c71870 d trace_event_type_funcs_jbd2_commit
+ffffffc008c71890 d print_fmt_jbd2_commit
+ffffffc008c71930 d event_jbd2_start_commit
+ffffffc008c719c0 d event_jbd2_commit_locking
+ffffffc008c71a50 d event_jbd2_commit_flushing
+ffffffc008c71ae0 d event_jbd2_commit_logging
+ffffffc008c71b70 d event_jbd2_drop_transaction
+ffffffc008c71c00 d trace_event_fields_jbd2_end_commit
+ffffffc008c71cc8 d trace_event_type_funcs_jbd2_end_commit
+ffffffc008c71ce8 d print_fmt_jbd2_end_commit
+ffffffc008c71da0 d event_jbd2_end_commit
+ffffffc008c71e30 d trace_event_fields_jbd2_submit_inode_data
+ffffffc008c71ea8 d trace_event_type_funcs_jbd2_submit_inode_data
+ffffffc008c71ec8 d print_fmt_jbd2_submit_inode_data
+ffffffc008c71f50 d event_jbd2_submit_inode_data
+ffffffc008c71fe0 d trace_event_fields_jbd2_handle_start_class
+ffffffc008c720d0 d trace_event_type_funcs_jbd2_handle_start_class
+ffffffc008c720f0 d print_fmt_jbd2_handle_start_class
+ffffffc008c721c0 d event_jbd2_handle_start
+ffffffc008c72250 d event_jbd2_handle_restart
+ffffffc008c722e0 d trace_event_fields_jbd2_handle_extend
+ffffffc008c723f8 d trace_event_type_funcs_jbd2_handle_extend
+ffffffc008c72418 d print_fmt_jbd2_handle_extend
+ffffffc008c72510 d event_jbd2_handle_extend
+ffffffc008c725a0 d trace_event_fields_jbd2_handle_stats
+ffffffc008c72708 d trace_event_type_funcs_jbd2_handle_stats
+ffffffc008c72728 d print_fmt_jbd2_handle_stats
+ffffffc008c72848 d event_jbd2_handle_stats
+ffffffc008c728d8 d trace_event_fields_jbd2_run_stats
+ffffffc008c72ab8 d trace_event_type_funcs_jbd2_run_stats
+ffffffc008c72ad8 d print_fmt_jbd2_run_stats
+ffffffc008c72cb8 d event_jbd2_run_stats
+ffffffc008c72d48 d trace_event_fields_jbd2_checkpoint_stats
+ffffffc008c72e60 d trace_event_type_funcs_jbd2_checkpoint_stats
+ffffffc008c72e80 d print_fmt_jbd2_checkpoint_stats
+ffffffc008c72f80 d event_jbd2_checkpoint_stats
+ffffffc008c73010 d trace_event_fields_jbd2_update_log_tail
+ffffffc008c73100 d trace_event_type_funcs_jbd2_update_log_tail
+ffffffc008c73120 d print_fmt_jbd2_update_log_tail
+ffffffc008c731e8 d event_jbd2_update_log_tail
+ffffffc008c73278 d trace_event_fields_jbd2_write_superblock
+ffffffc008c732f0 d trace_event_type_funcs_jbd2_write_superblock
+ffffffc008c73310 d print_fmt_jbd2_write_superblock
+ffffffc008c733a0 d event_jbd2_write_superblock
+ffffffc008c73430 d trace_event_fields_jbd2_lock_buffer_stall
+ffffffc008c734a8 d trace_event_type_funcs_jbd2_lock_buffer_stall
+ffffffc008c734c8 d print_fmt_jbd2_lock_buffer_stall
+ffffffc008c73548 d event_jbd2_lock_buffer_stall
+ffffffc008c735d8 d trace_event_fields_jbd2_journal_shrink
+ffffffc008c73678 d trace_event_type_funcs_jbd2_journal_shrink
+ffffffc008c73698 d print_fmt_jbd2_journal_shrink
+ffffffc008c73738 d event_jbd2_shrink_count
+ffffffc008c737c8 d event_jbd2_shrink_scan_enter
+ffffffc008c73858 d trace_event_fields_jbd2_shrink_scan_exit
+ffffffc008c73920 d trace_event_type_funcs_jbd2_shrink_scan_exit
+ffffffc008c73940 d print_fmt_jbd2_shrink_scan_exit
+ffffffc008c739f8 d event_jbd2_shrink_scan_exit
+ffffffc008c73a88 d trace_event_fields_jbd2_shrink_checkpoint_list
+ffffffc008c73bc8 d trace_event_type_funcs_jbd2_shrink_checkpoint_list
+ffffffc008c73be8 d print_fmt_jbd2_shrink_checkpoint_list
+ffffffc008c73cf0 d event_jbd2_shrink_checkpoint_list
+ffffffc008c73d80 d jbd2_journal_create_slab.jbd2_slab_create_mutex
+ffffffc008c73db0 d journal_alloc_journal_head._rs
+ffffffc008c73dd8 d ramfs_fs_type
+ffffffc008c73e20 D utf8_data_table
+ffffffc008c73e58 d fuse_miscdevice.llvm.16123452833061921394
+ffffffc008c73ea8 d attribute_groups
+ffffffc008c73ec0 d bpf_features
+ffffffc008c73ed0 d fuse_bpf_attr
+ffffffc008c73ef0 d bpf_attributes
+ffffffc008c73f00 d bpf_prog_type_fuse_attr
+ffffffc008c73f20 d fuse_fs_type
+ffffffc008c73f68 d fuseblk_fs_type
+ffffffc008c73fb0 D fuse_mutex
+ffffffc008c73fe0 d fuse_ctl_fs_type.llvm.15837023477193006488
+ffffffc008c74028 D fuse_xattr_handlers
+ffffffc008c74038 D fuse_acl_xattr_handlers
+ffffffc008c74058 D fuse_no_acl_xattr_handlers
+ffffffc008c74078 d debug_fs_type
+ffffffc008c740c0 d trace_fs_type
+ffffffc008c74108 D __SCK__tp_func_erofs_lookup
+ffffffc008c74110 D __SCK__tp_func_erofs_fill_inode
+ffffffc008c74118 D __SCK__tp_func_erofs_readpage
+ffffffc008c74120 D __SCK__tp_func_erofs_readpages
+ffffffc008c74128 D __SCK__tp_func_erofs_map_blocks_enter
+ffffffc008c74130 D __SCK__tp_func_z_erofs_map_blocks_iter_enter
+ffffffc008c74138 D __SCK__tp_func_erofs_map_blocks_exit
+ffffffc008c74140 D __SCK__tp_func_z_erofs_map_blocks_iter_exit
+ffffffc008c74148 D __SCK__tp_func_erofs_destroy_inode
+ffffffc008c74150 d trace_event_fields_erofs_lookup
+ffffffc008c74218 d trace_event_type_funcs_erofs_lookup
+ffffffc008c74238 d print_fmt_erofs_lookup
+ffffffc008c742e8 d event_erofs_lookup
+ffffffc008c74378 d trace_event_fields_erofs_fill_inode
+ffffffc008c74440 d trace_event_type_funcs_erofs_fill_inode
+ffffffc008c74460 d print_fmt_erofs_fill_inode
+ffffffc008c74508 d event_erofs_fill_inode
+ffffffc008c74598 d trace_event_fields_erofs_readpage
+ffffffc008c746b0 d trace_event_type_funcs_erofs_readpage
+ffffffc008c746d0 d print_fmt_erofs_readpage
+ffffffc008c747e8 d event_erofs_readpage
+ffffffc008c74878 d trace_event_fields_erofs_readpages
+ffffffc008c74968 d trace_event_type_funcs_erofs_readpages
+ffffffc008c74988 d print_fmt_erofs_readpages
+ffffffc008c74a60 d event_erofs_readpages
+ffffffc008c74af0 d trace_event_fields_erofs__map_blocks_enter
+ffffffc008c74be0 d trace_event_type_funcs_erofs__map_blocks_enter
+ffffffc008c74c00 d print_fmt_erofs__map_blocks_enter
+ffffffc008c74cf8 d event_erofs_map_blocks_enter
+ffffffc008c74d88 d event_z_erofs_map_blocks_iter_enter
+ffffffc008c74e18 d trace_event_fields_erofs__map_blocks_exit
+ffffffc008c74fa8 d trace_event_type_funcs_erofs__map_blocks_exit
+ffffffc008c74fc8 d print_fmt_erofs__map_blocks_exit
+ffffffc008c75170 d event_erofs_map_blocks_exit
+ffffffc008c75200 d event_z_erofs_map_blocks_iter_exit
+ffffffc008c75290 d trace_event_fields_erofs_destroy_inode
+ffffffc008c75308 d trace_event_type_funcs_erofs_destroy_inode
+ffffffc008c75328 d print_fmt_erofs_destroy_inode
+ffffffc008c753a8 d event_erofs_destroy_inode
+ffffffc008c75438 D erofs_fs_type
+ffffffc008c75480 d erofs_sb_list
+ffffffc008c75490 d erofs_shrinker_info.llvm.12018819166259637258
+ffffffc008c754c8 d erofs_pcpubuf_growsize.pcb_resize_mutex
+ffffffc008c754f8 d erofs_root.llvm.15161361574426223567
+ffffffc008c75598 d erofs_sb_ktype
+ffffffc008c755e8 d erofs_feat.llvm.15161361574426223567
+ffffffc008c75648 d erofs_feat_ktype
+ffffffc008c75698 d erofs_ktype
+ffffffc008c756e8 d erofs_groups
+ffffffc008c756f8 d erofs_attrs
+ffffffc008c75708 d erofs_attr_sync_decompress
+ffffffc008c75728 d erofs_feat_groups
+ffffffc008c75738 d erofs_feat_attrs
+ffffffc008c75790 d erofs_attr_zero_padding
+ffffffc008c757b0 d erofs_attr_compr_cfgs
+ffffffc008c757d0 d erofs_attr_big_pcluster
+ffffffc008c757f0 d erofs_attr_chunked_file
+ffffffc008c75810 d erofs_attr_device_table
+ffffffc008c75830 d erofs_attr_compr_head2
+ffffffc008c75850 d erofs_attr_sb_chksum
+ffffffc008c75870 d erofs_attr_ztailpacking
+ffffffc008c75890 d erofs_attr_fragments
+ffffffc008c758b0 d erofs_attr_dedupe
+ffffffc008c758d0 D erofs_xattr_handlers
+ffffffc008c75900 D dac_mmap_min_addr
+ffffffc008c75908 d blocking_lsm_notifier_chain.llvm.1325432341324286946
+ffffffc008c75950 d fs_type
+ffffffc008c75998 D __SCK__tp_func_selinux_audited
+ffffffc008c759a0 d trace_event_fields_selinux_audited
+ffffffc008c75ae0 d trace_event_type_funcs_selinux_audited
+ffffffc008c75b00 d print_fmt_selinux_audited
+ffffffc008c75bd0 d event_selinux_audited
+ffffffc008c75c60 d inode_doinit_use_xattr._rs
+ffffffc008c75c88 d selinux_netlink_send._rs
+ffffffc008c75cb0 d sel_fs_type
+ffffffc008c75cf8 d sel_write_load._rs
+ffffffc008c75d20 d sel_write_load._rs.33
+ffffffc008c75d48 d sel_make_bools._rs
+ffffffc008c75d70 d nlmsg_route_perms
+ffffffc008c75f90 d sel_netif_netdev_notifier
+ffffffc008c75fa8 d security_compute_xperms_decision._rs
+ffffffc008c75fd0 D crypto_alg_list
+ffffffc008c75fe0 D crypto_alg_sem
+ffffffc008c76020 D crypto_chain
+ffffffc008c76068 d crypto_template_list
+ffffffc008c76078 d seqiv_tmpl
+ffffffc008c76120 d echainiv_tmpl
+ffffffc008c761c8 d scomp_lock
+ffffffc008c761f8 d cryptomgr_notifier
+ffffffc008c76210 d hmac_tmpl
+ffffffc008c762b8 d crypto_xcbc_tmpl
+ffffffc008c76360 d ks
+ffffffc008c76390 d crypto_default_null_skcipher_lock
+ffffffc008c763c0 d digest_null
+ffffffc008c76600 d skcipher_null
+ffffffc008c767c0 d null_algs
+ffffffc008c76ac0 d alg
+ffffffc008c76d00 d alg
+ffffffc008c76f40 d alg
+ffffffc008c770c0 d alg
+ffffffc008c77300 d alg
+ffffffc008c77480 d alg
+ffffffc008c77600 d alg
+ffffffc008c77780 d sha256_algs
+ffffffc008c77c00 d sha512_algs
+ffffffc008c78080 d blake2b_algs
+ffffffc008c78980 d crypto_cbc_tmpl
+ffffffc008c78a28 d crypto_ctr_tmpls
+ffffffc008c78b78 d crypto_xctr_tmpl
+ffffffc008c78c20 d hctr2_tmpls
+ffffffc008c78d70 d adiantum_tmpl
+ffffffc008c78e40 d nhpoly1305_alg
+ffffffc008c79080 d crypto_gcm_tmpls
+ffffffc008c79320 d rfc7539_tmpls
+ffffffc008c79480 d des_algs
+ffffffc008c79780 d aes_alg
+ffffffc008c79900 d algs
+ffffffc008c79e40 d poly1305_alg
+ffffffc008c7a080 d scomp
+ffffffc008c7a400 d scomp
+ffffffc008c7a5c0 d scomp
+ffffffc008c7a780 d scomp
+ffffffc008c7a940 d scomp
+ffffffc008c7ab00 d crypto_authenc_tmpl
+ffffffc008c7aba8 d crypto_authenc_esn_tmpl
+ffffffc008c7ac80 d alg_lz4
+ffffffc008c7ae00 d crypto_default_rng_lock
+ffffffc008c7ae40 d rng_algs
+ffffffc008c7b000 d drbg_fill_array.priority
+ffffffc008c7b040 d jent_alg
+ffffffc008c7b200 d jent_kcapi_random._rs
+ffffffc008c7b240 d ghash_alg
+ffffffc008c7b480 d polyval_alg
+ffffffc008c7b6c0 d essiv_tmpl
+ffffffc008c7b768 d bd_type
+ffffffc008c7b7b0 d blkdev_get_no_open._rs
+ffffffc008c7b7d8 d bdev_write_inode._rs
+ffffffc008c7b800 d bio_dirty_work
+ffffffc008c7b830 d bio_slab_lock
+ffffffc008c7b860 d elv_ktype
+ffffffc008c7b8b0 d elv_list
+ffffffc008c7b8c0 D __SCK__tp_func_block_touch_buffer
+ffffffc008c7b8c8 D __SCK__tp_func_block_dirty_buffer
+ffffffc008c7b8d0 D __SCK__tp_func_block_rq_requeue
+ffffffc008c7b8d8 D __SCK__tp_func_block_rq_complete
+ffffffc008c7b8e0 D __SCK__tp_func_block_rq_error
+ffffffc008c7b8e8 D __SCK__tp_func_block_rq_insert
+ffffffc008c7b8f0 D __SCK__tp_func_block_rq_issue
+ffffffc008c7b8f8 D __SCK__tp_func_block_rq_merge
+ffffffc008c7b900 D __SCK__tp_func_block_bio_complete
+ffffffc008c7b908 D __SCK__tp_func_block_bio_bounce
+ffffffc008c7b910 D __SCK__tp_func_block_bio_backmerge
+ffffffc008c7b918 D __SCK__tp_func_block_bio_frontmerge
+ffffffc008c7b920 D __SCK__tp_func_block_bio_queue
+ffffffc008c7b928 D __SCK__tp_func_block_getrq
+ffffffc008c7b930 D __SCK__tp_func_block_plug
+ffffffc008c7b938 D __SCK__tp_func_block_unplug
+ffffffc008c7b940 D __SCK__tp_func_block_split
+ffffffc008c7b948 D __SCK__tp_func_block_bio_remap
+ffffffc008c7b950 D __SCK__tp_func_block_rq_remap
+ffffffc008c7b958 d trace_event_fields_block_buffer
+ffffffc008c7b9f8 d trace_event_type_funcs_block_buffer
+ffffffc008c7ba18 d print_fmt_block_buffer
+ffffffc008c7bab8 d event_block_touch_buffer
+ffffffc008c7bb48 d event_block_dirty_buffer
+ffffffc008c7bbd8 d trace_event_fields_block_rq_requeue
+ffffffc008c7bcc8 d trace_event_type_funcs_block_rq_requeue
+ffffffc008c7bce8 d print_fmt_block_rq_requeue
+ffffffc008c7bdb0 d event_block_rq_requeue
+ffffffc008c7be40 d trace_event_fields_block_rq_completion
+ffffffc008c7bf58 d trace_event_type_funcs_block_rq_completion
+ffffffc008c7bf78 d print_fmt_block_rq_completion
+ffffffc008c7c048 d event_block_rq_complete
+ffffffc008c7c0d8 d event_block_rq_error
+ffffffc008c7c168 d trace_event_fields_block_rq
+ffffffc008c7c2a8 d trace_event_type_funcs_block_rq
+ffffffc008c7c2c8 d print_fmt_block_rq
+ffffffc008c7c3a8 d event_block_rq_insert
+ffffffc008c7c438 d event_block_rq_issue
+ffffffc008c7c4c8 d event_block_rq_merge
+ffffffc008c7c558 d trace_event_fields_block_bio_complete
+ffffffc008c7c648 d trace_event_type_funcs_block_bio_complete
+ffffffc008c7c668 d print_fmt_block_bio_complete
+ffffffc008c7c728 d event_block_bio_complete
+ffffffc008c7c7b8 d trace_event_fields_block_bio
+ffffffc008c7c8a8 d trace_event_type_funcs_block_bio
+ffffffc008c7c8c8 d print_fmt_block_bio
+ffffffc008c7c980 d event_block_bio_bounce
+ffffffc008c7ca10 d event_block_bio_backmerge
+ffffffc008c7caa0 d event_block_bio_frontmerge
+ffffffc008c7cb30 d event_block_bio_queue
+ffffffc008c7cbc0 d event_block_getrq
+ffffffc008c7cc50 d trace_event_fields_block_plug
+ffffffc008c7cca0 d trace_event_type_funcs_block_plug
+ffffffc008c7ccc0 d print_fmt_block_plug
+ffffffc008c7ccd8 d event_block_plug
+ffffffc008c7cd68 d trace_event_fields_block_unplug
+ffffffc008c7cde0 d trace_event_type_funcs_block_unplug
+ffffffc008c7ce00 d print_fmt_block_unplug
+ffffffc008c7ce28 d event_block_unplug
+ffffffc008c7ceb8 d trace_event_fields_block_split
+ffffffc008c7cfa8 d trace_event_type_funcs_block_split
+ffffffc008c7cfc8 d print_fmt_block_split
+ffffffc008c7d098 d event_block_split
+ffffffc008c7d128 d trace_event_fields_block_bio_remap
+ffffffc008c7d240 d trace_event_type_funcs_block_bio_remap
+ffffffc008c7d260 d print_fmt_block_bio_remap
+ffffffc008c7d3a0 d event_block_bio_remap
+ffffffc008c7d430 d trace_event_fields_block_rq_remap
+ffffffc008c7d570 d trace_event_type_funcs_block_rq_remap
+ffffffc008c7d590 d print_fmt_block_rq_remap
+ffffffc008c7d6e0 d event_block_rq_remap
+ffffffc008c7d770 D blk_queue_ida
+ffffffc008c7d780 d bio_check_eod._rs
+ffffffc008c7d7a8 d blk_queue_attr_groups
+ffffffc008c7d7b8 d queue_attr_group
+ffffffc008c7d7e0 d queue_attrs
+ffffffc008c7d938 d queue_io_timeout_entry
+ffffffc008c7d958 d queue_max_open_zones_entry
+ffffffc008c7d978 d queue_max_active_zones_entry
+ffffffc008c7d998 d queue_requests_entry
+ffffffc008c7d9b8 d queue_ra_entry
+ffffffc008c7d9d8 d queue_max_hw_sectors_entry
+ffffffc008c7d9f8 d queue_max_sectors_entry
+ffffffc008c7da18 d queue_max_segments_entry
+ffffffc008c7da38 d queue_max_discard_segments_entry
+ffffffc008c7da58 d queue_max_integrity_segments_entry
+ffffffc008c7da78 d queue_max_segment_size_entry
+ffffffc008c7da98 d elv_iosched_entry
+ffffffc008c7dab8 d queue_hw_sector_size_entry
+ffffffc008c7dad8 d queue_logical_block_size_entry
+ffffffc008c7daf8 d queue_physical_block_size_entry
+ffffffc008c7db18 d queue_chunk_sectors_entry
+ffffffc008c7db38 d queue_io_min_entry
+ffffffc008c7db58 d queue_io_opt_entry
+ffffffc008c7db78 d queue_discard_granularity_entry
+ffffffc008c7db98 d queue_discard_max_entry
+ffffffc008c7dbb8 d queue_discard_max_hw_entry
+ffffffc008c7dbd8 d queue_discard_zeroes_data_entry
+ffffffc008c7dbf8 d queue_write_same_max_entry
+ffffffc008c7dc18 d queue_write_zeroes_max_entry
+ffffffc008c7dc38 d queue_zone_append_max_entry
+ffffffc008c7dc58 d queue_zone_write_granularity_entry
+ffffffc008c7dc78 d queue_nonrot_entry
+ffffffc008c7dc98 d queue_zoned_entry
+ffffffc008c7dcb8 d queue_nr_zones_entry
+ffffffc008c7dcd8 d queue_nomerges_entry
+ffffffc008c7dcf8 d queue_rq_affinity_entry
+ffffffc008c7dd18 d queue_iostats_entry
+ffffffc008c7dd38 d queue_stable_writes_entry
+ffffffc008c7dd58 d queue_random_entry
+ffffffc008c7dd78 d queue_poll_entry
+ffffffc008c7dd98 d queue_wc_entry
+ffffffc008c7ddb8 d queue_fua_entry
+ffffffc008c7ddd8 d queue_dax_entry
+ffffffc008c7ddf8 d queue_wb_lat_entry
+ffffffc008c7de18 d queue_poll_delay_entry
+ffffffc008c7de38 d queue_virt_boundary_mask_entry
+ffffffc008c7de58 d queue_dma_alignment_entry
+ffffffc008c7de78 d queue_poll_store._rs
+ffffffc008c7dea0 d queue_poll_store._rs.43
+ffffffc008c7dec8 D blk_queue_ktype
+ffffffc008c7df18 d __blkdev_issue_discard._rs
+ffffffc008c7df40 d blk_print_req_error._rs
+ffffffc008c7df68 d blk_mq_hw_ktype.llvm.10115124038743558984
+ffffffc008c7dfb8 d blk_mq_ktype
+ffffffc008c7e008 d blk_mq_ctx_ktype
+ffffffc008c7e058 d default_hw_ctx_groups
+ffffffc008c7e068 d default_hw_ctx_attrs
+ffffffc008c7e088 d blk_mq_hw_sysfs_nr_tags
+ffffffc008c7e0a8 d blk_mq_hw_sysfs_nr_reserved_tags
+ffffffc008c7e0c8 d blk_mq_hw_sysfs_cpus
+ffffffc008c7e0e8 d major_names_lock
+ffffffc008c7e118 d ext_devt_ida.llvm.16162106474780698050
+ffffffc008c7e128 D block_class
+ffffffc008c7e1c0 d disk_attr_groups
+ffffffc008c7e1d0 d disk_attr_group
+ffffffc008c7e1f8 d disk_attrs
+ffffffc008c7e280 d dev_attr_badblocks
+ffffffc008c7e2a0 d dev_attr_range
+ffffffc008c7e2c0 d dev_attr_range
+ffffffc008c7e2e0 d dev_attr_ext_range
+ffffffc008c7e300 d dev_attr_removable
+ffffffc008c7e320 d dev_attr_removable
+ffffffc008c7e340 d dev_attr_removable
+ffffffc008c7e360 d dev_attr_hidden
+ffffffc008c7e380 d dev_attr_ro
+ffffffc008c7e3a0 d dev_attr_ro
+ffffffc008c7e3c0 d dev_attr_size
+ffffffc008c7e3e0 d dev_attr_size
+ffffffc008c7e400 d dev_attr_size
+ffffffc008c7e420 d dev_attr_size
+ffffffc008c7e440 d dev_attr_alignment_offset
+ffffffc008c7e460 d dev_attr_alignment_offset
+ffffffc008c7e480 d dev_attr_discard_alignment
+ffffffc008c7e4a0 d dev_attr_discard_alignment
+ffffffc008c7e4c0 d dev_attr_capability
+ffffffc008c7e4e0 d dev_attr_stat
+ffffffc008c7e500 d dev_attr_stat
+ffffffc008c7e520 d dev_attr_inflight
+ffffffc008c7e540 d dev_attr_inflight
+ffffffc008c7e560 d dev_attr_diskseq
+ffffffc008c7e580 d part_attr_groups
+ffffffc008c7e590 d part_attr_group
+ffffffc008c7e5b8 d part_attrs
+ffffffc008c7e600 d dev_attr_partition
+ffffffc008c7e620 d dev_attr_start
+ffffffc008c7e640 d dev_attr_whole_disk
+ffffffc008c7e660 D part_type
+ffffffc008c7e690 D dev_attr_events
+ffffffc008c7e6b0 D dev_attr_events_async
+ffffffc008c7e6d0 D dev_attr_events_poll_msecs
+ffffffc008c7e6f0 d disk_events_mutex
+ffffffc008c7e720 d disk_events
+ffffffc008c7e730 d blk_ia_ranges_ktype
+ffffffc008c7e780 d blk_ia_range_ktype
+ffffffc008c7e7d0 d blk_ia_range_groups
+ffffffc008c7e7e0 d blk_ia_range_attrs
+ffffffc008c7e7f8 d blk_ia_range_sector_entry
+ffffffc008c7e810 d blk_ia_range_nr_sectors_entry
+ffffffc008c7e828 d mq_deadline
+ffffffc008c7e980 d deadline_attrs
+ffffffc008c7ea80 D __SCK__tp_func_kyber_latency
+ffffffc008c7ea88 D __SCK__tp_func_kyber_adjust
+ffffffc008c7ea90 D __SCK__tp_func_kyber_throttled
+ffffffc008c7ea98 d trace_event_fields_kyber_latency
+ffffffc008c7ebd8 d trace_event_type_funcs_kyber_latency
+ffffffc008c7ebf8 d print_fmt_kyber_latency
+ffffffc008c7ecd0 d event_kyber_latency
+ffffffc008c7ed60 d trace_event_fields_kyber_adjust
+ffffffc008c7ee00 d trace_event_type_funcs_kyber_adjust
+ffffffc008c7ee20 d print_fmt_kyber_adjust
+ffffffc008c7eea0 d event_kyber_adjust
+ffffffc008c7ef30 d trace_event_fields_kyber_throttled
+ffffffc008c7efa8 d trace_event_type_funcs_kyber_throttled
+ffffffc008c7efc8 d print_fmt_kyber_throttled
+ffffffc008c7f038 d event_kyber_throttled
+ffffffc008c7f0c8 d kyber_sched
+ffffffc008c7f220 d kyber_sched_attrs
+ffffffc008c7f280 d iosched_bfq_mq
+ffffffc008c7f3d8 d bfq_attrs
+ffffffc008c7f538 d blk_zone_cond_str.zone_cond_str
+ffffffc008c7f540 d num_prealloc_crypt_ctxs
+ffffffc008c7f548 d blk_crypto_evict_key._rs
+ffffffc008c7f570 d blk_crypto_ktype
+ffffffc008c7f5c0 d blk_crypto_attr_groups
+ffffffc008c7f5d8 d blk_crypto_attrs
+ffffffc008c7f5f0 d max_dun_bits_attr
+ffffffc008c7f608 d num_keyslots_attr
+ffffffc008c7f620 d num_prealloc_bounce_pg
+ffffffc008c7f624 d blk_crypto_num_keyslots
+ffffffc008c7f628 d num_prealloc_fallback_crypt_ctxs
+ffffffc008c7f630 d tfms_init_lock
+ffffffc008c7f660 D __SCK__tp_func_io_uring_create
+ffffffc008c7f668 D __SCK__tp_func_io_uring_register
+ffffffc008c7f670 D __SCK__tp_func_io_uring_file_get
+ffffffc008c7f678 D __SCK__tp_func_io_uring_queue_async_work
+ffffffc008c7f680 D __SCK__tp_func_io_uring_defer
+ffffffc008c7f688 D __SCK__tp_func_io_uring_link
+ffffffc008c7f690 D __SCK__tp_func_io_uring_cqring_wait
+ffffffc008c7f698 D __SCK__tp_func_io_uring_fail_link
+ffffffc008c7f6a0 D __SCK__tp_func_io_uring_complete
+ffffffc008c7f6a8 D __SCK__tp_func_io_uring_submit_sqe
+ffffffc008c7f6b0 D __SCK__tp_func_io_uring_poll_arm
+ffffffc008c7f6b8 D __SCK__tp_func_io_uring_task_add
+ffffffc008c7f6c0 D __SCK__tp_func_io_uring_req_failed
+ffffffc008c7f6c8 D __SCK__tp_func_io_uring_cqe_overflow
+ffffffc008c7f6d0 D __SCK__tp_func_io_uring_task_work_run
+ffffffc008c7f6d8 D __SCK__tp_func_io_uring_short_write
+ffffffc008c7f6e0 D __SCK__tp_func_io_uring_local_work_run
+ffffffc008c7f6e8 d trace_event_fields_io_uring_create
+ffffffc008c7f7d8 d trace_event_type_funcs_io_uring_create
+ffffffc008c7f7f8 d print_fmt_io_uring_create
+ffffffc008c7f870 d event_io_uring_create
+ffffffc008c7f900 d trace_event_fields_io_uring_register
+ffffffc008c7f9f0 d trace_event_type_funcs_io_uring_register
+ffffffc008c7fa10 d print_fmt_io_uring_register
+ffffffc008c7fa90 d event_io_uring_register
+ffffffc008c7fb20 d trace_event_fields_io_uring_file_get
+ffffffc008c7fbe8 d trace_event_type_funcs_io_uring_file_get
+ffffffc008c7fc08 d print_fmt_io_uring_file_get
+ffffffc008c7fc60 d event_io_uring_file_get
+ffffffc008c7fcf0 d trace_event_fields_io_uring_queue_async_work
+ffffffc008c7fe58 d trace_event_type_funcs_io_uring_queue_async_work
+ffffffc008c7fe78 d print_fmt_io_uring_queue_async_work
+ffffffc008c7ff38 d event_io_uring_queue_async_work
+ffffffc008c7ffc8 d trace_event_fields_io_uring_defer
+ffffffc008c800b8 d trace_event_type_funcs_io_uring_defer
+ffffffc008c800d8 d print_fmt_io_uring_defer
+ffffffc008c80140 d event_io_uring_defer
+ffffffc008c801d0 d trace_event_fields_io_uring_link
+ffffffc008c80270 d trace_event_type_funcs_io_uring_link
+ffffffc008c80290 d print_fmt_io_uring_link
+ffffffc008c802e0 d event_io_uring_link
+ffffffc008c80370 d trace_event_fields_io_uring_cqring_wait
+ffffffc008c803e8 d trace_event_type_funcs_io_uring_cqring_wait
+ffffffc008c80408 d print_fmt_io_uring_cqring_wait
+ffffffc008c80440 d event_io_uring_cqring_wait
+ffffffc008c804d0 d trace_event_fields_io_uring_fail_link
+ffffffc008c805e8 d trace_event_type_funcs_io_uring_fail_link
+ffffffc008c80608 d print_fmt_io_uring_fail_link
+ffffffc008c80688 d event_io_uring_fail_link
+ffffffc008c80718 d trace_event_fields_io_uring_complete
+ffffffc008c80858 d trace_event_type_funcs_io_uring_complete
+ffffffc008c80878 d print_fmt_io_uring_complete
+ffffffc008c80950 d event_io_uring_complete
+ffffffc008c809e0 d trace_event_fields_io_uring_submit_sqe
+ffffffc008c80b48 d trace_event_type_funcs_io_uring_submit_sqe
+ffffffc008c80b68 d print_fmt_io_uring_submit_sqe
+ffffffc008c80c28 d event_io_uring_submit_sqe
+ffffffc008c80cb8 d trace_event_fields_io_uring_poll_arm
+ffffffc008c80df8 d trace_event_type_funcs_io_uring_poll_arm
+ffffffc008c80e18 d print_fmt_io_uring_poll_arm
+ffffffc008c80eb0 d event_io_uring_poll_arm
+ffffffc008c80f40 d trace_event_fields_io_uring_task_add
+ffffffc008c81058 d trace_event_type_funcs_io_uring_task_add
+ffffffc008c81078 d print_fmt_io_uring_task_add
+ffffffc008c810f8 d event_io_uring_task_add
+ffffffc008c81188 d trace_event_fields_io_uring_req_failed
+ffffffc008c81458 d trace_event_type_funcs_io_uring_req_failed
+ffffffc008c81478 d print_fmt_io_uring_req_failed
+ffffffc008c81660 d event_io_uring_req_failed
+ffffffc008c816f0 d trace_event_fields_io_uring_cqe_overflow
+ffffffc008c817e0 d trace_event_type_funcs_io_uring_cqe_overflow
+ffffffc008c81800 d print_fmt_io_uring_cqe_overflow
+ffffffc008c81880 d event_io_uring_cqe_overflow
+ffffffc008c81910 d trace_event_fields_io_uring_task_work_run
+ffffffc008c819b0 d trace_event_type_funcs_io_uring_task_work_run
+ffffffc008c819d0 d print_fmt_io_uring_task_work_run
+ffffffc008c81a18 d event_io_uring_task_work_run
+ffffffc008c81aa8 d trace_event_fields_io_uring_short_write
+ffffffc008c81b70 d trace_event_type_funcs_io_uring_short_write
+ffffffc008c81b90 d print_fmt_io_uring_short_write
+ffffffc008c81be8 d event_io_uring_short_write
+ffffffc008c81c78 d trace_event_fields_io_uring_local_work_run
+ffffffc008c81d18 d trace_event_type_funcs_io_uring_local_work_run
+ffffffc008c81d38 d print_fmt_io_uring_local_work_run
+ffffffc008c81d78 d event_io_uring_local_work_run
+ffffffc008c81e08 d percpu_ref_switch_waitq
+ffffffc008c81e20 d once_mutex
+ffffffc008c81e50 D __SCK__tp_func_rwmmio_write
+ffffffc008c81e58 D __SCK__tp_func_rwmmio_post_write
+ffffffc008c81e60 D __SCK__tp_func_rwmmio_read
+ffffffc008c81e68 D __SCK__tp_func_rwmmio_post_read
+ffffffc008c81e70 d trace_event_fields_rwmmio_rw_template
+ffffffc008c81f60 d trace_event_type_funcs_rwmmio_rw_template
+ffffffc008c81f80 d print_fmt_rwmmio_rw_template
+ffffffc008c81ff8 d event_rwmmio_write
+ffffffc008c82088 d event_rwmmio_post_write
+ffffffc008c82118 d trace_event_fields_rwmmio_read
+ffffffc008c821e0 d trace_event_type_funcs_rwmmio_read
+ffffffc008c82200 d print_fmt_rwmmio_read
+ffffffc008c82268 d event_rwmmio_read
+ffffffc008c822f8 d trace_event_fields_rwmmio_post_read
+ffffffc008c823e8 d trace_event_type_funcs_rwmmio_post_read
+ffffffc008c82408 d print_fmt_rwmmio_post_read
+ffffffc008c82480 d event_rwmmio_post_read
+ffffffc008c82510 d static_l_desc
+ffffffc008c82530 d static_d_desc
+ffffffc008c82550 d static_bl_desc
+ffffffc008c82570 d rslistlock
+ffffffc008c825a0 d codec_list
+ffffffc008c825b0 d percpu_counters
+ffffffc008c825c0 d write_class
+ffffffc008c825fc d read_class
+ffffffc008c82620 d dir_class
+ffffffc008c82640 d chattr_class
+ffffffc008c82670 d signal_class
+ffffffc008c82680 d ddebug_lock
+ffffffc008c826b0 d ddebug_tables
+ffffffc008c826c0 d __nla_validate_parse._rs
+ffffffc008c826e8 d validate_nla._rs
+ffffffc008c82710 d nla_validate_range_unsigned._rs
+ffffffc008c82738 d sg_pools
+ffffffc008c827d8 d stack_depot_init.stack_depot_init_mutex
+ffffffc008c82808 d supports_deactivate_key
+ffffffc008c82818 d supports_deactivate_key
+ffffffc008c82828 d gic_notifier_block
+ffffffc008c82840 d v2m_nodes
+ffffffc008c82850 d gicv2m_msi_domain_info
+ffffffc008c82890 d gicv2m_pmsi_domain_info
+ffffffc008c828d0 d gicv2m_irq_chip
+ffffffc008c829d8 d gicv2m_msi_irq_chip
+ffffffc008c82ae0 d gicv2m_pmsi_irq_chip
+ffffffc008c82be8 d gic_do_wait_for_rwp._rs
+ffffffc008c82c10 d gic_enable_redist._rs
+ffffffc008c82c38 d gic_chip
+ffffffc008c82d40 d gic_eoimode1_chip
+ffffffc008c82e48 d gic_cpu_pm_notifier_block
+ffffffc008c82e60 d gic_syscore_ops
+ffffffc008c82e88 d mbi_pmsi_domain_info
+ffffffc008c82ec8 d mbi_lock
+ffffffc008c82ef8 d mbi_irq_chip
+ffffffc008c83000 d mbi_msi_domain_info
+ffffffc008c83040 d mbi_msi_irq_chip
+ffffffc008c83148 d mbi_pmsi_irq_chip
+ffffffc008c83250 d its_nodes
+ffffffc008c83260 d its_syscore_ops
+ffffffc008c83288 d read_vpend_dirty_clear._rs
+ffffffc008c832b0 d its_send_single_command._rs
+ffffffc008c832d8 d its_allocate_entry._rs
+ffffffc008c83300 d its_wait_for_range_completion._rs
+ffffffc008c83328 d its_msi_domain_ops
+ffffffc008c83368 d its_irq_chip
+ffffffc008c83470 d its_send_single_vcommand._rs
+ffffffc008c83498 d lpi_range_lock
+ffffffc008c834c8 d lpi_range_list
+ffffffc008c834d8 d its_sgi_irq_chip
+ffffffc008c835e0 d its_sgi_get_irqchip_state._rs
+ffffffc008c83608 d its_vpe_irq_chip
+ffffffc008c83710 d its_vpe_4_1_irq_chip
+ffffffc008c83818 d its_vpeid_ida
+ffffffc008c83828 d its_pmsi_domain_info
+ffffffc008c83868 d its_pmsi_ops
+ffffffc008c838a8 d its_pmsi_irq_chip
+ffffffc008c839b0 d its_device_id
+ffffffc008c83b40 d its_pci_msi_domain_info
+ffffffc008c83b80 d its_pci_msi_ops
+ffffffc008c83bc0 d its_msi_irq_chip
+ffffffc008c83cc8 d partition_irq_chip
+ffffffc008c83dd0 d simple_pm_bus_driver
+ffffffc008c83ec0 d pci_cfg_wait
+ffffffc008c83ed8 d pci_high
+ffffffc008c83ee8 d pci_64_bit
+ffffffc008c83ef8 d pci_32_bit
+ffffffc008c83f08 d busn_resource
+ffffffc008c83f68 d pci_rescan_remove_lock.llvm.16835340216678309388
+ffffffc008c83f98 d pcibus_class
+ffffffc008c84030 d pci_domain_busn_res_list
+ffffffc008c84040 D pci_root_buses
+ffffffc008c84050 D pci_slot_mutex
+ffffffc008c84080 D pci_power_names
+ffffffc008c840b8 D pci_domains_supported
+ffffffc008c840bc D pci_dfl_cache_line_size
+ffffffc008c840c0 D pcibios_max_latency
+ffffffc008c840c8 d pci_pme_list_mutex
+ffffffc008c840f8 d pci_pme_list
+ffffffc008c84108 d pci_pme_work
+ffffffc008c84190 d pci_dev_reset_method_attrs
+ffffffc008c841a0 d pci_set_full_power_state._rs
+ffffffc008c841c8 d pci_set_low_power_state._rs
+ffffffc008c841f0 d dev_attr_reset_method
+ffffffc008c84210 d bus_attr_resource_alignment
+ffffffc008c84230 d of_pci_bus_find_domain_nr.use_dt_domains
+ffffffc008c84234 d __domain_nr
+ffffffc008c84238 D pcie_bus_config
+ffffffc008c84240 D pci_hotplug_bus_size
+ffffffc008c84248 D pci_cardbus_io_size
+ffffffc008c84250 D pci_cardbus_mem_size
+ffffffc008c84258 D pci_hotplug_io_size
+ffffffc008c84260 D pci_hotplug_mmio_size
+ffffffc008c84268 D pci_hotplug_mmio_pref_size
+ffffffc008c84270 d pci_compat_driver
+ffffffc008c843d8 d pci_drv_groups
+ffffffc008c843e8 D pcie_port_bus_type
+ffffffc008c844c0 d pci_drv_attrs
+ffffffc008c844d8 d driver_attr_new_id
+ffffffc008c844f8 d driver_attr_remove_id
+ffffffc008c84518 D pci_bus_type
+ffffffc008c845f0 D pci_bus_sem
+ffffffc008c84630 D pci_bus_groups
+ffffffc008c84640 D pci_dev_groups
+ffffffc008c84680 d pci_dev_attr_groups.llvm.7271776144345358373
+ffffffc008c846c8 d pci_bus_attrs
+ffffffc008c846d8 d bus_attr_rescan
+ffffffc008c846f8 d pcibus_attrs
+ffffffc008c84718 d dev_attr_bus_rescan
+ffffffc008c84738 d dev_attr_cpuaffinity
+ffffffc008c84758 d dev_attr_cpulistaffinity
+ffffffc008c84778 d pci_dev_attrs
+ffffffc008c84820 d dev_attr_power_state
+ffffffc008c84840 d dev_attr_resource
+ffffffc008c84860 d dev_attr_resource
+ffffffc008c84880 d dev_attr_vendor
+ffffffc008c848a0 d dev_attr_vendor
+ffffffc008c848c0 d dev_attr_vendor
+ffffffc008c848e0 d dev_attr_device
+ffffffc008c84900 d dev_attr_device
+ffffffc008c84920 d dev_attr_subsystem_vendor
+ffffffc008c84940 d dev_attr_subsystem_device
+ffffffc008c84960 d dev_attr_revision
+ffffffc008c84980 d dev_attr_revision
+ffffffc008c849a0 d dev_attr_class
+ffffffc008c849c0 d dev_attr_irq
+ffffffc008c849e0 d dev_attr_irq
+ffffffc008c84a00 d dev_attr_local_cpus
+ffffffc008c84a20 d dev_attr_local_cpulist
+ffffffc008c84a40 d dev_attr_modalias
+ffffffc008c84a60 d dev_attr_modalias
+ffffffc008c84a80 d dev_attr_modalias
+ffffffc008c84aa0 d dev_attr_modalias
+ffffffc008c84ac0 d dev_attr_modalias
+ffffffc008c84ae0 d dev_attr_modalias
+ffffffc008c84b00 d dev_attr_dma_mask_bits
+ffffffc008c84b20 d dev_attr_consistent_dma_mask_bits
+ffffffc008c84b40 d dev_attr_enable
+ffffffc008c84b60 d dev_attr_broken_parity_status
+ffffffc008c84b80 d dev_attr_msi_bus
+ffffffc008c84ba0 d dev_attr_devspec
+ffffffc008c84bc0 d dev_attr_driver_override
+ffffffc008c84be0 d dev_attr_driver_override
+ffffffc008c84c00 d dev_attr_driver_override
+ffffffc008c84c20 d dev_attr_ari_enabled
+ffffffc008c84c40 d pci_dev_config_attrs
+ffffffc008c84c50 d bin_attr_config
+ffffffc008c84c90 d pci_dev_rom_attrs
+ffffffc008c84ca0 d bin_attr_rom
+ffffffc008c84ce0 d pci_dev_reset_attrs
+ffffffc008c84cf0 d dev_attr_reset
+ffffffc008c84d10 d dev_attr_reset
+ffffffc008c84d30 d resource_resize_attrs
+ffffffc008c84d68 d dev_attr_resource0_resize
+ffffffc008c84d88 d dev_attr_resource1_resize
+ffffffc008c84da8 d dev_attr_resource2_resize
+ffffffc008c84dc8 d dev_attr_resource3_resize
+ffffffc008c84de8 d dev_attr_resource4_resize
+ffffffc008c84e08 d dev_attr_resource5_resize
+ffffffc008c84e28 d pci_dev_dev_attrs
+ffffffc008c84e38 d dev_attr_boot_vga
+ffffffc008c84e58 d pci_dev_hp_attrs
+ffffffc008c84e70 d dev_attr_remove
+ffffffc008c84e90 d dev_attr_dev_rescan
+ffffffc008c84eb0 d pci_bridge_attrs
+ffffffc008c84ec8 d dev_attr_subordinate_bus_number
+ffffffc008c84ee8 d dev_attr_secondary_bus_number
+ffffffc008c84f08 d pcie_dev_attrs
+ffffffc008c84f30 d dev_attr_current_link_speed
+ffffffc008c84f50 d dev_attr_current_link_width
+ffffffc008c84f70 d dev_attr_max_link_width
+ffffffc008c84f90 d dev_attr_max_link_speed
+ffffffc008c84fb0 D pcibus_groups
+ffffffc008c84fc0 d vpd_attrs
+ffffffc008c84fd0 d bin_attr_vpd
+ffffffc008c85010 d pci_realloc_enable
+ffffffc008c85018 d pci_msi_domain_ops_default
+ffffffc008c85058 d pcie_portdriver
+ffffffc008c851c0 d aspm_lock
+ffffffc008c851f0 d aspm_ctrl_attrs
+ffffffc008c85230 d link_list
+ffffffc008c85240 d policy_str
+ffffffc008c85260 d dev_attr_clkpm
+ffffffc008c85280 d dev_attr_l0s_aspm
+ffffffc008c852a0 d dev_attr_l1_aspm
+ffffffc008c852c0 d dev_attr_l1_1_aspm
+ffffffc008c852e0 d dev_attr_l1_2_aspm
+ffffffc008c85300 d dev_attr_l1_1_pcipm
+ffffffc008c85320 d dev_attr_l1_2_pcipm
+ffffffc008c85340 d aerdriver
+ffffffc008c85440 d dev_attr_aer_rootport_total_err_cor
+ffffffc008c85460 d dev_attr_aer_rootport_total_err_fatal
+ffffffc008c85480 d dev_attr_aer_rootport_total_err_nonfatal
+ffffffc008c854a0 d dev_attr_aer_dev_correctable
+ffffffc008c854c0 d dev_attr_aer_dev_fatal
+ffffffc008c854e0 d dev_attr_aer_dev_nonfatal
+ffffffc008c85500 d pcie_pme_driver.llvm.2220754511079927214
+ffffffc008c85600 d pci_slot_ktype
+ffffffc008c85650 d pci_slot_default_groups
+ffffffc008c85660 d pci_slot_default_attrs
+ffffffc008c85680 d pci_slot_attr_address
+ffffffc008c856a0 d pci_slot_attr_max_speed
+ffffffc008c856c0 d pci_slot_attr_cur_speed
+ffffffc008c856e0 d via_vlink_dev_lo
+ffffffc008c856e4 d via_vlink_dev_hi
+ffffffc008c856e8 d sriov_vf_dev_attrs
+ffffffc008c856f8 d sriov_pf_dev_attrs
+ffffffc008c85738 d dev_attr_sriov_vf_msix_count
+ffffffc008c85758 d dev_attr_sriov_totalvfs
+ffffffc008c85778 d dev_attr_sriov_numvfs
+ffffffc008c85798 d dev_attr_sriov_offset
+ffffffc008c857b8 d dev_attr_sriov_stride
+ffffffc008c857d8 d dev_attr_sriov_vf_device
+ffffffc008c857f8 d dev_attr_sriov_drivers_autoprobe
+ffffffc008c85818 d dev_attr_sriov_vf_total_msix
+ffffffc008c85838 d vga_wait_queue
+ffffffc008c85850 d vga_list
+ffffffc008c85860 d vga_arb_device
+ffffffc008c858b0 d pci_notifier
+ffffffc008c858c8 d vga_user_list
+ffffffc008c858d8 d pci_epf_bus_type
+ffffffc008c859b0 d gen_pci_driver
+ffffffc008c85aa0 d dw_pcie_msi_domain_info
+ffffffc008c85ae0 d dw_pcie_ops
+ffffffc008c85b10 d dw_child_pcie_ops
+ffffffc008c85b40 d dw_pcie_msi_irq_chip
+ffffffc008c85c48 d dw_pci_msi_bottom_irq_chip
+ffffffc008c85d50 d dw_plat_pcie_driver
+ffffffc008c85e40 d kirin_pcie_driver
+ffffffc008c85f30 d kirin_pci_ops
+ffffffc008c85f60 d amba_dev_groups
+ffffffc008c85f70 D amba_bustype
+ffffffc008c86048 d amba_dev_attrs
+ffffffc008c86068 d dev_attr_id
+ffffffc008c86088 d dev_attr_id
+ffffffc008c860a8 d dev_attr_id
+ffffffc008c860c8 d amba_proxy_drv
+ffffffc008c861a8 d clocks_mutex
+ffffffc008c861d8 d clocks
+ffffffc008c861e8 D __SCK__tp_func_clk_enable
+ffffffc008c861f0 D __SCK__tp_func_clk_enable_complete
+ffffffc008c861f8 D __SCK__tp_func_clk_disable
+ffffffc008c86200 D __SCK__tp_func_clk_disable_complete
+ffffffc008c86208 D __SCK__tp_func_clk_prepare
+ffffffc008c86210 D __SCK__tp_func_clk_prepare_complete
+ffffffc008c86218 D __SCK__tp_func_clk_unprepare
+ffffffc008c86220 D __SCK__tp_func_clk_unprepare_complete
+ffffffc008c86228 D __SCK__tp_func_clk_set_rate
+ffffffc008c86230 D __SCK__tp_func_clk_set_rate_complete
+ffffffc008c86238 D __SCK__tp_func_clk_set_min_rate
+ffffffc008c86240 D __SCK__tp_func_clk_set_max_rate
+ffffffc008c86248 D __SCK__tp_func_clk_set_rate_range
+ffffffc008c86250 D __SCK__tp_func_clk_set_parent
+ffffffc008c86258 D __SCK__tp_func_clk_set_parent_complete
+ffffffc008c86260 D __SCK__tp_func_clk_set_phase
+ffffffc008c86268 D __SCK__tp_func_clk_set_phase_complete
+ffffffc008c86270 D __SCK__tp_func_clk_set_duty_cycle
+ffffffc008c86278 D __SCK__tp_func_clk_set_duty_cycle_complete
+ffffffc008c86280 d trace_event_fields_clk
+ffffffc008c862d0 d trace_event_type_funcs_clk
+ffffffc008c862f0 d print_fmt_clk
+ffffffc008c86308 d event_clk_enable
+ffffffc008c86398 d event_clk_enable_complete
+ffffffc008c86428 d event_clk_disable
+ffffffc008c864b8 d event_clk_disable_complete
+ffffffc008c86548 d event_clk_prepare
+ffffffc008c865d8 d event_clk_prepare_complete
+ffffffc008c86668 d event_clk_unprepare
+ffffffc008c866f8 d event_clk_unprepare_complete
+ffffffc008c86788 d trace_event_fields_clk_rate
+ffffffc008c86800 d trace_event_type_funcs_clk_rate
+ffffffc008c86820 d print_fmt_clk_rate
+ffffffc008c86858 d event_clk_set_rate
+ffffffc008c868e8 d event_clk_set_rate_complete
+ffffffc008c86978 d event_clk_set_min_rate
+ffffffc008c86a08 d event_clk_set_max_rate
+ffffffc008c86a98 d trace_event_fields_clk_rate_range
+ffffffc008c86b38 d trace_event_type_funcs_clk_rate_range
+ffffffc008c86b58 d print_fmt_clk_rate_range
+ffffffc008c86bb0 d event_clk_set_rate_range
+ffffffc008c86c40 d trace_event_fields_clk_parent
+ffffffc008c86cb8 d trace_event_type_funcs_clk_parent
+ffffffc008c86cd8 d print_fmt_clk_parent
+ffffffc008c86d08 d event_clk_set_parent
+ffffffc008c86d98 d event_clk_set_parent_complete
+ffffffc008c86e28 d trace_event_fields_clk_phase
+ffffffc008c86ea0 d trace_event_type_funcs_clk_phase
+ffffffc008c86ec0 d print_fmt_clk_phase
+ffffffc008c86ef0 d event_clk_set_phase
+ffffffc008c86f80 d event_clk_set_phase_complete
+ffffffc008c87010 d trace_event_fields_clk_duty_cycle
+ffffffc008c870b0 d trace_event_type_funcs_clk_duty_cycle
+ffffffc008c870d0 d print_fmt_clk_duty_cycle
+ffffffc008c87120 d event_clk_set_duty_cycle
+ffffffc008c871b0 d event_clk_set_duty_cycle_complete
+ffffffc008c87240 d clk_notifier_list
+ffffffc008c87250 d of_clk_mutex
+ffffffc008c87280 d of_clk_providers
+ffffffc008c87290 d prepare_lock
+ffffffc008c872c0 d all_lists
+ffffffc008c872d8 d orphan_list
+ffffffc008c872e8 d clk_debug_lock
+ffffffc008c87318 d of_fixed_factor_clk_driver
+ffffffc008c87408 d of_fixed_clk_driver
+ffffffc008c874f8 d gpio_clk_driver
+ffffffc008c875e8 d virtio_bus
+ffffffc008c876c0 d virtio_index_ida.llvm.7684460437597416474
+ffffffc008c876d0 d virtio_dev_groups
+ffffffc008c876e0 d virtio_dev_attrs
+ffffffc008c87710 d dev_attr_status
+ffffffc008c87730 d dev_attr_status
+ffffffc008c87750 d dev_attr_features
+ffffffc008c87770 D virtio_check_mem_acc_cb
+ffffffc008c87778 d virtio_pci_driver
+ffffffc008c878e0 d virtio_balloon_driver
+ffffffc008c879f0 d features
+ffffffc008c87a08 d features
+ffffffc008c87a38 d features
+ffffffc008c87a40 d fill_balloon._rs
+ffffffc008c87a68 D tty_drivers
+ffffffc008c87a78 D tty_mutex
+ffffffc008c87aa8 d tty_init_dev._rs
+ffffffc008c87ad0 d tty_init_dev._rs.3
+ffffffc008c87af8 d cons_dev_groups
+ffffffc008c87b08 d tty_set_serial._rs
+ffffffc008c87b30 d cons_dev_attrs
+ffffffc008c87b40 D tty_std_termios
+ffffffc008c87b70 d n_tty_ops.llvm.13617924539690670081
+ffffffc008c87c10 d n_tty_kick_worker._rs
+ffffffc008c87c38 d n_tty_kick_worker._rs.5
+ffffffc008c87c60 d tty_root_table.llvm.9394133709221046343
+ffffffc008c87ce0 d tty_ldisc_autoload
+ffffffc008c87ce8 d tty_dir_table
+ffffffc008c87d68 d tty_table
+ffffffc008c87de8 d null_ldisc
+ffffffc008c87e88 d devpts_mutex
+ffffffc008c87eb8 D __sysrq_reboot_op
+ffffffc008c87ec0 d sysrq_key_table
+ffffffc008c880b0 d moom_work
+ffffffc008c880e0 d sysrq_showallcpus
+ffffffc008c88110 d sysrq_reset_seq_version
+ffffffc008c88118 d sysrq_handler
+ffffffc008c88198 d vt_events
+ffffffc008c881a8 d vt_event_waitqueue
+ffffffc008c881c0 d vc_sel.llvm.8182816209294500938
+ffffffc008c88210 d inwordLut
+ffffffc008c88220 d kd_mksound_timer
+ffffffc008c88258 d kbd_handler
+ffffffc008c882d8 d brl_timeout
+ffffffc008c882dc d brl_nbchords
+ffffffc008c882e0 d keyboard_tasklet
+ffffffc008c88308 d kbd
+ffffffc008c88310 d applkey.buf
+ffffffc008c88314 d ledstate
+ffffffc008c88318 d translations
+ffffffc008c88b18 D dfont_unicount
+ffffffc008c88c18 D dfont_unitable
+ffffffc008c88e78 D global_cursor_default
+ffffffc008c88e7c d cur_default
+ffffffc008c88e80 d console_work.llvm.7497067998197082255
+ffffffc008c88eb0 d complement_pos.old_offset
+ffffffc008c88eb4 D default_red
+ffffffc008c88ec4 D default_grn
+ffffffc008c88ed4 D default_blu
+ffffffc008c88ee4 d default_color
+ffffffc008c88ee8 d default_italic_color
+ffffffc008c88eec d default_underline_color
+ffffffc008c88ef0 d vt_dev_groups
+ffffffc008c88f00 d con_driver_unregister_work
+ffffffc008c88f30 d console_timer
+ffffffc008c88f68 d softcursor_original
+ffffffc008c88f70 d vt_console_driver
+ffffffc008c88fe8 d vt_dev_attrs
+ffffffc008c88ff8 d con_dev_groups
+ffffffc008c89008 d con_dev_attrs
+ffffffc008c89020 d dev_attr_bind
+ffffffc008c89040 d dev_attr_name
+ffffffc008c89060 d dev_attr_name
+ffffffc008c89080 d dev_attr_name
+ffffffc008c890a0 d dev_attr_name
+ffffffc008c890c0 d dev_attr_name
+ffffffc008c890e0 d dev_attr_name
+ffffffc008c89100 D default_utf8
+ffffffc008c89104 D want_console
+ffffffc008c89108 D plain_map
+ffffffc008c89308 D key_maps
+ffffffc008c89b08 D keymap_count
+ffffffc008c89b0c D func_buf
+ffffffc008c89ba8 D funcbufptr
+ffffffc008c89bb0 D funcbufsize
+ffffffc008c89bb8 D func_table
+ffffffc008c8a3b8 D accent_table
+ffffffc008c8afb8 D accent_table_size
+ffffffc008c8afbc d shift_map
+ffffffc008c8b1bc d altgr_map
+ffffffc008c8b3bc d ctrl_map
+ffffffc008c8b5bc d shift_ctrl_map
+ffffffc008c8b7bc d alt_map
+ffffffc008c8b9bc d ctrl_alt_map
+ffffffc008c8bbbc d vtermnos
+ffffffc008c8bc00 d hvc_structs_mutex
+ffffffc008c8bc30 d last_hvc
+ffffffc008c8bc38 d hvc_structs
+ffffffc008c8bc48 d hvc_console
+ffffffc008c8bcc0 d timeout
+ffffffc008c8bcc8 d port_mutex
+ffffffc008c8bcf8 d uart_sanitize_serial_rs485._rs
+ffffffc008c8bd20 d uart_set_info._rs
+ffffffc008c8bd48 d tty_dev_attrs
+ffffffc008c8bdc0 d dev_attr_uartclk
+ffffffc008c8bde0 d dev_attr_line
+ffffffc008c8be00 d dev_attr_port
+ffffffc008c8be20 d dev_attr_flags
+ffffffc008c8be40 d dev_attr_flags
+ffffffc008c8be60 d dev_attr_xmit_fifo_size
+ffffffc008c8be80 d dev_attr_close_delay
+ffffffc008c8bea0 d dev_attr_closing_wait
+ffffffc008c8bec0 d dev_attr_custom_divisor
+ffffffc008c8bee0 d dev_attr_io_type
+ffffffc008c8bf00 d dev_attr_iomem_base
+ffffffc008c8bf20 d dev_attr_iomem_reg_shift
+ffffffc008c8bf40 d dev_attr_console
+ffffffc008c8bf60 d uart_sanitize_serial_rs485_delays._rs
+ffffffc008c8bf88 d uart_sanitize_serial_rs485_delays._rs.68
+ffffffc008c8bfb0 d uart_sanitize_serial_rs485_delays._rs.70
+ffffffc008c8bfd8 d uart_sanitize_serial_rs485_delays._rs.72
+ffffffc008c8c000 d early_con
+ffffffc008c8c078 d early_console_dev
+ffffffc008c8c2a8 d serial8250_reg
+ffffffc008c8c2f0 d serial_mutex
+ffffffc008c8c320 d serial8250_isa_driver
+ffffffc008c8c410 d univ8250_console
+ffffffc008c8c488 d hash_mutex
+ffffffc008c8c4b8 D serial8250_em485_supported
+ffffffc008c8c4d8 d serial8250_do_startup._rs
+ffffffc008c8c500 d serial8250_do_startup._rs.4
+ffffffc008c8c528 d serial8250_dev_attr_group
+ffffffc008c8c550 d serial8250_dev_attrs
+ffffffc008c8c560 d dev_attr_rx_trig_bytes
+ffffffc008c8c580 d pericom8250_pci_driver
+ffffffc008c8c6e8 d of_platform_serial_driver
+ffffffc008c8c7d8 d ttynull_console
+ffffffc008c8c850 d crng_init_wait
+ffffffc008c8c868 d pm_notifier
+ffffffc008c8c880 d input_pool
+ffffffc008c8c900 d add_input_randomness.input_timer_state
+ffffffc008c8c918 d urandom_warning
+ffffffc008c8c940 d crng_reseed_interval.early_boot
+ffffffc008c8c944 d urandom_read_iter.maxwarn
+ffffffc008c8c948 d random_table
+ffffffc008c8cb08 d sysctl_poolsize
+ffffffc008c8cb0c d sysctl_random_write_wakeup_bits
+ffffffc008c8cb10 d sysctl_random_min_urandom_seed
+ffffffc008c8cb18 d misc_mtx
+ffffffc008c8cb48 d misc_list
+ffffffc008c8cb58 d virtio_console
+ffffffc008c8cc68 d virtio_rproc_serial
+ffffffc008c8cd78 d pdrvdata
+ffffffc008c8cdb0 d pending_free_dma_bufs
+ffffffc008c8cdc0 d early_console_added
+ffffffc008c8cde0 d port_sysfs_entries
+ffffffc008c8cdf0 d rng_miscdev
+ffffffc008c8ce40 d rng_mutex
+ffffffc008c8ce70 d rng_list
+ffffffc008c8ce80 d rng_dev_groups
+ffffffc008c8ce90 d reading_mutex
+ffffffc008c8cec0 d rng_dev_attrs
+ffffffc008c8cee8 d dev_attr_rng_current
+ffffffc008c8cf08 d dev_attr_rng_available
+ffffffc008c8cf28 d dev_attr_rng_selected
+ffffffc008c8cf48 d dev_attr_rng_quality
+ffffffc008c8cf68 d cctrng_driver
+ffffffc008c8d058 d smccc_trng_driver
+ffffffc008c8d148 d cn10k_rng_driver
+ffffffc008c8d2b0 d iommu_device_list
+ffffffc008c8d2c0 d iommu_group_ida
+ffffffc008c8d2d0 d iommu_group_ktype
+ffffffc008c8d320 d iommu_group_attr_reserved_regions
+ffffffc008c8d340 d iommu_group_attr_type
+ffffffc008c8d360 d iommu_group_attr_name
+ffffffc008c8d380 d iommu_page_response._rs
+ffffffc008c8d3a8 d __iommu_probe_device.iommu_probe_device_lock
+ffffffc008c8d3d8 d iommu_group_store_type._rs
+ffffffc008c8d400 d iommu_group_store_type._rs.44
+ffffffc008c8d428 d iommu_change_dev_def_domain._rs
+ffffffc008c8d450 d iommu_change_dev_def_domain._rs.47
+ffffffc008c8d478 d iommu_change_dev_def_domain._rs.49
+ffffffc008c8d4a0 d iommu_change_dev_def_domain._rs.51
+ffffffc008c8d4c8 D __SCK__tp_func_add_device_to_group
+ffffffc008c8d4d0 D __SCK__tp_func_remove_device_from_group
+ffffffc008c8d4d8 D __SCK__tp_func_attach_device_to_domain
+ffffffc008c8d4e0 D __SCK__tp_func_detach_device_from_domain
+ffffffc008c8d4e8 D __SCK__tp_func_map
+ffffffc008c8d4f0 D __SCK__tp_func_unmap
+ffffffc008c8d4f8 D __SCK__tp_func_io_page_fault
+ffffffc008c8d500 d trace_event_fields_iommu_group_event
+ffffffc008c8d578 d trace_event_type_funcs_iommu_group_event
+ffffffc008c8d598 d print_fmt_iommu_group_event
+ffffffc008c8d5d8 d event_add_device_to_group
+ffffffc008c8d668 d event_remove_device_from_group
+ffffffc008c8d6f8 d trace_event_fields_iommu_device_event
+ffffffc008c8d748 d trace_event_type_funcs_iommu_device_event
+ffffffc008c8d768 d print_fmt_iommu_device_event
+ffffffc008c8d790 d event_attach_device_to_domain
+ffffffc008c8d820 d event_detach_device_from_domain
+ffffffc008c8d8b0 d trace_event_fields_map
+ffffffc008c8d950 d trace_event_type_funcs_map
+ffffffc008c8d970 d print_fmt_map
+ffffffc008c8d9e8 d event_map
+ffffffc008c8da78 d trace_event_fields_unmap
+ffffffc008c8db18 d trace_event_type_funcs_unmap
+ffffffc008c8db38 d print_fmt_unmap
+ffffffc008c8dbb8 d event_unmap
+ffffffc008c8dc48 d trace_event_fields_iommu_error
+ffffffc008c8dd10 d trace_event_type_funcs_iommu_error
+ffffffc008c8dd30 d print_fmt_iommu_error
+ffffffc008c8dd98 d event_io_page_fault
+ffffffc008c8de28 d iommu_class
+ffffffc008c8dec0 d dev_groups
+ffffffc008c8ded0 d iommu_dma_prepare_msi.msi_prepare_lock
+ffffffc008c8df00 d iova_cache_mutex
+ffffffc008c8df30 d component_mutex
+ffffffc008c8df60 d aggregate_devices
+ffffffc008c8df70 d component_list
+ffffffc008c8df80 d fwnode_link_lock.llvm.3145974223128856570
+ffffffc008c8dfb0 d device_links_srcu.llvm.3145974223128856570
+ffffffc008c8e190 d devlink_class.llvm.3145974223128856570
+ffffffc008c8e228 d defer_sync_state_count
+ffffffc008c8e230 d deferred_sync
+ffffffc008c8e240 d dev_attr_waiting_for_supplier
+ffffffc008c8e260 d fw_devlink_flags
+ffffffc008c8e268 d device_hotplug_lock.llvm.3145974223128856570
+ffffffc008c8e298 d device_ktype
+ffffffc008c8e2e8 d dev_attr_uevent
+ffffffc008c8e308 d dev_attr_dev
+ffffffc008c8e328 d devlink_class_intf
+ffffffc008c8e350 d device_links_lock.llvm.3145974223128856570
+ffffffc008c8e380 d devlink_groups
+ffffffc008c8e390 d devlink_attrs
+ffffffc008c8e3b8 d dev_attr_auto_remove_on
+ffffffc008c8e3d8 d dev_attr_runtime_pm
+ffffffc008c8e3f8 d dev_attr_sync_state_only
+ffffffc008c8e418 d gdp_mutex
+ffffffc008c8e448 d class_dir_ktype
+ffffffc008c8e498 d dev_attr_online
+ffffffc008c8e4b8 d driver_ktype
+ffffffc008c8e508 d driver_attr_uevent
+ffffffc008c8e528 d bus_ktype
+ffffffc008c8e578 d bus_attr_uevent
+ffffffc008c8e598 d driver_attr_unbind
+ffffffc008c8e5b8 d driver_attr_bind
+ffffffc008c8e5d8 d bus_attr_drivers_probe
+ffffffc008c8e5f8 d bus_attr_drivers_autoprobe
+ffffffc008c8e618 d deferred_probe_mutex
+ffffffc008c8e648 d deferred_probe_pending_list
+ffffffc008c8e658 d deferred_probe_active_list
+ffffffc008c8e668 d deferred_probe_work
+ffffffc008c8e698 D driver_deferred_probe_timeout
+ffffffc008c8e6a0 d deferred_probe_timeout_work
+ffffffc008c8e728 d probe_waitqueue
+ffffffc008c8e740 d dev_attr_state_synced
+ffffffc008c8e760 d dev_attr_coredump
+ffffffc008c8e780 d syscore_ops_lock
+ffffffc008c8e7b0 d syscore_ops_list
+ffffffc008c8e7c0 d class_ktype
+ffffffc008c8e810 D platform_bus
+ffffffc008c8eb88 D platform_bus_type
+ffffffc008c8ec60 d platform_devid_ida
+ffffffc008c8ec70 d platform_dev_groups
+ffffffc008c8ec80 d platform_dev_attrs
+ffffffc008c8eca0 d dev_attr_numa_node
+ffffffc008c8ecc0 d cpu_root_attr_groups
+ffffffc008c8ecd0 d cpu_root_attrs
+ffffffc008c8ed10 d cpu_attrs
+ffffffc008c8ed88 d dev_attr_kernel_max
+ffffffc008c8eda8 d dev_attr_offline
+ffffffc008c8edc8 d dev_attr_isolated
+ffffffc008c8ede8 d cpu_root_vulnerabilities_attrs
+ffffffc008c8ee48 d dev_attr_meltdown
+ffffffc008c8ee68 d dev_attr_spectre_v1
+ffffffc008c8ee88 d dev_attr_spectre_v2
+ffffffc008c8eea8 d dev_attr_spec_store_bypass
+ffffffc008c8eec8 d dev_attr_l1tf
+ffffffc008c8eee8 d dev_attr_mds
+ffffffc008c8ef08 d dev_attr_tsx_async_abort
+ffffffc008c8ef28 d dev_attr_itlb_multihit
+ffffffc008c8ef48 d dev_attr_srbds
+ffffffc008c8ef68 d dev_attr_mmio_stale_data
+ffffffc008c8ef88 d dev_attr_retbleed
+ffffffc008c8efa8 D cpu_subsys
+ffffffc008c8f080 d attribute_container_mutex
+ffffffc008c8f0b0 d attribute_container_list
+ffffffc008c8f0c0 d default_attrs
+ffffffc008c8f0e8 d bin_attrs
+ffffffc008c8f140 d dev_attr_ppin
+ffffffc008c8f160 d dev_attr_physical_package_id
+ffffffc008c8f180 d dev_attr_cluster_id
+ffffffc008c8f1a0 d dev_attr_core_id
+ffffffc008c8f1c0 d bin_attr_core_cpus
+ffffffc008c8f200 d bin_attr_core_cpus_list
+ffffffc008c8f240 d bin_attr_thread_siblings
+ffffffc008c8f280 d bin_attr_thread_siblings_list
+ffffffc008c8f2c0 d bin_attr_core_siblings
+ffffffc008c8f300 d bin_attr_core_siblings_list
+ffffffc008c8f340 d bin_attr_cluster_cpus
+ffffffc008c8f380 d bin_attr_cluster_cpus_list
+ffffffc008c8f3c0 d bin_attr_package_cpus
+ffffffc008c8f400 d bin_attr_package_cpus_list
+ffffffc008c8f440 D container_subsys
+ffffffc008c8f518 d cache_default_groups
+ffffffc008c8f528 d cache_private_groups
+ffffffc008c8f540 d cache_default_attrs
+ffffffc008c8f5a8 d dev_attr_level
+ffffffc008c8f5c8 d dev_attr_shared_cpu_map
+ffffffc008c8f5e8 d dev_attr_shared_cpu_list
+ffffffc008c8f608 d dev_attr_coherency_line_size
+ffffffc008c8f628 d dev_attr_ways_of_associativity
+ffffffc008c8f648 d dev_attr_number_of_sets
+ffffffc008c8f668 d dev_attr_write_policy
+ffffffc008c8f688 d dev_attr_allocation_policy
+ffffffc008c8f6a8 d dev_attr_physical_line_partition
+ffffffc008c8f6c8 d swnode_root_ids
+ffffffc008c8f6d8 d software_node_type
+ffffffc008c8f728 d runtime_attrs.llvm.15051132245558023808
+ffffffc008c8f758 d dev_attr_runtime_status
+ffffffc008c8f778 d dev_attr_runtime_suspended_time
+ffffffc008c8f798 d dev_attr_runtime_active_time
+ffffffc008c8f7b8 d dev_attr_autosuspend_delay_ms
+ffffffc008c8f7d8 d wakeup_attrs.llvm.15051132245558023808
+ffffffc008c8f828 d dev_attr_wakeup
+ffffffc008c8f848 d dev_attr_wakeup_count
+ffffffc008c8f868 d dev_attr_wakeup_count
+ffffffc008c8f888 d dev_attr_wakeup_active_count
+ffffffc008c8f8a8 d dev_attr_wakeup_abort_count
+ffffffc008c8f8c8 d dev_attr_wakeup_expire_count
+ffffffc008c8f8e8 d dev_attr_wakeup_active
+ffffffc008c8f908 d dev_attr_wakeup_total_time_ms
+ffffffc008c8f928 d dev_attr_wakeup_max_time_ms
+ffffffc008c8f948 d dev_attr_wakeup_last_time_ms
+ffffffc008c8f968 d pm_qos_latency_tolerance_attrs.llvm.15051132245558023808
+ffffffc008c8f978 d dev_attr_pm_qos_latency_tolerance_us
+ffffffc008c8f998 d pm_qos_resume_latency_attrs.llvm.15051132245558023808
+ffffffc008c8f9a8 d dev_attr_pm_qos_resume_latency_us
+ffffffc008c8f9c8 d pm_qos_flags_attrs.llvm.15051132245558023808
+ffffffc008c8f9d8 d dev_attr_pm_qos_no_power_off
+ffffffc008c8f9f8 d dev_pm_qos_sysfs_mtx
+ffffffc008c8fa28 d dev_pm_qos_mtx.llvm.11396099982873117743
+ffffffc008c8fa58 d pm_runtime_set_memalloc_noio.dev_hotplug_mutex
+ffffffc008c8fa88 D dpm_list
+ffffffc008c8fa98 d dpm_list_mtx.llvm.6790867041058039520
+ffffffc008c8fac8 d dpm_late_early_list
+ffffffc008c8fad8 d dpm_suspended_list
+ffffffc008c8fae8 d dpm_prepared_list
+ffffffc008c8faf8 d dpm_noirq_list
+ffffffc008c8fb08 d wakeup_ida
+ffffffc008c8fb18 d wakeup_sources
+ffffffc008c8fb28 d wakeup_srcu
+ffffffc008c8fd08 d wakeup_count_wait_queue
+ffffffc008c8fd20 d deleted_ws
+ffffffc008c8fdf0 d wakeup_source_groups
+ffffffc008c8fe00 d wakeup_source_attrs
+ffffffc008c8fe58 d dev_attr_active_count
+ffffffc008c8fe78 d dev_attr_event_count
+ffffffc008c8fe98 d dev_attr_expire_count
+ffffffc008c8feb8 d dev_attr_active_time_ms
+ffffffc008c8fed8 d dev_attr_total_time_ms
+ffffffc008c8fef8 d dev_attr_max_time_ms
+ffffffc008c8ff18 d dev_attr_last_change_ms
+ffffffc008c8ff38 d dev_attr_prevent_suspend_time_ms
+ffffffc008c8ff58 D fw_fallback_config
+ffffffc008c8ff68 d firmware_config_table.llvm.6051529183915091818
+ffffffc008c90028 d fw_shutdown_nb
+ffffffc008c90040 D fw_lock
+ffffffc008c90070 d pending_fw_head
+ffffffc008c90080 d firmware_class.llvm.17080906524114000653
+ffffffc008c90118 D dev_attr_loading
+ffffffc008c90138 d fw_dev_attr_groups
+ffffffc008c90148 d firmware_class_groups
+ffffffc008c90158 d firmware_class_attrs
+ffffffc008c90168 d class_attr_timeout
+ffffffc008c90188 d fw_dev_attrs
+ffffffc008c90198 d fw_dev_bin_attrs
+ffffffc008c901a8 d firmware_attr_data
+ffffffc008c901e8 d memory_chain.llvm.13840922536320966860
+ffffffc008c90230 d memory_subsys
+ffffffc008c90308 d memory_root_attr_groups
+ffffffc008c90318 d memory_groups.llvm.13840922536320966860
+ffffffc008c90328 d memory_memblk_attr_groups
+ffffffc008c90338 d memory_memblk_attrs
+ffffffc008c90368 d dev_attr_phys_index
+ffffffc008c90388 d dev_attr_phys_device
+ffffffc008c903a8 d dev_attr_valid_zones
+ffffffc008c903c8 d memory_root_attrs
+ffffffc008c903e0 d dev_attr_block_size_bytes
+ffffffc008c90400 d dev_attr_auto_online_blocks
+ffffffc008c90420 d module_create_drivers_dir.drivers_dir_mutex
+ffffffc008c90450 D __SCK__tp_func_regmap_reg_write
+ffffffc008c90458 D __SCK__tp_func_regmap_reg_read
+ffffffc008c90460 D __SCK__tp_func_regmap_reg_read_cache
+ffffffc008c90468 D __SCK__tp_func_regmap_bulk_write
+ffffffc008c90470 D __SCK__tp_func_regmap_bulk_read
+ffffffc008c90478 D __SCK__tp_func_regmap_hw_read_start
+ffffffc008c90480 D __SCK__tp_func_regmap_hw_read_done
+ffffffc008c90488 D __SCK__tp_func_regmap_hw_write_start
+ffffffc008c90490 D __SCK__tp_func_regmap_hw_write_done
+ffffffc008c90498 D __SCK__tp_func_regcache_sync
+ffffffc008c904a0 D __SCK__tp_func_regmap_cache_only
+ffffffc008c904a8 D __SCK__tp_func_regmap_cache_bypass
+ffffffc008c904b0 D __SCK__tp_func_regmap_async_write_start
+ffffffc008c904b8 D __SCK__tp_func_regmap_async_io_complete
+ffffffc008c904c0 D __SCK__tp_func_regmap_async_complete_start
+ffffffc008c904c8 D __SCK__tp_func_regmap_async_complete_done
+ffffffc008c904d0 D __SCK__tp_func_regcache_drop_region
+ffffffc008c904d8 d trace_event_fields_regmap_reg
+ffffffc008c90578 d trace_event_type_funcs_regmap_reg
+ffffffc008c90598 d print_fmt_regmap_reg
+ffffffc008c905d0 d event_regmap_reg_write
+ffffffc008c90660 d event_regmap_reg_read
+ffffffc008c906f0 d event_regmap_reg_read_cache
+ffffffc008c90780 d trace_event_fields_regmap_bulk
+ffffffc008c90848 d trace_event_type_funcs_regmap_bulk
+ffffffc008c90868 d print_fmt_regmap_bulk
+ffffffc008c908d0 d event_regmap_bulk_write
+ffffffc008c90960 d event_regmap_bulk_read
+ffffffc008c909f0 d trace_event_fields_regmap_block
+ffffffc008c90a90 d trace_event_type_funcs_regmap_block
+ffffffc008c90ab0 d print_fmt_regmap_block
+ffffffc008c90af0 d event_regmap_hw_read_start
+ffffffc008c90b80 d event_regmap_hw_read_done
+ffffffc008c90c10 d event_regmap_hw_write_start
+ffffffc008c90ca0 d event_regmap_hw_write_done
+ffffffc008c90d30 d trace_event_fields_regcache_sync
+ffffffc008c90dd0 d trace_event_type_funcs_regcache_sync
+ffffffc008c90df0 d print_fmt_regcache_sync
+ffffffc008c90e40 d event_regcache_sync
+ffffffc008c90ed0 d trace_event_fields_regmap_bool
+ffffffc008c90f48 d trace_event_type_funcs_regmap_bool
+ffffffc008c90f68 d print_fmt_regmap_bool
+ffffffc008c90f98 d event_regmap_cache_only
+ffffffc008c91028 d event_regmap_cache_bypass
+ffffffc008c910b8 d trace_event_fields_regmap_async
+ffffffc008c91108 d event_regmap_async_write_start
+ffffffc008c91198 d trace_event_type_funcs_regmap_async
+ffffffc008c911b8 d print_fmt_regmap_async
+ffffffc008c911d0 d event_regmap_async_io_complete
+ffffffc008c91260 d event_regmap_async_complete_start
+ffffffc008c912f0 d event_regmap_async_complete_done
+ffffffc008c91380 d trace_event_fields_regcache_drop_region
+ffffffc008c91420 d trace_event_type_funcs_regcache_drop_region
+ffffffc008c91440 d print_fmt_regcache_drop_region
+ffffffc008c91470 d event_regcache_drop_region
+ffffffc008c91500 D regcache_rbtree_ops
+ffffffc008c91548 D regcache_flat_ops
+ffffffc008c91590 d regmap_debugfs_early_lock
+ffffffc008c915c0 d regmap_debugfs_early_list
+ffffffc008c915d0 d soc_bus_type
+ffffffc008c916a8 d soc_ida
+ffffffc008c916b8 d soc_attr
+ffffffc008c916e8 d dev_attr_machine
+ffffffc008c91708 d dev_attr_family
+ffffffc008c91728 d dev_attr_serial_number
+ffffffc008c91748 d dev_attr_soc_id
+ffffffc008c91768 d platform_msi_devid_ida
+ffffffc008c91778 D __SCK__tp_func_thermal_pressure_update
+ffffffc008c91780 d trace_event_fields_thermal_pressure_update
+ffffffc008c917f8 d trace_event_type_funcs_thermal_pressure_update
+ffffffc008c91818 d print_fmt_thermal_pressure_update
+ffffffc008c91858 d event_thermal_pressure_update
+ffffffc008c918e8 d dev_attr_cpu_capacity
+ffffffc008c91908 D __SCK__tp_func_devres_log
+ffffffc008c91910 d trace_event_fields_devres
+ffffffc008c91a28 d trace_event_type_funcs_devres
+ffffffc008c91a48 d print_fmt_devres
+ffffffc008c91aa8 d event_devres_log
+ffffffc008c91b38 d rd_nr
+ffffffc008c91b40 D rd_size
+ffffffc008c91b48 d max_part
+ffffffc008c91b50 d brd_devices
+ffffffc008c91b60 d max_loop
+ffffffc008c91b64 d hw_queue_depth
+ffffffc008c91b68 d loop_misc
+ffffffc008c91bb8 d loop_index_idr
+ffffffc008c91bd0 d loop_ctl_mutex
+ffffffc008c91c00 d lo_write_bvec._rs
+ffffffc008c91c28 d loop_attribute_group
+ffffffc008c91c50 d loop_attrs
+ffffffc008c91c88 d loop_attr_backing_file
+ffffffc008c91ca8 d loop_attr_offset
+ffffffc008c91cc8 d loop_attr_sizelimit
+ffffffc008c91ce8 d loop_attr_autoclear
+ffffffc008c91d08 d loop_attr_partscan
+ffffffc008c91d28 d loop_attr_dio
+ffffffc008c91d48 d loop_validate_mutex
+ffffffc008c91d78 d virtio_blk
+ffffffc008c91e88 d features_legacy
+ffffffc008c91eb8 d vd_index_ida
+ffffffc008c91ec8 d virtblk_attr_groups
+ffffffc008c91ed8 d virtblk_attrs
+ffffffc008c91ef0 d dev_attr_cache_type
+ffffffc008c91f10 d dev_attr_serial
+ffffffc008c91f30 d num_devices
+ffffffc008c91f38 d zram_control_class
+ffffffc008c91fd0 d zram_index_idr
+ffffffc008c91fe8 d zram_control_class_groups
+ffffffc008c91ff8 d zram_control_class_attrs
+ffffffc008c92010 d class_attr_hot_add
+ffffffc008c92030 d class_attr_hot_remove
+ffffffc008c92050 d zram_index_mutex
+ffffffc008c92080 d zram_disk_groups
+ffffffc008c92090 d zram_disk_attrs
+ffffffc008c920f8 d dev_attr_disksize
+ffffffc008c92118 d dev_attr_initstate
+ffffffc008c92138 d dev_attr_compact
+ffffffc008c92158 d dev_attr_mem_limit
+ffffffc008c92178 d dev_attr_mem_used_max
+ffffffc008c92198 d dev_attr_idle
+ffffffc008c921b8 d dev_attr_max_comp_streams
+ffffffc008c921d8 d dev_attr_comp_algorithm
+ffffffc008c921f8 d dev_attr_io_stat
+ffffffc008c92218 d dev_attr_mm_stat
+ffffffc008c92238 d dev_attr_debug_stat
+ffffffc008c92258 d open_dice_driver
+ffffffc008c92348 d vcpu_stall_detect_driver
+ffffffc008c92438 d syscon_list
+ffffffc008c92448 d syscon_driver
+ffffffc008c92538 d dma_buf_fs_type
+ffffffc008c92580 D __SCK__tp_func_dma_fence_emit
+ffffffc008c92588 D __SCK__tp_func_dma_fence_init
+ffffffc008c92590 D __SCK__tp_func_dma_fence_destroy
+ffffffc008c92598 D __SCK__tp_func_dma_fence_enable_signal
+ffffffc008c925a0 D __SCK__tp_func_dma_fence_signaled
+ffffffc008c925a8 D __SCK__tp_func_dma_fence_wait_start
+ffffffc008c925b0 D __SCK__tp_func_dma_fence_wait_end
+ffffffc008c925b8 d trace_event_fields_dma_fence
+ffffffc008c92680 d trace_event_type_funcs_dma_fence
+ffffffc008c926a0 d print_fmt_dma_fence
+ffffffc008c92710 d event_dma_fence_emit
+ffffffc008c927a0 d event_dma_fence_init
+ffffffc008c92830 d event_dma_fence_destroy
+ffffffc008c928c0 d event_dma_fence_enable_signal
+ffffffc008c92950 d event_dma_fence_signaled
+ffffffc008c929e0 d event_dma_fence_wait_start
+ffffffc008c92a70 d event_dma_fence_wait_end
+ffffffc008c92b00 d dma_fence_context_counter
+ffffffc008c92b08 D reservation_ww_class
+ffffffc008c92b28 d heap_list_lock
+ffffffc008c92b58 d heap_list
+ffffffc008c92b68 d dma_heap_minors
+ffffffc008c92b78 d dma_heap_sysfs_groups
+ffffffc008c92b88 d dma_heap_sysfs_attrs
+ffffffc008c92b98 d total_pools_kb_attr
+ffffffc008c92bb8 d dma_buf_ktype
+ffffffc008c92c08 d dma_buf_stats_default_groups
+ffffffc008c92c18 d dma_buf_stats_default_attrs
+ffffffc008c92c30 d exporter_name_attribute
+ffffffc008c92c48 d size_attribute
+ffffffc008c92c60 d size_attribute
+ffffffc008c92c80 d uio_class
+ffffffc008c92d18 d uio_idr
+ffffffc008c92d30 d minor_lock
+ffffffc008c92d60 d uio_groups
+ffffffc008c92d70 d uio_attrs
+ffffffc008c92d90 d dev_attr_version
+ffffffc008c92db0 d dev_attr_version
+ffffffc008c92dd0 d dev_attr_event
+ffffffc008c92df0 d map_attr_type
+ffffffc008c92e40 d portio_attr_type
+ffffffc008c92e90 d map_groups
+ffffffc008c92ea0 d map_attrs
+ffffffc008c92ec8 d name_attribute
+ffffffc008c92ee8 d addr_attribute
+ffffffc008c92f08 d offset_attribute
+ffffffc008c92f28 d portio_groups
+ffffffc008c92f38 d portio_attrs
+ffffffc008c92f60 d portio_name_attribute
+ffffffc008c92f80 d portio_start_attribute
+ffffffc008c92fa0 d portio_size_attribute
+ffffffc008c92fc0 d portio_porttype_attribute
+ffffffc008c92fe0 d serio_mutex
+ffffffc008c93010 D serio_bus
+ffffffc008c930e8 d serio_list
+ffffffc008c930f8 d serio_driver_groups
+ffffffc008c93108 d serio_event_work
+ffffffc008c93138 d serio_event_list
+ffffffc008c93148 d serio_init_port.serio_no
+ffffffc008c93150 d serio_device_attr_groups
+ffffffc008c93168 d serio_device_id_attrs
+ffffffc008c93190 d dev_attr_proto
+ffffffc008c931b0 d dev_attr_extra
+ffffffc008c931d0 d serio_device_attrs
+ffffffc008c93200 d dev_attr_description
+ffffffc008c93220 d dev_attr_drvctl
+ffffffc008c93240 d dev_attr_bind_mode
+ffffffc008c93260 d dev_attr_firmware_id
+ffffffc008c93280 d serio_driver_attrs
+ffffffc008c93298 d driver_attr_description
+ffffffc008c932b8 d driver_attr_bind_mode
+ffffffc008c932d8 d serport_ldisc
+ffffffc008c93378 D input_class
+ffffffc008c93410 d input_allocate_device.input_no
+ffffffc008c93418 d input_mutex
+ffffffc008c93448 d input_dev_list
+ffffffc008c93458 d input_handler_list
+ffffffc008c93468 d input_ida
+ffffffc008c93478 d input_dev_attr_groups
+ffffffc008c934a0 d input_dev_attrs
+ffffffc008c934d8 d dev_attr_phys
+ffffffc008c934f8 d dev_attr_uniq
+ffffffc008c93518 d dev_attr_properties
+ffffffc008c93538 d dev_attr_inhibited
+ffffffc008c93558 d input_dev_id_attrs
+ffffffc008c93580 d dev_attr_bustype
+ffffffc008c935a0 d dev_attr_product
+ffffffc008c935c0 d input_dev_caps_attrs
+ffffffc008c93610 d dev_attr_ev
+ffffffc008c93630 d dev_attr_key
+ffffffc008c93650 d dev_attr_rel
+ffffffc008c93670 d dev_attr_abs
+ffffffc008c93690 d dev_attr_msc
+ffffffc008c936b0 d dev_attr_led
+ffffffc008c936d0 d dev_attr_snd
+ffffffc008c936f0 d dev_attr_ff
+ffffffc008c93710 d dev_attr_sw
+ffffffc008c93730 d input_devices_poll_wait
+ffffffc008c93748 d input_poller_attrs
+ffffffc008c93768 D input_poller_attribute_group
+ffffffc008c93790 d dev_attr_poll
+ffffffc008c937b0 d dev_attr_max
+ffffffc008c937d0 d dev_attr_min
+ffffffc008c937f0 d rtc_ida
+ffffffc008c93800 D rtc_hctosys_ret
+ffffffc008c93808 D __SCK__tp_func_rtc_set_time
+ffffffc008c93810 D __SCK__tp_func_rtc_read_time
+ffffffc008c93818 D __SCK__tp_func_rtc_set_alarm
+ffffffc008c93820 D __SCK__tp_func_rtc_read_alarm
+ffffffc008c93828 D __SCK__tp_func_rtc_irq_set_freq
+ffffffc008c93830 D __SCK__tp_func_rtc_irq_set_state
+ffffffc008c93838 D __SCK__tp_func_rtc_alarm_irq_enable
+ffffffc008c93840 D __SCK__tp_func_rtc_set_offset
+ffffffc008c93848 D __SCK__tp_func_rtc_read_offset
+ffffffc008c93850 D __SCK__tp_func_rtc_timer_enqueue
+ffffffc008c93858 D __SCK__tp_func_rtc_timer_dequeue
+ffffffc008c93860 D __SCK__tp_func_rtc_timer_fired
+ffffffc008c93868 d trace_event_fields_rtc_time_alarm_class
+ffffffc008c938e0 d trace_event_type_funcs_rtc_time_alarm_class
+ffffffc008c93900 d print_fmt_rtc_time_alarm_class
+ffffffc008c93928 d event_rtc_set_time
+ffffffc008c939b8 d event_rtc_read_time
+ffffffc008c93a48 d event_rtc_set_alarm
+ffffffc008c93ad8 d event_rtc_read_alarm
+ffffffc008c93b68 d trace_event_fields_rtc_irq_set_freq
+ffffffc008c93be0 d trace_event_type_funcs_rtc_irq_set_freq
+ffffffc008c93c00 d print_fmt_rtc_irq_set_freq
+ffffffc008c93c40 d event_rtc_irq_set_freq
+ffffffc008c93cd0 d trace_event_fields_rtc_irq_set_state
+ffffffc008c93d48 d trace_event_type_funcs_rtc_irq_set_state
+ffffffc008c93d68 d print_fmt_rtc_irq_set_state
+ffffffc008c93dc0 d event_rtc_irq_set_state
+ffffffc008c93e50 d trace_event_fields_rtc_alarm_irq_enable
+ffffffc008c93ec8 d trace_event_type_funcs_rtc_alarm_irq_enable
+ffffffc008c93ee8 d print_fmt_rtc_alarm_irq_enable
+ffffffc008c93f30 d event_rtc_alarm_irq_enable
+ffffffc008c93fc0 d trace_event_fields_rtc_offset_class
+ffffffc008c94038 d trace_event_type_funcs_rtc_offset_class
+ffffffc008c94058 d print_fmt_rtc_offset_class
+ffffffc008c94088 d event_rtc_set_offset
+ffffffc008c94118 d event_rtc_read_offset
+ffffffc008c941a8 d trace_event_fields_rtc_timer_class
+ffffffc008c94248 d trace_event_type_funcs_rtc_timer_class
+ffffffc008c94268 d print_fmt_rtc_timer_class
+ffffffc008c942c0 d event_rtc_timer_enqueue
+ffffffc008c94350 d event_rtc_timer_dequeue
+ffffffc008c943e0 d event_rtc_timer_fired
+ffffffc008c94470 d rtc_attr_groups.llvm.375181441600368608
+ffffffc008c94480 d rtc_attr_group
+ffffffc008c944a8 d rtc_attrs
+ffffffc008c944f8 d dev_attr_wakealarm
+ffffffc008c94518 d dev_attr_offset
+ffffffc008c94538 d dev_attr_date
+ffffffc008c94558 d dev_attr_time
+ffffffc008c94578 d dev_attr_since_epoch
+ffffffc008c94598 d dev_attr_max_user_freq
+ffffffc008c945b8 d dev_attr_hctosys
+ffffffc008c945d8 d pl030_driver
+ffffffc008c946b8 d pl030_ids
+ffffffc008c946d8 d pl031_driver
+ffffffc008c947b8 d arm_pl031
+ffffffc008c94838 d stv1_pl031
+ffffffc008c948b8 d stv2_pl031
+ffffffc008c94938 d syscon_reboot_driver
+ffffffc008c94a28 d power_supply_attr_groups
+ffffffc008c94a38 d power_supply_attrs
+ffffffc008c96458 d power_supply_show_property._rs
+ffffffc008c96480 D __SCK__tp_func_watchdog_start
+ffffffc008c96488 D __SCK__tp_func_watchdog_ping
+ffffffc008c96490 D __SCK__tp_func_watchdog_stop
+ffffffc008c96498 D __SCK__tp_func_watchdog_set_timeout
+ffffffc008c964a0 d trace_event_fields_watchdog_template
+ffffffc008c96518 d trace_event_type_funcs_watchdog_template
+ffffffc008c96538 d print_fmt_watchdog_template
+ffffffc008c96560 d event_watchdog_start
+ffffffc008c965f0 d event_watchdog_ping
+ffffffc008c96680 d event_watchdog_stop
+ffffffc008c96710 d trace_event_fields_watchdog_set_timeout
+ffffffc008c967b0 d trace_event_type_funcs_watchdog_set_timeout
+ffffffc008c967d0 d print_fmt_watchdog_set_timeout
+ffffffc008c96810 d event_watchdog_set_timeout
+ffffffc008c968a0 d stop_on_reboot
+ffffffc008c968a8 d wtd_deferred_reg_mutex
+ffffffc008c968d8 d watchdog_ida
+ffffffc008c968e8 d wtd_deferred_reg_list
+ffffffc008c968f8 d handle_boot_enabled
+ffffffc008c96900 d watchdog_class
+ffffffc008c96998 d watchdog_miscdev
+ffffffc008c969e8 d dm_zone_map_bio_begin._rs
+ffffffc008c96a10 d dm_zone_map_bio_end._rs
+ffffffc008c96a38 d dm_zone_map_bio_end._rs.4
+ffffffc008c96a60 d reserved_bio_based_ios
+ffffffc008c96a68 d _minor_idr
+ffffffc008c96a80 d dm_numa_node
+ffffffc008c96a84 d swap_bios
+ffffffc008c96a88 d deferred_remove_work
+ffffffc008c96ab8 D dm_global_eventq
+ffffffc008c96ad0 d _event_lock
+ffffffc008c96b00 d _lock.llvm.10083400846239319065
+ffffffc008c96b40 d _targets
+ffffffc008c96b50 d error_target
+ffffffc008c96c48 d linear_target
+ffffffc008c96d40 d stripe_target
+ffffffc008c96e38 d _dm_misc
+ffffffc008c96e88 d dm_hash_cells_mutex
+ffffffc008c96eb8 d _hash_lock
+ffffffc008c96ef8 d kcopyd_subjob_size_kb
+ffffffc008c96f00 d dm_ktype
+ffffffc008c96f50 d dm_groups
+ffffffc008c96f60 d dm_attrs
+ffffffc008c96f90 d dm_attr_name
+ffffffc008c96fb0 d dm_attr_uuid
+ffffffc008c96fd0 d dm_attr_suspended
+ffffffc008c96ff0 d dm_attr_use_blk_mq
+ffffffc008c97010 d dm_attr_rq_based_seq_io_merge_deadline
+ffffffc008c97030 d reserved_rq_based_ios.llvm.8004721453576165376
+ffffffc008c97034 d use_blk_mq
+ffffffc008c97038 d dm_mq_nr_hw_queues
+ffffffc008c9703c d dm_mq_queue_depth
+ffffffc008c97040 d dm_bufio_clients_lock
+ffffffc008c97070 d dm_bufio_all_clients
+ffffffc008c97080 d dm_bufio_max_age
+ffffffc008c97088 d dm_bufio_retain_bytes
+ffffffc008c97090 d global_queue
+ffffffc008c970a0 d crypt_target
+ffffffc008c97198 d kcryptd_async_done._rs
+ffffffc008c971c0 d crypt_convert_block_aead._rs
+ffffffc008c971e8 d verity_fec_decode._rs
+ffffffc008c97210 d fec_decode_rsb._rs
+ffffffc008c97238 d fec_read_bufs._rs
+ffffffc008c97260 d fec_decode_bufs._rs
+ffffffc008c97288 d fec_decode_bufs._rs.33
+ffffffc008c972b0 d dm_verity_prefetch_cluster
+ffffffc008c972b8 d verity_target
+ffffffc008c973b0 d verity_handle_err._rs
+ffffffc008c973d8 d verity_map._rs
+ffffffc008c97400 d verity_map._rs.57
+ffffffc008c97428 d daemon_timeout_msec
+ffffffc008c97430 d user_target
+ffffffc008c97528 D edac_op_state
+ffffffc008c97530 d mem_ctls_mutex
+ffffffc008c97560 d mc_devices
+ffffffc008c97570 D edac_layer_name
+ffffffc008c97598 d device_ctls_mutex
+ffffffc008c975c8 d edac_device_list
+ffffffc008c975d8 d edac_mc_log_ue.llvm.6122068684056603437
+ffffffc008c975dc d edac_mc_log_ce.llvm.6122068684056603437
+ffffffc008c975e0 d edac_mc_poll_msec.llvm.6122068684056603437
+ffffffc008c975e8 d mci_attr_groups
+ffffffc008c975f8 d mci_attrs
+ffffffc008c97650 d dev_attr_sdram_scrub_rate
+ffffffc008c97670 d dev_attr_reset_counters
+ffffffc008c97690 d dev_attr_mc_name
+ffffffc008c976b0 d dev_attr_size_mb
+ffffffc008c976d0 d dev_attr_seconds_since_reset
+ffffffc008c976f0 d dev_attr_ue_noinfo_count
+ffffffc008c97710 d dev_attr_ce_noinfo_count
+ffffffc008c97730 d dev_attr_ue_count
+ffffffc008c97750 d dev_attr_ce_count
+ffffffc008c97770 d dev_attr_max_location
+ffffffc008c97790 d dimm_attr_groups
+ffffffc008c977a0 d dimm_attrs
+ffffffc008c977e8 d dev_attr_dimm_label
+ffffffc008c97808 d dev_attr_dimm_location
+ffffffc008c97828 d dev_attr_dimm_mem_type
+ffffffc008c97848 d dev_attr_dimm_dev_type
+ffffffc008c97868 d dev_attr_dimm_edac_mode
+ffffffc008c97888 d dev_attr_dimm_ce_count
+ffffffc008c978a8 d dev_attr_dimm_ue_count
+ffffffc008c978c8 d csrow_dev_groups
+ffffffc008c978e0 d csrow_attr_groups
+ffffffc008c978f0 d csrow_attrs
+ffffffc008c97928 d dev_attr_legacy_dev_type
+ffffffc008c97948 d dev_attr_legacy_mem_type
+ffffffc008c97968 d dev_attr_legacy_edac_mode
+ffffffc008c97988 d dev_attr_legacy_size_mb
+ffffffc008c979a8 d dev_attr_legacy_ue_count
+ffffffc008c979c8 d dev_attr_legacy_ce_count
+ffffffc008c979e8 d dynamic_csrow_dimm_attr
+ffffffc008c97a50 d dev_attr_legacy_ch0_dimm_label
+ffffffc008c97a78 d dev_attr_legacy_ch1_dimm_label
+ffffffc008c97aa0 d dev_attr_legacy_ch2_dimm_label
+ffffffc008c97ac8 d dev_attr_legacy_ch3_dimm_label
+ffffffc008c97af0 d dev_attr_legacy_ch4_dimm_label
+ffffffc008c97b18 d dev_attr_legacy_ch5_dimm_label
+ffffffc008c97b40 d dev_attr_legacy_ch6_dimm_label
+ffffffc008c97b68 d dev_attr_legacy_ch7_dimm_label
+ffffffc008c97b90 d dev_attr_legacy_ch8_dimm_label
+ffffffc008c97bb8 d dev_attr_legacy_ch9_dimm_label
+ffffffc008c97be0 d dev_attr_legacy_ch10_dimm_label
+ffffffc008c97c08 d dev_attr_legacy_ch11_dimm_label
+ffffffc008c97c30 d dynamic_csrow_ce_count_attr
+ffffffc008c97c98 d dev_attr_legacy_ch0_ce_count
+ffffffc008c97cc0 d dev_attr_legacy_ch1_ce_count
+ffffffc008c97ce8 d dev_attr_legacy_ch2_ce_count
+ffffffc008c97d10 d dev_attr_legacy_ch3_ce_count
+ffffffc008c97d38 d dev_attr_legacy_ch4_ce_count
+ffffffc008c97d60 d dev_attr_legacy_ch5_ce_count
+ffffffc008c97d88 d dev_attr_legacy_ch6_ce_count
+ffffffc008c97db0 d dev_attr_legacy_ch7_ce_count
+ffffffc008c97dd8 d dev_attr_legacy_ch8_ce_count
+ffffffc008c97e00 d dev_attr_legacy_ch9_ce_count
+ffffffc008c97e28 d dev_attr_legacy_ch10_ce_count
+ffffffc008c97e50 d dev_attr_legacy_ch11_ce_count
+ffffffc008c97e78 d edac_subsys.llvm.4675214525599000971
+ffffffc008c97f50 d ktype_device_ctrl
+ffffffc008c97fa0 d device_ctrl_groups
+ffffffc008c97fb0 d device_ctrl_attrs
+ffffffc008c97fd8 d attr_ctl_info_panic_on_ue
+ffffffc008c97ff8 d attr_ctl_info_log_ue
+ffffffc008c98018 d attr_ctl_info_log_ce
+ffffffc008c98038 d attr_ctl_info_poll_msec
+ffffffc008c98058 d ktype_instance_ctrl
+ffffffc008c980a8 d device_instance_groups
+ffffffc008c980b8 d device_instance_attrs
+ffffffc008c980d0 d attr_instance_ce_count
+ffffffc008c980f0 d attr_instance_ue_count
+ffffffc008c98110 d ktype_block_ctrl
+ffffffc008c98160 d device_block_groups
+ffffffc008c98170 d device_block_attrs
+ffffffc008c98188 d attr_block_ce_count
+ffffffc008c981b8 d attr_block_ue_count
+ffffffc008c981e8 d edac_pci_ctls_mutex
+ffffffc008c98218 d edac_pci_list
+ffffffc008c98228 d ktype_edac_pci_main_kobj
+ffffffc008c98278 d edac_pci_groups
+ffffffc008c98288 d edac_pci_attrs
+ffffffc008c982c0 d edac_pci_attr_check_pci_errors
+ffffffc008c982e8 d edac_pci_attr_edac_pci_log_pe
+ffffffc008c98310 d edac_pci_attr_edac_pci_log_npe
+ffffffc008c98338 d edac_pci_attr_edac_pci_panic_on_pe
+ffffffc008c98360 d edac_pci_attr_pci_parity_count
+ffffffc008c98388 d edac_pci_attr_pci_nonparity_count
+ffffffc008c983b0 d edac_pci_log_pe
+ffffffc008c983b4 d edac_pci_log_npe
+ffffffc008c983b8 d ktype_pci_instance
+ffffffc008c98408 d pci_instance_groups
+ffffffc008c98418 d pci_instance_attrs
+ffffffc008c98430 d attr_instance_pe_count
+ffffffc008c98450 d attr_instance_npe_count
+ffffffc008c98470 d scmi_protocols.llvm.4273826236215126633
+ffffffc008c98488 d scmi_bus_type.llvm.4273826236215126633
+ffffffc008c98560 d scmi_bus_id.llvm.4273826236215126633
+ffffffc008c98570 D __SCK__tp_func_scmi_fc_call
+ffffffc008c98578 D __SCK__tp_func_scmi_xfer_begin
+ffffffc008c98580 D __SCK__tp_func_scmi_xfer_response_wait
+ffffffc008c98588 D __SCK__tp_func_scmi_xfer_end
+ffffffc008c98590 D __SCK__tp_func_scmi_rx_done
+ffffffc008c98598 D __SCK__tp_func_scmi_msg_dump
+ffffffc008c985a0 d trace_event_fields_scmi_fc_call
+ffffffc008c98690 d trace_event_type_funcs_scmi_fc_call
+ffffffc008c986b0 d print_fmt_scmi_fc_call
+ffffffc008c98720 d event_scmi_fc_call
+ffffffc008c987b0 d trace_event_fields_scmi_xfer_begin
+ffffffc008c988a0 d trace_event_type_funcs_scmi_xfer_begin
+ffffffc008c988c0 d print_fmt_scmi_xfer_begin
+ffffffc008c98940 d event_scmi_xfer_begin
+ffffffc008c989d0 d trace_event_fields_scmi_xfer_response_wait
+ffffffc008c98ae8 d trace_event_type_funcs_scmi_xfer_response_wait
+ffffffc008c98b08 d print_fmt_scmi_xfer_response_wait
+ffffffc008c98ba0 d event_scmi_xfer_response_wait
+ffffffc008c98c30 d trace_event_fields_scmi_xfer_end
+ffffffc008c98d20 d trace_event_type_funcs_scmi_xfer_end
+ffffffc008c98d40 d print_fmt_scmi_xfer_end
+ffffffc008c98dc0 d event_scmi_xfer_end
+ffffffc008c98e50 d trace_event_fields_scmi_rx_done
+ffffffc008c98f40 d trace_event_type_funcs_scmi_rx_done
+ffffffc008c98f60 d print_fmt_scmi_rx_done
+ffffffc008c98fe8 d event_scmi_rx_done
+ffffffc008c99078 d trace_event_fields_scmi_msg_dump
+ffffffc008c991b8 d trace_event_type_funcs_scmi_msg_dump
+ffffffc008c991d8 d print_fmt_scmi_msg_dump
+ffffffc008c99280 d event_scmi_msg_dump
+ffffffc008c99310 d scmi_list_mutex
+ffffffc008c99340 d scmi_list
+ffffffc008c99350 d scmi_requested_devices_mtx
+ffffffc008c99380 d scmi_requested_devices
+ffffffc008c99398 d scmi_driver
+ffffffc008c99488 d scmi_syspower_mtx
+ffffffc008c994b8 d versions_groups
+ffffffc008c994c8 d versions_attrs
+ffffffc008c994f0 d dev_attr_firmware_version
+ffffffc008c99510 d dev_attr_protocol_version
+ffffffc008c99530 d dev_attr_vendor_id
+ffffffc008c99550 d dev_attr_sub_vendor_id
+ffffffc008c99570 d voltage_proto_ops.llvm.9733833687185504827
+ffffffc008c995a0 d resident_cpu.llvm.6996844726996122900
+ffffffc008c995a8 d psci_sys_reset_nb
+ffffffc008c995c0 d smccc_version.llvm.10138707430611048931
+ffffffc008c995c8 d clocksource_counter
+ffffffc008c99660 d hisi_161010101_oem_info
+ffffffc008c996b0 d vdso_default
+ffffffc008c996b8 d arch_timer_cpu_pm_notifier
+ffffffc008c996d0 D aliases_lookup
+ffffffc008c996e0 D of_mutex
+ffffffc008c99710 D of_node_ktype
+ffffffc008c99760 d of_fdt_unflatten_mutex
+ffffffc008c99790 d chosen_node_offset
+ffffffc008c99798 d of_fdt_raw_init.of_fdt_raw_attr
+ffffffc008c997d8 d of_busses
+ffffffc008c99898 d of_rmem_assigned_device_mutex
+ffffffc008c998c8 d of_rmem_assigned_device_list
+ffffffc008c998d8 d hwspinlock_tree
+ffffffc008c998e8 d hwspinlock_tree_lock
+ffffffc008c99918 d armpmu_common_attrs
+ffffffc008c99928 d dev_attr_cpus
+ffffffc008c99948 D __SCK__tp_func_mc_event
+ffffffc008c99950 D __SCK__tp_func_arm_event
+ffffffc008c99958 D __SCK__tp_func_non_standard_event
+ffffffc008c99960 D __SCK__tp_func_aer_event
+ffffffc008c99968 d trace_event_fields_mc_event
+ffffffc008c99b70 d trace_event_type_funcs_mc_event
+ffffffc008c99b90 d print_fmt_mc_event
+ffffffc008c99d48 d event_mc_event
+ffffffc008c99dd8 d trace_event_fields_arm_event
+ffffffc008c99ec8 d trace_event_type_funcs_arm_event
+ffffffc008c99ee8 d print_fmt_arm_event
+ffffffc008c99f90 d event_arm_event
+ffffffc008c9a020 d trace_event_fields_non_standard_event
+ffffffc008c9a138 d trace_event_type_funcs_non_standard_event
+ffffffc008c9a158 d print_fmt_non_standard_event
+ffffffc008c9a218 d event_non_standard_event
+ffffffc008c9a2a8 d trace_event_fields_aer_event
+ffffffc008c9a398 d trace_event_type_funcs_aer_event
+ffffffc008c9a3b8 d print_fmt_aer_event
+ffffffc008c9a888 d event_aer_event
+ffffffc008c9a918 d br_ioctl_mutex
+ffffffc008c9a948 d vlan_ioctl_mutex
+ffffffc008c9a978 d sock_fs_type
+ffffffc008c9a9c0 d sockfs_xattr_handlers
+ffffffc008c9a9d8 d proto_list_mutex
+ffffffc008c9aa08 d proto_list
+ffffffc008c9aa18 d net_inuse_ops
+ffffffc008c9aa58 D net_rwsem
+ffffffc008c9aa98 d first_device.llvm.15052227419773994910
+ffffffc008c9aaa0 d pernet_list
+ffffffc008c9aab0 d net_defaults_ops
+ffffffc008c9aaf0 d max_gen_ptrs
+ffffffc008c9ab00 d net_cookie
+ffffffc008c9ab80 d net_generic_ids
+ffffffc008c9ab90 D net_namespace_list
+ffffffc008c9aba0 D pernet_ops_rwsem
+ffffffc008c9abe0 d ts_secret_init.___once_key
+ffffffc008c9abf0 d net_secret_init.___once_key
+ffffffc008c9ac00 d __flow_hash_secret_init.___once_key
+ffffffc008c9ac10 d net_core_table
+ffffffc008c9b390 d min_sndbuf
+ffffffc008c9b394 d min_rcvbuf
+ffffffc008c9b398 d max_skb_frags
+ffffffc008c9b39c d int_3600
+ffffffc008c9b3a0 d proc_do_dev_weight.dev_weight_mutex
+ffffffc008c9b3d0 d rps_sock_flow_sysctl.sock_flow_mutex
+ffffffc008c9b400 d flow_limit_update_mutex
+ffffffc008c9b430 d netns_core_table
+ffffffc008c9b4f0 d devnet_rename_sem
+ffffffc008c9b530 d ifalias_mutex
+ffffffc008c9b560 d netstamp_work
+ffffffc008c9b590 d xps_map_mutex
+ffffffc008c9b5c0 d dev_addr_sem.llvm.10477025129815915192
+ffffffc008c9b600 d napi_gen_id
+ffffffc008c9b608 D net_todo_list
+ffffffc008c9b618 D netdev_unregistering_wq
+ffffffc008c9b630 d dst_alloc._rs
+ffffffc008c9b680 d dst_blackhole_ops
+ffffffc008c9b740 d unres_qlen_max
+ffffffc008c9b748 d rtnl_mutex.llvm.9216632291508083390
+ffffffc008c9b778 d link_ops
+ffffffc008c9b788 d rtnl_af_ops
+ffffffc008c9b798 d rtnetlink_net_ops
+ffffffc008c9b7d8 d rtnetlink_dev_notifier
+ffffffc008c9b7f0 D net_ratelimit_state
+ffffffc008c9b818 d lweventlist
+ffffffc008c9b828 d linkwatch_work
+ffffffc008c9b8b0 D nf_conn_btf_access_lock
+ffffffc008c9b900 d sock_cookie
+ffffffc008c9b980 d sock_diag_table_mutex.llvm.17611663812133398636
+ffffffc008c9b9b0 d diag_net_ops
+ffffffc008c9b9f0 d sock_diag_mutex
+ffffffc008c9ba20 d reuseport_ida
+ffffffc008c9ba30 d fib_notifier_net_ops
+ffffffc008c9ba70 d mem_id_lock
+ffffffc008c9baa0 d mem_id_pool
+ffffffc008c9bab0 d mem_id_next
+ffffffc008c9bab8 d flow_indr_block_lock
+ffffffc008c9bae8 d flow_block_indr_dev_list
+ffffffc008c9baf8 d flow_block_indr_list
+ffffffc008c9bb08 d flow_indir_dev_list
+ffffffc008c9bb18 d rx_queue_default_groups
+ffffffc008c9bb28 d store_rps_map.rps_map_mutex
+ffffffc008c9bb58 d netdev_queue_default_groups
+ffffffc008c9bb68 d net_class_groups
+ffffffc008c9bb78 d dev_attr_netdev_group
+ffffffc008c9bb98 d dev_attr_dev_id
+ffffffc008c9bbb8 d dev_attr_dev_port
+ffffffc008c9bbd8 d dev_attr_iflink
+ffffffc008c9bbf8 d dev_attr_ifindex
+ffffffc008c9bc18 d dev_attr_name_assign_type
+ffffffc008c9bc38 d dev_attr_addr_assign_type
+ffffffc008c9bc58 d dev_attr_addr_len
+ffffffc008c9bc78 d dev_attr_link_mode
+ffffffc008c9bc98 d dev_attr_address
+ffffffc008c9bcb8 d dev_attr_broadcast
+ffffffc008c9bcd8 d dev_attr_speed
+ffffffc008c9bcf8 d dev_attr_duplex
+ffffffc008c9bd18 d dev_attr_dormant
+ffffffc008c9bd38 d dev_attr_testing
+ffffffc008c9bd58 d dev_attr_operstate
+ffffffc008c9bd78 d dev_attr_carrier_changes
+ffffffc008c9bd98 d dev_attr_ifalias
+ffffffc008c9bdb8 d dev_attr_carrier
+ffffffc008c9bdd8 d dev_attr_mtu
+ffffffc008c9bdf8 d dev_attr_tx_queue_len
+ffffffc008c9be18 d dev_attr_gro_flush_timeout
+ffffffc008c9be38 d dev_attr_napi_defer_hard_irqs
+ffffffc008c9be58 d dev_attr_phys_port_id
+ffffffc008c9be78 d dev_attr_phys_port_name
+ffffffc008c9be98 d dev_attr_phys_switch_id
+ffffffc008c9beb8 d dev_attr_proto_down
+ffffffc008c9bed8 d dev_attr_carrier_up_count
+ffffffc008c9bef8 d dev_attr_carrier_down_count
+ffffffc008c9bf18 d dev_attr_threaded
+ffffffc008c9bf38 d dev_attr_rx_packets
+ffffffc008c9bf58 d dev_attr_tx_packets
+ffffffc008c9bf78 d dev_attr_rx_bytes
+ffffffc008c9bf98 d dev_attr_tx_bytes
+ffffffc008c9bfb8 d dev_attr_rx_errors
+ffffffc008c9bfd8 d dev_attr_tx_errors
+ffffffc008c9bff8 d dev_attr_rx_dropped
+ffffffc008c9c018 d dev_attr_tx_dropped
+ffffffc008c9c038 d dev_attr_multicast
+ffffffc008c9c058 d dev_attr_collisions
+ffffffc008c9c078 d dev_attr_rx_length_errors
+ffffffc008c9c098 d dev_attr_rx_over_errors
+ffffffc008c9c0b8 d dev_attr_rx_crc_errors
+ffffffc008c9c0d8 d dev_attr_rx_frame_errors
+ffffffc008c9c0f8 d dev_attr_rx_fifo_errors
+ffffffc008c9c118 d dev_attr_rx_missed_errors
+ffffffc008c9c138 d dev_attr_tx_aborted_errors
+ffffffc008c9c158 d dev_attr_tx_carrier_errors
+ffffffc008c9c178 d dev_attr_tx_fifo_errors
+ffffffc008c9c198 d dev_attr_tx_heartbeat_errors
+ffffffc008c9c1b8 d dev_attr_tx_window_errors
+ffffffc008c9c1d8 d dev_attr_rx_compressed
+ffffffc008c9c1f8 d dev_attr_tx_compressed
+ffffffc008c9c218 d dev_attr_rx_nohandler
+ffffffc008c9c238 d fib_rules_net_ops
+ffffffc008c9c278 d fib_rules_notifier
+ffffffc008c9c290 D __SCK__tp_func_kfree_skb
+ffffffc008c9c298 D __SCK__tp_func_consume_skb
+ffffffc008c9c2a0 D __SCK__tp_func_skb_copy_datagram_iovec
+ffffffc008c9c2a8 d trace_event_fields_kfree_skb
+ffffffc008c9c370 d trace_event_type_funcs_kfree_skb
+ffffffc008c9c390 d print_fmt_kfree_skb
+ffffffc008c9d0b0 d event_kfree_skb
+ffffffc008c9d140 d trace_event_fields_consume_skb
+ffffffc008c9d190 d trace_event_type_funcs_consume_skb
+ffffffc008c9d1b0 d print_fmt_consume_skb
+ffffffc008c9d1d0 d event_consume_skb
+ffffffc008c9d260 d trace_event_fields_skb_copy_datagram_iovec
+ffffffc008c9d2d8 d trace_event_type_funcs_skb_copy_datagram_iovec
+ffffffc008c9d2f8 d print_fmt_skb_copy_datagram_iovec
+ffffffc008c9d328 d event_skb_copy_datagram_iovec
+ffffffc008c9d3b8 D __SCK__tp_func_net_dev_start_xmit
+ffffffc008c9d3c0 D __SCK__tp_func_net_dev_xmit
+ffffffc008c9d3c8 D __SCK__tp_func_net_dev_xmit_timeout
+ffffffc008c9d3d0 D __SCK__tp_func_net_dev_queue
+ffffffc008c9d3d8 D __SCK__tp_func_netif_receive_skb
+ffffffc008c9d3e0 D __SCK__tp_func_netif_rx
+ffffffc008c9d3e8 D __SCK__tp_func_napi_gro_frags_entry
+ffffffc008c9d3f0 D __SCK__tp_func_napi_gro_receive_entry
+ffffffc008c9d3f8 D __SCK__tp_func_netif_receive_skb_entry
+ffffffc008c9d400 D __SCK__tp_func_netif_receive_skb_list_entry
+ffffffc008c9d408 D __SCK__tp_func_netif_rx_entry
+ffffffc008c9d410 D __SCK__tp_func_napi_gro_frags_exit
+ffffffc008c9d418 D __SCK__tp_func_napi_gro_receive_exit
+ffffffc008c9d420 D __SCK__tp_func_netif_receive_skb_exit
+ffffffc008c9d428 D __SCK__tp_func_netif_rx_exit
+ffffffc008c9d430 D __SCK__tp_func_netif_receive_skb_list_exit
+ffffffc008c9d438 d trace_event_fields_net_dev_start_xmit
+ffffffc008c9d708 d trace_event_type_funcs_net_dev_start_xmit
+ffffffc008c9d728 d print_fmt_net_dev_start_xmit
+ffffffc008c9d948 d event_net_dev_start_xmit
+ffffffc008c9d9d8 d trace_event_fields_net_dev_xmit
+ffffffc008c9daa0 d trace_event_type_funcs_net_dev_xmit
+ffffffc008c9dac0 d print_fmt_net_dev_xmit
+ffffffc008c9db18 d event_net_dev_xmit
+ffffffc008c9dba8 d trace_event_fields_net_dev_xmit_timeout
+ffffffc008c9dc48 d trace_event_type_funcs_net_dev_xmit_timeout
+ffffffc008c9dc68 d print_fmt_net_dev_xmit_timeout
+ffffffc008c9dcc0 d event_net_dev_xmit_timeout
+ffffffc008c9dd50 d trace_event_fields_net_dev_template
+ffffffc008c9ddf0 d trace_event_type_funcs_net_dev_template
+ffffffc008c9de10 d print_fmt_net_dev_template
+ffffffc008c9de58 d event_net_dev_queue
+ffffffc008c9dee8 d event_netif_receive_skb
+ffffffc008c9df78 d event_netif_rx
+ffffffc008c9e008 d trace_event_fields_net_dev_rx_verbose_template
+ffffffc008c9e328 d trace_event_type_funcs_net_dev_rx_verbose_template
+ffffffc008c9e348 d print_fmt_net_dev_rx_verbose_template
+ffffffc008c9e570 d event_napi_gro_frags_entry
+ffffffc008c9e600 d event_napi_gro_receive_entry
+ffffffc008c9e690 d event_netif_receive_skb_entry
+ffffffc008c9e720 d event_netif_receive_skb_list_entry
+ffffffc008c9e7b0 d event_netif_rx_entry
+ffffffc008c9e840 d trace_event_fields_net_dev_rx_exit_template
+ffffffc008c9e890 d trace_event_type_funcs_net_dev_rx_exit_template
+ffffffc008c9e8b0 d print_fmt_net_dev_rx_exit_template
+ffffffc008c9e8c8 d event_napi_gro_frags_exit
+ffffffc008c9e958 d event_napi_gro_receive_exit
+ffffffc008c9e9e8 d event_netif_receive_skb_exit
+ffffffc008c9ea78 d event_netif_rx_exit
+ffffffc008c9eb08 d event_netif_receive_skb_list_exit
+ffffffc008c9eb98 D __SCK__tp_func_napi_poll
+ffffffc008c9eba0 d trace_event_fields_napi_poll
+ffffffc008c9ec68 d trace_event_type_funcs_napi_poll
+ffffffc008c9ec88 d print_fmt_napi_poll
+ffffffc008c9ed00 d event_napi_poll
+ffffffc008c9ed90 D __SCK__tp_func_sock_rcvqueue_full
+ffffffc008c9ed98 D __SCK__tp_func_sock_exceed_buf_limit
+ffffffc008c9eda0 D __SCK__tp_func_inet_sock_set_state
+ffffffc008c9eda8 D __SCK__tp_func_inet_sk_error_report
+ffffffc008c9edb0 d trace_event_fields_sock_rcvqueue_full
+ffffffc008c9ee50 d trace_event_type_funcs_sock_rcvqueue_full
+ffffffc008c9ee70 d print_fmt_sock_rcvqueue_full
+ffffffc008c9eed0 d event_sock_rcvqueue_full
+ffffffc008c9ef60 d trace_event_fields_sock_exceed_buf_limit
+ffffffc008c9f0f0 d trace_event_type_funcs_sock_exceed_buf_limit
+ffffffc008c9f110 d print_fmt_sock_exceed_buf_limit
+ffffffc008c9f290 d event_sock_exceed_buf_limit
+ffffffc008c9f320 d trace_event_fields_inet_sock_set_state
+ffffffc008c9f500 d trace_event_type_funcs_inet_sock_set_state
+ffffffc008c9f520 d print_fmt_inet_sock_set_state
+ffffffc008c9fa60 d event_inet_sock_set_state
+ffffffc008c9faf0 d trace_event_fields_inet_sk_error_report
+ffffffc008c9fc80 d trace_event_type_funcs_inet_sk_error_report
+ffffffc008c9fca0 d print_fmt_inet_sk_error_report
+ffffffc008c9fe50 d event_inet_sk_error_report
+ffffffc008c9fee0 D __SCK__tp_func_udp_fail_queue_rcv_skb
+ffffffc008c9fee8 d trace_event_fields_udp_fail_queue_rcv_skb
+ffffffc008c9ff60 d trace_event_type_funcs_udp_fail_queue_rcv_skb
+ffffffc008c9ff80 d print_fmt_udp_fail_queue_rcv_skb
+ffffffc008c9ffa8 d event_udp_fail_queue_rcv_skb
+ffffffc008ca0038 D __SCK__tp_func_tcp_retransmit_skb
+ffffffc008ca0040 D __SCK__tp_func_tcp_send_reset
+ffffffc008ca0048 D __SCK__tp_func_tcp_receive_reset
+ffffffc008ca0050 D __SCK__tp_func_tcp_destroy_sock
+ffffffc008ca0058 D __SCK__tp_func_tcp_rcv_space_adjust
+ffffffc008ca0060 D __SCK__tp_func_tcp_retransmit_synack
+ffffffc008ca0068 D __SCK__tp_func_tcp_probe
+ffffffc008ca0070 D __SCK__tp_func_tcp_bad_csum
+ffffffc008ca0078 D __SCK__tp_func_tcp_cong_state_set
+ffffffc008ca0080 d trace_event_fields_tcp_event_sk_skb
+ffffffc008ca0238 d trace_event_type_funcs_tcp_event_sk_skb
+ffffffc008ca0258 d print_fmt_tcp_event_sk_skb
+ffffffc008ca0508 d event_tcp_retransmit_skb
+ffffffc008ca0598 d event_tcp_send_reset
+ffffffc008ca0628 d trace_event_fields_tcp_event_sk
+ffffffc008ca07b8 d trace_event_type_funcs_tcp_event_sk
+ffffffc008ca07d8 d print_fmt_tcp_event_sk
+ffffffc008ca08e0 d event_tcp_receive_reset
+ffffffc008ca0970 d event_tcp_destroy_sock
+ffffffc008ca0a00 d event_tcp_rcv_space_adjust
+ffffffc008ca0a90 d trace_event_fields_tcp_retransmit_synack
+ffffffc008ca0c20 d trace_event_type_funcs_tcp_retransmit_synack
+ffffffc008ca0c40 d print_fmt_tcp_retransmit_synack
+ffffffc008ca0d28 d event_tcp_retransmit_synack
+ffffffc008ca0db8 d trace_event_fields_tcp_probe
+ffffffc008ca1038 d trace_event_type_funcs_tcp_probe
+ffffffc008ca1058 d print_fmt_tcp_probe
+ffffffc008ca11e0 d event_tcp_probe
+ffffffc008ca1270 d trace_event_fields_tcp_event_skb
+ffffffc008ca1310 d trace_event_type_funcs_tcp_event_skb
+ffffffc008ca1330 d print_fmt_tcp_event_skb
+ffffffc008ca1368 d event_tcp_bad_csum
+ffffffc008ca13f8 d trace_event_fields_tcp_cong_state_set
+ffffffc008ca1560 d trace_event_type_funcs_tcp_cong_state_set
+ffffffc008ca1580 d print_fmt_tcp_cong_state_set
+ffffffc008ca1638 d event_tcp_cong_state_set
+ffffffc008ca16c8 D __SCK__tp_func_fib_table_lookup
+ffffffc008ca16d0 d trace_event_fields_fib_table_lookup
+ffffffc008ca1950 d trace_event_type_funcs_fib_table_lookup
+ffffffc008ca1970 d print_fmt_fib_table_lookup
+ffffffc008ca1a88 d event_fib_table_lookup
+ffffffc008ca1b18 D __SCK__tp_func_qdisc_dequeue
+ffffffc008ca1b20 D __SCK__tp_func_qdisc_enqueue
+ffffffc008ca1b28 D __SCK__tp_func_qdisc_reset
+ffffffc008ca1b30 D __SCK__tp_func_qdisc_destroy
+ffffffc008ca1b38 D __SCK__tp_func_qdisc_create
+ffffffc008ca1b40 d trace_event_fields_qdisc_dequeue
+ffffffc008ca1ca8 d trace_event_type_funcs_qdisc_dequeue
+ffffffc008ca1cc8 d print_fmt_qdisc_dequeue
+ffffffc008ca1d78 d event_qdisc_dequeue
+ffffffc008ca1e08 d trace_event_fields_qdisc_enqueue
+ffffffc008ca1f20 d trace_event_type_funcs_qdisc_enqueue
+ffffffc008ca1f40 d print_fmt_qdisc_enqueue
+ffffffc008ca1fb8 d event_qdisc_enqueue
+ffffffc008ca2048 d trace_event_fields_qdisc_reset
+ffffffc008ca2110 d trace_event_type_funcs_qdisc_reset
+ffffffc008ca2130 d print_fmt_qdisc_reset
+ffffffc008ca2208 d event_qdisc_reset
+ffffffc008ca2298 d trace_event_fields_qdisc_destroy
+ffffffc008ca2360 d trace_event_type_funcs_qdisc_destroy
+ffffffc008ca2380 d print_fmt_qdisc_destroy
+ffffffc008ca2458 d event_qdisc_destroy
+ffffffc008ca24e8 d trace_event_fields_qdisc_create
+ffffffc008ca2588 d trace_event_type_funcs_qdisc_create
+ffffffc008ca25a8 d print_fmt_qdisc_create
+ffffffc008ca2630 d event_qdisc_create
+ffffffc008ca26c0 D __SCK__tp_func_br_fdb_add
+ffffffc008ca26c8 D __SCK__tp_func_br_fdb_external_learn_add
+ffffffc008ca26d0 D __SCK__tp_func_fdb_delete
+ffffffc008ca26d8 D __SCK__tp_func_br_fdb_update
+ffffffc008ca26e0 d trace_event_fields_br_fdb_add
+ffffffc008ca27d0 d trace_event_type_funcs_br_fdb_add
+ffffffc008ca27f0 d print_fmt_br_fdb_add
+ffffffc008ca28d0 d event_br_fdb_add
+ffffffc008ca2960 d trace_event_fields_br_fdb_external_learn_add
+ffffffc008ca2a28 d trace_event_type_funcs_br_fdb_external_learn_add
+ffffffc008ca2a48 d print_fmt_br_fdb_external_learn_add
+ffffffc008ca2b08 d event_br_fdb_external_learn_add
+ffffffc008ca2b98 d trace_event_fields_fdb_delete
+ffffffc008ca2c60 d trace_event_type_funcs_fdb_delete
+ffffffc008ca2c80 d print_fmt_fdb_delete
+ffffffc008ca2d40 d event_fdb_delete
+ffffffc008ca2dd0 d trace_event_fields_br_fdb_update
+ffffffc008ca2ec0 d trace_event_type_funcs_br_fdb_update
+ffffffc008ca2ee0 d print_fmt_br_fdb_update
+ffffffc008ca2fc0 d event_br_fdb_update
+ffffffc008ca3050 D __SCK__tp_func_neigh_create
+ffffffc008ca3058 D __SCK__tp_func_neigh_update
+ffffffc008ca3060 D __SCK__tp_func_neigh_update_done
+ffffffc008ca3068 D __SCK__tp_func_neigh_timer_handler
+ffffffc008ca3070 D __SCK__tp_func_neigh_event_send_done
+ffffffc008ca3078 D __SCK__tp_func_neigh_event_send_dead
+ffffffc008ca3080 D __SCK__tp_func_neigh_cleanup_and_release
+ffffffc008ca3088 d trace_event_fields_neigh_create
+ffffffc008ca31c8 d trace_event_type_funcs_neigh_create
+ffffffc008ca31e8 d print_fmt_neigh_create
+ffffffc008ca32b8 d event_neigh_create
+ffffffc008ca3348 d trace_event_fields_neigh_update
+ffffffc008ca3640 d trace_event_type_funcs_neigh_update
+ffffffc008ca3660 d print_fmt_neigh_update
+ffffffc008ca39d8 d event_neigh_update
+ffffffc008ca3a68 d trace_event_fields_neigh__update
+ffffffc008ca3ce8 d trace_event_type_funcs_neigh__update
+ffffffc008ca3d08 d print_fmt_neigh__update
+ffffffc008ca3f48 d event_neigh_update_done
+ffffffc008ca3fd8 d event_neigh_timer_handler
+ffffffc008ca4068 d event_neigh_event_send_done
+ffffffc008ca40f8 d event_neigh_event_send_dead
+ffffffc008ca4188 d event_neigh_cleanup_and_release
+ffffffc008ca4218 D default_qdisc_ops
+ffffffc008ca4240 d noop_netdev_queue
+ffffffc008ca4400 D noop_qdisc
+ffffffc008ca4580 d sch_frag_dst_ops
+ffffffc008ca4640 D __SCK__tp_func_netlink_extack
+ffffffc008ca4648 d trace_event_fields_netlink_extack
+ffffffc008ca4698 d trace_event_type_funcs_netlink_extack
+ffffffc008ca46b8 d print_fmt_netlink_extack
+ffffffc008ca46d8 d event_netlink_extack
+ffffffc008ca4768 d nl_table_wait.llvm.3178535444794282470
+ffffffc008ca4780 d netlink_chain
+ffffffc008ca47c8 d netlink_proto
+ffffffc008ca4978 d netlink_tap_net_ops
+ffffffc008ca49b8 d genl_mutex
+ffffffc008ca49e8 d genl_fam_idr
+ffffffc008ca4a00 d cb_lock
+ffffffc008ca4a40 d genl_policy_reject_all
+ffffffc008ca4a60 d mc_groups_longs
+ffffffc008ca4a68 d mc_groups
+ffffffc008ca4a70 d mc_group_start
+ffffffc008ca4a78 d genl_pernet_ops
+ffffffc008ca4ab8 D genl_sk_destructing_waitq
+ffffffc008ca4ad0 d netdev_rss_key_fill.___once_key
+ffffffc008ca4ae0 d ethnl_netdev_notifier
+ffffffc008ca4b00 d ipv4_dst_ops
+ffffffc008ca4bc0 d ipv4_dst_blackhole_ops
+ffffffc008ca4c80 d ipv4_route_table.llvm.490999631721679793
+ffffffc008ca4fc0 d fnhe_hashfun.___once_key
+ffffffc008ca4fd0 d ipv4_route_netns_table
+ffffffc008ca5110 d ip4_frags_ops
+ffffffc008ca5150 d ip4_frags_ctl_table
+ffffffc008ca51d0 d ip4_frags_ns_ctl_table
+ffffffc008ca5310 d __inet_hash_connect.___once_key
+ffffffc008ca5320 d inet_ehashfn.___once_key
+ffffffc008ca5330 d tcp4_net_ops.llvm.12570209190042786075
+ffffffc008ca5370 d tcp_timewait_sock_ops
+ffffffc008ca5398 D tcp_prot
+ffffffc008ca5548 d tcp4_seq_afinfo
+ffffffc008ca5550 d tcp_cong_list
+ffffffc008ca5580 D tcp_reno
+ffffffc008ca5640 d tcp_ulp_list
+ffffffc008ca5650 D raw_prot
+ffffffc008ca5800 D udp_prot
+ffffffc008ca59b0 d udp4_net_ops.llvm.6429171091703302936
+ffffffc008ca59f0 d udp_flow_hashrnd.___once_key
+ffffffc008ca5a00 d udp_ehashfn.___once_key
+ffffffc008ca5a10 d udp4_seq_afinfo
+ffffffc008ca5a20 D udplite_prot
+ffffffc008ca5bd0 d udplite4_protosw
+ffffffc008ca5c00 d udplite4_net_ops
+ffffffc008ca5c40 d udplite4_seq_afinfo
+ffffffc008ca5c50 d arp_net_ops
+ffffffc008ca5c90 d arp_netdev_notifier
+ffffffc008ca5ca8 D arp_tbl
+ffffffc008ca5f78 d inetaddr_chain.llvm.9915527062737751112
+ffffffc008ca5fc0 d inetaddr_validator_chain
+ffffffc008ca6008 d ip_netdev_notifier
+ffffffc008ca6020 d check_lifetime_work
+ffffffc008ca60a8 d ipv4_devconf
+ffffffc008ca6140 d ipv4_devconf_dflt
+ffffffc008ca61d8 d ctl_forward_entry
+ffffffc008ca6258 d devinet_sysctl
+ffffffc008ca6ae0 d inetsw_array
+ffffffc008ca6ba0 d igmp_net_ops
+ffffffc008ca6be0 d igmp_notifier
+ffffffc008ca6bf8 d fib_net_ops
+ffffffc008ca6c38 d fib_netdev_notifier
+ffffffc008ca6c50 d fib_inetaddr_notifier
+ffffffc008ca6c68 D sysctl_fib_sync_mem
+ffffffc008ca6c6c D sysctl_fib_sync_mem_min
+ffffffc008ca6c70 D sysctl_fib_sync_mem_max
+ffffffc008ca6c78 d fqdir_free_work
+ffffffc008ca6ca8 D ping_prot
+ffffffc008ca6e58 d ping_v4_net_ops.llvm.12802276694502159356
+ffffffc008ca6e98 d nexthop_net_ops
+ffffffc008ca6ed8 d nh_netdev_notifier
+ffffffc008ca6ef0 d nh_res_bucket_migrate._rs
+ffffffc008ca6f18 d ipv4_table
+ffffffc008ca7218 d ipv4_net_table
+ffffffc008ca8b18 d ip_ttl_min
+ffffffc008ca8b1c d ip_ttl_max
+ffffffc008ca8b20 d tcp_min_snd_mss_min
+ffffffc008ca8b24 d tcp_min_snd_mss_max
+ffffffc008ca8b28 d u32_max_div_HZ
+ffffffc008ca8b2c d tcp_syn_retries_min
+ffffffc008ca8b30 d tcp_syn_retries_max
+ffffffc008ca8b34 d tcp_retr1_max
+ffffffc008ca8b38 d tcp_app_win_max
+ffffffc008ca8b3c d tcp_adv_win_scale_min
+ffffffc008ca8b40 d tcp_adv_win_scale_max
+ffffffc008ca8b44 d one_day_secs
+ffffffc008ca8b48 d tcp_child_ehash_entries_max
+ffffffc008ca8b4c d ip_ping_group_range_max
+ffffffc008ca8b54 d ip_local_port_range_min
+ffffffc008ca8b5c d ip_local_port_range_max
+ffffffc008ca8b68 d set_local_port_range._rs
+ffffffc008ca8b90 d ip_privileged_port_max
+ffffffc008ca8b94 d log_ecn_error
+ffffffc008ca8b98 d log_ecn_error
+ffffffc008ca8b9c d log_ecn_error
+ffffffc008ca8ba0 d log_ecn_error
+ffffffc008ca8ba4 d log_ecn_error
+ffffffc008ca8ba8 d ipip_net_ops
+ffffffc008ca8be8 d ipgre_tap_net_ops
+ffffffc008ca8c28 d ipgre_net_ops
+ffffffc008ca8c68 d erspan_net_ops
+ffffffc008ca8ca8 d vti_net_ops
+ffffffc008ca8ce8 d esp4_protocol
+ffffffc008ca8d18 d tunnel4_mutex
+ffffffc008ca8d48 d inet_diag_table_mutex
+ffffffc008ca8d80 d xfrm4_dst_ops_template
+ffffffc008ca8e40 d xfrm4_policy_table
+ffffffc008ca8ec0 d xfrm4_state_afinfo.llvm.193550266945826359
+ffffffc008ca8f20 d xfrm4_protocol_mutex
+ffffffc008ca8f50 d hash_resize_mutex
+ffffffc008ca8f80 d xfrm_state_gc_work.llvm.9820413124882290266
+ffffffc008ca8fb0 d xfrm_km_list
+ffffffc008ca8fc0 d xfrm_table
+ffffffc008ca9100 d xfrm_dev_notifier.llvm.10256524064068413694
+ffffffc008ca9118 d aead_list
+ffffffc008ca9298 d aalg_list.llvm.944684176459034653
+ffffffc008ca9478 d ealg_list.llvm.944684176459034653
+ffffffc008ca9688 d calg_list
+ffffffc008ca9718 d netlink_mgr
+ffffffc008ca9768 d xfrm_user_net_ops
+ffffffc008ca97a8 d ipcomp_resource_mutex
+ffffffc008ca97d8 d ipcomp_tfms_list
+ffffffc008ca97e8 d xfrmi_net_ops
+ffffffc008ca9828 D unix_dgram_proto
+ffffffc008ca99d8 D unix_stream_proto
+ffffffc008ca9b88 d unix_net_ops
+ffffffc008ca9bc8 d unix_gc_wait
+ffffffc008ca9be0 d gc_candidates
+ffffffc008ca9bf0 d unix_table
+ffffffc008ca9c70 D gc_inflight_list
+ffffffc008ca9c80 d inet6_net_ops
+ffffffc008ca9cc0 D ipv6_defaults
+ffffffc008ca9cc8 d if6_proc_net_ops.llvm.10004818272749128152
+ffffffc008ca9d08 d addrconf_ops
+ffffffc008ca9d48 d ipv6_dev_notf
+ffffffc008ca9d60 d minus_one
+ffffffc008ca9d64 d ioam6_if_id_max
+ffffffc008ca9d68 d ipv6_addr_label_ops.llvm.6145222311247600652
+ffffffc008ca9da8 d .compoundliteral.3
+ffffffc008ca9db8 d .compoundliteral.4
+ffffffc008ca9dc8 d .compoundliteral.5
+ffffffc008ca9dd8 d .compoundliteral.6
+ffffffc008ca9de8 d .compoundliteral.8
+ffffffc008ca9df8 D __SCK__tp_func_fib6_table_lookup
+ffffffc008ca9e00 d trace_event_fields_fib6_table_lookup
+ffffffc008caa080 d trace_event_type_funcs_fib6_table_lookup
+ffffffc008caa0a0 d print_fmt_fib6_table_lookup
+ffffffc008caa1a8 d event_fib6_table_lookup
+ffffffc008caa240 d ip6_dst_blackhole_ops
+ffffffc008caa300 d ipv6_route_table_template
+ffffffc008caa600 d ip6_dst_ops_template
+ffffffc008caa6c0 d ipv6_inetpeer_ops
+ffffffc008caa700 d ip6_route_net_ops
+ffffffc008caa740 d ip6_route_net_late_ops
+ffffffc008caa780 d ip6_route_dev_notifier
+ffffffc008caa798 d rt6_exception_hash.___once_key
+ffffffc008caa7a8 d fib6_net_ops
+ffffffc008caa7e8 d ndisc_net_ops.llvm.897452455384549056
+ffffffc008caa828 d ndisc_netdev_notifier.llvm.897452455384549056
+ffffffc008caa840 D nd_tbl
+ffffffc008caab10 d udp6_seq_afinfo
+ffffffc008caab20 d udpv6_protosw.llvm.8973886849767798862
+ffffffc008caab50 d udp6_ehashfn.___once_key
+ffffffc008caab60 d udp6_ehashfn.___once_key.5
+ffffffc008caab70 D udpv6_prot
+ffffffc008caad20 D udplitev6_prot
+ffffffc008caaed0 d udplite6_protosw.llvm.476615948494526996
+ffffffc008caaf00 d udplite6_net_ops.llvm.476615948494526996
+ffffffc008caaf40 d udplite6_seq_afinfo
+ffffffc008caaf50 D rawv6_prot
+ffffffc008cab100 d raw6_net_ops.llvm.16517420247293910780
+ffffffc008cab140 d rawv6_protosw.llvm.16517420247293910780
+ffffffc008cab170 d ipv6_icmp_table_template
+ffffffc008cab2f0 d igmp6_net_ops.llvm.2609348770743347853
+ffffffc008cab330 d igmp6_netdev_notifier.llvm.2609348770743347853
+ffffffc008cab348 d ip6_frags_ops
+ffffffc008cab388 d ip6_frags_ctl_table
+ffffffc008cab408 d ip6_frags_ns_ctl_table
+ffffffc008cab508 d tcp6_seq_afinfo
+ffffffc008cab510 d tcp6_timewait_sock_ops
+ffffffc008cab538 d tcpv6_protosw.llvm.13091352036548126779
+ffffffc008cab568 d tcpv6_net_ops.llvm.13091352036548126779
+ffffffc008cab5a8 D tcpv6_prot
+ffffffc008cab758 D pingv6_prot
+ffffffc008cab908 d ping_v6_net_ops
+ffffffc008cab948 d pingv6_protosw
+ffffffc008cab978 D ipv6_flowlabel_exclusive
+ffffffc008caba18 d ip6_flowlabel_net_ops.llvm.4933938790868436608
+ffffffc008caba58 d ip6_fl_gc_timer.llvm.4933938790868436608
+ffffffc008caba90 d ip6_segments_ops
+ffffffc008cabad0 d ioam6_net_ops
+ffffffc008cabb10 d ipv6_rotable
+ffffffc008cabbd0 d ipv6_sysctl_net_ops
+ffffffc008cabc10 d ipv6_table_template
+ffffffc008cac150 d auto_flowlabels_max
+ffffffc008cac154 d flowlabel_reflect_max
+ffffffc008cac158 d rt6_multipath_hash_fields_all_mask
+ffffffc008cac15c d ioam6_id_max
+ffffffc008cac160 d ioam6_id_wide_max
+ffffffc008cac168 d xfrm6_net_ops.llvm.15662529372188487229
+ffffffc008cac1c0 d xfrm6_dst_ops_template.llvm.15662529372188487229
+ffffffc008cac280 d xfrm6_policy_table
+ffffffc008cac300 d xfrm6_state_afinfo.llvm.14636977201806859341
+ffffffc008cac360 d xfrm6_protocol_mutex
+ffffffc008cac390 d fib6_rules_net_ops.llvm.5390618201458551503
+ffffffc008cac3d0 d ipv6_proc_ops.llvm.12040208551699766233
+ffffffc008cac410 d esp6_protocol
+ffffffc008cac440 d ipcomp6_protocol
+ffffffc008cac470 d xfrm6_tunnel_net_ops
+ffffffc008cac4b0 d tunnel6_mutex
+ffffffc008cac4e0 d vti6_net_ops
+ffffffc008cac520 d sit_net_ops
+ffffffc008cac560 d ip6_tnl_xmit_ctl._rs
+ffffffc008cac588 d ip6_tnl_xmit_ctl._rs.1
+ffffffc008cac5b0 d ip6_tnl_net_ops
+ffffffc008cac5f0 d ip6gre_net_ops
+ffffffc008cac630 d inet6addr_validator_chain.llvm.1483565112179379687
+ffffffc008cac678 d inet6_ehashfn.___once_key
+ffffffc008cac688 d inet6_ehashfn.___once_key.2
+ffffffc008cac698 D fanout_mutex
+ffffffc008cac6c8 d packet_proto
+ffffffc008cac878 d packet_netdev_notifier
+ffffffc008cac890 d packet_net_ops
+ffffffc008cac8d0 d fanout_list
+ffffffc008cac8e0 d pfkeyv2_mgr
+ffffffc008cac930 d pfkey_net_ops
+ffffffc008cac970 d key_proto
+ffffffc008cacb20 d gen_reqid.reqid
+ffffffc008cacb28 d pfkey_mutex
+ffffffc008cacb58 d sysctl_pernet_ops
+ffffffc008cacb98 d net_sysctl_root
+ffffffc008cacc10 d vsock_device
+ffffffc008cacc60 d vsock_proto
+ffffffc008cace10 d vsock_register_mutex
+ffffffc008cace40 d virtio_vsock_driver
+ffffffc008cacf50 d virtio_transport
+ffffffc008cad070 d id_table
+ffffffc008cad080 d the_virtio_vsock_mutex
+ffffffc008cad0b0 D __SCK__tp_func_virtio_transport_alloc_pkt
+ffffffc008cad0b8 D __SCK__tp_func_virtio_transport_recv_pkt
+ffffffc008cad0c0 d trace_event_fields_virtio_transport_alloc_pkt
+ffffffc008cad228 d trace_event_type_funcs_virtio_transport_alloc_pkt
+ffffffc008cad248 d print_fmt_virtio_transport_alloc_pkt
+ffffffc008cad4a8 d event_virtio_transport_alloc_pkt
+ffffffc008cad538 d trace_event_fields_virtio_transport_recv_pkt
+ffffffc008cad6f0 d trace_event_type_funcs_virtio_transport_recv_pkt
+ffffffc008cad710 d print_fmt_virtio_transport_recv_pkt
+ffffffc008cad9a0 d event_virtio_transport_recv_pkt
+ffffffc008cada30 D virtio_transport_max_vsock_pkt_buf_size
+ffffffc008cada38 d loopback_transport
+ffffffc008cadb58 d module_bug_list
+ffffffc008cadb68 d klist_remove_waiters
+ffffffc008cadb78 d dynamic_kobj_ktype
+ffffffc008cadbc8 d kset_ktype
+ffffffc008cadc18 d uevent_sock_mutex
+ffffffc008cadc48 d uevent_sock_list
+ffffffc008cadc58 d uevent_net_ops
+ffffffc008cadc98 d io_range_mutex
+ffffffc008cadcc8 d io_range_list
+ffffffc008cadcd8 D __SCK__tp_func_ma_op
+ffffffc008cadce0 D __SCK__tp_func_ma_read
+ffffffc008cadce8 D __SCK__tp_func_ma_write
+ffffffc008cadcf0 d trace_event_fields_ma_op
+ffffffc008cade08 d trace_event_type_funcs_ma_op
+ffffffc008cade28 d print_fmt_ma_op
+ffffffc008caded8 d event_ma_op
+ffffffc008cadf68 d trace_event_fields_ma_read
+ffffffc008cae080 d trace_event_type_funcs_ma_read
+ffffffc008cae0a0 d print_fmt_ma_read
+ffffffc008cae150 d event_ma_read
+ffffffc008cae1e0 d trace_event_fields_ma_write
+ffffffc008cae348 d trace_event_type_funcs_ma_write
+ffffffc008cae368 d print_fmt_ma_write
+ffffffc008cae458 d event_ma_write
+ffffffc008cae4e8 d fill_ptr_key_work
+ffffffc008cae570 D init_uts_ns
+ffffffc008cae740 d event_class_initcall_level
+ffffffc008cae788 d event_class_initcall_start
+ffffffc008cae7d0 d event_class_initcall_finish
+ffffffc008cae818 d event_class_sys_enter
+ffffffc008cae860 d event_class_sys_exit
+ffffffc008cae8a8 d event_class_ipi_raise
+ffffffc008cae8f0 d event_class_ipi_handler
+ffffffc008cae938 d debug_fault_info
+ffffffc008cae9f8 d event_class_task_newtask
+ffffffc008caea40 d event_class_task_rename
+ffffffc008caea88 d event_class_cpuhp_enter
+ffffffc008caead0 d event_class_cpuhp_multi_enter
+ffffffc008caeb18 d event_class_cpuhp_exit
+ffffffc008caeb60 d event_class_irq_handler_entry
+ffffffc008caeba8 d event_class_irq_handler_exit
+ffffffc008caebf0 d event_class_softirq
+ffffffc008caec38 d event_class_tasklet
+ffffffc008caec80 d event_class_signal_generate
+ffffffc008caecc8 d event_class_signal_deliver
+ffffffc008caed10 d event_class_workqueue_queue_work
+ffffffc008caed58 d event_class_workqueue_activate_work
+ffffffc008caeda0 d event_class_workqueue_execute_start
+ffffffc008caede8 d event_class_workqueue_execute_end
+ffffffc008caee30 d event_class_sched_kthread_stop
+ffffffc008caee78 d event_class_sched_kthread_stop_ret
+ffffffc008caeec0 d event_class_sched_kthread_work_queue_work
+ffffffc008caef08 d event_class_sched_kthread_work_execute_start
+ffffffc008caef50 d event_class_sched_kthread_work_execute_end
+ffffffc008caef98 d event_class_sched_wakeup_template
+ffffffc008caefe0 d event_class_sched_switch
+ffffffc008caf028 d event_class_sched_migrate_task
+ffffffc008caf070 d event_class_sched_process_template
+ffffffc008caf0b8 d event_class_sched_process_wait
+ffffffc008caf100 d event_class_sched_process_fork
+ffffffc008caf148 d event_class_sched_process_exec
+ffffffc008caf190 d event_class_sched_stat_template
+ffffffc008caf1d8 d event_class_sched_blocked_reason
+ffffffc008caf220 d event_class_sched_stat_runtime
+ffffffc008caf268 d event_class_sched_pi_setprio
+ffffffc008caf2b0 d event_class_sched_process_hang
+ffffffc008caf2f8 d event_class_sched_move_numa
+ffffffc008caf340 d event_class_sched_numa_pair_template
+ffffffc008caf388 d event_class_sched_wake_idle_without_ipi
+ffffffc008caf3d0 d event_class_contention_begin
+ffffffc008caf418 d event_class_contention_end
+ffffffc008caf460 d event_class_console
+ffffffc008caf4a8 d event_class_rcu_utilization
+ffffffc008caf4f0 d event_class_rcu_grace_period
+ffffffc008caf538 d event_class_rcu_future_grace_period
+ffffffc008caf580 d event_class_rcu_grace_period_init
+ffffffc008caf5c8 d event_class_rcu_exp_grace_period
+ffffffc008caf610 d event_class_rcu_exp_funnel_lock
+ffffffc008caf658 d event_class_rcu_nocb_wake
+ffffffc008caf6a0 d event_class_rcu_preempt_task
+ffffffc008caf6e8 d event_class_rcu_unlock_preempted_task
+ffffffc008caf730 d event_class_rcu_quiescent_state_report
+ffffffc008caf778 d event_class_rcu_fqs
+ffffffc008caf7c0 d event_class_rcu_stall_warning
+ffffffc008caf808 d event_class_rcu_dyntick
+ffffffc008caf850 d event_class_rcu_callback
+ffffffc008caf898 d event_class_rcu_segcb_stats
+ffffffc008caf8e0 d event_class_rcu_kvfree_callback
+ffffffc008caf928 d event_class_rcu_batch_start
+ffffffc008caf970 d event_class_rcu_invoke_callback
+ffffffc008caf9b8 d event_class_rcu_invoke_kvfree_callback
+ffffffc008cafa00 d event_class_rcu_invoke_kfree_bulk_callback
+ffffffc008cafa48 d event_class_rcu_batch_end
+ffffffc008cafa90 d event_class_rcu_torture_read
+ffffffc008cafad8 d event_class_rcu_barrier
+ffffffc008cafb20 d event_class_swiotlb_bounced
+ffffffc008cafb68 d event_class_module_load
+ffffffc008cafbb0 d event_class_module_free
+ffffffc008cafbf8 d event_class_module_request
+ffffffc008cafc40 d event_class_timer_class
+ffffffc008cafc88 d event_class_timer_start
+ffffffc008cafcd0 d event_class_timer_expire_entry
+ffffffc008cafd18 d event_class_hrtimer_init
+ffffffc008cafd60 d event_class_hrtimer_start
+ffffffc008cafda8 d event_class_hrtimer_expire_entry
+ffffffc008cafdf0 d event_class_hrtimer_class
+ffffffc008cafe38 d event_class_itimer_state
+ffffffc008cafe80 d event_class_itimer_expire
+ffffffc008cafec8 d event_class_tick_stop
+ffffffc008caff10 d event_class_alarmtimer_suspend
+ffffffc008caff58 d event_class_alarm_class
+ffffffc008caffa0 d event_class_ftrace_function
+ffffffc008caffe8 d event_class_ftrace_funcgraph_entry
+ffffffc008cb0030 d event_class_ftrace_funcgraph_exit
+ffffffc008cb0078 d event_class_ftrace_context_switch
+ffffffc008cb00c0 d event_class_ftrace_wakeup
+ffffffc008cb0108 d event_class_ftrace_kernel_stack
+ffffffc008cb0150 d event_class_ftrace_user_stack
+ffffffc008cb0198 d event_class_ftrace_bprint
+ffffffc008cb01e0 d event_class_ftrace_print
+ffffffc008cb0228 d event_class_ftrace_raw_data
+ffffffc008cb0270 d event_class_ftrace_bputs
+ffffffc008cb02b8 d event_class_ftrace_mmiotrace_rw
+ffffffc008cb0300 d event_class_ftrace_mmiotrace_map
+ffffffc008cb0348 d event_class_ftrace_branch
+ffffffc008cb0390 d event_class_ftrace_hwlat
+ffffffc008cb03d8 d event_class_ftrace_func_repeats
+ffffffc008cb0420 d event_class_ftrace_osnoise
+ffffffc008cb0468 d event_class_ftrace_timerlat
+ffffffc008cb04b0 d event_class_error_report_template
+ffffffc008cb04f8 d event_class_cpu
+ffffffc008cb0540 d event_class_cpu_idle_miss
+ffffffc008cb0588 d event_class_powernv_throttle
+ffffffc008cb05d0 d event_class_pstate_sample
+ffffffc008cb0618 d event_class_cpu_frequency_limits
+ffffffc008cb0660 d event_class_device_pm_callback_start
+ffffffc008cb06a8 d event_class_device_pm_callback_end
+ffffffc008cb06f0 d event_class_suspend_resume
+ffffffc008cb0738 d event_class_wakeup_source
+ffffffc008cb0780 d event_class_clock
+ffffffc008cb07c8 d event_class_power_domain
+ffffffc008cb0810 d event_class_cpu_latency_qos_request
+ffffffc008cb0858 d event_class_pm_qos_update
+ffffffc008cb08a0 d event_class_dev_pm_qos_request
+ffffffc008cb08e8 d event_class_guest_halt_poll_ns
+ffffffc008cb0930 d event_class_rpm_internal
+ffffffc008cb0978 d event_class_rpm_return_int
+ffffffc008cb09c0 d event_class_xdp_exception
+ffffffc008cb0a08 d event_class_xdp_bulk_tx
+ffffffc008cb0a50 d event_class_xdp_redirect_template
+ffffffc008cb0a98 d event_class_xdp_cpumap_kthread
+ffffffc008cb0ae0 d event_class_xdp_cpumap_enqueue
+ffffffc008cb0b28 d event_class_xdp_devmap_xmit
+ffffffc008cb0b70 d event_class_mem_disconnect
+ffffffc008cb0bb8 d event_class_mem_connect
+ffffffc008cb0c00 d event_class_mem_return_failed
+ffffffc008cb0c48 d event_class_rseq_update
+ffffffc008cb0c90 d event_class_rseq_ip_fixup
+ffffffc008cb0cd8 d event_class_mm_filemap_op_page_cache
+ffffffc008cb0d20 d event_class_filemap_set_wb_err
+ffffffc008cb0d68 d event_class_file_check_and_advance_wb_err
+ffffffc008cb0db0 d event_class_oom_score_adj_update
+ffffffc008cb0df8 d event_class_reclaim_retry_zone
+ffffffc008cb0e40 d event_class_mark_victim
+ffffffc008cb0e88 d event_class_wake_reaper
+ffffffc008cb0ed0 d event_class_start_task_reaping
+ffffffc008cb0f18 d event_class_finish_task_reaping
+ffffffc008cb0f60 d event_class_skip_task_reaping
+ffffffc008cb0fa8 d event_class_compact_retry
+ffffffc008cb0ff0 d event_class_mm_lru_insertion
+ffffffc008cb1038 d event_class_mm_lru_activate
+ffffffc008cb1080 d event_class_mm_vmscan_kswapd_sleep
+ffffffc008cb10c8 d event_class_mm_vmscan_kswapd_wake
+ffffffc008cb1110 d event_class_mm_vmscan_wakeup_kswapd
+ffffffc008cb1158 d event_class_mm_vmscan_direct_reclaim_begin_template
+ffffffc008cb11a0 d event_class_mm_vmscan_direct_reclaim_end_template
+ffffffc008cb11e8 d event_class_mm_shrink_slab_start
+ffffffc008cb1230 d event_class_mm_shrink_slab_end
+ffffffc008cb1278 d event_class_mm_vmscan_lru_isolate
+ffffffc008cb12c0 d event_class_mm_vmscan_write_folio
+ffffffc008cb1308 d event_class_mm_vmscan_lru_shrink_inactive
+ffffffc008cb1350 d event_class_mm_vmscan_lru_shrink_active
+ffffffc008cb1398 d event_class_mm_vmscan_node_reclaim_begin
+ffffffc008cb13e0 d event_class_mm_vmscan_throttled
+ffffffc008cb1428 d event_class_percpu_alloc_percpu
+ffffffc008cb1470 d event_class_percpu_free_percpu
+ffffffc008cb14b8 d event_class_percpu_alloc_percpu_fail
+ffffffc008cb1500 d event_class_percpu_create_chunk
+ffffffc008cb1548 d event_class_percpu_destroy_chunk
+ffffffc008cb1590 d event_class_kmem_cache_alloc
+ffffffc008cb15d8 d event_class_kmalloc
+ffffffc008cb1620 d event_class_kfree
+ffffffc008cb1668 d event_class_kmem_cache_free
+ffffffc008cb16b0 d event_class_mm_page_free
+ffffffc008cb16f8 d event_class_mm_page_free_batched
+ffffffc008cb1740 d event_class_mm_page_alloc
+ffffffc008cb1788 d event_class_mm_page
+ffffffc008cb17d0 d event_class_mm_page_pcpu_drain
+ffffffc008cb1818 d event_class_mm_page_alloc_extfrag
+ffffffc008cb1860 d event_class_rss_stat
+ffffffc008cb18a8 d event_class_mm_compaction_isolate_template
+ffffffc008cb18f0 d event_class_mm_compaction_migratepages
+ffffffc008cb1938 d event_class_mm_compaction_begin
+ffffffc008cb1980 d event_class_mm_compaction_end
+ffffffc008cb19c8 d event_class_mm_compaction_try_to_compact_pages
+ffffffc008cb1a10 d event_class_mm_compaction_suitable_template
+ffffffc008cb1a58 d event_class_mm_compaction_defer_template
+ffffffc008cb1aa0 d event_class_mm_compaction_kcompactd_sleep
+ffffffc008cb1ae8 d event_class_kcompactd_wake_template
+ffffffc008cb1b30 d event_class_mmap_lock
+ffffffc008cb1b78 d event_class_mmap_lock_acquire_returned
+ffffffc008cb1bc0 d event_class_vm_unmapped_area
+ffffffc008cb1c08 d event_class_vma_mas_szero
+ffffffc008cb1c50 d event_class_vma_store
+ffffffc008cb1c98 d event_class_exit_mmap
+ffffffc008cb1ce0 d event_class_tlb_flush
+ffffffc008cb1d28 d event_class_mm_migrate_pages
+ffffffc008cb1d70 d event_class_mm_migrate_pages_start
+ffffffc008cb1db8 d event_class_migration_pte
+ffffffc008cb1e00 D contig_page_data
+ffffffc008cb3e40 d event_class_hugepage_set_pmd
+ffffffc008cb3e88 d event_class_hugepage_update
+ffffffc008cb3ed0 d event_class_migration_pmd
+ffffffc008cb3f18 d event_class_mm_khugepaged_scan_pmd
+ffffffc008cb3f60 d event_class_mm_collapse_huge_page
+ffffffc008cb3fa8 d event_class_mm_collapse_huge_page_isolate
+ffffffc008cb3ff0 d event_class_mm_collapse_huge_page_swapin
+ffffffc008cb4038 d event_class_mm_khugepaged_scan_file
+ffffffc008cb4080 d event_class_test_pages_isolated
+ffffffc008cb40c8 d event_class_writeback_folio_template
+ffffffc008cb4110 d event_class_writeback_dirty_inode_template
+ffffffc008cb4158 d event_class_writeback_write_inode_template
+ffffffc008cb41a0 d event_class_writeback_work_class
+ffffffc008cb41e8 d event_class_writeback_pages_written
+ffffffc008cb4230 d event_class_writeback_class
+ffffffc008cb4278 d event_class_writeback_bdi_register
+ffffffc008cb42c0 d event_class_wbc_class
+ffffffc008cb4308 d event_class_writeback_queue_io
+ffffffc008cb4350 d event_class_global_dirty_state
+ffffffc008cb4398 d event_class_bdi_dirty_ratelimit
+ffffffc008cb43e0 d event_class_balance_dirty_pages
+ffffffc008cb4428 d event_class_writeback_sb_inodes_requeue
+ffffffc008cb4470 d event_class_writeback_single_inode_template
+ffffffc008cb44b8 d event_class_writeback_inode_template
+ffffffc008cb4500 d event_class_locks_get_lock_context
+ffffffc008cb4548 d event_class_filelock_lock
+ffffffc008cb4590 d event_class_filelock_lease
+ffffffc008cb45d8 d event_class_generic_add_lease
+ffffffc008cb4620 d event_class_leases_conflict
+ffffffc008cb4668 d event_class_iomap_readpage_class
+ffffffc008cb46b0 d event_class_iomap_range_class
+ffffffc008cb46f8 d event_class_iomap_class
+ffffffc008cb4740 d event_class_iomap_iter
+ffffffc008cb4788 d event_class_ext4_other_inode_update_time
+ffffffc008cb47d0 d event_class_ext4_free_inode
+ffffffc008cb4818 d event_class_ext4_request_inode
+ffffffc008cb4860 d event_class_ext4_allocate_inode
+ffffffc008cb48a8 d event_class_ext4_evict_inode
+ffffffc008cb48f0 d event_class_ext4_drop_inode
+ffffffc008cb4938 d event_class_ext4_nfs_commit_metadata
+ffffffc008cb4980 d event_class_ext4_mark_inode_dirty
+ffffffc008cb49c8 d event_class_ext4_begin_ordered_truncate
+ffffffc008cb4a10 d event_class_ext4__write_begin
+ffffffc008cb4a58 d event_class_ext4__write_end
+ffffffc008cb4aa0 d event_class_ext4_writepages
+ffffffc008cb4ae8 d event_class_ext4_da_write_pages
+ffffffc008cb4b30 d event_class_ext4_da_write_pages_extent
+ffffffc008cb4b78 d event_class_ext4_writepages_result
+ffffffc008cb4bc0 d event_class_ext4__page_op
+ffffffc008cb4c08 d event_class_ext4_invalidate_folio_op
+ffffffc008cb4c50 d event_class_ext4_discard_blocks
+ffffffc008cb4c98 d event_class_ext4__mb_new_pa
+ffffffc008cb4ce0 d event_class_ext4_mb_release_inode_pa
+ffffffc008cb4d28 d event_class_ext4_mb_release_group_pa
+ffffffc008cb4d70 d event_class_ext4_discard_preallocations
+ffffffc008cb4db8 d event_class_ext4_mb_discard_preallocations
+ffffffc008cb4e00 d event_class_ext4_request_blocks
+ffffffc008cb4e48 d event_class_ext4_allocate_blocks
+ffffffc008cb4e90 d event_class_ext4_free_blocks
+ffffffc008cb4ed8 d event_class_ext4_sync_file_enter
+ffffffc008cb4f20 d event_class_ext4_sync_file_exit
+ffffffc008cb4f68 d event_class_ext4_sync_fs
+ffffffc008cb4fb0 d event_class_ext4_alloc_da_blocks
+ffffffc008cb4ff8 d event_class_ext4_mballoc_alloc
+ffffffc008cb5040 d event_class_ext4_mballoc_prealloc
+ffffffc008cb5088 d event_class_ext4__mballoc
+ffffffc008cb50d0 d event_class_ext4_forget
+ffffffc008cb5118 d event_class_ext4_da_update_reserve_space
+ffffffc008cb5160 d event_class_ext4_da_reserve_space
+ffffffc008cb51a8 d event_class_ext4_da_release_space
+ffffffc008cb51f0 d event_class_ext4__bitmap_load
+ffffffc008cb5238 d event_class_ext4_read_block_bitmap_load
+ffffffc008cb5280 d event_class_ext4__fallocate_mode
+ffffffc008cb52c8 d event_class_ext4_fallocate_exit
+ffffffc008cb5310 d event_class_ext4_unlink_enter
+ffffffc008cb5358 d event_class_ext4_unlink_exit
+ffffffc008cb53a0 d event_class_ext4__truncate
+ffffffc008cb53e8 d event_class_ext4_ext_convert_to_initialized_enter
+ffffffc008cb5430 d event_class_ext4_ext_convert_to_initialized_fastpath
+ffffffc008cb5478 d event_class_ext4__map_blocks_enter
+ffffffc008cb54c0 d event_class_ext4__map_blocks_exit
+ffffffc008cb5508 d event_class_ext4_ext_load_extent
+ffffffc008cb5550 d event_class_ext4_load_inode
+ffffffc008cb5598 d event_class_ext4_journal_start
+ffffffc008cb55e0 d event_class_ext4_journal_start_reserved
+ffffffc008cb5628 d event_class_ext4__trim
+ffffffc008cb5670 d event_class_ext4_ext_handle_unwritten_extents
+ffffffc008cb56b8 d event_class_ext4_get_implied_cluster_alloc_exit
+ffffffc008cb5700 d event_class_ext4_ext_show_extent
+ffffffc008cb5748 d event_class_ext4_remove_blocks
+ffffffc008cb5790 d event_class_ext4_ext_rm_leaf
+ffffffc008cb57d8 d event_class_ext4_ext_rm_idx
+ffffffc008cb5820 d event_class_ext4_ext_remove_space
+ffffffc008cb5868 d event_class_ext4_ext_remove_space_done
+ffffffc008cb58b0 d event_class_ext4__es_extent
+ffffffc008cb58f8 d event_class_ext4_es_remove_extent
+ffffffc008cb5940 d event_class_ext4_es_find_extent_range_enter
+ffffffc008cb5988 d event_class_ext4_es_find_extent_range_exit
+ffffffc008cb59d0 d event_class_ext4_es_lookup_extent_enter
+ffffffc008cb5a18 d event_class_ext4_es_lookup_extent_exit
+ffffffc008cb5a60 d event_class_ext4__es_shrink_enter
+ffffffc008cb5aa8 d event_class_ext4_es_shrink_scan_exit
+ffffffc008cb5af0 d event_class_ext4_collapse_range
+ffffffc008cb5b38 d event_class_ext4_insert_range
+ffffffc008cb5b80 d event_class_ext4_es_shrink
+ffffffc008cb5bc8 d event_class_ext4_es_insert_delayed_block
+ffffffc008cb5c10 d event_class_ext4_fsmap_class
+ffffffc008cb5c58 d event_class_ext4_getfsmap_class
+ffffffc008cb5ca0 d event_class_ext4_shutdown
+ffffffc008cb5ce8 d event_class_ext4_error
+ffffffc008cb5d30 d event_class_ext4_prefetch_bitmaps
+ffffffc008cb5d78 d event_class_ext4_lazy_itable_init
+ffffffc008cb5dc0 d event_class_ext4_fc_replay_scan
+ffffffc008cb5e08 d event_class_ext4_fc_replay
+ffffffc008cb5e50 d event_class_ext4_fc_commit_start
+ffffffc008cb5e98 d event_class_ext4_fc_commit_stop
+ffffffc008cb5ee0 d event_class_ext4_fc_stats
+ffffffc008cb5f28 d event_class_ext4_fc_track_dentry
+ffffffc008cb5f70 d event_class_ext4_fc_track_inode
+ffffffc008cb5fb8 d event_class_ext4_fc_track_range
+ffffffc008cb6000 d event_class_ext4_fc_cleanup
+ffffffc008cb6048 d event_class_ext4_update_sb
+ffffffc008cb6090 d event_class_jbd2_checkpoint
+ffffffc008cb60d8 d event_class_jbd2_commit
+ffffffc008cb6120 d event_class_jbd2_end_commit
+ffffffc008cb6168 d event_class_jbd2_submit_inode_data
+ffffffc008cb61b0 d event_class_jbd2_handle_start_class
+ffffffc008cb61f8 d event_class_jbd2_handle_extend
+ffffffc008cb6240 d event_class_jbd2_handle_stats
+ffffffc008cb6288 d event_class_jbd2_run_stats
+ffffffc008cb62d0 d event_class_jbd2_checkpoint_stats
+ffffffc008cb6318 d event_class_jbd2_update_log_tail
+ffffffc008cb6360 d event_class_jbd2_write_superblock
+ffffffc008cb63a8 d event_class_jbd2_lock_buffer_stall
+ffffffc008cb63f0 d event_class_jbd2_journal_shrink
+ffffffc008cb6438 d event_class_jbd2_shrink_scan_exit
+ffffffc008cb6480 d event_class_jbd2_shrink_checkpoint_list
+ffffffc008cb64c8 d event_class_erofs_lookup
+ffffffc008cb6510 d event_class_erofs_fill_inode
+ffffffc008cb6558 d event_class_erofs_readpage
+ffffffc008cb65a0 d event_class_erofs_readpages
+ffffffc008cb65e8 d event_class_erofs__map_blocks_enter
+ffffffc008cb6630 d event_class_erofs__map_blocks_exit
+ffffffc008cb6678 d event_class_erofs_destroy_inode
+ffffffc008cb66c0 d event_class_selinux_audited
+ffffffc008cb6708 d event_class_block_buffer
+ffffffc008cb6750 d event_class_block_rq_requeue
+ffffffc008cb6798 d event_class_block_rq_completion
+ffffffc008cb67e0 d event_class_block_rq
+ffffffc008cb6828 d event_class_block_bio_complete
+ffffffc008cb6870 d event_class_block_bio
+ffffffc008cb68b8 d event_class_block_plug
+ffffffc008cb6900 d event_class_block_unplug
+ffffffc008cb6948 d event_class_block_split
+ffffffc008cb6990 d event_class_block_bio_remap
+ffffffc008cb69d8 d event_class_block_rq_remap
+ffffffc008cb6a20 d event_class_kyber_latency
+ffffffc008cb6a68 d event_class_kyber_adjust
+ffffffc008cb6ab0 d event_class_kyber_throttled
+ffffffc008cb6af8 d event_class_io_uring_create
+ffffffc008cb6b40 d event_class_io_uring_register
+ffffffc008cb6b88 d event_class_io_uring_file_get
+ffffffc008cb6bd0 d event_class_io_uring_queue_async_work
+ffffffc008cb6c18 d event_class_io_uring_defer
+ffffffc008cb6c60 d event_class_io_uring_link
+ffffffc008cb6ca8 d event_class_io_uring_cqring_wait
+ffffffc008cb6cf0 d event_class_io_uring_fail_link
+ffffffc008cb6d38 d event_class_io_uring_complete
+ffffffc008cb6d80 d event_class_io_uring_submit_sqe
+ffffffc008cb6dc8 d event_class_io_uring_poll_arm
+ffffffc008cb6e10 d event_class_io_uring_task_add
+ffffffc008cb6e58 d event_class_io_uring_req_failed
+ffffffc008cb6ea0 d event_class_io_uring_cqe_overflow
+ffffffc008cb6ee8 d event_class_io_uring_task_work_run
+ffffffc008cb6f30 d event_class_io_uring_short_write
+ffffffc008cb6f78 d event_class_io_uring_local_work_run
+ffffffc008cb6fc0 d event_class_rwmmio_rw_template
+ffffffc008cb7008 d event_class_rwmmio_read
+ffffffc008cb7050 d event_class_rwmmio_post_read
+ffffffc008cb7098 d event_class_clk
+ffffffc008cb70e0 d event_class_clk_rate
+ffffffc008cb7128 d event_class_clk_rate_range
+ffffffc008cb7170 d event_class_clk_parent
+ffffffc008cb71b8 d event_class_clk_phase
+ffffffc008cb7200 d event_class_clk_duty_cycle
+ffffffc008cb7248 d event_class_iommu_group_event
+ffffffc008cb7290 d event_class_iommu_device_event
+ffffffc008cb72d8 d event_class_map
+ffffffc008cb7320 d event_class_unmap
+ffffffc008cb7368 d event_class_iommu_error
+ffffffc008cb73b0 d event_class_regmap_reg
+ffffffc008cb73f8 d event_class_regmap_bulk
+ffffffc008cb7440 d event_class_regmap_block
+ffffffc008cb7488 d event_class_regcache_sync
+ffffffc008cb74d0 d event_class_regmap_bool
+ffffffc008cb7518 d event_class_regmap_async
+ffffffc008cb7560 d event_class_regcache_drop_region
+ffffffc008cb75a8 d event_class_thermal_pressure_update
+ffffffc008cb75f0 d event_class_devres
+ffffffc008cb7638 d event_class_dma_fence
+ffffffc008cb7680 d event_class_rtc_time_alarm_class
+ffffffc008cb76c8 d event_class_rtc_irq_set_freq
+ffffffc008cb7710 d event_class_rtc_irq_set_state
+ffffffc008cb7758 d event_class_rtc_alarm_irq_enable
+ffffffc008cb77a0 d event_class_rtc_offset_class
+ffffffc008cb77e8 d event_class_rtc_timer_class
+ffffffc008cb7830 d event_class_watchdog_template
+ffffffc008cb7878 d event_class_watchdog_set_timeout
+ffffffc008cb78c0 d event_class_scmi_fc_call
+ffffffc008cb7908 d event_class_scmi_xfer_begin
+ffffffc008cb7950 d event_class_scmi_xfer_response_wait
+ffffffc008cb7998 d event_class_scmi_xfer_end
+ffffffc008cb79e0 d event_class_scmi_rx_done
+ffffffc008cb7a28 d event_class_scmi_msg_dump
+ffffffc008cb7a70 d event_class_mc_event
+ffffffc008cb7ab8 d event_class_arm_event
+ffffffc008cb7b00 d event_class_non_standard_event
+ffffffc008cb7b48 d event_class_aer_event
+ffffffc008cb7b90 d event_class_kfree_skb
+ffffffc008cb7bd8 d event_class_consume_skb
+ffffffc008cb7c20 d event_class_skb_copy_datagram_iovec
+ffffffc008cb7c68 d event_class_net_dev_start_xmit
+ffffffc008cb7cb0 d event_class_net_dev_xmit
+ffffffc008cb7cf8 d event_class_net_dev_xmit_timeout
+ffffffc008cb7d40 d event_class_net_dev_template
+ffffffc008cb7d88 d event_class_net_dev_rx_verbose_template
+ffffffc008cb7dd0 d event_class_net_dev_rx_exit_template
+ffffffc008cb7e18 d event_class_napi_poll
+ffffffc008cb7e60 d event_class_sock_rcvqueue_full
+ffffffc008cb7ea8 d event_class_sock_exceed_buf_limit
+ffffffc008cb7ef0 d event_class_inet_sock_set_state
+ffffffc008cb7f38 d event_class_inet_sk_error_report
+ffffffc008cb7f80 d event_class_udp_fail_queue_rcv_skb
+ffffffc008cb7fc8 d event_class_tcp_event_sk_skb
+ffffffc008cb8010 d event_class_tcp_event_sk
+ffffffc008cb8058 d event_class_tcp_retransmit_synack
+ffffffc008cb80a0 d event_class_tcp_probe
+ffffffc008cb80e8 d event_class_tcp_event_skb
+ffffffc008cb8130 d event_class_tcp_cong_state_set
+ffffffc008cb8178 d event_class_fib_table_lookup
+ffffffc008cb81c0 d event_class_qdisc_dequeue
+ffffffc008cb8208 d event_class_qdisc_enqueue
+ffffffc008cb8250 d event_class_qdisc_reset
+ffffffc008cb8298 d event_class_qdisc_destroy
+ffffffc008cb82e0 d event_class_qdisc_create
+ffffffc008cb8328 d event_class_br_fdb_add
+ffffffc008cb8370 d event_class_br_fdb_external_learn_add
+ffffffc008cb83b8 d event_class_fdb_delete
+ffffffc008cb8400 d event_class_br_fdb_update
+ffffffc008cb8448 d event_class_neigh_create
+ffffffc008cb8490 d event_class_neigh_update
+ffffffc008cb84d8 d event_class_neigh__update
+ffffffc008cb8520 d event_class_netlink_extack
+ffffffc008cb8568 d event_class_fib6_table_lookup
+ffffffc008cb85b0 d event_class_virtio_transport_alloc_pkt
+ffffffc008cb85f8 d event_class_virtio_transport_recv_pkt
+ffffffc008cb8640 d event_class_ma_op
+ffffffc008cb8688 d event_class_ma_read
+ffffffc008cb86d0 d event_class_ma_write
+ffffffc008cb8718 d compute_batch_nb
+ffffffc008cb8730 D mminit_loglevel
+ffffffc008cb8738 d sparsemap_buf
+ffffffc008cb8740 d sparsemap_buf_end
+ffffffc008cb8748 d page_ext_init.page_ext_callback_mem_nb
+ffffffc008cb8760 D __end_once
+ffffffc008cb8760 D __start_once
+ffffffc008cb8760 D __tracepoint_initcall_level
+ffffffc008cb87a8 D __tracepoint_initcall_start
+ffffffc008cb87f0 D __tracepoint_initcall_finish
+ffffffc008cb8838 D __tracepoint_sys_enter
+ffffffc008cb8880 D __tracepoint_sys_exit
+ffffffc008cb88c8 D __tracepoint_ipi_raise
+ffffffc008cb8910 D __tracepoint_ipi_entry
+ffffffc008cb8958 D __tracepoint_ipi_exit
+ffffffc008cb89a0 D __tracepoint_task_newtask
+ffffffc008cb89e8 D __tracepoint_task_rename
+ffffffc008cb8a30 D __tracepoint_cpuhp_enter
+ffffffc008cb8a78 D __tracepoint_cpuhp_multi_enter
+ffffffc008cb8ac0 D __tracepoint_cpuhp_exit
+ffffffc008cb8b08 D __tracepoint_irq_handler_entry
+ffffffc008cb8b50 D __tracepoint_irq_handler_exit
+ffffffc008cb8b98 D __tracepoint_softirq_entry
+ffffffc008cb8be0 D __tracepoint_softirq_exit
+ffffffc008cb8c28 D __tracepoint_softirq_raise
+ffffffc008cb8c70 D __tracepoint_tasklet_entry
+ffffffc008cb8cb8 D __tracepoint_tasklet_exit
+ffffffc008cb8d00 D __tracepoint_signal_generate
+ffffffc008cb8d48 D __tracepoint_signal_deliver
+ffffffc008cb8d90 D __tracepoint_workqueue_queue_work
+ffffffc008cb8dd8 D __tracepoint_workqueue_activate_work
+ffffffc008cb8e20 D __tracepoint_workqueue_execute_start
+ffffffc008cb8e68 D __tracepoint_workqueue_execute_end
+ffffffc008cb8eb0 D __tracepoint_sched_kthread_stop
+ffffffc008cb8ef8 D __tracepoint_sched_kthread_stop_ret
+ffffffc008cb8f40 D __tracepoint_sched_kthread_work_queue_work
+ffffffc008cb8f88 D __tracepoint_sched_kthread_work_execute_start
+ffffffc008cb8fd0 D __tracepoint_sched_kthread_work_execute_end
+ffffffc008cb9018 D __tracepoint_sched_waking
+ffffffc008cb9060 D __tracepoint_sched_wakeup
+ffffffc008cb90a8 D __tracepoint_sched_wakeup_new
+ffffffc008cb90f0 D __tracepoint_sched_switch
+ffffffc008cb9138 D __tracepoint_sched_migrate_task
+ffffffc008cb9180 D __tracepoint_sched_process_free
+ffffffc008cb91c8 D __tracepoint_sched_process_exit
+ffffffc008cb9210 D __tracepoint_sched_wait_task
+ffffffc008cb9258 D __tracepoint_sched_process_wait
+ffffffc008cb92a0 D __tracepoint_sched_process_exec
+ffffffc008cb92e8 D __tracepoint_sched_blocked_reason
+ffffffc008cb9330 D __tracepoint_sched_pi_setprio
+ffffffc008cb9378 D __tracepoint_sched_process_hang
+ffffffc008cb93c0 D __tracepoint_sched_move_numa
+ffffffc008cb9408 D __tracepoint_sched_stick_numa
+ffffffc008cb9450 D __tracepoint_sched_swap_numa
+ffffffc008cb9498 D __tracepoint_sched_wake_idle_without_ipi
+ffffffc008cb94e0 D __tracepoint_pelt_thermal_tp
+ffffffc008cb9528 D __tracepoint_pelt_se_tp
+ffffffc008cb9570 D __tracepoint_pelt_rt_tp
+ffffffc008cb95b8 D __tracepoint_pelt_dl_tp
+ffffffc008cb9600 D __tracepoint_pelt_irq_tp
+ffffffc008cb9648 D __tracepoint_sched_stat_runtime
+ffffffc008cb9690 D __tracepoint_pelt_cfs_tp
+ffffffc008cb96d8 D __tracepoint_sched_cpu_capacity_tp
+ffffffc008cb9720 D __tracepoint_sched_overutilized_tp
+ffffffc008cb9768 D __tracepoint_sched_util_est_cfs_tp
+ffffffc008cb97b0 D __tracepoint_sched_stat_wait
+ffffffc008cb97f8 D __tracepoint_sched_stat_sleep
+ffffffc008cb9840 D __tracepoint_sched_stat_iowait
+ffffffc008cb9888 D __tracepoint_sched_stat_blocked
+ffffffc008cb98d0 D __tracepoint_sched_update_nr_running_tp
+ffffffc008cb9918 D __tracepoint_sched_util_est_se_tp
+ffffffc008cb9960 D __tracepoint_sched_process_fork
+ffffffc008cb99a8 D __tracepoint_contention_begin
+ffffffc008cb99f0 D __tracepoint_contention_end
+ffffffc008cb9a38 D __tracepoint_console
+ffffffc008cb9a80 D __tracepoint_rcu_dyntick
+ffffffc008cb9ac8 D __tracepoint_rcu_torture_read
+ffffffc008cb9b10 D __tracepoint_rcu_grace_period
+ffffffc008cb9b58 D __tracepoint_rcu_utilization
+ffffffc008cb9ba0 D __tracepoint_rcu_kvfree_callback
+ffffffc008cb9be8 D __tracepoint_rcu_callback
+ffffffc008cb9c30 D __tracepoint_rcu_segcb_stats
+ffffffc008cb9c78 D __tracepoint_rcu_future_grace_period
+ffffffc008cb9cc0 D __tracepoint_rcu_stall_warning
+ffffffc008cb9d08 D __tracepoint_rcu_barrier
+ffffffc008cb9d50 D __tracepoint_rcu_quiescent_state_report
+ffffffc008cb9d98 D __tracepoint_rcu_unlock_preempted_task
+ffffffc008cb9de0 D __tracepoint_rcu_grace_period_init
+ffffffc008cb9e28 D __tracepoint_rcu_fqs
+ffffffc008cb9e70 D __tracepoint_rcu_batch_start
+ffffffc008cb9eb8 D __tracepoint_rcu_batch_end
+ffffffc008cb9f00 D __tracepoint_rcu_invoke_callback
+ffffffc008cb9f48 D __tracepoint_rcu_invoke_kfree_bulk_callback
+ffffffc008cb9f90 D __tracepoint_rcu_invoke_kvfree_callback
+ffffffc008cb9fd8 D __tracepoint_rcu_nocb_wake
+ffffffc008cba020 D __tracepoint_rcu_exp_grace_period
+ffffffc008cba068 D __tracepoint_rcu_exp_funnel_lock
+ffffffc008cba0b0 D __tracepoint_rcu_preempt_task
+ffffffc008cba0f8 D __tracepoint_swiotlb_bounced
+ffffffc008cba140 D __tracepoint_module_load
+ffffffc008cba188 D __tracepoint_module_free
+ffffffc008cba1d0 D __tracepoint_module_request
+ffffffc008cba218 D __tracepoint_timer_init
+ffffffc008cba260 D __tracepoint_timer_start
+ffffffc008cba2a8 D __tracepoint_timer_expire_entry
+ffffffc008cba2f0 D __tracepoint_timer_expire_exit
+ffffffc008cba338 D __tracepoint_timer_cancel
+ffffffc008cba380 D __tracepoint_itimer_state
+ffffffc008cba3c8 D __tracepoint_itimer_expire
+ffffffc008cba410 D __tracepoint_hrtimer_start
+ffffffc008cba458 D __tracepoint_hrtimer_cancel
+ffffffc008cba4a0 D __tracepoint_hrtimer_init
+ffffffc008cba4e8 D __tracepoint_hrtimer_expire_entry
+ffffffc008cba530 D __tracepoint_hrtimer_expire_exit
+ffffffc008cba578 D __tracepoint_tick_stop
+ffffffc008cba5c0 D __tracepoint_alarmtimer_suspend
+ffffffc008cba608 D __tracepoint_alarmtimer_fired
+ffffffc008cba650 D __tracepoint_alarmtimer_start
+ffffffc008cba698 D __tracepoint_alarmtimer_cancel
+ffffffc008cba6e0 D __tracepoint_error_report_end
+ffffffc008cba728 D __tracepoint_cpu_idle
+ffffffc008cba770 D __tracepoint_cpu_idle_miss
+ffffffc008cba7b8 D __tracepoint_powernv_throttle
+ffffffc008cba800 D __tracepoint_pstate_sample
+ffffffc008cba848 D __tracepoint_cpu_frequency
+ffffffc008cba890 D __tracepoint_cpu_frequency_limits
+ffffffc008cba8d8 D __tracepoint_device_pm_callback_start
+ffffffc008cba920 D __tracepoint_device_pm_callback_end
+ffffffc008cba968 D __tracepoint_suspend_resume
+ffffffc008cba9b0 D __tracepoint_wakeup_source_activate
+ffffffc008cba9f8 D __tracepoint_wakeup_source_deactivate
+ffffffc008cbaa40 D __tracepoint_clock_enable
+ffffffc008cbaa88 D __tracepoint_clock_disable
+ffffffc008cbaad0 D __tracepoint_clock_set_rate
+ffffffc008cbab18 D __tracepoint_power_domain_target
+ffffffc008cbab60 D __tracepoint_pm_qos_add_request
+ffffffc008cbaba8 D __tracepoint_pm_qos_update_request
+ffffffc008cbabf0 D __tracepoint_pm_qos_remove_request
+ffffffc008cbac38 D __tracepoint_pm_qos_update_target
+ffffffc008cbac80 D __tracepoint_pm_qos_update_flags
+ffffffc008cbacc8 D __tracepoint_dev_pm_qos_add_request
+ffffffc008cbad10 D __tracepoint_dev_pm_qos_update_request
+ffffffc008cbad58 D __tracepoint_dev_pm_qos_remove_request
+ffffffc008cbada0 D __tracepoint_guest_halt_poll_ns
+ffffffc008cbade8 D __tracepoint_rpm_suspend
+ffffffc008cbae30 D __tracepoint_rpm_resume
+ffffffc008cbae78 D __tracepoint_rpm_idle
+ffffffc008cbaec0 D __tracepoint_rpm_usage
+ffffffc008cbaf08 D __tracepoint_rpm_return_int
+ffffffc008cbaf50 D __tracepoint_xdp_exception
+ffffffc008cbaf98 D __tracepoint_xdp_bulk_tx
+ffffffc008cbafe0 D __tracepoint_xdp_redirect
+ffffffc008cbb028 D __tracepoint_xdp_redirect_err
+ffffffc008cbb070 D __tracepoint_xdp_redirect_map
+ffffffc008cbb0b8 D __tracepoint_xdp_redirect_map_err
+ffffffc008cbb100 D __tracepoint_xdp_cpumap_kthread
+ffffffc008cbb148 D __tracepoint_xdp_cpumap_enqueue
+ffffffc008cbb190 D __tracepoint_xdp_devmap_xmit
+ffffffc008cbb1d8 D __tracepoint_mem_disconnect
+ffffffc008cbb220 D __tracepoint_mem_connect
+ffffffc008cbb268 D __tracepoint_mem_return_failed
+ffffffc008cbb2b0 D __tracepoint_rseq_update
+ffffffc008cbb2f8 D __tracepoint_rseq_ip_fixup
+ffffffc008cbb340 D __tracepoint_mm_filemap_delete_from_page_cache
+ffffffc008cbb388 D __tracepoint_mm_filemap_add_to_page_cache
+ffffffc008cbb3d0 D __tracepoint_filemap_set_wb_err
+ffffffc008cbb418 D __tracepoint_file_check_and_advance_wb_err
+ffffffc008cbb460 D __tracepoint_oom_score_adj_update
+ffffffc008cbb4a8 D __tracepoint_mark_victim
+ffffffc008cbb4f0 D __tracepoint_wake_reaper
+ffffffc008cbb538 D __tracepoint_start_task_reaping
+ffffffc008cbb580 D __tracepoint_finish_task_reaping
+ffffffc008cbb5c8 D __tracepoint_skip_task_reaping
+ffffffc008cbb610 D __tracepoint_reclaim_retry_zone
+ffffffc008cbb658 D __tracepoint_compact_retry
+ffffffc008cbb6a0 D __tracepoint_mm_lru_insertion
+ffffffc008cbb6e8 D __tracepoint_mm_lru_activate
+ffffffc008cbb730 D __tracepoint_mm_vmscan_kswapd_sleep
+ffffffc008cbb778 D __tracepoint_mm_vmscan_kswapd_wake
+ffffffc008cbb7c0 D __tracepoint_mm_vmscan_wakeup_kswapd
+ffffffc008cbb808 D __tracepoint_mm_vmscan_direct_reclaim_begin
+ffffffc008cbb850 D __tracepoint_mm_vmscan_direct_reclaim_end
+ffffffc008cbb898 D __tracepoint_mm_shrink_slab_start
+ffffffc008cbb8e0 D __tracepoint_mm_shrink_slab_end
+ffffffc008cbb928 D __tracepoint_mm_vmscan_lru_isolate
+ffffffc008cbb970 D __tracepoint_mm_vmscan_write_folio
+ffffffc008cbb9b8 D __tracepoint_mm_vmscan_lru_shrink_inactive
+ffffffc008cbba00 D __tracepoint_mm_vmscan_lru_shrink_active
+ffffffc008cbba48 D __tracepoint_mm_vmscan_node_reclaim_begin
+ffffffc008cbba90 D __tracepoint_mm_vmscan_node_reclaim_end
+ffffffc008cbbad8 D __tracepoint_mm_vmscan_throttled
+ffffffc008cbbb20 D __tracepoint_percpu_alloc_percpu
+ffffffc008cbbb68 D __tracepoint_percpu_free_percpu
+ffffffc008cbbbb0 D __tracepoint_percpu_alloc_percpu_fail
+ffffffc008cbbbf8 D __tracepoint_percpu_create_chunk
+ffffffc008cbbc40 D __tracepoint_percpu_destroy_chunk
+ffffffc008cbbc88 D __tracepoint_kmalloc
+ffffffc008cbbcd0 D __tracepoint_kfree
+ffffffc008cbbd18 D __tracepoint_mm_page_free
+ffffffc008cbbd60 D __tracepoint_mm_page_free_batched
+ffffffc008cbbda8 D __tracepoint_mm_page_alloc
+ffffffc008cbbdf0 D __tracepoint_mm_page_alloc_zone_locked
+ffffffc008cbbe38 D __tracepoint_mm_page_pcpu_drain
+ffffffc008cbbe80 D __tracepoint_mm_page_alloc_extfrag
+ffffffc008cbbec8 D __tracepoint_rss_stat
+ffffffc008cbbf10 D __tracepoint_kmem_cache_alloc
+ffffffc008cbbf58 D __tracepoint_kmem_cache_free
+ffffffc008cbbfa0 D __tracepoint_mm_compaction_isolate_migratepages
+ffffffc008cbbfe8 D __tracepoint_mm_compaction_isolate_freepages
+ffffffc008cbc030 D __tracepoint_mm_compaction_migratepages
+ffffffc008cbc078 D __tracepoint_mm_compaction_begin
+ffffffc008cbc0c0 D __tracepoint_mm_compaction_end
+ffffffc008cbc108 D __tracepoint_mm_compaction_try_to_compact_pages
+ffffffc008cbc150 D __tracepoint_mm_compaction_finished
+ffffffc008cbc198 D __tracepoint_mm_compaction_suitable
+ffffffc008cbc1e0 D __tracepoint_mm_compaction_deferred
+ffffffc008cbc228 D __tracepoint_mm_compaction_defer_compaction
+ffffffc008cbc270 D __tracepoint_mm_compaction_defer_reset
+ffffffc008cbc2b8 D __tracepoint_mm_compaction_kcompactd_sleep
+ffffffc008cbc300 D __tracepoint_mm_compaction_wakeup_kcompactd
+ffffffc008cbc348 D __tracepoint_mm_compaction_kcompactd_wake
+ffffffc008cbc390 D __tracepoint_mmap_lock_start_locking
+ffffffc008cbc3d8 D __tracepoint_mmap_lock_released
+ffffffc008cbc420 D __tracepoint_mmap_lock_acquire_returned
+ffffffc008cbc468 D __tracepoint_vm_unmapped_area
+ffffffc008cbc4b0 D __tracepoint_vma_mas_szero
+ffffffc008cbc4f8 D __tracepoint_vma_store
+ffffffc008cbc540 D __tracepoint_exit_mmap
+ffffffc008cbc588 D __tracepoint_tlb_flush
+ffffffc008cbc5d0 D __tracepoint_mm_migrate_pages
+ffffffc008cbc618 D __tracepoint_mm_migrate_pages_start
+ffffffc008cbc660 D __tracepoint_set_migration_pte
+ffffffc008cbc6a8 D __tracepoint_remove_migration_pte
+ffffffc008cbc6f0 D __tracepoint_hugepage_set_pmd
+ffffffc008cbc738 D __tracepoint_hugepage_update
+ffffffc008cbc780 D __tracepoint_set_migration_pmd
+ffffffc008cbc7c8 D __tracepoint_remove_migration_pmd
+ffffffc008cbc810 D __tracepoint_mm_khugepaged_scan_pmd
+ffffffc008cbc858 D __tracepoint_mm_collapse_huge_page
+ffffffc008cbc8a0 D __tracepoint_mm_collapse_huge_page_isolate
+ffffffc008cbc8e8 D __tracepoint_mm_collapse_huge_page_swapin
+ffffffc008cbc930 D __tracepoint_mm_khugepaged_scan_file
+ffffffc008cbc978 D __tracepoint_test_pages_isolated
+ffffffc008cbc9c0 D __tracepoint_writeback_mark_inode_dirty
+ffffffc008cbca08 D __tracepoint_writeback_dirty_inode_start
+ffffffc008cbca50 D __tracepoint_writeback_dirty_inode
+ffffffc008cbca98 D __tracepoint_writeback_write_inode_start
+ffffffc008cbcae0 D __tracepoint_writeback_write_inode
+ffffffc008cbcb28 D __tracepoint_writeback_queue
+ffffffc008cbcb70 D __tracepoint_writeback_exec
+ffffffc008cbcbb8 D __tracepoint_writeback_start
+ffffffc008cbcc00 D __tracepoint_writeback_written
+ffffffc008cbcc48 D __tracepoint_writeback_wait
+ffffffc008cbcc90 D __tracepoint_writeback_pages_written
+ffffffc008cbccd8 D __tracepoint_writeback_wake_background
+ffffffc008cbcd20 D __tracepoint_writeback_queue_io
+ffffffc008cbcd68 D __tracepoint_writeback_sb_inodes_requeue
+ffffffc008cbcdb0 D __tracepoint_writeback_single_inode_start
+ffffffc008cbcdf8 D __tracepoint_writeback_single_inode
+ffffffc008cbce40 D __tracepoint_writeback_lazytime
+ffffffc008cbce88 D __tracepoint_writeback_dirty_inode_enqueue
+ffffffc008cbced0 D __tracepoint_sb_mark_inode_writeback
+ffffffc008cbcf18 D __tracepoint_sb_clear_inode_writeback
+ffffffc008cbcf60 D __tracepoint_writeback_bdi_register
+ffffffc008cbcfa8 D __tracepoint_writeback_lazytime_iput
+ffffffc008cbcff0 D __tracepoint_global_dirty_state
+ffffffc008cbd038 D __tracepoint_bdi_dirty_ratelimit
+ffffffc008cbd080 D __tracepoint_balance_dirty_pages
+ffffffc008cbd0c8 D __tracepoint_wbc_writepage
+ffffffc008cbd110 D __tracepoint_writeback_dirty_folio
+ffffffc008cbd158 D __tracepoint_folio_wait_writeback
+ffffffc008cbd1a0 D __tracepoint_locks_get_lock_context
+ffffffc008cbd1e8 D __tracepoint_posix_lock_inode
+ffffffc008cbd230 D __tracepoint_fcntl_setlk
+ffffffc008cbd278 D __tracepoint_locks_remove_posix
+ffffffc008cbd2c0 D __tracepoint_flock_lock_inode
+ffffffc008cbd308 D __tracepoint_break_lease_noblock
+ffffffc008cbd350 D __tracepoint_break_lease_block
+ffffffc008cbd398 D __tracepoint_break_lease_unblock
+ffffffc008cbd3e0 D __tracepoint_generic_delete_lease
+ffffffc008cbd428 D __tracepoint_time_out_leases
+ffffffc008cbd470 D __tracepoint_generic_add_lease
+ffffffc008cbd4b8 D __tracepoint_leases_conflict
+ffffffc008cbd500 D __tracepoint_iomap_readpage
+ffffffc008cbd548 D __tracepoint_iomap_readahead
+ffffffc008cbd590 D __tracepoint_iomap_writepage
+ffffffc008cbd5d8 D __tracepoint_iomap_release_folio
+ffffffc008cbd620 D __tracepoint_iomap_invalidate_folio
+ffffffc008cbd668 D __tracepoint_iomap_dio_invalidate_fail
+ffffffc008cbd6b0 D __tracepoint_iomap_iter_dstmap
+ffffffc008cbd6f8 D __tracepoint_iomap_iter_srcmap
+ffffffc008cbd740 D __tracepoint_iomap_writepage_map
+ffffffc008cbd788 D __tracepoint_iomap_iter
+ffffffc008cbd7d0 D __tracepoint_ext4_other_inode_update_time
+ffffffc008cbd818 D __tracepoint_ext4_free_inode
+ffffffc008cbd860 D __tracepoint_ext4_request_inode
+ffffffc008cbd8a8 D __tracepoint_ext4_allocate_inode
+ffffffc008cbd8f0 D __tracepoint_ext4_evict_inode
+ffffffc008cbd938 D __tracepoint_ext4_drop_inode
+ffffffc008cbd980 D __tracepoint_ext4_nfs_commit_metadata
+ffffffc008cbd9c8 D __tracepoint_ext4_mark_inode_dirty
+ffffffc008cbda10 D __tracepoint_ext4_begin_ordered_truncate
+ffffffc008cbda58 D __tracepoint_ext4_write_begin
+ffffffc008cbdaa0 D __tracepoint_ext4_da_write_begin
+ffffffc008cbdae8 D __tracepoint_ext4_write_end
+ffffffc008cbdb30 D __tracepoint_ext4_journalled_write_end
+ffffffc008cbdb78 D __tracepoint_ext4_da_write_end
+ffffffc008cbdbc0 D __tracepoint_ext4_writepages
+ffffffc008cbdc08 D __tracepoint_ext4_da_write_pages
+ffffffc008cbdc50 D __tracepoint_ext4_da_write_pages_extent
+ffffffc008cbdc98 D __tracepoint_ext4_writepages_result
+ffffffc008cbdce0 D __tracepoint_ext4_writepage
+ffffffc008cbdd28 D __tracepoint_ext4_readpage
+ffffffc008cbdd70 D __tracepoint_ext4_releasepage
+ffffffc008cbddb8 D __tracepoint_ext4_invalidate_folio
+ffffffc008cbde00 D __tracepoint_ext4_journalled_invalidate_folio
+ffffffc008cbde48 D __tracepoint_ext4_discard_blocks
+ffffffc008cbde90 D __tracepoint_ext4_mb_new_inode_pa
+ffffffc008cbded8 D __tracepoint_ext4_mb_new_group_pa
+ffffffc008cbdf20 D __tracepoint_ext4_mb_release_inode_pa
+ffffffc008cbdf68 D __tracepoint_ext4_mb_release_group_pa
+ffffffc008cbdfb0 D __tracepoint_ext4_discard_preallocations
+ffffffc008cbdff8 D __tracepoint_ext4_mb_discard_preallocations
+ffffffc008cbe040 D __tracepoint_ext4_request_blocks
+ffffffc008cbe088 D __tracepoint_ext4_allocate_blocks
+ffffffc008cbe0d0 D __tracepoint_ext4_free_blocks
+ffffffc008cbe118 D __tracepoint_ext4_sync_file_enter
+ffffffc008cbe160 D __tracepoint_ext4_sync_file_exit
+ffffffc008cbe1a8 D __tracepoint_ext4_sync_fs
+ffffffc008cbe1f0 D __tracepoint_ext4_alloc_da_blocks
+ffffffc008cbe238 D __tracepoint_ext4_mballoc_alloc
+ffffffc008cbe280 D __tracepoint_ext4_mballoc_prealloc
+ffffffc008cbe2c8 D __tracepoint_ext4_mballoc_discard
+ffffffc008cbe310 D __tracepoint_ext4_mballoc_free
+ffffffc008cbe358 D __tracepoint_ext4_forget
+ffffffc008cbe3a0 D __tracepoint_ext4_da_update_reserve_space
+ffffffc008cbe3e8 D __tracepoint_ext4_da_reserve_space
+ffffffc008cbe430 D __tracepoint_ext4_da_release_space
+ffffffc008cbe478 D __tracepoint_ext4_mb_bitmap_load
+ffffffc008cbe4c0 D __tracepoint_ext4_mb_buddy_bitmap_load
+ffffffc008cbe508 D __tracepoint_ext4_load_inode_bitmap
+ffffffc008cbe550 D __tracepoint_ext4_read_block_bitmap_load
+ffffffc008cbe598 D __tracepoint_ext4_punch_hole
+ffffffc008cbe5e0 D __tracepoint_ext4_unlink_enter
+ffffffc008cbe628 D __tracepoint_ext4_unlink_exit
+ffffffc008cbe670 D __tracepoint_ext4_truncate_enter
+ffffffc008cbe6b8 D __tracepoint_ext4_truncate_exit
+ffffffc008cbe700 D __tracepoint_ext4_ind_map_blocks_enter
+ffffffc008cbe748 D __tracepoint_ext4_ind_map_blocks_exit
+ffffffc008cbe790 D __tracepoint_ext4_load_inode
+ffffffc008cbe7d8 D __tracepoint_ext4_journal_start
+ffffffc008cbe820 D __tracepoint_ext4_journal_start_reserved
+ffffffc008cbe868 D __tracepoint_ext4_trim_extent
+ffffffc008cbe8b0 D __tracepoint_ext4_trim_all_free
+ffffffc008cbe8f8 D __tracepoint_ext4_fsmap_low_key
+ffffffc008cbe940 D __tracepoint_ext4_fsmap_high_key
+ffffffc008cbe988 D __tracepoint_ext4_fsmap_mapping
+ffffffc008cbe9d0 D __tracepoint_ext4_getfsmap_low_key
+ffffffc008cbea18 D __tracepoint_ext4_getfsmap_high_key
+ffffffc008cbea60 D __tracepoint_ext4_getfsmap_mapping
+ffffffc008cbeaa8 D __tracepoint_ext4_shutdown
+ffffffc008cbeaf0 D __tracepoint_ext4_error
+ffffffc008cbeb38 D __tracepoint_ext4_prefetch_bitmaps
+ffffffc008cbeb80 D __tracepoint_ext4_lazy_itable_init
+ffffffc008cbebc8 D __tracepoint_ext4_update_sb
+ffffffc008cbec10 D __tracepoint_ext4_ext_load_extent
+ffffffc008cbec58 D __tracepoint_ext4_ext_remove_space
+ffffffc008cbeca0 D __tracepoint_ext4_ext_rm_leaf
+ffffffc008cbece8 D __tracepoint_ext4_remove_blocks
+ffffffc008cbed30 D __tracepoint_ext4_ext_rm_idx
+ffffffc008cbed78 D __tracepoint_ext4_ext_remove_space_done
+ffffffc008cbedc0 D __tracepoint_ext4_ext_map_blocks_enter
+ffffffc008cbee08 D __tracepoint_ext4_ext_show_extent
+ffffffc008cbee50 D __tracepoint_ext4_ext_handle_unwritten_extents
+ffffffc008cbee98 D __tracepoint_ext4_ext_convert_to_initialized_enter
+ffffffc008cbeee0 D __tracepoint_ext4_ext_convert_to_initialized_fastpath
+ffffffc008cbef28 D __tracepoint_ext4_get_implied_cluster_alloc_exit
+ffffffc008cbef70 D __tracepoint_ext4_ext_map_blocks_exit
+ffffffc008cbefb8 D __tracepoint_ext4_zero_range
+ffffffc008cbf000 D __tracepoint_ext4_fallocate_enter
+ffffffc008cbf048 D __tracepoint_ext4_fallocate_exit
+ffffffc008cbf090 D __tracepoint_ext4_collapse_range
+ffffffc008cbf0d8 D __tracepoint_ext4_insert_range
+ffffffc008cbf120 D __tracepoint_ext4_es_find_extent_range_enter
+ffffffc008cbf168 D __tracepoint_ext4_es_find_extent_range_exit
+ffffffc008cbf1b0 D __tracepoint_ext4_es_insert_extent
+ffffffc008cbf1f8 D __tracepoint_ext4_es_cache_extent
+ffffffc008cbf240 D __tracepoint_ext4_es_lookup_extent_enter
+ffffffc008cbf288 D __tracepoint_ext4_es_lookup_extent_exit
+ffffffc008cbf2d0 D __tracepoint_ext4_es_remove_extent
+ffffffc008cbf318 D __tracepoint_ext4_es_shrink
+ffffffc008cbf360 D __tracepoint_ext4_es_shrink_scan_enter
+ffffffc008cbf3a8 D __tracepoint_ext4_es_shrink_scan_exit
+ffffffc008cbf3f0 D __tracepoint_ext4_es_shrink_count
+ffffffc008cbf438 D __tracepoint_ext4_es_insert_delayed_block
+ffffffc008cbf480 D __tracepoint_ext4_fc_track_unlink
+ffffffc008cbf4c8 D __tracepoint_ext4_fc_track_link
+ffffffc008cbf510 D __tracepoint_ext4_fc_track_create
+ffffffc008cbf558 D __tracepoint_ext4_fc_track_inode
+ffffffc008cbf5a0 D __tracepoint_ext4_fc_track_range
+ffffffc008cbf5e8 D __tracepoint_ext4_fc_commit_start
+ffffffc008cbf630 D __tracepoint_ext4_fc_commit_stop
+ffffffc008cbf678 D __tracepoint_ext4_fc_replay_scan
+ffffffc008cbf6c0 D __tracepoint_ext4_fc_replay
+ffffffc008cbf708 D __tracepoint_ext4_fc_cleanup
+ffffffc008cbf750 D __tracepoint_ext4_fc_stats
+ffffffc008cbf798 D __tracepoint_jbd2_checkpoint
+ffffffc008cbf7e0 D __tracepoint_jbd2_start_commit
+ffffffc008cbf828 D __tracepoint_jbd2_commit_locking
+ffffffc008cbf870 D __tracepoint_jbd2_commit_flushing
+ffffffc008cbf8b8 D __tracepoint_jbd2_commit_logging
+ffffffc008cbf900 D __tracepoint_jbd2_drop_transaction
+ffffffc008cbf948 D __tracepoint_jbd2_end_commit
+ffffffc008cbf990 D __tracepoint_jbd2_submit_inode_data
+ffffffc008cbf9d8 D __tracepoint_jbd2_run_stats
+ffffffc008cbfa20 D __tracepoint_jbd2_checkpoint_stats
+ffffffc008cbfa68 D __tracepoint_jbd2_update_log_tail
+ffffffc008cbfab0 D __tracepoint_jbd2_write_superblock
+ffffffc008cbfaf8 D __tracepoint_jbd2_shrink_count
+ffffffc008cbfb40 D __tracepoint_jbd2_shrink_scan_enter
+ffffffc008cbfb88 D __tracepoint_jbd2_shrink_scan_exit
+ffffffc008cbfbd0 D __tracepoint_jbd2_shrink_checkpoint_list
+ffffffc008cbfc18 D __tracepoint_jbd2_handle_start
+ffffffc008cbfc60 D __tracepoint_jbd2_handle_extend
+ffffffc008cbfca8 D __tracepoint_jbd2_handle_restart
+ffffffc008cbfcf0 D __tracepoint_jbd2_lock_buffer_stall
+ffffffc008cbfd38 D __tracepoint_jbd2_handle_stats
+ffffffc008cbfd80 D __tracepoint_erofs_lookup
+ffffffc008cbfdc8 D __tracepoint_erofs_readpage
+ffffffc008cbfe10 D __tracepoint_erofs_readpages
+ffffffc008cbfe58 D __tracepoint_erofs_map_blocks_enter
+ffffffc008cbfea0 D __tracepoint_z_erofs_map_blocks_iter_enter
+ffffffc008cbfee8 D __tracepoint_erofs_map_blocks_exit
+ffffffc008cbff30 D __tracepoint_z_erofs_map_blocks_iter_exit
+ffffffc008cbff78 D __tracepoint_erofs_destroy_inode
+ffffffc008cbffc0 D __tracepoint_erofs_fill_inode
+ffffffc008cc0008 D __tracepoint_selinux_audited
+ffffffc008cc0050 D __tracepoint_block_touch_buffer
+ffffffc008cc0098 D __tracepoint_block_dirty_buffer
+ffffffc008cc00e0 D __tracepoint_block_rq_requeue
+ffffffc008cc0128 D __tracepoint_block_rq_complete
+ffffffc008cc0170 D __tracepoint_block_rq_error
+ffffffc008cc01b8 D __tracepoint_block_rq_insert
+ffffffc008cc0200 D __tracepoint_block_rq_issue
+ffffffc008cc0248 D __tracepoint_block_rq_merge
+ffffffc008cc0290 D __tracepoint_block_bio_complete
+ffffffc008cc02d8 D __tracepoint_block_bio_bounce
+ffffffc008cc0320 D __tracepoint_block_bio_backmerge
+ffffffc008cc0368 D __tracepoint_block_bio_frontmerge
+ffffffc008cc03b0 D __tracepoint_block_bio_queue
+ffffffc008cc03f8 D __tracepoint_block_getrq
+ffffffc008cc0440 D __tracepoint_block_plug
+ffffffc008cc0488 D __tracepoint_block_unplug
+ffffffc008cc04d0 D __tracepoint_block_split
+ffffffc008cc0518 D __tracepoint_block_bio_remap
+ffffffc008cc0560 D __tracepoint_block_rq_remap
+ffffffc008cc05a8 D __tracepoint_kyber_latency
+ffffffc008cc05f0 D __tracepoint_kyber_adjust
+ffffffc008cc0638 D __tracepoint_kyber_throttled
+ffffffc008cc0680 D __tracepoint_io_uring_create
+ffffffc008cc06c8 D __tracepoint_io_uring_register
+ffffffc008cc0710 D __tracepoint_io_uring_file_get
+ffffffc008cc0758 D __tracepoint_io_uring_queue_async_work
+ffffffc008cc07a0 D __tracepoint_io_uring_defer
+ffffffc008cc07e8 D __tracepoint_io_uring_link
+ffffffc008cc0830 D __tracepoint_io_uring_cqring_wait
+ffffffc008cc0878 D __tracepoint_io_uring_fail_link
+ffffffc008cc08c0 D __tracepoint_io_uring_complete
+ffffffc008cc0908 D __tracepoint_io_uring_submit_sqe
+ffffffc008cc0950 D __tracepoint_io_uring_req_failed
+ffffffc008cc0998 D __tracepoint_io_uring_cqe_overflow
+ffffffc008cc09e0 D __tracepoint_io_uring_task_work_run
+ffffffc008cc0a28 D __tracepoint_io_uring_short_write
+ffffffc008cc0a70 D __tracepoint_io_uring_local_work_run
+ffffffc008cc0ab8 D __tracepoint_io_uring_task_add
+ffffffc008cc0b00 D __tracepoint_io_uring_poll_arm
+ffffffc008cc0b48 D __tracepoint_rwmmio_write
+ffffffc008cc0b90 D __tracepoint_rwmmio_post_write
+ffffffc008cc0bd8 D __tracepoint_rwmmio_read
+ffffffc008cc0c20 D __tracepoint_rwmmio_post_read
+ffffffc008cc0c68 D __tracepoint_clk_enable
+ffffffc008cc0cb0 D __tracepoint_clk_enable_complete
+ffffffc008cc0cf8 D __tracepoint_clk_disable
+ffffffc008cc0d40 D __tracepoint_clk_disable_complete
+ffffffc008cc0d88 D __tracepoint_clk_prepare
+ffffffc008cc0dd0 D __tracepoint_clk_prepare_complete
+ffffffc008cc0e18 D __tracepoint_clk_unprepare
+ffffffc008cc0e60 D __tracepoint_clk_unprepare_complete
+ffffffc008cc0ea8 D __tracepoint_clk_set_rate
+ffffffc008cc0ef0 D __tracepoint_clk_set_rate_complete
+ffffffc008cc0f38 D __tracepoint_clk_set_min_rate
+ffffffc008cc0f80 D __tracepoint_clk_set_max_rate
+ffffffc008cc0fc8 D __tracepoint_clk_set_rate_range
+ffffffc008cc1010 D __tracepoint_clk_set_parent
+ffffffc008cc1058 D __tracepoint_clk_set_parent_complete
+ffffffc008cc10a0 D __tracepoint_clk_set_phase
+ffffffc008cc10e8 D __tracepoint_clk_set_phase_complete
+ffffffc008cc1130 D __tracepoint_clk_set_duty_cycle
+ffffffc008cc1178 D __tracepoint_clk_set_duty_cycle_complete
+ffffffc008cc11c0 D __tracepoint_add_device_to_group
+ffffffc008cc1208 D __tracepoint_remove_device_from_group
+ffffffc008cc1250 D __tracepoint_attach_device_to_domain
+ffffffc008cc1298 D __tracepoint_detach_device_from_domain
+ffffffc008cc12e0 D __tracepoint_map
+ffffffc008cc1328 D __tracepoint_unmap
+ffffffc008cc1370 D __tracepoint_io_page_fault
+ffffffc008cc13b8 D __tracepoint_regmap_reg_write
+ffffffc008cc1400 D __tracepoint_regmap_reg_read
+ffffffc008cc1448 D __tracepoint_regmap_reg_read_cache
+ffffffc008cc1490 D __tracepoint_regmap_bulk_write
+ffffffc008cc14d8 D __tracepoint_regmap_bulk_read
+ffffffc008cc1520 D __tracepoint_regmap_hw_read_start
+ffffffc008cc1568 D __tracepoint_regmap_hw_read_done
+ffffffc008cc15b0 D __tracepoint_regmap_hw_write_start
+ffffffc008cc15f8 D __tracepoint_regmap_hw_write_done
+ffffffc008cc1640 D __tracepoint_regcache_sync
+ffffffc008cc1688 D __tracepoint_regmap_cache_only
+ffffffc008cc16d0 D __tracepoint_regmap_cache_bypass
+ffffffc008cc1718 D __tracepoint_regmap_async_write_start
+ffffffc008cc1760 D __tracepoint_regmap_async_io_complete
+ffffffc008cc17a8 D __tracepoint_regmap_async_complete_start
+ffffffc008cc17f0 D __tracepoint_regmap_async_complete_done
+ffffffc008cc1838 D __tracepoint_regcache_drop_region
+ffffffc008cc1880 D __tracepoint_thermal_pressure_update
+ffffffc008cc18c8 D __tracepoint_devres_log
+ffffffc008cc1910 D __tracepoint_dma_fence_emit
+ffffffc008cc1958 D __tracepoint_dma_fence_init
+ffffffc008cc19a0 D __tracepoint_dma_fence_destroy
+ffffffc008cc19e8 D __tracepoint_dma_fence_enable_signal
+ffffffc008cc1a30 D __tracepoint_dma_fence_signaled
+ffffffc008cc1a78 D __tracepoint_dma_fence_wait_start
+ffffffc008cc1ac0 D __tracepoint_dma_fence_wait_end
+ffffffc008cc1b08 D __tracepoint_rtc_set_time
+ffffffc008cc1b50 D __tracepoint_rtc_read_time
+ffffffc008cc1b98 D __tracepoint_rtc_set_alarm
+ffffffc008cc1be0 D __tracepoint_rtc_read_alarm
+ffffffc008cc1c28 D __tracepoint_rtc_irq_set_freq
+ffffffc008cc1c70 D __tracepoint_rtc_irq_set_state
+ffffffc008cc1cb8 D __tracepoint_rtc_alarm_irq_enable
+ffffffc008cc1d00 D __tracepoint_rtc_set_offset
+ffffffc008cc1d48 D __tracepoint_rtc_read_offset
+ffffffc008cc1d90 D __tracepoint_rtc_timer_enqueue
+ffffffc008cc1dd8 D __tracepoint_rtc_timer_dequeue
+ffffffc008cc1e20 D __tracepoint_rtc_timer_fired
+ffffffc008cc1e68 D __tracepoint_watchdog_start
+ffffffc008cc1eb0 D __tracepoint_watchdog_ping
+ffffffc008cc1ef8 D __tracepoint_watchdog_stop
+ffffffc008cc1f40 D __tracepoint_watchdog_set_timeout
+ffffffc008cc1f88 D __tracepoint_scmi_xfer_begin
+ffffffc008cc1fd0 D __tracepoint_scmi_xfer_response_wait
+ffffffc008cc2018 D __tracepoint_scmi_xfer_end
+ffffffc008cc2060 D __tracepoint_scmi_rx_done
+ffffffc008cc20a8 D __tracepoint_scmi_msg_dump
+ffffffc008cc20f0 D __tracepoint_scmi_fc_call
+ffffffc008cc2138 D __tracepoint_mc_event
+ffffffc008cc2180 D __tracepoint_arm_event
+ffffffc008cc21c8 D __tracepoint_non_standard_event
+ffffffc008cc2210 D __tracepoint_aer_event
+ffffffc008cc2258 D __tracepoint_kfree_skb
+ffffffc008cc22a0 D __tracepoint_consume_skb
+ffffffc008cc22e8 D __tracepoint_skb_copy_datagram_iovec
+ffffffc008cc2330 D __tracepoint_net_dev_start_xmit
+ffffffc008cc2378 D __tracepoint_net_dev_xmit
+ffffffc008cc23c0 D __tracepoint_net_dev_xmit_timeout
+ffffffc008cc2408 D __tracepoint_net_dev_queue
+ffffffc008cc2450 D __tracepoint_netif_receive_skb
+ffffffc008cc2498 D __tracepoint_netif_rx
+ffffffc008cc24e0 D __tracepoint_napi_gro_frags_entry
+ffffffc008cc2528 D __tracepoint_napi_gro_receive_entry
+ffffffc008cc2570 D __tracepoint_netif_receive_skb_entry
+ffffffc008cc25b8 D __tracepoint_netif_receive_skb_list_entry
+ffffffc008cc2600 D __tracepoint_netif_rx_entry
+ffffffc008cc2648 D __tracepoint_napi_gro_frags_exit
+ffffffc008cc2690 D __tracepoint_napi_gro_receive_exit
+ffffffc008cc26d8 D __tracepoint_netif_receive_skb_exit
+ffffffc008cc2720 D __tracepoint_netif_rx_exit
+ffffffc008cc2768 D __tracepoint_netif_receive_skb_list_exit
+ffffffc008cc27b0 D __tracepoint_napi_poll
+ffffffc008cc27f8 D __tracepoint_sock_rcvqueue_full
+ffffffc008cc2840 D __tracepoint_sock_exceed_buf_limit
+ffffffc008cc2888 D __tracepoint_inet_sock_set_state
+ffffffc008cc28d0 D __tracepoint_inet_sk_error_report
+ffffffc008cc2918 D __tracepoint_udp_fail_queue_rcv_skb
+ffffffc008cc2960 D __tracepoint_tcp_retransmit_skb
+ffffffc008cc29a8 D __tracepoint_tcp_send_reset
+ffffffc008cc29f0 D __tracepoint_tcp_receive_reset
+ffffffc008cc2a38 D __tracepoint_tcp_destroy_sock
+ffffffc008cc2a80 D __tracepoint_tcp_rcv_space_adjust
+ffffffc008cc2ac8 D __tracepoint_tcp_retransmit_synack
+ffffffc008cc2b10 D __tracepoint_tcp_probe
+ffffffc008cc2b58 D __tracepoint_tcp_bad_csum
+ffffffc008cc2ba0 D __tracepoint_tcp_cong_state_set
+ffffffc008cc2be8 D __tracepoint_fib_table_lookup
+ffffffc008cc2c30 D __tracepoint_qdisc_dequeue
+ffffffc008cc2c78 D __tracepoint_qdisc_enqueue
+ffffffc008cc2cc0 D __tracepoint_qdisc_reset
+ffffffc008cc2d08 D __tracepoint_qdisc_destroy
+ffffffc008cc2d50 D __tracepoint_qdisc_create
+ffffffc008cc2d98 D __tracepoint_br_fdb_add
+ffffffc008cc2de0 D __tracepoint_br_fdb_external_learn_add
+ffffffc008cc2e28 D __tracepoint_fdb_delete
+ffffffc008cc2e70 D __tracepoint_br_fdb_update
+ffffffc008cc2eb8 D __tracepoint_neigh_create
+ffffffc008cc2f00 D __tracepoint_neigh_update
+ffffffc008cc2f48 D __tracepoint_neigh_update_done
+ffffffc008cc2f90 D __tracepoint_neigh_timer_handler
+ffffffc008cc2fd8 D __tracepoint_neigh_event_send_done
+ffffffc008cc3020 D __tracepoint_neigh_event_send_dead
+ffffffc008cc3068 D __tracepoint_neigh_cleanup_and_release
+ffffffc008cc30b0 D __tracepoint_netlink_extack
+ffffffc008cc30f8 D __tracepoint_fib6_table_lookup
+ffffffc008cc3140 D __tracepoint_virtio_transport_alloc_pkt
+ffffffc008cc3188 D __tracepoint_virtio_transport_recv_pkt
+ffffffc008cc31d0 D __tracepoint_ma_op
+ffffffc008cc3218 D __tracepoint_ma_read
+ffffffc008cc3260 D __tracepoint_ma_write
+ffffffc008cc32a8 D __start___dyndbg
+ffffffc008cc32a8 D __start___dyndbg_classes
+ffffffc008cc32a8 D __start___trace_bprintk_fmt
+ffffffc008cc32a8 D __start___tracepoint_str
+ffffffc008cc32a8 D __stop___dyndbg
+ffffffc008cc32a8 D __stop___dyndbg_classes
+ffffffc008cc32a8 D __stop___trace_bprintk_fmt
+ffffffc008cc32a8 d ipi_types
+ffffffc008cc32e0 d freeze_secondary_cpus.___tp_str
+ffffffc008cc32e8 d freeze_secondary_cpus.___tp_str.6
+ffffffc008cc32f0 d thaw_secondary_cpus.___tp_str
+ffffffc008cc32f8 d thaw_secondary_cpus.___tp_str.11
+ffffffc008cc3300 d thaw_processes.___tp_str
+ffffffc008cc3308 d thaw_processes.___tp_str.3
+ffffffc008cc3310 d suspend_devices_and_enter.___tp_str
+ffffffc008cc3318 d suspend_devices_and_enter.___tp_str.8
+ffffffc008cc3320 d suspend_enter.___tp_str
+ffffffc008cc3328 d suspend_enter.___tp_str.20
+ffffffc008cc3330 d s2idle_enter.___tp_str
+ffffffc008cc3338 d s2idle_enter.___tp_str.21
+ffffffc008cc3340 d enter_state.___tp_str
+ffffffc008cc3348 d enter_state.___tp_str.23
+ffffffc008cc3350 d enter_state.___tp_str.25
+ffffffc008cc3358 d enter_state.___tp_str.26
+ffffffc008cc3360 d suspend_prepare.___tp_str
+ffffffc008cc3368 d suspend_prepare.___tp_str.28
+ffffffc008cc3370 d tp_rcu_varname
+ffffffc008cc3378 d rcutree_dying_cpu.___tp_str
+ffffffc008cc3380 d rcutree_dying_cpu.___tp_str.1
+ffffffc008cc3388 d rcu_sched_clock_irq.___tp_str
+ffffffc008cc3390 d rcu_sched_clock_irq.___tp_str.5
+ffffffc008cc3398 d call_rcu.___tp_str
+ffffffc008cc33a0 d rcu_barrier.___tp_str
+ffffffc008cc33a8 d rcu_barrier.___tp_str.11
+ffffffc008cc33b0 d rcu_barrier.___tp_str.13
+ffffffc008cc33b8 d rcu_barrier.___tp_str.15
+ffffffc008cc33c0 d rcu_barrier.___tp_str.17
+ffffffc008cc33c8 d rcu_barrier.___tp_str.19
+ffffffc008cc33d0 d rcu_barrier.___tp_str.21
+ffffffc008cc33d8 d rcutree_prepare_cpu.___tp_str
+ffffffc008cc33e0 d rcu_note_context_switch.___tp_str
+ffffffc008cc33e8 d rcu_note_context_switch.___tp_str.52
+ffffffc008cc33f0 d __note_gp_changes.___tp_str
+ffffffc008cc33f8 d __note_gp_changes.___tp_str.57
+ffffffc008cc3400 d rcu_accelerate_cbs.___tp_str
+ffffffc008cc3408 d rcu_accelerate_cbs.___tp_str.60
+ffffffc008cc3410 d rcu_accelerate_cbs.___tp_str.62
+ffffffc008cc3418 d rcu_accelerate_cbs.___tp_str.64
+ffffffc008cc3420 d rcu_start_this_gp.___tp_str
+ffffffc008cc3428 d rcu_start_this_gp.___tp_str.67
+ffffffc008cc3430 d rcu_start_this_gp.___tp_str.69
+ffffffc008cc3438 d rcu_start_this_gp.___tp_str.71
+ffffffc008cc3440 d rcu_start_this_gp.___tp_str.73
+ffffffc008cc3448 d rcu_start_this_gp.___tp_str.75
+ffffffc008cc3450 d rcu_start_this_gp.___tp_str.77
+ffffffc008cc3458 d print_cpu_stall.___tp_str
+ffffffc008cc3460 d print_other_cpu_stall.___tp_str
+ffffffc008cc3468 d rcu_barrier_entrain.___tp_str
+ffffffc008cc3470 d rcu_barrier_entrain.___tp_str.118
+ffffffc008cc3478 d rcu_barrier_callback.___tp_str
+ffffffc008cc3480 d rcu_barrier_callback.___tp_str.121
+ffffffc008cc3488 d rcu_gp_kthread.___tp_str
+ffffffc008cc3490 d rcu_gp_kthread.___tp_str.127
+ffffffc008cc3498 d rcu_gp_init.___tp_str
+ffffffc008cc34a0 d rcu_preempt_check_blocked_tasks.___tp_str
+ffffffc008cc34a8 d rcu_gp_fqs_loop.___tp_str
+ffffffc008cc34b0 d rcu_gp_fqs_loop.___tp_str.140
+ffffffc008cc34b8 d rcu_gp_fqs_loop.___tp_str.142
+ffffffc008cc34c0 d rcu_gp_fqs_loop.___tp_str.144
+ffffffc008cc34c8 d dyntick_save_progress_counter.___tp_str
+ffffffc008cc34d0 d rcu_implicit_dynticks_qs.___tp_str
+ffffffc008cc34d8 d rcu_gp_cleanup.___tp_str
+ffffffc008cc34e0 d rcu_gp_cleanup.___tp_str.150
+ffffffc008cc34e8 d rcu_gp_cleanup.___tp_str.152
+ffffffc008cc34f0 d rcu_future_gp_cleanup.___tp_str
+ffffffc008cc34f8 d rcu_future_gp_cleanup.___tp_str.153
+ffffffc008cc3500 d rcu_cpu_kthread.___tp_str
+ffffffc008cc3508 d rcu_cpu_kthread.___tp_str.158
+ffffffc008cc3510 d rcu_cpu_kthread.___tp_str.160
+ffffffc008cc3518 d rcu_cpu_kthread.___tp_str.162
+ffffffc008cc3520 d rcu_core.___tp_str
+ffffffc008cc3528 d rcu_core.___tp_str.165
+ffffffc008cc3530 d rcu_do_batch.___tp_str
+ffffffc008cc3538 d do_nocb_deferred_wakeup_timer.___tp_str
+ffffffc008cc3540 d do_nocb_deferred_wakeup_common.___tp_str
+ffffffc008cc3548 d __wake_nocb_gp.___tp_str
+ffffffc008cc3550 d __wake_nocb_gp.___tp_str.208
+ffffffc008cc3558 d rcu_exp_gp_seq_snap.___tp_str
+ffffffc008cc3560 d exp_funnel_lock.___tp_str
+ffffffc008cc3568 d exp_funnel_lock.___tp_str.227
+ffffffc008cc3570 d exp_funnel_lock.___tp_str.229
+ffffffc008cc3578 d sync_rcu_exp_select_cpus.___tp_str
+ffffffc008cc3580 d sync_rcu_exp_select_cpus.___tp_str.231
+ffffffc008cc3588 d __sync_rcu_exp_select_node_cpus.___tp_str
+ffffffc008cc3590 d rcu_exp_wait_wake.___tp_str
+ffffffc008cc3598 d rcu_exp_wait_wake.___tp_str.234
+ffffffc008cc35a0 d synchronize_rcu_expedited_wait.___tp_str
+ffffffc008cc35a8 d synchronize_rcu_expedited_wait.___tp_str.237
+ffffffc008cc35b0 d sync_exp_work_done.___tp_str
+ffffffc008cc35b8 d rcu_nocb_try_bypass.___tp_str
+ffffffc008cc35c0 d rcu_nocb_try_bypass.___tp_str.249
+ffffffc008cc35c8 d rcu_nocb_try_bypass.___tp_str.250
+ffffffc008cc35d0 d rcu_nocb_try_bypass.___tp_str.252
+ffffffc008cc35d8 d rcu_nocb_try_bypass.___tp_str.254
+ffffffc008cc35e0 d __call_rcu_nocb_wake.___tp_str
+ffffffc008cc35e8 d __call_rcu_nocb_wake.___tp_str.257
+ffffffc008cc35f0 d __call_rcu_nocb_wake.___tp_str.259
+ffffffc008cc35f8 d __call_rcu_nocb_wake.___tp_str.261
+ffffffc008cc3600 d __call_rcu_nocb_wake.___tp_str.263
+ffffffc008cc3608 d __call_rcu_nocb_wake.___tp_str.265
+ffffffc008cc3610 d nocb_gp_wait.___tp_str
+ffffffc008cc3618 d nocb_gp_wait.___tp_str.275
+ffffffc008cc3620 d nocb_gp_wait.___tp_str.277
+ffffffc008cc3628 d nocb_gp_wait.___tp_str.279
+ffffffc008cc3630 d nocb_gp_wait.___tp_str.281
+ffffffc008cc3638 d nocb_gp_wait.___tp_str.283
+ffffffc008cc3640 d nocb_gp_wait.___tp_str.285
+ffffffc008cc3648 d nocb_gp_sleep.___tp_str
+ffffffc008cc3650 d nocb_gp_sleep.___tp_str.288
+ffffffc008cc3658 d nocb_cb_wait.___tp_str
+ffffffc008cc3660 d nocb_cb_wait.___tp_str.291
+ffffffc008cc3668 d rcu_qs.___tp_str
+ffffffc008cc3670 d rcu_qs.___tp_str.333
+ffffffc008cc3678 d rcu_preempt_deferred_qs_irqrestore.___tp_str
+ffffffc008cc3680 d rcu_preempt_deferred_qs_irqrestore.___tp_str.335
+ffffffc008cc3688 d rcu_boost_kthread.___tp_str
+ffffffc008cc3690 d rcu_boost_kthread.___tp_str.339
+ffffffc008cc3698 d rcu_boost_kthread.___tp_str.341
+ffffffc008cc36a0 d rcu_boost_kthread.___tp_str.343
+ffffffc008cc36a8 d rcu_boost_kthread.___tp_str.345
+ffffffc008cc36b0 d tick_freeze.___tp_str
+ffffffc008cc36b8 d tick_unfreeze.___tp_str
+ffffffc008cc36c0 d ct_nmi_exit.___tp_str
+ffffffc008cc36c8 d ct_nmi_exit.___tp_str.1
+ffffffc008cc36d0 d ct_nmi_enter.___tp_str
+ffffffc008cc36d8 d ct_nmi_enter.___tp_str.4
+ffffffc008cc36e0 d ct_kernel_exit.___tp_str
+ffffffc008cc36e8 d ct_kernel_enter.___tp_str
+ffffffc008cc36f0 d syscore_suspend.___tp_str
+ffffffc008cc36f8 d syscore_suspend.___tp_str.4
+ffffffc008cc3700 d syscore_resume.___tp_str
+ffffffc008cc3708 d syscore_resume.___tp_str.10
+ffffffc008cc3710 d dpm_resume_early.___tp_str
+ffffffc008cc3718 d dpm_resume_early.___tp_str.4
+ffffffc008cc3720 d dpm_resume.___tp_str
+ffffffc008cc3728 d dpm_resume.___tp_str.7
+ffffffc008cc3730 d dpm_complete.___tp_str
+ffffffc008cc3738 d dpm_complete.___tp_str.9
+ffffffc008cc3740 d dpm_suspend_late.___tp_str
+ffffffc008cc3748 d dpm_suspend_late.___tp_str.13
+ffffffc008cc3750 d dpm_suspend.___tp_str
+ffffffc008cc3758 d dpm_suspend.___tp_str.16
+ffffffc008cc3760 d dpm_prepare.___tp_str
+ffffffc008cc3768 d dpm_prepare.___tp_str.20
+ffffffc008cc3770 d dpm_noirq_resume_devices.___tp_str
+ffffffc008cc3778 d dpm_noirq_resume_devices.___tp_str.27
+ffffffc008cc3780 d dpm_noirq_suspend_devices.___tp_str
+ffffffc008cc3788 d dpm_noirq_suspend_devices.___tp_str.61
+ffffffc008cc3790 D __start___bug_table
+ffffffc008cc3790 D __stop___tracepoint_str
+ffffffc008cd8a6c D __stop___bug_table
+ffffffc008cd9000 D __early_cpu_boot_status
+ffffffc008cd9000 D __mmuoff_data_start
+ffffffc008cd9800 D secondary_holding_pen_release
+ffffffc008cd9808 D __bss_start
+ffffffc008cd9808 D __mmuoff_data_end
+ffffffc008cd9808 D _edata
+ffffffc008cda000 b bm_pmd
+ffffffc008cdb000 b bm_pte
+ffffffc008cdc000 B empty_zero_page
+ffffffc008cdd000 B reset_devices
+ffffffc008cdd004 B initcall_debug
+ffffffc008cdd008 B saved_command_line
+ffffffc008cdd010 b static_command_line
+ffffffc008cdd018 b extra_init_args
+ffffffc008cdd020 b panic_later
+ffffffc008cdd028 b panic_param
+ffffffc008cdd030 b execute_command
+ffffffc008cdd038 b bootconfig_found
+ffffffc008cdd040 b initargs_offs
+ffffffc008cdd048 b extra_command_line
+ffffffc008cdd050 b initcall_calltime
+ffffffc008cdd058 B ROOT_DEV
+ffffffc008cdd05c b root_wait
+ffffffc008cdd05d b is_tmpfs
+ffffffc008cdd060 b out_file
+ffffffc008cdd068 b in_file
+ffffffc008cdd070 b in_pos
+ffffffc008cdd078 b out_pos
+ffffffc008cdd080 b decompress_error
+ffffffc008cdd088 B initrd_start
+ffffffc008cdd090 B initrd_end
+ffffffc008cdd098 B initrd_below_start_ok
+ffffffc008cdd09c b real_root_dev
+ffffffc008cdd0a0 b initramfs_cookie
+ffffffc008cdd0a8 b calibrate_delay.printed
+ffffffc008cdd0b0 B preset_lpj
+ffffffc008cdd0b8 B lpj_fine
+ffffffc008cdd0c0 b debug_hook_lock
+ffffffc008cdd0c4 b vl_config
+ffffffc008cdd0cc b tagged_addr_disabled
+ffffffc008cdd0d0 B pm_power_off
+ffffffc008cdd0d8 B mpidr_hash
+ffffffc008cdd0f8 b num_standard_resources
+ffffffc008cdd100 b standard_resources
+ffffffc008cdd108 B show_unhandled_signals
+ffffffc008cdd10c b die_lock
+ffffffc008cdd110 b undef_lock
+ffffffc008cdd114 b __die.die_counter
+ffffffc008cdd118 b boot_cpu_data
+ffffffc008cdd5f8 B __icache_flags
+ffffffc008cdd600 b reg_user_mask_modification
+ffffffc008cdd608 B arm64_mismatched_32bit_el0
+ffffffc008cdd618 b cpu_32bit_el0_mask
+ffffffc008cdd620 b __meltdown_safe
+ffffffc008cdd628 B boot_capabilities
+ffffffc008cdd638 b __kpti_forced
+ffffffc008cdd640 b kpti_ng_temp_alloc
+ffffffc008cdd648 b has_hw_dbm.detected
+ffffffc008cdd649 b lazy_init_32bit_cpu_features.boot_cpu_32bit_regs_overridden
+ffffffc008cdd650 B cpu_hwcaps
+ffffffc008cdd660 B arm64_use_ng_mappings
+ffffffc008cdd668 b applied_alternatives
+ffffffc008cdd678 b all_alternatives_applied
+ffffffc008cdd680 B secondary_data
+ffffffc008cdd690 b cpus_stuck_in_kernel
+ffffffc008cdd698 B irq_err_count
+ffffffc008cdd6a0 b crash_smp_send_stop.cpus_stopped
+ffffffc008cdd6a4 b waiting_for_crash_ipi
+ffffffc008cdd6a8 b cpu_release_addr
+ffffffc008cdd7a8 b spectre_v2_state
+ffffffc008cdd7ac b spectre_v4_state
+ffffffc008cdd7b0 b spectre_bhb_state
+ffffffc008cdd7b4 b spectre_bhb_loop_affected.max_bhb_k
+ffffffc008cdd7b8 b system_bhb_mitigations
+ffffffc008cdd7c0 b spectre_v4_enable_hw_mitigation.undef_hook_registered
+ffffffc008cdd7c4 b spectre_v4_enable_hw_mitigation.hook_lock
+ffffffc008cdd7c8 b is_spectre_bhb_fw_affected.system_affected
+ffffffc008cdd7cc b patch_lock
+ffffffc008cdd7d0 b get_plt_entry.br
+ffffffc008cdd7d4 b armv8_pmu_register_sysctl_table.tbl_registered
+ffffffc008cdd7d8 b core_num_brps
+ffffffc008cdd7dc b core_num_wrps
+ffffffc008cdd7e0 b hw_breakpoint_restore
+ffffffc008cdd7e8 B sleep_save_stash
+ffffffc008cdd7f0 B paravirt_steal_enabled
+ffffffc008cdd800 b steal_acc
+ffffffc008cdd808 B paravirt_steal_rq_enabled
+ffffffc008cdd818 B mte_async_or_asymm_mode
+ffffffc008cdd828 b ioremap_guard
+ffffffc008cdd830 b guard_granule
+ffffffc008cdd838 b ioremap_guard_key
+ffffffc008cdd848 b ioremap_guard_array
+ffffffc008cdd858 b memshare_granule_sz
+ffffffc008cdd860 b memshare_granule_sz
+ffffffc008cdd868 b swapper_pgdir_lock
+ffffffc008cdd870 b map_kernel.vmlinux_text
+ffffffc008cdd8b0 b map_kernel.vmlinux_rodata
+ffffffc008cdd8f0 b map_kernel.vmlinux_inittext
+ffffffc008cdd930 b map_kernel.vmlinux_initdata
+ffffffc008cdd970 b map_kernel.vmlinux_data
+ffffffc008cdd9b0 b asid_bits
+ffffffc008cdd9b8 b asid_generation
+ffffffc008cdd9c0 b cpu_asid_lock
+ffffffc008cdd9c8 b tlb_flush_pending
+ffffffc008cdd9d0 b pinned_asid_map
+ffffffc008cdd9d8 b nr_pinned_asids
+ffffffc008cdd9e0 b max_pinned_asids
+ffffffc008cdd9e8 b asid_map
+ffffffc008cdd9f0 b mte_pages
+ffffffc008cdda00 b vm_area_cachep
+ffffffc008cdda08 b mm_cachep
+ffffffc008cdda10 b task_struct_cachep
+ffffffc008cdda18 b max_threads
+ffffffc008cdda20 B sighand_cachep
+ffffffc008cdda28 b signal_cachep
+ffffffc008cdda30 B files_cachep
+ffffffc008cdda38 B fs_cachep
+ffffffc008cdda40 b vma_lock_cachep
+ffffffc008cdda48 B total_forks
+ffffffc008cdda50 B nr_threads
+ffffffc008cdda54 b copy_signal.__key
+ffffffc008cdda54 b copy_signal.__key.38
+ffffffc008cdda54 b copy_signal.__key.40
+ffffffc008cdda54 b futex_init_task.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b init_completion.__key
+ffffffc008cdda54 b mmap_init_lock.__key
+ffffffc008cdda54 B panic_on_taint_nousertaint
+ffffffc008cdda54 b sighand_ctor.__key
+ffffffc008cdda54 b vma_lock_alloc.__key
+ffffffc008cdda58 B panic_notifier_list
+ffffffc008cdda68 B panic_blink
+ffffffc008cdda70 b warn_count
+ffffffc008cdda74 b panic.buf
+ffffffc008cdde74 B crash_kexec_post_notifiers
+ffffffc008cdde75 b print_tainted.buf
+ffffffc008cdde98 b tainted_mask.llvm.13573170903030736903
+ffffffc008cddea0 B panic_on_taint
+ffffffc008cddea8 b pause_on_oops_flag
+ffffffc008cddeb0 B panic_print
+ffffffc008cddeb8 b pause_on_oops
+ffffffc008cddebc b do_oops_enter_exit.spin_counter
+ffffffc008cddec0 b pause_on_oops_lock
+ffffffc008cddec4 b cpu_hotplug_disabled
+ffffffc008cddec8 B cpus_booted_once_mask
+ffffffc008cdded0 b frozen_cpus
+ffffffc008cdded8 B cpuhp_tasks_frozen
+ffffffc008cddedc B __boot_cpu_id
+ffffffc008cddee0 b oops_count
+ffffffc008cddee4 b check_stack_usage.low_water_lock
+ffffffc008cddee8 b resource_lock.llvm.15783908483843992535
+ffffffc008cddef0 b iomem_inode
+ffffffc008cddef8 b strict_iomem_checks
+ffffffc008cddefc b reserve_setup.reserved
+ffffffc008cddf00 b reserve_setup.reserve
+ffffffc008cde080 b iomem_init_inode.iomem_vfs_mount
+ffffffc008cde088 b iomem_init_inode.iomem_fs_cnt
+ffffffc008cde08c B sysctl_legacy_va_layout
+ffffffc008cde090 b dev_table
+ffffffc008cde0d0 b uidhash_lock
+ffffffc008cde0d8 b uidhash_table
+ffffffc008cde4d8 b uid_cachep
+ffffffc008cde4e0 b sigqueue_cachep.llvm.5548012332687123193
+ffffffc008cde4e0 b user_epoll_alloc.__key
+ffffffc008cde4e8 b running_helpers
+ffffffc008cde4ec b umh_sysctl_lock
+ffffffc008cde4f0 b wq_disable_numa
+ffffffc008cde4f4 b wq_power_efficient
+ffffffc008cde4f8 b wq_debug_force_rr_cpu
+ffffffc008cde4f9 b wq_online
+ffffffc008cde4fa b alloc_workqueue.__key
+ffffffc008cde4fc b wq_mayday_lock
+ffffffc008cde500 b workqueue_freezing
+ffffffc008cde508 b wq_unbound_cpumask
+ffffffc008cde510 b pwq_cache
+ffffffc008cde518 b unbound_std_wq_attrs
+ffffffc008cde528 b ordered_wq_attrs
+ffffffc008cde538 b unbound_pool_hash
+ffffffc008cde738 b wq_select_unbound_cpu.printed_dbg_warning
+ffffffc008cde740 b manager_wait
+ffffffc008cde748 b restore_unbound_workers_cpumask.cpumask
+ffffffc008cde750 b wq_watchdog_timer
+ffffffc008cde788 b alloc_pid.__key
+ffffffc008cde788 b work_exited
+ffffffc008cde798 B module_kset
+ffffffc008cde7a0 B module_sysfs_initialized
+ffffffc008cde7a4 b kmalloced_params_lock
+ffffffc008cde7a8 b kthread_create_lock
+ffffffc008cde7b0 B kthreadd_task
+ffffffc008cde7b8 b nsproxy_cachep.llvm.7598746512580425016
+ffffffc008cde7c0 b die_chain
+ffffffc008cde7c0 b srcu_init_notifier_head.__key
+ffffffc008cde7d0 B kernel_kobj
+ffffffc008cde7d8 B rcu_expedited
+ffffffc008cde7dc B rcu_normal
+ffffffc008cde7e0 b cred_jar.llvm.12911736169370296521
+ffffffc008cde7e8 B reboot_mode
+ffffffc008cde7f0 b restart_handler_list.llvm.8057704619303983170
+ffffffc008cde800 b power_off_handler_list
+ffffffc008cde810 b platform_power_off_handler
+ffffffc008cde818 b poweroff_force
+ffffffc008cde81c B reboot_force
+ffffffc008cde820 b platform_sys_off_handler
+ffffffc008cde858 B cad_pid
+ffffffc008cde860 B reboot_cpu
+ffffffc008cde864 b entry_count
+ffffffc008cde868 b entry_count
+ffffffc008cde86c b async_lock
+ffffffc008cde870 b ucounts_hashtable
+ffffffc008ce0870 b ucounts_lock
+ffffffc008ce0878 b ue_zero
+ffffffc008ce0880 b user_namespace_sysctl_init.user_header
+ffffffc008ce0888 b user_namespace_sysctl_init.empty
+ffffffc008ce08c8 b cpu_resched_latency.warned_once
+ffffffc008ce08cc b num_cpus_frozen
+ffffffc008ce08d0 B sched_schedstats
+ffffffc008ce08e0 B sched_numa_balancing
+ffffffc008ce0900 b nohz
+ffffffc008ce0928 B sched_thermal_decay_shift
+ffffffc008ce092c b balancing
+ffffffc008ce0930 b sched_clock_irqtime.llvm.5705703397380067588
+ffffffc008ce0938 b dl_generation
+ffffffc008ce0940 B def_rt_bandwidth
+ffffffc008ce09a8 b sched_clock_running.llvm.10092733969648268298
+ffffffc008ce09b8 b debugfs_sched
+ffffffc008ce09c0 b sd_sysctl_cpus
+ffffffc008ce09c8 b sd_dentry
+ffffffc008ce09d0 B avenrun
+ffffffc008ce09e8 b sched_domains_tmpmask
+ffffffc008ce09f0 b sched_domains_tmpmask2
+ffffffc008ce09f8 b fallback_doms
+ffffffc008ce0a00 b ndoms_cur
+ffffffc008ce0a08 b doms_cur
+ffffffc008ce0a10 b dattr_cur
+ffffffc008ce0a18 b housekeeping
+ffffffc008ce0a68 B sched_domain_level_max
+ffffffc008ce0a70 b calc_load_nohz
+ffffffc008ce0a80 b calc_load_idx
+ffffffc008ce0a84 b group_init.__key
+ffffffc008ce0a84 b group_init.__key.295
+ffffffc008ce0a88 B def_root_domain
+ffffffc008ce11d0 B calc_load_update
+ffffffc008ce11d8 B psi_disabled
+ffffffc008ce11e8 B calc_load_tasks
+ffffffc008ce11f0 B sched_asym_cpucapacity
+ffffffc008ce1200 B housekeeping_overridden
+ffffffc008ce1210 b __percpu_init_rwsem.__key
+ffffffc008ce1210 b rt_mutex_adjust_prio_chain.prev_max
+ffffffc008ce1214 b pm_qos_lock
+ffffffc008ce1218 b freq_constraints_init.__key
+ffffffc008ce1218 b freq_constraints_init.__key.1
+ffffffc008ce1218 B pm_wq
+ffffffc008ce1220 B power_kobj
+ffffffc008ce1228 b orig_fgconsole
+ffffffc008ce122c b orig_kmsg
+ffffffc008ce1230 B pm_suspend_target_state
+ffffffc008ce1234 B pm_suspend_global_flags
+ffffffc008ce1238 b s2idle_ops
+ffffffc008ce1240 b s2idle_lock
+ffffffc008ce1248 b suspend_ops
+ffffffc008ce1250 B pm_states
+ffffffc008ce1270 B mem_sleep_states
+ffffffc008ce1290 b wakelocks_tree
+ffffffc008ce1298 b wakeup_reason_lock
+ffffffc008ce129c b wakeup_reason
+ffffffc008ce12a0 b capture_reasons
+ffffffc008ce12a8 b wakeup_irq_nodes_cache
+ffffffc008ce12b0 b non_irq_wake_reason
+ffffffc008ce13b0 b kobj
+ffffffc008ce13b8 b last_monotime
+ffffffc008ce13c0 b last_stime
+ffffffc008ce13c8 b curr_monotime
+ffffffc008ce13d0 b curr_stime
+ffffffc008ce13d8 B console_drivers
+ffffffc008ce13e0 B console_set_on_cmdline
+ffffffc008ce13e8 b clear_seq
+ffffffc008ce1400 b __log_buf
+ffffffc008d01400 b printk_rb_dynamic
+ffffffc008d01458 b syslog_seq
+ffffffc008d01460 b syslog_partial
+ffffffc008d01468 b syslog_time
+ffffffc008d0146c b printk_console_no_auto_verbose
+ffffffc008d01470 b console_suspended
+ffffffc008d01474 b console_locked.llvm.5438971605539506167
+ffffffc008d01478 b dump_list_lock
+ffffffc008d0147c b always_kmsg_dump
+ffffffc008d01480 b printk_cpu_sync_nested
+ffffffc008d01484 b devkmsg_open.__key
+ffffffc008d01484 b printk_count_nmi_early
+ffffffc008d01485 b printk_count_early
+ffffffc008d01488 b console_owner_lock
+ffffffc008d01490 b console_owner
+ffffffc008d01498 b console_waiter
+ffffffc008d0149c b console_msg_format
+ffffffc008d014a0 b console_cmdline
+ffffffc008d015a0 b console_flush_all.dropped_text
+ffffffc008d015e0 b console_flush_all.ext_text
+ffffffc008d035e0 b console_flush_all.text
+ffffffc008d039e0 b console_emit_next_record.panic_console_dropped
+ffffffc008d039e4 B oops_in_progress
+ffffffc008d039e8 B dmesg_restrict
+ffffffc008d039f0 b allocated_irqs
+ffffffc008d03e00 b irq_kobj_base
+ffffffc008d03e08 b alloc_desc.__key
+ffffffc008d03e08 b alloc_desc.__key.5
+ffffffc008d03e08 B force_irqthreads_key
+ffffffc008d03e18 b irq_do_set_affinity.tmp_mask_lock
+ffffffc008d03e20 b irq_do_set_affinity.tmp_mask
+ffffffc008d03e28 b irq_setup_affinity.mask_lock
+ffffffc008d03e30 b irq_setup_affinity.mask
+ffffffc008d03e38 B irq_default_affinity
+ffffffc008d03e40 b irq_poll_cpu
+ffffffc008d03e44 b irq_poll_active
+ffffffc008d03e48 b irqs_resend
+ffffffc008d04258 b irq_default_domain
+ffffffc008d04260 b __irq_domain_create.unknown_domains
+ffffffc008d04264 b __irq_domain_create.__key
+ffffffc008d04268 b root_irq_dir
+ffffffc008d04270 b show_interrupts.prec
+ffffffc008d04274 B no_irq_affinity
+ffffffc008d04278 b msi_dev_attrs
+ffffffc008d04278 b msi_setup_device_data.__key
+ffffffc008d04280 b rcu_normal_after_boot
+ffffffc008d04284 b rcu_task_cb_adjust
+ffffffc008d04285 b init_srcu_struct_fields.__key
+ffffffc008d04285 b init_srcu_struct_fields.__key.10
+ffffffc008d04285 b init_srcu_struct_fields.__key.12
+ffffffc008d04285 b rcu_sync_init.__key.llvm.15597034190159369793
+ffffffc008d04288 b dump_tree
+ffffffc008d0428c b rcu_fanout_exact
+ffffffc008d04290 b gp_preinit_delay
+ffffffc008d04294 b gp_init_delay
+ffffffc008d04298 b gp_cleanup_delay
+ffffffc008d042a0 b jiffies_to_sched_qs
+ffffffc008d042a8 b rcu_kick_kthreads
+ffffffc008d042b0 b rcu_gp_slow_suppress
+ffffffc008d042b8 b rcu_init_geometry.old_nr_cpu_ids
+ffffffc008d042c0 b rcu_init_geometry.initialized
+ffffffc008d042c8 B rcu_gp_wq
+ffffffc008d042d0 b sysrq_rcu
+ffffffc008d042d8 b rcu_nocb_mask
+ffffffc008d042e0 B rcu_exp_gp_kworker
+ffffffc008d042e8 B rcu_exp_par_gp_kworker
+ffffffc008d042f0 b check_cpu_stall.___rfd_beenhere
+ffffffc008d042f4 b check_cpu_stall.___rfd_beenhere.81
+ffffffc008d042f8 b rcu_stall_kick_kthreads.___rfd_beenhere
+ffffffc008d042fc b panic_on_rcu_stall.cpu_stall
+ffffffc008d04300 B dma_default_coherent
+ffffffc008d04300 b rcu_boot_init_nocb_percpu_data.__key
+ffffffc008d04300 b rcu_boot_init_nocb_percpu_data.__key.199
+ffffffc008d04300 b rcu_boot_init_nocb_percpu_data.__key.201
+ffffffc008d04300 b rcu_boot_init_nocb_percpu_data.__key.203
+ffffffc008d04300 b rcu_init_one.__key
+ffffffc008d04300 b rcu_init_one.__key.182
+ffffffc008d04300 b rcu_init_one.__key.184
+ffffffc008d04300 b rcu_init_one.__key.186
+ffffffc008d04300 b rcu_init_one.__key.188
+ffffffc008d04300 b rcu_init_one.__key.190
+ffffffc008d04300 b rcu_init_one.__key.192
+ffffffc008d04300 b rcu_init_one_nocb.__key
+ffffffc008d04300 b rcu_init_one_nocb.__key.195
+ffffffc008d04308 B io_tlb_default_mem
+ffffffc008d04358 b swiotlb_force_bounce
+ffffffc008d04359 b swiotlb_force_disable
+ffffffc008d04360 b default_nareas
+ffffffc008d04368 B swiotlb_unencrypted_base
+ffffffc008d04370 b atomic_pool_size
+ffffffc008d04378 b atomic_pool_work
+ffffffc008d043a8 b pool_size_dma
+ffffffc008d043b0 b pool_size_dma32
+ffffffc008d043b8 b pool_size_kernel
+ffffffc008d043c0 B modules_disabled
+ffffffc008d043c8 b module_blacklist
+ffffffc008d043d0 b async_probe
+ffffffc008d043d4 b last_unloaded_module
+ffffffc008d04428 b init_free_list
+ffffffc008d04430 B freezer_active
+ffffffc008d04430 b init_param_lock.__key.llvm.7586756559919157470
+ffffffc008d04440 B pm_nosig_freezing
+ffffffc008d04444 B pm_freezing
+ffffffc008d04448 b freezer_lock
+ffffffc008d0444c b prof_shift
+ffffffc008d04450 b prof_len
+ffffffc008d04458 b prof_cpu_mask
+ffffffc008d04460 b prof_buffer
+ffffffc008d04468 B sys_tz
+ffffffc008d04470 b do_sys_settimeofday64.firsttime
+ffffffc008d04478 b timers_nohz_active
+ffffffc008d04488 B timers_migration_enabled
+ffffffc008d04498 B timekeeper_lock
+ffffffc008d044c0 b tk_core.llvm.17293707598839633841
+ffffffc008d045e0 b pvclock_gtod_chain
+ffffffc008d045e8 b persistent_clock_exists.llvm.17293707598839633841
+ffffffc008d045e9 b suspend_timing_needed.llvm.17293707598839633841
+ffffffc008d045f0 b timekeeping_suspend_time
+ffffffc008d04600 b timekeeping_suspend.old_delta.0
+ffffffc008d04608 b timekeeping_suspend.old_delta.1
+ffffffc008d04610 b cycles_at_suspend
+ffffffc008d04618 b shadow_timekeeper
+ffffffc008d04730 b halt_fast_timekeeper.tkr_dummy
+ffffffc008d04768 B persistent_clock_is_local
+ffffffc008d04770 b time_adjust
+ffffffc008d04778 b tick_length_base
+ffffffc008d04780 b tick_length.llvm.5081787758558097107
+ffffffc008d04788 b time_offset
+ffffffc008d04790 b time_state
+ffffffc008d04798 b sync_hrtimer
+ffffffc008d047e0 b time_freq
+ffffffc008d047e8 B tick_nsec
+ffffffc008d047f0 b ntp_tick_adj
+ffffffc008d047f8 b time_reftime
+ffffffc008d04800 b suspend_clocksource
+ffffffc008d04808 b suspend_start
+ffffffc008d04810 b curr_clocksource
+ffffffc008d04818 b finished_booting
+ffffffc008d0481c b override_name
+ffffffc008d04840 b refined_jiffies
+ffffffc008d048d8 b rtcdev_lock
+ffffffc008d048e0 b rtcdev
+ffffffc008d048e8 b alarm_bases
+ffffffc008d04948 b freezer_delta_lock
+ffffffc008d04950 b freezer_delta
+ffffffc008d04958 b freezer_expires
+ffffffc008d04960 b freezer_alarmtype
+ffffffc008d04968 b rtctimer
+ffffffc008d049a8 b posix_timers_cache
+ffffffc008d049b0 b hash_lock
+ffffffc008d049b8 b posix_timers_hashtable
+ffffffc008d059b8 b do_cpu_nanosleep.zero_it
+ffffffc008d059d8 b clockevents_lock.llvm.5203488853855759990
+ffffffc008d059d8 b posix_clock_register.__key
+ffffffc008d059dc b tick_freeze_lock
+ffffffc008d059e0 b tick_freeze_depth
+ffffffc008d059e8 B tick_next_period
+ffffffc008d059f0 b tick_broadcast_device.llvm.11324597401090441889
+ffffffc008d05a00 b tick_broadcast_mask.llvm.11324597401090441889
+ffffffc008d05a08 b tick_broadcast_on
+ffffffc008d05a10 b tick_broadcast_forced
+ffffffc008d05a18 b tick_broadcast_oneshot_mask.llvm.11324597401090441889
+ffffffc008d05a20 b tick_broadcast_force_mask
+ffffffc008d05a28 b tmpmask
+ffffffc008d05a30 b tick_broadcast_pending_mask
+ffffffc008d05a38 b bctimer.llvm.733442964656157889
+ffffffc008d05a80 b sched_clock_timer
+ffffffc008d05ac8 b sched_skew_tick
+ffffffc008d05ad0 b last_jiffies_update
+ffffffc008d05ad8 b sleep_time_bin
+ffffffc008d05b58 b get_inode_sequence_number.i_seq
+ffffffc008d05b60 b __flush_smp_call_function_queue.warned
+ffffffc008d05b68 B vmcoreinfo_data
+ffffffc008d05b70 B vmcoreinfo_size
+ffffffc008d05b78 b vmcoreinfo_data_safecopy
+ffffffc008d05b80 B vmcoreinfo_note
+ffffffc008d05b88 B __kexec_lock
+ffffffc008d05b8c B kexec_in_progress
+ffffffc008d05b90 B crash_notes
+ffffffc008d05b98 B kexec_image
+ffffffc008d05ba0 B kexec_load_disabled
+ffffffc008d05ba8 B kexec_crash_image
+ffffffc008d05bb0 b stop_machine_initialized
+ffffffc008d05bb1 b stop_cpus_in_progress
+ffffffc008d05bb4 B audit_enabled
+ffffffc008d05bb8 B audit_ever_enabled
+ffffffc008d05bc0 b auditd_conn
+ffffffc008d05bc8 b audit_cmd_mutex.llvm.17717076449897465362
+ffffffc008d05c00 b audit_log_lost.last_msg
+ffffffc008d05c08 b audit_log_lost.lock
+ffffffc008d05c0c b audit_lost
+ffffffc008d05c10 b audit_rate_limit
+ffffffc008d05c14 b audit_serial.serial
+ffffffc008d05c18 b audit_initialized
+ffffffc008d05c20 b audit_queue
+ffffffc008d05c38 b audit_backlog_wait_time_actual
+ffffffc008d05c3c b session_id
+ffffffc008d05c40 b audit_sig_sid
+ffffffc008d05c48 B audit_inode_hash
+ffffffc008d05e48 b audit_net_id
+ffffffc008d05e50 b audit_buffer_cache
+ffffffc008d05e58 b audit_retry_queue
+ffffffc008d05e70 b audit_hold_queue
+ffffffc008d05e88 b audit_default
+ffffffc008d05e88 b audit_init.__key
+ffffffc008d05e90 b kauditd_task
+ffffffc008d05e98 b auditd_conn_lock
+ffffffc008d05ea0 b audit_rate_check.last_check
+ffffffc008d05ea8 b audit_rate_check.messages
+ffffffc008d05eac b audit_rate_check.lock
+ffffffc008d05eb0 b classes
+ffffffc008d05f30 B audit_n_rules
+ffffffc008d05f34 B audit_signals
+ffffffc008d05f38 b audit_watch_group
+ffffffc008d05f40 b audit_fsnotify_group.llvm.9731230321657724380
+ffffffc008d05f48 b prune_thread
+ffffffc008d05f50 b chunk_hash_heads
+ffffffc008d06750 b audit_tree_group
+ffffffc008d06758 b reset_hung_task
+ffffffc008d06760 b watchdog_task
+ffffffc008d06768 b hung_detector_suspended
+ffffffc008d06769 b hung_task_show_all_bt
+ffffffc008d0676a b hung_task_call_panic
+ffffffc008d06770 b soft_lockup_nmi_warn
+ffffffc008d06778 b seccomp_prepare_filter.__key
+ffffffc008d06778 b seccomp_prepare_filter.__key.3
+ffffffc008d06778 b sys_tracepoint_refcount
+ffffffc008d0677c b ok_to_free_tracepoints
+ffffffc008d06780 b early_probes
+ffffffc008d06788 b tp_transition_snapshot.0
+ffffffc008d06790 b tp_transition_snapshot.1
+ffffffc008d06798 b tp_transition_snapshot.2
+ffffffc008d067a0 b tp_transition_snapshot.3
+ffffffc008d067a8 b tp_transition_snapshot.4
+ffffffc008d067b0 b tp_transition_snapshot.5
+ffffffc008d067c0 b trace_clock_struct
+ffffffc008d067d0 b trace_counter
+ffffffc008d067d8 b __ring_buffer_alloc.__key
+ffffffc008d067d8 b __ring_buffer_alloc.__key.14
+ffffffc008d067d8 b rb_add_timestamp.once
+ffffffc008d067d8 b rb_allocate_cpu_buffer.__key
+ffffffc008d067d8 b rb_allocate_cpu_buffer.__key.18
+ffffffc008d067d8 b ring_buffer_alloc_ext.__key
+ffffffc008d067dc b tracing_disabled.llvm.6405989516662514108
+ffffffc008d067e0 b dummy_tracer_opt
+ffffffc008d067f0 b default_bootup_tracer
+ffffffc008d067f8 b trace_cmdline_lock
+ffffffc008d067fc b trace_buffered_event_ref
+ffffffc008d06800 b temp_buffer
+ffffffc008d06808 B tracepoint_print_iter
+ffffffc008d06810 b tracepoint_printk_key
+ffffffc008d06820 b trace_event_exports_enabled
+ffffffc008d06830 b trace_function_exports_enabled
+ffffffc008d06840 b buffers_allocated.llvm.6405989516662514108
+ffffffc008d06848 b trace_no_verify
+ffffffc008d06858 b static_fmt_buf
+ffffffc008d068d8 b static_temp_buf
+ffffffc008d06958 b tgid_map
+ffffffc008d06960 b tgid_map_max
+ffffffc008d06968 B ring_buffer_expanded
+ffffffc008d06970 b ftrace_dump.iter
+ffffffc008d08a98 b ftrace_dump.dump_running
+ffffffc008d08a9c b snapshot_at_boot
+ffffffc008d08aa0 b trace_marker_exports_enabled
+ffffffc008d08ab0 b savedcmd
+ffffffc008d08ab8 b tracepoint_iter_lock
+ffffffc008d08ac0 b trace_percpu_buffer
+ffffffc008d08ac8 b tracer_options_updated
+ffffffc008d08ad0 b trace_instance_dir
+ffffffc008d08ad8 b __tracing_open.__key
+ffffffc008d08ad8 b allocate_trace_buffer.__key
+ffffffc008d08ad8 B ftrace_dump_on_oops
+ffffffc008d08ad8 b trace_access_lock_init.__key
+ffffffc008d08ad8 b tracer_alloc_buffers.__key
+ffffffc008d08ad8 b tracing_open_pipe.__key
+ffffffc008d08adc B __disable_trace_on_warning
+ffffffc008d08ae0 B tracepoint_printk
+ffffffc008d08ae4 b register_stat_tracer.__key
+ffffffc008d08ae8 b stat_dir
+ffffffc008d08af0 b sched_cmdline_ref
+ffffffc008d08af4 b sched_tgid_ref
+ffffffc008d08af8 b eventdir_initialized
+ffffffc008d08b00 b field_cachep
+ffffffc008d08b08 b file_cachep
+ffffffc008d08b10 b perf_trace_buf
+ffffffc008d08b30 b total_ref_count
+ffffffc008d08b38 b ustring_per_cpu
+ffffffc008d08b40 b last_cmd
+ffffffc008d08b48 b last_cmd
+ffffffc008d08b50 b hist_field_name.full_name
+ffffffc008d08c50 b last_cmd_loc
+ffffffc008d08d50 b trace_probe_log.llvm.4934871826468240943
+ffffffc008d08d68 b uprobe_cpu_buffer
+ffffffc008d08d70 b uprobe_buffer_refcnt
+ffffffc008d08d74 b uprobe_buffer_init.__key
+ffffffc008d08d78 b cpu_pm_notifier.llvm.18308584086862763860
+ffffffc008d08d88 B bpf_empty_prog_array
+ffffffc008d08d88 b bpf_prog_alloc_no_stats.__key
+ffffffc008d08d88 b bpf_prog_alloc_no_stats.__key.1
+ffffffc008d08da0 B bpf_stats_enabled_key
+ffffffc008d08db0 b scs_check_usage.highest
+ffffffc008d08db8 B perf_sched_events
+ffffffc008d08dc8 b __report_avg
+ffffffc008d08dd0 b __report_allowed
+ffffffc008d08dd8 b __empty_callchain
+ffffffc008d08de0 b pmu_idr
+ffffffc008d08df8 b pmu_bus_running
+ffffffc008d08dfc b perf_pmu_register.hw_context_taken
+ffffffc008d08e00 b perf_online_mask
+ffffffc008d08e08 b pmus_srcu
+ffffffc008d08fe8 b perf_event_cache
+ffffffc008d08fe8 b perf_event_init_task.__key
+ffffffc008d08ff0 B perf_swevent_enabled
+ffffffc008d090b0 b perf_sched_count
+ffffffc008d090b4 b __perf_event_init_context.__key
+ffffffc008d090b4 b perf_event_alloc.__key
+ffffffc008d090b4 b perf_event_alloc.__key.37
+ffffffc008d090b4 b perf_event_alloc.__key.39
+ffffffc008d090b8 b perf_event_id
+ffffffc008d090c0 b nr_callchain_events
+ffffffc008d090c0 b perf_event_init_all_cpus.__key
+ffffffc008d090c8 b callchain_cpus_entries
+ffffffc008d090d0 b cpu_pinned
+ffffffc008d090e0 b tsk_pinned_all
+ffffffc008d090f0 b task_bps_ht
+ffffffc008d09198 b uprobes_tree
+ffffffc008d091a0 b uprobes_mmap_mutex
+ffffffc008d09410 b uprobes_init.__key
+ffffffc008d09410 b uprobes_treelock
+ffffffc008d09414 b __create_xol_area.__key
+ffffffc008d09414 b alloc_uprobe.__key
+ffffffc008d09414 b alloc_uprobe.__key.11
+ffffffc008d09414 b mempool_init_node.__key
+ffffffc008d09414 b oom_victims
+ffffffc008d09414 b pagecache_init.__key
+ffffffc008d09418 b sysctl_oom_kill_allocating_task
+ffffffc008d09420 b oom_reaper_th
+ffffffc008d09428 b oom_reaper_list
+ffffffc008d09430 b oom_reaper_lock
+ffffffc008d09434 b sysctl_panic_on_oom
+ffffffc008d09438 B laptop_mode
+ffffffc008d0943c b bdi_min_ratio
+ffffffc008d09440 b vm_dirty_bytes
+ffffffc008d09448 b dirty_background_bytes
+ffffffc008d09450 B global_wb_domain
+ffffffc008d094d8 B page_cluster
+ffffffc008d094dc b __lru_add_drain_all.lru_drain_gen
+ffffffc008d094e0 b __lru_add_drain_all.has_work
+ffffffc008d094e8 B lru_disable_count
+ffffffc008d094f0 B lru_gen_caps
+ffffffc008d09520 b shm_mnt.llvm.16762457728046073858
+ffffffc008d09528 b shmem_encode_fh.lock
+ffffffc008d09528 b shmem_fill_super.__key
+ffffffc008d09530 b shmem_inode_cachep
+ffffffc008d09540 B vm_committed_as
+ffffffc008d09568 B mm_percpu_wq
+ffffffc008d09570 B noop_backing_dev_info
+ffffffc008d09958 b bdi_class
+ffffffc008d09958 b bdi_init.__key
+ffffffc008d09960 b bdi_id_cursor
+ffffffc008d09968 b bdi_tree
+ffffffc008d09970 b bdi_class_init.__key
+ffffffc008d09970 b bdi_debug_root
+ffffffc008d09978 B bdi_lock
+ffffffc008d09978 b wb_init.__key
+ffffffc008d09980 B bdi_wq
+ffffffc008d09988 B mm_kobj
+ffffffc008d09990 B pcpu_lock
+ffffffc008d09994 B pcpu_nr_empty_pop_pages
+ffffffc008d09998 b pcpu_nr_populated
+ffffffc008d099a0 b pcpu_atomic_alloc_failed
+ffffffc008d099a8 b pcpu_get_pages.pages
+ffffffc008d099b0 b slab_nomerge
+ffffffc008d099b8 B kmem_cache
+ffffffc008d099c0 B slab_state
+ffffffc008d099c8 B shadow_nodes
+ffffffc008d099d0 B max_mapnr
+ffffffc008d099d0 b shadow_nodes_key
+ffffffc008d099d8 B mem_map
+ffffffc008d099e0 b print_bad_pte.resume
+ffffffc008d099e8 b print_bad_pte.nr_shown
+ffffffc008d099f0 b print_bad_pte.nr_unshown
+ffffffc008d099f8 B high_memory
+ffffffc008d09a00 b shmlock_user_lock
+ffffffc008d09a04 b ignore_rlimit_data
+ffffffc008d09a05 b mmap_init.__key.llvm.13466520832302769783
+ffffffc008d09a08 b anon_vma_cachep.llvm.12217046244500857986
+ffffffc008d09a10 b anon_vma_chain_cachep.llvm.12217046244500857986
+ffffffc008d09a18 b anon_vma_ctor.__key
+ffffffc008d09a18 b nr_vmalloc_pages
+ffffffc008d09a20 b vmap_area_lock
+ffffffc008d09a28 b vmap_area_root
+ffffffc008d09a30 b vmap_area_cachep
+ffffffc008d09a38 b free_vmap_area_lock
+ffffffc008d09a40 b free_vmap_area_root
+ffffffc008d09a48 b vmap_blocks
+ffffffc008d09a58 b vmap_lazy_nr
+ffffffc008d09a60 b purge_vmap_area_lock
+ffffffc008d09a68 b purge_vmap_area_root
+ffffffc008d09a70 b saved_gfp_mask
+ffffffc008d09a74 B movable_zone
+ffffffc008d09a78 b setup_per_zone_wmarks.lock
+ffffffc008d09a7c B percpu_pagelist_high_fraction
+ffffffc008d09a80 b bad_page.resume
+ffffffc008d09a88 b bad_page.nr_shown
+ffffffc008d09a90 b bad_page.nr_unshown
+ffffffc008d09a98 b __drain_all_pages.cpus_with_pcps
+ffffffc008d09aa0 b zonelist_update_seq
+ffffffc008d09aa8 b overlap_memmap_init.r
+ffffffc008d09ab0 B init_on_free
+ffffffc008d09ab0 b pgdat_init_internals.__key
+ffffffc008d09ab0 b pgdat_init_internals.__key.60
+ffffffc008d09ab0 b pgdat_init_internals.__key.62
+ffffffc008d09ab0 b pgdat_init_kcompactd.__key
+ffffffc008d09ab0 b pgdat_kswapd_lock_init.__key
+ffffffc008d09ac0 B mirrored_kernelcore
+ffffffc008d09ac8 B page_alloc_shuffle_key
+ffffffc008d09ad8 b shuffle_param
+ffffffc008d09ae0 b shuffle_pick_tail.rand
+ffffffc008d09ae8 b shuffle_pick_tail.rand_bits
+ffffffc008d09af0 b memblock_memory_init_regions
+ffffffc008d0a6f0 b memblock_reserved_init_regions
+ffffffc008d0b2f0 b memblock_debug
+ffffffc008d0b2f1 b system_has_some_mirror
+ffffffc008d0b2f4 b memblock_can_resize.llvm.9043525312468000573
+ffffffc008d0b2f8 B max_possible_pfn
+ffffffc008d0b300 b memblock_memory_in_slab
+ffffffc008d0b304 b memblock_reserved_in_slab
+ffffffc008d0b308 B min_low_pfn
+ffffffc008d0b310 B max_pfn
+ffffffc008d0b318 B max_low_pfn
+ffffffc008d0b320 B mhp_default_online_type
+ffffffc008d0b324 B movable_node_enabled
+ffffffc008d0b328 b sio_pool
+ffffffc008d0b330 b swapin_nr_pages.prev_offset
+ffffffc008d0b338 b swapin_nr_pages.last_readahead_pages
+ffffffc008d0b33c b swap_avail_lock
+ffffffc008d0b340 b swap_avail_heads
+ffffffc008d0b348 b nr_swapfiles
+ffffffc008d0b34c b swap_lock
+ffffffc008d0b350 B swap_info
+ffffffc008d0b430 B swapfile_maximum_size
+ffffffc008d0b438 B swap_migration_ad_supported
+ffffffc008d0b43c b proc_poll_event
+ffffffc008d0b440 B nr_swap_pages
+ffffffc008d0b448 B nr_rotate_swap
+ffffffc008d0b450 B total_swap_pages
+ffffffc008d0b458 B swap_slot_cache_enabled
+ffffffc008d0b459 b swap_slot_cache_initialized
+ffffffc008d0b45a b swap_slot_cache_active
+ffffffc008d0b45b b alloc_swap_slot_cache.__key
+ffffffc008d0b460 B __highest_present_section_nr
+ffffffc008d0b468 b check_usemap_section_nr.old_usemap_snr
+ffffffc008d0b470 b check_usemap_section_nr.old_pgdat_snr
+ffffffc008d0b478 B mem_section
+ffffffc008d0b480 b vmemmap_alloc_block.warned
+ffffffc008d0b484 b slub_debug
+ffffffc008d0b488 b slub_debug_string
+ffffffc008d0b490 b kmem_cache_node
+ffffffc008d0b498 b slab_nodes
+ffffffc008d0b4a0 b slub_min_order
+ffffffc008d0b4a4 b slub_min_objects
+ffffffc008d0b4a8 b flushwq
+ffffffc008d0b4b0 b slab_debugfs_root
+ffffffc008d0b4b8 b disable_higher_order_debug
+ffffffc008d0b4bc b object_map_lock
+ffffffc008d0b4c0 b object_map
+ffffffc008d0c4c0 b slab_kset
+ffffffc008d0c4c8 b alias_list
+ffffffc008d0c4d0 B slub_debug_enabled
+ffffffc008d0c4e0 b kasan_flags
+ffffffc008d0c4e8 b report_lock
+ffffffc008d0c4f0 B kasan_flag_enabled
+ffffffc008d0c500 B stack_ring
+ffffffc008d0c520 b huge_zero_refcount
+ffffffc008d0c524 b khugepaged_mm_lock
+ffffffc008d0c528 b khugepaged_pages_collapsed
+ffffffc008d0c52c b khugepaged_full_scans
+ffffffc008d0c530 b khugepaged_sleep_expire
+ffffffc008d0c538 b dummy_handle
+ffffffc008d0c53c b failure_handle
+ffffffc008d0c540 b early_handle
+ffffffc008d0c548 B page_owner_inited
+ffffffc008d0c558 b huge_class_size.llvm.7761889119584796468
+ffffffc008d0c560 b total_usage
+ffffffc008d0c568 B early_page_ext
+ffffffc008d0c56c b secretmem_users
+ffffffc008d0c570 b secretmem_mnt
+ffffffc008d0c578 B page_reporting_enabled
+ffffffc008d0c588 b alloc_empty_file.old_max
+ffffffc008d0c590 b delayed_fput_list
+ffffffc008d0c598 b __alloc_file.__key
+ffffffc008d0c598 b files_init.__key
+ffffffc008d0c598 b sb_lock
+ffffffc008d0c5a0 b super_setup_bdi.bdi_seq
+ffffffc008d0c5a8 b alloc_super.__key
+ffffffc008d0c5a8 b alloc_super.__key.13
+ffffffc008d0c5a8 b alloc_super.__key.15
+ffffffc008d0c5a8 b alloc_super.__key.17
+ffffffc008d0c5a8 b alloc_super.__key.19
+ffffffc008d0c5a8 b chrdevs
+ffffffc008d0cda0 b cdev_lock
+ffffffc008d0cda8 b cdev_map.llvm.13371783268363921433
+ffffffc008d0cdb0 B suid_dumpable
+ffffffc008d0cdb4 b binfmt_lock
+ffffffc008d0cdc0 b pipe_user_pages_hard
+ffffffc008d0cdc8 b alloc_pipe_info.__key
+ffffffc008d0cdc8 b alloc_pipe_info.__key.1
+ffffffc008d0cdc8 b alloc_pipe_info.__key.3
+ffffffc008d0cdc8 b fasync_lock
+ffffffc008d0cdd0 b in_lookup_hashtable
+ffffffc008d0edd0 b get_next_ino.shared_last_ino
+ffffffc008d0edd0 b inode_init_always.__key
+ffffffc008d0edd0 b inode_init_always.__key.1
+ffffffc008d0edd4 b iunique.iunique_lock
+ffffffc008d0edd8 b iunique.counter
+ffffffc008d0ede0 b inodes_stat
+ffffffc008d0ee18 b __address_space_init_once.__key
+ffffffc008d0ee18 b dup_fd.__key
+ffffffc008d0ee18 b file_systems_lock
+ffffffc008d0ee20 b file_systems
+ffffffc008d0ee28 B fs_kobj
+ffffffc008d0ee30 b event
+ffffffc008d0ee38 b unmounted
+ffffffc008d0ee40 b delayed_mntput_list
+ffffffc008d0ee48 b alloc_mnt_ns.__key
+ffffffc008d0ee48 b pin_fs_lock
+ffffffc008d0ee48 b seq_open.__key
+ffffffc008d0ee4c b simple_transaction_get.simple_transaction_lock
+ffffffc008d0ee50 b last_dest
+ffffffc008d0ee50 b simple_attr_open.__key
+ffffffc008d0ee58 b first_source
+ffffffc008d0ee60 b last_source
+ffffffc008d0ee68 b mp
+ffffffc008d0ee70 b list
+ffffffc008d0ee78 b dest_master
+ffffffc008d0ee80 b pin_lock
+ffffffc008d0ee88 b nsfs_mnt
+ffffffc008d0ee90 b alloc_fs_context.__key
+ffffffc008d0ee90 b max_buffer_heads
+ffffffc008d0ee90 b vfs_dup_fs_context.__key
+ffffffc008d0ee98 B buffer_heads_over_limit
+ffffffc008d0ee9c b fsnotify_sync_cookie
+ffffffc008d0eea0 b __fsnotify_alloc_group.__key
+ffffffc008d0eea0 b __fsnotify_alloc_group.__key.1
+ffffffc008d0eea0 b destroy_lock
+ffffffc008d0eea8 b connector_destroy_list
+ffffffc008d0eeb0 B fsnotify_mark_srcu
+ffffffc008d0f090 B fsnotify_mark_connector_cachep
+ffffffc008d0f098 b idr_callback.warned
+ffffffc008d0f0a0 b it_zero
+ffffffc008d0f0a8 b loop_check_gen
+ffffffc008d0f0b0 b ep_alloc.__key
+ffffffc008d0f0b0 b ep_alloc.__key.2
+ffffffc008d0f0b0 b ep_alloc.__key.4
+ffffffc008d0f0b0 b inserting_into
+ffffffc008d0f0b8 b path_count
+ffffffc008d0f0d0 b long_zero
+ffffffc008d0f0d8 b anon_inode_inode
+ffffffc008d0f0e0 b __do_sys_timerfd_create.__key
+ffffffc008d0f0e0 b cancel_lock
+ffffffc008d0f0e4 b do_eventfd.__key
+ffffffc008d0f0e4 b init_once_userfaultfd_ctx.__key
+ffffffc008d0f0e4 b init_once_userfaultfd_ctx.__key.11
+ffffffc008d0f0e4 b init_once_userfaultfd_ctx.__key.7
+ffffffc008d0f0e4 b init_once_userfaultfd_ctx.__key.9
+ffffffc008d0f0e8 b aio_mnt
+ffffffc008d0f0f0 b kiocb_cachep
+ffffffc008d0f0f8 b kioctx_cachep
+ffffffc008d0f100 b aio_nr
+ffffffc008d0f108 b aio_nr_lock
+ffffffc008d0f10c b blocked_lock_lock
+ffffffc008d0f10c b ioctx_alloc.__key
+ffffffc008d0f10c b ioctx_alloc.__key.10
+ffffffc008d0f110 b lease_notifier_chain
+ffffffc008d0f328 b blocked_hash
+ffffffc008d0f328 b locks_init_lock_heads.__key
+ffffffc008d0f728 b enabled
+ffffffc008d0f72c b entries_lock
+ffffffc008d0f738 b bm_mnt
+ffffffc008d0f740 b mb_entry_cache
+ffffffc008d0f748 b do_coredump.core_dump_count
+ffffffc008d0f74c b core_pipe_limit
+ffffffc008d0f750 b core_uses_pid
+ffffffc008d0f754 b __dump_skip.zeroes
+ffffffc008d10754 b drop_caches_sysctl_handler.stfu
+ffffffc008d10758 B sysctl_drop_caches
+ffffffc008d10760 b iomap_ioend_bioset
+ffffffc008d10868 b proc_subdir_lock
+ffffffc008d10870 b proc_tty_driver
+ffffffc008d10878 B sysctl_mount_point
+ffffffc008d108b8 b sysctl_lock
+ffffffc008d108c0 b saved_boot_config
+ffffffc008d108c8 B kernfs_locks
+ffffffc008d108d0 B kernfs_iattrs_cache
+ffffffc008d108d0 b kernfs_mutex_init.__key
+ffffffc008d108d8 B kernfs_node_cache
+ffffffc008d108e0 b kernfs_rename_lock
+ffffffc008d108e4 b kernfs_pr_cont_lock
+ffffffc008d108e8 b kernfs_pr_cont_buf
+ffffffc008d118e8 b kernfs_idr_lock
+ffffffc008d118ec b kernfs_create_root.__key
+ffffffc008d118ec b kernfs_create_root.__key.9
+ffffffc008d118ec b kernfs_notify_lock
+ffffffc008d118f0 b kernfs_fop_open.__key
+ffffffc008d118f0 b kernfs_fop_open.__key.1
+ffffffc008d118f0 b kernfs_fop_open.__key.2
+ffffffc008d118f0 b kernfs_get_open_node.__key
+ffffffc008d118f0 B sysfs_symlink_target_lock
+ffffffc008d118f8 b sysfs_root
+ffffffc008d11900 B sysfs_root_kn
+ffffffc008d11908 b pty_count
+ffffffc008d1190c b pty_limit_min
+ffffffc008d11910 b ext4_system_zone_cachep.llvm.7236256543490611112
+ffffffc008d11918 b ext4_es_cachep.llvm.7209184343976523952
+ffffffc008d11920 b ext4_es_register_shrinker.__key
+ffffffc008d11920 b ext4_es_register_shrinker.__key.10
+ffffffc008d11920 b ext4_es_register_shrinker.__key.8
+ffffffc008d11920 b ext4_es_register_shrinker.__key.9
+ffffffc008d11920 b ext4_pending_cachep.llvm.7209184343976523952
+ffffffc008d11928 b ext4_free_data_cachep
+ffffffc008d11928 b ext4_mb_add_groupinfo.__key
+ffffffc008d11928 b ext4_mb_init.__key
+ffffffc008d11930 b ext4_pspace_cachep
+ffffffc008d11938 b ext4_ac_cachep
+ffffffc008d11940 b ext4_groupinfo_caches
+ffffffc008d11980 b io_end_cachep.llvm.10785599542092019568
+ffffffc008d11988 b io_end_vec_cachep.llvm.10785599542092019568
+ffffffc008d11990 b bio_post_read_ctx_cache.llvm.17412879940361840871
+ffffffc008d11998 b bio_post_read_ctx_pool.llvm.17412879940361840871
+ffffffc008d119a0 b ext4_li_info
+ffffffc008d119a8 b ext4_lazyinit_task
+ffffffc008d119a8 b ext4_li_info_new.__key
+ffffffc008d119b0 b ext4_mount_msg_ratelimit
+ffffffc008d119d8 b __ext4_fill_super.__key
+ffffffc008d119d8 b __ext4_fill_super.__key.552
+ffffffc008d119d8 b __ext4_fill_super.__key.553
+ffffffc008d119d8 b __ext4_fill_super.__key.554
+ffffffc008d119d8 b __ext4_fill_super.__key.555
+ffffffc008d119d8 b __ext4_fill_super.__key.556
+ffffffc008d119d8 b __ext4_fill_super.rwsem_key
+ffffffc008d119d8 b ext4_inode_cachep
+ffffffc008d119e0 B ext4__ioend_wq
+ffffffc008d119e0 b ext4_alloc_inode.__key
+ffffffc008d119e0 b ext4_init_fs.__key
+ffffffc008d119e0 b init_once.__key
+ffffffc008d119e0 b init_once.__key
+ffffffc008d119e0 b init_once.__key.693
+ffffffc008d11d58 b ext4_root
+ffffffc008d11d60 b ext4_proc_root
+ffffffc008d11d68 b ext4_feat
+ffffffc008d11d70 b ext4_expand_extra_isize_ea.mnt_count
+ffffffc008d11d74 b ext4_fc_init_inode.__key
+ffffffc008d11d78 b ext4_fc_dentry_cachep.llvm.12592449794136660960
+ffffffc008d11d80 b transaction_cache.llvm.16627421865362172170
+ffffffc008d11d88 b jbd2_revoke_record_cache.llvm.10039120823134734783
+ffffffc008d11d90 b jbd2_revoke_table_cache.llvm.10039120823134734783
+ffffffc008d11d98 B jbd2_inode_cache
+ffffffc008d11da0 b proc_jbd2_stats
+ffffffc008d11da8 b jbd2_slab
+ffffffc008d11da8 b journal_init_common.__key
+ffffffc008d11da8 b journal_init_common.__key.81
+ffffffc008d11da8 b journal_init_common.__key.83
+ffffffc008d11da8 b journal_init_common.__key.85
+ffffffc008d11da8 b journal_init_common.__key.87
+ffffffc008d11da8 b journal_init_common.__key.89
+ffffffc008d11da8 b journal_init_common.__key.91
+ffffffc008d11da8 b journal_init_common.__key.93
+ffffffc008d11da8 b journal_init_common.__key.95
+ffffffc008d11da8 b journal_init_common.__key.99
+ffffffc008d11de8 b jbd2_journal_head_cache
+ffffffc008d11df0 B jbd2_handle_cache
+ffffffc008d11df8 b fuse_req_cachep.llvm.16123452833061921394
+ffffffc008d11e00 b fuse_conn_init.__key
+ffffffc008d11e00 b fuse_conn_init.__key.1
+ffffffc008d11e00 b fuse_file_alloc.__key
+ffffffc008d11e00 b fuse_file_alloc.__key.1
+ffffffc008d11e00 b fuse_init_file_inode.__key
+ffffffc008d11e00 b fuse_inode_cachep
+ffffffc008d11e00 b fuse_iqueue_init.__key
+ffffffc008d11e00 b fuse_request_init.__key
+ffffffc008d11e00 b fuse_sync_bucket_alloc.__key
+ffffffc008d11e08 b fuse_alloc_inode.__key
+ffffffc008d11e08 b fuse_kobj
+ffffffc008d11e10 B max_user_bgreq
+ffffffc008d11e14 B max_user_congthresh
+ffffffc008d11e18 B fuse_conn_list
+ffffffc008d11e28 b fuse_control_sb
+ffffffc008d11e30 b debugfs_mount
+ffffffc008d11e38 b debugfs_mount_count
+ffffffc008d11e3c b debugfs_registered.llvm.13211119261285225920
+ffffffc008d11e40 b tracefs_mount
+ffffffc008d11e48 b tracefs_mount_count
+ffffffc008d11e4c b tracefs_registered.llvm.11377787178428212053
+ffffffc008d11e4d b erofs_init_fs_context.__key
+ffffffc008d11e50 b erofs_global_shrink_cnt
+ffffffc008d11e58 b erofs_sb_list_lock
+ffffffc008d11e58 b erofs_shrinker_register.__key
+ffffffc008d11e5c b shrinker_run_no
+ffffffc008d11e60 b erofs_pcpubuf_growsize.pcb_nrpages
+ffffffc008d11e64 b warn_setuid_and_fcaps_mixed.warned
+ffffffc008d11e64 b z_erofs_register_pcluster.__key
+ffffffc008d11e68 B mmap_min_addr
+ffffffc008d11e70 B lsm_names
+ffffffc008d11e78 b lsm_inode_cache
+ffffffc008d11e80 b lsm_file_cache
+ffffffc008d11e88 b mount
+ffffffc008d11e90 b mount_count
+ffffffc008d11e98 b lsm_dentry
+ffffffc008d11ea0 b selinux_avc
+ffffffc008d136b8 b avc_latest_notif_update.notif_lock
+ffffffc008d136bc b selinux_checkreqprot_boot
+ffffffc008d136c0 b selinux_init.__key
+ffffffc008d136c0 b selinux_init.__key.33
+ffffffc008d136c0 b selinux_secmark_refcount
+ffffffc008d136c4 b selinux_sb_alloc_security.__key
+ffffffc008d136c8 B selinux_state
+ffffffc008d13750 b sel_netif_lock
+ffffffc008d13758 b sel_netif_hash
+ffffffc008d13b58 b sel_netif_total
+ffffffc008d13b5c b sel_netnode_lock
+ffffffc008d13b60 b sel_netnode_hash
+ffffffc008d15360 b sel_netport_lock
+ffffffc008d15368 b sel_netport_hash
+ffffffc008d16b68 b integrity_iint_lock
+ffffffc008d16b70 b integrity_iint_tree
+ffffffc008d16b78 B integrity_dir
+ffffffc008d16b80 b integrity_audit_info
+ffffffc008d16b84 b scomp_scratch_users
+ffffffc008d16b88 b notests
+ffffffc008d16b89 b panic_on_fail
+ffffffc008d16b90 b crypto_default_null_skcipher
+ffffffc008d16b98 b crypto_default_null_skcipher_refcnt
+ffffffc008d16ba0 b gcm_zeroes
+ffffffc008d16ba8 B crypto_default_rng
+ffffffc008d16bb0 b crypto_default_rng_refcnt
+ffffffc008d16bb4 b dbg
+ffffffc008d16bc0 b drbg_algs
+ffffffc008d19240 b bdev_cache_init.bd_mnt
+ffffffc008d19240 b drbg_kcapi_init.__key
+ffffffc008d19248 b bdev_alloc.__key
+ffffffc008d19248 b blkdev_dio_pool
+ffffffc008d19350 B fs_bio_set
+ffffffc008d19458 b bio_dirty_lock
+ffffffc008d19460 b bio_dirty_list
+ffffffc008d19468 b bio_slabs
+ffffffc008d19478 b elevator_alloc.__key
+ffffffc008d19478 b elv_list_lock
+ffffffc008d1947c b blk_alloc_queue.__key
+ffffffc008d1947c b blk_alloc_queue.__key.3
+ffffffc008d1947c b blk_alloc_queue.__key.5
+ffffffc008d1947c b blk_alloc_queue.__key.7
+ffffffc008d1947c b blk_alloc_queue.__key.9
+ffffffc008d19480 b kblockd_workqueue.llvm.8100171982984894182
+ffffffc008d19488 B blk_requestq_cachep
+ffffffc008d19490 B blk_requestq_srcu_cachep
+ffffffc008d19498 B blk_debugfs_root
+ffffffc008d194a0 b iocontext_cachep
+ffffffc008d194a8 b blk_mq_alloc_tag_set.__key
+ffffffc008d194a8 b major_names_spinlock
+ffffffc008d194b0 b major_names
+ffffffc008d19ca8 b block_depr
+ffffffc008d19cb0 b __alloc_disk_node.__key
+ffffffc008d19cb0 b diskseq
+ffffffc008d19cb8 b force_gpt
+ffffffc008d19cb8 b genhd_device_init.__key
+ffffffc008d19cc0 b disk_events_dfl_poll_msecs
+ffffffc008d19cc8 b bfq_pool
+ffffffc008d19cc8 b disk_alloc_events.__key
+ffffffc008d19cd0 b ref_wr_duration
+ffffffc008d19cd8 b bio_crypt_ctx_pool
+ffffffc008d19ce0 b bio_crypt_ctx_cache
+ffffffc008d19ce8 b blk_crypto_mode_attrs
+ffffffc008d19ce8 b blk_crypto_profile_init.__key
+ffffffc008d19ce8 b blk_crypto_profile_init.__key.1
+ffffffc008d19d18 b __blk_crypto_mode_attrs
+ffffffc008d19d90 b tfms_inited
+ffffffc008d19d98 b blk_crypto_fallback_profile.llvm.9801828300049354786
+ffffffc008d19e68 b bio_fallback_crypt_ctx_pool
+ffffffc008d19e70 b blk_crypto_keyslots
+ffffffc008d19e78 b blk_crypto_bounce_page_pool
+ffffffc008d19e80 b crypto_bio_split
+ffffffc008d19f88 b blk_crypto_wq
+ffffffc008d19f90 b blk_crypto_fallback_inited
+ffffffc008d19f91 b blank_key
+ffffffc008d19fd8 b bio_fallback_crypt_ctx_cache
+ffffffc008d19fe0 b req_cachep
+ffffffc008d19fe8 b io_get_sq_data.__key
+ffffffc008d19fe8 b io_get_sq_data.__key.1
+ffffffc008d19fe8 b io_init_wq_offload.__key
+ffffffc008d19fe8 b io_ring_ctx_alloc.__key
+ffffffc008d19fe8 b io_ring_ctx_alloc.__key.83
+ffffffc008d19fe8 b io_ring_ctx_alloc.__key.85
+ffffffc008d19fe8 b io_uring_alloc_task_context.__key
+ffffffc008d19fe8 b io_uring_alloc_task_context.__key.1
+ffffffc008d19fe8 b io_wq_online
+ffffffc008d19fec b percpu_ref_switch_lock
+ffffffc008d19ff0 b percpu_ref_switch_to_atomic_rcu.underflows
+ffffffc008d19ff4 b rhashtable_init.__key
+ffffffc008d19ff8 b rht_bucket_nested.rhnull
+ffffffc008d1a000 b once_lock
+ffffffc008d1a008 b tfm
+ffffffc008d1a010 b static_ltree
+ffffffc008d1a490 b static_dtree
+ffffffc008d1a508 b length_code
+ffffffc008d1a608 b dist_code
+ffffffc008d1a808 b tr_static_init.static_init_done
+ffffffc008d1a80c b base_length
+ffffffc008d1a880 b base_dist
+ffffffc008d1a8f8 B g_debuglevel
+ffffffc008d1a8fc b percpu_counters_lock
+ffffffc008d1a900 b verbose
+ffffffc008d1a904 b stack_hash_order
+ffffffc008d1a908 b stack_depot_disable
+ffffffc008d1a90c b stack_hash_mask
+ffffffc008d1a910 b stack_table
+ffffffc008d1a918 b depot_index
+ffffffc008d1a920 b stack_slabs
+ffffffc008d2a920 b next_slab_inited
+ffffffc008d2a924 b depot_lock
+ffffffc008d2a928 b depot_offset
+ffffffc008d2a930 b gicv2_force_probe
+ffffffc008d2a930 b sbitmap_queue_init_node.__key
+ffffffc008d2a938 b needs_rmw_access
+ffffffc008d2a948 b rmw_writeb.rmw_lock
+ffffffc008d2a94c b irq_controller_lock
+ffffffc008d2a950 b v2m_lock
+ffffffc008d2a958 b gicv2m_pmsi_ops
+ffffffc008d2a998 B gic_pmr_sync
+ffffffc008d2a9a8 b gicv3_nolpi
+ffffffc008d2a9b0 B gic_nonsecure_priorities
+ffffffc008d2a9c0 b mbi_range_nr
+ffffffc008d2a9c8 b mbi_ranges
+ffffffc008d2a9d0 b mbi_phys_base
+ffffffc008d2a9d8 b mbi_pmsi_ops
+ffffffc008d2aa18 b gic_rdists
+ffffffc008d2aa20 b its_parent
+ffffffc008d2aa28 b lpi_id_bits
+ffffffc008d2aa2c b its_lock
+ffffffc008d2aa30 b its_list_map
+ffffffc008d2aa30 b its_probe_one.__key
+ffffffc008d2aa38 b its_select_cpu.tmpmask_lock
+ffffffc008d2aa40 b its_select_cpu.__tmpmask
+ffffffc008d2aa48 b vmovp_lock
+ffffffc008d2aa50 b vpe_proxy
+ffffffc008d2aa70 b find_4_1_its.its
+ffffffc008d2aa78 b vmovp_seq_num
+ffffffc008d2aa80 b gic_domain
+ffffffc008d2aa88 b vpe_domain_ops
+ffffffc008d2aa90 b sgi_domain_ops
+ffffffc008d2aa98 B pci_lock
+ffffffc008d2aa9c B pci_pci_problems
+ffffffc008d2aa9c b pcibus_class_init.__key
+ffffffc008d2aaa0 b pcie_ats_disabled.llvm.387819745348779521
+ffffffc008d2aaa4 b pci_acs_enable.llvm.387819745348779521
+ffffffc008d2aaa5 b pci_bridge_d3_disable
+ffffffc008d2aaa6 b pci_bridge_d3_force
+ffffffc008d2aaa7 b pcie_ari_disabled
+ffffffc008d2aaa8 B pci_cache_line_size
+ffffffc008d2aab0 b arch_set_vga_state
+ffffffc008d2aab8 B pci_pm_d3hot_delay
+ffffffc008d2aac0 b disable_acs_redir_param
+ffffffc008d2aac8 b resource_alignment_lock
+ffffffc008d2aad0 b resource_alignment_param
+ffffffc008d2aad8 B pci_early_dump
+ffffffc008d2aadc b sysfs_initialized.llvm.7271776144345358373
+ffffffc008d2aadd b pci_vpd_init.__key
+ffffffc008d2aae0 B pci_flags
+ffffffc008d2aae4 b pci_msi_enable.llvm.17681525286798683351
+ffffffc008d2aae8 B pci_msi_ignore_mask
+ffffffc008d2aaec B pcie_ports_disabled
+ffffffc008d2aaf0 B pcie_ports_native
+ffffffc008d2aaf4 B pcie_ports_dpc_native
+ffffffc008d2aaf5 b aspm_support_enabled
+ffffffc008d2aaf8 b aspm_policy
+ffffffc008d2aafc b aspm_disabled
+ffffffc008d2ab00 b aspm_force
+ffffffc008d2ab04 b pcie_aer_disable.llvm.8500893054206468925
+ffffffc008d2ab08 B pcie_pme_msi_disabled
+ffffffc008d2ab0c b proc_initialized
+ffffffc008d2ab10 b proc_bus_pci_dir
+ffffffc008d2ab18 B pci_slots_kset
+ffffffc008d2ab20 b pci_apply_fixup_final_quirks
+ffffffc008d2ab24 b asus_hides_smbus
+ffffffc008d2ab28 b asus_rcba_base
+ffffffc008d2ab30 b vga_default.llvm.653142629100630305
+ffffffc008d2ab38 b vga_lock
+ffffffc008d2ab3c b vga_arbiter_used
+ffffffc008d2ab40 b vga_count
+ffffffc008d2ab44 b vga_decode_count
+ffffffc008d2ab48 b vga_user_lock
+ffffffc008d2ab50 b pci_epc_class
+ffffffc008d2ab58 b __pci_epc_create.__key
+ffffffc008d2ab58 b amba_device_initialize.__key
+ffffffc008d2ab58 b clk_root_list
+ffffffc008d2ab58 b pci_epc_init.__key
+ffffffc008d2ab58 b pci_epc_multi_mem_init.__key
+ffffffc008d2ab58 b pci_epf_create.__key
+ffffffc008d2ab60 b clk_orphan_list
+ffffffc008d2ab68 b prepare_owner
+ffffffc008d2ab70 b prepare_refcnt
+ffffffc008d2ab74 b enable_lock
+ffffffc008d2ab78 b rootdir
+ffffffc008d2ab80 b clk_debug_list
+ffffffc008d2ab88 b inited
+ffffffc008d2ab90 b enable_owner
+ffffffc008d2ab98 b enable_refcnt
+ffffffc008d2ab9c b force_legacy
+ffffffc008d2ab9d b virtballoon_probe.__key
+ffffffc008d2ab9d b virtballoon_probe.__key.3
+ffffffc008d2aba0 b redirect_lock
+ffffffc008d2aba8 b redirect
+ffffffc008d2abb0 b alloc_tty_struct.__key
+ffffffc008d2abb0 b alloc_tty_struct.__key.13
+ffffffc008d2abb0 b alloc_tty_struct.__key.15
+ffffffc008d2abb0 b alloc_tty_struct.__key.17
+ffffffc008d2abb0 b alloc_tty_struct.__key.19
+ffffffc008d2abb0 b alloc_tty_struct.__key.21
+ffffffc008d2abb0 b alloc_tty_struct.__key.23
+ffffffc008d2abb0 b alloc_tty_struct.__key.25
+ffffffc008d2abb0 b consdev
+ffffffc008d2abb8 b tty_cdev
+ffffffc008d2ac40 b console_cdev
+ffffffc008d2acc8 B tty_class
+ffffffc008d2acc8 b tty_class_init.__key
+ffffffc008d2acd0 b n_tty_open.__key
+ffffffc008d2acd0 b n_tty_open.__key.2
+ffffffc008d2acd0 b tty_ldiscs_lock
+ffffffc008d2acd8 b tty_ldiscs
+ffffffc008d2add0 b ptm_driver
+ffffffc008d2add0 b tty_buffer_init.__key
+ffffffc008d2add0 b tty_port_init.__key
+ffffffc008d2add0 b tty_port_init.__key.1
+ffffffc008d2add0 b tty_port_init.__key.3
+ffffffc008d2add0 b tty_port_init.__key.5
+ffffffc008d2add8 b pts_driver
+ffffffc008d2ade0 b ptmx_cdev
+ffffffc008d2ae68 b sysrq_reset_downtime_ms
+ffffffc008d2ae68 b tty_audit_buf_alloc.__key
+ffffffc008d2ae6c b show_lock
+ffffffc008d2ae70 b sysrq_reset_seq_len
+ffffffc008d2ae74 b sysrq_reset_seq
+ffffffc008d2ae9c b sysrq_key_table_lock
+ffffffc008d2aea0 b vt_event_lock
+ffffffc008d2aea4 b disable_vt_switch
+ffffffc008d2aea8 B vt_dont_switch
+ffffffc008d2aeb0 b vc_class
+ffffffc008d2aeb8 b vcs_init.__key
+ffffffc008d2aeb8 b vcs_poll_data_get.__key
+ffffffc008d2aeb8 B vt_spawn_con
+ffffffc008d2aed0 b keyboard_notifier_list
+ffffffc008d2aee0 b vt_switch
+ffffffc008d2aee4 b kbd_event_lock
+ffffffc008d2aee8 b led_lock
+ffffffc008d2aeec b ledioctl
+ffffffc008d2aeed b kbd_table
+ffffffc008d2b028 b func_buf_lock
+ffffffc008d2b02c b shift_state.llvm.7204298134209283401
+ffffffc008d2b030 b kd_nosound.zero
+ffffffc008d2b034 b shift_down
+ffffffc008d2b040 b key_down
+ffffffc008d2b0a0 b rep
+ffffffc008d2b0a4 b diacr
+ffffffc008d2b0a8 b dead_key_next
+ffffffc008d2b0a9 b npadch_active
+ffffffc008d2b0ac b npadch_value
+ffffffc008d2b0b0 b k_brl.pressed
+ffffffc008d2b0b4 b k_brl.committing
+ffffffc008d2b0b8 b k_brl.releasestart
+ffffffc008d2b0c0 b k_brlcommit.chords
+ffffffc008d2b0c8 b k_brlcommit.committed
+ffffffc008d2b0d0 b vt_kdskbsent.is_kmalloc
+ffffffc008d2b0f0 b inv_translate
+ffffffc008d2b1f0 b dflt
+ffffffc008d2b1f8 b blankinterval
+ffffffc008d2b200 b vt_notifier_list.llvm.7497067998197082255
+ffffffc008d2b210 b complement_pos.old
+ffffffc008d2b214 b complement_pos.oldx
+ffffffc008d2b218 b complement_pos.oldy
+ffffffc008d2b220 b tty0dev
+ffffffc008d2b228 b vt_kmsg_redirect.kmsg_con
+ffffffc008d2b22c b ignore_poke
+ffffffc008d2b230 B console_blanked
+ffffffc008d2b238 b vc0_cdev
+ffffffc008d2b2c0 b con_driver_map
+ffffffc008d2b4b8 b saved_fg_console
+ffffffc008d2b4bc b saved_last_console
+ffffffc008d2b4c0 b saved_want_console
+ffffffc008d2b4c4 b saved_vc_mode
+ffffffc008d2b4c8 b saved_console_blanked
+ffffffc008d2b4d0 B conswitchp
+ffffffc008d2b4d8 b registered_con_driver
+ffffffc008d2b758 b blank_state
+ffffffc008d2b75c b vesa_blank_mode
+ffffffc008d2b760 b blank_timer_expired
+ffffffc008d2b764 b vesa_off_interval
+ffffffc008d2b768 B console_blank_hook
+ffffffc008d2b770 b scrollback_delta
+ffffffc008d2b778 b master_display_fg
+ffffffc008d2b780 b vc_init.__key
+ffffffc008d2b780 b vt_console_print.printing_lock
+ffffffc008d2b788 b vtconsole_class
+ffffffc008d2b790 B do_poke_blanked_console
+ffffffc008d2b790 b vtconsole_class_init.__key
+ffffffc008d2b798 B console_driver
+ffffffc008d2b7a0 B fg_console
+ffffffc008d2b7a8 B vc_cons
+ffffffc008d2c570 B last_console
+ffffffc008d2c574 B funcbufleft
+ffffffc008d2c578 b cons_ops
+ffffffc008d2c5f8 b hvc_kicked.llvm.8898750018909217251
+ffffffc008d2c600 b hvc_task.llvm.8898750018909217251
+ffffffc008d2c608 b hvc_driver
+ffffffc008d2c610 b sysrq_pressed
+ffffffc008d2c614 b uart_set_options.dummy
+ffffffc008d2c640 b serial8250_ports
+ffffffc008d2c640 b uart_add_one_port.__key
+ffffffc008d2d380 b serial8250_isa_config
+ffffffc008d2d388 b nr_uarts
+ffffffc008d2d390 b serial8250_isa_devs
+ffffffc008d2d398 b share_irqs
+ffffffc008d2d39c b skip_txen_test
+ffffffc008d2d3a0 b serial8250_isa_init_ports.first
+ffffffc008d2d3a8 b base_ops
+ffffffc008d2d3b0 b univ8250_port_ops
+ffffffc008d2d480 b irq_lists
+ffffffc008d2d580 b ttynull_driver
+ffffffc008d2d588 b ttynull_port
+ffffffc008d2d748 b chr_dev_init.__key
+ffffffc008d2d748 b mem_class
+ffffffc008d2d750 b crng_is_ready
+ffffffc008d2d760 b base_crng
+ffffffc008d2d798 b add_input_randomness.last_value
+ffffffc008d2d7a0 b _credit_init_bits.set_ready
+ffffffc008d2d7d0 b fasync
+ffffffc008d2d7d8 b sysctl_bootid
+ffffffc008d2d7e8 b proc_do_uuid.bootid_spinlock
+ffffffc008d2d7f0 b misc_minors
+ffffffc008d2d800 b misc_class
+ffffffc008d2d808 b early_put_chars
+ffffffc008d2d808 b misc_init.__key
+ffffffc008d2d810 b pdrvdata_lock
+ffffffc008d2d814 b dma_bufs_lock
+ffffffc008d2d818 b add_port.__key
+ffffffc008d2d818 b current_quality
+ffffffc008d2d818 b virtio_console_init.__key
+ffffffc008d2d81c b default_quality
+ffffffc008d2d820 b current_rng
+ffffffc008d2d828 b cur_rng_set_by_user
+ffffffc008d2d830 b hwrng_fill
+ffffffc008d2d838 b rng_buffer
+ffffffc008d2d840 b rng_fillbuf
+ffffffc008d2d848 b data_avail
+ffffffc008d2d84c b iommu_device_lock
+ffffffc008d2d850 b iommu_group_kset
+ffffffc008d2d858 b dev_iommu_get.__key
+ffffffc008d2d858 b devices_attr
+ffffffc008d2d858 b iommu_dev_init.__key
+ffffffc008d2d858 b iommu_group_alloc.__key
+ffffffc008d2d858 b iommu_register_device_fault_handler.__key
+ffffffc008d2d860 b iommu_deferred_attach_enabled
+ffffffc008d2d860 b iommu_get_dma_cookie.__key
+ffffffc008d2d870 b iova_cache_users
+ffffffc008d2d878 b iova_cache
+ffffffc008d2d880 b component_debugfs_dir
+ffffffc008d2d888 b fw_devlink_strict
+ffffffc008d2d889 b fw_devlink_drv_reg_done.llvm.3145974223128856570
+ffffffc008d2d88a b fw_devlink_best_effort
+ffffffc008d2d890 B platform_notify
+ffffffc008d2d898 B platform_notify_remove
+ffffffc008d2d8a0 B devices_kset
+ffffffc008d2d8a8 b device_initialize.__key
+ffffffc008d2d8a8 b virtual_device_parent.virtual_dir
+ffffffc008d2d8b0 b dev_kobj
+ffffffc008d2d8b8 B sysfs_dev_block_kobj
+ffffffc008d2d8c0 B sysfs_dev_char_kobj
+ffffffc008d2d8c8 b bus_kset
+ffffffc008d2d8c8 b bus_register.__key
+ffffffc008d2d8c8 b devlink_class_init.__key
+ffffffc008d2d8d0 b system_kset.llvm.17560372447726560574
+ffffffc008d2d8d8 b driver_deferred_probe_enable
+ffffffc008d2d8dc b deferred_trigger_count
+ffffffc008d2d8e0 b defer_all_probes.llvm.9406443306120892815
+ffffffc008d2d8e1 b initcalls_done
+ffffffc008d2d8e4 b probe_count
+ffffffc008d2d8e8 b async_probe_drv_names
+ffffffc008d2d9e8 b async_probe_default
+ffffffc008d2d9f0 b class_kset.llvm.17057028803095885502
+ffffffc008d2d9f8 b common_cpu_attr_groups
+ffffffc008d2da00 b hotplugable_cpu_attr_groups
+ffffffc008d2da08 B total_cpus
+ffffffc008d2da10 B firmware_kobj
+ffffffc008d2da18 B coherency_max_size
+ffffffc008d2da18 b transport_class_register.__key
+ffffffc008d2da20 b cache_dev_map
+ffffffc008d2da28 b swnode_kset
+ffffffc008d2da30 b power_attrs
+ffffffc008d2da38 b dev_pm_qos_constraints_allocate.__key
+ffffffc008d2da38 b pm_runtime_init.__key
+ffffffc008d2da38 b pm_transition.0
+ffffffc008d2da3c b async_error
+ffffffc008d2da40 B suspend_stats
+ffffffc008d2dad4 b events_lock
+ffffffc008d2dad8 b saved_count
+ffffffc008d2dadc b wakeup_irq_lock
+ffffffc008d2dae0 b combined_event_count
+ffffffc008d2dae8 b wakeup_class
+ffffffc008d2daf0 b firmware_config_sysct_table_header.llvm.6051529183915091818
+ffffffc008d2daf0 b pm_clk_init.__key
+ffffffc008d2daf0 b wakeup_sources_sysfs_init.__key
+ffffffc008d2daf8 B fw_cache
+ffffffc008d2db18 b strpath
+ffffffc008d2e510 b fw_path_para
+ffffffc008d2ef06 b register_sysfs_loader.__key
+ffffffc008d2ef08 b sections_per_block
+ffffffc008d2ef10 b memory_blocks
+ffffffc008d2ef20 b __regmap_init.__key
+ffffffc008d2ef20 b __regmap_init.__key.5
+ffffffc008d2ef20 b regmap_debugfs_root
+ffffffc008d2ef28 b dummy_index
+ffffffc008d2ef28 b regmap_debugfs_init.__key
+ffffffc008d2ef30 b early_soc_dev_attr.llvm.15255824435826415374
+ffffffc008d2ef38 b scale_freq_counters_mask
+ffffffc008d2ef40 b scale_freq_invariant
+ffffffc008d2ef41 B topology_update_done
+ffffffc008d2ef48 b raw_capacity
+ffffffc008d2ef50 b topology_parse_cpu_capacity.cap_parsing_failed
+ffffffc008d2ef58 B cpu_topology
+ffffffc008d2f658 b brd_debugfs_dir
+ffffffc008d2f660 b brd_alloc.__key
+ffffffc008d2f660 b max_part
+ffffffc008d2f664 b loop_add.__key
+ffffffc008d2f664 b part_shift
+ffffffc008d2f668 b loop_add.__key.2
+ffffffc008d2f668 b num_request_queues
+ffffffc008d2f66c b poll_queues
+ffffffc008d2f670 b virtblk_queue_depth
+ffffffc008d2f674 b major
+ffffffc008d2f678 b major
+ffffffc008d2f680 b virtblk_wq
+ffffffc008d2f688 b virtblk_probe.__key
+ffffffc008d2f688 b virtblk_probe.__key.4
+ffffffc008d2f688 b zram_major
+ffffffc008d2f68c b zram_add.__key
+ffffffc008d2f68c b zram_add.__key.5
+ffffffc008d2f690 b huge_class_size
+ffffffc008d2f698 b open_dice_probe.dev_idx
+ffffffc008d2f698 b zram_init.__key
+ffffffc008d2f6a0 b vcpu_stall_detectors
+ffffffc008d2f6a8 b vcpu_stall_config.0
+ffffffc008d2f6b0 b vcpu_stall_config.1
+ffffffc008d2f6b8 b vcpu_stall_config.2
+ffffffc008d2f6c0 b vcpu_stall_config.4
+ffffffc008d2f6c4 b syscon_list_slock
+ffffffc008d2f6c8 b db_list
+ffffffc008d2f708 b dma_buf_export.__key
+ffffffc008d2f708 b dma_buf_export.__key.1
+ffffffc008d2f708 b dma_buf_mnt
+ffffffc008d2f710 b dma_buf_getfile.dmabuf_inode
+ffffffc008d2f718 b dma_buf_debugfs_dir
+ffffffc008d2f718 b dma_buf_init.__key
+ffffffc008d2f720 b dma_fence_stub_lock
+ffffffc008d2f728 b dma_fence_stub
+ffffffc008d2f768 b dma_heap_devt
+ffffffc008d2f770 b dma_heap_class
+ffffffc008d2f778 b dma_heap_init.__key
+ffffffc008d2f778 b dma_heap_kobject
+ffffffc008d2f780 b dma_buf_stats_kset.llvm.15204909052234194787
+ffffffc008d2f788 b dma_buf_per_buffer_stats_kset.llvm.15204909052234194787
+ffffffc008d2f790 B blackhole_netdev
+ffffffc008d2f798 b uio_class_registered
+ffffffc008d2f799 b __uio_register_device.__key
+ffffffc008d2f799 b __uio_register_device.__key.1
+ffffffc008d2f79c b uio_major
+ffffffc008d2f7a0 b uio_cdev
+ffffffc008d2f7a8 b init_uio_class.__key
+ffffffc008d2f7a8 b serio_event_lock
+ffffffc008d2f7ac b input_allocate_device.__key
+ffffffc008d2f7ac b input_devices_state
+ffffffc008d2f7ac b serio_init_port.__key
+ffffffc008d2f7ac b serport_ldisc_open.__key
+ffffffc008d2f7b0 b proc_bus_input_dir
+ffffffc008d2f7b8 b input_ff_create.__key
+ffffffc008d2f7b8 b input_init.__key
+ffffffc008d2f7b8 B rtc_class
+ffffffc008d2f7c0 b old_system
+ffffffc008d2f7c0 b rtc_allocate_device.__key
+ffffffc008d2f7c0 b rtc_allocate_device.__key.7
+ffffffc008d2f7c0 b rtc_init.__key
+ffffffc008d2f7d0 b old_rtc.0
+ffffffc008d2f7d8 b old_delta.0
+ffffffc008d2f7e0 b old_delta.1
+ffffffc008d2f7e8 b rtc_devt
+ffffffc008d2f7f0 B power_supply_class
+ffffffc008d2f7f8 B power_supply_notifier
+ffffffc008d2f808 b power_supply_dev_type
+ffffffc008d2f838 b __power_supply_attrs
+ffffffc008d2f838 b power_supply_class_init.__key
+ffffffc008d2faa0 b wtd_deferred_reg_done
+ffffffc008d2faa8 b watchdog_kworker
+ffffffc008d2fab0 b watchdog_dev_init.__key
+ffffffc008d2fab0 b watchdog_devt
+ffffffc008d2fab4 b open_timeout
+ffffffc008d2fab8 b old_wd_data
+ffffffc008d2fab8 b watchdog_cdev_register.__key
+ffffffc008d2fac0 b create
+ffffffc008d2fac8 b _dm_event_cache.llvm.13496584211793429849
+ffffffc008d2fad0 B stats_enabled
+ffffffc008d2fae0 b _minor_lock
+ffffffc008d2fae4 b _major
+ffffffc008d2fae8 b deferred_remove_workqueue
+ffffffc008d2faf0 b alloc_dev.__key
+ffffffc008d2faf0 b alloc_dev.__key.15
+ffffffc008d2faf0 b alloc_dev.__key.17
+ffffffc008d2faf0 b alloc_dev.__key.19
+ffffffc008d2faf0 b alloc_dev.__key.20
+ffffffc008d2faf0 b alloc_dev.__key.22
+ffffffc008d2faf0 b alloc_dev.__key.24
+ffffffc008d2faf0 B dm_global_event_nr
+ffffffc008d2faf8 B swap_bios_enabled
+ffffffc008d2fb08 B zoned_enabled
+ffffffc008d2fb18 b name_rb_tree
+ffffffc008d2fb20 b uuid_rb_tree
+ffffffc008d2fb28 b _dm_io_cache
+ffffffc008d2fb30 b _job_cache
+ffffffc008d2fb38 b zero_page_list
+ffffffc008d2fb48 b dm_kcopyd_client_create.__key
+ffffffc008d2fb48 b dm_kcopyd_copy.__key
+ffffffc008d2fb48 b throttle_spinlock
+ffffffc008d2fb4c b dm_stats_init.__key
+ffffffc008d2fb50 b shared_memory_amount
+ffffffc008d2fb58 b dm_stat_need_rcu_barrier
+ffffffc008d2fb5c b shared_memory_lock
+ffffffc008d2fb60 b no_sleep_enabled
+ffffffc008d2fb70 b dm_bufio_client_count
+ffffffc008d2fb70 b dm_bufio_client_create.__key
+ffffffc008d2fb70 b dm_bufio_client_create.__key.3
+ffffffc008d2fb78 b dm_bufio_cleanup_old_work
+ffffffc008d2fc00 b dm_bufio_wq
+ffffffc008d2fc08 b dm_bufio_current_allocated
+ffffffc008d2fc10 b dm_bufio_allocated_get_free_pages
+ffffffc008d2fc18 b dm_bufio_allocated_vmalloc
+ffffffc008d2fc20 b dm_bufio_cache_size
+ffffffc008d2fc28 b dm_bufio_peak_allocated
+ffffffc008d2fc30 b dm_bufio_allocated_kmem_cache
+ffffffc008d2fc38 b dm_bufio_cache_size_latch
+ffffffc008d2fc40 b global_spinlock
+ffffffc008d2fc48 b global_num
+ffffffc008d2fc50 b dm_bufio_replacement_work
+ffffffc008d2fc80 b dm_bufio_default_cache_size
+ffffffc008d2fc88 b dm_crypt_clients_lock
+ffffffc008d2fc8c b dm_crypt_clients_n
+ffffffc008d2fc90 b crypt_ctr.__key
+ffffffc008d2fc90 b crypt_ctr.__key.7
+ffffffc008d2fc90 b dm_crypt_pages_per_client
+ffffffc008d2fc98 b use_tasklet_enabled
+ffffffc008d2fca8 b channel_alloc.__key
+ffffffc008d2fca8 b edac_mc_owner
+ffffffc008d2fca8 b user_ctr.__key
+ffffffc008d2fca8 b user_ctr.__key.3
+ffffffc008d2fcb0 b edac_device_alloc_index.device_indexes
+ffffffc008d2fcb4 b edac_mc_panic_on_ue.llvm.6122068684056603437
+ffffffc008d2fcb8 b mci_pdev.llvm.6122068684056603437
+ffffffc008d2fcc0 b wq.llvm.5818914303303447587
+ffffffc008d2fcc8 b pci_indexes
+ffffffc008d2fccc b edac_pci_idx
+ffffffc008d2fcd0 b check_pci_errors.llvm.13113228613723373502
+ffffffc008d2fcd4 b pci_parity_count
+ffffffc008d2fcd8 b edac_pci_panic_on_pe
+ffffffc008d2fcdc b edac_pci_sysfs_refcount
+ffffffc008d2fce0 b edac_pci_top_main_kobj
+ffffffc008d2fce8 b pci_nonparity_count
+ffffffc008d2fcec b protocol_lock
+ffffffc008d2fcf0 b transfer_last_id
+ffffffc008d2fcf4 b scmi_syspower_registered
+ffffffc008d2fcf5 b scmi_allocate_event_handler.__key
+ffffffc008d2fcf5 b scmi_allocate_registered_events_desc.__key
+ffffffc008d2fcf5 b scmi_notification_init.__key
+ffffffc008d2fcf5 b scmi_probe.__key
+ffffffc008d2fcf5 b scmi_register_protocol_events.__key
+ffffffc008d2fcf5 b smc_channel_lock_init.__key
+ffffffc008d2fcf8 b psci_0_1_function_ids
+ffffffc008d2fd08 b psci_cpu_suspend_feature
+ffffffc008d2fd10 b invoke_psci_fn
+ffffffc008d2fd18 B psci_ops
+ffffffc008d2fd50 b psci_conduit
+ffffffc008d2fd54 b psci_system_reset2_supported
+ffffffc008d2fd58 b smccc_conduit.llvm.10138707430611048931
+ffffffc008d2fd60 b soc_dev
+ffffffc008d2fd68 b soc_dev_attr
+ffffffc008d2fd70 b smccc_soc_init.soc_id_str
+ffffffc008d2fd84 b smccc_soc_init.soc_id_rev_str
+ffffffc008d2fd90 b smccc_soc_init.soc_id_jep106_id_str
+ffffffc008d2fda0 b evtstrm_available
+ffffffc008d2fda8 b arch_timer_kvm_info
+ffffffc008d2fdd8 b timer_unstable_counter_workaround_in_use
+ffffffc008d2fde0 b arch_timer_evt
+ffffffc008d2fde8 B of_root
+ffffffc008d2fdf0 B of_chosen
+ffffffc008d2fdf8 B devtree_lock
+ffffffc008d2fe00 b phandle_cache
+ffffffc008d30200 B of_kset
+ffffffc008d30208 B of_aliases
+ffffffc008d30210 b of_stdout_options
+ffffffc008d30218 B of_stdout
+ffffffc008d30220 b of_fdt_crc32
+ffffffc008d30228 b reserved_mem
+ffffffc008d31e28 b reserved_mem_count
+ffffffc008d31e2c b has_nmi
+ffffffc008d31e30 b trace_count
+ffffffc008d31e38 B ras_debugfs_dir
+ffffffc008d31e40 b br_ioctl_hook
+ffffffc008d31e48 b vlan_ioctl_hook
+ffffffc008d31e50 b net_family_lock
+ffffffc008d31e54 b sock_alloc_inode.__key
+ffffffc008d31e58 B net_high_order_alloc_disable_key
+ffffffc008d31e68 b proto_inuse_idx
+ffffffc008d31e68 b sock_lock_init.__key
+ffffffc008d31e68 b sock_lock_init.__key.10
+ffffffc008d31e70 B memalloc_socks_key
+ffffffc008d31e80 b init_net_initialized
+ffffffc008d31e81 b setup_net.__key
+ffffffc008d31ec0 B init_net
+ffffffc008d32c40 b ts_secret
+ffffffc008d32c50 b net_secret
+ffffffc008d32c60 b hashrnd
+ffffffc008d32c70 b net_msg_warn
+ffffffc008d32c74 b ptype_lock
+ffffffc008d32c78 b netdev_chain
+ffffffc008d32c80 b dev_boot_phase
+ffffffc008d32c88 B netstamp_needed_key
+ffffffc008d32c98 b netstamp_wanted
+ffffffc008d32c9c b netstamp_needed_deferred
+ffffffc008d32ca0 b generic_xdp_needed_key
+ffffffc008d32cb0 b napi_hash_lock
+ffffffc008d32cb8 b flush_all_backlogs.flush_cpus
+ffffffc008d32cc0 B dev_base_lock
+ffffffc008d32cc8 b netevent_notif_chain.llvm.6614404057066285611
+ffffffc008d32cd8 b defer_kfree_skb_list
+ffffffc008d32ce0 b rtnl_msg_handlers
+ffffffc008d330f0 b lweventlist_lock
+ffffffc008d330f8 b linkwatch_nextevent
+ffffffc008d33100 b linkwatch_flags
+ffffffc008d33108 b bpf_xdp_get_buff_len_bpf_ids
+ffffffc008d3310c b bpf_skb_output_btf_ids
+ffffffc008d33110 b bpf_xdp_output_btf_ids
+ffffffc008d33118 B nfct_btf_struct_access
+ffffffc008d33120 B btf_sock_ids
+ffffffc008d33160 b bpf_sock_from_file_btf_ids
+ffffffc008d331a0 b md_dst
+ffffffc008d331a8 B bpf_master_redirect_enabled_key
+ffffffc008d331b8 B bpf_sk_lookup_enabled
+ffffffc008d331c8 b broadcast_wq
+ffffffc008d331d0 b inet_rcv_compat.llvm.17611663812133398636
+ffffffc008d331d8 b sock_diag_handlers
+ffffffc008d33348 B reuseport_lock
+ffffffc008d3334c b fib_notifier_net_id
+ffffffc008d33350 b mem_id_ht
+ffffffc008d33358 b mem_id_init
+ffffffc008d3335c b offload_lock
+ffffffc008d33360 b netdev_kobject_init.__key
+ffffffc008d33360 b store_rps_dev_flow_table_cnt.rps_dev_flow_lock
+ffffffc008d33368 b wireless_attrs
+ffffffc008d33370 B nl_table_lock
+ffffffc008d33378 b netlink_tap_net_id
+ffffffc008d3337c b nl_table_users
+ffffffc008d33380 b __netlink_create.__key
+ffffffc008d33380 b __netlink_create.__key.7
+ffffffc008d33380 B genl_sk_destructing_cnt
+ffffffc008d33380 b netlink_tap_init_net.__key
+ffffffc008d33384 b ethtool_rx_flow_rule_create.zero_addr
+ffffffc008d33394 b ethtool_phys_id.busy
+ffffffc008d33398 B ethtool_phy_ops
+ffffffc008d333a0 b ethnl_bcast_seq
+ffffffc008d333a4 b ip_rt_max_size
+ffffffc008d333a8 b fnhe_lock
+ffffffc008d333b0 b fnhe_hashfun.fnhe_hash_key
+ffffffc008d333c0 b dst_entries_init.__key
+ffffffc008d333c0 b dst_entries_init.__key
+ffffffc008d333c0 b dst_entries_init.__key
+ffffffc008d333c0 b dst_entries_init.__key
+ffffffc008d333c0 b ip4_frags
+ffffffc008d33440 b ip4_frags_secret_interval_unused
+ffffffc008d33444 b dist_min
+ffffffc008d33448 B ip4_min_ttl
+ffffffc008d33458 b table_perturb
+ffffffc008d33460 b tcp_init.__key
+ffffffc008d33460 b tcp_orphan_timer
+ffffffc008d33498 b tcp_orphan_cache
+ffffffc008d3349c b tcp_enable_tx_delay.__tcp_tx_delay_enabled
+ffffffc008d334c0 B tcp_memory_allocated
+ffffffc008d33500 B tcp_sockets_allocated
+ffffffc008d33528 B tcp_tx_delay_enabled
+ffffffc008d33538 B tcp_hashinfo
+ffffffc008d33588 b tcp_cong_list_lock
+ffffffc008d3358c b fastopen_seqlock
+ffffffc008d33594 b tcp_metrics_lock
+ffffffc008d33598 b tcpmhash_entries
+ffffffc008d3359c b tcp_ulp_list_lock
+ffffffc008d335c0 B raw_v4_hashinfo
+ffffffc008d33e00 B udp_memory_allocated
+ffffffc008d33e08 B udp_encap_needed_key
+ffffffc008d33e18 b icmp_global
+ffffffc008d33e28 b inet_addr_lst
+ffffffc008d34628 b inetsw_lock
+ffffffc008d34630 b inetsw
+ffffffc008d346e0 b fib_info_lock
+ffffffc008d346e4 b fib_info_cnt
+ffffffc008d346e8 b fib_info_hash_size
+ffffffc008d346f0 b fib_info_hash
+ffffffc008d346f8 b fib_info_laddrhash
+ffffffc008d34700 b fib_info_devhash
+ffffffc008d34f00 b fib_info_hash_bits
+ffffffc008d34f04 b tnode_free_size
+ffffffc008d34f08 b inet_frag_wq
+ffffffc008d34f10 b fqdir_free_list
+ffffffc008d34f18 B pingv6_ops
+ffffffc008d34f48 b ping_table
+ffffffc008d35150 b ping_port_rover
+ffffffc008d35158 B ip_tunnel_metadata_cnt
+ffffffc008d35168 b nexthop_net_init.__key
+ffffffc008d35168 B udp_tunnel_nic_ops
+ffffffc008d35170 b ip_ping_group_range_min
+ffffffc008d35178 b ip_privileged_port_min
+ffffffc008d35180 b inet_diag_table
+ffffffc008d35188 b __xfrm_policy_check.dummy
+ffffffc008d351e0 b xfrm_policy_afinfo_lock
+ffffffc008d351e4 b xfrm_if_cb_lock
+ffffffc008d351e8 b xfrm_policy_inexact_table
+ffffffc008d35290 b xfrm_gen_index.idx_generator
+ffffffc008d35294 b xfrm_net_init.__key
+ffffffc008d35294 b xfrm_state_gc_lock
+ffffffc008d35298 b xfrm_state_gc_list
+ffffffc008d352a0 b xfrm_state_find.saddr_wildcard
+ffffffc008d352b0 b xfrm_get_acqseq.acqseq
+ffffffc008d352b4 b xfrm_km_lock
+ffffffc008d352b8 b xfrm_state_afinfo_lock
+ffffffc008d352c0 b xfrm_state_afinfo
+ffffffc008d35430 b xfrm_input_afinfo_lock
+ffffffc008d35438 b xfrm_input_afinfo
+ffffffc008d354e8 b gro_cells
+ffffffc008d35500 b xfrm_napi_dev
+ffffffc008d35e40 b ipcomp_scratches
+ffffffc008d35e48 b ipcomp_scratch_users
+ffffffc008d35e4c b bsd_socket_locks
+ffffffc008d36250 b bsd_socket_buckets
+ffffffc008d36a50 b unix_nr_socks
+ffffffc008d36a58 b gc_in_progress
+ffffffc008d36a58 b unix_create1.__key
+ffffffc008d36a58 b unix_create1.__key.10
+ffffffc008d36a58 b unix_create1.__key.12
+ffffffc008d36a5c B unix_tot_inflight
+ffffffc008d36a60 B unix_gc_lock
+ffffffc008d36a64 b disable_ipv6_mod.llvm.15637785528374131000
+ffffffc008d36a68 b inetsw6_lock
+ffffffc008d36a70 b inetsw6
+ffffffc008d36b20 b inet6_acaddr_lst.llvm.14826820588835570254
+ffffffc008d37320 b acaddr_hash_lock
+ffffffc008d37328 b addrconf_wq
+ffffffc008d37330 b ipv6_generate_stable_address.lock
+ffffffc008d37334 b ipv6_generate_stable_address.digest
+ffffffc008d37348 b ipv6_generate_stable_address.workspace
+ffffffc008d37388 b ipv6_generate_stable_address.data
+ffffffc008d373c8 b rt6_exception_lock
+ffffffc008d373d0 b rt6_exception_hash.rt6_exception_key
+ffffffc008d373e0 B ip6_ra_lock
+ffffffc008d373e8 B ip6_min_hopcount
+ffffffc008d373f8 B ip6_ra_chain
+ffffffc008d37400 b ndisc_warn_deprecated_sysctl.warncomm
+ffffffc008d37410 b ndisc_warn_deprecated_sysctl.warned
+ffffffc008d37418 B udpv6_encap_needed_key
+ffffffc008d37440 B raw_v6_hashinfo
+ffffffc008d37c80 b mld_wq.llvm.2609348770743347853
+ffffffc008d37c88 b ip6_frags
+ffffffc008d37c88 b ipv6_mc_init_dev.__key
+ffffffc008d37d08 b ip6_ctl_header
+ffffffc008d37d10 b ip6_frags_secret_interval_unused
+ffffffc008d37d14 b ip6_sk_fl_lock
+ffffffc008d37d18 b ip6_fl_lock
+ffffffc008d37d20 b fl_ht
+ffffffc008d38520 b fl_size
+ffffffc008d38524 b ioam6_net_init.__key
+ffffffc008d38524 b seg6_net_init.__key
+ffffffc008d38528 b ip6_header
+ffffffc008d38530 b xfrm6_tunnel_spi_lock
+ffffffc008d38538 b mip6_report_rl
+ffffffc008d38570 B __fib6_flush_trees
+ffffffc008d38578 b inet6addr_chain.llvm.1483565112179379687
+ffffffc008d38588 b fanout_next_id
+ffffffc008d38588 b packet_create.__key
+ffffffc008d38588 b packet_net_init.__key
+ffffffc008d3858c b get_acqseq.acqseq
+ffffffc008d38590 b net_sysctl_init.empty
+ffffffc008d38590 b pfkey_create.__key
+ffffffc008d385d0 b net_header
+ffffffc008d385d8 B vsock_bind_table
+ffffffc008d39598 B vsock_connected_table
+ffffffc008d3a548 B vsock_table_lock
+ffffffc008d3a550 b transport_dgram
+ffffffc008d3a558 b transport_local
+ffffffc008d3a560 b transport_h2g
+ffffffc008d3a568 b transport_g2h
+ffffffc008d3a570 b __vsock_bind_connectible.port
+ffffffc008d3a574 b vsock_tap_lock
+ffffffc008d3a578 b virtio_vsock_workqueue
+ffffffc008d3a580 b the_virtio_vsock
+ffffffc008d3a588 b the_vsock_loopback
+ffffffc008d3a588 b virtio_vsock_probe.__key
+ffffffc008d3a588 b virtio_vsock_probe.__key.2
+ffffffc008d3a588 b virtio_vsock_probe.__key.4
+ffffffc008d3a5d8 b dump_stack_arch_desc_str
+ffffffc008d3a658 b fprop_global_init.__key
+ffffffc008d3a658 b fprop_local_init_percpu.__key
+ffffffc008d3a658 b klist_remove_lock
+ffffffc008d3a65c b kobj_ns_type_lock
+ffffffc008d3a660 b kobj_ns_ops_tbl.0
+ffffffc008d3a668 B uevent_seqnum
+ffffffc008d3a670 b maple_node_cache.llvm.18192276436854584967
+ffffffc008d3a678 B radix_tree_node_cachep
+ffffffc008d3a680 B __bss_stop
+ffffffc008d3b000 B init_pg_dir
+ffffffc008d3e000 B init_pg_end
+ffffffc008d40000 B _end
diff --git a/microdroid/kernel/arm64/kernel-6.1 b/microdroid/kernel/arm64/kernel-6.1
index a2cc4a4..b1be8f7 100644
--- a/microdroid/kernel/arm64/kernel-6.1
+++ b/microdroid/kernel/arm64/kernel-6.1
Binary files differ
diff --git a/microdroid/kernel/arm64/kernel-6.1-gz b/microdroid/kernel/arm64/kernel-6.1-gz
index e053a02..2d24c1c 100644
--- a/microdroid/kernel/arm64/kernel-6.1-gz
+++ b/microdroid/kernel/arm64/kernel-6.1-gz
Binary files differ
diff --git a/microdroid/kernel/arm64/kernel-6.1-lz4 b/microdroid/kernel/arm64/kernel-6.1-lz4
index 16bd4f8..7224d4b 100644
--- a/microdroid/kernel/arm64/kernel-6.1-lz4
+++ b/microdroid/kernel/arm64/kernel-6.1-lz4
Binary files differ
diff --git a/microdroid/kernel/arm64/prebuilt-info.txt b/microdroid/kernel/arm64/prebuilt-info.txt
index 6760366..67cf5ab 100644
--- a/microdroid/kernel/arm64/prebuilt-info.txt
+++ b/microdroid/kernel/arm64/prebuilt-info.txt
@@ -1,3 +1,3 @@
 {
-    "kernel-build-id": 10180051
+    "kernel-build-id": 10298368
 }
diff --git a/microdroid/kernel/x86_64/Android.bp b/microdroid/kernel/x86_64/Android.bp
index b3041cd..f7161de 100644
--- a/microdroid/kernel/x86_64/Android.bp
+++ b/microdroid/kernel/x86_64/Android.bp
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["microdroid_kernel_prebuilts_6.1_x86_64_license"],
 }
 
diff --git a/microdroid/kernel/x86_64/System.map b/microdroid/kernel/x86_64/System.map
index fd6ec90..61964e8 100644
--- a/microdroid/kernel/x86_64/System.map
+++ b/microdroid/kernel/x86_64/System.map
@@ -41,233 +41,233 @@
 000000000001b0ec d nmi_stats
 000000000001b100 d vector_irq
 000000000001b900 d cpu_devices
-000000000001bbe0 d bp_per_reg
-000000000001bc00 d cpu_debugreg
-000000000001bc20 d cpu_dr7
-000000000001bc28 d ssb_state
-000000000001bc40 d __tss_limit_invalid
-000000000001bc48 d msr_misc_features_shadow
-000000000001bc50 d in_kernel_fpu
-000000000001bc58 d fpu_fpregs_owner_ctx
-000000000001bc60 d xfd_state
-000000000001bc80 d cpu_current_top_of_stack
-000000000001bc88 d hardirq_stack_ptr
-000000000001bc90 d hardirq_stack_inuse
-000000000001bcc0 d current_task
-000000000001bcc8 d __preempt_count
-000000000001bcd0 d x86_spec_ctrl_current
-000000000001bcd8 d arch_freq_scale
-000000000001bce0 d saved_epb
-000000000001bd00 d vmw_steal_time
-000000000001bd40 d tsc_adjust
-000000000001bd80 d lapic_events
-000000000001be80 d cleanup_list
-000000000001be88 d ipi_mask
-000000000001be90 d cpu_hpet_channel
-000000000001bec0 d apf_reason
-000000000001bf40 d steal_time
-000000000001bf80 d __pv_cpu_mask
-000000000001bf88 d kvm_apic_eoi
-000000000001bf90 d hv_clock_per_cpu
-000000000001bf98 d paravirt_lazy_mode
-000000000001bfa0 d nmi_user_regs
-000000000001c048 d cea_exception_stacks
-000000000001c050 d process_counts
-000000000001c060 d cached_stacks
-000000000001c070 d cpuhp_state
-000000000001c0e8 d __percpu_rwsem_rc_cpu_hotplug_lock
-000000000001c0f0 d ksoftirqd
-000000000001c0f8 d tasklet_vec
-000000000001c108 d tasklet_hi_vec
-000000000001c118 d wq_watchdog_touched_cpu
-000000000001c120 d wq_rr_cpu_last
-000000000001c128 d idle_threads
-000000000001c130 d cpu_hotplug_state
-000000000001c138 d kstat
-000000000001c168 d push_work
-000000000001c198 d kernel_cpustat
-000000000001c1e8 d load_balance_mask
-000000000001c1f0 d select_rq_mask
-000000000001c1f8 d local_cpu_mask
-000000000001c200 d local_cpu_mask_dl
-000000000001c208 d rt_push_head
-000000000001c218 d rt_pull_head
-000000000001c228 d dl_push_head
-000000000001c238 d dl_pull_head
-000000000001c248 d cpu_irqtime
-000000000001c280 d system_group_pcpu
-000000000001c300 d sd_numa
-000000000001c308 d root_cpuacct_cpuusage
-000000000001c310 d sugov_cpu
-000000000001c358 d sd_llc_id
-000000000001c360 d cpufreq_update_util_data
-000000000001c368 d sd_llc_shared
-000000000001c370 d sd_llc
-000000000001c378 d sd_llc_size
-000000000001c380 d sd_asym_packing
-000000000001c388 d sd_asym_cpucapacity
-000000000001c390 d printk_count_nmi
-000000000001c391 d printk_count
-000000000001c394 d printk_pending
-000000000001c398 d wake_up_klogd_work
-000000000001c3b8 d printk_context
-000000000001c3c0 d rcu_tasks__percpu
-000000000001c4c0 d tasks_rcu_exit_srcu_srcu_data
-000000000001c640 d krc
-000000000001c820 d cpu_profile_hits
-000000000001c830 d cpu_profile_flip
-000000000001c840 d timer_bases
-000000000001ed40 d hrtimer_bases
-000000000001ef80 d tick_percpu_dev
-000000000001f258 d tick_cpu_device
-000000000001f268 d tick_oneshot_wakeup_device
-000000000001f270 d tick_cpu_sched
-000000000001f350 d __percpu_rwsem_rc_cgroup_threadgroup_rwsem
-000000000001f358 d cgrp_dfl_root_rstat_cpu
-000000000001f398 d cgroup_rstat_cpu_lock
-000000000001f39c d __percpu_rwsem_rc_cpuset_rwsem
-000000000001f3a0 d cpu_stopper
-000000000001f400 d watchdog_report_ts
-000000000001f408 d softlockup_touch_sync
-000000000001f410 d hrtimer_interrupts
-000000000001f418 d hrtimer_interrupts_saved
-000000000001f420 d watchdog_hrtimer
-000000000001f460 d softlockup_completion
-000000000001f480 d softlockup_stop_work
-000000000001f4b0 d watchdog_touch_ts
-000000000001f4b8 d listener_array
-000000000001f4f8 d taskstats_seqnum
-000000000001f500 d tracepoint_srcu_srcu_data
-000000000001f680 d trace_taskinfo_save
-000000000001f688 d trace_buffered_event
-000000000001f690 d trace_buffered_event_cnt
-000000000001f694 d ftrace_stack_reserve
-000000000001f698 d ftrace_stacks
-0000000000027698 d user_stack_count
-00000000000276a0 d cpu_access_lock
-00000000000276c0 d raised_list
-00000000000276c8 d lazy_list
-00000000000276d0 d bpf_user_rnd_state
-00000000000276e0 d running_sample_length
-00000000000276e8 d perf_sched_cb_usages
-00000000000276f0 d sched_cb_list
-0000000000027700 d perf_cgroup_events
-0000000000027708 d active_ctx_list
-0000000000027718 d perf_throttled_seq
-0000000000027720 d perf_throttled_count
-0000000000027728 d swevent_htable
-0000000000027770 d __perf_regs
-0000000000027a10 d pmu_sb_events
-0000000000027a28 d nop_txn_flags
-0000000000027a30 d callchain_recursion
-0000000000027a40 d __percpu_rwsem_rc_bp_cpuinfo_sem
-0000000000027a50 d bp_cpuinfo
-0000000000027a64 d __percpu_rwsem_rc_dup_mmap_sem
-0000000000027a68 d context_tracking
-0000000000027a80 d dirty_throttle_leaks
-0000000000027a84 d bdp_ratelimits
-0000000000027a88 d lru_rotate
-0000000000027b08 d cpu_fbatches
-0000000000027d88 d lru_add_drain_work
-0000000000027da8 d vmstat_work
-0000000000027e00 d vm_event_states
-00000000000280f8 d memcg_paths
-0000000000028108 d mlock_pvec
-0000000000028188 d vmap_block_queue
-00000000000281a0 d vfree_deferred
-00000000000281c8 d ne_fit_preload_node
-0000000000028200 d boot_nodestats
-0000000000028240 d boot_pageset
-0000000000028340 d boot_zonestats
-000000000002834c d __percpu_rwsem_rc_mem_hotplug_lock
-0000000000028350 d swp_slots
-00000000000283a0 d slub_flush
-00000000000283d0 d memcg_stock
-0000000000028428 d int_active_memcg
-0000000000028430 d stats_updates
-0000000000028438 d zs_map_area
-0000000000028450 d nr_dentry
-0000000000028458 d nr_dentry_unused
-0000000000028460 d nr_dentry_negative
-0000000000028468 d nr_inodes
-0000000000028470 d last_ino
-0000000000028478 d nr_unused
-0000000000028480 d bh_lrus
-0000000000028500 d bh_accounting
-0000000000028508 d file_lock_list
-0000000000028518 d __percpu_rwsem_rc_file_rwsem
-0000000000028520 d discard_pa_seq
-0000000000028528 d erofs_pcb
-0000000000028548 d avc_cache_stats
-0000000000028560 d scomp_scratch
-0000000000028578 d blk_cpu_done
-0000000000028580 d processors
-0000000000028588 d processor_device_array
-0000000000028590 d cpufreq_thermal_reduction_pctg
-00000000000285a0 d acpi_cpuidle_device
-00000000000285b0 d acpi_cstate
-0000000000028600 d cpc_desc_ptr
-0000000000028608 d cpu_pcc_subspace_idx
-0000000000028610 d batched_entropy_u8
-0000000000028680 d batched_entropy_u16
-00000000000286f0 d batched_entropy_u32
-0000000000028760 d batched_entropy_u64
-00000000000287d0 d crngs
-00000000000287f8 d irq_randomness
-0000000000028880 d device_links_srcu_srcu_data
-0000000000028a00 d cpu_sys_devices
-0000000000028a08 d ci_cpu_cacheinfo
-0000000000028a20 d ci_cache_dev
-0000000000028a28 d ci_index_dev
-0000000000028a40 d wakeup_srcu_srcu_data
-0000000000028bc0 d flush_idx
-0000000000028c00 d dax_srcu_srcu_data
-0000000000028d80 d thermal_state
-0000000000029240 d cpufreq_cpu_data
-0000000000029280 d cpufreq_transition_notifier_list_head_srcu_data
-0000000000029400 d cpu_dbs
-0000000000029430 d cpuidle_dev
-0000000000029750 d cpuidle_devices
-0000000000029758 d menu_devices
-00000000000297c0 d napi_alloc_cache
-00000000000299f0 d netdev_alloc_cache
-0000000000029a10 d __net_cookie
-0000000000029a20 d flush_works
-0000000000029a40 d bpf_redirect_info
-0000000000029a78 d bpf_sp
-0000000000029c80 d __sock_cookie
-0000000000029c90 d sch_frag_data_storage
-0000000000029ce0 d rt_cache_stat
-0000000000029d00 d tcp_memory_per_cpu_fw_alloc
-0000000000029d04 d tcp_orphan_count
-0000000000029d08 d tsq_tasklet
-0000000000029d40 d ipv4_tcp_sk
-0000000000029d48 d udp_memory_per_cpu_fw_alloc
-0000000000029d50 d ipv4_icmp_sk
-0000000000029d58 d xfrm_trans_tasklet
-0000000000029d98 d ipv6_icmp_sk
-0000000000029da0 d distribute_cpu_mask_prev
-0000000000029da8 d __irq_regs
-0000000000029db0 d radix_tree_preloads
-0000000000029dc0 d irq_stat
-0000000000029e00 d cyc2ns
-0000000000029e40 d cpu_samples
-0000000000029e80 d cpu_tlbstate
-0000000000029f00 d cpu_tlbstate_shared
-0000000000029f40 d flush_tlb_info
-0000000000029f80 d cpu_worker_pools
-000000000002a580 d runqueues
-000000000002b3c0 d sched_clock_data
-000000000002b400 d osq_node
-000000000002b440 d qnodes
-000000000002b480 d rcu_data
-000000000002b800 d cfd_data
-000000000002b840 d call_single_queue
-000000000002b880 d csd_data
-000000000002b8c0 d softnet_data
-000000000002bbc0 d rt_uncached_list
-000000000002bc00 d rt6_uncached_list
-000000000002bc28 D __per_cpu_end
+000000000001bc80 d cpu_dr7
+000000000001bc90 d bp_per_reg
+000000000001bcb0 d cpu_debugreg
+000000000001bcd0 d __tss_limit_invalid
+000000000001bcd8 d ssb_state
+000000000001bcf0 d msr_misc_features_shadow
+000000000001bcf8 d in_kernel_fpu
+000000000001bd00 d fpu_fpregs_owner_ctx
+000000000001bd08 d xfd_state
+000000000001bd40 d cpu_current_top_of_stack
+000000000001bd48 d hardirq_stack_ptr
+000000000001bd50 d hardirq_stack_inuse
+000000000001bd80 d current_task
+000000000001bd88 d __preempt_count
+000000000001bd90 d x86_spec_ctrl_current
+000000000001bd98 d arch_freq_scale
+000000000001bda0 d saved_epb
+000000000001bdc0 d vmw_steal_time
+000000000001be00 d tsc_adjust
+000000000001be40 d lapic_events
+000000000001bf40 d cleanup_list
+000000000001bf48 d ipi_mask
+000000000001bf50 d cpu_hpet_channel
+000000000001bf80 d apf_reason
+000000000001c000 d steal_time
+000000000001c040 d __pv_cpu_mask
+000000000001c048 d kvm_apic_eoi
+000000000001c050 d hv_clock_per_cpu
+000000000001c058 d paravirt_lazy_mode
+000000000001c060 d nmi_user_regs
+000000000001c108 d cea_exception_stacks
+000000000001c110 d process_counts
+000000000001c120 d cached_stacks
+000000000001c130 d cpuhp_state
+000000000001c1a8 d __percpu_rwsem_rc_cpu_hotplug_lock
+000000000001c1b0 d ksoftirqd
+000000000001c1b8 d tasklet_vec
+000000000001c1c8 d tasklet_hi_vec
+000000000001c1d8 d wq_watchdog_touched_cpu
+000000000001c1e0 d wq_rr_cpu_last
+000000000001c1e8 d idle_threads
+000000000001c1f0 d cpu_hotplug_state
+000000000001c1f8 d kstat
+000000000001c228 d push_work
+000000000001c258 d kernel_cpustat
+000000000001c2a8 d load_balance_mask
+000000000001c2b0 d select_rq_mask
+000000000001c2b8 d local_cpu_mask
+000000000001c2c0 d local_cpu_mask_dl
+000000000001c2c8 d rt_push_head
+000000000001c2d8 d rt_pull_head
+000000000001c2e8 d dl_push_head
+000000000001c2f8 d dl_pull_head
+000000000001c308 d cpu_irqtime
+000000000001c340 d system_group_pcpu
+000000000001c3c0 d sd_numa
+000000000001c3c8 d root_cpuacct_cpuusage
+000000000001c3d0 d sugov_cpu
+000000000001c418 d sd_llc_id
+000000000001c420 d cpufreq_update_util_data
+000000000001c428 d sd_llc_shared
+000000000001c430 d sd_llc
+000000000001c438 d sd_llc_size
+000000000001c440 d sd_asym_packing
+000000000001c448 d sd_asym_cpucapacity
+000000000001c450 d printk_count_nmi
+000000000001c451 d printk_count
+000000000001c454 d printk_pending
+000000000001c458 d wake_up_klogd_work
+000000000001c478 d printk_context
+000000000001c480 d rcu_tasks__percpu
+000000000001c5c0 d tasks_rcu_exit_srcu_srcu_data
+000000000001c740 d krc
+000000000001c9b0 d cpu_profile_hits
+000000000001c9c0 d cpu_profile_flip
+000000000001ca00 d timer_bases
+000000000001ef00 d hrtimer_bases
+000000000001f140 d tick_percpu_dev
+000000000001f4b0 d tick_cpu_device
+000000000001f4c0 d tick_oneshot_wakeup_device
+000000000001f4c8 d tick_cpu_sched
+000000000001f5b0 d __percpu_rwsem_rc_cgroup_threadgroup_rwsem
+000000000001f5b8 d cgrp_dfl_root_rstat_cpu
+000000000001f5f8 d cgroup_rstat_cpu_lock
+000000000001f5fc d __percpu_rwsem_rc_cpuset_rwsem
+000000000001f600 d cpu_stopper
+000000000001f660 d watchdog_report_ts
+000000000001f668 d softlockup_touch_sync
+000000000001f670 d hrtimer_interrupts
+000000000001f678 d hrtimer_interrupts_saved
+000000000001f680 d watchdog_hrtimer
+000000000001f6c8 d softlockup_completion
+000000000001f6e8 d softlockup_stop_work
+000000000001f718 d watchdog_touch_ts
+000000000001f720 d listener_array
+000000000001f770 d taskstats_seqnum
+000000000001f780 d tracepoint_srcu_srcu_data
+000000000001f900 d trace_taskinfo_save
+000000000001f908 d trace_buffered_event
+000000000001f910 d trace_buffered_event_cnt
+000000000001f914 d ftrace_stack_reserve
+000000000001f918 d ftrace_stacks
+0000000000027918 d user_stack_count
+0000000000027920 d cpu_access_lock
+0000000000027950 d raised_list
+0000000000027958 d lazy_list
+0000000000027960 d bpf_user_rnd_state
+0000000000027970 d running_sample_length
+0000000000027978 d perf_sched_cb_usages
+0000000000027980 d sched_cb_list
+0000000000027990 d perf_cgroup_events
+0000000000027998 d active_ctx_list
+00000000000279a8 d perf_throttled_seq
+00000000000279b0 d perf_throttled_count
+00000000000279b8 d swevent_htable
+0000000000027a10 d __perf_regs
+0000000000027cb0 d pmu_sb_events
+0000000000027cc8 d nop_txn_flags
+0000000000027cd0 d callchain_recursion
+0000000000027ce0 d __percpu_rwsem_rc_bp_cpuinfo_sem
+0000000000027cf0 d bp_cpuinfo
+0000000000027d04 d __percpu_rwsem_rc_dup_mmap_sem
+0000000000027d08 d context_tracking
+0000000000027d20 d dirty_throttle_leaks
+0000000000027d24 d bdp_ratelimits
+0000000000027d28 d lru_rotate
+0000000000027da8 d cpu_fbatches
+0000000000028028 d lru_add_drain_work
+0000000000028058 d vmstat_work
+00000000000280e0 d vm_event_states
+00000000000283d8 d memcg_paths
+00000000000283e8 d mlock_pvec
+0000000000028468 d vmap_block_queue
+0000000000028480 d vfree_deferred
+00000000000284b8 d ne_fit_preload_node
+00000000000284c0 d boot_nodestats
+0000000000028500 d boot_pageset
+0000000000028600 d boot_zonestats
+000000000002860c d __percpu_rwsem_rc_mem_hotplug_lock
+0000000000028610 d swp_slots
+0000000000028678 d slub_flush
+00000000000286b8 d int_active_memcg
+00000000000286c0 d memcg_stock
+0000000000028728 d stats_updates
+0000000000028730 d zs_map_area
+0000000000028748 d nr_dentry
+0000000000028750 d nr_dentry_unused
+0000000000028758 d nr_dentry_negative
+0000000000028760 d nr_inodes
+0000000000028768 d last_ino
+0000000000028770 d nr_unused
+0000000000028778 d bh_lrus
+00000000000287f8 d bh_accounting
+0000000000028800 d file_lock_list
+0000000000028810 d __percpu_rwsem_rc_file_rwsem
+0000000000028818 d discard_pa_seq
+0000000000028820 d erofs_pcb
+0000000000028840 d avc_cache_stats
+0000000000028858 d scomp_scratch
+0000000000028870 d blk_cpu_done
+0000000000028878 d processors
+0000000000028880 d processor_device_array
+0000000000028888 d cpufreq_thermal_reduction_pctg
+0000000000028890 d acpi_cpuidle_device
+00000000000288a0 d acpi_cstate
+00000000000288f0 d cpc_desc_ptr
+00000000000288f8 d cpu_pcc_subspace_idx
+0000000000028900 d batched_entropy_u8
+0000000000028970 d batched_entropy_u16
+00000000000289e0 d batched_entropy_u32
+0000000000028a50 d batched_entropy_u64
+0000000000028ac0 d crngs
+0000000000028ae8 d irq_randomness
+0000000000028b80 d device_links_srcu_srcu_data
+0000000000028d00 d cpu_sys_devices
+0000000000028d08 d ci_cpu_cacheinfo
+0000000000028d20 d ci_cache_dev
+0000000000028d28 d ci_index_dev
+0000000000028d40 d wakeup_srcu_srcu_data
+0000000000028ec0 d flush_idx
+0000000000028f00 d dax_srcu_srcu_data
+0000000000029080 d thermal_state
+00000000000296c0 d cpufreq_cpu_data
+0000000000029700 d cpufreq_transition_notifier_list_head_srcu_data
+0000000000029880 d cpu_dbs
+00000000000298b0 d cpuidle_dev
+0000000000029bd8 d cpuidle_devices
+0000000000029be0 d menu_devices
+0000000000029c48 d napi_alloc_cache
+0000000000029e78 d netdev_alloc_cache
+0000000000029e90 d __net_cookie
+0000000000029ea0 d flush_works
+0000000000029ed0 d bpf_redirect_info
+0000000000029f08 d bpf_sp
+000000000002a110 d __sock_cookie
+000000000002a120 d sch_frag_data_storage
+000000000002a170 d rt_cache_stat
+000000000002a190 d tcp_memory_per_cpu_fw_alloc
+000000000002a194 d tcp_orphan_count
+000000000002a198 d tsq_tasklet
+000000000002a1d0 d ipv4_tcp_sk
+000000000002a1d8 d udp_memory_per_cpu_fw_alloc
+000000000002a1e0 d ipv4_icmp_sk
+000000000002a1e8 d xfrm_trans_tasklet
+000000000002a238 d ipv6_icmp_sk
+000000000002a240 d distribute_cpu_mask_prev
+000000000002a248 d __irq_regs
+000000000002a250 d radix_tree_preloads
+000000000002a280 d irq_stat
+000000000002a2c0 d cyc2ns
+000000000002a300 d cpu_samples
+000000000002a340 d cpu_tlbstate
+000000000002a3c0 d cpu_tlbstate_shared
+000000000002a400 d flush_tlb_info
+000000000002a440 d cpu_worker_pools
+000000000002aa80 d runqueues
+000000000002b940 d sched_clock_data
+000000000002b980 d osq_node
+000000000002b9c0 d qnodes
+000000000002ba00 d rcu_data
+000000000002bd80 d cfd_data
+000000000002bdc0 d call_single_queue
+000000000002be00 d csd_data
+000000000002be40 d softnet_data
+000000000002c140 d rt_uncached_list
+000000000002c180 d rt6_uncached_list
+000000000002c1a8 D __per_cpu_end
 0000000001000000 A phys_startup_64
 ffffffff81000000 T _stext
 ffffffff81000000 T _text
@@ -1197,42 +1197,42 @@
 ffffffff8105ba40 T clear_user_original
 ffffffff8105ba90 T clear_user_rep_good
 ffffffff8105bad0 T clear_user_erms
-ffffffff8105baf0 T copy_mc_enhanced_fast_string
-ffffffff8105baff t .E_copy
-ffffffff8105bb10 T copy_page
-ffffffff8105bb20 t copy_page_regs
-ffffffff8105bc00 T copy_user_generic_unrolled
-ffffffff8105bc90 T copy_user_generic_string
-ffffffff8105bce0 T copy_user_enhanced_fast_string
-ffffffff8105bd30 t copy_user_short_string
-ffffffff8105bd80 T __copy_user_nocache
-ffffffff8105be90 T csum_partial_copy_generic
-ffffffff8105c070 T __memset
-ffffffff8105c070 W memset
-ffffffff8105c0b0 t memset_erms
-ffffffff8105c0d0 t memset_orig
-ffffffff8105c180 T __memmove
-ffffffff8105c180 W memmove
-ffffffff8105c330 T __get_user_1
-ffffffff8105c360 T __get_user_2
-ffffffff8105c390 T __get_user_4
-ffffffff8105c3c0 T __get_user_8
-ffffffff8105c3f0 T __get_user_nocheck_1
-ffffffff8105c410 T __get_user_nocheck_2
-ffffffff8105c430 T __get_user_nocheck_4
-ffffffff8105c450 T __get_user_nocheck_8
-ffffffff8105c473 t bad_get_user
-ffffffff8105c490 T __put_user_1
-ffffffff8105c49f T __put_user_nocheck_1
-ffffffff8105c4b0 T __put_user_2
-ffffffff8105c4bf T __put_user_nocheck_2
-ffffffff8105c4d0 T __put_user_4
-ffffffff8105c4df T __put_user_nocheck_4
-ffffffff8105c4f0 T __put_user_8
-ffffffff8105c4ff T __put_user_nocheck_8
-ffffffff8105c520 T __static_call_return
-ffffffff8105c524 T __raw_callee_save___kvm_vcpu_is_preempted
-ffffffff8105c540 T this_cpu_cmpxchg16b_emu
+ffffffff8105baf0 T this_cpu_cmpxchg16b_emu
+ffffffff8105bb20 T copy_mc_enhanced_fast_string
+ffffffff8105bb2f t .E_copy
+ffffffff8105bb40 T copy_page
+ffffffff8105bb50 t copy_page_regs
+ffffffff8105bc30 T copy_user_generic_unrolled
+ffffffff8105bcc0 T copy_user_generic_string
+ffffffff8105bd10 T copy_user_enhanced_fast_string
+ffffffff8105bd60 t copy_user_short_string
+ffffffff8105bdb0 T __copy_user_nocache
+ffffffff8105bec0 T csum_partial_copy_generic
+ffffffff8105c0a0 T __get_user_1
+ffffffff8105c0d0 T __get_user_2
+ffffffff8105c100 T __get_user_4
+ffffffff8105c130 T __get_user_8
+ffffffff8105c160 T __get_user_nocheck_1
+ffffffff8105c180 T __get_user_nocheck_2
+ffffffff8105c1a0 T __get_user_nocheck_4
+ffffffff8105c1c0 T __get_user_nocheck_8
+ffffffff8105c1e3 t bad_get_user
+ffffffff8105c200 T __memmove
+ffffffff8105c200 W memmove
+ffffffff8105c3b0 T __memset
+ffffffff8105c3b0 W memset
+ffffffff8105c3f0 t memset_erms
+ffffffff8105c410 t memset_orig
+ffffffff8105c4c0 T __put_user_1
+ffffffff8105c4cf T __put_user_nocheck_1
+ffffffff8105c4e0 T __put_user_2
+ffffffff8105c4ef T __put_user_nocheck_2
+ffffffff8105c500 T __put_user_4
+ffffffff8105c50f T __put_user_nocheck_4
+ffffffff8105c520 T __put_user_8
+ffffffff8105c52f T __put_user_nocheck_8
+ffffffff8105c550 T __static_call_return
+ffffffff8105c554 T __raw_callee_save___kvm_vcpu_is_preempted
 ffffffff8105c580 T __x86_indirect_thunk_array
 ffffffff8105c580 T __x86_indirect_thunk_rax
 ffffffff8105c5a0 T __x86_indirect_thunk_rcx
@@ -1264,32952 +1264,33118 @@
 ffffffff8105cd80 t perf_trace_initcall_finish
 ffffffff8105ce80 t rcu_read_unlock
 ffffffff8105ce90 t rcu_read_unlock
-ffffffff8105cea0 t trace_raw_output_initcall_level
-ffffffff8105cf00 t trace_raw_output_initcall_start
-ffffffff8105cf50 t trace_raw_output_initcall_finish
-ffffffff8105cfb0 t run_init_process
-ffffffff8105d060 t name_to_dev_t
-ffffffff8105d890 t rootfs_init_fs_context
-ffffffff8105d8c0 t match_dev_by_uuid
-ffffffff8105d900 t match_dev_by_label
-ffffffff8105d940 t wait_for_initramfs
-ffffffff8105d990 t panic_show_mem
-ffffffff8105da10 t show_mem
-ffffffff8105da30 t calibration_delay_done
-ffffffff8105da40 t calibrate_delay
-ffffffff8105e1c0 t __x64_sys_ni_syscall
-ffffffff8105e1e0 t arch_get_vdso_data
-ffffffff8105e200 t map_vdso_once
-ffffffff8105e370 t map_vdso
-ffffffff8105e4f0 t arch_setup_additional_pages
-ffffffff8105e5a0 t arch_syscall_is_vdso_sigreturn
-ffffffff8105e5b0 t vdso_fault
-ffffffff8105e640 t vdso_mremap
-ffffffff8105e670 t vvar_fault
-ffffffff8105e740 t fixup_vdso_exception
-ffffffff8105e7f0 t __traceiter_emulate_vsyscall
-ffffffff8105e840 t trace_event_raw_event_emulate_vsyscall
-ffffffff8105e900 t perf_trace_emulate_vsyscall
-ffffffff8105e9f0 t emulate_vsyscall
-ffffffff8105ee90 t warn_bad_vsyscall
-ffffffff8105ef20 t write_ok_or_segv
-ffffffff8105ef80 t get_gate_vma
-ffffffff8105efa0 t in_gate_area
-ffffffff8105efd0 t in_gate_area_no_mm
-ffffffff8105f000 t trace_raw_output_emulate_vsyscall
-ffffffff8105f050 t gate_vma_name
-ffffffff8105f070 t x86_perf_event_update
-ffffffff8105f120 t check_hw_exists
-ffffffff8105f4a0 t hw_perf_lbr_event_destroy
-ffffffff8105f4d0 t hw_perf_event_destroy
-ffffffff8105f4f0 t x86_del_exclusive
-ffffffff8105f530 t x86_reserve_hardware
-ffffffff8105f760 t x86_release_hardware
-ffffffff8105f8e0 t x86_add_exclusive
-ffffffff8105f9a0 t x86_setup_perfctr
-ffffffff8105fc90 t x86_pmu_max_precise
-ffffffff8105fce0 t x86_pmu_hw_config
-ffffffff8105fef0 t x86_pmu_disable_all
-ffffffff810600a0 t native_read_msr
-ffffffff810600d0 t native_read_msr
-ffffffff81060100 t native_read_msr
-ffffffff81060140 t native_read_msr
-ffffffff81060170 t perf_guest_get_msrs
-ffffffff81060180 t x86_pmu_enable_all
-ffffffff81060200 t __x86_pmu_enable_event
-ffffffff810602e0 t __x86_pmu_enable_event
-ffffffff810603c0 t x86_get_pmu
-ffffffff81060400 t perf_assign_events
-ffffffff810607d0 t x86_schedule_events
-ffffffff81060aa0 t x86_perf_rdpmc_index
-ffffffff81060ac0 t x86_perf_event_set_period
-ffffffff81060c90 t x86_pmu_enable_event
-ffffffff81060cd0 t perf_event_print_debug
-ffffffff81061140 t x86_pmu_stop
-ffffffff81061200 t x86_pmu_handle_irq
-ffffffff81061420 t perf_events_lapic_init
-ffffffff81061460 t events_sysfs_show
-ffffffff810614d0 t events_ht_sysfs_show
-ffffffff81061500 t events_hybrid_sysfs_show
-ffffffff81061610 t x86_event_sysfs_show
-ffffffff81061710 t x86_pmu_show_pmu_cap
-ffffffff810617c0 t x86_pmu_update_cpu_context
-ffffffff810617f0 t perf_clear_dirty_counters
-ffffffff81061960 t perf_check_microcode
-ffffffff81061980 t arch_perf_update_userpage
-ffffffff81061a80 t perf_callchain_kernel
-ffffffff81061c00 t perf_callchain_user
-ffffffff81061ce0 t perf_instruction_pointer
-ffffffff81061d80 t perf_misc_flags
-ffffffff81061db0 t perf_get_x86_pmu_capability
-ffffffff81061e50 t perf_get_hw_event_config
-ffffffff81061e90 t perf_event_nmi_handler
-ffffffff81061ee0 t _x86_pmu_read
-ffffffff81061ef0 t x86_pmu_prepare_cpu
-ffffffff81061f40 t x86_pmu_dead_cpu
-ffffffff81061f60 t x86_pmu_starting_cpu
-ffffffff81061f80 t x86_pmu_dying_cpu
-ffffffff81061fa0 t x86_pmu_online_cpu
-ffffffff81062000 t is_visible
-ffffffff81062040 t x86_pmu_enable
-ffffffff810623d0 t x86_pmu_disable
-ffffffff81062420 t x86_pmu_event_init
-ffffffff81062760 t x86_pmu_event_mapped
-ffffffff810627b0 t x86_pmu_event_unmapped
-ffffffff81062800 t x86_pmu_add
-ffffffff81062920 t x86_pmu_del
-ffffffff81062b40 t x86_pmu_start
-ffffffff81062bf0 t x86_pmu_read
-ffffffff81062c00 t x86_pmu_start_txn
-ffffffff81062ca0 t x86_pmu_commit_txn
-ffffffff81062db0 t x86_pmu_cancel_txn
-ffffffff81062ec0 t x86_pmu_event_idx
-ffffffff81062f00 t x86_pmu_sched_task
-ffffffff81062f10 t x86_pmu_swap_task_ctx
-ffffffff81062f20 t x86_pmu_aux_output_match
-ffffffff81062f50 t x86_pmu_filter_match
-ffffffff81062f80 t x86_pmu_check_period
-ffffffff81063020 t get_attr_rdpmc
-ffffffff81063050 t set_attr_rdpmc
-ffffffff81063160 t max_precise_show
-ffffffff810631c0 t allocate_fake_cpuc
-ffffffff81063280 t collect_events
-ffffffff810635e0 t perf_msr_probe
-ffffffff81063720 t not_visible
-ffffffff81063730 t branch_type
-ffffffff81063750 t get_branch_type.llvm.16988724833531132735
-ffffffff810639f0 t branch_type_fused
-ffffffff81063a10 t common_branch_type
-ffffffff81063a60 t decode_branch_type
-ffffffff81063be0 t cleanup_rapl_pmus
-ffffffff81063c30 t rapl_cpu_online
-ffffffff81063d60 t rapl_cpu_offline
-ffffffff81063e40 t test_msr
-ffffffff81063e60 t test_msr
-ffffffff81063e80 t rapl_pmu_event_init
-ffffffff81063f80 t rapl_pmu_event_add
-ffffffff81063fe0 t rapl_pmu_event_del
-ffffffff81064000 t rapl_pmu_event_start
-ffffffff81064040 t rapl_pmu_event_stop
-ffffffff81064120 t rapl_pmu_event_read
-ffffffff81064130 t rapl_get_attr_cpumask
-ffffffff81064160 t event_show
-ffffffff81064190 t event_show
-ffffffff810641d0 t event_show
-ffffffff81064200 t event_show
-ffffffff81064230 t event_show
-ffffffff81064260 t event_show
-ffffffff81064290 t event_show
-ffffffff810642c0 t event_show
-ffffffff810642f0 t event_show
-ffffffff81064320 t event_show
-ffffffff81064350 t __rapl_pmu_event_start
-ffffffff81064410 t rapl_event_update
-ffffffff810644c0 t rapl_hrtimer_handle
-ffffffff81064560 t amd_pmu_test_overflow_topbit
-ffffffff810645c0 t amd_pmu_enable_virt
-ffffffff81064600 t amd_pmu_reload_virt
-ffffffff81064710 t amd_pmu_disable_virt
-ffffffff81064750 t amd_pmu_handle_irq
-ffffffff810647e0 t amd_pmu_disable_all
-ffffffff81064870 t amd_pmu_enable_all
-ffffffff810648e0 t amd_pmu_enable_event
-ffffffff810648f0 t amd_pmu_disable_event
-ffffffff810649e0 t amd_pmu_add_event
-ffffffff81064a00 t amd_pmu_del_event
-ffffffff81064a20 t amd_pmu_hw_config
-ffffffff81064b20 t amd_pmu_addr_offset
-ffffffff81064ba0 t amd_pmu_event_map
-ffffffff81064be0 t amd_get_event_constraints
-ffffffff81064d20 t amd_put_event_constraints
-ffffffff81064da0 t amd_event_sysfs_show
-ffffffff81064dd0 t amd_pmu_cpu_prepare
-ffffffff81064ee0 t amd_pmu_cpu_starting
-ffffffff81065030 t amd_pmu_cpu_dead
-ffffffff81065100 t umask_show
-ffffffff81065130 t umask_show
-ffffffff81065160 t umask_show
-ffffffff81065190 t umask_show
-ffffffff810651c0 t umask_show
-ffffffff810651f0 t edge_show
-ffffffff81065220 t edge_show
-ffffffff81065250 t edge_show
-ffffffff81065280 t edge_show
-ffffffff810652b0 t edge_show
-ffffffff810652e0 t inv_show
-ffffffff81065310 t inv_show
-ffffffff81065340 t inv_show
-ffffffff81065370 t inv_show
-ffffffff810653a0 t inv_show
-ffffffff810653d0 t cmask_show
-ffffffff81065400 t cmask_show
-ffffffff81065430 t cmask_show
-ffffffff81065460 t cmask_show
-ffffffff81065490 t cmask_show
-ffffffff810654c0 t amd_pmu_v2_enable_all
-ffffffff81065500 t amd_pmu_v2_disable_all
-ffffffff810655b0 t amd_pmu_v2_enable_event
-ffffffff810656b0 t amd_pmu_v2_handle_irq
-ffffffff81065960 t amd_pmu_test_overflow_status
-ffffffff810659a0 t amd_get_event_constraints_f15h
-ffffffff81065b70 t amd_get_event_constraints_f17h
-ffffffff81065bc0 t amd_put_event_constraints_f17h
-ffffffff81065be0 t amd_get_event_constraints_f19h
-ffffffff81065c60 t amd_pmu_brs_sched_task
-ffffffff81065c70 t amd_pmu_limit_period
-ffffffff81065ca0 t amd_brs_hw_config
-ffffffff81065cb0 t amd_brs_reset
-ffffffff81065cc0 t amd_pmu_brs_add
-ffffffff81065cd0 t amd_pmu_brs_del
-ffffffff81065ce0 t amd_branches_is_visible
-ffffffff81065d10 t branches_show
-ffffffff81065d40 t branches_show
-ffffffff81065d70 t amd_pmu_lbr_read
-ffffffff81066120 t amd_pmu_lbr_hw_config
-ffffffff81066240 t amd_pmu_lbr_reset
-ffffffff81066310 t amd_pmu_lbr_add
-ffffffff810663b0 t amd_pmu_lbr_del
-ffffffff81066410 t amd_pmu_lbr_sched_task
-ffffffff81066450 t amd_pmu_lbr_enable_all
-ffffffff81066570 t amd_pmu_lbr_disable_all
-ffffffff81066650 t get_ibs_caps
-ffffffff81066670 t ibs_eilvt_setup
-ffffffff81066830 t ibs_eilvt_valid
-ffffffff81066900 t x86_pmu_amd_ibs_starting_cpu
-ffffffff81066970 t x86_pmu_amd_ibs_dying_cpu
-ffffffff810669d0 t perf_ibs_suspend
-ffffffff81066a30 t perf_ibs_resume
-ffffffff81066aa0 t perf_ibs_nmi_handler
-ffffffff81066b10 t rand_en_show
-ffffffff81066b40 t zen4_ibs_extensions_is_visible
-ffffffff81066b70 t cnt_ctl_is_visible
-ffffffff81066ba0 t cnt_ctl_show
-ffffffff81066bd0 t perf_ibs_handle_irq
-ffffffff81067740 t perf_ibs_stop
-ffffffff81067980 t perf_ibs_init
-ffffffff81067b60 t perf_ibs_add
-ffffffff81067be0 t perf_ibs_del
-ffffffff81067c50 t perf_ibs_start
-ffffffff81067e10 t perf_ibs_read
-ffffffff81067e20 t get_ibs_op_count
-ffffffff81067e80 t get_ibs_fetch_count
-ffffffff81067ea0 t amd_uncore_event_init
-ffffffff81068010 t amd_uncore_add
-ffffffff81068220 t amd_uncore_del
-ffffffff810682f0 t amd_uncore_start
-ffffffff81068370 t amd_uncore_stop
-ffffffff81068420 t amd_uncore_read
-ffffffff81068490 t amd_uncore_attr_show_cpumask
-ffffffff810684f0 t __uncore_event12_show
-ffffffff81068530 t __uncore_umask8_show
-ffffffff81068560 t amd_f17h_uncore_is_visible
-ffffffff81068590 t __uncore_slicemask_show
-ffffffff810685c0 t amd_f19h_uncore_is_visible
-ffffffff810685f0 t __uncore_coreid_show
-ffffffff81068620 t __uncore_enallslices_show
-ffffffff81068650 t __uncore_enallcores_show
-ffffffff81068680 t __uncore_sliceid_show
-ffffffff810686b0 t amd_uncore_cpu_up_prepare
-ffffffff810688c0 t amd_uncore_cpu_dead
-ffffffff81068990 t amd_uncore_cpu_starting
-ffffffff81068b60 t amd_uncore_cpu_online
-ffffffff81068ce0 t amd_uncore_cpu_down_prepare
-ffffffff81068d20 t __uncore_event14v2_show
-ffffffff81068d60 t __uncore_umask12_show
-ffffffff81068da0 t __uncore_event14_show
-ffffffff81068de0 t __uncore_event8_show
-ffffffff81068e10 t __uncore_threadmask2_show
-ffffffff81068e40 t __uncore_threadmask8_show
-ffffffff81068e70 t uncore_down_prepare
-ffffffff81068f40 t test_aperfmperf
-ffffffff81068f60 t test_intel
-ffffffff81069030 t test_ptsc
-ffffffff81069050 t test_irperf
-ffffffff81069070 t test_therm_status
-ffffffff81069090 t msr_event_init
-ffffffff81069110 t msr_event_add
-ffffffff81069170 t msr_event_del
-ffffffff81069180 t msr_event_start
-ffffffff810691e0 t msr_event_stop
-ffffffff810691f0 t msr_event_update
-ffffffff810692b0 t intel_pmu_save_and_restart
-ffffffff81069300 t x86_get_event_constraints
-ffffffff810693b0 t intel_event_sysfs_show
-ffffffff810693d0 t intel_cpuc_prepare
-ffffffff81069520 t intel_cpuc_finish
-ffffffff810695b0 t intel_pmu_nhm_enable_all
-ffffffff810698e0 t nhm_limit_period
-ffffffff81069900 t intel_pebs_aliases_core2
-ffffffff81069940 t glp_get_event_constraints
-ffffffff81069970 t tnt_get_event_constraints
-ffffffff810699d0 t spr_limit_period
-ffffffff81069a00 t intel_pebs_aliases_snb
-ffffffff81069a40 t intel_pebs_aliases_ivb
-ffffffff81069a90 t hsw_hw_config
-ffffffff81069b30 t hsw_get_event_constraints
-ffffffff81069b70 t bdw_limit_period
-ffffffff81069bb0 t intel_pebs_aliases_skl
-ffffffff81069c10 t tfa_get_event_constraints
-ffffffff81069cd0 t intel_tfa_pmu_enable_all
-ffffffff81069d40 t intel_tfa_commit_scheduling
-ffffffff81069d90 t icl_get_event_constraints
-ffffffff81069e00 t icl_update_topdown_event
-ffffffff8106a250 t icl_set_topdown_event_period
-ffffffff8106a330 t spr_get_event_constraints
-ffffffff8106a3f0 t adl_update_topdown_event
-ffffffff8106a420 t adl_set_topdown_event_period
-ffffffff8106a450 t intel_pmu_filter_match
-ffffffff8106a480 t adl_get_event_constraints
-ffffffff8106a5b0 t adl_hw_config
-ffffffff8106a680 t adl_get_hybrid_cpu_type
-ffffffff8106a690 t check_msr
-ffffffff8106a7d0 t intel_pmu_disable_all
-ffffffff8106a840 t intel_pmu_snapshot_arch_branch_stack
-ffffffff8106a8f0 t intel_pmu_snapshot_branch_stack
-ffffffff8106a9d0 t core_pmu_enable_all
-ffffffff8106aa70 t core_pmu_enable_event
-ffffffff8106aa90 t x86_pmu_disable_event
-ffffffff8106ab30 t core_pmu_hw_config
-ffffffff8106abe0 t intel_pmu_event_map
-ffffffff8106ac00 t intel_get_event_constraints
-ffffffff8106b020 t intel_put_event_constraints
-ffffffff8106b180 t intel_pmu_cpu_prepare
-ffffffff8106b1b0 t intel_pmu_cpu_starting
-ffffffff8106b5c0 t intel_pmu_cpu_dying
-ffffffff8106b5d0 t intel_pmu_cpu_dead
-ffffffff8106b690 t core_guest_get_msrs
-ffffffff8106b7f0 t intel_pmu_check_period
-ffffffff8106b850 t __intel_shared_reg_get_constraints
-ffffffff8106baf0 t flip_smm_bit
-ffffffff8106bb20 t intel_pmu_handle_irq
-ffffffff8106c3a0 t intel_pmu_enable_all
-ffffffff8106c3c0 t intel_pmu_enable_event
-ffffffff8106c680 t intel_pmu_disable_event
-ffffffff8106c8b0 t intel_pmu_add_event
-ffffffff8106c8f0 t intel_pmu_del_event
-ffffffff8106c930 t intel_pmu_read_event
-ffffffff8106c9c0 t intel_pmu_set_period
-ffffffff8106c9f0 t intel_pmu_update
-ffffffff8106ca20 t intel_pmu_hw_config
-ffffffff8106ce40 t intel_pmu_sched_task
-ffffffff8106ce70 t intel_pmu_swap_task_ctx
-ffffffff8106ce80 t intel_guest_get_msrs
-ffffffff8106d080 t intel_pmu_aux_output_match
-ffffffff8106d0b0 t __intel_pmu_enable_all
-ffffffff8106d1d0 t intel_set_masks
-ffffffff8106d250 t intel_clear_masks
-ffffffff8106d2a0 t perf_allow_cpu
-ffffffff8106d2f0 t pc_show
-ffffffff8106d320 t pc_show
-ffffffff8106d350 t any_show
-ffffffff8106d380 t offcore_rsp_show
-ffffffff8106d3b0 t ldlat_show
-ffffffff8106d3e0 t intel_snb_check_microcode
-ffffffff8106d450 t intel_start_scheduling
-ffffffff8106d4c0 t intel_commit_scheduling
-ffffffff8106d560 t intel_stop_scheduling
-ffffffff8106d5d0 t intel_check_pebs_isolation
-ffffffff8106d610 t in_tx_show
-ffffffff8106d640 t in_tx_cp_show
-ffffffff8106d670 t frontend_show
-ffffffff8106d6a0 t pebs_is_visible
-ffffffff8106d6d0 t tsx_is_visible
-ffffffff8106d700 t exra_is_visible
-ffffffff8106d730 t pmu_name_show
-ffffffff8106d760 t lbr_is_visible
-ffffffff8106d790 t default_is_visible
-ffffffff8106d7d0 t show_sysctl_tfa
-ffffffff8106d800 t set_sysctl_tfa
-ffffffff8106d890 t update_tfa_sched
-ffffffff8106d8e0 t freeze_on_smi_show
-ffffffff8106d910 t freeze_on_smi_store
-ffffffff8106d9d0 t hybrid_events_is_visible
-ffffffff8106da00 t hybrid_tsx_is_visible
-ffffffff8106da80 t hybrid_format_is_visible
-ffffffff8106dad0 t intel_hybrid_get_attr_cpus
-ffffffff8106db00 t __intel_pmu_snapshot_branch_stack
-ffffffff8106db80 t intel_pmu_assign_event
-ffffffff8106dba0 t intel_bts_enable_local
-ffffffff8106dbf0 t __bts_event_start
-ffffffff8106dd70 t intel_bts_disable_local
-ffffffff8106ddd0 t intel_bts_interrupt
-ffffffff8106df00 t bts_update
-ffffffff8106dfa0 t bts_buffer_reset
-ffffffff8106e170 t bts_event_init
-ffffffff8106e230 t bts_event_add
-ffffffff8106e2c0 t bts_event_del
-ffffffff8106e2e0 t bts_event_start
-ffffffff8106e3c0 t bts_event_stop
-ffffffff8106e4f0 t bts_event_read
-ffffffff8106e500 t bts_buffer_setup_aux
-ffffffff8106e7c0 t bts_buffer_free_aux
-ffffffff8106e7d0 t bts_event_destroy
-ffffffff8106e7f0 t adl_latency_data_small
-ffffffff8106e880 t init_debug_store_on_cpu
-ffffffff8106e8c0 t fini_debug_store_on_cpu
-ffffffff8106e900 t release_ds_buffers
-ffffffff8106ea20 t release_pebs_buffer
-ffffffff8106eb40 t release_bts_buffer
-ffffffff8106ed10 t reserve_ds_buffers
-ffffffff8106f4b0 t intel_pmu_enable_bts
-ffffffff8106f540 t intel_pmu_disable_bts
-ffffffff8106f5c0 t intel_pmu_drain_bts_buffer
-ffffffff8106f840 t intel_pebs_constraints
-ffffffff8106f8e0 t intel_pmu_pebs_sched_task
-ffffffff8106f990 t intel_pmu_pebs_add
-ffffffff8106fa30 t pebs_update_state
-ffffffff8106fcb0 t intel_pmu_pebs_enable
-ffffffff8106fec0 t intel_pmu_pebs_del
-ffffffff8106ff50 t intel_pmu_pebs_disable
-ffffffff810700d0 t intel_pmu_pebs_enable_all
-ffffffff81070130 t intel_pmu_pebs_disable_all
-ffffffff81070180 t intel_pmu_auto_reload_read
-ffffffff81070220 t intel_pmu_drain_pebs_core
-ffffffff81070610 t intel_pmu_drain_pebs_nhm
-ffffffff81070e40 t intel_pmu_drain_pebs_icl
-ffffffff81071490 t perf_restore_debug_store
-ffffffff810714e0 t intel_pmu_save_and_restart_reload
-ffffffff810715a0 t setup_pebs_fixed_sample_data
-ffffffff81071b80 t get_data_src
-ffffffff81071d90 t intel_pmu_pebs_event_update_no_drain
-ffffffff81071e00 t setup_pebs_adaptive_sample_data
-ffffffff810721e0 t knc_pmu_handle_irq
-ffffffff81072540 t knc_pmu_disable_all
-ffffffff810725a0 t knc_pmu_enable_all
-ffffffff81072600 t knc_pmu_enable_event
-ffffffff81072650 t knc_pmu_disable_event
-ffffffff810726a0 t knc_pmu_event_map
-ffffffff810726c0 t intel_pmu_lbr_reset_32
-ffffffff81072710 t intel_pmu_lbr_reset_64
-ffffffff810727b0 t intel_pmu_lbr_reset
-ffffffff81072830 t lbr_from_signext_quirk_wr
-ffffffff81072860 t intel_pmu_lbr_restore
-ffffffff81072ba0 t intel_pmu_lbr_save
-ffffffff81072e20 t intel_pmu_lbr_swap_task_ctx
-ffffffff81072ea0 t intel_pmu_lbr_sched_task
-ffffffff810731d0 t intel_pmu_lbr_add
-ffffffff81073320 t release_lbr_buffers
-ffffffff810733b0 t reserve_lbr_buffers
-ffffffff81073440 t intel_pmu_lbr_del
-ffffffff81073510 t intel_pmu_lbr_enable_all
-ffffffff810736c0 t intel_pmu_lbr_disable_all
-ffffffff81073780 t intel_pmu_lbr_read_32
-ffffffff810738a0 t intel_pmu_lbr_read_64
-ffffffff81073be0 t intel_pmu_lbr_read
-ffffffff81073c60 t intel_pmu_lbr_filter
-ffffffff81073e70 t intel_pmu_setup_lbr_filter
-ffffffff81074020 t intel_pmu_store_pebs_lbrs
-ffffffff810740c0 t intel_pmu_store_lbr
-ffffffff81074390 t intel_pmu_lbr_init_hsw
-ffffffff81074410 t intel_pmu_lbr_init_knl
-ffffffff81074480 t intel_pmu_lbr_init
-ffffffff81074570 t intel_pmu_arch_lbr_reset
-ffffffff810745b0 t intel_pmu_arch_lbr_xsaves
-ffffffff810745d0 t intel_pmu_arch_lbr_xrstors
-ffffffff810745f0 t intel_pmu_arch_lbr_read_xsave
-ffffffff81074640 t intel_pmu_arch_lbr_save
-ffffffff81074750 t intel_pmu_arch_lbr_restore
-ffffffff81074870 t intel_pmu_arch_lbr_read
-ffffffff81074890 t x86_perf_get_lbr
-ffffffff810748e0 t p4_pmu_handle_irq
-ffffffff81074b80 t p4_pmu_disable_all
-ffffffff81074c10 t p4_pmu_enable_all
-ffffffff81074c80 t p4_pmu_enable_event
-ffffffff81074cd0 t p4_pmu_disable_event
-ffffffff81074d10 t p4_pmu_set_period
-ffffffff81074d80 t p4_hw_config
-ffffffff81075080 t p4_pmu_schedule_events
-ffffffff810756e0 t p4_pmu_event_map
-ffffffff81075750 t __p4_pmu_enable_event
-ffffffff81075900 t cccr_show
-ffffffff81075930 t escr_show
-ffffffff81075960 t ht_show
-ffffffff81075990 t p6_pmu_disable_all
-ffffffff810759f0 t p6_pmu_enable_all
-ffffffff81075a50 t p6_pmu_enable_event
-ffffffff81075a90 t p6_pmu_disable_event
-ffffffff81075ad0 t p6_pmu_event_map
-ffffffff81075af0 t intel_pt_validate_cap
-ffffffff81075b60 t intel_pt_validate_hw_cap
-ffffffff81075be0 t intel_pt_interrupt
-ffffffff81075f60 t pt_read_offset
-ffffffff81076020 t pt_handle_status
-ffffffff81076250 t pt_buffer_reset_markers
-ffffffff81076450 t pt_config_buffer
-ffffffff81076550 t intel_pt_handle_vmx
-ffffffff81076630 t cpu_emergency_stop_pt
-ffffffff81076670 t pt_event_stop
-ffffffff810768f0 t is_intel_pt_event
-ffffffff81076910 t pt_topa_entry_for_page
-ffffffff81076a20 t pt_event_init
-ffffffff81076c00 t pt_event_add
-ffffffff81076c70 t pt_event_del
-ffffffff81076c90 t pt_event_start
-ffffffff81077020 t pt_event_snapshot_aux
-ffffffff81077300 t pt_event_read
-ffffffff81077310 t pt_buffer_setup_aux
-ffffffff810779b0 t pt_buffer_free_aux
-ffffffff81077a00 t pt_event_addr_filters_sync
-ffffffff81077b40 t pt_event_addr_filters_validate
-ffffffff81077c50 t pt_cap_show
-ffffffff81077cf0 t pt_show
-ffffffff81077d20 t cyc_show
-ffffffff81077d50 t pwr_evt_show
-ffffffff81077d80 t notnt_show
-ffffffff81077db0 t fup_on_ptw_show
-ffffffff81077de0 t mtc_show
-ffffffff81077e10 t tsc_show
-ffffffff81077e40 t noretcomp_show
-ffffffff81077e70 t ptw_show
-ffffffff81077ea0 t branch_show
-ffffffff81077ed0 t mtc_period_show
-ffffffff81077f00 t cyc_thresh_show
-ffffffff81077f30 t psb_period_show
-ffffffff81077f60 t pt_timing_attr_show
-ffffffff81077fc0 t pt_event_destroy
-ffffffff81078000 t uncore_pcibus_to_dieid
-ffffffff81078070 t uncore_die_to_segment
-ffffffff81078120 t __find_pci2phy_map
-ffffffff81078200 t uncore_event_show
-ffffffff81078220 t uncore_pmu_to_box
-ffffffff81078270 t uncore_msr_read_counter
-ffffffff810782b0 t uncore_mmio_exit_box
-ffffffff810782d0 t uncore_mmio_read_counter
-ffffffff81078340 t uncore_get_constraint
-ffffffff81078430 t uncore_put_constraint
-ffffffff81078470 t uncore_shared_reg_config
-ffffffff810784c0 t uncore_perf_event_update
-ffffffff810785a0 t uncore_pmu_start_hrtimer
-ffffffff810785d0 t uncore_pmu_cancel_hrtimer
-ffffffff810785f0 t uncore_pmu_event_start
-ffffffff81078770 t uncore_pmu_event_stop
-ffffffff81078a40 t uncore_pmu_event_add
-ffffffff81078f10 t uncore_assign_events
-ffffffff810791a0 t uncore_pmu_event_del
-ffffffff81079370 t uncore_pmu_event_read
-ffffffff81079460 t uncore_get_alias_name
-ffffffff810794b0 t uncore_types_exit
-ffffffff81079600 t uncore_pci_exit
-ffffffff81079700 t uncore_event_cpu_online
-ffffffff81079980 t uncore_event_cpu_offline
-ffffffff81079e10 t uncore_pci_probe
-ffffffff81079f50 t uncore_pci_remove
-ffffffff8107a0e0 t uncore_get_attr_cpumask
-ffffffff8107a110 t uncore_pci_find_dev_pmu
-ffffffff8107a2a0 t uncore_pci_pmu_register
-ffffffff8107a4c0 t uncore_pmu_register
-ffffffff8107a750 t uncore_pmu_hrtimer
-ffffffff8107aa70 t uncore_pmu_enable
-ffffffff8107aae0 t uncore_pmu_disable
-ffffffff8107ab50 t uncore_pmu_event_init
-ffffffff8107ad30 t uncore_freerunning_counter
-ffffffff8107ada0 t uncore_validate_group
-ffffffff8107afd0 t uncore_pci_bus_notify
-ffffffff8107aff0 t uncore_bus_notify
-ffffffff8107b130 t uncore_pci_sub_bus_notify
-ffffffff8107b160 t uncore_box_ref
-ffffffff8107b4c0 t nhmex_uncore_cpu_init
-ffffffff8107b510 t nhmex_uncore_msr_init_box
-ffffffff8107b550 t nhmex_uncore_msr_exit_box
-ffffffff8107b580 t nhmex_uncore_msr_disable_box
-ffffffff8107b670 t nhmex_uncore_msr_enable_box
-ffffffff8107b760 t nhmex_uncore_msr_disable_event
-ffffffff8107b790 t nhmex_mbox_msr_enable_event
-ffffffff8107b990 t nhmex_mbox_hw_config
-ffffffff8107bb40 t nhmex_mbox_get_constraint
-ffffffff8107bea0 t nhmex_mbox_put_constraint
-ffffffff8107bf80 t nhmex_mbox_get_shared_reg
-ffffffff8107c0f0 t __uncore_count_mode_show
-ffffffff8107c120 t __uncore_storage_mode_show
-ffffffff8107c150 t __uncore_wrap_mode_show
-ffffffff8107c180 t __uncore_flag_mode_show
-ffffffff8107c1b0 t __uncore_inc_sel_show
-ffffffff8107c1e0 t __uncore_set_flag_sel_show
-ffffffff8107c210 t __uncore_filter_cfg_en_show
-ffffffff8107c240 t __uncore_filter_match_show
-ffffffff8107c270 t __uncore_filter_mask_show
-ffffffff8107c2a0 t __uncore_dsp_show
-ffffffff8107c2d0 t __uncore_thr_show
-ffffffff8107c300 t __uncore_fvc_show
-ffffffff8107c330 t __uncore_pgt_show
-ffffffff8107c360 t __uncore_map_show
-ffffffff8107c390 t __uncore_iss_show
-ffffffff8107c3c0 t __uncore_pld_show
-ffffffff8107c3f0 t nhmex_uncore_msr_enable_event
-ffffffff8107c470 t __uncore_event_show
-ffffffff8107c4a0 t __uncore_event_show
-ffffffff8107c4d0 t __uncore_event_show
-ffffffff8107c500 t __uncore_event_show
-ffffffff8107c530 t __uncore_umask_show
-ffffffff8107c560 t __uncore_umask_show
-ffffffff8107c590 t __uncore_umask_show
-ffffffff8107c5c0 t __uncore_umask_show
-ffffffff8107c5f0 t __uncore_edge_show
-ffffffff8107c620 t __uncore_edge_show
-ffffffff8107c650 t __uncore_edge_show
-ffffffff8107c680 t __uncore_edge_show
-ffffffff8107c6b0 t __uncore_inv_show
-ffffffff8107c6e0 t __uncore_inv_show
-ffffffff8107c710 t __uncore_inv_show
-ffffffff8107c740 t __uncore_inv_show
-ffffffff8107c770 t __uncore_thresh8_show
-ffffffff8107c7a0 t __uncore_thresh8_show
-ffffffff8107c7d0 t nhmex_bbox_msr_enable_event
-ffffffff8107c860 t nhmex_bbox_hw_config
-ffffffff8107c8f0 t __uncore_event5_show
-ffffffff8107c920 t __uncore_counter_show
-ffffffff8107c950 t __uncore_match_show
-ffffffff8107c980 t __uncore_mask_show
-ffffffff8107c9b0 t nhmex_sbox_msr_enable_event
-ffffffff8107ca90 t nhmex_sbox_hw_config
-ffffffff8107caf0 t nhmex_rbox_msr_enable_event
-ffffffff8107cd40 t nhmex_rbox_hw_config
-ffffffff8107cdc0 t nhmex_rbox_get_constraint
-ffffffff8107d100 t nhmex_rbox_put_constraint
-ffffffff8107d190 t __uncore_xbr_mm_cfg_show
-ffffffff8107d1c0 t __uncore_xbr_match_show
-ffffffff8107d1f0 t __uncore_xbr_mask_show
-ffffffff8107d220 t __uncore_qlx_cfg_show
-ffffffff8107d250 t __uncore_iperf_cfg_show
-ffffffff8107d280 t snb_uncore_cpu_init
-ffffffff8107d2b0 t skl_uncore_cpu_init
-ffffffff8107d2f0 t icl_uncore_cpu_init
-ffffffff8107d340 t tgl_uncore_cpu_init
-ffffffff8107d3c0 t rkl_uncore_msr_init_box
-ffffffff8107d410 t adl_uncore_cpu_init
-ffffffff8107d460 t mtl_uncore_cpu_init
-ffffffff8107d4b0 t snb_pci2phy_map_init
-ffffffff8107d540 t snb_uncore_pci_init
-ffffffff8107d550 t imc_uncore_pci_init
-ffffffff8107d630 t ivb_uncore_pci_init
-ffffffff8107d640 t hsw_uncore_pci_init
-ffffffff8107d650 t bdw_uncore_pci_init
-ffffffff8107d660 t skl_uncore_pci_init
-ffffffff8107d670 t nhm_uncore_cpu_init
-ffffffff8107d690 t tgl_l_uncore_mmio_init
-ffffffff8107d6c0 t tgl_uncore_mmio_init
-ffffffff8107d6e0 t adl_uncore_mmio_init
-ffffffff8107d700 t snb_uncore_msr_init_box
-ffffffff8107d750 t snb_uncore_msr_exit_box
-ffffffff8107d790 t snb_uncore_msr_enable_box
-ffffffff8107d7d0 t snb_uncore_msr_disable_event
-ffffffff8107d800 t snb_uncore_msr_enable_event
-ffffffff8107d870 t __uncore_cmask5_show
-ffffffff8107d8a0 t skl_uncore_msr_init_box
-ffffffff8107d900 t skl_uncore_msr_exit_box
-ffffffff8107d940 t skl_uncore_msr_enable_box
-ffffffff8107d980 t adl_uncore_msr_init_box
-ffffffff8107d9d0 t adl_uncore_msr_exit_box
-ffffffff8107da10 t adl_uncore_msr_disable_box
-ffffffff8107da50 t adl_uncore_msr_enable_box
-ffffffff8107da90 t __uncore_threshold_show
-ffffffff8107dac0 t mtl_uncore_msr_init_box
-ffffffff8107db30 t snb_uncore_imc_init_box
-ffffffff8107dc20 t snb_uncore_imc_disable_box
-ffffffff8107dc30 t snb_uncore_imc_enable_box
-ffffffff8107dc40 t snb_uncore_imc_disable_event
-ffffffff8107dc50 t snb_uncore_imc_enable_event
-ffffffff8107dc60 t snb_uncore_imc_read_counter
-ffffffff8107dc80 t snb_uncore_imc_hw_config
-ffffffff8107dc90 t snb_uncore_imc_event_init
-ffffffff8107dda0 t nhm_uncore_msr_disable_box
-ffffffff8107ddd0 t nhm_uncore_msr_enable_box
-ffffffff8107de10 t nhm_uncore_msr_enable_event
-ffffffff8107de80 t __uncore_cmask8_show
-ffffffff8107deb0 t tgl_uncore_imc_freerunning_init_box
-ffffffff8107ded0 t uncore_freerunning_hw_config
-ffffffff8107df00 t uncore_freerunning_hw_config
-ffffffff8107df30 t __uncore_imc_init_box
-ffffffff8107e070 t adl_uncore_imc_init_box
-ffffffff8107e0c0 t adl_uncore_mmio_disable_box
-ffffffff8107e100 t adl_uncore_mmio_enable_box
-ffffffff8107e140 t __uncore_chmask_show
-ffffffff8107e170 t adl_uncore_imc_freerunning_init_box
-ffffffff8107e190 t snbep_uncore_cpu_init
-ffffffff8107e1c0 t snbep_uncore_pci_init
-ffffffff8107e210 t snbep_pci2phy_map_init
-ffffffff8107e560 t ivbep_uncore_cpu_init
-ffffffff8107e590 t ivbep_uncore_pci_init
-ffffffff8107e5e0 t knl_uncore_cpu_init
-ffffffff8107e600 t knl_uncore_pci_init
-ffffffff8107e650 t hswep_uncore_cpu_init
-ffffffff8107e6f0 t hswep_uncore_pci_init
-ffffffff8107e740 t bdx_uncore_cpu_init
-ffffffff8107e810 t bdx_uncore_pci_init
-ffffffff8107e860 t skx_uncore_cpu_init
-ffffffff8107e8f0 t skx_uncore_pci_init
-ffffffff8107e940 t snr_uncore_cpu_init
-ffffffff8107e960 t snr_uncore_pci_init
-ffffffff8107e9b0 t snr_uncore_mmio_init
-ffffffff8107e9d0 t icx_uncore_cpu_init
-ffffffff8107ea80 t icx_uncore_pci_init
-ffffffff8107ead0 t icx_uncore_mmio_init
-ffffffff8107eaf0 t spr_uncore_cpu_init
-ffffffff8107ebd0 t uncore_get_uncores
-ffffffff8107ed10 t spr_uncore_pci_init
-ffffffff8107ed40 t spr_uncore_mmio_init
-ffffffff8107ee70 t snbep_uncore_msr_init_box
-ffffffff8107eee0 t snbep_uncore_msr_disable_box
-ffffffff8107ef70 t snbep_uncore_msr_enable_box
-ffffffff8107f000 t snbep_uncore_msr_disable_event
-ffffffff8107f040 t snbep_uncore_msr_enable_event
-ffffffff8107f0c0 t snbep_cbox_hw_config
-ffffffff8107f190 t snbep_cbox_get_constraint
-ffffffff8107f1b0 t snbep_cbox_put_constraint
-ffffffff8107f240 t snbep_cbox_filter_mask
-ffffffff8107f290 t __snbep_cbox_get_constraint
-ffffffff8107f420 t __uncore_tid_en_show
-ffffffff8107f450 t __uncore_filter_tid_show
-ffffffff8107f480 t __uncore_filter_nid_show
-ffffffff8107f4b0 t __uncore_filter_state_show
-ffffffff8107f4e0 t __uncore_filter_opc_show
-ffffffff8107f510 t __uncore_thresh5_show
-ffffffff8107f540 t snbep_pcu_hw_config
-ffffffff8107f590 t snbep_pcu_get_constraint
-ffffffff8107f750 t snbep_pcu_put_constraint
-ffffffff8107f790 t __uncore_occ_sel_show
-ffffffff8107f7c0 t __uncore_occ_invert_show
-ffffffff8107f7f0 t __uncore_occ_edge_show
-ffffffff8107f820 t __uncore_filter_band0_show
-ffffffff8107f850 t __uncore_filter_band1_show
-ffffffff8107f880 t __uncore_filter_band2_show
-ffffffff8107f8b0 t __uncore_filter_band3_show
-ffffffff8107f8e0 t snbep_uncore_pci_init_box
-ffffffff8107f910 t snbep_uncore_pci_disable_box
-ffffffff8107f9a0 t snbep_uncore_pci_enable_box
-ffffffff8107fa30 t snbep_uncore_pci_disable_event
-ffffffff8107fa60 t snbep_uncore_pci_enable_event
-ffffffff8107fa90 t snbep_uncore_pci_read_counter
-ffffffff8107fb10 t snbep_qpi_enable_event
-ffffffff8107fbe0 t snbep_qpi_hw_config
-ffffffff8107fc30 t __uncore_event_ext_show
-ffffffff8107fc60 t __uncore_match_rds_show
-ffffffff8107fc90 t __uncore_match_rnid30_show
-ffffffff8107fcc0 t __uncore_match_rnid4_show
-ffffffff8107fcf0 t __uncore_match_dnid_show
-ffffffff8107fd20 t __uncore_match_mc_show
-ffffffff8107fd50 t __uncore_match_opc_show
-ffffffff8107fd80 t __uncore_match_vnw_show
-ffffffff8107fdb0 t __uncore_match0_show
-ffffffff8107fde0 t __uncore_match1_show
-ffffffff8107fe10 t __uncore_mask_rds_show
-ffffffff8107fe40 t __uncore_mask_rnid30_show
-ffffffff8107fe70 t __uncore_mask_rnid4_show
-ffffffff8107fea0 t __uncore_mask_dnid_show
-ffffffff8107fed0 t __uncore_mask_mc_show
-ffffffff8107ff00 t __uncore_mask_opc_show
-ffffffff8107ff30 t __uncore_mask_vnw_show
-ffffffff8107ff60 t __uncore_mask0_show
-ffffffff8107ff90 t __uncore_mask1_show
-ffffffff8107ffc0 t ivbep_uncore_msr_init_box
-ffffffff81080030 t ivbep_cbox_enable_event
-ffffffff810800d0 t ivbep_cbox_hw_config
-ffffffff810801b0 t ivbep_cbox_get_constraint
-ffffffff810801d0 t ivbep_cbox_filter_mask
-ffffffff81080240 t __uncore_filter_link_show
-ffffffff81080270 t __uncore_filter_state2_show
-ffffffff810802a0 t __uncore_filter_nid2_show
-ffffffff810802d0 t __uncore_filter_opc2_show
-ffffffff81080300 t __uncore_filter_nc_show
-ffffffff81080330 t __uncore_filter_c6_show
-ffffffff81080360 t __uncore_filter_isoc_show
-ffffffff81080390 t ivbep_uncore_pci_init_box
-ffffffff810803c0 t ivbep_uncore_irp_disable_event
-ffffffff81080400 t ivbep_uncore_irp_enable_event
-ffffffff81080440 t ivbep_uncore_irp_read_counter
-ffffffff810804e0 t hswep_cbox_enable_event
-ffffffff81080570 t knl_cha_hw_config
-ffffffff81080620 t knl_cha_get_constraint
-ffffffff81080640 t knl_cha_filter_mask
-ffffffff81080680 t __uncore_qor_show
-ffffffff810806b0 t __uncore_filter_tid4_show
-ffffffff810806e0 t __uncore_filter_link3_show
-ffffffff81080710 t __uncore_filter_state4_show
-ffffffff81080740 t __uncore_filter_local_show
-ffffffff81080770 t __uncore_filter_all_op_show
-ffffffff810807a0 t __uncore_filter_nnm_show
-ffffffff810807d0 t __uncore_filter_opc3_show
-ffffffff81080800 t __uncore_event2_show
-ffffffff81080830 t __uncore_use_occ_ctr_show
-ffffffff81080860 t __uncore_thresh6_show
-ffffffff81080890 t __uncore_occ_edge_det_show
-ffffffff810808c0 t knl_uncore_imc_enable_box
-ffffffff810808f0 t knl_uncore_imc_enable_event
-ffffffff81080930 t hswep_cbox_hw_config
-ffffffff81080a10 t hswep_cbox_get_constraint
-ffffffff81080a30 t hswep_cbox_filter_mask
-ffffffff81080aa0 t __uncore_filter_tid3_show
-ffffffff81080ad0 t __uncore_filter_link2_show
-ffffffff81080b00 t __uncore_filter_state3_show
-ffffffff81080b30 t hswep_uncore_sbox_msr_init_box
-ffffffff81080c00 t hswep_ubox_hw_config
-ffffffff81080c40 t __uncore_filter_tid2_show
-ffffffff81080c70 t __uncore_filter_cid_show
-ffffffff81080ca0 t hswep_uncore_irp_read_counter
-ffffffff81080d40 t hswep_pcu_hw_config
-ffffffff81080d80 t skx_cha_hw_config
-ffffffff81080e70 t skx_cha_get_constraint
-ffffffff81080e90 t skx_cha_filter_mask
-ffffffff81080ee0 t __uncore_filter_state5_show
-ffffffff81080f10 t __uncore_filter_rem_show
-ffffffff81080f40 t __uncore_filter_loc_show
-ffffffff81080f70 t __uncore_filter_nm_show
-ffffffff81080fa0 t __uncore_filter_not_nm_show
-ffffffff81080fd0 t __uncore_filter_opc_0_show
-ffffffff81081000 t __uncore_filter_opc_1_show
-ffffffff81081030 t skx_iio_get_topology
-ffffffff810811d0 t skx_iio_set_mapping
-ffffffff810811f0 t skx_iio_cleanup_mapping
-ffffffff81081280 t skx_iio_enable_event
-ffffffff810812c0 t __uncore_thresh9_show
-ffffffff810812f0 t __uncore_ch_mask_show
-ffffffff81081320 t __uncore_fc_mask_show
-ffffffff81081350 t skx_iio_mapping_visible
-ffffffff810813a0 t pmu_iio_set_mapping
-ffffffff810815d0 t skx_iio_mapping_show
-ffffffff81081630 t skx_m2m_uncore_pci_init_box
-ffffffff81081660 t skx_upi_uncore_pci_init_box
-ffffffff81081690 t __uncore_umask_ext_show
-ffffffff810816d0 t snr_cha_enable_event
-ffffffff81081740 t snr_cha_hw_config
-ffffffff81081790 t __uncore_umask_ext2_show
-ffffffff810817d0 t __uncore_filter_tid5_show
-ffffffff81081800 t snr_iio_get_topology
-ffffffff81081820 t snr_iio_set_mapping
-ffffffff81081840 t snr_iio_cleanup_mapping
-ffffffff810818d0 t __uncore_ch_mask2_show
-ffffffff81081900 t __uncore_fc_mask2_show
-ffffffff81081930 t snr_iio_mapping_visible
-ffffffff81081980 t sad_cfg_iio_topology
-ffffffff81081c00 t snr_pcu_hw_config
-ffffffff81081c40 t snr_m2m_uncore_pci_init_box
-ffffffff81081c80 t __uncore_umask_ext3_show
-ffffffff81081cc0 t snr_uncore_pci_enable_event
-ffffffff81081d10 t snr_uncore_mmio_init_box
-ffffffff81081d60 t snr_uncore_mmio_disable_box
-ffffffff81081d90 t snr_uncore_mmio_enable_box
-ffffffff81081dc0 t snr_uncore_mmio_disable_event
-ffffffff81081e30 t snr_uncore_mmio_enable_event
-ffffffff81081ea0 t snr_uncore_mmio_map
-ffffffff81081fd0 t icx_cha_hw_config
-ffffffff81082030 t icx_iio_get_topology
-ffffffff81082050 t icx_iio_set_mapping
-ffffffff810820e0 t icx_iio_cleanup_mapping
-ffffffff81082170 t icx_iio_mapping_visible
-ffffffff810821c0 t __uncore_umask_ext4_show
-ffffffff81082200 t icx_uncore_imc_init_box
-ffffffff81082270 t icx_uncore_imc_freerunning_init_box
-ffffffff810822b0 t spr_uncore_msr_disable_event
-ffffffff81082300 t spr_uncore_msr_enable_event
-ffffffff81082370 t spr_cha_hw_config
-ffffffff810823d0 t __uncore_tid_en2_show
-ffffffff81082400 t alias_show
-ffffffff81082490 t spr_uncore_mmio_enable_event
-ffffffff810824e0 t spr_uncore_pci_enable_event
-ffffffff81082530 t spr_uncore_imc_freerunning_init_box
-ffffffff81082570 t intel_uncore_has_discovery_tables
-ffffffff81082c20 t intel_uncore_clear_discovery_tables
-ffffffff81082c70 t intel_generic_uncore_msr_init_box
-ffffffff81082ce0 t intel_generic_uncore_msr_disable_box
-ffffffff81082d50 t intel_generic_uncore_msr_enable_box
-ffffffff81082db0 t intel_generic_uncore_pci_init_box
-ffffffff81082df0 t intel_generic_uncore_pci_disable_box
-ffffffff81082e20 t intel_generic_uncore_pci_enable_box
-ffffffff81082e50 t intel_generic_uncore_pci_disable_event
-ffffffff81082e70 t intel_generic_uncore_pci_read_counter
-ffffffff81082ef0 t intel_generic_uncore_mmio_init_box
-ffffffff81082fc0 t intel_generic_uncore_mmio_disable_box
-ffffffff81082fe0 t intel_generic_uncore_mmio_enable_box
-ffffffff81083000 t intel_generic_uncore_mmio_enable_event
-ffffffff81083030 t intel_generic_uncore_mmio_disable_event
-ffffffff81083060 t intel_uncore_generic_init_uncores
-ffffffff81083240 t intel_uncore_generic_uncore_cpu_init
-ffffffff81083260 t intel_uncore_generic_uncore_pci_init
-ffffffff81083280 t intel_uncore_generic_uncore_mmio_init
-ffffffff810832a0 t __uncore_thresh_show
-ffffffff810832d0 t intel_generic_uncore_msr_disable_event
-ffffffff81083300 t intel_generic_uncore_msr_enable_event
-ffffffff81083340 t intel_generic_uncore_pci_enable_event
-ffffffff81083370 t cstate_cpu_init
-ffffffff81083410 t cstate_cpu_exit
-ffffffff81083520 t cstate_pmu_event_init
-ffffffff81083680 t cstate_pmu_event_add
-ffffffff810836d0 t cstate_pmu_event_del
-ffffffff81083740 t cstate_pmu_event_start
-ffffffff81083780 t cstate_pmu_event_stop
-ffffffff810837f0 t cstate_pmu_event_update
-ffffffff81083860 t __cstate_core_event_show
-ffffffff81083890 t cstate_get_attr_cpumask
-ffffffff810838f0 t __cstate_pkg_event_show
-ffffffff81083920 t zhaoxin_pmu_handle_irq
-ffffffff81083c60 t zhaoxin_pmu_disable_all
-ffffffff81083c90 t zhaoxin_pmu_enable_all
-ffffffff81083cd0 t zhaoxin_pmu_enable_event
-ffffffff81083df0 t zhaoxin_pmu_disable_event
-ffffffff81083eb0 t zhaoxin_pmu_event_map
-ffffffff81083ed0 t zhaoxin_get_event_constraints
-ffffffff81083f30 t zhaoxin_event_sysfs_show
-ffffffff81083f50 t zhaoxin_pmu_enable_fixed
-ffffffff81083ff0 t zhaoxin_pmu_disable_fixed
-ffffffff81084060 t load_trampoline_pgtable
-ffffffff810840e0 t __show_regs
-ffffffff81084400 t release_thread
-ffffffff81084420 t current_save_fsgs
-ffffffff810844f0 t x86_fsgsbase_read_task
-ffffffff810845b0 t x86_gsbase_read_cpu_inactive
-ffffffff81084650 t x86_gsbase_write_cpu_inactive
-ffffffff810846e0 t wrmsrl
-ffffffff81084720 t x86_fsbase_read_task
-ffffffff81084840 t x86_gsbase_read_task
-ffffffff810849b0 t x86_fsbase_write_task
-ffffffff810849e0 t x86_gsbase_write_task
-ffffffff81084a10 t start_thread
-ffffffff81084b10 t __switch_to
-ffffffff81085000 t set_personality_64bit
-ffffffff81085050 t set_personality_ia32
-ffffffff81085070 t do_arch_prctl_64
-ffffffff810852a0 t __x64_sys_arch_prctl
-ffffffff810852e0 t KSTK_ESP
-ffffffff81085300 t __x64_sys_rt_sigreturn
-ffffffff810855c0 t get_sigframe_size
-ffffffff810855e0 t arch_do_signal_or_restart
-ffffffff81085c80 t signal_fault
-ffffffff81085d50 t sigaltstack_size_valid
-ffffffff81085de0 t is_valid_bugaddr
-ffffffff81085e10 t handle_invalid_op
-ffffffff81085ea0 t handle_stack_overflow
-ffffffff81085f00 t do_int3_user
-ffffffff81085f80 t do_int3
-ffffffff81085fc0 t do_trap
-ffffffff81086110 t math_error
-ffffffff81086230 t load_current_idt
-ffffffff81086250 t idt_invalidate
-ffffffff81086270 t __traceiter_local_timer_entry
-ffffffff810862c0 t __traceiter_local_timer_exit
-ffffffff81086310 t __traceiter_spurious_apic_entry
-ffffffff81086360 t __traceiter_spurious_apic_exit
-ffffffff810863b0 t __traceiter_error_apic_entry
-ffffffff81086400 t __traceiter_error_apic_exit
-ffffffff81086450 t __traceiter_x86_platform_ipi_entry
-ffffffff810864a0 t __traceiter_x86_platform_ipi_exit
-ffffffff810864f0 t __traceiter_irq_work_entry
-ffffffff81086540 t __traceiter_irq_work_exit
-ffffffff81086590 t __traceiter_reschedule_entry
-ffffffff810865e0 t __traceiter_reschedule_exit
-ffffffff81086630 t __traceiter_call_function_entry
-ffffffff81086680 t __traceiter_call_function_exit
-ffffffff810866d0 t __traceiter_call_function_single_entry
-ffffffff81086720 t __traceiter_call_function_single_exit
-ffffffff81086770 t __traceiter_thermal_apic_entry
-ffffffff810867c0 t __traceiter_thermal_apic_exit
-ffffffff81086810 t __traceiter_vector_config
-ffffffff81086880 t __traceiter_vector_update
-ffffffff810868f0 t __traceiter_vector_clear
-ffffffff81086960 t __traceiter_vector_reserve_managed
-ffffffff810869b0 t __traceiter_vector_reserve
-ffffffff81086a00 t __traceiter_vector_alloc
-ffffffff81086a70 t __traceiter_vector_alloc_managed
-ffffffff81086ad0 t __traceiter_vector_activate
-ffffffff81086b40 t __traceiter_vector_deactivate
-ffffffff81086bb0 t __traceiter_vector_teardown
-ffffffff81086c20 t __traceiter_vector_setup
-ffffffff81086c80 t __traceiter_vector_free_moved
-ffffffff81086cf0 t trace_event_raw_event_x86_irq_vector
-ffffffff81086db0 t perf_trace_x86_irq_vector
-ffffffff81086ea0 t trace_event_raw_event_vector_config
-ffffffff81086f80 t perf_trace_vector_config
-ffffffff81087090 t trace_event_raw_event_vector_mod
-ffffffff81087170 t perf_trace_vector_mod
-ffffffff81087290 t trace_event_raw_event_vector_reserve
-ffffffff81087350 t perf_trace_vector_reserve
-ffffffff81087450 t trace_event_raw_event_vector_alloc
-ffffffff81087530 t perf_trace_vector_alloc
-ffffffff81087650 t trace_event_raw_event_vector_alloc_managed
-ffffffff81087730 t perf_trace_vector_alloc_managed
-ffffffff81087840 t trace_event_raw_event_vector_activate
-ffffffff81087920 t perf_trace_vector_activate
-ffffffff81087a30 t trace_event_raw_event_vector_teardown
-ffffffff81087b00 t perf_trace_vector_teardown
-ffffffff81087c10 t trace_event_raw_event_vector_setup
-ffffffff81087ce0 t perf_trace_vector_setup
-ffffffff81087df0 t trace_event_raw_event_vector_free_moved
-ffffffff81087ed0 t perf_trace_vector_free_moved
-ffffffff81087fe0 t ack_bad_irq
-ffffffff81088030 t arch_show_interrupts
-ffffffff81088840 t arch_irq_stat_cpu
-ffffffff810888c0 t arch_irq_stat
-ffffffff810888e0 t __common_interrupt
-ffffffff81088a10 t __sysvec_x86_platform_ipi
-ffffffff81088b50 t kvm_set_posted_intr_wakeup_handler
-ffffffff81088b80 t dummy_handler
-ffffffff81088b90 t __sysvec_kvm_posted_intr_wakeup_ipi
-ffffffff81088bd0 t fixup_irqs
-ffffffff81088d00 t __sysvec_thermal
-ffffffff81088df0 t perf_perm_irq_work_exit
-ffffffff81088e10 t trace_raw_output_x86_irq_vector
-ffffffff81088e60 t trace_raw_output_vector_config
-ffffffff81088ec0 t trace_raw_output_vector_mod
-ffffffff81088f30 t trace_raw_output_vector_reserve
-ffffffff81088f90 t trace_raw_output_vector_alloc
-ffffffff81088ff0 t trace_raw_output_vector_alloc_managed
-ffffffff81089050 t trace_raw_output_vector_activate
-ffffffff810890b0 t trace_raw_output_vector_teardown
-ffffffff81089110 t trace_raw_output_vector_setup
-ffffffff81089170 t trace_raw_output_vector_free_moved
-ffffffff810891d0 t irq_init_percpu_irqstack
-ffffffff81089300 t stack_type_name
-ffffffff81089340 t get_stack_info
-ffffffff810893e0 t profile_pc
-ffffffff81089430 t clocksource_arch_init
-ffffffff81089470 t timer_interrupt
-ffffffff81089490 t io_bitmap_share
-ffffffff81089500 t io_bitmap_exit
-ffffffff810895a0 t ksys_ioperm
-ffffffff81089760 t __x64_sys_ioperm
-ffffffff81089780 t __x64_sys_iopl
-ffffffff81089840 t show_opcodes
-ffffffff81089960 t show_ip
-ffffffff810899a0 t show_iret_regs
-ffffffff81089a00 t show_stack
-ffffffff81089a40 t show_trace_log_lvl.llvm.997005082218000707
-ffffffff81089e40 t show_stack_regs
-ffffffff81089e70 t oops_begin
-ffffffff81089f40 t oops_end
-ffffffff8108a030 t __die
-ffffffff8108a150 t die
-ffffffff8108a1a0 t die_addr
-ffffffff8108a2f0 t show_regs
-ffffffff8108a350 t __traceiter_nmi_handler
-ffffffff8108a3b0 t trace_event_raw_event_nmi_handler
-ffffffff8108a480 t perf_trace_nmi_handler
-ffffffff8108a590 t __register_nmi_handler
-ffffffff8108a700 t unregister_nmi_handler
-ffffffff8108a800 t stop_nmi
-ffffffff8108a820 t restart_nmi
-ffffffff8108a840 t local_touch_nmi
-ffffffff8108a870 t trace_raw_output_nmi_handler
-ffffffff8108a8d0 t nmi_handle
-ffffffff8108aa20 t pci_serr_error
-ffffffff8108aaa0 t io_check_error
-ffffffff8108ab40 t unknown_nmi_error
-ffffffff8108abd0 t load_mm_ldt
-ffffffff8108ac40 t native_set_ldt
-ffffffff8108ace0 t switch_ldt
-ffffffff8108ad90 t ldt_dup_context
-ffffffff8108b010 t map_ldt_struct
-ffffffff8108b2d0 t free_ldt_pgtables
-ffffffff8108b400 t free_ldt_struct
-ffffffff8108b450 t destroy_context_ldt
-ffffffff8108b4b0 t ldt_arch_exit_mmap
-ffffffff8108b5e0 t __x64_sys_modify_ldt
-ffffffff8108b780 t write_ldt
-ffffffff8108bac0 t install_ldt
-ffffffff8108bb20 t unmap_ldt_struct
-ffffffff8108bc40 t flush_ldt
-ffffffff8108bdd0 t x86_configure_nx
-ffffffff8108be10 t dump_kernel_offset
-ffffffff8108be60 t x86_init_noop
-ffffffff8108be70 t x86_op_int_noop
-ffffffff8108be80 t iommu_shutdown_noop
-ffffffff8108be90 t is_ISA_range
-ffffffff8108bec0 t default_nmi_init
-ffffffff8108bed0 t default_get_nmi_reason
-ffffffff8108bee0 t enc_status_change_prepare_noop
-ffffffff8108bef0 t enc_status_change_finish_noop
-ffffffff8108bf00 t enc_tlb_flush_required_noop
-ffffffff8108bf10 t enc_cache_flush_required_noop
-ffffffff8108bf20 t get_rtc_noop
-ffffffff8108bf30 t set_rtc_noop
-ffffffff8108bf40 t disable_8259A_irq
-ffffffff8108bf90 t mask_and_ack_8259A
-ffffffff8108c090 t enable_8259A_irq
-ffffffff8108c0e0 t legacy_pic_uint_noop
-ffffffff8108c0f0 t legacy_pic_noop
-ffffffff8108c100 t legacy_pic_int_noop
-ffffffff8108c110 t legacy_pic_probe
-ffffffff8108c120 t legacy_pic_irq_pending_noop
-ffffffff8108c130 t mask_8259A_irq
-ffffffff8108c180 t unmask_8259A_irq
-ffffffff8108c1d0 t mask_8259A
-ffffffff8108c200 t unmask_8259A
-ffffffff8108c240 t init_8259A
-ffffffff8108c330 t probe_8259A
-ffffffff8108c390 t i8259A_irq_pending
-ffffffff8108c3f0 t make_8259A_irq
-ffffffff8108c460 t i8259A_suspend
-ffffffff8108c490 t i8259A_resume
-ffffffff8108c4c0 t i8259A_shutdown
-ffffffff8108c4e0 t arch_jump_entry_size
-ffffffff8108c5b0 t arch_jump_label_transform
-ffffffff8108c5c0 t arch_jump_label_transform_queue
-ffffffff8108c630 t __jump_label_patch
-ffffffff8108c820 t arch_jump_label_transform_apply
-ffffffff8108c850 t __sysvec_irq_work
-ffffffff8108c920 t arch_irq_work_raise
-ffffffff8108c960 t pci_map_biosrom
-ffffffff8108c9a0 t find_oprom
-ffffffff8108cc20 t pci_unmap_biosrom
-ffffffff8108cc30 t pci_biosrom_size
-ffffffff8108cc60 t align_vdso_addr
-ffffffff8108ccb0 t __x64_sys_mmap
-ffffffff8108cd00 t arch_get_unmapped_area
-ffffffff8108cec0 t arch_get_unmapped_area_topdown
-ffffffff8108d0f0 t init_espfix_ap
-ffffffff8108d490 t version_show
-ffffffff8108d4c0 t version_show
-ffffffff8108d520 t version_show
-ffffffff8108d5a0 t boot_params_data_read
-ffffffff8108d5d0 t setup_data_data_read
-ffffffff8108d7e0 t type_show
-ffffffff8108d950 t type_show
-ffffffff8108d9e0 t type_show
-ffffffff8108da50 t type_show
-ffffffff8108da80 t type_show
-ffffffff8108dae0 t type_show
-ffffffff8108db40 t type_show
-ffffffff8108db70 t type_show
-ffffffff8108dba0 t type_show
-ffffffff8108dbd0 t type_show
-ffffffff8108dc00 t type_show
-ffffffff8108dc40 t type_show
-ffffffff8108dca0 t e820__mapped_raw_any
-ffffffff8108dd10 t e820__mapped_any
-ffffffff8108dd80 t __e820__mapped_all.llvm.5883233470051655402
-ffffffff8108de00 t e820__get_entry_type
-ffffffff8108de70 t __UNIQUE_ID_via_no_dac271
-ffffffff8108deb0 t via_no_dac_cb
-ffffffff8108ded0 t __UNIQUE_ID_quirk_intel_irqbalance265
-ffffffff8108dee0 t quirk_intel_irqbalance
-ffffffff8108dfc0 t __UNIQUE_ID_quirk_intel_irqbalance267
-ffffffff8108dfd0 t __UNIQUE_ID_quirk_intel_irqbalance269
-ffffffff8108dfe0 t __UNIQUE_ID_ich_force_enable_hpet271
-ffffffff8108dff0 t ich_force_enable_hpet
-ffffffff8108e1a0 t __UNIQUE_ID_ich_force_enable_hpet273
-ffffffff8108e1b0 t __UNIQUE_ID_ich_force_enable_hpet275
-ffffffff8108e1c0 t __UNIQUE_ID_ich_force_enable_hpet277
-ffffffff8108e1d0 t __UNIQUE_ID_ich_force_enable_hpet279
-ffffffff8108e1e0 t __UNIQUE_ID_ich_force_enable_hpet281
-ffffffff8108e1f0 t __UNIQUE_ID_ich_force_enable_hpet283
-ffffffff8108e200 t __UNIQUE_ID_ich_force_enable_hpet285
-ffffffff8108e210 t __UNIQUE_ID_ich_force_enable_hpet287
-ffffffff8108e220 t __UNIQUE_ID_ich_force_enable_hpet289
-ffffffff8108e230 t __UNIQUE_ID_old_ich_force_enable_hpet_user291
-ffffffff8108e250 t __UNIQUE_ID_old_ich_force_enable_hpet_user293
-ffffffff8108e270 t __UNIQUE_ID_old_ich_force_enable_hpet_user295
-ffffffff8108e290 t __UNIQUE_ID_old_ich_force_enable_hpet_user297
-ffffffff8108e2b0 t __UNIQUE_ID_old_ich_force_enable_hpet_user299
-ffffffff8108e2d0 t __UNIQUE_ID_old_ich_force_enable_hpet301
-ffffffff8108e2e0 t old_ich_force_enable_hpet
-ffffffff8108e430 t __UNIQUE_ID_old_ich_force_enable_hpet303
-ffffffff8108e440 t __UNIQUE_ID_vt8237_force_enable_hpet305
-ffffffff8108e450 t vt8237_force_enable_hpet
-ffffffff8108e590 t __UNIQUE_ID_vt8237_force_enable_hpet307
-ffffffff8108e5a0 t __UNIQUE_ID_vt8237_force_enable_hpet309
-ffffffff8108e5b0 t __UNIQUE_ID_ati_force_enable_hpet311
-ffffffff8108e7d0 t __UNIQUE_ID_nvidia_force_enable_hpet313
-ffffffff8108e8a0 t __UNIQUE_ID_nvidia_force_enable_hpet315
-ffffffff8108e970 t __UNIQUE_ID_nvidia_force_enable_hpet317
-ffffffff8108ea40 t __UNIQUE_ID_nvidia_force_enable_hpet319
-ffffffff8108eb10 t __UNIQUE_ID_nvidia_force_enable_hpet321
-ffffffff8108ebe0 t __UNIQUE_ID_nvidia_force_enable_hpet323
-ffffffff8108ecb0 t __UNIQUE_ID_nvidia_force_enable_hpet325
-ffffffff8108ed80 t __UNIQUE_ID_nvidia_force_enable_hpet327
-ffffffff8108ee50 t __UNIQUE_ID_nvidia_force_enable_hpet329
-ffffffff8108ef20 t __UNIQUE_ID_nvidia_force_enable_hpet331
-ffffffff8108eff0 t __UNIQUE_ID_nvidia_force_enable_hpet333
-ffffffff8108f0c0 t force_hpet_resume
-ffffffff8108f280 t __UNIQUE_ID_e6xx_force_enable_hpet335
-ffffffff8108f2e0 t __UNIQUE_ID_force_disable_hpet_msi337
-ffffffff8108f300 t __UNIQUE_ID_amd_disable_seq_and_redirect_scrub339
-ffffffff8108f3a0 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap341
-ffffffff8108f3f0 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap343
-ffffffff8108f440 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap345
-ffffffff8108f490 t __UNIQUE_ID_quirk_intel_purley_xeon_ras_cap347
-ffffffff8108f500 t arch_register_cpu
-ffffffff8108f5f0 t arch_unregister_cpu
-ffffffff8108f620 t alternatives_enable_smp
-ffffffff8108f780 t alternatives_text_reserved
-ffffffff8108f7f0 t text_poke
-ffffffff8108f820 t __text_poke
-ffffffff8108fbd0 t text_poke_memcpy
-ffffffff8108fbe0 t text_poke_kgdb
-ffffffff8108fc10 t text_poke_copy
-ffffffff8108fcb0 t text_poke_set
-ffffffff8108fd80 t text_poke_memset
-ffffffff8108fda0 t text_poke_sync
-ffffffff8108fdd0 t do_sync_core
-ffffffff8108fe00 t text_poke_finish
-ffffffff8108fe30 t text_poke_loc_init
-ffffffff81090070 t text_poke_bp_batch
-ffffffff81090300 t encode_dr7
-ffffffff81090340 t decode_dr7
-ffffffff81090380 t arch_install_hw_breakpoint
-ffffffff81090550 t arch_uninstall_hw_breakpoint
-ffffffff810906b0 t arch_bp_generic_fields
-ffffffff81090720 t arch_check_bp_in_kernelspace
-ffffffff81090780 t hw_breakpoint_arch_parse
-ffffffff810909c0 t flush_ptrace_hw_breakpoint
-ffffffff81090a60 t hw_breakpoint_restore
-ffffffff81090af0 t hw_breakpoint_exceptions_notify
-ffffffff81090cc0 t hw_breakpoint_pmu_read
-ffffffff81090cd0 t cyc2ns_read_begin
-ffffffff81090d20 t cyc2ns_read_end
-ffffffff81090d40 t native_sched_clock
-ffffffff81090de0 t native_sched_clock_from_tsc
-ffffffff81090e50 t sched_clock
-ffffffff81090e60 t using_native_sched_clock
-ffffffff81090e80 t check_tsc_unstable
-ffffffff81090ea0 t mark_tsc_unstable
-ffffffff81090f10 t native_calibrate_tsc
-ffffffff81091000 t native_calibrate_cpu_early
-ffffffff81091260 t recalibrate_cpu_khz
-ffffffff81091270 t tsc_save_sched_clock_state
-ffffffff81091290 t tsc_restore_sched_clock_state
-ffffffff81091370 t unsynchronized_tsc
-ffffffff810913e0 t convert_art_to_tsc
-ffffffff81091450 t convert_art_ns_to_tsc
-ffffffff810914b0 t native_calibrate_cpu
-ffffffff810914e0 t calibrate_delay_is_known
-ffffffff81091570 t time_cpufreq_notifier
-ffffffff810917a0 t __set_cyc2ns_scale
-ffffffff81091900 t read_tsc
-ffffffff81091920 t tsc_cs_enable
-ffffffff81091940 t tsc_resume
-ffffffff81091960 t tsc_cs_mark_unstable
-ffffffff810919b0 t tsc_cs_tick_stable
-ffffffff810919f0 t tsc_refine_calibration_work
-ffffffff81091c90 t tsc_read_refs
-ffffffff81091e70 t pit_hpet_ptimer_calibrate_cpu
-ffffffff810922c0 t cpu_khz_from_msr
-ffffffff81092430 t native_io_delay
-ffffffff81092470 t mach_set_cmos_time
-ffffffff81092540 t mach_get_cmos_time
-ffffffff810925e0 t rtc_cmos_read
-ffffffff81092600 t rtc_cmos_write
-ffffffff81092620 t update_persistent_clock64
-ffffffff81092670 t read_persistent_clock64
-ffffffff81092690 t arch_remove_reservations
-ffffffff81092870 t arch_static_call_transform
-ffffffff810929e0 t __static_call_fixup
-ffffffff81092a70 t arch_dup_task_struct
-ffffffff81092aa0 t arch_release_task_struct
-ffffffff81092ac0 t exit_thread
-ffffffff81092b00 t copy_thread
-ffffffff81092d30 t flush_thread
-ffffffff81092d90 t disable_TSC
-ffffffff81092e30 t get_tsc_mode
-ffffffff81092e70 t set_tsc_mode
-ffffffff81092f80 t arch_setup_new_exec
-ffffffff81092fe0 t enable_cpuid
-ffffffff81093060 t speculation_ctrl_update
-ffffffff810932d0 t native_tss_update_io_bitmap
-ffffffff81093410 t speculative_store_bypass_ht_init
-ffffffff810934e0 t speculation_ctrl_update_current
-ffffffff81093570 t speculation_ctrl_update_tif
-ffffffff810935d0 t __switch_to_xtra
-ffffffff81093b40 t arch_cpu_idle_enter
-ffffffff81093b60 t arch_cpu_idle_dead
-ffffffff81093b80 t arch_cpu_idle
-ffffffff81093ba0 t stop_this_cpu
-ffffffff81093c00 t select_idle_routine
-ffffffff81093ce0 t amd_e400_idle
-ffffffff81093d30 t amd_e400_c1e_apic_setup
-ffffffff81093d70 t arch_align_stack
-ffffffff81093db0 t arch_randomize_brk
-ffffffff81093dd0 t __get_wchan
-ffffffff81093f50 t do_arch_prctl_common
-ffffffff81094030 t force_reload_TR
-ffffffff810940f0 t fpu__init_cpu
-ffffffff81094160 t __traceiter_x86_fpu_before_save
-ffffffff810941b0 t __traceiter_x86_fpu_after_save
-ffffffff81094200 t __traceiter_x86_fpu_before_restore
-ffffffff81094250 t __traceiter_x86_fpu_after_restore
-ffffffff810942a0 t __traceiter_x86_fpu_regs_activated
-ffffffff810942f0 t __traceiter_x86_fpu_regs_deactivated
-ffffffff81094340 t __traceiter_x86_fpu_init_state
-ffffffff81094390 t __traceiter_x86_fpu_dropped
-ffffffff810943e0 t __traceiter_x86_fpu_copy_src
-ffffffff81094430 t __traceiter_x86_fpu_copy_dst
-ffffffff81094480 t __traceiter_x86_fpu_xstate_check_failed
-ffffffff810944d0 t trace_event_raw_event_x86_fpu
-ffffffff810945d0 t perf_trace_x86_fpu
-ffffffff81094710 t irq_fpu_usable
-ffffffff81094760 t save_fpregs_to_fpstate
-ffffffff810947f0 t restore_fpregs_from_fpstate
-ffffffff810948e0 t fpu_reset_from_exception_fixup
-ffffffff81094900 t kernel_fpu_begin_mask
-ffffffff81094a90 t kernel_fpu_end
-ffffffff81094ae0 t fpu_sync_fpstate
-ffffffff81094c40 t fpstate_init_user
-ffffffff81094c80 t fpstate_reset
-ffffffff81094ce0 t fpu_clone
-ffffffff81094fb0 t fpregs_restore_userregs.llvm.10569111113123643584
-ffffffff81095070 t fpu_thread_struct_whitelist
-ffffffff81095090 t fpu__drop
-ffffffff81095190 t fpu__clear_user_states
-ffffffff81095260 t fpregs_mark_activate
-ffffffff810952f0 t fpu_flush_thread
-ffffffff810953e0 t switch_fpu_return
-ffffffff810953f0 t fpregs_assert_state_consistent
-ffffffff81095430 t fpu__exception_code
-ffffffff810954a0 t trace_raw_output_x86_fpu
-ffffffff81095500 t local_bh_enable
-ffffffff81095520 t local_bh_enable
-ffffffff81095540 t local_bh_enable
-ffffffff81095560 t local_bh_enable
-ffffffff81095580 t local_bh_enable
-ffffffff810955a0 t local_bh_enable
-ffffffff810955c0 t local_bh_enable
-ffffffff810955e0 t local_bh_enable
-ffffffff81095600 t local_bh_enable
-ffffffff81095620 t local_bh_enable
-ffffffff81095640 t local_bh_enable
-ffffffff81095660 t local_bh_enable
-ffffffff81095680 t local_bh_enable
-ffffffff810956a0 t local_bh_enable
-ffffffff810956c0 t local_bh_enable
-ffffffff810956e0 t local_bh_enable
-ffffffff81095700 t local_bh_enable
-ffffffff81095720 t local_bh_enable
-ffffffff81095740 t local_bh_enable
-ffffffff81095760 t local_bh_enable
-ffffffff81095780 t local_bh_enable
-ffffffff810957a0 t local_bh_enable
-ffffffff810957c0 t local_bh_enable
-ffffffff810957e0 t local_bh_enable
-ffffffff81095800 t local_bh_enable
-ffffffff81095820 t local_bh_enable
-ffffffff81095840 t local_bh_enable
-ffffffff81095860 t local_bh_enable
-ffffffff81095880 t local_bh_enable
-ffffffff810958a0 t local_bh_enable
-ffffffff810958c0 t local_bh_enable
-ffffffff810958e0 t local_bh_enable
-ffffffff81095900 t local_bh_enable
-ffffffff81095920 t local_bh_enable
-ffffffff81095940 t local_bh_enable
-ffffffff81095960 t local_bh_enable
-ffffffff81095980 t local_bh_enable
-ffffffff810959a0 t local_bh_enable
-ffffffff810959c0 t local_bh_enable
-ffffffff810959e0 t local_bh_enable
-ffffffff81095a00 t local_bh_enable
-ffffffff81095a20 t local_bh_enable
-ffffffff81095a40 t regset_fpregs_active
-ffffffff81095a50 t regset_xregset_fpregs_active
-ffffffff81095a60 t xfpregs_get
-ffffffff81095af0 t xfpregs_set
-ffffffff81095c50 t xstateregs_get
-ffffffff81095cb0 t xstateregs_set
-ffffffff81095db0 t copy_fpstate_to_sigframe
-ffffffff81096080 t fpu__restore_sig
-ffffffff81096440 t fpu__alloc_mathframe
-ffffffff81096490 t cpu_has_xfeatures
-ffffffff81096500 t fpu__init_cpu_xstate
-ffffffff81096600 t xfeature_size
-ffffffff81096630 t fpu__resume_cpu
-ffffffff810966d0 t get_xsave_addr
-ffffffff81096720 t __raw_xsave_addr
-ffffffff81096810 t arch_set_user_pkey_access
-ffffffff81096890 t __copy_xstate_to_uabi_buf
-ffffffff81096d00 t copy_xstate_to_uabi_buf
-ffffffff81096d30 t copy_uabi_from_kernel_to_xstate
-ffffffff81096d50 t copy_uabi_to_xstate.llvm.9088622735741108906
-ffffffff81097050 t copy_sigframe_from_user_to_xstate
-ffffffff81097080 t xsaves
-ffffffff810970e0 t xrstors
-ffffffff81097140 t xfd_validate_state
-ffffffff810971c0 t fpstate_free
-ffffffff810971f0 t __xfd_enable_feature
-ffffffff810975d0 t xfd_enable_feature
-ffffffff810975f0 t xstate_get_guest_group_perm
-ffffffff81097620 t fpu_xstate_prctl
-ffffffff81097900 t proc_pid_arch_status
-ffffffff81097970 t xstate_calculate_size
-ffffffff81097a40 t regs_query_register_offset
-ffffffff81097d10 t regs_query_register_name
-ffffffff81097d40 t ptrace_disable
-ffffffff81097d50 t arch_ptrace
-ffffffff81097f60 t getreg
-ffffffff810980b0 t ptrace_get_debugreg
-ffffffff81098120 t putreg
-ffffffff810982f0 t ptrace_set_debugreg
-ffffffff81098880 t task_user_regset_view
-ffffffff810988a0 t send_sigtrap
-ffffffff810988f0 t user_single_step_report
-ffffffff81098940 t ptrace_triggered
-ffffffff810989b0 t genregs_get
-ffffffff81098a60 t genregs_set
-ffffffff81098b00 t ioperm_get
-ffffffff81098b60 t ioperm_active
-ffffffff81098b90 t convert_ip_to_linear
-ffffffff81098c40 t set_task_blockstep
-ffffffff81098cd0 t user_enable_single_step
-ffffffff81098cf0 t enable_step.llvm.12004589996887380442
-ffffffff81099010 t user_enable_block_step
-ffffffff81099030 t user_disable_single_step
-ffffffff810990d0 t i8237A_resume
-ffffffff810991d0 t arch_stack_walk
-ffffffff81099320 t arch_stack_walk_reliable
-ffffffff81099490 t arch_stack_walk_user
-ffffffff81099570 t cache_get_priv_group
-ffffffff81099620 t cacheinfo_amd_init_llc_id
-ffffffff81099710 t cacheinfo_hygon_init_llc_id
-ffffffff81099750 t init_amd_cacheinfo
-ffffffff810997d0 t init_hygon_cacheinfo
-ffffffff81099810 t init_intel_cacheinfo
-ffffffff81099d50 t cpuid4_cache_lookup_regs
-ffffffff8109a010 t init_cache_level
-ffffffff8109a060 t populate_cache_leaves
-ffffffff8109a4c0 t cache_disable_0_show
-ffffffff8109a550 t cache_disable_0_store
-ffffffff8109a570 t store_cache_disable
-ffffffff8109a7e0 t cache_disable_1_show
-ffffffff8109a870 t cache_disable_1_store
-ffffffff8109a890 t subcaches_show
-ffffffff8109a8d0 t subcaches_store
-ffffffff8109a980 t cache_private_attrs_is_visible
-ffffffff8109a9e0 t amd_init_l3_cache
-ffffffff8109ab10 t init_scattered_cpuid_features
-ffffffff8109abd0 t detect_extended_topology_early
-ffffffff8109ac60 t detect_extended_topology
-ffffffff8109ae80 t get_llc_id
-ffffffff8109aeb0 t native_write_cr0
-ffffffff8109af00 t native_write_cr4
-ffffffff8109af60 t cr4_update_irqsoff
-ffffffff8109afa0 t cr4_read_shadow
-ffffffff8109afc0 t cr4_init
-ffffffff8109b000 t cet_disable
-ffffffff8109b030 t load_percpu_segment
-ffffffff8109b080 t load_direct_gdt
-ffffffff8109b0c0 t load_fixmap_gdt
-ffffffff8109b0f0 t switch_to_new_gdt
-ffffffff8109b160 t detect_num_cpu_cores
-ffffffff8109b1a0 t cpu_detect_cache_sizes
-ffffffff8109b210 t detect_ht_early
-ffffffff8109b290 t detect_ht
-ffffffff8109b3d0 t cpu_detect
-ffffffff8109b470 t get_cpu_cap
-ffffffff8109b6d0 t get_cpu_address_sizes
-ffffffff8109b710 t x86_read_arch_cap_msr
-ffffffff8109b760 t check_null_seg_clears_base
-ffffffff8109b860 t identify_cpu
-ffffffff8109c170 t identify_secondary_cpu
-ffffffff8109c220 t print_cpu_info
-ffffffff8109c2f0 t syscall_init
-ffffffff8109c440 t cpu_init_exception_handling
-ffffffff8109c690 t cpu_init
-ffffffff8109c900 t cpu_init_secondary
-ffffffff8109c920 t arch_smt_update
-ffffffff8109c940 t filter_cpuid_features
-ffffffff8109ca20 t default_init
-ffffffff8109ca90 t x86_init_rdrand
-ffffffff8109cc70 t x86_match_cpu
-ffffffff8109cd60 t x86_cpu_has_min_microcode_rev
-ffffffff8109cdf0 t update_spec_ctrl_cond
-ffffffff8109ce40 t spec_ctrl_current
-ffffffff8109ce60 t x86_virt_spec_ctrl
-ffffffff8109ceb0 t update_srbds_msr
-ffffffff8109cf60 t retpoline_module_ok
-ffffffff8109cfa0 t cpu_bugs_smt_update
-ffffffff8109d180 t arch_prctl_spec_ctrl_set
-ffffffff8109d400 t arch_seccomp_spec_mitigate
-ffffffff8109d4b0 t arch_prctl_spec_ctrl_get
-ffffffff8109d5e0 t x86_spec_ctrl_setup_ap
-ffffffff8109d6a0 t update_spec_ctrl
-ffffffff8109d6e0 t x86_amd_ssb_disable
-ffffffff8109d760 t cpu_show_meltdown
-ffffffff8109d880 t cpu_show_common
-ffffffff8109dcd0 t cpu_show_spectre_v1
-ffffffff8109dd40 t cpu_show_spectre_v2
-ffffffff8109dd60 t cpu_show_spec_store_bypass
-ffffffff8109ddd0 t cpu_show_l1tf
-ffffffff8109de60 t cpu_show_mds
-ffffffff8109de80 t cpu_show_tsx_async_abort
-ffffffff8109df30 t cpu_show_itlb_multihit
-ffffffff8109dfa0 t cpu_show_srbds
-ffffffff8109e010 t cpu_show_mmio_stale_data
-ffffffff8109e040 t cpu_show_retbleed
-ffffffff8109e110 t update_stibp_msr
-ffffffff8109e160 t arch_set_max_freq_ratio
-ffffffff8109e190 t freq_invariance_set_perf_ratio
-ffffffff8109e200 t arch_scale_freq_tick
-ffffffff8109e360 t arch_freq_get_on_cpu
-ffffffff8109e410 t ap_init_aperfmperf
-ffffffff8109e480 t init_counter_refs
-ffffffff8109e4f0 t disable_freq_invariance_workfn
-ffffffff8109e570 t clear_cpu_cap
-ffffffff8109e8b0 t setup_clear_cpu_cap
-ffffffff8109ebb0 t umwait_cpu_online
-ffffffff8109ebf0 t umwait_cpu_offline
-ffffffff8109ec20 t umwait_update_control_msr
-ffffffff8109ec60 t umwait_syscore_resume
-ffffffff8109eca0 t enable_c02_show
-ffffffff8109ecd0 t enable_c02_store
-ffffffff8109ed80 t max_time_show
-ffffffff8109edb0 t max_time_store
-ffffffff8109ee70 t c_start.llvm.14603859524057350684
-ffffffff8109eed0 t c_stop.llvm.14603859524057350684
-ffffffff8109eee0 t c_next.llvm.14603859524057350684
-ffffffff8109ef40 t show_cpuinfo.llvm.14603859524057350684
-ffffffff8109f380 t init_ia32_feat_ctl
-ffffffff8109f6d0 t intel_cpu_collect_info
-ffffffff8109f790 t handle_guest_split_lock
-ffffffff8109f840 t split_lock_warn
-ffffffff8109f960 t handle_user_split_lock
-ffffffff8109f9a0 t handle_bus_lock
-ffffffff8109fa40 t get_this_hybrid_cpu_type
-ffffffff8109fa60 t early_init_intel
-ffffffff8109fe30 t bsp_init_intel
-ffffffff8109fe40 t init_intel
-ffffffff810a0360 t intel_detect_tlb
-ffffffff810a0720 t split_lock_verify_msr
-ffffffff810a07f0 t __split_lock_reenable_unlock
-ffffffff810a0840 t __split_lock_reenable
-ffffffff810a0880 t splitlock_cpu_offline
-ffffffff810a08c0 t pconfig_target_supported
-ffffffff810a08f0 t tsx_dev_mode_disable
-ffffffff810a0990 t tsx_clear_cpuid
-ffffffff810a0a60 t tsx_ap_init
-ffffffff810a0b20 t intel_epb_online
-ffffffff810a0b60 t intel_epb_offline
-ffffffff810a0bc0 t intel_epb_restore
-ffffffff810a0c70 t energy_perf_bias_show
-ffffffff810a0ce0 t energy_perf_bias_store
-ffffffff810a0dd0 t intel_epb_save
-ffffffff810a0e10 t amd_get_nodes_per_socket
-ffffffff810a0e30 t init_spectral_chicken
-ffffffff810a0ed0 t set_dr_addr_mask
-ffffffff810a0f30 t amd_get_highest_perf
-ffffffff810a0f90 t early_init_amd
-ffffffff810a1260 t bsp_init_amd
-ffffffff810a1450 t init_amd
-ffffffff810a1b40 t cpu_detect_tlb_amd
-ffffffff810a1c10 t cpu_has_amd_erratum
-ffffffff810a1d00 t early_init_hygon
-ffffffff810a1e30 t bsp_init_hygon
-ffffffff810a1fa0 t init_hygon
-ffffffff810a21b0 t cpu_detect_tlb_hygon
-ffffffff810a2250 t early_init_centaur
-ffffffff810a2290 t init_centaur
-ffffffff810a2480 t early_init_zhaoxin
-ffffffff810a24f0 t init_zhaoxin
-ffffffff810a26f0 t mtrr_add_page
-ffffffff810a2bb0 t mtrr_add
-ffffffff810a2c10 t mtrr_del_page
-ffffffff810a2dd0 t mtrr_del
-ffffffff810a2e30 t arch_phys_wc_add
-ffffffff810a2ed0 t arch_phys_wc_del
-ffffffff810a2f10 t arch_phys_wc_index
-ffffffff810a2f30 t mtrr_ap_init
-ffffffff810a2fc0 t mtrr_save_state
-ffffffff810a3000 t set_mtrr_aps_delayed_init
-ffffffff810a3030 t mtrr_aps_init
-ffffffff810a30d0 t mtrr_bp_restore
-ffffffff810a3100 t mtrr_rendezvous_handler
-ffffffff810a3170 t mtrr_save
-ffffffff810a31e0 t mtrr_restore
-ffffffff810a32e0 t mtrr_attrib_to_str
-ffffffff810a3310 t mtrr_open
-ffffffff810a3370 t mtrr_write
-ffffffff810a35b0 t mtrr_close
-ffffffff810a3650 t mtrr_ioctl
-ffffffff810a3b20 t mtrr_seq_show
-ffffffff810a3c90 t mtrr_type_lookup
-ffffffff810a3e60 t mtrr_type_lookup_variable
-ffffffff810a4010 t fill_mtrr_var_range
-ffffffff810a4080 t mtrr_save_fixed_ranges
-ffffffff810a40a0 t get_fixed_ranges
-ffffffff810a41c0 t prepare_set
-ffffffff810a42d0 t post_set
-ffffffff810a4380 t mtrr_wrmsr
-ffffffff810a43f0 t generic_get_free_region
-ffffffff810a44b0 t generic_validate_add_page
-ffffffff810a45a0 t positive_have_wrcomb
-ffffffff810a45b0 t generic_set_mtrr.llvm.15836912192777373883
-ffffffff810a4830 t generic_set_all.llvm.15836912192777373883
-ffffffff810a4dc0 t generic_get_mtrr.llvm.15836912192777373883
-ffffffff810a4f20 t generic_have_wrcomb.llvm.15836912192777373883
-ffffffff810a4f60 t k8_check_syscfg_dram_mod_en
-ffffffff810a5040 t load_ucode_ap
-ffffffff810a50c0 t find_microcode_in_initrd
-ffffffff810a51a0 t reload_early_microcode
-ffffffff810a5200 t microcode_bsp_resume
-ffffffff810a52d0 t mc_cpu_starting
-ffffffff810a53e0 t mc_cpu_online
-ffffffff810a5420 t mc_cpu_down_prep
-ffffffff810a5450 t mc_device_add
-ffffffff810a54b0 t mc_device_remove
-ffffffff810a5500 t microcode_init_cpu
-ffffffff810a5650 t pf_show
-ffffffff810a56b0 t collect_cpu_info_local
-ffffffff810a56f0 t apply_microcode_local
-ffffffff810a5730 t scan_microcode
-ffffffff810a5a50 t __load_ucode_intel
-ffffffff810a5b80 t apply_microcode_early
-ffffffff810a5c60 t load_ucode_intel_ap
-ffffffff810a5ce0 t reload_ucode_intel
-ffffffff810a5e20 t microcode_sanity_check
-ffffffff810a60d0 t save_microcode_patch
-ffffffff810a6400 t request_microcode_fw
-ffffffff810a6b50 t apply_microcode_intel
-ffffffff810a6de0 t collect_cpu_info
-ffffffff810a6ed0 t reserve_perfctr_nmi
-ffffffff810a6f70 t release_perfctr_nmi
-ffffffff810a7010 t reserve_evntsel_nmi
-ffffffff810a70b0 t release_evntsel_nmi
-ffffffff810a7150 t vmware_get_tsc_khz
-ffffffff810a7170 t vmware_sched_clock
-ffffffff810a71b0 t vmware_steal_clock
-ffffffff810a7200 t vmware_cpu_online
-ffffffff810a72a0 t vmware_cpu_down_prepare
-ffffffff810a72e0 t vmware_pv_reboot_notify
-ffffffff810a7310 t vmware_pv_guest_cpu_reboot
-ffffffff810a7340 t hv_get_tsc_khz
-ffffffff810a7390 t hv_nmi_unknown
-ffffffff810a73d0 t hv_get_nmi_reason
-ffffffff810a73e0 t acpi_gsi_to_irq
-ffffffff810a7480 t acpi_register_gsi
-ffffffff810a74a0 t acpi_isa_irq_to_gsi
-ffffffff810a74e0 t acpi_register_gsi_pic
-ffffffff810a7500 t acpi_unregister_gsi
-ffffffff810a7520 t acpi_map_cpu
-ffffffff810a75d0 t acpi_register_lapic
-ffffffff810a7650 t acpi_unmap_cpu
-ffffffff810a7690 t acpi_register_ioapic
-ffffffff810a7790 t acpi_unregister_ioapic
-ffffffff810a77d0 t acpi_ioapic_registered
-ffffffff810a7810 t __acpi_acquire_global_lock
-ffffffff810a7840 t __acpi_release_global_lock
-ffffffff810a7870 t x86_default_set_root_pointer
-ffffffff810a7890 t x86_default_get_root_pointer
-ffffffff810a78b0 t acpi_register_gsi_ioapic
-ffffffff810a7a70 t acpi_unregister_gsi_ioapic
-ffffffff810a7ab0 t acpi_wakeup_cpu
-ffffffff810a7b20 t acpi_get_wakeup_address
-ffffffff810a7b40 t x86_acpi_enter_sleep_state
-ffffffff810a7b50 t x86_acpi_suspend_lowlevel
-ffffffff810a7cf0 t cpc_supported_by_cpu
-ffffffff810a7d70 t cpc_ffh_supported
-ffffffff810a7d80 t cpc_read_ffh
-ffffffff810a7de0 t cpc_write_ffh
-ffffffff810a7e90 t init_freq_invariance_cppc
-ffffffff810a7f70 t acpi_processor_power_init_bm_check
-ffffffff810a8050 t acpi_processor_ffh_cstate_probe
-ffffffff810a8150 t acpi_processor_ffh_cstate_probe_cpu
-ffffffff810a8210 t machine_real_restart
-ffffffff810a8250 t mach_reboot_fixups
-ffffffff810a8260 t native_machine_shutdown
-ffffffff810a82a0 t native_machine_restart
-ffffffff810a82f0 t native_machine_halt
-ffffffff810a8310 t native_machine_power_off
-ffffffff810a8340 t native_machine_emergency_restart
-ffffffff810a8580 t machine_power_off
-ffffffff810a85a0 t machine_shutdown
-ffffffff810a85c0 t machine_emergency_restart
-ffffffff810a85e0 t machine_restart
-ffffffff810a8600 t machine_halt
-ffffffff810a8620 t machine_crash_shutdown
-ffffffff810a8640 t cpu_emergency_disable_virtualization
-ffffffff810a87c0 t nmi_shootdown_cpus
-ffffffff810a8870 t crash_nmi_callback
-ffffffff810a88d0 t run_crash_ipi_callback
-ffffffff810a8930 t nmi_panic_self_stop
-ffffffff810a89a0 t __sysvec_reboot
-ffffffff810a89d0 t __sysvec_call_function
-ffffffff810a8aa0 t __sysvec_call_function_single
-ffffffff810a8b70 t native_stop_other_cpus
-ffffffff810a8ce0 t smp_stop_nmi_callback
-ffffffff810a8d10 t arch_update_cpu_topology
-ffffffff810a8d30 t topology_is_primary_thread
-ffffffff810a8d60 t topology_smt_supported
-ffffffff810a8d80 t topology_phys_to_logical_pkg
-ffffffff810a8e00 t topology_phys_to_logical_die
-ffffffff810a8ea0 t topology_update_package_map
-ffffffff810a8f80 t topology_update_die_map
-ffffffff810a9070 t smp_store_cpu_info
-ffffffff810a90e0 t set_cpu_sibling_map
-ffffffff810a95d0 t match_smt
-ffffffff810a96c0 t cpu_coregroup_mask
-ffffffff810a96f0 t cpu_clustergroup_mask
-ffffffff810a9720 t __inquire_remote_apic
-ffffffff810a99b0 t wakeup_secondary_cpu_via_nmi
-ffffffff810a9a80 t common_cpu_up
-ffffffff810a9af0 t native_cpu_up
-ffffffff810aa320 t arch_disable_smp_support
-ffffffff810aa350 t arch_thaw_secondary_cpus_begin
-ffffffff810aa360 t arch_thaw_secondary_cpus_end
-ffffffff810aa370 t cpu_disable_common
-ffffffff810aa790 t native_cpu_disable
-ffffffff810aa7c0 t common_cpu_die
-ffffffff810aa810 t native_cpu_die
-ffffffff810aa850 t play_dead_common
-ffffffff810aa870 t cond_wakeup_cpu0
-ffffffff810aa8a0 t hlt_play_dead
-ffffffff810aa8f0 t native_play_dead
-ffffffff810aaad0 t start_secondary
-ffffffff810aab70 t smp_callin
-ffffffff810aac30 t wakeup_cpu0_nmi
-ffffffff810aac70 t cpu_smt_mask
-ffffffff810aaca0 t cpu_smt_mask
-ffffffff810aacd0 t x86_smt_flags
-ffffffff810aacf0 t x86_cluster_flags
-ffffffff810aad10 t x86_core_flags
-ffffffff810aad30 t cpu_cpu_mask
-ffffffff810aad50 t cpu_cpu_mask
-ffffffff810aad70 t mark_tsc_async_resets
-ffffffff810aadb0 t tsc_verify_tsc_adjust
-ffffffff810aaec0 t tsc_store_and_check_tsc_adjust
-ffffffff810ab0c0 t check_tsc_sync_source
-ffffffff810ab270 t check_tsc_warp
-ffffffff810ab3d0 t check_tsc_sync_target
-ffffffff810ab540 t tsc_sync_check_timer_fn
-ffffffff810ab5a0 t native_apic_wait_icr_idle
-ffffffff810ab5e0 t native_safe_apic_wait_icr_idle
-ffffffff810ab640 t native_apic_icr_write
-ffffffff810ab6d0 t native_apic_icr_read
-ffffffff810ab720 t lapic_get_maxlvt
-ffffffff810ab750 t setup_APIC_eilvt
-ffffffff810ab8c0 t lapic_update_tsc_freq
-ffffffff810ab8f0 t __lapic_update_tsc_freq.llvm.14937927886793454949
-ffffffff810ab940 t setup_APIC_timer
-ffffffff810aba20 t setup_secondary_APIC_clock
-ffffffff810aba40 t __sysvec_apic_timer_interrupt
-ffffffff810abc10 t clear_local_APIC
-ffffffff810abe40 t apic_soft_disable
-ffffffff810abe90 t disable_local_APIC
-ffffffff810abef0 t lapic_shutdown
-ffffffff810abfb0 t apic_ap_setup
-ffffffff810abfd0 t setup_local_APIC.llvm.14937927886793454949
-ffffffff810ac490 t end_local_APIC_setup.llvm.14937927886793454949
-ffffffff810ac590 t x2apic_setup
-ffffffff810ac690 t x2apic_hw_locked
-ffffffff810ac6e0 t __x2apic_disable
-ffffffff810ac7b0 t __x2apic_enable
-ffffffff810ac850 t read_apic_id
-ffffffff810ac890 t __spurious_interrupt
-ffffffff810ac8b0 t __sysvec_spurious_apic_interrupt
-ffffffff810ac8d0 t __sysvec_error_interrupt
-ffffffff810aca90 t disconnect_bsp_APIC
-ffffffff810acb50 t arch_match_cpu_phys_id
-ffffffff810acb80 t apic_id_is_primary_thread
-ffffffff810acbc0 t generic_processor_info
-ffffffff810acf10 t hard_smp_processor_id
-ffffffff810acf50 t __irq_msi_compose_msg
-ffffffff810ad000 t x86_msi_msg_get_destid
-ffffffff810ad030 t apic_is_clustered_box
-ffffffff810ad060 t lapic_next_event
-ffffffff810ad090 t lapic_timer_set_periodic
-ffffffff810ad120 t lapic_timer_set_oneshot
-ffffffff810ad1b0 t lapic_timer_shutdown
-ffffffff810ad210 t lapic_timer_broadcast
-ffffffff810ad240 t __setup_APIC_LVTT
-ffffffff810ad2c0 t lapic_next_deadline
-ffffffff810ad310 t handle_spurious_interrupt
-ffffffff810ad450 t lapic_suspend
-ffffffff810ad6a0 t lapic_resume
-ffffffff810ada60 t set_multi
-ffffffff810ada90 t apic_default_calc_apicid
-ffffffff810adac0 t apic_flat_calc_apicid
-ffffffff810adae0 t default_check_apicid_used
-ffffffff810adb00 t default_ioapic_phys_id_map
-ffffffff810adb20 t default_cpu_present_to_apicid
-ffffffff810adb60 t default_check_phys_apicid_present
-ffffffff810adb80 t default_apic_id_valid
-ffffffff810adba0 t noop_apic_write
-ffffffff810adbd0 t noop_apic_read
-ffffffff810adc00 t noop_apic_wait_icr_idle
-ffffffff810adc10 t noop_safe_apic_wait_icr_idle
-ffffffff810adc20 t noop_send_IPI
-ffffffff810adc30 t noop_send_IPI_mask
-ffffffff810adc40 t noop_send_IPI_mask_allbutself
-ffffffff810adc50 t noop_send_IPI_allbutself
-ffffffff810adc60 t noop_send_IPI_all
-ffffffff810adc70 t noop_send_IPI_self
-ffffffff810adc80 t noop_apic_icr_read
-ffffffff810adc90 t noop_apic_icr_write
-ffffffff810adca0 t noop_probe
-ffffffff810adcb0 t noop_apic_id_registered
-ffffffff810adcd0 t noop_init_apic_ldr
-ffffffff810adce0 t physid_set_mask_of_physid
-ffffffff810add10 t noop_phys_pkg_id
-ffffffff810add20 t noop_get_apic_id
-ffffffff810add30 t noop_wakeup_secondary_cpu
-ffffffff810add40 t apic_smt_update
-ffffffff810addb0 t apic_send_IPI_allbutself
-ffffffff810ade10 t native_smp_send_reschedule
-ffffffff810ade60 t native_send_call_func_single_ipi
-ffffffff810ade90 t native_send_call_func_ipi
-ffffffff810adf40 t __default_send_IPI_shortcut
-ffffffff810adfa0 t __default_send_IPI_dest_field
-ffffffff810ae020 t default_send_IPI_single_phys
-ffffffff810ae0f0 t default_send_IPI_mask_sequence_phys
-ffffffff810ae1f0 t default_send_IPI_mask_allbutself_phys
-ffffffff810ae320 t default_send_IPI_single
-ffffffff810ae360 t default_send_IPI_allbutself
-ffffffff810ae3c0 t default_send_IPI_all
-ffffffff810ae420 t default_send_IPI_self
-ffffffff810ae480 t lock_vector_lock
-ffffffff810ae4a0 t unlock_vector_lock
-ffffffff810ae4c0 t init_irq_alloc_info
-ffffffff810ae510 t copy_irq_alloc_info
-ffffffff810ae580 t irqd_cfg
-ffffffff810ae5b0 t irq_cfg
-ffffffff810ae5f0 t x86_fwspec_is_ioapic
-ffffffff810ae6d0 t x86_fwspec_is_hpet
-ffffffff810ae750 t lapic_assign_legacy_vector
-ffffffff810ae770 t lapic_online
-ffffffff810ae800 t lapic_offline
-ffffffff810ae830 t apic_ack_irq
-ffffffff810ae870 t apic_ack_edge
-ffffffff810ae990 t irq_complete_move
-ffffffff810ae9d0 t __sysvec_irq_move_cleanup
-ffffffff810aeac0 t send_cleanup_vector
-ffffffff810aeb60 t __send_cleanup_vector
-ffffffff810aebf0 t irq_force_complete_move
-ffffffff810aec80 t free_moved_vector
-ffffffff810aed90 t lapic_can_unplug_cpu
-ffffffff810aee30 t x86_vector_select
-ffffffff810aeef0 t x86_vector_alloc_irqs
-ffffffff810af2f0 t x86_vector_free_irqs
-ffffffff810af470 t x86_vector_activate
-ffffffff810af6a0 t x86_vector_deactivate
-ffffffff810af7c0 t apic_set_affinity
-ffffffff810af850 t apic_retrigger_irq
-ffffffff810af8c0 t x86_vector_msi_compose_msg
-ffffffff810af900 t assign_managed_vector
-ffffffff810afa40 t assign_vector_locked
-ffffffff810afb80 t apic_update_vector
-ffffffff810afce0 t apic_update_irq_cfg
-ffffffff810afdd0 t clear_irq_vector
-ffffffff810aff60 t reserve_irq_vector_locked
-ffffffff810b0030 t assign_irq_vector_any_locked
-ffffffff810b00e0 t arch_trigger_cpumask_backtrace
-ffffffff810b0100 t nmi_raise_cpu_backtrace.llvm.10977132816360404136
-ffffffff810b0130 t nmi_cpu_backtrace_handler
-ffffffff810b0150 t mpc_ioapic_id
-ffffffff810b0180 t mpc_ioapic_addr
-ffffffff810b01b0 t disable_ioapic_support
-ffffffff810b01e0 t mp_save_irq
-ffffffff810b02c0 t alloc_ioapic_saved_registers
-ffffffff810b0330 t native_io_apic_read
-ffffffff810b0380 t clear_IO_APIC
-ffffffff810b0410 t clear_IO_APIC_pin
-ffffffff810b0750 t save_ioapic_entries
-ffffffff810b08a0 t ioapic_read_entry
-ffffffff810b0920 t mask_ioapic_entries
-ffffffff810b0a90 t ioapic_write_entry
-ffffffff810b0b40 t restore_ioapic_entries
-ffffffff810b0ca0 t acpi_get_override_irq
-ffffffff810b0cc0 t __acpi_get_override_irq.llvm.5462432680987278384
-ffffffff810b0f10 t ioapic_set_alloc_attr
-ffffffff810b0f80 t mp_map_gsi_to_irq
-ffffffff810b1120 t mp_find_ioapic
-ffffffff810b11b0 t mp_find_ioapic_pin
-ffffffff810b1200 t find_irq_entry
-ffffffff810b12d0 t mp_map_pin_to_irq
-ffffffff810b1650 t mp_unmap_irq
-ffffffff810b16c0 t IO_APIC_get_PCI_irq_vector
-ffffffff810b1980 t ioapic_zap_locks
-ffffffff810b19a0 t native_restore_boot_irq_mode
-ffffffff810b1ad0 t restore_boot_irq_mode
-ffffffff810b1b00 t mp_irqdomain_create
-ffffffff810b1cd0 t arch_dynirq_lower_bound
-ffffffff810b1d00 t mp_register_ioapic
-ffffffff810b23e0 t mp_unregister_ioapic
-ffffffff810b2630 t mp_ioapic_registered
-ffffffff810b26c0 t mp_irqdomain_alloc
-ffffffff810b29b0 t mp_irqdomain_ioapic_idx
-ffffffff810b29c0 t add_pin_to_irq_node
-ffffffff810b2a90 t mp_irqdomain_free
-ffffffff810b2b70 t mp_irqdomain_activate
-ffffffff810b2bb0 t ioapic_configure_entry
-ffffffff810b2ce0 t mp_irqdomain_deactivate
-ffffffff810b2da0 t __eoi_ioapic_pin
-ffffffff810b2ec0 t irq_is_level
-ffffffff810b2f30 t alloc_isa_irq_from_domain
-ffffffff810b30b0 t mp_check_pin_attr
-ffffffff810b31d0 t startup_ioapic_irq
-ffffffff810b32b0 t mask_ioapic_irq
-ffffffff810b3380 t unmask_ioapic_irq
-ffffffff810b3420 t ioapic_ack_level
-ffffffff810b3620 t ioapic_set_affinity
-ffffffff810b3690 t ioapic_irq_get_chip_state
-ffffffff810b3750 t ioapic_ir_ack_level
-ffffffff810b37c0 t mp_alloc_timer_irq
-ffffffff810b38c0 t apic_is_x2apic_enabled
-ffffffff810b3910 t ack_lapic_irq
-ffffffff810b3940 t mask_lapic_irq
-ffffffff810b3980 t unmask_lapic_irq
-ffffffff810b39c0 t ioapic_resume
-ffffffff810b3ad0 t pci_msi_prepare
-ffffffff810b3b50 t arch_restore_msi_irqs
-ffffffff810b3b60 t msi_set_affinity
-ffffffff810b3df0 t x2apic_apic_id_valid
-ffffffff810b3e10 t x2apic_apic_id_registered
-ffffffff810b3e20 t __x2apic_send_IPI_dest
-ffffffff810b3e70 t native_x2apic_icr_write
-ffffffff810b3eb0 t native_x2apic_icr_write
-ffffffff810b3ef0 t __x2apic_send_IPI_shorthand
-ffffffff810b3f30 t x2apic_get_apic_id
-ffffffff810b3f40 t x2apic_set_apic_id
-ffffffff810b3f50 t x2apic_phys_pkg_id
-ffffffff810b3f70 t x2apic_send_IPI_self
-ffffffff810b3fa0 t native_apic_msr_eoi_write
-ffffffff810b3fc0 t native_apic_msr_eoi_write
-ffffffff810b3fe0 t native_apic_msr_write
-ffffffff810b4040 t native_apic_msr_write
-ffffffff810b40a0 t native_apic_msr_read
-ffffffff810b40f0 t native_apic_msr_read
-ffffffff810b4140 t native_x2apic_wait_icr_idle
-ffffffff810b4150 t native_x2apic_wait_icr_idle
-ffffffff810b4160 t native_safe_x2apic_wait_icr_idle
-ffffffff810b4170 t native_safe_x2apic_wait_icr_idle
-ffffffff810b4180 t x2apic_send_IPI
-ffffffff810b41e0 t x2apic_send_IPI
-ffffffff810b4210 t x2apic_send_IPI_mask
-ffffffff810b4230 t x2apic_send_IPI_mask
-ffffffff810b4250 t x2apic_send_IPI_mask_allbutself
-ffffffff810b4270 t x2apic_send_IPI_mask_allbutself
-ffffffff810b4290 t x2apic_send_IPI_allbutself
-ffffffff810b42e0 t x2apic_send_IPI_allbutself
-ffffffff810b4300 t x2apic_send_IPI_all
-ffffffff810b4350 t x2apic_send_IPI_all
-ffffffff810b4370 t native_x2apic_icr_read
-ffffffff810b43b0 t native_x2apic_icr_read
-ffffffff810b43f0 t x2apic_phys_probe
-ffffffff810b4450 t x2apic_acpi_madt_oem_check
-ffffffff810b44f0 t x2apic_acpi_madt_oem_check
-ffffffff810b4550 t init_x2apic_ldr
-ffffffff810b4560 t init_x2apic_ldr
-ffffffff810b4630 t __x2apic_send_IPI_mask
-ffffffff810b4740 t __x2apic_send_IPI_mask
-ffffffff810b48d0 t x2apic_calc_apicid
-ffffffff810b48f0 t x2apic_cluster_probe
-ffffffff810b49b0 t x2apic_prepare_cpu
-ffffffff810b4a60 t x2apic_dead_cpu
-ffffffff810b4aa0 t flat_init_apic_ldr
-ffffffff810b4b10 t native_apic_mem_write
-ffffffff810b4b30 t native_apic_mem_read
-ffffffff810b4b50 t flat_send_IPI_mask
-ffffffff810b4bb0 t flat_send_IPI_mask_allbutself
-ffffffff810b4c40 t flat_probe
-ffffffff810b4c50 t flat_acpi_madt_oem_check
-ffffffff810b4c60 t flat_apic_id_registered
-ffffffff810b4ca0 t flat_phys_pkg_id
-ffffffff810b4cc0 t flat_get_apic_id
-ffffffff810b4ce0 t set_apic_id
-ffffffff810b4cf0 t default_inquire_remote_apic
-ffffffff810b4d10 t physflat_probe
-ffffffff810b4d60 t physflat_acpi_madt_oem_check
-ffffffff810b4de0 t physflat_init_apic_ldr
-ffffffff810b4df0 t trace_clock_x86_tsc
-ffffffff810b4e10 t arch_crash_save_vmcoreinfo
-ffffffff810b4eb0 t machine_kexec_prepare
-ffffffff810b5460 t machine_kexec_cleanup
-ffffffff810b54e0 t machine_kexec
-ffffffff810b5680 t arch_kexec_kernel_image_load
-ffffffff810b56e0 t arch_kexec_apply_relocations_add
-ffffffff810b5900 t arch_kimage_file_post_load_cleanup
-ffffffff810b5940 t arch_kexec_protect_crashkres
-ffffffff810b5960 t kexec_mark_crashkres.llvm.1270544663672899349
-ffffffff810b5a50 t arch_kexec_unprotect_crashkres
-ffffffff810b5a70 t arch_kexec_post_alloc_pages
-ffffffff810b5a80 t arch_kexec_pre_free_pages
-ffffffff810b5a90 t alloc_pgt_page
-ffffffff810b5ad0 t mem_region_callback
-ffffffff810b5af0 t kdump_nmi_shootdown_cpus
-ffffffff810b5b10 t kdump_nmi_callback
-ffffffff810b5b50 t crash_smp_send_stop
-ffffffff810b5b90 t native_machine_crash_shutdown
-ffffffff810b5c30 t crash_setup_memmap_entries
-ffffffff810b5e40 t memmap_entry_callback
-ffffffff810b5e90 t crash_load_segments
-ffffffff810b6080 t prepare_elf64_ram_headers_callback
-ffffffff810b60b0 t get_nr_ram_ranges_callback
-ffffffff810b60c0 t bzImage64_probe.llvm.5210944273065077365
-ffffffff810b6190 t bzImage64_load.llvm.5210944273065077365
-ffffffff810b6780 t bzImage64_cleanup.llvm.5210944273065077365
-ffffffff810b67b0 t setup_cmdline
-ffffffff810b6850 t setup_boot_parameters
-ffffffff810b6c20 t early_console_register
-ffffffff810b6c70 t io_serial_in
-ffffffff810b6c90 t io_serial_in
-ffffffff810b6cb0 t io_serial_out
-ffffffff810b6cd0 t io_serial_out
-ffffffff810b6cf0 t early_serial_write
-ffffffff810b6e20 t mem32_serial_in
-ffffffff810b6e40 t mem32_serial_in
-ffffffff810b6e60 t mem32_serial_out
-ffffffff810b6e80 t mem32_serial_out
-ffffffff810b6ea0 t early_vga_write
-ffffffff810b7080 t hpet_readl
-ffffffff810b70a0 t is_hpet_enabled
-ffffffff810b70d0 t _hpet_print_config
-ffffffff810b7210 t hpet_disable
-ffffffff810b72b0 t hpet_register_irq_handler
-ffffffff810b7300 t hpet_unregister_irq_handler
-ffffffff810b7340 t hpet_rtc_timer_init
-ffffffff810b7450 t hpet_mask_rtc_irq_bit
-ffffffff810b74b0 t hpet_set_rtc_irq_bit
-ffffffff810b7520 t hpet_set_alarm_time
-ffffffff810b7570 t hpet_set_periodic_freq
-ffffffff810b7600 t hpet_rtc_dropped_irq
-ffffffff810b7630 t hpet_rtc_interrupt
-ffffffff810b7870 t read_hpet
-ffffffff810b7970 t hpet_resume_counter
-ffffffff810b79d0 t hpet_clkevt_legacy_resume
-ffffffff810b7a20 t hpet_clkevt_set_state_periodic
-ffffffff810b7af0 t hpet_clkevt_set_state_oneshot
-ffffffff810b7b30 t hpet_clkevt_set_next_event
-ffffffff810b7b90 t hpet_clkevt_set_state_shutdown
-ffffffff810b7bd0 t hpet_cpuhp_online
-ffffffff810b7d90 t hpet_cpuhp_dead
-ffffffff810b7df0 t hpet_msi_init
-ffffffff810b7e50 t hpet_msi_free
-ffffffff810b7e70 t hpet_msi_mask
-ffffffff810b7ec0 t hpet_msi_unmask
-ffffffff810b7f10 t hpet_msi_write_msg
-ffffffff810b7f60 t hpet_clkevt_msi_resume
-ffffffff810b8050 t hpet_msi_interrupt_handler
-ffffffff810b8090 t amd_nb_num
-ffffffff810b80b0 t amd_nb_has_feature
-ffffffff810b80d0 t node_to_amd_nb
-ffffffff810b8100 t amd_smn_read
-ffffffff810b8120 t __amd_smn_rw.llvm.483022755006441585
-ffffffff810b8210 t amd_smn_write
-ffffffff810b8260 t amd_get_mmconfig_range
-ffffffff810b8300 t amd_get_subcaches
-ffffffff810b83b0 t amd_set_subcaches
-ffffffff810b8570 t amd_flush_garts
-ffffffff810b86d0 t __fix_erratum_688
-ffffffff810b8710 t kvm_async_pf_task_wait_schedule
-ffffffff810b88b0 t kvm_async_pf_task_wake
-ffffffff810b8a00 t apf_task_wake_all
-ffffffff810b8ae0 t __sysvec_kvm_asyncpf_interrupt
-ffffffff810b8bd0 t kvm_para_available
-ffffffff810b8c00 t kvm_arch_para_features
-ffffffff810b8c30 t kvm_arch_para_hints
-ffffffff810b8c60 t arch_haltpoll_enable
-ffffffff810b8d00 t kvm_disable_host_haltpoll
-ffffffff810b8d30 t arch_haltpoll_disable
-ffffffff810b8d80 t kvm_enable_host_haltpoll
-ffffffff810b8dc0 t pv_tlb_flush_supported
-ffffffff810b8e70 t pv_ipi_supported
-ffffffff810b8ec0 t __kvm_cpuid_base
-ffffffff810b8f60 t kvm_send_ipi_mask
-ffffffff810b8f70 t kvm_send_ipi_mask_allbutself
-ffffffff810b8ff0 t __send_ipi_mask
-ffffffff810b9240 t kvm_steal_clock
-ffffffff810b9290 t kvm_guest_apic_eoi_write
-ffffffff810b92e0 t kvm_flush_tlb_multi
-ffffffff810b93a0 t kvm_smp_send_call_func_ipi
-ffffffff810b9400 t kvm_cpu_online
-ffffffff810b9460 t kvm_cpu_down_prepare
-ffffffff810b94c0 t kvm_crash_shutdown
-ffffffff810b94f0 t kvm_io_delay
-ffffffff810b9500 t kvm_pv_reboot_notify
-ffffffff810b9530 t kvm_pv_guest_cpu_reboot
-ffffffff810b9550 t kvm_guest_cpu_offline
-ffffffff810b9680 t kvm_guest_cpu_init
-ffffffff810b98a0 t kvm_suspend
-ffffffff810b9920 t kvm_resume
-ffffffff810b99d0 t kvm_check_and_clear_guest_paused
-ffffffff810b9a20 t kvm_clock_get_cycles
-ffffffff810b9a60 t kvm_cs_enable
-ffffffff810b9a80 t kvmclock_disable
-ffffffff810b9ac0 t kvmclock_setup_percpu
-ffffffff810b9b30 t kvm_get_tsc_khz
-ffffffff810b9b60 t kvm_get_wallclock
-ffffffff810b9bf0 t kvm_set_wallclock
-ffffffff810b9c00 t kvm_setup_secondary_clock
-ffffffff810b9c60 t kvm_save_sched_clock_state
-ffffffff810b9c70 t kvm_restore_sched_clock_state
-ffffffff810b9cd0 t kvm_sched_clock_read
-ffffffff810b9d10 t paravirt_patch
-ffffffff810b9d70 t native_steal_clock
-ffffffff810b9d80 t paravirt_set_sched_clock
-ffffffff810b9db0 t paravirt_disable_iospace
-ffffffff810b9dd0 t paravirt_enter_lazy_mmu
-ffffffff810b9e00 t paravirt_leave_lazy_mmu
-ffffffff810b9e30 t paravirt_flush_lazy_mmu
-ffffffff810b9e80 t paravirt_get_lazy_mode
-ffffffff810b9eb0 t tlb_remove_page
-ffffffff810b9ee0 t pvclock_set_flags
-ffffffff810b9f00 t pvclock_tsc_khz
-ffffffff810b9f40 t pvclock_touch_watchdogs
-ffffffff810b9f70 t pvclock_resume
-ffffffff810b9f90 t pvclock_read_flags
-ffffffff810b9fc0 t pvclock_clocksource_read
-ffffffff810ba080 t pvclock_read_wallclock
-ffffffff810ba100 t pvclock_set_pvti_cpu0_va
-ffffffff810ba130 t pvclock_get_pvti_cpu0_va
-ffffffff810ba150 t pcibios_get_phb_of_node
-ffffffff810ba1d0 t x86_of_pci_init
-ffffffff810ba200 t x86_of_pci_irq_enable
-ffffffff810ba290 t x86_of_pci_irq_disable
-ffffffff810ba2a0 t dt_irqdomain_alloc
-ffffffff810ba3b0 t arch_uprobe_analyze_insn
-ffffffff810ba8d0 t arch_uprobe_pre_xol
-ffffffff810ba980 t arch_uprobe_xol_was_trapped
-ffffffff810ba9a0 t arch_uprobe_post_xol
-ffffffff810baa70 t arch_uprobe_exception_notify
-ffffffff810baac0 t arch_uprobe_abort_xol
-ffffffff810bab30 t arch_uprobe_skip_sstep
-ffffffff810bab80 t arch_uretprobe_hijack_return_addr
-ffffffff810baca0 t arch_uretprobe_is_alive
-ffffffff810bacd0 t branch_emulate_op
-ffffffff810baed0 t branch_post_xol_op
-ffffffff810baf10 t push_emulate_op
-ffffffff810bafd0 t default_pre_xol_op
-ffffffff810bb030 t default_post_xol_op
-ffffffff810bb150 t default_abort_op
-ffffffff810bb1a0 t perf_reg_value
-ffffffff810bb200 t perf_reg_validate
-ffffffff810bb230 t perf_reg_abi
-ffffffff810bb250 t perf_get_regs_user
-ffffffff810bb3d0 t trace_pagefault_reg
-ffffffff810bb400 t trace_pagefault_unreg
-ffffffff810bb420 t sched_set_itmt_support
-ffffffff810bb4a0 t sched_clear_itmt_support
-ffffffff810bb510 t arch_asym_cpu_priority
-ffffffff810bb540 t sched_set_itmt_core_prio
-ffffffff810bb5e0 t sched_itmt_update_handler
-ffffffff810bb680 t fixup_umip_exception
-ffffffff810bba40 t umip_printk
-ffffffff810bbb50 t force_sig_info_umip_fault
-ffffffff810bbbd0 t unwind_get_return_address
-ffffffff810bbc00 t unwind_get_return_address_ptr
-ffffffff810bbc40 t unwind_next_frame
-ffffffff810bbe10 t update_stack_state
-ffffffff810bbf50 t unwind_dump
-ffffffff810bc0a0 t __unwind_start
-ffffffff810bc1e0 t audit_classify_arch
-ffffffff810bc1f0 t audit_classify_syscall
-ffffffff810bc250 t fam10h_check_enable_mmcfg
-ffffffff810bc850 t cmp_range
-ffffffff810bc870 t cmp_range
-ffffffff810bc890 t vsmp_apic_post_init
-ffffffff810bc8b0 t apicid_phys_pkg_id
-ffffffff810bc8d0 t cachemode2protval
-ffffffff810bc900 t x86_has_pat_wp
-ffffffff810bc930 t pgprot2cachemode
-ffffffff810bc970 t pfn_range_is_mapped
-ffffffff810bca00 t devmem_is_allowed
-ffffffff810bca70 t free_init_pages
-ffffffff810bcb40 t free_kernel_image_pages
-ffffffff810bcc50 t update_cache_mode_entry
-ffffffff810bcca0 t arch_max_swapfile_size
-ffffffff810bccf0 t kernel_ident_mapping_init
-ffffffff810bcf20 t ident_p4d_init
-ffffffff810bd0e0 t set_pte_vaddr_p4d
-ffffffff810bd120 t fill_pud
-ffffffff810bd200 t __set_pte_vaddr
-ffffffff810bd3a0 t set_pte_vaddr_pud
-ffffffff810bd3c0 t set_pte_vaddr
-ffffffff810bd460 t add_pages
-ffffffff810bd4d0 t arch_add_memory
-ffffffff810bd580 t mark_rodata_ro
-ffffffff810bd690 t kern_addr_valid
-ffffffff810bd8c0 t pfn_valid
-ffffffff810bd950 t pfn_valid
-ffffffff810bd9e0 t memory_block_size_bytes
-ffffffff810bda90 t sync_global_pgds
-ffffffff810bde20 t register_page_bootmem_memmap
-ffffffff810be0c0 t ident_pud_init
-ffffffff810be2c0 t p4d_populate_init
-ffffffff810be3c0 t __traceiter_page_fault_user
-ffffffff810be420 t __traceiter_page_fault_kernel
-ffffffff810be480 t trace_event_raw_event_x86_exceptions
-ffffffff810be550 t perf_trace_x86_exceptions
-ffffffff810be660 t fault_in_kernel_space
-ffffffff810be6a0 t trace_raw_output_x86_exceptions
-ffffffff810be700 t do_kern_addr_fault
-ffffffff810be750 t spurious_kernel_fault
-ffffffff810be8f0 t bad_area_nosemaphore
-ffffffff810be910 t __bad_area_nosemaphore
-ffffffff810beb40 t kernelmode_fixup_or_oops
-ffffffff810bec40 t page_fault_oops
-ffffffff810bf000 t is_prefetch
-ffffffff810bf1e0 t show_ldttss
-ffffffff810bf2e0 t dump_pagetable
-ffffffff810bf560 t is_errata93
-ffffffff810bf610 t pgtable_bad
-ffffffff810bf690 t bad_area
-ffffffff810bf700 t bad_area_access_error
-ffffffff810bf820 t do_sigbus
-ffffffff810bf8f0 t ioremap_change_attr
-ffffffff810bf990 t ioremap
-ffffffff810bf9b0 t __ioremap_caller.llvm.3649719505020540488
-ffffffff810bfc60 t ioremap_uc
-ffffffff810bfc80 t ioremap_wc
-ffffffff810bfca0 t ioremap_wt
-ffffffff810bfcc0 t ioremap_encrypted
-ffffffff810bfce0 t ioremap_cache
-ffffffff810bfd00 t ioremap_prot
-ffffffff810bfd30 t iounmap
-ffffffff810bfdf0 t xlate_dev_mem_ptr
-ffffffff810bfe30 t unxlate_dev_mem_ptr
-ffffffff810bfe60 t __ioremap_collect_map_flags
-ffffffff810bff90 t ex_get_fixup_type
-ffffffff810bffe0 t fixup_exception
-ffffffff810c0640 t task_size_32bit
-ffffffff810c0670 t task_size_64bit
-ffffffff810c06a0 t arch_mmap_rnd
-ffffffff810c06f0 t arch_pick_mmap_layout
-ffffffff810c0810 t get_mmap_base
-ffffffff810c0840 t arch_vma_name
-ffffffff810c0850 t mmap_address_hint_valid
-ffffffff810c08c0 t valid_phys_addr_range
-ffffffff810c0910 t valid_mmap_phys_addr_range
-ffffffff810c0940 t pfn_modify_allowed
-ffffffff810c0a20 t pte_alloc_one
-ffffffff810c0ab0 t ___pte_free_tlb
-ffffffff810c0b40 t ___pmd_free_tlb
-ffffffff810c0c00 t ___pud_free_tlb
-ffffffff810c0c50 t ___p4d_free_tlb
-ffffffff810c0ca0 t pgd_page_get_mm
-ffffffff810c0cb0 t pgd_alloc
-ffffffff810c0e20 t pgd_free
-ffffffff810c0ed0 t ptep_set_access_flags
-ffffffff810c0f00 t pmdp_set_access_flags
-ffffffff810c0f30 t pudp_set_access_flags
-ffffffff810c0f60 t ptep_test_and_clear_young
-ffffffff810c0f80 t pmdp_test_and_clear_young
-ffffffff810c0fa0 t pudp_test_and_clear_young
-ffffffff810c0fc0 t ptep_clear_flush_young
-ffffffff810c0fe0 t pmdp_clear_flush_young
-ffffffff810c1020 t pmdp_invalidate_ad
-ffffffff810c1080 t __native_set_fixmap
-ffffffff810c10b0 t native_set_fixmap
-ffffffff810c1130 t p4d_set_huge
-ffffffff810c1140 t p4d_clear_huge
-ffffffff810c1150 t pud_set_huge
-ffffffff810c1230 t pmd_set_huge
-ffffffff810c1350 t pud_clear_huge
-ffffffff810c1380 t pmd_clear_huge
-ffffffff810c13b0 t pud_free_pmd_page
-ffffffff810c15a0 t pmd_free_pte_page
-ffffffff810c1610 t __virt_addr_valid
-ffffffff810c16f0 t leave_mm
-ffffffff810c1770 t switch_mm
-ffffffff810c17d0 t switch_mm_irqs_off
-ffffffff810c1d50 t cr4_update_pce
-ffffffff810c1d90 t enter_lazy_tlb
-ffffffff810c1dc0 t initialize_tlbstate_and_flush
-ffffffff810c1f40 t native_flush_tlb_multi
-ffffffff810c2030 t flush_tlb_func
-ffffffff810c2210 t tlb_is_not_lazy
-ffffffff810c2240 t flush_tlb_multi
-ffffffff810c2260 t flush_tlb_mm_range
-ffffffff810c23f0 t flush_tlb_all
-ffffffff810c2420 t do_flush_tlb_all.llvm.16082720713241548584
-ffffffff810c2450 t flush_tlb_kernel_range
-ffffffff810c2560 t do_kernel_range_flush
-ffffffff810c25b0 t __get_current_cr3_fast
-ffffffff810c2640 t flush_tlb_one_kernel
-ffffffff810c2660 t flush_tlb_one_user
-ffffffff810c2680 t native_flush_tlb_one_user
-ffffffff810c2730 t native_flush_tlb_global
-ffffffff810c27d0 t native_flush_tlb_local
-ffffffff810c2870 t flush_tlb_local
-ffffffff810c2890 t __flush_tlb_all
-ffffffff810c28c0 t arch_tlbbatch_flush
-ffffffff810c29f0 t nmi_uaccess_okay
-ffffffff810c2a20 t l1d_flush_evaluate
-ffffffff810c2aa0 t l1d_flush_force_sigbus
-ffffffff810c2ac0 t tlbflush_read_file
-ffffffff810c2b70 t tlbflush_write_file
-ffffffff810c2c60 t cea_set_pte
-ffffffff810c2cd0 t copy_from_kernel_nofault_allowed
-ffffffff810c2d10 t add_encrypt_protection_map
-ffffffff810c2d20 t vm_get_page_prot
-ffffffff810c2d70 t update_page_count
-ffffffff810c2dc0 t arch_report_meminfo
-ffffffff810c2e30 t clflush_cache_range
-ffffffff810c2e80 t arch_invalidate_pmem
-ffffffff810c2ed0 t lookup_address_in_pgd
-ffffffff810c3030 t lookup_address
-ffffffff810c3070 t lookup_pmd_address
-ffffffff810c3150 t slow_virt_to_phys
-ffffffff810c3280 t __set_memory_prot
-ffffffff810c32e0 t change_page_attr_set_clr.llvm.4905667579562676785
-ffffffff810c3690 t _set_memory_uc
-ffffffff810c3700 t set_memory_uc
-ffffffff810c3800 t _set_memory_wc
-ffffffff810c3890 t set_memory_wc
-ffffffff810c39d0 t _set_memory_wt
-ffffffff810c3a40 t _set_memory_wb
-ffffffff810c3aa0 t set_memory_wb
-ffffffff810c3b50 t set_mce_nospec
-ffffffff810c3bf0 t set_memory_np
-ffffffff810c3c50 t clear_mce_nospec
-ffffffff810c3cc0 t set_memory_x
-ffffffff810c3d30 t set_memory_nx
-ffffffff810c3da0 t set_memory_ro
-ffffffff810c3e00 t set_memory_rw
-ffffffff810c3e60 t set_memory_np_noalias
-ffffffff810c3ec0 t set_memory_4k
-ffffffff810c3f20 t set_memory_nonglobal
-ffffffff810c3f80 t set_memory_global
-ffffffff810c3fe0 t set_memory_encrypted
-ffffffff810c3ff0 t set_memory_decrypted
-ffffffff810c4000 t set_pages_uc
-ffffffff810c4030 t set_pages_array_uc
-ffffffff810c4050 t _set_pages_array
-ffffffff810c4160 t set_pages_array_wc
-ffffffff810c4180 t set_pages_wb
-ffffffff810c4240 t set_pages_array_wb
-ffffffff810c42d0 t set_pages_ro
-ffffffff810c4340 t set_pages_rw
-ffffffff810c43b0 t set_direct_map_invalid_noflush
-ffffffff810c4460 t set_direct_map_default_noflush
-ffffffff810c4510 t kernel_page_present
-ffffffff810c4590 t __change_page_attr_set_clr
-ffffffff810c5530 t __cpa_flush_all
-ffffffff810c5560 t __cpa_flush_tlb
-ffffffff810c55e0 t __cpa_process_fault
-ffffffff810c5cc0 t static_protections
-ffffffff810c5f60 t populate_pmd
-ffffffff810c6490 t unmap_pmd_range
-ffffffff810c6660 t __unmap_pmd_range
-ffffffff810c6860 t pat_disable
-ffffffff810c68c0 t pat_enabled
-ffffffff810c68e0 t __init_cache_modes
-ffffffff810c6a90 t pat_init
-ffffffff810c6c20 t memtype_reserve
-ffffffff810c7010 t cattr_name
-ffffffff810c7040 t memtype_free
-ffffffff810c71f0 t pat_pfn_immune_to_uc_mtrr
-ffffffff810c7220 t lookup_memtype
-ffffffff810c7340 t memtype_reserve_io
-ffffffff810c7430 t memtype_kernel_map_sync
-ffffffff810c7570 t memtype_free_io
-ffffffff810c7580 t arch_io_reserve_memtype_wc
-ffffffff810c75d0 t arch_io_free_memtype_wc
-ffffffff810c75f0 t phys_mem_access_prot
-ffffffff810c7600 t phys_mem_access_prot_allowed
-ffffffff810c76a0 t track_pfn_copy
-ffffffff810c7740 t reserve_pfn_range
-ffffffff810c79b0 t track_pfn_remap
-ffffffff810c7aa0 t track_pfn_insert
-ffffffff810c7ae0 t untrack_pfn
-ffffffff810c7bf0 t untrack_pfn_moved
-ffffffff810c7c00 t pgprot_writecombine
-ffffffff810c7c20 t pgprot_writethrough
-ffffffff810c7c40 t pagerange_is_ram_callback
-ffffffff810c7c80 t memtype_seq_open
-ffffffff810c7ca0 t memtype_seq_start
-ffffffff810c7d30 t memtype_seq_stop
-ffffffff810c7d50 t memtype_seq_next
-ffffffff810c7dd0 t memtype_seq_show
-ffffffff810c7e10 t memtype_check_insert
-ffffffff810c8170 t memtype_erase
-ffffffff810c84e0 t memtype_match
-ffffffff810c8660 t memtype_lookup
-ffffffff810c86d0 t memtype_copy_nth_element
-ffffffff810c87c0 t interval_augment_rotate
-ffffffff810c8810 t __execute_only_pkey
-ffffffff810c88d0 t __arch_override_mprotect_pkey
-ffffffff810c89f0 t init_pkru_read_file
-ffffffff810c8a90 t init_pkru_write_file
-ffffffff810c8b80 t __pti_set_user_pgtbl
-ffffffff810c8bd0 t pti_finalize
-ffffffff810c8ca0 t pti_user_pagetable_walk_pte
-ffffffff810c8da0 t pti_user_pagetable_walk_p4d
-ffffffff810c8ef0 t pti_user_pagetable_walk_pmd
-ffffffff810c90a0 t pti_clone_pgtable
-ffffffff810c9250 t common_rfc4106_set_key
-ffffffff810c9390 t common_rfc4106_set_authsize
-ffffffff810c93c0 t helper_rfc4106_encrypt
-ffffffff810c9550 t helper_rfc4106_decrypt
-ffffffff810c9720 t generic_gcmaes_set_key
-ffffffff810c9850 t generic_gcmaes_set_authsize
-ffffffff810c9880 t generic_gcmaes_encrypt
-ffffffff810c9980 t generic_gcmaes_decrypt
-ffffffff810c9ac0 t gcmaes_crypt_by_sg
-ffffffff810c9ec0 t aesni_skcipher_setkey
-ffffffff810c9f50 t ecb_encrypt
-ffffffff810ca020 t ecb_decrypt
-ffffffff810ca0f0 t cbc_encrypt
-ffffffff810ca1d0 t cbc_decrypt
-ffffffff810ca2b0 t cts_cbc_encrypt
-ffffffff810ca5e0 t cts_cbc_decrypt
-ffffffff810ca910 t ctr_crypt
-ffffffff810caa80 t xts_aesni_setkey
-ffffffff810cabb0 t xts_encrypt
-ffffffff810cabd0 t xts_decrypt
-ffffffff810cabf0 t xts_crypt
-ffffffff810cb050 t aes_set_key
-ffffffff810cb0e0 t aesni_encrypt
-ffffffff810cb140 t aesni_decrypt
-ffffffff810cb1a0 t xctr_crypt
-ffffffff810cb3a0 t aesni_ctr_enc_avx_tfm
-ffffffff810cb400 t unregister_sha256_avx2
-ffffffff810cb470 t unregister_sha256_avx
-ffffffff810cb4c0 t sha256_base_init
-ffffffff810cb510 t sha256_base_init
-ffffffff810cb560 t sha256_ni_update
-ffffffff810cb6a0 t sha256_ni_final
-ffffffff810cb6c0 t sha256_ni_finup
-ffffffff810cb950 t sha224_base_init
-ffffffff810cb9a0 t sha224_base_init
-ffffffff810cb9f0 t sha256_avx2_update
-ffffffff810cbb30 t sha256_avx2_final
-ffffffff810cbb50 t sha256_avx2_finup
-ffffffff810cbde0 t sha256_avx_update
-ffffffff810cbf20 t sha256_avx_final
-ffffffff810cbf40 t sha256_avx_finup
-ffffffff810cc1d0 t sha256_ssse3_update
-ffffffff810cc310 t sha256_ssse3_final
-ffffffff810cc330 t sha256_ssse3_finup
-ffffffff810cc5c0 t unregister_sha512_avx
-ffffffff810cc610 t sha512_base_init
-ffffffff810cc6a0 t sha512_base_init
-ffffffff810cc730 t sha512_avx2_update
-ffffffff810cc860 t sha512_avx2_final
-ffffffff810cc880 t sha512_avx2_finup
-ffffffff810ccaf0 t sha384_base_init
-ffffffff810ccb80 t sha384_base_init
-ffffffff810ccc10 t sha512_avx_update
-ffffffff810ccd40 t sha512_avx_final
-ffffffff810ccd60 t sha512_avx_finup
-ffffffff810ccfd0 t sha512_ssse3_update
-ffffffff810cd100 t sha512_ssse3_final
-ffffffff810cd120 t sha512_ssse3_finup
-ffffffff810cd390 t polyval_x86_init
-ffffffff810cd3c0 t polyval_x86_update
-ffffffff810cd610 t polyval_x86_final
-ffffffff810cd690 t polyval_x86_setkey
-ffffffff810cd8e0 t efi_delete_dummy_variable
-ffffffff810cd960 t efi_query_variable_store
-ffffffff810cdb50 t efi_reboot_required
-ffffffff810cdb80 t efi_poweroff_required
-ffffffff810cdba0 t efi_crash_gracefully_on_page_fault
-ffffffff810cdca0 t efi_is_table_address
-ffffffff810cdd70 t efi_systab_show_arch
-ffffffff810cddb0 t fw_vendor_show
-ffffffff810cdde0 t runtime_show
-ffffffff810cde10 t config_table_show
-ffffffff810cde40 t efi_attr_is_visible
-ffffffff810cdec0 t efi_sync_low_kernel_mappings
-ffffffff810ce050 t efi_enter_mm
-ffffffff810ce090 t efi_leave_mm
-ffffffff810ce0c0 t __traceiter_task_newtask
-ffffffff810ce110 t __traceiter_task_rename
-ffffffff810ce160 t trace_event_raw_event_task_newtask
-ffffffff810ce250 t perf_trace_task_newtask
-ffffffff810ce380 t trace_event_raw_event_task_rename
-ffffffff810ce490 t perf_trace_task_rename
-ffffffff810ce5e0 t nr_processes
-ffffffff810ce640 t vm_area_alloc
-ffffffff810ce6a0 t vm_area_dup
-ffffffff810ce750 t vm_area_free
-ffffffff810ce7b0 t exit_task_stack_account
-ffffffff810ce820 t account_kernel_stack
-ffffffff810ce930 t put_task_stack
-ffffffff810ce9d0 t free_task
-ffffffff810cea40 t __mmdrop
-ffffffff810ceb70 t __put_task_struct
-ffffffff810cecc0 t free_vm_stack_cache
-ffffffff810ced30 t set_task_stack_end_magic
-ffffffff810ced50 t mm_alloc
-ffffffff810ceda0 t mm_init
-ffffffff810ceff0 t mmput
-ffffffff810cf020 t __mmput
-ffffffff810cf110 t mmput_async
-ffffffff810cf170 t mmput_async_fn
-ffffffff810cf190 t set_mm_exe_file
-ffffffff810cf200 t replace_mm_exe_file
-ffffffff810cf440 t get_mm_exe_file
-ffffffff810cf490 t get_task_exe_file
-ffffffff810cf510 t get_task_mm
-ffffffff810cf560 t mm_access
-ffffffff810cf630 t exit_mm_release
-ffffffff810cf660 t mm_release.llvm.8495451226569879663
-ffffffff810cf760 t exec_mm_release
-ffffffff810cf790 t __cleanup_sighand
-ffffffff810cf7e0 t __x64_sys_set_tid_address
-ffffffff810cf810 t pidfd_pid
-ffffffff810cf840 t pidfd_poll.llvm.8495451226569879663
-ffffffff810cf890 t pidfd_release.llvm.8495451226569879663
-ffffffff810cf8c0 t pidfd_show_fdinfo.llvm.8495451226569879663
-ffffffff810cf930 t idle_dummy
-ffffffff810cf940 t copy_process
-ffffffff810d0a40 t copy_init_mm
-ffffffff810d0a60 t dup_mm.llvm.8495451226569879663
-ffffffff810d11b0 t create_io_thread
-ffffffff810d1280 t kernel_clone
-ffffffff810d15e0 t ptrace_event_pid
-ffffffff810d1660 t kernel_thread
-ffffffff810d1740 t user_mode_thread
-ffffffff810d1810 t __x64_sys_fork
-ffffffff810d18f0 t __x64_sys_vfork
-ffffffff810d19d0 t __x64_sys_clone
-ffffffff810d1ab0 t __x64_sys_clone3
-ffffffff810d1d00 t walk_process_tree
-ffffffff810d1e00 t sighand_ctor
-ffffffff810d1e30 t unshare_fd
-ffffffff810d1ec0 t ksys_unshare
-ffffffff810d2160 t __x64_sys_unshare
-ffffffff810d2180 t unshare_files
-ffffffff810d2240 t sysctl_max_threads
-ffffffff810d2300 t trace_raw_output_task_newtask
-ffffffff810d2360 t trace_raw_output_task_rename
-ffffffff810d23c0 t refcount_inc
-ffffffff810d2400 t refcount_inc
-ffffffff810d2440 t refcount_inc
-ffffffff810d2480 t refcount_inc
-ffffffff810d24c0 t refcount_inc
-ffffffff810d2500 t refcount_inc
-ffffffff810d2540 t refcount_inc
-ffffffff810d2580 t refcount_inc
-ffffffff810d25c0 t thread_stack_free_rcu
-ffffffff810d2600 t free_signal_struct
-ffffffff810d26a0 t mmdrop_async_fn
-ffffffff810d26c0 t dup_task_struct
-ffffffff810d2910 t copy_files
-ffffffff810d29a0 t copy_fs
-ffffffff810d2a20 t copy_sighand
-ffffffff810d2b20 t copy_signal
-ffffffff810d2d20 t copy_mm
-ffffffff810d2de0 t get_pid
-ffffffff810d2e20 t get_pid
-ffffffff810d2e60 t get_pid
-ffffffff810d2ea0 t copy_seccomp
-ffffffff810d2f20 t ptrace_init_task
-ffffffff810d2fd0 t tty_kref_get
-ffffffff810d3010 t trace_task_newtask
-ffffffff810d3070 t copy_oom_score_adj
-ffffffff810d3100 t memcg_charge_kernel_stack
-ffffffff810d31f0 t __delayed_free_task
-ffffffff810d3210 t copy_clone_args_from_user
-ffffffff810d34a0 t __x64_sys_personality
-ffffffff810d34d0 t execdomains_proc_show
-ffffffff810d34f0 t panic_smp_self_stop
-ffffffff810d3510 t nmi_panic
-ffffffff810d3549 t panic
-ffffffff810d3870 t check_panic_on_warn
-ffffffff810d38c0 t test_taint
-ffffffff810d38e0 t panic_print_sys_info
-ffffffff810d3950 t no_blink
-ffffffff810d3960 t print_tainted
-ffffffff810d3a00 t get_taint
-ffffffff810d3a20 t add_taint
-ffffffff810d3a80 t oops_may_print
-ffffffff810d3aa0 t oops_enter
-ffffffff810d3ae0 t do_oops_enter_exit.llvm.9761402500010473794
-ffffffff810d3bd0 t oops_exit
-ffffffff810d3c00 t __warn
-ffffffff810d3dc0 t __warn_printk
-ffffffff810d3f60 t warn_count_show
-ffffffff810d3f90 t clear_warn_once_fops_open
-ffffffff810d3fb0 t clear_warn_once_set
-ffffffff810d3ff0 t __traceiter_cpuhp_enter
-ffffffff810d4060 t __traceiter_cpuhp_multi_enter
-ffffffff810d40d0 t __traceiter_cpuhp_exit
-ffffffff810d4140 t trace_event_raw_event_cpuhp_enter
-ffffffff810d4220 t perf_trace_cpuhp_enter
-ffffffff810d4330 t trace_event_raw_event_cpuhp_multi_enter
-ffffffff810d4410 t perf_trace_cpuhp_multi_enter
-ffffffff810d4520 t trace_event_raw_event_cpuhp_exit
-ffffffff810d4600 t perf_trace_cpuhp_exit
-ffffffff810d4710 t cpu_maps_update_begin
-ffffffff810d4730 t cpu_maps_update_done
-ffffffff810d4750 t cpus_read_lock
-ffffffff810d47b0 t cpus_read_trylock
-ffffffff810d4820 t cpus_read_unlock
-ffffffff810d4890 t cpus_write_lock
-ffffffff810d48b0 t cpus_write_unlock
-ffffffff810d48d0 t lockdep_assert_cpus_held
-ffffffff810d48e0 t cpu_hotplug_disable
-ffffffff810d4910 t cpu_hotplug_enable
-ffffffff810d4970 t cpu_smt_possible
-ffffffff810d4990 t clear_tasks_mm_cpumask
-ffffffff810d4a30 t cpuhp_report_idle_dead
-ffffffff810d4aa0 t cpuhp_complete_idle_dead
-ffffffff810d4ac0 t cpu_device_down
-ffffffff810d4b10 t cpu_down
-ffffffff810d4b70 t remove_cpu
-ffffffff810d4bb0 t smp_shutdown_nonboot_cpus
-ffffffff810d4c90 t notify_cpu_starting
-ffffffff810d4da0 t cpuhp_online_idle
-ffffffff810d4e00 t cpu_device_up
-ffffffff810d4e20 t cpu_up.llvm.12637579947466161668
-ffffffff810d4ed0 t add_cpu
-ffffffff810d4f10 t bringup_hibernate_cpu
-ffffffff810d4f70 t bringup_nonboot_cpus
-ffffffff810d4fe0 t freeze_secondary_cpus
-ffffffff810d51f0 t thaw_secondary_cpus
-ffffffff810d53c0 t _cpu_up
-ffffffff810d5670 t __cpuhp_state_add_instance_cpuslocked
-ffffffff810d5890 t cpuhp_issue_call
-ffffffff810d5a40 t __cpuhp_state_add_instance
-ffffffff810d5b20 t __cpuhp_setup_state_cpuslocked
-ffffffff810d5e90 t __cpuhp_setup_state
-ffffffff810d5fa0 t __cpuhp_state_remove_instance
-ffffffff810d61c0 t __cpuhp_remove_state_cpuslocked
-ffffffff810d6370 t __cpuhp_remove_state
-ffffffff810d6440 t cpuhp_smt_disable
-ffffffff810d6500 t cpuhp_smt_enable
-ffffffff810d65b0 t init_cpu_present
-ffffffff810d65e0 t init_cpu_possible
-ffffffff810d6610 t init_cpu_online
-ffffffff810d6640 t set_cpu_online
-ffffffff810d6690 t cpu_mitigations_off
-ffffffff810d66b0 t cpu_mitigations_auto_nosmt
-ffffffff810d66d0 t trace_raw_output_cpuhp_enter
-ffffffff810d6730 t trace_raw_output_cpuhp_multi_enter
-ffffffff810d6790 t trace_raw_output_cpuhp_exit
-ffffffff810d67f0 t cpuhp_should_run
-ffffffff810d6820 t cpuhp_thread_fun
-ffffffff810d69d0 t cpuhp_invoke_callback
-ffffffff810d6f70 t cpuhp_kick_ap_work
-ffffffff810d7070 t cpuhp_kick_ap
-ffffffff810d71e0 t cpu_hotplug_pm_callback
-ffffffff810d7280 t bringup_cpu
-ffffffff810d7370 t finish_cpu
-ffffffff810d73b0 t takedown_cpu
-ffffffff810d7490 t take_cpu_down
-ffffffff810d75f0 t control_show
-ffffffff810d7630 t control_show
-ffffffff810d7670 t control_store
-ffffffff810d7760 t control_store
-ffffffff810d77e0 t active_show
-ffffffff810d7810 t states_show
-ffffffff810d78a0 t state_show
-ffffffff810d78e0 t state_show
-ffffffff810d7970 t state_show
-ffffffff810d79d0 t state_show
-ffffffff810d7a40 t target_show
-ffffffff810d7a80 t target_store
-ffffffff810d7c20 t fail_show
-ffffffff810d7c60 t fail_show
-ffffffff810d7c90 t fail_store
-ffffffff810d7e00 t put_task_struct_rcu_user
-ffffffff810d7e50 t delayed_put_task_struct
-ffffffff810d7ef0 t release_task
-ffffffff810d84d0 t rcuwait_wake_up
-ffffffff810d8510 t is_current_pgrp_orphaned
-ffffffff810d85d0 t mm_update_next_owner
-ffffffff810d8820 t get_task_struct
-ffffffff810d8860 t get_task_struct
-ffffffff810d88a0 t get_task_struct
-ffffffff810d88e0 t put_task_struct
-ffffffff810d8920 t put_task_struct
-ffffffff810d8960 t do_exit
-ffffffff810d93d0 t make_task_dead
-ffffffff810d9510 t __x64_sys_exit
-ffffffff810d9530 t do_group_exit
-ffffffff810d95c0 t __x64_sys_exit_group
-ffffffff810d95e0 t __wake_up_parent
-ffffffff810d9610 t __x64_sys_waitid
-ffffffff810d9980 t kernel_wait4
-ffffffff810d9b00 t do_wait
-ffffffff810d9dd0 t kernel_wait
-ffffffff810d9ea0 t __x64_sys_wait4
-ffffffff810d9f60 t __x64_sys_waitpid
-ffffffff810d9f80 t thread_group_exited
-ffffffff810d9fe0 t abort
-ffffffff810d9ff0 t oops_count_show
-ffffffff810da020 t kill_orphaned_pgrp
-ffffffff810da150 t child_wait_callback
-ffffffff810da1c0 t wait_consider_task
-ffffffff810dab50 t __traceiter_irq_handler_entry
-ffffffff810daba0 t __traceiter_irq_handler_exit
-ffffffff810dac00 t __traceiter_softirq_entry
-ffffffff810dac50 t __traceiter_softirq_exit
-ffffffff810daca0 t __traceiter_softirq_raise
-ffffffff810dacf0 t __traceiter_tasklet_entry
-ffffffff810dad40 t __traceiter_tasklet_exit
-ffffffff810dad90 t trace_event_raw_event_irq_handler_entry
-ffffffff810daeb0 t perf_trace_irq_handler_entry
-ffffffff810db010 t trace_event_raw_event_irq_handler_exit
-ffffffff810db0d0 t perf_trace_irq_handler_exit
-ffffffff810db1d0 t trace_event_raw_event_softirq
-ffffffff810db290 t perf_trace_softirq
-ffffffff810db380 t trace_event_raw_event_tasklet
-ffffffff810db440 t perf_trace_tasklet
-ffffffff810db530 t _local_bh_enable
-ffffffff810db560 t __local_bh_enable_ip
-ffffffff810db5f0 t do_softirq
-ffffffff810db6f0 t irq_enter_rcu
-ffffffff810db740 t irq_enter
-ffffffff810db7a0 t irq_exit_rcu
-ffffffff810db7b0 t __irq_exit_rcu.llvm.14578701573217428013
-ffffffff810db8c0 t irq_exit
-ffffffff810db8e0 t raise_softirq_irqoff
-ffffffff810db990 t __raise_softirq_irqoff
-ffffffff810dba00 t raise_softirq
-ffffffff810dbb00 t open_softirq
-ffffffff810dbb20 t __tasklet_schedule
-ffffffff810dbb40 t __tasklet_schedule_common
-ffffffff810dbc80 t __tasklet_hi_schedule
-ffffffff810dbca0 t tasklet_setup
-ffffffff810dbce0 t tasklet_init
-ffffffff810dbd10 t tasklet_unlock_spin_wait
-ffffffff810dbd40 t tasklet_kill
-ffffffff810dbed0 t tasklet_unlock_wait
-ffffffff810dbfc0 t tasklet_unlock
-ffffffff810dbfe0 t tasklet_action
-ffffffff810dc020 t tasklet_hi_action
-ffffffff810dc060 t trace_raw_output_irq_handler_entry
-ffffffff810dc0c0 t trace_raw_output_irq_handler_exit
-ffffffff810dc130 t trace_raw_output_softirq
-ffffffff810dc1a0 t trace_raw_output_tasklet
-ffffffff810dc1f0 t tasklet_action_common
-ffffffff810dc4e0 t takeover_tasklets
-ffffffff810dc740 t ksoftirqd_should_run
-ffffffff810dc770 t run_ksoftirqd
-ffffffff810dc7b0 t release_child_resources
-ffffffff810dc7e0 t __release_child_resources.llvm.9515817954454269068
-ffffffff810dc850 t request_resource_conflict
-ffffffff810dc8e0 t request_resource
-ffffffff810dc970 t release_resource
-ffffffff810dc9f0 t walk_iomem_res_desc
-ffffffff810dca20 t __walk_iomem_res_desc.llvm.9515817954454269068
-ffffffff810dcbe0 t walk_system_ram_res
-ffffffff810dcc00 t walk_mem_res
-ffffffff810dcc20 t walk_system_ram_range
-ffffffff810dcd50 t page_is_ram
-ffffffff810dce20 t region_intersects
-ffffffff810dced0 t allocate_resource
-ffffffff810dd1c0 t simple_align_resource
-ffffffff810dd1d0 t lookup_resource
-ffffffff810dd230 t insert_resource_conflict
-ffffffff810dd270 t __insert_resource.llvm.9515817954454269068
-ffffffff810dd3a0 t insert_resource
-ffffffff810dd3f0 t insert_resource_expand_to_fit
-ffffffff810dd480 t remove_resource
-ffffffff810dd530 t adjust_resource
-ffffffff810dd600 t __adjust_resource
-ffffffff810dd690 t resource_alignment
-ffffffff810dd6d0 t iomem_get_mapping
-ffffffff810dd6f0 t __request_region
-ffffffff810dd990 t free_resource
-ffffffff810dda20 t __release_region
-ffffffff810ddb80 t release_mem_region_adjustable
-ffffffff810dde40 t merge_system_ram_resource
-ffffffff810de070 t devm_request_resource
-ffffffff810de190 t devm_resource_release
-ffffffff810de200 t devm_release_resource
-ffffffff810de230 t devm_resource_match
-ffffffff810de250 t __devm_request_region
-ffffffff810de2f0 t devm_region_release
-ffffffff810de310 t __devm_release_region
-ffffffff810de390 t devm_region_match
-ffffffff810de3d0 t iomem_map_sanity_check
-ffffffff810de4b0 t r_next
-ffffffff810de4f0 t iomem_is_exclusive
-ffffffff810de5f0 t resource_list_create_entry
-ffffffff810de630 t resource_list_free
-ffffffff810de6b0 t r_start
-ffffffff810de730 t r_stop
-ffffffff810de750 t r_show
-ffffffff810de850 t __find_resource
-ffffffff810deae0 t iomem_fs_init_fs_context
-ffffffff810deb10 t proc_dostring
-ffffffff810decc0 t do_proc_douintvec
-ffffffff810def80 t proc_dobool
-ffffffff810defb0 t do_proc_dobool_conv
-ffffffff810defe0 t proc_dointvec
-ffffffff810df010 t proc_douintvec
-ffffffff810df030 t do_proc_douintvec_conv.llvm.7548402211666496850
-ffffffff810df060 t proc_dointvec_minmax
-ffffffff810df0d0 t do_proc_dointvec_minmax_conv
-ffffffff810df170 t proc_douintvec_minmax
-ffffffff810df1d0 t do_proc_douintvec_minmax_conv
-ffffffff810df250 t proc_dou8vec_minmax
-ffffffff810df380 t proc_doulongvec_minmax
-ffffffff810df3a0 t do_proc_doulongvec_minmax.llvm.7548402211666496850
-ffffffff810df8a0 t proc_doulongvec_ms_jiffies_minmax
-ffffffff810df8c0 t proc_dointvec_jiffies
-ffffffff810df8f0 t do_proc_dointvec_jiffies_conv.llvm.7548402211666496850
-ffffffff810df950 t proc_dointvec_ms_jiffies_minmax
-ffffffff810df9c0 t do_proc_dointvec_ms_jiffies_minmax_conv
-ffffffff810dfa70 t proc_dointvec_userhz_jiffies
-ffffffff810dfaa0 t do_proc_dointvec_userhz_jiffies_conv.llvm.7548402211666496850
-ffffffff810dfb20 t proc_dointvec_ms_jiffies
-ffffffff810dfb50 t do_proc_dointvec_ms_jiffies_conv.llvm.7548402211666496850
-ffffffff810dfbb0 t proc_do_large_bitmap
-ffffffff810e0250 t proc_get_long
-ffffffff810e03e0 t proc_do_static_key
-ffffffff810e0550 t __do_proc_dointvec.llvm.7548402211666496850
-ffffffff810e0990 t do_proc_dointvec_conv
-ffffffff810e09f0 t proc_taint
-ffffffff810e0b30 t sysrq_sysctl_handler
-ffffffff810e0bd0 t proc_do_cad_pid
-ffffffff810e0c90 t proc_dointvec_minmax_warn_RT_change
-ffffffff810e0d00 t __x64_sys_capget
-ffffffff810e0f00 t __x64_sys_capset
-ffffffff810e1140 t has_ns_capability
-ffffffff810e1190 t has_capability
-ffffffff810e11d0 t has_ns_capability_noaudit
-ffffffff810e1220 t has_capability_noaudit
-ffffffff810e1270 t ns_capable
-ffffffff810e12c0 t ns_capable_noaudit
-ffffffff810e1310 t ns_capable_setid
-ffffffff810e1360 t capable
-ffffffff810e13b0 t file_ns_capable
-ffffffff810e13e0 t privileged_wrt_inode_uidgid
-ffffffff810e1410 t capable_wrt_inode_uidgid
-ffffffff810e1480 t ptracer_capable
-ffffffff810e14d0 t cap_validate_magic
-ffffffff810e1610 t ptrace_access_vm
-ffffffff810e16c0 t __ptrace_link
-ffffffff810e1760 t __ptrace_unlink
-ffffffff810e18a0 t ptrace_may_access
-ffffffff810e18f0 t __ptrace_may_access
-ffffffff810e1a30 t exit_ptrace
-ffffffff810e1ae0 t __ptrace_detach
-ffffffff810e1bc0 t ptrace_readdata
-ffffffff810e1e00 t ptrace_writedata
-ffffffff810e2020 t ptrace_request
-ffffffff810e2b30 t generic_ptrace_peekdata
-ffffffff810e2c20 t generic_ptrace_pokedata
-ffffffff810e2d00 t ptrace_setsiginfo
-ffffffff810e2dc0 t ptrace_regset
-ffffffff810e2ee0 t __x64_sys_ptrace
-ffffffff810e34c0 t find_user
-ffffffff810e3580 t free_uid
-ffffffff810e3630 t alloc_uid
-ffffffff810e3830 t __traceiter_signal_generate
-ffffffff810e38a0 t __traceiter_signal_deliver
-ffffffff810e3900 t trace_event_raw_event_signal_generate
-ffffffff810e3a40 t perf_trace_signal_generate
-ffffffff810e3bb0 t trace_event_raw_event_signal_deliver
-ffffffff810e3cc0 t perf_trace_signal_deliver
-ffffffff810e3e10 t recalc_sigpending_and_wake
-ffffffff810e3e80 t recalc_sigpending
-ffffffff810e3ef0 t calculate_sigpending
-ffffffff810e3f70 t next_signal
-ffffffff810e3fb0 t task_set_jobctl_pending
-ffffffff810e4020 t task_clear_jobctl_trapping
-ffffffff810e4060 t task_clear_jobctl_pending
-ffffffff810e40e0 t task_join_group_stop
-ffffffff810e4160 t flush_sigqueue
-ffffffff810e41f0 t flush_signals
-ffffffff810e4330 t flush_itimer_signals
-ffffffff810e4550 t ignore_signals
-ffffffff810e45c0 t flush_signal_handlers
-ffffffff810e4660 t unhandled_signal
-ffffffff810e46a0 t dequeue_signal
-ffffffff810e4890 t __dequeue_signal
-ffffffff810e4a10 t signal_wake_up_state
-ffffffff810e4a40 t send_signal_locked
-ffffffff810e4be0 t __send_signal_locked
-ffffffff810e4f70 t do_send_sig_info
-ffffffff810e5010 t force_sig_info
-ffffffff810e5030 t force_sig_info_to_task
-ffffffff810e5170 t zap_other_threads
-ffffffff810e5290 t __lock_task_sighand
-ffffffff810e52f0 t group_send_sig_info
-ffffffff810e5360 t check_kill_permission
-ffffffff810e5450 t __kill_pgrp_info
-ffffffff810e5510 t kill_pid_info
-ffffffff810e55b0 t kill_pid_usb_asyncio
-ffffffff810e5730 t send_sig_info
-ffffffff810e5750 t send_sig
-ffffffff810e5780 t force_sig
-ffffffff810e5800 t force_fatal_sig
-ffffffff810e5890 t force_exit_sig
-ffffffff810e5920 t force_sigsegv
-ffffffff810e59f0 t force_sig_fault_to_task
-ffffffff810e5a70 t force_sig_fault
-ffffffff810e5af0 t send_sig_fault
-ffffffff810e5b70 t force_sig_mceerr
-ffffffff810e5c00 t send_sig_mceerr
-ffffffff810e5c90 t force_sig_bnderr
-ffffffff810e5d10 t force_sig_pkuerr
-ffffffff810e5d90 t send_sig_perf
-ffffffff810e5e20 t force_sig_seccomp
-ffffffff810e5ec0 t force_sig_ptrace_errno_trap
-ffffffff810e5f40 t force_sig_fault_trapno
-ffffffff810e5fc0 t send_sig_fault_trapno
-ffffffff810e6040 t kill_pgrp
-ffffffff810e6130 t kill_pid
-ffffffff810e6160 t sigqueue_alloc
-ffffffff810e6190 t __sigqueue_alloc
-ffffffff810e6260 t sigqueue_free
-ffffffff810e62f0 t send_sigqueue
-ffffffff810e6500 t prepare_signal
-ffffffff810e67e0 t complete_signal
-ffffffff810e6aa0 t do_notify_parent
-ffffffff810e6d80 t ptrace_notify
-ffffffff810e6e90 t get_signal
-ffffffff810e7640 t do_notify_parent_cldstop
-ffffffff810e77f0 t do_signal_stop
-ffffffff810e7a10 t do_jobctl_trap
-ffffffff810e7b30 t do_freezer_trap
-ffffffff810e7b90 t ptrace_signal
-ffffffff810e7cc0 t signal_setup_done
-ffffffff810e7e70 t exit_signals
-ffffffff810e8100 t task_participate_group_stop
-ffffffff810e81c0 t __x64_sys_restart_syscall
-ffffffff810e81f0 t do_no_restart_syscall
-ffffffff810e8210 t set_current_blocked
-ffffffff810e8270 t __set_current_blocked
-ffffffff810e82c0 t __set_task_blocked
-ffffffff810e8410 t sigprocmask
-ffffffff810e84e0 t set_user_sigmask
-ffffffff810e85b0 t __x64_sys_rt_sigprocmask
-ffffffff810e8700 t __x64_sys_rt_sigpending
-ffffffff810e87d0 t siginfo_layout
-ffffffff810e88a0 t copy_siginfo_to_user
-ffffffff810e8910 t copy_siginfo_from_user
-ffffffff810e8a90 t __x64_sys_rt_sigtimedwait
-ffffffff810e8de0 t __x64_sys_kill
-ffffffff810e9090 t __x64_sys_pidfd_send_signal
-ffffffff810e92c0 t __x64_sys_tgkill
-ffffffff810e93b0 t __x64_sys_tkill
-ffffffff810e94d0 t __x64_sys_rt_sigqueueinfo
-ffffffff810e9700 t __x64_sys_rt_tgsigqueueinfo
-ffffffff810e9930 t kernel_sigaction
-ffffffff810e9a40 t flush_sigqueue_mask
-ffffffff810e9b10 t sigaction_compat_abi
-ffffffff810e9b20 t do_sigaction
-ffffffff810e9d10 t __x64_sys_sigaltstack
-ffffffff810e9f40 t restore_altstack
-ffffffff810ea080 t __save_altstack
-ffffffff810ea0d0 t __x64_sys_sigpending
-ffffffff810ea180 t __x64_sys_sigprocmask
-ffffffff810ea2b0 t __x64_sys_rt_sigaction
-ffffffff810ea3c0 t __x64_sys_sgetmask
-ffffffff810ea3e0 t __x64_sys_ssetmask
-ffffffff810ea470 t __x64_sys_signal
-ffffffff810ea510 t __x64_sys_pause
-ffffffff810ea560 t __x64_sys_rt_sigsuspend
-ffffffff810ea660 t trace_raw_output_signal_generate
-ffffffff810ea6d0 t trace_raw_output_signal_deliver
-ffffffff810ea740 t print_dropped_signal
-ffffffff810ea7a0 t ptrace_trap_notify
-ffffffff810ea830 t ptrace_stop
-ffffffff810eab00 t do_send_specific
-ffffffff810eaba0 t __x64_sys_setpriority
-ffffffff810eae10 t __x64_sys_getpriority
-ffffffff810eb060 t __sys_setregid
-ffffffff810eb170 t __x64_sys_setregid
-ffffffff810eb190 t __sys_setgid
-ffffffff810eb260 t __x64_sys_setgid
-ffffffff810eb280 t __sys_setreuid
-ffffffff810eb420 t __x64_sys_setreuid
-ffffffff810eb440 t __sys_setuid
-ffffffff810eb580 t __x64_sys_setuid
-ffffffff810eb5a0 t __sys_setresuid
-ffffffff810eb790 t __x64_sys_setresuid
-ffffffff810eb7b0 t __x64_sys_getresuid
-ffffffff810eb830 t __sys_setresgid
-ffffffff810eb9a0 t __x64_sys_setresgid
-ffffffff810eb9c0 t __x64_sys_getresgid
-ffffffff810eba40 t __sys_setfsuid
-ffffffff810ebaf0 t __x64_sys_setfsuid
-ffffffff810ebb10 t __sys_setfsgid
-ffffffff810ebbc0 t __x64_sys_setfsgid
-ffffffff810ebbe0 t __x64_sys_getpid
-ffffffff810ebc10 t __x64_sys_gettid
-ffffffff810ebc30 t __x64_sys_getppid
-ffffffff810ebc70 t __x64_sys_getuid
-ffffffff810ebca0 t __x64_sys_geteuid
-ffffffff810ebcd0 t __x64_sys_getgid
-ffffffff810ebd00 t __x64_sys_getegid
-ffffffff810ebd30 t __x64_sys_times
-ffffffff810ebe40 t __x64_sys_setpgid
-ffffffff810ebfd0 t __x64_sys_getpgid
-ffffffff810ec050 t __x64_sys_getpgrp
-ffffffff810ec090 t __x64_sys_getsid
-ffffffff810ec110 t ksys_setsid
-ffffffff810ec200 t __x64_sys_setsid
-ffffffff810ec220 t __x64_sys_newuname
-ffffffff810ec310 t __x64_sys_uname
-ffffffff810ec410 t __x64_sys_olduname
-ffffffff810ec550 t __x64_sys_sethostname
-ffffffff810ec6c0 t __x64_sys_gethostname
-ffffffff810ec820 t __x64_sys_setdomainname
-ffffffff810ec9a0 t __x64_sys_getrlimit
-ffffffff810eca80 t __x64_sys_old_getrlimit
-ffffffff810ecb90 t __x64_sys_prlimit64
-ffffffff810ece30 t __x64_sys_setrlimit
-ffffffff810ecec0 t getrusage
-ffffffff810ed290 t __x64_sys_getrusage
-ffffffff810ed340 t __x64_sys_umask
-ffffffff810ed370 t __x64_sys_prctl
-ffffffff810ee290 t __x64_sys_getcpu
-ffffffff810ee2f0 t __x64_sys_sysinfo
-ffffffff810ee480 t set_one_prio
-ffffffff810ee530 t override_release
-ffffffff810ee6e0 t do_prlimit
-ffffffff810ee840 t propagate_has_child_subreaper
-ffffffff810ee890 t usermodehelper_read_trylock
-ffffffff810ee9b0 t usermodehelper_read_lock_wait
-ffffffff810eea90 t usermodehelper_read_unlock
-ffffffff810eeab0 t __usermodehelper_set_disable_depth
-ffffffff810eeb00 t __usermodehelper_disable
-ffffffff810eeca0 t call_usermodehelper_setup
-ffffffff810eed60 t call_usermodehelper_exec_work
-ffffffff810eee10 t call_usermodehelper_exec
-ffffffff810eefa0 t call_usermodehelper
-ffffffff810ef040 t proc_cap_handler
-ffffffff810ef210 t call_usermodehelper_exec_async
-ffffffff810ef350 t __traceiter_workqueue_queue_work
-ffffffff810ef3b0 t __traceiter_workqueue_activate_work
-ffffffff810ef400 t __traceiter_workqueue_execute_start
-ffffffff810ef450 t __traceiter_workqueue_execute_end
-ffffffff810ef4a0 t trace_event_raw_event_workqueue_queue_work
-ffffffff810ef5e0 t perf_trace_workqueue_queue_work
-ffffffff810ef760 t trace_event_raw_event_workqueue_activate_work
-ffffffff810ef820 t perf_trace_workqueue_activate_work
-ffffffff810ef910 t trace_event_raw_event_workqueue_execute_start
-ffffffff810ef9d0 t perf_trace_workqueue_execute_start
-ffffffff810efad0 t trace_event_raw_event_workqueue_execute_end
-ffffffff810efb90 t perf_trace_workqueue_execute_end
-ffffffff810efc90 t wq_worker_running
-ffffffff810efcf0 t wq_worker_sleeping
-ffffffff810efd80 t wq_worker_last_func
-ffffffff810efda0 t queue_work_on
-ffffffff810efe20 t __queue_work
-ffffffff810f02b0 t queue_work_node
-ffffffff810f0340 t delayed_work_timer_fn
-ffffffff810f0360 t queue_delayed_work_on
-ffffffff810f03e0 t __queue_delayed_work
-ffffffff810f0470 t mod_delayed_work_on
-ffffffff810f0510 t try_to_grab_pending
-ffffffff810f06b0 t queue_rcu_work
-ffffffff810f06f0 t rcu_work_rcufn
-ffffffff810f0710 t __flush_workqueue
-ffffffff810f0bd0 t flush_workqueue_prep_pwqs
-ffffffff810f0cf0 t check_flush_dependency
-ffffffff810f0df0 t drain_workqueue
-ffffffff810f0f40 t flush_work
-ffffffff810f0f50 t __flush_work.llvm.10196221300628918044
-ffffffff810f11a0 t cancel_work_sync
-ffffffff810f11c0 t __cancel_work_timer.llvm.10196221300628918044
-ffffffff810f1350 t flush_delayed_work
-ffffffff810f1390 t flush_rcu_work
-ffffffff810f13d0 t cancel_work
-ffffffff810f1480 t cancel_delayed_work
-ffffffff810f1530 t cancel_delayed_work_sync
-ffffffff810f1550 t schedule_on_each_cpu
-ffffffff810f1700 t execute_in_process_context
-ffffffff810f17b0 t schedule_work
-ffffffff810f1830 t free_workqueue_attrs
-ffffffff810f1850 t alloc_workqueue_attrs
-ffffffff810f18b0 t apply_workqueue_attrs
-ffffffff810f18f0 t apply_workqueue_attrs_locked
-ffffffff810f1980 t alloc_workqueue
-ffffffff810f1f50 t init_rescuer
-ffffffff810f2040 t workqueue_sysfs_register
-ffffffff810f2170 t pwq_adjust_max_active
-ffffffff810f2240 t destroy_workqueue
-ffffffff810f24f0 t show_pwq
-ffffffff810f2890 t show_one_workqueue
-ffffffff810f2960 t rcu_free_wq
-ffffffff810f29a0 t put_pwq_unlocked
-ffffffff810f2a50 t workqueue_set_max_active
-ffffffff810f2b30 t current_work
-ffffffff810f2b70 t current_is_workqueue_rescuer
-ffffffff810f2bc0 t workqueue_congested
-ffffffff810f2c60 t work_busy
-ffffffff810f2d40 t set_worker_desc
-ffffffff810f2e20 t print_worker_info
-ffffffff810f2fa0 t show_all_workqueues
-ffffffff810f31c0 t wq_worker_comm
-ffffffff810f3280 t workqueue_prepare_cpu
-ffffffff810f3300 t create_worker
-ffffffff810f34e0 t workqueue_online_cpu
-ffffffff810f36f0 t workqueue_offline_cpu
-ffffffff810f38a0 t work_on_cpu
-ffffffff810f3960 t work_for_cpu_fn
-ffffffff810f3990 t work_on_cpu_safe
-ffffffff810f3a80 t freeze_workqueues_begin
-ffffffff810f3b30 t freeze_workqueues_busy
-ffffffff810f3bf0 t thaw_workqueues
-ffffffff810f3c90 t workqueue_set_unbound_cpumask
-ffffffff810f3ed0 t wq_device_release
-ffffffff810f3ef0 t wq_watchdog_touch
-ffffffff810f3f30 t init_worker_pool
-ffffffff810f4070 t __warn_flushing_systemwide_wq
-ffffffff810f4080 t trace_raw_output_workqueue_queue_work
-ffffffff810f40f0 t trace_raw_output_workqueue_activate_work
-ffffffff810f4140 t trace_raw_output_workqueue_execute_start
-ffffffff810f41a0 t trace_raw_output_workqueue_execute_end
-ffffffff810f4200 t is_chained_work
-ffffffff810f4250 t insert_work
-ffffffff810f4310 t pwq_activate_inactive_work
-ffffffff810f4460 t pwq_dec_nr_in_flight
-ffffffff810f4510 t wq_barrier_func
-ffffffff810f4530 t cwt_wakefn
-ffffffff810f4550 t apply_wqattrs_prepare
-ffffffff810f4c90 t apply_wqattrs_commit
-ffffffff810f4de0 t put_unbound_pool
-ffffffff810f4fc0 t destroy_worker
-ffffffff810f5040 t rcu_free_pool
-ffffffff810f5080 t pwq_unbound_release_workfn
-ffffffff810f5190 t rcu_free_pwq
-ffffffff810f51c0 t rescuer_thread
-ffffffff810f5610 t worker_attach_to_pool
-ffffffff810f56d0 t worker_detach_from_pool
-ffffffff810f5780 t process_one_work
-ffffffff810f5b50 t worker_set_flags
-ffffffff810f5b90 t worker_clr_flags
-ffffffff810f5be0 t worker_thread
-ffffffff810f6030 t worker_enter_idle
-ffffffff810f6120 t wq_unbound_cpumask_show
-ffffffff810f6170 t wq_unbound_cpumask_store
-ffffffff810f6210 t per_cpu_show
-ffffffff810f6250 t max_active_show
-ffffffff810f6280 t max_active_store
-ffffffff810f6300 t wq_pool_ids_show
-ffffffff810f6390 t wq_nice_show
-ffffffff810f63f0 t wq_nice_store
-ffffffff810f6520 t wq_cpumask_show
-ffffffff810f6580 t wq_cpumask_store
-ffffffff810f66a0 t wq_numa_show
-ffffffff810f6700 t wq_numa_store
-ffffffff810f6820 t wq_watchdog_param_set_thresh
-ffffffff810f6940 t idle_worker_timeout
-ffffffff810f69d0 t pool_mayday_timeout
-ffffffff810f6b30 t wq_watchdog_timer_fn
-ffffffff810f6d50 t put_pid
-ffffffff810f6da0 t free_pid
-ffffffff810f6e70 t delayed_put_pid
-ffffffff810f6ec0 t alloc_pid
-ffffffff810f7250 t disable_pid_allocation
-ffffffff810f7280 t find_pid_ns
-ffffffff810f72a0 t find_vpid
-ffffffff810f72e0 t task_active_pid_ns
-ffffffff810f7310 t attach_pid
-ffffffff810f7390 t detach_pid
-ffffffff810f7440 t change_pid
-ffffffff810f7550 t exchange_tids
-ffffffff810f75c0 t transfer_pid
-ffffffff810f7650 t pid_task
-ffffffff810f7690 t find_task_by_pid_ns
-ffffffff810f76d0 t find_task_by_vpid
-ffffffff810f7730 t find_get_task_by_vpid
-ffffffff810f77d0 t get_task_pid
-ffffffff810f7860 t get_pid_task
-ffffffff810f78f0 t find_get_pid
-ffffffff810f7970 t pid_nr_ns
-ffffffff810f79a0 t pid_vnr
-ffffffff810f7a00 t __task_pid_nr_ns
-ffffffff810f7ab0 t find_ge_pid
-ffffffff810f7b00 t pidfd_get_pid
-ffffffff810f7b90 t pidfd_get_task
-ffffffff810f7d20 t pidfd_create
-ffffffff810f7df0 t __x64_sys_pidfd_open
-ffffffff810f7ef0 t __x64_sys_pidfd_getfd
-ffffffff810f80e0 t task_work_add
-ffffffff810f81a0 t task_work_cancel_match
-ffffffff810f8260 t task_work_cancel
-ffffffff810f82f0 t task_work_run
-ffffffff810f83a0 t search_kernel_exception_table
-ffffffff810f8420 t search_exception_tables
-ffffffff810f84a0 t core_kernel_text
-ffffffff810f8510 t __kernel_text_address
-ffffffff810f85b0 t kernel_text_address
-ffffffff810f8630 t func_ptr_is_kernel_text
-ffffffff810f8690 t parameqn
-ffffffff810f8710 t parameq
-ffffffff810f87a0 t parse_args
-ffffffff810f8b30 t param_set_byte
-ffffffff810f8b50 t param_get_byte
-ffffffff810f8b80 t param_set_short
-ffffffff810f8ba0 t param_get_short
-ffffffff810f8bd0 t param_set_ushort
-ffffffff810f8bf0 t param_get_ushort
-ffffffff810f8c20 t param_set_int
-ffffffff810f8c40 t param_get_int
-ffffffff810f8c70 t param_set_uint
-ffffffff810f8c90 t param_get_uint
-ffffffff810f8cc0 t param_set_long
-ffffffff810f8ce0 t param_get_long
-ffffffff810f8d10 t param_set_ulong
-ffffffff810f8d30 t param_get_ulong
-ffffffff810f8d60 t param_set_ullong
-ffffffff810f8d80 t param_get_ullong
-ffffffff810f8db0 t param_set_hexint
-ffffffff810f8dd0 t param_get_hexint
-ffffffff810f8e00 t param_set_uint_minmax
-ffffffff810f8e90 t param_set_charp
-ffffffff810f9010 t param_get_charp
-ffffffff810f9040 t param_free_charp
-ffffffff810f90d0 t param_set_bool
-ffffffff810f9100 t param_get_bool
-ffffffff810f9130 t param_set_bool_enable_only
-ffffffff810f91d0 t param_set_invbool
-ffffffff810f9240 t param_get_invbool
-ffffffff810f9270 t param_set_bint
-ffffffff810f92e0 t param_array_set
-ffffffff810f9460 t param_array_get
-ffffffff810f95b0 t param_array_free
-ffffffff810f9620 t param_set_copystring
-ffffffff810f9680 t param_get_string
-ffffffff810f96b0 t kernel_param_lock
-ffffffff810f96d0 t kernel_param_unlock
-ffffffff810f96f0 t destroy_params
-ffffffff810f9740 t __modver_version_show
-ffffffff810f9770 t module_kobj_release
-ffffffff810f9790 t module_attr_show
-ffffffff810f97d0 t module_attr_store
-ffffffff810f9810 t uevent_filter
-ffffffff810f9830 t param_attr_show
-ffffffff810f98a0 t param_attr_store
-ffffffff810f9970 t get_kthread_comm
-ffffffff810f99c0 t to_kthread
-ffffffff810f99e0 t set_kthread_struct
-ffffffff810f9aa0 t free_kthread_struct
-ffffffff810f9af0 t kthread_should_stop
-ffffffff810f9b20 t __kthread_should_park
-ffffffff810f9b50 t kthread_should_park
-ffffffff810f9b80 t kthread_freezable_should_stop
-ffffffff810f9bf0 t kthread_func
-ffffffff810f9c20 t kthread_data
-ffffffff810f9c40 t kthread_probe_data
-ffffffff810f9cb0 t kthread_parkme
-ffffffff810f9ce0 t __kthread_parkme
-ffffffff810f9d80 t kthread_exit
-ffffffff810f9da0 t kthread_complete_and_exit
-ffffffff810f9dc0 t tsk_fork_get_node
-ffffffff810f9dd0 t kthread_create_on_node
-ffffffff810f9e40 t __kthread_create_on_node
-ffffffff810fa060 t kthread_bind_mask
-ffffffff810fa0c0 t kthread_bind
-ffffffff810fa140 t kthread_create_on_cpu
-ffffffff810fa200 t kthread_set_per_cpu
-ffffffff810fa250 t kthread_is_per_cpu
-ffffffff810fa280 t kthread_unpark
-ffffffff810fa340 t kthread_park
-ffffffff810fa3e0 t kthread_stop
-ffffffff810fa540 t kthreadd
-ffffffff810fa6b0 t __kthread_init_worker
-ffffffff810fa710 t kthread_worker_fn
-ffffffff810fa930 t kthread_create_worker
-ffffffff810faa80 t kthread_create_worker_on_cpu
-ffffffff810fac50 t kthread_queue_work
-ffffffff810facc0 t kthread_insert_work
-ffffffff810fada0 t kthread_delayed_work_timer_fn
-ffffffff810fae40 t kthread_queue_delayed_work
-ffffffff810faeb0 t __kthread_queue_delayed_work
-ffffffff810faf80 t kthread_flush_work
-ffffffff810fb080 t kthread_flush_work_fn
-ffffffff810fb0a0 t kthread_mod_delayed_work
-ffffffff810fb190 t kthread_cancel_work_sync
-ffffffff810fb1b0 t __kthread_cancel_work_sync.llvm.9416252023946564152
-ffffffff810fb2b0 t kthread_cancel_delayed_work_sync
-ffffffff810fb2d0 t kthread_flush_worker
-ffffffff810fb3c0 t kthread_destroy_worker
-ffffffff810fb410 t kthread_use_mm
-ffffffff810fb500 t kthread_unuse_mm
-ffffffff810fb590 t kthread_associate_blkcg
-ffffffff810fb650 t kthread_blkcg
-ffffffff810fb690 t kthread
-ffffffff810fb7a0 W compat_sys_epoll_pwait
-ffffffff810fb7a0 W compat_sys_epoll_pwait2
-ffffffff810fb7a0 W compat_sys_fadvise64_64
-ffffffff810fb7a0 W compat_sys_fanotify_mark
-ffffffff810fb7a0 W compat_sys_get_robust_list
-ffffffff810fb7a0 W compat_sys_getsockopt
-ffffffff810fb7a0 W compat_sys_io_pgetevents
-ffffffff810fb7a0 W compat_sys_io_pgetevents_time32
-ffffffff810fb7a0 W compat_sys_io_setup
-ffffffff810fb7a0 W compat_sys_io_submit
-ffffffff810fb7a0 W compat_sys_ipc
-ffffffff810fb7a0 W compat_sys_kexec_load
-ffffffff810fb7a0 W compat_sys_keyctl
-ffffffff810fb7a0 W compat_sys_lookup_dcookie
-ffffffff810fb7a0 W compat_sys_mq_getsetattr
-ffffffff810fb7a0 W compat_sys_mq_notify
-ffffffff810fb7a0 W compat_sys_mq_open
-ffffffff810fb7a0 W compat_sys_msgctl
-ffffffff810fb7a0 W compat_sys_msgrcv
-ffffffff810fb7a0 W compat_sys_msgsnd
-ffffffff810fb7a0 W compat_sys_old_msgctl
-ffffffff810fb7a0 W compat_sys_old_semctl
-ffffffff810fb7a0 W compat_sys_old_shmctl
-ffffffff810fb7a0 W compat_sys_open_by_handle_at
-ffffffff810fb7a0 W compat_sys_ppoll_time32
-ffffffff810fb7a0 W compat_sys_process_vm_readv
-ffffffff810fb7a0 W compat_sys_process_vm_writev
-ffffffff810fb7a0 W compat_sys_pselect6_time32
-ffffffff810fb7a0 W compat_sys_recv
-ffffffff810fb7a0 W compat_sys_recvfrom
-ffffffff810fb7a0 W compat_sys_recvmmsg_time32
-ffffffff810fb7a0 W compat_sys_recvmmsg_time64
-ffffffff810fb7a0 W compat_sys_recvmsg
-ffffffff810fb7a0 W compat_sys_rt_sigtimedwait_time32
-ffffffff810fb7a0 W compat_sys_s390_ipc
-ffffffff810fb7a0 W compat_sys_semctl
-ffffffff810fb7a0 W compat_sys_sendmmsg
-ffffffff810fb7a0 W compat_sys_sendmsg
-ffffffff810fb7a0 W compat_sys_set_robust_list
-ffffffff810fb7a0 W compat_sys_setsockopt
-ffffffff810fb7a0 W compat_sys_shmat
-ffffffff810fb7a0 W compat_sys_shmctl
-ffffffff810fb7a0 W compat_sys_signalfd
-ffffffff810fb7a0 W compat_sys_signalfd4
-ffffffff810fb7a0 W compat_sys_socketcall
-ffffffff810fb7a0 t sys_ni_syscall
-ffffffff810fb7c0 t __x64_sys_io_getevents_time32
-ffffffff810fb7e0 t __x64_sys_io_pgetevents_time32
-ffffffff810fb800 t __x64_sys_lookup_dcookie
-ffffffff810fb820 t __x64_sys_quotactl
-ffffffff810fb840 t __x64_sys_quotactl_fd
-ffffffff810fb860 t __x64_sys_timerfd_settime32
-ffffffff810fb880 t __x64_sys_timerfd_gettime32
-ffffffff810fb8a0 t __x64_sys_acct
-ffffffff810fb8c0 t __x64_sys_futex_time32
-ffffffff810fb8e0 t __x64_sys_kexec_load
-ffffffff810fb900 t __x64_sys_init_module
-ffffffff810fb920 t __x64_sys_delete_module
-ffffffff810fb940 t __x64_sys_mq_open
-ffffffff810fb960 t __x64_sys_mq_unlink
-ffffffff810fb980 t __x64_sys_mq_timedsend
-ffffffff810fb9a0 t __x64_sys_mq_timedsend_time32
-ffffffff810fb9c0 t __x64_sys_mq_timedreceive
-ffffffff810fb9e0 t __x64_sys_mq_timedreceive_time32
-ffffffff810fba00 t __x64_sys_mq_notify
-ffffffff810fba20 t __x64_sys_mq_getsetattr
-ffffffff810fba40 t __x64_sys_msgget
-ffffffff810fba60 t __x64_sys_old_msgctl
-ffffffff810fba80 t __x64_sys_msgctl
-ffffffff810fbaa0 t __x64_sys_msgrcv
-ffffffff810fbac0 t __x64_sys_msgsnd
-ffffffff810fbae0 t __x64_sys_semget
-ffffffff810fbb00 t __x64_sys_old_semctl
-ffffffff810fbb20 t __x64_sys_semctl
-ffffffff810fbb40 t __x64_sys_semtimedop
-ffffffff810fbb60 t __x64_sys_semtimedop_time32
-ffffffff810fbb80 t __x64_sys_semop
-ffffffff810fbba0 t __x64_sys_shmget
-ffffffff810fbbc0 t __x64_sys_old_shmctl
-ffffffff810fbbe0 t __x64_sys_shmctl
-ffffffff810fbc00 t __x64_sys_shmat
-ffffffff810fbc20 t __x64_sys_shmdt
-ffffffff810fbc40 t __x64_sys_add_key
-ffffffff810fbc60 t __x64_sys_request_key
-ffffffff810fbc80 t __x64_sys_keyctl
-ffffffff810fbca0 t __x64_sys_landlock_create_ruleset
-ffffffff810fbcc0 t __x64_sys_landlock_add_rule
-ffffffff810fbce0 t __x64_sys_landlock_restrict_self
-ffffffff810fbd00 t __x64_sys_mbind
-ffffffff810fbd20 t __x64_sys_get_mempolicy
-ffffffff810fbd40 t __x64_sys_set_mempolicy
-ffffffff810fbd60 t __x64_sys_migrate_pages
-ffffffff810fbd80 t __x64_sys_move_pages
-ffffffff810fbda0 t __x64_sys_set_mempolicy_home_node
-ffffffff810fbdc0 t __x64_sys_recvmmsg_time32
-ffffffff810fbde0 t __x64_sys_fanotify_init
-ffffffff810fbe00 t __x64_sys_fanotify_mark
-ffffffff810fbe20 t __x64_sys_kcmp
-ffffffff810fbe40 t __x64_sys_finit_module
-ffffffff810fbe60 t __x64_sys_bpf
-ffffffff810fbe80 t __x64_sys_pciconfig_read
-ffffffff810fbea0 t __x64_sys_pciconfig_write
-ffffffff810fbec0 t __x64_sys_pciconfig_iobase
-ffffffff810fbee0 t __x64_sys_vm86old
-ffffffff810fbf00 t __x64_sys_vm86
-ffffffff810fbf20 t __x64_sys_s390_pci_mmio_read
-ffffffff810fbf40 t __x64_sys_s390_pci_mmio_write
-ffffffff810fbf60 t __x64_sys_s390_ipc
-ffffffff810fbf80 t __x64_sys_rtas
-ffffffff810fbfa0 t __x64_sys_spu_run
-ffffffff810fbfc0 t __x64_sys_spu_create
-ffffffff810fbfe0 t __x64_sys_subpage_prot
-ffffffff810fc000 t __x64_sys_uselib
-ffffffff810fc020 t __x64_sys_time32
-ffffffff810fc040 t __x64_sys_stime32
-ffffffff810fc060 t __x64_sys_utime32
-ffffffff810fc080 t __x64_sys_adjtimex_time32
-ffffffff810fc0a0 t __x64_sys_sched_rr_get_interval_time32
-ffffffff810fc0c0 t __x64_sys_nanosleep_time32
-ffffffff810fc0e0 t __x64_sys_rt_sigtimedwait_time32
-ffffffff810fc100 t __x64_sys_timer_settime32
-ffffffff810fc120 t __x64_sys_timer_gettime32
-ffffffff810fc140 t __x64_sys_clock_settime32
-ffffffff810fc160 t __x64_sys_clock_gettime32
-ffffffff810fc180 t __x64_sys_clock_getres_time32
-ffffffff810fc1a0 t __x64_sys_clock_nanosleep_time32
-ffffffff810fc1c0 t __x64_sys_utimes_time32
-ffffffff810fc1e0 t __x64_sys_futimesat_time32
-ffffffff810fc200 t __x64_sys_pselect6_time32
-ffffffff810fc220 t __x64_sys_ppoll_time32
-ffffffff810fc240 t __x64_sys_utimensat_time32
-ffffffff810fc260 t __x64_sys_clock_adjtime32
-ffffffff810fc280 t __x64_sys_ipc
-ffffffff810fc2a0 t __x64_sys_chown16
-ffffffff810fc2c0 t __x64_sys_fchown16
-ffffffff810fc2e0 t __x64_sys_getegid16
-ffffffff810fc300 t __x64_sys_geteuid16
-ffffffff810fc320 t __x64_sys_getgid16
-ffffffff810fc340 t __x64_sys_getgroups16
-ffffffff810fc360 t __x64_sys_getresgid16
-ffffffff810fc380 t __x64_sys_getresuid16
-ffffffff810fc3a0 t __x64_sys_getuid16
-ffffffff810fc3c0 t __x64_sys_lchown16
-ffffffff810fc3e0 t __x64_sys_setfsgid16
-ffffffff810fc400 t __x64_sys_setfsuid16
-ffffffff810fc420 t __x64_sys_setgid16
-ffffffff810fc440 t __x64_sys_setgroups16
-ffffffff810fc460 t __x64_sys_setregid16
-ffffffff810fc480 t __x64_sys_setresgid16
-ffffffff810fc4a0 t __x64_sys_setresuid16
-ffffffff810fc4c0 t __x64_sys_setreuid16
-ffffffff810fc4e0 t __x64_sys_setuid16
-ffffffff810fc500 t copy_namespaces
-ffffffff810fc5b0 t create_new_namespaces
-ffffffff810fc750 t free_nsproxy
-ffffffff810fc7b0 t put_cgroup_ns
-ffffffff810fc7f0 t unshare_nsproxy_namespaces
-ffffffff810fc880 t switch_task_namespaces
-ffffffff810fc930 t exit_task_namespaces
-ffffffff810fc950 t __x64_sys_setns
-ffffffff810fcd60 t atomic_notifier_chain_register
-ffffffff810fce00 t notifier_chain_register
-ffffffff810fce80 t atomic_notifier_chain_register_unique_prio
-ffffffff810fcf20 t atomic_notifier_chain_unregister
-ffffffff810fcfa0 t atomic_notifier_call_chain
-ffffffff810fd020 t atomic_notifier_call_chain_is_empty
-ffffffff810fd040 t blocking_notifier_chain_register
-ffffffff810fd060 t __blocking_notifier_chain_register.llvm.10402561652039276615
-ffffffff810fd130 t blocking_notifier_chain_register_unique_prio
-ffffffff810fd150 t blocking_notifier_chain_unregister
-ffffffff810fd210 t blocking_notifier_call_chain_robust
-ffffffff810fd300 t blocking_notifier_call_chain
-ffffffff810fd3a0 t raw_notifier_chain_register
-ffffffff810fd400 t raw_notifier_chain_unregister
-ffffffff810fd450 t raw_notifier_call_chain_robust
-ffffffff810fd520 t raw_notifier_call_chain
-ffffffff810fd580 t srcu_notifier_chain_register
-ffffffff810fd640 t srcu_notifier_chain_unregister
-ffffffff810fd710 t srcu_notifier_call_chain
-ffffffff810fd7c0 t srcu_init_notifier_head
-ffffffff810fd810 t notify_die
-ffffffff810fd8e0 t register_die_notifier
-ffffffff810fd990 t unregister_die_notifier
-ffffffff810fda10 t fscaps_show
-ffffffff810fda40 t uevent_seqnum_show
-ffffffff810fda70 t profiling_show
-ffffffff810fdaa0 t profiling_store
-ffffffff810fdaf0 t kexec_loaded_show
-ffffffff810fdb20 t kexec_crash_loaded_show
-ffffffff810fdb50 t kexec_crash_size_show
-ffffffff810fdb80 t kexec_crash_size_store
-ffffffff810fdbf0 t vmcoreinfo_show
-ffffffff810fdc50 t rcu_expedited_show
-ffffffff810fdc80 t rcu_expedited_store
-ffffffff810fdcb0 t rcu_normal_show
-ffffffff810fdce0 t rcu_normal_store
-ffffffff810fdd10 t notes_read
-ffffffff810fdd40 t __put_cred
-ffffffff810fdda0 t put_cred_rcu
-ffffffff810fde20 t exit_creds
-ffffffff810fdf00 t get_task_cred
-ffffffff810fdf50 t cred_alloc_blank
-ffffffff810fdfa0 t abort_creds
-ffffffff810fe010 t prepare_creds
-ffffffff810fe0e0 t prepare_exec_creds
-ffffffff810fe110 t copy_creds
-ffffffff810fe240 t set_cred_ucounts
-ffffffff810fe2a0 t commit_creds
-ffffffff810fe470 t override_creds
-ffffffff810fe4a0 t revert_creds
-ffffffff810fe510 t cred_fscmp
-ffffffff810fe590 t prepare_kernel_cred
-ffffffff810fe7c0 t set_security_override
-ffffffff810fe7d0 t set_security_override_from_ctx
-ffffffff810fe840 t set_create_files_as
-ffffffff810fe870 t emergency_restart
-ffffffff810fe8a0 t kernel_restart_prepare
-ffffffff810fe8e0 t register_reboot_notifier
-ffffffff810fe900 t unregister_reboot_notifier
-ffffffff810fe920 t devm_register_reboot_notifier
-ffffffff810fe9b0 t devm_unregister_reboot_notifier
-ffffffff810fe9e0 t register_restart_handler
-ffffffff810fea00 t unregister_restart_handler
-ffffffff810fea20 t do_kernel_restart
-ffffffff810fea50 t migrate_to_reboot_cpu
-ffffffff810feac0 t kernel_restart
-ffffffff810febb0 t kernel_halt
-ffffffff810fec70 t register_sys_off_handler
-ffffffff810feeb0 t sys_off_notify
-ffffffff810fef10 t unregister_sys_off_handler
-ffffffff810fefc0 t devm_register_sys_off_handler
-ffffffff810ff0b0 t devm_unregister_sys_off_handler
-ffffffff810ff160 t devm_register_power_off_handler
-ffffffff810ff180 t devm_register_restart_handler
-ffffffff810ff1a0 t register_platform_power_off
-ffffffff810ff2c0 t platform_power_off_notify
-ffffffff810ff2e0 t unregister_platform_power_off
-ffffffff810ff3b0 t do_kernel_power_off
-ffffffff810ff490 t legacy_pm_power_off
-ffffffff810ff4b0 t kernel_can_power_off
-ffffffff810ff4d0 t kernel_power_off
-ffffffff810ff5a0 t __x64_sys_reboot
-ffffffff810ff790 t ctrl_alt_del
-ffffffff810ff7e0 t deferred_cad
-ffffffff810ff800 t orderly_poweroff
-ffffffff810ff830 t orderly_reboot
-ffffffff810ff860 t hw_protection_shutdown
-ffffffff810ff8d0 t poweroff_work_func
-ffffffff810ff970 t reboot_work_func
-ffffffff810ffa00 t hw_failure_emergency_poweroff_func
-ffffffff810ffa50 t mode_show
-ffffffff810ffa90 t mode_show
-ffffffff810ffb20 t mode_show
-ffffffff810ffb80 t mode_store
-ffffffff810ffc70 t mode_store
-ffffffff810ffcf0 t force_show
-ffffffff810ffd20 t force_store
-ffffffff810ffdb0 t type_store
-ffffffff810ffec0 t cpu_show
-ffffffff810ffef0 t cpu_store
-ffffffff810fffa0 t async_schedule_node_domain
-ffffffff81100170 t async_run_entry_fn
-ffffffff81100240 t async_schedule_node
-ffffffff81100260 t async_synchronize_full
-ffffffff81100280 t async_synchronize_full_domain
-ffffffff811002a0 t async_synchronize_cookie_domain
-ffffffff81100450 t async_synchronize_cookie
-ffffffff81100470 t current_is_async
-ffffffff811004c0 t add_range
-ffffffff811004f0 t add_range_with_merge
-ffffffff811005f0 t subtract_range
-ffffffff81100710 t clean_sort_range
-ffffffff81100810 t sort_range
-ffffffff81100840 t idle_thread_get
-ffffffff81100880 t smpboot_create_threads
-ffffffff811008f0 t __smpboot_create_thread
-ffffffff81100a20 t smpboot_unpark_threads
-ffffffff81100ab0 t smpboot_park_threads
-ffffffff81100b40 t smpboot_register_percpu_thread
-ffffffff81100c40 t smpboot_destroy_threads
-ffffffff81100d10 t smpboot_unregister_percpu_thread
-ffffffff81100d80 t cpu_report_state
-ffffffff81100db0 t cpu_check_up_prepare
-ffffffff81100e20 t cpu_set_state_online
-ffffffff81100e50 t cpu_wait_death
-ffffffff81100f70 t cpu_report_death
-ffffffff81100fe0 t smpboot_thread_fn
-ffffffff81101210 t setup_userns_sysctls
-ffffffff81101340 t set_is_seen
-ffffffff81101360 t retire_userns_sysctls
-ffffffff811013a0 t get_ucounts
-ffffffff81101450 t put_ucounts
-ffffffff811014f0 t alloc_ucounts
-ffffffff811016d0 t inc_ucount
-ffffffff81101800 t dec_ucount
-ffffffff811018e0 t inc_rlimit_ucounts
-ffffffff81101950 t dec_rlimit_ucounts
-ffffffff811019c0 t dec_rlimit_put_ucounts
-ffffffff811019e0 t do_dec_rlimit_put_ucounts.llvm.5391404758955903435
-ffffffff81101ae0 t inc_rlimit_get_ucounts
-ffffffff81101c30 t is_rlimit_overlimit
-ffffffff81101c90 t set_lookup
-ffffffff81101cb0 t set_permissions
-ffffffff81101d00 t regset_get
-ffffffff81101da0 t regset_get_alloc
-ffffffff81101e40 t copy_regset_to_user
-ffffffff81101f30 t groups_alloc
-ffffffff81101f80 t groups_free
-ffffffff81101f90 t groups_sort
-ffffffff81101fc0 t gid_cmp
-ffffffff81101fe0 t groups_search
-ffffffff81102030 t set_groups
-ffffffff81102060 t set_current_groups
-ffffffff811020e0 t __x64_sys_getgroups
-ffffffff81102170 t may_setgroups
-ffffffff81102190 t __x64_sys_setgroups
-ffffffff811022c0 t in_group_p
-ffffffff81102330 t in_egroup_p
-ffffffff811023a0 t __traceiter_sched_kthread_stop
-ffffffff811023f0 t __traceiter_sched_kthread_stop_ret
-ffffffff81102440 t __traceiter_sched_kthread_work_queue_work
-ffffffff81102490 t __traceiter_sched_kthread_work_execute_start
-ffffffff811024e0 t __traceiter_sched_kthread_work_execute_end
-ffffffff81102530 t __traceiter_sched_waking
-ffffffff81102580 t __traceiter_sched_wakeup
-ffffffff811025d0 t __traceiter_sched_wakeup_new
-ffffffff81102620 t __traceiter_sched_switch
-ffffffff81102690 t __traceiter_sched_migrate_task
-ffffffff811026e0 t __traceiter_sched_process_free
-ffffffff81102730 t __traceiter_sched_process_exit
-ffffffff81102780 t __traceiter_sched_wait_task
-ffffffff811027d0 t __traceiter_sched_process_wait
-ffffffff81102820 t __traceiter_sched_process_fork
-ffffffff81102870 t __traceiter_sched_process_exec
-ffffffff811028d0 t __traceiter_sched_stat_wait
-ffffffff81102920 t __traceiter_sched_stat_sleep
-ffffffff81102970 t __traceiter_sched_stat_iowait
-ffffffff811029c0 t __traceiter_sched_stat_blocked
-ffffffff81102a10 t __traceiter_sched_blocked_reason
-ffffffff81102a60 t __traceiter_sched_stat_runtime
-ffffffff81102ac0 t __traceiter_sched_pi_setprio
-ffffffff81102b10 t __traceiter_sched_process_hang
-ffffffff81102b60 t __traceiter_sched_move_numa
-ffffffff81102bc0 t __traceiter_sched_stick_numa
-ffffffff81102c30 t __traceiter_sched_swap_numa
-ffffffff81102ca0 t __traceiter_sched_wake_idle_without_ipi
-ffffffff81102cf0 t __traceiter_pelt_cfs_tp
-ffffffff81102d40 t __traceiter_pelt_rt_tp
-ffffffff81102d90 t __traceiter_pelt_dl_tp
-ffffffff81102de0 t __traceiter_pelt_thermal_tp
-ffffffff81102e30 t __traceiter_pelt_irq_tp
-ffffffff81102e80 t __traceiter_pelt_se_tp
-ffffffff81102ed0 t __traceiter_sched_cpu_capacity_tp
-ffffffff81102f20 t __traceiter_sched_overutilized_tp
-ffffffff81102f70 t __traceiter_sched_util_est_cfs_tp
-ffffffff81102fc0 t __traceiter_sched_util_est_se_tp
-ffffffff81103010 t __traceiter_sched_update_nr_running_tp
-ffffffff81103060 t trace_event_raw_event_sched_kthread_stop
-ffffffff81103130 t perf_trace_sched_kthread_stop
-ffffffff81103240 t trace_event_raw_event_sched_kthread_stop_ret
-ffffffff81103300 t perf_trace_sched_kthread_stop_ret
-ffffffff811033f0 t trace_event_raw_event_sched_kthread_work_queue_work
-ffffffff811034c0 t perf_trace_sched_kthread_work_queue_work
-ffffffff811035c0 t trace_event_raw_event_sched_kthread_work_execute_start
-ffffffff81103680 t perf_trace_sched_kthread_work_execute_start
-ffffffff81103780 t trace_event_raw_event_sched_kthread_work_execute_end
-ffffffff81103840 t perf_trace_sched_kthread_work_execute_end
-ffffffff81103940 t trace_event_raw_event_sched_wakeup_template
-ffffffff81103a20 t perf_trace_sched_wakeup_template
-ffffffff81103b30 t trace_event_raw_event_sched_switch
-ffffffff81103cc0 t perf_trace_sched_switch
-ffffffff81103e80 t trace_event_raw_event_sched_migrate_task
-ffffffff81103f70 t perf_trace_sched_migrate_task
-ffffffff811040a0 t trace_event_raw_event_sched_process_template
-ffffffff81104180 t perf_trace_sched_process_template
-ffffffff811042a0 t trace_event_raw_event_sched_process_wait
-ffffffff81104390 t perf_trace_sched_process_wait
-ffffffff811044c0 t trace_event_raw_event_sched_process_fork
-ffffffff811045c0 t perf_trace_sched_process_fork
-ffffffff81104700 t trace_event_raw_event_sched_process_exec
-ffffffff81104830 t perf_trace_sched_process_exec
-ffffffff811049a0 t trace_event_raw_event_sched_stat_template
-ffffffff81104a80 t perf_trace_sched_stat_template
-ffffffff81104b90 t trace_event_raw_event_sched_blocked_reason
-ffffffff81104c70 t perf_trace_sched_blocked_reason
-ffffffff81104d90 t trace_event_raw_event_sched_stat_runtime
-ffffffff81104e80 t perf_trace_sched_stat_runtime
-ffffffff81104fb0 t trace_event_raw_event_sched_pi_setprio
-ffffffff811050b0 t perf_trace_sched_pi_setprio
-ffffffff811051f0 t trace_event_raw_event_sched_process_hang
-ffffffff811052c0 t perf_trace_sched_process_hang
-ffffffff811053d0 t trace_event_raw_event_sched_move_numa
-ffffffff811054c0 t perf_trace_sched_move_numa
-ffffffff81105600 t trace_event_raw_event_sched_numa_pair_template
-ffffffff81105730 t perf_trace_sched_numa_pair_template
-ffffffff811058a0 t trace_event_raw_event_sched_wake_idle_without_ipi
-ffffffff81105960 t perf_trace_sched_wake_idle_without_ipi
-ffffffff81105a50 t raw_spin_rq_lock_nested
-ffffffff81105a80 t preempt_count_add
-ffffffff81105b60 t preempt_count_sub
-ffffffff81105c10 t raw_spin_rq_trylock
-ffffffff81105c60 t raw_spin_rq_unlock
-ffffffff81105c70 t double_rq_lock
-ffffffff81105cf0 t raw_spin_rq_lock
-ffffffff81105d20 t __task_rq_lock
-ffffffff81105e10 t task_rq_lock
-ffffffff81105f30 t update_rq_clock
-ffffffff81106170 t hrtick_start
-ffffffff81106210 t wake_q_add
-ffffffff81106280 t wake_q_add_safe
-ffffffff811062f0 t wake_up_q
-ffffffff81106390 t wake_up_process
-ffffffff811063b0 t resched_curr
-ffffffff81106480 t resched_cpu
-ffffffff81106540 t _raw_spin_rq_lock_irqsave
-ffffffff811065b0 t get_nohz_timer_target
-ffffffff81106700 t idle_cpu
-ffffffff81106750 t wake_up_nohz_cpu
-ffffffff81106820 t walk_tg_tree_from
-ffffffff811068e0 t tg_nop
-ffffffff811068f0 t uclamp_eff_value
-ffffffff811069a0 t sched_task_on_rq
-ffffffff811069c0 t get_wchan
-ffffffff81106a30 t activate_task
-ffffffff81106a60 t enqueue_task
-ffffffff81106de0 t deactivate_task
-ffffffff81106e00 t dequeue_task
-ffffffff811073b0 t task_curr
-ffffffff811073e0 t check_preempt_curr
-ffffffff81107440 t migrate_disable
-ffffffff811074c0 t migrate_enable
-ffffffff811075d0 t __migrate_task
-ffffffff81107680 t move_queued_task
-ffffffff81107800 t push_cpu_stop
-ffffffff811079b0 t set_task_cpu
-ffffffff81107b70 t set_cpus_allowed_common
-ffffffff81107bd0 t do_set_cpus_allowed
-ffffffff81107bf0 t __do_set_cpus_allowed.llvm.1936834131351336716
-ffffffff81107d30 t dup_user_cpus_ptr
-ffffffff81107e10 t release_user_cpus_ptr
-ffffffff81107e40 t set_cpus_allowed_ptr
-ffffffff81107ec0 t force_compatible_cpus_allowed_ptr
-ffffffff811080b0 t relax_compatible_cpus_allowed_ptr
-ffffffff81108120 t __sched_setaffinity
-ffffffff81108310 t migrate_swap
-ffffffff81108400 t migrate_swap_stop
-ffffffff81108550 t wait_task_inactive
-ffffffff81108710 t task_rq_unlock
-ffffffff81108750 t kick_process
-ffffffff811087d0 t select_fallback_rq
-ffffffff811089e0 t sched_set_stop_task
-ffffffff81108af0 t sched_setscheduler_nocheck
-ffffffff81108ba0 t sched_ttwu_pending
-ffffffff81108dd0 t send_call_function_single_ipi
-ffffffff81108ea0 t wake_up_if_idle
-ffffffff81108fb0 t cpus_share_cache
-ffffffff81109000 t task_call_func
-ffffffff811090f0 t cpu_curr_snapshot
-ffffffff81109130 t try_to_wake_up.llvm.1936834131351336716
-ffffffff81109700 t wake_up_state
-ffffffff81109720 t force_schedstat_enabled
-ffffffff81109750 t sched_fork
-ffffffff811099f0 t set_load_weight
-ffffffff81109a50 t sched_cgroup_fork
-ffffffff81109b60 t sched_post_fork
-ffffffff81109c20 t to_ratio
-ffffffff81109c70 t wake_up_new_task
-ffffffff81109ec0 t select_task_rq
-ffffffff81109f90 t balance_push
-ffffffff8110a0e0 t __balance_callbacks
-ffffffff8110a130 t schedule_tail
-ffffffff8110a190 t finish_task_switch
-ffffffff8110a410 t nr_running
-ffffffff8110a470 t single_task_running
-ffffffff8110a4a0 t nr_context_switches
-ffffffff8110a500 t nr_iowait_cpu
-ffffffff8110a530 t nr_iowait
-ffffffff8110a590 t sched_exec
-ffffffff8110a670 t migration_cpu_stop
-ffffffff8110a8d0 t task_sched_runtime
-ffffffff8110a9a0 t scheduler_tick
-ffffffff8110ac10 t preempt_latency_start
-ffffffff8110ac90 t do_task_dead
-ffffffff8110acd0 t default_wake_function
-ffffffff8110acf0 t rt_mutex_setprio
-ffffffff8110b0e0 t set_user_nice
-ffffffff8110b300 t can_nice
-ffffffff8110b340 t __x64_sys_nice
-ffffffff8110b3f0 t task_prio
-ffffffff8110b410 t available_idle_cpu
-ffffffff8110b460 t idle_task
-ffffffff8110b490 t effective_cpu_util
-ffffffff8110b730 t sched_cpu_util
-ffffffff8110b7e0 t sched_setscheduler
-ffffffff8110b890 t sched_setattr
-ffffffff8110b8b0 t __sched_setscheduler.llvm.1936834131351336716
-ffffffff8110c2a0 t sched_setattr_nocheck
-ffffffff8110c2c0 t sched_set_fifo
-ffffffff8110c360 t sched_set_fifo_low
-ffffffff8110c400 t sched_set_normal
-ffffffff8110c490 t __x64_sys_sched_setscheduler
-ffffffff8110c4c0 t __x64_sys_sched_setparam
-ffffffff8110c4e0 t __x64_sys_sched_setattr
-ffffffff8110c7b0 t __x64_sys_sched_getscheduler
-ffffffff8110c830 t __x64_sys_sched_getparam
-ffffffff8110c920 t __x64_sys_sched_getattr
-ffffffff8110cb20 t dl_task_check_affinity
-ffffffff8110cba0 t sched_setaffinity
-ffffffff8110cd00 t __x64_sys_sched_setaffinity
-ffffffff8110cde0 t sched_getaffinity
-ffffffff8110ce90 t __x64_sys_sched_getaffinity
-ffffffff8110cfa0 t __x64_sys_sched_yield
-ffffffff8110cfc0 t __cond_resched_lock
-ffffffff8110d010 t __cond_resched_rwlock_read
-ffffffff8110d060 t __cond_resched_rwlock_write
-ffffffff8110d0b0 t sched_dynamic_mode
-ffffffff8110d110 t sched_dynamic_update
-ffffffff8110d350 t preempt_model_none
-ffffffff8110d380 t preempt_model_voluntary
-ffffffff8110d3b0 t preempt_model_full
-ffffffff8110d3e0 t do_sched_yield
-ffffffff8110d4c0 t io_schedule_prepare
-ffffffff8110d510 t io_schedule_finish
-ffffffff8110d540 t __x64_sys_sched_get_priority_max
-ffffffff8110d570 t __x64_sys_sched_get_priority_min
-ffffffff8110d5a0 t __x64_sys_sched_rr_get_interval
-ffffffff8110d6d0 t sched_show_task
-ffffffff8110d860 t show_state_filter
-ffffffff8110d920 t cpuset_cpumask_can_shrink
-ffffffff8110d970 t task_can_attach
-ffffffff8110da10 t idle_task_exit
-ffffffff8110da90 t pick_migrate_task
-ffffffff8110db10 t set_rq_online
-ffffffff8110db80 t set_rq_offline
-ffffffff8110dc00 t sched_cpu_activate
-ffffffff8110de00 t balance_push_set
-ffffffff8110df10 t sched_cpu_deactivate
-ffffffff8110e180 t sched_cpu_starting
-ffffffff8110e1c0 t sched_cpu_wait_empty
-ffffffff8110e240 t sched_cpu_dying
-ffffffff8110e450 t in_sched_functions
-ffffffff8110e4a0 t nohz_csd_func
-ffffffff8110e580 t normalize_rt_tasks
-ffffffff8110e700 t sched_create_group
-ffffffff8110e7a0 t sched_online_group
-ffffffff8110e890 t sched_destroy_group
-ffffffff8110e8b0 t sched_unregister_group_rcu
-ffffffff8110e8e0 t sched_release_group
-ffffffff8110e980 t sched_move_task
-ffffffff8110eb50 t cpu_cgroup_css_alloc
-ffffffff8110ec20 t cpu_cgroup_css_online
-ffffffff8110ec70 t cpu_cgroup_css_released
-ffffffff8110ed10 t cpu_cgroup_css_free
-ffffffff8110ed40 t cpu_extra_stat_show
-ffffffff8110ed50 t cpu_cgroup_attach
-ffffffff8110edd0 t dump_cpu_task
-ffffffff8110ee40 t call_trace_sched_update_nr_running
-ffffffff8110eea0 t trace_raw_output_sched_kthread_stop
-ffffffff8110ef00 t trace_raw_output_sched_kthread_stop_ret
-ffffffff8110ef50 t trace_raw_output_sched_kthread_work_queue_work
-ffffffff8110efb0 t trace_raw_output_sched_kthread_work_execute_start
-ffffffff8110f010 t trace_raw_output_sched_kthread_work_execute_end
-ffffffff8110f070 t trace_raw_output_sched_wakeup_template
-ffffffff8110f0d0 t trace_raw_output_sched_switch
-ffffffff8110f1b0 t trace_raw_output_sched_migrate_task
-ffffffff8110f220 t trace_raw_output_sched_process_template
-ffffffff8110f280 t trace_raw_output_sched_process_wait
-ffffffff8110f2e0 t trace_raw_output_sched_process_fork
-ffffffff8110f340 t trace_raw_output_sched_process_exec
-ffffffff8110f3a0 t trace_raw_output_sched_stat_template
-ffffffff8110f400 t trace_raw_output_sched_blocked_reason
-ffffffff8110f460 t trace_raw_output_sched_stat_runtime
-ffffffff8110f4c0 t trace_raw_output_sched_pi_setprio
-ffffffff8110f520 t trace_raw_output_sched_process_hang
-ffffffff8110f580 t trace_raw_output_sched_move_numa
-ffffffff8110f5f0 t trace_raw_output_sched_numa_pair_template
-ffffffff8110f680 t trace_raw_output_sched_wake_idle_without_ipi
-ffffffff8110f6d0 t __set_cpus_allowed_ptr_locked
-ffffffff8110fd90 t __migrate_swap_task
-ffffffff8110ff20 t ttwu_do_wakeup
-ffffffff811100e0 t ttwu_queue_wakelist
-ffffffff811101e0 t sysctl_schedstats
-ffffffff81110300 t sysctl_sched_uclamp_handler
-ffffffff81110690 t cpu_util_update_eff
-ffffffff81110dd0 t __schedule_bug
-ffffffff81110ec0 t do_sched_setscheduler
-ffffffff81111010 t __balance_push_cpu_stop
-ffffffff81111180 t __hrtick_start
-ffffffff81111210 t hrtick
-ffffffff811112e0 t sched_free_group_rcu
-ffffffff81111310 t cpu_weight_read_u64
-ffffffff81111350 t cpu_weight_write_u64
-ffffffff81111390 t cpu_weight_nice_read_s64
-ffffffff81111430 t cpu_weight_nice_write_s64
-ffffffff81111470 t cpu_idle_read_s64
-ffffffff81111490 t cpu_idle_write_s64
-ffffffff811114b0 t cpu_uclamp_min_show
-ffffffff81111540 t cpu_uclamp_min_write
-ffffffff81111560 t cpu_uclamp_max_show
-ffffffff811115f0 t cpu_uclamp_max_write
-ffffffff81111610 t cpu_uclamp_ls_read_u64
-ffffffff81111630 t cpu_uclamp_ls_write_u64
-ffffffff81111650 t cpu_uclamp_write
-ffffffff811117d0 t cpu_shares_read_u64
-ffffffff81111800 t cpu_shares_write_u64
-ffffffff81111830 t update_sysctl.llvm.17858362097397314930
-ffffffff811118b0 t __pick_first_entity
-ffffffff811118d0 t __pick_last_entity
-ffffffff811118f0 t sched_update_scaling
-ffffffff81111980 t init_entity_runnable_average
-ffffffff81111a20 t post_init_entity_util_avg
-ffffffff81111b10 t reweight_task
-ffffffff81111b60 t reweight_entity
-ffffffff81111ca0 t set_task_rq_fair
-ffffffff81111cf0 t set_next_entity
-ffffffff81111ed0 t update_load_avg
-ffffffff81112650 t init_cfs_bandwidth
-ffffffff81112660 t __update_idle_core
-ffffffff81112720 t pick_next_task_fair
-ffffffff81112ae0 t update_curr
-ffffffff81112d70 t pick_next_entity
-ffffffff811130a0 t put_prev_entity
-ffffffff811131e0 t hrtick_start_fair
-ffffffff811132a0 t update_misfit_status
-ffffffff81113500 t newidle_balance
-ffffffff811138d0 t update_group_capacity
-ffffffff81113b20 t update_max_interval
-ffffffff81113b50 t nohz_balance_exit_idle
-ffffffff81113be0 t set_cpu_sd_state_busy
-ffffffff81113c40 t nohz_balance_enter_idle
-ffffffff81113d60 t nohz_run_idle_balance
-ffffffff81113de0 t _nohz_idle_balance
-ffffffff81114130 t trigger_load_balance
-ffffffff811144e0 t init_cfs_rq
-ffffffff81114510 t free_fair_sched_group
-ffffffff811145a0 t alloc_fair_sched_group
-ffffffff811147e0 t init_tg_cfs_entry
-ffffffff81114880 t online_fair_sched_group
-ffffffff81114a00 t unregister_fair_sched_group
-ffffffff81114bf0 t sched_group_set_shares
-ffffffff81114c50 t __sched_group_set_shares
-ffffffff81114ec0 t sched_group_set_idle
-ffffffff81115110 t enqueue_task_fair.llvm.17858362097397314930
-ffffffff81115a40 t dequeue_task_fair.llvm.17858362097397314930
-ffffffff81116260 t yield_task_fair.llvm.17858362097397314930
-ffffffff81116370 t yield_to_task_fair.llvm.17858362097397314930
-ffffffff81116420 t check_preempt_wakeup.llvm.17858362097397314930
-ffffffff81116830 t __pick_next_task_fair.llvm.17858362097397314930
-ffffffff81116850 t put_prev_task_fair.llvm.17858362097397314930
-ffffffff81116880 t set_next_task_fair.llvm.17858362097397314930
-ffffffff81116930 t balance_fair.llvm.17858362097397314930
-ffffffff81116960 t select_task_rq_fair.llvm.17858362097397314930
-ffffffff81117bb0 t pick_task_fair.llvm.17858362097397314930
-ffffffff81117c20 t migrate_task_rq_fair.llvm.17858362097397314930
-ffffffff81117db0 t rq_online_fair.llvm.17858362097397314930
-ffffffff81117e30 t rq_offline_fair.llvm.17858362097397314930
-ffffffff81117eb0 t task_tick_fair.llvm.17858362097397314930
-ffffffff81118130 t task_fork_fair.llvm.17858362097397314930
-ffffffff811183b0 t task_dead_fair.llvm.17858362097397314930
-ffffffff81118430 t switched_from_fair.llvm.17858362097397314930
-ffffffff81118450 t switched_to_fair.llvm.17858362097397314930
-ffffffff811184a0 t prio_changed_fair.llvm.17858362097397314930
-ffffffff811184e0 t get_rr_interval_fair.llvm.17858362097397314930
-ffffffff81118530 t update_curr_fair.llvm.17858362097397314930
-ffffffff81118550 t task_change_group_fair.llvm.17858362097397314930
-ffffffff81118630 t print_cfs_stats
-ffffffff811186d0 t run_rebalance_domains
-ffffffff81118750 t attach_entity_load_avg
-ffffffff81118950 t detach_entity_load_avg
-ffffffff81118b40 t sched_slice
-ffffffff81118d40 t rebalance_domains
-ffffffff81119030 t update_blocked_averages
-ffffffff811196a0 t load_balance
-ffffffff8111b7b0 t need_active_balance
-ffffffff8111b8a0 t active_load_balance_cpu_stop
-ffffffff8111bc70 t can_migrate_task
-ffffffff8111be70 t propagate_entity_cfs_rq
-ffffffff8111c150 t update_overutilized_status
-ffffffff8111c2c0 t set_next_buddy
-ffffffff8111c350 t set_last_buddy
-ffffffff8111c3e0 t find_idlest_cpu
-ffffffff8111d120 t detach_task_cfs_rq
-ffffffff8111d2d0 t attach_task_cfs_rq
-ffffffff8111d3a0 t sched_idle_set_state
-ffffffff8111d3d0 t cpu_idle_poll_ctrl
-ffffffff8111d410 t arch_cpu_idle_prepare
-ffffffff8111d420 t arch_cpu_idle_exit
-ffffffff8111d430 t cpu_in_idle
-ffffffff8111d460 t play_idle_precise
-ffffffff8111d640 t idle_inject_timer_fn
-ffffffff8111d660 t do_idle.llvm.2249203583791563227
-ffffffff8111d8d0 t cpu_startup_entry
-ffffffff8111d900 t pick_next_task_idle
-ffffffff8111d940 t set_next_task_idle.llvm.2249203583791563227
-ffffffff8111d970 t dequeue_task_idle.llvm.2249203583791563227
-ffffffff8111d9b0 t check_preempt_curr_idle.llvm.2249203583791563227
-ffffffff8111d9c0 t put_prev_task_idle.llvm.2249203583791563227
-ffffffff8111d9d0 t balance_idle.llvm.2249203583791563227
-ffffffff8111d9f0 t select_task_rq_idle.llvm.2249203583791563227
-ffffffff8111da00 t pick_task_idle.llvm.2249203583791563227
-ffffffff8111da20 t task_tick_idle.llvm.2249203583791563227
-ffffffff8111da30 t switched_to_idle.llvm.2249203583791563227
-ffffffff8111da40 t prio_changed_idle.llvm.2249203583791563227
-ffffffff8111da50 t update_curr_idle.llvm.2249203583791563227
-ffffffff8111da60 t init_rt_bandwidth
-ffffffff8111daa0 t sched_rt_period_timer
-ffffffff8111de50 t init_rt_rq
-ffffffff8111def0 t unregister_rt_sched_group
-ffffffff8111df00 t free_rt_sched_group
-ffffffff8111df10 t alloc_rt_sched_group
-ffffffff8111df20 t sched_rt_bandwidth_account
-ffffffff8111df60 t pick_highest_pushable_task
-ffffffff8111dfc0 t rto_push_irq_work_func
-ffffffff8111e0c0 t push_rt_task
-ffffffff8111e400 t enqueue_task_rt.llvm.2249203583791563227
-ffffffff8111e890 t dequeue_task_rt.llvm.2249203583791563227
-ffffffff8111ea00 t yield_task_rt.llvm.2249203583791563227
-ffffffff8111eae0 t check_preempt_curr_rt.llvm.2249203583791563227
-ffffffff8111ec10 t pick_next_task_rt.llvm.2249203583791563227
-ffffffff8111ecd0 t put_prev_task_rt.llvm.2249203583791563227
-ffffffff8111ee00 t set_next_task_rt.llvm.2249203583791563227
-ffffffff8111efa0 t balance_rt.llvm.2249203583791563227
-ffffffff8111f030 t select_task_rq_rt.llvm.2249203583791563227
-ffffffff8111f210 t pick_task_rt.llvm.2249203583791563227
-ffffffff8111f2c0 t task_woken_rt.llvm.2249203583791563227
-ffffffff8111f320 t rq_online_rt.llvm.2249203583791563227
-ffffffff8111f3e0 t rq_offline_rt.llvm.2249203583791563227
-ffffffff8111f610 t find_lock_lowest_rq.llvm.2249203583791563227
-ffffffff8111f730 t task_tick_rt.llvm.2249203583791563227
-ffffffff8111f920 t switched_from_rt.llvm.2249203583791563227
-ffffffff8111f9a0 t switched_to_rt.llvm.2249203583791563227
-ffffffff8111fab0 t prio_changed_rt.llvm.2249203583791563227
-ffffffff8111fb40 t get_rr_interval_rt.llvm.2249203583791563227
-ffffffff8111fb60 t update_curr_rt.llvm.2249203583791563227
-ffffffff8111fed0 t print_rt_stats
-ffffffff8111ff20 t cpudl_find
-ffffffff81120080 t cpudl_clear
-ffffffff81120140 t cpudl_heapify
-ffffffff811202d0 t cpudl_set
-ffffffff81120420 t cpudl_set_freecpu
-ffffffff81120440 t cpudl_clear_freecpu
-ffffffff81120460 t cpudl_init
-ffffffff81120510 t cpudl_cleanup
-ffffffff81120530 t __update_load_avg_blocked_se
-ffffffff811207b0 t __update_load_avg_se
-ffffffff81120bb0 t __update_load_avg_cfs_rq
-ffffffff81120f90 t update_rt_rq_load_avg
-ffffffff81121310 t update_dl_rq_load_avg
-ffffffff81121690 t update_irq_load_avg
-ffffffff81121b80 t sched_pelt_multiplier
-ffffffff81121c30 t enable_sched_clock_irqtime
-ffffffff81121c50 t disable_sched_clock_irqtime
-ffffffff81121c70 t irqtime_account_irq
-ffffffff81121d50 t account_user_time
-ffffffff81121e00 t account_guest_time
-ffffffff81121f10 t account_system_index_time
-ffffffff81121fb0 t account_system_time
-ffffffff81122020 t account_steal_time
-ffffffff81122050 t account_idle_time
-ffffffff811220b0 t thread_group_cputime
-ffffffff811221b0 t account_process_tick
-ffffffff81122370 t irqtime_account_process_tick
-ffffffff81122530 t account_idle_ticks
-ffffffff81122620 t cputime_adjust
-ffffffff811226e0 t task_cputime_adjusted
-ffffffff811227c0 t thread_group_cputime_adjusted
-ffffffff811228e0 t init_dl_bandwidth
-ffffffff81122900 t init_dl_bw
-ffffffff81122950 t init_dl_rq
-ffffffff81122a20 t init_dl_task_timer
-ffffffff81122a50 t dl_task_timer.llvm.2249203583791563227
-ffffffff81122bf0 t init_dl_inactive_task_timer
-ffffffff81122c30 t inactive_task_timer.llvm.2249203583791563227
-ffffffff81123160 t dl_add_task_root_domain
-ffffffff811232b0 t dl_clear_root_domain
-ffffffff811232f0 t enqueue_task_dl.llvm.2249203583791563227
-ffffffff81123c80 t dequeue_task_dl.llvm.2249203583791563227
-ffffffff81123e60 t yield_task_dl.llvm.2249203583791563227
-ffffffff81123ea0 t check_preempt_curr_dl.llvm.2249203583791563227
-ffffffff81123f90 t pick_next_task_dl.llvm.2249203583791563227
-ffffffff81123fe0 t put_prev_task_dl.llvm.2249203583791563227
-ffffffff81124170 t set_next_task_dl.llvm.2249203583791563227
-ffffffff81124380 t balance_dl.llvm.2249203583791563227
-ffffffff81124400 t select_task_rq_dl.llvm.2249203583791563227
-ffffffff811244e0 t pick_task_dl.llvm.2249203583791563227
-ffffffff81124520 t migrate_task_rq_dl.llvm.2249203583791563227
-ffffffff811247a0 t task_woken_dl.llvm.2249203583791563227
-ffffffff81124810 t set_cpus_allowed_dl.llvm.2249203583791563227
-ffffffff811249c0 t rq_online_dl.llvm.2249203583791563227
-ffffffff81124a40 t rq_offline_dl.llvm.2249203583791563227
-ffffffff81124ab0 t find_lock_later_rq.llvm.2249203583791563227
-ffffffff81124c00 t task_tick_dl.llvm.2249203583791563227
-ffffffff81124cc0 t task_fork_dl.llvm.2249203583791563227
-ffffffff81124cd0 t switched_from_dl.llvm.2249203583791563227
-ffffffff81124f20 t switched_to_dl.llvm.2249203583791563227
-ffffffff811250e0 t prio_changed_dl.llvm.2249203583791563227
-ffffffff81125180 t update_curr_dl.llvm.2249203583791563227
-ffffffff81125480 t sched_dl_global_validate
-ffffffff81125630 t sched_dl_do_global
-ffffffff81125810 t sched_dl_overflow
-ffffffff81125e00 t dl_bw_capacity
-ffffffff81125f20 t __setparam_dl
-ffffffff81125f90 t __getparam_dl
-ffffffff81125fe0 t __checkparam_dl
-ffffffff81126060 t __dl_clear_params
-ffffffff811260d0 t dl_param_changed
-ffffffff81126120 t dl_cpuset_cpumask_can_shrink
-ffffffff81126230 t dl_cpu_busy
-ffffffff81126410 t print_dl_stats
-ffffffff81126440 t sched_rt_handler
-ffffffff81126610 t sched_rr_handler
-ffffffff811266a0 t balance_runtime
-ffffffff81126840 t enqueue_top_rt_rq
-ffffffff81126940 t find_lowest_rq
-ffffffff81126b00 t get_push_task
-ffffffff81126b70 t rt_task_fits_cpu
-ffffffff81126bd0 t dequeue_rt_stack
-ffffffff81126f40 t push_rt_tasks
-ffffffff81126f70 t pull_rt_task
-ffffffff81127160 t tell_cpu_to_push
-ffffffff81127280 t replenish_dl_entity
-ffffffff81127450 t dl_task_offline_migration
-ffffffff81127960 t push_dl_task
-ffffffff81127c70 t add_running_bw
-ffffffff81127d70 t task_contending
-ffffffff81127e70 t start_dl_timer
-ffffffff81127f80 t update_dl_revised_wakeup
-ffffffff81128040 t __dequeue_task_dl
-ffffffff81128350 t task_non_contending
-ffffffff811287e0 t push_dl_tasks
-ffffffff81128810 t pull_dl_task
-ffffffff81128a40 t pick_earliest_pushable_dl_task
-ffffffff81128ab0 t find_later_rq
-ffffffff81128c20 t sched_clock_stable
-ffffffff81128c40 t clear_sched_clock_stable
-ffffffff81128c80 t sched_clock_cpu
-ffffffff81128e30 t sched_clock_tick
-ffffffff81128ef0 t sched_clock_tick_stable
-ffffffff81128f50 t sched_clock_idle_sleep_event
-ffffffff81128f70 t sched_clock_idle_wakeup_event
-ffffffff81128fe0 t running_clock
-ffffffff81129000 t cpuacct_charge
-ffffffff81129050 t cpuacct_account_field
-ffffffff811290c0 t cpuacct_css_alloc
-ffffffff81129170 t cpuacct_css_free
-ffffffff811291a0 t cpufreq_add_update_util_hook
-ffffffff81129200 t cpufreq_remove_update_util_hook
-ffffffff81129230 t cpufreq_this_cpu_can_update
-ffffffff81129280 t sugov_init
-ffffffff811295f0 t sugov_exit
-ffffffff81129690 t sugov_start
-ffffffff81129850 t sugov_stop
-ffffffff811298e0 t sugov_limits
-ffffffff81129950 t cpufreq_default_governor
-ffffffff81129970 t update_sched_domain_debugfs
-ffffffff81129be0 t dirty_sched_domain_sysctl
-ffffffff81129c00 t print_cfs_rq
-ffffffff8112b0b0 t print_rt_rq
-ffffffff8112b370 t print_dl_rq
-ffffffff8112b4d0 t sysrq_sched_debug_show
-ffffffff8112b520 t sched_debug_header
-ffffffff8112bb60 t print_cpu
-ffffffff8112ca60 t proc_sched_show_task
-ffffffff8112e1e0 t proc_sched_set_task
-ffffffff8112e200 t resched_latency_warn
-ffffffff8112e260 t __update_stats_wait_start
-ffffffff8112e2d0 t __update_stats_wait_end
-ffffffff8112e3a0 t __update_stats_enqueue_sleeper
-ffffffff8112e5f0 t get_avenrun
-ffffffff8112e630 t calc_load_fold_active
-ffffffff8112e670 t calc_load_n
-ffffffff8112e700 t calc_load_nohz_start
-ffffffff8112e770 t calc_load_nohz_remote
-ffffffff8112e7d0 t calc_load_nohz_stop
-ffffffff8112e840 t calc_global_load
-ffffffff8112eb90 t calc_global_load_tick
-ffffffff8112ebf0 t complete
-ffffffff8112ec80 t swake_up_locked
-ffffffff8112ecd0 t complete_all
-ffffffff8112ed70 t swake_up_all_locked
-ffffffff8112ede0 t try_wait_for_completion
-ffffffff8112ee30 t completion_done
-ffffffff8112ee70 t __init_swait_queue_head
-ffffffff8112ee90 t swake_up_one
-ffffffff8112ef00 t swake_up_all
-ffffffff8112efe0 t __prepare_to_swait
-ffffffff8112f050 t prepare_to_swait_exclusive
-ffffffff8112f0f0 t prepare_to_swait_event
-ffffffff8112f1f0 t __finish_swait
-ffffffff8112f250 t finish_swait
-ffffffff8112f2d0 t bit_waitqueue
-ffffffff8112f310 t wake_bit_function
-ffffffff8112f380 t autoremove_wake_function
-ffffffff8112f3d0 t prepare_to_wait
-ffffffff8112f480 t finish_wait
-ffffffff8112f500 t prepare_to_wait_exclusive
-ffffffff8112f5b0 t __wake_up_bit
-ffffffff8112f690 t __wake_up
-ffffffff8112f760 t wake_up_bit
-ffffffff8112f870 t __var_waitqueue
-ffffffff8112f8a0 t init_wait_var_entry
-ffffffff8112f8e0 t var_wake_function
-ffffffff8112f950 t wake_up_var
-ffffffff8112fa50 t __init_waitqueue_head
-ffffffff8112fa70 t add_wait_queue
-ffffffff8112fb00 t add_wait_queue_exclusive
-ffffffff8112fb70 t add_wait_queue_priority
-ffffffff8112fc00 t remove_wait_queue
-ffffffff8112fc60 t __wake_up_locked
-ffffffff8112fce0 t __wake_up_common.llvm.7973428303895222435
-ffffffff8112fe20 t __wake_up_locked_key
-ffffffff8112fea0 t __wake_up_locked_key_bookmark
-ffffffff8112fec0 t __wake_up_sync_key
-ffffffff8112ff90 t __wake_up_locked_sync_key
-ffffffff81130010 t __wake_up_sync
-ffffffff811300d0 t __wake_up_pollfree
-ffffffff811301a0 t init_wait_entry
-ffffffff811301d0 t prepare_to_wait_event
-ffffffff81130340 t do_wait_intr
-ffffffff811303e0 t do_wait_intr_irq
-ffffffff81130480 t wait_woken
-ffffffff811304e0 t woken_wake_function
-ffffffff81130500 t cpupri_find
-ffffffff811305e0 t cpupri_find_fitness
-ffffffff81130770 t cpupri_set
-ffffffff81130820 t cpupri_init
-ffffffff81130910 t cpupri_cleanup
-ffffffff81130930 t enqueue_task_stop.llvm.7973428303895222435
-ffffffff81130990 t dequeue_task_stop.llvm.7973428303895222435
-ffffffff811309c0 t yield_task_stop.llvm.7973428303895222435
-ffffffff811309d0 t check_preempt_curr_stop.llvm.7973428303895222435
-ffffffff811309e0 t pick_next_task_stop.llvm.7973428303895222435
-ffffffff81130a50 t put_prev_task_stop.llvm.7973428303895222435
-ffffffff81130b70 t set_next_task_stop.llvm.7973428303895222435
-ffffffff81130bc0 t balance_stop.llvm.7973428303895222435
-ffffffff81130be0 t select_task_rq_stop.llvm.7973428303895222435
-ffffffff81130bf0 t pick_task_stop.llvm.7973428303895222435
-ffffffff81130c20 t task_tick_stop.llvm.7973428303895222435
-ffffffff81130c30 t switched_to_stop.llvm.7973428303895222435
-ffffffff81130c40 t prio_changed_stop.llvm.7973428303895222435
-ffffffff81130c50 t update_curr_stop.llvm.7973428303895222435
-ffffffff81130c60 t rq_attach_root
-ffffffff81130d60 t free_rootdomain
-ffffffff81130da0 t sched_get_rd
-ffffffff81130db0 t sched_put_rd
-ffffffff81130dd0 t init_defrootdomain
-ffffffff81130e00 t init_rootdomain.llvm.7973428303895222435
-ffffffff81130fb0 t group_balance_cpu
-ffffffff81130fd0 t set_sched_topology
-ffffffff81131000 t alloc_sched_domains
-ffffffff81131020 t free_sched_domains
-ffffffff81131030 t sched_init_domains
-ffffffff81131110 t asym_cpu_capacity_scan
-ffffffff81131380 t housekeeping_cpumask
-ffffffff811313c0 t build_sched_domains
-ffffffff81132960 t partition_sched_domains_locked
-ffffffff81132d90 t partition_sched_domains
-ffffffff81132de0 t group_init
-ffffffff81132f60 t psi_task_change
-ffffffff81133070 t psi_group_change
-ffffffff81133400 t psi_task_switch
-ffffffff811336e0 t psi_avgs_work
-ffffffff811337b0 t psi_account_irqtime
-ffffffff81133920 t record_times
-ffffffff81133970 t psi_memstall_enter
-ffffffff81133a30 t psi_memstall_leave
-ffffffff81133af0 t psi_cgroup_alloc
-ffffffff81133bb0 t psi_cgroup_free
-ffffffff81133c30 t cgroup_move_task
-ffffffff81133d20 t psi_cgroup_restart
-ffffffff81133e20 t psi_show
-ffffffff81133fc0 t collect_percpu_times
-ffffffff81134390 t update_averages
-ffffffff811346d0 t psi_trigger_create
-ffffffff81134980 t psi_poll_worker
-ffffffff81134f40 t psi_trigger_destroy
-ffffffff81135190 t psi_trigger_poll
-ffffffff811351f0 t membarrier_exec_mmap
-ffffffff81135220 t membarrier_update_current_mm
-ffffffff81135270 t __x64_sys_membarrier
-ffffffff81135560 t housekeeping_enabled
-ffffffff81135580 t housekeeping_any_cpu
-ffffffff811355d0 t housekeeping_affine
-ffffffff81135610 t housekeeping_test_cpu
-ffffffff81135650 t __sched_clock_work
-ffffffff81135780 t cpuusage_read
-ffffffff811357f0 t cpuusage_write
-ffffffff811358b0 t cpuusage_user_read
-ffffffff81135930 t cpuusage_sys_read
-ffffffff811359b0 t cpuacct_percpu_seq_show
-ffffffff811359d0 t cpuacct_percpu_user_seq_show
-ffffffff811359f0 t cpuacct_percpu_sys_seq_show
-ffffffff81135a10 t cpuacct_all_seq_show
-ffffffff81135b40 t cpuacct_stats_show
-ffffffff81135cd0 t __cpuacct_percpu_seq_show
-ffffffff81135dd0 t sugov_kthread_stop
-ffffffff81135e10 t sugov_work
-ffffffff81135e70 t sugov_irq_work
-ffffffff81135e90 t sugov_tunables_free
-ffffffff81135ea0 t rate_limit_us_show
-ffffffff81135ec0 t rate_limit_us_store
-ffffffff81135f60 t sugov_update_shared
-ffffffff811363c0 t sugov_update_single_perf
-ffffffff811364e0 t sugov_update_single_freq
-ffffffff811366a0 t sugov_update_single_common
-ffffffff811368f0 t sched_feat_write
-ffffffff81136ad0 t sched_feat_open
-ffffffff81136af0 t sched_feat_show
-ffffffff81136b70 t sched_dynamic_write
-ffffffff81136c40 t sched_dynamic_open
-ffffffff81136c60 t sched_dynamic_show
-ffffffff81136d70 t sched_scaling_write
-ffffffff81136e60 t sched_scaling_open
-ffffffff81136e80 t sched_scaling_show
-ffffffff81136ea0 t sched_debug_open
-ffffffff81136ec0 t sched_debug_start
-ffffffff81136f30 t sched_debug_stop
-ffffffff81136f40 t sched_debug_next
-ffffffff81136fc0 t sched_debug_show
-ffffffff81136ff0 t sd_flags_open
-ffffffff81137020 t sd_flags_show
-ffffffff811370e0 t schedstat_start
-ffffffff81137150 t schedstat_stop
-ffffffff81137160 t schedstat_next
-ffffffff811371e0 t show_schedstat
-ffffffff81137490 t cpu_smt_flags
-ffffffff811374a0 t cpu_cluster_flags
-ffffffff811374b0 t cpu_core_flags
-ffffffff811374c0 t cpu_attach_domain
-ffffffff81137cb0 t destroy_sched_domain
-ffffffff81137d40 t destroy_sched_domains_rcu
-ffffffff81137d70 t poll_timer_fn
-ffffffff81137e30 t psi_io_open
-ffffffff81137e50 t psi_io_write
-ffffffff81137e70 t psi_fop_release
-ffffffff81137eb0 t psi_fop_poll
-ffffffff81137f10 t psi_io_show
-ffffffff81137f30 t psi_write
-ffffffff81138080 t psi_memory_open
-ffffffff811380a0 t psi_memory_write
-ffffffff811380c0 t psi_memory_show
-ffffffff811380e0 t psi_cpu_open
-ffffffff81138100 t psi_cpu_write
-ffffffff81138120 t psi_cpu_show
-ffffffff81138140 t psi_irq_open
-ffffffff81138160 t psi_irq_write
-ffffffff81138180 t psi_irq_show
-ffffffff811381a0 t membarrier_private_expedited
-ffffffff81138420 t ipi_mb
-ffffffff81138440 t sync_runqueues_membarrier_state
-ffffffff81138580 t ipi_sync_rq_state
-ffffffff811385c0 t ipi_sync_core
-ffffffff81138600 t ipi_rseq
-ffffffff81138630 t __traceiter_contention_begin
-ffffffff81138680 t __traceiter_contention_end
-ffffffff811386d0 t trace_event_raw_event_contention_begin
-ffffffff81138790 t perf_trace_contention_begin
-ffffffff81138890 t trace_event_raw_event_contention_end
-ffffffff81138950 t perf_trace_contention_end
-ffffffff81138a50 t __mutex_init
-ffffffff81138a80 t mutex_is_locked
-ffffffff81138aa0 t ww_mutex_trylock
-ffffffff81138b90 t atomic_dec_and_mutex_lock
-ffffffff81138c10 t trace_raw_output_contention_begin
-ffffffff81138c90 t trace_raw_output_contention_end
-ffffffff81138cf0 t __ww_mutex_check_waiters
-ffffffff81138d80 t trace_contention_begin
-ffffffff81138de0 t mutex_spin_on_owner
-ffffffff81138e50 t __init_rwsem
-ffffffff81138e90 t down_read_trylock
-ffffffff81138f20 t down_write_trylock
-ffffffff81138f90 t up_read
-ffffffff81139090 t up_write
-ffffffff81139170 t downgrade_write
-ffffffff81139240 t rwsem_mark_wake
-ffffffff81139470 t rwsem_spin_on_owner
-ffffffff81139510 t _trace_android_vh_record_pcpu_rwsem_starttime
-ffffffff81139520 t __percpu_init_rwsem
-ffffffff811395d0 t percpu_free_rwsem
-ffffffff81139600 t percpu_rwsem_wait
-ffffffff81139730 t percpu_is_read_locked
-ffffffff811397b0 t percpu_up_write
-ffffffff811397f0 t percpu_rwsem_wake_function
-ffffffff811398e0 t __percpu_rwsem_trylock
-ffffffff81139970 t in_lock_functions
-ffffffff811399a0 t osq_lock
-ffffffff81139ae0 t osq_wait_next
-ffffffff81139b40 t osq_unlock
-ffffffff81139bb0 t rt_mutex_base_init
-ffffffff81139be0 t pm_qos_read_value
-ffffffff81139bf0 t pm_qos_update_target
-ffffffff81139da0 t pm_qos_update_flags
-ffffffff81139f80 t cpu_latency_qos_limit
-ffffffff81139fa0 t cpu_latency_qos_request_active
-ffffffff81139fc0 t cpu_latency_qos_add_request
-ffffffff8113a070 t cpu_latency_qos_update_request
-ffffffff8113a120 t cpu_latency_qos_remove_request
-ffffffff8113a200 t freq_constraints_init
-ffffffff8113a2b0 t freq_qos_read_value
-ffffffff8113a300 t freq_qos_apply
-ffffffff8113a340 t freq_qos_add_request
-ffffffff8113a3d0 t freq_qos_update_request
-ffffffff8113a450 t freq_qos_remove_request
-ffffffff8113a4d0 t freq_qos_add_notifier
-ffffffff8113a520 t freq_qos_remove_notifier
-ffffffff8113a570 t cpu_latency_qos_read
-ffffffff8113a670 t cpu_latency_qos_write
-ffffffff8113a710 t cpu_latency_qos_open
-ffffffff8113a760 t cpu_latency_qos_release
-ffffffff8113a7a0 t lock_system_sleep
-ffffffff8113a7e0 t unlock_system_sleep
-ffffffff8113a810 t ksys_sync_helper
-ffffffff8113a8b0 t register_pm_notifier
-ffffffff8113a8d0 t unregister_pm_notifier
-ffffffff8113a8f0 t pm_notifier_call_chain_robust
-ffffffff8113a930 t pm_notifier_call_chain
-ffffffff8113a950 t suspend_stats_open
-ffffffff8113a980 t suspend_stats_show
-ffffffff8113abb0 t state_store
-ffffffff8113acd0 t state_store
-ffffffff8113adb0 t pm_async_show
-ffffffff8113ade0 t pm_async_store
-ffffffff8113ae60 t wakeup_count_show
-ffffffff8113aed0 t wakeup_count_show
-ffffffff8113af50 t wakeup_count_show
-ffffffff8113af80 t wakeup_count_store
-ffffffff8113b000 t mem_sleep_show
-ffffffff8113b0c0 t mem_sleep_store
-ffffffff8113b1b0 t sync_on_suspend_show
-ffffffff8113b1e0 t sync_on_suspend_store
-ffffffff8113b260 t wake_lock_show
-ffffffff8113b280 t wake_lock_store
-ffffffff8113b2a0 t wake_unlock_show
-ffffffff8113b2c0 t wake_unlock_store
-ffffffff8113b2e0 t pm_freeze_timeout_show
-ffffffff8113b310 t pm_freeze_timeout_store
-ffffffff8113b380 t success_show
-ffffffff8113b3b0 t failed_freeze_show
-ffffffff8113b3e0 t failed_prepare_show
-ffffffff8113b410 t failed_suspend_show
-ffffffff8113b440 t failed_suspend_late_show
-ffffffff8113b470 t failed_suspend_noirq_show
-ffffffff8113b4a0 t failed_resume_show
-ffffffff8113b4d0 t failed_resume_early_show
-ffffffff8113b500 t failed_resume_noirq_show
-ffffffff8113b530 t last_failed_dev_show
-ffffffff8113b580 t last_failed_errno_show
-ffffffff8113b5d0 t last_failed_step_show
-ffffffff8113b630 t pm_vt_switch_required
-ffffffff8113b6f0 t pm_vt_switch_unregister
-ffffffff8113b780 t pm_prepare_console
-ffffffff8113b810 t pm_restore_console
-ffffffff8113b890 t freeze_processes
-ffffffff8113b990 t try_to_freeze_tasks
-ffffffff8113bc50 t thaw_processes
-ffffffff8113be90 t freeze_kernel_threads
-ffffffff8113bed0 t thaw_kernel_threads
-ffffffff8113bf90 t pm_suspend_default_s2idle
-ffffffff8113bfb0 t s2idle_set_ops
-ffffffff8113bfe0 t s2idle_wake
-ffffffff8113c030 t suspend_set_ops
-ffffffff8113c100 t suspend_valid_only_mem
-ffffffff8113c120 t arch_suspend_disable_irqs
-ffffffff8113c130 t arch_suspend_enable_irqs
-ffffffff8113c140 t suspend_devices_and_enter
-ffffffff8113c990 t pm_suspend
-ffffffff8113ce20 t pm_show_wakelocks
-ffffffff8113cee0 t pm_wake_lock
-ffffffff8113d140 t pm_wake_unlock
-ffffffff8113d230 t handle_poweroff
-ffffffff8113d270 t do_poweroff
-ffffffff8113d280 t log_irq_wakeup_reason
-ffffffff8113d300 t add_sibling_node_sorted
-ffffffff8113d3e0 t log_threaded_irq_wakeup_reason
-ffffffff8113d540 t log_suspend_abort_reason
-ffffffff8113d610 t log_abnormal_wakeup_reason
-ffffffff8113d6e0 t clear_wakeup_reasons
-ffffffff8113d7f0 t wakeup_reason_pm_event
-ffffffff8113d8f0 t last_resume_reason_show
-ffffffff8113d9c0 t last_suspend_time_show
-ffffffff8113da80 t __traceiter_console
-ffffffff8113dad0 t trace_event_raw_event_console
-ffffffff8113dbe0 t perf_trace_console
-ffffffff8113dd40 t devkmsg_sysctl_set_loglvl
-ffffffff8113dea0 t printk_percpu_data_ready
-ffffffff8113dec0 t log_buf_addr_get
-ffffffff8113dee0 t log_buf_len_get
-ffffffff8113df00 t devkmsg_llseek
-ffffffff8113df90 t devkmsg_read
-ffffffff8113e2d0 t devkmsg_write
-ffffffff8113e450 t devkmsg_poll
-ffffffff8113e550 t devkmsg_open
-ffffffff8113e6c0 t devkmsg_release
-ffffffff8113e720 t log_buf_vmcoreinfo_setup
-ffffffff8113eb70 t _printk
-ffffffff8113ebf0 t do_syslog
-ffffffff8113f0d0 t syslog_print
-ffffffff8113f490 t syslog_print_all
-ffffffff8113f790 t __x64_sys_syslog
-ffffffff8113f7b0 t printk_parse_prefix
-ffffffff8113f820 t vprintk_store
-ffffffff8113fe00 t printk_sprint
-ffffffff8113ff30 t vprintk_emit
-ffffffff81140120 t console_unlock
-ffffffff81140320 t wake_up_klogd
-ffffffff81140340 t vprintk_default
-ffffffff81140360 t early_printk
-ffffffff81140460 t add_preferred_console
-ffffffff81140480 t __add_preferred_console.llvm.8644960526485885767
-ffffffff81140760 t console_verbose
-ffffffff81140790 t suspend_console
-ffffffff81140850 t console_lock
-ffffffff81140890 t resume_console
-ffffffff811408d0 t console_trylock
-ffffffff811409a0 t is_console_locked
-ffffffff811409c0 t console_unblank
-ffffffff81140ab0 t console_flush_on_panic
-ffffffff81140b00 t console_device
-ffffffff81140b80 t console_stop
-ffffffff81140bd0 t __pr_flush
-ffffffff81140d00 t console_start
-ffffffff81140d50 t register_console
-ffffffff81140fe0 t try_enable_preferred_console
-ffffffff81141100 t unregister_console
-ffffffff811411f0 t __wake_up_klogd.llvm.8644960526485885767
-ffffffff81141280 t defer_console_output
-ffffffff811412a0 t printk_trigger_flush
-ffffffff811412c0 t vprintk_deferred
-ffffffff81141353 t _printk_deferred
-ffffffff811413d0 t __printk_ratelimit
-ffffffff811413f0 t printk_timed_ratelimit
-ffffffff81141440 t kmsg_dump_register
-ffffffff811414e0 t kmsg_dump_unregister
-ffffffff81141560 t kmsg_dump_reason_str
-ffffffff81141590 t kmsg_dump
-ffffffff81141610 t kmsg_dump_get_line
-ffffffff81141870 t record_print_text
-ffffffff81141a90 t kmsg_dump_get_buffer
-ffffffff81141d20 t find_first_fitting_seq
-ffffffff81142050 t kmsg_dump_rewind
-ffffffff811420a0 t __printk_cpu_sync_wait
-ffffffff811420d0 t __printk_cpu_sync_try_get
-ffffffff81142110 t __printk_cpu_sync_put
-ffffffff81142140 t trace_raw_output_console
-ffffffff811421a0 t msg_print_ext_body
-ffffffff811422a0 t msg_add_dict_text
-ffffffff811423f1 t devkmsg_emit
-ffffffff81142470 t console_emit_next_record
-ffffffff81142820 t console_cpu_notify
-ffffffff81142850 t wake_up_klogd_work_func
-ffffffff811428b0 t __printk_safe_enter
-ffffffff811428d0 t __printk_safe_exit
-ffffffff811428f0 t vprintk
-ffffffff81142950 t prb_reserve_in_last
-ffffffff81142f60 t data_alloc
-ffffffff81143080 t get_data
-ffffffff81143170 t prb_commit
-ffffffff81143210 t prb_reserve
-ffffffff811438b0 t prb_final_commit
-ffffffff81143910 t prb_read_valid
-ffffffff81143960 t _prb_read_valid.llvm.4799869759682838107
-ffffffff81143da0 t prb_read_valid_info
-ffffffff81143e00 t prb_first_valid_seq
-ffffffff81143e60 t prb_next_seq
-ffffffff81143f80 t prb_init
-ffffffff81144080 t prb_record_text_space
-ffffffff81144090 t data_push_tail
-ffffffff81144260 t proc_dointvec_minmax_sysadmin
-ffffffff811442c0 t irq_to_desc
-ffffffff811442e0 t irq_lock_sparse
-ffffffff81144300 t irq_unlock_sparse
-ffffffff81144320 t alloc_desc
-ffffffff81144560 t handle_irq_desc
-ffffffff811445b0 t generic_handle_irq
-ffffffff81144610 t generic_handle_irq_safe
-ffffffff811446c0 t generic_handle_domain_irq
-ffffffff81144720 t generic_handle_domain_irq_safe
-ffffffff811447d0 t generic_handle_domain_nmi
-ffffffff81144840 t irq_free_descs
-ffffffff81144930 t irq_get_next_irq
-ffffffff81144950 t __irq_get_desc_lock
-ffffffff811449e0 t __irq_put_desc_unlock
-ffffffff81144a30 t irq_set_percpu_devid_partition
-ffffffff81144ad0 t irq_set_percpu_devid
-ffffffff81144b60 t irq_get_percpu_devid_partition
-ffffffff81144bc0 t kstat_incr_irq_this_cpu
-ffffffff81144c10 t kstat_irqs_cpu
-ffffffff81144c60 t kstat_irqs_usr
-ffffffff81144d10 t irq_kobj_release
-ffffffff81144d40 t per_cpu_count_show
-ffffffff81144e60 t chip_name_show
-ffffffff81144ed0 t hwirq_show
-ffffffff81144f30 t wakeup_show
-ffffffff81144fa0 t wakeup_show
-ffffffff81144ff0 t name_show
-ffffffff81145050 t name_show
-ffffffff81145080 t name_show
-ffffffff811450b0 t name_show
-ffffffff81145130 t name_show
-ffffffff81145180 t actions_show
-ffffffff81145250 t delayed_free_desc
-ffffffff81145270 t handle_bad_irq
-ffffffff81145500 t no_action
-ffffffff81145510 t __irq_wake_thread
-ffffffff81145560 t __handle_irq_event_percpu
-ffffffff81145750 t handle_irq_event_percpu
-ffffffff81145790 t handle_irq_event
-ffffffff81145800 t synchronize_hardirq
-ffffffff81145880 t __synchronize_hardirq
-ffffffff81145970 t synchronize_irq
-ffffffff81145a50 t irq_can_set_affinity
-ffffffff81145aa0 t irq_can_set_affinity_usr
-ffffffff81145af0 t irq_set_thread_affinity
-ffffffff81145b20 t irq_do_set_affinity
-ffffffff81145d20 t irq_set_affinity_locked
-ffffffff81145ec0 t irq_update_affinity_desc
-ffffffff81145ed0 t irq_set_affinity
-ffffffff81145f40 t irq_force_affinity
-ffffffff81145fb0 t __irq_apply_affinity_hint
-ffffffff81146090 t irq_set_affinity_notifier
-ffffffff811461c0 t irq_affinity_notify
-ffffffff811462d0 t irq_setup_affinity
-ffffffff81146420 t irq_set_vcpu_affinity
-ffffffff811464f0 t __disable_irq
-ffffffff81146520 t disable_irq_nosync
-ffffffff811465b0 t disable_irq
-ffffffff81146650 t disable_hardirq
-ffffffff81146760 t disable_nmi_nosync
-ffffffff811467f0 t __enable_irq
-ffffffff81146850 t enable_irq
-ffffffff81146930 t enable_nmi
-ffffffff81146940 t irq_set_irq_wake
-ffffffff81146ae0 t can_request_irq
-ffffffff81146b70 t __irq_set_trigger
-ffffffff81146c90 t irq_set_parent
-ffffffff81146d10 t irq_wake_thread
-ffffffff81146da0 t free_irq
-ffffffff811470f0 t free_nmi
-ffffffff811471a0 t __cleanup_nmi
-ffffffff81147230 t request_threaded_irq
-ffffffff811473b0 t irq_default_primary_handler
-ffffffff811473c0 t __setup_irq
-ffffffff81147bc0 t request_any_context_irq
-ffffffff81147c60 t request_nmi
-ffffffff81147e30 t enable_percpu_irq
-ffffffff81147ef0 t enable_percpu_nmi
-ffffffff81147f00 t irq_percpu_is_enabled
-ffffffff81147f90 t disable_percpu_irq
-ffffffff81148010 t disable_percpu_nmi
-ffffffff81148090 t remove_percpu_irq
-ffffffff811480d0 t __free_percpu_irq
-ffffffff81148200 t free_percpu_irq
-ffffffff81148280 t free_percpu_nmi
-ffffffff811482d0 t setup_percpu_irq
-ffffffff81148360 t __request_percpu_irq
-ffffffff81148480 t request_percpu_nmi
-ffffffff811485d0 t prepare_percpu_nmi
-ffffffff811486e0 t teardown_percpu_nmi
-ffffffff811487a0 t __irq_get_irqchip_state
-ffffffff81148800 t irq_get_irqchip_state
-ffffffff811488e0 t irq_set_irqchip_state
-ffffffff811489c0 t irq_has_action
-ffffffff81148a00 t irq_check_status_bit
-ffffffff81148a40 t irq_nested_primary_handler
-ffffffff81148a60 t wake_up_and_wait_for_irq_thread_ready
-ffffffff81148b50 t irq_forced_secondary_handler
-ffffffff81148b70 t irq_thread
-ffffffff81148e00 t irq_forced_thread_fn
-ffffffff81148e60 t irq_thread_fn
-ffffffff81148eb0 t irq_thread_dtor
-ffffffff81148f50 t irq_finalize_oneshot
-ffffffff81149040 t irq_wait_for_poll
-ffffffff81149100 t note_interrupt
-ffffffff811492f0 t misrouted_irq
-ffffffff811493a0 t __report_bad_irq
-ffffffff81149460 t noirqdebug_setup
-ffffffff81149490 t try_one_irq
-ffffffff81149570 t poll_spurious_irqs
-ffffffff81149630 t check_irq_resend
-ffffffff811496f0 t resend_irqs
-ffffffff81149770 t bad_chained_irq
-ffffffff811497a0 t irq_set_chip
-ffffffff81149830 t irq_set_irq_type
-ffffffff811498c0 t irq_set_handler_data
-ffffffff81149940 t irq_set_msi_desc_off
-ffffffff811499e0 t irq_set_msi_desc
-ffffffff81149a70 t irq_set_chip_data
-ffffffff81149af0 t irq_get_irq_data
-ffffffff81149b20 t irq_startup
-ffffffff81149c90 t irq_enable
-ffffffff81149d00 t __irq_startup
-ffffffff81149db0 t irq_activate
-ffffffff81149de0 t irq_activate_and_startup
-ffffffff81149e40 t irq_shutdown
-ffffffff81149ee0 t irq_shutdown_and_deactivate
-ffffffff81149fa0 t unmask_irq
-ffffffff81149fe0 t irq_disable
-ffffffff8114a060 t irq_percpu_enable
-ffffffff8114a0b0 t irq_percpu_disable
-ffffffff8114a100 t mask_irq
-ffffffff8114a140 t unmask_threaded_irq
-ffffffff8114a1a0 t handle_nested_irq
-ffffffff8114a2c0 t handle_simple_irq
-ffffffff8114a3d0 t handle_untracked_irq
-ffffffff8114a4d0 t handle_level_irq
-ffffffff8114a6a0 t handle_fasteoi_irq
-ffffffff8114a8b0 t handle_fasteoi_nmi
-ffffffff8114a9c0 t handle_edge_irq
-ffffffff8114abe0 t handle_percpu_irq
-ffffffff8114ac50 t handle_percpu_devid_irq
-ffffffff8114ae10 t handle_percpu_devid_fasteoi_nmi
-ffffffff8114af30 t __irq_set_handler
-ffffffff8114afc0 t __irq_do_set_handler
-ffffffff8114b1c0 t irq_set_chained_handler_and_data
-ffffffff8114b250 t irq_set_chip_and_handler_name
-ffffffff8114b320 t irq_modify_status
-ffffffff8114b450 t irq_chip_set_parent_state
-ffffffff8114b480 t irq_chip_get_parent_state
-ffffffff8114b4b0 t irq_chip_enable_parent
-ffffffff8114b4e0 t irq_chip_disable_parent
-ffffffff8114b510 t irq_chip_ack_parent
-ffffffff8114b530 t irq_chip_mask_parent
-ffffffff8114b550 t irq_chip_mask_ack_parent
-ffffffff8114b570 t irq_chip_unmask_parent
-ffffffff8114b590 t irq_chip_eoi_parent
-ffffffff8114b5b0 t irq_chip_set_affinity_parent
-ffffffff8114b5f0 t irq_chip_set_type_parent
-ffffffff8114b620 t irq_chip_retrigger_hierarchy
-ffffffff8114b660 t irq_chip_set_vcpu_affinity_parent
-ffffffff8114b6a0 t irq_chip_set_wake_parent
-ffffffff8114b6e0 t irq_chip_request_resources_parent
-ffffffff8114b710 t irq_chip_release_resources_parent
-ffffffff8114b740 t irq_chip_compose_msi_msg
-ffffffff8114b7b0 t irq_chip_pm_get
-ffffffff8114b810 t irq_chip_pm_put
-ffffffff8114b850 t noop_ret
-ffffffff8114b860 t noop
-ffffffff8114b870 t ack_bad
-ffffffff8114bae0 t devm_request_threaded_irq
-ffffffff8114bbb0 t devm_irq_release
-ffffffff8114bbd0 t devm_request_any_context_irq
-ffffffff8114bca0 t devm_free_irq
-ffffffff8114bd20 t devm_irq_match
-ffffffff8114bd40 t __devm_irq_alloc_descs
-ffffffff8114bdf0 t devm_irq_desc_release
-ffffffff8114be10 t probe_irq_on
-ffffffff8114c010 t probe_irq_mask
-ffffffff8114c0f0 t probe_irq_off
-ffffffff8114c1e0 t irqchip_fwnode_get_name.llvm.2900055442092985048
-ffffffff8114c1f0 t __irq_domain_alloc_fwnode
-ffffffff8114c2d0 t irq_domain_free_fwnode
-ffffffff8114c310 t __irq_domain_add
-ffffffff8114c380 t __irq_domain_create
-ffffffff8114c590 t irq_domain_remove
-ffffffff8114c650 t irq_set_default_host
-ffffffff8114c670 t irq_domain_update_bus_token
-ffffffff8114c6f0 t irq_domain_create_simple
-ffffffff8114c800 t irq_domain_associate_many
-ffffffff8114c860 t irq_domain_add_legacy
-ffffffff8114c880 t irq_domain_create_legacy
-ffffffff8114c960 t irq_find_matching_fwspec
-ffffffff8114ca70 t irq_domain_check_msi_remap
-ffffffff8114caf0 t irq_domain_hierarchical_is_msi_remap
-ffffffff8114cb30 t irq_get_default_host
-ffffffff8114cb50 t irq_domain_associate
-ffffffff8114cba0 t irq_domain_associate_locked
-ffffffff8114cd20 t irq_create_mapping_affinity
-ffffffff8114cea0 t of_phandle_args_to_fwspec
-ffffffff8114cf50 t irq_create_fwspec_mapping
-ffffffff8114d440 t irq_domain_alloc_irqs_locked
-ffffffff8114d870 t irq_create_of_mapping
-ffffffff8114d9f0 t irq_dispose_mapping
-ffffffff8114db60 t irq_domain_free_irqs
-ffffffff8114ddd0 t __irq_resolve_mapping
-ffffffff8114de50 t irq_domain_get_irq_data
-ffffffff8114dea0 t irq_domain_xlate_onecell
-ffffffff8114ded0 t irq_domain_xlate_twocell
-ffffffff8114df10 t irq_domain_translate_twocell
-ffffffff8114df40 t irq_domain_xlate_onetwocell
-ffffffff8114df80 t irq_domain_translate_onecell
-ffffffff8114dfb0 t irq_domain_alloc_descs
-ffffffff8114e050 t irq_domain_reset_irq_data
-ffffffff8114e080 t irq_domain_create_hierarchy
-ffffffff8114e120 t irq_domain_disconnect_hierarchy
-ffffffff8114e180 t irq_domain_set_hwirq_and_chip
-ffffffff8114e200 t irq_domain_set_info
-ffffffff8114e2a0 t irq_domain_free_irqs_common
-ffffffff8114e3c0 t irq_domain_free_irqs_parent
-ffffffff8114e460 t irq_domain_free_irqs_top
-ffffffff8114e4c0 t irq_domain_alloc_irqs_hierarchy
-ffffffff8114e4f0 t __irq_domain_alloc_irqs
-ffffffff8114e590 t irq_domain_push_irq
-ffffffff8114e800 t irq_domain_pop_irq
-ffffffff8114ea40 t irq_domain_alloc_irqs_parent
-ffffffff8114ea70 t irq_domain_activate_irq
-ffffffff8114eab0 t __irq_domain_activate_irq
-ffffffff8114eb30 t irq_domain_deactivate_irq
-ffffffff8114eb60 t __irq_domain_deactivate_irq
-ffffffff8114ebb0 t register_handler_proc
-ffffffff8114ed70 t register_irq_proc
-ffffffff8114ef30 t irq_affinity_hint_proc_show
-ffffffff8114f010 t irq_node_proc_show
-ffffffff8114f050 t irq_effective_aff_proc_show
-ffffffff8114f090 t irq_effective_aff_list_proc_show
-ffffffff8114f0d0 t irq_spurious_proc_show
-ffffffff8114f120 t unregister_irq_proc
-ffffffff8114f230 t unregister_handler_proc
-ffffffff8114f250 t init_irq_proc
-ffffffff8114f2f0 t show_interrupts
-ffffffff8114f670 t irq_affinity_proc_open
-ffffffff8114f6a0 t irq_affinity_proc_write
-ffffffff8114f6c0 t irq_affinity_proc_show
-ffffffff8114f710 t write_irq_affinity
-ffffffff8114f810 t irq_affinity_list_proc_open
-ffffffff8114f840 t irq_affinity_list_proc_write
-ffffffff8114f860 t irq_affinity_list_proc_show
-ffffffff8114f8b0 t default_affinity_open
-ffffffff8114f8e0 t default_affinity_write
-ffffffff8114f9b0 t default_affinity_show
-ffffffff8114f9e0 t irq_fixup_move_pending
-ffffffff8114fa50 t irq_move_masked_irq
-ffffffff8114fb30 t __irq_move_irq
-ffffffff8114fba0 t irq_migrate_all_off_this_cpu
-ffffffff8114fe30 t irq_affinity_online_cpu
-ffffffff8114ff90 t irq_pm_check_wakeup
-ffffffff8114ffe0 t irq_pm_install_action
-ffffffff81150060 t irq_pm_remove_action
-ffffffff811500b0 t suspend_device_irqs
-ffffffff811501f0 t rearm_wake_irq
-ffffffff81150290 t resume_device_irqs
-ffffffff811502b0 t resume_irqs.llvm.5932690214967946124
-ffffffff811503d0 t irq_pm_syscore_resume
-ffffffff811503f0 t msi_add_msi_desc
-ffffffff811504f0 t msi_free_msi_descs_range
-ffffffff811505f0 t __get_cached_msi_msg
-ffffffff81150610 t get_cached_msi_msg
-ffffffff81150660 t msi_setup_device_data
-ffffffff81150720 t msi_device_data_release
-ffffffff81150760 t msi_lock_descs
-ffffffff81150780 t msi_unlock_descs
-ffffffff811507b0 t msi_first_desc
-ffffffff81150850 t msi_next_desc
-ffffffff81150900 t msi_get_virq
-ffffffff811509f0 t msi_domain_set_affinity
-ffffffff81150ad0 t msi_create_irq_domain
-ffffffff81150c30 t msi_domain_prepare_irqs
-ffffffff81150c90 t msi_domain_populate_irqs
-ffffffff81150e70 t msi_add_simple_msi_descs
-ffffffff81150ff0 t __msi_domain_alloc_irqs
-ffffffff81151620 t msi_domain_alloc_irqs_descs_locked
-ffffffff811516a0 t msi_domain_free_irqs_descs_locked
-ffffffff81151770 t msi_domain_alloc_irqs
-ffffffff81151820 t __msi_domain_free_irqs
-ffffffff81151a40 t msi_domain_free_irqs
-ffffffff81151aa0 t msi_get_domain_info
-ffffffff81151ab0 t msi_domain_ops_get_hwirq
-ffffffff81151ac0 t msi_domain_ops_init
-ffffffff81151b20 t msi_domain_ops_check
-ffffffff81151b30 t msi_domain_ops_prepare
-ffffffff81151b90 t msi_domain_ops_set_desc
-ffffffff81151ba0 t msi_domain_alloc
-ffffffff81151d10 t msi_domain_free
-ffffffff81151da0 t msi_domain_activate
-ffffffff81151e60 t msi_domain_deactivate
-ffffffff81151ed0 t msi_mode_show
-ffffffff81151f30 t irq_create_affinity_masks
-ffffffff81152440 t default_calc_sets
-ffffffff81152460 t irq_calc_affinity_vectors
-ffffffff811524d0 t __irq_build_affinity_masks
-ffffffff81152840 t ncpus_cmp_func
-ffffffff81152860 t __traceiter_irq_matrix_online
-ffffffff811528b0 t __traceiter_irq_matrix_offline
-ffffffff81152900 t __traceiter_irq_matrix_reserve
-ffffffff81152950 t __traceiter_irq_matrix_remove_reserved
-ffffffff811529a0 t __traceiter_irq_matrix_assign_system
-ffffffff811529f0 t __traceiter_irq_matrix_alloc_reserved
-ffffffff81152a60 t __traceiter_irq_matrix_reserve_managed
-ffffffff81152ad0 t __traceiter_irq_matrix_remove_managed
-ffffffff81152b40 t __traceiter_irq_matrix_alloc_managed
-ffffffff81152bb0 t __traceiter_irq_matrix_assign
-ffffffff81152c20 t __traceiter_irq_matrix_alloc
-ffffffff81152c90 t __traceiter_irq_matrix_free
-ffffffff81152d00 t trace_event_raw_event_irq_matrix_global
-ffffffff81152dd0 t perf_trace_irq_matrix_global
-ffffffff81152ee0 t trace_event_raw_event_irq_matrix_global_update
-ffffffff81152fc0 t perf_trace_irq_matrix_global_update
-ffffffff811530e0 t trace_event_raw_event_irq_matrix_cpu
-ffffffff811531f0 t perf_trace_irq_matrix_cpu
-ffffffff81153340 t irq_matrix_online
-ffffffff81153400 t irq_matrix_offline
-ffffffff81153490 t irq_matrix_assign_system
-ffffffff81153570 t irq_matrix_reserve_managed
-ffffffff81153750 t irq_matrix_remove_managed
-ffffffff81153880 t irq_matrix_alloc_managed
-ffffffff81153a20 t irq_matrix_assign
-ffffffff81153ae0 t irq_matrix_reserve
-ffffffff81153b60 t irq_matrix_remove_reserved
-ffffffff81153bc0 t irq_matrix_alloc
-ffffffff81153da0 t irq_matrix_free
-ffffffff81153e70 t irq_matrix_available
-ffffffff81153ec0 t irq_matrix_reserved
-ffffffff81153ed0 t irq_matrix_allocated
-ffffffff81153f00 t trace_raw_output_irq_matrix_global
-ffffffff81153f60 t trace_raw_output_irq_matrix_global_update
-ffffffff81153fd0 t trace_raw_output_irq_matrix_cpu
-ffffffff81154060 t __traceiter_rcu_utilization
-ffffffff811540b0 t __traceiter_rcu_grace_period
-ffffffff81154110 t __traceiter_rcu_future_grace_period
-ffffffff81154190 t __traceiter_rcu_grace_period_init
-ffffffff81154210 t __traceiter_rcu_exp_grace_period
-ffffffff81154270 t __traceiter_rcu_exp_funnel_lock
-ffffffff811542e0 t __traceiter_rcu_nocb_wake
-ffffffff81154340 t __traceiter_rcu_preempt_task
-ffffffff811543a0 t __traceiter_rcu_unlock_preempted_task
-ffffffff81154400 t __traceiter_rcu_quiescent_state_report
-ffffffff81154480 t __traceiter_rcu_fqs
-ffffffff811544f0 t __traceiter_rcu_stall_warning
-ffffffff81154540 t __traceiter_rcu_dyntick
-ffffffff811545b0 t __traceiter_rcu_callback
-ffffffff81154610 t __traceiter_rcu_segcb_stats
-ffffffff81154660 t __traceiter_rcu_kvfree_callback
-ffffffff811546d0 t __traceiter_rcu_batch_start
-ffffffff81154730 t __traceiter_rcu_invoke_callback
-ffffffff81154780 t __traceiter_rcu_invoke_kvfree_callback
-ffffffff811547e0 t __traceiter_rcu_invoke_kfree_bulk_callback
-ffffffff81154840 t __traceiter_rcu_batch_end
-ffffffff811548d0 t __traceiter_rcu_torture_read
-ffffffff81154940 t __traceiter_rcu_barrier
-ffffffff811549b0 t trace_event_raw_event_rcu_utilization
-ffffffff81154a70 t perf_trace_rcu_utilization
-ffffffff81154b60 t trace_event_raw_event_rcu_grace_period
-ffffffff81154c30 t perf_trace_rcu_grace_period
-ffffffff81154d40 t trace_event_raw_event_rcu_future_grace_period
-ffffffff81154e30 t perf_trace_rcu_future_grace_period
-ffffffff81154f60 t trace_event_raw_event_rcu_grace_period_init
-ffffffff81155050 t perf_trace_rcu_grace_period_init
-ffffffff81155180 t trace_event_raw_event_rcu_exp_grace_period
-ffffffff81155250 t perf_trace_rcu_exp_grace_period
-ffffffff81155360 t trace_event_raw_event_rcu_exp_funnel_lock
-ffffffff81155440 t perf_trace_rcu_exp_funnel_lock
-ffffffff81155560 t trace_event_raw_event_rcu_nocb_wake
-ffffffff81155630 t perf_trace_rcu_nocb_wake
-ffffffff81155740 t trace_event_raw_event_rcu_preempt_task
-ffffffff81155810 t perf_trace_rcu_preempt_task
-ffffffff81155920 t trace_event_raw_event_rcu_unlock_preempted_task
-ffffffff811559f0 t perf_trace_rcu_unlock_preempted_task
-ffffffff81155b00 t trace_event_raw_event_rcu_quiescent_state_report
-ffffffff81155c00 t perf_trace_rcu_quiescent_state_report
-ffffffff81155d30 t trace_event_raw_event_rcu_fqs
-ffffffff81155e10 t perf_trace_rcu_fqs
-ffffffff81155f20 t trace_event_raw_event_rcu_stall_warning
-ffffffff81155fe0 t perf_trace_rcu_stall_warning
-ffffffff811560e0 t trace_event_raw_event_rcu_dyntick
-ffffffff811561c0 t perf_trace_rcu_dyntick
-ffffffff811562d0 t trace_event_raw_event_rcu_callback
-ffffffff811563b0 t perf_trace_rcu_callback
-ffffffff811564c0 t trace_event_raw_event_rcu_segcb_stats
-ffffffff811565d0 t perf_trace_rcu_segcb_stats
-ffffffff81156710 t trace_event_raw_event_rcu_kvfree_callback
-ffffffff811567f0 t perf_trace_rcu_kvfree_callback
-ffffffff81156900 t trace_event_raw_event_rcu_batch_start
-ffffffff811569d0 t perf_trace_rcu_batch_start
-ffffffff81156ae0 t trace_event_raw_event_rcu_invoke_callback
-ffffffff81156bb0 t perf_trace_rcu_invoke_callback
-ffffffff81156cb0 t trace_event_raw_event_rcu_invoke_kvfree_callback
-ffffffff81156d80 t perf_trace_rcu_invoke_kvfree_callback
-ffffffff81156e90 t trace_event_raw_event_rcu_invoke_kfree_bulk_callback
-ffffffff81156f60 t perf_trace_rcu_invoke_kfree_bulk_callback
-ffffffff81157070 t trace_event_raw_event_rcu_batch_end
-ffffffff81157160 t perf_trace_rcu_batch_end
-ffffffff81157290 t trace_event_raw_event_rcu_torture_read
-ffffffff81157390 t perf_trace_rcu_torture_read
-ffffffff811574e0 t trace_event_raw_event_rcu_barrier
-ffffffff811575c0 t perf_trace_rcu_barrier
-ffffffff811576e0 t rcu_gp_is_normal
-ffffffff81157710 t rcu_gp_is_expedited
-ffffffff81157740 t rcu_expedite_gp
-ffffffff81157760 t rcu_unexpedite_gp
-ffffffff81157780 t rcu_end_inkernel_boot
-ffffffff811577b0 t rcu_inkernel_boot_has_ended
-ffffffff811577d0 t rcu_test_sync_prims
-ffffffff811577e0 t wakeme_after_rcu
-ffffffff81157800 t __wait_rcu_gp
-ffffffff81157960 t finish_rcuwait
-ffffffff81157990 t do_trace_rcu_torture_read
-ffffffff811579f0 t get_completed_synchronize_rcu
-ffffffff81157a00 t rcu_early_boot_tests
-ffffffff81157a10 t call_rcu_tasks
-ffffffff81157c00 t synchronize_rcu_tasks
-ffffffff81157cf0 t rcu_barrier_tasks
-ffffffff81157eb0 t show_rcu_tasks_classic_gp_kthread
-ffffffff81157fa0 t exit_tasks_rcu_start
-ffffffff81157fd0 t exit_tasks_rcu_stop
-ffffffff81158000 t exit_tasks_rcu_finish
-ffffffff81158030 t show_rcu_tasks_gp_kthreads
-ffffffff81158040 t trace_raw_output_rcu_utilization
-ffffffff81158090 t trace_raw_output_rcu_grace_period
-ffffffff811580f0 t trace_raw_output_rcu_future_grace_period
-ffffffff81158160 t trace_raw_output_rcu_grace_period_init
-ffffffff811581d0 t trace_raw_output_rcu_exp_grace_period
-ffffffff81158230 t trace_raw_output_rcu_exp_funnel_lock
-ffffffff811582a0 t trace_raw_output_rcu_nocb_wake
-ffffffff81158300 t trace_raw_output_rcu_preempt_task
-ffffffff81158360 t trace_raw_output_rcu_unlock_preempted_task
-ffffffff811583c0 t trace_raw_output_rcu_quiescent_state_report
-ffffffff81158440 t trace_raw_output_rcu_fqs
-ffffffff811584a0 t trace_raw_output_rcu_stall_warning
-ffffffff81158500 t trace_raw_output_rcu_dyntick
-ffffffff81158560 t trace_raw_output_rcu_callback
-ffffffff811585c0 t trace_raw_output_rcu_segcb_stats
-ffffffff81158640 t trace_raw_output_rcu_kvfree_callback
-ffffffff811586a0 t trace_raw_output_rcu_batch_start
-ffffffff81158700 t trace_raw_output_rcu_invoke_callback
-ffffffff81158760 t trace_raw_output_rcu_invoke_kvfree_callback
-ffffffff811587c0 t trace_raw_output_rcu_invoke_kfree_bulk_callback
-ffffffff81158820 t trace_raw_output_rcu_batch_end
-ffffffff811588c0 t trace_raw_output_rcu_torture_read
-ffffffff81158930 t trace_raw_output_rcu_barrier
-ffffffff811589a0 t cblist_init_generic
-ffffffff81158b90 t rcu_tasks_invoke_cbs_wq
-ffffffff81158bb0 t rcu_tasks_invoke_cbs
-ffffffff81158d90 t rcu_tasks_wait_gp
-ffffffff81159050 t call_rcu_tasks_iw_wakeup
-ffffffff81159070 t rcu_tasks_one_gp
-ffffffff81159460 t rcu_barrier_tasks_generic_cb
-ffffffff81159490 t rcu_tasks_pregp_step
-ffffffff811594a0 t rcu_tasks_pertask
-ffffffff81159550 t rcu_tasks_postscan
-ffffffff81159570 t check_all_holdout_tasks
-ffffffff81159700 t rcu_tasks_postgp
-ffffffff81159710 t rcu_tasks_kthread
-ffffffff81159760 t rcu_sync_init
-ffffffff811597c0 t rcu_sync_enter_start
-ffffffff811597e0 t rcu_sync_enter
-ffffffff81159910 t rcu_sync_func
-ffffffff811599b0 t rcu_sync_exit
-ffffffff81159a30 t rcu_sync_dtor
-ffffffff81159aa0 t init_srcu_struct
-ffffffff81159ac0 t init_srcu_struct_fields.llvm.17535961527093553903
-ffffffff81159d60 t cleanup_srcu_struct
-ffffffff81159fe0 t __srcu_read_lock
-ffffffff8115a010 t __srcu_read_unlock
-ffffffff8115a040 t call_srcu
-ffffffff8115a060 t synchronize_srcu_expedited
-ffffffff8115a080 t __synchronize_srcu
-ffffffff8115a1a0 t synchronize_srcu
-ffffffff8115a2a0 t get_state_synchronize_srcu
-ffffffff8115a2d0 t start_poll_synchronize_srcu
-ffffffff8115a2f0 t srcu_gp_start_if_needed.llvm.17535961527093553903
-ffffffff8115a8f0 t poll_state_synchronize_srcu
-ffffffff8115a910 t srcu_barrier
-ffffffff8115abd0 t srcu_batches_completed
-ffffffff8115abe0 t srcutorture_get_gp_data
-ffffffff8115ac00 t srcu_torture_stats_print
-ffffffff8115ada0 t process_srcu
-ffffffff8115b3f0 t init_srcu_struct_nodes
-ffffffff8115b760 t srcu_reschedule
-ffffffff8115b7e0 t srcu_gp_start
-ffffffff8115b8e0 t try_check_zero
-ffffffff8115ba70 t srcu_invoke_callbacks
-ffffffff8115bc10 t srcu_delay_timer
-ffffffff8115bc30 t srcu_funnel_exp_start
-ffffffff8115bd90 t srcu_barrier_cb
-ffffffff8115bdc0 t rcu_get_gp_kthreads_prio
-ffffffff8115bde0 t rcu_softirq_qs
-ffffffff8115be80 t rcu_qs
-ffffffff8115bf30 t rcu_preempt_deferred_qs
-ffffffff8115bfc0 t rcu_is_idle_cpu
-ffffffff8115c000 t rcu_dynticks_zero_in_eqs
-ffffffff8115c050 t rcu_momentary_dyntick_idle
-ffffffff8115c110 t rcu_get_gp_seq
-ffffffff8115c130 t rcu_exp_batches_completed
-ffffffff8115c150 t rcutorture_get_gp_data
-ffffffff8115c180 t rcu_needs_cpu
-ffffffff8115c1e0 t rcu_is_watching
-ffffffff8115c230 t rcu_request_urgent_qs_task
-ffffffff8115c270 t rcu_gp_slow_register
-ffffffff8115c290 t rcu_gp_slow_unregister
-ffffffff8115c2c0 t rcu_gp_set_torture_wait
-ffffffff8115c2d0 t rcutree_dying_cpu
-ffffffff8115c370 t rcutree_dead_cpu
-ffffffff8115c3b0 t rcu_boost_kthread_setaffinity
-ffffffff8115c530 t rcu_sched_clock_irq
-ffffffff8115cde0 t invoke_rcu_core
-ffffffff8115ced0 t rcu_force_quiescent_state
-ffffffff8115cff0 t call_rcu
-ffffffff8115d7d0 t __call_rcu_nocb_wake
-ffffffff8115dba0 t kvfree_call_rcu
-ffffffff8115dee0 t synchronize_rcu
-ffffffff8115e130 t synchronize_rcu_expedited
-ffffffff8115eb00 t get_completed_synchronize_rcu_full
-ffffffff8115eb20 t get_state_synchronize_rcu
-ffffffff8115eb50 t get_state_synchronize_rcu_full
-ffffffff8115eba0 t start_poll_synchronize_rcu
-ffffffff8115ebd0 t start_poll_synchronize_rcu_common
-ffffffff8115ece0 t start_poll_synchronize_rcu_full
-ffffffff8115ed30 t poll_state_synchronize_rcu
-ffffffff8115ed70 t poll_state_synchronize_rcu_full
-ffffffff8115edd0 t cond_synchronize_rcu
-ffffffff8115ee10 t cond_synchronize_rcu_full
-ffffffff8115ee70 t rcu_barrier
-ffffffff8115f400 t rcu_barrier_entrain
-ffffffff8115f5a0 t rcu_barrier_handler
-ffffffff8115f610 t rcutree_prepare_cpu
-ffffffff8115f790 t rcu_iw_handler
-ffffffff8115f7e0 t rcu_spawn_one_boost_kthread
-ffffffff8115f8e0 t rcu_spawn_cpu_nocb_kthread
-ffffffff8115fb00 t rcutree_online_cpu
-ffffffff8115fb80 t rcutree_offline_cpu
-ffffffff8115fc00 t rcu_cpu_starting
-ffffffff8115fe10 t rcu_report_qs_rnp
-ffffffff81160040 t rcu_report_dead
-ffffffff81160200 t rcutree_migrate_callbacks
-ffffffff81160530 t rcu_nocb_flush_bypass
-ffffffff81160660 t rcu_scheduler_starting
-ffffffff81160790 t rcu_init_geometry
-ffffffff81160950 t rcu_core_si
-ffffffff81160960 t rcu_pm_notify
-ffffffff811609a0 t start_poll_synchronize_rcu_expedited
-ffffffff81160a80 t rcu_exp_jiffies_till_stall_check
-ffffffff81160b00 t rcu_jiffies_till_stall_check
-ffffffff81160b40 t rcu_gp_might_be_stalled
-ffffffff81160bc0 t rcu_sysrq_start
-ffffffff81160bf0 t rcu_sysrq_end
-ffffffff81160c10 t rcu_cpu_stall_reset
-ffffffff81160c60 t rcu_check_boost_fail
-ffffffff81160df0 t show_rcu_gp_kthreads
-ffffffff81161810 t rcu_fwd_progress_check
-ffffffff81161970 t rcu_exp_sel_wait_wake
-ffffffff81162980 t start_poll_synchronize_rcu_expedited_full
-ffffffff811629d0 t cond_synchronize_rcu_expedited
-ffffffff81162a10 t cond_synchronize_rcu_expedited_full
-ffffffff81162a70 t rcu_nocb_flush_deferred_wakeup
-ffffffff81162ae0 t rcu_nocb_cpu_deoffload
-ffffffff81162ba0 t rcu_nocb_rdp_deoffload
-ffffffff81162ea0 t rcu_nocb_cpu_offload
-ffffffff81162f60 t rcu_nocb_rdp_offload
-ffffffff81163100 t rcu_bind_current_to_nocb
-ffffffff81163150 t rcu_note_context_switch
-ffffffff811636a0 t __rcu_read_lock
-ffffffff811636c0 t __rcu_read_unlock
-ffffffff811636f0 t rcu_read_unlock_special
-ffffffff81163890 t rcu_preempt_deferred_qs_irqrestore
-ffffffff81163ce0 t exit_rcu
-ffffffff81163d40 t param_set_first_fqs_jiffies
-ffffffff81163e00 t param_set_next_fqs_jiffies
-ffffffff81163ed0 t note_gp_changes
-ffffffff81163fd0 t rcu_accelerate_cbs_unlocked
-ffffffff811640a0 t __note_gp_changes
-ffffffff811642e0 t rcu_accelerate_cbs
-ffffffff811644d0 t rcu_start_this_gp
-ffffffff81164980 t schedule_page_work_fn
-ffffffff811649b0 t rcu_stall_kick_kthreads
-ffffffff81164ab0 t print_other_cpu_stall
-ffffffff81165120 t print_cpu_stall_info
-ffffffff811653a0 t rcu_check_gp_kthread_expired_fqs_timer
-ffffffff81165450 t rcu_check_gp_kthread_starvation
-ffffffff81165570 t rcu_dump_cpu_stacks
-ffffffff81165680 t check_slow_task
-ffffffff811656e0 t rcu_barrier_callback
-ffffffff811657d0 t rcu_gp_kthread
-ffffffff811659b0 t rcu_gp_init
-ffffffff811661e0 t rcu_gp_fqs_loop
-ffffffff81166900 t rcu_gp_cleanup
-ffffffff81166fd0 t rcu_cleanup_dead_rnp
-ffffffff81167060 t dump_blkd_tasks
-ffffffff811672d0 t dyntick_save_progress_counter
-ffffffff811673c0 t rcu_implicit_dynticks_qs
-ffffffff811676a0 t rcu_initiate_boost
-ffffffff81167760 t rcu_cpu_kthread_should_run
-ffffffff81167790 t rcu_cpu_kthread
-ffffffff811679f0 t rcu_cpu_kthread_setup
-ffffffff81167a70 t rcu_cpu_kthread_park
-ffffffff81167aa0 t rcu_core
-ffffffff81167f30 t rcu_do_batch
-ffffffff811685f0 t kfree_rcu_work
-ffffffff81168930 t kfree_rcu_monitor
-ffffffff81168b50 t fill_page_cache_func
-ffffffff81168c20 t kfree_rcu_shrink_count
-ffffffff81168ca0 t kfree_rcu_shrink_scan
-ffffffff81168dd0 t sync_rcu_do_polled_gp
-ffffffff81168ed0 t strict_work_handler
-ffffffff81168f10 t do_nocb_deferred_wakeup_timer
-ffffffff81168fb0 t trace_rcu_nocb_wake
-ffffffff81169010 t do_nocb_deferred_wakeup_common
-ffffffff811690a0 t __wake_nocb_gp
-ffffffff81169210 t rcu_panic
-ffffffff81169230 t sysrq_show_rcu
-ffffffff81169240 t rcu_report_exp_cpu_mult
-ffffffff81169330 t __rcu_report_exp_rnp
-ffffffff81169400 t sync_rcu_exp_select_node_cpus
-ffffffff81169820 t rcu_exp_handler
-ffffffff81169940 t wait_rcu_exp_gp
-ffffffff81169960 t rcu_advance_cbs_nowake
-ffffffff811699e0 t wake_nocb_gp_defer
-ffffffff81169af0 t rdp_offload_toggle
-ffffffff81169ba0 t rcu_nocb_gp_kthread
-ffffffff8116a6b0 t rcu_nocb_cb_kthread
-ffffffff8116aac0 t nocb_gp_sleep
-ffffffff8116ac50 t rcu_preempt_deferred_qs_handler
-ffffffff8116ac60 t rcu_boost_kthread
-ffffffff8116af80 t rcu_cblist_init
-ffffffff8116afa0 t rcu_cblist_enqueue
-ffffffff8116afc0 t rcu_cblist_flush_enqueue
-ffffffff8116b020 t rcu_cblist_dequeue
-ffffffff8116b050 t rcu_segcblist_n_segment_cbs
-ffffffff8116b070 t rcu_segcblist_add_len
-ffffffff8116b080 t rcu_segcblist_inc_len
-ffffffff8116b0a0 t rcu_segcblist_init
-ffffffff8116b0f0 t rcu_segcblist_disable
-ffffffff8116b120 t rcu_segcblist_offload
-ffffffff8116b150 t rcu_segcblist_ready_cbs
-ffffffff8116b180 t rcu_segcblist_pend_cbs
-ffffffff8116b1b0 t rcu_segcblist_first_cb
-ffffffff8116b1d0 t rcu_segcblist_first_pend_cb
-ffffffff8116b200 t rcu_segcblist_nextgp
-ffffffff8116b230 t rcu_segcblist_enqueue
-ffffffff8116b260 t rcu_segcblist_entrain
-ffffffff8116b2f0 t rcu_segcblist_extract_done_cbs
-ffffffff8116b380 t rcu_segcblist_extract_pend_cbs
-ffffffff8116b410 t rcu_segcblist_insert_count
-ffffffff8116b430 t rcu_segcblist_insert_done_cbs
-ffffffff8116b4a0 t rcu_segcblist_insert_pend_cbs
-ffffffff8116b4d0 t rcu_segcblist_advance
-ffffffff8116b590 t rcu_segcblist_accelerate
-ffffffff8116b660 t rcu_segcblist_merge
-ffffffff8116b880 t dmam_free_coherent
-ffffffff8116b950 t dmam_release
-ffffffff8116b9f0 t dmam_match
-ffffffff8116ba30 t dmam_alloc_attrs
-ffffffff8116bb30 t dma_alloc_attrs
-ffffffff8116bb90 t dma_map_page_attrs
-ffffffff8116bd80 t dma_unmap_page_attrs
-ffffffff8116bf10 t dma_map_sg_attrs
-ffffffff8116bf30 t __dma_map_sg_attrs
-ffffffff8116bfb0 t dma_map_sgtable
-ffffffff8116bfe0 t dma_unmap_sg_attrs
-ffffffff8116c030 t dma_map_resource
-ffffffff8116c090 t dma_unmap_resource
-ffffffff8116c0d0 t dma_sync_single_for_cpu
-ffffffff8116c190 t dma_sync_single_for_device
-ffffffff8116c250 t dma_sync_sg_for_cpu
-ffffffff8116c2a0 t dma_sync_sg_for_device
-ffffffff8116c2f0 t dma_get_sgtable_attrs
-ffffffff8116c340 t dma_pgprot
-ffffffff8116c350 t dma_can_mmap
-ffffffff8116c390 t dma_mmap_attrs
-ffffffff8116c3e0 t dma_get_required_mask
-ffffffff8116c430 t dma_free_attrs
-ffffffff8116c4c0 t dma_alloc_pages
-ffffffff8116c530 t dma_free_pages
-ffffffff8116c580 t dma_mmap_pages
-ffffffff8116c5f0 t dma_alloc_noncontiguous
-ffffffff8116c7c0 t dma_free_noncontiguous
-ffffffff8116c860 t dma_vmap_noncontiguous
-ffffffff8116c8e0 t dma_vunmap_noncontiguous
-ffffffff8116c920 t dma_mmap_noncontiguous
-ffffffff8116c9f0 t dma_pci_p2pdma_supported
-ffffffff8116ca30 t dma_set_mask
-ffffffff8116cac0 t dma_set_coherent_mask
-ffffffff8116cb30 t dma_max_mapping_size
-ffffffff8116cb80 t dma_opt_mapping_size
-ffffffff8116cc20 t dma_need_sync
-ffffffff8116cc70 t dma_get_merge_boundary
-ffffffff8116ccb0 t dma_direct_get_required_mask
-ffffffff8116cd30 t dma_direct_alloc
-ffffffff8116ce80 t __dma_direct_alloc_pages
-ffffffff8116d080 t dma_direct_free
-ffffffff8116d160 t dma_direct_alloc_pages
-ffffffff8116d210 t dma_direct_free_pages
-ffffffff8116d240 t dma_direct_sync_sg_for_device
-ffffffff8116d320 t dma_direct_sync_sg_for_cpu
-ffffffff8116d400 t dma_direct_unmap_sg
-ffffffff8116d5c0 t dma_direct_map_sg
-ffffffff8116d7f0 t dma_direct_map_resource
-ffffffff8116d8b0 t dma_direct_get_sgtable
-ffffffff8116d970 t dma_direct_can_mmap
-ffffffff8116d980 t dma_direct_mmap
-ffffffff8116da30 t dma_direct_supported
-ffffffff8116dae0 t dma_direct_max_mapping_size
-ffffffff8116db70 t dma_direct_need_sync
-ffffffff8116dbe0 t dma_direct_set_offset
-ffffffff8116dc70 t dma_common_get_sgtable
-ffffffff8116dd30 t dma_common_mmap
-ffffffff8116de00 t dma_common_alloc_pages
-ffffffff8116def0 t dma_common_free_pages
-ffffffff8116df60 t dma_dummy_mmap.llvm.18400773960905511909
-ffffffff8116df70 t dma_dummy_map_page.llvm.18400773960905511909
-ffffffff8116df90 t dma_dummy_map_sg.llvm.18400773960905511909
-ffffffff8116dfa0 t dma_dummy_supported.llvm.18400773960905511909
-ffffffff8116dfb0 t __traceiter_swiotlb_bounced
-ffffffff8116e010 t trace_event_raw_event_swiotlb_bounced
-ffffffff8116e180 t perf_trace_swiotlb_bounced
-ffffffff8116e330 t swiotlb_max_segment
-ffffffff8116e360 t swiotlb_size_or_default
-ffffffff8116e380 t swiotlb_print_info
-ffffffff8116e3e0 t swiotlb_adjust_nareas
-ffffffff8116e4c0 t swiotlb_init_late
-ffffffff8116e9f0 t swiotlb_tbl_map_single
-ffffffff8116f120 t swiotlb_bounce
-ffffffff8116f2d0 t swiotlb_tbl_unmap_single
-ffffffff8116f490 t swiotlb_sync_single_for_device
-ffffffff8116f4c0 t swiotlb_sync_single_for_cpu
-ffffffff8116f4f0 t swiotlb_map
-ffffffff8116f710 t swiotlb_max_mapping_size
-ffffffff8116f760 t is_swiotlb_active
-ffffffff8116f790 t trace_raw_output_swiotlb_bounced
-ffffffff8116f810 t fops_io_tlb_used_open
-ffffffff8116f830 t io_tlb_used_get
-ffffffff8116f8e0 t dma_common_find_pages
-ffffffff8116f910 t dma_common_pages_remap
-ffffffff8116f960 t dma_common_contiguous_remap
-ffffffff8116fa60 t dma_common_free_remap
-ffffffff8116faa0 t __traceiter_sys_enter
-ffffffff8116faf0 t __traceiter_sys_exit
-ffffffff8116fb40 t trace_event_raw_event_sys_enter
-ffffffff8116fc10 t perf_trace_sys_enter
-ffffffff8116fd20 t trace_event_raw_event_sys_exit
-ffffffff8116fdd0 t perf_trace_sys_exit
-ffffffff8116fea0 t syscall_enter_from_user_mode_work
-ffffffff81170010 t syscall_exit_to_user_mode_work
-ffffffff81170140 t exit_to_user_mode_prepare
-ffffffff811701c0 t raw_irqentry_exit_cond_resched
-ffffffff81170200 t trace_raw_output_sys_enter
-ffffffff81170270 t trace_raw_output_sys_exit
-ffffffff811702d0 t exit_to_user_mode_loop
-ffffffff811703a0 t syscall_user_dispatch
-ffffffff81170420 t trigger_sigsys
-ffffffff811704c0 t set_syscall_user_dispatch
-ffffffff81170560 t freezing_slow_path
-ffffffff811705c0 t frozen
-ffffffff811705e0 t __refrigerator
-ffffffff81170740 t freeze_task
-ffffffff81170860 t __thaw_task
-ffffffff81170960 t __set_task_special
-ffffffff811709a0 t set_freezable
-ffffffff81170a20 t __set_task_frozen
-ffffffff81170aa0 t profile_setup
-ffffffff81170c40 t profile_task_exit
-ffffffff81170c60 t profile_munmap
-ffffffff81170c80 t profile_event_register
-ffffffff81170cb0 t profile_event_unregister
-ffffffff81170ce0 t profile_hits
-ffffffff81170f80 t profile_tick
-ffffffff81170ff0 t create_prof_cpu_mask
-ffffffff81171020 t setup_profiling_timer
-ffffffff81171030 t profile_prepare_cpu
-ffffffff81171120 t profile_dead_cpu
-ffffffff81171220 t profile_online_cpu
-ffffffff81171240 t prof_cpu_mask_proc_open
-ffffffff81171260 t prof_cpu_mask_proc_write
-ffffffff81171310 t prof_cpu_mask_proc_show
-ffffffff81171340 t read_profile
-ffffffff811715d0 t write_profile
-ffffffff81171780 t __profile_flip_buffers
-ffffffff811717c0 t stack_trace_print
-ffffffff81171820 t stack_trace_snprint
-ffffffff811718e0 t stack_trace_save
-ffffffff81171950 t stack_trace_consume_entry
-ffffffff811719a0 t stack_trace_save_tsk
-ffffffff81171a70 t stack_trace_consume_entry_nosched
-ffffffff81171ad0 t stack_trace_save_regs
-ffffffff81171b40 t stack_trace_save_user
-ffffffff81171bc0 t filter_irq_stacks
-ffffffff81171c30 t __x64_sys_time
-ffffffff81171c70 t __x64_sys_stime
-ffffffff81171cf0 t __x64_sys_gettimeofday
-ffffffff81171dd0 t do_sys_settimeofday64
-ffffffff81171e90 t __x64_sys_settimeofday
-ffffffff81172040 t __x64_sys_adjtimex
-ffffffff811720f0 t jiffies_to_msecs
-ffffffff81172110 t jiffies_to_usecs
-ffffffff81172130 t mktime64
-ffffffff811721c0 t ns_to_kernel_old_timeval
-ffffffff81172250 t ns_to_timespec64
-ffffffff811722d0 t set_normalized_timespec64
-ffffffff81172360 t __msecs_to_jiffies
-ffffffff81172390 t __usecs_to_jiffies
-ffffffff811723d0 t timespec64_to_jiffies
-ffffffff81172430 t jiffies_to_timespec64
-ffffffff81172470 t jiffies_to_clock_t
-ffffffff811724a0 t clock_t_to_jiffies
-ffffffff811724e0 t jiffies_64_to_clock_t
-ffffffff81172510 t nsec_to_clock_t
-ffffffff81172540 t jiffies64_to_nsecs
-ffffffff81172560 t jiffies64_to_msecs
-ffffffff81172580 t nsecs_to_jiffies64
-ffffffff811725b0 t nsecs_to_jiffies
-ffffffff811725e0 t timespec64_add_safe
-ffffffff81172690 t get_timespec64
-ffffffff81172710 t put_timespec64
-ffffffff81172780 t get_old_timespec32
-ffffffff811727f0 t put_old_timespec32
-ffffffff81172850 t get_itimerspec64
-ffffffff81172910 t put_itimerspec64
-ffffffff811729b0 t get_old_itimerspec32
-ffffffff81172a60 t put_old_itimerspec32
-ffffffff81172b00 t __traceiter_timer_init
-ffffffff81172b50 t __traceiter_timer_start
-ffffffff81172bb0 t __traceiter_timer_expire_entry
-ffffffff81172c00 t __traceiter_timer_expire_exit
-ffffffff81172c50 t __traceiter_timer_cancel
-ffffffff81172ca0 t __traceiter_hrtimer_init
-ffffffff81172d00 t __traceiter_hrtimer_start
-ffffffff81172d50 t __traceiter_hrtimer_expire_entry
-ffffffff81172da0 t __traceiter_hrtimer_expire_exit
-ffffffff81172df0 t __traceiter_hrtimer_cancel
-ffffffff81172e40 t __traceiter_itimer_state
-ffffffff81172ea0 t __traceiter_itimer_expire
-ffffffff81172f00 t __traceiter_tick_stop
-ffffffff81172f50 t trace_event_raw_event_timer_class
-ffffffff81173010 t perf_trace_timer_class
-ffffffff81173100 t trace_event_raw_event_timer_start
-ffffffff811731e0 t perf_trace_timer_start
-ffffffff81173300 t trace_event_raw_event_timer_expire_entry
-ffffffff811733e0 t perf_trace_timer_expire_entry
-ffffffff811734f0 t trace_event_raw_event_hrtimer_init
-ffffffff811735c0 t perf_trace_hrtimer_init
-ffffffff811736d0 t trace_event_raw_event_hrtimer_start
-ffffffff811737b0 t perf_trace_hrtimer_start
-ffffffff811738d0 t trace_event_raw_event_hrtimer_expire_entry
-ffffffff811739a0 t perf_trace_hrtimer_expire_entry
-ffffffff81173ab0 t trace_event_raw_event_hrtimer_class
-ffffffff81173b70 t perf_trace_hrtimer_class
-ffffffff81173c60 t trace_event_raw_event_itimer_state
-ffffffff81173d50 t perf_trace_itimer_state
-ffffffff81173e80 t trace_event_raw_event_itimer_expire
-ffffffff81173f60 t perf_trace_itimer_expire
-ffffffff81174070 t trace_event_raw_event_tick_stop
-ffffffff81174130 t perf_trace_tick_stop
-ffffffff81174230 t timers_update_nohz
-ffffffff81174260 t __round_jiffies
-ffffffff811742c0 t __round_jiffies_relative
-ffffffff81174330 t round_jiffies
-ffffffff81174390 t round_jiffies_relative
-ffffffff81174400 t __round_jiffies_up
-ffffffff81174450 t __round_jiffies_up_relative
-ffffffff811744b0 t round_jiffies_up
-ffffffff81174500 t round_jiffies_up_relative
-ffffffff81174560 t init_timer_key
-ffffffff811745f0 t mod_timer_pending
-ffffffff81174610 t __mod_timer.llvm.1636415617355853904
-ffffffff811749f0 t mod_timer
-ffffffff81174a10 t timer_reduce
-ffffffff81174a30 t add_timer
-ffffffff81174a60 t add_timer_on
-ffffffff81174bf0 t del_timer
-ffffffff81174ca0 t detach_if_pending
-ffffffff81174d60 t try_to_del_timer_sync
-ffffffff81174e20 t del_timer_sync
-ffffffff81174e70 t get_next_timer_interrupt
-ffffffff81174f90 t __next_timer_interrupt
-ffffffff811750f0 t timer_clear_idle
-ffffffff81175120 t update_process_times
-ffffffff811751b0 t process_timeout
-ffffffff811751d0 t timers_prepare_cpu
-ffffffff81175260 t timers_dead_cpu
-ffffffff811754b0 t run_timer_softirq
-ffffffff81175500 t msleep
-ffffffff81175540 t msleep_interruptible
-ffffffff811755a0 t trace_raw_output_timer_class
-ffffffff811755f0 t trace_raw_output_timer_start
-ffffffff811756c0 t trace_raw_output_timer_expire_entry
-ffffffff81175720 t trace_raw_output_hrtimer_init
-ffffffff811757c0 t trace_raw_output_hrtimer_start
-ffffffff81175860 t trace_raw_output_hrtimer_expire_entry
-ffffffff811758c0 t trace_raw_output_hrtimer_class
-ffffffff81175910 t trace_raw_output_itimer_state
-ffffffff811759b0 t trace_raw_output_itimer_expire
-ffffffff81175a10 t trace_raw_output_tick_stop
-ffffffff81175a90 t timer_migration_handler
-ffffffff81175b40 t timer_update_keys
-ffffffff81175bc0 t calc_wheel_index
-ffffffff81175d50 t enqueue_timer
-ffffffff81175e20 t __run_timers
-ffffffff811760d0 t call_timer_fn
-ffffffff81176210 t ktime_get_real
-ffffffff81176230 t ktime_get_real
-ffffffff81176250 t ktime_get_boottime
-ffffffff81176270 t ktime_get_boottime
-ffffffff81176290 t ktime_get_clocktai
-ffffffff811762b0 t ktime_add_safe
-ffffffff811762f0 t clock_was_set
-ffffffff81176530 t retrigger_next_event.llvm.8316441673460706030
-ffffffff81176610 t clock_was_set_delayed
-ffffffff81176640 t hrtimers_resume_local
-ffffffff81176650 t hrtimer_forward
-ffffffff81176720 t hrtimer_start_range_ns
-ffffffff81176a60 t hrtimer_reprogram
-ffffffff81176b20 t hrtimer_try_to_cancel
-ffffffff81176bf0 t hrtimer_active
-ffffffff81176c50 t remove_hrtimer
-ffffffff81176da0 t hrtimer_cancel
-ffffffff81176dd0 t __hrtimer_get_remaining
-ffffffff81176e50 t hrtimer_get_next_event
-ffffffff81177020 t hrtimer_next_event_without
-ffffffff811771f0 t hrtimer_init
-ffffffff81177330 t hrtimer_interrupt
-ffffffff811776d0 t __hrtimer_run_queues
-ffffffff811779a0 t hrtimer_update_next_event
-ffffffff81177b40 t hrtimer_run_queues
-ffffffff81177ca0 t hrtimer_sleeper_start_expires
-ffffffff81177cc0 t hrtimer_init_sleeper
-ffffffff81177e10 t nanosleep_copyout
-ffffffff81177e50 t hrtimer_nanosleep
-ffffffff81177f90 t __x64_sys_nanosleep
-ffffffff81178160 t hrtimers_prepare_cpu
-ffffffff81178310 t hrtimers_dead_cpu
-ffffffff811785a0 t hrtimer_update_softirq_timer
-ffffffff811786a0 t hrtimer_run_softirq.llvm.8316441673460706030
-ffffffff81178770 t clock_was_set_work
-ffffffff81178790 t hrtimer_wakeup
-ffffffff811787c0 t ktime_get_mono_fast_ns
-ffffffff81178860 t ktime_get_raw_fast_ns
-ffffffff81178900 t ktime_get_boot_fast_ns
-ffffffff811789a0 t ktime_get_tai_fast_ns
-ffffffff81178a40 t ktime_get_real_fast_ns
-ffffffff81178ae0 t ktime_get_fast_timestamps
-ffffffff81178ba0 t pvclock_gtod_register_notifier
-ffffffff81178c00 t pvclock_gtod_unregister_notifier
-ffffffff81178c50 t ktime_get_real_ts64
-ffffffff81178d50 t ktime_get
-ffffffff81178e00 t ktime_get_resolution_ns
-ffffffff81178e50 t ktime_get_with_offset
-ffffffff81178f20 t ktime_get_coarse_with_offset
-ffffffff81178f90 t ktime_mono_to_any
-ffffffff81178fe0 t ktime_get_raw
-ffffffff81179080 t ktime_get_ts64
-ffffffff811791b0 t ktime_get_seconds
-ffffffff811791d0 t ktime_get_real_seconds
-ffffffff811791f0 t ktime_get_snapshot
-ffffffff81179370 t get_device_system_crosststamp
-ffffffff811797a0 t do_settimeofday64
-ffffffff81179b30 t tk_set_wall_to_mono
-ffffffff81179c40 t timekeeping_update
-ffffffff81179ec0 t timekeeping_warp_clock
-ffffffff81179f30 t timekeeping_inject_offset
-ffffffff8117a2e0 t timekeeping_notify
-ffffffff8117a330 t change_clocksource
-ffffffff8117a4b0 t ktime_get_raw_ts64
-ffffffff8117a5a0 t timekeeping_valid_for_hres
-ffffffff8117a5e0 t timekeeping_max_deferment
-ffffffff8117a620 t tk_setup_internals
-ffffffff8117a790 t timekeeping_rtc_skipresume
-ffffffff8117a7b0 t timekeeping_rtc_skipsuspend
-ffffffff8117a7d0 t timekeeping_inject_sleeptime64
-ffffffff8117a920 t __timekeeping_inject_sleeptime
-ffffffff8117ab70 t timekeeping_resume
-ffffffff8117ad10 t timekeeping_suspend
-ffffffff8117b250 t update_wall_time
-ffffffff8117b280 t timekeeping_advance.llvm.7019641539924101344
-ffffffff8117b8d0 t getboottime64
-ffffffff8117b900 t ktime_get_coarse_real_ts64
-ffffffff8117b950 t ktime_get_coarse_ts64
-ffffffff8117b9b0 t do_timer
-ffffffff8117b9d0 t ktime_get_update_offsets_now
-ffffffff8117bad0 t random_get_entropy_fallback
-ffffffff8117bb10 t do_adjtimex
-ffffffff8117bed0 t dummy_clock_read
-ffffffff8117bf00 t ntp_clear
-ffffffff8117bfa0 t ntp_tick_length
-ffffffff8117bfc0 t ntp_get_next_leap
-ffffffff8117c010 t second_overflow
-ffffffff8117c2a0 t ntp_notify_cmos_timer
-ffffffff8117c2e0 t __do_adjtimex
-ffffffff8117c940 t sync_hw_clock
-ffffffff8117cb50 t sync_timer_callback
-ffffffff8117cb80 t clocks_calc_mult_shift
-ffffffff8117cc50 t clocksource_mark_unstable
-ffffffff8117cd50 t __clocksource_unstable
-ffffffff8117cdc0 t clocksource_verify_percpu
-ffffffff8117d1f0 t clocksource_verify_one_cpu
-ffffffff8117d210 t clocksource_start_suspend_timing
-ffffffff8117d2a0 t clocksource_stop_suspend_timing
-ffffffff8117d340 t clocksource_suspend
-ffffffff8117d390 t clocksource_resume
-ffffffff8117d3e0 t clocksource_touch_watchdog
-ffffffff8117d400 t clocks_calc_max_nsecs
-ffffffff8117d450 t __clocksource_update_freq_scale
-ffffffff8117d6d0 t __clocksource_register_scale
-ffffffff8117d890 t clocksource_select_watchdog
-ffffffff8117d9f0 t clocksource_change_rating
-ffffffff8117db60 t clocksource_unregister
-ffffffff8117dbb0 t clocksource_unbind
-ffffffff8117dd80 t sysfs_get_uname
-ffffffff8117dde0 t clocksource_watchdog_work
-ffffffff8117de20 t clocksource_watchdog_kthread
-ffffffff8117de60 t __clocksource_watchdog_kthread
-ffffffff8117e020 t __clocksource_select
-ffffffff8117e190 t clocksource_watchdog
-ffffffff8117e720 t current_clocksource_show
-ffffffff8117e770 t current_clocksource_store
-ffffffff8117e7f0 t unbind_clocksource_store
-ffffffff8117e910 t available_clocksource_show
-ffffffff8117e9e0 t register_refined_jiffies
-ffffffff8117eaa0 t jiffies_read
-ffffffff8117eac0 t sysrq_timer_list_show
-ffffffff8117f060 t print_tickdevice
-ffffffff8117f280 t SEQ_printf
-ffffffff8117f310 t timer_list_start
-ffffffff8117f3b0 t timer_list_stop
-ffffffff8117f3c0 t timer_list_next
-ffffffff8117f410 t timer_list_show
-ffffffff8117f9b0 t time64_to_tm
-ffffffff8117fbf0 t timecounter_init
-ffffffff8117fc50 t timecounter_read
-ffffffff8117fcb0 t timecounter_cyc2time
-ffffffff8117fd20 t __traceiter_alarmtimer_suspend
-ffffffff8117fd70 t __traceiter_alarmtimer_fired
-ffffffff8117fdc0 t __traceiter_alarmtimer_start
-ffffffff8117fe10 t __traceiter_alarmtimer_cancel
-ffffffff8117fe60 t trace_event_raw_event_alarmtimer_suspend
-ffffffff8117ff20 t perf_trace_alarmtimer_suspend
-ffffffff81180020 t trace_event_raw_event_alarm_class
-ffffffff811800f0 t perf_trace_alarm_class
-ffffffff81180200 t alarmtimer_get_rtcdev
-ffffffff81180240 t alarm_expires_remaining
-ffffffff81180290 t alarm_init
-ffffffff811802f0 t alarm_start
-ffffffff81180400 t alarm_start_relative
-ffffffff81180470 t alarm_restart
-ffffffff81180510 t alarm_try_to_cancel
-ffffffff81180600 t alarm_cancel
-ffffffff81180630 t alarm_forward
-ffffffff811806c0 t alarm_forward_now
-ffffffff81180790 t alarm_clock_getres
-ffffffff811807f0 t alarm_clock_get_timespec
-ffffffff81180890 t alarm_clock_get_ktime
-ffffffff81180920 t alarm_timer_create
-ffffffff81180a20 t alarm_timer_nsleep
-ffffffff81180ca0 t alarm_timer_rearm
-ffffffff81180d90 t alarm_timer_forward
-ffffffff81180e30 t alarm_timer_remaining
-ffffffff81180e50 t alarm_timer_try_to_cancel
-ffffffff81180e70 t alarm_timer_arm
-ffffffff81180f00 t alarm_timer_wait_running
-ffffffff81180f10 t trace_raw_output_alarmtimer_suspend
-ffffffff81180f90 t trace_raw_output_alarm_class
-ffffffff81181020 t alarmtimer_fired
-ffffffff811811e0 t alarm_handle_timer
-ffffffff81181340 t alarmtimer_nsleep_wakeup
-ffffffff81181370 t alarmtimer_do_nsleep
-ffffffff81181560 t get_boottime_timespec
-ffffffff81181590 t alarmtimer_rtc_add_device
-ffffffff81181700 t alarmtimer_suspend
-ffffffff81181990 t alarmtimer_resume
-ffffffff811819e0 t posixtimer_rearm
-ffffffff81181aa0 t __lock_timer
-ffffffff81181b70 t posix_timer_event
-ffffffff81181bb0 t __x64_sys_timer_create
-ffffffff81181c70 t common_timer_get
-ffffffff81181d40 t __x64_sys_timer_gettime
-ffffffff81181e30 t __x64_sys_timer_getoverrun
-ffffffff81181eb0 t common_timer_set
-ffffffff81181fb0 t __x64_sys_timer_settime
-ffffffff81182250 t common_timer_del
-ffffffff81182290 t __x64_sys_timer_delete
-ffffffff81182440 t exit_itimers
-ffffffff81182610 t __x64_sys_clock_settime
-ffffffff81182710 t __x64_sys_clock_gettime
-ffffffff81182800 t do_clock_adjtime
-ffffffff81182870 t __x64_sys_clock_adjtime
-ffffffff811829a0 t __x64_sys_clock_getres
-ffffffff81182a90 t __x64_sys_clock_nanosleep
-ffffffff81182bf0 t do_timer_create
-ffffffff81183130 t k_itimer_rcu_free
-ffffffff81183150 t posix_get_hrtimer_res
-ffffffff81183170 t posix_clock_realtime_set
-ffffffff81183190 t posix_get_realtime_timespec
-ffffffff811831b0 t posix_get_realtime_ktime
-ffffffff811831d0 t posix_clock_realtime_adj
-ffffffff811831f0 t common_timer_create
-ffffffff81183210 t common_nsleep
-ffffffff81183260 t common_hrtimer_rearm
-ffffffff811832c0 t common_hrtimer_forward
-ffffffff811832e0 t common_hrtimer_remaining
-ffffffff81183300 t common_hrtimer_try_to_cancel
-ffffffff81183320 t common_hrtimer_arm
-ffffffff811833e0 t common_timer_wait_running
-ffffffff811833f0 t posix_timer_fn
-ffffffff811834c0 t posix_get_monotonic_timespec
-ffffffff811834e0 t posix_get_monotonic_ktime
-ffffffff811834f0 t common_nsleep_timens
-ffffffff81183540 t posix_get_monotonic_raw
-ffffffff81183560 t posix_get_coarse_res
-ffffffff81183590 t posix_get_realtime_coarse
-ffffffff811835b0 t posix_get_monotonic_coarse
-ffffffff811835d0 t posix_get_boottime_timespec
-ffffffff81183600 t posix_get_boottime_ktime
-ffffffff81183620 t posix_get_tai_timespec
-ffffffff81183650 t posix_get_tai_ktime
-ffffffff81183670 t posix_cputimers_group_init
-ffffffff811836f0 t update_rlimit_cpu
-ffffffff811837a0 t set_process_cpu_timer
-ffffffff81183830 t thread_group_sample_cputime
-ffffffff81183880 t posix_cpu_timers_exit
-ffffffff81183950 t posix_cpu_timers_exit_group
-ffffffff81183a30 t clear_posix_cputimers_work
-ffffffff81183a60 t posix_cpu_timers_work
-ffffffff81183f00 t run_posix_cpu_timers
-ffffffff81183ff0 t cpu_clock_sample_group
-ffffffff81184170 t posix_cpu_clock_getres.llvm.13583369350682960154
-ffffffff81184260 t posix_cpu_clock_set.llvm.13583369350682960154
-ffffffff81184330 t posix_cpu_clock_get.llvm.13583369350682960154
-ffffffff81184560 t posix_cpu_timer_create.llvm.13583369350682960154
-ffffffff81184670 t posix_cpu_nsleep.llvm.13583369350682960154
-ffffffff81184710 t posix_cpu_timer_set.llvm.13583369350682960154
-ffffffff81184b70 t posix_cpu_timer_del.llvm.13583369350682960154
-ffffffff81184ce0 t posix_cpu_timer_get.llvm.13583369350682960154
-ffffffff81184e80 t posix_cpu_timer_rearm.llvm.13583369350682960154
-ffffffff811850c0 t process_cpu_clock_getres
-ffffffff81185120 t process_cpu_clock_get
-ffffffff81185140 t process_cpu_timer_create
-ffffffff81185160 t process_cpu_nsleep
-ffffffff811851c0 t thread_cpu_clock_getres
-ffffffff81185210 t thread_cpu_clock_get
-ffffffff81185280 t thread_cpu_timer_create
-ffffffff811852a0 t cpu_timer_fire
-ffffffff81185320 t collect_posix_cputimers
-ffffffff81185550 t check_cpu_itimer
-ffffffff81185620 t do_cpu_nanosleep
-ffffffff81185830 t posix_cpu_nsleep_restart
-ffffffff81185890 t posix_clock_register
-ffffffff81185930 t posix_clock_unregister
-ffffffff81185990 t pc_clock_getres.llvm.294624456519282215
-ffffffff81185a40 t pc_clock_settime.llvm.294624456519282215
-ffffffff81185b00 t pc_clock_gettime.llvm.294624456519282215
-ffffffff81185bb0 t pc_clock_adjtime.llvm.294624456519282215
-ffffffff81185c70 t posix_clock_read
-ffffffff81185d00 t posix_clock_poll
-ffffffff81185d80 t posix_clock_ioctl
-ffffffff81185e00 t posix_clock_open
-ffffffff81185e90 t posix_clock_release
-ffffffff81185ef0 t __x64_sys_getitimer
-ffffffff81186140 t it_real_fn
-ffffffff811861b0 t clear_itimer
-ffffffff81186250 t do_setitimer
-ffffffff81186450 t __x64_sys_alarm
-ffffffff81186500 t __x64_sys_setitimer
-ffffffff81186700 t set_cpu_itimer
-ffffffff811868e0 t clockevent_delta2ns
-ffffffff81186970 t clockevents_switch_state
-ffffffff81186a50 t clockevents_shutdown
-ffffffff81186aa0 t clockevents_tick_resume
-ffffffff81186ad0 t clockevents_program_event
-ffffffff81186bc0 t clockevents_program_min_delta
-ffffffff81186cd0 t clockevents_unbind_device
-ffffffff81186d50 t clockevents_register_device
-ffffffff81186ef0 t clockevents_config_and_register
-ffffffff81186f20 t clockevents_config
-ffffffff811870a0 t __clockevents_update_freq
-ffffffff81187110 t clockevents_update_freq
-ffffffff811871e0 t clockevents_handle_noop
-ffffffff811871f0 t clockevents_exchange_device
-ffffffff811872f0 t clockevents_suspend
-ffffffff81187350 t clockevents_resume
-ffffffff811873a0 t tick_offline_cpu
-ffffffff811873d0 t tick_cleanup_dead_cpu
-ffffffff81187520 t __clockevents_unbind
-ffffffff81187650 t current_device_show
-ffffffff811876f0 t unbind_device_store
-ffffffff811878d0 t tick_get_device
-ffffffff81187900 t tick_is_oneshot_available
-ffffffff81187940 t tick_handle_periodic
-ffffffff811879d0 t tick_periodic
-ffffffff81187a80 t tick_setup_periodic
-ffffffff81187b30 t tick_install_replacement
-ffffffff81187bc0 t tick_setup_device
-ffffffff81187cb0 t tick_check_replacement
-ffffffff81187db0 t tick_check_new_device
-ffffffff81187e60 t tick_broadcast_oneshot_control
-ffffffff81187ea0 t tick_handover_do_timer
-ffffffff81187ee0 t tick_shutdown
-ffffffff81187f40 t tick_suspend_local
-ffffffff81187f70 t tick_resume_local
-ffffffff81187fe0 t tick_suspend
-ffffffff81188020 t tick_resume
-ffffffff81188040 t tick_freeze
-ffffffff81188110 t tick_unfreeze
-ffffffff811881c0 t tick_get_broadcast_device
-ffffffff811881e0 t tick_get_broadcast_mask
-ffffffff81188200 t tick_get_wakeup_device
-ffffffff81188230 t tick_install_broadcast_device
-ffffffff811883b0 t tick_broadcast_oneshot_active
-ffffffff811883d0 t tick_broadcast_switch_to_oneshot
-ffffffff81188420 t tick_is_broadcast_device
-ffffffff81188440 t tick_broadcast_update_freq
-ffffffff811884a0 t tick_device_uses_broadcast
-ffffffff81188660 t tick_broadcast_setup_oneshot
-ffffffff811887d0 t tick_receive_broadcast
-ffffffff81188830 t tick_broadcast_control
-ffffffff811889d0 t tick_set_periodic_handler
-ffffffff81188a00 t tick_handle_periodic_broadcast.llvm.3279994145566876802
-ffffffff81188ad0 t tick_broadcast_offline
-ffffffff81188ba0 t tick_suspend_broadcast
-ffffffff81188be0 t tick_resume_check_broadcast
-ffffffff81188c10 t tick_resume_broadcast
-ffffffff81188cc0 t tick_get_broadcast_oneshot_mask
-ffffffff81188ce0 t tick_check_broadcast_expired
-ffffffff81188d00 t tick_check_oneshot_broadcast_this_cpu
-ffffffff81188d50 t __tick_broadcast_oneshot_control
-ffffffff81188ff0 t hotplug_cpu__broadcast_tick_pull
-ffffffff81189060 t tick_broadcast_oneshot_available
-ffffffff81189090 t tick_oneshot_wakeup_handler
-ffffffff811890d0 t err_broadcast
-ffffffff81189100 t tick_do_broadcast
-ffffffff811891a0 t tick_broadcast_set_event
-ffffffff81189240 t tick_handle_oneshot_broadcast
-ffffffff81189400 t tick_setup_hrtimer_broadcast
-ffffffff81189440 t bc_handler
-ffffffff81189470 t bc_set_next
-ffffffff811894c0 t bc_shutdown
-ffffffff811894e0 t tick_program_event
-ffffffff81189560 t tick_resume_oneshot
-ffffffff811895b0 t tick_setup_oneshot
-ffffffff811895f0 t tick_switch_to_oneshot
-ffffffff811896b0 t tick_oneshot_mode_active
-ffffffff81189720 t tick_init_highres
-ffffffff81189740 t tick_get_tick_sched
-ffffffff81189770 t tick_nohz_tick_stopped
-ffffffff811897a0 t tick_nohz_tick_stopped_cpu
-ffffffff811897d0 t get_cpu_idle_time_us
-ffffffff811898d0 t get_cpu_iowait_time_us
-ffffffff811899d0 t tick_nohz_idle_stop_tick
-ffffffff81189cb0 t tick_nohz_idle_retain_tick
-ffffffff81189cf0 t tick_nohz_idle_enter
-ffffffff81189d50 t tick_nohz_irq_exit
-ffffffff81189db0 t tick_nohz_idle_got_tick
-ffffffff81189df0 t tick_nohz_get_next_hrtimer
-ffffffff81189e20 t tick_nohz_get_sleep_length
-ffffffff81189f40 t tick_nohz_next_event
-ffffffff8118a060 t tick_nohz_get_idle_calls_cpu
-ffffffff8118a090 t tick_nohz_get_idle_calls
-ffffffff8118a0c0 t tick_nohz_idle_restart_tick
-ffffffff8118a140 t tick_nohz_restart_sched_tick
-ffffffff8118a1d0 t tick_nohz_idle_exit
-ffffffff8118a2f0 t tick_irq_enter
-ffffffff8118a410 t tick_setup_sched_timer
-ffffffff8118a550 t tick_sched_timer
-ffffffff8118a680 t tick_cancel_sched_timer
-ffffffff8118a6d0 t tick_clock_notify
-ffffffff8118a730 t tick_oneshot_notify
-ffffffff8118a760 t tick_check_oneshot_change
-ffffffff8118a8e0 t tick_do_update_jiffies64
-ffffffff8118a9d0 t tick_nohz_handler
-ffffffff8118ab30 t update_vsyscall
-ffffffff8118ad80 t update_vsyscall_tz
-ffffffff8118ada0 t vdso_update_begin
-ffffffff8118add0 t vdso_update_end
-ffffffff8118ae00 t tk_debug_account_sleep_time
-ffffffff8118ae50 t tk_debug_sleep_time_open
-ffffffff8118ae80 t tk_debug_sleep_time_show
-ffffffff8118af20 t futex_hash
-ffffffff8118afe0 t futex_setup_timer
-ffffffff8118b030 t get_futex_key
-ffffffff8118b3b0 t lock_page
-ffffffff8118b400 t lock_page
-ffffffff8118b450 t lock_page
-ffffffff8118b4a0 t put_page
-ffffffff8118b4d0 t put_page
-ffffffff8118b500 t put_page
-ffffffff8118b530 t put_page
-ffffffff8118b560 t put_page
-ffffffff8118b590 t put_page
-ffffffff8118b5c0 t put_page
-ffffffff8118b5f0 t put_page
-ffffffff8118b620 t put_page
-ffffffff8118b650 t put_page
-ffffffff8118b680 t put_page
-ffffffff8118b6b0 t put_page
-ffffffff8118b6e0 t fault_in_user_writeable
-ffffffff8118b770 t futex_top_waiter
-ffffffff8118b7d0 t futex_cmpxchg_value_locked
-ffffffff8118b830 t futex_get_value_locked
-ffffffff8118b870 t wait_for_owner_exiting
-ffffffff8118b8e0 t __futex_unqueue
-ffffffff8118b920 t futex_q_lock
-ffffffff8118ba00 t futex_q_unlock
-ffffffff8118ba20 t __futex_queue
-ffffffff8118ba80 t futex_unqueue
-ffffffff8118bb10 t futex_unqueue_pi
-ffffffff8118bb70 t futex_exit_recursive
-ffffffff8118bba0 t futex_exec_release
-ffffffff8118bc40 t futex_exit_release
-ffffffff8118bce0 t exit_robust_list
-ffffffff8118be10 t exit_pi_state_list
-ffffffff8118c0c0 t handle_futex_death
-ffffffff8118c240 t __x64_sys_set_robust_list
-ffffffff8118c280 t __x64_sys_get_robust_list
-ffffffff8118c330 t do_futex
-ffffffff8118c510 t __x64_sys_futex
-ffffffff8118c690 t __x64_sys_futex_waitv
-ffffffff8118c9a0 t refill_pi_state_cache
-ffffffff8118ca20 t get_pi_state
-ffffffff8118ca70 t put_pi_state
-ffffffff8118cb70 t pi_state_update_owner
-ffffffff8118cc50 t futex_lock_pi_atomic
-ffffffff8118d180 t fixup_pi_owner
-ffffffff8118d1e0 t fixup_pi_state_owner
-ffffffff8118d470 t futex_lock_pi
-ffffffff8118d9a0 t futex_unlock_pi
-ffffffff8118dd50 t handle_exit_race
-ffffffff8118ddd0 t futex_requeue
-ffffffff8118e610 t requeue_futex
-ffffffff8118e690 t requeue_pi_wake_futex
-ffffffff8118e720 t futex_requeue_pi_complete
-ffffffff8118e780 t futex_wait_requeue_pi
-ffffffff8118ec70 t futex_wake_mark
-ffffffff8118ed00 t futex_wake
-ffffffff8118ee80 t futex_wake_op
-ffffffff8118f4b0 t futex_wait_queue
-ffffffff8118f540 t futex_wait_multiple
-ffffffff8118f870 t futex_wait_setup
-ffffffff8118f960 t futex_wait
-ffffffff8118fc00 t futex_wait_restart
-ffffffff8118fc80 t request_dma
-ffffffff8118fcc0 t free_dma
-ffffffff8118fd00 t proc_dma_show
-ffffffff8118fe30 t smpcfd_prepare_cpu
-ffffffff8118fec0 t smpcfd_dead_cpu
-ffffffff8118fef0 t smpcfd_dying_cpu
-ffffffff8118ff10 t __flush_smp_call_function_queue.llvm.17317992447745618108
-ffffffff81190100 t __smp_call_single_queue
-ffffffff81190140 t generic_smp_call_function_single_interrupt
-ffffffff81190160 t flush_smp_call_function_queue
-ffffffff81190220 t smp_call_function_single
-ffffffff811903b0 t generic_exec_single
-ffffffff811904b0 t smp_call_function_single_async
-ffffffff81190520 t smp_call_function_any
-ffffffff81190600 t smp_call_function_many
-ffffffff81190620 t smp_call_function_many_cond.llvm.17317992447745618108
-ffffffff81190970 t smp_call_function
-ffffffff811909d0 t on_each_cpu_cond_mask
-ffffffff81190a40 t kick_all_cpus_sync
-ffffffff81190aa0 t do_nothing
-ffffffff81190ab0 t wake_up_all_idle_cpus
-ffffffff81190b30 t smp_call_on_cpu
-ffffffff81190c80 t smp_call_on_cpu_callback
-ffffffff81190ce0 t kallsyms_lookup_name
-ffffffff81190ed0 t kallsyms_on_each_symbol
-ffffffff811910b0 t kallsyms_lookup_size_offset
-ffffffff81191120 t get_symbol_pos
-ffffffff811912b0 t kallsyms_lookup
-ffffffff811912d0 t kallsyms_lookup_buildid.llvm.10977550495285705623
-ffffffff811914f0 t lookup_symbol_name
-ffffffff811916b0 t lookup_symbol_attrs
-ffffffff811918a0 t sprint_symbol
-ffffffff811918c0 t __sprint_symbol.llvm.10977550495285705623
-ffffffff811919e0 t sprint_symbol_build_id
-ffffffff81191a00 t sprint_symbol_no_offset
-ffffffff81191a20 t sprint_backtrace
-ffffffff81191a40 t sprint_backtrace_build_id
-ffffffff81191a60 t arch_get_kallsym
-ffffffff81191a70 t kallsyms_show_value
-ffffffff81191ac0 t kallsyms_open
-ffffffff81191b80 t s_start
-ffffffff81191bb0 t s_start
-ffffffff81191ef0 t s_start
-ffffffff81191f60 t s_start
-ffffffff81191fa0 t s_stop
-ffffffff81191fb0 t s_stop
-ffffffff81192010 t s_stop
-ffffffff81192040 t s_next
-ffffffff81192070 t s_next
-ffffffff81192240 t s_next
-ffffffff81192280 t s_next
-ffffffff811922a0 t s_show
-ffffffff81192330 t s_show
-ffffffff811923f0 t s_show
-ffffffff81192600 t update_iter
-ffffffff811928c0 t append_elf_note
-ffffffff81192950 t final_note
-ffffffff81192970 t crash_update_vmcoreinfo_safecopy
-ffffffff811929b0 t crash_save_vmcoreinfo
-ffffffff81192a60 t vmcoreinfo_append_str
-ffffffff81192bc0 t paddr_vmcoreinfo_note
-ffffffff81192c00 t kexec_should_crash
-ffffffff81192c60 t kexec_crash_loaded
-ffffffff81192c80 t sanity_check_segment_list
-ffffffff81192ed0 t do_kimage_alloc_init
-ffffffff81192f60 t kimage_is_destination_range
-ffffffff81192ff0 t kimage_free_page_list
-ffffffff81193090 t kimage_alloc_control_pages
-ffffffff81193480 t kimage_crash_copy_vmcoreinfo
-ffffffff81193530 t kimage_terminate
-ffffffff81193560 t kimage_free
-ffffffff811938b0 t kimage_load_segment
-ffffffff81193ce0 t __crash_kexec
-ffffffff81193d90 t crash_setup_regs
-ffffffff81193e20 t crash_kexec
-ffffffff81193ef0 t crash_get_memory_size
-ffffffff81193f40 t crash_shrink_memory
-ffffffff811940d0 t crash_save_cpu
-ffffffff811942f0 t kernel_kexec
-ffffffff811943b0 t kimage_alloc_page
-ffffffff81194700 t kexec_image_probe_default
-ffffffff81194730 t kexec_image_load_default
-ffffffff81194790 t kexec_image_post_load_cleanup_default
-ffffffff811947c0 t kimage_file_post_load_cleanup
-ffffffff81194870 t __x64_sys_kexec_file_load
-ffffffff811950d0 t kexec_locate_mem_hole
-ffffffff81195140 t locate_mem_hole_callback
-ffffffff811952b0 t kexec_add_buffer
-ffffffff811953c0 t kexec_load_purgatory
-ffffffff811957f0 t kexec_purgatory_get_symbol_addr
-ffffffff81195950 t kexec_purgatory_get_set_symbol
-ffffffff81195b30 t crash_exclude_mem_range
-ffffffff81195cb0 t crash_prepare_elf64_headers
-ffffffff811961e0 t __traceiter_cgroup_setup_root
-ffffffff81196230 t __traceiter_cgroup_destroy_root
-ffffffff81196280 t __traceiter_cgroup_remount
-ffffffff811962d0 t __traceiter_cgroup_mkdir
-ffffffff81196320 t __traceiter_cgroup_rmdir
-ffffffff81196370 t __traceiter_cgroup_release
-ffffffff811963c0 t __traceiter_cgroup_rename
-ffffffff81196410 t __traceiter_cgroup_freeze
-ffffffff81196460 t __traceiter_cgroup_unfreeze
-ffffffff811964b0 t __traceiter_cgroup_attach_task
-ffffffff81196520 t __traceiter_cgroup_transfer_tasks
-ffffffff81196590 t __traceiter_cgroup_notify_populated
-ffffffff811965f0 t __traceiter_cgroup_notify_frozen
-ffffffff81196650 t trace_event_raw_event_cgroup_root
-ffffffff81196760 t perf_trace_cgroup_root
-ffffffff811968c0 t trace_event_raw_event_cgroup
-ffffffff811969f0 t perf_trace_cgroup
-ffffffff81196b60 t trace_event_raw_event_cgroup_migrate
-ffffffff81196cf0 t perf_trace_cgroup_migrate
-ffffffff81196ec0 t trace_event_raw_event_cgroup_event
-ffffffff81197000 t perf_trace_cgroup_event
-ffffffff81197180 t cgroup_ssid_enabled
-ffffffff811971b0 t cgroup_on_dfl
-ffffffff811971d0 t cgroup_is_threaded
-ffffffff811971f0 t cgroup_is_thread_root
-ffffffff81197230 t cgroup_e_css
-ffffffff81197290 t cgroup_get_e_css
-ffffffff81197370 t __cgroup_task_count
-ffffffff811973b0 t cgroup_task_count
-ffffffff81197410 t of_css
-ffffffff81197450 t put_css_set_locked
-ffffffff81197710 t cgroup_root_from_kf
-ffffffff81197730 t cgroup_favor_dynmods
-ffffffff81197790 t cgroup_free_root
-ffffffff811977a0 t task_cgroup_from_root
-ffffffff81197810 t cgroup_kn_unlock
-ffffffff81197890 t cgroup_kn_lock_live
-ffffffff81197940 t cgroup_lock_and_drain_offline
-ffffffff81197b80 t rebind_subsystems
-ffffffff811980d0 t css_next_child
-ffffffff81198130 t cgroup_apply_control
-ffffffff811983c0 t cgroup_finalize_control
-ffffffff81198790 t cgroup_show_path
-ffffffff811988f0 t init_cgroup_root
-ffffffff81198b20 t cgroup_setup_root
-ffffffff81198e30 t css_release
-ffffffff81198e80 t allocate_cgrp_cset_links
-ffffffff81198f80 t css_populate_dir
-ffffffff811990e0 t trace_cgroup_setup_root
-ffffffff81199140 t link_css_set
-ffffffff81199270 t cgroup_update_populated
-ffffffff81199450 t cgroup_do_get_tree
-ffffffff81199610 t cgroup_init_fs_context
-ffffffff811996d0 t cgroup_kill_sb
-ffffffff81199770 t cgroup_path_ns_locked
-ffffffff81199800 t cgroup_path_ns
-ffffffff811998e0 t task_cgroup_path
-ffffffff81199a90 t cgroup_attach_lock
-ffffffff81199ac0 t cgroup_attach_unlock
-ffffffff81199ae0 t cgroup_taskset_first
-ffffffff81199ba0 t cgroup_taskset_next
-ffffffff81199c60 t cgroup_migrate_vet_dst
-ffffffff81199d40 t cgroup_migrate_finish
-ffffffff81199e50 t cgroup_migrate_add_src
-ffffffff81199fc0 t cgroup_migrate_prepare_dst
-ffffffff8119a240 t find_css_set
-ffffffff8119a920 t put_css_set
-ffffffff8119a970 t cgroup_migrate
-ffffffff8119aa00 t cgroup_migrate_add_task
-ffffffff8119ab60 t cgroup_migrate_execute
-ffffffff8119af70 t cgroup_attach_task
-ffffffff8119b1c0 t cgroup_procs_write_start
-ffffffff8119b300 t cgroup_procs_write_finish
-ffffffff8119b400 t css_next_descendant_post
-ffffffff8119b4a0 t cgroup_get_live
-ffffffff8119b4f0 t cgroup_psi_enabled
-ffffffff8119b510 t cgroup_rm_cftypes
-ffffffff8119b600 t cgroup_add_dfl_cftypes
-ffffffff8119b630 t cgroup_add_cftypes
-ffffffff8119b790 t cgroup_add_legacy_cftypes
-ffffffff8119b7c0 t cgroup_file_notify
-ffffffff8119b840 t cgroup_file_show
-ffffffff8119b8a0 t css_next_descendant_pre
-ffffffff8119b940 t css_rightmost_descendant
-ffffffff8119b9c0 t css_has_online_children
-ffffffff8119ba50 t css_task_iter_start
-ffffffff8119bb40 t css_task_iter_advance
-ffffffff8119be30 t css_task_iter_next
-ffffffff8119bf00 t css_task_iter_end
-ffffffff8119bfe0 t cgroup_mkdir
-ffffffff8119c640 t cgroup_apply_control_enable
-ffffffff8119cae0 t trace_cgroup_mkdir
-ffffffff8119cb40 t cgroup_destroy_locked
-ffffffff8119cd30 t cgroup_rmdir
-ffffffff8119ce00 t cgroup_init_cftypes
-ffffffff8119cf50 t cgroup_idr_alloc
-ffffffff8119cfe0 t cgroup_path_from_kernfs_id
-ffffffff8119d030 t cgroup_get_from_id
-ffffffff8119d1a0 t proc_cgroup_show
-ffffffff8119d700 t cgroup_fork
-ffffffff8119d730 t cgroup_can_fork
-ffffffff8119dd10 t cgroup_css_set_put_fork
-ffffffff8119de40 t cgroup_cancel_fork
-ffffffff8119df30 t cgroup_post_fork
-ffffffff8119e1a0 t css_set_move_task
-ffffffff8119e370 t cgroup_exit
-ffffffff8119e500 t cgroup_release
-ffffffff8119e650 t cgroup_free
-ffffffff8119e6a0 t css_tryget_online_from_dir
-ffffffff8119e790 t css_from_id
-ffffffff8119e7b0 t cgroup_get_from_path
-ffffffff8119e8a0 t cgroup_v1v2_get_from_fd
-ffffffff8119e8f0 t cgroup_get_from_fd
-ffffffff8119e9a0 t cgroup_parse_float
-ffffffff8119eb70 t cgroup_sk_alloc
-ffffffff8119ec60 t cgroup_sk_clone
-ffffffff8119eca0 t cgroup_sk_free
-ffffffff8119ecf0 t trace_raw_output_cgroup_root
-ffffffff8119ed50 t trace_raw_output_cgroup
-ffffffff8119edb0 t trace_raw_output_cgroup_migrate
-ffffffff8119ee30 t trace_raw_output_cgroup_event
-ffffffff8119eea0 t cgroup_addrm_files
-ffffffff8119f4b0 t cgroup_file_notify_timer
-ffffffff8119f530 t cgroup_fs_context_free
-ffffffff8119f5b0 t cgroup2_parse_param
-ffffffff8119f640 t cgroup_get_tree
-ffffffff8119f770 t cgroup_reconfigure
-ffffffff8119f810 t cgroup_propagate_control
-ffffffff8119fa20 t cgroup_control
-ffffffff8119fa90 t css_clear_dir
-ffffffff8119fb60 t css_killed_ref_fn
-ffffffff8119fbb0 t css_killed_work_fn
-ffffffff8119fcb0 t cgroup_apply_cftypes
-ffffffff8119fe20 t css_release_work_fn
-ffffffff811a0070 t css_free_rwork_fn
-ffffffff811a0440 t init_and_link_css
-ffffffff811a05e0 t cgroup_show_options
-ffffffff811a0670 t cgroup_file_open
-ffffffff811a0760 t cgroup_file_release
-ffffffff811a07d0 t cgroup_seqfile_show
-ffffffff811a0880 t cgroup_seqfile_start
-ffffffff811a08b0 t cgroup_seqfile_next
-ffffffff811a08e0 t cgroup_seqfile_stop
-ffffffff811a0910 t cgroup_file_write
-ffffffff811a0a80 t cgroup_file_poll
-ffffffff811a0ab0 t cgroup_type_show
-ffffffff811a0bc0 t cgroup_type_write
-ffffffff811a0e50 t cgroup_procs_release
-ffffffff811a0e70 t cgroup_procs_show
-ffffffff811a0ea0 t cgroup_procs_start
-ffffffff811a0f10 t cgroup_procs_next
-ffffffff811a0f40 t cgroup_procs_write
-ffffffff811a0f70 t cgroup_threads_start
-ffffffff811a0f90 t cgroup_threads_write
-ffffffff811a0fb0 t cgroup_controllers_show
-ffffffff811a1060 t cgroup_subtree_control_show
-ffffffff811a10c0 t cgroup_subtree_control_write
-ffffffff811a15f0 t cgroup_events_show
-ffffffff811a1690 t cgroup_max_descendants_show
-ffffffff811a1700 t cgroup_max_descendants_write
-ffffffff811a17d0 t cgroup_max_depth_show
-ffffffff811a1840 t cgroup_max_depth_write
-ffffffff811a1910 t cgroup_stat_show
-ffffffff811a1990 t cgroup_freeze_show
-ffffffff811a19f0 t cgroup_freeze_write
-ffffffff811a1aa0 t cgroup_kill_write
-ffffffff811a1d80 t cpu_stat_show
-ffffffff811a1ed0 t __cgroup_procs_start
-ffffffff811a2140 t __cgroup_procs_write
-ffffffff811a22a0 t cgroup_attach_permissions
-ffffffff811a24c0 t cgroup_print_ss_mask
-ffffffff811a25f0 t cgroup_pressure_open
-ffffffff811a2620 t cgroup_pressure_release
-ffffffff811a2640 t cgroup_io_pressure_show
-ffffffff811a26b0 t cgroup_io_pressure_write
-ffffffff811a26d0 t cgroup_pressure_poll
-ffffffff811a26f0 t cgroup_memory_pressure_show
-ffffffff811a2760 t cgroup_memory_pressure_write
-ffffffff811a2780 t cgroup_cpu_pressure_show
-ffffffff811a27f0 t cgroup_cpu_pressure_write
-ffffffff811a2810 t cgroup_irq_pressure_show
-ffffffff811a2880 t cgroup_irq_pressure_write
-ffffffff811a28a0 t cgroup_pressure_show
-ffffffff811a2920 t cgroup_pressure_write
-ffffffff811a2b40 t pressure_write
-ffffffff811a2cc0 t cpuset_init_fs_context
-ffffffff811a2da0 t delegate_show
-ffffffff811a30c0 t features_show
-ffffffff811a30f0 t features_show
-ffffffff811a3150 t cgroup_rstat_updated
-ffffffff811a3220 t bpf_rstat_flush
-ffffffff811a3230 t cgroup_rstat_flush
-ffffffff811a3270 t cgroup_rstat_flush_locked.llvm.12783222107080602034
-ffffffff811a35c0 t cgroup_rstat_flush_irqsafe
-ffffffff811a3600 t cgroup_rstat_flush_hold
-ffffffff811a3630 t cgroup_rstat_flush_release
-ffffffff811a3650 t cgroup_rstat_init
-ffffffff811a3700 t cgroup_rstat_exit
-ffffffff811a37b0 t __cgroup_account_cputime
-ffffffff811a3810 t cgroup_base_stat_cputime_account_end
-ffffffff811a3900 t __cgroup_account_cputime_field
-ffffffff811a3970 t cgroup_base_stat_cputime_show
-ffffffff811a3b20 t free_cgroup_ns
-ffffffff811a3ba0 t copy_cgroup_ns
-ffffffff811a3d80 t cgroupns_get.llvm.9260688940639328602
-ffffffff811a3e00 t cgroupns_put.llvm.9260688940639328602
-ffffffff811a3e40 t cgroupns_install.llvm.9260688940639328602
-ffffffff811a3f00 t cgroupns_owner.llvm.9260688940639328602
-ffffffff811a3f10 t cgroup1_ssid_disabled
-ffffffff811a3f30 t cgroup_attach_task_all
-ffffffff811a3ff0 t cgroup_transfer_tasks
-ffffffff811a43b0 t cgroup1_pidlist_destroy_all
-ffffffff811a4430 t cgroup_pidlist_show
-ffffffff811a4450 t cgroup_pidlist_start
-ffffffff811a4920 t cgroup_pidlist_next
-ffffffff811a4970 t cgroup_pidlist_stop
-ffffffff811a49d0 t cgroup1_procs_write
-ffffffff811a49f0 t cgroup_clone_children_read
-ffffffff811a4a10 t cgroup_clone_children_write
-ffffffff811a4a40 t cgroup_sane_behavior_show
-ffffffff811a4a60 t cgroup1_tasks_write
-ffffffff811a4a80 t cgroup_read_notify_on_release
-ffffffff811a4aa0 t cgroup_write_notify_on_release
-ffffffff811a4ad0 t cgroup_release_agent_show
-ffffffff811a4b30 t cgroup_release_agent_write
-ffffffff811a4c00 t proc_cgroupstats_show
-ffffffff811a4e20 t cgroupstats_build
-ffffffff811a50a0 t cgroup1_check_for_release
-ffffffff811a5100 t cgroup1_release_agent
-ffffffff811a5290 t cgroup1_parse_param
-ffffffff811a56c0 t cgroup1_reconfigure
-ffffffff811a58f0 t check_cgroupfs_options
-ffffffff811a5aa0 t cgroup1_show_options
-ffffffff811a5eb0 t cgroup1_rename
-ffffffff811a5fb0 t cgroup1_get_tree
-ffffffff811a6340 t cmppid
-ffffffff811a6350 t cgroup_pidlist_destroy_work_fn
-ffffffff811a63e0 t __cgroup1_procs_write
-ffffffff811a6530 t trace_cgroup_rename
-ffffffff811a6590 t cgroup_update_frozen
-ffffffff811a6880 t cgroup_enter_frozen
-ffffffff811a68e0 t cgroup_leave_frozen
-ffffffff811a69a0 t cgroup_freezer_migrate_task
-ffffffff811a6ac0 t cgroup_freeze
-ffffffff811a6fc0 t cgroup_freezing
-ffffffff811a7000 t freezer_css_alloc
-ffffffff811a7030 t freezer_css_online
-ffffffff811a70b0 t freezer_css_offline
-ffffffff811a7100 t freezer_css_free
-ffffffff811a7110 t freezer_attach
-ffffffff811a7200 t freezer_fork
-ffffffff811a7270 t freezer_read
-ffffffff811a7540 t freezer_write
-ffffffff811a7700 t freezer_self_freezing_read
-ffffffff811a7720 t freezer_parent_freezing_read
-ffffffff811a7740 t freezer_apply_state
-ffffffff811a7950 t rebuild_sched_domains
-ffffffff811a7990 t rebuild_sched_domains_locked
-ffffffff811a8390 t current_cpuset_is_being_rebound
-ffffffff811a83d0 t cpuset_css_alloc
-ffffffff811a84e0 t cpuset_css_online
-ffffffff811a8700 t cpuset_css_offline
-ffffffff811a87b0 t cpuset_css_free
-ffffffff811a87c0 t cpuset_can_attach
-ffffffff811a8900 t cpuset_cancel_attach
-ffffffff811a8990 t cpuset_attach
-ffffffff811a8b70 t cpuset_post_attach
-ffffffff811a8b90 t cpuset_can_fork
-ffffffff811a8c70 t cpuset_cancel_fork
-ffffffff811a8ce0 t cpuset_fork
-ffffffff811a8db0 t cpuset_bind
-ffffffff811a8e60 t cpuset_force_rebuild
-ffffffff811a8e80 t cpuset_update_active_cpus
-ffffffff811a8eb0 t cpuset_wait_for_hotplug
-ffffffff811a8ed0 t cpuset_cpus_allowed
-ffffffff811a8f20 t guarantee_online_cpus.llvm.16417904120603559126
-ffffffff811a8ff0 t cpuset_cpus_allowed_fallback
-ffffffff811a9060 t cpuset_mems_allowed
-ffffffff811a90b0 t cpuset_nodemask_valid_mems_allowed
-ffffffff811a90d0 t __cpuset_node_allowed
-ffffffff811a91b0 t cpuset_mem_spread_node
-ffffffff811a91e0 t cpuset_slab_spread_node
-ffffffff811a9210 t cpuset_mems_allowed_intersects
-ffffffff811a9230 t cpuset_print_current_mems_allowed
-ffffffff811a92a0 t __cpuset_memory_pressure_bump
-ffffffff811a9430 t proc_cpuset_show
-ffffffff811a9570 t cpuset_task_status_allowed
-ffffffff811a95c0 t update_domain_attr_tree
-ffffffff811a9680 t update_prstate
-ffffffff811a9970 t update_flag
-ffffffff811a9ca0 t update_parent_subparts_cpumask
-ffffffff811aa300 t compute_effective_cpumask
-ffffffff811aa390 t update_tasks_cpumask
-ffffffff811aa4f0 t update_sibling_cpumasks
-ffffffff811aa640 t update_cpumasks_hier
-ffffffff811aaac0 t partition_is_populated
-ffffffff811aab80 t validate_change
-ffffffff811aaed0 t cpuset_attach_task
-ffffffff811aafc0 t cpuset_migrate_mm_workfn
-ffffffff811aaff0 t cpuset_common_seq_show
-ffffffff811ab0d0 t cpuset_write_resmask
-ffffffff811ab980 t sched_partition_show
-ffffffff811aba40 t sched_partition_write
-ffffffff811abba0 t update_tasks_nodemask
-ffffffff811abda0 t cpuset_read_u64
-ffffffff811abfc0 t cpuset_write_u64
-ffffffff811ac0d0 t cpuset_read_s64
-ffffffff811ac0f0 t cpuset_write_s64
-ffffffff811ac1c0 t cpuset_hotplug_workfn
-ffffffff811acc60 t cpuset_track_online_nodes
-ffffffff811acc90 t ikconfig_read_current
-ffffffff811accd0 t ikheaders_read
-ffffffff811acd00 t print_stop_info
-ffffffff811acd60 t stop_one_cpu
-ffffffff811ace40 t cpu_stop_queue_work
-ffffffff811acf90 t stop_machine_yield
-ffffffff811acfa0 t stop_two_cpus
-ffffffff811ad320 t multi_cpu_stop
-ffffffff811ad450 t stop_one_cpu_nowait
-ffffffff811ad490 t stop_machine_park
-ffffffff811ad4d0 t stop_machine_unpark
-ffffffff811ad510 t stop_machine_cpuslocked
-ffffffff811ad5c0 t stop_cpus
-ffffffff811ad6a0 t stop_machine
-ffffffff811ad770 t stop_core_cpuslocked
-ffffffff811ad810 t stop_machine_from_inactive_cpu
-ffffffff811ad990 t queue_stop_cpus_work
-ffffffff811ada80 t cpu_stop_should_run
-ffffffff811adae0 t cpu_stopper_thread
-ffffffff811adc60 t cpu_stop_create
-ffffffff811adc90 t cpu_stop_park
-ffffffff811adcd0 t auditd_test_task
-ffffffff811add20 t audit_ctl_lock
-ffffffff811add50 t audit_ctl_unlock
-ffffffff811add80 t audit_panic
-ffffffff811adde0 t audit_log_lost
-ffffffff811adee0 t audit_send_list_thread
-ffffffff811adfa0 t audit_make_reply
-ffffffff811ae080 t audit_serial
-ffffffff811ae0a0 t audit_log_start
-ffffffff811ae480 t audit_log_format
-ffffffff811ae520 t audit_log_vformat
-ffffffff811ae720 t audit_log_n_hex
-ffffffff811ae860 t audit_log_n_string
-ffffffff811ae960 t audit_string_contains_control
-ffffffff811ae9d0 t audit_log_n_untrustedstring
-ffffffff811aea40 t audit_log_untrustedstring
-ffffffff811aead0 t audit_log_d_path
-ffffffff811aec10 t audit_log_session_info
-ffffffff811aec40 t audit_log_key
-ffffffff811aecf0 t audit_log_task_context
-ffffffff811aede0 t audit_log_d_path_exe
-ffffffff811aee40 t audit_get_tty
-ffffffff811aeed0 t audit_put_tty
-ffffffff811aeee0 t audit_log_task_info
-ffffffff811af1a0 t audit_log_path_denied
-ffffffff811af220 t audit_log_end
-ffffffff811af320 t audit_set_loginuid
-ffffffff811af530 t audit_signal_info
-ffffffff811af5f0 t audit_log
-ffffffff811af6a0 t kauditd_thread
-ffffffff811afa50 t audit_receive
-ffffffff811b1140 t audit_multicast_bind
-ffffffff811b1180 t audit_multicast_unbind
-ffffffff811b11a0 t audit_send_reply
-ffffffff811b12f0 t audit_log_config_change
-ffffffff811b13b0 t auditd_reset
-ffffffff811b1450 t audit_send_reply_thread
-ffffffff811b14f0 t auditd_conn_free
-ffffffff811b1520 t kauditd_hold_skb
-ffffffff811b15f0 t audit_log_multicast
-ffffffff811b1870 t kauditd_send_queue
-ffffffff811b1a60 t kauditd_send_multicast_skb
-ffffffff811b1af0 t kauditd_retry_skb
-ffffffff811b1b90 t audit_free_rule_rcu
-ffffffff811b1c50 t audit_unpack_string
-ffffffff811b1ce0 t audit_match_class
-ffffffff811b1d30 t audit_dupe_rule
-ffffffff811b2090 t audit_del_rule
-ffffffff811b23d0 t audit_rule_change
-ffffffff811b29a0 t audit_data_to_entry
-ffffffff811b34a0 t audit_log_rule_change
-ffffffff811b3540 t audit_list_rules_send
-ffffffff811b3930 t audit_comparator
-ffffffff811b39e0 t audit_uid_comparator
-ffffffff811b3a40 t audit_gid_comparator
-ffffffff811b3aa0 t parent_len
-ffffffff811b3b10 t audit_compare_dname_path
-ffffffff811b3bd0 t audit_filter
-ffffffff811b40f0 t audit_update_lsm_rules
-ffffffff811b4350 t audit_compare_rule
-ffffffff811b4540 t audit_filter_inodes
-ffffffff811b4640 t audit_alloc
-ffffffff811b46f0 t audit_filter_task
-ffffffff811b47c0 t audit_alloc_context
-ffffffff811b4850 t __audit_free
-ffffffff811b4990 t audit_filter_syscall
-ffffffff811b4a70 t audit_log_exit
-ffffffff811b61e0 t audit_filter_uring
-ffffffff811b62c0 t audit_log_uring
-ffffffff811b6410 t __audit_uring_entry
-ffffffff811b6470 t __audit_uring_exit
-ffffffff811b6570 t audit_reset_context
-ffffffff811b68c0 t __audit_syscall_entry
-ffffffff811b69f0 t __audit_syscall_exit
-ffffffff811b6ab0 t __audit_reusename
-ffffffff811b6b10 t __audit_getname
-ffffffff811b6b60 t audit_alloc_name
-ffffffff811b6d10 t __audit_inode
-ffffffff811b7180 t __audit_file
-ffffffff811b71a0 t __audit_inode_child
-ffffffff811b7660 t auditsc_get_stamp
-ffffffff811b76d0 t __audit_mq_open
-ffffffff811b7790 t __audit_mq_sendrecv
-ffffffff811b7800 t __audit_mq_notify
-ffffffff811b7840 t __audit_mq_getsetattr
-ffffffff811b78d0 t __audit_ipc_obj
-ffffffff811b7930 t __audit_ipc_set_perm
-ffffffff811b7970 t __audit_bprm
-ffffffff811b79a0 t __audit_socketcall
-ffffffff811b7a00 t __audit_fd_pair
-ffffffff811b7a30 t __audit_sockaddr
-ffffffff811b7ab0 t __audit_ptrace
-ffffffff811b7b50 t audit_signal_info_syscall
-ffffffff811b7d70 t __audit_log_bprm_fcaps
-ffffffff811b7eb0 t __audit_log_capset
-ffffffff811b7f10 t __audit_mmap_fd
-ffffffff811b7f40 t __audit_openat2_how
-ffffffff811b7f90 t __audit_log_kern_module
-ffffffff811b7fe0 t __audit_fanotify
-ffffffff811b8020 t __audit_tk_injoffset
-ffffffff811b8060 t __audit_ntp_log
-ffffffff811b80e0 t __audit_log_nfcfg
-ffffffff811b8210 t audit_core_dumps
-ffffffff811b8340 t audit_seccomp
-ffffffff811b8480 t audit_seccomp_actions_logged
-ffffffff811b84f0 t audit_killed_trees
-ffffffff811b8530 t audit_filter_rules
-ffffffff811b9890 t audit_log_pid_context
-ffffffff811b99b0 t unroll_tree_refs
-ffffffff811b9ac0 t grow_tree_refs
-ffffffff811b9b30 t audit_get_watch
-ffffffff811b9b70 t audit_put_watch
-ffffffff811b9bd0 t audit_watch_path
-ffffffff811b9be0 t audit_watch_compare
-ffffffff811b9c10 t audit_to_watch
-ffffffff811b9ca0 t audit_init_watch
-ffffffff811b9d00 t audit_add_watch
-ffffffff811ba140 t audit_remove_watch_rule
-ffffffff811ba1f0 t audit_remove_watch
-ffffffff811ba2a0 t audit_dupe_exe
-ffffffff811ba320 t audit_exe_compare
-ffffffff811ba370 t audit_watch_handle_event
-ffffffff811ba610 t audit_watch_free_mark
-ffffffff811ba640 t audit_update_watch
-ffffffff811baad0 t audit_mark_path
-ffffffff811baae0 t audit_mark_compare
-ffffffff811bab10 t audit_alloc_mark
-ffffffff811bac90 t audit_remove_mark
-ffffffff811bacc0 t audit_remove_mark_rule
-ffffffff811bacf0 t audit_mark_handle_event
-ffffffff811bae20 t audit_fsnotify_free_mark
-ffffffff811bae50 t audit_tree_path
-ffffffff811bae60 t audit_put_chunk
-ffffffff811baef0 t audit_tree_lookup
-ffffffff811baf50 t audit_tree_match
-ffffffff811bafb0 t audit_remove_tree_rule
-ffffffff811bb120 t audit_trim_trees
-ffffffff811bb3f0 t compare_root
-ffffffff811bb410 t trim_marked
-ffffffff811bb5a0 t audit_make_tree
-ffffffff811bb610 t alloc_tree
-ffffffff811bb6b0 t audit_put_tree
-ffffffff811bb700 t audit_add_tree_rule
-ffffffff811bbab0 t audit_launch_prune
-ffffffff811bbb30 t tag_mount
-ffffffff811bc2c0 t audit_tag_tree
-ffffffff811bc890 t audit_kill_trees
-ffffffff811bc9a0 t kill_rules
-ffffffff811bcb40 t prune_tree_chunks
-ffffffff811bd000 t replace_chunk
-ffffffff811bd1a0 t __put_chunk
-ffffffff811bd230 t prune_tree_thread
-ffffffff811bd330 t audit_tree_handle_event
-ffffffff811bd340 t audit_tree_freeing_mark
-ffffffff811bd670 t audit_tree_destroy_watch
-ffffffff811bd690 t reset_hung_task_detector
-ffffffff811bd6b0 t hungtask_pm_notify
-ffffffff811bd6e0 t watchdog
-ffffffff811bdb90 t hung_task_panic
-ffffffff811bdbb0 t proc_dohung_task_timeout_secs
-ffffffff811bdc00 t watchdog_nmi_enable
-ffffffff811bdc10 t watchdog_nmi_disable
-ffffffff811bdc20 t watchdog_nmi_stop
-ffffffff811bdc30 t watchdog_nmi_start
-ffffffff811bdc40 t touch_softlockup_watchdog_sched
-ffffffff811bdc60 t touch_softlockup_watchdog
-ffffffff811bdc90 t touch_all_softlockup_watchdogs
-ffffffff811bdd00 t touch_softlockup_watchdog_sync
-ffffffff811bdd40 t is_hardlockup
-ffffffff811bdda0 t lockup_detector_online_cpu
-ffffffff811bddc0 t watchdog_enable
-ffffffff811bded0 t lockup_detector_offline_cpu
-ffffffff811bdef0 t watchdog_disable
-ffffffff811bdf60 t lockup_detector_reconfigure
-ffffffff811bdf90 t __lockup_detector_reconfigure
-ffffffff811be100 t lockup_detector_cleanup
-ffffffff811be130 t lockup_detector_soft_poweroff
-ffffffff811be150 t proc_watchdog
-ffffffff811be180 t proc_watchdog_common
-ffffffff811be260 t proc_nmi_watchdog
-ffffffff811be2a0 t proc_soft_watchdog
-ffffffff811be2d0 t proc_watchdog_thresh
-ffffffff811be380 t proc_watchdog_cpumask
-ffffffff811be410 t watchdog_timer_fn
-ffffffff811be6b0 t softlockup_fn
-ffffffff811be720 t update_report_ts
-ffffffff811be750 t softlockup_stop_fn
-ffffffff811be770 t softlockup_start_fn
-ffffffff811be790 t seccomp_filter_release
-ffffffff811be7d0 t __seccomp_filter_release
-ffffffff811be8a0 t get_seccomp_filter
-ffffffff811be910 t __secure_computing
-ffffffff811be9a0 t __seccomp_filter
-ffffffff811bf2f0 t prctl_get_seccomp
-ffffffff811bf310 t __x64_sys_seccomp
-ffffffff811bf330 t prctl_set_seccomp
-ffffffff811bf370 t do_seccomp
-ffffffff811bf850 t seccomp_log
-ffffffff811bf870 t seccomp_assign_mode
-ffffffff811bf8b0 t init_listener
-ffffffff811bf990 t seccomp_attach_filter
-ffffffff811bfe80 t seccomp_notify_detach
-ffffffff811bff20 t seccomp_check_filter
-ffffffff811bffe0 t seccomp_notify_poll
-ffffffff811c0090 t seccomp_notify_ioctl
-ffffffff811c0710 t seccomp_notify_release
-ffffffff811c0800 t seccomp_actions_logged_handler
-ffffffff811c0f00 t uts_proc_notify
-ffffffff811c0f40 t proc_do_uts_string
-ffffffff811c1120 t taskstats_exit
-ffffffff811c14b0 t mk_reply
-ffffffff811c15c0 t fill_stats
-ffffffff811c16a0 t taskstats_user_cmd
-ffffffff811c1b80 t cgroupstats_user_cmd
-ffffffff811c1d40 t add_del_listener
-ffffffff811c1fa0 t bacct_add_tsk
-ffffffff811c2210 t xacct_add_tsk
-ffffffff811c2380 t acct_update_integrals
-ffffffff811c2460 t acct_account_cputime
-ffffffff811c2500 t acct_clear_integrals
-ffffffff811c2530 t tracepoint_probe_register_prio_may_exist
-ffffffff811c25c0 t tracepoint_add_func
-ffffffff811c29e0 t tracepoint_probe_register_prio
-ffffffff811c2a70 t tracepoint_probe_register
-ffffffff811c2b00 t tracepoint_probe_unregister
-ffffffff811c2f30 t for_each_kernel_tracepoint
-ffffffff811c2f90 t syscall_regfunc
-ffffffff811c3020 t syscall_unregfunc
-ffffffff811c30a0 t rcu_free_old_probes
-ffffffff811c30d0 t srcu_free_old_probes
-ffffffff811c30e0 t tp_stub_func
-ffffffff811c30f0 t trace_clock_local
-ffffffff811c3120 t trace_clock
-ffffffff811c3140 t trace_clock_jiffies
-ffffffff811c3180 t trace_clock_global
-ffffffff811c3240 t trace_clock_counter
-ffffffff811c3260 t ring_buffer_print_entry_header
-ffffffff811c3330 t ring_buffer_event_length
-ffffffff811c3380 t rb_event_length
-ffffffff811c33d0 t ring_buffer_event_data
-ffffffff811c3410 t ring_buffer_print_page_header
-ffffffff811c34c0 t ring_buffer_event_time_stamp
-ffffffff811c3580 t ring_buffer_nr_pages
-ffffffff811c35a0 t ring_buffer_nr_dirty_pages
-ffffffff811c35f0 t ring_buffer_wake_waiters
-ffffffff811c36e0 t rb_wake_up_waiters
-ffffffff811c3730 t ring_buffer_wait
-ffffffff811c39d0 t ring_buffer_empty
-ffffffff811c3b50 t ring_buffer_empty_cpu
-ffffffff811c3c70 t ring_buffer_poll_wait
-ffffffff811c3de0 t ring_buffer_time_stamp
-ffffffff811c3e30 t ring_buffer_normalize_time_stamp
-ffffffff811c3e40 t __ring_buffer_alloc
-ffffffff811c4030 t rb_allocate_cpu_buffer
-ffffffff811c42c0 t rb_free_cpu_buffer
-ffffffff811c43b0 t ring_buffer_alloc_ext
-ffffffff811c4430 t ring_buffer_free
-ffffffff811c44b0 t ring_buffer_set_clock
-ffffffff811c44c0 t ring_buffer_set_time_stamp_abs
-ffffffff811c44e0 t ring_buffer_time_stamp_abs
-ffffffff811c4500 t ring_buffer_resize
-ffffffff811c4920 t __rb_allocate_pages
-ffffffff811c4ad0 t rb_update_pages
-ffffffff811c4d70 t rb_check_pages
-ffffffff811c4e30 t ring_buffer_change_overwrite
-ffffffff811c4e70 t ring_buffer_nest_start
-ffffffff811c4ea0 t ring_buffer_nest_end
-ffffffff811c4ee0 t ring_buffer_unlock_commit
-ffffffff811c5020 t rb_commit
-ffffffff811c5180 t ring_buffer_lock_reserve
-ffffffff811c5860 t ring_buffer_discard_commit
-ffffffff811c5be0 t ring_buffer_write
-ffffffff811c6460 t ring_buffer_record_disable
-ffffffff811c6470 t ring_buffer_record_enable
-ffffffff811c6490 t ring_buffer_record_off
-ffffffff811c64c0 t ring_buffer_record_on
-ffffffff811c64f0 t ring_buffer_record_is_on
-ffffffff811c6510 t ring_buffer_record_is_set_on
-ffffffff811c6530 t ring_buffer_record_disable_cpu
-ffffffff811c6560 t ring_buffer_record_enable_cpu
-ffffffff811c6590 t ring_buffer_oldest_event_ts
-ffffffff811c6600 t rb_set_head_page
-ffffffff811c66f0 t ring_buffer_bytes_cpu
-ffffffff811c6730 t ring_buffer_entries_cpu
-ffffffff811c6770 t ring_buffer_overrun_cpu
-ffffffff811c67a0 t ring_buffer_commit_overrun_cpu
-ffffffff811c67d0 t ring_buffer_dropped_events_cpu
-ffffffff811c6800 t ring_buffer_read_events_cpu
-ffffffff811c6830 t ring_buffer_entries
-ffffffff811c68a0 t ring_buffer_overruns
-ffffffff811c6900 t ring_buffer_iter_reset
-ffffffff811c6990 t ring_buffer_iter_empty
-ffffffff811c6a20 t ring_buffer_peek
-ffffffff811c6b60 t rb_buffer_peek
-ffffffff811c6d00 t rb_advance_reader
-ffffffff811c6de0 t ring_buffer_iter_dropped
-ffffffff811c6e00 t ring_buffer_iter_peek
-ffffffff811c71f0 t ring_buffer_consume
-ffffffff811c7350 t ring_buffer_poke
-ffffffff811c7480 t ring_buffer_update_view
-ffffffff811c7700 t ring_buffer_read_prepare
-ffffffff811c7810 t ring_buffer_read_prepare_sync
-ffffffff811c7820 t ring_buffer_read_start
-ffffffff811c78f0 t ring_buffer_read_finish
-ffffffff811c7950 t ring_buffer_iter_advance
-ffffffff811c7990 t rb_advance_iter
-ffffffff811c7b60 t ring_buffer_size
-ffffffff811c7b90 t ring_buffer_reset_cpu
-ffffffff811c7bf0 t reset_disabled_cpu_buffer
-ffffffff811c7e70 t ring_buffer_reset_online_cpus
-ffffffff811c7f40 t ring_buffer_reset
-ffffffff811c8010 t ring_buffer_alloc_read_page
-ffffffff811c8110 t ring_buffer_free_read_page
-ffffffff811c8220 t ring_buffer_read_page
-ffffffff811c8540 t rb_get_reader_page
-ffffffff811c87e0 t trace_rb_cpu_prepare
-ffffffff811c88c0 t trace_buffer_pack_size
-ffffffff811c8930 t trace_buffer_pack
-ffffffff811c8af0 t update_pages_handler
-ffffffff811c8b20 t rb_move_tail
-ffffffff811c8f80 t rb_add_timestamp
-ffffffff811c9090 t rb_check_timestamp
-ffffffff811c90f0 t rb_swap_reader_page_ext
-ffffffff811c9280 t ns2usecs
-ffffffff811c92b0 t register_ftrace_export
-ffffffff811c9360 t unregister_ftrace_export
-ffffffff811c9400 t trace_array_get
-ffffffff811c9470 t trace_array_put
-ffffffff811c94c0 t tracing_check_open_get_tr
-ffffffff811c9550 t call_filter_check_discard
-ffffffff811c95a0 t __trace_event_discard_commit
-ffffffff811c95e0 t trace_find_filtered_pid
-ffffffff811c95f0 t trace_ignore_this_task
-ffffffff811c9640 t trace_filter_add_remove_task
-ffffffff811c96a0 t trace_pid_next
-ffffffff811c9700 t trace_pid_start
-ffffffff811c97b0 t trace_pid_show
-ffffffff811c97d0 t trace_pid_write
-ffffffff811c99f0 t trace_parser_get_init
-ffffffff811c9a40 t trace_parser_put
-ffffffff811c9a70 t trace_get_user
-ffffffff811c9c30 t ftrace_now
-ffffffff811c9c60 t tracing_is_enabled
-ffffffff811c9c80 t tracer_tracing_on
-ffffffff811c9cb0 t tracing_on
-ffffffff811c9ce0 t __trace_array_puts
-ffffffff811c9f80 t __trace_puts
-ffffffff811c9fa0 t __trace_bputs
-ffffffff811ca1d0 t tracing_snapshot
-ffffffff811ca200 t tracing_snapshot_cond
-ffffffff811ca230 t tracing_alloc_snapshot
-ffffffff811ca260 t tracing_snapshot_alloc
-ffffffff811ca290 t tracing_cond_snapshot_data
-ffffffff811ca2a0 t tracing_snapshot_cond_enable
-ffffffff811ca2b0 t tracing_snapshot_cond_disable
-ffffffff811ca2c0 t tracer_tracing_off
-ffffffff811ca2f0 t tracing_off
-ffffffff811ca320 t disable_trace_on_warning
-ffffffff811ca370 t trace_array_printk_buf
-ffffffff811ca410 t tracer_tracing_is_on
-ffffffff811ca440 t tracing_is_on
-ffffffff811ca470 t nsecs_to_usecs
-ffffffff811ca4a0 t trace_clock_in_ns
-ffffffff811ca4d0 t dummy_set_flag
-ffffffff811ca4e0 t add_tracer_options
-ffffffff811ca7d0 t tracing_set_tracer
-ffffffff811ca9d0 t tracing_reset_online_cpus
-ffffffff811caa30 t tracing_reset_all_online_cpus_unlocked
-ffffffff811caab0 t tracing_reset_all_online_cpus
-ffffffff811cab50 t is_tracing_stopped
-ffffffff811cab70 t tracing_start
-ffffffff811cac00 t tracing_stop
-ffffffff811cac80 t trace_find_cmdline
-ffffffff811cad70 t trace_find_tgid
-ffffffff811cadb0 t tracing_record_taskinfo
-ffffffff811caf20 t tracing_record_taskinfo_sched_switch
-ffffffff811cb1c0 t tracing_record_cmdline
-ffffffff811cb1e0 t tracing_record_tgid
-ffffffff811cb260 t trace_handle_return
-ffffffff811cb290 t tracing_gen_ctx_irq_test
-ffffffff811cb340 t trace_buffer_lock_reserve
-ffffffff811cb3a0 t trace_buffered_event_enable
-ffffffff811cb4d0 t trace_buffered_event_disable
-ffffffff811cb620 t disable_trace_buffered_event
-ffffffff811cb640 t enable_trace_buffered_event
-ffffffff811cb660 t trace_event_buffer_lock_reserve
-ffffffff811cb7c0 t tracepoint_printk_sysctl
-ffffffff811cb890 t trace_event_buffer_commit
-ffffffff811cbb50 t trace_buffer_unlock_commit_regs
-ffffffff811cbdc0 t trace_buffer_unlock_commit_nostack
-ffffffff811cbe30 t trace_function
-ffffffff811cbf90 t __trace_stack
-ffffffff811cbff0 t __ftrace_trace_stack
-ffffffff811cc1d0 t trace_dump_stack
-ffffffff811cc2f0 t trace_last_func_repeats
-ffffffff811cc3f0 t trace_printk_init_buffers
-ffffffff811cc530 t tracing_update_buffers
-ffffffff811cc5f0 t trace_printk_start_comm
-ffffffff811cc610 t trace_vbprintk
-ffffffff811cc950 t trace_array_vprintk
-ffffffff811cc970 t __trace_array_vprintk.llvm.7072116356185007960
-ffffffff811ccc80 t trace_array_printk
-ffffffff811ccd40 t trace_array_init_printk
-ffffffff811ccde0 t trace_vprintk
-ffffffff811cce00 t trace_check_vprintf
-ffffffff811cd280 t trace_iter_expand_format
-ffffffff811cd2d0 t show_buffer
-ffffffff811cd320 t trace_event_format
-ffffffff811cd440 t trace_find_next_entry
-ffffffff811cd530 t __find_next_entry
-ffffffff811cd7f0 t trace_find_next_entry_inc
-ffffffff811cd870 t tracing_iter_reset
-ffffffff811cd960 t trace_total_entries_cpu
-ffffffff811cd9d0 t trace_total_entries
-ffffffff811cda70 t print_trace_header
-ffffffff811cdd20 t trace_empty
-ffffffff811cdde0 t print_trace_line
-ffffffff811cdfe0 t print_hex_fmt
-ffffffff811ce100 t print_raw_fmt
-ffffffff811ce1d0 t print_trace_fmt
-ffffffff811ce330 t trace_latency_header
-ffffffff811ce390 t trace_default_header
-ffffffff811ce560 t tracing_open_generic
-ffffffff811ce5b0 t tracing_is_disabled
-ffffffff811ce5d0 t tracing_open_generic_tr
-ffffffff811ce690 t tracing_lseek
-ffffffff811ce6c0 t tracing_set_cpumask
-ffffffff811ce810 t trace_keep_overwrite
-ffffffff811ce840 t set_tracer_flag
-ffffffff811ce9d0 t trace_set_options
-ffffffff811ceb90 t tracer_init
-ffffffff811cec00 t tracing_resize_ring_buffer
-ffffffff811ced00 t tracing_set_clock
-ffffffff811ceec0 t tracing_event_time_stamp
-ffffffff811ceef0 t tracing_set_filter_buffering
-ffffffff811cef50 t trace_min_max_read
-ffffffff811cf010 t trace_min_max_write
-ffffffff811cf110 t err_pos
-ffffffff811cf140 t tracing_log_err
-ffffffff811cf310 t trace_create_file
-ffffffff811cf350 t trace_array_find
-ffffffff811cf3b0 t trace_array_find_get
-ffffffff811cf430 t trace_array_get_by_name
-ffffffff811cf4e0 t trace_array_create
-ffffffff811cf6d0 t trace_array_destroy
-ffffffff811cf760 t __remove_instance
-ffffffff811cf960 t tracing_init_dentry
-ffffffff811cf9d0 t trace_automount
-ffffffff811cfa30 t trace_printk_seq
-ffffffff811cfad0 t trace_init_global_iter
-ffffffff811cfb80 t ftrace_dump
-ffffffff811cfff0 t trace_parse_run_command
-ffffffff811d0180 t print_event_info
-ffffffff811d0270 t trace_options_read
-ffffffff811d02c0 t trace_options_write
-ffffffff811d03f0 t allocate_trace_buffers
-ffffffff811d04d0 t init_trace_flags_index
-ffffffff811d0520 t trace_array_create_dir
-ffffffff811d05c0 t init_tracer_tracefs
-ffffffff811d0f00 t show_traces_open
-ffffffff811d1000 t show_traces_release
-ffffffff811d1070 t t_start
-ffffffff811d1140 t t_start
-ffffffff811d11d0 t t_start
-ffffffff811d1260 t t_start
-ffffffff811d1290 t t_stop
-ffffffff811d12b0 t t_stop
-ffffffff811d12c0 t t_stop
-ffffffff811d12e0 t t_stop
-ffffffff811d1300 t t_next
-ffffffff811d1350 t t_next
-ffffffff811d13e0 t t_next
-ffffffff811d1440 t t_next
-ffffffff811d1460 t t_show
-ffffffff811d14b0 t t_show
-ffffffff811d15b0 t t_show
-ffffffff811d1630 t tracing_set_trace_read
-ffffffff811d1750 t tracing_set_trace_write
-ffffffff811d18a0 t tracing_cpumask_read
-ffffffff811d1970 t tracing_cpumask_write
-ffffffff811d1a20 t tracing_release_generic_tr
-ffffffff811d1a70 t tracing_trace_options_write
-ffffffff811d1b70 t tracing_trace_options_open
-ffffffff811d1c70 t tracing_single_release_tr
-ffffffff811d1ce0 t tracing_trace_options_show
-ffffffff811d1e00 t tracing_write_stub
-ffffffff811d1e10 t tracing_open
-ffffffff811d24b0 t tracing_release
-ffffffff811d26a0 t tracing_read_pipe
-ffffffff811d2af0 t tracing_poll_pipe
-ffffffff811d2b50 t tracing_open_pipe
-ffffffff811d2d60 t tracing_release_pipe
-ffffffff811d2e10 t tracing_splice_read_pipe
-ffffffff811d3460 t tracing_wait_pipe
-ffffffff811d3520 t tracing_spd_release_pipe
-ffffffff811d3540 t tracing_entries_read
-ffffffff811d3760 t tracing_entries_write
-ffffffff811d3820 t tracing_total_entries_read
-ffffffff811d39b0 t tracing_free_buffer_write
-ffffffff811d39d0 t tracing_free_buffer_release
-ffffffff811d3a50 t tracing_mark_write
-ffffffff811d3da0 t tracing_mark_open
-ffffffff811d3e60 t tracing_mark_raw_write
-ffffffff811d40c0 t tracing_clock_write
-ffffffff811d41d0 t tracing_clock_open
-ffffffff811d42d0 t tracing_clock_show
-ffffffff811d4550 t rb_simple_read
-ffffffff811d4630 t rb_simple_write
-ffffffff811d4770 t tracing_time_stamp_mode_open
-ffffffff811d4870 t tracing_time_stamp_mode_show
-ffffffff811d48d0 t buffer_percent_read
-ffffffff811d49a0 t buffer_percent_write
-ffffffff811d4a30 t trace_options_core_read
-ffffffff811d4a80 t trace_options_core_write
-ffffffff811d4b70 t tracing_err_log_write
-ffffffff811d4b80 t tracing_err_log_open
-ffffffff811d4d40 t tracing_err_log_release
-ffffffff811d4dc0 t tracing_err_log_seq_start
-ffffffff811d4e00 t tracing_err_log_seq_stop
-ffffffff811d4e20 t tracing_err_log_seq_next
-ffffffff811d4e40 t tracing_err_log_seq_show
-ffffffff811d4f90 t tracing_buffers_read
-ffffffff811d5200 t tracing_buffers_poll
-ffffffff811d5260 t tracing_buffers_ioctl
-ffffffff811d52c0 t tracing_buffers_open
-ffffffff811d5480 t tracing_buffers_release
-ffffffff811d5520 t tracing_buffers_splice_read
-ffffffff811d5a30 t buffer_spd_release
-ffffffff811d5ab0 t buffer_pipe_buf_release
-ffffffff811d5b10 t buffer_pipe_buf_get
-ffffffff811d5b60 t tracing_stats_read
-ffffffff811d5e40 t tracing_thresh_read
-ffffffff811d5f40 t tracing_thresh_write
-ffffffff811d6010 t tracing_readme_read
-ffffffff811d6040 t tracing_saved_cmdlines_open
-ffffffff811d6080 t saved_cmdlines_start
-ffffffff811d6130 t saved_cmdlines_stop
-ffffffff811d6170 t saved_cmdlines_next
-ffffffff811d61d0 t saved_cmdlines_show
-ffffffff811d62d0 t tracing_saved_cmdlines_size_read
-ffffffff811d6400 t tracing_saved_cmdlines_size_write
-ffffffff811d65e0 t tracing_saved_tgids_open
-ffffffff811d6620 t saved_tgids_start
-ffffffff811d6660 t saved_tgids_stop
-ffffffff811d6670 t saved_tgids_next
-ffffffff811d66c0 t saved_tgids_show
-ffffffff811d6700 t instance_mkdir
-ffffffff811d67b0 t instance_rmdir
-ffffffff811d6850 t test_can_verify
-ffffffff811d68a0 t trace_panic_handler
-ffffffff811d68c0 t trace_die_handler
-ffffffff811d68f0 t test_can_verify_check
-ffffffff811d69c0 t trace_print_bputs_msg_only
-ffffffff811d6a00 t trace_print_bprintk_msg_only
-ffffffff811d6a40 t trace_print_printk_msg_only
-ffffffff811d6a80 t trace_print_flags_seq
-ffffffff811d6bd0 t trace_print_symbols_seq
-ffffffff811d6cb0 t trace_print_bitmask_seq
-ffffffff811d6d00 t trace_print_hex_seq
-ffffffff811d6dc0 t trace_print_array_seq
-ffffffff811d6fa0 t trace_print_hex_dump_seq
-ffffffff811d7040 t trace_raw_output_prep
-ffffffff811d70f0 t trace_event_printf
-ffffffff811d7180 t trace_output_call
-ffffffff811d7240 t trace_seq_print_sym
-ffffffff811d7300 t seq_print_ip_sym
-ffffffff811d7410 t trace_print_lat_fmt
-ffffffff811d7550 t trace_find_mark
-ffffffff811d75c0 t trace_print_context
-ffffffff811d7770 t trace_print_lat_context
-ffffffff811d7a60 t ftrace_find_event
-ffffffff811d7aa0 t trace_event_read_lock
-ffffffff811d7ac0 t trace_event_read_unlock
-ffffffff811d7ae0 t register_trace_event
-ffffffff811d7d10 t trace_nop_print
-ffffffff811d7d50 t __unregister_trace_event
-ffffffff811d7dc0 t unregister_trace_event
-ffffffff811d7e40 t trace_fn_trace
-ffffffff811d7ed0 t trace_fn_raw
-ffffffff811d7f20 t trace_fn_hex
-ffffffff811d7f80 t trace_fn_bin
-ffffffff811d7fe0 t trace_ctx_print
-ffffffff811d80e0 t trace_ctx_raw
-ffffffff811d8160 t trace_ctx_hex
-ffffffff811d8180 t trace_ctxwake_bin
-ffffffff811d8230 t trace_ctxwake_hex
-ffffffff811d8340 t trace_wake_print
-ffffffff811d8440 t trace_wake_raw
-ffffffff811d84b0 t trace_wake_hex
-ffffffff811d84d0 t trace_stack_print
-ffffffff811d85c0 t trace_user_stack_print
-ffffffff811d87e0 t trace_bputs_print
-ffffffff811d8850 t trace_bputs_raw
-ffffffff811d88b0 t trace_bprint_print
-ffffffff811d8920 t trace_bprint_raw
-ffffffff811d8980 t trace_print_print
-ffffffff811d89e0 t trace_print_raw
-ffffffff811d8a30 t trace_hwlat_print
-ffffffff811d8ad0 t trace_hwlat_raw
-ffffffff811d8b30 t trace_osnoise_print
-ffffffff811d8c50 t trace_osnoise_raw
-ffffffff811d8cc0 t trace_timerlat_print
-ffffffff811d8d20 t trace_timerlat_raw
-ffffffff811d8d70 t trace_raw_data
-ffffffff811d8e20 t trace_func_repeats_print
-ffffffff811d8f70 t trace_func_repeats_raw
-ffffffff811d8fd0 t trace_print_seq
-ffffffff811d9060 t trace_seq_printf
-ffffffff811d9180 t trace_seq_bitmask
-ffffffff811d9220 t trace_seq_vprintf
-ffffffff811d92b0 t trace_seq_bprintf
-ffffffff811d9340 t trace_seq_puts
-ffffffff811d93f0 t trace_seq_putc
-ffffffff811d9490 t trace_seq_putmem
-ffffffff811d9530 t trace_seq_putmem_hex
-ffffffff811d95f0 t trace_seq_path
-ffffffff811d96c0 t trace_seq_to_user
-ffffffff811d9720 t trace_seq_hex_dump
-ffffffff811d97f0 t register_stat_tracer
-ffffffff811d9a10 t unregister_stat_tracer
-ffffffff811d9b00 t tracing_stat_open
-ffffffff811d9e80 t tracing_stat_release
-ffffffff811d9f40 t dummy_cmp
-ffffffff811d9f50 t stat_seq_start
-ffffffff811d9fd0 t stat_seq_stop
-ffffffff811d9ff0 t stat_seq_next
-ffffffff811da020 t stat_seq_show
-ffffffff811da060 t trace_printk_control
-ffffffff811da080 t __trace_bprintk
-ffffffff811da130 t __ftrace_vbprintk
-ffffffff811da150 t __trace_printk
-ffffffff811da200 t __ftrace_vprintk
-ffffffff811da240 t trace_is_tracepoint_string
-ffffffff811da2a0 t ftrace_formats_open
-ffffffff811da2d0 t trace_pid_list_is_set
-ffffffff811da350 t trace_pid_list_set
-ffffffff811da490 t trace_pid_list_clear
-ffffffff811da5a0 t trace_pid_list_next
-ffffffff811da700 t trace_pid_list_first
-ffffffff811da720 t trace_pid_list_alloc
-ffffffff811da9d0 t pid_list_refill_irq
-ffffffff811dabe0 t trace_pid_list_free
-ffffffff811daca0 t tracing_map_update_sum
-ffffffff811dacc0 t tracing_map_read_sum
-ffffffff811dace0 t tracing_map_set_var
-ffffffff811dad00 t tracing_map_var_set
-ffffffff811dad20 t tracing_map_read_var
-ffffffff811dad40 t tracing_map_read_var_once
-ffffffff811dad60 t tracing_map_cmp_string
-ffffffff811dad70 t tracing_map_cmp_none
-ffffffff811dad80 t tracing_map_cmp_num
-ffffffff811dae00 t tracing_map_cmp_s64
-ffffffff811dae30 t tracing_map_cmp_u64
-ffffffff811dae60 t tracing_map_cmp_s32
-ffffffff811dae90 t tracing_map_cmp_u32
-ffffffff811daeb0 t tracing_map_cmp_s16
-ffffffff811daee0 t tracing_map_cmp_u16
-ffffffff811daf10 t tracing_map_cmp_s8
-ffffffff811daf40 t tracing_map_cmp_u8
-ffffffff811daf70 t tracing_map_add_sum_field
-ffffffff811dafb0 t tracing_map_cmp_atomic64
-ffffffff811dafe0 t tracing_map_add_var
-ffffffff811db010 t tracing_map_add_key_field
-ffffffff811db070 t tracing_map_insert
-ffffffff811db090 t __tracing_map_insert.llvm.1707861073122074755
-ffffffff811db400 t tracing_map_lookup
-ffffffff811db420 t tracing_map_destroy
-ffffffff811db4b0 t tracing_map_free_elts
-ffffffff811db610 t tracing_map_clear
-ffffffff811db780 t tracing_map_create
-ffffffff811db850 t tracing_map_array_alloc
-ffffffff811db9c0 t tracing_map_init
-ffffffff811dbdc0 t tracing_map_destroy_sort_entries
-ffffffff811dbe70 t tracing_map_sort_entries
-ffffffff811dc320 t cmp_entries_key
-ffffffff811dc380 t cmp_entries_sum
-ffffffff811dc3e0 t cmp_entries_dup
-ffffffff811dc410 t tracing_start_cmdline_record
-ffffffff811dc430 t tracing_start_sched_switch.llvm.3820838587386540845
-ffffffff811dc540 t tracing_stop_cmdline_record
-ffffffff811dc5c0 t tracing_start_tgid_record
-ffffffff811dc5e0 t tracing_stop_tgid_record
-ffffffff811dc660 t probe_sched_wakeup
-ffffffff811dc6a0 t probe_sched_switch
-ffffffff811dc6e0 t nop_trace_init
-ffffffff811dc6f0 t nop_trace_reset
-ffffffff811dc700 t nop_set_flag
-ffffffff811dc740 t blk_fill_rwbs
-ffffffff811dc810 t trace_find_event_field
-ffffffff811dc8d0 t trace_define_field
-ffffffff811dc9b0 t trace_event_get_offsets
-ffffffff811dc9e0 t trace_event_raw_init
-ffffffff811dcfb0 t trace_event_ignore_this_pid
-ffffffff811dd000 t trace_event_buffer_reserve
-ffffffff811dd0f0 t trace_event_reg
-ffffffff811dd170 t trace_event_enable_cmd_record
-ffffffff811dd210 t trace_event_enable_tgid_record
-ffffffff811dd2b0 t trace_event_enable_disable
-ffffffff811dd2c0 t __ftrace_event_enable_disable.llvm.208349971393203174
-ffffffff811dd4d0 t trace_event_follow_fork
-ffffffff811dd550 t event_filter_pid_sched_process_fork
-ffffffff811dd590 t event_filter_pid_sched_process_exit
-ffffffff811dd5d0 t ftrace_set_clr_event
-ffffffff811dd6e0 t trace_set_clr_event
-ffffffff811dd770 t trace_array_set_clr_event
-ffffffff811dd7e0 t trace_event_eval_update
-ffffffff811ddd50 t trace_add_event_call
-ffffffff811ddea0 t trace_remove_event_call
-ffffffff811de100 t __find_event_file
-ffffffff811de1b0 t find_event_file
-ffffffff811de280 t trace_get_event_file
-ffffffff811de3f0 t trace_put_event_file
-ffffffff811de430 t __trace_early_add_events
-ffffffff811de4d0 t event_trace_add_tracer
-ffffffff811de5c0 t create_event_toplevel_files
-ffffffff811de6f0 t __trace_early_add_event_dirs
-ffffffff811de770 t event_trace_del_tracer
-ffffffff811de880 t __ftrace_clear_event_pids
-ffffffff811dea70 t __ftrace_set_clr_event_nolock
-ffffffff811debc0 t remove_event_file_dir
-ffffffff811ded00 t __put_system
-ffffffff811ded90 t trace_create_new_event
-ffffffff811dee80 t event_define_fields
-ffffffff811df030 t event_create_dir
-ffffffff811df4c0 t subsystem_filter_read
-ffffffff811df5a0 t subsystem_filter_write
-ffffffff811df620 t subsystem_open
-ffffffff811df770 t subsystem_release
-ffffffff811df7b0 t put_system
-ffffffff811df810 t system_enable_read
-ffffffff811df950 t system_enable_write
-ffffffff811dfb10 t event_enable_read
-ffffffff811dfc10 t event_enable_write
-ffffffff811dfce0 t event_id_read
-ffffffff811dfda0 t event_filter_read
-ffffffff811dfeb0 t event_filter_write
-ffffffff811dff50 t trace_format_open
-ffffffff811dff80 t f_start
-ffffffff811e00a0 t f_stop
-ffffffff811e00c0 t f_next
-ffffffff811e0150 t f_show
-ffffffff811e0300 t ftrace_event_write
-ffffffff811e0400 t ftrace_event_set_open
-ffffffff811e04e0 t ftrace_event_release
-ffffffff811e0510 t system_tr_open
-ffffffff811e0590 t ftrace_event_pid_write
-ffffffff811e05b0 t ftrace_event_set_pid_open
-ffffffff811e0670 t event_pid_write
-ffffffff811e08d0 t ignore_task_cpu
-ffffffff811e0900 t event_filter_pid_sched_switch_probe_pre
-ffffffff811e0980 t event_filter_pid_sched_switch_probe_post
-ffffffff811e09b0 t event_filter_pid_sched_wakeup_probe_pre
-ffffffff811e09f0 t event_filter_pid_sched_wakeup_probe_post
-ffffffff811e0a30 t p_start
-ffffffff811e0a80 t p_stop
-ffffffff811e0ac0 t p_next
-ffffffff811e0ae0 t ftrace_event_npid_write
-ffffffff811e0b00 t ftrace_event_set_npid_open
-ffffffff811e0bc0 t np_start
-ffffffff811e0c10 t np_next
-ffffffff811e0c30 t show_header
-ffffffff811e0d10 t ftrace_event_avail_open
-ffffffff811e0d60 t ftrace_event_is_function
-ffffffff811e0d80 t ftrace_event_register
-ffffffff811e0d90 t perf_trace_init
-ffffffff811e0e50 t perf_trace_event_init
-ffffffff811e11c0 t perf_trace_destroy
-ffffffff811e1220 t perf_trace_event_unreg
-ffffffff811e12f0 t perf_uprobe_init
-ffffffff811e13c0 t perf_uprobe_destroy
-ffffffff811e1430 t perf_trace_add
-ffffffff811e14d0 t perf_trace_del
-ffffffff811e1530 t perf_trace_buf_alloc
-ffffffff811e1620 t perf_trace_buf_update
-ffffffff811e16a0 t filter_parse_regex
-ffffffff811e17f0 t filter_match_preds
-ffffffff811e2110 t print_event_filter
-ffffffff811e2160 t print_subsystem_event_filter
-ffffffff811e21d0 t free_event_filter
-ffffffff811e2250 t filter_assign_type
-ffffffff811e2330 t create_event_filter
-ffffffff811e2400 t apply_event_filter
-ffffffff811e2630 t apply_subsystem_event_filter
-ffffffff811e2d90 t ftrace_profile_free_filter
-ffffffff811e2e20 t ftrace_profile_set_filter
-ffffffff811e2fa0 t create_filter_start
-ffffffff811e30c0 t process_preds
-ffffffff811e4050 t append_filter_err
-ffffffff811e4200 t filter_build_regex
-ffffffff811e4480 t select_comparison_fn
-ffffffff811e4540 t regex_match_full
-ffffffff811e4570 t regex_match_front
-ffffffff811e45b0 t regex_match_middle
-ffffffff811e45e0 t regex_match_end
-ffffffff811e4620 t regex_match_glob
-ffffffff811e4640 t trigger_data_free
-ffffffff811e4690 t event_triggers_call
-ffffffff811e4750 t __trace_trigger_soft_disabled
-ffffffff811e47e0 t event_triggers_post_call
-ffffffff811e4840 t trigger_process_regex
-ffffffff811e4950 t event_trigger_write.llvm.17142228248083086164
-ffffffff811e4a20 t event_trigger_open.llvm.17142228248083086164
-ffffffff811e4b00 t event_trigger_release.llvm.17142228248083086164
-ffffffff811e4b50 t event_trigger_init
-ffffffff811e4b60 t trace_event_trigger_enable_disable
-ffffffff811e4bc0 t clear_event_triggers
-ffffffff811e4ca0 t update_cond_flag
-ffffffff811e4cf0 t event_trigger_check_remove
-ffffffff811e4d10 t event_trigger_empty_param
-ffffffff811e4d30 t event_trigger_separate_filter
-ffffffff811e4df0 t event_trigger_alloc
-ffffffff811e4e70 t event_trigger_parse_num
-ffffffff811e4ee0 t event_trigger_set_filter
-ffffffff811e4f10 t event_trigger_reset_filter
-ffffffff811e4f30 t event_trigger_register
-ffffffff811e4f60 t event_trigger_unregister
-ffffffff811e4f90 t set_trigger_filter
-ffffffff811e50c0 t find_named_trigger
-ffffffff811e5130 t is_named_trigger
-ffffffff811e5180 t save_named_trigger
-ffffffff811e51f0 t del_named_trigger
-ffffffff811e5250 t pause_named_trigger
-ffffffff811e52c0 t unpause_named_trigger
-ffffffff811e5320 t set_named_trigger_data
-ffffffff811e5330 t get_named_trigger_data
-ffffffff811e5340 t event_enable_trigger_print
-ffffffff811e5420 t event_enable_trigger_free
-ffffffff811e54b0 t event_enable_trigger_parse
-ffffffff811e5860 t event_trigger_free
-ffffffff811e58c0 t event_enable_register_trigger
-ffffffff811e5a40 t event_enable_unregister_trigger
-ffffffff811e5b50 t trigger_start
-ffffffff811e5bd0 t trigger_stop
-ffffffff811e5bf0 t trigger_next
-ffffffff811e5c30 t trigger_show
-ffffffff811e5cf0 t event_trigger_parse
-ffffffff811e5f50 t register_trigger
-ffffffff811e60b0 t unregister_trigger
-ffffffff811e61a0 t onoff_get_trigger_ops
-ffffffff811e61f0 t traceon_count_trigger
-ffffffff811e6250 t traceon_trigger_print
-ffffffff811e62d0 t traceon_trigger
-ffffffff811e6310 t traceoff_count_trigger
-ffffffff811e6370 t traceoff_trigger_print
-ffffffff811e63f0 t traceoff_trigger
-ffffffff811e6430 t stacktrace_get_trigger_ops
-ffffffff811e6450 t stacktrace_count_trigger
-ffffffff811e64e0 t stacktrace_trigger_print
-ffffffff811e6560 t stacktrace_trigger
-ffffffff811e65e0 t event_enable_get_trigger_ops
-ffffffff811e6650 t event_enable_count_trigger
-ffffffff811e66b0 t event_enable_trigger
-ffffffff811e66e0 t eprobe_dyn_event_create
-ffffffff811e6700 t eprobe_dyn_event_show
-ffffffff811e67d0 t eprobe_dyn_event_is_busy
-ffffffff811e67f0 t eprobe_dyn_event_release
-ffffffff811e6890 t eprobe_dyn_event_match
-ffffffff811e69b0 t __trace_eprobe_create
-ffffffff811e7290 t dyn_event_add
-ffffffff811e72f0 t dyn_event_add
-ffffffff811e7350 t trace_event_probe_cleanup
-ffffffff811e73b0 t eprobe_register
-ffffffff811e7740 t print_eprobe_event
-ffffffff811e7980 t eprobe_event_define_fields
-ffffffff811e79b0 t disable_eprobe
-ffffffff811e7a90 t eprobe_trigger_func
-ffffffff811e8b50 t eprobe_trigger_init
-ffffffff811e8b60 t eprobe_trigger_free
-ffffffff811e8b70 t eprobe_trigger_print
-ffffffff811e8b80 t eprobe_trigger_cmd_parse
-ffffffff811e8b90 t eprobe_trigger_reg_func
-ffffffff811e8ba0 t eprobe_trigger_unreg_func
-ffffffff811e8bb0 t eprobe_trigger_get_ops
-ffffffff811e8bd0 t find_synth_event
-ffffffff811e8c40 t synth_event_add_field
-ffffffff811e8d10 t synth_event_check_arg_fn
-ffffffff811e8d50 t synth_event_add_field_str
-ffffffff811e8e00 t synth_event_add_fields
-ffffffff811e8f00 t __synth_event_gen_cmd_start
-ffffffff811e9110 t synth_event_gen_cmd_array_start
-ffffffff811e9290 t synth_event_create
-ffffffff811e93a0 t synth_event_cmd_init
-ffffffff811e93c0 t synth_event_delete
-ffffffff811e94c0 t synth_event_run_command
-ffffffff811e9550 t synth_event_trace
-ffffffff811e9970 t trace_string
-ffffffff811e9c10 t synth_event_trace_array
-ffffffff811e9ea0 t synth_event_trace_start
-ffffffff811e9fc0 t synth_event_add_next_val
-ffffffff811ea080 t synth_event_add_val
-ffffffff811ea1e0 t synth_event_trace_end
-ffffffff811ea210 t create_synth_event
-ffffffff811ea410 t synth_event_show
-ffffffff811ea450 t synth_event_is_busy
-ffffffff811ea470 t synth_event_release
-ffffffff811ea4d0 t synth_event_match
-ffffffff811ea510 t synth_err
-ffffffff811ea570 t check_command
-ffffffff811ea650 t __create_synth_event
-ffffffff811eb240 t errpos
-ffffffff811eb290 t alloc_synth_event
-ffffffff811eb450 t register_synth_event
-ffffffff811eb660 t free_synth_event
-ffffffff811eb720 t synth_field_size
-ffffffff811eb900 t synth_field_string_size
-ffffffff811eba00 t trace_event_raw_event_synth
-ffffffff811ebce0 t print_synth_event
-ffffffff811ec020 t synth_field_fmt
-ffffffff811ec220 t synth_event_define_fields
-ffffffff811ec2f0 t __set_synth_event_print_fmt
-ffffffff811ec460 t __synth_event_show
-ffffffff811ec530 t create_or_delete_synth_event
-ffffffff811ec6c0 t synth_events_write
-ffffffff811ec6e0 t synth_events_open
-ffffffff811ec730 t synth_events_seq_show
-ffffffff811ec750 t event_hist_open.llvm.16400439348861980939
-ffffffff811ec780 t hist_show
-ffffffff811ed3b0 t hist_field_name
-ffffffff811ed4f0 t event_hist_trigger_parse
-ffffffff811ef0e0 t hist_register_trigger
-ffffffff811ef3b0 t hist_unregister_trigger
-ffffffff811ef4f0 t hist_unreg_all
-ffffffff811ef620 t event_hist_get_trigger_ops
-ffffffff811ef640 t destroy_hist_trigger_attrs
-ffffffff811ef8c0 t have_hist_trigger_match
-ffffffff811ef940 t hist_trigger_check_refs
-ffffffff811ef9d0 t existing_hist_update_only
-ffffffff811efaf0 t has_hist_vars
-ffffffff811efb70 t save_hist_vars
-ffffffff811efc20 t create_actions
-ffffffff811efef0 t hist_trigger_enable
-ffffffff811effa0 t destroy_hist_data
-ffffffff811f0370 t create_tracing_map_fields
-ffffffff811f0490 t track_data_parse
-ffffffff811f0580 t action_parse
-ffffffff811f08c0 t onmatch_destroy
-ffffffff811f0950 t parse_action_params
-ffffffff811f0b70 t check_track_val_max
-ffffffff811f0b90 t check_track_val_changed
-ffffffff811f0bb0 t save_track_data_vars
-ffffffff811f0cb0 t ontrack_action
-ffffffff811f0d80 t save_track_data_snapshot
-ffffffff811f0d90 t action_trace
-ffffffff811f0e10 t hist_fn_call
-ffffffff811f1400 t track_data_destroy
-ffffffff811f1490 t destroy_hist_field
-ffffffff811f14e0 t __destroy_hist_field
-ffffffff811f1540 t create_hist_field
-ffffffff811f17f0 t select_value_fn
-ffffffff811f1860 t __create_val_field
-ffffffff811f1980 t parse_expr
-ffffffff811f21d0 t parse_atom
-ffffffff811f2b40 t check_expr_operands
-ffffffff811f2cf0 t expr_str
-ffffffff811f2e60 t find_event_var
-ffffffff811f3110 t create_var_ref
-ffffffff811f3260 t find_var_file
-ffffffff811f33c0 t init_var_ref
-ffffffff811f34d0 t expr_field_str
-ffffffff811f3650 t find_var
-ffffffff811f3750 t field_has_hist_vars
-ffffffff811f37b0 t hist_trigger_elt_data_alloc
-ffffffff811f39c0 t hist_trigger_elt_data_free
-ffffffff811f3a20 t hist_trigger_elt_data_init
-ffffffff811f3a90 t hist_trigger_match
-ffffffff811f3d20 t actions_match
-ffffffff811f3ec0 t check_var_refs
-ffffffff811f3fb0 t hist_clear
-ffffffff811f4010 t action_create
-ffffffff811f5030 t create_target_field_var
-ffffffff811f5280 t find_synthetic_field_var
-ffffffff811f5310 t create_var
-ffffffff811f5410 t event_hist_trigger
-ffffffff811f5e70 t event_hist_trigger_named_init
-ffffffff811f5ed0 t event_hist_trigger_named_free
-ffffffff811f5f10 t event_hist_trigger_print
-ffffffff811f65b0 t event_hist_trigger_init
-ffffffff811f6600 t event_hist_trigger_free
-ffffffff811f6750 t hist_field_print
-ffffffff811f68d0 t hist_enable_unreg_all
-ffffffff811f6980 t hist_enable_get_trigger_ops
-ffffffff811f69d0 t hist_enable_count_trigger
-ffffffff811f6a30 t hist_enable_trigger
-ffffffff811f6a80 t __traceiter_error_report_end
-ffffffff811f6ad0 t trace_event_raw_event_error_report_template
-ffffffff811f6b90 t perf_trace_error_report_template
-ffffffff811f6c90 t trace_raw_output_error_report_template
-ffffffff811f6d00 t __traceiter_cpu_idle
-ffffffff811f6d50 t __traceiter_cpu_idle_miss
-ffffffff811f6db0 t __traceiter_powernv_throttle
-ffffffff811f6e10 t __traceiter_pstate_sample
-ffffffff811f6e90 t __traceiter_cpu_frequency
-ffffffff811f6ee0 t __traceiter_cpu_frequency_limits
-ffffffff811f6f30 t __traceiter_device_pm_callback_start
-ffffffff811f6f90 t __traceiter_device_pm_callback_end
-ffffffff811f6fe0 t __traceiter_suspend_resume
-ffffffff811f7040 t __traceiter_wakeup_source_activate
-ffffffff811f7090 t __traceiter_wakeup_source_deactivate
-ffffffff811f70e0 t __traceiter_clock_enable
-ffffffff811f7140 t __traceiter_clock_disable
-ffffffff811f71a0 t __traceiter_clock_set_rate
-ffffffff811f7200 t __traceiter_power_domain_target
-ffffffff811f7260 t __traceiter_pm_qos_add_request
-ffffffff811f72b0 t __traceiter_pm_qos_update_request
-ffffffff811f7300 t __traceiter_pm_qos_remove_request
-ffffffff811f7350 t __traceiter_pm_qos_update_target
-ffffffff811f73b0 t __traceiter_pm_qos_update_flags
-ffffffff811f7410 t __traceiter_dev_pm_qos_add_request
-ffffffff811f7470 t __traceiter_dev_pm_qos_update_request
-ffffffff811f74d0 t __traceiter_dev_pm_qos_remove_request
-ffffffff811f7530 t __traceiter_guest_halt_poll_ns
-ffffffff811f7590 t trace_event_raw_event_cpu
-ffffffff811f7650 t perf_trace_cpu
-ffffffff811f7750 t trace_event_raw_event_cpu_idle_miss
-ffffffff811f7820 t perf_trace_cpu_idle_miss
-ffffffff811f7930 t trace_event_raw_event_powernv_throttle
-ffffffff811f7a40 t perf_trace_powernv_throttle
-ffffffff811f7b90 t trace_event_raw_event_pstate_sample
-ffffffff811f7c90 t perf_trace_pstate_sample
-ffffffff811f7dd0 t trace_event_raw_event_cpu_frequency_limits
-ffffffff811f7ea0 t perf_trace_cpu_frequency_limits
-ffffffff811f7fa0 t trace_event_raw_event_device_pm_callback_start
-ffffffff811f8170 t perf_trace_device_pm_callback_start
-ffffffff811f8380 t trace_event_raw_event_device_pm_callback_end
-ffffffff811f8520 t perf_trace_device_pm_callback_end
-ffffffff811f8710 t trace_event_raw_event_suspend_resume
-ffffffff811f87e0 t perf_trace_suspend_resume
-ffffffff811f88f0 t trace_event_raw_event_wakeup_source
-ffffffff811f8a00 t perf_trace_wakeup_source
-ffffffff811f8b50 t trace_event_raw_event_clock
-ffffffff811f8c70 t perf_trace_clock
-ffffffff811f8dc0 t trace_event_raw_event_power_domain
-ffffffff811f8ee0 t perf_trace_power_domain
-ffffffff811f9030 t trace_event_raw_event_cpu_latency_qos_request
-ffffffff811f90f0 t perf_trace_cpu_latency_qos_request
-ffffffff811f91e0 t trace_event_raw_event_pm_qos_update
-ffffffff811f92b0 t perf_trace_pm_qos_update
-ffffffff811f93c0 t trace_event_raw_event_dev_pm_qos_request
-ffffffff811f94d0 t perf_trace_dev_pm_qos_request
-ffffffff811f9620 t trace_event_raw_event_guest_halt_poll_ns
-ffffffff811f96f0 t perf_trace_guest_halt_poll_ns
-ffffffff811f9800 t trace_raw_output_cpu
-ffffffff811f9860 t trace_raw_output_cpu_idle_miss
-ffffffff811f98d0 t trace_raw_output_powernv_throttle
-ffffffff811f9930 t trace_raw_output_pstate_sample
-ffffffff811f99b0 t trace_raw_output_cpu_frequency_limits
-ffffffff811f9a10 t trace_event_get_offsets_device_pm_callback_start
-ffffffff811f9b30 t trace_raw_output_device_pm_callback_start
-ffffffff811f9be0 t trace_raw_output_device_pm_callback_end
-ffffffff811f9c40 t trace_raw_output_suspend_resume
-ffffffff811f9cb0 t trace_raw_output_wakeup_source
-ffffffff811f9d10 t trace_raw_output_clock
-ffffffff811f9d70 t trace_raw_output_power_domain
-ffffffff811f9dd0 t trace_raw_output_cpu_latency_qos_request
-ffffffff811f9e20 t trace_raw_output_pm_qos_update
-ffffffff811f9e90 t trace_raw_output_pm_qos_update_flags
-ffffffff811f9f30 t trace_raw_output_dev_pm_qos_request
-ffffffff811f9fb0 t trace_raw_output_guest_halt_poll_ns
-ffffffff811fa020 t __traceiter_rpm_suspend
-ffffffff811fa070 t __traceiter_rpm_resume
-ffffffff811fa0c0 t __traceiter_rpm_idle
-ffffffff811fa110 t __traceiter_rpm_usage
-ffffffff811fa160 t __traceiter_rpm_return_int
-ffffffff811fa1c0 t trace_event_raw_event_rpm_internal
-ffffffff811fa340 t perf_trace_rpm_internal
-ffffffff811fa510 t trace_event_raw_event_rpm_return_int
-ffffffff811fa650 t perf_trace_rpm_return_int
-ffffffff811fa7d0 t trace_raw_output_rpm_internal
-ffffffff811fa850 t trace_raw_output_rpm_return_int
-ffffffff811fa8b0 t trace_event_dyn_try_get_ref
-ffffffff811fa920 t trace_event_dyn_put_ref
-ffffffff811fa960 t trace_event_dyn_busy
-ffffffff811fa980 t dyn_event_register
-ffffffff811faa20 t dyn_event_release
-ffffffff811fabf0 t dyn_event_seq_start
-ffffffff811fac20 t dyn_event_seq_next
-ffffffff811fac40 t dyn_event_seq_stop
-ffffffff811fac60 t dyn_events_release_all
-ffffffff811fad50 t dynevent_arg_add
-ffffffff811fadc0 t dynevent_arg_pair_add
-ffffffff811fae40 t dynevent_str_add
-ffffffff811fae80 t dynevent_cmd_init
-ffffffff811faed0 t dynevent_arg_init
-ffffffff811faf00 t dynevent_arg_pair_init
-ffffffff811faf40 t dynevent_create
-ffffffff811faf60 t dyn_event_write
-ffffffff811faf80 t dyn_event_open
-ffffffff811fb080 t create_dyn_event
-ffffffff811fb130 t dyn_event_seq_show
-ffffffff811fb160 t print_type_u8
-ffffffff811fb1a0 t print_type_u16
-ffffffff811fb1e0 t print_type_u32
-ffffffff811fb220 t print_type_u64
-ffffffff811fb260 t print_type_s8
-ffffffff811fb2a0 t print_type_s16
-ffffffff811fb2e0 t print_type_s32
-ffffffff811fb320 t print_type_s64
-ffffffff811fb360 t print_type_x8
-ffffffff811fb3a0 t print_type_x16
-ffffffff811fb3e0 t print_type_x32
-ffffffff811fb420 t print_type_x64
-ffffffff811fb460 t print_type_symbol
-ffffffff811fb4a0 t print_type_string
-ffffffff811fb500 t trace_probe_log_init
-ffffffff811fb530 t trace_probe_log_clear
-ffffffff811fb560 t trace_probe_log_set_index
-ffffffff811fb580 t __trace_probe_log_err
-ffffffff811fb6e0 t traceprobe_split_symbol_offset
-ffffffff811fb740 t traceprobe_parse_event_name
-ffffffff811fb910 t traceprobe_parse_probe_arg
-ffffffff811fc170 t traceprobe_free_probe_arg
-ffffffff811fc1e0 t traceprobe_update_arg
-ffffffff811fc310 t traceprobe_set_print_fmt
-ffffffff811fc390 t __set_print_fmt
-ffffffff811fc700 t traceprobe_define_arg_fields
-ffffffff811fc7a0 t trace_probe_append
-ffffffff811fc890 t trace_probe_unlink
-ffffffff811fc910 t trace_probe_cleanup
-ffffffff811fc9d0 t trace_probe_init
-ffffffff811fcb00 t trace_probe_register_event_call
-ffffffff811fcc10 t trace_probe_add_file
-ffffffff811fccc0 t trace_probe_get_file_link
-ffffffff811fcd00 t trace_probe_remove_file
-ffffffff811fcda0 t trace_probe_compare_arg_type
-ffffffff811fce40 t trace_probe_match_command_args
-ffffffff811fcf40 t trace_probe_create
-ffffffff811fcfe0 t find_fetch_type
-ffffffff811fd280 t parse_probe_arg
-ffffffff811fd8f0 t __parse_bitfield_probe_arg
-ffffffff811fda00 t bpf_get_uprobe_info
-ffffffff811fdb70 t create_local_trace_uprobe
-ffffffff811fddb0 t alloc_trace_uprobe
-ffffffff811fde80 t free_trace_uprobe
-ffffffff811fdec0 t destroy_local_trace_uprobe
-ffffffff811fdf10 t trace_uprobe_create
-ffffffff811fdf30 t trace_uprobe_show
-ffffffff811fe020 t trace_uprobe_is_busy
-ffffffff811fe040 t trace_uprobe_release
-ffffffff811fe100 t trace_uprobe_match
-ffffffff811fe2d0 t __trace_uprobe_create
-ffffffff811fe880 t register_trace_uprobe
-ffffffff811feca0 t uprobe_dispatcher
-ffffffff811fefe0 t uretprobe_dispatcher
-ffffffff811ff2a0 t process_fetch_insn
-ffffffff811ff8b0 t fetch_store_strlen
-ffffffff811ff8f0 t fetch_store_strlen_user
-ffffffff811ff930 t __uprobe_trace_func
-ffffffff811ffab0 t uprobe_perf_filter
-ffffffff811ffb30 t __uprobe_perf_func
-ffffffff811ffd40 t trace_uprobe_register
-ffffffff811fff60 t print_uprobe_event
-ffffffff81200190 t uprobe_event_define_fields
-ffffffff81200270 t probe_event_enable
-ffffffff812005d0 t probe_event_disable
-ffffffff812006a0 t uprobe_perf_close
-ffffffff81200800 t uprobe_buffer_disable
-ffffffff81200890 t probes_write
-ffffffff812008b0 t probes_open
-ffffffff81200900 t create_or_delete_trace_uprobe
-ffffffff81200940 t probes_seq_show
-ffffffff81200960 t profile_open
-ffffffff81200990 t probes_profile_seq_show
-ffffffff812009f0 t irq_work_queue
-ffffffff81200a60 t __irq_work_queue_local
-ffffffff81200af0 t irq_work_queue_on
-ffffffff81200bb0 t irq_work_needs_cpu
-ffffffff81200c30 t irq_work_single
-ffffffff81200c90 t irq_work_run
-ffffffff81200e40 t irq_work_tick
-ffffffff81201000 t irq_work_sync
-ffffffff81201080 t bpf_internal_load_pointer_neg_helper
-ffffffff81201110 t bpf_prog_alloc_no_stats
-ffffffff81201260 t bpf_prog_alloc
-ffffffff81201310 t bpf_prog_alloc_jited_linfo
-ffffffff81201370 t bpf_prog_jit_attempt_done
-ffffffff812013d0 t bpf_prog_fill_jited_linfo
-ffffffff81201470 t bpf_prog_realloc
-ffffffff81201530 t __bpf_prog_free
-ffffffff81201580 t bpf_prog_calc_tag
-ffffffff81201810 t bpf_patch_insn_single
-ffffffff81201a20 t bpf_adj_branches
-ffffffff81201c50 t bpf_remove_insns
-ffffffff81201cd0 t bpf_prog_kallsyms_del_all
-ffffffff81201ce0 t __bpf_call_base
-ffffffff81201cf0 t bpf_opcode_in_insntable
-ffffffff81201d10 t bpf_probe_read_kernel
-ffffffff81201d30 t bpf_patch_call_args
-ffffffff81201d80 t bpf_prog_map_compatible
-ffffffff81201e50 t bpf_prog_select_runtime
-ffffffff81202130 t bpf_int_jit_compile
-ffffffff81202140 t bpf_prog_array_alloc
-ffffffff81202180 t bpf_prog_array_free
-ffffffff812021b0 t bpf_prog_array_free_sleepable
-ffffffff812021d0 t bpf_prog_array_length
-ffffffff81202220 t bpf_prog_array_is_empty
-ffffffff81202250 t bpf_prog_array_copy_to_user
-ffffffff81202340 t bpf_prog_array_delete_safe
-ffffffff81202390 t bpf_prog_array_delete_safe_at
-ffffffff81202400 t bpf_prog_array_update_at
-ffffffff81202470 t bpf_prog_array_copy
-ffffffff81202640 t bpf_prog_array_copy_info
-ffffffff81202700 t __bpf_free_used_maps
-ffffffff81202760 t __bpf_free_used_btfs
-ffffffff81202770 t bpf_prog_free
-ffffffff812027d0 t bpf_prog_free_deferred
-ffffffff81202940 t bpf_user_rnd_init_once
-ffffffff812029c0 t bpf_user_rnd_u32
-ffffffff81202a20 t bpf_get_raw_cpu_id
-ffffffff81202a40 t bpf_get_trace_printk_proto
-ffffffff81202a50 t bpf_get_trace_vprintk_proto
-ffffffff81202a60 t bpf_event_output
-ffffffff81202a80 t bpf_jit_compile
-ffffffff81202a90 t bpf_jit_needs_zext
-ffffffff81202aa0 t bpf_jit_supports_subprog_tailcalls
-ffffffff81202ab0 t bpf_jit_supports_kfunc_call
-ffffffff81202ac0 t bpf_arch_text_poke
-ffffffff81202ad0 t bpf_arch_text_copy
-ffffffff81202af0 t bpf_arch_text_invalidate
-ffffffff81202b00 t __traceiter_xdp_exception
-ffffffff81202b60 t __traceiter_xdp_bulk_tx
-ffffffff81202bd0 t __traceiter_xdp_redirect
-ffffffff81202c50 t __traceiter_xdp_redirect_err
-ffffffff81202cd0 t __traceiter_xdp_redirect_map
-ffffffff81202d50 t __traceiter_xdp_redirect_map_err
-ffffffff81202dd0 t __traceiter_xdp_cpumap_kthread
-ffffffff81202e40 t __traceiter_xdp_cpumap_enqueue
-ffffffff81202eb0 t __traceiter_xdp_devmap_xmit
-ffffffff81202f20 t __traceiter_mem_disconnect
-ffffffff81202f70 t __traceiter_mem_connect
-ffffffff81202fc0 t __traceiter_mem_return_failed
-ffffffff81203010 t trace_event_raw_event_xdp_exception
-ffffffff812030f0 t perf_trace_xdp_exception
-ffffffff81203200 t trace_event_raw_event_xdp_bulk_tx
-ffffffff812032f0 t perf_trace_xdp_bulk_tx
-ffffffff81203410 t trace_event_raw_event_xdp_redirect_template
-ffffffff81203550 t perf_trace_xdp_redirect_template
-ffffffff812036d0 t trace_event_raw_event_xdp_cpumap_kthread
-ffffffff812037e0 t perf_trace_xdp_cpumap_kthread
-ffffffff81203940 t trace_event_raw_event_xdp_cpumap_enqueue
-ffffffff81203a30 t perf_trace_xdp_cpumap_enqueue
-ffffffff81203b60 t trace_event_raw_event_xdp_devmap_xmit
-ffffffff81203c60 t perf_trace_xdp_devmap_xmit
-ffffffff81203d90 t trace_event_raw_event_mem_disconnect
-ffffffff81203e60 t perf_trace_mem_disconnect
-ffffffff81203f70 t trace_event_raw_event_mem_connect
-ffffffff81204050 t perf_trace_mem_connect
-ffffffff81204170 t trace_event_raw_event_mem_return_failed
-ffffffff81204240 t perf_trace_mem_return_failed
-ffffffff81204350 t __bpf_prog_run_args32
-ffffffff81204420 t __bpf_prog_run_args64
-ffffffff81204520 t __bpf_prog_run_args96
-ffffffff81204650 t __bpf_prog_run_args128
-ffffffff812047b0 t __bpf_prog_run_args160
-ffffffff812048a0 t __bpf_prog_run_args192
-ffffffff81204990 t __bpf_prog_run_args224
-ffffffff81204a80 t __bpf_prog_run_args256
-ffffffff81204b70 t __bpf_prog_run_args288
-ffffffff81204c60 t __bpf_prog_run_args320
-ffffffff81204d50 t __bpf_prog_run_args352
-ffffffff81204e40 t __bpf_prog_run_args384
-ffffffff81204f30 t __bpf_prog_run_args416
-ffffffff81205020 t __bpf_prog_run_args448
-ffffffff81205110 t __bpf_prog_run_args480
-ffffffff81205200 t __bpf_prog_run_args512
-ffffffff812052f0 t ___bpf_prog_run
-ffffffff81206d80 t __bpf_prog_run32
-ffffffff81206e60 t __bpf_prog_run64
-ffffffff81206f70 t __bpf_prog_run96
-ffffffff812070b0 t __bpf_prog_run128
-ffffffff81207220 t __bpf_prog_run160
-ffffffff81207300 t __bpf_prog_run192
-ffffffff812073e0 t __bpf_prog_run224
-ffffffff812074c0 t __bpf_prog_run256
-ffffffff812075a0 t __bpf_prog_run288
-ffffffff81207680 t __bpf_prog_run320
-ffffffff81207760 t __bpf_prog_run352
-ffffffff81207840 t __bpf_prog_run384
-ffffffff81207920 t __bpf_prog_run416
-ffffffff81207a00 t __bpf_prog_run448
-ffffffff81207ae0 t __bpf_prog_run480
-ffffffff81207bc0 t __bpf_prog_run512
-ffffffff81207ca0 t __bpf_prog_ret1
-ffffffff81207cb0 t trace_raw_output_xdp_exception
-ffffffff81207d30 t trace_raw_output_xdp_bulk_tx
-ffffffff81207dc0 t trace_raw_output_xdp_redirect_template
-ffffffff81207e60 t trace_raw_output_xdp_cpumap_kthread
-ffffffff81207f20 t trace_raw_output_xdp_cpumap_enqueue
-ffffffff81207fb0 t trace_raw_output_xdp_devmap_xmit
-ffffffff81208040 t trace_raw_output_mem_disconnect
-ffffffff812080c0 t trace_raw_output_mem_connect
-ffffffff81208140 t trace_raw_output_mem_return_failed
-ffffffff812081c0 t __static_call_return0
-ffffffff812081d0 t __static_call_update
-ffffffff81208380 t static_call_text_reserved
-ffffffff81208400 t static_call_site_cmp
-ffffffff81208440 t static_call_site_swap
-ffffffff81208470 t perf_proc_update_handler
-ffffffff81208530 t perf_cpu_time_max_percent_handler
-ffffffff812085b0 t perf_sample_event_took
-ffffffff812086b0 t perf_pmu_disable
-ffffffff81208700 t perf_pmu_enable
-ffffffff81208750 t perf_event_disable_local
-ffffffff812088f0 t __perf_event_disable
-ffffffff81208990 t perf_event_disable
-ffffffff81208a00 t _perf_event_disable
-ffffffff81208a50 t perf_event_disable_inatomic
-ffffffff81208a80 t perf_pmu_resched
-ffffffff81208b20 t ctx_resched
-ffffffff81208c70 t perf_event_enable
-ffffffff81208d10 t _perf_event_enable
-ffffffff81208d90 t perf_event_addr_filters_sync
-ffffffff81208e10 t perf_event_refresh
-ffffffff81208e60 t _perf_event_refresh
-ffffffff81208f00 t perf_sched_cb_dec
-ffffffff81208f90 t perf_sched_cb_inc
-ffffffff81209040 t __perf_event_task_sched_out
-ffffffff812093d0 t __perf_event_task_sched_in
-ffffffff81209520 t perf_event_context_sched_in
-ffffffff812096c0 t perf_event_task_tick
-ffffffff81209a60 t perf_event_read_local
-ffffffff81209c60 t perf_event_release_kernel
-ffffffff81209f60 t perf_remove_from_owner
-ffffffff8120a070 t perf_remove_from_context
-ffffffff8120a110 t put_ctx
-ffffffff8120a1b0 t perf_event_read_value
-ffffffff8120a200 t __perf_event_read_value
-ffffffff8120a2f0 t perf_event_pause
-ffffffff8120a390 t perf_event_period
-ffffffff8120a470 t perf_event_task_enable
-ffffffff8120a640 t perf_event_task_disable
-ffffffff8120a790 t perf_event_update_userpage
-ffffffff8120a910 t ring_buffer_get
-ffffffff8120a990 t ring_buffer_put
-ffffffff8120a9e0 t rb_free_rcu
-ffffffff8120aa00 t perf_event_wakeup
-ffffffff8120aaa0 t perf_event_header__init_id
-ffffffff8120aac0 t __perf_event_header__init_id
-ffffffff8120ac00 t perf_event__output_id_sample
-ffffffff8120acf0 t perf_output_sample
-ffffffff8120b850 t perf_output_read
-ffffffff8120bdd0 t perf_callchain
-ffffffff8120be70 t perf_prepare_sample
-ffffffff8120c740 t perf_get_page_size
-ffffffff8120c8e0 t perf_event_output_forward
-ffffffff8120c9c0 t perf_event_output_backward
-ffffffff8120caa0 t perf_event_output
-ffffffff8120cb90 t perf_event_exec
-ffffffff8120d0f0 t perf_iterate_ctx
-ffffffff8120d230 t perf_event_fork
-ffffffff8120d2d0 t perf_event_namespaces
-ffffffff8120d4d0 t perf_event_comm
-ffffffff8120d5b0 t perf_iterate_sb
-ffffffff8120d790 t perf_event_namespaces_output
-ffffffff8120d950 t perf_event_mmap
-ffffffff8120df60 t perf_event_aux_event
-ffffffff8120e0b0 t perf_log_lost_samples
-ffffffff8120e1f0 t perf_event_ksymbol
-ffffffff8120e400 t perf_event_ksymbol_output
-ffffffff8120e5d0 t perf_event_bpf_event
-ffffffff8120ea10 t perf_event_bpf_output
-ffffffff8120eb30 t perf_event_text_poke
-ffffffff8120ebd0 t perf_event_text_poke_output
-ffffffff8120ef00 t perf_event_itrace_started
-ffffffff8120ef20 t perf_report_aux_output_id
-ffffffff8120f070 t perf_event_account_interrupt
-ffffffff8120f090 t __perf_event_account_interrupt.llvm.2261797703193651681
-ffffffff8120f180 t perf_event_overflow
-ffffffff8120f1a0 t __perf_event_overflow.llvm.2261797703193651681
-ffffffff8120f330 t perf_swevent_set_period
-ffffffff8120f3b0 t perf_swevent_get_recursion_context
-ffffffff8120f430 t perf_swevent_put_recursion_context
-ffffffff8120f470 t ___perf_sw_event
-ffffffff8120f5f0 t __perf_sw_event
-ffffffff8120f6d0 t perf_trace_run_bpf_submit
-ffffffff8120f740 t perf_tp_event
-ffffffff8120f9d0 t perf_swevent_event
-ffffffff8120fb30 t perf_event_set_bpf_prog
-ffffffff8120fbf0 t perf_event_free_bpf_prog
-ffffffff8120fc00 t perf_bp_event
-ffffffff8120fcd0 t nr_addr_filters_show
-ffffffff8120fd00 t perf_pmu_register
-ffffffff81210230 t pmu_dev_alloc
-ffffffff81210330 t perf_pmu_start_txn
-ffffffff812103a0 t perf_pmu_commit_txn
-ffffffff81210420 t perf_pmu_cancel_txn
-ffffffff812104a0 t perf_pmu_nop_txn
-ffffffff812104b0 t perf_pmu_nop_int
-ffffffff812104c0 t perf_pmu_nop_void
-ffffffff812104d0 t perf_event_nop_int
-ffffffff812104e0 t perf_event_idx_default
-ffffffff812104f0 t perf_pmu_unregister
-ffffffff812105c0 t __x64_sys_perf_event_open
-ffffffff81211ae0 t perf_event_create_kernel_counter
-ffffffff81211cc0 t perf_event_alloc
-ffffffff812123d0 t find_get_context
-ffffffff81212940 t perf_install_in_context
-ffffffff81212b70 t perf_pmu_migrate_context
-ffffffff81212e50 t perf_event_exit_task
-ffffffff812131e0 t perf_event_free_task
-ffffffff812134f0 t perf_event_delayed_put
-ffffffff81213530 t perf_event_get
-ffffffff81213570 t perf_get_event
-ffffffff812135a0 t perf_event_attrs
-ffffffff812135c0 t perf_event_init_task
-ffffffff812138a0 t perf_event_init_cpu
-ffffffff812139b0 t perf_event_exit_cpu
-ffffffff81213aa0 t perf_event_sysfs_show
-ffffffff81213ad0 t perf_duration_warn
-ffffffff81213b20 t update_context_time
-ffffffff81213b70 t group_sched_out
-ffffffff81213c60 t event_sched_out
-ffffffff81213ed0 t perf_event_set_state
-ffffffff81213fe0 t local_clock
-ffffffff81214000 t perf_event_update_time
-ffffffff81214070 t perf_event_ctx_lock_nested
-ffffffff81214120 t event_function_call
-ffffffff812142a0 t event_function
-ffffffff812143a0 t remote_function
-ffffffff81214400 t task_ctx_sched_out
-ffffffff81214440 t ctx_sched_out
-ffffffff812145d0 t ctx_sched_in
-ffffffff812146a0 t ctx_pinned_sched_in
-ffffffff81214710 t ctx_flexible_sched_in
-ffffffff81214780 t visit_groups_merge
-ffffffff81215020 t perf_mux_hrtimer_restart
-ffffffff812150d0 t event_sched_in
-ffffffff812154c0 t perf_log_throttle
-ffffffff81215640 t __perf_event_enable
-ffffffff81215830 t __perf_pmu_sched_task
-ffffffff81215930 t context_equiv
-ffffffff812159c0 t perf_event_sync_stat
-ffffffff81215b60 t perf_adjust_period
-ffffffff81215d80 t __perf_remove_from_context
-ffffffff81216100 t perf_group_detach
-ffffffff81216660 t list_del_event
-ffffffff81216780 t _free_event
-ffffffff81216b00 t ring_buffer_attach
-ffffffff81216d70 t perf_addr_filters_splice
-ffffffff81216ed0 t free_event_rcu
-ffffffff81216f00 t perf_sched_delayed
-ffffffff81216f50 t __perf_event_stop
-ffffffff81216fe0 t free_ctx
-ffffffff81217020 t perf_event_read
-ffffffff812172b0 t __perf_event_read
-ffffffff81217510 t __perf_event_period
-ffffffff81217660 t perf_event_exit_event
-ffffffff81217860 t perf_lock_task_context
-ffffffff812179b0 t perf_event_task_output
-ffffffff81217c70 t perf_event_comm_output
-ffffffff81217ec0 t perf_event_mmap_output
-ffffffff81218370 t perf_event_switch_output
-ffffffff81218560 t perf_tp_event_init
-ffffffff812185b0 t perf_swevent_start
-ffffffff812185d0 t perf_swevent_stop
-ffffffff812185f0 t perf_swevent_read
-ffffffff81218600 t tp_perf_event_destroy
-ffffffff81218610 t perf_uprobe_event_init
-ffffffff81218690 t retprobe_show
-ffffffff812186c0 t ref_ctr_offset_show
-ffffffff812186f0 t pmu_dev_release
-ffffffff81218700 t perf_event_mux_interval_ms_show
-ffffffff81218730 t perf_event_mux_interval_ms_store
-ffffffff812188a0 t perf_mux_hrtimer_handler
-ffffffff81218b50 t rotate_ctx
-ffffffff81218c20 t perf_copy_attr
-ffffffff81218f10 t perf_allow_kernel
-ffffffff81218f60 t perf_event_set_output
-ffffffff812191a0 t ktime_get_real_ns
-ffffffff812191c0 t ktime_get_boottime_ns
-ffffffff812191e0 t ktime_get_clocktai_ns
-ffffffff81219200 t perf_pending_irq
-ffffffff812193f0 t perf_pending_task
-ffffffff81219530 t account_event
-ffffffff812197e0 t perf_try_init_event
-ffffffff812198d0 t add_event_to_ctx
-ffffffff81219d20 t __perf_install_in_context
-ffffffff81219eb0 t perf_read
-ffffffff8121a1c0 t perf_poll
-ffffffff8121a280 t perf_ioctl
-ffffffff8121b070 t perf_mmap
-ffffffff8121b570 t perf_release
-ffffffff8121b590 t perf_fasync
-ffffffff8121b600 t __perf_read_group_add
-ffffffff8121b790 t _perf_event_reset
-ffffffff8121b7c0 t perf_event_addr_filters_apply
-ffffffff8121bb70 t perf_event_modify_breakpoint
-ffffffff8121bc50 t get_uid
-ffffffff8121bc90 t get_uid
-ffffffff8121bcd0 t get_uid
-ffffffff8121bd10 t perf_event_init_userpage
-ffffffff8121bd70 t perf_mmap_open
-ffffffff8121bdd0 t perf_mmap_close
-ffffffff8121c180 t perf_mmap_fault
-ffffffff8121c230 t __perf_pmu_output_stop
-ffffffff8121c2f0 t __perf_event_output_stop
-ffffffff8121c380 t inherit_task_group
-ffffffff8121c670 t inherit_event
-ffffffff8121ca30 t __perf_event_exit_context
-ffffffff8121cad0 t perf_swevent_init
-ffffffff8121cd00 t perf_swevent_add
-ffffffff8121ce10 t perf_swevent_del
-ffffffff8121ce40 t sw_perf_event_destroy
-ffffffff8121cf20 t cpu_clock_event_init
-ffffffff8121d000 t cpu_clock_event_add
-ffffffff8121d090 t cpu_clock_event_del
-ffffffff8121d0f0 t cpu_clock_event_start
-ffffffff8121d170 t cpu_clock_event_stop
-ffffffff8121d1d0 t cpu_clock_event_read
-ffffffff8121d200 t perf_swevent_hrtimer
-ffffffff8121d350 t task_clock_event_init
-ffffffff8121d430 t task_clock_event_add
-ffffffff8121d4c0 t task_clock_event_del
-ffffffff8121d520 t task_clock_event_start
-ffffffff8121d5a0 t task_clock_event_stop
-ffffffff8121d600 t task_clock_event_read
-ffffffff8121d650 t perf_reboot
-ffffffff8121d6a0 t perf_output_begin_forward
-ffffffff8121d8e0 t perf_output_begin_backward
-ffffffff8121db30 t perf_output_begin
-ffffffff8121ddb0 t perf_output_copy
-ffffffff8121de50 t perf_output_skip
-ffffffff8121dee0 t perf_output_end
-ffffffff8121df00 t perf_output_put_handle.llvm.15260471373627126064
-ffffffff8121dfc0 t perf_aux_output_flag
-ffffffff8121dfe0 t perf_aux_output_begin
-ffffffff8121e1b0 t rb_free_aux
-ffffffff8121e1f0 t perf_aux_output_end
-ffffffff8121e370 t perf_aux_output_skip
-ffffffff8121e450 t perf_get_aux
-ffffffff8121e480 t perf_output_copy_aux
-ffffffff8121e5e0 t rb_alloc_aux
-ffffffff8121e8c0 t __rb_free_aux
-ffffffff8121e9c0 t rb_alloc
-ffffffff8121ec30 t rb_free
-ffffffff8121ed20 t perf_mmap_to_page
-ffffffff8121ee10 t get_callchain_buffers
-ffffffff8121ef70 t put_callchain_buffers
-ffffffff8121efc0 t get_callchain_entry
-ffffffff8121f0a0 t put_callchain_entry
-ffffffff8121f0e0 t get_perf_callchain
-ffffffff8121f270 t perf_event_max_stack_handler
-ffffffff8121f350 t release_callchain_buffers_rcu
-ffffffff8121f3b0 t arch_reserve_bp_slot
-ffffffff8121f3c0 t arch_release_bp_slot
-ffffffff8121f3d0 t arch_unregister_hw_breakpoint
-ffffffff8121f3e0 t reserve_bp_slot
-ffffffff8121f420 t bp_constraints_lock
-ffffffff8121f4c0 t __reserve_bp_slot
-ffffffff8121f850 t bp_constraints_unlock
-ffffffff8121f8e0 t release_bp_slot
-ffffffff8121f930 t dbg_reserve_bp_slot
-ffffffff8121f9a0 t dbg_release_bp_slot
-ffffffff8121fa20 t register_perf_hw_breakpoint
-ffffffff8121fb60 t register_user_hw_breakpoint
-ffffffff8121fb90 t modify_user_hw_breakpoint_check
-ffffffff8121fdb0 t modify_user_hw_breakpoint
-ffffffff8121fe60 t unregister_hw_breakpoint
-ffffffff8121fe80 t register_wide_hw_breakpoint
-ffffffff8121ffd0 t unregister_wide_hw_breakpoint
-ffffffff81220060 t hw_breakpoint_is_used
-ffffffff81220160 t toggle_bp_slot
-ffffffff81220c50 t task_bp_pinned
-ffffffff81220e00 t hw_breakpoint_event_init
-ffffffff81220e50 t hw_breakpoint_add
-ffffffff81220ea0 t hw_breakpoint_del
-ffffffff81220eb0 t hw_breakpoint_start
-ffffffff81220ed0 t hw_breakpoint_stop
-ffffffff81220ef0 t bp_perf_event_destroy
-ffffffff81220f40 t is_swbp_insn
-ffffffff81220f60 t is_trap_insn
-ffffffff81220f70 t uprobe_write_opcode
-ffffffff81221880 t update_ref_ctr
-ffffffff81221bb0 t set_swbp
-ffffffff81221bd0 t set_orig_insn
-ffffffff81221bf0 t uprobe_unregister
-ffffffff81221cd0 t __uprobe_unregister
-ffffffff81221da0 t put_uprobe
-ffffffff81221e90 t uprobe_register
-ffffffff81221eb0 t __uprobe_register.llvm.8629736535379325857
-ffffffff812221a0 t uprobe_register_refctr
-ffffffff812221b0 t uprobe_apply
-ffffffff812222e0 t register_for_each_vma
-ffffffff81222760 t uprobe_mmap
-ffffffff81222c80 t install_breakpoint
-ffffffff81222f30 t uprobe_munmap
-ffffffff81223060 t uprobe_clear_state
-ffffffff81223160 t uprobe_start_dup_mmap
-ffffffff812231c0 t uprobe_end_dup_mmap
-ffffffff81223230 t uprobe_dup_mmap
-ffffffff81223260 t arch_uprobe_copy_ixol
-ffffffff812232f0 t uprobe_get_swbp_addr
-ffffffff81223310 t uprobe_get_trap_addr
-ffffffff81223350 t uprobe_free_utask
-ffffffff81223470 t uprobe_copy_process
-ffffffff81223680 t dup_xol_work
-ffffffff812236f0 t uprobe_deny_signal
-ffffffff81223780 t arch_uprobe_ignore
-ffffffff81223790 t uprobe_notify_resume
-ffffffff812246e0 t uprobe_pre_sstep_notifier
-ffffffff81224730 t uprobe_post_sstep_notifier
-ffffffff81224780 t __update_ref_ctr
-ffffffff812248d0 t __create_xol_area
-ffffffff81224b40 t jump_label_lock
-ffffffff81224b60 t jump_label_unlock
-ffffffff81224b80 t static_key_count
-ffffffff81224ba0 t static_key_slow_inc_cpuslocked
-ffffffff81224c20 t jump_label_update
-ffffffff81224db0 t static_key_slow_inc
-ffffffff81224de0 t static_key_enable_cpuslocked
-ffffffff81224e60 t static_key_enable
-ffffffff81224e90 t static_key_disable_cpuslocked
-ffffffff81224f10 t static_key_disable
-ffffffff81224f40 t jump_label_update_timeout
-ffffffff81224f70 t static_key_slow_dec
-ffffffff81224fc0 t static_key_slow_dec_cpuslocked
-ffffffff81225000 t __static_key_slow_dec_cpuslocked
-ffffffff81225070 t __static_key_slow_dec_deferred
-ffffffff81225100 t __static_key_deferred_flush
-ffffffff81225140 t jump_label_rate_limit
-ffffffff812251c0 t jump_label_text_reserved
-ffffffff81225270 t jump_label_swap
-ffffffff812252c0 t jump_label_cmp
-ffffffff81225320 t trace_rcu_dyntick
-ffffffff81225380 t ct_irq_enter_irqson
-ffffffff812253e0 t ct_irq_exit_irqson
-ffffffff81225440 t memremap
-ffffffff81225630 t memunmap
-ffffffff81225660 t devm_memremap
-ffffffff81225700 t devm_memremap_release
-ffffffff81225730 t devm_memunmap
-ffffffff81225760 t devm_memremap_match
-ffffffff81225780 t __traceiter_rseq_update
-ffffffff812257d0 t __traceiter_rseq_ip_fixup
-ffffffff81225840 t trace_event_raw_event_rseq_update
-ffffffff81225900 t perf_trace_rseq_update
-ffffffff812259f0 t trace_event_raw_event_rseq_ip_fixup
-ffffffff81225ad0 t perf_trace_rseq_ip_fixup
-ffffffff81225be0 t __rseq_handle_notify_resume
-ffffffff81226130 t __x64_sys_rseq
-ffffffff81226270 t trace_raw_output_rseq_update
-ffffffff812262c0 t trace_raw_output_rseq_ip_fixup
-ffffffff81226320 t __traceiter_mm_filemap_delete_from_page_cache
-ffffffff81226370 t __traceiter_mm_filemap_add_to_page_cache
-ffffffff812263c0 t __traceiter_filemap_set_wb_err
-ffffffff81226410 t __traceiter_file_check_and_advance_wb_err
-ffffffff81226460 t trace_event_raw_event_mm_filemap_op_page_cache
-ffffffff81226580 t perf_trace_mm_filemap_op_page_cache
-ffffffff812266d0 t trace_event_raw_event_filemap_set_wb_err
-ffffffff812267b0 t perf_trace_filemap_set_wb_err
-ffffffff812268d0 t trace_event_raw_event_file_check_and_advance_wb_err
-ffffffff812269e0 t perf_trace_file_check_and_advance_wb_err
-ffffffff81226b20 t __filemap_remove_folio
-ffffffff81226ca0 t filemap_unaccount_folio
-ffffffff81226e30 t filemap_free_folio
-ffffffff81226e90 t filemap_remove_folio
-ffffffff81226f60 t delete_from_page_cache_batch
-ffffffff81227260 t filemap_check_errors
-ffffffff812272d0 t filemap_fdatawrite_wbc
-ffffffff81227350 t __filemap_fdatawrite_range
-ffffffff81227400 t filemap_fdatawrite
-ffffffff812274c0 t filemap_fdatawrite_range
-ffffffff81227580 t filemap_flush
-ffffffff81227630 t filemap_range_has_page
-ffffffff81227700 t filemap_fdatawait_range
-ffffffff81227760 t __filemap_fdatawait_range.llvm.3041285213816295486
-ffffffff81227910 t filemap_fdatawait_range_keep_errors
-ffffffff81227950 t file_fdatawait_range
-ffffffff81227980 t file_check_and_advance_wb_err
-ffffffff81227a60 t filemap_fdatawait_keep_errors
-ffffffff81227ab0 t filemap_range_has_writeback
-ffffffff81227c40 t filemap_write_and_wait_range
-ffffffff81227da0 t __filemap_set_wb_err
-ffffffff81227e10 t file_write_and_wait_range
-ffffffff81227f50 t replace_page_cache_page
-ffffffff81228140 t __filemap_add_folio
-ffffffff812284b0 t filemap_add_folio
-ffffffff81228560 t filemap_invalidate_lock_two
-ffffffff812285b0 t filemap_invalidate_unlock_two
-ffffffff812285f0 t migration_entry_wait_on_locked
-ffffffff81228830 t wake_page_function
-ffffffff812288e0 t folio_wait_bit
-ffffffff81228900 t folio_wait_bit_common.llvm.3041285213816295486
-ffffffff81228b80 t folio_wait_bit_killable
-ffffffff81228ba0 t folio_add_wait_queue
-ffffffff81228c60 t folio_unlock
-ffffffff81228c80 t folio_wake_bit
-ffffffff81228dc0 t folio_end_private_2
-ffffffff81228df0 t folio_wait_private_2
-ffffffff81228e40 t folio_wait_private_2_killable
-ffffffff81228e90 t folio_end_writeback
-ffffffff81228f10 t page_endio
-ffffffff81229030 t __folio_lock
-ffffffff81229050 t __folio_lock_killable
-ffffffff81229070 t __folio_lock_or_retry
-ffffffff81229150 t page_cache_next_miss
-ffffffff81229240 t page_cache_prev_miss
-ffffffff81229330 t __filemap_get_folio
-ffffffff812296d0 t find_get_entries
-ffffffff81229850 t find_lock_entries
-ffffffff81229a60 t filemap_get_folios
-ffffffff81229c10 t filemap_get_folios_contig
-ffffffff81229e40 t find_get_pages_range_tag
-ffffffff8122a040 t filemap_read
-ffffffff8122acc0 t generic_file_read_iter
-ffffffff8122ae00 t mapping_seek_hole_data
-ffffffff8122b210 t filemap_fault
-ffffffff8122b750 t count_memcg_event_mm
-ffffffff8122b7e0 t do_sync_mmap_readahead
-ffffffff8122ba30 t filemap_read_folio
-ffffffff8122bb30 t filemap_map_pages
-ffffffff8122c090 t filemap_page_mkwrite
-ffffffff8122c210 t generic_file_mmap
-ffffffff8122c260 t generic_file_readonly_mmap
-ffffffff8122c2c0 t read_cache_folio
-ffffffff8122c2e0 t do_read_cache_folio.llvm.3041285213816295486
-ffffffff8122c4f0 t read_cache_page
-ffffffff8122c530 t read_cache_page_gfp
-ffffffff8122c580 t dio_warn_stale_pagecache
-ffffffff8122c6e0 t generic_file_direct_write
-ffffffff8122c930 t generic_perform_write
-ffffffff8122cb80 t __generic_file_write_iter
-ffffffff8122ccd0 t generic_file_write_iter
-ffffffff8122cd90 t filemap_release_folio
-ffffffff8122cde0 t trace_raw_output_mm_filemap_op_page_cache
-ffffffff8122ce60 t trace_raw_output_filemap_set_wb_err
-ffffffff8122ced0 t trace_raw_output_file_check_and_advance_wb_err
-ffffffff8122cf50 t page_mapcount
-ffffffff8122cf80 t filemap_get_read_batch
-ffffffff8122d1d0 t next_uptodate_page
-ffffffff8122d3b0 t mempool_exit
-ffffffff8122d450 t remove_element
-ffffffff8122d4a0 t mempool_destroy
-ffffffff8122d540 t mempool_init_node
-ffffffff8122d620 t mempool_init
-ffffffff8122d640 t mempool_create
-ffffffff8122d6c0 t mempool_create_node
-ffffffff8122d780 t mempool_resize
-ffffffff8122d960 t mempool_alloc
-ffffffff8122db20 t mempool_free
-ffffffff8122dbb0 t mempool_alloc_slab
-ffffffff8122dbd0 t mempool_free_slab
-ffffffff8122dbf0 t mempool_kmalloc
-ffffffff8122dc10 t mempool_kfree
-ffffffff8122dc20 t mempool_alloc_pages
-ffffffff8122dc40 t mempool_free_pages
-ffffffff8122dc50 t __traceiter_oom_score_adj_update
-ffffffff8122dca0 t __traceiter_reclaim_retry_zone
-ffffffff8122dd30 t __traceiter_mark_victim
-ffffffff8122dd80 t __traceiter_wake_reaper
-ffffffff8122ddd0 t __traceiter_start_task_reaping
-ffffffff8122de20 t __traceiter_finish_task_reaping
-ffffffff8122de70 t __traceiter_skip_task_reaping
-ffffffff8122dec0 t __traceiter_compact_retry
-ffffffff8122df50 t trace_event_raw_event_oom_score_adj_update
-ffffffff8122e030 t perf_trace_oom_score_adj_update
-ffffffff8122e150 t trace_event_raw_event_reclaim_retry_zone
-ffffffff8122e250 t perf_trace_reclaim_retry_zone
-ffffffff8122e390 t trace_event_raw_event_mark_victim
-ffffffff8122e450 t perf_trace_mark_victim
-ffffffff8122e540 t trace_event_raw_event_wake_reaper
-ffffffff8122e600 t perf_trace_wake_reaper
-ffffffff8122e6f0 t trace_event_raw_event_start_task_reaping
-ffffffff8122e7b0 t perf_trace_start_task_reaping
-ffffffff8122e8a0 t trace_event_raw_event_finish_task_reaping
-ffffffff8122e960 t perf_trace_finish_task_reaping
-ffffffff8122ea50 t trace_event_raw_event_skip_task_reaping
-ffffffff8122eb10 t perf_trace_skip_task_reaping
-ffffffff8122ec00 t trace_event_raw_event_compact_retry
-ffffffff8122ed10 t perf_trace_compact_retry
-ffffffff8122ee50 t find_lock_task_mm
-ffffffff8122eee0 t oom_badness
-ffffffff8122f090 t process_shares_mm
-ffffffff8122f0e0 t exit_oom_victim
-ffffffff8122f120 t oom_killer_enable
-ffffffff8122f140 t oom_killer_disable
-ffffffff8122f2e0 t register_oom_notifier
-ffffffff8122f300 t unregister_oom_notifier
-ffffffff8122f320 t out_of_memory
-ffffffff8122f680 t task_will_free_mem
-ffffffff8122f790 t mark_oom_victim
-ffffffff8122f850 t oom_kill_process
-ffffffff8122fa60 t dump_header
-ffffffff8122fcb0 t pagefault_out_of_memory
-ffffffff8122fd10 t __x64_sys_process_mrelease
-ffffffff8122ff00 t trace_raw_output_oom_score_adj_update
-ffffffff8122ff60 t trace_raw_output_reclaim_retry_zone
-ffffffff81230000 t trace_raw_output_mark_victim
-ffffffff81230050 t trace_raw_output_wake_reaper
-ffffffff812300a0 t trace_raw_output_start_task_reaping
-ffffffff812300f0 t trace_raw_output_finish_task_reaping
-ffffffff81230140 t trace_raw_output_skip_task_reaping
-ffffffff81230190 t trace_raw_output_compact_retry
-ffffffff81230240 t oom_reaper
-ffffffff81230620 t __oom_reap_task_mm
-ffffffff812307f0 t wake_oom_reaper
-ffffffff812308f0 t __oom_kill_process
-ffffffff81230da0 t oom_kill_memcg_member
-ffffffff81230e10 t oom_evaluate_task
-ffffffff81230f60 t dump_task
-ffffffff812310b0 t generic_fadvise
-ffffffff81231350 t vfs_fadvise
-ffffffff81231380 t ksys_fadvise64_64
-ffffffff81231400 t __x64_sys_fadvise64_64
-ffffffff81231490 t __x64_sys_fadvise64
-ffffffff81231520 t copy_from_kernel_nofault
-ffffffff812315d0 t copy_to_kernel_nofault
-ffffffff81231660 t strncpy_from_kernel_nofault
-ffffffff812316e0 t copy_from_user_nofault
-ffffffff81231770 t copy_to_user_nofault
-ffffffff81231800 t strncpy_from_user_nofault
-ffffffff81231860 t strnlen_user_nofault
-ffffffff81231890 t __copy_overflow
-ffffffff812318b0 t global_dirty_limits
-ffffffff81231960 t domain_dirty_limits
-ffffffff81231b00 t node_dirty_ok
-ffffffff81231ca0 t wb_writeout_inc
-ffffffff81231d00 t __wb_writeout_add
-ffffffff81231e00 t wb_domain_init
-ffffffff81231ed0 t writeout_period
-ffffffff81231f60 t wb_domain_exit
-ffffffff81231f90 t bdi_set_min_ratio
-ffffffff81232000 t bdi_set_max_ratio
-ffffffff81232060 t wb_calc_thresh
-ffffffff812321d0 t wb_update_bandwidth
-ffffffff81232270 t __wb_update_bandwidth
-ffffffff812324f0 t balance_dirty_pages_ratelimited_flags
-ffffffff81232840 t balance_dirty_pages
-ffffffff812332d0 t balance_dirty_pages_ratelimited
-ffffffff812332f0 t wb_over_bg_thresh
-ffffffff81233870 t laptop_mode_timer_fn
-ffffffff812338a0 t laptop_io_completion
-ffffffff812338d0 t laptop_sync_completion
-ffffffff81233920 t writeback_set_ratelimit
-ffffffff81233a00 t page_writeback_cpu_online
-ffffffff81233ae0 t tag_pages_for_writeback
-ffffffff81233c60 t write_cache_pages
-ffffffff81234160 t generic_writepages
-ffffffff81234210 t __writepage
-ffffffff81234280 t do_writepages
-ffffffff812344c0 t folio_write_one
-ffffffff81234600 t folio_wait_writeback
-ffffffff81234690 t folio_clear_dirty_for_io
-ffffffff81234870 t noop_dirty_folio
-ffffffff812348a0 t folio_account_cleaned
-ffffffff81234990 t __folio_mark_dirty
-ffffffff81234bd0 t filemap_dirty_folio
-ffffffff81234c40 t folio_account_redirty
-ffffffff81234d40 t folio_redirty_for_writepage
-ffffffff81234de0 t folio_mark_dirty
-ffffffff81234e40 t set_page_dirty_lock
-ffffffff81234eb0 t __folio_cancel_dirty
-ffffffff81234f60 t __folio_end_writeback
-ffffffff812351a0 t __folio_start_writeback
-ffffffff81235400 t folio_wait_writeback_killable
-ffffffff812354a0 t folio_wait_stable
-ffffffff812354d0 t wb_update_dirty_ratelimit
-ffffffff812356c0 t wb_dirty_limits
-ffffffff812358e0 t wb_position_ratio
-ffffffff81235b30 t dirty_background_ratio_handler
-ffffffff81235b60 t dirty_background_bytes_handler
-ffffffff81235ba0 t dirty_ratio_handler
-ffffffff81235cc0 t dirty_bytes_handler
-ffffffff81235df0 t dirty_writeback_centisecs_handler
-ffffffff81235e60 t page_mapping
-ffffffff81235e80 t unlock_page
-ffffffff81235ea0 t end_page_writeback
-ffffffff81235ec0 t wait_on_page_writeback
-ffffffff81235ee0 t wait_for_stable_page
-ffffffff81235f00 t page_mapped
-ffffffff81235f20 t mark_page_accessed
-ffffffff81235f40 t set_page_writeback
-ffffffff81235f70 t set_page_dirty
-ffffffff81235f90 t __set_page_dirty_nobuffers
-ffffffff81235fe0 t clear_page_dirty_for_io
-ffffffff81236000 t redirty_page_for_writepage
-ffffffff81236020 t lru_cache_add
-ffffffff81236040 t lru_cache_add_inactive_or_unevictable
-ffffffff81236060 t add_to_page_cache_lru
-ffffffff81236090 t pagecache_get_page
-ffffffff812360e0 t grab_cache_page_write_begin
-ffffffff81236100 t delete_from_page_cache
-ffffffff81236120 t try_to_release_page
-ffffffff81236150 t isolate_lru_page
-ffffffff812361a0 t putback_lru_page
-ffffffff812361c0 t file_ra_state_init
-ffffffff812361f0 t readahead_gfp_mask
-ffffffff81236210 t page_cache_ra_unbounded
-ffffffff81236390 t read_pages
-ffffffff812365d0 t force_page_cache_ra
-ffffffff81236690 t do_page_cache_ra
-ffffffff812366d0 t page_cache_ra_order
-ffffffff81236940 t page_cache_sync_ra
-ffffffff81236a60 t ondemand_readahead
-ffffffff81236d40 t page_cache_async_ra
-ffffffff81236d90 t ksys_readahead
-ffffffff81236e30 t __x64_sys_readahead
-ffffffff81236ed0 t readahead_expand
-ffffffff812370e0 t __traceiter_mm_lru_insertion
-ffffffff81237130 t __traceiter_mm_lru_activate
-ffffffff81237180 t trace_event_raw_event_mm_lru_insertion
-ffffffff812372f0 t perf_trace_mm_lru_insertion
-ffffffff812374a0 t trace_event_raw_event_mm_lru_activate
-ffffffff81237570 t perf_trace_mm_lru_activate
-ffffffff81237670 t __folio_put
-ffffffff812376c0 t put_pages_list
-ffffffff812377a0 t get_kernel_pages
-ffffffff81237850 t folio_rotate_reclaimable
-ffffffff81237960 t lru_move_tail_fn
-ffffffff81237c80 t lru_note_cost
-ffffffff81237dd0 t lru_note_cost_folio
-ffffffff81237e60 t folio_activate
-ffffffff81237f40 t folio_activate_fn
-ffffffff812382c0 t folio_mark_accessed
-ffffffff81238420 t folio_add_lru
-ffffffff81238510 t lru_add_fn
-ffffffff81238700 t folio_add_lru_vma
-ffffffff81238730 t lru_add_drain_cpu
-ffffffff81238890 t folio_batch_move_lru
-ffffffff812389c0 t lru_deactivate_file_fn
-ffffffff81238e40 t lru_deactivate_fn
-ffffffff81239180 t lru_lazyfree_fn
-ffffffff812394e0 t deactivate_file_folio
-ffffffff812395a0 t deactivate_page
-ffffffff812396a0 t mark_page_lazyfree
-ffffffff812397c0 t lru_add_drain
-ffffffff81239820 t lru_add_drain_cpu_zone
-ffffffff81239890 t lru_add_drain_all
-ffffffff812398b0 t __lru_add_drain_all.llvm.3966628585216521188
-ffffffff81239ac0 t lru_cache_disable
-ffffffff81239af0 t release_pages
-ffffffff81239f50 t zone_stat_sub_folio
-ffffffff81239f90 t __pagevec_release
-ffffffff81239fc0 t folio_batch_remove_exceptionals
-ffffffff8123a050 t pagevec_lookup_range_tag
-ffffffff8123a080 t trace_raw_output_mm_lru_insertion
-ffffffff8123a160 t trace_raw_output_mm_lru_activate
-ffffffff8123a1c0 t __page_cache_release
-ffffffff8123a460 t lru_gen_add_folio
-ffffffff8123a6e0 t lru_gen_add_folio
-ffffffff8123a960 t lru_gen_update_size
-ffffffff8123aa50 t lru_gen_update_size
-ffffffff8123ac20 t lru_gen_update_size
-ffffffff8123ad10 t lru_add_drain_per_cpu
-ffffffff8123ad70 t folio_invalidate
-ffffffff8123ada0 t truncate_inode_folio
-ffffffff8123ae30 t truncate_inode_partial_folio
-ffffffff8123afb0 t generic_error_remove_page
-ffffffff8123b000 t invalidate_inode_page
-ffffffff8123b0b0 t truncate_inode_pages_range
-ffffffff8123b8a0 t truncate_folio_batch_exceptionals
-ffffffff8123ba50 t truncate_inode_pages
-ffffffff8123ba70 t truncate_inode_pages_final
-ffffffff8123bac0 t invalidate_mapping_pagevec
-ffffffff8123be60 t invalidate_mapping_pages
-ffffffff8123be80 t invalidate_inode_pages2_range
-ffffffff8123c330 t invalidate_inode_pages2
-ffffffff8123c350 t truncate_pagecache
-ffffffff8123c3b0 t truncate_setsize
-ffffffff8123c430 t pagecache_isize_extended
-ffffffff8123c500 t truncate_pagecache_range
-ffffffff8123c560 t clear_shadow_entry
-ffffffff8123c650 t __traceiter_mm_vmscan_kswapd_sleep
-ffffffff8123c6a0 t __traceiter_mm_vmscan_kswapd_wake
-ffffffff8123c700 t __traceiter_mm_vmscan_wakeup_kswapd
-ffffffff8123c770 t __traceiter_mm_vmscan_direct_reclaim_begin
-ffffffff8123c7c0 t __traceiter_mm_vmscan_memcg_reclaim_begin
-ffffffff8123c810 t __traceiter_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff8123c860 t __traceiter_mm_vmscan_direct_reclaim_end
-ffffffff8123c8b0 t __traceiter_mm_vmscan_memcg_reclaim_end
-ffffffff8123c900 t __traceiter_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff8123c950 t __traceiter_mm_shrink_slab_start
-ffffffff8123c9d0 t __traceiter_mm_shrink_slab_end
-ffffffff8123ca50 t __traceiter_mm_vmscan_lru_isolate
-ffffffff8123cad0 t __traceiter_mm_vmscan_write_folio
-ffffffff8123cb20 t __traceiter_mm_vmscan_lru_shrink_inactive
-ffffffff8123cba0 t __traceiter_mm_vmscan_lru_shrink_active
-ffffffff8123cc20 t __traceiter_mm_vmscan_node_reclaim_begin
-ffffffff8123cc80 t __traceiter_mm_vmscan_node_reclaim_end
-ffffffff8123ccd0 t __traceiter_mm_vmscan_throttled
-ffffffff8123cd40 t trace_event_raw_event_mm_vmscan_kswapd_sleep
-ffffffff8123ce00 t perf_trace_mm_vmscan_kswapd_sleep
-ffffffff8123cef0 t trace_event_raw_event_mm_vmscan_kswapd_wake
-ffffffff8123cfc0 t perf_trace_mm_vmscan_kswapd_wake
-ffffffff8123d0d0 t trace_event_raw_event_mm_vmscan_wakeup_kswapd
-ffffffff8123d1b0 t perf_trace_mm_vmscan_wakeup_kswapd
-ffffffff8123d2c0 t trace_event_raw_event_mm_vmscan_direct_reclaim_begin_template
-ffffffff8123d380 t perf_trace_mm_vmscan_direct_reclaim_begin_template
-ffffffff8123d480 t trace_event_raw_event_mm_vmscan_direct_reclaim_end_template
-ffffffff8123d540 t perf_trace_mm_vmscan_direct_reclaim_end_template
-ffffffff8123d630 t trace_event_raw_event_mm_shrink_slab_start
-ffffffff8123d740 t perf_trace_mm_shrink_slab_start
-ffffffff8123d890 t trace_event_raw_event_mm_shrink_slab_end
-ffffffff8123d990 t perf_trace_mm_shrink_slab_end
-ffffffff8123dac0 t trace_event_raw_event_mm_vmscan_lru_isolate
-ffffffff8123dbc0 t perf_trace_mm_vmscan_lru_isolate
-ffffffff8123dd00 t trace_event_raw_event_mm_vmscan_write_folio
-ffffffff8123dde0 t perf_trace_mm_vmscan_write_folio
-ffffffff8123df00 t trace_event_raw_event_mm_vmscan_lru_shrink_inactive
-ffffffff8123e040 t perf_trace_mm_vmscan_lru_shrink_inactive
-ffffffff8123e1b0 t trace_event_raw_event_mm_vmscan_lru_shrink_active
-ffffffff8123e2b0 t perf_trace_mm_vmscan_lru_shrink_active
-ffffffff8123e3f0 t trace_event_raw_event_mm_vmscan_node_reclaim_begin
-ffffffff8123e4c0 t perf_trace_mm_vmscan_node_reclaim_begin
-ffffffff8123e5d0 t trace_event_raw_event_mm_vmscan_throttled
-ffffffff8123e6b0 t perf_trace_mm_vmscan_throttled
-ffffffff8123e7d0 t free_shrinker_info
-ffffffff8123e800 t alloc_shrinker_info
-ffffffff8123e8f0 t set_shrinker_bit
-ffffffff8123e950 t reparent_shrinker_deferred
-ffffffff8123e9f0 t zone_reclaimable_pages
-ffffffff8123ebb0 t prealloc_shrinker
-ffffffff8123ebc0 t __prealloc_shrinker.llvm.6239917505735433668
-ffffffff8123ee90 t free_prealloced_shrinker
-ffffffff8123eef0 t register_shrinker_prepared
-ffffffff8123ef60 t register_shrinker
-ffffffff8123efe0 t unregister_shrinker
-ffffffff8123f080 t synchronize_shrinkers
-ffffffff8123f0b0 t drop_slab
-ffffffff8123f150 t reclaim_throttle
-ffffffff8123f3d0 t __acct_reclaim_writeback
-ffffffff8123f450 t remove_mapping
-ffffffff8123f4a0 t __remove_mapping
-ffffffff8123f690 t folio_putback_lru
-ffffffff8123f6c0 t reclaim_clean_pages_from_list
-ffffffff8123f970 t shrink_folio_list
-ffffffff81240790 t folio_isolate_lru
-ffffffff812409a0 t reclaim_pages
-ffffffff81240c50 t lru_gen_add_mm
-ffffffff81240d30 t lru_gen_del_mm
-ffffffff81240e90 t lru_gen_migrate_mm
-ffffffff81240fb0 t lru_gen_look_around
-ffffffff812414d0 t get_pte_pfn
-ffffffff812415d0 t lru_gen_online_memcg
-ffffffff812416c0 t lru_gen_offline_memcg
-ffffffff81241700 t lru_gen_rotate_memcg
-ffffffff81241900 t lru_gen_release_memcg
-ffffffff812419d0 t lru_gen_soft_reclaim
-ffffffff812419f0 t lru_gen_init_lruvec
-ffffffff81241b60 t lru_gen_init_pgdat
-ffffffff81241c30 t lru_gen_init_memcg
-ffffffff81241c60 t lru_gen_exit_memcg
-ffffffff81241ce0 t try_to_free_pages
-ffffffff81242280 t do_try_to_free_pages
-ffffffff81242730 t mem_cgroup_shrink_node
-ffffffff81242950 t shrink_lruvec
-ffffffff81243800 t try_to_free_mem_cgroup_pages
-ffffffff81243ab0 t kswapd
-ffffffff81244ce0 t wakeup_kswapd
-ffffffff81244e50 t pgdat_balanced
-ffffffff81244ff0 t kswapd_run
-ffffffff81245090 t kswapd_stop
-ffffffff812450d0 t check_move_unevictable_pages
-ffffffff81245200 t check_move_unevictable_folios
-ffffffff81245670 t trace_raw_output_mm_vmscan_kswapd_sleep
-ffffffff812456c0 t trace_raw_output_mm_vmscan_kswapd_wake
-ffffffff81245720 t trace_raw_output_mm_vmscan_wakeup_kswapd
-ffffffff812457b0 t trace_raw_output_mm_vmscan_direct_reclaim_begin_template
-ffffffff81245840 t trace_raw_output_mm_vmscan_direct_reclaim_end_template
-ffffffff81245890 t trace_raw_output_mm_shrink_slab_start
-ffffffff81245960 t trace_raw_output_mm_shrink_slab_end
-ffffffff812459d0 t trace_raw_output_mm_vmscan_lru_isolate
-ffffffff81245a90 t trace_raw_output_mm_vmscan_write_folio
-ffffffff81245b30 t trace_raw_output_mm_vmscan_lru_shrink_inactive
-ffffffff81245c60 t trace_raw_output_mm_vmscan_lru_shrink_active
-ffffffff81245d30 t trace_raw_output_mm_vmscan_node_reclaim_begin
-ffffffff81245dc0 t trace_raw_output_mm_vmscan_throttled
-ffffffff81245e60 t shrink_slab
-ffffffff81246150 t do_shrink_slab
-ffffffff81246440 t show_min_ttl
-ffffffff81246470 t store_min_ttl
-ffffffff812464e0 t show_enabled
-ffffffff81246520 t store_enabled
-ffffffff81246d30 t lru_gen_seq_write
-ffffffff81247450 t lru_gen_seq_open
-ffffffff81247470 t try_to_inc_max_seq
-ffffffff812481f0 t walk_pud_range
-ffffffff81248f00 t should_skip_vma
-ffffffff81248fc0 t reset_batch_size
-ffffffff812492c0 t walk_pmd_range_locked
-ffffffff81249860 t evict_folios
-ffffffff8124b010 t move_folios_to_lru
-ffffffff8124b340 t lru_gen_seq_start
-ffffffff8124b3e0 t lru_gen_seq_stop
-ffffffff8124b430 t lru_gen_seq_next
-ffffffff8124b480 t lru_gen_seq_show
-ffffffff8124bb90 t allow_direct_reclaim
-ffffffff8124bcd0 t shrink_node
-ffffffff8124cb30 t shrink_one
-ffffffff8124cce0 t lruvec_is_sizable
-ffffffff8124ce70 t try_to_shrink_lruvec
-ffffffff8124d190 t shrink_active_list
-ffffffff8124d5f0 t isolate_lru_folios
-ffffffff8124db00 t vma_is_shmem
-ffffffff8124db20 t shmem_charge
-ffffffff8124dc80 t shmem_recalc_inode
-ffffffff8124dd10 t shmem_uncharge
-ffffffff8124de30 t shmem_is_huge
-ffffffff8124dee0 t shmem_partial_swap_usage
-ffffffff8124e050 t shmem_swap_usage
-ffffffff8124e0b0 t shmem_unlock_mapping
-ffffffff8124e200 t shmem_truncate_range
-ffffffff8124e240 t shmem_undo_range
-ffffffff8124ea90 t shmem_unuse
-ffffffff8124f100 t shmem_get_folio
-ffffffff8124f130 t shmem_get_folio_gfp
-ffffffff8124f9e0 t shmem_get_unmapped_area
-ffffffff8124fc40 t shmem_lock
-ffffffff8124fcd0 t shmem_mfill_atomic_pte
-ffffffff812500f0 t shmem_add_to_page_cache
-ffffffff812503a0 t shmem_writepage.llvm.16562044943732629692
-ffffffff812507f0 t shmem_write_begin.llvm.16562044943732629692
-ffffffff812508c0 t shmem_write_end.llvm.16562044943732629692
-ffffffff81250ac0 t shmem_error_remove_page.llvm.16562044943732629692
-ffffffff81250ad0 t shmem_init_fs_context
-ffffffff81250b40 t shmem_enabled_show
-ffffffff81250cb0 t shmem_enabled_store
-ffffffff81250e30 t shmem_kernel_file_setup
-ffffffff81250e60 t __shmem_file_setup.llvm.16562044943732629692
-ffffffff81250fb0 t shmem_file_setup
-ffffffff81250fe0 t shmem_file_setup_with_mnt
-ffffffff81251000 t shmem_zero_setup
-ffffffff81251070 t shmem_read_mapping_page_gfp
-ffffffff81251120 t reclaim_shmem_address_space
-ffffffff81251310 t shmem_swapin_folio
-ffffffff812518a0 t shmem_replace_folio
-ffffffff81251af0 t shmem_alloc_and_acct_folio
-ffffffff81251d70 t shmem_unused_huge_shrink
-ffffffff81252130 t shmem_fault.llvm.16562044943732629692
-ffffffff81252310 t synchronous_wake_function
-ffffffff81252360 t maybe_unlock_mmap_for_io
-ffffffff812523b0 t shmem_free_fc
-ffffffff812523d0 t shmem_parse_one
-ffffffff81252630 t shmem_parse_options
-ffffffff81252700 t shmem_get_tree
-ffffffff81252720 t shmem_reconfigure
-ffffffff812528b0 t shmem_fill_super
-ffffffff81252b00 t shmem_get_inode
-ffffffff81252f00 t shmem_put_super
-ffffffff81252f40 t shmem_encode_fh
-ffffffff81252fd0 t shmem_fh_to_dentry
-ffffffff81253030 t shmem_get_parent
-ffffffff81253050 t shmem_match
-ffffffff81253080 t shmem_alloc_inode
-ffffffff812530c0 t shmem_destroy_inode
-ffffffff812530d0 t shmem_free_in_core_inode
-ffffffff81253110 t shmem_evict_inode
-ffffffff812533f0 t shmem_statfs
-ffffffff81253490 t shmem_show_options
-ffffffff812535d0 t shmem_unused_huge_count
-ffffffff812535f0 t shmem_unused_huge_scan
-ffffffff81253630 t shmem_xattr_handler_get
-ffffffff81253670 t shmem_xattr_handler_set
-ffffffff812536f0 t shmem_setattr
-ffffffff812538d0 t shmem_getattr
-ffffffff81253a70 t shmem_listxattr
-ffffffff81253a90 t shmem_fileattr_set
-ffffffff81253b40 t shmem_fileattr_get
-ffffffff81253b70 t shmem_file_llseek
-ffffffff81253c30 t shmem_file_read_iter
-ffffffff81253f40 t shmem_mmap
-ffffffff81253fa0 t shmem_fallocate
-ffffffff81254440 t shmem_create
-ffffffff81254460 t shmem_link
-ffffffff81254540 t shmem_unlink
-ffffffff81254600 t shmem_symlink
-ffffffff81254840 t shmem_mkdir
-ffffffff81254880 t shmem_rmdir
-ffffffff812548d0 t shmem_mknod
-ffffffff812549b0 t shmem_rename2
-ffffffff81254ba0 t shmem_tmpfile
-ffffffff81254c40 t shmem_initxattrs
-ffffffff81254d10 t shmem_get_link
-ffffffff81254e00 t shmem_put_link
-ffffffff81254e30 t shmem_init_inode
-ffffffff81254e50 t kfree_const
-ffffffff81254e80 t kstrdup
-ffffffff81254ee0 t kstrdup_const
-ffffffff81254f60 t kstrndup
-ffffffff81254fc0 t kmemdup
-ffffffff81255010 t kmemdup_nul
-ffffffff81255070 t memdup_user
-ffffffff81255100 t vmemdup_user
-ffffffff81255230 t kvfree
-ffffffff81255260 t strndup_user
-ffffffff81255320 t memdup_user_nul
-ffffffff812553b0 t vma_is_stack_for_current
-ffffffff81255400 t vma_set_file
-ffffffff81255420 t randomize_stack_top
-ffffffff81255470 t randomize_page
-ffffffff812554f0 t __account_locked_vm
-ffffffff81255550 t account_locked_vm
-ffffffff81255640 t vm_mmap_pgoff
-ffffffff812557b0 t vm_mmap
-ffffffff812557f0 t kvmalloc_node
-ffffffff812558d0 t kvfree_sensitive
-ffffffff81255910 t kvrealloc
-ffffffff81255980 t __vmalloc_array
-ffffffff812559b0 t vmalloc_array
-ffffffff812559e0 t __vcalloc
-ffffffff81255a10 t vcalloc
-ffffffff81255a40 t page_rmapping
-ffffffff81255a70 t folio_mapped
-ffffffff81255ae0 t folio_anon_vma
-ffffffff81255b00 t folio_mapping
-ffffffff81255b70 t __page_mapcount
-ffffffff81255bc0 t folio_mapcount
-ffffffff81255ca0 t folio_copy
-ffffffff81255d60 t overcommit_ratio_handler
-ffffffff81255db0 t overcommit_policy_handler
-ffffffff81255e80 t sync_overcommit_as
-ffffffff81255ea0 t overcommit_kbytes_handler
-ffffffff81255ee0 t vm_commit_limit
-ffffffff81255f30 t vm_memory_committed
-ffffffff81255f50 t __vm_enough_memory
-ffffffff812560a0 t get_cmdline
-ffffffff812561f0 t memcmp_pages
-ffffffff812562c0 t mem_dump_obj
-ffffffff81256340 t page_offline_freeze
-ffffffff81256360 t page_offline_thaw
-ffffffff81256380 t page_offline_begin
-ffffffff812563a0 t page_offline_end
-ffffffff812563c0 t first_online_pgdat
-ffffffff812563e0 t next_online_pgdat
-ffffffff812563f0 t next_zone
-ffffffff81256420 t __next_zones_zonelist
-ffffffff81256460 t lruvec_init
-ffffffff812564f0 t gfp_zone
-ffffffff81256510 t all_vm_events
-ffffffff812565e0 t vm_events_fold_cpu
-ffffffff81256640 t calculate_pressure_threshold
-ffffffff81256670 t calculate_normal_threshold
-ffffffff812566c0 t refresh_zone_stat_thresholds
-ffffffff81256850 t set_pgdat_percpu_threshold
-ffffffff81256920 t __mod_zone_page_state
-ffffffff812569c0 t __mod_node_page_state
-ffffffff81256a80 t __inc_zone_state
-ffffffff81256b20 t __inc_node_state
-ffffffff81256bd0 t __inc_zone_page_state
-ffffffff81256c80 t __inc_node_page_state
-ffffffff81256d20 t __dec_zone_state
-ffffffff81256dc0 t __dec_node_state
-ffffffff81256e70 t __dec_zone_page_state
-ffffffff81256ea0 t __dec_node_page_state
-ffffffff81256ec0 t mod_zone_page_state
-ffffffff81256f40 t inc_zone_page_state
-ffffffff81256fe0 t dec_zone_page_state
-ffffffff81257070 t mod_node_page_state
-ffffffff81257110 t inc_node_state
-ffffffff812571a0 t inc_node_page_state
-ffffffff81257230 t dec_node_page_state
-ffffffff812572b0 t cpu_vm_stats_fold
-ffffffff81257430 t fold_diff
-ffffffff81257550 t drain_zonestat
-ffffffff812575a0 t extfrag_for_order
-ffffffff812577b0 t fragmentation_index
-ffffffff81257a90 t vmstat_refresh
-ffffffff81257cd0 t refresh_vm_stats
-ffffffff81257ce0 t quiet_vmstat
-ffffffff81257dd0 t refresh_cpu_vm_stats
-ffffffff81257f50 t vmstat_cpu_dead
-ffffffff81257f80 t vmstat_cpu_online
-ffffffff81257fa0 t vmstat_cpu_down_prep
-ffffffff81257fe0 t vmstat_update
-ffffffff81258050 t vmstat_shepherd
-ffffffff812581c0 t frag_start
-ffffffff812581e0 t frag_stop
-ffffffff812581f0 t frag_next
-ffffffff81258200 t frag_show
-ffffffff81258220 t walk_zones_in_node
-ffffffff81258350 t frag_show_print
-ffffffff81258480 t pagetypeinfo_show
-ffffffff812587a0 t pagetypeinfo_showfree_print
-ffffffff812588f0 t pagetypeinfo_showblockcount_print
-ffffffff81258ad0 t vmstat_start
-ffffffff81258d50 t vmstat_stop
-ffffffff81258d80 t vmstat_next
-ffffffff81258db0 t vmstat_show
-ffffffff81258e30 t zoneinfo_show
-ffffffff81258f20 t zoneinfo_show_print
-ffffffff81259340 t unusable_open
-ffffffff81259390 t unusable_show
-ffffffff812593c0 t unusable_show_print
-ffffffff81259620 t extfrag_open
-ffffffff81259670 t extfrag_show
-ffffffff81259690 t extfrag_show_print
-ffffffff81259980 t wb_wakeup_delayed
-ffffffff812599f0 t wb_get_lookup
-ffffffff81259b00 t wb_get_create
-ffffffff8125a040 t wb_memcg_offline
-ffffffff8125a0c0 t cgwb_kill
-ffffffff8125a1d0 t wb_blkcg_offline
-ffffffff8125a240 t bdi_init
-ffffffff8125a330 t bdi_alloc
-ffffffff8125a3b0 t bdi_get_by_id
-ffffffff8125a450 t bdi_register_va
-ffffffff8125a690 t bdi_register
-ffffffff8125a710 t bdi_set_owner
-ffffffff8125a740 t bdi_unregister
-ffffffff8125a990 t wb_shutdown
-ffffffff8125aa70 t bdi_put
-ffffffff8125ab30 t inode_to_bdi
-ffffffff8125ab70 t bdi_dev_name
-ffffffff8125abb0 t read_ahead_kb_show
-ffffffff8125abe0 t read_ahead_kb_store
-ffffffff8125ac60 t min_ratio_show
-ffffffff8125ac90 t min_ratio_store
-ffffffff8125ad10 t max_ratio_show
-ffffffff8125ad40 t max_ratio_store
-ffffffff8125adc0 t stable_pages_required_show
-ffffffff8125ae10 t wb_init
-ffffffff8125b070 t cgwb_release
-ffffffff8125b0a0 t cgwb_release_workfn
-ffffffff8125b260 t wb_update_bandwidth_workfn
-ffffffff8125b280 t cgwb_free_rcu
-ffffffff8125b2b0 t cleanup_offline_cgwbs_workfn
-ffffffff8125b4c0 t bdi_debug_stats_open
-ffffffff8125b4f0 t bdi_debug_stats_show
-ffffffff8125b6e0 t mm_compute_batch
-ffffffff8125b760 t __traceiter_percpu_alloc_percpu
-ffffffff8125b7f0 t __traceiter_percpu_free_percpu
-ffffffff8125b850 t __traceiter_percpu_alloc_percpu_fail
-ffffffff8125b8c0 t __traceiter_percpu_create_chunk
-ffffffff8125b910 t __traceiter_percpu_destroy_chunk
-ffffffff8125b960 t trace_event_raw_event_percpu_alloc_percpu
-ffffffff8125ba80 t perf_trace_percpu_alloc_percpu
-ffffffff8125bbd0 t trace_event_raw_event_percpu_free_percpu
-ffffffff8125bca0 t perf_trace_percpu_free_percpu
-ffffffff8125bdb0 t trace_event_raw_event_percpu_alloc_percpu_fail
-ffffffff8125be90 t perf_trace_percpu_alloc_percpu_fail
-ffffffff8125bfa0 t trace_event_raw_event_percpu_create_chunk
-ffffffff8125c060 t perf_trace_percpu_create_chunk
-ffffffff8125c150 t trace_event_raw_event_percpu_destroy_chunk
-ffffffff8125c210 t perf_trace_percpu_destroy_chunk
-ffffffff8125c300 t __alloc_percpu_gfp
-ffffffff8125c320 t pcpu_alloc.llvm.17836075378730734924
-ffffffff8125cdd0 t __alloc_percpu
-ffffffff8125cdf0 t __alloc_reserved_percpu
-ffffffff8125ce10 t free_percpu
-ffffffff8125d320 t pcpu_free_area
-ffffffff8125d600 t __is_kernel_percpu_address
-ffffffff8125d6c0 t is_kernel_percpu_address
-ffffffff8125d750 t per_cpu_ptr_to_phys
-ffffffff8125d870 t pcpu_dump_alloc_info
-ffffffff8125db80 t pcpu_chunk_relocate
-ffffffff8125dcc0 t pcpu_nr_pages
-ffffffff8125dce0 t trace_raw_output_percpu_alloc_percpu
-ffffffff8125dde0 t trace_raw_output_percpu_free_percpu
-ffffffff8125de40 t trace_raw_output_percpu_alloc_percpu_fail
-ffffffff8125dea0 t trace_raw_output_percpu_create_chunk
-ffffffff8125def0 t trace_raw_output_percpu_destroy_chunk
-ffffffff8125df40 t pcpu_find_block_fit
-ffffffff8125e0b0 t pcpu_alloc_area
-ffffffff8125e310 t pcpu_create_chunk
-ffffffff8125e5e0 t pcpu_populate_chunk
-ffffffff8125ea50 t obj_cgroup_put
-ffffffff8125eaa0 t pcpu_next_fit_region
-ffffffff8125ebd0 t pcpu_block_update_hint_alloc
-ffffffff8125eec0 t pcpu_block_update
-ffffffff8125ef90 t pcpu_block_refresh_hint
-ffffffff8125f070 t pcpu_chunk_refresh_hint
-ffffffff8125f260 t pcpu_balance_workfn
-ffffffff8125f780 t pcpu_balance_free
-ffffffff8125fa30 t pcpu_depopulate_chunk
-ffffffff8125fc60 t __traceiter_kmem_cache_alloc
-ffffffff8125fcd0 t __traceiter_kmalloc
-ffffffff8125fd50 t __traceiter_kfree
-ffffffff8125fda0 t __traceiter_kmem_cache_free
-ffffffff8125fe00 t __traceiter_mm_page_free
-ffffffff8125fe50 t __traceiter_mm_page_free_batched
-ffffffff8125fea0 t __traceiter_mm_page_alloc
-ffffffff8125ff10 t __traceiter_mm_page_alloc_zone_locked
-ffffffff8125ff80 t __traceiter_mm_page_pcpu_drain
-ffffffff8125ffe0 t __traceiter_mm_page_alloc_extfrag
-ffffffff81260050 t __traceiter_rss_stat
-ffffffff812600b0 t trace_event_raw_event_kmem_cache_alloc
-ffffffff812601c0 t perf_trace_kmem_cache_alloc
-ffffffff81260310 t trace_event_raw_event_kmalloc
-ffffffff81260400 t perf_trace_kmalloc
-ffffffff81260530 t trace_event_raw_event_kfree
-ffffffff812605f0 t perf_trace_kfree
-ffffffff812606f0 t trace_event_raw_event_kmem_cache_free
-ffffffff81260810 t perf_trace_kmem_cache_free
-ffffffff81260980 t trace_event_raw_event_mm_page_free
-ffffffff81260a50 t perf_trace_mm_page_free
-ffffffff81260b60 t trace_event_raw_event_mm_page_free_batched
-ffffffff81260c20 t perf_trace_mm_page_free_batched
-ffffffff81260d20 t trace_event_raw_event_mm_page_alloc
-ffffffff81260e20 t perf_trace_mm_page_alloc
-ffffffff81260f50 t trace_event_raw_event_mm_page
-ffffffff81261040 t perf_trace_mm_page
-ffffffff81261170 t trace_event_raw_event_mm_page_pcpu_drain
-ffffffff81261260 t perf_trace_mm_page_pcpu_drain
-ffffffff81261390 t trace_event_raw_event_mm_page_alloc_extfrag
-ffffffff812614b0 t perf_trace_mm_page_alloc_extfrag
-ffffffff81261610 t trace_event_raw_event_rss_stat
-ffffffff81261730 t perf_trace_rss_stat
-ffffffff81261880 t kmem_cache_size
-ffffffff81261890 t slab_unmergeable
-ffffffff812618d0 t find_mergeable
-ffffffff812619e0 t kmem_cache_create_usercopy
-ffffffff81261cc0 t kmem_cache_create
-ffffffff81261ce0 t slab_kmem_cache_release
-ffffffff81261d10 t kmem_cache_destroy
-ffffffff81261e60 t kmem_cache_shrink
-ffffffff81261e90 t slab_is_available
-ffffffff81261eb0 t kmem_valid_obj
-ffffffff81261f30 t kmem_dump_obj
-ffffffff812624c0 t kmalloc_slab
-ffffffff81262560 t kmalloc_size_roundup
-ffffffff81262600 t free_large_kmalloc
-ffffffff812626c0 t __kmalloc_node
-ffffffff81262850 t __kmalloc
-ffffffff81262a00 t __kmalloc_node_track_caller
-ffffffff81262b90 t kfree
-ffffffff81262c80 t __ksize
-ffffffff81262d90 t kmalloc_trace
-ffffffff81262e30 t trace_kmalloc
-ffffffff81262ea0 t kmalloc_node_trace
-ffffffff81262f40 t kmalloc_fix_flags
-ffffffff81262fb0 t kmalloc_large
-ffffffff81263060 t __kmalloc_large_node
-ffffffff81263180 t kmalloc_large_node
-ffffffff81263230 t cache_random_seq_create
-ffffffff812633e0 t cache_random_seq_destroy
-ffffffff81263410 t dump_unreclaimable_slab
-ffffffff81263540 t krealloc
-ffffffff81263600 t kfree_sensitive
-ffffffff81263650 t ksize
-ffffffff81263680 t should_failslab
-ffffffff81263690 t trace_raw_output_kmem_cache_alloc
-ffffffff81263770 t trace_raw_output_kmalloc
-ffffffff81263850 t trace_raw_output_kfree
-ffffffff812638b0 t trace_raw_output_kmem_cache_free
-ffffffff81263910 t trace_raw_output_mm_page_free
-ffffffff81263970 t trace_raw_output_mm_page_free_batched
-ffffffff812639d0 t trace_raw_output_mm_page_alloc
-ffffffff81263aa0 t trace_raw_output_mm_page
-ffffffff81263b20 t trace_raw_output_mm_page_pcpu_drain
-ffffffff81263b90 t trace_raw_output_mm_page_alloc_extfrag
-ffffffff81263c20 t trace_raw_output_rss_stat
-ffffffff81263ca0 t slab_caches_to_rcu_destroy_workfn
-ffffffff81263da0 t slabinfo_open
-ffffffff81263dc0 t slab_start
-ffffffff81263df0 t slab_stop
-ffffffff81263e10 t slab_next
-ffffffff81263e30 t slab_show
-ffffffff81263f90 t __traceiter_mm_compaction_isolate_migratepages
-ffffffff81264000 t __traceiter_mm_compaction_isolate_freepages
-ffffffff81264070 t __traceiter_mm_compaction_migratepages
-ffffffff812640c0 t __traceiter_mm_compaction_begin
-ffffffff81264130 t __traceiter_mm_compaction_end
-ffffffff812641a0 t __traceiter_mm_compaction_try_to_compact_pages
-ffffffff81264200 t __traceiter_mm_compaction_finished
-ffffffff81264260 t __traceiter_mm_compaction_suitable
-ffffffff812642c0 t __traceiter_mm_compaction_deferred
-ffffffff81264310 t __traceiter_mm_compaction_defer_compaction
-ffffffff81264360 t __traceiter_mm_compaction_defer_reset
-ffffffff812643b0 t __traceiter_mm_compaction_kcompactd_sleep
-ffffffff81264400 t __traceiter_mm_compaction_wakeup_kcompactd
-ffffffff81264460 t __traceiter_mm_compaction_kcompactd_wake
-ffffffff812644c0 t trace_event_raw_event_mm_compaction_isolate_template
-ffffffff812645a0 t perf_trace_mm_compaction_isolate_template
-ffffffff812646b0 t trace_event_raw_event_mm_compaction_migratepages
-ffffffff81264780 t perf_trace_mm_compaction_migratepages
-ffffffff81264890 t trace_event_raw_event_mm_compaction_begin
-ffffffff81264970 t perf_trace_mm_compaction_begin
-ffffffff81264a90 t trace_event_raw_event_mm_compaction_end
-ffffffff81264b80 t perf_trace_mm_compaction_end
-ffffffff81264cb0 t trace_event_raw_event_mm_compaction_try_to_compact_pages
-ffffffff81264d80 t perf_trace_mm_compaction_try_to_compact_pages
-ffffffff81264e90 t trace_event_raw_event_mm_compaction_suitable_template
-ffffffff81264f70 t perf_trace_mm_compaction_suitable_template
-ffffffff81265090 t trace_event_raw_event_mm_compaction_defer_template
-ffffffff81265190 t perf_trace_mm_compaction_defer_template
-ffffffff812652d0 t trace_event_raw_event_mm_compaction_kcompactd_sleep
-ffffffff81265390 t perf_trace_mm_compaction_kcompactd_sleep
-ffffffff81265480 t trace_event_raw_event_kcompactd_wake_template
-ffffffff81265550 t perf_trace_kcompactd_wake_template
-ffffffff81265660 t PageMovable
-ffffffff81265690 t __SetPageMovable
-ffffffff812656b0 t __ClearPageMovable
-ffffffff812656d0 t compaction_defer_reset
-ffffffff81265750 t reset_isolation_suitable
-ffffffff812657e0 t __reset_isolation_suitable
-ffffffff81265910 t isolate_freepages_range
-ffffffff81265ad0 t isolate_freepages_block
-ffffffff81265ef0 t split_map_pages
-ffffffff81266050 t isolate_and_split_free_page
-ffffffff812660e0 t isolate_migratepages_range
-ffffffff812661b0 t isolate_migratepages_block
-ffffffff81267180 t compaction_suitable
-ffffffff812672c0 t compaction_zonelist_suitable
-ffffffff812674c0 t try_to_compact_pages
-ffffffff81267a20 t compaction_proactiveness_sysctl_handler
-ffffffff81267a80 t sysctl_compaction_handler
-ffffffff81267bf0 t wakeup_kcompactd
-ffffffff81267e00 t kcompactd_run
-ffffffff81267e80 t kcompactd
-ffffffff81268a80 t kcompactd_stop
-ffffffff81268ab0 t trace_raw_output_mm_compaction_isolate_template
-ffffffff81268b10 t trace_raw_output_mm_compaction_migratepages
-ffffffff81268b70 t trace_raw_output_mm_compaction_begin
-ffffffff81268bf0 t trace_raw_output_mm_compaction_end
-ffffffff81268cb0 t trace_raw_output_mm_compaction_try_to_compact_pages
-ffffffff81268d40 t trace_raw_output_mm_compaction_suitable_template
-ffffffff81268df0 t trace_raw_output_mm_compaction_defer_template
-ffffffff81268e90 t trace_raw_output_mm_compaction_kcompactd_sleep
-ffffffff81268ee0 t trace_raw_output_kcompactd_wake_template
-ffffffff81268f60 t __reset_isolation_pfn
-ffffffff81269160 t compact_zone
-ffffffff8126a070 t compaction_alloc
-ffffffff8126a960 t compaction_free
-ffffffff8126a9b0 t kcompactd_cpu_online
-ffffffff8126aa00 t vma_interval_tree_insert
-ffffffff8126aad0 t vma_interval_tree_remove
-ffffffff8126ad70 t vma_interval_tree_iter_first
-ffffffff8126ae00 t vma_interval_tree_iter_next
-ffffffff8126aed0 t vma_interval_tree_insert_after
-ffffffff8126af60 t anon_vma_interval_tree_insert
-ffffffff8126b030 t anon_vma_interval_tree_remove
-ffffffff8126b2f0 t anon_vma_interval_tree_iter_first
-ffffffff8126b360 t anon_vma_interval_tree_iter_next
-ffffffff8126b430 t vma_interval_tree_augment_rotate
-ffffffff8126b490 t __anon_vma_interval_tree_augment_rotate
-ffffffff8126b4f0 t list_lru_add
-ffffffff8126b5f0 t list_lru_del
-ffffffff8126b6b0 t list_lru_isolate
-ffffffff8126b6f0 t list_lru_isolate_move
-ffffffff8126b760 t list_lru_count_one
-ffffffff8126b7f0 t list_lru_count_node
-ffffffff8126b810 t list_lru_walk_one
-ffffffff8126b8a0 t __list_lru_walk_one
-ffffffff8126baa0 t list_lru_walk_one_irq
-ffffffff8126bb30 t list_lru_walk_node
-ffffffff8126bc80 t memcg_reparent_list_lrus
-ffffffff8126be60 t memcg_list_lru_alloc
-ffffffff8126c1f0 t __list_lru_init
-ffffffff8126c2e0 t list_lru_destroy
-ffffffff8126c4a0 t workingset_age_nonresident
-ffffffff8126c520 t workingset_eviction
-ffffffff8126c790 t workingset_refault
-ffffffff8126cca0 t workingset_activation
-ffffffff8126cdb0 t workingset_update_node
-ffffffff8126ce20 t count_shadow_nodes
-ffffffff8126d030 t scan_shadow_nodes
-ffffffff8126d060 t shadow_lru_isolate
-ffffffff8126d1a0 t dump_page
-ffffffff8126d410 t try_grab_folio
-ffffffff8126d5a0 t try_grab_page
-ffffffff8126d630 t unpin_user_page
-ffffffff8126d690 t unpin_user_pages_dirty_lock
-ffffffff8126d7d0 t unpin_user_pages
-ffffffff8126d8d0 t unpin_user_page_range_dirty_lock
-ffffffff8126da20 t follow_page
-ffffffff8126dae0 t follow_page_mask
-ffffffff8126df60 t fixup_user_fault
-ffffffff8126e120 t populate_vma_page_range
-ffffffff8126e190 t __get_user_pages
-ffffffff8126e770 t faultin_vma_page_range
-ffffffff8126e7f0 t check_vma_flags
-ffffffff8126e8d0 t __mm_populate
-ffffffff8126eab0 t fault_in_writeable
-ffffffff8126eb60 t fault_in_subpage_writeable
-ffffffff8126ec30 t fault_in_safe_writeable
-ffffffff8126ed60 t fault_in_readable
-ffffffff8126ee30 t get_dump_page
-ffffffff8126f120 t get_user_pages_remote
-ffffffff8126f160 t __get_user_pages_remote
-ffffffff8126f440 t get_user_pages
-ffffffff8126f4a0 t __gup_longterm_locked
-ffffffff8126f8d0 t get_user_pages_unlocked
-ffffffff8126fc00 t get_user_pages_fast_only
-ffffffff8126fc20 t internal_get_user_pages_fast.llvm.12744933898329585285
-ffffffff81270a70 t get_user_pages_fast
-ffffffff81270ab0 t pin_user_pages_fast
-ffffffff81270af0 t pin_user_pages_fast_only
-ffffffff81270b30 t pin_user_pages_remote
-ffffffff81270b70 t pin_user_pages
-ffffffff81270bc0 t pin_user_pages_unlocked
-ffffffff81270c00 t pmd_lock
-ffffffff81270c60 t follow_page_pte
-ffffffff812710a0 t pmd_trans_unstable
-ffffffff81271110 t undo_dev_pagemap
-ffffffff81271200 t __traceiter_mmap_lock_start_locking
-ffffffff81271270 t trace_mmap_lock_reg
-ffffffff81271360 t trace_mmap_lock_unreg
-ffffffff81271390 t __traceiter_mmap_lock_released
-ffffffff81271400 t __traceiter_mmap_lock_acquire_returned
-ffffffff81271470 t trace_event_raw_event_mmap_lock
-ffffffff81271580 t perf_trace_mmap_lock
-ffffffff812716e0 t trace_event_raw_event_mmap_lock_acquire_returned
-ffffffff81271800 t perf_trace_mmap_lock_acquire_returned
-ffffffff81271970 t free_memcg_path_bufs
-ffffffff81271a50 t __mmap_lock_do_trace_start_locking
-ffffffff81271b40 t get_mm_memcg_path
-ffffffff81271c20 t __mmap_lock_do_trace_acquire_returned
-ffffffff81271d20 t __mmap_lock_do_trace_released
-ffffffff81271e10 t trace_raw_output_mmap_lock
-ffffffff81271e80 t trace_raw_output_mmap_lock_acquire_returned
-ffffffff81271f00 t mm_trace_rss_stat
-ffffffff81271f60 t sync_mm_rss
-ffffffff81272030 t add_mm_counter
-ffffffff812720a0 t free_pgd_range
-ffffffff81272750 t free_pgtables
-ffffffff81272890 t pmd_install
-ffffffff81272950 t __pte_alloc
-ffffffff81272a90 t __pte_alloc_kernel
-ffffffff81272b40 t vm_normal_page
-ffffffff81272be0 t print_bad_pte
-ffffffff81272e20 t vm_normal_page_pmd
-ffffffff81272f20 t copy_page_range
-ffffffff812742e0 t unmap_page_range
-ffffffff812752a0 t unmap_vmas
-ffffffff81275400 t zap_page_range
-ffffffff81275660 t zap_page_range_single
-ffffffff81275830 t zap_vma_ptes
-ffffffff81275860 t __get_locked_pte
-ffffffff81275930 t walk_to_pmd
-ffffffff81275a60 t vm_insert_pages
-ffffffff81275db0 t vm_insert_page
-ffffffff81275ff0 t vm_map_pages
-ffffffff81276090 t vm_map_pages_zero
-ffffffff81276120 t vmf_insert_pfn_prot
-ffffffff812762a0 t insert_pfn
-ffffffff812764d0 t vmf_insert_pfn
-ffffffff812764f0 t vmf_insert_mixed_prot
-ffffffff81276510 t __vm_insert_mixed
-ffffffff81276610 t vmf_insert_mixed
-ffffffff81276630 t vmf_insert_mixed_mkwrite
-ffffffff81276650 t remap_pfn_range_notrack
-ffffffff81276bd0 t remap_pfn_range
-ffffffff81276c80 t vm_iomap_memory
-ffffffff81276d80 t apply_to_page_range
-ffffffff81276da0 t __apply_to_page_range
-ffffffff812775c0 t apply_to_existing_page_range
-ffffffff812775e0 t finish_mkwrite_fault
-ffffffff812776e0 t unmap_mapping_folio
-ffffffff81277790 t unmap_mapping_range_tree
-ffffffff81277840 t unmap_mapping_pages
-ffffffff812778f0 t unmap_mapping_range
-ffffffff81277a30 t do_swap_page
-ffffffff812782b0 t handle_pte_marker
-ffffffff81278330 t do_wp_page
-ffffffff81278600 t do_set_pmd
-ffffffff81278870 t do_set_pte
-ffffffff81278a30 t finish_fault
-ffffffff81278cf0 t numa_migrate_prep
-ffffffff81278d20 t handle_mm_fault
-ffffffff81279d20 t __p4d_alloc
-ffffffff81279e00 t __pud_alloc
-ffffffff81279ef0 t __pmd_alloc
-ffffffff8127a0c0 t follow_pte
-ffffffff8127a2a0 t follow_pfn
-ffffffff8127a350 t follow_phys
-ffffffff8127a430 t generic_access_phys
-ffffffff8127a610 t __access_remote_vm
-ffffffff8127a850 t access_remote_vm
-ffffffff8127a860 t access_process_vm
-ffffffff8127a8c0 t print_vma_addr
-ffffffff8127aa00 t clear_huge_page
-ffffffff8127ab90 t clear_gigantic_page
-ffffffff8127ac00 t copy_user_huge_page
-ffffffff8127ae10 t copy_user_gigantic_page
-ffffffff8127ae90 t copy_huge_page_from_user
-ffffffff8127af90 t kmap_atomic
-ffffffff8127afd0 t __kunmap_atomic
-ffffffff8127b010 t __kunmap_atomic
-ffffffff8127b050 t __kunmap_atomic
-ffffffff8127b090 t set_direct_map_range_uncached
-ffffffff8127b0a0 t insert_page_into_pte_locked
-ffffffff8127b220 t pte_marker_clear
-ffffffff8127b310 t do_fault
-ffffffff8127b980 t fault_dirty_shared_page
-ffffffff8127ba80 t wp_page_copy
-ffffffff8127c0c0 t wp_page_shared
-ffffffff8127c2a0 t fault_around_bytes_fops_open
-ffffffff8127c2d0 t fault_around_bytes_get
-ffffffff8127c2f0 t fault_around_bytes_set
-ffffffff8127c340 t __x64_sys_mincore
-ffffffff8127c5f0 t mincore_pte_range
-ffffffff8127c8f0 t mincore_unmapped_range
-ffffffff8127c920 t mincore_hugetlb
-ffffffff8127c930 t __mincore_unmapped_range
-ffffffff8127ca60 t can_do_mlock
-ffffffff8127caa0 t mlock_page_drain_local
-ffffffff8127cb20 t mlock_pagevec
-ffffffff8127e4c0 t mlock_page_drain_remote
-ffffffff8127e510 t need_mlock_page_drain
-ffffffff8127e540 t mlock_folio
-ffffffff8127e640 t mlock_new_page
-ffffffff8127e760 t munlock_page
-ffffffff8127e810 t __x64_sys_mlock
-ffffffff8127e830 t __x64_sys_mlock2
-ffffffff8127e870 t __x64_sys_munlock
-ffffffff8127e940 t __x64_sys_mlockall
-ffffffff8127eae0 t __x64_sys_munlockall
-ffffffff8127eb80 t user_shm_lock
-ffffffff8127ec50 t user_shm_unlock
-ffffffff8127ecb0 t do_mlock
-ffffffff8127ef80 t apply_vma_lock_flags
-ffffffff8127f0d0 t mlock_fixup
-ffffffff8127f2e0 t mlock_pte_range
-ffffffff8127f500 t apply_mlockall_flags
-ffffffff8127f680 t __traceiter_vm_unmapped_area
-ffffffff8127f6d0 t __traceiter_vma_mas_szero
-ffffffff8127f730 t __traceiter_vma_store
-ffffffff8127f780 t __traceiter_exit_mmap
-ffffffff8127f7d0 t trace_event_raw_event_vm_unmapped_area
-ffffffff8127f8e0 t perf_trace_vm_unmapped_area
-ffffffff8127fa30 t trace_event_raw_event_vma_mas_szero
-ffffffff8127fb00 t perf_trace_vma_mas_szero
-ffffffff8127fc10 t trace_event_raw_event_vma_store
-ffffffff8127fce0 t perf_trace_vma_store
-ffffffff8127fdf0 t trace_event_raw_event_exit_mmap
-ffffffff8127feb0 t perf_trace_exit_mmap
-ffffffff8127ffa0 t vma_set_page_prot
-ffffffff812800a0 t vma_wants_writenotify
-ffffffff81280160 t unlink_file_vma
-ffffffff812801c0 t __x64_sys_brk
-ffffffff812805e0 t vma_mas_store
-ffffffff81280670 t vma_mas_remove
-ffffffff81280700 t vma_expand
-ffffffff81280ac0 t __vma_adjust
-ffffffff812814d0 t find_vma
-ffffffff81281520 t vma_merge
-ffffffff81281790 t can_vma_merge_after
-ffffffff81281860 t find_mergeable_anon_vma
-ffffffff812819c0 t mlock_future_check
-ffffffff81281a20 t do_mmap
-ffffffff81281f40 t get_unmapped_area
-ffffffff81282050 t find_vma_intersection
-ffffffff812820a0 t mmap_region
-ffffffff81282b40 t ksys_mmap_pgoff
-ffffffff81282c30 t __x64_sys_mmap_pgoff
-ffffffff81282c60 t vm_unmapped_area
-ffffffff81282e20 t generic_get_unmapped_area
-ffffffff81283030 t find_vma_prev
-ffffffff812830f0 t generic_get_unmapped_area_topdown
-ffffffff812833a0 t expand_downwards
-ffffffff81283770 t vm_stat_account
-ffffffff812837c0 t expand_stack
-ffffffff812837d0 t find_extend_vma
-ffffffff81283870 t __split_vma
-ffffffff812839d0 t split_vma
-ffffffff812839f0 t do_mas_munmap
-ffffffff81283b00 t do_mas_align_munmap
-ffffffff812840e0 t do_munmap
-ffffffff81284170 t may_expand_vm
-ffffffff81284260 t unmap_region
-ffffffff81284410 t vm_munmap
-ffffffff81284430 t __vm_munmap.llvm.302550460852299470
-ffffffff812845a0 t __x64_sys_munmap
-ffffffff812845e0 t __x64_sys_remap_file_pages
-ffffffff81284900 t vm_brk_flags
-ffffffff81284b90 t do_brk_flags
-ffffffff81284f90 t mmap_write_unlock
-ffffffff81284fc0 t mmap_write_unlock
-ffffffff81284ff0 t vm_brk
-ffffffff81285010 t exit_mmap
-ffffffff812853f0 t insert_vm_struct
-ffffffff812854d0 t vma_link
-ffffffff81285640 t copy_vma
-ffffffff812858c0 t vma_is_special_mapping
-ffffffff81285900 t _install_special_mapping
-ffffffff81285920 t __install_special_mapping.llvm.302550460852299470
-ffffffff81285a30 t install_special_mapping
-ffffffff81285a60 t mm_take_all_locks
-ffffffff81285cc0 t mm_drop_all_locks
-ffffffff81285e50 t trace_raw_output_vm_unmapped_area
-ffffffff81285ee0 t trace_raw_output_vma_mas_szero
-ffffffff81285f40 t trace_raw_output_vma_store
-ffffffff81285fa0 t trace_raw_output_exit_mmap
-ffffffff81285ff0 t special_mapping_close.llvm.302550460852299470
-ffffffff81286000 t special_mapping_split.llvm.302550460852299470
-ffffffff81286010 t special_mapping_mremap.llvm.302550460852299470
-ffffffff81286060 t special_mapping_fault.llvm.302550460852299470
-ffffffff81286100 t special_mapping_name.llvm.302550460852299470
-ffffffff81286120 t reserve_mem_notifier
-ffffffff81286290 t __tlb_remove_page_size
-ffffffff81286310 t tlb_remove_table_sync_one
-ffffffff81286330 t tlb_remove_table_smp_sync.llvm.13523897758172196140
-ffffffff81286340 t tlb_remove_table
-ffffffff812864a0 t tlb_table_flush
-ffffffff812865b0 t tlb_flush_mmu
-ffffffff81286720 t tlb_gather_mmu
-ffffffff812867c0 t tlb_gather_mmu_fullmm
-ffffffff81286820 t tlb_finish_mmu
-ffffffff812868a0 t tlb_remove_table_rcu
-ffffffff812868f0 t change_protection
-ffffffff81287680 t mprotect_fixup
-ffffffff812879a0 t __x64_sys_mprotect
-ffffffff812879d0 t __x64_sys_pkey_mprotect
-ffffffff81287a00 t __x64_sys_pkey_alloc
-ffffffff81287b60 t __x64_sys_pkey_free
-ffffffff81287c50 t p4d_alloc
-ffffffff81287cc0 t prot_none_pte_entry
-ffffffff81287d10 t prot_none_hugetlb_entry
-ffffffff81287d60 t prot_none_test
-ffffffff81287d70 t do_mprotect_pkey
-ffffffff81288270 t move_page_tables
-ffffffff81288950 t get_old_pud
-ffffffff81288a50 t alloc_new_pud
-ffffffff81288b30 t move_pgt_entry
-ffffffff81288ea0 t __x64_sys_mremap
-ffffffff812896f0 t vma_to_resize
-ffffffff81289840 t move_vma
-ffffffff81289c20 t __x64_sys_msync
-ffffffff81289e90 t page_vma_mapped_walk
-ffffffff8128a5b0 t page_mapped_in_vma
-ffffffff8128a6e0 t walk_page_range
-ffffffff8128a940 t walk_page_range_novma
-ffffffff8128a9c0 t walk_pgd_range
-ffffffff8128b290 t walk_page_vma
-ffffffff8128b3d0 t walk_page_mapping
-ffffffff8128b5d0 t pgd_clear_bad
-ffffffff8128b630 t p4d_clear_bad
-ffffffff8128b6a0 t pud_clear_bad
-ffffffff8128b6f0 t pmd_clear_bad
-ffffffff8128b740 t ptep_clear_flush
-ffffffff8128b790 t pmdp_huge_clear_flush
-ffffffff8128b7c0 t pudp_huge_clear_flush
-ffffffff8128b7f0 t pgtable_trans_huge_deposit
-ffffffff8128b8e0 t pgtable_trans_huge_withdraw
-ffffffff8128b9c0 t pmdp_invalidate
-ffffffff8128ba40 t pmdp_collapse_flush
-ffffffff8128ba70 t __traceiter_tlb_flush
-ffffffff8128bac0 t trace_event_raw_event_tlb_flush
-ffffffff8128bb80 t perf_trace_tlb_flush
-ffffffff8128bc80 t __traceiter_mm_migrate_pages
-ffffffff8128bd00 t __traceiter_mm_migrate_pages_start
-ffffffff8128bd50 t __traceiter_set_migration_pte
-ffffffff8128bdb0 t __traceiter_remove_migration_pte
-ffffffff8128be10 t trace_event_raw_event_mm_migrate_pages
-ffffffff8128bf00 t perf_trace_mm_migrate_pages
-ffffffff8128c030 t trace_event_raw_event_mm_migrate_pages_start
-ffffffff8128c0f0 t perf_trace_mm_migrate_pages_start
-ffffffff8128c1f0 t trace_event_raw_event_migration_pte
-ffffffff8128c2c0 t perf_trace_migration_pte
-ffffffff8128c3d0 t __anon_vma_prepare
-ffffffff8128c540 t anon_vma_clone
-ffffffff8128c710 t unlink_anon_vmas
-ffffffff8128c8b0 t anon_vma_fork
-ffffffff8128ca00 t anon_vma_ctor.llvm.3294496444446440601
-ffffffff8128ca40 t folio_get_anon_vma
-ffffffff8128cad0 t folio_lock_anon_vma_read
-ffffffff8128cbc0 t __put_anon_vma
-ffffffff8128cc50 t try_to_unmap_flush
-ffffffff8128cc90 t try_to_unmap_flush_dirty
-ffffffff8128ccd0 t flush_tlb_batched_pending
-ffffffff8128cd30 t page_address_in_vma
-ffffffff8128ce30 t mm_find_pmd
-ffffffff8128cef0 t folio_referenced
-ffffffff8128d000 t folio_referenced_one
-ffffffff8128d1d0 t invalid_folio_referenced_vma
-ffffffff8128d280 t rmap_walk
-ffffffff8128d2b0 t folio_mkclean
-ffffffff8128d380 t page_mkclean_one
-ffffffff8128d4b0 t invalid_mkclean_vma
-ffffffff8128d4d0 t pfn_mkclean_range
-ffffffff8128d610 t page_move_anon_rmap
-ffffffff8128d640 t page_add_anon_rmap
-ffffffff8128d760 t page_add_new_anon_rmap
-ffffffff8128d860 t page_add_file_rmap
-ffffffff8128d9e0 t page_remove_rmap
-ffffffff8128dc40 t try_to_unmap
-ffffffff8128dcd0 t try_to_unmap_one
-ffffffff8128e4a0 t page_not_mapped
-ffffffff8128e4c0 t rmap_walk_locked
-ffffffff8128e4f0 t try_to_migrate
-ffffffff8128e5b0 t try_to_migrate_one
-ffffffff8128ea00 t invalid_migration_vma
-ffffffff8128ea20 t rmap_walk_anon
-ffffffff8128ec40 t rmap_walk_file
-ffffffff8128ee30 t trace_raw_output_tlb_flush
-ffffffff8128eeb0 t trace_raw_output_mm_migrate_pages
-ffffffff8128ef90 t trace_raw_output_mm_migrate_pages_start
-ffffffff8128f020 t trace_raw_output_migration_pte
-ffffffff8128f080 t is_vmalloc_addr
-ffffffff8128f0d0 t ioremap_page_range
-ffffffff8128f110 t vmap_range_noflush
-ffffffff8128f700 t __vunmap_range_noflush
-ffffffff8128fa70 t vunmap_range_noflush
-ffffffff8128fa80 t vunmap_range
-ffffffff8128fab0 t __vmap_pages_range_noflush
-ffffffff81290090 t vmap_pages_range_noflush
-ffffffff812900a0 t is_vmalloc_or_module_addr
-ffffffff812900e0 t vmalloc_to_page
-ffffffff81290320 t vmalloc_to_pfn
-ffffffff81290340 t vmalloc_nr_pages
-ffffffff81290360 t register_vmap_purge_notifier
-ffffffff81290380 t unregister_vmap_purge_notifier
-ffffffff812903a0 t find_vmap_area
-ffffffff81290420 t vm_unmap_aliases
-ffffffff81290440 t _vm_unmap_aliases.llvm.12820500289036678126
-ffffffff81290590 t vm_unmap_ram
-ffffffff81290750 t free_unmap_vmap_area
-ffffffff81290780 t vm_map_ram
-ffffffff81291040 t alloc_vmap_area
-ffffffff81291880 t free_work
-ffffffff812918c0 t insert_vmap_area
-ffffffff812919c0 t __get_vm_area_caller
-ffffffff81291a00 t __get_vm_area_node
-ffffffff81291b60 t get_vm_area
-ffffffff81291bc0 t get_vm_area_caller
-ffffffff81291c20 t find_vm_area
-ffffffff81291cb0 t remove_vm_area
-ffffffff81291d60 t vfree_atomic
-ffffffff81291dc0 t __vfree_deferred
-ffffffff81291e10 t vfree
-ffffffff81291e70 t vunmap
-ffffffff81291eb0 t __vunmap
-ffffffff81292200 t vmap
-ffffffff81292330 t __vmalloc_node_range
-ffffffff81292b40 t __vmalloc_node
-ffffffff81292ba0 t __vmalloc
-ffffffff81292c00 t vmalloc
-ffffffff81292c60 t vmalloc_huge
-ffffffff81292cc0 t vzalloc
-ffffffff81292d20 t vmalloc_user
-ffffffff81292d80 t vmalloc_node
-ffffffff81292de0 t vzalloc_node
-ffffffff81292e40 t vmalloc_32
-ffffffff81292ea0 t vmalloc_32_user
-ffffffff81292f00 t vread
-ffffffff812931d0 t remap_vmalloc_range_partial
-ffffffff81293320 t remap_vmalloc_range
-ffffffff81293340 t free_vm_area
-ffffffff81293370 t pcpu_get_vm_areas
-ffffffff812943f0 t pcpu_free_vm_areas
-ffffffff81294450 t vmalloc_dump_obj
-ffffffff81294500 t purge_fragmented_blocks_allcpus
-ffffffff81294760 t __purge_vmap_area_lazy
-ffffffff81294da0 t free_vmap_area_noflush
-ffffffff81295060 t free_vmap_area_rb_augment_cb_rotate
-ffffffff812950b0 t drain_vmap_area_work
-ffffffff81295120 t insert_vmap_area_augment
-ffffffff812952c0 t __x64_sys_process_vm_readv
-ffffffff812952f0 t __x64_sys_process_vm_writev
-ffffffff81295320 t process_vm_rw
-ffffffff81295b70 t pm_restore_gfp_mask
-ffffffff81295bb0 t pm_restrict_gfp_mask
-ffffffff81295c00 t pm_suspended_storage
-ffffffff81295c20 t free_compound_page
-ffffffff81295c80 t get_pfnblock_flags_mask
-ffffffff81295cf0 t isolate_anon_lru_page
-ffffffff81295d90 t set_pfnblock_flags_mask
-ffffffff81295e30 t set_pageblock_migratetype
-ffffffff81295f00 t free_the_page
-ffffffff81295f30 t prep_compound_page
-ffffffff81296000 t destroy_large_folio
-ffffffff81296030 t split_free_page
-ffffffff81296310 t __free_one_page
-ffffffff81296700 t __free_pages_core
-ffffffff81296780 t __free_pages_ok
-ffffffff81296b60 t __pageblock_pfn_to_page
-ffffffff81296d10 t set_zone_contiguous
-ffffffff81296d90 t clear_zone_contiguous
-ffffffff81296db0 t post_alloc_hook
-ffffffff81296e50 t move_freepages_block
-ffffffff81297070 t find_suitable_fallback
-ffffffff81297160 t drain_local_pages
-ffffffff81297250 t drain_all_pages
-ffffffff81297270 t __drain_all_pages.llvm.5012294349769297491
-ffffffff812974b0 t free_unref_page
-ffffffff81297700 t free_unref_page_prepare
-ffffffff81297a10 t free_one_page
-ffffffff81297ae0 t free_unref_page_commit
-ffffffff81297c30 t free_unref_page_list
-ffffffff81297f30 t split_page
-ffffffff81298010 t __isolate_free_page
-ffffffff81298320 t zone_watermark_ok
-ffffffff81298350 t __putback_isolated_page
-ffffffff81298390 t should_fail_alloc_page
-ffffffff812983a0 t __zone_watermark_ok
-ffffffff812984e0 t zone_watermark_ok_safe
-ffffffff81298630 t warn_alloc
-ffffffff812987d0 t has_managed_dma
-ffffffff812987f0 t gfp_pfmemalloc_allowed
-ffffffff81298860 t __alloc_pages_bulk
-ffffffff81298ef0 t prep_new_page
-ffffffff812990a0 t __alloc_pages
-ffffffff81299370 t get_page_from_freelist
-ffffffff8129a570 t __alloc_pages_slowpath
-ffffffff8129b550 t __free_pages
-ffffffff8129b5e0 t __folio_alloc
-ffffffff8129b620 t __get_free_pages
-ffffffff8129b660 t get_zeroed_page
-ffffffff8129b6b0 t free_pages
-ffffffff8129b700 t __page_frag_cache_drain
-ffffffff8129b740 t page_frag_alloc_align
-ffffffff8129b860 t __page_frag_cache_refill
-ffffffff8129b8e0 t page_frag_free
-ffffffff8129b960 t alloc_pages_exact
-ffffffff8129b9e0 t make_alloc_exact
-ffffffff8129bae0 t free_pages_exact
-ffffffff8129bba0 t nr_free_buffer_pages
-ffffffff8129bc40 t si_mem_available
-ffffffff8129bd20 t si_meminfo
-ffffffff8129bd90 t __show_free_areas
-ffffffff8129c990 t per_cpu_pages_init
-ffffffff8129cac0 t zone_set_pageset_high_and_batch
-ffffffff8129cc30 t arch_has_descending_max_zone_pfns
-ffffffff8129cc40 t adjust_managed_page_count
-ffffffff8129cc70 t free_reserved_area
-ffffffff8129cde0 t page_alloc_cpu_online
-ffffffff8129ce40 t page_alloc_cpu_dead
-ffffffff8129cf50 t setup_per_zone_wmarks
-ffffffff8129d200 t calculate_min_free_kbytes
-ffffffff8129d2e0 t setup_per_zone_lowmem_reserve
-ffffffff8129d5a0 t min_free_kbytes_sysctl_handler
-ffffffff8129d5e0 t watermark_scale_factor_sysctl_handler
-ffffffff8129d610 t lowmem_reserve_ratio_sysctl_handler
-ffffffff8129d690 t percpu_pagelist_high_fraction_sysctl_handler
-ffffffff8129d760 t __alloc_contig_migrate_range
-ffffffff8129d910 t alloc_contig_range
-ffffffff8129de40 t free_contig_range
-ffffffff8129dee0 t alloc_contig_pages
-ffffffff8129e140 t zone_pcp_disable
-ffffffff8129e1c0 t zone_pcp_enable
-ffffffff8129e240 t zone_pcp_reset
-ffffffff8129e2f0 t __offline_isolated_pages
-ffffffff8129e4e0 t is_free_buddy_page
-ffffffff8129e560 t free_page_is_bad
-ffffffff8129e5b0 t free_page_is_bad_report
-ffffffff8129e630 t bad_page
-ffffffff8129e720 t free_pcppages_bulk
-ffffffff8129eaa0 t get_populated_pcp_list
-ffffffff8129f5a0 t check_new_pages
-ffffffff8129f6c0 t reserve_highatomic_pageblock
-ffffffff8129f880 t wake_all_kswapds
-ffffffff8129f940 t __alloc_pages_direct_compact
-ffffffff8129fac0 t unreserve_highatomic_pageblock
-ffffffff8129fd50 t build_zonelists
-ffffffff812a0050 t shuffle_pick_tail
-ffffffff812a00a0 t setup_initial_init_mm
-ffffffff812a00d0 t __next_mem_range
-ffffffff812a0340 t reset_node_managed_pages
-ffffffff812a0370 t get_online_mems
-ffffffff812a03d0 t put_online_mems
-ffffffff812a0440 t mem_hotplug_begin
-ffffffff812a0460 t mem_hotplug_done
-ffffffff812a0480 t pfn_to_online_page
-ffffffff812a0520 t __remove_pages
-ffffffff812a0610 t set_online_page_callback
-ffffffff812a0720 t generic_online_page
-ffffffff812a0750 t restore_online_page_callback
-ffffffff812a0860 t zone_for_pfn_range
-ffffffff812a0c50 t adjust_present_page_count
-ffffffff812a0d10 t mhp_init_memmap_on_memory
-ffffffff812a0d90 t mhp_deinit_memmap_on_memory
-ffffffff812a0e00 t online_pages_range
-ffffffff812a0ea0 t try_online_node
-ffffffff812a0ee0 t mhp_supports_memmap_on_memory
-ffffffff812a0f30 t online_memory_block
-ffffffff812a0f50 t register_memory_resource
-ffffffff812a1050 t add_memory
-ffffffff812a10a0 t add_memory_driver_managed
-ffffffff812a1170 t arch_get_mappable_range
-ffffffff812a1190 t mhp_get_pluggable_range
-ffffffff812a11e0 t mhp_range_allowed
-ffffffff812a1280 t count_system_ram_pages_cb
-ffffffff812a1290 t try_offline_node
-ffffffff812a1330 t check_no_memblock_for_node_cb
-ffffffff812a1350 t __remove_memory
-ffffffff812a1370 t remove_memory
-ffffffff812a13b0 t offline_and_remove_memory
-ffffffff812a1510 t try_offline_memory_block
-ffffffff812a1600 t try_reonline_memory_block
-ffffffff812a1650 t set_online_policy
-ffffffff812a1680 t get_online_policy
-ffffffff812a16b0 t auto_movable_stats_account_group
-ffffffff812a1700 t check_memblock_offlined_cb
-ffffffff812a1780 t get_nr_vmemmap_pages_cb
-ffffffff812a17a0 t anon_vma_name_alloc
-ffffffff812a1810 t anon_vma_name_free
-ffffffff812a1820 t anon_vma_name
-ffffffff812a1840 t madvise_set_anon_name
-ffffffff812a19b0 t do_madvise
-ffffffff812a2e50 t __x64_sys_madvise
-ffffffff812a2e80 t __x64_sys_process_madvise
-ffffffff812a3160 t madvise_update_vma
-ffffffff812a3410 t swapin_walk_pmd_entry
-ffffffff812a3640 t madvise_cold_or_pageout_pte_range
-ffffffff812a4070 t madvise_free_pte_range
-ffffffff812a4580 t generic_swapfile_activate
-ffffffff812a47c0 t swap_writepage
-ffffffff812a4810 t __swap_writepage
-ffffffff812a4cb0 t sio_pool_init
-ffffffff812a4d10 t end_swap_bio_write
-ffffffff812a4de0 t swap_write_unplug
-ffffffff812a4eb0 t sio_write_complete
-ffffffff812a5070 t swap_readpage
-ffffffff812a54a0 t end_swap_bio_read
-ffffffff812a55e0 t __swap_read_unplug
-ffffffff812a56a0 t sio_read_complete
-ffffffff812a57b0 t show_swap_cache_info
-ffffffff812a5810 t get_shadow_from_swap_cache
-ffffffff812a5880 t add_to_swap_cache
-ffffffff812a5bc0 t __delete_from_swap_cache
-ffffffff812a5d70 t add_to_swap
-ffffffff812a5dc0 t delete_from_swap_cache
-ffffffff812a5e70 t clear_shadow_from_swap_cache
-ffffffff812a5ff0 t free_swap_cache
-ffffffff812a6050 t free_page_and_swap_cache
-ffffffff812a60f0 t free_pages_and_swap_cache
-ffffffff812a61a0 t swap_cache_get_folio
-ffffffff812a6340 t find_get_incore_page
-ffffffff812a6460 t __read_swap_cache_async
-ffffffff812a66e0 t read_swap_cache_async
-ffffffff812a6750 t swap_cluster_readahead
-ffffffff812a69d0 t init_swap_address_space
-ffffffff812a6b00 t exit_swap_address_space
-ffffffff812a6b40 t swapin_readahead
-ffffffff812a6ec0 t vma_ra_enabled_show
-ffffffff812a6f00 t vma_ra_enabled_store
-ffffffff812a6f30 t swap_page_sector
-ffffffff812a6fb0 t page_swap_info
-ffffffff812a6fe0 t __page_file_index
-ffffffff812a7000 t get_swap_pages
-ffffffff812a7b40 t get_swap_device
-ffffffff812a7c40 t swp_swap_info
-ffffffff812a7c70 t swap_free
-ffffffff812a7d10 t __swap_entry_free
-ffffffff812a7e10 t put_swap_folio
-ffffffff812a8130 t split_swap_cluster
-ffffffff812a8210 t swapcache_free_entries
-ffffffff812a8440 t swp_entry_cmp
-ffffffff812a8460 t __swap_count
-ffffffff812a84e0 t __swp_swapcount
-ffffffff812a85a0 t swp_swapcount
-ffffffff812a8760 t folio_free_swap
-ffffffff812a88c0 t free_swap_and_cache
-ffffffff812a8a20 t swap_page_trans_huge_swapped
-ffffffff812a8b00 t add_swap_extent
-ffffffff812a8be0 t has_usable_swap
-ffffffff812a8c20 t __x64_sys_swapoff
-ffffffff812aa250 t generic_max_swapfile_size
-ffffffff812aa270 t __x64_sys_swapon
-ffffffff812ab740 t si_swapinfo
-ffffffff812ab800 t swap_shmem_alloc
-ffffffff812ab820 t __swap_duplicate.llvm.3077387714457161111
-ffffffff812ab9b0 t swap_duplicate
-ffffffff812ab9f0 t add_swap_count_continuation
-ffffffff812abc60 t swapcache_prepare
-ffffffff812abc80 t swapcache_mapping
-ffffffff812abcc0 t __cgroup_throttle_swaprate
-ffffffff812abd50 t scan_swap_map_try_ssd_cluster
-ffffffff812abee0 t swap_do_scheduled_discard
-ffffffff812ac140 t free_cluster
-ffffffff812ac260 t swap_range_free
-ffffffff812ac380 t swap_count_continued
-ffffffff812ac770 t _enable_swap_info
-ffffffff812ac800 t swaps_open
-ffffffff812ac840 t swaps_poll
-ffffffff812ac890 t swap_start
-ffffffff812ac8f0 t swap_stop
-ffffffff812ac910 t swap_next
-ffffffff812ac980 t swap_show
-ffffffff812aca80 t swap_discard_work
-ffffffff812acac0 t swap_users_ref_free
-ffffffff812acae0 t disable_swap_slots_cache_lock
-ffffffff812acb50 t reenable_swap_slots_cache_unlock
-ffffffff812acba0 t enable_swap_slots_cache
-ffffffff812acc70 t alloc_swap_slot_cache
-ffffffff812acd90 t free_slot_cache
-ffffffff812acdd0 t free_swap_slot
-ffffffff812aceb0 t folio_alloc_swap
-ffffffff812ad0f0 t drain_slots_cache_cpu
-ffffffff812ad1d0 t dma_pool_create
-ffffffff812ad3c0 t dma_pool_destroy
-ffffffff812ad560 t dma_pool_alloc
-ffffffff812ad750 t dma_pool_free
-ffffffff812ad870 t dmam_pool_create
-ffffffff812ad910 t dmam_pool_release
-ffffffff812ad930 t dmam_pool_destroy
-ffffffff812ad970 t dmam_pool_match
-ffffffff812ad990 t pools_show
-ffffffff812adaf0 t sparse_decode_mem_map
-ffffffff812adb10 t mem_section_usage_size
-ffffffff812adb20 t online_mem_sections
-ffffffff812adbe0 t offline_mem_sections
-ffffffff812adca0 t sparse_remove_section
-ffffffff812adcc0 t section_deactivate.llvm.8648499599165305727
-ffffffff812adee0 t fixup_red_left
-ffffffff812adf10 t get_each_object_track
-ffffffff812ae0d0 t print_tracking
-ffffffff812ae1c0 t kmem_cache_flags
-ffffffff812ae340 t parse_slub_debug_flags
-ffffffff812ae510 t kmem_cache_alloc
-ffffffff812ae7c0 t kmem_cache_alloc_lru
-ffffffff812ae9f0 t __kmem_cache_alloc_node
-ffffffff812aec30 t kmem_cache_alloc_node
-ffffffff812aeee0 t __kmem_cache_free
-ffffffff812af220 t kmem_cache_free
-ffffffff812af6b0 t kmem_cache_free_bulk
-ffffffff812afd50 t kmem_cache_alloc_bulk
-ffffffff812b0090 t slab_pre_alloc_hook
-ffffffff812b0220 t ___slab_alloc
-ffffffff812b0c80 t slab_post_alloc_hook
-ffffffff812b0f60 t __kmem_cache_release
-ffffffff812b0fc0 t __kmem_cache_empty
-ffffffff812b0ff0 t __kmem_cache_shutdown
-ffffffff812b1390 t flush_all_cpus_locked.llvm.6721040012230916196
-ffffffff812b14e0 t __kmem_obj_info
-ffffffff812b17d0 t __check_heap_object
-ffffffff812b18f0 t __kmem_cache_shrink
-ffffffff812b1920 t __kmem_cache_do_shrink.llvm.6721040012230916196
-ffffffff812b1c10 t slub_cpu_dead
-ffffffff812b1ce0 t __kmem_cache_alias
-ffffffff812b1dc0 t __kmem_cache_create
-ffffffff812b2430 t sysfs_slab_add
-ffffffff812b2700 t validate_slab_cache
-ffffffff812b2850 t sysfs_slab_unlink
-ffffffff812b2870 t sysfs_slab_release
-ffffffff812b2890 t debugfs_slab_release
-ffffffff812b28c0 t get_slabinfo
-ffffffff812b2990 t count_partial
-ffffffff812b29f0 t slabinfo_show_stats
-ffffffff812b2a00 t slabinfo_write
-ffffffff812b2a20 t __slab_alloc
-ffffffff812b2ac0 t __slab_free
-ffffffff812b2d30 t free_debug_processing
-ffffffff812b3330 t cmpxchg_double_slab
-ffffffff812b3490 t put_cpu_partial
-ffffffff812b3560 t remove_full
-ffffffff812b35b0 t add_partial
-ffffffff812b3610 t remove_partial
-ffffffff812b3660 t discard_slab
-ffffffff812b36b0 t set_track_prepare
-ffffffff812b37b0 t check_slab
-ffffffff812b3850 t slab_err
-ffffffff812b39f0 t slab_fix
-ffffffff812b3a90 t slab_pad_check
-ffffffff812b3c00 t slab_bug
-ffffffff812b3cc0 t on_freelist
-ffffffff812b3f60 t object_err
-ffffffff812b3fb0 t check_object
-ffffffff812b4280 t print_trailer
-ffffffff812b44a0 t check_bytes_and_report
-ffffffff812b45e0 t rcu_free_slab
-ffffffff812b4600 t __free_slab
-ffffffff812b4780 t __unfreeze_partials
-ffffffff812b4940 t __cmpxchg_double_slab
-ffffffff812b4a40 t deactivate_slab
-ffffffff812b4eb0 t new_slab
-ffffffff812b57a0 t slab_out_of_memory
-ffffffff812b58b0 t alloc_debug_processing
-ffffffff812b5ae0 t flush_cpu_slab
-ffffffff812b5c20 t slab_memory_callback
-ffffffff812b5da0 t calculate_sizes
-ffffffff812b61c0 t validate_slab
-ffffffff812b6370 t kmem_cache_release
-ffffffff812b6390 t slab_attr_show
-ffffffff812b63c0 t slab_attr_store
-ffffffff812b6400 t slab_size_show
-ffffffff812b6420 t object_size_show
-ffffffff812b6440 t objs_per_slab_show
-ffffffff812b6460 t order_show
-ffffffff812b6480 t min_partial_show
-ffffffff812b64a0 t min_partial_store
-ffffffff812b6510 t cpu_partial_show
-ffffffff812b6530 t cpu_partial_store
-ffffffff812b65e0 t objects_show
-ffffffff812b6600 t show_slab_objects
-ffffffff812b6820 t objects_partial_show
-ffffffff812b6840 t partial_show
-ffffffff812b68d0 t cpu_slabs_show
-ffffffff812b68f0 t ctor_show
-ffffffff812b6920 t aliases_show
-ffffffff812b6950 t align_show
-ffffffff812b6970 t align_show
-ffffffff812b69b0 t align_show
-ffffffff812b69e0 t hwcache_align_show
-ffffffff812b6a10 t reclaim_account_show
-ffffffff812b6a40 t destroy_by_rcu_show
-ffffffff812b6a70 t shrink_show
-ffffffff812b6a80 t shrink_store
-ffffffff812b6ac0 t slabs_cpu_partial_show
-ffffffff812b6c00 t total_objects_show
-ffffffff812b6ca0 t slabs_show
-ffffffff812b6d40 t sanity_checks_show
-ffffffff812b6d70 t trace_show
-ffffffff812b6da0 t trace_show
-ffffffff812b6dc0 t red_zone_show
-ffffffff812b6df0 t poison_show
-ffffffff812b6e20 t store_user_show
-ffffffff812b6e50 t validate_show
-ffffffff812b6e60 t validate_store
-ffffffff812b6ea0 t cache_dma_show
-ffffffff812b6ed0 t usersize_show
-ffffffff812b6f00 t skip_kfence_show
-ffffffff812b6f30 t skip_kfence_store
-ffffffff812b6f60 t slab_debug_trace_open
-ffffffff812b71a0 t slab_debug_trace_release
-ffffffff812b7200 t process_slab
-ffffffff812b7730 t cmp_loc_by_count
-ffffffff812b7750 t slab_debugfs_start
-ffffffff812b7770 t slab_debugfs_stop
-ffffffff812b7780 t slab_debugfs_next
-ffffffff812b77b0 t slab_debugfs_show
-ffffffff812b79e0 t kfence_init_enable
-ffffffff812b7ac0 t kfence_shutdown_cache
-ffffffff812b7bb0 t kfence_guarded_free
-ffffffff812b7f10 t __kfence_alloc
-ffffffff812b8070 t get_alloc_stack_hash
-ffffffff812b8230 t kfence_guarded_alloc
-ffffffff812b8630 t kfence_ksize
-ffffffff812b8690 t kfence_object_start
-ffffffff812b86f0 t __kfence_free
-ffffffff812b87d0 t rcu_guarded_free
-ffffffff812b87f0 t kfence_handle_page_fault
-ffffffff812b8aa0 t kfence_unprotect
-ffffffff812b8b70 t param_set_sample_interval
-ffffffff812b8dc0 t param_get_sample_interval
-ffffffff812b8e10 t kfence_init_pool
-ffffffff812b9090 t kfence_protect
-ffffffff812b9160 t stats_open
-ffffffff812b9190 t stats_show
-ffffffff812b92a0 t objects_open
-ffffffff812b92f0 t start_object
-ffffffff812b9310 t stop_object
-ffffffff812b9320 t next_object
-ffffffff812b9350 t show_object
-ffffffff812b93d0 t toggle_allocation_gate
-ffffffff812b9420 t kfence_check_canary_callback
-ffffffff812b9600 t metadata_update_state
-ffffffff812b96b0 t kfence_print_object
-ffffffff812b97a0 t seq_con_printf
-ffffffff812b9830 t kfence_print_stack
-ffffffff812b9930 t kfence_report_error
-ffffffff812b9de0 t get_stack_skipnr
-ffffffff812ba000 t __kfence_obj_info
-ffffffff812ba1a0 t isolate_movable_page
-ffffffff812ba290 t putback_movable_pages
-ffffffff812ba3c0 t remove_migration_ptes
-ffffffff812ba440 t remove_migration_pte
-ffffffff812ba760 t __migration_entry_wait
-ffffffff812ba7f0 t migration_entry_wait
-ffffffff812ba8e0 t pmd_migration_entry_wait
-ffffffff812ba9b0 t folio_migrate_mapping
-ffffffff812bad90 t migrate_huge_page_move_mapping
-ffffffff812baeb0 t folio_migrate_flags
-ffffffff812bb010 t folio_migrate_copy
-ffffffff812bb040 t migrate_folio_extra
-ffffffff812bb0a0 t migrate_folio
-ffffffff812bb100 t buffer_migrate_folio
-ffffffff812bb120 t __buffer_migrate_folio
-ffffffff812bb3e0 t buffer_migrate_folio_norefs
-ffffffff812bb400 t filemap_migrate_folio
-ffffffff812bb4a0 t migrate_pages
-ffffffff812bc090 t alloc_migration_target
-ffffffff812bc130 t move_to_new_folio
-ffffffff812bc460 t __traceiter_hugepage_set_pmd
-ffffffff812bc4b0 t __traceiter_hugepage_update
-ffffffff812bc520 t __traceiter_set_migration_pmd
-ffffffff812bc570 t __traceiter_remove_migration_pmd
-ffffffff812bc5c0 t trace_event_raw_event_hugepage_set_pmd
-ffffffff812bc680 t perf_trace_hugepage_set_pmd
-ffffffff812bc780 t trace_event_raw_event_hugepage_update
-ffffffff812bc860 t perf_trace_hugepage_update
-ffffffff812bc970 t trace_event_raw_event_migration_pmd
-ffffffff812bca30 t perf_trace_migration_pmd
-ffffffff812bcb30 t hugepage_vma_check
-ffffffff812bcc40 t mm_get_huge_zero_page
-ffffffff812bcd60 t mm_put_huge_zero_page
-ffffffff812bcd90 t single_hugepage_flag_show
-ffffffff812bcdc0 t single_hugepage_flag_store
-ffffffff812bce60 t maybe_pmd_mkwrite
-ffffffff812bce80 t prep_transhuge_page
-ffffffff812bceb0 t thp_get_unmapped_area
-ffffffff812bcfa0 t vma_thp_gfp_mask
-ffffffff812bd040 t do_huge_pmd_anonymous_page
-ffffffff812bd750 t pte_free
-ffffffff812bd7d0 t set_huge_zero_page
-ffffffff812bd870 t vmf_insert_pfn_pmd_prot
-ffffffff812bdae0 t vmf_insert_pfn_pud_prot
-ffffffff812bdcf0 t follow_devmap_pmd
-ffffffff812bdde0 t copy_huge_pmd
-ffffffff812be220 t __split_huge_pmd
-ffffffff812bed50 t follow_devmap_pud
-ffffffff812bee00 t copy_huge_pud
-ffffffff812beeb0 t huge_pud_set_accessed
-ffffffff812bef30 t huge_pmd_set_accessed
-ffffffff812beff0 t do_huge_pmd_wp_page
-ffffffff812bf2e0 t follow_trans_huge_pmd
-ffffffff812bf540 t do_huge_pmd_numa_page
-ffffffff812bf760 t madvise_free_huge_pmd
-ffffffff812bfa90 t zap_huge_pmd
-ffffffff812bfe30 t __pmd_trans_huge_lock
-ffffffff812bfee0 t pfn_swap_entry_to_page
-ffffffff812bff50 t pfn_swap_entry_to_page
-ffffffff812bffc0 t move_huge_pmd
-ffffffff812c01d0 t change_huge_pmd
-ffffffff812c0580 t __pud_trans_huge_lock
-ffffffff812c05e0 t zap_huge_pud
-ffffffff812c06b0 t __split_huge_pud
-ffffffff812c0730 t split_huge_pmd_address
-ffffffff812c0780 t vma_adjust_trans_huge
-ffffffff812c08c0 t can_split_folio
-ffffffff812c0930 t split_huge_page_to_list
-ffffffff812c1560 t free_transhuge_page
-ffffffff812c1650 t deferred_split_huge_page
-ffffffff812c17f0 t set_pmd_migration_entry
-ffffffff812c1a50 t remove_migration_pmd
-ffffffff812c1cb0 t trace_raw_output_hugepage_set_pmd
-ffffffff812c1d10 t trace_raw_output_hugepage_update
-ffffffff812c1d70 t trace_raw_output_migration_pmd
-ffffffff812c1dd0 t enabled_show
-ffffffff812c1e20 t enabled_show
-ffffffff812c1e50 t enabled_store
-ffffffff812c1f00 t enabled_store
-ffffffff812c1f90 t defrag_show
-ffffffff812c2010 t defrag_show
-ffffffff812c2030 t defrag_store
-ffffffff812c2160 t defrag_store
-ffffffff812c2180 t use_zero_page_show
-ffffffff812c21b0 t use_zero_page_store
-ffffffff812c2240 t hpage_pmd_size_show
-ffffffff812c2270 t shrink_huge_zero_page_count
-ffffffff812c2290 t shrink_huge_zero_page_scan
-ffffffff812c22f0 t deferred_split_count
-ffffffff812c2320 t deferred_split_scan
-ffffffff812c25b0 t split_huge_pages_write
-ffffffff812c2aa0 t split_huge_pages_pid
-ffffffff812c2db0 t __traceiter_mm_khugepaged_scan_pmd
-ffffffff812c2e30 t __traceiter_mm_collapse_huge_page
-ffffffff812c2e90 t __traceiter_mm_collapse_huge_page_isolate
-ffffffff812c2f00 t __traceiter_mm_collapse_huge_page_swapin
-ffffffff812c2f70 t __traceiter_mm_khugepaged_scan_file
-ffffffff812c2ff0 t trace_event_raw_event_mm_khugepaged_scan_pmd
-ffffffff812c3100 t perf_trace_mm_khugepaged_scan_pmd
-ffffffff812c3250 t trace_event_raw_event_mm_collapse_huge_page
-ffffffff812c3320 t perf_trace_mm_collapse_huge_page
-ffffffff812c3430 t trace_event_raw_event_mm_collapse_huge_page_isolate
-ffffffff812c3530 t perf_trace_mm_collapse_huge_page_isolate
-ffffffff812c3670 t trace_event_raw_event_mm_collapse_huge_page_swapin
-ffffffff812c3750 t perf_trace_mm_collapse_huge_page_swapin
-ffffffff812c3860 t trace_event_raw_event_mm_khugepaged_scan_file
-ffffffff812c39b0 t perf_trace_mm_khugepaged_scan_file
-ffffffff812c3b50 t hugepage_madvise
-ffffffff812c3bd0 t khugepaged_enter_vma
-ffffffff812c3c20 t __khugepaged_enter
-ffffffff812c3d50 t __khugepaged_exit
-ffffffff812c3ea0 t collapse_pte_mapped_thp
-ffffffff812c4290 t collapse_and_free_pmd
-ffffffff812c4380 t set_huge_pmd
-ffffffff812c4450 t start_stop_khugepaged
-ffffffff812c4540 t khugepaged
-ffffffff812c4ff0 t set_recommended_min_free_kbytes
-ffffffff812c50b0 t khugepaged_min_free_kbytes_update
-ffffffff812c50f0 t madvise_collapse
-ffffffff812c5590 t hpage_collapse_scan_file
-ffffffff812c6b80 t hpage_collapse_scan_pmd
-ffffffff812c8ad0 t trace_raw_output_mm_khugepaged_scan_pmd
-ffffffff812c8b80 t trace_raw_output_mm_collapse_huge_page
-ffffffff812c8c00 t trace_raw_output_mm_collapse_huge_page_isolate
-ffffffff812c8ca0 t trace_raw_output_mm_collapse_huge_page_swapin
-ffffffff812c8d00 t trace_raw_output_mm_khugepaged_scan_file
-ffffffff812c8db0 t max_ptes_none_show
-ffffffff812c8de0 t max_ptes_none_store
-ffffffff812c8e60 t max_ptes_swap_show
-ffffffff812c8e90 t max_ptes_swap_store
-ffffffff812c8f10 t max_ptes_shared_show
-ffffffff812c8f40 t max_ptes_shared_store
-ffffffff812c8fc0 t pages_to_scan_show
-ffffffff812c8ff0 t pages_to_scan_store
-ffffffff812c9060 t pages_collapsed_show
-ffffffff812c9090 t full_scans_show
-ffffffff812c90c0 t scan_sleep_millisecs_show
-ffffffff812c90f0 t scan_sleep_millisecs_store
-ffffffff812c9180 t alloc_sleep_millisecs_show
-ffffffff812c91b0 t alloc_sleep_millisecs_store
-ffffffff812c9240 t alloc_charge_hpage
-ffffffff812c9380 t is_refcount_suitable
-ffffffff812c9400 t page_counter_cancel
-ffffffff812c94c0 t page_counter_charge
-ffffffff812c9570 t page_counter_try_charge
-ffffffff812c9690 t page_counter_uncharge
-ffffffff812c96e0 t page_counter_set_max
-ffffffff812c9740 t page_counter_set_min
-ffffffff812c97d0 t page_counter_set_low
-ffffffff812c9860 t page_counter_memparse
-ffffffff812c9900 t memcg_to_vmpressure
-ffffffff812c9920 t vmpressure_to_memcg
-ffffffff812c9940 t mem_cgroup_kmem_disabled
-ffffffff812c9960 t mem_cgroup_css_from_page
-ffffffff812c99b0 t page_cgroup_ino
-ffffffff812c9a20 t mem_cgroup_flush_stats
-ffffffff812c9b00 t mem_cgroup_flush_stats_delayed
-ffffffff812c9bf0 t memcg_page_state
-ffffffff812c9c20 t __mod_memcg_state
-ffffffff812c9ce0 t __mod_memcg_lruvec_state
-ffffffff812c9dd0 t __mod_lruvec_state
-ffffffff812c9e10 t __mod_lruvec_page_state
-ffffffff812c9ef0 t __mod_lruvec_kmem_state
-ffffffff812c9f90 t mem_cgroup_from_slab_obj
-ffffffff812ca0a0 t __count_memcg_events
-ffffffff812ca170 t mem_cgroup_from_task
-ffffffff812ca1a0 t get_mem_cgroup_from_mm
-ffffffff812ca290 t css_get
-ffffffff812ca2d0 t mem_cgroup_iter
-ffffffff812ca510 t css_put
-ffffffff812ca560 t mem_cgroup_iter_break
-ffffffff812ca5d0 t mem_cgroup_scan_tasks
-ffffffff812ca7a0 t folio_lruvec_lock
-ffffffff812ca810 t folio_lruvec_lock_irq
-ffffffff812ca880 t folio_lruvec_lock_irqsave
-ffffffff812ca900 t mem_cgroup_update_lru_size
-ffffffff812ca9b0 t mem_cgroup_print_oom_context
-ffffffff812caa30 t mem_cgroup_print_oom_meminfo
-ffffffff812cab30 t memory_stat_format
-ffffffff812cae30 t mem_cgroup_get_max
-ffffffff812caee0 t mem_cgroup_size
-ffffffff812caf00 t mem_cgroup_oom_synchronize
-ffffffff812cb260 t memcg_oom_wake_function
-ffffffff812cb2d0 t mem_cgroup_oom_trylock
-ffffffff812cb440 t mem_cgroup_out_of_memory
-ffffffff812cb580 t mem_cgroup_get_oom_group
-ffffffff812cb680 t mem_cgroup_print_oom_group
-ffffffff812cb6c0 t folio_memcg_lock
-ffffffff812cb760 t lock_page_memcg
-ffffffff812cb810 t folio_memcg_unlock
-ffffffff812cb880 t unlock_page_memcg
-ffffffff812cb900 t mem_cgroup_handle_over_high
-ffffffff812cbad0 t reclaim_high
-ffffffff812cbbd0 t swap_find_max_overage
-ffffffff812cbcd0 t memcg_alloc_slab_cgroups
-ffffffff812cbd50 t mem_cgroup_from_obj
-ffffffff812cbe90 t get_obj_cgroup_from_current
-ffffffff812cc010 t get_obj_cgroup_from_page
-ffffffff812cc130 t __memcg_kmem_charge_page
-ffffffff812cc320 t obj_cgroup_charge_pages
-ffffffff812cc460 t __memcg_kmem_uncharge_page
-ffffffff812cc4e0 t obj_cgroup_uncharge_pages
-ffffffff812cc650 t mod_objcg_state
-ffffffff812cc9e0 t drain_obj_stock
-ffffffff812cccc0 t obj_cgroup_charge
-ffffffff812ccdf0 t refill_obj_stock.llvm.554238833668256173
-ffffffff812ccf70 t obj_cgroup_uncharge
-ffffffff812ccf90 t split_page_memcg
-ffffffff812cd0e0 t mem_cgroup_soft_limit_reclaim
-ffffffff812cd590 t __mem_cgroup_largest_soft_limit_node
-ffffffff812cd660 t mem_cgroup_wb_domain
-ffffffff812cd690 t mem_cgroup_wb_stats
-ffffffff812cd840 t mem_cgroup_track_foreign_dirty_slowpath
-ffffffff812cda80 t mem_cgroup_flush_foreign
-ffffffff812cdb70 t mem_cgroup_from_id
-ffffffff812cdb90 t mem_cgroup_css_online
-ffffffff812cdce0 t mem_cgroup_css_offline
-ffffffff812cddd0 t mem_cgroup_css_released
-ffffffff812cde30 t mem_cgroup_css_free
-ffffffff812cdfb0 t mem_cgroup_css_reset
-ffffffff812ce070 t mem_cgroup_css_rstat_flush
-ffffffff812ce280 t mem_cgroup_can_attach
-ffffffff812ce530 t mem_cgroup_cancel_attach
-ffffffff812ce5a0 t mem_cgroup_attach
-ffffffff812ce660 t mem_cgroup_move_task
-ffffffff812ce790 t mem_cgroup_calculate_protection
-ffffffff812ce920 t __mem_cgroup_charge
-ffffffff812ce9a0 t charge_memcg
-ffffffff812cea70 t mem_cgroup_swapin_charge_folio
-ffffffff812ceb70 t mem_cgroup_swapin_uncharge_swap
-ffffffff812ceb90 t __mem_cgroup_uncharge
-ffffffff812cec20 t uncharge_folio
-ffffffff812cedf0 t uncharge_batch
-ffffffff812cefa0 t __mem_cgroup_uncharge_list
-ffffffff812cf050 t mem_cgroup_migrate
-ffffffff812cf1c0 t memcg_check_events
-ffffffff812cf2f0 t mem_cgroup_sk_alloc
-ffffffff812cf3b0 t mem_cgroup_sk_free
-ffffffff812cf410 t mem_cgroup_charge_skmem
-ffffffff812cf500 t mem_cgroup_uncharge_skmem
-ffffffff812cf5d0 t mem_cgroup_swapout
-ffffffff812cf850 t __mem_cgroup_try_charge_swap
-ffffffff812cfb10 t __mem_cgroup_uncharge_swap
-ffffffff812cfbe0 t mem_cgroup_id_put_many
-ffffffff812cfc80 t mem_cgroup_get_nr_swap_pages
-ffffffff812cfcd0 t mem_cgroup_swap_full
-ffffffff812cfd60 t try_charge_memcg
-ffffffff812d06c0 t drain_all_stock
-ffffffff812d0870 t drain_local_stock
-ffffffff812d0960 t drain_stock
-ffffffff812d09f0 t __refill_stock
-ffffffff812d0a80 t high_work_func
-ffffffff812d0aa0 t memcg_offline_kmem
-ffffffff812d0bd0 t obj_cgroup_release
-ffffffff812d0c90 t flush_memcg_stats_dwork
-ffffffff812d0d80 t mem_cgroup_count_precharge_pte_range
-ffffffff812d0fe0 t get_mctgt_type
-ffffffff812d12c0 t __mem_cgroup_clear_mc
-ffffffff812d1450 t mem_cgroup_move_charge_pte_range
-ffffffff812d19e0 t mem_cgroup_move_account
-ffffffff812d2010 t memory_current_read
-ffffffff812d2030 t memory_peak_read
-ffffffff812d2050 t memory_min_show
-ffffffff812d20b0 t memory_min_write
-ffffffff812d2140 t memory_low_show
-ffffffff812d21a0 t memory_low_write
-ffffffff812d2230 t memory_high_show
-ffffffff812d2290 t memory_high_write
-ffffffff812d23e0 t memory_max_show
-ffffffff812d2440 t memory_max_write
-ffffffff812d2620 t memory_events_show
-ffffffff812d26d0 t memory_events_local_show
-ffffffff812d2780 t memory_stat_show
-ffffffff812d27f0 t memory_oom_group_show
-ffffffff812d2830 t memory_oom_group_write
-ffffffff812d28d0 t memory_reclaim
-ffffffff812d29e0 t mem_cgroup_read_u64
-ffffffff812d2ab0 t mem_cgroup_reset
-ffffffff812d2b50 t mem_cgroup_write
-ffffffff812d2c70 t memcg_stat_show
-ffffffff812d32d0 t mem_cgroup_force_empty_write
-ffffffff812d3380 t mem_cgroup_hierarchy_read
-ffffffff812d3390 t mem_cgroup_hierarchy_write
-ffffffff812d33d0 t memcg_write_event_control
-ffffffff812d37b0 t mem_cgroup_swappiness_read
-ffffffff812d37f0 t mem_cgroup_swappiness_write
-ffffffff812d3830 t mem_cgroup_move_charge_read
-ffffffff812d3850 t mem_cgroup_move_charge_write
-ffffffff812d38a0 t mem_cgroup_oom_control_read
-ffffffff812d3910 t mem_cgroup_oom_control_write
-ffffffff812d3970 t mem_cgroup_slab_show
-ffffffff812d3980 t mem_cgroup_usage
-ffffffff812d3ad0 t mem_cgroup_resize_max
-ffffffff812d3c60 t memcg_update_tcp_max
-ffffffff812d3cd0 t memcg_event_ptable_queue_proc
-ffffffff812d3cf0 t memcg_event_wake
-ffffffff812d3d80 t memcg_event_remove
-ffffffff812d3e20 t mem_cgroup_usage_register_event
-ffffffff812d3e40 t mem_cgroup_usage_unregister_event
-ffffffff812d3e60 t mem_cgroup_oom_register_event
-ffffffff812d3f10 t mem_cgroup_oom_unregister_event
-ffffffff812d3fd0 t memsw_cgroup_usage_register_event
-ffffffff812d3ff0 t memsw_cgroup_usage_unregister_event
-ffffffff812d4010 t __mem_cgroup_usage_register_event
-ffffffff812d42e0 t __mem_cgroup_threshold
-ffffffff812d43c0 t compare_thresholds
-ffffffff812d43f0 t __mem_cgroup_usage_unregister_event
-ffffffff812d45e0 t mem_cgroup_update_tree
-ffffffff812d47e0 t memcg_hotplug_cpu_dead
-ffffffff812d4810 t swap_current_read
-ffffffff812d4830 t swap_high_show
-ffffffff812d4890 t swap_high_write
-ffffffff812d4920 t swap_max_show
-ffffffff812d4980 t swap_max_write
-ffffffff812d4a10 t swap_events_show
-ffffffff812d4a80 t vmpressure
-ffffffff812d4c10 t vmpressure_prio
-ffffffff812d4ca0 t vmpressure_register_event
-ffffffff812d4e30 t vmpressure_unregister_event
-ffffffff812d4ed0 t vmpressure_init
-ffffffff812d4f30 t vmpressure_work_fn
-ffffffff812d50b0 t vmpressure_cleanup
-ffffffff812d50d0 t swap_cgroup_cmpxchg
-ffffffff812d5190 t swap_cgroup_record
-ffffffff812d52e0 t lookup_swap_cgroup_id
-ffffffff812d5360 t swap_cgroup_swapon
-ffffffff812d54e0 t swap_cgroup_swapoff
-ffffffff812d55a0 t get_page_owner_handle
-ffffffff812d55e0 t __reset_page_owner
-ffffffff812d5680 t save_stack
-ffffffff812d57c0 t __set_page_owner
-ffffffff812d58d0 t __set_page_owner_migrate_reason
-ffffffff812d5900 t __split_page_owner
-ffffffff812d59c0 t __folio_copy_owner
-ffffffff812d5a80 t pagetypeinfo_showmixedcount_print
-ffffffff812d5d40 t __dump_page_owner
-ffffffff812d5ee0 t register_dummy_stack
-ffffffff812d5f70 t register_failure_stack
-ffffffff812d6000 t register_early_stack
-ffffffff812d6090 t lseek_page_owner
-ffffffff812d60c0 t read_page_owner
-ffffffff812d6750 t __traceiter_test_pages_isolated
-ffffffff812d67b0 t trace_event_raw_event_test_pages_isolated
-ffffffff812d6880 t perf_trace_test_pages_isolated
-ffffffff812d6990 t start_isolate_page_range
-ffffffff812d6b50 t isolate_single_pageblock
-ffffffff812d70e0 t unset_migratetype_isolate
-ffffffff812d71a0 t set_migratetype_isolate
-ffffffff812d7490 t undo_isolate_page_range
-ffffffff812d7540 t test_pages_isolated
-ffffffff812d7730 t trace_raw_output_test_pages_isolated
-ffffffff812d77a0 t zs_get_total_pages
-ffffffff812d77c0 t zs_map_object
-ffffffff812d7a80 t zs_unmap_object
-ffffffff812d7ce0 t zs_huge_class_size
-ffffffff812d7d00 t zs_malloc
-ffffffff812d84a0 t obj_malloc
-ffffffff812d85e0 t fix_fullness_group
-ffffffff812d8740 t zs_free
-ffffffff812d8840 t obj_free
-ffffffff812d8920 t free_zspage
-ffffffff812d8a50 t zs_compact
-ffffffff812d9290 t zs_pool_stats
-ffffffff812d92b0 t zs_create_pool
-ffffffff812d9600 t zs_destroy_pool
-ffffffff812d9720 t __free_zspage
-ffffffff812d9850 t zs_page_isolate
-ffffffff812d98b0 t zs_page_migrate
-ffffffff812d9d10 t zs_page_putback
-ffffffff812d9d70 t putback_zspage
-ffffffff812d9e80 t async_free_zspage
-ffffffff812da1e0 t zs_shrinker_scan
-ffffffff812da210 t zs_shrinker_count
-ffffffff812da280 t zs_cpu_prepare
-ffffffff812da2e0 t zs_cpu_dead
-ffffffff812da320 t balloon_page_list_enqueue
-ffffffff812da3f0 t balloon_page_enqueue_one.llvm.15012921530899811503
-ffffffff812da490 t balloon_page_list_dequeue
-ffffffff812da620 t balloon_page_alloc
-ffffffff812da640 t balloon_page_enqueue
-ffffffff812da690 t balloon_page_dequeue
-ffffffff812da720 t balloon_page_isolate.llvm.15012921530899811503
-ffffffff812da7a0 t balloon_page_migrate.llvm.15012921530899811503
-ffffffff812da7d0 t balloon_page_putback.llvm.15012921530899811503
-ffffffff812da850 t page_ext_get
-ffffffff812da8e0 t page_ext_put
-ffffffff812da900 t __free_page_ext
-ffffffff812daa20 t secretmem_active
-ffffffff812daa40 t vma_is_secretmem
-ffffffff812daa60 t secretmem_free_folio.llvm.13904012485532120066
-ffffffff812dab00 t secretmem_migrate_folio.llvm.13904012485532120066
-ffffffff812dab10 t __x64_sys_memfd_secret
-ffffffff812dacb0 t secretmem_fault.llvm.13904012485532120066
-ffffffff812dae20 t secretmem_mmap
-ffffffff812dae80 t secretmem_release
-ffffffff812daea0 t secretmem_setattr
-ffffffff812daf20 t secretmem_init_fs_context
-ffffffff812daf50 t mfill_atomic_install_pte
-ffffffff812db1b0 t mcopy_atomic
-ffffffff812db8d0 t mfill_zeropage
-ffffffff812dc000 t mcopy_continue
-ffffffff812dc570 t uffd_wp_range
-ffffffff812dc6d0 t mwriteprotect_range
-ffffffff812dc950 t mmap_read_unlock
-ffffffff812dc980 t mmap_read_unlock
-ffffffff812dc9b0 t mmap_read_unlock
-ffffffff812dc9e0 t __traceiter_damon_aggregated
-ffffffff812dca50 t trace_event_raw_event_damon_aggregated
-ffffffff812dcb40 t perf_trace_damon_aggregated
-ffffffff812dcc70 t damon_is_registered_ops
-ffffffff812dcd50 t damon_register_ops
-ffffffff812dce50 t damon_select_ops
-ffffffff812dcf50 t damon_new_region
-ffffffff812dcfb0 t damon_add_region
-ffffffff812dd010 t damon_destroy_region
-ffffffff812dd070 t damon_set_regions
-ffffffff812dd3e0 t damon_new_scheme
-ffffffff812dd540 t damon_add_scheme
-ffffffff812dd5b0 t damon_destroy_scheme
-ffffffff812dd610 t damon_new_target
-ffffffff812dd660 t damon_add_target
-ffffffff812dd6c0 t damon_targets_empty
-ffffffff812dd6e0 t damon_free_target
-ffffffff812dd730 t damon_destroy_target
-ffffffff812dd7b0 t damon_nr_regions
-ffffffff812dd7c0 t damon_new_ctx
-ffffffff812dd880 t damon_destroy_ctx
-ffffffff812dd9f0 t damon_set_attrs
-ffffffff812dda40 t damon_set_schemes
-ffffffff812ddb50 t damon_nr_running_ctxs
-ffffffff812ddb80 t damon_start
-ffffffff812ddcd0 t damon_stop
-ffffffff812dddb0 t damon_set_region_biggest_system_ram_default
-ffffffff812dde80 t trace_raw_output_damon_aggregated
-ffffffff812ddef0 t kdamond_fn
-ffffffff812df470 t walk_system_ram
-ffffffff812df4b0 t damon_get_page
-ffffffff812df540 t damon_ptep_mkold
-ffffffff812df660 t damon_pmdp_mkold
-ffffffff812df790 t damon_hot_score
-ffffffff812df860 t damon_cold_score
-ffffffff812df940 t damon_pa_prepare_access_checks
-ffffffff812dfab0 t damon_pa_check_accesses
-ffffffff812dfcd0 t damon_pa_scheme_score
-ffffffff812dfd10 t damon_pa_apply_scheme
-ffffffff812dffc0 t __damon_pa_mkold
-ffffffff812e00b0 t __damon_pa_young
-ffffffff812e01d0 t damon_reclaim_enabled_store
-ffffffff812e0210 t damon_reclaim_timer_fn
-ffffffff812e02a0 t damon_reclaim_apply_parameters
-ffffffff812e03a0 t damon_reclaim_after_wmarks_check
-ffffffff812e03d0 t damon_reclaim_after_aggregation
-ffffffff812e0460 t usercopy_abort
-ffffffff812e04f0 t __check_object_size
-ffffffff812e0750 t check_stack_object
-ffffffff812e07f0 t memfd_fcntl
-ffffffff812e0de0 t __x64_sys_memfd_create
-ffffffff812e0f80 t __page_reporting_notify
-ffffffff812e0fd0 t page_reporting_register
-ffffffff812e10d0 t page_reporting_process
-ffffffff812e1560 t page_reporting_unregister
-ffffffff812e15c0 t page_reporting_drain
-ffffffff812e1690 t get_page_bootmem
-ffffffff812e16b0 t put_page_bootmem
-ffffffff812e1730 t do_truncate
-ffffffff812e1860 t vfs_truncate
-ffffffff812e1990 t do_sys_truncate
-ffffffff812e1a80 t __x64_sys_truncate
-ffffffff812e1aa0 t do_sys_ftruncate
-ffffffff812e1d40 t __x64_sys_ftruncate
-ffffffff812e1d60 t vfs_fallocate
-ffffffff812e1f30 t file_start_write
-ffffffff812e1fb0 t file_start_write
-ffffffff812e2030 t file_start_write
-ffffffff812e20b0 t fsnotify_modify
-ffffffff812e2130 t fsnotify_modify
-ffffffff812e21b0 t file_end_write
-ffffffff812e2230 t file_end_write
-ffffffff812e22b0 t file_end_write
-ffffffff812e2330 t ksys_fallocate
-ffffffff812e23a0 t __x64_sys_fallocate
-ffffffff812e2410 t __x64_sys_faccessat
-ffffffff812e2430 t __x64_sys_faccessat2
-ffffffff812e2450 t __x64_sys_access
-ffffffff812e2470 t __x64_sys_chdir
-ffffffff812e2590 t __x64_sys_fchdir
-ffffffff812e2630 t __x64_sys_chroot
-ffffffff812e2780 t chmod_common
-ffffffff812e2930 t vfs_fchmod
-ffffffff812e2980 t __x64_sys_fchmod
-ffffffff812e2a10 t __x64_sys_fchmodat
-ffffffff812e2a30 t __x64_sys_chmod
-ffffffff812e2a50 t chown_common
-ffffffff812e2c60 t do_fchownat
-ffffffff812e2da0 t __x64_sys_fchownat
-ffffffff812e2dd0 t __x64_sys_chown
-ffffffff812e2e00 t __x64_sys_lchown
-ffffffff812e2e30 t vfs_fchown
-ffffffff812e2eb0 t ksys_fchown
-ffffffff812e2f60 t __x64_sys_fchown
-ffffffff812e2f80 t finish_open
-ffffffff812e2fa0 t do_dentry_open
-ffffffff812e3320 t finish_no_open
-ffffffff812e3340 t file_path
-ffffffff812e3360 t vfs_open
-ffffffff812e3390 t dentry_open
-ffffffff812e3400 t dentry_create
-ffffffff812e34a0 t open_with_fake_path
-ffffffff812e3510 t build_open_how
-ffffffff812e3570 t build_open_flags
-ffffffff812e36f0 t file_open_name
-ffffffff812e37b0 t filp_open
-ffffffff812e38a0 t filp_open_block
-ffffffff812e3930 t filp_close
-ffffffff812e39b0 t file_open_root
-ffffffff812e3a70 t do_sys_open
-ffffffff812e3af0 t do_sys_openat2
-ffffffff812e3d40 t __x64_sys_open
-ffffffff812e3de0 t __x64_sys_openat
-ffffffff812e3e80 t __x64_sys_openat2
-ffffffff812e3f80 t __x64_sys_creat
-ffffffff812e3ff0 t __x64_sys_close
-ffffffff812e4030 t __x64_sys_close_range
-ffffffff812e4050 t __x64_sys_vhangup
-ffffffff812e4080 t generic_file_open
-ffffffff812e40b0 t nonseekable_open
-ffffffff812e40d0 t stream_open
-ffffffff812e40f0 t do_faccessat
-ffffffff812e43b0 t do_fchmodat
-ffffffff812e4490 t generic_file_llseek
-ffffffff812e44c0 t vfs_setpos
-ffffffff812e4510 t generic_file_llseek_size
-ffffffff812e4610 t fixed_size_llseek
-ffffffff812e4630 t no_seek_end_llseek
-ffffffff812e4660 t no_seek_end_llseek_size
-ffffffff812e4680 t noop_llseek
-ffffffff812e4690 t default_llseek
-ffffffff812e4760 t vfs_llseek
-ffffffff812e4790 t __x64_sys_lseek
-ffffffff812e4830 t rw_verify_area
-ffffffff812e4890 t __kernel_read
-ffffffff812e4aa0 t warn_unsupported
-ffffffff812e4b00 t kernel_read
-ffffffff812e4b90 t vfs_read
-ffffffff812e4e30 t __kernel_write_iter
-ffffffff812e4fd0 t __kernel_write
-ffffffff812e5080 t kernel_write
-ffffffff812e52c0 t vfs_write
-ffffffff812e5670 t ksys_read
-ffffffff812e5750 t __x64_sys_read
-ffffffff812e5770 t ksys_write
-ffffffff812e5850 t __x64_sys_write
-ffffffff812e5870 t ksys_pread64
-ffffffff812e5920 t __x64_sys_pread64
-ffffffff812e59e0 t ksys_pwrite64
-ffffffff812e5a90 t __x64_sys_pwrite64
-ffffffff812e5b50 t vfs_iocb_iter_read
-ffffffff812e5cc0 t vfs_iter_read
-ffffffff812e5cf0 t do_iter_read
-ffffffff812e5fd0 t vfs_iocb_iter_write
-ffffffff812e6150 t vfs_iter_write
-ffffffff812e6180 t do_iter_write
-ffffffff812e6460 t __x64_sys_readv
-ffffffff812e6490 t __x64_sys_writev
-ffffffff812e64c0 t __x64_sys_preadv
-ffffffff812e64f0 t __x64_sys_preadv2
-ffffffff812e6530 t __x64_sys_pwritev
-ffffffff812e6620 t __x64_sys_pwritev2
-ffffffff812e6730 t __x64_sys_sendfile
-ffffffff812e67d0 t __x64_sys_sendfile64
-ffffffff812e6890 t generic_copy_file_range
-ffffffff812e68f0 t vfs_copy_file_range
-ffffffff812e6f00 t __x64_sys_copy_file_range
-ffffffff812e70d0 t generic_write_check_limits
-ffffffff812e7160 t generic_write_checks_count
-ffffffff812e7240 t generic_write_checks
-ffffffff812e72b0 t generic_file_rw_checks
-ffffffff812e7330 t do_readv
-ffffffff812e7580 t do_writev
-ffffffff812e7690 t vfs_writev
-ffffffff812e7910 t do_preadv
-ffffffff812e7b40 t do_sendfile
-ffffffff812e7f40 t get_max_files
-ffffffff812e7f60 t alloc_empty_file
-ffffffff812e8040 t __alloc_file
-ffffffff812e8110 t alloc_empty_file_noaccount
-ffffffff812e8130 t alloc_file_pseudo
-ffffffff812e8230 t alloc_file
-ffffffff812e8370 t alloc_file_clone
-ffffffff812e83c0 t flush_delayed_fput
-ffffffff812e8400 t delayed_fput
-ffffffff812e8440 t fput
-ffffffff812e84c0 t ____fput
-ffffffff812e84d0 t __fput_sync
-ffffffff812e8500 t __fput
-ffffffff812e8720 t proc_nr_files
-ffffffff812e8760 t file_free_rcu
-ffffffff812e87a0 t put_super
-ffffffff812e87d0 t __put_super
-ffffffff812e8870 t deactivate_locked_super
-ffffffff812e88f0 t deactivate_super
-ffffffff812e8930 t trylock_super
-ffffffff812e8980 t retire_super
-ffffffff812e89f0 t generic_shutdown_super
-ffffffff812e8b30 t mount_capable
-ffffffff812e8b70 t sget_fc
-ffffffff812e8df0 t alloc_super
-ffffffff812e9110 t destroy_unused_super
-ffffffff812e91a0 t grab_super
-ffffffff812e9230 t sget
-ffffffff812e9480 t drop_super
-ffffffff812e94c0 t drop_super_exclusive
-ffffffff812e9500 t iterate_supers
-ffffffff812e95f0 t iterate_supers_type
-ffffffff812e96d0 t get_super
-ffffffff812e97a0 t get_active_super
-ffffffff812e9820 t user_get_super
-ffffffff812e9920 t reconfigure_super
-ffffffff812e9b30 t emergency_remount
-ffffffff812e9b90 t do_emergency_remount
-ffffffff812e9bc0 t emergency_thaw_all
-ffffffff812e9c20 t do_thaw_all
-ffffffff812e9c50 t get_anon_bdev
-ffffffff812e9c90 t free_anon_bdev
-ffffffff812e9cb0 t set_anon_super
-ffffffff812e9d00 t kill_anon_super
-ffffffff812e9d30 t kill_litter_super
-ffffffff812e9d80 t set_anon_super_fc
-ffffffff812e9dd0 t vfs_get_super
-ffffffff812e9eb0 t test_single_super
-ffffffff812e9ec0 t test_keyed_super
-ffffffff812e9ee0 t get_tree_nodev
-ffffffff812e9f80 t get_tree_single
-ffffffff812ea020 t get_tree_single_reconf
-ffffffff812ea040 t get_tree_keyed
-ffffffff812ea0f0 t get_tree_bdev
-ffffffff812ea330 t test_bdev_super_fc
-ffffffff812ea360 t set_bdev_super_fc
-ffffffff812ea3f0 t mount_bdev
-ffffffff812ea5b0 t test_bdev_super
-ffffffff812ea5d0 t set_bdev_super
-ffffffff812ea650 t kill_block_super
-ffffffff812ea6a0 t mount_nodev
-ffffffff812ea730 t reconfigure_single
-ffffffff812ea790 t mount_single
-ffffffff812ea880 t compare_single
-ffffffff812ea890 t vfs_get_tree
-ffffffff812ea950 t super_setup_bdi_name
-ffffffff812eaa50 t super_setup_bdi
-ffffffff812eaa80 t freeze_super
-ffffffff812eabf0 t thaw_super
-ffffffff812eac20 t thaw_super_locked.llvm.1021344333243510190
-ffffffff812ead00 t destroy_super_rcu
-ffffffff812ead50 t destroy_super_work
-ffffffff812eada0 t super_cache_scan
-ffffffff812eafb0 t super_cache_count
-ffffffff812eb0a0 t __iterate_supers
-ffffffff812eb160 t do_emergency_remount_callback
-ffffffff812eb1f0 t do_thaw_all_callback
-ffffffff812eb240 t chrdev_show
-ffffffff812eb2c0 t register_chrdev_region
-ffffffff812eb420 t __register_chrdev_region
-ffffffff812eb8a0 t alloc_chrdev_region
-ffffffff812eb8e0 t __register_chrdev
-ffffffff812ebab0 t cdev_alloc
-ffffffff812ebb00 t cdev_add
-ffffffff812ebb60 t unregister_chrdev_region
-ffffffff812ebc60 t __unregister_chrdev
-ffffffff812ebd40 t cdev_del
-ffffffff812ebd70 t cdev_put
-ffffffff812ebd90 t cd_forget
-ffffffff812ebe10 t chrdev_open.llvm.4152600280532699754
-ffffffff812ebfc0 t exact_match
-ffffffff812ebfd0 t exact_lock
-ffffffff812ebff0 t cdev_set_parent
-ffffffff812ec010 t cdev_device_add
-ffffffff812ec0e0 t cdev_device_del
-ffffffff812ec130 t cdev_init
-ffffffff812ec1d0 t base_probe.llvm.4152600280532699754
-ffffffff812ec1e0 t cdev_dynamic_release
-ffffffff812ec270 t cdev_default_release
-ffffffff812ec300 t generic_fillattr
-ffffffff812ec3a0 t generic_fill_statx_attr
-ffffffff812ec3d0 t vfs_getattr_nosec
-ffffffff812ec510 t vfs_getattr
-ffffffff812ec550 t vfs_fstat
-ffffffff812ec6e0 t getname_statx_lookup_flags
-ffffffff812ec710 t vfs_fstatat
-ffffffff812ec780 t vfs_statx
-ffffffff812ec960 t __x64_sys_stat
-ffffffff812eca20 t __x64_sys_lstat
-ffffffff812ecae0 t __x64_sys_fstat
-ffffffff812ecb70 t __x64_sys_newstat
-ffffffff812ecdd0 t __x64_sys_newlstat
-ffffffff812ed030 t __x64_sys_newfstatat
-ffffffff812ed2c0 t __x64_sys_newfstat
-ffffffff812ed4e0 t __x64_sys_readlinkat
-ffffffff812ed510 t __x64_sys_readlink
-ffffffff812ed540 t do_statx
-ffffffff812ed600 t cp_statx
-ffffffff812ed7c0 t __x64_sys_statx
-ffffffff812ed8d0 t __inode_add_bytes
-ffffffff812ed930 t inode_add_bytes
-ffffffff812ed9c0 t __inode_sub_bytes
-ffffffff812eda10 t inode_sub_bytes
-ffffffff812eda90 t inode_get_bytes
-ffffffff812edae0 t inode_set_bytes
-ffffffff812edb10 t cp_old_stat
-ffffffff812edc50 t do_readlinkat
-ffffffff812edde0 t __register_binfmt
-ffffffff812ede70 t unregister_binfmt
-ffffffff812eded0 t path_noexec
-ffffffff812edf00 t copy_string_kernel
-ffffffff812ee030 t get_arg_page
-ffffffff812ee170 t setup_arg_pages
-ffffffff812ee770 t open_exec
-ffffffff812ee7c0 t do_open_execat
-ffffffff812eea40 t __get_task_comm
-ffffffff812eeaa0 t __set_task_comm
-ffffffff812eeb40 t begin_new_exec
-ffffffff812ef420 t would_dump
-ffffffff812ef4d0 t unshare_sighand
-ffffffff812ef580 t set_dumpable
-ffffffff812ef5d0 t setup_new_exec
-ffffffff812ef660 t finalize_exec
-ffffffff812ef6d0 t bprm_change_interp
-ffffffff812ef720 t remove_arg_zero
-ffffffff812ef7f0 t kernel_execve
-ffffffff812efac0 t alloc_bprm
-ffffffff812efd40 t bprm_execve
-ffffffff812f01f0 t free_bprm
-ffffffff812f02d0 t set_binfmt
-ffffffff812f0300 t __x64_sys_execve
-ffffffff812f0350 t __x64_sys_execveat
-ffffffff812f03b0 t cgroup_threadgroup_change_begin
-ffffffff812f0410 t cgroup_threadgroup_change_end
-ffffffff812f0480 t do_execveat_common
-ffffffff812f07d0 t copy_strings
-ffffffff812f0a50 t proc_dointvec_minmax_coredump
-ffffffff812f0a70 t pipe_lock
-ffffffff812f0a90 t pipe_unlock
-ffffffff812f0ab0 t pipe_double_lock
-ffffffff812f0b10 t generic_pipe_buf_try_steal
-ffffffff812f0b80 t generic_pipe_buf_get
-ffffffff812f0bc0 t generic_pipe_buf_release
-ffffffff812f0bf0 t account_pipe_buffers
-ffffffff812f0c10 t too_many_pipe_buffers_soft
-ffffffff812f0c30 t too_many_pipe_buffers_hard
-ffffffff812f0c50 t pipe_is_unprivileged_user
-ffffffff812f0c80 t alloc_pipe_info
-ffffffff812f0e60 t free_pipe_info
-ffffffff812f0f10 t create_pipe_files
-ffffffff812f1110 t do_pipe_flags
-ffffffff812f1190 t __do_pipe_flags
-ffffffff812f1240 t __x64_sys_pipe2
-ffffffff812f1260 t __x64_sys_pipe
-ffffffff812f1280 t pipe_wait_readable
-ffffffff812f1370 t pipe_wait_writable
-ffffffff812f1460 t pipe_read.llvm.9544592080888617453
-ffffffff812f1890 t pipe_write.llvm.9544592080888617453
-ffffffff812f1f00 t pipe_poll.llvm.9544592080888617453
-ffffffff812f1fe0 t pipe_ioctl.llvm.9544592080888617453
-ffffffff812f20e0 t fifo_open.llvm.9544592080888617453
-ffffffff812f23b0 t pipe_release.llvm.9544592080888617453
-ffffffff812f24a0 t pipe_fasync.llvm.9544592080888617453
-ffffffff812f2550 t round_pipe_size
-ffffffff812f25a0 t pipe_resize_ring
-ffffffff812f2700 t get_pipe_info
-ffffffff812f2730 t pipe_fcntl
-ffffffff812f28e0 t do_pipe2
-ffffffff812f29c0 t anon_pipe_buf_release
-ffffffff812f2a30 t anon_pipe_buf_try_steal
-ffffffff812f2a90 t wait_for_partner
-ffffffff812f2b90 t pipefs_init_fs_context
-ffffffff812f2bd0 t pipefs_dname
-ffffffff812f2c00 t proc_dopipe_max_size
-ffffffff812f2c20 t do_proc_dopipe_max_size_conv
-ffffffff812f2c80 t getname_flags
-ffffffff812f2e60 t putname
-ffffffff812f2ec0 t getname_uflags
-ffffffff812f2ee0 t getname
-ffffffff812f2f00 t getname_kernel
-ffffffff812f3010 t generic_permission
-ffffffff812f3180 t inode_permission
-ffffffff812f3270 t path_get
-ffffffff812f32a0 t path_put
-ffffffff812f32d0 t nd_jump_link
-ffffffff812f3380 t may_linkat
-ffffffff812f3420 t follow_up
-ffffffff812f34b0 t follow_down_one
-ffffffff812f3510 t follow_down
-ffffffff812f35a0 t full_name_hash
-ffffffff812f3630 t hashlen_string
-ffffffff812f3700 t filename_lookup
-ffffffff812f3910 t path_lookupat
-ffffffff812f3a20 t kern_path_locked
-ffffffff812f3b80 t kern_path
-ffffffff812f3c10 t vfs_path_lookup
-ffffffff812f3cd0 t try_lookup_one_len
-ffffffff812f3db0 t lookup_one_common
-ffffffff812f3f40 t lookup_one_len
-ffffffff812f4030 t __lookup_slow
-ffffffff812f4160 t lookup_one
-ffffffff812f4240 t lookup_one_unlocked
-ffffffff812f4330 t lookup_slow
-ffffffff812f4380 t lookup_one_positive_unlocked
-ffffffff812f43c0 t lookup_one_len_unlocked
-ffffffff812f43e0 t lookup_positive_unlocked
-ffffffff812f4430 t path_pts
-ffffffff812f4520 t user_path_at_empty
-ffffffff812f45c0 t __check_sticky
-ffffffff812f4600 t lock_rename
-ffffffff812f4680 t unlock_rename
-ffffffff812f46d0 t vfs_create
-ffffffff812f4890 t vfs_mkobj
-ffffffff812f4a20 t may_open_dev
-ffffffff812f4a50 t vfs_tmpfile_open
-ffffffff812f4ab0 t vfs_tmpfile
-ffffffff812f4c30 t do_filp_open
-ffffffff812f4d90 t path_openat
-ffffffff812f5970 t do_file_open_root
-ffffffff812f5bc0 t kern_path_create
-ffffffff812f5c50 t filename_create
-ffffffff812f5dd0 t done_path_create
-ffffffff812f5e20 t user_path_create
-ffffffff812f5eb0 t vfs_mknod
-ffffffff812f60c0 t __x64_sys_mknodat
-ffffffff812f6110 t __x64_sys_mknod
-ffffffff812f6150 t vfs_mkdir
-ffffffff812f6320 t do_mkdirat
-ffffffff812f64e0 t __x64_sys_mkdirat
-ffffffff812f6520 t __x64_sys_mkdir
-ffffffff812f6560 t vfs_rmdir
-ffffffff812f66e0 t may_delete
-ffffffff812f6860 t dont_mount
-ffffffff812f6890 t dont_mount
-ffffffff812f68c0 t d_delete_notify
-ffffffff812f6950 t do_rmdir
-ffffffff812f6bf0 t filename_parentat
-ffffffff812f6e70 t __lookup_hash
-ffffffff812f6f50 t __x64_sys_rmdir
-ffffffff812f6f80 t vfs_unlink
-ffffffff812f7150 t try_break_deleg
-ffffffff812f71c0 t fsnotify_link_count
-ffffffff812f7210 t do_unlinkat
-ffffffff812f7500 t __x64_sys_unlinkat
-ffffffff812f7560 t __x64_sys_unlink
-ffffffff812f7590 t vfs_symlink
-ffffffff812f7700 t do_symlinkat
-ffffffff812f7900 t __x64_sys_symlinkat
-ffffffff812f7950 t __x64_sys_symlink
-ffffffff812f79a0 t vfs_link
-ffffffff812f7bb0 t fsnotify_link
-ffffffff812f7c70 t do_linkat
-ffffffff812f8080 t __x64_sys_linkat
-ffffffff812f80f0 t __x64_sys_link
-ffffffff812f8140 t vfs_rename
-ffffffff812f86e0 t fsnotify_move
-ffffffff812f88b0 t fsnotify_move
-ffffffff812f8a30 t do_renameat2
-ffffffff812f90c0 t __x64_sys_renameat2
-ffffffff812f9120 t __x64_sys_renameat
-ffffffff812f9180 t __x64_sys_rename
-ffffffff812f91d0 t readlink_copy
-ffffffff812f9250 t vfs_readlink
-ffffffff812f93c0 t vfs_get_link
-ffffffff812f9420 t page_get_link
-ffffffff812f9510 t page_put_link
-ffffffff812f9540 t page_readlink
-ffffffff812f9610 t page_symlink
-ffffffff812f9790 t check_acl
-ffffffff812f9860 t __traverse_mounts
-ffffffff812f9a40 t path_init
-ffffffff812f9dd0 t handle_lookup_down
-ffffffff812f9e10 t link_path_walk
-ffffffff812fa2f0 t complete_walk
-ffffffff812fa3b0 t terminate_walk
-ffffffff812fa4b0 t nd_jump_root
-ffffffff812fa5a0 t set_root
-ffffffff812fa680 t step_into
-ffffffff812fa980 t pick_link
-ffffffff812fad00 t try_to_unlazy_next
-ffffffff812fae30 t legitimize_links
-ffffffff812faf60 t drop_links
-ffffffff812fafd0 t legitimize_path
-ffffffff812fb030 t try_to_unlazy
-ffffffff812fb160 t put_link
-ffffffff812fb1c0 t nd_alloc_stack
-ffffffff812fb210 t walk_component
-ffffffff812fb2f0 t handle_dots
-ffffffff812fb5d0 t lookup_fast
-ffffffff812fb6e0 t choose_mountpoint_rcu
-ffffffff812fb750 t choose_mountpoint
-ffffffff812fb850 t may_open
-ffffffff812fb9c0 t do_tmpfile
-ffffffff812fbab0 t do_o_path
-ffffffff812fbb70 t do_mknodat
-ffffffff812fbe70 t path_parentat
-ffffffff812fbee0 t __f_setown
-ffffffff812fbf20 t f_modown.llvm.2301244624983392710
-ffffffff812fbff0 t f_setown
-ffffffff812fc090 t f_delown
-ffffffff812fc0e0 t f_getown
-ffffffff812fc150 t __x64_sys_fcntl
-ffffffff812fc9d0 t send_sigio
-ffffffff812fcaf0 t send_sigio_to_task
-ffffffff812fcc80 t send_sigurg
-ffffffff812fcda0 t send_sigurg_to_task
-ffffffff812fce30 t fasync_remove_entry
-ffffffff812fcef0 t fasync_free_rcu
-ffffffff812fcf10 t fasync_alloc
-ffffffff812fcf30 t fasync_free
-ffffffff812fcf50 t fasync_insert_entry
-ffffffff812fd020 t fasync_helper
-ffffffff812fd0b0 t kill_fasync
-ffffffff812fd160 t vfs_ioctl
-ffffffff812fd1a0 t fiemap_fill_next_extent
-ffffffff812fd2b0 t fiemap_prep
-ffffffff812fd330 t fileattr_fill_xflags
-ffffffff812fd3a0 t fileattr_fill_flags
-ffffffff812fd420 t vfs_fileattr_get
-ffffffff812fd460 t copy_fsxattr_to_user
-ffffffff812fd4e0 t vfs_fileattr_set
-ffffffff812fd710 t __x64_sys_ioctl
-ffffffff812fe480 t iterate_dir
-ffffffff812fe600 t __x64_sys_old_readdir
-ffffffff812fe6c0 t __x64_sys_getdents
-ffffffff812fe7c0 t __x64_sys_getdents64
-ffffffff812fe8c0 t fillonedir
-ffffffff812fea10 t filldir
-ffffffff812feba0 t filldir64
-ffffffff812fed30 t select_estimate_accuracy
-ffffffff812fee50 t poll_initwait
-ffffffff812fee90 t __pollwait
-ffffffff812fef70 t poll_freewait
-ffffffff812ff020 t poll_select_set_timeout
-ffffffff812ff090 t core_sys_select
-ffffffff812ff410 t do_select
-ffffffff812ffcb0 t set_fd_set
-ffffffff812ffd10 t __x64_sys_select
-ffffffff812ffe90 t __x64_sys_pselect6
-ffffffff81300050 t __x64_sys_poll
-ffffffff81300180 t __x64_sys_ppoll
-ffffffff813002e0 t pollwake
-ffffffff81300360 t poll_select_finish
-ffffffff81300540 t do_sys_poll
-ffffffff81300c20 t do_restart_poll
-ffffffff81300cb0 t take_dentry_name_snapshot
-ffffffff81300d20 t release_dentry_name_snapshot
-ffffffff81300d60 t __d_drop
-ffffffff81300d90 t ___d_drop
-ffffffff81300e70 t d_drop
-ffffffff81300ec0 t d_mark_dontcache
-ffffffff81300f40 t dput
-ffffffff81301010 t retain_dentry
-ffffffff81301090 t dentry_kill
-ffffffff813011a0 t dput_to_list
-ffffffff81301260 t __dput_to_list
-ffffffff81301350 t dget_parent
-ffffffff81301400 t d_find_any_alias
-ffffffff81301450 t d_find_alias
-ffffffff81301540 t d_find_alias_rcu
-ffffffff813015e0 t d_prune_aliases
-ffffffff813016d0 t lock_parent
-ffffffff81301710 t __dentry_kill
-ffffffff81301910 t shrink_dentry_list
-ffffffff81301ad0 t shrink_lock_dentry
-ffffffff81301bd0 t prune_dcache_sb
-ffffffff81301c50 t dentry_lru_isolate
-ffffffff81301d50 t shrink_dcache_sb
-ffffffff81301de0 t dentry_lru_isolate_shrink
-ffffffff81301e70 t path_has_submounts
-ffffffff813020f0 t d_set_mounted
-ffffffff813021c0 t shrink_dcache_parent
-ffffffff81302740 t select_collect
-ffffffff81302880 t select_collect2
-ffffffff813029e0 t shrink_dcache_for_umount
-ffffffff81302a60 t do_one_tree
-ffffffff81302d50 t d_invalidate
-ffffffff81303020 t d_alloc
-ffffffff813030b0 t __d_alloc.llvm.7322257829810352664
-ffffffff81303270 t d_alloc_anon
-ffffffff81303290 t d_alloc_cursor
-ffffffff813032e0 t d_alloc_pseudo
-ffffffff81303300 t d_alloc_name
-ffffffff813033d0 t d_set_d_op
-ffffffff81303450 t d_set_fallthru
-ffffffff81303480 t d_instantiate
-ffffffff813034e0 t __d_instantiate
-ffffffff81303660 t d_instantiate_new
-ffffffff813036f0 t d_make_root
-ffffffff81303770 t d_instantiate_anon
-ffffffff81303790 t __d_instantiate_anon
-ffffffff81303a20 t d_obtain_alias
-ffffffff81303a40 t __d_obtain_alias.llvm.7322257829810352664
-ffffffff81303b00 t d_obtain_root
-ffffffff81303b20 t d_add_ci
-ffffffff81303ce0 t d_hash_and_lookup
-ffffffff81303d60 t d_alloc_parallel
-ffffffff813042c0 t d_splice_alias
-ffffffff81304470 t d_same_name
-ffffffff81304510 t __d_lookup_rcu
-ffffffff81304600 t __d_lookup_rcu_op_compare
-ffffffff813046e0 t d_lookup
-ffffffff81304740 t __d_lookup
-ffffffff81304880 t d_delete
-ffffffff81304900 t dentry_unlink_inode
-ffffffff81304a10 t d_rehash
-ffffffff81304a40 t __d_rehash.llvm.7322257829810352664
-ffffffff81304b20 t hlist_bl_unlock
-ffffffff81304b60 t __d_lookup_unhash_wake
-ffffffff81304bb0 t __d_lookup_unhash
-ffffffff81304cf0 t d_add
-ffffffff81304d30 t __d_add
-ffffffff81304f40 t d_exact_alias
-ffffffff813050b0 t d_move
-ffffffff81305100 t __d_move
-ffffffff813055f0 t d_exchange
-ffffffff81305680 t d_ancestor
-ffffffff813056c0 t __d_unalias
-ffffffff81305790 t is_subdir
-ffffffff81305820 t d_genocide
-ffffffff81305a20 t d_tmpfile
-ffffffff81305b10 t proc_nr_dentry
-ffffffff81305c60 t d_lru_add
-ffffffff81305cc0 t __lock_parent
-ffffffff81305d30 t __d_free_external
-ffffffff81305d70 t __d_free
-ffffffff81305d90 t get_nr_dirty_inodes
-ffffffff81305e60 t inode_init_always
-ffffffff81306050 t no_open
-ffffffff81306060 t free_inode_nonrcu
-ffffffff81306080 t __destroy_inode
-ffffffff81306220 t drop_nlink
-ffffffff81306260 t clear_nlink
-ffffffff81306290 t set_nlink
-ffffffff813062e0 t inc_nlink
-ffffffff81306320 t address_space_init_once
-ffffffff81306390 t inode_init_once
-ffffffff81306490 t __iget
-ffffffff813064b0 t ihold
-ffffffff813064e0 t inode_add_lru
-ffffffff81306560 t inode_sb_list_add
-ffffffff813065e0 t __insert_inode_hash
-ffffffff813066a0 t __remove_inode_hash
-ffffffff81306710 t dump_mapping
-ffffffff813068d0 t clear_inode
-ffffffff81306950 t evict_inodes
-ffffffff81306b60 t invalidate_inodes
-ffffffff81306da0 t prune_icache_sb
-ffffffff81306e60 t inode_lru_isolate
-ffffffff81307000 t get_next_ino
-ffffffff81307080 t new_inode_pseudo
-ffffffff813070d0 t alloc_inode
-ffffffff81307190 t new_inode
-ffffffff81307250 t unlock_new_inode
-ffffffff813072b0 t discard_new_inode
-ffffffff81307320 t iput
-ffffffff81307560 t lock_two_nondirectories
-ffffffff813075d0 t unlock_two_nondirectories
-ffffffff81307640 t inode_insert5
-ffffffff81307830 t find_inode
-ffffffff81307a10 t wait_on_inode
-ffffffff81307a60 t iget5_locked
-ffffffff81307af0 t ilookup5
-ffffffff81307c10 t destroy_inode
-ffffffff81307c90 t iget_locked
-ffffffff81307f30 t find_inode_fast
-ffffffff813080d0 t iunique
-ffffffff81308230 t igrab
-ffffffff81308280 t ilookup5_nowait
-ffffffff81308320 t ilookup
-ffffffff81308450 t find_inode_nowait
-ffffffff81308550 t find_inode_rcu
-ffffffff81308620 t find_inode_by_ino_rcu
-ffffffff813086d0 t insert_inode_locked
-ffffffff813088a0 t insert_inode_locked4
-ffffffff813088e0 t generic_delete_inode
-ffffffff813088f0 t bmap
-ffffffff81308930 t generic_update_time
-ffffffff813089e0 t inode_update_time
-ffffffff81308ab0 t atime_needs_update
-ffffffff81308b90 t current_time
-ffffffff81308cb0 t touch_atime
-ffffffff81308e70 t dentry_needs_remove_privs
-ffffffff81308ec0 t file_remove_privs
-ffffffff81308ee0 t __file_remove_privs.llvm.4407243794137727674
-ffffffff81309070 t file_update_time
-ffffffff81309120 t __file_update_time
-ffffffff81309250 t file_modified
-ffffffff81309270 t file_modified_flags.llvm.4407243794137727674
-ffffffff81309350 t kiocb_modified
-ffffffff81309370 t inode_needs_sync
-ffffffff813093c0 t init_once
-ffffffff813094c0 t init_once
-ffffffff813094e0 t init_once
-ffffffff81309550 t init_once
-ffffffff813095f0 t init_once
-ffffffff81309610 t init_once
-ffffffff81309640 t init_once
-ffffffff81309660 t init_special_inode
-ffffffff813096f0 t inode_init_owner
-ffffffff81309750 t inode_owner_or_capable
-ffffffff813097a0 t inode_dio_wait
-ffffffff81309890 t inode_set_flags
-ffffffff813098d0 t inode_nohighmem
-ffffffff813098f0 t timestamp_truncate
-ffffffff81309990 t in_group_or_capable
-ffffffff813099d0 t mode_strip_sgid
-ffffffff81309a40 t proc_nr_inodes
-ffffffff81309b50 t evict
-ffffffff81309d70 t i_callback
-ffffffff81309db0 t setattr_should_drop_sgid
-ffffffff81309df0 t setattr_should_drop_suidgid
-ffffffff81309e90 t setattr_prepare
-ffffffff8130a120 t inode_newsize_ok
-ffffffff8130a1a0 t setattr_copy
-ffffffff8130a250 t may_setattr
-ffffffff8130a2c0 t notify_change
-ffffffff8130a5e0 t fsnotify_change
-ffffffff8130a6a0 t make_bad_inode
-ffffffff8130a710 t is_bad_inode
-ffffffff8130a730 t iget_failed
-ffffffff8130a7b0 t bad_inode_lookup.llvm.6672885061779265810
-ffffffff8130a7d0 t bad_inode_get_link.llvm.6672885061779265810
-ffffffff8130a7f0 t bad_inode_permission.llvm.6672885061779265810
-ffffffff8130a800 t bad_inode_get_acl.llvm.6672885061779265810
-ffffffff8130a820 t bad_inode_readlink.llvm.6672885061779265810
-ffffffff8130a830 t bad_inode_create.llvm.6672885061779265810
-ffffffff8130a840 t bad_inode_link.llvm.6672885061779265810
-ffffffff8130a850 t bad_inode_unlink.llvm.6672885061779265810
-ffffffff8130a860 t bad_inode_symlink.llvm.6672885061779265810
-ffffffff8130a870 t bad_inode_mkdir.llvm.6672885061779265810
-ffffffff8130a880 t bad_inode_rmdir.llvm.6672885061779265810
-ffffffff8130a890 t bad_inode_mknod.llvm.6672885061779265810
-ffffffff8130a8a0 t bad_inode_rename2.llvm.6672885061779265810
-ffffffff8130a8b0 t bad_inode_setattr.llvm.6672885061779265810
-ffffffff8130a8c0 t bad_inode_getattr.llvm.6672885061779265810
-ffffffff8130a8d0 t bad_inode_listxattr.llvm.6672885061779265810
-ffffffff8130a8f0 t bad_inode_fiemap.llvm.6672885061779265810
-ffffffff8130a900 t bad_inode_update_time.llvm.6672885061779265810
-ffffffff8130a910 t bad_inode_atomic_open.llvm.6672885061779265810
-ffffffff8130a920 t bad_inode_tmpfile.llvm.6672885061779265810
-ffffffff8130a930 t bad_inode_set_acl.llvm.6672885061779265810
-ffffffff8130a940 t bad_file_open
-ffffffff8130a950 t dup_fd
-ffffffff8130acc0 t __free_fdtable
-ffffffff8130acf0 t alloc_fdtable
-ffffffff8130ae10 t put_files_struct
-ffffffff8130aef0 t exit_files
-ffffffff8130af40 t __get_unused_fd_flags
-ffffffff8130af60 t alloc_fd.llvm.3605266917910538585
-ffffffff8130b0d0 t get_unused_fd_flags
-ffffffff8130b100 t put_unused_fd
-ffffffff8130b170 t fd_install
-ffffffff8130b230 t rcu_read_unlock_sched
-ffffffff8130b260 t close_fd
-ffffffff8130b320 t __close_range
-ffffffff8130b560 t __close_fd_get_file
-ffffffff8130b5e0 t close_fd_get_file
-ffffffff8130b690 t do_close_on_exec
-ffffffff8130b7b0 t fget
-ffffffff8130b7e0 t fget_raw
-ffffffff8130b810 t fget_task
-ffffffff8130b870 t __fget_files
-ffffffff8130b920 t task_lookup_fd_rcu
-ffffffff8130b990 t task_lookup_next_fd_rcu
-ffffffff8130ba30 t __fdget
-ffffffff8130bab0 t __fdget_raw
-ffffffff8130bb20 t __fdget_pos
-ffffffff8130bbd0 t __f_unlock_pos
-ffffffff8130bbf0 t set_close_on_exec
-ffffffff8130bc60 t get_close_on_exec
-ffffffff8130bca0 t replace_fd
-ffffffff8130bd50 t expand_files
-ffffffff8130c010 t do_dup2
-ffffffff8130c0d0 t __receive_fd
-ffffffff8130c1c0 t receive_fd_replace
-ffffffff8130c290 t receive_fd
-ffffffff8130c300 t __x64_sys_dup3
-ffffffff8130c320 t __x64_sys_dup2
-ffffffff8130c3b0 t __x64_sys_dup
-ffffffff8130c420 t f_dupfd
-ffffffff8130c480 t iterate_fd
-ffffffff8130c530 t free_fdtable_rcu
-ffffffff8130c570 t ksys_dup3
-ffffffff8130c660 t get_filesystem
-ffffffff8130c670 t put_filesystem
-ffffffff8130c680 t register_filesystem
-ffffffff8130c750 t unregister_filesystem
-ffffffff8130c7e0 t __x64_sys_sysfs
-ffffffff8130c990 t get_fs_type
-ffffffff8130ca60 t filesystems_proc_show
-ffffffff8130cae0 t mnt_release_group_id
-ffffffff8130cb10 t mnt_get_count
-ffffffff8130cb80 t __mnt_is_readonly
-ffffffff8130cba0 t __mnt_want_write
-ffffffff8130cc40 t mnt_want_write
-ffffffff8130cd30 t __mnt_want_write_file
-ffffffff8130cd70 t mnt_want_write_file
-ffffffff8130ce90 t __mnt_drop_write
-ffffffff8130ced0 t mnt_drop_write
-ffffffff8130cf70 t __mnt_drop_write_file
-ffffffff8130cfc0 t mnt_drop_write_file
-ffffffff8130d070 t sb_prepare_remount_readonly
-ffffffff8130d1c0 t __legitimize_mnt
-ffffffff8130d270 t __lookup_mnt
-ffffffff8130d2e0 t lookup_mnt
-ffffffff8130d3e0 t __is_local_mountpoint
-ffffffff8130d470 t mnt_set_mountpoint
-ffffffff8130d4d0 t mnt_change_mountpoint
-ffffffff8130d660 t vfs_create_mount
-ffffffff8130d790 t alloc_vfsmnt
-ffffffff8130d940 t fc_mount
-ffffffff8130d980 t vfs_kern_mount
-ffffffff8130da40 t vfs_submount
-ffffffff8130da80 t mntput
-ffffffff8130dac0 t mntput_no_expire
-ffffffff8130dcf0 t mntget
-ffffffff8130dd10 t path_is_mountpoint
-ffffffff8130dde0 t mnt_clone_internal
-ffffffff8130de20 t clone_mnt
-ffffffff8130e150 t m_start.llvm.17123673701578408723
-ffffffff8130e1f0 t m_stop.llvm.17123673701578408723
-ffffffff8130e2e0 t m_next.llvm.17123673701578408723
-ffffffff8130e360 t m_show.llvm.17123673701578408723
-ffffffff8130e380 t mnt_cursor_del
-ffffffff8130e410 t may_umount_tree
-ffffffff8130e540 t may_umount
-ffffffff8130e5b0 t __detach_mounts
-ffffffff8130e780 t umount_tree
-ffffffff8130eb30 t namespace_unlock
-ffffffff8130ec90 t may_mount
-ffffffff8130ecc0 t path_umount
-ffffffff8130f1c0 t __x64_sys_umount
-ffffffff8130f250 t __x64_sys_oldumount
-ffffffff8130f2c0 t from_mnt_ns
-ffffffff8130f2d0 t copy_tree
-ffffffff8130f6b0 t collect_mounts
-ffffffff8130f730 t dissolve_on_fput
-ffffffff8130f7e0 t free_mnt_ns
-ffffffff8130f830 t drop_collected_mounts
-ffffffff8130f890 t clone_private_mount
-ffffffff8130f980 t iterate_mounts
-ffffffff8130f9e0 t count_mounts
-ffffffff8130fa60 t __x64_sys_open_tree
-ffffffff8130fe50 t finish_automount
-ffffffff813101e0 t get_mountpoint
-ffffffff81310380 t mnt_set_expiry
-ffffffff813103f0 t mark_mounts_for_expiry
-ffffffff81310570 t path_mount
-ffffffff81310aa0 t do_loopback
-ffffffff81310c70 t do_change_type
-ffffffff81310dc0 t do_move_mount_old
-ffffffff81310e60 t do_new_mount
-ffffffff813111e0 t do_mount
-ffffffff81311290 t copy_mnt_ns
-ffffffff81311560 t alloc_mnt_ns
-ffffffff81311670 t lock_mnt_tree
-ffffffff81311730 t mount_subtree
-ffffffff81311930 t put_mnt_ns
-ffffffff813119e0 t __x64_sys_mount
-ffffffff81311bd0 t __x64_sys_fsmount
-ffffffff81311fd0 t __x64_sys_move_mount
-ffffffff81312360 t is_path_reachable
-ffffffff813123b0 t path_is_under
-ffffffff81312430 t __x64_sys_pivot_root
-ffffffff81312c50 t __x64_sys_mount_setattr
-ffffffff813133a0 t kern_mount
-ffffffff813133d0 t kern_unmount
-ffffffff81313430 t kern_unmount_array
-ffffffff81313560 t our_mnt
-ffffffff81313590 t current_chrooted
-ffffffff81313680 t mnt_may_suid
-ffffffff813136c0 t mntns_get.llvm.17123673701578408723
-ffffffff81313730 t mntns_put.llvm.17123673701578408723
-ffffffff81313740 t mntns_install.llvm.17123673701578408723
-ffffffff813138b0 t mntns_owner.llvm.17123673701578408723
-ffffffff813138c0 t __put_mountpoint
-ffffffff81313950 t unhash_mnt
-ffffffff81313a00 t __cleanup_mnt
-ffffffff81313a20 t cleanup_mnt
-ffffffff81313b90 t delayed_mntput
-ffffffff81313bc0 t delayed_free_vfsmnt
-ffffffff81313c00 t __do_loopback
-ffffffff81313ce0 t graft_tree
-ffffffff81313d40 t attach_recursive_mnt
-ffffffff813143d0 t invent_group_ids
-ffffffff81314510 t commit_tree
-ffffffff813146c0 t set_mount_attributes
-ffffffff81314710 t mnt_warn_timestamp_expiry
-ffffffff81314860 t lock_mount
-ffffffff81314960 t do_move_mount
-ffffffff81314be0 t tree_contains_unbindable
-ffffffff81314c40 t check_for_nsfs_mounts
-ffffffff81314d20 t mount_too_revealing
-ffffffff81314ed0 t seq_open
-ffffffff81314f50 t seq_read
-ffffffff81315050 t seq_read_iter
-ffffffff81315470 t traverse
-ffffffff81315650 t seq_lseek
-ffffffff81315710 t seq_release
-ffffffff81315740 t seq_escape_mem
-ffffffff813157b0 t seq_vprintf
-ffffffff81315800 t seq_printf
-ffffffff813158b0 t seq_bprintf
-ffffffff81315900 t mangle_path
-ffffffff813159a0 t seq_path
-ffffffff81315ae0 t seq_file_path
-ffffffff81315b00 t seq_path_root
-ffffffff81315c80 t seq_dentry
-ffffffff81315dc0 t single_start
-ffffffff81315de0 t single_open
-ffffffff81315ec0 t single_next
-ffffffff81315ed0 t single_stop
-ffffffff81315ee0 t single_open_size
-ffffffff81315f80 t single_release
-ffffffff81315fc0 t seq_release_private
-ffffffff81316010 t __seq_open_private
-ffffffff813160c0 t seq_open_private
-ffffffff813160e0 t seq_putc
-ffffffff81316110 t seq_puts
-ffffffff81316160 t seq_put_decimal_ull_width
-ffffffff81316250 t seq_put_decimal_ull
-ffffffff81316270 t seq_put_hex_ll
-ffffffff813163c0 t seq_put_decimal_ll
-ffffffff813164e0 t seq_write
-ffffffff81316530 t seq_pad
-ffffffff813165b0 t seq_hex_dump
-ffffffff81316730 t seq_list_start
-ffffffff81316760 t seq_list_start_head
-ffffffff813167a0 t seq_list_next
-ffffffff813167c0 t seq_list_start_rcu
-ffffffff813167f0 t seq_list_start_head_rcu
-ffffffff81316830 t seq_list_next_rcu
-ffffffff81316850 t seq_hlist_start
-ffffffff81316880 t seq_hlist_start_head
-ffffffff813168c0 t seq_hlist_next
-ffffffff813168e0 t seq_hlist_start_rcu
-ffffffff81316910 t seq_hlist_start_head_rcu
-ffffffff81316950 t seq_hlist_next_rcu
-ffffffff81316970 t seq_hlist_start_percpu
-ffffffff81316a00 t seq_hlist_next_percpu
-ffffffff81316a80 t xattr_supported_namespace
-ffffffff81316b20 t __vfs_setxattr
-ffffffff81316c70 t __vfs_setxattr_noperm
-ffffffff81316f40 t __vfs_setxattr_locked
-ffffffff81317030 t xattr_permission
-ffffffff81317190 t vfs_setxattr
-ffffffff81317300 t vfs_getxattr_alloc
-ffffffff813174f0 t __vfs_getxattr
-ffffffff81317620 t vfs_getxattr
-ffffffff81317870 t vfs_listxattr
-ffffffff813178f0 t __vfs_removexattr
-ffffffff81317a20 t __vfs_removexattr_locked
-ffffffff81317c90 t vfs_removexattr
-ffffffff81317d90 t setxattr_copy
-ffffffff81317e20 t do_setxattr
-ffffffff81317e50 t __x64_sys_setxattr
-ffffffff81317e80 t __x64_sys_lsetxattr
-ffffffff81317eb0 t __x64_sys_fsetxattr
-ffffffff813180a0 t do_getxattr
-ffffffff813181b0 t __x64_sys_getxattr
-ffffffff813181e0 t __x64_sys_lgetxattr
-ffffffff81318210 t __x64_sys_fgetxattr
-ffffffff81318380 t __x64_sys_listxattr
-ffffffff813183b0 t __x64_sys_llistxattr
-ffffffff813183e0 t __x64_sys_flistxattr
-ffffffff81318470 t __x64_sys_removexattr
-ffffffff81318490 t __x64_sys_lremovexattr
-ffffffff813184b0 t __x64_sys_fremovexattr
-ffffffff81318600 t generic_listxattr
-ffffffff81318740 t xattr_full_name
-ffffffff81318770 t simple_xattr_alloc
-ffffffff813187d0 t simple_xattr_get
-ffffffff81318870 t simple_xattr_set
-ffffffff81318a90 t simple_xattr_list
-ffffffff81318c50 t simple_xattr_list_add
-ffffffff81318cb0 t path_setxattr
-ffffffff81318fc0 t path_getxattr
-ffffffff81319230 t path_listxattr
-ffffffff81319310 t listxattr
-ffffffff81319460 t path_removexattr
-ffffffff81319640 t simple_getattr
-ffffffff81319690 t simple_statfs
-ffffffff813196c0 t always_delete_dentry
-ffffffff813196d0 t simple_lookup
-ffffffff81319730 t dcache_dir_open
-ffffffff81319760 t dcache_dir_close
-ffffffff81319780 t dcache_dir_lseek
-ffffffff81319910 t scan_positives
-ffffffff81319aa0 t dcache_readdir
-ffffffff81319d00 t generic_read_dir
-ffffffff81319d20 t noop_fsync
-ffffffff81319d30 t simple_recursive_removal
-ffffffff81319ff0 t init_pseudo
-ffffffff8131a040 t simple_open
-ffffffff8131a060 t simple_link
-ffffffff8131a0d0 t simple_empty
-ffffffff8131a170 t simple_unlink
-ffffffff8131a1d0 t simple_rmdir
-ffffffff8131a2c0 t simple_rename_exchange
-ffffffff8131a390 t simple_rename
-ffffffff8131a5e0 t simple_setattr
-ffffffff8131a640 t simple_write_begin
-ffffffff8131a790 t simple_read_folio.llvm.1815341700166249911
-ffffffff8131a840 t simple_write_end.llvm.1815341700166249911
-ffffffff8131a980 t simple_fill_super
-ffffffff8131ab50 t simple_pin_fs
-ffffffff8131ac00 t simple_release_fs
-ffffffff8131ac50 t simple_read_from_buffer
-ffffffff8131acf0 t simple_write_to_buffer
-ffffffff8131ad90 t memory_read_from_buffer
-ffffffff8131adf0 t simple_transaction_set
-ffffffff8131ae20 t simple_transaction_get
-ffffffff8131aef0 t simple_transaction_read
-ffffffff8131afa0 t simple_transaction_release
-ffffffff8131afc0 t simple_attr_open
-ffffffff8131b060 t simple_attr_release
-ffffffff8131b080 t simple_attr_read
-ffffffff8131b210 t simple_attr_write
-ffffffff8131b230 t simple_attr_write_xsigned.llvm.1815341700166249911
-ffffffff8131b350 t simple_attr_write_signed
-ffffffff8131b370 t generic_fh_to_dentry
-ffffffff8131b3c0 t generic_fh_to_parent
-ffffffff8131b410 t __generic_file_fsync
-ffffffff8131b4b0 t generic_file_fsync
-ffffffff8131b4e0 t generic_check_addressable
-ffffffff8131b530 t noop_direct_IO
-ffffffff8131b550 t kfree_link
-ffffffff8131b560 t alloc_anon_inode
-ffffffff8131b600 t simple_nosetlease
-ffffffff8131b610 t simple_get_link
-ffffffff8131b630 t make_empty_dir_inode
-ffffffff8131b690 t is_empty_dir_inode
-ffffffff8131b6d0 t generic_set_encrypted_ci_d_ops
-ffffffff8131b700 t inode_maybe_inc_iversion
-ffffffff8131b760 t pseudo_fs_free
-ffffffff8131b780 t pseudo_fs_get_tree
-ffffffff8131b7a0 t pseudo_fs_fill_super
-ffffffff8131b880 t empty_dir_lookup
-ffffffff8131b8a0 t empty_dir_setattr
-ffffffff8131b8b0 t empty_dir_getattr
-ffffffff8131b8e0 t empty_dir_listxattr
-ffffffff8131b900 t empty_dir_llseek
-ffffffff8131b920 t empty_dir_readdir
-ffffffff8131b9f0 t generic_ci_d_hash
-ffffffff8131ba50 t generic_ci_d_compare
-ffffffff8131bb80 t __traceiter_writeback_dirty_folio
-ffffffff8131bbd0 t __traceiter_folio_wait_writeback
-ffffffff8131bc20 t __traceiter_writeback_mark_inode_dirty
-ffffffff8131bc70 t __traceiter_writeback_dirty_inode_start
-ffffffff8131bcc0 t __traceiter_writeback_dirty_inode
-ffffffff8131bd10 t __traceiter_inode_foreign_history
-ffffffff8131bd70 t __traceiter_inode_switch_wbs
-ffffffff8131bdd0 t __traceiter_track_foreign_dirty
-ffffffff8131be20 t __traceiter_flush_foreign
-ffffffff8131be80 t __traceiter_writeback_write_inode_start
-ffffffff8131bed0 t __traceiter_writeback_write_inode
-ffffffff8131bf20 t __traceiter_writeback_queue
-ffffffff8131bf70 t __traceiter_writeback_exec
-ffffffff8131bfc0 t __traceiter_writeback_start
-ffffffff8131c010 t __traceiter_writeback_written
-ffffffff8131c060 t __traceiter_writeback_wait
-ffffffff8131c0b0 t __traceiter_writeback_pages_written
-ffffffff8131c100 t __traceiter_writeback_wake_background
-ffffffff8131c150 t __traceiter_writeback_bdi_register
-ffffffff8131c1a0 t __traceiter_wbc_writepage
-ffffffff8131c1f0 t __traceiter_writeback_queue_io
-ffffffff8131c260 t __traceiter_global_dirty_state
-ffffffff8131c2b0 t __traceiter_bdi_dirty_ratelimit
-ffffffff8131c310 t __traceiter_balance_dirty_pages
-ffffffff8131c3a0 t __traceiter_writeback_sb_inodes_requeue
-ffffffff8131c3f0 t __traceiter_writeback_single_inode_start
-ffffffff8131c450 t __traceiter_writeback_single_inode
-ffffffff8131c4b0 t __traceiter_writeback_lazytime
-ffffffff8131c500 t __traceiter_writeback_lazytime_iput
-ffffffff8131c550 t __traceiter_writeback_dirty_inode_enqueue
-ffffffff8131c5a0 t __traceiter_sb_mark_inode_writeback
-ffffffff8131c5f0 t __traceiter_sb_clear_inode_writeback
-ffffffff8131c640 t trace_event_raw_event_writeback_folio_template
-ffffffff8131c770 t perf_trace_writeback_folio_template
-ffffffff8131c8e0 t trace_event_raw_event_writeback_dirty_inode_template
-ffffffff8131c9f0 t perf_trace_writeback_dirty_inode_template
-ffffffff8131cb40 t trace_event_raw_event_inode_foreign_history
-ffffffff8131cc70 t perf_trace_inode_foreign_history
-ffffffff8131cde0 t trace_event_raw_event_inode_switch_wbs
-ffffffff8131cf10 t perf_trace_inode_switch_wbs
-ffffffff8131d080 t trace_event_raw_event_track_foreign_dirty
-ffffffff8131d1f0 t perf_trace_track_foreign_dirty
-ffffffff8131d3a0 t trace_event_raw_event_flush_foreign
-ffffffff8131d4c0 t perf_trace_flush_foreign
-ffffffff8131d620 t trace_event_raw_event_writeback_write_inode_template
-ffffffff8131d750 t perf_trace_writeback_write_inode_template
-ffffffff8131d8c0 t trace_event_raw_event_writeback_work_class
-ffffffff8131da20 t perf_trace_writeback_work_class
-ffffffff8131dbc0 t trace_event_raw_event_writeback_pages_written
-ffffffff8131dc80 t perf_trace_writeback_pages_written
-ffffffff8131dd70 t trace_event_raw_event_writeback_class
-ffffffff8131de70 t perf_trace_writeback_class
-ffffffff8131dfb0 t trace_event_raw_event_writeback_bdi_register
-ffffffff8131e080 t perf_trace_writeback_bdi_register
-ffffffff8131e1a0 t trace_event_raw_event_wbc_class
-ffffffff8131e310 t perf_trace_wbc_class
-ffffffff8131e4c0 t trace_event_raw_event_writeback_queue_io
-ffffffff8131e620 t perf_trace_writeback_queue_io
-ffffffff8131e7b0 t trace_event_raw_event_global_dirty_state
-ffffffff8131e8d0 t perf_trace_global_dirty_state
-ffffffff8131ea30 t trace_event_raw_event_bdi_dirty_ratelimit
-ffffffff8131eb90 t perf_trace_bdi_dirty_ratelimit
-ffffffff8131ed30 t trace_event_raw_event_balance_dirty_pages
-ffffffff8131ef80 t perf_trace_balance_dirty_pages
-ffffffff8131f210 t trace_event_raw_event_writeback_sb_inodes_requeue
-ffffffff8131f340 t perf_trace_writeback_sb_inodes_requeue
-ffffffff8131f4b0 t trace_event_raw_event_writeback_single_inode_template
-ffffffff8131f620 t perf_trace_writeback_single_inode_template
-ffffffff8131f7c0 t trace_event_raw_event_writeback_inode_template
-ffffffff8131f8a0 t perf_trace_writeback_inode_template
-ffffffff8131f9c0 t wb_wait_for_completion
-ffffffff8131fa70 t __inode_attach_wb
-ffffffff8131fbd0 t wb_put
-ffffffff8131fc40 t cleanup_offline_cgwb
-ffffffff8131feb0 t inode_switch_wbs_work_fn
-ffffffff81320640 t wbc_attach_and_unlock_inode
-ffffffff81320750 t inode_switch_wbs
-ffffffff813209c0 t wbc_detach_inode
-ffffffff81320bd0 t wbc_account_cgroup_owner
-ffffffff81320c50 t cgroup_writeback_by_id
-ffffffff81320e50 t wb_queue_work
-ffffffff81320f90 t cgroup_writeback_umount
-ffffffff81320fc0 t wb_start_background_writeback
-ffffffff81321060 t inode_io_list_del
-ffffffff81321150 t sb_mark_inode_writeback
-ffffffff81321240 t sb_clear_inode_writeback
-ffffffff81321310 t inode_wait_for_writeback
-ffffffff81321410 t wb_workfn
-ffffffff81321930 t trace_writeback_pages_written
-ffffffff81321990 t writeback_inodes_wb
-ffffffff81321aa0 t wakeup_flusher_threads_bdi
-ffffffff81321ad0 t __wakeup_flusher_threads_bdi.llvm.18409803391557086493
-ffffffff81321ba0 t wakeup_flusher_threads
-ffffffff81321c20 t dirtytime_interval_handler
-ffffffff81321c60 t __mark_inode_dirty
-ffffffff81321fc0 t locked_inode_to_wb_and_lock_list
-ffffffff813220b0 t inode_io_list_move_locked
-ffffffff813221d0 t writeback_inodes_sb_nr
-ffffffff813221f0 t __writeback_inodes_sb_nr
-ffffffff81322340 t writeback_inodes_sb
-ffffffff81322390 t try_to_writeback_inodes_sb
-ffffffff81322400 t sync_inodes_sb
-ffffffff81322720 t bdi_split_work_to_wbs
-ffffffff81322b80 t write_inode_now
-ffffffff81322c60 t writeback_single_inode
-ffffffff81322ef0 t sync_inode_metadata
-ffffffff81322fa0 t trace_raw_output_writeback_folio_template
-ffffffff81323000 t trace_raw_output_writeback_dirty_inode_template
-ffffffff813230c0 t trace_raw_output_inode_foreign_history
-ffffffff81323120 t trace_raw_output_inode_switch_wbs
-ffffffff81323180 t trace_raw_output_track_foreign_dirty
-ffffffff813231f0 t trace_raw_output_flush_foreign
-ffffffff81323250 t trace_raw_output_writeback_write_inode_template
-ffffffff813232b0 t trace_raw_output_writeback_work_class
-ffffffff81323390 t trace_raw_output_writeback_pages_written
-ffffffff813233e0 t trace_raw_output_writeback_class
-ffffffff81323440 t trace_raw_output_writeback_bdi_register
-ffffffff813234a0 t trace_raw_output_wbc_class
-ffffffff81323530 t trace_raw_output_writeback_queue_io
-ffffffff813235d0 t trace_raw_output_global_dirty_state
-ffffffff81323640 t trace_raw_output_bdi_dirty_ratelimit
-ffffffff813236b0 t trace_raw_output_balance_dirty_pages
-ffffffff81323750 t trace_raw_output_writeback_sb_inodes_requeue
-ffffffff81323800 t trace_raw_output_writeback_single_inode_template
-ffffffff813238c0 t trace_raw_output_writeback_inode_template
-ffffffff81323980 t inode_cgwb_move_to_attached
-ffffffff81323ac0 t wb_writeback
-ffffffff81323e50 t queue_io
-ffffffff81323f70 t queue_io
-ffffffff81323ff0 t writeback_sb_inodes
-ffffffff813246e0 t __writeback_inodes_wb
-ffffffff81324820 t move_expired_inodes
-ffffffff81324a40 t __writeback_single_inode
-ffffffff81324d80 t wakeup_dirtytime_writeback
-ffffffff81324e70 t get_dominating_id
-ffffffff81324f20 t change_mnt_propagation
-ffffffff813251c0 t propagate_mnt
-ffffffff81325470 t propagate_one
-ffffffff81325620 t propagate_mount_busy
-ffffffff81325800 t propagate_mount_unlock
-ffffffff81325980 t propagate_umount
-ffffffff81325f30 t umount_one
-ffffffff81326010 t page_cache_pipe_buf_confirm.llvm.11086318373024901364
-ffffffff813260d0 t page_cache_pipe_buf_release.llvm.11086318373024901364
-ffffffff81326110 t page_cache_pipe_buf_try_steal.llvm.11086318373024901364
-ffffffff813261c0 t splice_to_pipe
-ffffffff813262f0 t add_to_pipe
-ffffffff813263b0 t splice_grow_spd
-ffffffff81326430 t splice_shrink_spd
-ffffffff81326460 t generic_file_splice_read
-ffffffff813265e0 t __splice_from_pipe
-ffffffff813267e0 t splice_from_pipe_next
-ffffffff81326960 t splice_from_pipe
-ffffffff81326a00 t iter_file_splice_write
-ffffffff81326e30 t generic_splice_sendpage
-ffffffff81326ed0 t pipe_to_sendpage
-ffffffff81326f70 t splice_direct_to_actor
-ffffffff81327240 t do_splice_direct
-ffffffff81327310 t direct_splice_actor
-ffffffff81327350 t splice_file_to_pipe
-ffffffff81327510 t do_splice
-ffffffff81327bf0 t __x64_sys_vmsplice
-ffffffff813284b0 t __x64_sys_splice
-ffffffff813286d0 t do_tee
-ffffffff813289c0 t opipe_prep
-ffffffff81328a70 t __x64_sys_tee
-ffffffff81328b30 t user_page_pipe_buf_try_steal
-ffffffff81328b60 t pipe_to_user
-ffffffff81328b90 t sync_filesystem
-ffffffff81328c20 t ksys_sync
-ffffffff81328cc0 t sync_inodes_one_sb
-ffffffff81328ce0 t sync_fs_one_sb
-ffffffff81328d10 t __x64_sys_sync
-ffffffff81328d30 t emergency_sync
-ffffffff81328d90 t do_sync_work
-ffffffff81328e40 t __x64_sys_syncfs
-ffffffff81328ee0 t vfs_fsync_range
-ffffffff81328f60 t vfs_fsync
-ffffffff81328fd0 t __x64_sys_fsync
-ffffffff81329090 t __x64_sys_fdatasync
-ffffffff81329120 t sync_file_range
-ffffffff81329220 t ksys_sync_file_range
-ffffffff81329290 t __x64_sys_sync_file_range
-ffffffff81329310 t __x64_sys_sync_file_range2
-ffffffff81329390 t vfs_utimes
-ffffffff813295f0 t do_utimes
-ffffffff81329750 t __x64_sys_utimensat
-ffffffff81329850 t __x64_sys_futimesat
-ffffffff81329970 t __x64_sys_utimes
-ffffffff81329a90 t __x64_sys_utime
-ffffffff81329b50 t __d_path
-ffffffff81329be0 t prepend_path
-ffffffff81329f00 t d_absolute_path
-ffffffff81329fa0 t d_path
-ffffffff8132a0f0 t prepend
-ffffffff8132a190 t dynamic_dname
-ffffffff8132a2c0 t simple_dname
-ffffffff8132a3d0 t dentry_path_raw
-ffffffff8132a440 t __dentry_path
-ffffffff8132a5d0 t dentry_path
-ffffffff8132a670 t __x64_sys_getcwd
-ffffffff8132a8b0 t fsstack_copy_inode_size
-ffffffff8132a8e0 t fsstack_copy_attr_all
-ffffffff8132a960 t set_fs_root
-ffffffff8132aa00 t set_fs_pwd
-ffffffff8132aaa0 t chroot_fs_refs
-ffffffff8132ac70 t free_fs_struct
-ffffffff8132acb0 t exit_fs
-ffffffff8132ad40 t copy_fs_struct
-ffffffff8132ade0 t unshare_fs_struct
-ffffffff8132af10 t current_umask
-ffffffff8132af30 t vfs_get_fsid
-ffffffff8132b040 t vfs_statfs
-ffffffff8132b170 t user_statfs
-ffffffff8132b410 t fd_statfs
-ffffffff8132b580 t __x64_sys_statfs
-ffffffff8132b6c0 t __x64_sys_statfs64
-ffffffff8132b810 t __x64_sys_fstatfs
-ffffffff8132b950 t __x64_sys_fstatfs64
-ffffffff8132baa0 t __x64_sys_ustat
-ffffffff8132bd10 t pin_remove
-ffffffff8132bdc0 t pin_insert
-ffffffff8132be40 t pin_kill
-ffffffff8132bf30 t __add_wait_queue
-ffffffff8132bfa0 t mnt_pin_kill
-ffffffff8132bfe0 t group_pin_kill
-ffffffff8132c020 t ns_prune_dentry.llvm.3947638570192195277
-ffffffff8132c050 t ns_dname.llvm.3947638570192195277
-ffffffff8132c080 t ns_get_path_cb
-ffffffff8132c0e0 t __ns_get_path
-ffffffff8132c230 t ns_get_path
-ffffffff8132c290 t open_related_ns
-ffffffff8132c3a0 t ns_get_name
-ffffffff8132c420 t proc_ns_file
-ffffffff8132c440 t proc_ns_fget
-ffffffff8132c480 t ns_match
-ffffffff8132c4b0 t ns_ioctl.llvm.3947638570192195277
-ffffffff8132c570 t nsfs_init_fs_context
-ffffffff8132c5b0 t nsfs_evict
-ffffffff8132c5e0 t nsfs_show_path
-ffffffff8132c610 t fs_ftype_to_dtype
-ffffffff8132c640 t fs_umode_to_ftype
-ffffffff8132c660 t fs_umode_to_dtype
-ffffffff8132c680 t vfs_parse_fs_param_source
-ffffffff8132c710 t logfc
-ffffffff8132c8e0 t vfs_parse_fs_param
-ffffffff8132ca30 t vfs_parse_fs_string
-ffffffff8132cad0 t generic_parse_monolithic
-ffffffff8132cc40 t fs_context_for_mount
-ffffffff8132cc60 t alloc_fs_context.llvm.8923285279037467809
-ffffffff8132cdb0 t fs_context_for_reconfigure
-ffffffff8132cde0 t fs_context_for_submount
-ffffffff8132ce00 t fc_drop_locked
-ffffffff8132ce40 t vfs_dup_fs_context
-ffffffff8132cf50 t put_fs_context
-ffffffff8132d0f0 t legacy_fs_context_free.llvm.8923285279037467809
-ffffffff8132d120 t legacy_fs_context_dup.llvm.8923285279037467809
-ffffffff8132d1a0 t legacy_parse_param.llvm.8923285279037467809
-ffffffff8132d3f0 t legacy_parse_monolithic.llvm.8923285279037467809
-ffffffff8132d450 t legacy_get_tree.llvm.8923285279037467809
-ffffffff8132d4a0 t legacy_reconfigure.llvm.8923285279037467809
-ffffffff8132d4f0 t parse_monolithic_mount_data
-ffffffff8132d520 t vfs_clean_context
-ffffffff8132d5b0 t finish_clean_context
-ffffffff8132d650 t legacy_init_fs_context
-ffffffff8132d690 t lookup_constant
-ffffffff8132d6f0 t __fs_parse
-ffffffff8132d890 t fs_lookup_param
-ffffffff8132d9c0 t fs_param_is_bool
-ffffffff8132dae0 t fs_param_is_u32
-ffffffff8132db50 t fs_param_is_s32
-ffffffff8132dbc0 t fs_param_is_u64
-ffffffff8132dc30 t fs_param_is_enum
-ffffffff8132dcd0 t fs_param_is_string
-ffffffff8132dd20 t fs_param_is_blob
-ffffffff8132dd60 t fs_param_is_fd
-ffffffff8132ddf0 t fs_param_is_blockdev
-ffffffff8132de00 t fs_param_is_path
-ffffffff8132de10 t fscontext_read.llvm.12489483395501767869
-ffffffff8132df40 t fscontext_release.llvm.12489483395501767869
-ffffffff8132df70 t __x64_sys_fsopen
-ffffffff8132e0a0 t __x64_sys_fspick
-ffffffff8132e230 t __x64_sys_fsconfig
-ffffffff8132e760 t kernel_read_file
-ffffffff8132e9e0 t kernel_read_file_from_path
-ffffffff8132ea60 t kernel_read_file_from_path_initns
-ffffffff8132eb80 t kernel_read_file_from_fd
-ffffffff8132ec10 t __generic_remap_file_range_prep
-ffffffff8132ef50 t vfs_dedupe_file_range_compare
-ffffffff8132f210 t generic_remap_check_len
-ffffffff8132f280 t generic_remap_file_range_prep
-ffffffff8132f2a0 t do_clone_file_range
-ffffffff8132f3c0 t fsnotify_access
-ffffffff8132f440 t vfs_clone_file_range
-ffffffff8132f590 t vfs_dedupe_file_range_one
-ffffffff8132f730 t vfs_dedupe_file_range
-ffffffff8132f960 t touch_buffer
-ffffffff8132f9c0 t __lock_buffer
-ffffffff8132fa00 t unlock_buffer
-ffffffff8132fa20 t buffer_check_dirty_writeback
-ffffffff8132fa80 t __wait_on_buffer
-ffffffff8132fac0 t end_buffer_read_sync
-ffffffff8132fb00 t end_buffer_write_sync
-ffffffff8132fb80 t mark_buffer_write_io_error
-ffffffff8132fc50 t end_buffer_async_write
-ffffffff8132fd80 t mark_buffer_async_write
-ffffffff8132fda0 t inode_has_buffers
-ffffffff8132fdd0 t emergency_thaw_bdev
-ffffffff8132fe20 t sync_mapping_buffers
-ffffffff81330240 t write_boundary_block
-ffffffff81330280 t __find_get_block
-ffffffff81330720 t write_dirty_buffer
-ffffffff813307b0 t mark_buffer_dirty_inode
-ffffffff813308a0 t mark_buffer_dirty
-ffffffff813309b0 t block_dirty_folio
-ffffffff81330a60 t invalidate_inode_buffers
-ffffffff81330b00 t remove_inode_buffers
-ffffffff81330bc0 t alloc_page_buffers
-ffffffff81330d40 t alloc_buffer_head
-ffffffff81330dc0 t set_bh_page
-ffffffff81330e00 t free_buffer_head
-ffffffff81330e70 t __brelse
-ffffffff81330ea0 t __bforget
-ffffffff81330f30 t __getblk_gfp
-ffffffff81331210 t __breadahead
-ffffffff813312a0 t __bread_gfp
-ffffffff81331380 t has_bh_in_lru
-ffffffff81331460 t invalidate_bh_lrus
-ffffffff81331490 t invalidate_bh_lru.llvm.2069727641846151508
-ffffffff81331540 t invalidate_bh_lrus_cpu
-ffffffff813315d0 t block_invalidate_folio
-ffffffff81331740 t create_empty_buffers
-ffffffff813318a0 t clean_bdev_aliases
-ffffffff81331b40 t __block_write_full_page
-ffffffff81331fa0 t submit_bh_wbc.llvm.2069727641846151508
-ffffffff813320e0 t page_zero_new_buffers
-ffffffff81332270 t __block_write_begin_int
-ffffffff81332960 t __block_write_begin
-ffffffff81332990 t block_write_begin
-ffffffff81332a20 t block_write_end
-ffffffff81332aa0 t __block_commit_write.llvm.2069727641846151508
-ffffffff81332b80 t generic_write_end
-ffffffff81332ca0 t block_is_partially_uptodate
-ffffffff81332d50 t block_read_full_folio
-ffffffff81333110 t end_buffer_async_read
-ffffffff81333270 t submit_bh
-ffffffff81333290 t generic_cont_expand_simple
-ffffffff81333340 t cont_write_begin
-ffffffff81333730 t block_commit_write
-ffffffff81333750 t block_page_mkwrite
-ffffffff81333860 t block_truncate_page
-ffffffff81333af0 t block_write_full_page
-ffffffff81333be0 t generic_block_bmap
-ffffffff81333cb0 t __sync_dirty_buffer
-ffffffff81333db0 t sync_dirty_buffer
-ffffffff81333dd0 t try_to_free_buffers
-ffffffff81333eb0 t drop_buffers
-ffffffff81333fa0 t recalc_bh_state
-ffffffff81334050 t bh_uptodate_or_lock
-ffffffff813340c0 t __bh_read
-ffffffff81334150 t __bh_read_batch
-ffffffff81334220 t buffer_exit_cpu_dead
-ffffffff813342d0 t init_page_buffers
-ffffffff813343b0 t end_buffer_async_read_io
-ffffffff813343c0 t end_bio_bh_io_sync
-ffffffff81334400 t sb_init_dio_done_wq
-ffffffff81334460 t __blockdev_direct_IO
-ffffffff81335680 t dio_zero_block
-ffffffff81335740 t dio_send_cur_page
-ffffffff81335990 t dio_complete
-ffffffff81335b60 t submit_page_section
-ffffffff81335da0 t dio_new_bio
-ffffffff81335f60 t dio_bio_end_aio
-ffffffff813360d0 t dio_bio_end_io
-ffffffff81336150 t dio_aio_complete_work
-ffffffff81336170 t mpage_readahead
-ffffffff813362c0 t do_mpage_readpage
-ffffffff81336a90 t mpage_read_folio
-ffffffff81336b40 t clean_page_buffers
-ffffffff81336bc0 t mpage_writepages
-ffffffff81336c90 t __mpage_writepage
-ffffffff813376c0 t mpage_end_io
-ffffffff813377b0 t mpage_end_io
-ffffffff81337850 t mounts_poll
-ffffffff813378b0 t mounts_open
-ffffffff813378d0 t mounts_release
-ffffffff81337920 t mountinfo_open
-ffffffff81337940 t mountstats_open
-ffffffff81337960 t mounts_open_common
-ffffffff81337be0 t show_vfsmnt
-ffffffff81337dc0 t show_sb_opts
-ffffffff81337e60 t show_mnt_opts
-ffffffff81337f80 t show_mountinfo
-ffffffff81338270 t show_vfsstat
-ffffffff81338470 t __fsnotify_inode_delete
-ffffffff81338490 t __fsnotify_vfsmount_delete
-ffffffff813384b0 t fsnotify_sb_delete
-ffffffff813386d0 t __fsnotify_update_child_dentry_flags
-ffffffff813387f0 t __fsnotify_parent
-ffffffff81338ac0 t fsnotify
-ffffffff813392b0 t fsnotify_handle_inode_event
-ffffffff81339370 t fsnotify_get_cookie
-ffffffff81339390 t fsnotify_destroy_event
-ffffffff81339400 t fsnotify_insert_event
-ffffffff81339540 t fsnotify_remove_queued_event
-ffffffff81339590 t fsnotify_peek_first_event
-ffffffff813395c0 t fsnotify_remove_first_event
-ffffffff81339630 t fsnotify_flush_notify
-ffffffff81339740 t fsnotify_group_stop_queueing
-ffffffff81339770 t fsnotify_destroy_group
-ffffffff81339890 t fsnotify_put_group
-ffffffff81339940 t fsnotify_get_group
-ffffffff81339980 t fsnotify_alloc_group
-ffffffff81339a60 t fsnotify_fasync
-ffffffff81339a90 t fsnotify_get_mark
-ffffffff81339ae0 t fsnotify_conn_mask
-ffffffff81339b10 t fsnotify_recalc_mask
-ffffffff81339b60 t __fsnotify_recalc_mask
-ffffffff81339ca0 t fsnotify_put_mark
-ffffffff81339ec0 t fsnotify_detach_connector_from_object
-ffffffff81339fc0 t fsnotify_prepare_user_wait
-ffffffff8133a120 t fsnotify_finish_user_wait
-ffffffff8133a260 t fsnotify_detach_mark
-ffffffff8133a310 t fsnotify_free_mark
-ffffffff8133a380 t fsnotify_destroy_mark
-ffffffff8133a450 t fsnotify_compare_groups
-ffffffff8133a4a0 t fsnotify_add_mark_locked
-ffffffff8133aa10 t fsnotify_add_mark
-ffffffff8133aac0 t fsnotify_find_mark
-ffffffff8133abd0 t fsnotify_clear_marks_by_group
-ffffffff8133ae60 t fsnotify_destroy_marks
-ffffffff8133b010 t fsnotify_init_mark
-ffffffff8133b090 t fsnotify_wait_marks_destroyed
-ffffffff8133b0b0 t fsnotify_connector_destroy_workfn
-ffffffff8133b130 t fsnotify_mark_destroy_workfn
-ffffffff8133b230 t inotify_show_fdinfo
-ffffffff8133b480 t inotify_handle_inode_event
-ffffffff8133b610 t inotify_merge
-ffffffff8133b660 t inotify_free_group_priv.llvm.12833585061956242586
-ffffffff8133b6b0 t inotify_freeing_mark.llvm.12833585061956242586
-ffffffff8133b6c0 t inotify_free_event.llvm.12833585061956242586
-ffffffff8133b6e0 t inotify_free_mark.llvm.12833585061956242586
-ffffffff8133b700 t idr_callback
-ffffffff8133b760 t inotify_ignored_and_remove_idr
-ffffffff8133b7b0 t inotify_remove_from_idr
-ffffffff8133b950 t __x64_sys_inotify_init1
-ffffffff8133b970 t __x64_sys_inotify_init
-ffffffff8133b990 t __x64_sys_inotify_add_watch
-ffffffff8133be80 t __x64_sys_inotify_rm_watch
-ffffffff8133bf70 t do_inotify_init
-ffffffff8133c0d0 t inotify_read
-ffffffff8133c490 t inotify_poll
-ffffffff8133c500 t inotify_ioctl
-ffffffff8133c5a0 t inotify_release
-ffffffff8133c5c0 t eventpoll_release_file
-ffffffff8133c650 t ep_remove
-ffffffff8133c810 t __x64_sys_epoll_create1
-ffffffff8133c830 t __x64_sys_epoll_create
-ffffffff8133c860 t do_epoll_ctl
-ffffffff8133cc30 t ep_insert
-ffffffff8133d290 t ep_modify
-ffffffff8133d4e0 t __x64_sys_epoll_ctl
-ffffffff8133d580 t __x64_sys_epoll_wait
-ffffffff8133d670 t __x64_sys_epoll_pwait
-ffffffff8133d7e0 t __x64_sys_epoll_pwait2
-ffffffff8133d910 t epi_rcu_free
-ffffffff8133d930 t do_epoll_create
-ffffffff8133dab0 t ep_free
-ffffffff8133dbc0 t ep_eventpoll_poll
-ffffffff8133dbe0 t ep_eventpoll_release
-ffffffff8133dc00 t ep_show_fdinfo
-ffffffff8133dca0 t __ep_eventpoll_poll
-ffffffff8133de80 t ep_done_scan
-ffffffff8133dfa0 t ep_loop_check_proc
-ffffffff8133e090 t ep_ptable_queue_proc
-ffffffff8133e130 t reverse_path_check_proc
-ffffffff8133e1e0 t ep_poll_callback
-ffffffff8133e450 t ep_destroy_wakeup_source
-ffffffff8133e480 t do_epoll_wait
-ffffffff8133eb90 t ep_autoremove_wake_function
-ffffffff8133ebe0 t ep_busy_loop_end
-ffffffff8133ec40 t anon_inode_getfile
-ffffffff8133ece0 t __anon_inode_getfile.llvm.3920863803636489763
-ffffffff8133ee10 t anon_inode_getfile_secure
-ffffffff8133ee30 t anon_inode_getfd
-ffffffff8133ef00 t anon_inode_getfd_secure
-ffffffff8133ef80 t anon_inodefs_init_fs_context
-ffffffff8133efb0 t anon_inodefs_dname
-ffffffff8133efd0 t signalfd_cleanup
-ffffffff8133f000 t __x64_sys_signalfd4
-ffffffff8133f090 t __x64_sys_signalfd
-ffffffff8133f120 t do_signalfd4
-ffffffff8133f290 t signalfd_read
-ffffffff8133f790 t signalfd_poll
-ffffffff8133f830 t signalfd_release
-ffffffff8133f850 t signalfd_show_fdinfo
-ffffffff8133f8b0 t timerfd_clock_was_set
-ffffffff8133f950 t timerfd_resume
-ffffffff8133f980 t __x64_sys_timerfd_create
-ffffffff8133fac0 t __x64_sys_timerfd_settime
-ffffffff8133ffa0 t __x64_sys_timerfd_gettime
-ffffffff81340180 t timerfd_resume_work
-ffffffff81340190 t timerfd_alarmproc
-ffffffff813401f0 t timerfd_read
-ffffffff81340440 t timerfd_poll
-ffffffff813404b0 t timerfd_release
-ffffffff81340580 t timerfd_show
-ffffffff81340650 t timerfd_tmrproc
-ffffffff813406b0 t eventfd_signal_mask
-ffffffff81340770 t eventfd_signal
-ffffffff81340820 t eventfd_ctx_put
-ffffffff81340870 t eventfd_ctx_do_read
-ffffffff813408a0 t eventfd_ctx_remove_wait_queue
-ffffffff81340960 t eventfd_fget
-ffffffff813409a0 t eventfd_ctx_fdget
-ffffffff81340a30 t eventfd_ctx_fileget
-ffffffff81340a90 t __x64_sys_eventfd2
-ffffffff81340ab0 t __x64_sys_eventfd
-ffffffff81340ad0 t eventfd_write
-ffffffff81340d50 t eventfd_read
-ffffffff81340ff0 t eventfd_poll
-ffffffff81341050 t eventfd_release
-ffffffff813410c0 t eventfd_show_fdinfo
-ffffffff81341120 t do_eventfd
-ffffffff81341240 t handle_userfault
-ffffffff81341750 t userfaultfd_wake_function
-ffffffff813417d0 t dup_userfaultfd
-ffffffff81341980 t dup_userfaultfd_complete
-ffffffff81341ac0 t mremap_userfaultfd_prep
-ffffffff81341b40 t mremap_userfaultfd_complete
-ffffffff81341c30 t userfaultfd_event_wait_completion
-ffffffff81341fc0 t userfaultfd_remove
-ffffffff813420d0 t userfaultfd_unmap_prep
-ffffffff81342280 t userfaultfd_unmap_complete
-ffffffff813423e0 t __x64_sys_userfaultfd
-ffffffff81342420 t new_userfaultfd
-ffffffff81342510 t userfaultfd_read
-ffffffff81342c40 t userfaultfd_poll
-ffffffff81342cc0 t userfaultfd_ioctl
-ffffffff813442b0 t userfaultfd_release
-ffffffff81344630 t userfaultfd_show_fdinfo
-ffffffff813446d0 t init_once_userfaultfd_ctx
-ffffffff81344740 t userfaultfd_dev_ioctl
-ffffffff81344770 t kiocb_set_cancel_fn
-ffffffff81344820 t exit_aio
-ffffffff81344940 t kill_ioctx
-ffffffff81344a40 t __x64_sys_io_setup
-ffffffff81345360 t __x64_sys_io_destroy
-ffffffff81345460 t __x64_sys_io_submit
-ffffffff81345f50 t __x64_sys_io_cancel
-ffffffff81346070 t __x64_sys_io_getevents
-ffffffff81346140 t __x64_sys_io_pgetevents
-ffffffff813462c0 t aio_init_fs_context
-ffffffff813462f0 t free_ioctx_users
-ffffffff813463c0 t free_ioctx_reqs
-ffffffff81346420 t aio_free_ring
-ffffffff81346510 t free_ioctx
-ffffffff81346560 t aio_migrate_folio
-ffffffff813466c0 t aio_ring_mmap
-ffffffff813466e0 t aio_ring_mremap
-ffffffff81346780 t lookup_ioctx
-ffffffff81346840 t iocb_put
-ffffffff81346ab0 t refill_reqs_available
-ffffffff81346ba0 t aio_read
-ffffffff81346de0 t aio_write
-ffffffff813470b0 t aio_prep_rw
-ffffffff81347170 t aio_complete_rw
-ffffffff813472b0 t aio_fsync_work
-ffffffff81347310 t aio_poll_complete_work
-ffffffff813474b0 t aio_poll_queue_proc
-ffffffff81347500 t aio_poll_wake
-ffffffff81347720 t aio_poll_cancel
-ffffffff81347790 t aio_poll_put_work
-ffffffff813477b0 t do_io_getevents
-ffffffff81347a90 t aio_read_events
-ffffffff81347d40 t __traceiter_locks_get_lock_context
-ffffffff81347da0 t __traceiter_posix_lock_inode
-ffffffff81347e00 t __traceiter_fcntl_setlk
-ffffffff81347e60 t __traceiter_locks_remove_posix
-ffffffff81347ec0 t __traceiter_flock_lock_inode
-ffffffff81347f20 t __traceiter_break_lease_noblock
-ffffffff81347f70 t __traceiter_break_lease_block
-ffffffff81347fc0 t __traceiter_break_lease_unblock
-ffffffff81348010 t __traceiter_generic_delete_lease
-ffffffff81348060 t __traceiter_time_out_leases
-ffffffff813480b0 t __traceiter_generic_add_lease
-ffffffff81348100 t __traceiter_leases_conflict
-ffffffff81348170 t trace_event_raw_event_locks_get_lock_context
-ffffffff81348250 t perf_trace_locks_get_lock_context
-ffffffff81348370 t trace_event_raw_event_filelock_lock
-ffffffff813484c0 t perf_trace_filelock_lock
-ffffffff81348650 t trace_event_raw_event_filelock_lease
-ffffffff81348790 t perf_trace_filelock_lease
-ffffffff81348900 t trace_event_raw_event_generic_add_lease
-ffffffff81348a10 t perf_trace_generic_add_lease
-ffffffff81348b50 t trace_event_raw_event_leases_conflict
-ffffffff81348c40 t perf_trace_leases_conflict
-ffffffff81348d70 t locks_free_lock_context
-ffffffff81348da0 t locks_check_ctx_lists
-ffffffff81348e40 t locks_alloc_lock
-ffffffff81348ec0 t locks_release_private
-ffffffff81348f80 t locks_owner_has_blockers
-ffffffff81348fe0 t locks_free_lock
-ffffffff81349010 t locks_init_lock
-ffffffff81349070 t locks_copy_conflock
-ffffffff81349100 t locks_copy_lock
-ffffffff813491e0 t locks_delete_block
-ffffffff81349370 t posix_test_lock
-ffffffff81349510 t posix_lock_file
-ffffffff81349530 t posix_lock_inode.llvm.11096750054738523564
-ffffffff8134a2a0 t lease_modify
-ffffffff8134a3b0 t locks_wake_up_blocks
-ffffffff8134a490 t __break_lease
-ffffffff8134ad90 t lease_alloc
-ffffffff8134aea0 t time_out_leases
-ffffffff8134afa0 t leases_conflict
-ffffffff8134b060 t lease_get_mtime
-ffffffff8134b0f0 t fcntl_getlease
-ffffffff8134b2e0 t generic_setlease
-ffffffff8134ba20 t lease_register_notifier
-ffffffff8134ba40 t lease_unregister_notifier
-ffffffff8134ba60 t vfs_setlease
-ffffffff8134bad0 t fcntl_setlease
-ffffffff8134bc20 t locks_lock_inode_wait
-ffffffff8134be10 t __x64_sys_flock
-ffffffff8134c070 t vfs_test_lock
-ffffffff8134c0b0 t fcntl_getlk
-ffffffff8134c2e0 t posix_lock_to_flock
-ffffffff8134c3b0 t vfs_lock_file
-ffffffff8134c3f0 t fcntl_setlk
-ffffffff8134c750 t do_lock_file_wait
-ffffffff8134c8b0 t locks_remove_posix
-ffffffff8134caa0 t locks_remove_file
-ffffffff8134cf30 t vfs_cancel_lock
-ffffffff8134cf70 t vfs_inode_has_locks
-ffffffff8134cfd0 t show_fd_locks
-ffffffff8134d1b0 t trace_raw_output_locks_get_lock_context
-ffffffff8134d250 t trace_raw_output_filelock_lock
-ffffffff8134d350 t trace_raw_output_filelock_lease
-ffffffff8134d450 t trace_raw_output_generic_add_lease
-ffffffff8134d550 t trace_raw_output_leases_conflict
-ffffffff8134d650 t locks_dump_ctx_list
-ffffffff8134d6a0 t locks_get_lock_context
-ffffffff8134d7a0 t locks_insert_lock_ctx
-ffffffff8134d850 t locks_unlink_lock_ctx
-ffffffff8134d900 t lease_break_callback
-ffffffff8134d930 t lease_setup
-ffffffff8134d9a0 t check_conflicting_open
-ffffffff8134da20 t flock_lock_inode
-ffffffff8134e0d0 t lock_get_status
-ffffffff8134e390 t locks_start
-ffffffff8134e3e0 t locks_stop
-ffffffff8134e410 t locks_next
-ffffffff8134e440 t locks_show
-ffffffff8134e5c0 t __locks_insert_block.20
-ffffffff8134e790 t load_misc_binary
-ffffffff8134e9f0 t bm_init_fs_context
-ffffffff8134ea10 t bm_get_tree
-ffffffff8134ea30 t bm_fill_super
-ffffffff8134ea60 t bm_status_read
-ffffffff8134eaa0 t bm_status_write
-ffffffff8134ec00 t kill_node
-ffffffff8134ec80 t bm_register_write
-ffffffff8134f2b0 t scanarg
-ffffffff8134f310 t bm_entry_read
-ffffffff8134f4d0 t bm_entry_write
-ffffffff8134f620 t bm_evict_inode
-ffffffff8134f670 t load_script
-ffffffff8134f8e0 t load_elf_binary
-ffffffff81350780 t elf_core_dump
-ffffffff81351960 t load_elf_phdrs
-ffffffff81351a40 t set_brk
-ffffffff81351ab0 t maximum_alignment
-ffffffff81351b20 t total_mapping_size
-ffffffff81351ba0 t elf_map
-ffffffff81351cc0 t padzero
-ffffffff81351d10 t load_elf_interp
-ffffffff813520d0 t create_elf_tables
-ffffffff81352650 t writenote
-ffffffff81352720 t mb_cache_entry_create
-ffffffff813529b0 t mb_cache_shrink
-ffffffff81352b00 t __mb_cache_entry_free
-ffffffff81352c00 t mb_cache_entry_wait_unused
-ffffffff81352d00 t mb_cache_entry_find_first
-ffffffff81352d20 t __entry_find.llvm.17981891195185430223
-ffffffff81352e80 t mb_cache_entry_find_next
-ffffffff81352ea0 t mb_cache_entry_get
-ffffffff81352f90 t mb_cache_entry_delete_or_get
-ffffffff81353020 t mb_cache_entry_touch
-ffffffff81353030 t mb_cache_create
-ffffffff813531c0 t mb_cache_count
-ffffffff813531d0 t mb_cache_scan
-ffffffff813531f0 t mb_cache_shrink_worker
-ffffffff81353210 t mb_cache_destroy
-ffffffff813532e0 t get_cached_acl
-ffffffff81353390 t get_cached_acl_rcu
-ffffffff813533f0 t set_cached_acl
-ffffffff813534a0 t posix_acl_release
-ffffffff813534f0 t forget_cached_acl
-ffffffff81353560 t forget_all_cached_acls
-ffffffff81353600 t get_acl
-ffffffff81353780 t posix_acl_init
-ffffffff813537a0 t posix_acl_alloc
-ffffffff813537e0 t posix_acl_clone
-ffffffff81353820 t posix_acl_valid
-ffffffff81353950 t posix_acl_equiv_mode
-ffffffff81353a40 t posix_acl_from_mode
-ffffffff81353ae0 t posix_acl_permission
-ffffffff81353c80 t __posix_acl_create
-ffffffff81353d60 t posix_acl_create_masq
-ffffffff81353e90 t __posix_acl_chmod
-ffffffff81354020 t posix_acl_chmod
-ffffffff81354140 t posix_acl_create
-ffffffff81354290 t posix_acl_update_mode
-ffffffff813543d0 t posix_acl_getxattr_idmapped_mnt
-ffffffff813543e0 t posix_acl_fix_xattr_from_user
-ffffffff813543f0 t posix_acl_fix_xattr_to_user
-ffffffff81354400 t vfs_set_acl_prepare
-ffffffff813545e0 t posix_acl_from_xattr
-ffffffff813547c0 t posix_acl_to_xattr
-ffffffff81354850 t set_posix_acl
-ffffffff81354a30 t posix_acl_xattr_list
-ffffffff81354a50 t posix_acl_xattr_get
-ffffffff81354b70 t posix_acl_xattr_set
-ffffffff81354c90 t simple_set_acl
-ffffffff81354d30 t simple_acl_create
-ffffffff81354e60 t do_coredump
-ffffffff81355cf0 t umh_pipe_setup
-ffffffff81355da0 t get_fs_root
-ffffffff81355df0 t dump_interrupted
-ffffffff81355e30 t dump_vma_snapshot
-ffffffff813561b0 t dump_emit
-ffffffff813562a0 t free_vma_snapshot
-ffffffff81356320 t wait_for_dump_helpers
-ffffffff81356430 t __dump_skip
-ffffffff81356620 t dump_skip_to
-ffffffff81356640 t dump_skip
-ffffffff81356650 t dump_user_range
-ffffffff81356820 t dump_align
-ffffffff81356860 t validate_coredump_safety
-ffffffff813568a0 t cn_printf
-ffffffff81356920 t cn_esc_printf
-ffffffff81356a30 t cn_print_exe_file
-ffffffff81356b20 t cn_vprintf
-ffffffff81356c60 t proc_dostring_coredump
-ffffffff81356cb0 t drop_caches_sysctl_handler
-ffffffff81356d60 t drop_pagecache_sb
-ffffffff81356e70 t __x64_sys_name_to_handle_at
-ffffffff81357060 t __x64_sys_open_by_handle_at
-ffffffff81357440 t vfs_dentry_acceptable
-ffffffff81357450 t __traceiter_iomap_readpage
-ffffffff813574a0 t __traceiter_iomap_readahead
-ffffffff813574f0 t __traceiter_iomap_writepage
-ffffffff81357550 t __traceiter_iomap_release_folio
-ffffffff813575b0 t __traceiter_iomap_invalidate_folio
-ffffffff81357610 t __traceiter_iomap_dio_invalidate_fail
-ffffffff81357670 t __traceiter_iomap_iter_dstmap
-ffffffff813576c0 t __traceiter_iomap_iter_srcmap
-ffffffff81357710 t __traceiter_iomap_writepage_map
-ffffffff81357760 t __traceiter_iomap_iter
-ffffffff813577c0 t trace_event_raw_event_iomap_readpage_class
-ffffffff81357890 t perf_trace_iomap_readpage_class
-ffffffff813579a0 t trace_event_raw_event_iomap_range_class
-ffffffff81357a80 t perf_trace_iomap_range_class
-ffffffff81357ba0 t trace_event_raw_event_iomap_class
-ffffffff81357cb0 t perf_trace_iomap_class
-ffffffff81357e00 t trace_event_raw_event_iomap_iter
-ffffffff81357f30 t perf_trace_iomap_iter
-ffffffff813580b0 t trace_raw_output_iomap_readpage_class
-ffffffff81358120 t trace_raw_output_iomap_range_class
-ffffffff81358190 t trace_raw_output_iomap_class
-ffffffff813582a0 t trace_raw_output_iomap_iter
-ffffffff81358370 t iomap_iter
-ffffffff81358610 t iomap_read_folio
-ffffffff813587c0 t iomap_readpage_iter
-ffffffff81358bb0 t iomap_readahead
-ffffffff81358eb0 t iomap_is_partially_uptodate
-ffffffff81358f40 t iomap_release_folio
-ffffffff81358fe0 t iomap_page_release
-ffffffff813590a0 t iomap_invalidate_folio
-ffffffff813591a0 t iomap_file_buffered_write
-ffffffff813594f0 t iomap_file_unshare
-ffffffff813596d0 t iomap_zero_range
-ffffffff813599c0 t iomap_truncate_page
-ffffffff81359a00 t iomap_page_mkwrite
-ffffffff81359c90 t iomap_finish_ioends
-ffffffff81359d70 t iomap_finish_ioend
-ffffffff8135a180 t iomap_ioend_try_merge
-ffffffff8135a280 t iomap_sort_ioends
-ffffffff8135a2a0 t iomap_ioend_compare
-ffffffff8135a2c0 t iomap_writepages
-ffffffff8135a350 t iomap_do_writepage
-ffffffff8135ac30 t iomap_read_inline_data
-ffffffff8135ae40 t iomap_adjust_read_range
-ffffffff8135afb0 t iomap_set_range_uptodate
-ffffffff8135b080 t iomap_read_end_io
-ffffffff8135b2e0 t iomap_write_begin
-ffffffff8135bba0 t iomap_write_end
-ffffffff8135bdd0 t iomap_writepage_end_bio
-ffffffff8135be00 t iomap_dio_complete
-ffffffff8135bf70 t iomap_dio_bio_end_io
-ffffffff8135c0b0 t iomap_dio_complete_work
-ffffffff8135c0f0 t __iomap_dio_rw
-ffffffff8135c940 t trace_iomap_dio_invalidate_fail
-ffffffff8135c9a0 t iomap_dio_rw
-ffffffff8135c9f0 t iomap_dio_bio_iter
-ffffffff8135ce70 t iomap_dio_zero
-ffffffff8135cfe0 t iomap_fiemap
-ffffffff8135d2b0 t iomap_bmap
-ffffffff8135d3f0 t iomap_seek_hole
-ffffffff8135d580 t iomap_seek_data
-ffffffff8135d700 t iomap_swapfile_activate
-ffffffff8135dd90 t task_mem
-ffffffff8135e040 t task_vsize
-ffffffff8135e060 t task_statm
-ffffffff8135e0f0 t pid_maps_open
-ffffffff8135e170 t proc_map_release
-ffffffff8135e1c0 t pid_smaps_open
-ffffffff8135e240 t smaps_rollup_open
-ffffffff8135e2e0 t smaps_rollup_release
-ffffffff8135e330 t clear_refs_write
-ffffffff8135e620 t pagemap_read
-ffffffff8135e900 t pagemap_open
-ffffffff8135e930 t pagemap_release
-ffffffff8135e960 t m_start
-ffffffff8135eb10 t m_stop
-ffffffff8135eb90 t m_next
-ffffffff8135ebf0 t show_map
-ffffffff8135ec10 t show_map_vma
-ffffffff8135ed80 t show_vma_header_prefix
-ffffffff8135eec0 t show_smap
-ffffffff8135f0d0 t __show_smap
-ffffffff8135f360 t smaps_pte_range
-ffffffff8135f810 t smaps_account
-ffffffff8135fba0 t smaps_pte_hole
-ffffffff8135fbf0 t show_smaps_rollup
-ffffffff81360040 t clear_refs_pte_range
-ffffffff81360300 t clear_refs_test_walk
-ffffffff81360340 t pagemap_pmd_range
-ffffffff81360a10 t pagemap_pte_hole
-ffffffff81360b10 t proc_invalidate_siblings_dcache
-ffffffff81360c60 t proc_alloc_inode.llvm.14520005354539457510
-ffffffff81360cf0 t proc_free_inode.llvm.14520005354539457510
-ffffffff81360d10 t proc_evict_inode.llvm.14520005354539457510
-ffffffff81360d90 t proc_show_options.llvm.14520005354539457510
-ffffffff81360e60 t proc_entry_rundown
-ffffffff81360f20 t close_pdeo
-ffffffff81361030 t proc_get_link.llvm.14520005354539457510
-ffffffff81361070 t proc_get_inode
-ffffffff813611b0 t proc_put_link
-ffffffff813611e0 t proc_reg_llseek
-ffffffff81361260 t proc_reg_write
-ffffffff81361300 t proc_reg_read_iter
-ffffffff81361380 t proc_reg_poll
-ffffffff81361420 t proc_reg_unlocked_ioctl
-ffffffff813614c0 t proc_reg_mmap
-ffffffff81361560 t proc_reg_open
-ffffffff81361700 t proc_reg_release
-ffffffff81361780 t proc_reg_get_unmapped_area
-ffffffff81361850 t proc_reg_read
-ffffffff813618f0 t proc_init_fs_context
-ffffffff81361950 t proc_kill_sb
-ffffffff813619a0 t proc_fs_context_free
-ffffffff813619c0 t proc_parse_param
-ffffffff81361c60 t proc_get_tree
-ffffffff81361c80 t proc_reconfigure
-ffffffff81361cf0 t proc_fill_super
-ffffffff81361e80 t proc_root_lookup
-ffffffff81361ec0 t proc_root_getattr
-ffffffff81361f00 t proc_root_readdir
-ffffffff81361f50 t proc_setattr
-ffffffff81361fb0 t proc_mem_open
-ffffffff81362050 t mem_lseek
-ffffffff81362080 t proc_pid_get_link.llvm.14067307878850198014
-ffffffff81362180 t proc_pid_readlink.llvm.14067307878850198014
-ffffffff81362330 t task_dump_owner
-ffffffff813623f0 t proc_pid_evict_inode
-ffffffff81362460 t proc_pid_make_inode
-ffffffff81362580 t pid_getattr
-ffffffff813626d0 t pid_update_inode
-ffffffff81362790 t pid_delete_dentry
-ffffffff813627b0 t pid_revalidate.llvm.14067307878850198014
-ffffffff81362810 t proc_fill_cache
-ffffffff81362970 t tgid_pidfd_to_pid
-ffffffff813629a0 t proc_flush_pid
-ffffffff813629c0 t proc_pid_lookup
-ffffffff81362ac0 t proc_pid_instantiate
-ffffffff81362ba0 t proc_pid_readdir
-ffffffff81362dd0 t next_tgid
-ffffffff81362f00 t proc_tgid_base_readdir
-ffffffff81362f20 t proc_pident_readdir
-ffffffff813630e0 t proc_pident_instantiate
-ffffffff81363190 t proc_tgid_base_lookup
-ffffffff813631b0 t proc_pid_permission
-ffffffff81363280 t proc_pident_lookup
-ffffffff81363350 t proc_pid_personality
-ffffffff813633d0 t proc_pid_limits
-ffffffff81363540 t proc_pid_syscall
-ffffffff81363690 t proc_cwd_link
-ffffffff81363760 t proc_root_link
-ffffffff81363830 t proc_exe_link
-ffffffff813638e0 t proc_pid_wchan
-ffffffff81363990 t proc_pid_stack
-ffffffff81363aa0 t proc_pid_schedstat
-ffffffff81363ae0 t proc_oom_score
-ffffffff81363b70 t proc_tid_io_accounting
-ffffffff81363c60 t environ_read
-ffffffff81363e50 t environ_open
-ffffffff81363e80 t mem_release
-ffffffff81363eb0 t auxv_read
-ffffffff81364100 t auxv_open
-ffffffff81364130 t proc_single_open
-ffffffff81364150 t proc_single_open
-ffffffff81364180 t proc_single_show
-ffffffff81364220 t sched_write
-ffffffff813642a0 t sched_open
-ffffffff813642c0 t sched_show
-ffffffff81364350 t proc_tid_comm_permission
-ffffffff813643f0 t comm_write
-ffffffff81364520 t comm_open
-ffffffff81364540 t comm_show
-ffffffff813645d0 t proc_pid_cmdline_read
-ffffffff813649d0 t mem_read
-ffffffff813649f0 t mem_write
-ffffffff81364a10 t mem_open
-ffffffff81364a40 t mem_rw
-ffffffff81364c40 t proc_attr_dir_lookup
-ffffffff81364c60 t proc_pid_attr_read
-ffffffff81364d60 t proc_pid_attr_write
-ffffffff81364ec0 t proc_pid_attr_open
-ffffffff81364f00 t proc_attr_dir_readdir
-ffffffff81364f20 t oom_adj_read
-ffffffff81365040 t oom_adj_write
-ffffffff81365160 t __set_oom_adj
-ffffffff81365470 t oom_score_adj_read
-ffffffff81365560 t oom_score_adj_write
-ffffffff81365650 t proc_loginuid_read
-ffffffff81365740 t proc_loginuid_write
-ffffffff81365810 t proc_sessionid_read
-ffffffff81365900 t proc_tgid_io_accounting
-ffffffff81365af0 t proc_task_lookup
-ffffffff81365c40 t proc_task_getattr
-ffffffff81365cd0 t proc_task_instantiate
-ffffffff81365db0 t proc_tid_base_lookup
-ffffffff81365dd0 t proc_tid_base_readdir
-ffffffff81365df0 t proc_task_readdir
-ffffffff813661b0 t proc_map_files_lookup
-ffffffff813663d0 t proc_map_files_instantiate
-ffffffff81366460 t map_files_get_link
-ffffffff81366680 t proc_map_files_get_link
-ffffffff813666e0 t map_files_d_revalidate
-ffffffff813669a0 t proc_map_files_readdir
-ffffffff81366e10 t proc_coredump_filter_read
-ffffffff81366f20 t proc_coredump_filter_write
-ffffffff81367190 t timerslack_ns_write
-ffffffff813672d0 t timerslack_ns_open
-ffffffff813672f0 t timerslack_ns_show
-ffffffff813673e0 t pde_free
-ffffffff81367440 t proc_alloc_inum
-ffffffff81367480 t proc_free_inum
-ffffffff813674a0 t proc_lookup_de
-ffffffff813675c0 t proc_lookup
-ffffffff813675f0 t proc_readdir_de
-ffffffff81367820 t pde_put
-ffffffff813678b0 t proc_readdir
-ffffffff813678e0 t proc_net_d_revalidate.llvm.7899602350463927228
-ffffffff813678f0 t proc_register
-ffffffff81367a90 t proc_symlink
-ffffffff81367b80 t __proc_create
-ffffffff81367df0 t _proc_mkdir
-ffffffff81367e90 t proc_mkdir_data
-ffffffff81367f20 t proc_mkdir_mode
-ffffffff81367fb0 t proc_mkdir
-ffffffff81368030 t proc_create_mount_point
-ffffffff813680b0 t proc_create_reg
-ffffffff81368120 t proc_create_data
-ffffffff813681e0 t proc_create
-ffffffff813682a0 t proc_create_seq_private
-ffffffff81368370 t proc_create_single_data
-ffffffff81368430 t proc_set_size
-ffffffff81368440 t proc_set_user
-ffffffff81368460 t remove_proc_entry
-ffffffff81368650 t __xlate_proc_name
-ffffffff81368750 t remove_proc_subtree
-ffffffff81368970 t proc_get_parent_data
-ffffffff81368990 t proc_remove
-ffffffff813689b0 t proc_simple_write
-ffffffff81368a40 t proc_misc_d_revalidate
-ffffffff81368a70 t proc_misc_d_delete
-ffffffff81368a90 t proc_notify_change
-ffffffff81368b00 t proc_getattr
-ffffffff81368b50 t proc_seq_open
-ffffffff81368b90 t proc_seq_release
-ffffffff81368bc0 t proc_task_name
-ffffffff81368cc0 t render_sigset_t
-ffffffff81368d60 t proc_pid_status
-ffffffff81369960 t proc_tid_stat
-ffffffff81369980 t do_task_stat
-ffffffff8136a6a0 t proc_tgid_stat
-ffffffff8136a6c0 t proc_pid_statm
-ffffffff8136a810 t proc_readfd
-ffffffff8136a830 t proc_fd_permission
-ffffffff8136a8a0 t proc_lookupfd
-ffffffff8136a8c0 t proc_lookupfdinfo
-ffffffff8136a8e0 t proc_readfdinfo
-ffffffff8136a900 t proc_open_fdinfo
-ffffffff8136a980 t proc_readfd_common
-ffffffff8136abe0 t proc_fd_instantiate
-ffffffff8136acc0 t proc_fd_link
-ffffffff8136ad70 t tid_fd_revalidate
-ffffffff8136ae90 t proc_lookupfd_common
-ffffffff8136af90 t proc_fdinfo_instantiate
-ffffffff8136b040 t seq_fdinfo_open
-ffffffff8136b0e0 t seq_show
-ffffffff8136b2a0 t proc_tty_register_driver
-ffffffff8136b2f0 t proc_tty_unregister_driver
-ffffffff8136b330 t show_tty_driver
-ffffffff8136b500 t show_tty_range
-ffffffff8136b670 t cmdline_proc_show
-ffffffff8136b6a0 t c_start
-ffffffff8136b6e0 t c_stop
-ffffffff8136b6f0 t c_next
-ffffffff8136b710 t show_console_dev
-ffffffff8136b890 t cpuinfo_open
-ffffffff8136b8b0 t devinfo_start
-ffffffff8136b8d0 t devinfo_stop
-ffffffff8136b8e0 t devinfo_next
-ffffffff8136b910 t devinfo_show
-ffffffff8136b980 t int_seq_start
-ffffffff8136b9a0 t int_seq_stop
-ffffffff8136b9b0 t int_seq_next
-ffffffff8136b9e0 t loadavg_proc_show
-ffffffff8136bb10 t meminfo_proc_show
-ffffffff8136c590 t get_idle_time
-ffffffff8136c5d0 t stat_open
-ffffffff8136c610 t show_stat
-ffffffff8136cf20 t uptime_proc_show
-ffffffff8136d0c0 t name_to_int
-ffffffff8136d110 t version_proc_show
-ffffffff8136d150 t show_softirqs
-ffffffff8136d260 t proc_ns_dir_readdir
-ffffffff8136d430 t proc_ns_dir_lookup
-ffffffff8136d590 t proc_ns_instantiate
-ffffffff8136d610 t proc_ns_get_link
-ffffffff8136d700 t proc_ns_readlink
-ffffffff8136d830 t proc_setup_self
-ffffffff8136d920 t proc_self_get_link
-ffffffff8136d9d0 t proc_setup_thread_self
-ffffffff8136dac0 t proc_thread_self_get_link
-ffffffff8136db90 t register_sysctl_mount_point
-ffffffff8136dbc0 t register_sysctl
-ffffffff8136dbe0 t proc_sys_poll_notify
-ffffffff8136dc10 t proc_sys_evict_inode
-ffffffff8136dc80 t __register_sysctl_table
-ffffffff8136e450 t insert_header
-ffffffff8136e8f0 t drop_sysctl_table
-ffffffff8136ea60 t __register_sysctl_paths
-ffffffff8136ed60 t count_subheaders
-ffffffff8136edd0 t register_leaf_sysctl_tables
-ffffffff8136f030 t unregister_sysctl_table
-ffffffff8136f0c0 t register_sysctl_paths
-ffffffff8136f0e0 t register_sysctl_table
-ffffffff8136f110 t __register_sysctl_base
-ffffffff8136f140 t setup_sysctl_set
-ffffffff8136f1b0 t retire_sysctl_set
-ffffffff8136f1d0 t do_sysctl_args
-ffffffff8136f280 t process_sysctl_arg
-ffffffff8136f5a0 t sysctl_err
-ffffffff8136f640 t sysctl_print_dir
-ffffffff8136f670 t put_links
-ffffffff8136f830 t xlate_dir
-ffffffff8136f950 t get_links
-ffffffff8136fb60 t proc_sys_lookup
-ffffffff8136fe10 t proc_sys_permission
-ffffffff8136ff60 t proc_sys_setattr
-ffffffff8136ffc0 t proc_sys_getattr
-ffffffff813700a0 t sysctl_follow_link
-ffffffff81370200 t proc_sys_make_inode
-ffffffff81370380 t proc_sys_read
-ffffffff813703a0 t proc_sys_write
-ffffffff813703c0 t proc_sys_poll
-ffffffff813704e0 t proc_sys_open
-ffffffff813705a0 t proc_sys_call_handler
-ffffffff81370830 t proc_sys_revalidate
-ffffffff81370860 t proc_sys_compare
-ffffffff813708f0 t proc_sys_delete
-ffffffff81370910 t proc_sys_readdir
-ffffffff81370c10 t proc_sys_link_fill_cache
-ffffffff81370d00 t proc_sys_fill_cache
-ffffffff81370ea0 t bpf_iter_init_seq_net
-ffffffff81370eb0 t bpf_iter_fini_seq_net
-ffffffff81370ec0 t proc_create_net_data
-ffffffff81370f40 t proc_create_net_data_write
-ffffffff81370fd0 t proc_create_net_single
-ffffffff81371050 t proc_create_net_single_write
-ffffffff813710d0 t proc_tgid_net_lookup
-ffffffff81371170 t proc_tgid_net_getattr
-ffffffff81371210 t proc_tgid_net_readdir
-ffffffff813712b0 t seq_open_net
-ffffffff81371310 t seq_release_net
-ffffffff81371330 t single_open_net
-ffffffff81371370 t single_release_net
-ffffffff81371380 t kmsg_open
-ffffffff813713a0 t kmsg_read
-ffffffff81371400 t kmsg_release
-ffffffff81371420 t kmsg_poll
-ffffffff81371470 t stable_page_flags
-ffffffff813717d0 t kpagecount_read
-ffffffff81371910 t kpageflags_read
-ffffffff813719f0 t kpagecgroup_read
-ffffffff81371af0 t boot_config_proc_show
-ffffffff81371b10 t kernfs_sop_show_options.llvm.14632336749165768705
-ffffffff81371b60 t kernfs_sop_show_path.llvm.14632336749165768705
-ffffffff81371bc0 t kernfs_root_from_sb
-ffffffff81371bf0 t kernfs_node_dentry
-ffffffff81371d10 t kernfs_super_ns
-ffffffff81371d30 t kernfs_get_tree
-ffffffff81371f30 t kernfs_test_super
-ffffffff81371f70 t kernfs_set_super
-ffffffff81371f90 t kernfs_free_fs_context
-ffffffff81371fc0 t kernfs_kill_sb
-ffffffff81372040 t kernfs_encode_fh
-ffffffff81372080 t kernfs_fh_to_dentry
-ffffffff81372110 t kernfs_fh_to_parent
-ffffffff813721b0 t kernfs_get_parent_dentry
-ffffffff813721f0 t __kernfs_setattr
-ffffffff813723b0 t kernfs_setattr
-ffffffff81372400 t kernfs_iop_setattr
-ffffffff813724b0 t kernfs_iop_listxattr
-ffffffff813725e0 t kernfs_iop_getattr
-ffffffff813726d0 t kernfs_get_inode
-ffffffff81372840 t kernfs_evict_inode
-ffffffff81372880 t kernfs_iop_permission
-ffffffff81372980 t kernfs_xattr_get
-ffffffff813729f0 t kernfs_xattr_set
-ffffffff81372b20 t kernfs_vfs_xattr_get
-ffffffff81372ba0 t kernfs_vfs_xattr_set
-ffffffff81372bf0 t kernfs_vfs_user_xattr_set
-ffffffff81372e30 t kernfs_name
-ffffffff81372eb0 t kernfs_path_from_node
-ffffffff81373280 t pr_cont_kernfs_name
-ffffffff81373330 t pr_cont_kernfs_path
-ffffffff813733c0 t kernfs_get_parent
-ffffffff81373410 t kernfs_get
-ffffffff81373430 t kernfs_get_active
-ffffffff81373460 t kernfs_put_active
-ffffffff813734b0 t kernfs_put
-ffffffff81373640 t kernfs_node_from_dentry
-ffffffff81373680 t kernfs_new_node
-ffffffff813736e0 t __kernfs_new_node
-ffffffff81373930 t kernfs_find_and_get_node_by_id
-ffffffff813739a0 t kernfs_add_one
-ffffffff81373bb0 t kernfs_link_sibling
-ffffffff81373c90 t kernfs_activate
-ffffffff81373dd0 t kernfs_find_and_get_ns
-ffffffff81373e40 t kernfs_find_ns
-ffffffff81374000 t kernfs_walk_and_get_ns
-ffffffff81374120 t kernfs_create_root
-ffffffff81374250 t kernfs_destroy_root
-ffffffff813742c0 t kernfs_remove
-ffffffff81374310 t kernfs_root_to_node
-ffffffff81374320 t kernfs_create_dir_ns
-ffffffff813743d0 t kernfs_create_empty_dir
-ffffffff81374470 t kernfs_dop_revalidate.llvm.12290629720163409179
-ffffffff813745d0 t kernfs_iop_lookup.llvm.12290629720163409179
-ffffffff813746a0 t kernfs_iop_mkdir.llvm.12290629720163409179
-ffffffff81374750 t kernfs_iop_rmdir.llvm.12290629720163409179
-ffffffff81374800 t kernfs_iop_rename.llvm.12290629720163409179
-ffffffff81374950 t kernfs_show
-ffffffff81374a30 t kernfs_drain
-ffffffff81374b60 t __kernfs_remove
-ffffffff81374d40 t kernfs_break_active_protection
-ffffffff81374d90 t kernfs_unbreak_active_protection
-ffffffff81374da0 t kernfs_remove_self
-ffffffff81374f30 t kernfs_remove_by_name_ns
-ffffffff81374fe0 t kernfs_rename_ns
-ffffffff81375270 t kernfs_fop_readdir.llvm.12290629720163409179
-ffffffff813754e0 t kernfs_dir_fop_release.llvm.12290629720163409179
-ffffffff81375500 t kernfs_dir_pos
-ffffffff813755d0 t kernfs_should_drain_open_files
-ffffffff81375620 t kernfs_drain_open_files
-ffffffff81375700 t kernfs_generic_poll
-ffffffff81375760 t kernfs_notify
-ffffffff81375810 t kernfs_notify_workfn
-ffffffff81375a10 t kernfs_fop_read_iter.llvm.14224842561235250833
-ffffffff81375b90 t kernfs_fop_write_iter.llvm.14224842561235250833
-ffffffff81375d10 t kernfs_fop_poll.llvm.14224842561235250833
-ffffffff81375dd0 t kernfs_fop_mmap.llvm.14224842561235250833
-ffffffff81375ed0 t kernfs_fop_open.llvm.14224842561235250833
-ffffffff81376230 t kernfs_fop_release.llvm.14224842561235250833
-ffffffff81376300 t __kernfs_create_file
-ffffffff813763a0 t kernfs_vma_open
-ffffffff81376400 t kernfs_vma_fault
-ffffffff81376470 t kernfs_vma_page_mkwrite
-ffffffff813764f0 t kernfs_vma_access
-ffffffff81376590 t kernfs_unlink_open_file
-ffffffff81376690 t kernfs_seq_start
-ffffffff81376730 t kernfs_seq_stop
-ffffffff81376780 t kernfs_seq_next
-ffffffff813767f0 t kernfs_seq_show
-ffffffff81376820 t kernfs_create_link
-ffffffff813768b0 t kernfs_iop_get_link.llvm.14283696901812500996
-ffffffff81376b10 t sysfs_notify
-ffffffff81376b90 t sysfs_add_file_mode_ns
-ffffffff81376c90 t sysfs_add_bin_file_mode_ns
-ffffffff81376d40 t sysfs_create_file_ns
-ffffffff81376de0 t sysfs_create_files
-ffffffff81376f00 t sysfs_add_file_to_group
-ffffffff81376fc0 t sysfs_chmod_file
-ffffffff813770a0 t sysfs_break_active_protection
-ffffffff813770e0 t sysfs_unbreak_active_protection
-ffffffff81377120 t sysfs_remove_file_ns
-ffffffff81377140 t sysfs_remove_file_self
-ffffffff81377190 t sysfs_remove_files
-ffffffff813771e0 t sysfs_remove_file_from_group
-ffffffff81377240 t sysfs_create_bin_file
-ffffffff81377350 t sysfs_remove_bin_file
-ffffffff81377370 t sysfs_link_change_owner
-ffffffff813774a0 t sysfs_file_change_owner
-ffffffff813775a0 t sysfs_change_owner
-ffffffff81377690 t sysfs_emit
-ffffffff81377760 t sysfs_emit_at
-ffffffff81377830 t sysfs_kf_read
-ffffffff813778c0 t sysfs_kf_write
-ffffffff81377910 t sysfs_kf_seq_show
-ffffffff81377a10 t sysfs_kf_bin_open
-ffffffff81377a50 t sysfs_kf_bin_read
-ffffffff81377ad0 t sysfs_kf_bin_write
-ffffffff81377b50 t sysfs_kf_bin_mmap
-ffffffff81377b80 t sysfs_warn_dup
-ffffffff81377c00 t sysfs_create_dir_ns
-ffffffff81377d40 t sysfs_remove_dir
-ffffffff81377da0 t sysfs_rename_dir_ns
-ffffffff81377df0 t sysfs_move_dir_ns
-ffffffff81377e20 t sysfs_create_mount_point
-ffffffff81377ec0 t sysfs_remove_mount_point
-ffffffff81377ee0 t sysfs_create_link_sd
-ffffffff81377f00 t sysfs_do_create_link_sd.llvm.10555176615672310276
-ffffffff81377fc0 t sysfs_create_link
-ffffffff81378000 t sysfs_create_link_nowarn
-ffffffff81378040 t sysfs_delete_link
-ffffffff813780b0 t sysfs_remove_link
-ffffffff813780e0 t sysfs_rename_link_ns
-ffffffff81378190 t sysfs_init_fs_context
-ffffffff81378230 t sysfs_kill_sb
-ffffffff81378260 t sysfs_fs_context_free
-ffffffff813782b0 t sysfs_get_tree
-ffffffff813782f0 t sysfs_create_group
-ffffffff81378310 t internal_create_group.llvm.4185736948364579705
-ffffffff81378760 t sysfs_create_groups
-ffffffff81378800 t sysfs_update_groups
-ffffffff81378890 t sysfs_update_group
-ffffffff813788b0 t sysfs_remove_group
-ffffffff81378980 t sysfs_remove_groups
-ffffffff813789e0 t sysfs_merge_group
-ffffffff81378af0 t sysfs_unmerge_group
-ffffffff81378b50 t sysfs_add_link_to_group
-ffffffff81378bb0 t sysfs_remove_link_from_group
-ffffffff81378bf0 t compat_only_sysfs_link_entry_to_kobj
-ffffffff81378cc0 t sysfs_group_change_owner
-ffffffff81378eb0 t sysfs_groups_change_owner
-ffffffff81378f30 t devpts_mntget
-ffffffff81379040 t devpts_acquire
-ffffffff813790f0 t devpts_release
-ffffffff81379110 t devpts_new_index
-ffffffff81379170 t devpts_kill_index
-ffffffff81379190 t devpts_pty_new
-ffffffff81379350 t devpts_get_priv
-ffffffff81379380 t devpts_pty_kill
-ffffffff81379420 t devpts_mount
-ffffffff81379440 t devpts_kill_sb
-ffffffff81379480 t devpts_fill_super
-ffffffff81379720 t parse_mount_options
-ffffffff81379980 t devpts_remount
-ffffffff813799d0 t devpts_show_options
-ffffffff81379a80 t ext4_get_group_number
-ffffffff81379ae0 t ext4_get_group_no_and_offset
-ffffffff81379b40 t ext4_free_clusters_after_init
-ffffffff81379de0 t ext4_get_group_desc
-ffffffff81379ed0 t ext4_read_block_bitmap_nowait
-ffffffff8137a290 t ext4_init_block_bitmap
-ffffffff8137a5b0 t trace_ext4_read_block_bitmap_load
-ffffffff8137a610 t ext4_validate_block_bitmap
-ffffffff8137a950 t ext4_wait_block_bitmap
-ffffffff8137aa10 t ext4_read_block_bitmap
-ffffffff8137aa60 t ext4_claim_free_clusters
-ffffffff8137aab0 t ext4_has_free_clusters
-ffffffff8137ac00 t ext4_should_retry_alloc
-ffffffff8137acb0 t ext4_new_meta_blocks
-ffffffff8137add0 t ext4_count_free_clusters
-ffffffff8137aee0 t ext4_bg_has_super
-ffffffff8137aff0 t ext4_bg_num_gdb
-ffffffff8137b080 t ext4_inode_to_goal_block
-ffffffff8137b140 t ext4_num_base_meta_clusters
-ffffffff8137b250 t ext4_count_free
-ffffffff8137b280 t ext4_inode_bitmap_csum_verify
-ffffffff8137b370 t ext4_inode_bitmap_csum_set
-ffffffff8137b440 t ext4_block_bitmap_csum_verify
-ffffffff8137b530 t ext4_block_bitmap_csum_set
-ffffffff8137b600 t ext4_exit_system_zone
-ffffffff8137b620 t ext4_setup_system_zone
-ffffffff8137ba60 t add_system_zone
-ffffffff8137bbf0 t ext4_release_system_zone
-ffffffff8137bc30 t ext4_destroy_system_zone
-ffffffff8137bc90 t ext4_sb_block_valid
-ffffffff8137bd70 t ext4_inode_block_valid
-ffffffff8137be50 t ext4_check_blockref
-ffffffff8137bf10 t __ext4_check_dir_entry
-ffffffff8137c140 t ext4_htree_free_dir_info
-ffffffff8137c1c0 t ext4_htree_store_dirent
-ffffffff8137c2d0 t ext4_check_all_de
-ffffffff8137c370 t ext4_dir_llseek.llvm.16702463659822420546
-ffffffff8137c420 t ext4_readdir.llvm.16702463659822420546
-ffffffff8137cfe0 t ext4_release_dir.llvm.16702463659822420546
-ffffffff8137d070 t ext4_inode_journal_mode
-ffffffff8137d110 t __ext4_journal_start_sb
-ffffffff8137d290 t __ext4_journal_stop
-ffffffff8137d330 t __ext4_journal_start_reserved
-ffffffff8137d4d0 t __ext4_journal_ensure_credits
-ffffffff8137d5a0 t __ext4_journal_get_write_access
-ffffffff8137d7a0 t ext4_journal_abort_handle
-ffffffff8137d870 t __ext4_forget
-ffffffff8137db40 t __ext4_journal_get_create_access
-ffffffff8137dcb0 t __ext4_handle_dirty_metadata
-ffffffff8137ded0 t ext4_free_ext_path
-ffffffff8137df40 t ext4_datasem_ensure_credits
-ffffffff8137dfe0 t ext4_ext_check_inode
-ffffffff8137e020 t __ext4_ext_check
-ffffffff8137e420 t ext4_ext_precache
-ffffffff8137e750 t __read_extent_tree_block
-ffffffff8137e970 t ext4_ext_tree_init
-ffffffff8137e9b0 t ext4_find_extent
-ffffffff8137ee70 t ext4_ext_next_allocated_block
-ffffffff8137ef20 t ext4_ext_insert_extent
-ffffffff81380410 t ext4_ext_get_access
-ffffffff81380460 t ext4_ext_try_to_merge
-ffffffff813805b0 t ext4_ext_correct_indexes
-ffffffff81380830 t __ext4_ext_dirty
-ffffffff813808d0 t ext4_ext_calc_credits_for_single_extent
-ffffffff81380910 t ext4_ext_index_trans_blocks
-ffffffff81380960 t ext4_ext_remove_space
-ffffffff81382080 t ext4_ext_search_right
-ffffffff81382340 t ext4_ext_rm_idx
-ffffffff81382640 t ext4_ext_init
-ffffffff81382650 t ext4_ext_release
-ffffffff81382660 t ext4_ext_map_blocks
-ffffffff81384620 t get_implied_cluster_alloc
-ffffffff81384850 t ext4_update_inode_fsync_trans
-ffffffff81384890 t ext4_update_inode_fsync_trans
-ffffffff813848d0 t ext4_update_inode_fsync_trans
-ffffffff81384910 t ext4_ext_truncate
-ffffffff81384a00 t ext4_fallocate
-ffffffff81385350 t ext4_zero_range
-ffffffff81385790 t trace_ext4_fallocate_enter
-ffffffff813857f0 t ext4_alloc_file_blocks
-ffffffff81385b40 t trace_ext4_fallocate_exit
-ffffffff81385ba0 t ext4_convert_unwritten_extents
-ffffffff81385d50 t ext4_convert_unwritten_io_end_vec
-ffffffff81385e10 t ext4_fiemap
-ffffffff81385ee0 t ext4_get_es_cache
-ffffffff81386150 t ext4_swap_extents
-ffffffff81386ad0 t ext4_clu_mapped
-ffffffff81386d00 t ext4_ext_replay_update_ex
-ffffffff813870a0 t ext4_ext_replay_shrink_inode
-ffffffff813872c0 t ext4_ext_replay_set_iblocks
-ffffffff81387860 t ext4_ext_clear_bb
-ffffffff81387b00 t ext4_extent_block_csum_set
-ffffffff81387bf0 t ext4_ext_insert_index
-ffffffff81387e90 t ext4_ext_try_to_merge_right
-ffffffff813880f0 t ext4_split_extent_at
-ffffffff81388770 t ext4_ext_zeroout
-ffffffff813887b0 t ext4_zeroout_es
-ffffffff81388800 t ext4_split_extent
-ffffffff81388990 t trace_ext4_ext_convert_to_initialized_fastpath
-ffffffff813889f0 t ext4_es_is_delayed
-ffffffff81388a10 t ext4_es_is_delayed
-ffffffff81388a30 t ext4_update_inode_size
-ffffffff81388aa0 t ext4_iomap_xattr_begin
-ffffffff81388bd0 t ext4_ext_shift_extents
-ffffffff81389390 t ext4_exit_es
-ffffffff813893b0 t ext4_es_init_tree
-ffffffff813893d0 t ext4_es_find_extent_range
-ffffffff813894e0 t __es_find_extent_range
-ffffffff81389650 t ext4_es_scan_range
-ffffffff81389750 t ext4_es_scan_clu
-ffffffff81389860 t ext4_es_insert_extent
-ffffffff8138a320 t __es_remove_extent
-ffffffff8138aac0 t __es_insert_extent
-ffffffff8138b170 t __es_shrink
-ffffffff8138b460 t ext4_es_cache_extent
-ffffffff8138b5e0 t ext4_es_lookup_extent
-ffffffff8138b820 t ext4_es_remove_extent
-ffffffff8138b930 t ext4_seq_es_shrinker_info_show
-ffffffff8138bb60 t ext4_es_register_shrinker
-ffffffff8138bcf0 t ext4_es_scan
-ffffffff8138c080 t ext4_es_count
-ffffffff8138c0f0 t ext4_es_unregister_shrinker
-ffffffff8138c140 t ext4_clear_inode_es
-ffffffff8138c1f0 t ext4_es_free_extent
-ffffffff8138c310 t ext4_exit_pending
-ffffffff8138c330 t ext4_init_pending_tree
-ffffffff8138c350 t ext4_remove_pending
-ffffffff8138c400 t ext4_is_pending
-ffffffff8138c490 t ext4_es_insert_delayed_block
-ffffffff8138c6c0 t ext4_es_delayed_clu
-ffffffff8138c810 t count_rsvd
-ffffffff8138c920 t es_reclaim_extents
-ffffffff8138ca10 t es_do_reclaim_extents
-ffffffff8138cb50 t ext4_llseek
-ffffffff8138cc30 t ext4_file_read_iter.llvm.18212691712315185218
-ffffffff8138cd50 t ext4_file_write_iter.llvm.18212691712315185218
-ffffffff8138d5c0 t ext4_file_mmap.llvm.18212691712315185218
-ffffffff8138d620 t ext4_file_open.llvm.18212691712315185218
-ffffffff8138d870 t ext4_release_file.llvm.18212691712315185218
-ffffffff8138d920 t ext4_buffered_write_iter
-ffffffff8138daa0 t ext4_dio_write_end_io
-ffffffff8138db00 t sb_start_intwrite_trylock
-ffffffff8138db80 t lock_buffer
-ffffffff8138dbb0 t lock_buffer
-ffffffff8138dbe0 t lock_buffer
-ffffffff8138dc10 t lock_buffer
-ffffffff8138dc40 t sb_end_intwrite
-ffffffff8138dcb0 t sb_end_intwrite
-ffffffff8138dd20 t ext4_fsmap_from_internal
-ffffffff8138dd80 t ext4_fsmap_to_internal
-ffffffff8138ddc0 t ext4_getfsmap
-ffffffff8138e320 t ext4_getfsmap_datadev
-ffffffff8138ecb0 t ext4_getfsmap_logdev
-ffffffff8138eeb0 t ext4_getfsmap_dev_compare
-ffffffff8138eed0 t ext4_getfsmap_datadev_helper
-ffffffff8138f100 t ext4_getfsmap_helper
-ffffffff8138f400 t ext4_getfsmap_compare
-ffffffff8138f420 t ext4_sync_file
-ffffffff8138f760 t ext4fs_dirhash
-ffffffff8138f870 t __ext4fs_dirhash
-ffffffff8138ff60 t str2hashbuf_signed
-ffffffff81390090 t str2hashbuf_unsigned
-ffffffff813901d0 t ext4_mark_bitmap_end
-ffffffff81390230 t ext4_end_bitmap_read
-ffffffff81390260 t ext4_free_inode
-ffffffff81390730 t ext4_read_inode_bitmap
-ffffffff81390cf0 t ext4_get_group_info
-ffffffff81390d50 t ext4_get_group_info
-ffffffff81390db0 t ext4_lock_group
-ffffffff81390e30 t ext4_lock_group
-ffffffff81390eb0 t ext4_mark_inode_used
-ffffffff81391260 t ext4_has_group_desc_csum
-ffffffff813912c0 t ext4_has_group_desc_csum
-ffffffff81391320 t ext4_has_group_desc_csum
-ffffffff81391380 t __ext4_new_inode
-ffffffff81392680 t find_group_orlov
-ffffffff81392ac0 t find_inode_bit
-ffffffff81392c40 t ext4_has_metadata_csum
-ffffffff81392c90 t ext4_has_metadata_csum
-ffffffff81392ce0 t ext4_chksum
-ffffffff81392d50 t ext4_chksum
-ffffffff81392dc0 t trace_ext4_allocate_inode
-ffffffff81392e20 t ext4_orphan_get
-ffffffff81393070 t ext4_count_free_inodes
-ffffffff813930f0 t ext4_count_dirs
-ffffffff81393160 t ext4_init_inode_table
-ffffffff813934d0 t get_orlov_stats
-ffffffff81393580 t ext4_ind_map_blocks
-ffffffff81394340 t ext4_get_branch
-ffffffff813944d0 t ext4_ind_trans_blocks
-ffffffff81394510 t ext4_ind_truncate
-ffffffff81394a20 t ext4_find_shared
-ffffffff81394b40 t ext4_free_branches
-ffffffff81394ed0 t ext4_ind_remove_space
-ffffffff81395c20 t ext4_clear_blocks
-ffffffff81395da0 t ext4_ind_truncate_ensure_credits
-ffffffff81395f80 t ext4_get_max_inline_size
-ffffffff81396150 t ext4_find_inline_data_nolock
-ffffffff813962b0 t ext4_readpage_inline
-ffffffff813963f0 t ext4_read_inline_page
-ffffffff81396680 t ext4_try_to_write_inline_data
-ffffffff81396ce0 t ext4_prepare_inline_data
-ffffffff81396da0 t ext4_write_inline_data_end
-ffffffff81397200 t ext4_journalled_write_inline_data
-ffffffff813973e0 t ext4_da_write_inline_data_begin
-ffffffff81397850 t ext4_try_add_inline_entry
-ffffffff81397bd0 t ext4_add_dirent_to_inline
-ffffffff81397d00 t ext4_convert_inline_data_nolock
-ffffffff81398100 t ext4_inlinedir_to_tree
-ffffffff813986a0 t ext4_read_inline_dir
-ffffffff81398a80 t ext4_read_inline_link
-ffffffff81398c10 t ext4_get_first_inline_block
-ffffffff81398ca0 t ext4_try_create_inline_dir
-ffffffff81398d80 t ext4_find_inline_entry
-ffffffff81398f00 t ext4_delete_inline_entry
-ffffffff81399100 t empty_inline_dir
-ffffffff81399380 t ext4_destroy_inline_data
-ffffffff813993f0 t ext4_destroy_inline_data_nolock
-ffffffff81399670 t ext4_inline_data_iomap
-ffffffff81399790 t ext4_inline_data_truncate
-ffffffff81399be0 t ext4_convert_inline_data
-ffffffff81399d90 t ext4_update_inline_data
-ffffffff81399fb0 t ext4_create_inline_data
-ffffffff8139a1f0 t ext4_finish_convert_inline_dir
-ffffffff8139a3c0 t ext4_inode_csum_set
-ffffffff8139a460 t ext4_inode_csum
-ffffffff8139a690 t ext4_inode_is_fast_symlink
-ffffffff8139a740 t ext4_evict_inode
-ffffffff8139ade0 t ext4_begin_ordered_truncate
-ffffffff8139ae70 t __ext4_mark_inode_dirty
-ffffffff8139b160 t ext4_truncate
-ffffffff8139b580 t ext4_da_update_reserve_space
-ffffffff8139b6e0 t ext4_issue_zeroout
-ffffffff8139b740 t ext4_map_blocks
-ffffffff8139bdb0 t ext4_get_block
-ffffffff8139bdd0 t _ext4_get_block.llvm.2730622279503259269
-ffffffff8139bf10 t ext4_get_block_unwritten
-ffffffff8139bf30 t ext4_getblk
-ffffffff8139c1e0 t ext4_bread
-ffffffff8139c240 t ext4_buffer_uptodate
-ffffffff8139c270 t ext4_bread_batch
-ffffffff8139c3e0 t wait_on_buffer
-ffffffff8139c410 t wait_on_buffer
-ffffffff8139c440 t ext4_walk_page_buffers
-ffffffff8139c4f0 t do_journal_get_write_access
-ffffffff8139c570 t ext4_da_release_space
-ffffffff8139c670 t ext4_da_get_block_prep
-ffffffff8139cb30 t ext4_alloc_da_blocks
-ffffffff8139cba0 t ext4_iomap_begin.llvm.2730622279503259269
-ffffffff8139ce60 t ext4_iomap_end.llvm.2730622279503259269
-ffffffff8139ce80 t ext4_iomap_overwrite_begin.llvm.2730622279503259269
-ffffffff8139ceb0 t ext4_iomap_begin_report.llvm.2730622279503259269
-ffffffff8139d0e0 t ext4_set_aops
-ffffffff8139d150 t ext4_zero_partial_blocks
-ffffffff8139d200 t ext4_block_zero_page_range
-ffffffff8139d4f0 t ext4_can_truncate
-ffffffff8139d5b0 t ext4_update_disksize_before_punch
-ffffffff8139d6b0 t ext4_break_layouts
-ffffffff8139d6e0 t ext4_punch_hole
-ffffffff8139db20 t ext4_inode_attach_jinode
-ffffffff8139dbe0 t ext4_writepage_trans_blocks
-ffffffff8139dc90 t ext4_get_inode_loc
-ffffffff8139dd20 t __ext4_get_inode_loc.llvm.2730622279503259269
-ffffffff8139e170 t ext4_get_fc_inode_loc
-ffffffff8139e190 t ext4_set_inode_flags
-ffffffff8139e280 t ext4_get_projid
-ffffffff8139e2b0 t __ext4_iget
-ffffffff8139ee30 t ext4_inode_csum_verify
-ffffffff8139eef0 t ext4_inode_blocks
-ffffffff8139ef50 t ext4_iget_extra_inode
-ffffffff8139efe0 t ext4_write_inode
-ffffffff8139f1a0 t ext4_setattr
-ffffffff8139f710 t ext4_wait_for_tail_page_commit
-ffffffff8139f880 t ext4_dio_alignment
-ffffffff8139f8d0 t ext4_getattr
-ffffffff8139fa60 t ext4_file_getattr
-ffffffff8139fae0 t ext4_chunk_trans_blocks
-ffffffff8139fb50 t ext4_mark_iloc_dirty
-ffffffff813a00e0 t ext4_reserve_inode_write
-ffffffff813a0200 t ext4_expand_extra_isize
-ffffffff813a0480 t ext4_dirty_inode
-ffffffff813a0500 t ext4_change_inode_journal_flag
-ffffffff813a0710 t ext4_page_mkwrite
-ffffffff813a0ef0 t ext4_da_reserve_space
-ffffffff813a0fa0 t ext4_es_is_delonly
-ffffffff813a0fd0 t ext4_es_is_mapped
-ffffffff813a1000 t ext4_set_iomap
-ffffffff813a1180 t ext4_writepage
-ffffffff813a18e0 t ext4_read_folio
-ffffffff813a1980 t ext4_writepages
-ffffffff813a2ac0 t ext4_journalled_dirty_folio
-ffffffff813a2ae0 t ext4_readahead
-ffffffff813a2b20 t ext4_write_begin
-ffffffff813a3190 t ext4_journalled_write_end
-ffffffff813a3600 t ext4_bmap
-ffffffff813a3710 t ext4_journalled_invalidate_folio
-ffffffff813a3730 t ext4_release_folio
-ffffffff813a37d0 t ext4_iomap_swap_activate
-ffffffff813a37f0 t mpage_prepare_extent_to_map
-ffffffff813a3bd0 t mpage_release_unused_pages
-ffffffff813a3e60 t mpage_process_page_bufs
-ffffffff813a4010 t ext4_print_free_blocks
-ffffffff813a4120 t ext4_journalled_zero_new_buffers
-ffffffff813a42c0 t __ext4_journalled_invalidate_folio
-ffffffff813a4390 t ext4_dirty_folio
-ffffffff813a43d0 t ext4_da_write_begin
-ffffffff813a46a0 t ext4_da_write_end
-ffffffff813a48e0 t ext4_invalidate_folio
-ffffffff813a4970 t ext4_write_end
-ffffffff813a4c90 t ext4_fill_raw_inode
-ffffffff813a5140 t trace_ext4_load_inode
-ffffffff813a51a0 t ext4_reset_inode_seed
-ffffffff813a52c0 t ext4_fileattr_get
-ffffffff813a5330 t ext4_fileattr_set
-ffffffff813a5780 t ext4_ioctl
-ffffffff813a7360 t ext4_update_overhead
-ffffffff813a73b0 t ext4_update_superblocks_fn
-ffffffff813a79c0 t set_overhead
-ffffffff813a79e0 t ext4_dax_dontcache
-ffffffff813a7a20 t ext4_getfsmap_format
-ffffffff813a7b50 t swap_inode_data
-ffffffff813a7d10 t ext4_sb_setlabel
-ffffffff813a7d30 t ext4_sb_setuuid
-ffffffff813a7d50 t mb_set_bits
-ffffffff813a7dc0 t ext4_mb_prefetch
-ffffffff813a7fc0 t ext4_mb_prefetch_fini
-ffffffff813a8140 t ext4_mb_init_group
-ffffffff813a83e0 t ext4_mb_seq_groups_start.llvm.5149711262667810166
-ffffffff813a8420 t ext4_mb_seq_groups_stop.llvm.5149711262667810166
-ffffffff813a8430 t ext4_mb_seq_groups_next.llvm.5149711262667810166
-ffffffff813a8480 t ext4_mb_seq_groups_show.llvm.5149711262667810166
-ffffffff813a8960 t ext4_seq_mb_stats_show
-ffffffff813a8c50 t ext4_mb_seq_structs_summary_start.llvm.5149711262667810166
-ffffffff813a8c90 t ext4_mb_seq_structs_summary_stop.llvm.5149711262667810166
-ffffffff813a8ca0 t ext4_mb_seq_structs_summary_next.llvm.5149711262667810166
-ffffffff813a8cf0 t ext4_mb_seq_structs_summary_show.llvm.5149711262667810166
-ffffffff813a8e40 t ext4_mb_alloc_groupinfo
-ffffffff813a8f50 t ext4_mb_add_groupinfo
-ffffffff813a9200 t ext4_mb_init
-ffffffff813a9ac0 t ext4_discard_work
-ffffffff813a9df0 t ext4_mb_release
-ffffffff813aa1d0 t ext4_process_freed_data
-ffffffff813aa5d0 t ext4_exit_mballoc
-ffffffff813aa6c0 t ext4_mb_mark_bb
-ffffffff813aabb0 t mb_clear_bits
-ffffffff813aac20 t ext4_discard_preallocations
-ffffffff813ab190 t ext4_mb_load_buddy_gfp
-ffffffff813ab610 t ext4_mb_unload_buddy
-ffffffff813ab680 t ext4_mb_release_inode_pa
-ffffffff813ab950 t ext4_mb_pa_callback
-ffffffff813ab980 t ext4_mb_new_blocks
-ffffffff813ac750 t ext4_mb_initialize_context
-ffffffff813ac910 t ext4_mb_use_preallocated
-ffffffff813acb70 t ext4_mb_normalize_request
-ffffffff813acfa0 t ext4_mb_regular_allocator
-ffffffff813add90 t ext4_mb_pa_free
-ffffffff813addd0 t ext4_discard_allocated_blocks
-ffffffff813adfa0 t ext4_mb_mark_diskspace_used
-ffffffff813ae430 t ext4_mb_discard_preallocations_should_retry
-ffffffff813ae680 t ext4_free_blocks
-ffffffff813af450 t ext4_group_add_blocks
-ffffffff813af880 t mb_free_blocks
-ffffffff813afd90 t ext4_trim_fs
-ffffffff813b0320 t ext4_mballoc_query_range
-ffffffff813b06c0 t ext4_mb_init_cache
-ffffffff813b0f00 t ext4_mb_generate_buddy
-ffffffff813b11f0 t ext4_mb_generate_from_pa
-ffffffff813b1370 t mb_set_largest_free_order
-ffffffff813b14d0 t mb_update_avg_fragment_size
-ffffffff813b1630 t ext4_try_to_trim_range
-ffffffff813b1ad0 t mb_mark_used
-ffffffff813b1fc0 t ext4_mb_use_inode_pa
-ffffffff813b2090 t ext4_mb_find_by_goal
-ffffffff813b2370 t ext4_mb_good_group
-ffffffff813b24a0 t ext4_mb_simple_scan_group
-ffffffff813b2630 t ext4_mb_scan_aligned
-ffffffff813b2790 t ext4_mb_complex_scan_group
-ffffffff813b2b30 t ext4_mb_try_best_found
-ffffffff813b2ce0 t mb_find_extent
-ffffffff813b3050 t ext4_mb_use_best_found
-ffffffff813b3170 t ext4_mb_new_group_pa
-ffffffff813b33a0 t ext4_mb_new_inode_pa
-ffffffff813b3660 t ext4_mb_discard_group_preallocations
-ffffffff813b3af0 t ext4_mb_release_group_pa
-ffffffff813b3c60 t ext4_mb_discard_lg_preallocations
-ffffffff813b3fe0 t ext4_mb_free_metadata
-ffffffff813b41f0 t ext4_try_merge_freed_extent
-ffffffff813b42b0 t ext4_ext_migrate
-ffffffff813b46f0 t update_ind_extent_range
-ffffffff813b4800 t update_dind_extent_range
-ffffffff813b48c0 t update_tind_extent_range
-ffffffff813b4a50 t finish_range
-ffffffff813b4b60 t free_ext_block
-ffffffff813b4bd0 t ext4_ext_swap_inode_data
-ffffffff813b4f20 t ext4_journal_ensure_credits
-ffffffff813b4f70 t ext4_ind_migrate
-ffffffff813b51e0 t free_ext_idx
-ffffffff813b5320 t free_dind_blocks
-ffffffff813b54f0 t __dump_mmp_msg
-ffffffff813b5560 t ext4_stop_mmpd
-ffffffff813b55a0 t ext4_multi_mount_protect
-ffffffff813b5950 t read_mmp_block
-ffffffff813b5b00 t write_mmp_block
-ffffffff813b5d00 t kmmpd
-ffffffff813b6130 t ext4_double_down_write_data_sem
-ffffffff813b6170 t ext4_double_up_write_data_sem
-ffffffff813b61a0 t ext4_move_extents
-ffffffff813b6580 t mext_check_arguments
-ffffffff813b6720 t move_extent_per_page
-ffffffff813b7750 t ext4_initialize_dirent_tail
-ffffffff813b77a0 t ext4_dirblock_csum_verify
-ffffffff813b78d0 t ext4_handle_dirty_dirblock
-ffffffff813b7a30 t ext4_htree_fill_tree
-ffffffff813b7fe0 t htree_dirblock_to_tree
-ffffffff813b82b0 t dx_probe
-ffffffff813b88f0 t ext4_fname_setup_ci_filename
-ffffffff813b89f0 t ext4_search_dir
-ffffffff813b8ae0 t ext4_match
-ffffffff813b8bb0 t ext4_get_parent
-ffffffff813b8d40 t ext4_find_dest_de
-ffffffff813b8e80 t ext4_insert_dentry
-ffffffff813b8f90 t ext4_generic_delete_entry
-ffffffff813b90c0 t ext4_init_dot_dotdot
-ffffffff813b9170 t ext4_init_new_dir
-ffffffff813b93a0 t ext4_append
-ffffffff813b9540 t ext4_empty_dir
-ffffffff813b9810 t __ext4_read_dirblock
-ffffffff813b9ac0 t __ext4_unlink
-ffffffff813b9e00 t ext4_delete_entry
-ffffffff813b9f80 t ext4_update_dx_flag
-ffffffff813b9fc0 t __ext4_link
-ffffffff813ba1a0 t ext4_inc_count
-ffffffff813ba200 t ext4_add_entry
-ffffffff813baf20 t ext4_lookup.llvm.14788533307668854240
-ffffffff813bb180 t ext4_create.llvm.14788533307668854240
-ffffffff813bb2f0 t ext4_link.llvm.14788533307668854240
-ffffffff813bb350 t ext4_unlink.llvm.14788533307668854240
-ffffffff813bb450 t ext4_symlink.llvm.14788533307668854240
-ffffffff813bb750 t ext4_mkdir.llvm.14788533307668854240
-ffffffff813bbaa0 t ext4_rmdir.llvm.14788533307668854240
-ffffffff813bbdc0 t ext4_mknod.llvm.14788533307668854240
-ffffffff813bbf40 t ext4_rename2.llvm.14788533307668854240
-ffffffff813bd100 t ext4_tmpfile.llvm.14788533307668854240
-ffffffff813bd290 t dx_node_limit
-ffffffff813bd310 t ext4_ci_compare
-ffffffff813bd400 t __ext4_find_entry
-ffffffff813bdd10 t ext4_dx_csum_verify
-ffffffff813bde20 t ext4_dx_csum
-ffffffff813bdf20 t add_dirent_to_buf
-ffffffff813be120 t make_indexed_dir
-ffffffff813be6d0 t dx_insert_block
-ffffffff813be780 t ext4_handle_dirty_dx_node
-ffffffff813be8c0 t do_split
-ffffffff813bf190 t ext4_add_nondir
-ffffffff813bf260 t ext4_rename_dir_prepare
-ffffffff813bf490 t ext4_setent
-ffffffff813bf5a0 t ext4_rename_dir_finish
-ffffffff813bf640 t ext4_update_dir_count
-ffffffff813bf6f0 t ext4_rename_delete
-ffffffff813bf8a0 t ext4_resetent
-ffffffff813bfa10 t ext4_exit_pageio
-ffffffff813bfa40 t ext4_alloc_io_end_vec
-ffffffff813bfab0 t ext4_last_io_end_vec
-ffffffff813bfad0 t ext4_end_io_rsv_work
-ffffffff813bfc80 t ext4_init_io_end
-ffffffff813bfcd0 t ext4_put_io_end_defer
-ffffffff813bfdf0 t ext4_release_io_end
-ffffffff813bfee0 t ext4_put_io_end
-ffffffff813bffa0 t ext4_get_io_end
-ffffffff813bffe0 t ext4_io_submit
-ffffffff813c0020 t ext4_io_submit_init
-ffffffff813c0040 t ext4_bio_write_page
-ffffffff813c0420 t ext4_finish_bio
-ffffffff813c0650 t ext4_end_bio
-ffffffff813c0790 t ext4_mpage_readpages
-ffffffff813c1240 t ext4_exit_post_read_processing
-ffffffff813c1270 t __read_end_io
-ffffffff813c1380 t decrypt_work
-ffffffff813c1420 t verity_work
-ffffffff813c1460 t verity_work
-ffffffff813c14e0 t ext4_kvfree_array_rcu
-ffffffff813c1530 t ext4_rcu_ptr_callback
-ffffffff813c1560 t ext4_resize_begin
-ffffffff813c1680 t ext4_resize_end
-ffffffff813c16b0 t ext4_list_backups
-ffffffff813c17a0 t ext4_group_add
-ffffffff813c1e00 t ext4_flex_group_add
-ffffffff813c3c50 t ext4_group_extend
-ffffffff813c3e70 t ext4_group_extend_no_check
-ffffffff813c4090 t ext4_resize_fs
-ffffffff813c53f0 t update_backups
-ffffffff813c5950 t set_flexbg_block_bitmap
-ffffffff813c5b60 t verify_reserved_gdb
-ffffffff813c5d50 t __traceiter_ext4_other_inode_update_time
-ffffffff813c5da0 t __traceiter_ext4_free_inode
-ffffffff813c5df0 t __traceiter_ext4_request_inode
-ffffffff813c5e40 t __traceiter_ext4_allocate_inode
-ffffffff813c5ea0 t __traceiter_ext4_evict_inode
-ffffffff813c5ef0 t __traceiter_ext4_drop_inode
-ffffffff813c5f40 t __traceiter_ext4_nfs_commit_metadata
-ffffffff813c5f90 t __traceiter_ext4_mark_inode_dirty
-ffffffff813c5fe0 t __traceiter_ext4_begin_ordered_truncate
-ffffffff813c6030 t __traceiter_ext4_write_begin
-ffffffff813c6090 t __traceiter_ext4_da_write_begin
-ffffffff813c60f0 t __traceiter_ext4_write_end
-ffffffff813c6160 t __traceiter_ext4_journalled_write_end
-ffffffff813c61d0 t __traceiter_ext4_da_write_end
-ffffffff813c6240 t __traceiter_ext4_writepages
-ffffffff813c6290 t __traceiter_ext4_da_write_pages
-ffffffff813c62f0 t __traceiter_ext4_da_write_pages_extent
-ffffffff813c6340 t __traceiter_ext4_writepages_result
-ffffffff813c63b0 t __traceiter_ext4_writepage
-ffffffff813c6400 t __traceiter_ext4_readpage
-ffffffff813c6450 t __traceiter_ext4_releasepage
-ffffffff813c64a0 t __traceiter_ext4_invalidate_folio
-ffffffff813c6500 t __traceiter_ext4_journalled_invalidate_folio
-ffffffff813c6560 t __traceiter_ext4_discard_blocks
-ffffffff813c65c0 t __traceiter_ext4_mb_new_inode_pa
-ffffffff813c6610 t __traceiter_ext4_mb_new_group_pa
-ffffffff813c6660 t __traceiter_ext4_mb_release_inode_pa
-ffffffff813c66c0 t __traceiter_ext4_mb_release_group_pa
-ffffffff813c6710 t __traceiter_ext4_discard_preallocations
-ffffffff813c6770 t __traceiter_ext4_mb_discard_preallocations
-ffffffff813c67c0 t __traceiter_ext4_request_blocks
-ffffffff813c6810 t __traceiter_ext4_allocate_blocks
-ffffffff813c6860 t __traceiter_ext4_free_blocks
-ffffffff813c68d0 t __traceiter_ext4_sync_file_enter
-ffffffff813c6920 t __traceiter_ext4_sync_file_exit
-ffffffff813c6970 t __traceiter_ext4_sync_fs
-ffffffff813c69c0 t __traceiter_ext4_alloc_da_blocks
-ffffffff813c6a10 t __traceiter_ext4_mballoc_alloc
-ffffffff813c6a60 t __traceiter_ext4_mballoc_prealloc
-ffffffff813c6ab0 t __traceiter_ext4_mballoc_discard
-ffffffff813c6b20 t __traceiter_ext4_mballoc_free
-ffffffff813c6b90 t __traceiter_ext4_forget
-ffffffff813c6bf0 t __traceiter_ext4_da_update_reserve_space
-ffffffff813c6c50 t __traceiter_ext4_da_reserve_space
-ffffffff813c6ca0 t __traceiter_ext4_da_release_space
-ffffffff813c6cf0 t __traceiter_ext4_mb_bitmap_load
-ffffffff813c6d40 t __traceiter_ext4_mb_buddy_bitmap_load
-ffffffff813c6d90 t __traceiter_ext4_load_inode_bitmap
-ffffffff813c6de0 t __traceiter_ext4_read_block_bitmap_load
-ffffffff813c6e50 t __traceiter_ext4_fallocate_enter
-ffffffff813c6ec0 t __traceiter_ext4_punch_hole
-ffffffff813c6f30 t __traceiter_ext4_zero_range
-ffffffff813c6fa0 t __traceiter_ext4_fallocate_exit
-ffffffff813c7010 t __traceiter_ext4_unlink_enter
-ffffffff813c7060 t __traceiter_ext4_unlink_exit
-ffffffff813c70b0 t __traceiter_ext4_truncate_enter
-ffffffff813c7100 t __traceiter_ext4_truncate_exit
-ffffffff813c7150 t __traceiter_ext4_ext_convert_to_initialized_enter
-ffffffff813c71b0 t __traceiter_ext4_ext_convert_to_initialized_fastpath
-ffffffff813c7220 t __traceiter_ext4_ext_map_blocks_enter
-ffffffff813c7290 t __traceiter_ext4_ind_map_blocks_enter
-ffffffff813c7300 t __traceiter_ext4_ext_map_blocks_exit
-ffffffff813c7370 t __traceiter_ext4_ind_map_blocks_exit
-ffffffff813c73e0 t __traceiter_ext4_ext_load_extent
-ffffffff813c7440 t __traceiter_ext4_load_inode
-ffffffff813c7490 t __traceiter_ext4_journal_start
-ffffffff813c7500 t __traceiter_ext4_journal_start_reserved
-ffffffff813c7560 t __traceiter_ext4_trim_extent
-ffffffff813c75d0 t __traceiter_ext4_trim_all_free
-ffffffff813c7640 t __traceiter_ext4_ext_handle_unwritten_extents
-ffffffff813c76b0 t __traceiter_ext4_get_implied_cluster_alloc_exit
-ffffffff813c7710 t __traceiter_ext4_ext_show_extent
-ffffffff813c7780 t __traceiter_ext4_remove_blocks
-ffffffff813c77f0 t __traceiter_ext4_ext_rm_leaf
-ffffffff813c7860 t __traceiter_ext4_ext_rm_idx
-ffffffff813c78b0 t __traceiter_ext4_ext_remove_space
-ffffffff813c7920 t __traceiter_ext4_ext_remove_space_done
-ffffffff813c79b0 t __traceiter_ext4_es_insert_extent
-ffffffff813c7a00 t __traceiter_ext4_es_cache_extent
-ffffffff813c7a50 t __traceiter_ext4_es_remove_extent
-ffffffff813c7ab0 t __traceiter_ext4_es_find_extent_range_enter
-ffffffff813c7b00 t __traceiter_ext4_es_find_extent_range_exit
-ffffffff813c7b50 t __traceiter_ext4_es_lookup_extent_enter
-ffffffff813c7ba0 t __traceiter_ext4_es_lookup_extent_exit
-ffffffff813c7c00 t __traceiter_ext4_es_shrink_count
-ffffffff813c7c60 t __traceiter_ext4_es_shrink_scan_enter
-ffffffff813c7cc0 t __traceiter_ext4_es_shrink_scan_exit
-ffffffff813c7d20 t __traceiter_ext4_collapse_range
-ffffffff813c7d80 t __traceiter_ext4_insert_range
-ffffffff813c7de0 t __traceiter_ext4_es_shrink
-ffffffff813c7e50 t __traceiter_ext4_es_insert_delayed_block
-ffffffff813c7ec0 t __traceiter_ext4_fsmap_low_key
-ffffffff813c7f40 t __traceiter_ext4_fsmap_high_key
-ffffffff813c7fc0 t __traceiter_ext4_fsmap_mapping
-ffffffff813c8040 t __traceiter_ext4_getfsmap_low_key
-ffffffff813c8090 t __traceiter_ext4_getfsmap_high_key
-ffffffff813c80e0 t __traceiter_ext4_getfsmap_mapping
-ffffffff813c8130 t __traceiter_ext4_shutdown
-ffffffff813c8180 t __traceiter_ext4_error
-ffffffff813c81e0 t __traceiter_ext4_prefetch_bitmaps
-ffffffff813c8250 t __traceiter_ext4_lazy_itable_init
-ffffffff813c82a0 t __traceiter_ext4_fc_replay_scan
-ffffffff813c8300 t __traceiter_ext4_fc_replay
-ffffffff813c8370 t __traceiter_ext4_fc_commit_start
-ffffffff813c83c0 t __traceiter_ext4_fc_commit_stop
-ffffffff813c8430 t __traceiter_ext4_fc_stats
-ffffffff813c8480 t __traceiter_ext4_fc_track_create
-ffffffff813c84f0 t __traceiter_ext4_fc_track_link
-ffffffff813c8560 t __traceiter_ext4_fc_track_unlink
-ffffffff813c85d0 t __traceiter_ext4_fc_track_inode
-ffffffff813c8630 t __traceiter_ext4_fc_track_range
-ffffffff813c86a0 t __traceiter_ext4_fc_cleanup
-ffffffff813c8700 t __traceiter_ext4_update_sb
-ffffffff813c8760 t trace_event_raw_event_ext4_other_inode_update_time
-ffffffff813c8840 t perf_trace_ext4_other_inode_update_time
-ffffffff813c8960 t trace_event_raw_event_ext4_free_inode
-ffffffff813c8a40 t perf_trace_ext4_free_inode
-ffffffff813c8b70 t trace_event_raw_event_ext4_request_inode
-ffffffff813c8c40 t perf_trace_ext4_request_inode
-ffffffff813c8d50 t trace_event_raw_event_ext4_allocate_inode
-ffffffff813c8e30 t perf_trace_ext4_allocate_inode
-ffffffff813c8f50 t trace_event_raw_event_ext4_evict_inode
-ffffffff813c9020 t perf_trace_ext4_evict_inode
-ffffffff813c9130 t trace_event_raw_event_ext4_drop_inode
-ffffffff813c9200 t perf_trace_ext4_drop_inode
-ffffffff813c9310 t trace_event_raw_event_ext4_nfs_commit_metadata
-ffffffff813c93e0 t perf_trace_ext4_nfs_commit_metadata
-ffffffff813c94e0 t trace_event_raw_event_ext4_mark_inode_dirty
-ffffffff813c95b0 t perf_trace_ext4_mark_inode_dirty
-ffffffff813c96c0 t trace_event_raw_event_ext4_begin_ordered_truncate
-ffffffff813c9790 t perf_trace_ext4_begin_ordered_truncate
-ffffffff813c98a0 t trace_event_raw_event_ext4__write_begin
-ffffffff813c9980 t perf_trace_ext4__write_begin
-ffffffff813c9aa0 t trace_event_raw_event_ext4__write_end
-ffffffff813c9b90 t perf_trace_ext4__write_end
-ffffffff813c9cb0 t trace_event_raw_event_ext4_writepages
-ffffffff813c9dd0 t perf_trace_ext4_writepages
-ffffffff813c9f30 t trace_event_raw_event_ext4_da_write_pages
-ffffffff813ca010 t perf_trace_ext4_da_write_pages
-ffffffff813ca140 t trace_event_raw_event_ext4_da_write_pages_extent
-ffffffff813ca220 t perf_trace_ext4_da_write_pages_extent
-ffffffff813ca340 t trace_event_raw_event_ext4_writepages_result
-ffffffff813ca440 t perf_trace_ext4_writepages_result
-ffffffff813ca580 t trace_event_raw_event_ext4__page_op
-ffffffff813ca660 t perf_trace_ext4__page_op
-ffffffff813ca780 t trace_event_raw_event_ext4_invalidate_folio_op
-ffffffff813ca880 t perf_trace_ext4_invalidate_folio_op
-ffffffff813ca9c0 t trace_event_raw_event_ext4_discard_blocks
-ffffffff813caa90 t perf_trace_ext4_discard_blocks
-ffffffff813caba0 t trace_event_raw_event_ext4__mb_new_pa
-ffffffff813cac80 t perf_trace_ext4__mb_new_pa
-ffffffff813cada0 t trace_event_raw_event_ext4_mb_release_inode_pa
-ffffffff813cae80 t perf_trace_ext4_mb_release_inode_pa
-ffffffff813cafa0 t trace_event_raw_event_ext4_mb_release_group_pa
-ffffffff813cb070 t perf_trace_ext4_mb_release_group_pa
-ffffffff813cb180 t trace_event_raw_event_ext4_discard_preallocations
-ffffffff813cb260 t perf_trace_ext4_discard_preallocations
-ffffffff813cb380 t trace_event_raw_event_ext4_mb_discard_preallocations
-ffffffff813cb440 t perf_trace_ext4_mb_discard_preallocations
-ffffffff813cb540 t trace_event_raw_event_ext4_request_blocks
-ffffffff813cb650 t perf_trace_ext4_request_blocks
-ffffffff813cb7a0 t trace_event_raw_event_ext4_allocate_blocks
-ffffffff813cb8c0 t perf_trace_ext4_allocate_blocks
-ffffffff813cba10 t trace_event_raw_event_ext4_free_blocks
-ffffffff813cbb00 t perf_trace_ext4_free_blocks
-ffffffff813cbc30 t trace_event_raw_event_ext4_sync_file_enter
-ffffffff813cbd20 t perf_trace_ext4_sync_file_enter
-ffffffff813cbe50 t trace_event_raw_event_ext4_sync_file_exit
-ffffffff813cbf20 t perf_trace_ext4_sync_file_exit
-ffffffff813cc030 t trace_event_raw_event_ext4_sync_fs
-ffffffff813cc0f0 t perf_trace_ext4_sync_fs
-ffffffff813cc1f0 t trace_event_raw_event_ext4_alloc_da_blocks
-ffffffff813cc2c0 t perf_trace_ext4_alloc_da_blocks
-ffffffff813cc3d0 t trace_event_raw_event_ext4_mballoc_alloc
-ffffffff813cc520 t perf_trace_ext4_mballoc_alloc
-ffffffff813cc6c0 t trace_event_raw_event_ext4_mballoc_prealloc
-ffffffff813cc7d0 t perf_trace_ext4_mballoc_prealloc
-ffffffff813cc910 t trace_event_raw_event_ext4__mballoc
-ffffffff813cca00 t perf_trace_ext4__mballoc
-ffffffff813ccb30 t trace_event_raw_event_ext4_forget
-ffffffff813ccc10 t perf_trace_ext4_forget
-ffffffff813ccd30 t trace_event_raw_event_ext4_da_update_reserve_space
-ffffffff813cce30 t perf_trace_ext4_da_update_reserve_space
-ffffffff813ccf70 t trace_event_raw_event_ext4_da_reserve_space
-ffffffff813cd050 t perf_trace_ext4_da_reserve_space
-ffffffff813cd170 t trace_event_raw_event_ext4_da_release_space
-ffffffff813cd260 t perf_trace_ext4_da_release_space
-ffffffff813cd390 t trace_event_raw_event_ext4__bitmap_load
-ffffffff813cd450 t perf_trace_ext4__bitmap_load
-ffffffff813cd550 t trace_event_raw_event_ext4_read_block_bitmap_load
-ffffffff813cd620 t perf_trace_ext4_read_block_bitmap_load
-ffffffff813cd730 t trace_event_raw_event_ext4__fallocate_mode
-ffffffff813cd820 t perf_trace_ext4__fallocate_mode
-ffffffff813cd940 t trace_event_raw_event_ext4_fallocate_exit
-ffffffff813cda30 t perf_trace_ext4_fallocate_exit
-ffffffff813cdb50 t trace_event_raw_event_ext4_unlink_enter
-ffffffff813cdc30 t perf_trace_ext4_unlink_enter
-ffffffff813cdd50 t trace_event_raw_event_ext4_unlink_exit
-ffffffff813cde20 t perf_trace_ext4_unlink_exit
-ffffffff813cdf30 t trace_event_raw_event_ext4__truncate
-ffffffff813ce000 t perf_trace_ext4__truncate
-ffffffff813ce110 t trace_event_raw_event_ext4_ext_convert_to_initialized_enter
-ffffffff813ce230 t perf_trace_ext4_ext_convert_to_initialized_enter
-ffffffff813ce390 t trace_event_raw_event_ext4_ext_convert_to_initialized_fastpath
-ffffffff813ce4f0 t perf_trace_ext4_ext_convert_to_initialized_fastpath
-ffffffff813ce680 t trace_event_raw_event_ext4__map_blocks_enter
-ffffffff813ce770 t perf_trace_ext4__map_blocks_enter
-ffffffff813ce890 t trace_event_raw_event_ext4__map_blocks_exit
-ffffffff813ce990 t perf_trace_ext4__map_blocks_exit
-ffffffff813cead0 t trace_event_raw_event_ext4_ext_load_extent
-ffffffff813cebb0 t perf_trace_ext4_ext_load_extent
-ffffffff813cecd0 t trace_event_raw_event_ext4_load_inode
-ffffffff813ceda0 t perf_trace_ext4_load_inode
-ffffffff813ceea0 t trace_event_raw_event_ext4_journal_start
-ffffffff813cef90 t perf_trace_ext4_journal_start
-ffffffff813cf0b0 t trace_event_raw_event_ext4_journal_start_reserved
-ffffffff813cf180 t perf_trace_ext4_journal_start_reserved
-ffffffff813cf290 t trace_event_raw_event_ext4__trim
-ffffffff813cf380 t perf_trace_ext4__trim
-ffffffff813cf4b0 t trace_event_raw_event_ext4_ext_handle_unwritten_extents
-ffffffff813cf5c0 t perf_trace_ext4_ext_handle_unwritten_extents
-ffffffff813cf710 t trace_event_raw_event_ext4_get_implied_cluster_alloc_exit
-ffffffff813cf800 t perf_trace_ext4_get_implied_cluster_alloc_exit
-ffffffff813cf930 t trace_event_raw_event_ext4_ext_show_extent
-ffffffff813cfa20 t perf_trace_ext4_ext_show_extent
-ffffffff813cfb40 t trace_event_raw_event_ext4_remove_blocks
-ffffffff813cfc80 t perf_trace_ext4_remove_blocks
-ffffffff813cfdf0 t trace_event_raw_event_ext4_ext_rm_leaf
-ffffffff813cff20 t perf_trace_ext4_ext_rm_leaf
-ffffffff813d0090 t trace_event_raw_event_ext4_ext_rm_idx
-ffffffff813d0160 t perf_trace_ext4_ext_rm_idx
-ffffffff813d0270 t trace_event_raw_event_ext4_ext_remove_space
-ffffffff813d0360 t perf_trace_ext4_ext_remove_space
-ffffffff813d0480 t trace_event_raw_event_ext4_ext_remove_space_done
-ffffffff813d0590 t perf_trace_ext4_ext_remove_space_done
-ffffffff813d06e0 t trace_event_raw_event_ext4__es_extent
-ffffffff813d07f0 t perf_trace_ext4__es_extent
-ffffffff813d0940 t trace_event_raw_event_ext4_es_remove_extent
-ffffffff813d0a20 t perf_trace_ext4_es_remove_extent
-ffffffff813d0b40 t trace_event_raw_event_ext4_es_find_extent_range_enter
-ffffffff813d0c10 t perf_trace_ext4_es_find_extent_range_enter
-ffffffff813d0d20 t trace_event_raw_event_ext4_es_find_extent_range_exit
-ffffffff813d0e30 t perf_trace_ext4_es_find_extent_range_exit
-ffffffff813d0f80 t trace_event_raw_event_ext4_es_lookup_extent_enter
-ffffffff813d1050 t perf_trace_ext4_es_lookup_extent_enter
-ffffffff813d1160 t trace_event_raw_event_ext4_es_lookup_extent_exit
-ffffffff813d1280 t perf_trace_ext4_es_lookup_extent_exit
-ffffffff813d13d0 t trace_event_raw_event_ext4__es_shrink_enter
-ffffffff813d14a0 t perf_trace_ext4__es_shrink_enter
-ffffffff813d15b0 t trace_event_raw_event_ext4_es_shrink_scan_exit
-ffffffff813d1680 t perf_trace_ext4_es_shrink_scan_exit
-ffffffff813d1790 t trace_event_raw_event_ext4_collapse_range
-ffffffff813d1870 t perf_trace_ext4_collapse_range
-ffffffff813d1990 t trace_event_raw_event_ext4_insert_range
-ffffffff813d1a70 t perf_trace_ext4_insert_range
-ffffffff813d1b90 t trace_event_raw_event_ext4_es_shrink
-ffffffff813d1c90 t perf_trace_ext4_es_shrink
-ffffffff813d1dd0 t trace_event_raw_event_ext4_es_insert_delayed_block
-ffffffff813d1ef0 t perf_trace_ext4_es_insert_delayed_block
-ffffffff813d2040 t trace_event_raw_event_ext4_fsmap_class
-ffffffff813d2160 t perf_trace_ext4_fsmap_class
-ffffffff813d22c0 t trace_event_raw_event_ext4_getfsmap_class
-ffffffff813d23d0 t perf_trace_ext4_getfsmap_class
-ffffffff813d2520 t trace_event_raw_event_ext4_shutdown
-ffffffff813d25e0 t perf_trace_ext4_shutdown
-ffffffff813d26e0 t trace_event_raw_event_ext4_error
-ffffffff813d27b0 t perf_trace_ext4_error
-ffffffff813d28c0 t trace_event_raw_event_ext4_prefetch_bitmaps
-ffffffff813d29a0 t perf_trace_ext4_prefetch_bitmaps
-ffffffff813d2ab0 t trace_event_raw_event_ext4_lazy_itable_init
-ffffffff813d2b70 t perf_trace_ext4_lazy_itable_init
-ffffffff813d2c70 t trace_event_raw_event_ext4_fc_replay_scan
-ffffffff813d2d40 t perf_trace_ext4_fc_replay_scan
-ffffffff813d2e50 t trace_event_raw_event_ext4_fc_replay
-ffffffff813d2f40 t perf_trace_ext4_fc_replay
-ffffffff813d3060 t trace_event_raw_event_ext4_fc_commit_start
-ffffffff813d3120 t perf_trace_ext4_fc_commit_start
-ffffffff813d3220 t trace_event_raw_event_ext4_fc_commit_stop
-ffffffff813d3340 t perf_trace_ext4_fc_commit_stop
-ffffffff813d3490 t trace_event_raw_event_ext4_fc_stats
-ffffffff813d3630 t perf_trace_ext4_fc_stats
-ffffffff813d3810 t trace_event_raw_event_ext4_fc_track_dentry
-ffffffff813d3900 t perf_trace_ext4_fc_track_dentry
-ffffffff813d3a30 t trace_event_raw_event_ext4_fc_track_inode
-ffffffff813d3b20 t perf_trace_ext4_fc_track_inode
-ffffffff813d3c50 t trace_event_raw_event_ext4_fc_track_range
-ffffffff813d3d60 t perf_trace_ext4_fc_track_range
-ffffffff813d3ea0 t trace_event_raw_event_ext4_fc_cleanup
-ffffffff813d3f80 t perf_trace_ext4_fc_cleanup
-ffffffff813d40a0 t trace_event_raw_event_ext4_update_sb
-ffffffff813d4170 t perf_trace_ext4_update_sb
-ffffffff813d4280 t ext4_read_bh_nowait
-ffffffff813d42f0 t ext4_read_bh
-ffffffff813d4380 t ext4_read_bh_lock
-ffffffff813d4420 t ext4_sb_bread
-ffffffff813d4440 t __ext4_sb_bread_gfp.llvm.14883011802656452916
-ffffffff813d44d0 t ext4_sb_bread_unmovable
-ffffffff813d44f0 t ext4_sb_breadahead_unmovable
-ffffffff813d4580 t ext4_superblock_csum
-ffffffff813d45f0 t ext4_superblock_csum_set
-ffffffff813d46a0 t ext4_block_bitmap
-ffffffff813d46d0 t ext4_inode_bitmap
-ffffffff813d4700 t ext4_inode_table
-ffffffff813d4730 t ext4_free_group_clusters
-ffffffff813d4760 t ext4_free_inodes_count
-ffffffff813d4790 t ext4_used_dirs_count
-ffffffff813d47c0 t ext4_itable_unused_count
-ffffffff813d47f0 t ext4_block_bitmap_set
-ffffffff813d4820 t ext4_inode_bitmap_set
-ffffffff813d4850 t ext4_inode_table_set
-ffffffff813d4880 t ext4_free_group_clusters_set
-ffffffff813d48b0 t ext4_free_inodes_set
-ffffffff813d48e0 t ext4_used_dirs_set
-ffffffff813d4910 t ext4_itable_unused_set
-ffffffff813d4940 t __ext4_error
-ffffffff813d4b50 t ext4_handle_error
-ffffffff813d4d80 t __ext4_error_inode
-ffffffff813d4fc0 t __ext4_error_file
-ffffffff813d52b0 t ext4_decode_error
-ffffffff813d5360 t __ext4_std_error
-ffffffff813d5550 t __ext4_msg
-ffffffff813d56b0 t __ext4_warning
-ffffffff813d57b0 t __ext4_warning_inode
-ffffffff813d58d0 t __ext4_grp_locked_error
-ffffffff813d5c40 t ext4_mark_group_bitmap_corrupted
-ffffffff813d5d50 t ext4_update_dynamic_rev
-ffffffff813d5da0 t ext4_clear_inode
-ffffffff813d5e20 t ext4_seq_options_show
-ffffffff813d5e80 t _ext4_show_options
-ffffffff813d6440 t ext4_alloc_flex_bg_array
-ffffffff813d6670 t ext4_group_desc_csum_verify
-ffffffff813d66e0 t ext4_group_desc_csum
-ffffffff813d6930 t ext4_group_desc_csum_set
-ffffffff813d6990 t ext4_feature_set_ok
-ffffffff813d6a70 t ext4_register_li_request
-ffffffff813d6db0 t ext4_calculate_overhead
-ffffffff813d7260 t ext4_get_journal_inode
-ffffffff813d7320 t ext4_force_commit
-ffffffff813d7350 t trace_raw_output_ext4_other_inode_update_time
-ffffffff813d73d0 t trace_raw_output_ext4_free_inode
-ffffffff813d7450 t trace_raw_output_ext4_request_inode
-ffffffff813d74c0 t trace_raw_output_ext4_allocate_inode
-ffffffff813d7530 t trace_raw_output_ext4_evict_inode
-ffffffff813d75a0 t trace_raw_output_ext4_drop_inode
-ffffffff813d7610 t trace_raw_output_ext4_nfs_commit_metadata
-ffffffff813d7670 t trace_raw_output_ext4_mark_inode_dirty
-ffffffff813d76e0 t trace_raw_output_ext4_begin_ordered_truncate
-ffffffff813d7750 t trace_raw_output_ext4__write_begin
-ffffffff813d77c0 t trace_raw_output_ext4__write_end
-ffffffff813d7830 t trace_raw_output_ext4_writepages
-ffffffff813d78c0 t trace_raw_output_ext4_da_write_pages
-ffffffff813d7930 t trace_raw_output_ext4_da_write_pages_extent
-ffffffff813d79f0 t trace_raw_output_ext4_writepages_result
-ffffffff813d7a70 t trace_raw_output_ext4__page_op
-ffffffff813d7ae0 t trace_raw_output_ext4_invalidate_folio_op
-ffffffff813d7b50 t trace_raw_output_ext4_discard_blocks
-ffffffff813d7bc0 t trace_raw_output_ext4__mb_new_pa
-ffffffff813d7c30 t trace_raw_output_ext4_mb_release_inode_pa
-ffffffff813d7ca0 t trace_raw_output_ext4_mb_release_group_pa
-ffffffff813d7d10 t trace_raw_output_ext4_discard_preallocations
-ffffffff813d7d80 t trace_raw_output_ext4_mb_discard_preallocations
-ffffffff813d7de0 t trace_raw_output_ext4_request_blocks
-ffffffff813d7eb0 t trace_raw_output_ext4_allocate_blocks
-ffffffff813d7f90 t trace_raw_output_ext4_free_blocks
-ffffffff813d8060 t trace_raw_output_ext4_sync_file_enter
-ffffffff813d80d0 t trace_raw_output_ext4_sync_file_exit
-ffffffff813d8140 t trace_raw_output_ext4_sync_fs
-ffffffff813d81a0 t trace_raw_output_ext4_alloc_da_blocks
-ffffffff813d8210 t trace_raw_output_ext4_mballoc_alloc
-ffffffff813d83a0 t trace_raw_output_ext4_mballoc_prealloc
-ffffffff813d8440 t trace_raw_output_ext4__mballoc
-ffffffff813d84b0 t trace_raw_output_ext4_forget
-ffffffff813d8520 t trace_raw_output_ext4_da_update_reserve_space
-ffffffff813d85a0 t trace_raw_output_ext4_da_reserve_space
-ffffffff813d8610 t trace_raw_output_ext4_da_release_space
-ffffffff813d8690 t trace_raw_output_ext4__bitmap_load
-ffffffff813d86f0 t trace_raw_output_ext4_read_block_bitmap_load
-ffffffff813d8760 t trace_raw_output_ext4__fallocate_mode
-ffffffff813d8820 t trace_raw_output_ext4_fallocate_exit
-ffffffff813d8890 t trace_raw_output_ext4_unlink_enter
-ffffffff813d8900 t trace_raw_output_ext4_unlink_exit
-ffffffff813d8970 t trace_raw_output_ext4__truncate
-ffffffff813d89e0 t trace_raw_output_ext4_ext_convert_to_initialized_enter
-ffffffff813d8a60 t trace_raw_output_ext4_ext_convert_to_initialized_fastpath
-ffffffff813d8b00 t trace_raw_output_ext4__map_blocks_enter
-ffffffff813d8bc0 t trace_raw_output_ext4__map_blocks_exit
-ffffffff813d8cc0 t trace_raw_output_ext4_ext_load_extent
-ffffffff813d8d30 t trace_raw_output_ext4_load_inode
-ffffffff813d8d90 t trace_raw_output_ext4_journal_start
-ffffffff813d8e00 t trace_raw_output_ext4_journal_start_reserved
-ffffffff813d8e70 t trace_raw_output_ext4__trim
-ffffffff813d8ee0 t trace_raw_output_ext4_ext_handle_unwritten_extents
-ffffffff813d8fb0 t trace_raw_output_ext4_get_implied_cluster_alloc_exit
-ffffffff813d9080 t trace_raw_output_ext4_ext_show_extent
-ffffffff813d90f0 t trace_raw_output_ext4_remove_blocks
-ffffffff813d9190 t trace_raw_output_ext4_ext_rm_leaf
-ffffffff813d9220 t trace_raw_output_ext4_ext_rm_idx
-ffffffff813d9290 t trace_raw_output_ext4_ext_remove_space
-ffffffff813d9300 t trace_raw_output_ext4_ext_remove_space_done
-ffffffff813d9390 t trace_raw_output_ext4__es_extent
-ffffffff813d9460 t trace_raw_output_ext4_es_remove_extent
-ffffffff813d94d0 t trace_raw_output_ext4_es_find_extent_range_enter
-ffffffff813d9540 t trace_raw_output_ext4_es_find_extent_range_exit
-ffffffff813d9610 t trace_raw_output_ext4_es_lookup_extent_enter
-ffffffff813d9680 t trace_raw_output_ext4_es_lookup_extent_exit
-ffffffff813d9760 t trace_raw_output_ext4__es_shrink_enter
-ffffffff813d97d0 t trace_raw_output_ext4_es_shrink_scan_exit
-ffffffff813d9840 t trace_raw_output_ext4_collapse_range
-ffffffff813d98b0 t trace_raw_output_ext4_insert_range
-ffffffff813d9920 t trace_raw_output_ext4_es_shrink
-ffffffff813d9990 t trace_raw_output_ext4_es_insert_delayed_block
-ffffffff813d9a60 t trace_raw_output_ext4_fsmap_class
-ffffffff813d9ae0 t trace_raw_output_ext4_getfsmap_class
-ffffffff813d9b60 t trace_raw_output_ext4_shutdown
-ffffffff813d9bc0 t trace_raw_output_ext4_error
-ffffffff813d9c30 t trace_raw_output_ext4_prefetch_bitmaps
-ffffffff813d9ca0 t trace_raw_output_ext4_lazy_itable_init
-ffffffff813d9d00 t trace_raw_output_ext4_fc_replay_scan
-ffffffff813d9d70 t trace_raw_output_ext4_fc_replay
-ffffffff813d9de0 t trace_raw_output_ext4_fc_commit_start
-ffffffff813d9e40 t trace_raw_output_ext4_fc_commit_stop
-ffffffff813d9ec0 t trace_raw_output_ext4_fc_stats
-ffffffff813da0f0 t trace_raw_output_ext4_fc_track_dentry
-ffffffff813da160 t trace_raw_output_ext4_fc_track_inode
-ffffffff813da1d0 t trace_raw_output_ext4_fc_track_range
-ffffffff813da250 t trace_raw_output_ext4_fc_cleanup
-ffffffff813da2c0 t trace_raw_output_ext4_update_sb
-ffffffff813da330 t ext4_commit_super
-ffffffff813da480 t ext4_update_super
-ffffffff813da9d0 t ext4_lazyinit_thread
-ffffffff813db070 t ext4_init_fs_context
-ffffffff813db0b0 t ext4_fc_free
-ffffffff813db0f0 t ext4_parse_param
-ffffffff813db8e0 t ext4_get_tree
-ffffffff813db900 t ext4_reconfigure
-ffffffff813dc020 t ext4_fill_super
-ffffffff813ddff0 t ext4_check_opt_consistency
-ffffffff813de160 t ext4_apply_options
-ffffffff813de350 t ext4_journal_data_mode_check
-ffffffff813de430 t ext4_check_feature_compatibility
-ffffffff813de590 t ext4_max_bitmap_size
-ffffffff813de660 t ext4_handle_clustersize
-ffffffff813de7d0 t ext4_geometry_check
-ffffffff813de9c0 t ext4_group_desc_init
-ffffffff813df1e0 t print_daily_error_info
-ffffffff813df350 t flush_stashed_error_work
-ffffffff813df460 t ext4_get_stripe_size
-ffffffff813df4c0 t ext4_fast_commit_init
-ffffffff813df610 t ext4_load_and_init_journal
-ffffffff813e0020 t ext4_setup_super
-ffffffff813e0270 t ext4_set_resv_clusters
-ffffffff813e02e0 t ext4_journal_commit_callback
-ffffffff813e03b0 t ext4_fill_flex_info
-ffffffff813e0500 t ext4_mark_recovery_complete
-ffffffff813e0620 t ext4_unregister_li_request
-ffffffff813e06d0 t ext4_group_desc_free
-ffffffff813e0740 t ext4_alloc_inode
-ffffffff813e08e0 t ext4_destroy_inode
-ffffffff813e09a0 t ext4_free_in_core_inode
-ffffffff813e0a00 t ext4_drop_inode
-ffffffff813e0a70 t ext4_put_super
-ffffffff813e0e80 t ext4_sync_fs
-ffffffff813e1020 t ext4_freeze
-ffffffff813e10c0 t ext4_unfreeze
-ffffffff813e11d0 t ext4_statfs
-ffffffff813e1340 t ext4_show_options
-ffffffff813e1360 t ext4_fh_to_dentry
-ffffffff813e1380 t ext4_fh_to_parent
-ffffffff813e13a0 t ext4_nfs_commit_metadata
-ffffffff813e14a0 t ext4_nfs_get_inode
-ffffffff813e14f0 t ext4_journal_submit_inode_data_buffers
-ffffffff813e1600 t ext4_journal_finish_inode_data_buffers
-ffffffff813e1630 t ext4_clear_journal_err
-ffffffff813e17f0 t ext4_init_journal_params
-ffffffff813e1890 t ext4_journalled_writepage_callback
-ffffffff813e1900 t register_as_ext3
-ffffffff813e1930 t ext4_encrypted_get_link.llvm.5786596231909649837
-ffffffff813e19c0 t ext4_encrypted_symlink_getattr.llvm.5786596231909649837
-ffffffff813e19e0 t ext4_get_link.llvm.5786596231909649837
-ffffffff813e1b10 t ext4_free_link
-ffffffff813e1b30 t ext4_notify_error_sysfs
-ffffffff813e1b50 t ext4_register_sysfs
-ffffffff813e1d00 t ext4_unregister_sysfs
-ffffffff813e1d40 t ext4_exit_sysfs
-ffffffff813e1da0 t ext4_sb_release
-ffffffff813e1dc0 t ext4_attr_show
-ffffffff813e2190 t ext4_attr_store
-ffffffff813e2460 t ext4_feat_release
-ffffffff813e2470 t ext4_evict_ea_inode
-ffffffff813e2530 t mb_cache_entry_put
-ffffffff813e2570 t ext4_xattr_ibody_get
-ffffffff813e27c0 t __xattr_check_inode
-ffffffff813e28f0 t ext4_xattr_inode_get
-ffffffff813e2b10 t ext4_xattr_get
-ffffffff813e2df0 t ext4_listxattr
-ffffffff813e3240 t ext4_get_inode_usage
-ffffffff813e3420 t __ext4_xattr_check_block
-ffffffff813e3660 t __ext4_xattr_set_credits
-ffffffff813e3740 t ext4_xattr_ibody_find
-ffffffff813e38f0 t ext4_xattr_ibody_set
-ffffffff813e39a0 t ext4_xattr_set_entry
-ffffffff813e4ba0 t ext4_xattr_set_handle
-ffffffff813e5530 t ext4_xattr_block_find
-ffffffff813e56c0 t ext4_xattr_block_set
-ffffffff813e63e0 t ext4_xattr_value_same
-ffffffff813e6430 t ext4_xattr_update_super_block
-ffffffff813e6500 t ext4_xattr_set_credits
-ffffffff813e66d0 t ext4_xattr_set
-ffffffff813e6810 t ext4_expand_extra_isize_ea
-ffffffff813e70e0 t ext4_xattr_delete_inode
-ffffffff813e74f0 t ext4_xattr_inode_dec_ref_all
-ffffffff813e7930 t ext4_xattr_inode_iget
-ffffffff813e7ad0 t ext4_xattr_release_block
-ffffffff813e7de0 t ext4_xattr_inode_array_free
-ffffffff813e7e30 t ext4_xattr_create_cache
-ffffffff813e7e50 t ext4_xattr_destroy_cache
-ffffffff813e7e70 t ext4_xattr_inode_read
-ffffffff813e8100 t ext4_xattr_block_cache_insert
-ffffffff813e8140 t ext4_xattr_block_csum
-ffffffff813e82a0 t ext4_xattr_inode_update_ref
-ffffffff813e84b0 t ext4_xattr_block_csum_set
-ffffffff813e8520 t ext4_xattr_inode_inc_ref_all
-ffffffff813e86e0 t ext4_xattr_hurd_list
-ffffffff813e8700 t ext4_xattr_hurd_get
-ffffffff813e8740 t ext4_xattr_hurd_set
-ffffffff813e8790 t ext4_xattr_trusted_list
-ffffffff813e87b0 t ext4_xattr_trusted_get
-ffffffff813e87e0 t ext4_xattr_trusted_set
-ffffffff813e8810 t ext4_xattr_user_list
-ffffffff813e8830 t ext4_xattr_user_get
-ffffffff813e8870 t ext4_xattr_user_set
-ffffffff813e88c0 t ext4_fc_init_inode
-ffffffff813e8930 t ext4_fc_start_update
-ffffffff813e8ab0 t ext4_fc_stop_update
-ffffffff813e8af0 t ext4_fc_del
-ffffffff813e8d60 t ext4_fc_mark_ineligible
-ffffffff813e8e40 t __ext4_fc_track_unlink
-ffffffff813e8f30 t __track_dentry_update
-ffffffff813e9180 t ext4_fc_track_unlink
-ffffffff813e91c0 t __ext4_fc_track_link
-ffffffff813e92b0 t ext4_fc_track_link
-ffffffff813e92f0 t __ext4_fc_track_create
-ffffffff813e93e0 t ext4_fc_track_create
-ffffffff813e9420 t ext4_fc_track_inode
-ffffffff813e95d0 t ext4_fc_track_range
-ffffffff813e97d0 t ext4_fc_commit
-ffffffff813ea240 t ext4_fc_record_regions
-ffffffff813ea320 t ext4_fc_replay_check_excluded
-ffffffff813ea3a0 t ext4_fc_replay_cleanup
-ffffffff813ea3e0 t ext4_fc_init
-ffffffff813ea410 t ext4_fc_replay
-ffffffff813eb880 t ext4_fc_cleanup
-ffffffff813ebba0 t ext4_fc_info_show
-ffffffff813ebd50 t ext4_fc_destroy_dentry_cache
-ffffffff813ebd70 t ext4_fc_add_tlv
-ffffffff813ebeb0 t ext4_fc_write_inode_data
-ffffffff813ec0a0 t ext4_fc_write_inode
-ffffffff813ec2f0 t ext4_fc_reserve_space
-ffffffff813ec520 t ext4_fc_submit_bh
-ffffffff813ec5c0 t ext4_end_buffer_io_sync
-ffffffff813ec5f0 t ext4_fc_add_dentry_tlv
-ffffffff813ec7a0 t ext4_fc_set_bitmaps_and_counters
-ffffffff813ec970 t ext4_fc_replay_link_internal
-ffffffff813eca90 t ext4_orphan_add
-ffffffff813ecfb0 t ext4_orphan_del
-ffffffff813ed360 t ext4_orphan_cleanup
-ffffffff813ed6d0 t ext4_process_orphan
-ffffffff813ed7c0 t ext4_release_orphan_info
-ffffffff813ed840 t ext4_orphan_file_block_trigger
-ffffffff813ed940 t ext4_init_orphan_info
-ffffffff813eddb0 t ext4_orphan_file_empty
-ffffffff813ede30 t ext4_get_acl
-ffffffff813ee090 t ext4_set_acl
-ffffffff813ee260 t __ext4_set_acl
-ffffffff813ee4b0 t ext4_init_acl
-ffffffff813ee610 t ext4_init_security
-ffffffff813ee640 t ext4_initxattrs.llvm.2778859693761138391
-ffffffff813ee6a0 t ext4_xattr_security_get
-ffffffff813ee6d0 t ext4_xattr_security_set
-ffffffff813ee700 t jbd2_journal_destroy_transaction_cache
-ffffffff813ee730 t jbd2_journal_free_transaction
-ffffffff813ee750 t jbd2__journal_start
-ffffffff813ee930 t start_this_handle
-ffffffff813ef1b0 t jbd2_journal_start
-ffffffff813ef1e0 t jbd2_journal_free_reserved
-ffffffff813ef270 t jbd2_journal_start_reserved
-ffffffff813ef3a0 t jbd2_journal_stop
-ffffffff813ef670 t jbd2_journal_extend
-ffffffff813ef7d0 t jbd2__journal_restart
-ffffffff813ef910 t stop_this_handle
-ffffffff813efa50 t jbd2_journal_restart
-ffffffff813efa70 t jbd2_journal_wait_updates
-ffffffff813efb60 t jbd2_journal_lock_updates
-ffffffff813efc70 t jbd2_journal_unlock_updates
-ffffffff813efcd0 t jbd2_journal_get_write_access
-ffffffff813efd80 t do_get_write_access
-ffffffff813f0170 t jbd2_journal_get_create_access
-ffffffff813f02a0 t __jbd2_journal_file_buffer
-ffffffff813f0410 t jbd2_journal_get_undo_access
-ffffffff813f05a0 t jbd2_journal_set_triggers
-ffffffff813f05d0 t jbd2_buffer_frozen_trigger
-ffffffff813f0600 t jbd2_buffer_abort_trigger
-ffffffff813f0630 t jbd2_journal_dirty_metadata
-ffffffff813f08f0 t jbd2_journal_forget
-ffffffff813f0b60 t __jbd2_journal_temp_unlink_buffer
-ffffffff813f0c60 t jbd2_journal_unfile_buffer
-ffffffff813f0cf0 t jbd2_journal_try_to_free_buffers
-ffffffff813f0de0 t jbd2_journal_invalidate_folio
-ffffffff813f1130 t jbd2_journal_file_buffer
-ffffffff813f11a0 t __jbd2_journal_refile_buffer
-ffffffff813f1270 t jbd2_journal_refile_buffer
-ffffffff813f12e0 t jbd2_journal_inode_ranged_write
-ffffffff813f1310 t jbd2_journal_file_inode.llvm.10111664081187438077
-ffffffff813f1440 t jbd2_journal_inode_ranged_wait
-ffffffff813f1470 t jbd2_journal_begin_ordered_truncate
-ffffffff813f1520 t wait_transaction_locked
-ffffffff813f15e0 t __dispose_buffer
-ffffffff813f1660 t jbd2_journal_submit_inode_data_buffers
-ffffffff813f1750 t jbd2_submit_inode_data
-ffffffff813f18a0 t jbd2_wait_inode_data
-ffffffff813f18e0 t jbd2_journal_finish_inode_data_buffers
-ffffffff813f1910 t jbd2_journal_commit_transaction
-ffffffff813f3350 t journal_end_buffer_io_sync
-ffffffff813f33a0 t journal_submit_commit_record
-ffffffff813f3590 t jbd2_journal_recover
-ffffffff813f3690 t do_one_pass
-ffffffff813f4440 t jbd2_journal_skip_recovery
-ffffffff813f44e0 t jread
-ffffffff813f48b0 t jbd2_descriptor_block_csum_verify
-ffffffff813f4990 t __jbd2_log_wait_for_space
-ffffffff813f4bf0 t jbd2_log_do_checkpoint
-ffffffff813f51d0 t jbd2_cleanup_journal_tail
-ffffffff813f5270 t __jbd2_journal_remove_checkpoint
-ffffffff813f5400 t jbd2_journal_shrink_checkpoint_list
-ffffffff813f57a0 t __jbd2_journal_clean_checkpoint_list
-ffffffff813f5940 t jbd2_journal_destroy_checkpoint
-ffffffff813f59a0 t __jbd2_journal_drop_transaction
-ffffffff813f5ad0 t __jbd2_journal_insert_checkpoint
-ffffffff813f5b60 t jbd2_journal_destroy_revoke_record_cache
-ffffffff813f5b90 t jbd2_journal_destroy_revoke_table_cache
-ffffffff813f5bc0 t jbd2_journal_init_revoke
-ffffffff813f5d00 t jbd2_journal_init_revoke_table
-ffffffff813f5e20 t jbd2_journal_destroy_revoke
-ffffffff813f5ec0 t jbd2_journal_revoke
-ffffffff813f60a0 t jbd2_journal_cancel_revoke
-ffffffff813f61e0 t jbd2_clear_buffer_revoked_flags
-ffffffff813f6290 t jbd2_journal_switch_revoke_table
-ffffffff813f62f0 t jbd2_journal_write_revoke_records
-ffffffff813f65f0 t jbd2_journal_set_revoke
-ffffffff813f6740 t jbd2_journal_test_revoke
-ffffffff813f67e0 t jbd2_journal_clear_revoke
-ffffffff813f6890 t __traceiter_jbd2_checkpoint
-ffffffff813f68e0 t __traceiter_jbd2_start_commit
-ffffffff813f6930 t __traceiter_jbd2_commit_locking
-ffffffff813f6980 t __traceiter_jbd2_commit_flushing
-ffffffff813f69d0 t __traceiter_jbd2_commit_logging
-ffffffff813f6a20 t __traceiter_jbd2_drop_transaction
-ffffffff813f6a70 t __traceiter_jbd2_end_commit
-ffffffff813f6ac0 t __traceiter_jbd2_submit_inode_data
-ffffffff813f6b10 t __traceiter_jbd2_handle_start
-ffffffff813f6b80 t __traceiter_jbd2_handle_restart
-ffffffff813f6bf0 t __traceiter_jbd2_handle_extend
-ffffffff813f6c70 t __traceiter_jbd2_handle_stats
-ffffffff813f6cf0 t __traceiter_jbd2_run_stats
-ffffffff813f6d50 t __traceiter_jbd2_checkpoint_stats
-ffffffff813f6db0 t __traceiter_jbd2_update_log_tail
-ffffffff813f6e20 t __traceiter_jbd2_write_superblock
-ffffffff813f6e70 t __traceiter_jbd2_lock_buffer_stall
-ffffffff813f6ec0 t __traceiter_jbd2_shrink_count
-ffffffff813f6f20 t __traceiter_jbd2_shrink_scan_enter
-ffffffff813f6f80 t __traceiter_jbd2_shrink_scan_exit
-ffffffff813f6ff0 t __traceiter_jbd2_shrink_checkpoint_list
-ffffffff813f7070 t trace_event_raw_event_jbd2_checkpoint
-ffffffff813f7140 t perf_trace_jbd2_checkpoint
-ffffffff813f7250 t trace_event_raw_event_jbd2_commit
-ffffffff813f7330 t perf_trace_jbd2_commit
-ffffffff813f7450 t trace_event_raw_event_jbd2_end_commit
-ffffffff813f7540 t perf_trace_jbd2_end_commit
-ffffffff813f7660 t trace_event_raw_event_jbd2_submit_inode_data
-ffffffff813f7730 t perf_trace_jbd2_submit_inode_data
-ffffffff813f7830 t trace_event_raw_event_jbd2_handle_start_class
-ffffffff813f7910 t perf_trace_jbd2_handle_start_class
-ffffffff813f7a30 t trace_event_raw_event_jbd2_handle_extend
-ffffffff813f7b20 t perf_trace_jbd2_handle_extend
-ffffffff813f7c40 t trace_event_raw_event_jbd2_handle_stats
-ffffffff813f7d30 t perf_trace_jbd2_handle_stats
-ffffffff813f7e60 t trace_event_raw_event_jbd2_run_stats
-ffffffff813f7f80 t perf_trace_jbd2_run_stats
-ffffffff813f80d0 t trace_event_raw_event_jbd2_checkpoint_stats
-ffffffff813f81b0 t perf_trace_jbd2_checkpoint_stats
-ffffffff813f82d0 t trace_event_raw_event_jbd2_update_log_tail
-ffffffff813f83c0 t perf_trace_jbd2_update_log_tail
-ffffffff813f84f0 t trace_event_raw_event_jbd2_write_superblock
-ffffffff813f85c0 t perf_trace_jbd2_write_superblock
-ffffffff813f86d0 t trace_event_raw_event_jbd2_lock_buffer_stall
-ffffffff813f8790 t perf_trace_jbd2_lock_buffer_stall
-ffffffff813f8890 t trace_event_raw_event_jbd2_journal_shrink
-ffffffff813f8970 t perf_trace_jbd2_journal_shrink
-ffffffff813f8a80 t trace_event_raw_event_jbd2_shrink_scan_exit
-ffffffff813f8b60 t perf_trace_jbd2_shrink_scan_exit
-ffffffff813f8c80 t trace_event_raw_event_jbd2_shrink_checkpoint_list
-ffffffff813f8d80 t perf_trace_jbd2_shrink_checkpoint_list
-ffffffff813f8ec0 t jbd2_journal_write_metadata_buffer
-ffffffff813f9360 t jbd2_alloc
-ffffffff813f93f0 t jbd2_free
-ffffffff813f9470 t jbd2_log_start_commit
-ffffffff813f9540 t jbd2_journal_force_commit_nested
-ffffffff813f9560 t __jbd2_journal_force_commit.llvm.4014910033408231570
-ffffffff813f9610 t jbd2_journal_force_commit
-ffffffff813f9640 t jbd2_journal_start_commit
-ffffffff813f96f0 t jbd2_trans_will_send_data_barrier
-ffffffff813f9780 t jbd2_log_wait_commit
-ffffffff813f98e0 t jbd2_fc_begin_commit
-ffffffff813f9a00 t jbd2_fc_end_commit
-ffffffff813f9a70 t jbd2_fc_end_commit_fallback
-ffffffff813f9b20 t jbd2_transaction_committed
-ffffffff813f9b90 t jbd2_complete_transaction
-ffffffff813f9c10 t jbd2_journal_next_log_block
-ffffffff813f9d20 t jbd2_journal_bmap
-ffffffff813f9dd0 t jbd2_fc_get_buf
-ffffffff813f9ef0 t jbd2_fc_wait_bufs
-ffffffff813f9fa0 t jbd2_fc_release_bufs
-ffffffff813f9ff0 t jbd2_journal_abort
-ffffffff813fa120 t jbd2_journal_get_descriptor_buffer
-ffffffff813fa210 t jbd2_descriptor_block_csum_set
-ffffffff813fa2e0 t jbd2_journal_get_log_tail
-ffffffff813fa3a0 t __jbd2_update_log_tail
-ffffffff813fa490 t jbd2_journal_update_sb_log_tail
-ffffffff813fa570 t jbd2_update_log_tail
-ffffffff813fa5d0 t jbd2_journal_init_dev
-ffffffff813fa670 t journal_init_common
-ffffffff813fa9a0 t jbd2_journal_init_inode
-ffffffff813faae0 t jbd2_write_superblock
-ffffffff813fad20 t jbd2_journal_update_sb_errno
-ffffffff813fad80 t jbd2_journal_load
-ffffffff813fb160 t jbd2_journal_destroy
-ffffffff813fb480 t jbd2_mark_journal_empty
-ffffffff813fb550 t jbd2_journal_check_used_features
-ffffffff813fb5e0 t journal_get_superblock
-ffffffff813fb970 t jbd2_journal_check_available_features
-ffffffff813fb9c0 t jbd2_journal_set_features
-ffffffff813fbd40 t jbd2_journal_clear_features
-ffffffff813fbdc0 t jbd2_journal_flush
-ffffffff813fc1e0 t jbd2_journal_wipe
-ffffffff813fc310 t jbd2_journal_errno
-ffffffff813fc350 t jbd2_journal_clear_err
-ffffffff813fc3a0 t jbd2_journal_ack_err
-ffffffff813fc3e0 t jbd2_journal_blocks_per_page
-ffffffff813fc400 t journal_tag_bytes
-ffffffff813fc450 t jbd2_journal_add_journal_head
-ffffffff813fc610 t jbd2_journal_grab_journal_head
-ffffffff813fc6b0 t jbd2_journal_put_journal_head
-ffffffff813fc950 t jbd2_journal_init_jbd_inode
-ffffffff813fc9a0 t jbd2_journal_release_jbd_inode
-ffffffff813fcaf0 t jbd2_journal_destroy_caches
-ffffffff813fcc40 t trace_raw_output_jbd2_checkpoint
-ffffffff813fcca0 t trace_raw_output_jbd2_commit
-ffffffff813fcd10 t trace_raw_output_jbd2_end_commit
-ffffffff813fcd80 t trace_raw_output_jbd2_submit_inode_data
-ffffffff813fcde0 t trace_raw_output_jbd2_handle_start_class
-ffffffff813fce50 t trace_raw_output_jbd2_handle_extend
-ffffffff813fced0 t trace_raw_output_jbd2_handle_stats
-ffffffff813fcf60 t trace_raw_output_jbd2_run_stats
-ffffffff813fd030 t trace_raw_output_jbd2_checkpoint_stats
-ffffffff813fd0b0 t trace_raw_output_jbd2_update_log_tail
-ffffffff813fd120 t trace_raw_output_jbd2_write_superblock
-ffffffff813fd180 t trace_raw_output_jbd2_lock_buffer_stall
-ffffffff813fd1e0 t trace_raw_output_jbd2_journal_shrink
-ffffffff813fd250 t trace_raw_output_jbd2_shrink_scan_exit
-ffffffff813fd2c0 t trace_raw_output_jbd2_shrink_checkpoint_list
-ffffffff813fd340 t jbd2_journal_shrink_scan
-ffffffff813fd470 t jbd2_journal_shrink_count
-ffffffff813fd4f0 t jbd2_seq_info_open
-ffffffff813fd5d0 t jbd2_seq_info_release
-ffffffff813fd620 t jbd2_seq_info_start
-ffffffff813fd640 t jbd2_seq_info_stop
-ffffffff813fd650 t jbd2_seq_info_next
-ffffffff813fd660 t jbd2_seq_info_show
-ffffffff813fd8c0 t kjournald2
-ffffffff813fdb10 t commit_timeout
-ffffffff813fdb30 t ramfs_get_inode
-ffffffff813fdc50 t ramfs_init_fs_context
-ffffffff813fdca0 t ramfs_create
-ffffffff813fdd10 t ramfs_symlink
-ffffffff813fde40 t ramfs_mkdir
-ffffffff813fdec0 t ramfs_mknod
-ffffffff813fdf30 t ramfs_tmpfile
-ffffffff813fdf80 t ramfs_free_fc
-ffffffff813fdfa0 t ramfs_parse_param
-ffffffff813fe060 t ramfs_get_tree
-ffffffff813fe080 t ramfs_fill_super
-ffffffff813fe100 t ramfs_show_options
-ffffffff813fe130 t ramfs_kill_sb
-ffffffff813fe160 t ramfs_mmu_get_unmapped_area.llvm.4218441422420685174
-ffffffff813fe190 t exportfs_encode_inode_fh
-ffffffff813fe220 t exportfs_encode_fh
-ffffffff813fe310 t exportfs_decode_fh_raw
-ffffffff813fe5b0 t reconnect_path
-ffffffff813fe830 t find_acceptable_alias
-ffffffff813fe930 t exportfs_get_name
-ffffffff813feb20 t exportfs_decode_fh
-ffffffff813feb60 t filldir_one
-ffffffff813febc0 t utf8_to_utf32
-ffffffff813fed90 t utf32_to_utf8
-ffffffff813feee0 t utf8s_to_utf16s
-ffffffff813ff080 t utf16s_to_utf8s
-ffffffff813ff2f0 t __register_nls
-ffffffff813ff370 t unregister_nls
-ffffffff813ff3f0 t load_nls
-ffffffff813ff460 t unload_nls
-ffffffff813ff470 t load_nls_default
-ffffffff813ff4f0 t uni2char
-ffffffff813ff540 t uni2char
-ffffffff813ff590 t uni2char
-ffffffff813ff5e0 t uni2char
-ffffffff813ff630 t uni2char
-ffffffff813ff680 t uni2char
-ffffffff813ff6d0 t uni2char
-ffffffff813ff720 t uni2char
-ffffffff813ff770 t uni2char
-ffffffff813ff7c0 t uni2char
-ffffffff813ff810 t uni2char
-ffffffff813ff860 t uni2char
-ffffffff813ff8b0 t uni2char
-ffffffff813ff900 t uni2char
-ffffffff813ff950 t uni2char
-ffffffff813ff9a0 t uni2char
-ffffffff813ff9f0 t uni2char
-ffffffff813ffa40 t uni2char
-ffffffff813ffb30 t uni2char
-ffffffff813ffdf0 t uni2char
-ffffffff813ffec0 t uni2char
-ffffffff813fff40 t uni2char
-ffffffff813fffc0 t uni2char
-ffffffff81400010 t uni2char
-ffffffff81400060 t uni2char
-ffffffff814000b0 t uni2char
-ffffffff81400100 t uni2char
-ffffffff81400150 t uni2char
-ffffffff814001a0 t uni2char
-ffffffff814001f0 t uni2char
-ffffffff81400240 t uni2char
-ffffffff81400290 t uni2char
-ffffffff814002e0 t uni2char
-ffffffff81400330 t uni2char
-ffffffff81400380 t uni2char
-ffffffff814003d0 t uni2char
-ffffffff81400420 t uni2char
-ffffffff81400470 t uni2char
-ffffffff814004c0 t uni2char
-ffffffff81400510 t uni2char
-ffffffff814005a0 t uni2char
-ffffffff814005d0 t uni2char
-ffffffff81400620 t uni2char
-ffffffff81400670 t uni2char
-ffffffff814006c0 t uni2char
-ffffffff81400710 t uni2char
-ffffffff81400760 t uni2char
-ffffffff814007b0 t uni2char
-ffffffff81400800 t uni2char
-ffffffff81400850 t uni2char
-ffffffff814008a0 t uni2char
-ffffffff814008f0 t uni2char
-ffffffff81400940 t char2uni
-ffffffff81400970 t char2uni
-ffffffff814009a0 t char2uni
-ffffffff814009d0 t char2uni
-ffffffff81400a00 t char2uni
-ffffffff81400a30 t char2uni
-ffffffff81400a60 t char2uni
-ffffffff81400a90 t char2uni
-ffffffff81400ac0 t char2uni
-ffffffff81400af0 t char2uni
-ffffffff81400b20 t char2uni
-ffffffff81400b50 t char2uni
-ffffffff81400b80 t char2uni
-ffffffff81400bb0 t char2uni
-ffffffff81400be0 t char2uni
-ffffffff81400c10 t char2uni
-ffffffff81400c40 t char2uni
-ffffffff81400c70 t char2uni
-ffffffff81400d00 t char2uni
-ffffffff81400ff0 t char2uni
-ffffffff81401070 t char2uni
-ffffffff814010e0 t char2uni
-ffffffff81401150 t char2uni
-ffffffff81401180 t char2uni
-ffffffff814011c0 t char2uni
-ffffffff814011f0 t char2uni
-ffffffff81401220 t char2uni
-ffffffff81401250 t char2uni
-ffffffff81401280 t char2uni
-ffffffff814012b0 t char2uni
-ffffffff814012e0 t char2uni
-ffffffff81401310 t char2uni
-ffffffff81401340 t char2uni
-ffffffff81401370 t char2uni
-ffffffff814013a0 t char2uni
-ffffffff814013d0 t char2uni
-ffffffff81401400 t char2uni
-ffffffff81401430 t char2uni
-ffffffff81401460 t char2uni
-ffffffff81401490 t char2uni
-ffffffff814014e0 t char2uni
-ffffffff81401560 t char2uni
-ffffffff81401590 t char2uni
-ffffffff814015c0 t char2uni
-ffffffff814015f0 t char2uni
-ffffffff81401620 t char2uni
-ffffffff81401650 t char2uni
-ffffffff81401680 t char2uni
-ffffffff814016b0 t char2uni
-ffffffff814016e0 t char2uni
-ffffffff81401710 t char2uni
-ffffffff81401740 t char2uni
-ffffffff81401770 t sjisibm2euc
-ffffffff81401810 t utf8version_is_supported
-ffffffff81401850 t utf8nlen
-ffffffff81401990 t utf8nlookup
-ffffffff81401ba0 t utf8ncursor
-ffffffff81401c00 t utf8byte
-ffffffff81401f10 t utf8_validate
-ffffffff81401f30 t utf8_strncmp
-ffffffff814020b0 t utf8_strncasecmp
-ffffffff81402230 t utf8_strncasecmp_folded
-ffffffff81402330 t utf8_casefold
-ffffffff81402420 t utf8_casefold_hash
-ffffffff81402530 t utf8_normalize
-ffffffff81402620 t utf8_load
-ffffffff81402710 t utf8_unload
-ffffffff81402730 t fuse_set_initialized
-ffffffff81402750 t fuse_len_args
-ffffffff814027e0 t fuse_get_unique
-ffffffff81402800 t fuse_dev_wake_and_unlock.llvm.16961288504765282032
-ffffffff81402860 t fuse_queue_forget
-ffffffff814028e0 t fuse_request_end
-ffffffff81402a80 t flush_bg_queue
-ffffffff81402c50 t fuse_put_request
-ffffffff81402d30 t fuse_simple_request
-ffffffff81403370 t fuse_get_req
-ffffffff81403610 t fuse_simple_background
-ffffffff81403800 t fuse_dequeue_forget
-ffffffff81403870 t fuse_abort_conn
-ffffffff81403c50 t __fuse_get_request
-ffffffff81403c90 t list_move
-ffffffff81403cf0 t list_move
-ffffffff81403d50 t list_move
-ffffffff81403db0 t fuse_wait_aborted
-ffffffff81403e70 t fuse_dev_release
-ffffffff81403fc0 t fuse_dev_read.llvm.16961288504765282032
-ffffffff81404080 t fuse_dev_write.llvm.16961288504765282032
-ffffffff81404140 t fuse_dev_poll.llvm.16961288504765282032
-ffffffff814041f0 t fuse_dev_ioctl.llvm.16961288504765282032
-ffffffff81404320 t fuse_dev_open.llvm.16961288504765282032
-ffffffff81404340 t fuse_dev_fasync.llvm.16961288504765282032
-ffffffff81404370 t fuse_dev_splice_write.llvm.16961288504765282032
-ffffffff814048c0 t fuse_dev_splice_read.llvm.16961288504765282032
-ffffffff81404b30 t fuse_dev_cleanup
-ffffffff81404b60 t queue_interrupt
-ffffffff81404c60 t fuse_dev_do_read
-ffffffff81405140 t fuse_read_interrupt
-ffffffff814053d0 t fuse_read_forget
-ffffffff81405a10 t fuse_copy_one
-ffffffff81405ab0 t fuse_copy_args
-ffffffff81405c60 t fuse_copy_finish
-ffffffff81405ce0 t list_move_tail
-ffffffff81405d40 t list_move_tail
-ffffffff81405da0 t list_move_tail
-ffffffff81405e00 t fuse_copy_fill
-ffffffff81406070 t fuse_copy_page
-ffffffff814067c0 t fuse_dev_do_write
-ffffffff81408210 t copy_out_args
-ffffffff81408310 t fuse_retrieve_end
-ffffffff81408340 t fuse_init_dentry_root
-ffffffff81408350 t fuse_change_entry_timeout
-ffffffff81408450 t entry_attr_timeout
-ffffffff814084d0 t fuse_invalidate_attr_mask
-ffffffff81408500 t fuse_invalidate_attr
-ffffffff81408540 t fuse_invalidate_atime
-ffffffff81408580 t fuse_invalidate_entry_cache
-ffffffff81408610 t fuse_dentry_revalidate.llvm.4905078679939807016
-ffffffff81408a60 t fuse_dentry_delete.llvm.4905078679939807016
-ffffffff81408a80 t fuse_dentry_automount.llvm.4905078679939807016
-ffffffff81408af0 t fuse_dentry_canonical_path.llvm.4905078679939807016
-ffffffff81408c00 t fuse_valid_type
-ffffffff81408c40 t fuse_invalid_attr
-ffffffff81408c80 t fuse_lookup_name
-ffffffff81408fe0 t fuse_flush_time_update
-ffffffff81409050 t fuse_update_ctime
-ffffffff81409090 t fuse_update_ctime_in_cache
-ffffffff81409120 t fuse_fillattr
-ffffffff814091e0 t fuse_update_attributes
-ffffffff81409240 t fuse_reverse_inval_entry
-ffffffff814094a0 t fuse_dir_changed
-ffffffff814094e0 t fuse_allow_current_process
-ffffffff81409570 t fuse_set_nowrite
-ffffffff81409680 t fuse_release_nowrite
-ffffffff814096d0 t __fuse_release_nowrite
-ffffffff81409700 t fuse_flush_times
-ffffffff81409940 t fuse_do_setattr
-ffffffff8140a150 t fuse_init_common
-ffffffff8140a170 t fuse_init_dir
-ffffffff8140a1c0 t fuse_init_symlink
-ffffffff8140a1f0 t fuse_do_getattr
-ffffffff8140a580 t fuse_permission.llvm.4905078679939807016
-ffffffff8140a8f0 t fuse_setattr.llvm.4905078679939807016
-ffffffff8140aaf0 t fuse_getattr.llvm.4905078679939807016
-ffffffff8140ac70 t fuse_perm_getattr
-ffffffff8140aca0 t fuse_lookup
-ffffffff8140aef0 t fuse_create
-ffffffff8140b000 t fuse_link
-ffffffff8140b130 t fuse_unlink
-ffffffff8140b2f0 t fuse_symlink
-ffffffff8140b3d0 t fuse_mkdir
-ffffffff8140b4d0 t fuse_rmdir
-ffffffff8140b690 t fuse_mknod
-ffffffff8140b7c0 t fuse_rename2
-ffffffff8140b8e0 t fuse_atomic_open
-ffffffff8140bb00 t fuse_tmpfile
-ffffffff8140bbc0 t create_new_entry
-ffffffff8140bf50 t get_security_context
-ffffffff8140c0f0 t fuse_entry_unlinked
-ffffffff8140c230 t fuse_rename_common
-ffffffff8140c5e0 t fuse_create_open
-ffffffff8140cc80 t fuse_dir_ioctl
-ffffffff8140ccc0 t fuse_dir_compat_ioctl
-ffffffff8140cd00 t fuse_dir_open
-ffffffff8140cd20 t fuse_dir_release
-ffffffff8140cd40 t fuse_dir_fsync
-ffffffff8140cdf0 t fuse_get_link
-ffffffff8140cec0 t fuse_readlink_page
-ffffffff8140d000 t fuse_symlink_read_folio
-ffffffff8140d040 t fuse_file_alloc
-ffffffff8140d120 t fuse_file_free
-ffffffff8140d150 t fuse_file_open
-ffffffff8140d430 t fuse_do_open
-ffffffff8140d470 t fuse_finish_open
-ffffffff8140d5a0 t fuse_open_common
-ffffffff8140d740 t fuse_file_release
-ffffffff8140d880 t fuse_prepare_release
-ffffffff8140d990 t fuse_lock_owner_id
-ffffffff8140da30 t fuse_file_put
-ffffffff8140db00 t fuse_release_common
-ffffffff8140db30 t fuse_sync_release
-ffffffff8140db70 t fuse_fsync_common
-ffffffff8140dc60 t fuse_read_args_fill
-ffffffff8140dcb0 t fuse_write_update_attr
-ffffffff8140dd40 t fuse_direct_io
-ffffffff8140e6d0 t fuse_flush_writepages
-ffffffff8140e780 t fuse_send_writepage
-ffffffff8140e8b0 t fuse_write_inode
-ffffffff8140e970 t fuse_file_poll
-ffffffff8140eba0 t fuse_notify_poll_wakeup
-ffffffff8140ec10 t fuse_init_file_inode
-ffffffff8140ec90 t fuse_release_end
-ffffffff8140ecc0 t fuse_async_req_send
-ffffffff8140ed80 t fuse_aio_complete_req
-ffffffff8140ee80 t fuse_aio_complete
-ffffffff8140efd0 t fuse_writepage_finish
-ffffffff8140f0a0 t fuse_writepage_free
-ffffffff8140f150 t fuse_file_llseek
-ffffffff8140f400 t fuse_file_read_iter
-ffffffff8140f5a0 t fuse_file_write_iter
-ffffffff8140f9d0 t fuse_file_mmap
-ffffffff8140fae0 t fuse_open
-ffffffff8140fb00 t fuse_flush
-ffffffff8140fda0 t fuse_release
-ffffffff8140fdf0 t fuse_fsync
-ffffffff8140ff00 t fuse_file_lock
-ffffffff814101f0 t fuse_file_flock
-ffffffff81410250 t fuse_file_fallocate
-ffffffff81410550 t fuse_copy_file_range
-ffffffff814109e0 t fuse_direct_IO
-ffffffff81410ed0 t fuse_perform_write
-ffffffff81411660 t fuse_wait_on_page_writeback
-ffffffff81411830 t fuse_vma_close
-ffffffff814118b0 t fuse_page_mkwrite
-ffffffff81411940 t fuse_setlk
-ffffffff81411ba0 t fuse_writepage
-ffffffff81411cd0 t fuse_read_folio
-ffffffff81411d20 t fuse_writepages
-ffffffff81411e40 t fuse_readahead
-ffffffff81412310 t fuse_write_begin
-ffffffff814124d0 t fuse_write_end
-ffffffff81412600 t fuse_bmap
-ffffffff81412750 t fuse_launder_folio
-ffffffff814127a0 t fuse_writepage_locked
-ffffffff81412be0 t fuse_writepage_end
-ffffffff81412d80 t tree_insert
-ffffffff81412e70 t fuse_do_readpage
-ffffffff81413090 t fuse_writepages_fill
-ffffffff81413880 t fuse_writepages_send
-ffffffff81413a00 t fuse_readpages_end
-ffffffff81413bd0 t fuse_alloc_forget
-ffffffff81413c00 t fuse_change_attributes_common
-ffffffff81413d90 t fuse_get_cache_mask
-ffffffff81413dd0 t fuse_change_attributes
-ffffffff81413f90 t fuse_iget_backing
-ffffffff81414160 t fuse_inode_backing_eq
-ffffffff81414180 t fuse_inode_backing_set
-ffffffff814141a0 t fuse_init_inode
-ffffffff81414250 t fuse_iget
-ffffffff814144b0 t fuse_inode_eq
-ffffffff814144d0 t fuse_inode_set
-ffffffff814144f0 t fuse_ilookup
-ffffffff814145c0 t fuse_reverse_inval_inode
-ffffffff81414720 t fuse_lock_inode
-ffffffff81414780 t fuse_unlock_inode
-ffffffff814147a0 t fuse_conn_init
-ffffffff814149d0 t fuse_conn_put
-ffffffff81414a50 t fuse_conn_get
-ffffffff81414a90 t fuse_send_init
-ffffffff81414c00 t process_init_reply
-ffffffff814152b0 t fuse_free_conn
-ffffffff81415320 t free_fuse_passthrough
-ffffffff81415350 t fuse_dev_alloc
-ffffffff81415400 t fuse_dev_install
-ffffffff814154a0 t fuse_dev_alloc_install
-ffffffff814155f0 t fuse_dev_free
-ffffffff814156d0 t fuse_init_fs_context_submount
-ffffffff814156f0 t fuse_fill_super_common
-ffffffff81415cb0 t fuse_mount_remove
-ffffffff81415d30 t fuse_conn_destroy
-ffffffff81415e60 t fuse_mount_destroy
-ffffffff81415ef0 t fuse_sysfs_cleanup
-ffffffff81415f40 t fuse_fs_cleanup
-ffffffff81415f80 t set_global_limit
-ffffffff81415ff0 t fuse_get_tree_submount
-ffffffff81416470 t fuse_alloc_inode
-ffffffff81416550 t fuse_free_inode
-ffffffff81416580 t fuse_evict_inode
-ffffffff81416640 t fuse_sync_fs
-ffffffff814168e0 t fuse_statfs
-ffffffff81416a90 t fuse_umount_begin
-ffffffff81416af0 t fuse_show_options
-ffffffff81416c20 t fuse_encode_fh
-ffffffff81416ca0 t fuse_fh_to_dentry
-ffffffff81416d10 t fuse_fh_to_parent
-ffffffff81416d80 t fuse_get_parent
-ffffffff81416f00 t fuse_get_dentry
-ffffffff81417100 t fuse_bpf_show
-ffffffff81417120 t bpf_prog_type_fuse_show
-ffffffff81417150 t fuse_init_fs_context
-ffffffff814171d0 t fuse_kill_sb_anon
-ffffffff81417270 t fuse_kill_sb_blk
-ffffffff81417310 t fuse_free_fsc
-ffffffff81417350 t fuse_parse_param
-ffffffff81417650 t fuse_get_tree
-ffffffff814177d0 t fuse_reconfigure
-ffffffff81417800 t fuse_fill_super
-ffffffff81417880 t fuse_test_super
-ffffffff814178a0 t fuse_set_no_super
-ffffffff814178b0 t fuse_inode_init_once
-ffffffff814178c0 t fuse_ctl_add_conn
-ffffffff81417b50 t fuse_ctl_add_dentry
-ffffffff81417c70 t fuse_ctl_remove_conn
-ffffffff81417d40 t fuse_ctl_cleanup
-ffffffff81417d60 t fuse_conn_waiting_read
-ffffffff81417e70 t fuse_conn_abort_write
-ffffffff81417ef0 t fuse_conn_max_background_read
-ffffffff81417ff0 t fuse_conn_max_background_write
-ffffffff81418150 t fuse_conn_congestion_threshold_read
-ffffffff81418250 t fuse_conn_congestion_threshold_write
-ffffffff814183b0 t fuse_ctl_init_fs_context
-ffffffff814183d0 t fuse_ctl_kill_sb
-ffffffff81418440 t fuse_ctl_get_tree
-ffffffff81418460 t fuse_ctl_fill_super
-ffffffff81418500 t fuse_setxattr
-ffffffff81418680 t fuse_getxattr
-ffffffff81418810 t fuse_listxattr
-ffffffff81418a00 t fuse_removexattr
-ffffffff81418b00 t fuse_xattr_get
-ffffffff81418b30 t fuse_xattr_set
-ffffffff81418c70 t no_xattr_list
-ffffffff81418c80 t no_xattr_get
-ffffffff81418c90 t no_xattr_set
-ffffffff81418ca0 t fuse_get_acl
-ffffffff81418df0 t fuse_set_acl
-ffffffff81418f90 t fuse_readdir
-ffffffff81419f50 t fuse_emit
-ffffffff8141a180 t fuse_do_ioctl
-ffffffff8141a980 t fuse_ioctl_common
-ffffffff8141a9f0 t fuse_file_ioctl
-ffffffff8141aa60 t fuse_file_compat_ioctl
-ffffffff8141aad0 t fuse_fileattr_get
-ffffffff8141aee0 t fuse_fileattr_set
-ffffffff8141b280 t fuse_copyattr
-ffffffff8141b2e0 t fuse_passthrough_read_iter
-ffffffff8141b480 t fuse_aio_rw_complete
-ffffffff8141b4b0 t fuse_aio_cleanup_handler
-ffffffff8141b5c0 t fuse_passthrough_write_iter
-ffffffff8141b930 t fuse_passthrough_mmap
-ffffffff8141ba50 t fuse_passthrough_open
-ffffffff8141bc30 t fuse_passthrough_release
-ffffffff8141bc70 t fuse_passthrough_setup
-ffffffff8141bd20 t debugfs_lookup
-ffffffff8141bda0 t debugfs_initialized
-ffffffff8141bdc0 t debugfs_create_file
-ffffffff8141bdf0 t __debugfs_create_file.llvm.17954194297863102447
-ffffffff8141bfc0 t debugfs_create_file_unsafe
-ffffffff8141bff0 t debugfs_create_file_size
-ffffffff8141c030 t debugfs_create_dir
-ffffffff8141c1c0 t start_creating
-ffffffff8141c310 t start_creating
-ffffffff8141c3e0 t failed_creating
-ffffffff8141c420 t debugfs_create_automount
-ffffffff8141c5c0 t debugfs_create_symlink
-ffffffff8141c6f0 t debugfs_remove
-ffffffff8141c750 t remove_one
-ffffffff8141c7c0 t remove_one
-ffffffff8141c7e0 t debugfs_lookup_and_remove
-ffffffff8141c8a0 t debugfs_rename
-ffffffff8141ca90 t debugfs_setattr
-ffffffff8141cad0 t debug_mount
-ffffffff8141cb00 t debug_fill_super
-ffffffff8141cbd0 t debugfs_parse_options
-ffffffff8141cd60 t debugfs_free_inode
-ffffffff8141cda0 t debugfs_remount
-ffffffff8141ce30 t debugfs_show_options
-ffffffff8141ceb0 t debugfs_release_dentry
-ffffffff8141ced0 t debugfs_automount
-ffffffff8141cf00 t default_read_file.llvm.15759758112425818765
-ffffffff8141cf10 t default_write_file.llvm.15759758112425818765
-ffffffff8141cf20 t debugfs_real_fops
-ffffffff8141cf50 t debugfs_file_get
-ffffffff8141d050 t debugfs_file_put
-ffffffff8141d090 t open_proxy_open.llvm.15759758112425818765
-ffffffff8141d1a0 t full_proxy_open.llvm.15759758112425818765
-ffffffff8141d380 t debugfs_attr_read
-ffffffff8141d410 t debugfs_attr_write
-ffffffff8141d490 t debugfs_attr_write_signed
-ffffffff8141d510 t debugfs_create_u8
-ffffffff8141d550 t debugfs_create_u16
-ffffffff8141d590 t debugfs_create_u32
-ffffffff8141d5d0 t debugfs_create_u64
-ffffffff8141d610 t debugfs_create_ulong
-ffffffff8141d650 t debugfs_create_x8
-ffffffff8141d690 t debugfs_create_x16
-ffffffff8141d6d0 t debugfs_create_x32
-ffffffff8141d710 t debugfs_create_x64
-ffffffff8141d750 t debugfs_create_size_t
-ffffffff8141d790 t debugfs_create_atomic_t
-ffffffff8141d7d0 t debugfs_read_file_bool
-ffffffff8141d8b0 t debugfs_write_file_bool
-ffffffff8141d960 t debugfs_create_bool
-ffffffff8141d9a0 t debugfs_read_file_str
-ffffffff8141daf0 t debugfs_create_str
-ffffffff8141db30 t debugfs_create_blob
-ffffffff8141db60 t debugfs_create_u32_array
-ffffffff8141db80 t debugfs_print_regs32
-ffffffff8141dc20 t debugfs_create_regset32
-ffffffff8141dc40 t debugfs_create_devm_seqfile
-ffffffff8141dcb0 t full_proxy_release
-ffffffff8141dd30 t full_proxy_llseek
-ffffffff8141ddd0 t full_proxy_read
-ffffffff8141de70 t full_proxy_write
-ffffffff8141df10 t full_proxy_poll
-ffffffff8141dfa0 t full_proxy_unlocked_ioctl
-ffffffff8141e040 t fops_u8_open
-ffffffff8141e070 t debugfs_u8_get
-ffffffff8141e090 t debugfs_u8_set
-ffffffff8141e0a0 t fops_u8_ro_open
-ffffffff8141e0c0 t fops_u8_wo_open
-ffffffff8141e0e0 t fops_u16_open
-ffffffff8141e110 t debugfs_u16_get
-ffffffff8141e130 t debugfs_u16_set
-ffffffff8141e140 t fops_u16_ro_open
-ffffffff8141e160 t fops_u16_wo_open
-ffffffff8141e180 t fops_u32_open
-ffffffff8141e1b0 t debugfs_u32_get
-ffffffff8141e1d0 t debugfs_u32_set
-ffffffff8141e1e0 t fops_u32_ro_open
-ffffffff8141e200 t fops_u32_wo_open
-ffffffff8141e220 t fops_u64_open
-ffffffff8141e250 t debugfs_u64_get
-ffffffff8141e270 t debugfs_u64_set
-ffffffff8141e280 t fops_u64_ro_open
-ffffffff8141e2a0 t fops_u64_wo_open
-ffffffff8141e2c0 t fops_ulong_open
-ffffffff8141e2f0 t debugfs_ulong_get
-ffffffff8141e310 t debugfs_ulong_set
-ffffffff8141e320 t fops_ulong_ro_open
-ffffffff8141e340 t fops_ulong_wo_open
-ffffffff8141e360 t fops_x8_open
-ffffffff8141e390 t fops_x8_ro_open
-ffffffff8141e3b0 t fops_x8_wo_open
-ffffffff8141e3d0 t fops_x16_open
-ffffffff8141e400 t fops_x16_ro_open
-ffffffff8141e420 t fops_x16_wo_open
-ffffffff8141e440 t fops_x32_open
-ffffffff8141e470 t fops_x32_ro_open
-ffffffff8141e490 t fops_x32_wo_open
-ffffffff8141e4b0 t fops_x64_open
-ffffffff8141e4e0 t fops_x64_ro_open
-ffffffff8141e500 t fops_x64_wo_open
-ffffffff8141e520 t fops_size_t_open
-ffffffff8141e550 t debugfs_size_t_get
-ffffffff8141e570 t debugfs_size_t_set
-ffffffff8141e580 t fops_size_t_ro_open
-ffffffff8141e5a0 t fops_size_t_wo_open
-ffffffff8141e5c0 t fops_atomic_t_open
-ffffffff8141e5f0 t debugfs_atomic_t_get
-ffffffff8141e610 t debugfs_atomic_t_set
-ffffffff8141e620 t fops_atomic_t_ro_open
-ffffffff8141e640 t fops_atomic_t_wo_open
-ffffffff8141e660 t debugfs_write_file_str
-ffffffff8141e680 t read_file_blob.llvm.15759758112425818765
-ffffffff8141e710 t u32_array_read
-ffffffff8141e760 t u32_array_open
-ffffffff8141e830 t u32_array_release
-ffffffff8141e850 t debugfs_regset32_open
-ffffffff8141e880 t debugfs_regset32_show
-ffffffff8141e950 t debugfs_devm_entry_open
-ffffffff8141e980 t tracefs_create_file
-ffffffff8141eb50 t tracefs_create_dir
-ffffffff8141eb70 t __create_dir.llvm.11720573198680001113
-ffffffff8141ecf0 t tracefs_remove
-ffffffff8141ed50 t tracefs_initialized
-ffffffff8141ed70 t default_read_file
-ffffffff8141ed80 t default_write_file
-ffffffff8141ed90 t tracefs_syscall_mkdir
-ffffffff8141ee20 t tracefs_syscall_rmdir
-ffffffff8141eee0 t trace_mount
-ffffffff8141ef00 t trace_fill_super
-ffffffff8141efa0 t tracefs_parse_options
-ffffffff8141f130 t tracefs_apply_options
-ffffffff8141f2e0 t tracefs_remount
-ffffffff8141f330 t tracefs_show_options
-ffffffff8141f3b0 t __traceiter_erofs_lookup
-ffffffff8141f410 t __traceiter_erofs_fill_inode
-ffffffff8141f460 t __traceiter_erofs_readpage
-ffffffff8141f4b0 t __traceiter_erofs_readpages
-ffffffff8141f520 t __traceiter_erofs_map_blocks_enter
-ffffffff8141f580 t __traceiter_z_erofs_map_blocks_iter_enter
-ffffffff8141f5e0 t __traceiter_erofs_map_blocks_exit
-ffffffff8141f650 t __traceiter_z_erofs_map_blocks_iter_exit
-ffffffff8141f6c0 t __traceiter_erofs_destroy_inode
-ffffffff8141f710 t trace_event_raw_event_erofs_lookup
-ffffffff8141f840 t perf_trace_erofs_lookup
-ffffffff8141f9c0 t trace_event_raw_event_erofs_fill_inode
-ffffffff8141fad0 t perf_trace_erofs_fill_inode
-ffffffff8141fc20 t trace_event_raw_event_erofs_readpage
-ffffffff8141fd50 t perf_trace_erofs_readpage
-ffffffff8141fec0 t trace_event_raw_event_erofs_readpages
-ffffffff8141ffb0 t perf_trace_erofs_readpages
-ffffffff814200d0 t trace_event_raw_event_erofs__map_blocks_enter
-ffffffff814201c0 t perf_trace_erofs__map_blocks_enter
-ffffffff814202f0 t trace_event_raw_event_erofs__map_blocks_exit
-ffffffff81420410 t perf_trace_erofs__map_blocks_exit
-ffffffff81420560 t trace_event_raw_event_erofs_destroy_inode
-ffffffff81420630 t perf_trace_erofs_destroy_inode
-ffffffff81420730 t _erofs_err
-ffffffff814207d0 t _erofs_info
-ffffffff81420860 t erofs_init_fs_context
-ffffffff81420940 t erofs_kill_sb
-ffffffff814209f0 t erofs_alloc_inode
-ffffffff81420a70 t erofs_free_inode
-ffffffff81420ac0 t erofs_put_super
-ffffffff81420b10 t erofs_statfs
-ffffffff81420ba0 t erofs_show_options
-ffffffff81420c50 t trace_raw_output_erofs_lookup
-ffffffff81420cc0 t trace_raw_output_erofs_fill_inode
-ffffffff81420d30 t trace_raw_output_erofs_readpage
-ffffffff81420de0 t trace_raw_output_erofs_readpages
-ffffffff81420e60 t trace_raw_output_erofs__map_blocks_enter
-ffffffff81420f30 t trace_raw_output_erofs__map_blocks_exit
-ffffffff81421040 t trace_raw_output_erofs_destroy_inode
-ffffffff814210a0 t erofs_fc_anon_get_tree
-ffffffff814210c0 t erofs_fc_fill_pseudo_super
-ffffffff814210e0 t erofs_fc_free
-ffffffff81421140 t erofs_fc_parse_param
-ffffffff81421340 t erofs_fc_get_tree
-ffffffff81421360 t erofs_fc_reconfigure
-ffffffff814213e0 t erofs_release_device_info
-ffffffff81421420 t erofs_fc_fill_super
-ffffffff81421a50 t erofs_load_compr_cfgs
-ffffffff81421d10 t erofs_scan_devices
-ffffffff81421f50 t erofs_init_device
-ffffffff81422050 t erofs_fh_to_dentry
-ffffffff81422070 t erofs_fh_to_parent
-ffffffff81422090 t erofs_get_parent
-ffffffff81422120 t erofs_nfs_get_inode
-ffffffff81422130 t erofs_managed_cache_invalidate_folio
-ffffffff814221a0 t erofs_managed_cache_release_folio
-ffffffff814221d0 t erofs_inode_init_once
-ffffffff814221f0 t erofs_iget
-ffffffff814229a0 t erofs_ilookup_test_actor
-ffffffff814229c0 t erofs_iget_set_actor
-ffffffff814229e0 t erofs_getattr
-ffffffff81422a20 t erofs_unmap_metabuf
-ffffffff81422a70 t erofs_put_metabuf
-ffffffff81422af0 t erofs_bread
-ffffffff81422cb0 t erofs_read_metabuf
-ffffffff81422cd0 t erofs_map_blocks
-ffffffff81423110 t erofs_map_dev
-ffffffff81423290 t erofs_fiemap
-ffffffff814232c0 t erofs_read_folio.llvm.7979698629201697959
-ffffffff814232e0 t erofs_readahead.llvm.7979698629201697959
-ffffffff81423300 t erofs_bmap.llvm.7979698629201697959
-ffffffff81423320 t erofs_file_read_iter.llvm.7979698629201697959
-ffffffff81423400 t erofs_iomap_begin
-ffffffff814235e0 t erofs_iomap_end
-ffffffff81423660 t erofs_namei
-ffffffff81423ab0 t erofs_lookup.llvm.8883327614773730382
-ffffffff81423ba0 t erofs_readdir.llvm.12353543416453387838
-ffffffff81423e80 t erofs_allocpage
-ffffffff81423ec0 t erofs_release_pages
-ffffffff81423f10 t erofs_find_workgroup
-ffffffff81423fc0 t erofs_insert_workgroup
-ffffffff814240c0 t erofs_workgroup_put
-ffffffff81424110 t erofs_shrinker_register
-ffffffff814241a0 t erofs_shrinker_unregister
-ffffffff81424230 t erofs_shrink_workstation
-ffffffff814243f0 t erofs_exit_shrinker
-ffffffff81424410 t erofs_shrink_count
-ffffffff81424430 t erofs_shrink_scan
-ffffffff81424590 t erofs_get_pcpubuf
-ffffffff81424610 t erofs_put_pcpubuf
-ffffffff81424670 t erofs_pcpubuf_growsize
-ffffffff81424970 t erofs_pcpubuf_init
-ffffffff814249d0 t erofs_pcpubuf_exit
-ffffffff81424ad0 t erofs_register_sysfs
-ffffffff81424b70 t erofs_unregister_sysfs
-ffffffff81424bc0 t erofs_exit_sysfs
-ffffffff81424bf0 t erofs_attr_show
-ffffffff81424c80 t erofs_attr_store
-ffffffff81424da0 t erofs_sb_release
-ffffffff81424dc0 t erofs_getxattr
-ffffffff81425060 t init_inode_xattrs
-ffffffff81425320 t erofs_xattr_user_list
-ffffffff81425340 t erofs_xattr_generic_get
-ffffffff81425390 t erofs_xattr_trusted_list
-ffffffff814253b0 t erofs_listxattr
-ffffffff81425610 t erofs_get_acl
-ffffffff814256f0 t xattr_foreach
-ffffffff814259c0 t xattr_entrymatch
-ffffffff814259f0 t xattr_namematch
-ffffffff81425a20 t xattr_checkbuffer
-ffffffff81425a50 t xattr_copyvalue
-ffffffff81425a80 t xattr_entrylist
-ffffffff81425b50 t xattr_namelist
-ffffffff81425b90 t xattr_skipvalue
-ffffffff81425bc0 t z_erofs_load_lz4_config
-ffffffff81425c60 t z_erofs_fixup_insize
-ffffffff81425cb0 t z_erofs_decompress
-ffffffff81425ce0 t z_erofs_lz4_decompress
-ffffffff81426690 t z_erofs_transform_plain
-ffffffff81426800 t z_erofs_fill_inode
-ffffffff81426850 t z_erofs_map_blocks_iter
-ffffffff81426d80 t z_erofs_do_map_blocks
-ffffffff814273c0 t z_erofs_iomap_begin_report.llvm.12203929146994306171
-ffffffff814274f0 t z_erofs_load_cluster_from_disk
-ffffffff81427a30 t z_erofs_exit_zip_subsystem
-ffffffff81427a50 t z_erofs_destroy_pcluster_pool
-ffffffff81427b10 t erofs_try_to_free_all_cached_pages
-ffffffff81427c00 t erofs_try_to_free_cached_page
-ffffffff81427d30 t erofs_workgroup_free_rcu
-ffffffff81427d50 t z_erofs_rcu_callback.llvm.13484658219608839371
-ffffffff81427de0 t z_erofs_read_folio.llvm.13484658219608839371
-ffffffff81427fc0 t z_erofs_readahead.llvm.13484658219608839371
-ffffffff814282b0 t z_erofs_pcluster_readmore
-ffffffff81428470 t z_erofs_do_read_page
-ffffffff81429200 t z_erofs_runqueue
-ffffffff81429a20 t z_erofs_decompress_queue
-ffffffff8142a510 t z_erofs_decompressqueue_endio
-ffffffff8142a670 t z_erofs_decompress_kickoff
-ffffffff8142a760 t z_erofs_decompressqueue_work
-ffffffff8142a7d0 t cap_capable
-ffffffff8142a840 t cap_settime
-ffffffff8142a860 t cap_ptrace_access_check
-ffffffff8142a8d0 t cap_ptrace_traceme
-ffffffff8142a930 t cap_capget
-ffffffff8142a980 t cap_capset
-ffffffff8142aa30 t cap_inode_need_killpriv
-ffffffff8142aa60 t cap_inode_killpriv
-ffffffff8142aa80 t cap_inode_getsecurity
-ffffffff8142ac40 t cap_convert_nscap
-ffffffff8142ad80 t get_vfs_caps_from_disk
-ffffffff8142aec0 t cap_bprm_creds_from_file
-ffffffff8142b2d0 t cap_inode_setxattr
-ffffffff8142b340 t cap_inode_removexattr
-ffffffff8142b3d0 t cap_task_fix_setuid
-ffffffff8142b4e0 t cap_task_setscheduler
-ffffffff8142b540 t cap_task_setioprio
-ffffffff8142b5a0 t cap_task_setnice
-ffffffff8142b600 t cap_task_prctl
-ffffffff8142b8a0 t cap_vm_enough_memory
-ffffffff8142b920 t cap_mmap_addr
-ffffffff8142b9b0 t cap_mmap_file
-ffffffff8142b9c0 t mmap_min_addr_handler
-ffffffff8142ba50 t lsm_append
-ffffffff8142bb00 t call_blocking_lsm_notifier
-ffffffff8142bb20 t register_blocking_lsm_notifier
-ffffffff8142bb40 t unregister_blocking_lsm_notifier
-ffffffff8142bb60 t lsm_inode_alloc
-ffffffff8142bba0 t security_binder_set_context_mgr
-ffffffff8142bbf0 t security_binder_transaction
-ffffffff8142bc40 t security_binder_transfer_binder
-ffffffff8142bc90 t security_binder_transfer_file
-ffffffff8142bcf0 t security_ptrace_access_check
-ffffffff8142bd40 t security_ptrace_traceme
-ffffffff8142bd90 t security_capget
-ffffffff8142bdf0 t security_capset
-ffffffff8142be60 t security_capable
-ffffffff8142bec0 t security_quotactl
-ffffffff8142bf20 t security_quota_on
-ffffffff8142bf70 t security_syslog
-ffffffff8142bfb0 t security_settime64
-ffffffff8142c000 t security_vm_enough_memory_mm
-ffffffff8142c060 t security_bprm_creds_for_exec
-ffffffff8142c0b0 t security_bprm_creds_from_file
-ffffffff8142c100 t security_bprm_check
-ffffffff8142c150 t security_bprm_committing_creds
-ffffffff8142c190 t security_bprm_committed_creds
-ffffffff8142c1d0 t security_fs_context_dup
-ffffffff8142c220 t security_fs_context_parse_param
-ffffffff8142c290 t security_sb_alloc
-ffffffff8142c350 t security_sb_free
-ffffffff8142c3b0 t security_sb_delete
-ffffffff8142c3f0 t security_free_mnt_opts
-ffffffff8142c440 t security_sb_eat_lsm_opts
-ffffffff8142c490 t security_sb_mnt_opts_compat
-ffffffff8142c4e0 t security_sb_remount
-ffffffff8142c530 t security_sb_kern_mount
-ffffffff8142c580 t security_sb_show_options
-ffffffff8142c5d0 t security_sb_statfs
-ffffffff8142c620 t security_sb_mount
-ffffffff8142c690 t security_sb_umount
-ffffffff8142c6e0 t security_sb_pivotroot
-ffffffff8142c730 t security_sb_set_mnt_opts
-ffffffff8142c7b0 t security_sb_clone_mnt_opts
-ffffffff8142c810 t security_move_mount
-ffffffff8142c860 t security_path_notify
-ffffffff8142c8c0 t security_inode_alloc
-ffffffff8142c980 t security_inode_free
-ffffffff8142c9e0 t inode_free_by_rcu
-ffffffff8142ca00 t security_dentry_init_security
-ffffffff8142ca80 t security_dentry_create_files_as
-ffffffff8142caf0 t security_inode_init_security
-ffffffff8142cca0 t security_inode_init_security_anon
-ffffffff8142cd00 t security_old_inode_init_security
-ffffffff8142cd80 t security_inode_create
-ffffffff8142cdf0 t security_inode_link
-ffffffff8142ce60 t security_inode_unlink
-ffffffff8142cec0 t security_inode_symlink
-ffffffff8142cf30 t security_inode_mkdir
-ffffffff8142cfa0 t security_inode_rmdir
-ffffffff8142d000 t security_inode_mknod
-ffffffff8142d070 t security_inode_rename
-ffffffff8142d130 t security_inode_readlink
-ffffffff8142d180 t security_inode_follow_link
-ffffffff8142d1f0 t security_inode_permission
-ffffffff8142d240 t security_inode_setattr
-ffffffff8142d2a0 t security_inode_getattr
-ffffffff8142d300 t security_inode_setxattr
-ffffffff8142d3b0 t security_inode_post_setxattr
-ffffffff8142d430 t security_inode_getxattr
-ffffffff8142d490 t security_inode_listxattr
-ffffffff8142d4e0 t security_inode_removexattr
-ffffffff8142d560 t security_inode_need_killpriv
-ffffffff8142d5b0 t security_inode_killpriv
-ffffffff8142d600 t security_inode_getsecurity
-ffffffff8142d690 t security_inode_setsecurity
-ffffffff8142d710 t security_inode_listsecurity
-ffffffff8142d780 t security_inode_getsecid
-ffffffff8142d7d0 t security_inode_copy_up
-ffffffff8142d820 t security_inode_copy_up_xattr
-ffffffff8142d870 t security_kernfs_init_security
-ffffffff8142d8c0 t security_file_permission
-ffffffff8142d920 t fsnotify_perm
-ffffffff8142da50 t security_file_alloc
-ffffffff8142db20 t security_file_free
-ffffffff8142db90 t security_file_ioctl
-ffffffff8142dbf0 t security_mmap_file
-ffffffff8142dca0 t security_mmap_addr
-ffffffff8142dcf0 t security_file_mprotect
-ffffffff8142dd50 t security_file_lock
-ffffffff8142dda0 t security_file_fcntl
-ffffffff8142de00 t security_file_set_fowner
-ffffffff8142de40 t security_file_send_sigiotask
-ffffffff8142dea0 t security_file_receive
-ffffffff8142def0 t security_file_open
-ffffffff8142df50 t security_task_alloc
-ffffffff8142e020 t security_task_free
-ffffffff8142e080 t security_cred_alloc_blank
-ffffffff8142e150 t security_cred_free
-ffffffff8142e1a0 t security_prepare_creds
-ffffffff8142e270 t security_transfer_creds
-ffffffff8142e2c0 t security_cred_getsecid
-ffffffff8142e320 t security_kernel_act_as
-ffffffff8142e370 t security_kernel_create_files_as
-ffffffff8142e3c0 t security_kernel_module_request
-ffffffff8142e410 t security_kernel_read_file
-ffffffff8142e470 t security_kernel_post_read_file
-ffffffff8142e4d0 t security_kernel_load_data
-ffffffff8142e520 t security_kernel_post_load_data
-ffffffff8142e580 t security_task_fix_setuid
-ffffffff8142e5e0 t security_task_fix_setgid
-ffffffff8142e640 t security_task_fix_setgroups
-ffffffff8142e690 t security_task_setpgid
-ffffffff8142e6e0 t security_task_getpgid
-ffffffff8142e730 t security_task_getsid
-ffffffff8142e780 t security_current_getsecid_subj
-ffffffff8142e7c0 t security_task_getsecid_obj
-ffffffff8142e820 t security_task_setnice
-ffffffff8142e870 t security_task_setioprio
-ffffffff8142e8c0 t security_task_getioprio
-ffffffff8142e910 t security_task_prlimit
-ffffffff8142e970 t security_task_setrlimit
-ffffffff8142e9d0 t security_task_setscheduler
-ffffffff8142ea20 t security_task_getscheduler
-ffffffff8142ea70 t security_task_movememory
-ffffffff8142eac0 t security_task_kill
-ffffffff8142eb20 t security_task_prctl
-ffffffff8142ebc0 t security_task_to_inode
-ffffffff8142ec10 t security_create_user_ns
-ffffffff8142ec60 t security_ipc_permission
-ffffffff8142ecb0 t security_ipc_getsecid
-ffffffff8142ed10 t security_msg_msg_alloc
-ffffffff8142edd0 t security_msg_msg_free
-ffffffff8142ee20 t security_msg_queue_alloc
-ffffffff8142eee0 t security_msg_queue_free
-ffffffff8142ef30 t security_msg_queue_associate
-ffffffff8142ef80 t security_msg_queue_msgctl
-ffffffff8142efd0 t security_msg_queue_msgsnd
-ffffffff8142f030 t security_msg_queue_msgrcv
-ffffffff8142f0a0 t security_shm_alloc
-ffffffff8142f160 t security_shm_free
-ffffffff8142f1b0 t security_shm_associate
-ffffffff8142f200 t security_shm_shmctl
-ffffffff8142f250 t security_shm_shmat
-ffffffff8142f2b0 t security_sem_alloc
-ffffffff8142f370 t security_sem_free
-ffffffff8142f3c0 t security_sem_associate
-ffffffff8142f410 t security_sem_semctl
-ffffffff8142f460 t security_sem_semop
-ffffffff8142f4c0 t security_d_instantiate
-ffffffff8142f520 t security_getprocattr
-ffffffff8142f590 t security_setprocattr
-ffffffff8142f600 t security_netlink_send
-ffffffff8142f650 t security_ismaclabel
-ffffffff8142f6a0 t security_secid_to_secctx
-ffffffff8142f700 t security_secctx_to_secid
-ffffffff8142f770 t security_release_secctx
-ffffffff8142f7c0 t security_inode_invalidate_secctx
-ffffffff8142f800 t security_inode_notifysecctx
-ffffffff8142f860 t security_inode_setsecctx
-ffffffff8142f8c0 t security_inode_getsecctx
-ffffffff8142f920 t security_unix_stream_connect
-ffffffff8142f980 t security_unix_may_send
-ffffffff8142f9d0 t security_socket_create
-ffffffff8142fa30 t security_socket_post_create
-ffffffff8142faa0 t security_socket_socketpair
-ffffffff8142faf0 t security_socket_bind
-ffffffff8142fb50 t security_socket_connect
-ffffffff8142fbb0 t security_socket_listen
-ffffffff8142fc00 t security_socket_accept
-ffffffff8142fc50 t security_socket_sendmsg
-ffffffff8142fcb0 t security_socket_recvmsg
-ffffffff8142fd10 t security_socket_getsockname
-ffffffff8142fd60 t security_socket_getpeername
-ffffffff8142fdb0 t security_socket_getsockopt
-ffffffff8142fe10 t security_socket_setsockopt
-ffffffff8142fe70 t security_socket_shutdown
-ffffffff8142fec0 t security_sock_rcv_skb
-ffffffff8142ff10 t security_socket_getpeersec_stream
-ffffffff8142ff80 t security_socket_getpeersec_dgram
-ffffffff8142ffe0 t security_sk_alloc
-ffffffff81430040 t security_sk_free
-ffffffff81430080 t security_sk_clone
-ffffffff814300d0 t security_sk_classify_flow
-ffffffff81430120 t security_req_classify_flow
-ffffffff81430170 t security_sock_graft
-ffffffff814301c0 t security_inet_conn_request
-ffffffff81430220 t security_inet_csk_clone
-ffffffff81430270 t security_inet_conn_established
-ffffffff814302c0 t security_secmark_relabel_packet
-ffffffff81430300 t security_secmark_refcount_inc
-ffffffff81430340 t security_secmark_refcount_dec
-ffffffff81430380 t security_tun_dev_alloc_security
-ffffffff814303d0 t security_tun_dev_free_security
-ffffffff81430410 t security_tun_dev_create
-ffffffff81430450 t security_tun_dev_attach_queue
-ffffffff814304a0 t security_tun_dev_attach
-ffffffff814304f0 t security_tun_dev_open
-ffffffff81430540 t security_sctp_assoc_request
-ffffffff81430590 t security_sctp_bind_connect
-ffffffff814305f0 t security_sctp_sk_clone
-ffffffff81430640 t security_sctp_assoc_established
-ffffffff81430690 t security_audit_rule_init
-ffffffff814306f0 t security_audit_rule_known
-ffffffff81430740 t security_audit_rule_free
-ffffffff81430780 t security_audit_rule_match
-ffffffff814307e0 t security_locked_down
-ffffffff81430820 t security_perf_event_open
-ffffffff81430870 t security_perf_event_alloc
-ffffffff814308c0 t security_perf_event_free
-ffffffff81430900 t security_perf_event_read
-ffffffff81430950 t security_perf_event_write
-ffffffff814309a0 t security_uring_override_creds
-ffffffff814309f0 t security_uring_sqpoll
-ffffffff81430a30 t security_uring_cmd
-ffffffff81430a80 t securityfs_create_file
-ffffffff81430aa0 t securityfs_create_dentry.llvm.17766777080041604060
-ffffffff81430c90 t securityfs_create_dir
-ffffffff81430cb0 t securityfs_create_symlink
-ffffffff81430d30 t securityfs_remove
-ffffffff81430dc0 t securityfs_init_fs_context
-ffffffff81430de0 t securityfs_get_tree
-ffffffff81430e00 t securityfs_fill_super
-ffffffff81430e30 t securityfs_free_inode
-ffffffff81430e70 t lsm_read
-ffffffff81430ec0 t __traceiter_selinux_audited
-ffffffff81430f30 t trace_event_raw_event_selinux_audited
-ffffffff81431100 t perf_trace_selinux_audited
-ffffffff81431300 t selinux_avc_init
-ffffffff81431350 t avc_get_cache_threshold
-ffffffff81431360 t avc_set_cache_threshold
-ffffffff81431370 t avc_get_hash_stats
-ffffffff81431430 t slow_avc_audit
-ffffffff81431510 t avc_audit_pre_callback
-ffffffff81431620 t avc_audit_post_callback
-ffffffff814318b0 t avc_ss_reset
-ffffffff81431950 t avc_flush
-ffffffff81431a10 t avc_has_extended_perms
-ffffffff81431fa0 t avc_compute_av
-ffffffff814321f0 t avc_update_node
-ffffffff814325e0 t avc_denied
-ffffffff81432650 t avc_has_perm_noaudit
-ffffffff814327e0 t avc_has_perm
-ffffffff814328c0 t avc_policy_seqno
-ffffffff814328e0 t avc_disable
-ffffffff81432910 t trace_raw_output_selinux_audited
-ffffffff81432990 t avc_node_free
-ffffffff814329d0 t avc_xperms_free
-ffffffff81432ac0 t avc_alloc_node
-ffffffff81432c90 t avc_xperms_populate
-ffffffff81432e70 t avc_xperms_decision_alloc
-ffffffff81432f60 t avc_xperms_allow_perm
-ffffffff81432fc0 t selinux_complete_init
-ffffffff81432fe0 t delayed_superblock_init.llvm.6882133009739859865
-ffffffff81433000 t selinux_set_mnt_opts
-ffffffff814336a0 t may_context_mount_sb_relabel
-ffffffff81433710 t may_context_mount_inode_relabel
-ffffffff81433780 t sb_finish_set_opts
-ffffffff81433a90 t inode_doinit_with_dentry
-ffffffff81433e10 t inode_mode_to_security_class
-ffffffff81433e40 t inode_doinit_use_xattr
-ffffffff81434020 t selinux_genfs_get_sid
-ffffffff81434110 t selinux_netcache_avc_callback
-ffffffff81434140 t selinux_lsm_notifier_avc_callback
-ffffffff81434170 t selinux_binder_set_context_mgr
-ffffffff814341c0 t selinux_binder_transaction
-ffffffff81434250 t selinux_binder_transfer_binder
-ffffffff81434290 t selinux_binder_transfer_file
-ffffffff81434430 t selinux_ptrace_access_check
-ffffffff814344c0 t selinux_ptrace_traceme
-ffffffff81434540 t selinux_capget
-ffffffff814345c0 t selinux_capset
-ffffffff81434600 t selinux_capable
-ffffffff81434780 t selinux_quotactl
-ffffffff81434820 t selinux_quota_on
-ffffffff81434940 t selinux_syslog
-ffffffff814349c0 t selinux_vm_enough_memory
-ffffffff81434a60 t selinux_netlink_send
-ffffffff81434cc0 t selinux_bprm_creds_for_exec
-ffffffff814350b0 t selinux_bprm_committing_creds
-ffffffff81435370 t selinux_bprm_committed_creds
-ffffffff81435470 t selinux_free_mnt_opts
-ffffffff81435480 t selinux_sb_mnt_opts_compat
-ffffffff81435630 t selinux_sb_remount
-ffffffff81435800 t selinux_sb_kern_mount
-ffffffff814358b0 t selinux_sb_show_options
-ffffffff81435a90 t selinux_sb_statfs
-ffffffff81435b40 t selinux_mount
-ffffffff81435cc0 t selinux_umount
-ffffffff81435d20 t selinux_sb_clone_mnt_opts
-ffffffff814361a0 t selinux_move_mount
-ffffffff814362d0 t selinux_dentry_init_security
-ffffffff814363a0 t selinux_dentry_create_files_as
-ffffffff81436440 t selinux_inode_free_security
-ffffffff814364d0 t selinux_inode_init_security
-ffffffff81436690 t selinux_inode_init_security_anon
-ffffffff81436810 t selinux_inode_create
-ffffffff81436830 t selinux_inode_link
-ffffffff81436850 t selinux_inode_unlink
-ffffffff81436870 t selinux_inode_symlink
-ffffffff81436890 t selinux_inode_mkdir
-ffffffff814368b0 t selinux_inode_rmdir
-ffffffff814368d0 t selinux_inode_mknod
-ffffffff81436910 t selinux_inode_rename
-ffffffff81436ca0 t selinux_inode_readlink
-ffffffff81436dc0 t selinux_inode_follow_link
-ffffffff81436ef0 t selinux_inode_permission
-ffffffff814370f0 t selinux_inode_setattr
-ffffffff81437330 t selinux_inode_getattr
-ffffffff81437460 t selinux_inode_setxattr
-ffffffff814378b0 t selinux_inode_post_setxattr
-ffffffff81437a40 t selinux_inode_getxattr
-ffffffff81437b60 t selinux_inode_listxattr
-ffffffff81437c80 t selinux_inode_removexattr
-ffffffff81437de0 t selinux_inode_getsecurity
-ffffffff81437fa0 t selinux_inode_setsecurity
-ffffffff814380e0 t selinux_inode_listsecurity
-ffffffff81438130 t selinux_inode_getsecid
-ffffffff81438160 t selinux_inode_copy_up
-ffffffff814381d0 t selinux_inode_copy_up_xattr
-ffffffff81438200 t selinux_path_notify
-ffffffff81438410 t selinux_kernfs_init_security
-ffffffff81438600 t selinux_file_permission
-ffffffff81438790 t selinux_file_alloc_security
-ffffffff814387d0 t selinux_file_ioctl
-ffffffff81438be0 t selinux_mmap_file
-ffffffff81438ce0 t selinux_mmap_addr
-ffffffff81438d30 t selinux_file_mprotect
-ffffffff81438f50 t selinux_file_lock
-ffffffff81439060 t selinux_file_fcntl
-ffffffff81439300 t selinux_file_set_fowner
-ffffffff81439340 t selinux_file_send_sigiotask
-ffffffff814393e0 t selinux_file_receive
-ffffffff81439430 t selinux_file_open
-ffffffff814395e0 t selinux_task_alloc
-ffffffff81439630 t selinux_cred_prepare
-ffffffff81439670 t selinux_cred_transfer
-ffffffff814396b0 t selinux_cred_getsecid
-ffffffff814396d0 t selinux_kernel_act_as
-ffffffff81439750 t selinux_kernel_create_files_as
-ffffffff81439820 t selinux_kernel_module_request
-ffffffff814398c0 t selinux_kernel_load_data
-ffffffff81439910 t selinux_kernel_read_file
-ffffffff81439aa0 t selinux_task_setpgid
-ffffffff81439b20 t selinux_task_getpgid
-ffffffff81439ba0 t selinux_task_getsid
-ffffffff81439c20 t selinux_current_getsecid_subj
-ffffffff81439c50 t selinux_task_getsecid_obj
-ffffffff81439c90 t selinux_task_setnice
-ffffffff81439d10 t selinux_task_setioprio
-ffffffff81439d90 t selinux_task_getioprio
-ffffffff81439e10 t selinux_task_prlimit
-ffffffff81439e70 t selinux_task_setrlimit
-ffffffff81439f10 t selinux_task_setscheduler
-ffffffff81439f90 t selinux_task_getscheduler
-ffffffff8143a010 t selinux_task_movememory
-ffffffff8143a090 t selinux_task_kill
-ffffffff8143a160 t selinux_task_to_inode
-ffffffff8143a200 t selinux_userns_create
-ffffffff8143a250 t selinux_ipc_permission
-ffffffff8143a320 t selinux_ipc_getsecid
-ffffffff8143a340 t selinux_msg_queue_associate
-ffffffff8143a3f0 t selinux_msg_queue_msgctl
-ffffffff8143a510 t selinux_msg_queue_msgsnd
-ffffffff8143a660 t selinux_msg_queue_msgrcv
-ffffffff8143a760 t selinux_shm_associate
-ffffffff8143a810 t selinux_shm_shmctl
-ffffffff8143a940 t selinux_shm_shmat
-ffffffff8143aa00 t selinux_sem_associate
-ffffffff8143aab0 t selinux_sem_semctl
-ffffffff8143ac30 t selinux_sem_semop
-ffffffff8143ace0 t selinux_d_instantiate
-ffffffff8143ad00 t selinux_getprocattr
-ffffffff8143ae90 t selinux_setprocattr
-ffffffff8143b2a0 t selinux_ismaclabel
-ffffffff8143b2c0 t selinux_secctx_to_secid
-ffffffff8143b2f0 t selinux_release_secctx
-ffffffff8143b300 t selinux_inode_invalidate_secctx
-ffffffff8143b350 t selinux_inode_notifysecctx
-ffffffff8143b380 t selinux_inode_setsecctx
-ffffffff8143b3b0 t selinux_socket_unix_stream_connect
-ffffffff8143b4b0 t selinux_socket_unix_may_send
-ffffffff8143b580 t selinux_socket_create
-ffffffff8143b640 t selinux_socket_post_create
-ffffffff8143b760 t selinux_socket_socketpair
-ffffffff8143b790 t selinux_socket_bind
-ffffffff8143bb00 t selinux_socket_connect
-ffffffff8143bb10 t selinux_socket_listen
-ffffffff8143bc00 t selinux_socket_accept
-ffffffff8143bd70 t selinux_socket_sendmsg
-ffffffff8143be60 t selinux_socket_recvmsg
-ffffffff8143bf50 t selinux_socket_getsockname
-ffffffff8143c040 t selinux_socket_getpeername
-ffffffff8143c130 t selinux_socket_getsockopt
-ffffffff8143c220 t selinux_socket_setsockopt
-ffffffff8143c310 t selinux_socket_shutdown
-ffffffff8143c400 t selinux_socket_sock_rcv_skb
-ffffffff8143c7e0 t selinux_socket_getpeersec_stream
-ffffffff8143c910 t selinux_socket_getpeersec_dgram
-ffffffff8143c9e0 t selinux_sk_free_security
-ffffffff8143ca10 t selinux_sk_clone_security
-ffffffff8143ca40 t selinux_sk_getsecid
-ffffffff8143ca70 t selinux_sock_graft
-ffffffff8143cac0 t selinux_sctp_assoc_request
-ffffffff8143cb50 t selinux_sctp_sk_clone
-ffffffff8143cba0 t selinux_sctp_bind_connect
-ffffffff8143ccb0 t selinux_sctp_assoc_established
-ffffffff8143ccf0 t selinux_inet_conn_request
-ffffffff8143cdb0 t selinux_inet_csk_clone
-ffffffff8143cde0 t selinux_inet_conn_established
-ffffffff8143ce20 t selinux_secmark_relabel_packet
-ffffffff8143ce70 t selinux_secmark_refcount_inc
-ffffffff8143ce90 t selinux_secmark_refcount_dec
-ffffffff8143ceb0 t selinux_req_classify_flow
-ffffffff8143ced0 t selinux_tun_dev_free_security
-ffffffff8143cee0 t selinux_tun_dev_create
-ffffffff8143cf30 t selinux_tun_dev_attach_queue
-ffffffff8143cf80 t selinux_tun_dev_attach
-ffffffff8143cfa0 t selinux_tun_dev_open
-ffffffff8143d020 t selinux_perf_event_open
-ffffffff8143d080 t selinux_perf_event_free
-ffffffff8143d0b0 t selinux_perf_event_read
-ffffffff8143d100 t selinux_perf_event_write
-ffffffff8143d150 t selinux_uring_override_creds
-ffffffff8143d1a0 t selinux_uring_sqpoll
-ffffffff8143d1f0 t selinux_uring_cmd
-ffffffff8143d2b0 t selinux_fs_context_dup
-ffffffff8143d2f0 t selinux_fs_context_parse_param
-ffffffff8143d370 t selinux_sb_eat_lsm_opts
-ffffffff8143d6d0 t selinux_msg_msg_alloc_security
-ffffffff8143d6f0 t selinux_msg_queue_alloc_security
-ffffffff8143d7c0 t selinux_shm_alloc_security
-ffffffff8143d890 t selinux_sb_alloc_security
-ffffffff8143d900 t selinux_inode_alloc_security
-ffffffff8143d970 t selinux_sem_alloc_security
-ffffffff8143da40 t selinux_secid_to_secctx
-ffffffff8143da70 t selinux_inode_getsecctx
-ffffffff8143daa0 t selinux_sk_alloc_security
-ffffffff8143db20 t selinux_tun_dev_alloc_security
-ffffffff8143db80 t selinux_perf_event_alloc
-ffffffff8143dbe0 t ptrace_parent_sid
-ffffffff8143dc40 t match_file
-ffffffff8143dc90 t file_has_perm
-ffffffff8143dda0 t show_sid
-ffffffff8143deb0 t selinux_determine_inode_label
-ffffffff8143dfa0 t may_create
-ffffffff8143e160 t may_link
-ffffffff8143e350 t audit_inode_permission
-ffffffff8143e410 t has_cap_mac_admin
-ffffffff8143e570 t ioctl_has_perm
-ffffffff8143e700 t file_map_prot_check
-ffffffff8143e7f0 t socket_type_to_security_class
-ffffffff8143e990 t selinux_socket_connect_helper
-ffffffff8143ec00 t selinux_parse_skb
-ffffffff8143f080 t selinux_sctp_process_new_assoc
-ffffffff8143f1e0 t selinux_add_opt
-ffffffff8143f340 t sel_init_fs_context
-ffffffff8143f360 t sel_kill_sb
-ffffffff8143f3f0 t sel_get_tree
-ffffffff8143f410 t sel_fill_super
-ffffffff8143fa90 t sel_make_dir
-ffffffff8143fb60 t sel_write_load
-ffffffff8143fd90 t sel_make_policy_nodes
-ffffffff81440550 t sel_remove_old_bool_data
-ffffffff814405a0 t sel_read_bool
-ffffffff814406d0 t sel_write_bool
-ffffffff81440860 t sel_read_class
-ffffffff81440900 t sel_read_perm
-ffffffff814409b0 t sel_read_enforce
-ffffffff81440a50 t sel_write_enforce
-ffffffff81440c10 t selinux_transaction_write
-ffffffff81440c90 t sel_write_context
-ffffffff81440dd0 t sel_write_access
-ffffffff81440fd0 t sel_write_create
-ffffffff814412e0 t sel_write_relabel
-ffffffff81441510 t sel_write_user
-ffffffff81441760 t sel_write_member
-ffffffff814419b0 t sel_read_policyvers
-ffffffff81441a40 t sel_commit_bools_write
-ffffffff81441b90 t sel_read_mls
-ffffffff81441c30 t sel_read_checkreqprot
-ffffffff81441cd0 t sel_write_checkreqprot
-ffffffff81441e70 t sel_read_handle_unknown
-ffffffff81441f30 t sel_read_handle_status
-ffffffff81441f80 t sel_mmap_handle_status
-ffffffff81441ff0 t sel_open_handle_status
-ffffffff81442030 t sel_read_policy
-ffffffff814420c0 t sel_mmap_policy
-ffffffff81442110 t sel_open_policy
-ffffffff81442280 t sel_release_policy
-ffffffff814422c0 t sel_mmap_policy_fault
-ffffffff81442330 t sel_write_validatetrans
-ffffffff814425c0 t sel_read_avc_cache_threshold
-ffffffff81442660 t sel_write_avc_cache_threshold
-ffffffff81442780 t sel_read_avc_hash_stats
-ffffffff81442810 t sel_open_avc_cache_stats
-ffffffff81442830 t sel_avc_stats_seq_start
-ffffffff814428b0 t sel_avc_stats_seq_stop
-ffffffff814428c0 t sel_avc_stats_seq_next
-ffffffff81442950 t sel_avc_stats_seq_show
-ffffffff814429a0 t sel_read_sidtab_hash_stats
-ffffffff81442a30 t sel_read_initcon
-ffffffff81442af0 t sel_read_policycap
-ffffffff81442ba0 t selnl_notify_setenforce
-ffffffff81442bf0 t selnl_notify.llvm.13610605582485814890
-ffffffff81442ce0 t selnl_notify_policyload
-ffffffff81442d30 t selinux_nlmsg_lookup
-ffffffff81442ed0 t selinux_nlmsg_init
-ffffffff81443210 t sel_netif_sid
-ffffffff814433b0 t sel_netif_flush
-ffffffff81443460 t sel_netif_netdev_notifier_handler
-ffffffff81443510 t sel_netnode_sid
-ffffffff81443840 t sel_netnode_flush
-ffffffff81443930 t sel_netport_sid
-ffffffff81443b10 t sel_netport_flush
-ffffffff81443c00 t selinux_kernel_status_page
-ffffffff81443ca0 t selinux_status_update_setenforce
-ffffffff81443d00 t selinux_status_update_policyload
-ffffffff81443d80 t ebitmap_cmp
-ffffffff81443e00 t ebitmap_cpy
-ffffffff81443f00 t ebitmap_destroy
-ffffffff81443f50 t ebitmap_and
-ffffffff814440f0 t ebitmap_get_bit
-ffffffff81444150 t ebitmap_set_bit
-ffffffff81444310 t ebitmap_contains
-ffffffff81444510 t ebitmap_read
-ffffffff81444770 t ebitmap_write
-ffffffff81444a90 t ebitmap_hash
-ffffffff81444ca0 t hashtab_init
-ffffffff81444d40 t __hashtab_insert
-ffffffff81444da0 t hashtab_destroy
-ffffffff81444e20 t hashtab_map
-ffffffff81444eb0 t hashtab_stat
-ffffffff81444f90 t hashtab_duplicate
-ffffffff81445170 t symtab_init
-ffffffff81445190 t symtab_insert
-ffffffff814452e0 t symtab_search
-ffffffff814453e0 t sidtab_init
-ffffffff81445570 t sidtab_set_initial
-ffffffff81445720 t context_to_sid
-ffffffff81445840 t sidtab_hash_stats
-ffffffff81445910 t sidtab_search_entry
-ffffffff81445a30 t sidtab_search_entry_force
-ffffffff81445b50 t sidtab_context_to_sid
-ffffffff81445e40 t sidtab_do_lookup
-ffffffff81446050 t context_destroy
-ffffffff814460d0 t context_destroy
-ffffffff81446150 t sidtab_convert
-ffffffff814462c0 t sidtab_convert_tree
-ffffffff81446430 t sidtab_convert_hashtable
-ffffffff814465b0 t sidtab_cancel_convert
-ffffffff814465f0 t sidtab_freeze_begin
-ffffffff81446620 t sidtab_freeze_end
-ffffffff81446640 t sidtab_destroy
-ffffffff81446730 t sidtab_destroy_tree
-ffffffff81446820 t sidtab_sid2str_put
-ffffffff814469d0 t sidtab_sid2str_get
-ffffffff81446a70 t avtab_insert_nonunique
-ffffffff81446c70 t avtab_search
-ffffffff81446da0 t avtab_search_node
-ffffffff81446ed0 t avtab_search_node_next
-ffffffff81446f30 t avtab_destroy
-ffffffff81446fe0 t avtab_init
-ffffffff81447010 t avtab_alloc
-ffffffff814470a0 t avtab_alloc_dup
-ffffffff81447100 t avtab_hash_eval
-ffffffff81447110 t avtab_read_item
-ffffffff81447600 t avtab_read
-ffffffff814477e0 t avtab_insertf
-ffffffff81447a20 t avtab_write_item
-ffffffff81447b50 t avtab_write
-ffffffff81447be0 t policydb_filenametr_search
-ffffffff81447cd0 t policydb_rangetr_search
-ffffffff81447d60 t policydb_roletr_search
-ffffffff81447df0 t policydb_destroy
-ffffffff81448d30 t role_tr_destroy
-ffffffff81448d50 t filenametr_destroy
-ffffffff81448da0 t range_tr_destroy
-ffffffff81448de0 t policydb_load_isids
-ffffffff81448eb0 t policydb_class_isvalid
-ffffffff81448ed0 t policydb_role_isvalid
-ffffffff81448ef0 t policydb_type_isvalid
-ffffffff81448f10 t policydb_context_isvalid
-ffffffff81448fd0 t string_to_security_class
-ffffffff81449000 t string_to_av_perm
-ffffffff81449070 t policydb_read
-ffffffff81449ae0 t policydb_lookup_compat
-ffffffff81449b10 t hashtab_insert
-ffffffff81449c70 t filename_trans_read
-ffffffff8144a4c0 t policydb_index
-ffffffff8144a5d0 t ocontext_read
-ffffffff8144ab50 t genfs_read
-ffffffff8144b0d0 t range_read
-ffffffff8144b370 t policydb_bounds_sanity_check
-ffffffff8144b3d0 t policydb_write
-ffffffff8144b710 t role_trans_write
-ffffffff8144b790 t role_allow_write
-ffffffff8144b820 t filename_trans_write
-ffffffff8144b890 t ocontext_write
-ffffffff8144bd60 t genfs_write
-ffffffff8144bf70 t range_write
-ffffffff8144bff0 t common_destroy
-ffffffff8144c040 t cls_destroy
-ffffffff8144c1a0 t role_destroy
-ffffffff8144c1e0 t type_destroy
-ffffffff8144c200 t user_destroy
-ffffffff8144c250 t sens_destroy
-ffffffff8144c2a0 t cat_destroy
-ffffffff8144c2c0 t perm_destroy
-ffffffff8144c2e0 t common_read
-ffffffff8144c4a0 t class_read
-ffffffff8144c800 t role_read
-ffffffff8144ca00 t type_read
-ffffffff8144cbb0 t user_read
-ffffffff8144cde0 t sens_read
-ffffffff8144cfc0 t cat_read
-ffffffff8144d0e0 t perm_read
-ffffffff8144d200 t read_cons_helper
-ffffffff8144d4e0 t mls_read_range_helper
-ffffffff8144d650 t mls_read_level
-ffffffff8144d6d0 t common_index
-ffffffff8144d700 t class_index
-ffffffff8144d740 t role_index
-ffffffff8144d790 t type_index
-ffffffff8144d7e0 t user_index
-ffffffff8144d830 t sens_index
-ffffffff8144d870 t cat_index
-ffffffff8144d8b0 t context_read_and_validate
-ffffffff8144d9d0 t user_bounds_sanity_check
-ffffffff8144db90 t role_bounds_sanity_check
-ffffffff8144dd50 t type_bounds_sanity_check
-ffffffff8144de00 t common_write
-ffffffff8144deb0 t class_write
-ffffffff8144e0d0 t role_write
-ffffffff8144e1d0 t type_write
-ffffffff8144e2e0 t user_write
-ffffffff8144e420 t sens_write
-ffffffff8144e4d0 t cat_write
-ffffffff8144e560 t perm_write
-ffffffff8144e5e0 t write_cons_helper
-ffffffff8144e730 t mls_write_range_helper
-ffffffff8144e830 t role_trans_write_one
-ffffffff8144e8a0 t filename_write_helper_compat
-ffffffff8144ea80 t filename_write_helper
-ffffffff8144eb60 t range_write_helper
-ffffffff8144ebd0 t security_mls_enabled
-ffffffff8144ec00 t services_compute_xperms_drivers
-ffffffff8144eca0 t security_validate_transition_user
-ffffffff8144ecc0 t security_compute_validatetrans.llvm.7181964455342960733
-ffffffff8144f040 t security_validate_transition
-ffffffff8144f060 t security_bounded_transition
-ffffffff8144f280 t services_compute_xperms_decision
-ffffffff8144f430 t security_compute_xperms_decision
-ffffffff8144f8c0 t security_compute_av
-ffffffff81450260 t security_compute_av_user
-ffffffff81450390 t security_sidtab_hash_stats
-ffffffff814503f0 t security_get_initial_sid_context
-ffffffff81450420 t security_sid_to_context
-ffffffff81450440 t security_sid_to_context_core.llvm.7181964455342960733
-ffffffff814505e0 t security_sid_to_context_force
-ffffffff81450600 t security_sid_to_context_inval
-ffffffff81450620 t security_context_to_sid
-ffffffff81450640 t security_context_to_sid_core.llvm.7181964455342960733
-ffffffff81450950 t security_context_str_to_sid
-ffffffff814509a0 t security_context_to_sid_default
-ffffffff814509c0 t security_context_to_sid_force
-ffffffff814509e0 t security_transition_sid
-ffffffff81450a20 t security_compute_sid.llvm.7181964455342960733
-ffffffff814512d0 t security_transition_sid_user
-ffffffff81451300 t security_member_sid
-ffffffff81451330 t security_change_sid
-ffffffff81451360 t selinux_policy_cancel
-ffffffff814513c0 t selinux_policy_commit
-ffffffff814517e0 t security_load_policy
-ffffffff81451d10 t convert_context
-ffffffff81452060 t security_port_sid
-ffffffff81452190 t security_ib_pkey_sid
-ffffffff814522c0 t security_ib_endport_sid
-ffffffff814523d0 t security_netif_sid
-ffffffff814524d0 t security_node_sid
-ffffffff814526b0 t security_get_user_sids
-ffffffff81452d20 t security_genfs_sid
-ffffffff81452da0 t __security_genfs_sid.llvm.7181964455342960733
-ffffffff81452f30 t selinux_policy_genfs_sid
-ffffffff81452f40 t security_fs_use
-ffffffff814530a0 t security_get_bools
-ffffffff814531e0 t security_set_bools
-ffffffff814533e0 t security_get_bool_value
-ffffffff81453440 t security_sid_mls_copy
-ffffffff81453830 t context_struct_to_string
-ffffffff814539e0 t security_net_peersid_resolve
-ffffffff81453b20 t security_get_classes
-ffffffff81453bd0 t get_classes_callback
-ffffffff81453c10 t security_get_permissions
-ffffffff81453d20 t get_permissions_callback
-ffffffff81453d60 t security_get_reject_unknown
-ffffffff81453da0 t security_get_allow_unknown
-ffffffff81453de0 t security_policycap_supported
-ffffffff81453e20 t selinux_audit_rule_free
-ffffffff81453eb0 t selinux_audit_rule_init
-ffffffff81454120 t selinux_audit_rule_known
-ffffffff81454180 t selinux_audit_rule_match
-ffffffff81454500 t security_read_policy
-ffffffff814545b0 t security_read_state_kernel
-ffffffff81454680 t constraint_expr_eval
-ffffffff81454c50 t type_attribute_bounds_av
-ffffffff81454df0 t security_dump_masked_av
-ffffffff81454ff0 t dump_masked_av_helper
-ffffffff81455010 t string_to_context_struct
-ffffffff81455200 t aurule_avc_callback
-ffffffff81455220 t context_struct_compute_av.63
-ffffffff81455670 t evaluate_cond_nodes
-ffffffff814559b0 t cond_policydb_init
-ffffffff81455a00 t cond_policydb_destroy
-ffffffff81455ab0 t cond_init_bool_indexes
-ffffffff81455b00 t cond_destroy_bool
-ffffffff81455b20 t cond_index_bool
-ffffffff81455b60 t cond_read_bool
-ffffffff81455c90 t cond_read_list
-ffffffff814560d0 t cond_write_bool
-ffffffff81456150 t cond_write_list
-ffffffff81456380 t cond_compute_xperms
-ffffffff814563f0 t cond_compute_av
-ffffffff814564e0 t cond_policydb_destroy_dup
-ffffffff81456520 t cond_bools_destroy.llvm.5925701521839893841
-ffffffff81456540 t cond_policydb_dup
-ffffffff81456930 t cond_insertf
-ffffffff81456a60 t cond_bools_copy
-ffffffff81456ab0 t cond_bools_index
-ffffffff81456ad0 t mls_compute_context_len
-ffffffff81456d30 t mls_sid_to_context
-ffffffff81457050 t mls_level_isvalid
-ffffffff814570c0 t mls_range_isvalid
-ffffffff814571b0 t mls_context_isvalid
-ffffffff81457260 t mls_context_to_sid
-ffffffff81457580 t mls_context_cpy
-ffffffff814575f0 t mls_from_string
-ffffffff81457660 t mls_range_set
-ffffffff814576b0 t mls_setup_user_range
-ffffffff81457880 t mls_convert_context
-ffffffff81457aa0 t mls_compute_sid
-ffffffff81457d40 t mls_context_cpy_low
-ffffffff81457dc0 t mls_context_cpy_high
-ffffffff81457e40 t mls_context_glblub
-ffffffff81457ec0 t context_compute_hash
-ffffffff81457fa0 t ipv4_skb_to_auditdata
-ffffffff81458050 t ipv6_skb_to_auditdata
-ffffffff81458240 t common_lsm_audit
-ffffffff81458a50 t integrity_iint_find
-ffffffff81458ac0 t integrity_inode_get
-ffffffff81458c10 t integrity_inode_free
-ffffffff81458ce0 t integrity_kernel_read
-ffffffff81458d30 t integrity_audit_msg
-ffffffff81458d50 t integrity_audit_message
-ffffffff81458ef0 t crypto_mod_get
-ffffffff81458f30 t crypto_mod_put
-ffffffff81458f80 t crypto_larval_alloc
-ffffffff81459030 t crypto_larval_destroy
-ffffffff814590a0 t crypto_larval_kill
-ffffffff81459140 t crypto_wait_for_test
-ffffffff814591b0 t crypto_probing_notify
-ffffffff814591f0 t crypto_alg_mod_lookup
-ffffffff81459480 t crypto_larval_wait
-ffffffff81459580 t crypto_shoot_alg
-ffffffff814595b0 t __crypto_alloc_tfm
-ffffffff814596e0 t crypto_alloc_base
-ffffffff814597f0 t crypto_create_tfm_node
-ffffffff81459910 t crypto_find_alg
-ffffffff81459940 t crypto_alloc_tfm_node
-ffffffff81459a80 t crypto_destroy_tfm
-ffffffff81459b40 t crypto_has_alg
-ffffffff81459bb0 t crypto_req_done
-ffffffff81459bd0 t crypto_alg_lookup
-ffffffff81459d00 t __crypto_alg_lookup
-ffffffff81459e80 t crypto_cipher_setkey
-ffffffff81459f70 t crypto_cipher_encrypt_one
-ffffffff8145a050 t crypto_cipher_decrypt_one
-ffffffff8145a130 t crypto_comp_compress
-ffffffff8145a150 t crypto_comp_decompress
-ffffffff8145a170 t crypto_remove_spawns
-ffffffff8145a450 t crypto_remove_instance
-ffffffff8145a520 t crypto_alg_tested
-ffffffff8145a720 t crypto_alg_finish_registration
-ffffffff8145a860 t crypto_remove_final
-ffffffff8145a900 t crypto_register_alg
-ffffffff8145aaa0 t __crypto_register_alg
-ffffffff8145abc0 t crypto_unregister_alg
-ffffffff8145ad30 t crypto_register_algs
-ffffffff8145adc0 t crypto_unregister_algs
-ffffffff8145ae00 t crypto_register_template
-ffffffff8145aea0 t crypto_register_templates
-ffffffff8145afb0 t crypto_unregister_template
-ffffffff8145b190 t crypto_unregister_templates
-ffffffff8145b1e0 t crypto_lookup_template
-ffffffff8145b250 t crypto_register_instance
-ffffffff8145b480 t crypto_unregister_instance
-ffffffff8145b570 t crypto_grab_spawn
-ffffffff8145b680 t crypto_drop_spawn
-ffffffff8145b700 t crypto_spawn_tfm
-ffffffff8145b770 t crypto_spawn_alg
-ffffffff8145b850 t crypto_spawn_tfm2
-ffffffff8145b8a0 t crypto_register_notifier
-ffffffff8145b8c0 t crypto_unregister_notifier
-ffffffff8145b8e0 t crypto_get_attr_type
-ffffffff8145b930 t crypto_check_attr_type
-ffffffff8145b9a0 t crypto_attr_alg_name
-ffffffff8145b9f0 t crypto_inst_setname
-ffffffff8145ba70 t crypto_init_queue
-ffffffff8145ba90 t crypto_enqueue_request
-ffffffff8145bb10 t crypto_enqueue_request_head
-ffffffff8145bb60 t crypto_dequeue_request
-ffffffff8145bbd0 t crypto_inc
-ffffffff8145bc20 t crypto_alg_extsize
-ffffffff8145bc40 t crypto_type_has_alg
-ffffffff8145bc70 t crypto_destroy_instance
-ffffffff8145bc90 t scatterwalk_copychunks
-ffffffff8145be00 t scatterwalk_map_and_copy
-ffffffff8145bf90 t scatterwalk_ffwd
-ffffffff8145c050 t c_start.llvm.10832948479470173249
-ffffffff8145c080 t c_stop.llvm.10832948479470173249
-ffffffff8145c0a0 t c_next.llvm.10832948479470173249
-ffffffff8145c0c0 t c_show.llvm.10832948479470173249
-ffffffff8145c260 t crypto_aead_setkey
-ffffffff8145c340 t crypto_aead_setauthsize
-ffffffff8145c3a0 t crypto_aead_encrypt
-ffffffff8145c3d0 t crypto_aead_decrypt
-ffffffff8145c410 t crypto_grab_aead
-ffffffff8145c430 t crypto_alloc_aead
-ffffffff8145c460 t crypto_register_aead
-ffffffff8145c4c0 t crypto_unregister_aead
-ffffffff8145c4e0 t crypto_register_aeads
-ffffffff8145c5d0 t crypto_unregister_aeads
-ffffffff8145c620 t aead_register_instance
-ffffffff8145c690 t crypto_aead_init_tfm.llvm.15281575547612354064
-ffffffff8145c6e0 t crypto_aead_show.llvm.15281575547612354064
-ffffffff8145c780 t crypto_aead_report.llvm.15281575547612354064
-ffffffff8145c840 t crypto_aead_free_instance.llvm.15281575547612354064
-ffffffff8145c860 t crypto_aead_exit_tfm
-ffffffff8145c880 t aead_geniv_alloc
-ffffffff8145ca30 t aead_geniv_setkey
-ffffffff8145ca50 t aead_geniv_setauthsize
-ffffffff8145ca70 t aead_geniv_free
-ffffffff8145caa0 t aead_init_geniv
-ffffffff8145cb50 t aead_exit_geniv
-ffffffff8145cb70 t skcipher_walk_done
-ffffffff8145cd30 t skcipher_done_slow
-ffffffff8145cd80 t skcipher_walk_next
-ffffffff8145d030 t skcipher_walk_complete
-ffffffff8145d1a0 t skcipher_walk_virt
-ffffffff8145d1f0 t skcipher_walk_skcipher
-ffffffff8145d390 t skcipher_walk_async
-ffffffff8145d3c0 t skcipher_walk_aead_encrypt
-ffffffff8145d3e0 t skcipher_walk_aead_common
-ffffffff8145d600 t skcipher_walk_aead_decrypt
-ffffffff8145d620 t crypto_skcipher_setkey
-ffffffff8145d710 t crypto_skcipher_encrypt
-ffffffff8145d740 t crypto_skcipher_decrypt
-ffffffff8145d770 t crypto_grab_skcipher
-ffffffff8145d790 t crypto_alloc_skcipher
-ffffffff8145d7c0 t crypto_alloc_sync_skcipher
-ffffffff8145d820 t crypto_has_skcipher
-ffffffff8145d840 t crypto_register_skcipher
-ffffffff8145d8b0 t crypto_unregister_skcipher
-ffffffff8145d8d0 t crypto_register_skciphers
-ffffffff8145d9d0 t crypto_unregister_skciphers
-ffffffff8145da20 t skcipher_register_instance
-ffffffff8145daa0 t skcipher_alloc_instance_simple
-ffffffff8145dc10 t skcipher_free_instance_simple
-ffffffff8145dc40 t skcipher_setkey_simple
-ffffffff8145dc70 t skcipher_init_tfm_simple
-ffffffff8145dcb0 t skcipher_exit_tfm_simple
-ffffffff8145dcd0 t skcipher_next_slow
-ffffffff8145de20 t skcipher_next_copy
-ffffffff8145df50 t crypto_skcipher_init_tfm.llvm.18332678875427598193
-ffffffff8145dfa0 t crypto_skcipher_show.llvm.18332678875427598193
-ffffffff8145e060 t crypto_skcipher_report.llvm.18332678875427598193
-ffffffff8145e120 t crypto_skcipher_free_instance.llvm.18332678875427598193
-ffffffff8145e140 t crypto_skcipher_exit_tfm
-ffffffff8145e160 t seqiv_aead_create
-ffffffff8145e1f0 t seqiv_aead_encrypt
-ffffffff8145e410 t seqiv_aead_decrypt
-ffffffff8145e4b0 t seqiv_aead_encrypt_complete
-ffffffff8145e510 t seqiv_aead_encrypt_complete2
-ffffffff8145e560 t echainiv_aead_create
-ffffffff8145e5f0 t echainiv_encrypt
-ffffffff8145e7b0 t echainiv_decrypt
-ffffffff8145e850 t crypto_hash_walk_done
-ffffffff8145ea30 t crypto_hash_walk_first
-ffffffff8145eb30 t crypto_ahash_setkey
-ffffffff8145ec10 t crypto_ahash_final
-ffffffff8145ec30 t crypto_ahash_op
-ffffffff8145ed60 t crypto_ahash_finup
-ffffffff8145ed80 t crypto_ahash_digest
-ffffffff8145edb0 t crypto_grab_ahash
-ffffffff8145edd0 t crypto_alloc_ahash
-ffffffff8145ee00 t crypto_has_ahash
-ffffffff8145ee20 t crypto_register_ahash
-ffffffff8145ee70 t crypto_unregister_ahash
-ffffffff8145ee90 t crypto_register_ahashes
-ffffffff8145ef70 t crypto_unregister_ahashes
-ffffffff8145efc0 t ahash_register_instance
-ffffffff8145f020 t crypto_hash_alg_has_setkey
-ffffffff8145f060 t ahash_nosetkey
-ffffffff8145f070 t ahash_op_unaligned_done
-ffffffff8145f160 t crypto_ahash_extsize.llvm.4935176195753504177
-ffffffff8145f190 t crypto_ahash_init_tfm.llvm.4935176195753504177
-ffffffff8145f260 t crypto_ahash_show.llvm.4935176195753504177
-ffffffff8145f2d0 t crypto_ahash_report.llvm.4935176195753504177
-ffffffff8145f3a0 t crypto_ahash_free_instance.llvm.4935176195753504177
-ffffffff8145f3c0 t ahash_def_finup
-ffffffff8145f510 t crypto_ahash_exit_tfm
-ffffffff8145f530 t ahash_def_finup_done1
-ffffffff8145f670 t ahash_def_finup_done2
-ffffffff8145f6f0 t crypto_shash_alg_has_setkey
-ffffffff8145f710 t shash_no_setkey.llvm.5295427923844861501
-ffffffff8145f720 t crypto_shash_setkey
-ffffffff8145f810 t crypto_shash_update
-ffffffff8145f9c0 t crypto_shash_final
-ffffffff8145fb30 t crypto_shash_finup
-ffffffff8145fb70 t shash_finup_unaligned
-ffffffff8145fe80 t crypto_shash_digest
-ffffffff8145ff20 t shash_digest_unaligned
-ffffffff8145ffa0 t crypto_shash_tfm_digest
-ffffffff814600c0 t shash_ahash_update
-ffffffff81460300 t shash_ahash_finup
-ffffffff814606f0 t shash_ahash_digest
-ffffffff81460870 t crypto_init_shash_ops_async
-ffffffff81460940 t crypto_exit_shash_ops_async
-ffffffff81460960 t shash_async_init
-ffffffff814609a0 t shash_async_update
-ffffffff814609c0 t shash_async_final
-ffffffff81460b30 t shash_async_finup
-ffffffff81460b50 t shash_async_digest
-ffffffff81460b70 t shash_async_setkey
-ffffffff81460c60 t shash_async_export
-ffffffff81460c90 t shash_async_import
-ffffffff81460cd0 t crypto_grab_shash
-ffffffff81460cf0 t crypto_alloc_shash
-ffffffff81460d20 t crypto_has_shash
-ffffffff81460d40 t crypto_register_shash
-ffffffff81460e10 t crypto_unregister_shash
-ffffffff81460e30 t crypto_register_shashes
-ffffffff81460fb0 t crypto_unregister_shashes
-ffffffff81461000 t shash_register_instance
-ffffffff814610e0 t shash_free_singlespawn_instance
-ffffffff81461110 t crypto_shash_init_tfm.llvm.5295427923844861501
-ffffffff814611b0 t crypto_shash_show.llvm.5295427923844861501
-ffffffff81461200 t crypto_shash_report.llvm.5295427923844861501
-ffffffff814612d0 t crypto_shash_free_instance.llvm.5295427923844861501
-ffffffff814612f0 t crypto_shash_exit_tfm
-ffffffff81461310 t shash_default_export
-ffffffff81461340 t shash_default_import
-ffffffff81461360 t crypto_grab_akcipher
-ffffffff81461380 t crypto_alloc_akcipher
-ffffffff814613b0 t crypto_register_akcipher
-ffffffff81461450 t akcipher_default_op
-ffffffff81461460 t akcipher_default_set_key
-ffffffff81461470 t crypto_unregister_akcipher
-ffffffff81461490 t akcipher_register_instance
-ffffffff814614e0 t crypto_akcipher_init_tfm
-ffffffff81461520 t crypto_akcipher_show
-ffffffff81461540 t crypto_akcipher_report
-ffffffff814615f0 t crypto_akcipher_free_instance
-ffffffff81461610 t crypto_akcipher_exit_tfm
-ffffffff81461630 t crypto_alloc_kpp
-ffffffff81461660 t crypto_grab_kpp
-ffffffff81461680 t crypto_has_kpp
-ffffffff814616a0 t crypto_register_kpp
-ffffffff814616d0 t crypto_unregister_kpp
-ffffffff814616f0 t kpp_register_instance
-ffffffff81461740 t crypto_kpp_init_tfm
-ffffffff81461780 t crypto_kpp_show
-ffffffff814617a0 t crypto_kpp_report
-ffffffff81461850 t crypto_kpp_free_instance
-ffffffff81461870 t crypto_kpp_exit_tfm
-ffffffff81461890 t crypto_alloc_acomp
-ffffffff814618c0 t crypto_alloc_acomp_node
-ffffffff814618e0 t acomp_request_alloc
-ffffffff81461930 t acomp_request_free
-ffffffff81461990 t crypto_register_acomp
-ffffffff814619c0 t crypto_unregister_acomp
-ffffffff814619e0 t crypto_register_acomps
-ffffffff81461aa0 t crypto_unregister_acomps
-ffffffff81461af0 t crypto_acomp_extsize
-ffffffff81461b20 t crypto_acomp_init_tfm
-ffffffff81461ba0 t crypto_acomp_show
-ffffffff81461bc0 t crypto_acomp_report
-ffffffff81461c70 t crypto_acomp_exit_tfm
-ffffffff81461c90 t crypto_init_scomp_ops_async
-ffffffff81461d20 t crypto_exit_scomp_ops_async
-ffffffff81461dd0 t scomp_acomp_compress
-ffffffff81461df0 t scomp_acomp_decompress
-ffffffff81461e10 t crypto_acomp_scomp_alloc_ctx
-ffffffff81461e60 t crypto_acomp_scomp_free_ctx
-ffffffff81461e90 t crypto_register_scomp
-ffffffff81461ec0 t crypto_unregister_scomp
-ffffffff81461ee0 t crypto_register_scomps
-ffffffff81461fa0 t crypto_unregister_scomps
-ffffffff81461ff0 t scomp_acomp_comp_decomp
-ffffffff81462120 t crypto_scomp_init_tfm
-ffffffff81462270 t crypto_scomp_show
-ffffffff81462290 t crypto_scomp_report
-ffffffff81462340 t cryptomgr_notify
-ffffffff814625e0 t cryptomgr_probe
-ffffffff81462670 t crypto_alg_put
-ffffffff814626c0 t alg_test
-ffffffff814626d0 t hmac_create
-ffffffff814628e0 t hmac_init
-ffffffff81462940 t hmac_update
-ffffffff81462960 t hmac_final
-ffffffff81462a00 t hmac_finup
-ffffffff81462aa0 t hmac_export
-ffffffff81462ad0 t hmac_import
-ffffffff81462b30 t hmac_setkey
-ffffffff81462da0 t hmac_init_tfm
-ffffffff81462e10 t hmac_exit_tfm
-ffffffff81462e50 t xcbc_create
-ffffffff81463020 t xcbc_init_tfm
-ffffffff81463060 t xcbc_exit_tfm
-ffffffff81463080 t crypto_xcbc_digest_init
-ffffffff814630c0 t crypto_xcbc_digest_update
-ffffffff814631e0 t crypto_xcbc_digest_final
-ffffffff814632c0 t crypto_xcbc_digest_setkey
-ffffffff81463390 t crypto_get_default_null_skcipher
-ffffffff814633f0 t crypto_put_default_null_skcipher
-ffffffff81463440 t null_setkey
-ffffffff81463450 t null_crypt
-ffffffff81463460 t null_compress
-ffffffff81463490 t null_init
-ffffffff814634a0 t null_update
-ffffffff814634b0 t null_final
-ffffffff814634c0 t null_digest
-ffffffff814634d0 t null_hash_setkey
-ffffffff814634e0 t null_skcipher_setkey
-ffffffff814634f0 t null_skcipher_crypt
-ffffffff814635b0 t md5_init
-ffffffff814635f0 t md5_update
-ffffffff814636f0 t md5_final
-ffffffff814637f0 t md5_export
-ffffffff81463820 t md5_import
-ffffffff81463840 t md5_transform
-ffffffff81463f80 t crypto_sha1_update
-ffffffff814641f0 t crypto_sha1_finup
-ffffffff81464480 t sha1_final
-ffffffff81464700 t sha1_base_init
-ffffffff81464740 t crypto_sha256_update
-ffffffff81464760 t crypto_sha256_finup
-ffffffff814647b0 t crypto_sha256_final
-ffffffff814647e0 t crypto_sha512_update
-ffffffff814648d0 t sha512_generic_block_fn
-ffffffff81465130 t crypto_sha512_finup
-ffffffff81465250 t sha512_final
-ffffffff814653a0 t blake2b_compress_generic
-ffffffff81466c70 t crypto_blake2b_init
-ffffffff81466d90 t crypto_blake2b_update_generic
-ffffffff81466e90 t crypto_blake2b_final_generic
-ffffffff81466f20 t crypto_blake2b_setkey
-ffffffff81466f60 t gf128mul_x8_ble
-ffffffff81466fa0 t gf128mul_lle
-ffffffff81467240 t gf128mul_bbe
-ffffffff814674c0 t gf128mul_init_64k_bbe
-ffffffff81467a30 t gf128mul_free_64k
-ffffffff81467ae0 t gf128mul_64k_bbe
-ffffffff81467c50 t gf128mul_init_4k_lle
-ffffffff81467e70 t gf128mul_init_4k_bbe
-ffffffff81468080 t gf128mul_4k_lle
-ffffffff81468100 t gf128mul_4k_bbe
-ffffffff81468180 t crypto_cbc_create
-ffffffff81468210 t crypto_cbc_encrypt
-ffffffff814683b0 t crypto_cbc_decrypt
-ffffffff814685f0 t crypto_ctr_create
-ffffffff81468680 t crypto_rfc3686_create
-ffffffff81468870 t crypto_ctr_crypt
-ffffffff81468b10 t crypto_rfc3686_setkey
-ffffffff81468b60 t crypto_rfc3686_crypt
-ffffffff81468bf0 t crypto_rfc3686_init_tfm
-ffffffff81468c30 t crypto_rfc3686_exit_tfm
-ffffffff81468c50 t crypto_rfc3686_free
-ffffffff81468c80 t crypto_xctr_create
-ffffffff81468d10 t crypto_xctr_crypt
-ffffffff81469050 t hctr2_create_base
-ffffffff814690b0 t hctr2_create
-ffffffff814691e0 t hctr2_create_common
-ffffffff81469600 t hctr2_setkey
-ffffffff81469870 t hctr2_encrypt
-ffffffff81469890 t hctr2_decrypt
-ffffffff814698b0 t hctr2_init_tfm
-ffffffff81469990 t hctr2_exit_tfm
-ffffffff814699d0 t hctr2_free_instance
-ffffffff81469a10 t hctr2_crypt
-ffffffff81469d10 t hctr2_hash_message
-ffffffff81469e80 t hctr2_xctr_done
-ffffffff81469f80 t adiantum_create
-ffffffff8146a280 t adiantum_supported_algorithms
-ffffffff8146a310 t adiantum_setkey
-ffffffff8146a4e0 t adiantum_encrypt
-ffffffff8146a500 t adiantum_decrypt
-ffffffff8146a520 t adiantum_init_tfm
-ffffffff8146a5f0 t adiantum_exit_tfm
-ffffffff8146a630 t adiantum_free_instance
-ffffffff8146a670 t adiantum_crypt
-ffffffff8146a860 t adiantum_hash_message
-ffffffff8146a9d0 t adiantum_streamcipher_done
-ffffffff8146aa00 t adiantum_finish
-ffffffff8146aae0 t crypto_nhpoly1305_setkey
-ffffffff8146ab50 t crypto_nhpoly1305_init
-ffffffff8146ab80 t crypto_nhpoly1305_update_helper
-ffffffff8146af10 t crypto_nhpoly1305_update
-ffffffff8146b2a0 t nh_generic
-ffffffff8146b3f0 t crypto_nhpoly1305_final_helper
-ffffffff8146b600 t crypto_nhpoly1305_final
-ffffffff8146b810 t crypto_gcm_base_create
-ffffffff8146b870 t crypto_gcm_create
-ffffffff8146b9a0 t crypto_rfc4106_create
-ffffffff8146bb90 t crypto_rfc4543_create
-ffffffff8146bd80 t crypto_gcm_create_common
-ffffffff8146c030 t crypto_gcm_init_tfm
-ffffffff8146c0d0 t crypto_gcm_exit_tfm
-ffffffff8146c100 t crypto_gcm_setkey
-ffffffff8146c270 t crypto_gcm_setauthsize
-ffffffff8146c2a0 t crypto_gcm_encrypt
-ffffffff8146c430 t crypto_gcm_decrypt
-ffffffff8146c510 t crypto_gcm_free
-ffffffff8146c540 t crypto_gcm_init_common
-ffffffff8146c710 t gcm_encrypt_done
-ffffffff8146c810 t gcm_enc_copy_hash
-ffffffff8146c870 t gcm_hash_init_done
-ffffffff8146c8b0 t gcm_hash_init_continue
-ffffffff8146c9d0 t gcm_hash_assoc_done
-ffffffff8146ca90 t gcm_hash_assoc_remain_continue
-ffffffff8146cbf0 t gcm_hash_assoc_remain_done
-ffffffff8146cc30 t gcm_hash_crypt_done
-ffffffff8146cc70 t gcm_hash_crypt_continue
-ffffffff8146ce70 t gcm_hash_crypt_remain_done
-ffffffff8146cf80 t gcm_hash_len_done
-ffffffff8146cfe0 t gcm_dec_hash_continue
-ffffffff8146d100 t gcm_decrypt_done
-ffffffff8146d1a0 t crypto_rfc4106_init_tfm
-ffffffff8146d1f0 t crypto_rfc4106_exit_tfm
-ffffffff8146d210 t crypto_rfc4106_setkey
-ffffffff8146d260 t crypto_rfc4106_setauthsize
-ffffffff8146d290 t crypto_rfc4106_encrypt
-ffffffff8146d2c0 t crypto_rfc4106_decrypt
-ffffffff8146d2f0 t crypto_rfc4106_free
-ffffffff8146d320 t crypto_rfc4106_crypt
-ffffffff8146d580 t crypto_rfc4543_init_tfm
-ffffffff8146d600 t crypto_rfc4543_exit_tfm
-ffffffff8146d620 t crypto_rfc4543_setkey
-ffffffff8146d670 t crypto_rfc4543_setauthsize
-ffffffff8146d6a0 t crypto_rfc4543_encrypt
-ffffffff8146d6d0 t crypto_rfc4543_decrypt
-ffffffff8146d700 t crypto_rfc4543_free
-ffffffff8146d730 t crypto_rfc4543_crypt
-ffffffff8146d900 t rfc7539_create
-ffffffff8146d920 t rfc7539esp_create
-ffffffff8146d940 t chachapoly_create
-ffffffff8146dbd0 t chachapoly_init
-ffffffff8146dc80 t chachapoly_exit
-ffffffff8146dcb0 t chachapoly_encrypt
-ffffffff8146ddd0 t chachapoly_decrypt
-ffffffff8146de00 t chachapoly_setkey
-ffffffff8146de70 t chachapoly_setauthsize
-ffffffff8146de90 t chachapoly_free
-ffffffff8146dec0 t chacha_encrypt_done
-ffffffff8146df00 t poly_genkey
-ffffffff8146e050 t poly_genkey_done
-ffffffff8146e090 t poly_init
-ffffffff8146e1f0 t poly_init_done
-ffffffff8146e330 t poly_setkey_done
-ffffffff8146e3e0 t poly_ad_done
-ffffffff8146e420 t poly_adpad
-ffffffff8146e570 t poly_adpad_done
-ffffffff8146e640 t poly_cipher_done
-ffffffff8146e680 t poly_cipherpad
-ffffffff8146e7e0 t poly_cipherpad_done
-ffffffff8146e8d0 t poly_tail_done
-ffffffff8146e910 t poly_tail_continue
-ffffffff8146ead0 t chacha_decrypt_done
-ffffffff8146eba0 t cryptd_alloc_skcipher
-ffffffff8146ed00 t cryptd_skcipher_child
-ffffffff8146ed10 t cryptd_skcipher_queued
-ffffffff8146ed30 t cryptd_free_skcipher
-ffffffff8146ed70 t cryptd_alloc_ahash
-ffffffff8146eed0 t cryptd_ahash_child
-ffffffff8146eee0 t cryptd_shash_desc
-ffffffff8146eef0 t cryptd_ahash_queued
-ffffffff8146ef10 t cryptd_free_ahash
-ffffffff8146ef50 t cryptd_alloc_aead
-ffffffff8146f0b0 t cryptd_aead_child
-ffffffff8146f0c0 t cryptd_aead_queued
-ffffffff8146f0e0 t cryptd_free_aead
-ffffffff8146f120 t cryptd_fini_queue
-ffffffff8146f190 t cryptd_create
-ffffffff8146f6c0 t cryptd_skcipher_init_tfm
-ffffffff8146f700 t cryptd_skcipher_exit_tfm
-ffffffff8146f720 t cryptd_skcipher_setkey
-ffffffff8146f760 t cryptd_skcipher_encrypt_enqueue
-ffffffff8146f7a0 t cryptd_skcipher_decrypt_enqueue
-ffffffff8146f7e0 t cryptd_skcipher_free
-ffffffff8146f810 t cryptd_skcipher_encrypt
-ffffffff8146f920 t cryptd_enqueue_request
-ffffffff8146f9d0 t cryptd_skcipher_decrypt
-ffffffff8146fae0 t cryptd_hash_init_tfm
-ffffffff8146fb20 t cryptd_hash_exit_tfm
-ffffffff8146fb40 t cryptd_hash_init_enqueue
-ffffffff8146fb80 t cryptd_hash_update_enqueue
-ffffffff8146fbc0 t cryptd_hash_final_enqueue
-ffffffff8146fc00 t cryptd_hash_finup_enqueue
-ffffffff8146fc40 t cryptd_hash_export
-ffffffff8146fc70 t cryptd_hash_import
-ffffffff8146fcb0 t cryptd_hash_setkey
-ffffffff8146fcf0 t cryptd_hash_digest_enqueue
-ffffffff8146fd30 t cryptd_hash_free
-ffffffff8146fd60 t cryptd_hash_init
-ffffffff8146fe30 t cryptd_hash_update
-ffffffff8146fed0 t cryptd_hash_final
-ffffffff8146ff80 t cryptd_hash_finup
-ffffffff81470020 t cryptd_hash_digest
-ffffffff814700d0 t cryptd_aead_init_tfm
-ffffffff81470110 t cryptd_aead_exit_tfm
-ffffffff81470130 t cryptd_aead_setkey
-ffffffff81470150 t cryptd_aead_setauthsize
-ffffffff81470170 t cryptd_aead_encrypt_enqueue
-ffffffff814701b0 t cryptd_aead_decrypt_enqueue
-ffffffff814701f0 t cryptd_aead_free
-ffffffff81470220 t cryptd_aead_encrypt
-ffffffff814702d0 t cryptd_aead_decrypt
-ffffffff81470380 t cryptd_queue_worker
-ffffffff81470410 t des_setkey
-ffffffff814704e0 t crypto_des_encrypt
-ffffffff81470500 t crypto_des_decrypt
-ffffffff81470520 t des3_ede_setkey
-ffffffff81470580 t crypto_des3_ede_encrypt
-ffffffff814705a0 t crypto_des3_ede_decrypt
-ffffffff814705c0 t crypto_aes_set_key
-ffffffff814705e0 t crypto_aes_encrypt
-ffffffff81471300 t crypto_aes_decrypt
-ffffffff81472070 t chacha20_setkey
-ffffffff814720c0 t crypto_chacha_crypt
-ffffffff814720e0 t crypto_xchacha_crypt
-ffffffff81472220 t chacha12_setkey
-ffffffff81472270 t chacha_stream_xor
-ffffffff814723f0 t crypto_poly1305_init
-ffffffff81472430 t crypto_poly1305_update
-ffffffff81472540 t crypto_poly1305_final
-ffffffff81472570 t poly1305_blocks
-ffffffff814725e0 t crypto_poly1305_setdesckey
-ffffffff81472660 t deflate_compress
-ffffffff814726f0 t deflate_decompress
-ffffffff814727f0 t deflate_init
-ffffffff81472810 t deflate_exit
-ffffffff81472850 t __deflate_init
-ffffffff81472940 t deflate_alloc_ctx
-ffffffff814729a0 t deflate_free_ctx
-ffffffff814729e0 t deflate_scompress
-ffffffff81472a60 t deflate_sdecompress
-ffffffff81472b50 t zlib_deflate_alloc_ctx
-ffffffff81472bb0 t chksum_init
-ffffffff81472bd0 t chksum_update
-ffffffff81472bf0 t chksum_final
-ffffffff81472c10 t chksum_finup
-ffffffff81472c30 t chksum_digest
-ffffffff81472c60 t chksum_setkey
-ffffffff81472c80 t crc32c_cra_init
-ffffffff81472ca0 t crypto_authenc_extractkeys
-ffffffff81472d00 t crypto_authenc_create
-ffffffff81472f60 t crypto_authenc_init_tfm
-ffffffff81473030 t crypto_authenc_exit_tfm
-ffffffff81473060 t crypto_authenc_setkey
-ffffffff81473180 t crypto_authenc_encrypt
-ffffffff814733b0 t crypto_authenc_decrypt
-ffffffff81473470 t crypto_authenc_free
-ffffffff814734b0 t crypto_authenc_encrypt_done
-ffffffff814735a0 t authenc_geniv_ahash_done
-ffffffff81473600 t authenc_verify_ahash_done
-ffffffff81473640 t crypto_authenc_decrypt_tail
-ffffffff81473750 t crypto_authenc_esn_create
-ffffffff814739a0 t crypto_authenc_esn_init_tfm
-ffffffff81473a80 t crypto_authenc_esn_exit_tfm
-ffffffff81473ab0 t crypto_authenc_esn_setkey
-ffffffff81473bb0 t crypto_authenc_esn_setauthsize
-ffffffff81473bd0 t crypto_authenc_esn_encrypt
-ffffffff81473d80 t crypto_authenc_esn_decrypt
-ffffffff81473fd0 t crypto_authenc_esn_free
-ffffffff81474010 t crypto_authenc_esn_encrypt_done
-ffffffff81474050 t crypto_authenc_esn_genicv
-ffffffff81474270 t authenc_esn_geniv_ahash_done
-ffffffff81474380 t authenc_esn_verify_ahash_done
-ffffffff814743c0 t crypto_authenc_esn_decrypt_tail
-ffffffff81474560 t lzo_compress
-ffffffff814745d0 t lzo_decompress
-ffffffff81474640 t lzo_init
-ffffffff81474690 t lzo_exit
-ffffffff814746b0 t lzo_alloc_ctx
-ffffffff814746e0 t lzo_free_ctx
-ffffffff81474700 t lzo_scompress
-ffffffff81474770 t lzo_sdecompress
-ffffffff814747e0 t lzorle_compress
-ffffffff81474850 t lzorle_decompress
-ffffffff814748c0 t lzorle_init
-ffffffff81474910 t lzorle_exit
-ffffffff81474930 t lzorle_alloc_ctx
-ffffffff81474960 t lzorle_free_ctx
-ffffffff81474980 t lzorle_scompress
-ffffffff814749f0 t lzorle_sdecompress
-ffffffff81474a60 t lz4_compress_crypto
-ffffffff81474aa0 t lz4_decompress_crypto
-ffffffff81474ad0 t lz4_init
-ffffffff81474b10 t lz4_exit
-ffffffff81474b30 t lz4_alloc_ctx
-ffffffff81474b60 t lz4_free_ctx
-ffffffff81474b80 t lz4_scompress
-ffffffff81474bc0 t lz4_sdecompress
-ffffffff81474bf0 t crypto_rng_reset
-ffffffff81474c80 t crypto_alloc_rng
-ffffffff81474cb0 t crypto_get_default_rng
-ffffffff81474dc0 t crypto_put_default_rng
-ffffffff81474df0 t crypto_del_default_rng
-ffffffff81474e50 t crypto_register_rng
-ffffffff81474e90 t crypto_unregister_rng
-ffffffff81474eb0 t crypto_register_rngs
-ffffffff81474f90 t crypto_unregister_rngs
-ffffffff81474fe0 t crypto_rng_init_tfm.llvm.8691435919611435104
-ffffffff81474ff0 t crypto_rng_show.llvm.8691435919611435104
-ffffffff81475030 t crypto_rng_report.llvm.8691435919611435104
-ffffffff814750f0 t cprng_get_random
-ffffffff814752a0 t cprng_reset
-ffffffff814753d0 t cprng_init
-ffffffff81475500 t cprng_exit
-ffffffff81475520 t _get_more_prng_bytes
-ffffffff81475b50 t drbg_kcapi_init
-ffffffff81475b80 t drbg_kcapi_cleanup
-ffffffff81475c40 t drbg_kcapi_random
-ffffffff814760e0 t drbg_kcapi_seed
-ffffffff81476600 t drbg_kcapi_set_entropy
-ffffffff81476660 t drbg_seed
-ffffffff814769e0 t drbg_hmac_update
-ffffffff81476db0 t drbg_hmac_generate
-ffffffff81476fe0 t drbg_init_hash_kernel
-ffffffff814770b0 t drbg_fini_hash_kernel
-ffffffff814770f0 t jent_read_entropy
-ffffffff81477230 t jent_gen_entropy
-ffffffff814772c0 t jent_health_failure
-ffffffff814772f0 t jent_rct_failure
-ffffffff81477330 t jent_entropy_init
-ffffffff814776e0 t jent_apt_reset
-ffffffff81477720 t jent_entropy_collector_alloc
-ffffffff814777f0 t jent_entropy_collector_free
-ffffffff81477830 t jent_lfsr_time
-ffffffff814779d0 t jent_delta
-ffffffff81477a20 t jent_stuck
-ffffffff81477ae0 t jent_measure_jitter
-ffffffff81477ba0 t jent_memaccess
-ffffffff81477cc0 t jent_loop_shuffle
-ffffffff81477dd0 t jent_apt_insert
-ffffffff81477e80 t jent_rct_insert
-ffffffff81477f00 t jent_zalloc
-ffffffff81477f20 t jent_zfree
-ffffffff81477f30 t jent_panic
-ffffffff81477f50 t jent_memcpy
-ffffffff81477f70 t jent_get_nstime
-ffffffff81477fa0 t jent_kcapi_random
-ffffffff81478070 t jent_kcapi_reset
-ffffffff81478080 t jent_kcapi_init
-ffffffff814780c0 t jent_kcapi_cleanup
-ffffffff81478100 t ghash_init
-ffffffff81478130 t ghash_update
-ffffffff814782f0 t ghash_final
-ffffffff81478350 t ghash_setkey
-ffffffff814783f0 t ghash_exit_tfm
-ffffffff81478410 t polyval_mul_non4k
-ffffffff814784c0 t polyval_update_non4k
-ffffffff814785b0 t polyval_init
-ffffffff814785e0 t polyval_update
-ffffffff814787c0 t polyval_final
-ffffffff81478810 t polyval_setkey
-ffffffff814788d0 t polyval_exit_tfm
-ffffffff814788f0 t zstd_compress
-ffffffff814789b0 t zstd_decompress
-ffffffff814789f0 t zstd_init
-ffffffff81478a10 t zstd_exit
-ffffffff81478a60 t __zstd_init
-ffffffff81478b80 t zstd_alloc_ctx
-ffffffff81478be0 t zstd_free_ctx
-ffffffff81478c30 t zstd_scompress
-ffffffff81478cf0 t zstd_sdecompress
-ffffffff81478d30 t essiv_create
-ffffffff814791a0 t parse_cipher_name
-ffffffff81479210 t essiv_supported_algorithms
-ffffffff81479290 t essiv_skcipher_setkey
-ffffffff81479390 t essiv_skcipher_encrypt
-ffffffff81479410 t essiv_skcipher_decrypt
-ffffffff81479490 t essiv_skcipher_init_tfm
-ffffffff81479560 t essiv_skcipher_exit_tfm
-ffffffff814795a0 t essiv_skcipher_free_instance
-ffffffff814795d0 t essiv_aead_setkey
-ffffffff81479780 t essiv_aead_setauthsize
-ffffffff814797a0 t essiv_aead_encrypt
-ffffffff814797c0 t essiv_aead_decrypt
-ffffffff814797e0 t essiv_aead_init_tfm
-ffffffff814798c0 t essiv_aead_exit_tfm
-ffffffff81479900 t essiv_aead_free_instance
-ffffffff81479930 t essiv_skcipher_done
-ffffffff81479950 t essiv_aead_crypt
-ffffffff81479bf0 t sg_set_buf
-ffffffff81479c60 t essiv_aead_done
-ffffffff81479ca0 t simd_skcipher_create_compat
-ffffffff81479e40 t simd_skcipher_init
-ffffffff81479e90 t simd_skcipher_exit
-ffffffff81479eb0 t simd_skcipher_setkey
-ffffffff81479ef0 t simd_skcipher_encrypt
-ffffffff81479f70 t simd_skcipher_decrypt
-ffffffff81479ff0 t simd_skcipher_create
-ffffffff8147a110 t simd_skcipher_free
-ffffffff8147a140 t simd_register_skciphers_compat
-ffffffff8147a260 t simd_unregister_skciphers
-ffffffff8147a2d0 t simd_aead_create_compat
-ffffffff8147a470 t simd_aead_init
-ffffffff8147a4c0 t simd_aead_exit
-ffffffff8147a4e0 t simd_aead_setkey
-ffffffff8147a520 t simd_aead_setauthsize
-ffffffff8147a540 t simd_aead_encrypt
-ffffffff8147a5b0 t simd_aead_decrypt
-ffffffff8147a620 t simd_aead_create
-ffffffff8147a740 t simd_aead_free
-ffffffff8147a770 t simd_register_aeads_compat
-ffffffff8147a890 t simd_unregister_aeads
-ffffffff8147a900 t I_BDEV
-ffffffff8147a920 t invalidate_bdev
-ffffffff8147a980 t truncate_bdev_range
-ffffffff8147aa50 t bd_prepare_to_claim
-ffffffff8147aba0 t bd_abort_claiming
-ffffffff8147ac00 t set_blocksize
-ffffffff8147ad60 t sync_blockdev
-ffffffff8147ada0 t sb_set_blocksize
-ffffffff8147adf0 t sb_min_blocksize
-ffffffff8147ae70 t sync_blockdev_nowait
-ffffffff8147aea0 t sync_blockdev_range
-ffffffff8147aec0 t fsync_bdev
-ffffffff8147af20 t freeze_bdev
-ffffffff8147aff0 t thaw_bdev
-ffffffff8147b0a0 t bdev_read_page
-ffffffff8147b120 t bdev_write_page
-ffffffff8147b1d0 t bdev_alloc
-ffffffff8147b2a0 t bdev_add
-ffffffff8147b2d0 t nr_blockdev_pages
-ffffffff8147b340 t bd_may_claim
-ffffffff8147b390 t blkdev_get_no_open
-ffffffff8147b430 t blkdev_put_no_open
-ffffffff8147b450 t blkdev_get_by_dev
-ffffffff8147b740 t blkdev_get_whole
-ffffffff8147b850 t blkdev_get_by_path
-ffffffff8147b980 t lookup_bdev
-ffffffff8147ba40 t blkdev_put
-ffffffff8147bc10 t __invalidate_device
-ffffffff8147bcb0 t sync_bdevs
-ffffffff8147be10 t bdev_statx_dioalign
-ffffffff8147be80 t bd_init_fs_context
-ffffffff8147bec0 t bdev_alloc_inode
-ffffffff8147bf10 t bdev_free_inode
-ffffffff8147bfb0 t bdev_evict_inode
-ffffffff8147bfe0 t blkdev_flush_mapping
-ffffffff8147c0f0 t blkdev_writepage.llvm.13919830880389489039
-ffffffff8147c110 t blkdev_read_folio.llvm.13919830880389489039
-ffffffff8147c130 t blkdev_writepages.llvm.13919830880389489039
-ffffffff8147c140 t blkdev_readahead.llvm.13919830880389489039
-ffffffff8147c160 t blkdev_write_begin.llvm.13919830880389489039
-ffffffff8147c190 t blkdev_write_end.llvm.13919830880389489039
-ffffffff8147c1f0 t blkdev_direct_IO.llvm.13919830880389489039
-ffffffff8147c750 t blkdev_llseek.llvm.13919830880389489039
-ffffffff8147c7b0 t blkdev_read_iter.llvm.13919830880389489039
-ffffffff8147c8f0 t blkdev_write_iter.llvm.13919830880389489039
-ffffffff8147ca40 t blkdev_open.llvm.13919830880389489039
-ffffffff8147cad0 t blkdev_close.llvm.13919830880389489039
-ffffffff8147caf0 t blkdev_fsync.llvm.13919830880389489039
-ffffffff8147cb20 t blkdev_fallocate.llvm.13919830880389489039
-ffffffff8147ccb0 t blkdev_get_block
-ffffffff8147cce0 t __blkdev_direct_IO
-ffffffff8147d0e0 t blkdev_bio_end_io_async
-ffffffff8147d160 t blkdev_bio_end_io
-ffffffff8147d260 t generic_write_sync
-ffffffff8147d2c0 t bvec_free
-ffffffff8147d310 t biovec_slab
-ffffffff8147d350 t bvec_alloc
-ffffffff8147d3d0 t bio_uninit
-ffffffff8147d440 t bio_init
-ffffffff8147d500 t bio_reset
-ffffffff8147d610 t bio_chain
-ffffffff8147d640 t bio_chain_endio
-ffffffff8147d670 t blk_next_bio
-ffffffff8147d6e0 t bio_alloc_bioset
-ffffffff8147dc90 t punt_bios_to_rescuer
-ffffffff8147de60 t bio_kmalloc
-ffffffff8147de90 t zero_fill_bio
-ffffffff8147df80 t guard_bio_eod
-ffffffff8147dfc0 t bio_truncate
-ffffffff8147e190 t bio_put
-ffffffff8147e300 t bio_free
-ffffffff8147e3f0 t bio_alloc_clone
-ffffffff8147e4b0 t bio_init_clone
-ffffffff8147e650 t bio_add_hw_page
-ffffffff8147e820 t bio_add_pc_page
-ffffffff8147e870 t bio_add_zone_append_page
-ffffffff8147e900 t __bio_add_page
-ffffffff8147e960 t bio_add_page
-ffffffff8147eaa0 t bio_add_folio
-ffffffff8147ead0 t __bio_release_pages
-ffffffff8147ebf0 t bio_iov_bvec_set
-ffffffff8147ec60 t bio_iov_iter_get_pages
-ffffffff8147f100 t submit_bio_wait
-ffffffff8147f1c0 t submit_bio_wait_endio
-ffffffff8147f1e0 t __bio_advance
-ffffffff8147f2c0 t bio_copy_data_iter
-ffffffff8147f480 t bio_copy_data
-ffffffff8147f4f0 t bio_free_pages
-ffffffff8147f5b0 t bio_set_pages_dirty
-ffffffff8147f690 t bio_check_pages_dirty
-ffffffff8147f8b0 t bio_endio
-ffffffff8147fa30 t bio_split
-ffffffff8147fac0 t bio_trim
-ffffffff8147fb20 t biovec_init_pool
-ffffffff8147fb60 t bioset_exit
-ffffffff8147fd10 t bioset_init
-ffffffff81480010 t bio_alloc_rescue
-ffffffff81480090 t bio_dirty_fn
-ffffffff81480100 t bio_cpu_dead
-ffffffff81480180 t elv_bio_merge_ok
-ffffffff814801d0 t elevator_alloc
-ffffffff81480250 t elevator_exit
-ffffffff814802b0 t elv_rqhash_del
-ffffffff81480310 t elv_rqhash_add
-ffffffff81480380 t elv_rqhash_reposition
-ffffffff81480410 t elv_rqhash_find
-ffffffff81480530 t elv_rb_add
-ffffffff814805c0 t elv_rb_del
-ffffffff814805f0 t elv_rb_find
-ffffffff81480650 t elv_merge
-ffffffff81480880 t elv_attempt_insert_merge
-ffffffff81480ac0 t elv_merged_request
-ffffffff81480b90 t elv_merge_requests
-ffffffff81480c50 t elv_latter_request
-ffffffff81480c80 t elv_former_request
-ffffffff81480cb0 t elv_register_queue
-ffffffff81480d60 t elv_unregister_queue
-ffffffff81480db0 t elv_register
-ffffffff81480f60 t elv_unregister
-ffffffff81480fe0 t elevator_init_mq
-ffffffff814811a0 t elevator_switch
-ffffffff81481340 t elv_iosched_store
-ffffffff814815b0 t elv_iosched_show
-ffffffff81481730 t elv_rb_former_request
-ffffffff81481760 t elv_rb_latter_request
-ffffffff81481790 t elevator_release
-ffffffff814817b0 t elv_attr_show
-ffffffff81481830 t elv_attr_store
-ffffffff814818b0 t __traceiter_block_touch_buffer
-ffffffff81481900 t __traceiter_block_dirty_buffer
-ffffffff81481950 t __traceiter_block_rq_requeue
-ffffffff814819a0 t __traceiter_block_rq_complete
-ffffffff81481a00 t __traceiter_block_rq_error
-ffffffff81481a60 t __traceiter_block_rq_insert
-ffffffff81481ab0 t __traceiter_block_rq_issue
-ffffffff81481b00 t __traceiter_block_rq_merge
-ffffffff81481b50 t __traceiter_block_bio_complete
-ffffffff81481ba0 t __traceiter_block_bio_bounce
-ffffffff81481bf0 t __traceiter_block_bio_backmerge
-ffffffff81481c40 t __traceiter_block_bio_frontmerge
-ffffffff81481c90 t __traceiter_block_bio_queue
-ffffffff81481ce0 t __traceiter_block_getrq
-ffffffff81481d30 t __traceiter_block_plug
-ffffffff81481d80 t __traceiter_block_unplug
-ffffffff81481de0 t __traceiter_block_split
-ffffffff81481e30 t __traceiter_block_bio_remap
-ffffffff81481e90 t __traceiter_block_rq_remap
-ffffffff81481ef0 t trace_event_raw_event_block_buffer
-ffffffff81481fc0 t perf_trace_block_buffer
-ffffffff814820d0 t trace_event_raw_event_block_rq_requeue
-ffffffff81482210 t perf_trace_block_rq_requeue
-ffffffff81482390 t trace_event_raw_event_block_rq_completion
-ffffffff814824e0 t perf_trace_block_rq_completion
-ffffffff81482660 t trace_event_raw_event_block_rq
-ffffffff814827c0 t perf_trace_block_rq
-ffffffff81482960 t trace_event_raw_event_block_bio_complete
-ffffffff81482a80 t perf_trace_block_bio_complete
-ffffffff81482be0 t trace_event_raw_event_block_bio
-ffffffff81482d00 t perf_trace_block_bio
-ffffffff81482e60 t trace_event_raw_event_block_plug
-ffffffff81482f30 t perf_trace_block_plug
-ffffffff81483040 t trace_event_raw_event_block_unplug
-ffffffff81483110 t perf_trace_block_unplug
-ffffffff81483220 t trace_event_raw_event_block_split
-ffffffff81483340 t perf_trace_block_split
-ffffffff814834a0 t trace_event_raw_event_block_bio_remap
-ffffffff814835b0 t perf_trace_block_bio_remap
-ffffffff81483700 t trace_event_raw_event_block_rq_remap
-ffffffff81483830 t perf_trace_block_rq_remap
-ffffffff814839a0 t blk_queue_flag_set
-ffffffff814839c0 t blk_queue_flag_clear
-ffffffff814839e0 t blk_queue_flag_test_and_set
-ffffffff81483a00 t blk_op_str
-ffffffff81483a40 t errno_to_blk_status
-ffffffff81483b70 t blk_status_to_errno
-ffffffff81483ba0 t blk_status_to_str
-ffffffff81483bf0 t blk_sync_queue
-ffffffff81483c20 t blk_set_pm_only
-ffffffff81483c30 t blk_clear_pm_only
-ffffffff81483c70 t blk_put_queue
-ffffffff81483c90 t blk_queue_start_drain
-ffffffff81483cd0 t blk_queue_enter
-ffffffff81483f30 t __bio_queue_enter
-ffffffff814841a0 t blk_queue_exit
-ffffffff814841f0 t blk_alloc_queue
-ffffffff81484440 t blk_rq_timed_out_timer
-ffffffff81484460 t blk_timeout_work
-ffffffff81484470 t blk_queue_usage_counter_release
-ffffffff81484490 t blk_get_queue
-ffffffff814844c0 t submit_bio_noacct_nocheck
-ffffffff814847e0 t submit_bio_noacct
-ffffffff81484bb0 t submit_bio
-ffffffff81484c20 t bio_poll
-ffffffff81484d40 t bio_queue_enter
-ffffffff81484df0 t iocb_bio_iopoll
-ffffffff81484e40 t update_io_ticks
-ffffffff81484ed0 t bdev_start_io_acct
-ffffffff81485040 t bio_start_io_acct_time
-ffffffff81485070 t bio_start_io_acct
-ffffffff814850a0 t bdev_end_io_acct
-ffffffff814851f0 t bio_end_io_acct_remapped
-ffffffff81485210 t blk_lld_busy
-ffffffff81485240 t kblockd_schedule_work
-ffffffff81485270 t kblockd_mod_delayed_work_on
-ffffffff81485290 t blk_start_plug_nr_ios
-ffffffff81485300 t blk_start_plug
-ffffffff81485360 t blk_check_plugged
-ffffffff81485430 t __blk_flush_plug
-ffffffff81485570 t blk_finish_plug
-ffffffff814855a0 t blk_io_schedule
-ffffffff814855d0 t trace_raw_output_block_buffer
-ffffffff81485640 t trace_raw_output_block_rq_requeue
-ffffffff814856c0 t trace_raw_output_block_rq_completion
-ffffffff81485740 t trace_raw_output_block_rq
-ffffffff814857c0 t trace_raw_output_block_bio_complete
-ffffffff81485830 t trace_raw_output_block_bio
-ffffffff814858a0 t trace_raw_output_block_plug
-ffffffff81485900 t trace_raw_output_block_unplug
-ffffffff81485960 t trace_raw_output_block_split
-ffffffff814859d0 t trace_raw_output_block_bio_remap
-ffffffff81485a60 t trace_raw_output_block_rq_remap
-ffffffff81485af0 t __submit_bio
-ffffffff81485bc0 t blk_release_queue
-ffffffff81485c70 t blk_register_queue
-ffffffff81485e10 t blk_unregister_queue
-ffffffff81485f20 t blk_free_queue_rcu
-ffffffff81485f60 t queue_attr_show
-ffffffff81485fd0 t queue_attr_store
-ffffffff81486050 t queue_attr_visible
-ffffffff814860b0 t queue_io_timeout_show
-ffffffff814860e0 t queue_io_timeout_store
-ffffffff81486160 t queue_max_open_zones_show
-ffffffff814861a0 t queue_max_active_zones_show
-ffffffff814861e0 t queue_requests_show
-ffffffff81486210 t queue_requests_store
-ffffffff814862c0 t queue_ra_show
-ffffffff81486310 t queue_ra_store
-ffffffff814863b0 t queue_max_hw_sectors_show
-ffffffff814863e0 t queue_max_sectors_show
-ffffffff81486410 t queue_max_sectors_store
-ffffffff81486510 t queue_max_segments_show
-ffffffff81486540 t queue_max_discard_segments_show
-ffffffff81486570 t queue_max_integrity_segments_show
-ffffffff814865a0 t queue_max_segment_size_show
-ffffffff814865d0 t queue_logical_block_size_show
-ffffffff81486610 t queue_physical_block_size_show
-ffffffff81486640 t queue_chunk_sectors_show
-ffffffff81486670 t queue_io_min_show
-ffffffff814866a0 t queue_io_opt_show
-ffffffff814866d0 t queue_discard_granularity_show
-ffffffff81486700 t queue_discard_max_show
-ffffffff81486730 t queue_discard_max_store
-ffffffff814867e0 t queue_discard_max_hw_show
-ffffffff81486810 t queue_discard_zeroes_data_show
-ffffffff81486830 t queue_write_same_max_show
-ffffffff81486850 t queue_write_zeroes_max_show
-ffffffff81486880 t queue_zone_append_max_show
-ffffffff814868b0 t queue_zone_write_granularity_show
-ffffffff814868e0 t queue_nonrot_show
-ffffffff81486910 t queue_nonrot_store
-ffffffff814869b0 t queue_zoned_show
-ffffffff81486a30 t queue_nr_zones_show
-ffffffff81486a70 t queue_nomerges_show
-ffffffff81486ab0 t queue_nomerges_store
-ffffffff81486b70 t queue_rq_affinity_show
-ffffffff81486bb0 t queue_rq_affinity_store
-ffffffff81486c90 t queue_iostats_show
-ffffffff81486cc0 t queue_iostats_store
-ffffffff81486d60 t queue_stable_writes_show
-ffffffff81486d90 t queue_stable_writes_store
-ffffffff81486e30 t queue_random_show
-ffffffff81486e60 t queue_random_store
-ffffffff81486f00 t queue_poll_show
-ffffffff81486f30 t queue_poll_store
-ffffffff81486fa0 t queue_wc_show
-ffffffff81487000 t queue_wc_store
-ffffffff81487090 t queue_fua_show
-ffffffff814870c0 t queue_dax_show
-ffffffff814870f0 t queue_wb_lat_show
-ffffffff81487140 t queue_wb_lat_store
-ffffffff81487210 t queue_poll_delay_show
-ffffffff81487260 t queue_poll_delay_store
-ffffffff81487310 t queue_virt_boundary_mask_show
-ffffffff81487340 t queue_dma_alignment_show
-ffffffff81487370 t is_flush_rq
-ffffffff81487390 t flush_end_io.llvm.16354676391399136877
-ffffffff81487620 t blk_insert_flush
-ffffffff81487770 t mq_flush_data_end_io
-ffffffff81487870 t blk_flush_complete_seq
-ffffffff81487b60 t blkdev_issue_flush
-ffffffff81487c50 t blk_alloc_flush_queue
-ffffffff81487d40 t blk_free_flush_queue
-ffffffff81487d70 t blk_mq_hctx_set_fq_lock_class
-ffffffff81487d80 t blk_queue_rq_timeout
-ffffffff81487da0 t blk_set_default_limits
-ffffffff81487e40 t blk_set_stacking_limits
-ffffffff81487ef0 t blk_queue_bounce_limit
-ffffffff81487f10 t blk_queue_max_hw_sectors
-ffffffff81487fb0 t blk_queue_chunk_sectors
-ffffffff81487fd0 t blk_queue_max_discard_sectors
-ffffffff81487ff0 t blk_queue_max_secure_erase_sectors
-ffffffff81488010 t blk_queue_max_write_zeroes_sectors
-ffffffff81488030 t blk_queue_max_zone_append_sectors
-ffffffff81488080 t blk_queue_max_segments
-ffffffff814880c0 t blk_queue_max_discard_segments
-ffffffff814880e0 t blk_queue_max_segment_size
-ffffffff81488140 t blk_queue_logical_block_size
-ffffffff81488190 t blk_queue_physical_block_size
-ffffffff814881c0 t blk_queue_zone_write_granularity
-ffffffff81488200 t blk_queue_alignment_offset
-ffffffff81488230 t disk_update_readahead
-ffffffff81488280 t blk_limits_io_min
-ffffffff814882a0 t blk_queue_io_min
-ffffffff814882d0 t blk_limits_io_opt
-ffffffff814882e0 t blk_queue_io_opt
-ffffffff81488320 t blk_stack_limits
-ffffffff814887c0 t disk_stack_limits
-ffffffff81488850 t blk_queue_update_dma_pad
-ffffffff81488870 t blk_queue_segment_boundary
-ffffffff814888c0 t blk_queue_virt_boundary
-ffffffff814888f0 t blk_queue_dma_alignment
-ffffffff81488910 t blk_queue_update_dma_alignment
-ffffffff81488940 t blk_set_queue_depth
-ffffffff81488960 t blk_queue_write_cache
-ffffffff814889b0 t blk_queue_required_elevator_features
-ffffffff814889d0 t blk_queue_can_use_dma_map_merging
-ffffffff81488a10 t disk_set_zoned
-ffffffff81488b40 t bdev_alignment_offset
-ffffffff81488bc0 t bdev_discard_alignment
-ffffffff81488c40 t ioc_clear_queue
-ffffffff81488d20 t ioc_destroy_icq
-ffffffff81488e10 t put_io_context
-ffffffff81488e90 t exit_io_context
-ffffffff81488f40 t set_task_ioprio
-ffffffff81489060 t alloc_io_context
-ffffffff814890f0 t __copy_io
-ffffffff814891e0 t ioc_lookup_icq
-ffffffff81489250 t ioc_find_get_icq
-ffffffff81489530 t icq_free_icq_rcu
-ffffffff81489550 t ioc_release_fn
-ffffffff81489610 t blk_rq_append_bio
-ffffffff81489710 t blk_rq_map_user_iov
-ffffffff8148a340 t blk_rq_unmap_user
-ffffffff8148a570 t blk_rq_map_user
-ffffffff8148a630 t blk_rq_map_user_io
-ffffffff8148a8c0 t blk_rq_map_kern
-ffffffff8148ad20 t bio_copy_kern_endio_read
-ffffffff8148ae40 t bio_copy_kern_endio
-ffffffff8148ae70 t bio_map_kern_endio
-ffffffff8148ae90 t __bio_split_to_limits
-ffffffff8148b3c0 t bio_split_to_limits
-ffffffff8148b450 t blk_recalc_rq_segments
-ffffffff8148b650 t __blk_rq_map_sg
-ffffffff8148ba40 t ll_back_merge_fn
-ffffffff8148bc00 t blk_rq_set_mixed_merge
-ffffffff8148bc60 t blk_attempt_req_merge
-ffffffff8148bc80 t attempt_merge.llvm.1699802995295337189
-ffffffff8148be30 t blk_rq_merge_ok
-ffffffff8148bee0 t blk_try_merge
-ffffffff8148bf40 t blk_attempt_plug_merge
-ffffffff8148bfd0 t blk_attempt_bio_merge
-ffffffff8148c190 t blk_bio_list_merge
-ffffffff8148c220 t blk_mq_sched_try_merge
-ffffffff8148c3e0 t bio_attempt_back_merge
-ffffffff8148c540 t bio_attempt_front_merge
-ffffffff8148c850 t bio_attempt_discard_merge
-ffffffff8148c9d0 t bio_will_gap
-ffffffff8148cb60 t req_attempt_discard_merge
-ffffffff8148ccb0 t ll_merge_requests_fn
-ffffffff8148ce60 t blk_account_io_merge_request
-ffffffff8148cf30 t trace_block_rq_merge
-ffffffff8148cf90 t blk_account_io_merge_bio
-ffffffff8148d060 t blk_abort_request
-ffffffff8148d0a0 t blk_rq_timeout
-ffffffff8148d0e0 t blk_add_timer
-ffffffff8148d190 t __blkdev_issue_discard
-ffffffff8148d320 t blkdev_issue_discard
-ffffffff8148d3f0 t __blkdev_issue_zeroout
-ffffffff8148d530 t __blkdev_issue_zero_pages
-ffffffff8148d6b0 t blkdev_issue_zeroout
-ffffffff8148d930 t blkdev_issue_secure_erase
-ffffffff8148dac0 t blk_mq_in_flight
-ffffffff8148db20 t blk_mq_check_inflight
-ffffffff8148db70 t blk_mq_in_flight_rw
-ffffffff8148dbd0 t blk_freeze_queue_start
-ffffffff8148dc40 t blk_mq_run_hw_queues
-ffffffff8148dd60 t blk_mq_freeze_queue_wait
-ffffffff8148de30 t blk_mq_freeze_queue_wait_timeout
-ffffffff8148df90 t blk_freeze_queue
-ffffffff8148e000 t blk_mq_freeze_queue
-ffffffff8148e010 t __blk_mq_unfreeze_queue
-ffffffff8148e0a0 t blk_mq_unfreeze_queue
-ffffffff8148e120 t blk_mq_quiesce_queue_nowait
-ffffffff8148e180 t blk_mq_wait_quiesce_done
-ffffffff8148e1b0 t blk_mq_quiesce_queue
-ffffffff8148e230 t blk_mq_unquiesce_queue
-ffffffff8148e2b0 t blk_mq_wake_waiters
-ffffffff8148e360 t blk_rq_init
-ffffffff8148e400 t blk_mq_alloc_request
-ffffffff8148e5e0 t __blk_mq_alloc_requests
-ffffffff8148e860 t blk_mq_alloc_request_hctx
-ffffffff8148ea60 t blk_mq_rq_ctx_init
-ffffffff8148ebd0 t blk_mq_free_request
-ffffffff8148ecc0 t __blk_mq_free_request
-ffffffff8148ed80 t blk_mq_free_plug_rqs
-ffffffff8148edb0 t blk_dump_rq_flags
-ffffffff8148ee90 t blk_update_request
-ffffffff8148f1d0 t blk_print_req_error
-ffffffff8148f290 t trace_block_rq_error
-ffffffff8148f2f0 t blk_account_io_completion
-ffffffff8148f3c0 t __blk_mq_end_request
-ffffffff8148f4b0 t blk_mq_end_request
-ffffffff8148f4f0 t blk_mq_end_request_batch
-ffffffff8148f9e0 t blk_mq_complete_request_remote
-ffffffff8148fb70 t blk_mq_complete_request
-ffffffff8148fba0 t blk_mq_start_request
-ffffffff8148fc90 t blk_execute_rq_nowait
-ffffffff8148fdb0 t blk_add_rq_to_plug
-ffffffff8148fee0 t blk_rq_is_poll
-ffffffff8148ff10 t blk_execute_rq
-ffffffff81490110 t blk_end_sync_rq
-ffffffff81490130 t blk_mq_requeue_request
-ffffffff81490220 t __blk_mq_requeue_request
-ffffffff81490310 t blk_mq_add_to_requeue_list
-ffffffff81490410 t blk_mq_kick_requeue_list
-ffffffff81490440 t blk_mq_delay_kick_requeue_list
-ffffffff81490480 t blk_mq_queue_inflight
-ffffffff814904d0 t blk_mq_rq_inflight
-ffffffff814904f0 t blk_mq_put_rq_ref
-ffffffff81490560 t blk_mq_flush_busy_ctxs
-ffffffff81490730 t blk_mq_dequeue_from_ctx
-ffffffff81490980 t __blk_mq_get_driver_tag
-ffffffff81490a60 t blk_mq_dispatch_rq_list
-ffffffff81491350 t blk_mq_run_hw_queue
-ffffffff814914c0 t blk_mq_delay_run_hw_queue
-ffffffff814914e0 t __blk_mq_delay_run_hw_queue.llvm.3511230446491238417
-ffffffff81491620 t blk_mq_delay_run_hw_queues
-ffffffff81491750 t blk_mq_stop_hw_queue
-ffffffff81491770 t blk_mq_stop_hw_queues
-ffffffff81491820 t blk_mq_start_hw_queue
-ffffffff81491840 t blk_mq_start_hw_queues
-ffffffff814918e0 t blk_mq_start_stopped_hw_queue
-ffffffff81491910 t blk_mq_start_stopped_hw_queues
-ffffffff814919d0 t __blk_mq_insert_request
-ffffffff81491b50 t blk_mq_request_bypass_insert
-ffffffff81491c00 t blk_mq_insert_requests
-ffffffff81491d50 t blk_mq_flush_plug_list
-ffffffff81492060 t blk_mq_plug_issue_direct
-ffffffff81492330 t blk_mq_try_issue_list_directly
-ffffffff814924a0 t blk_mq_submit_bio
-ffffffff81492ac0 t blk_mq_try_issue_directly
-ffffffff81492b70 t blk_insert_cloned_request
-ffffffff81492d50 t blk_account_io_done
-ffffffff81492ea0 t blk_rq_unprep_clone
-ffffffff81492ee0 t blk_rq_prep_clone
-ffffffff81493070 t blk_steal_bios
-ffffffff814930c0 t blk_mq_free_rqs
-ffffffff814932b0 t blk_mq_free_rq_map
-ffffffff81493300 t blk_mq_alloc_map_and_rqs
-ffffffff81493760 t blk_mq_free_map_and_rqs
-ffffffff814937b0 t blk_mq_release
-ffffffff814938c0 t blk_mq_init_queue
-ffffffff81493930 t blk_mq_destroy_queue
-ffffffff81493a60 t blk_mq_cancel_work_sync
-ffffffff81493b10 t blk_mq_exit_queue
-ffffffff81493c70 t __blk_mq_alloc_disk
-ffffffff81493d30 t blk_mq_alloc_disk_for_queue
-ffffffff81493d80 t blk_mq_init_allocated_queue
-ffffffff814942d0 t blk_mq_poll_stats_fn
-ffffffff81494340 t blk_mq_poll_stats_bkt
-ffffffff81494380 t blk_mq_realloc_hw_ctxs
-ffffffff814945c0 t blk_mq_timeout_work
-ffffffff81494770 t blk_mq_requeue_work
-ffffffff81494930 t blk_mq_map_swqueue
-ffffffff81494dc0 t blk_mq_alloc_tag_set
-ffffffff81495030 t blk_mq_update_queue_map
-ffffffff814951b0 t blk_mq_alloc_set_map_and_rqs
-ffffffff814953b0 t blk_mq_alloc_sq_tag_set
-ffffffff81495420 t blk_mq_free_tag_set
-ffffffff81495570 t blk_mq_update_nr_requests
-ffffffff81495810 t blk_mq_update_nr_hw_queues
-ffffffff81495d00 t blk_mq_poll
-ffffffff81496040 t blk_mq_rq_cpu
-ffffffff81496060 t __blk_mq_complete_request_remote
-ffffffff81496080 t __blk_mq_run_hw_queue
-ffffffff81496110 t __blk_mq_try_issue_directly
-ffffffff814962d0 t blk_mq_exit_hctx
-ffffffff81496480 t blk_mq_alloc_and_init_hctx
-ffffffff814968b0 t blk_mq_run_work_fn
-ffffffff814968d0 t blk_mq_dispatch_wake
-ffffffff81496950 t blk_mq_check_expired
-ffffffff814969a0 t blk_mq_handle_expired
-ffffffff81496a30 t blk_mq_update_tag_set_shared
-ffffffff81496bc0 t blk_done_softirq
-ffffffff81496c40 t blk_softirq_cpu_dead
-ffffffff81496cc0 t blk_mq_hctx_notify_dead
-ffffffff81496e40 t blk_mq_hctx_notify_online
-ffffffff81496e70 t blk_mq_hctx_notify_offline
-ffffffff81496ff0 t blk_mq_has_request
-ffffffff81497020 t __blk_mq_tag_busy
-ffffffff814970a0 t blk_mq_tag_wakeup_all
-ffffffff814970e0 t __blk_mq_tag_idle
-ffffffff81497160 t blk_mq_get_tags
-ffffffff814971c0 t blk_mq_get_tag
-ffffffff81497490 t blk_mq_put_tag
-ffffffff814974c0 t blk_mq_put_tags
-ffffffff814974e0 t blk_mq_all_tag_iter
-ffffffff81497540 t blk_mq_tagset_busy_iter
-ffffffff81497600 t blk_mq_tagset_wait_completed_request
-ffffffff814976f0 t blk_mq_queue_tag_busy_iter
-ffffffff814978a0 t bt_for_each
-ffffffff81497ad0 t blk_mq_init_bitmaps
-ffffffff81497b80 t blk_mq_init_tags
-ffffffff81497c80 t blk_mq_free_tags
-ffffffff81497ce0 t blk_mq_tag_update_depth
-ffffffff81497d80 t blk_mq_tag_resize_shared_tags
-ffffffff81497da0 t blk_mq_tag_update_sched_shared_tags
-ffffffff81497dd0 t blk_mq_unique_tag
-ffffffff81497df0 t bt_tags_for_each
-ffffffff81498050 t bt_tags_for_each.7
-ffffffff81498280 t blk_rq_stat_init
-ffffffff814982c0 t blk_rq_stat_sum
-ffffffff81498330 t blk_rq_stat_add
-ffffffff81498360 t blk_stat_add
-ffffffff81498470 t blk_stat_alloc_callback
-ffffffff81498550 t blk_stat_timer_fn
-ffffffff81498700 t blk_stat_add_callback
-ffffffff81498820 t blk_stat_remove_callback
-ffffffff814988b0 t blk_stat_free_callback
-ffffffff814988d0 t blk_stat_free_callback_rcu
-ffffffff81498910 t blk_stat_disable_accounting
-ffffffff81498960 t blk_stat_enable_accounting
-ffffffff814989c0 t blk_alloc_queue_stats
-ffffffff81498a00 t blk_free_queue_stats
-ffffffff81498a30 t blk_stats_alloc_enable
-ffffffff81498a90 t blk_mq_hctx_kobj_init
-ffffffff81498ab0 t blk_mq_sysfs_deinit
-ffffffff81498b30 t blk_mq_sysfs_init
-ffffffff81498be0 t blk_mq_sysfs_register
-ffffffff81498db0 t blk_mq_register_hctx
-ffffffff81498ec0 t blk_mq_sysfs_unregister
-ffffffff81498fe0 t blk_mq_sysfs_unregister_hctxs
-ffffffff81499100 t blk_mq_sysfs_register_hctxs
-ffffffff814991d0 t blk_mq_hw_sysfs_release
-ffffffff81499230 t blk_mq_hw_sysfs_show
-ffffffff814992a0 t blk_mq_hw_sysfs_store
-ffffffff81499320 t blk_mq_hw_sysfs_nr_tags_show
-ffffffff81499350 t blk_mq_hw_sysfs_nr_reserved_tags_show
-ffffffff81499380 t blk_mq_hw_sysfs_cpus_show
-ffffffff81499470 t blk_mq_sysfs_release
-ffffffff814994a0 t blk_mq_ctx_sysfs_release
-ffffffff814994c0 t blk_mq_map_queues
-ffffffff81499610 t blk_mq_hw_queue_to_node
-ffffffff81499670 t blk_mq_sched_mark_restart_hctx
-ffffffff81499690 t __blk_mq_sched_restart
-ffffffff814996b0 t blk_mq_sched_dispatch_requests
-ffffffff81499710 t __blk_mq_sched_dispatch_requests
-ffffffff81499850 t blk_mq_sched_bio_merge
-ffffffff81499940 t blk_mq_sched_try_insert_merge
-ffffffff81499990 t blk_mq_sched_insert_request
-ffffffff81499ad0 t blk_mq_sched_insert_requests
-ffffffff81499c30 t blk_mq_init_sched
-ffffffff81499f70 t blk_mq_sched_free_rqs
-ffffffff8149a040 t blk_mq_exit_sched
-ffffffff8149a240 t blk_mq_do_dispatch_sched
-ffffffff8149a640 t blk_mq_do_dispatch_ctx
-ffffffff8149a820 t sched_rq_cmp
-ffffffff8149a840 t blkdev_ioctl
-ffffffff8149b9f0 t set_capacity
-ffffffff8149ba40 t set_capacity_and_notify
-ffffffff8149bb40 t blkdev_show
-ffffffff8149bbc0 t __register_blkdev
-ffffffff8149bd90 t unregister_blkdev
-ffffffff8149be40 t blk_alloc_ext_minor
-ffffffff8149be70 t blk_free_ext_minor
-ffffffff8149be90 t disk_uevent
-ffffffff8149bf90 t disk_scan_partitions
-ffffffff8149c060 t device_add_disk
-ffffffff8149c440 t blk_mark_disk_dead
-ffffffff8149c460 t del_gendisk
-ffffffff8149c710 t invalidate_disk
-ffffffff8149c780 t blk_request_module
-ffffffff8149c800 t part_size_show
-ffffffff8149c830 t part_stat_show
-ffffffff8149ca60 t part_stat_read_all
-ffffffff8149cb90 t part_inflight_show
-ffffffff8149ccc0 t block_uevent
-ffffffff8149ccf0 t block_devnode.llvm.4630098836650264748
-ffffffff8149cd20 t disk_release.llvm.4630098836650264748
-ffffffff8149ce10 t part_devt
-ffffffff8149ce50 t blk_lookup_devt
-ffffffff8149cfa0 t __alloc_disk_node
-ffffffff8149d170 t inc_diskseq
-ffffffff8149d1a0 t __blk_alloc_disk
-ffffffff8149d200 t put_disk
-ffffffff8149d220 t set_disk_ro
-ffffffff8149d2f0 t disk_visible
-ffffffff8149d330 t disk_badblocks_show
-ffffffff8149d370 t disk_badblocks_store
-ffffffff8149d3b0 t disk_range_show
-ffffffff8149d3e0 t disk_ext_range_show
-ffffffff8149d420 t disk_removable_show
-ffffffff8149d450 t disk_hidden_show
-ffffffff8149d490 t disk_ro_show
-ffffffff8149d4e0 t disk_alignment_offset_show
-ffffffff8149d520 t disk_discard_alignment_show
-ffffffff8149d560 t disk_capability_show
-ffffffff8149d590 t diskseq_show
-ffffffff8149d5c0 t disk_seqf_start
-ffffffff8149d650 t disk_seqf_stop
-ffffffff8149d690 t disk_seqf_next
-ffffffff8149d6c0 t diskstats_show
-ffffffff8149d9b0 t show_partition_start
-ffffffff8149da70 t show_partition
-ffffffff8149db60 t ioprio_check_cap
-ffffffff8149dbe0 t __x64_sys_ioprio_set
-ffffffff8149dec0 t __get_task_ioprio
-ffffffff8149df40 t __x64_sys_ioprio_get
-ffffffff8149e340 t badblocks_check
-ffffffff8149e480 t badblocks_set
-ffffffff8149e8e0 t badblocks_clear
-ffffffff8149ebb0 t ack_all_badblocks
-ffffffff8149ec40 t badblocks_show
-ffffffff8149ed50 t badblocks_store
-ffffffff8149ee10 t badblocks_init
-ffffffff8149ee80 t devm_init_badblocks
-ffffffff8149ef00 t badblocks_exit
-ffffffff8149ef40 t part_uevent
-ffffffff8149efa0 t part_release
-ffffffff8149efd0 t bdev_add_partition
-ffffffff8149f120 t add_partition
-ffffffff8149f450 t bdev_del_partition
-ffffffff8149f4c0 t delete_partition
-ffffffff8149f550 t bdev_resize_partition
-ffffffff8149f6c0 t blk_drop_partitions
-ffffffff8149f760 t bdev_disk_changed
-ffffffff8149fd90 t read_part_sector
-ffffffff8149fe30 t part_partition_show
-ffffffff8149fe60 t part_start_show
-ffffffff8149fe90 t part_ro_show
-ffffffff8149fee0 t part_alignment_offset_show
-ffffffff8149ff10 t part_discard_alignment_show
-ffffffff8149ff40 t xa_insert
-ffffffff8149ff90 t whole_disk_show
-ffffffff8149ffa0 t efi_partition
-ffffffff814a0850 t is_gpt_valid
-ffffffff814a0c20 t alloc_read_gpt_entries
-ffffffff814a0da0 t rq_wait_inc_below
-ffffffff814a0dd0 t __rq_qos_cleanup
-ffffffff814a0e10 t __rq_qos_done
-ffffffff814a0e50 t __rq_qos_issue
-ffffffff814a0e90 t __rq_qos_requeue
-ffffffff814a0ed0 t __rq_qos_throttle
-ffffffff814a0f10 t __rq_qos_track
-ffffffff814a0f70 t __rq_qos_merge
-ffffffff814a0fd0 t __rq_qos_done_bio
-ffffffff814a1010 t __rq_qos_queue_depth_changed
-ffffffff814a1050 t rq_depth_calc_max_depth
-ffffffff814a10c0 t rq_depth_scale_up
-ffffffff814a1150 t rq_depth_scale_down
-ffffffff814a11e0 t rq_qos_wait
-ffffffff814a1340 t rq_qos_wake_function
-ffffffff814a13c0 t rq_qos_exit
-ffffffff814a1410 t disk_block_events
-ffffffff814a14a0 t disk_unblock_events
-ffffffff814a14c0 t __disk_unblock_events
-ffffffff814a1580 t disk_flush_events
-ffffffff814a15e0 t bdev_check_media_change
-ffffffff814a1750 t disk_force_media_change
-ffffffff814a1830 t disk_events_show
-ffffffff814a18e0 t disk_events_async_show
-ffffffff814a18f0 t disk_events_poll_msecs_show
-ffffffff814a1940 t disk_events_poll_msecs_store
-ffffffff814a1a60 t disk_alloc_events
-ffffffff814a1b60 t disk_events_workfn
-ffffffff814a1b80 t disk_add_events
-ffffffff814a1c00 t disk_del_events
-ffffffff814a1cd0 t disk_release_events
-ffffffff814a1d10 t disk_check_events
-ffffffff814a1e80 t disk_events_set_dfl_poll_msecs
-ffffffff814a1f30 t disk_register_independent_access_ranges
-ffffffff814a2060 t disk_unregister_independent_access_ranges
-ffffffff814a20f0 t disk_alloc_independent_access_ranges
-ffffffff814a2140 t disk_set_independent_access_ranges
-ffffffff814a23a0 t blk_ia_ranges_sysfs_release
-ffffffff814a23b0 t blk_ia_range_sysfs_nop_release
-ffffffff814a23c0 t blk_ia_range_sysfs_show
-ffffffff814a23e0 t blk_ia_range_sector_show
-ffffffff814a2400 t blk_ia_range_nr_sectors_show
-ffffffff814a2420 t bio_blkcg_css
-ffffffff814a2450 t blkg_dev_name
-ffffffff814a2490 t blkcg_print_blkgs
-ffffffff814a2580 t __blkg_prfill_u64
-ffffffff814a25e0 t blkcg_conf_open_bdev
-ffffffff814a26c0 t blkg_conf_prep
-ffffffff814a2ae0 t blkg_alloc
-ffffffff814a2d30 t blkg_create
-ffffffff814a31d0 t radix_tree_preload_end
-ffffffff814a3210 t blkg_conf_finish
-ffffffff814a3250 t blkcg_get_cgwb_list
-ffffffff814a3270 t blkcg_pin_online
-ffffffff814a32b0 t blkcg_unpin_online
-ffffffff814a33c0 t blkcg_init_disk
-ffffffff814a34d0 t blkcg_exit_disk
-ffffffff814a35a0 t blkcg_css_alloc
-ffffffff814a38f0 t blkcg_css_online
-ffffffff814a3940 t blkcg_css_offline
-ffffffff814a3960 t blkcg_css_free
-ffffffff814a3a80 t blkcg_rstat_flush
-ffffffff814a3c20 t blkcg_exit
-ffffffff814a3c60 t blkcg_bind
-ffffffff814a3d10 t blkcg_activate_policy
-ffffffff814a4060 t blkcg_deactivate_policy
-ffffffff814a4190 t blkcg_policy_register
-ffffffff814a43c0 t blkcg_policy_unregister
-ffffffff814a44c0 t __blkcg_punt_bio_submit
-ffffffff814a4550 t blkcg_maybe_throttle_current
-ffffffff814a4890 t blkcg_schedule_throttle
-ffffffff814a4910 t blkcg_add_delay
-ffffffff814a49c0 t bio_associate_blkg_from_css
-ffffffff814a4cd0 t bio_associate_blkg
-ffffffff814a4d30 t bio_clone_blkg_association
-ffffffff814a4d60 t blk_cgroup_bio_start
-ffffffff814a4e20 t blk_cgroup_congested
-ffffffff814a4e80 t blkg_release
-ffffffff814a4ea0 t blkg_async_bio_workfn
-ffffffff814a4f80 t __blkg_release
-ffffffff814a5080 t blkg_free_workfn
-ffffffff814a5180 t blkg_destroy
-ffffffff814a5320 t blkcg_print_stat
-ffffffff814a5700 t blkcg_reset_stats
-ffffffff814a5980 t blkg_rwstat_init
-ffffffff814a5ac0 t blkg_rwstat_exit
-ffffffff814a5b00 t __blkg_prfill_rwstat
-ffffffff814a5bf0 t blkg_prfill_rwstat
-ffffffff814a5cd0 t blkg_rwstat_recursive_sum
-ffffffff814a5ec0 t __traceiter_iocost_iocg_activate
-ffffffff814a5f40 t __traceiter_iocost_iocg_idle
-ffffffff814a5fc0 t __traceiter_iocost_inuse_shortage
-ffffffff814a6040 t __traceiter_iocost_inuse_transfer
-ffffffff814a60c0 t __traceiter_iocost_inuse_adjust
-ffffffff814a6140 t __traceiter_iocost_ioc_vrate_adj
-ffffffff814a61c0 t __traceiter_iocost_iocg_forgive_debt
-ffffffff814a6240 t trace_event_raw_event_iocost_iocg_state
-ffffffff814a6430 t perf_trace_iocost_iocg_state
-ffffffff814a6660 t trace_event_raw_event_iocg_inuse_update
-ffffffff814a6820 t perf_trace_iocg_inuse_update
-ffffffff814a6a20 t trace_event_raw_event_iocost_ioc_vrate_adj
-ffffffff814a6bb0 t perf_trace_iocost_ioc_vrate_adj
-ffffffff814a6d80 t trace_event_raw_event_iocost_iocg_forgive_debt
-ffffffff814a6f50 t perf_trace_iocost_iocg_forgive_debt
-ffffffff814a7160 t trace_raw_output_iocost_iocg_state
-ffffffff814a71f0 t trace_raw_output_iocg_inuse_update
-ffffffff814a7270 t trace_raw_output_iocost_ioc_vrate_adj
-ffffffff814a7300 t trace_raw_output_iocost_iocg_forgive_debt
-ffffffff814a7380 t ioc_cpd_alloc
-ffffffff814a73e0 t ioc_cpd_free
-ffffffff814a73f0 t ioc_pd_alloc
-ffffffff814a7480 t ioc_pd_init
-ffffffff814a7700 t ioc_pd_free
-ffffffff814a78a0 t ioc_pd_stat
-ffffffff814a7960 t ioc_weight_show
-ffffffff814a79f0 t ioc_weight_write
-ffffffff814a7ea0 t ioc_qos_show
-ffffffff814a7ef0 t ioc_qos_write
-ffffffff814a83b0 t ioc_cost_model_show
-ffffffff814a8400 t ioc_cost_model_write
-ffffffff814a87c0 t ioc_weight_prfill
-ffffffff814a8810 t __propagate_weights
-ffffffff814a8970 t ioc_qos_prfill
-ffffffff814a8aa0 t blk_iocost_init
-ffffffff814a8db0 t ioc_refresh_params
-ffffffff814a92c0 t ioc_timer_fn
-ffffffff814ab460 t ioc_rqos_throttle
-ffffffff814abd20 t ioc_rqos_merge
-ffffffff814abfc0 t ioc_rqos_done
-ffffffff814ac130 t ioc_rqos_done_bio
-ffffffff814ac170 t ioc_rqos_queue_depth_changed
-ffffffff814ac1b0 t ioc_rqos_exit
-ffffffff814ac220 t adjust_inuse_and_calc_cost
-ffffffff814ac640 t iocg_commit_bio
-ffffffff814ac6b0 t iocg_incur_debt
-ffffffff814ac780 t iocg_kick_delay
-ffffffff814aca70 t iocg_wake_fn
-ffffffff814acb80 t iocg_kick_waitq
-ffffffff814ad040 t trace_iocost_iocg_activate
-ffffffff814ad0b0 t ioc_start_period
-ffffffff814ad120 t trace_iocost_inuse_adjust
-ffffffff814ad1a0 t ioc_cost_model_prfill
-ffffffff814ad220 t iocg_waitq_timer_fn
-ffffffff814ad370 t dd_init_sched
-ffffffff814ad510 t dd_exit_sched
-ffffffff814ad710 t dd_init_hctx
-ffffffff814ad760 t dd_depth_updated
-ffffffff814ad7b0 t dd_bio_merge
-ffffffff814ad850 t dd_request_merge
-ffffffff814ad920 t dd_request_merged
-ffffffff814ad9a0 t dd_merged_requests
-ffffffff814adaa0 t dd_limit_depth
-ffffffff814adae0 t dd_prepare_request
-ffffffff814adb00 t dd_finish_request
-ffffffff814adc20 t dd_insert_requests
-ffffffff814adf40 t dd_dispatch_request
-ffffffff814ae080 t dd_has_work
-ffffffff814ae1b0 t deadline_remove_request
-ffffffff814ae260 t __dd_dispatch_request
-ffffffff814ae490 t deadline_next_request
-ffffffff814ae610 t deadline_fifo_request
-ffffffff814ae760 t deadline_read_expire_show
-ffffffff814ae790 t deadline_read_expire_store
-ffffffff814ae810 t deadline_write_expire_show
-ffffffff814ae840 t deadline_write_expire_store
-ffffffff814ae8c0 t deadline_writes_starved_show
-ffffffff814ae8f0 t deadline_writes_starved_store
-ffffffff814ae960 t deadline_front_merges_show
-ffffffff814ae990 t deadline_front_merges_store
-ffffffff814aea10 t deadline_async_depth_show
-ffffffff814aea40 t deadline_async_depth_store
-ffffffff814aeac0 t deadline_fifo_batch_show
-ffffffff814aeaf0 t deadline_fifo_batch_store
-ffffffff814aeb70 t deadline_prio_aging_expire_show
-ffffffff814aeba0 t deadline_prio_aging_expire_store
-ffffffff814aec20 t deadline_read0_next_rq_show
-ffffffff814aec50 t deadline_write0_next_rq_show
-ffffffff814aec80 t deadline_read1_next_rq_show
-ffffffff814aecb0 t deadline_write1_next_rq_show
-ffffffff814aece0 t deadline_read2_next_rq_show
-ffffffff814aed10 t deadline_write2_next_rq_show
-ffffffff814aed40 t deadline_batching_show
-ffffffff814aed70 t deadline_starved_show
-ffffffff814aeda0 t dd_async_depth_show
-ffffffff814aedd0 t dd_owned_by_driver_show
-ffffffff814aee70 t dd_queued_show
-ffffffff814aef00 t deadline_read0_fifo_start
-ffffffff814aef40 t deadline_read0_fifo_stop
-ffffffff814aef70 t deadline_read0_fifo_next
-ffffffff814aefa0 t deadline_write0_fifo_start
-ffffffff814aefe0 t deadline_write0_fifo_stop
-ffffffff814af010 t deadline_write0_fifo_next
-ffffffff814af040 t deadline_read1_fifo_start
-ffffffff814af080 t deadline_read1_fifo_stop
-ffffffff814af0b0 t deadline_read1_fifo_next
-ffffffff814af0e0 t deadline_write1_fifo_start
-ffffffff814af120 t deadline_write1_fifo_stop
-ffffffff814af150 t deadline_write1_fifo_next
-ffffffff814af180 t deadline_read2_fifo_start
-ffffffff814af1c0 t deadline_read2_fifo_stop
-ffffffff814af1f0 t deadline_read2_fifo_next
-ffffffff814af220 t deadline_write2_fifo_start
-ffffffff814af260 t deadline_write2_fifo_stop
-ffffffff814af290 t deadline_write2_fifo_next
-ffffffff814af2c0 t deadline_dispatch0_start
-ffffffff814af300 t deadline_dispatch0_stop
-ffffffff814af330 t deadline_dispatch0_next
-ffffffff814af360 t deadline_dispatch1_start
-ffffffff814af3a0 t deadline_dispatch1_stop
-ffffffff814af3d0 t deadline_dispatch1_next
-ffffffff814af400 t deadline_dispatch2_start
-ffffffff814af440 t deadline_dispatch2_stop
-ffffffff814af470 t deadline_dispatch2_next
-ffffffff814af4a0 t __traceiter_kyber_latency
-ffffffff814af520 t __traceiter_kyber_adjust
-ffffffff814af580 t __traceiter_kyber_throttled
-ffffffff814af5d0 t trace_event_raw_event_kyber_latency
-ffffffff814af6f0 t perf_trace_kyber_latency
-ffffffff814af850 t trace_event_raw_event_kyber_adjust
-ffffffff814af930 t perf_trace_kyber_adjust
-ffffffff814afa50 t trace_event_raw_event_kyber_throttled
-ffffffff814afb20 t perf_trace_kyber_throttled
-ffffffff814afc40 t trace_raw_output_kyber_latency
-ffffffff814afcc0 t trace_raw_output_kyber_adjust
-ffffffff814afd30 t trace_raw_output_kyber_throttled
-ffffffff814afd90 t kyber_init_sched
-ffffffff814b0040 t kyber_exit_sched
-ffffffff814b0120 t kyber_init_hctx
-ffffffff814b04e0 t kyber_exit_hctx
-ffffffff814b05a0 t kyber_depth_updated
-ffffffff814b05f0 t kyber_bio_merge
-ffffffff814b06c0 t kyber_limit_depth
-ffffffff814b06f0 t kyber_prepare_request
-ffffffff814b0710 t kyber_finish_request
-ffffffff814b0770 t kyber_insert_requests
-ffffffff814b0980 t kyber_dispatch_request
-ffffffff814b0a90 t kyber_has_work
-ffffffff814b0b50 t kyber_completed_request
-ffffffff814b0cc0 t kyber_timer_fn
-ffffffff814b0fc0 t calculate_percentile
-ffffffff814b1170 t kyber_domain_wake
-ffffffff814b11a0 t kyber_dispatch_cur_domain
-ffffffff814b1540 t kyber_get_domain_token
-ffffffff814b1690 t kyber_read_lat_show
-ffffffff814b16c0 t kyber_read_lat_store
-ffffffff814b1740 t kyber_write_lat_show
-ffffffff814b1770 t kyber_write_lat_store
-ffffffff814b17f0 t kyber_read_tokens_show
-ffffffff814b1810 t kyber_write_tokens_show
-ffffffff814b1830 t kyber_discard_tokens_show
-ffffffff814b1850 t kyber_other_tokens_show
-ffffffff814b1870 t kyber_async_depth_show
-ffffffff814b18a0 t kyber_read_waiting_show
-ffffffff814b18f0 t kyber_write_waiting_show
-ffffffff814b1940 t kyber_discard_waiting_show
-ffffffff814b1990 t kyber_other_waiting_show
-ffffffff814b19e0 t kyber_cur_domain_show
-ffffffff814b1a20 t kyber_batching_show
-ffffffff814b1a50 t kyber_read_rqs_start
-ffffffff814b1a90 t kyber_read_rqs_stop
-ffffffff814b1ab0 t kyber_read_rqs_next
-ffffffff814b1ae0 t kyber_write_rqs_start
-ffffffff814b1b20 t kyber_write_rqs_stop
-ffffffff814b1b40 t kyber_write_rqs_next
-ffffffff814b1b70 t kyber_discard_rqs_start
-ffffffff814b1bb0 t kyber_discard_rqs_stop
-ffffffff814b1bd0 t kyber_discard_rqs_next
-ffffffff814b1c00 t kyber_other_rqs_start
-ffffffff814b1c40 t kyber_other_rqs_stop
-ffffffff814b1c60 t kyber_other_rqs_next
-ffffffff814b1c90 t bfq_mark_bfqq_just_created
-ffffffff814b1cb0 t bfq_clear_bfqq_just_created
-ffffffff814b1cd0 t bfq_bfqq_just_created
-ffffffff814b1cf0 t bfq_mark_bfqq_busy
-ffffffff814b1d10 t bfq_clear_bfqq_busy
-ffffffff814b1d30 t bfq_bfqq_busy
-ffffffff814b1d50 t bfq_mark_bfqq_wait_request
-ffffffff814b1d70 t bfq_clear_bfqq_wait_request
-ffffffff814b1d90 t bfq_bfqq_wait_request
-ffffffff814b1db0 t bfq_mark_bfqq_non_blocking_wait_rq
-ffffffff814b1dd0 t bfq_clear_bfqq_non_blocking_wait_rq
-ffffffff814b1df0 t bfq_bfqq_non_blocking_wait_rq
-ffffffff814b1e10 t bfq_mark_bfqq_fifo_expire
-ffffffff814b1e30 t bfq_clear_bfqq_fifo_expire
-ffffffff814b1e50 t bfq_bfqq_fifo_expire
-ffffffff814b1e70 t bfq_mark_bfqq_has_short_ttime
-ffffffff814b1e90 t bfq_clear_bfqq_has_short_ttime
-ffffffff814b1eb0 t bfq_bfqq_has_short_ttime
-ffffffff814b1ed0 t bfq_mark_bfqq_sync
-ffffffff814b1ef0 t bfq_clear_bfqq_sync
-ffffffff814b1f10 t bfq_bfqq_sync
-ffffffff814b1f30 t bfq_mark_bfqq_IO_bound
-ffffffff814b1f50 t bfq_clear_bfqq_IO_bound
-ffffffff814b1f70 t bfq_bfqq_IO_bound
-ffffffff814b1f90 t bfq_mark_bfqq_in_large_burst
-ffffffff814b1fb0 t bfq_clear_bfqq_in_large_burst
-ffffffff814b1fd0 t bfq_bfqq_in_large_burst
-ffffffff814b1ff0 t bfq_mark_bfqq_coop
-ffffffff814b2010 t bfq_clear_bfqq_coop
-ffffffff814b2030 t bfq_bfqq_coop
-ffffffff814b2050 t bfq_mark_bfqq_split_coop
-ffffffff814b2070 t bfq_clear_bfqq_split_coop
-ffffffff814b2090 t bfq_bfqq_split_coop
-ffffffff814b20b0 t bfq_mark_bfqq_softrt_update
-ffffffff814b20d0 t bfq_clear_bfqq_softrt_update
-ffffffff814b20f0 t bfq_bfqq_softrt_update
-ffffffff814b2110 t bic_to_bfqq
-ffffffff814b2130 t bic_set_bfqq
-ffffffff814b2190 t bic_to_bfqd
-ffffffff814b21b0 t bfq_schedule_dispatch
-ffffffff814b21ce t bfq_pos_tree_add_move
-ffffffff814b22c0 t bfq_weights_tree_add
-ffffffff814b23e0 t __bfq_weights_tree_remove
-ffffffff814b2460 t bfq_put_queue
-ffffffff814b25a0 t bfq_weights_tree_remove
-ffffffff814b2660 t bfq_end_wr_async_queues
-ffffffff814b27e0 t bfq_release_process_ref
-ffffffff814b2860 t bfq_bfqq_expire
-ffffffff814b2ca0 t __bfq_bfqq_expire
-ffffffff814b2d50 t bfq_put_cooperator
-ffffffff814b2d90 t bfq_put_async_queues
-ffffffff814b2fd0 t idling_needed_for_service_guarantees
-ffffffff814b30c0 t bfq_init_queue
-ffffffff814b3550 t bfq_exit_queue
-ffffffff814b3600 t bfq_init_hctx
-ffffffff814b36a0 t bfq_depth_updated
-ffffffff814b3740 t bfq_allow_bio_merge
-ffffffff814b37f0 t bfq_bio_merge
-ffffffff814b3930 t bfq_request_merge
-ffffffff814b39c0 t bfq_request_merged
-ffffffff814b3a80 t bfq_requests_merged
-ffffffff814b3b90 t bfq_limit_depth
-ffffffff814b40b0 t bfq_prepare_request
-ffffffff814b40f0 t bfq_finish_request
-ffffffff814b4130 t bfq_insert_requests
-ffffffff814b5550 t bfq_dispatch_request
-ffffffff814b6530 t bfq_has_work
-ffffffff814b6570 t bfq_finish_requeue_request
-ffffffff814b6c20 t bfq_exit_icq
-ffffffff814b6ca0 t bfq_idle_slice_timer
-ffffffff814b6d60 t bfq_set_next_ioprio_data
-ffffffff814b6ea0 t bfq_setup_cooperator
-ffffffff814b7120 t bfq_merge_bfqqs
-ffffffff814b7370 t idling_boosts_thr_without_issues
-ffffffff814b7430 t bfq_setup_merge
-ffffffff814b7510 t bfq_may_be_close_cooperator
-ffffffff814b75a0 t bfq_find_close_cooperator
-ffffffff814b7690 t bfq_bfqq_save_state
-ffffffff814b7850 t bfq_choose_req
-ffffffff814b7980 t bfq_updated_next_req
-ffffffff814b7a90 t bfq_remove_request
-ffffffff814b7ca0 t bfq_get_queue
-ffffffff814b80e0 t bfq_add_request
-ffffffff814b8bd0 t bfq_better_to_idle
-ffffffff814b8cc0 t bfq_exit_icq_bfqq
-ffffffff814b8e10 t bfq_fifo_expire_sync_show
-ffffffff814b8e50 t bfq_fifo_expire_sync_store
-ffffffff814b8ef0 t bfq_fifo_expire_async_show
-ffffffff814b8f30 t bfq_fifo_expire_async_store
-ffffffff814b8fd0 t bfq_back_seek_max_show
-ffffffff814b9000 t bfq_back_seek_max_store
-ffffffff814b9080 t bfq_back_seek_penalty_show
-ffffffff814b90b0 t bfq_back_seek_penalty_store
-ffffffff814b9140 t bfq_slice_idle_show
-ffffffff814b9180 t bfq_slice_idle_store
-ffffffff814b9210 t bfq_slice_idle_us_show
-ffffffff814b9250 t bfq_slice_idle_us_store
-ffffffff814b92e0 t bfq_max_budget_show
-ffffffff814b9310 t bfq_max_budget_store
-ffffffff814b93d0 t bfq_timeout_sync_show
-ffffffff814b9400 t bfq_timeout_sync_store
-ffffffff814b94c0 t bfq_strict_guarantees_show
-ffffffff814b94f0 t bfq_strict_guarantees_store
-ffffffff814b9590 t bfq_low_latency_show
-ffffffff814b95c0 t bfq_low_latency_store
-ffffffff814b9750 t bfq_tot_busy_queues
-ffffffff814b9770 t bfq_entity_to_bfqq
-ffffffff814b9790 t bfq_entity_of
-ffffffff814b97a0 t bfq_ioprio_to_weight
-ffffffff814b97c0 t bfq_put_idle_entity
-ffffffff814b98c0 t bfq_entity_service_tree
-ffffffff814b9910 t __bfq_entity_update_weight_prio
-ffffffff814b9b00 t bfq_bfqq_served
-ffffffff814b9c60 t bfq_bfqq_charge_time
-ffffffff814b9cd0 t __bfq_deactivate_entity
-ffffffff814ba030 t bfq_active_extract
-ffffffff814ba150 t next_queue_may_preempt
-ffffffff814ba170 t bfq_get_next_queue
-ffffffff814ba240 t bfq_update_next_in_service
-ffffffff814ba460 t __bfq_bfqd_reset_in_service
-ffffffff814ba4e0 t bfq_deactivate_bfqq
-ffffffff814ba6a0 t bfq_activate_bfqq
-ffffffff814ba6e0 t bfq_activate_requeue_entity
-ffffffff814baa30 t bfq_requeue_bfqq
-ffffffff814baa60 t bfq_del_bfqq_busy
-ffffffff814baae0 t bfq_add_bfqq_busy
-ffffffff814babf0 t bfq_update_active_tree
-ffffffff814bad30 t bfq_update_fin_time_enqueue
-ffffffff814baef0 t bfqg_stats_update_io_remove
-ffffffff814baf00 t bfqg_stats_update_io_merged
-ffffffff814baf10 t bfqg_stats_update_completion
-ffffffff814baf20 t bfqg_stats_update_dequeue
-ffffffff814baf30 t bfqg_stats_set_start_idle_time
-ffffffff814baf40 t bfqg_to_blkg
-ffffffff814baf60 t bfqq_group
-ffffffff814baf90 t bfqg_and_blkg_put
-ffffffff814bb000 t bfqg_stats_update_legacy_io
-ffffffff814bb130 t bfq_init_entity
-ffffffff814bb1c0 t bfq_bio_bfqg
-ffffffff814bb250 t bfq_bfqq_move
-ffffffff814bb450 t bfq_bic_update_cgroup
-ffffffff814bb560 t bfq_link_bfqg
-ffffffff814bb600 t __bfq_bic_change_cgroup
-ffffffff814bb6e0 t bfq_end_wr_async
-ffffffff814bb770 t bfq_create_group_hierarchy
-ffffffff814bb7c0 t bfq_cpd_alloc
-ffffffff814bb810 t bfq_cpd_init
-ffffffff814bb830 t bfq_cpd_free
-ffffffff814bb840 t bfq_pd_alloc
-ffffffff814bb910 t bfq_pd_init
-ffffffff814bb9e0 t bfq_pd_offline
-ffffffff814bbbb0 t bfq_pd_free
-ffffffff814bbbf0 t bfq_pd_reset_stats
-ffffffff814bbc00 t bfq_io_show_weight_legacy
-ffffffff814bbc60 t bfq_io_set_weight_legacy
-ffffffff814bbd50 t bfq_io_show_weight
-ffffffff814bbdd0 t bfq_io_set_weight
-ffffffff814bc070 t bfqg_print_rwstat
-ffffffff814bc0c0 t bfqg_print_rwstat_recursive
-ffffffff814bc110 t bfqg_prfill_weight_device
-ffffffff814bc140 t bfqg_prfill_rwstat_recursive
-ffffffff814bc1e0 t blk_mq_pci_map_queues
-ffffffff814bc2d0 t blk_mq_virtio_map_queues
-ffffffff814bc380 t blk_zone_cond_str
-ffffffff814bc3c0 t blk_req_needs_zone_write_lock
-ffffffff814bc470 t blk_req_zone_write_trylock
-ffffffff814bc4f0 t __blk_req_zone_write_lock
-ffffffff814bc570 t __blk_req_zone_write_unlock
-ffffffff814bc5e0 t bdev_nr_zones
-ffffffff814bc630 t blkdev_report_zones
-ffffffff814bc690 t blkdev_zone_mgmt
-ffffffff814bc7f0 t blkdev_zone_reset_all_emulated
-ffffffff814bc970 t blkdev_zone_reset_all
-ffffffff814bca60 t blkdev_report_zones_ioctl
-ffffffff814bcbb0 t blkdev_copy_zone_to_user
-ffffffff814bcbf0 t blkdev_zone_mgmt_ioctl
-ffffffff814bcd70 t blkdev_truncate_zone_range
-ffffffff814bcdc0 t disk_free_zone_bitmaps
-ffffffff814bce00 t blk_revalidate_disk_zones
-ffffffff814bd040 t blk_revalidate_zone_cb
-ffffffff814bd1f0 t disk_clear_zone_settings
-ffffffff814bd290 t blk_zone_need_reset_cb
-ffffffff814bd2c0 t __blk_mq_debugfs_rq_show
-ffffffff814bd4d0 t blk_mq_debugfs_rq_show
-ffffffff814bd4f0 t blk_mq_debugfs_register
-ffffffff814bd840 t blk_mq_debugfs_register_sched
-ffffffff814bd8f0 t blk_mq_debugfs_register_hctx
-ffffffff814bdd00 t blk_mq_debugfs_register_sched_hctx
-ffffffff814bddb0 t blk_mq_debugfs_register_rqos
-ffffffff814bdea0 t blk_mq_debugfs_unregister_hctx
-ffffffff814bdef0 t blk_mq_debugfs_register_hctxs
-ffffffff814bdf90 t blk_mq_debugfs_unregister_hctxs
-ffffffff814be060 t blk_mq_debugfs_unregister_sched
-ffffffff814be090 t blk_mq_debugfs_unregister_rqos
-ffffffff814be0c0 t blk_mq_debugfs_unregister_sched_hctx
-ffffffff814be100 t blk_mq_debugfs_write
-ffffffff814be150 t blk_mq_debugfs_open
-ffffffff814be1d0 t blk_mq_debugfs_release
-ffffffff814be200 t blk_mq_debugfs_show
-ffffffff814be240 t queue_poll_stat_show
-ffffffff814be370 t queue_pm_only_show
-ffffffff814be390 t queue_state_show
-ffffffff814be430 t queue_state_write
-ffffffff814be5c0 t queue_requeue_list_start
-ffffffff814be600 t queue_requeue_list_stop
-ffffffff814be620 t queue_requeue_list_next
-ffffffff814be640 t hctx_state_show
-ffffffff814be760 t hctx_flags_show
-ffffffff814be850 t hctx_busy_show
-ffffffff814be8b0 t hctx_ctx_map_show
-ffffffff814be8d0 t hctx_tags_show
-ffffffff814be930 t hctx_tags_bitmap_show
-ffffffff814be990 t hctx_sched_tags_show
-ffffffff814be9f0 t hctx_sched_tags_bitmap_show
-ffffffff814bea50 t hctx_run_show
-ffffffff814bea80 t hctx_run_write
-ffffffff814beaa0 t hctx_active_show
-ffffffff814beae0 t hctx_dispatch_busy_show
-ffffffff814beb10 t hctx_type_show
-ffffffff814beb50 t hctx_dispatch_start
-ffffffff814beb80 t hctx_dispatch_stop
-ffffffff814beba0 t hctx_dispatch_next
-ffffffff814bebc0 t hctx_show_busy_rq
-ffffffff814bebf0 t blk_mq_debugfs_tags_show
-ffffffff814bec80 t ctx_default_rq_list_start
-ffffffff814becb0 t ctx_default_rq_list_stop
-ffffffff814becd0 t ctx_default_rq_list_next
-ffffffff814becf0 t ctx_read_rq_list_start
-ffffffff814bed20 t ctx_read_rq_list_stop
-ffffffff814bed40 t ctx_read_rq_list_next
-ffffffff814bed60 t ctx_poll_rq_list_start
-ffffffff814bed90 t ctx_poll_rq_list_stop
-ffffffff814bedb0 t ctx_poll_rq_list_next
-ffffffff814bedd0 t queue_zone_wlock_show
-ffffffff814bee50 t blk_pm_runtime_init
-ffffffff814bee90 t blk_pre_runtime_suspend
-ffffffff814bef70 t blk_post_runtime_suspend
-ffffffff814beff0 t blk_pre_runtime_resume
-ffffffff814bf030 t blk_post_runtime_resume
-ffffffff814bf0b0 t blk_set_runtime_active
-ffffffff814bf130 t bio_crypt_set_ctx
-ffffffff814bf190 t __bio_crypt_free_ctx
-ffffffff814bf1c0 t __bio_crypt_clone
-ffffffff814bf230 t bio_crypt_dun_increment
-ffffffff814bf280 t __bio_crypt_advance
-ffffffff814bf2e0 t bio_crypt_dun_is_contiguous
-ffffffff814bf360 t bio_crypt_rq_ctx_compatible
-ffffffff814bf3a0 t bio_crypt_ctx_mergeable
-ffffffff814bf440 t __blk_crypto_rq_get_keyslot
-ffffffff814bf470 t __blk_crypto_rq_put_keyslot
-ffffffff814bf4a0 t __blk_crypto_free_request
-ffffffff814bf500 t __blk_crypto_bio_prep
-ffffffff814bf630 t blk_crypto_config_supported_natively
-ffffffff814bf650 t __blk_crypto_rq_bio_prep
-ffffffff814bf6c0 t blk_crypto_init_key
-ffffffff814bf810 t blk_crypto_config_supported
-ffffffff814bf840 t blk_crypto_start_using_key
-ffffffff814bf8b0 t blk_crypto_evict_key
-ffffffff814bf930 t blk_crypto_profile_init
-ffffffff814bfb90 t blk_crypto_profile_destroy
-ffffffff814bfbe0 t devm_blk_crypto_profile_init
-ffffffff814bfc60 t blk_crypto_profile_destroy_callback
-ffffffff814bfcb0 t blk_crypto_keyslot_index
-ffffffff814bfcd0 t blk_crypto_get_keyslot
-ffffffff814bffe0 t blk_crypto_find_and_grab_keyslot
-ffffffff814c00c0 t blk_crypto_put_keyslot
-ffffffff814c01a0 t __blk_crypto_cfg_supported
-ffffffff814c01e0 t __blk_crypto_evict_key
-ffffffff814c0360 t blk_crypto_reprogram_all_keys
-ffffffff814c03f0 t blk_crypto_register
-ffffffff814c0410 t blk_crypto_derive_sw_secret
-ffffffff814c04c0 t blk_crypto_intersect_capabilities
-ffffffff814c0530 t blk_crypto_has_capabilities
-ffffffff814c05a0 t blk_crypto_update_capabilities
-ffffffff814c05d0 t blk_crypto_sysfs_register
-ffffffff814c0670 t blk_crypto_sysfs_unregister
-ffffffff814c0690 t blk_crypto_release
-ffffffff814c06a0 t blk_crypto_attr_show
-ffffffff814c06c0 t max_dun_bits_show
-ffffffff814c06f0 t num_keyslots_show
-ffffffff814c0720 t blk_crypto_mode_is_visible
-ffffffff814c0770 t blk_crypto_mode_show
-ffffffff814c07c0 t blk_crypto_fallback_bio_prep
-ffffffff814c1030 t blk_crypto_fallback_decrypt_endio
-ffffffff814c10b0 t blk_crypto_fallback_evict_key
-ffffffff814c10d0 t blk_crypto_fallback_start_using_mode
-ffffffff814c1260 t blk_crypto_fallback_init
-ffffffff814c1460 t blk_crypto_fallback_encrypt_endio
-ffffffff814c14e0 t blk_crypto_fallback_decrypt_bio
-ffffffff814c18c0 t blk_crypto_fallback_keyslot_program
-ffffffff814c1990 t blk_crypto_fallback_keyslot_evict
-ffffffff814c19f0 t bd_link_disk_holder
-ffffffff814c1b50 t bd_unlink_disk_holder
-ffffffff814c1c20 t bd_register_pending_holders
-ffffffff814c1d20 t __traceiter_io_uring_create
-ffffffff814c1d90 t __traceiter_io_uring_register
-ffffffff814c1e00 t __traceiter_io_uring_file_get
-ffffffff814c1e50 t __traceiter_io_uring_queue_async_work
-ffffffff814c1ea0 t __traceiter_io_uring_defer
-ffffffff814c1ef0 t __traceiter_io_uring_link
-ffffffff814c1f40 t __traceiter_io_uring_cqring_wait
-ffffffff814c1f90 t __traceiter_io_uring_fail_link
-ffffffff814c1fe0 t __traceiter_io_uring_complete
-ffffffff814c2060 t __traceiter_io_uring_submit_sqe
-ffffffff814c20b0 t __traceiter_io_uring_poll_arm
-ffffffff814c2110 t __traceiter_io_uring_task_add
-ffffffff814c2160 t __traceiter_io_uring_req_failed
-ffffffff814c21c0 t __traceiter_io_uring_cqe_overflow
-ffffffff814c2230 t __traceiter_io_uring_task_work_run
-ffffffff814c2290 t __traceiter_io_uring_short_write
-ffffffff814c2300 t __traceiter_io_uring_local_work_run
-ffffffff814c2360 t trace_event_raw_event_io_uring_create
-ffffffff814c2440 t perf_trace_io_uring_create
-ffffffff814c2560 t trace_event_raw_event_io_uring_register
-ffffffff814c2640 t perf_trace_io_uring_register
-ffffffff814c2760 t trace_event_raw_event_io_uring_file_get
-ffffffff814c2830 t perf_trace_io_uring_file_get
-ffffffff814c2940 t trace_event_raw_event_io_uring_queue_async_work
-ffffffff814c2ab0 t perf_trace_io_uring_queue_async_work
-ffffffff814c2c70 t trace_event_raw_event_io_uring_defer
-ffffffff814c2dc0 t perf_trace_io_uring_defer
-ffffffff814c2f60 t trace_event_raw_event_io_uring_link
-ffffffff814c3030 t perf_trace_io_uring_link
-ffffffff814c3130 t trace_event_raw_event_io_uring_cqring_wait
-ffffffff814c31f0 t perf_trace_io_uring_cqring_wait
-ffffffff814c32f0 t trace_event_raw_event_io_uring_fail_link
-ffffffff814c3450 t perf_trace_io_uring_fail_link
-ffffffff814c3600 t trace_event_raw_event_io_uring_complete
-ffffffff814c36f0 t perf_trace_io_uring_complete
-ffffffff814c3820 t trace_event_raw_event_io_uring_submit_sqe
-ffffffff814c3990 t perf_trace_io_uring_submit_sqe
-ffffffff814c3b50 t trace_event_raw_event_io_uring_poll_arm
-ffffffff814c3cc0 t perf_trace_io_uring_poll_arm
-ffffffff814c3e80 t trace_event_raw_event_io_uring_task_add
-ffffffff814c3fe0 t perf_trace_io_uring_task_add
-ffffffff814c4190 t trace_event_raw_event_io_uring_req_failed
-ffffffff814c4360 t perf_trace_io_uring_req_failed
-ffffffff814c4570 t trace_event_raw_event_io_uring_cqe_overflow
-ffffffff814c4650 t perf_trace_io_uring_cqe_overflow
-ffffffff814c4770 t trace_event_raw_event_io_uring_task_work_run
-ffffffff814c4840 t perf_trace_io_uring_task_work_run
-ffffffff814c4950 t trace_event_raw_event_io_uring_short_write
-ffffffff814c4a30 t perf_trace_io_uring_short_write
-ffffffff814c4b40 t trace_event_raw_event_io_uring_local_work_run
-ffffffff814c4c10 t perf_trace_io_uring_local_work_run
-ffffffff814c4d20 t io_uring_get_socket
-ffffffff814c4d60 t io_is_uring_fops
-ffffffff814c4d80 t io_match_task_safe
-ffffffff814c4e40 t io_queue_iowq
-ffffffff814c4fb0 t __io_commit_cqring_flush
-ffffffff814c5052 t io_queue_deferred
-ffffffff814c50e0 t io_cq_unlock_post
-ffffffff814c5150 t __io_put_task
-ffffffff814c51f0 t io_task_refs_refill
-ffffffff814c5260 t io_req_cqe_overflow
-ffffffff814c52c0 t io_cqring_event_overflow
-ffffffff814c5420 t __io_get_cqe
-ffffffff814c54f0 t io_fill_cqe_aux
-ffffffff814c56c0 t io_post_aux_cqe
-ffffffff814c5780 t io_req_complete_post
-ffffffff814c5aa0 t __io_fill_cqe_req
-ffffffff814c5c80 t req_ref_put_and_test
-ffffffff814c5cc0 t io_req_task_queue
-ffffffff814c5ce0 t __io_req_complete
-ffffffff814c5cf0 t io_req_complete_failed
-ffffffff814c5d72 t __io_alloc_req_refill
-ffffffff814c5f10 t io_free_req
-ffffffff814c6010 t tctx_task_work
-ffffffff814c6150 t handle_tw_list
-ffffffff814c6290 t ctx_flush_and_put
-ffffffff814c630c t io_uring_drop_tctx_refs
-ffffffff814c6390 t __io_req_task_work_add
-ffffffff814c65c0 t __io_run_local_work
-ffffffff814c6710 t io_submit_flush_completions
-ffffffff814c67f0 t io_run_local_work
-ffffffff814c6880 t io_req_task_submit
-ffffffff814c6900 t io_req_task_queue_fail
-ffffffff814c6930 t io_req_task_cancel
-ffffffff814c69d0 t io_queue_next
-ffffffff814c6aa0 t io_free_batch_list
-ffffffff814c6ce0 t io_clean_op
-ffffffff814c6e70 t io_req_task_complete
-ffffffff814c6ef0 t io_file_get_flags
-ffffffff814c6fa0 t io_alloc_async_data
-ffffffff814c7000 t io_req_prep_async
-ffffffff814c70c0 t io_file_get_normal
-ffffffff814c7170 t io_poll_issue
-ffffffff814c71c0 t io_issue_sqe
-ffffffff814c7460 t io_wq_free_work
-ffffffff814c7570 t io_wq_submit_work
-ffffffff814c76f0 t io_assign_file
-ffffffff814c77e0 t io_file_get_fixed
-ffffffff814c7890 t io_submit_sqes
-ffffffff814c7e50 t io_run_task_work_sig
-ffffffff814c7e90 t io_run_task_work_ctx
-ffffffff814c7fb2 t io_uring_cancel_generic
-ffffffff814c829b t io_uring_try_cancel_requests
-ffffffff814c84b0 t __io_uring_cancel
-ffffffff814c84d0 t __x64_sys_io_uring_enter
-ffffffff814c8f50 t __x64_sys_io_uring_setup
-ffffffff814c9080 t __x64_sys_io_uring_register
-ffffffff814c9820 t trace_raw_output_io_uring_create
-ffffffff814c9890 t trace_raw_output_io_uring_register
-ffffffff814c9900 t trace_raw_output_io_uring_file_get
-ffffffff814c9960 t trace_raw_output_io_uring_queue_async_work
-ffffffff814c99f0 t trace_raw_output_io_uring_defer
-ffffffff814c9a50 t trace_raw_output_io_uring_link
-ffffffff814c9ab0 t trace_raw_output_io_uring_cqring_wait
-ffffffff814c9b10 t trace_raw_output_io_uring_fail_link
-ffffffff814c9b80 t trace_raw_output_io_uring_complete
-ffffffff814c9bf0 t trace_raw_output_io_uring_submit_sqe
-ffffffff814c9c70 t trace_raw_output_io_uring_poll_arm
-ffffffff814c9ce0 t trace_raw_output_io_uring_task_add
-ffffffff814c9d50 t trace_raw_output_io_uring_req_failed
-ffffffff814c9e20 t trace_raw_output_io_uring_cqe_overflow
-ffffffff814c9e90 t trace_raw_output_io_uring_task_work_run
-ffffffff814c9ef0 t trace_raw_output_io_uring_short_write
-ffffffff814c9f50 t trace_raw_output_io_uring_local_work_run
-ffffffff814c9fb0 t __io_prep_linked_timeout
-ffffffff814ca030 t io_prep_async_work
-ffffffff814ca1e0 t io_eventfd_signal
-ffffffff814ca2b0 t io_eventfd_ops
-ffffffff814ca300 t percpu_ref_put
-ffffffff814ca343 t io_move_task_work_from_local
-ffffffff814ca380 t __io_arm_ltimeout
-ffffffff814ca400 t io_queue_async
-ffffffff814ca5a8 t io_submit_fail_init
-ffffffff814ca6e0 t trace_io_uring_link
-ffffffff814ca740 t io_queue_sqe_fallback
-ffffffff814ca7a4 t io_drain_req
-ffffffff814ca9ee t io_uring_try_cancel_iowq
-ffffffff814caa80 t io_cancel_task_cb
-ffffffff814cab46 t io_iopoll_try_reap_events
-ffffffff814cabaf t io_cancel_defer_files
-ffffffff814cad04 t io_cancel_ctx_cb
-ffffffff814cad20 t __io_cqring_overflow_flush
-ffffffff814cafa0 t io_wake_function
-ffffffff814caff0 t io_uring_poll.llvm.5055127521332534324
-ffffffff814cb06a t io_uring_mmap.llvm.5055127521332534324
-ffffffff814cb150 t io_uring_release.llvm.5055127521332534324
-ffffffff814cb174 t io_ring_ctx_wait_and_kill
-ffffffff814cb2ca t io_ring_exit_work
-ffffffff814cb540 t io_req_caches_free
-ffffffff814cb63a t io_tctx_exit_cb
-ffffffff814cb67c t io_ring_ctx_free
-ffffffff814cb9e0 t io_mem_free
-ffffffff814cba51 t io_uring_create
-ffffffff814cbd51 t io_ring_ctx_alloc
-ffffffff814cc0e7 t io_allocate_scq_urings
-ffffffff814cc220 t io_uring_get_file
-ffffffff814cc2c0 t io_uring_install_fd
-ffffffff814cc320 t trace_io_uring_create
-ffffffff814cc380 t io_alloc_hash_table
-ffffffff814cc3d6 t io_ring_ctx_ref_free
-ffffffff814cc3ed t io_fallback_req_func
-ffffffff814cc510 t io_eventfd_register
-ffffffff814cc62d t io_probe
-ffffffff814cc77c t io_register_restrictions
-ffffffff814cc883 t io_register_iowq_aff
-ffffffff814cc970 t io_unregister_iowq_aff
-ffffffff814cc9a4 t io_register_iowq_max_workers
-ffffffff814ccbc0 t io_xattr_cleanup
-ffffffff814ccbf0 t io_fgetxattr_prep
-ffffffff814ccc00 t __io_getxattr_prep
-ffffffff814cccd0 t io_getxattr_prep
-ffffffff814ccd30 t io_fgetxattr
-ffffffff814ccdb0 t io_getxattr
-ffffffff814cced0 t io_setxattr_prep
-ffffffff814ccfa0 t io_fsetxattr_prep
-ffffffff814cd040 t io_fsetxattr
-ffffffff814cd0d0 t io_setxattr
-ffffffff814cd230 t io_nop_prep
-ffffffff814cd240 t io_nop
-ffffffff814cd260 t io_renameat_prep
-ffffffff814cd300 t io_renameat
-ffffffff814cd350 t io_renameat_cleanup
-ffffffff814cd380 t io_unlinkat_prep
-ffffffff814cd400 t io_unlinkat
-ffffffff814cd450 t io_unlinkat_cleanup
-ffffffff814cd470 t io_mkdirat_prep
-ffffffff814cd4f0 t io_mkdirat
-ffffffff814cd530 t io_mkdirat_cleanup
-ffffffff814cd550 t io_symlinkat_prep
-ffffffff814cd5f0 t io_symlinkat
-ffffffff814cd630 t io_linkat_prep
-ffffffff814cd6e0 t io_linkat
-ffffffff814cd730 t io_link_cleanup
-ffffffff814cd760 t io_tee_prep
-ffffffff814cd7b0 t io_tee
-ffffffff814cd880 t io_splice_prep
-ffffffff814cd8d0 t io_splice
-ffffffff814cd9c0 t io_sfr_prep
-ffffffff814cda00 t io_sync_file_range
-ffffffff814cda40 t io_fsync_prep
-ffffffff814cda80 t io_fsync
-ffffffff814cdae0 t io_fallocate_prep
-ffffffff814cdb30 t io_fallocate
-ffffffff814cdbf0 t io_madvise_prep
-ffffffff814cdc40 t io_madvise
-ffffffff814cdc90 t io_fadvise_prep
-ffffffff814cdce0 t io_fadvise
-ffffffff814cdd50 t io_alloc_file_tables
-ffffffff814cddb0 t io_free_file_tables
-ffffffff814cdde0 t __io_fixed_fd_install
-ffffffff814ce030 t io_fixed_fd_install
-ffffffff814ce0b0 t io_fixed_fd_remove
-ffffffff814ce1a0 t io_register_file_alloc_range
-ffffffff814ce240 t io_openat_prep
-ffffffff814ce360 t io_openat2_prep
-ffffffff814ce470 t io_openat2
-ffffffff814ce7a0 t io_openat
-ffffffff814ce7b0 t io_open_cleanup
-ffffffff814ce7d0 t __io_close_fixed
-ffffffff814ce820 t io_close_prep
-ffffffff814ce880 t io_close
-ffffffff814ce9d0 t io_uring_cmd_complete_in_task
-ffffffff814cea00 t io_uring_cmd_work
-ffffffff814cea30 t io_uring_cmd_done
-ffffffff814ceab0 t io_uring_cmd_prep_async
-ffffffff814ceae0 t io_uring_cmd_prep
-ffffffff814ceb80 t io_uring_cmd
-ffffffff814cecb0 t io_uring_cmd_import_fixed
-ffffffff814cece0 t io_epoll_ctl_prep
-ffffffff814ced80 t io_epoll_ctl
-ffffffff814cee00 t io_statx_prep
-ffffffff814cee90 t io_statx
-ffffffff814ceee0 t io_statx_cleanup
-ffffffff814cef00 t io_shutdown_prep
-ffffffff814cef40 t io_shutdown
-ffffffff814cef90 t io_send_prep_async
-ffffffff814cf050 t io_sendmsg_prep_async
-ffffffff814cf130 t io_sendmsg_recvmsg_cleanup
-ffffffff814cf150 t io_sendmsg_prep
-ffffffff814cf1e0 t io_sendmsg
-ffffffff814cf440 t io_setup_async_msg
-ffffffff814cf570 t io_send
-ffffffff814cf960 t io_setup_async_addr
-ffffffff814cfa30 t io_recvmsg_prep_async
-ffffffff814cfae0 t io_recvmsg_copy_hdr
-ffffffff814cfc80 t io_recvmsg_prep
-ffffffff814cfd30 t io_recvmsg
-ffffffff814d0460 t io_recv
-ffffffff814d08e0 t io_send_zc_cleanup
-ffffffff814d0930 t io_send_zc_prep
-ffffffff814d0ac0 t io_send_zc
-ffffffff814d0fc0 t io_sg_from_iter
-ffffffff814d11e0 t io_sg_from_iter_iovec
-ffffffff814d1240 t io_sendmsg_zc
-ffffffff814d14f0 t io_sendrecv_fail
-ffffffff814d1520 t io_accept_prep
-ffffffff814d15d0 t io_accept
-ffffffff814d1770 t io_socket_prep
-ffffffff814d17f0 t io_socket
-ffffffff814d18e0 t io_connect_prep_async
-ffffffff814d1910 t io_connect_prep
-ffffffff814d1960 t io_connect
-ffffffff814d1b80 t io_netmsg_cache_free
-ffffffff814d1b90 t io_msg_ring_prep
-ffffffff814d1bf0 t io_msg_ring
-ffffffff814d1dfb t io_flush_timeouts
-ffffffff814d1e90 t io_kill_timeout
-ffffffff814d1f50 t io_disarm_next
-ffffffff814d20b0 t io_fail_links
-ffffffff814d2180 t __io_disarm_linked_timeout
-ffffffff814d2210 t io_timeout_cancel
-ffffffff814d2320 t io_timeout_remove_prep
-ffffffff814d23d0 t io_timeout_remove
-ffffffff814d2740 t io_timeout_prep
-ffffffff814d2760 t __io_timeout_prep
-ffffffff814d2920 t io_link_timeout_prep
-ffffffff814d2940 t io_timeout
-ffffffff814d2a70 t io_timeout_fn
-ffffffff814d2b30 t io_queue_linked_timeout
-ffffffff814d2c40 t io_link_timeout_fn
-ffffffff814d2d31 t io_kill_timeouts
-ffffffff814d2e10 t io_req_tw_fail_links
-ffffffff814d2ea0 t io_req_task_link_timeout
-ffffffff814d2fb0 t io_sq_thread_unpark
-ffffffff814d2ff0 t io_sq_thread_park
-ffffffff814d3040 t io_sq_thread_stop
-ffffffff814d30c0 t io_put_sq_data
-ffffffff814d3110 t io_sq_thread_finish
-ffffffff814d3270 t io_sqpoll_wait_sq
-ffffffff814d334b t io_sq_offload_create
-ffffffff814d3720 t io_sq_thread
-ffffffff814d3d10 t io_run_task_work
-ffffffff814d3d91 t io_uring_show_fdinfo
-ffffffff814d3e18 t __io_uring_show_fdinfo
-ffffffff814d44ab t io_uring_show_cred
-ffffffff814d4680 t __io_uring_free
-ffffffff814d46e6 t io_uring_alloc_task_context
-ffffffff814d48c0 t __io_uring_add_tctx_node
-ffffffff814d4a70 t __io_uring_add_tctx_node_from_submit
-ffffffff814d4abd t io_uring_del_tctx_node
-ffffffff814d4b7a t io_uring_clean_tctx
-ffffffff814d4c40 t io_uring_unreg_ringfd
-ffffffff814d4dd0 t io_ringfd_register
-ffffffff814d4fb0 t io_ringfd_unregister
-ffffffff814d50d0 t io_arm_poll_handler
-ffffffff814d5360 t io_async_queue_proc
-ffffffff814d5390 t __io_arm_poll_handler
-ffffffff814d59b1 t io_poll_remove_all
-ffffffff814d59fb t io_poll_remove_all_table
-ffffffff814d5b00 t io_poll_cancel
-ffffffff814d5b90 t __io_poll_cancel
-ffffffff814d5d10 t io_poll_remove_prep
-ffffffff814d5da0 t io_poll_add_prep
-ffffffff814d5e00 t io_poll_add
-ffffffff814d5eb0 t io_poll_queue_proc
-ffffffff814d5ee0 t io_poll_remove
-ffffffff814d6200 t io_poll_disarm
-ffffffff814d62e0 t io_apoll_cache_free
-ffffffff814d62f0 t __io_queue_proc
-ffffffff814d6410 t io_poll_double_prepare
-ffffffff814d6480 t io_poll_wake
-ffffffff814d6620 t io_poll_remove_entries
-ffffffff814d6730 t io_poll_can_finish_inline
-ffffffff814d67bc t io_pollfree_wake
-ffffffff814d6810 t io_poll_execute
-ffffffff814d6910 t io_poll_get_ownership_slowpath
-ffffffff814d6980 t io_poll_task_func
-ffffffff814d6a40 t io_apoll_task_func
-ffffffff814d6ab0 t io_poll_check_events
-ffffffff814d6ca0 t io_poll_tw_hash_eject
-ffffffff814d6d80 t io_try_cancel
-ffffffff814d6e70 t io_async_cancel_prep
-ffffffff814d6ed0 t io_async_cancel
-ffffffff814d6fd0 t __io_async_cancel
-ffffffff814d7150 t init_hash_table
-ffffffff814d71e0 t io_sync_cancel
-ffffffff814d7590 t io_cancel_cb
-ffffffff814d75f0 t io_kbuf_recycle_legacy
-ffffffff814d76c0 t __io_put_kbuf
-ffffffff814d7810 t io_buffer_select
-ffffffff814d79c0 t io_destroy_buffers
-ffffffff814d7b10 t __io_remove_buffers
-ffffffff814d7c30 t io_remove_buffers_prep
-ffffffff814d7cb0 t io_remove_buffers
-ffffffff814d7d90 t io_provide_buffers_prep
-ffffffff814d7e40 t io_provide_buffers
-ffffffff814d822d t io_init_bl_list
-ffffffff814d82a0 t io_buffer_add_list
-ffffffff814d8320 t io_register_pbuf_ring
-ffffffff814d8570 t io_unregister_pbuf_ring
-ffffffff814d86a0 t io_rsrc_refs_drop
-ffffffff814d8710 t __io_account_mem
-ffffffff814d8770 t io_rsrc_refs_refill
-ffffffff814d87b0 t io_rsrc_put_work
-ffffffff814d8930 t io_wait_rsrc_data
-ffffffff814d8960 t io_rsrc_node_destroy
-ffffffff814d8980 t io_rsrc_node_switch
-ffffffff814d8b20 t io_rsrc_node_switch_start
-ffffffff814d8bd0 t io_register_files_update
-ffffffff814d8c70 t __io_register_rsrc_update
-ffffffff814d9430 t io_register_rsrc_update
-ffffffff814d94dc t io_register_rsrc
-ffffffff814d95c0 t io_sqe_files_register
-ffffffff814d98b0 t io_sqe_buffers_register
-ffffffff814d9b80 t io_files_update_prep
-ffffffff814d9bd0 t io_files_update
-ffffffff814d9db0 t io_queue_rsrc_removal
-ffffffff814d9e60 t __io_sqe_files_unregister
-ffffffff814d9fb0 t io_rsrc_data_free
-ffffffff814da010 t io_sqe_files_unregister
-ffffffff814da065 t io_rsrc_ref_quiesce
-ffffffff814da140 t __io_scm_file_account
-ffffffff814da2f0 t refcount_add
-ffffffff814da330 t refcount_add
-ffffffff814da370 t refcount_add
-ffffffff814da3b0 t refcount_add
-ffffffff814da3e8 t io_rsrc_data_alloc
-ffffffff814da530 t io_rsrc_file_put
-ffffffff814da750 t io_scm_file_account
-ffffffff814da790 t io_file_bitmap_set
-ffffffff814da7c0 t __io_sqe_buffers_unregister
-ffffffff814da920 t io_buffer_unmap
-ffffffff814da9c0 t io_sqe_buffers_unregister
-ffffffff814daa20 t io_pin_pages
-ffffffff814dac50 t io_rsrc_buf_put
-ffffffff814dacf0 t io_sqe_buffer_register
-ffffffff814db1c0 t io_import_fixed
-ffffffff814db285 t io_rsrc_node_ref_zero
-ffffffff814db3ae t io_alloc_page_table
-ffffffff814db4a0 t io_prep_rw
-ffffffff814db600 t io_readv_writev_cleanup
-ffffffff814db620 t io_readv_prep_async
-ffffffff814db6b0 t io_writev_prep_async
-ffffffff814db750 t io_read
-ffffffff814dbcb0 t io_import_iovec
-ffffffff814dbe10 t io_rw_init_file
-ffffffff814dbf20 t io_setup_async_rw
-ffffffff814dc050 t kiocb_done
-ffffffff814dc1d0 t io_write
-ffffffff814dc770 t loop_rw_iter
-ffffffff814dc8d0 t io_rw_fail
-ffffffff814dc910 t io_do_iopoll
-ffffffff814dccc0 t io_complete_rw_iopoll
-ffffffff814dcd80 t io_complete_rw
-ffffffff814dcec0 t io_rw_should_reissue
-ffffffff814dcf60 t io_req_rw_complete
-ffffffff814dcf90 t io_req_io_end
-ffffffff814dd0f0 t io_async_buf_func
-ffffffff814dd180 t io_no_issue.llvm.16652187581604470142
-ffffffff814dd1a0 t io_uring_get_opcode
-ffffffff814dd1d0 t io_eopnotsupp_prep
-ffffffff814dd1e0 t io_alloc_notif
-ffffffff814dd2b0 t io_uring_tx_zerocopy_callback
-ffffffff814dd330 t io_notif_flush
-ffffffff814dd380 t __io_notif_complete_tw
-ffffffff814dd3d0 t io_wq_worker_running
-ffffffff814dd420 t io_wq_worker_sleeping
-ffffffff814dd450 t io_wqe_dec_running
-ffffffff814dd510 t io_wq_enqueue
-ffffffff814dd530 t io_wqe_enqueue.llvm.11268602312482065020
-ffffffff814dd7d0 t io_wq_hash_work
-ffffffff814dd800 t io_wq_cancel_cb
-ffffffff814dd900 t io_wq_create
-ffffffff814ddbc0 t io_wqe_hash_wake
-ffffffff814ddc50 t io_wq_exit_start
-ffffffff814ddc60 t io_wq_put_and_exit
-ffffffff814ddeb0 t io_wq_cpu_affinity
-ffffffff814ddf10 t io_wq_max_workers
-ffffffff814ddfd0 t io_queue_worker_create
-ffffffff814de120 t create_worker_cb
-ffffffff814de200 t io_wq_cancel_tw_create
-ffffffff814de290 t io_worker_ref_put
-ffffffff814de2b0 t io_task_work_match
-ffffffff814de2f0 t io_worker_cancel_cb
-ffffffff814de390 t create_worker_cont
-ffffffff814de570 t io_wqe_worker
-ffffffff814de980 t io_init_new_worker
-ffffffff814dea40 t io_wq_work_match_all
-ffffffff814dea50 t io_acct_cancel_pending_work
-ffffffff814debb0 t io_worker_handle_work
-ffffffff814df080 t io_assign_current_work
-ffffffff814df140 t io_task_worker_match
-ffffffff814df170 t create_io_worker
-ffffffff814df310 t io_workqueue_create
-ffffffff814df360 t io_wqe_activate_free_worker
-ffffffff814df4b0 t io_wq_work_match_item
-ffffffff814df4d0 t io_wq_for_each_worker
-ffffffff814df5e0 t io_wq_worker_cancel
-ffffffff814df6a0 t io_wq_worker_wake
-ffffffff814df6e0 t io_wq_cpu_online
-ffffffff814df710 t io_wq_cpu_offline
-ffffffff814df740 t __io_wq_cpu_online
-ffffffff814df860 t lockref_get
-ffffffff814df8c0 t lockref_get_not_zero
-ffffffff814df950 t lockref_put_not_zero
-ffffffff814df9e0 t lockref_put_return
-ffffffff814dfa40 t lockref_put_or_lock
-ffffffff814dfac0 t lockref_mark_dead
-ffffffff814dfae0 t lockref_get_not_dead
-ffffffff814dfb60 t _bcd2bin
-ffffffff814dfb80 t _bin2bcd
-ffffffff814dfbb0 t sort_r
-ffffffff814e00f0 t sort
-ffffffff814e0140 t match_token
-ffffffff814e0390 t match_int
-ffffffff814e0440 t match_uint
-ffffffff814e04a0 t match_strdup
-ffffffff814e04d0 t match_u64
-ffffffff814e0570 t match_octal
-ffffffff814e0620 t match_hex
-ffffffff814e06d0 t match_wildcard
-ffffffff814e0770 t match_strlcpy
-ffffffff814e07c0 t debug_locks_off
-ffffffff814e0800 t prandom_u32_state
-ffffffff814e0880 t prandom_bytes_state
-ffffffff814e0a30 t prandom_seed_full_state
-ffffffff814e0f50 t bust_spinlocks
-ffffffff814e0f90 t kvasprintf
-ffffffff814e1080 t kvasprintf_const
-ffffffff814e1110 t kasprintf
-ffffffff814e1190 t __bitmap_equal
-ffffffff814e11f0 t __bitmap_or_equal
-ffffffff814e1260 t __bitmap_complement
-ffffffff814e1300 t __bitmap_shift_right
-ffffffff814e1420 t __bitmap_shift_left
-ffffffff814e1560 t bitmap_cut
-ffffffff814e16c0 t __bitmap_and
-ffffffff814e1760 t __bitmap_or
-ffffffff814e1810 t __bitmap_xor
-ffffffff814e18c0 t __bitmap_andnot
-ffffffff814e1970 t __bitmap_replace
-ffffffff814e1a00 t __bitmap_intersects
-ffffffff814e1a70 t __bitmap_subset
-ffffffff814e1ae0 t __bitmap_weight
-ffffffff814e1b50 t __bitmap_weight_and
-ffffffff814e1bc0 t __bitmap_set
-ffffffff814e1c80 t __bitmap_clear
-ffffffff814e1d40 t bitmap_find_next_zero_area_off
-ffffffff814e1dd0 t bitmap_parse_user
-ffffffff814e1e20 t bitmap_parse
-ffffffff814e21d0 t bitmap_print_to_pagebuf
-ffffffff814e2210 t bitmap_print_bitmask_to_buf
-ffffffff814e22b0 t bitmap_print_list_to_buf
-ffffffff814e2350 t bitmap_parselist
-ffffffff814e28b0 t bitmap_parselist_user
-ffffffff814e2900 t bitmap_remap
-ffffffff814e2a90 t bitmap_bitremap
-ffffffff814e2b90 t bitmap_find_free_region
-ffffffff814e2c90 t bitmap_release_region
-ffffffff814e2d30 t bitmap_allocate_region
-ffffffff814e2e00 t bitmap_alloc
-ffffffff814e2e20 t bitmap_zalloc
-ffffffff814e2e50 t bitmap_alloc_node
-ffffffff814e2e70 t bitmap_zalloc_node
-ffffffff814e2ea0 t bitmap_free
-ffffffff814e2eb0 t devm_bitmap_alloc
-ffffffff814e2f10 t devm_bitmap_free
-ffffffff814e2f20 t devm_bitmap_zalloc
-ffffffff814e2f80 t bitmap_from_arr32
-ffffffff814e2ff0 t bitmap_to_arr32
-ffffffff814e3060 t sg_next
-ffffffff814e30a0 t sg_nents
-ffffffff814e30e0 t sg_nents_for_len
-ffffffff814e3150 t sg_last
-ffffffff814e31b0 t sg_init_table
-ffffffff814e31f0 t sg_init_one
-ffffffff814e3270 t __sg_free_table
-ffffffff814e3360 t sg_free_append_table
-ffffffff814e33f0 t sg_free_table
-ffffffff814e3480 t __sg_alloc_table
-ffffffff814e36e0 t sg_alloc_table
-ffffffff814e3730 t sg_kmalloc
-ffffffff814e3760 t sg_alloc_append_table_from_pages
-ffffffff814e3b20 t sg_alloc_table_from_pages_segment
-ffffffff814e3bc0 t sgl_alloc_order
-ffffffff814e3d70 t sgl_free_order
-ffffffff814e3df0 t sgl_alloc
-ffffffff814e3e10 t sgl_free_n_order
-ffffffff814e3ea0 t sgl_free
-ffffffff814e3f20 t __sg_page_iter_start
-ffffffff814e3f40 t __sg_page_iter_next
-ffffffff814e3fd0 t __sg_page_iter_dma_next
-ffffffff814e4060 t sg_miter_start
-ffffffff814e40c0 t sg_miter_skip
-ffffffff814e4120 t sg_miter_stop
-ffffffff814e41c0 t sg_miter_get_next_page
-ffffffff814e42c0 t sg_miter_next
-ffffffff814e4360 t sg_copy_buffer
-ffffffff814e45d0 t sg_copy_from_buffer
-ffffffff814e45f0 t sg_copy_to_buffer
-ffffffff814e4610 t sg_pcopy_from_buffer
-ffffffff814e4630 t sg_pcopy_to_buffer
-ffffffff814e4650 t sg_zero_buffer
-ffffffff814e48a0 t list_sort
-ffffffff814e4b30 t generate_random_uuid
-ffffffff814e4b70 t generate_random_guid
-ffffffff814e4bb0 t guid_gen
-ffffffff814e4bf0 t uuid_gen
-ffffffff814e4c30 t uuid_is_valid
-ffffffff814e4cb0 t guid_parse
-ffffffff814e4d90 t uuid_parse
-ffffffff814e4e70 t fault_in_iov_iter_readable
-ffffffff814e4f70 t fault_in_iov_iter_writeable
-ffffffff814e5070 t iov_iter_init
-ffffffff814e50b0 t _copy_to_iter
-ffffffff814e5590 t copy_pipe_to_iter
-ffffffff814e5680 t copyout
-ffffffff814e56b0 t xas_next_entry
-ffffffff814e5770 t _copy_mc_to_iter
-ffffffff814e5cd0 t copy_mc_pipe_to_iter
-ffffffff814e5de0 t copyout_mc
-ffffffff814e5e10 t _copy_from_iter
-ffffffff814e6300 t copyin
-ffffffff814e6330 t _copy_from_iter_nocache
-ffffffff814e6800 t _copy_from_iter_flushcache
-ffffffff814e6cd0 t copy_page_to_iter
-ffffffff814e6e10 t copy_page_to_iter_pipe
-ffffffff814e6f40 t copy_page_from_iter
-ffffffff814e7060 t iov_iter_zero
-ffffffff814e7560 t pipe_zero
-ffffffff814e7640 t copy_page_from_iter_atomic
-ffffffff814e7c50 t iov_iter_advance
-ffffffff814e7cc0 t iov_iter_iovec_advance
-ffffffff814e7d40 t iov_iter_bvec_advance
-ffffffff814e7dc0 t pipe_advance
-ffffffff814e7f50 t iov_iter_revert
-ffffffff814e80d0 t iov_iter_single_seg_count
-ffffffff814e8120 t iov_iter_kvec
-ffffffff814e8160 t iov_iter_bvec
-ffffffff814e81a0 t iov_iter_pipe
-ffffffff814e81e0 t iov_iter_xarray
-ffffffff814e8220 t iov_iter_discard
-ffffffff814e8260 t iov_iter_is_aligned
-ffffffff814e82f0 t iov_iter_aligned_iovec
-ffffffff814e8380 t iov_iter_aligned_bvec
-ffffffff814e8410 t iov_iter_alignment
-ffffffff814e84a0 t iov_iter_alignment_iovec
-ffffffff814e8530 t iov_iter_alignment_bvec
-ffffffff814e85c0 t iov_iter_gap_alignment
-ffffffff814e8650 t iov_iter_get_pages2
-ffffffff814e86a0 t __iov_iter_get_pages_alloc
-ffffffff814e8980 t iov_iter_get_pages_alloc2
-ffffffff814e89d0 t csum_and_copy_from_iter
-ffffffff814e9020 t csum_and_copy_to_iter
-ffffffff814e96d0 t csum_and_copy_to_pipe_iter
-ffffffff814e97f0 t hash_and_copy_to_iter
-ffffffff814e98d0 t iov_iter_npages
-ffffffff814e99a0 t iov_npages
-ffffffff814e9a50 t bvec_npages
-ffffffff814e9af0 t sanity
-ffffffff814e9bd0 t dup_iter
-ffffffff814e9c40 t iovec_from_user
-ffffffff814e9dc0 t __import_iovec
-ffffffff814e9ed0 t import_iovec
-ffffffff814e9ef0 t import_single_range
-ffffffff814e9f70 t iov_iter_restore
-ffffffff814e9fd0 t append_pipe
-ffffffff814ea0e0 t want_pages_array
-ffffffff814ea140 t pipe_get_pages
-ffffffff814ea2c0 t iter_xarray_get_pages
-ffffffff814ea530 t __ctzsi2
-ffffffff814ea550 t __clzsi2
-ffffffff814ea580 t __clzdi2
-ffffffff814ea5b0 t __ctzdi2
-ffffffff814ea5d0 t bsearch
-ffffffff814ea660 t _find_first_bit
-ffffffff814ea6d0 t _find_first_and_bit
-ffffffff814ea740 t _find_first_zero_bit
-ffffffff814ea7b0 t _find_next_bit
-ffffffff814ea830 t __find_nth_bit
-ffffffff814ea920 t __find_nth_and_bit
-ffffffff814eaa20 t __find_nth_andnot_bit
-ffffffff814eab20 t _find_next_and_bit
-ffffffff814eaba0 t _find_next_andnot_bit
-ffffffff814eac20 t _find_next_zero_bit
-ffffffff814eaca0 t _find_last_bit
-ffffffff814ead10 t find_next_clump8
-ffffffff814eada0 t llist_add_batch
-ffffffff814eadd0 t llist_del_first
-ffffffff814eae10 t llist_reverse_order
-ffffffff814eae50 t memweight
-ffffffff814eaf20 t __kfifo_alloc
-ffffffff814eafc0 t __kfifo_free
-ffffffff814eaff0 t __kfifo_init
-ffffffff814eb0b0 t __kfifo_in
-ffffffff814eb140 t __kfifo_out_peek
-ffffffff814eb1c0 t __kfifo_out
-ffffffff814eb250 t __kfifo_from_user
-ffffffff814eb2d0 t kfifo_copy_from_user
-ffffffff814eb410 t __kfifo_to_user
-ffffffff814eb490 t kfifo_copy_to_user
-ffffffff814eb5d0 t __kfifo_dma_in_prepare
-ffffffff814eb670 t __kfifo_dma_out_prepare
-ffffffff814eb710 t __kfifo_max_r
-ffffffff814eb730 t __kfifo_len_r
-ffffffff814eb760 t __kfifo_in_r
-ffffffff814eb820 t __kfifo_out_peek_r
-ffffffff814eb8d0 t __kfifo_out_r
-ffffffff814eb9a0 t __kfifo_skip_r
-ffffffff814eb9e0 t __kfifo_from_user_r
-ffffffff814eba80 t __kfifo_to_user_r
-ffffffff814ebb10 t __kfifo_dma_in_prepare_r
-ffffffff814ebbe0 t __kfifo_dma_in_finish_r
-ffffffff814ebc30 t __kfifo_dma_out_prepare_r
-ffffffff814ebd00 t __kfifo_dma_out_finish_r
-ffffffff814ebd40 t setup_sgl_buf
-ffffffff814ebf00 t percpu_ref_init
-ffffffff814ec020 t percpu_ref_exit
-ffffffff814ec0a0 t percpu_ref_switch_to_atomic
-ffffffff814ec0f0 t __percpu_ref_switch_mode
-ffffffff814ec2e0 t percpu_ref_switch_to_atomic_sync
-ffffffff814ec3e0 t percpu_ref_switch_to_percpu
-ffffffff814ec430 t percpu_ref_kill_and_confirm
-ffffffff814ec4f0 t percpu_ref_is_zero
-ffffffff814ec550 t percpu_ref_reinit
-ffffffff814ec5b0 t percpu_ref_resurrect
-ffffffff814ec630 t percpu_ref_noop_confirm_switch
-ffffffff814ec640 t percpu_ref_switch_to_atomic_rcu
-ffffffff814ec7e0 t rhashtable_insert_slow
-ffffffff814ecde0 t rhashtable_walk_enter
-ffffffff814ece70 t rhashtable_walk_exit
-ffffffff814ecee0 t rhashtable_walk_start_check
-ffffffff814ed0a0 t rhashtable_walk_next
-ffffffff814ed110 t __rhashtable_walk_find_next
-ffffffff814ed240 t rhashtable_walk_peek
-ffffffff814ed280 t rhashtable_walk_stop
-ffffffff814ed320 t bucket_table_free_rcu
-ffffffff814ed390 t rhashtable_init
-ffffffff814ed6d0 t jhash
-ffffffff814ed880 t rhashtable_jhash2
-ffffffff814ed970 t bucket_table_alloc
-ffffffff814edb50 t rht_deferred_worker
-ffffffff814ee020 t rhltable_init
-ffffffff814ee040 t rhashtable_free_and_destroy
-ffffffff814ee290 t rhashtable_destroy
-ffffffff814ee2b0 t __rht_bucket_nested
-ffffffff814ee330 t rht_bucket_nested
-ffffffff814ee3d0 t rht_bucket_nested_insert
-ffffffff814ee530 t rhashtable_rehash_alloc
-ffffffff814ee680 t nested_table_free
-ffffffff814ee6e0 t base64_encode
-ffffffff814ee890 t base64_decode
-ffffffff814ee990 t __do_once_start
-ffffffff814ee9e0 t __do_once_done
-ffffffff814eea70 t __do_once_sleepable_start
-ffffffff814eeab0 t __do_once_sleepable_done
-ffffffff814eeb40 t once_deferred
-ffffffff814eeb80 t refcount_warn_saturate
-ffffffff814eeca0 t refcount_dec_if_one
-ffffffff814eecc0 t refcount_dec_not_one
-ffffffff814eed20 t refcount_dec_and_mutex_lock
-ffffffff814eedd0 t refcount_dec_and_lock
-ffffffff814eee80 t refcount_dec_and_lock_irqsave
-ffffffff814eef30 t _copy_from_user
-ffffffff814eefa0 t _copy_to_user
-ffffffff814eefd0 t check_zeroed_user
-ffffffff814ef0a0 t errseq_set
-ffffffff814ef110 t errseq_sample
-ffffffff814ef130 t errseq_check
-ffffffff814ef160 t errseq_check_and_advance
-ffffffff814ef1a0 t __alloc_bucket_spinlocks
-ffffffff814ef250 t free_bucket_spinlocks
-ffffffff814ef260 t __genradix_ptr
-ffffffff814ef4b0 t __genradix_ptr_alloc
-ffffffff814ef630 t __genradix_iter_peek
-ffffffff814ef720 t __genradix_prealloc
-ffffffff814ef780 t __genradix_free
-ffffffff814ef7a0 t genradix_free_recurse
-ffffffff814ef800 t string_get_size
-ffffffff814efa60 t parse_int_array_user
-ffffffff814efb30 t string_unescape
-ffffffff814efd30 t string_escape_mem
-ffffffff814f0090 t kstrdup_quotable
-ffffffff814f0260 t kstrdup_quotable_cmdline
-ffffffff814f0350 t kstrdup_quotable_file
-ffffffff814f03f0 t kasprintf_strarray
-ffffffff814f04a0 t kfree_strarray
-ffffffff814f04f0 t devm_kasprintf_strarray
-ffffffff814f0620 t devm_kfree_strarray
-ffffffff814f0670 t strscpy_pad
-ffffffff814f06c0 t skip_spaces
-ffffffff814f06f0 t strim
-ffffffff814f0750 t sysfs_streq
-ffffffff814f07c0 t match_string
-ffffffff814f0830 t __sysfs_match_string
-ffffffff814f08e0 t strreplace
-ffffffff814f0910 t memcpy_and_pad
-ffffffff814f0970 t hex_to_bin
-ffffffff814f09c0 t hex2bin
-ffffffff814f0aa0 t bin2hex
-ffffffff814f0b60 t hex_dump_to_buffer
-ffffffff814f0f50 t print_hex_dump
-ffffffff814f10c0 t _parse_integer_fixup_radix
-ffffffff814f1130 t _parse_integer_limit
-ffffffff814f11e0 t _parse_integer
-ffffffff814f1200 t kstrtoull
-ffffffff814f12b0 t kstrtoll
-ffffffff814f1380 t _kstrtoul
-ffffffff814f13e0 t _kstrtol
-ffffffff814f1440 t kstrtouint
-ffffffff814f14b0 t kstrtoint
-ffffffff814f1520 t kstrtou16
-ffffffff814f1590 t kstrtos16
-ffffffff814f1600 t kstrtou8
-ffffffff814f1670 t kstrtos8
-ffffffff814f16e0 t kstrtobool
-ffffffff814f1780 t kstrtobool_from_user
-ffffffff814f1820 t kstrtoull_from_user
-ffffffff814f1910 t kstrtoll_from_user
-ffffffff814f1a00 t kstrtoul_from_user
-ffffffff814f1af0 t kstrtol_from_user
-ffffffff814f1be0 t kstrtouint_from_user
-ffffffff814f1cb0 t kstrtoint_from_user
-ffffffff814f1d80 t kstrtou16_from_user
-ffffffff814f1e40 t kstrtos16_from_user
-ffffffff814f1f00 t kstrtou8_from_user
-ffffffff814f1fb0 t kstrtos8_from_user
-ffffffff814f2060 t iter_div_u64_rem
-ffffffff814f20c0 t gcd
-ffffffff814f2150 t lcm
-ffffffff814f21a0 t lcm_not_zero
-ffffffff814f2200 t int_pow
-ffffffff814f2250 t int_sqrt
-ffffffff814f22c0 t reciprocal_value
-ffffffff814f2330 t reciprocal_value_adv
-ffffffff814f2450 t rational_best_approximation
-ffffffff814f25a0 t __crypto_memneq
-ffffffff814f2640 t __crypto_xor
-ffffffff814f2750 t chacha_block_generic
-ffffffff814f28a0 t chacha_permute
-ffffffff814f2b10 t hchacha_block_generic
-ffffffff814f2bd0 t chacha_crypt_generic
-ffffffff814f2d20 t aes_expandkey
-ffffffff814f32c0 t aes_encrypt
-ffffffff814f38e0 t aes_decrypt
-ffffffff814f4150 t blake2s_update
-ffffffff814f4230 t blake2s_final
-ffffffff814f4320 t blake2s_compress
-ffffffff814f4320 t blake2s_compress_generic
-ffffffff814f58c0 t des_expand_key
-ffffffff814f58f0 t des_ekey
-ffffffff814f6220 t des_encrypt
-ffffffff814f6460 t des_decrypt
-ffffffff814f66a0 t des3_ede_expand_key
-ffffffff814f7010 t des3_ede_encrypt
-ffffffff814f7510 t des3_ede_decrypt
-ffffffff814f79f0 t poly1305_core_setkey
-ffffffff814f7a60 t poly1305_core_blocks
-ffffffff814f7c20 t poly1305_core_emit
-ffffffff814f7d90 t poly1305_init_generic
-ffffffff814f7e00 t poly1305_update_generic
-ffffffff814f7ee0 t poly1305_final_generic
-ffffffff814f7f70 t sha1_transform
-ffffffff814f8260 t sha1_init
-ffffffff814f8290 t sha256_update
-ffffffff814f8b20 t sha224_update
-ffffffff814f8b30 t sha256_final
-ffffffff814f8c60 t sha224_final
-ffffffff814f8d90 t sha256
-ffffffff814f8f60 t ioread8
-ffffffff814f8fc0 t ioread16
-ffffffff814f9020 t ioread16be
-ffffffff814f9090 t ioread32
-ffffffff814f90f0 t ioread32be
-ffffffff814f9150 t ioread64_lo_hi
-ffffffff814f91c0 t ioread64_hi_lo
-ffffffff814f9230 t ioread64be_lo_hi
-ffffffff814f92b0 t ioread64be_hi_lo
-ffffffff814f9330 t iowrite8
-ffffffff814f9390 t iowrite16
-ffffffff814f93f0 t iowrite16be
-ffffffff814f9460 t iowrite32
-ffffffff814f94c0 t iowrite32be
-ffffffff814f9520 t iowrite64_lo_hi
-ffffffff814f9590 t iowrite64_hi_lo
-ffffffff814f9600 t iowrite64be_lo_hi
-ffffffff814f9670 t iowrite64be_hi_lo
-ffffffff814f96e0 t ioread8_rep
-ffffffff814f9760 t ioread16_rep
-ffffffff814f97e0 t ioread32_rep
-ffffffff814f9860 t iowrite8_rep
-ffffffff814f98e0 t iowrite16_rep
-ffffffff814f9960 t iowrite32_rep
-ffffffff814f99e0 t ioport_map
-ffffffff814f9a00 t ioport_unmap
-ffffffff814f9a10 t pci_iounmap
-ffffffff814f9a70 t pci_iomap_range
-ffffffff814f9b20 t pci_iomap_wc_range
-ffffffff814f9bb0 t pci_iomap
-ffffffff814f9c60 t pci_iomap_wc
-ffffffff814f9cf0 t __ioread32_copy
-ffffffff814f9d20 t __iowrite64_copy
-ffffffff814f9d50 t devm_ioremap_release
-ffffffff814f9d70 t devm_ioremap
-ffffffff814f9e00 t devm_ioremap_uc
-ffffffff814f9e90 t devm_ioremap_wc
-ffffffff814f9f20 t devm_iounmap
-ffffffff814f9f60 t devm_ioremap_match
-ffffffff814f9f80 t devm_ioremap_resource
-ffffffff814f9fa0 t __devm_ioremap_resource.llvm.15511919607900228304
-ffffffff814fa180 t devm_ioremap_resource_wc
-ffffffff814fa1a0 t devm_of_iomap
-ffffffff814fa270 t devm_ioport_map
-ffffffff814fa2e0 t devm_ioport_map_release
-ffffffff814fa2f0 t devm_ioport_unmap
-ffffffff814fa320 t devm_ioport_map_match
-ffffffff814fa340 t pcim_iomap_table
-ffffffff814fa3b0 t pcim_iomap_release
-ffffffff814fa440 t pcim_iomap
-ffffffff814fa510 t pcim_iounmap
-ffffffff814fa5e0 t pcim_iomap_regions
-ffffffff814fa780 t pcim_iomap_regions_request_all
-ffffffff814fa7e0 t pcim_iounmap_regions
-ffffffff814fa950 t devm_arch_phys_wc_add
-ffffffff814fa9e0 t devm_arch_phys_ac_add_release
-ffffffff814faa00 t devm_arch_io_reserve_memtype_wc
-ffffffff814faa90 t devm_arch_io_free_memtype_wc_release
-ffffffff814faab0 t __list_add_valid
-ffffffff814fab40 t __list_del_entry_valid
-ffffffff814fabf0 t crc16
-ffffffff814fac80 t crc32_le
-ffffffff814fac80 t crc32_le_base
-ffffffff814faed0 t __crc32c_le
-ffffffff814faed0 t __crc32c_le_base
-ffffffff814fb120 t crc32_be
-ffffffff814fb120 t crc32_be_base
-ffffffff814fb370 t crc32_le_shift
-ffffffff814fb520 t __crc32c_le_shift
-ffffffff814fb6d0 t crc32c
-ffffffff814fb770 t crc32c_impl
-ffffffff814fb790 t crc8_populate_msb
-ffffffff814fba20 t crc8_populate_lsb
-ffffffff814fbcb0 t crc8
-ffffffff814fbd50 t xxh32_copy_state
-ffffffff814fbd90 t xxh64_copy_state
-ffffffff814fbdb0 t xxh32
-ffffffff814fbf70 t xxh64
-ffffffff814fc240 t xxh32_reset
-ffffffff814fc290 t xxh64_reset
-ffffffff814fc310 t xxh32_update
-ffffffff814fc4d0 t xxh32_digest
-ffffffff814fc5a0 t xxh64_update
-ffffffff814fc760 t xxh64_digest
-ffffffff814fc930 t inflate_fast
-ffffffff814fd3b0 t zlib_inflate_workspacesize
-ffffffff814fd3c0 t zlib_inflateReset
-ffffffff814fd460 t zlib_inflateInit2
-ffffffff814fd550 t zlib_inflate
-ffffffff814feca0 t zlib_adler32
-ffffffff814feec0 t zlib_inflateEnd
-ffffffff814feef0 t zlib_inflateIncomp
-ffffffff814ff040 t zlib_inflate_blob
-ffffffff814ff110 t zlib_inflate_table
-ffffffff814ffa40 t zlib_deflateInit2
-ffffffff814ffbd0 t zlib_deflateReset
-ffffffff814ffd50 t zlib_deflate
-ffffffff81500130 t flush_pending
-ffffffff815001a0 t zlib_deflateEnd
-ffffffff815001f0 t zlib_deflate_workspacesize
-ffffffff81500230 t zlib_deflate_dfltcc_enabled
-ffffffff81500240 t deflate_stored
-ffffffff81500520 t deflate_fast
-ffffffff81500900 t deflate_slow
-ffffffff81500e30 t fill_window
-ffffffff81501340 t longest_match
-ffffffff81501580 t zlib_tr_init
-ffffffff81501a30 t init_block
-ffffffff81501c50 t zlib_tr_stored_block
-ffffffff81501dc0 t zlib_tr_stored_type_only
-ffffffff81501ea0 t zlib_tr_align
-ffffffff815021a0 t zlib_tr_flush_block
-ffffffff81502af0 t build_tree
-ffffffff81503400 t compress_block
-ffffffff81503860 t zlib_tr_tally
-ffffffff815039f0 t gen_codes
-ffffffff81503b90 t send_tree
-ffffffff81504120 t free_rs
-ffffffff815041c0 t init_rs_gfp
-ffffffff815041f0 t init_rs_internal.llvm.1379988270135028458
-ffffffff81504720 t init_rs_non_canonical
-ffffffff81504750 t decode_rs8
-ffffffff815057a0 t lzo1x_1_compress
-ffffffff815057c0 t lzogeneric1x_1_compress.llvm.6586458707801357448
-ffffffff81505ac0 t lzorle1x_1_compress
-ffffffff81505ae0 t lzo1x_1_do_compress
-ffffffff81506100 t lzo1x_decompress_safe
-ffffffff81506880 t LZ4_compress_fast
-ffffffff815068b0 t LZ4_compress_fast_extState.llvm.4566516768546391060
-ffffffff81507d60 t LZ4_compress_default
-ffffffff81507d90 t LZ4_compress_destSize
-ffffffff81507e40 t LZ4_resetStream
-ffffffff81507e60 t LZ4_loadDict
-ffffffff81507f50 t LZ4_saveDict
-ffffffff81507fb0 t LZ4_compress_fast_continue
-ffffffff81509c30 t LZ4_compress_destSize_generic
-ffffffff8150a390 t LZ4_decompress_safe
-ffffffff8150a6f0 t LZ4_decompress_safe_partial
-ffffffff8150ab80 t LZ4_decompress_fast
-ffffffff8150ae30 t LZ4_setStreamDecode
-ffffffff8150ae60 t LZ4_decompress_safe_continue
-ffffffff8150b490 t LZ4_decompress_safe_withPrefix64k
-ffffffff8150b7e0 t LZ4_decompress_safe_withSmallPrefix
-ffffffff8150bb40 t LZ4_decompress_safe_forceExtDict
-ffffffff8150c0a0 t LZ4_decompress_fast_continue
-ffffffff8150c590 t LZ4_decompress_fast_extDict
-ffffffff8150c9d0 t LZ4_decompress_safe_usingDict
-ffffffff8150ca30 t LZ4_decompress_fast_usingDict
-ffffffff8150ca60 t zstd_min_clevel
-ffffffff8150ca70 t zstd_max_clevel
-ffffffff8150ca80 t zstd_compress_bound
-ffffffff8150ca90 t zstd_get_params
-ffffffff8150cab0 t zstd_cctx_workspace_bound
-ffffffff8150cb20 t zstd_init_cctx
-ffffffff8150cb40 t zstd_compress_cctx
-ffffffff8150cba0 t zstd_cctx_init
-ffffffff8150ccf0 t zstd_cstream_workspace_bound
-ffffffff8150cd60 t zstd_init_cstream
-ffffffff8150cdd0 t zstd_reset_cstream
-ffffffff8150cde0 t zstd_compress_stream
-ffffffff8150cdf0 t zstd_flush_stream
-ffffffff8150ce00 t zstd_end_stream
-ffffffff8150ce10 t FSE_buildCTable_wksp
-ffffffff8150d120 t FSE_NCountWriteBound
-ffffffff8150d150 t FSE_writeNCount
-ffffffff8150d410 t FSE_createCTable
-ffffffff8150d420 t FSE_freeCTable
-ffffffff8150d430 t FSE_optimalTableLog_internal
-ffffffff8150d490 t FSE_optimalTableLog
-ffffffff8150d4f0 t FSE_normalizeCount
-ffffffff8150d980 t FSE_buildCTable_raw
-ffffffff8150daf0 t FSE_buildCTable_rle
-ffffffff8150db20 t FSE_compress_usingCTable
-ffffffff8150e0a0 t FSE_compressBound
-ffffffff8150e0c0 t HIST_isError
-ffffffff8150e0e0 t HIST_count_simple
-ffffffff8150e250 t HIST_countFast_wksp
-ffffffff8150e400 t HIST_count_parallel_wksp
-ffffffff8150e6c0 t HIST_count_wksp
-ffffffff8150e880 t HUF_optimalTableLog
-ffffffff8150e8a0 t HUF_writeCTable_wksp
-ffffffff8150ec00 t HUF_writeCTable
-ffffffff8150eca0 t HUF_readCTable
-ffffffff8150f0a0 t HUF_getNbBits
-ffffffff8150f0c0 t HUF_buildCTable_wksp
-ffffffff8150fbb0 t HUF_estimateCompressedSize
-ffffffff8150fc60 t HUF_validateCTable
-ffffffff8150fd00 t HUF_compressBound
-ffffffff8150fd20 t HUF_compress1X_usingCTable
-ffffffff8150fd40 t HUF_compress1X_usingCTable_internal.llvm.8366643793515419435
-ffffffff8150ff10 t HUF_compress4X_usingCTable
-ffffffff8150ff30 t HUF_compress4X_usingCTable_internal.llvm.8366643793515419435
-ffffffff81510080 t HUF_compress1X_wksp
-ffffffff815100b0 t HUF_compress_internal.llvm.8366643793515419435
-ffffffff81510580 t HUF_compress1X_repeat
-ffffffff815105b0 t HUF_compress4X_wksp
-ffffffff815105e0 t HUF_compress4X_repeat
-ffffffff81510610 t HUF_compress1X_usingCTable_internal_bmi2
-ffffffff815107d0 t HUF_compressCTable_internal
-ffffffff81510840 t ZSTD_compressBound
-ffffffff81510880 t ZSTD_createCCtx
-ffffffff81510900 t ZSTD_createCCtx_advanced
-ffffffff815109d0 t ZSTD_initStaticCCtx
-ffffffff81510b70 t ZSTD_freeCCtx
-ffffffff81510e30 t ZSTD_sizeof_CCtx
-ffffffff81510eb0 t ZSTD_sizeof_CStream
-ffffffff81510f30 t ZSTD_getSeqStore
-ffffffff81510f50 t ZSTD_createCCtxParams
-ffffffff81510fc0 t ZSTD_freeCCtxParams
-ffffffff81511000 t ZSTD_CCtxParams_reset
-ffffffff81511050 t ZSTD_CCtxParams_init
-ffffffff815110a0 t ZSTD_CCtxParams_init_advanced
-ffffffff81511170 t ZSTD_checkCParams
-ffffffff815111e0 t ZSTD_cParam_getBounds
-ffffffff815114b0 t ZSTD_minCLevel
-ffffffff815114c0 t ZSTD_maxCLevel
-ffffffff815114d0 t ZSTD_CCtx_setParameter
-ffffffff81511590 t ZSTD_CCtxParams_setParameter
-ffffffff81511a70 t ZSTD_CCtx_getParameter
-ffffffff81511a90 t ZSTD_CCtxParams_getParameter
-ffffffff81511cf0 t ZSTD_CCtx_setParametersUsingCCtxParams
-ffffffff81511d30 t ZSTD_CCtx_setPledgedSrcSize
-ffffffff81511d60 t ZSTD_CCtx_loadDictionary_advanced
-ffffffff81512000 t ZSTD_CCtx_loadDictionary_byReference
-ffffffff81512020 t ZSTD_CCtx_loadDictionary
-ffffffff81512040 t ZSTD_CCtx_refCDict
-ffffffff81512240 t ZSTD_CCtx_refThreadPool
-ffffffff81512270 t ZSTD_CCtx_refPrefix
-ffffffff81512290 t ZSTD_CCtx_refPrefix_advanced
-ffffffff815124b0 t ZSTD_CCtx_reset
-ffffffff81512710 t ZSTD_cycleLog
-ffffffff81512730 t ZSTD_adjustCParams
-ffffffff81512900 t ZSTD_getCParamsFromCCtxParams
-ffffffff81512af0 t ZSTD_getCParams_internal
-ffffffff81512cd0 t ZSTD_estimateCCtxSize_usingCCtxParams
-ffffffff81512ec0 t ZSTD_estimateCCtxSize_usingCCtxParams_internal
-ffffffff815130b0 t ZSTD_estimateCCtxSize_usingCParams
-ffffffff81513190 t ZSTD_estimateCCtxSize
-ffffffff81513560 t ZSTD_estimateCStreamSize_usingCCtxParams
-ffffffff81513660 t ZSTD_estimateCStreamSize_usingCParams
-ffffffff81513960 t ZSTD_estimateCStreamSize
-ffffffff81513a90 t ZSTD_getFrameProgression
-ffffffff81513af0 t ZSTD_toFlushNow
-ffffffff81513b00 t ZSTD_reset_compressedBlockState
-ffffffff81513b50 t ZSTD_invalidateRepCodes
-ffffffff81513b90 t ZSTD_copyCCtx
-ffffffff81513e00 t ZSTD_seqToCodes
-ffffffff81513ee0 t ZSTD_selectBlockCompressor
-ffffffff81513f10 t ZSTD_resetSeqStore
-ffffffff81513f40 t ZSTD_generateSequences
-ffffffff815140a0 t ZSTD_compress2
-ffffffff81514160 t ZSTD_mergeBlockDelimiters
-ffffffff815141c0 t ZSTD_writeSkippableFrame
-ffffffff81514220 t ZSTD_writeLastEmptyBlock
-ffffffff81514250 t ZSTD_referenceExternalSequences
-ffffffff815142b0 t ZSTD_compressContinue
-ffffffff815142d0 t ZSTD_compressContinue_internal
-ffffffff81514980 t ZSTD_getBlockSize
-ffffffff815149b0 t ZSTD_compressBlock
-ffffffff81514a00 t ZSTD_loadCEntropy
-ffffffff81515080 t ZSTD_compressBegin_advanced_internal
-ffffffff81515110 t ZSTD_compressBegin_internal
-ffffffff81515640 t ZSTD_compressBegin_advanced
-ffffffff81515890 t ZSTD_compressBegin_usingDict
-ffffffff81515b60 t ZSTD_compressBegin
-ffffffff81515cd0 t ZSTD_CCtx_trace
-ffffffff81515ce0 t ZSTD_compressEnd
-ffffffff81515e70 t ZSTD_compress_advanced
-ffffffff81515fb0 t ZSTD_compress_advanced_internal
-ffffffff81516150 t ZSTD_compress_usingDict
-ffffffff815162e0 t ZSTD_compressCCtx
-ffffffff81516530 t ZSTD_compress
-ffffffff81516600 t ZSTD_estimateCDictSize_advanced
-ffffffff81516650 t ZSTD_estimateCDictSize
-ffffffff81516700 t ZSTD_sizeof_CDict
-ffffffff81516740 t ZSTD_createCDict_advanced
-ffffffff81516830 t ZSTD_createCDict_advanced2
-ffffffff81516d40 t ZSTD_initCDict_internal
-ffffffff81516f00 t ZSTD_freeCDict
-ffffffff81517050 t ZSTD_createCDict
-ffffffff81517190 t ZSTD_createCDict_byReference
-ffffffff815172d0 t ZSTD_initStaticCDict
-ffffffff81517460 t ZSTD_getCParamsFromCDict
-ffffffff815174a0 t ZSTD_getDictID_fromCDict
-ffffffff815174c0 t ZSTD_compressBegin_usingCDict_advanced
-ffffffff815176c0 t ZSTD_getCParams
-ffffffff815176f0 t ZSTD_compressBegin_usingCDict
-ffffffff815177d0 t ZSTD_compress_usingCDict_advanced
-ffffffff81517830 t ZSTD_compress_usingCDict
-ffffffff81517890 t ZSTD_createCStream
-ffffffff81517910 t ZSTD_createCStream_advanced
-ffffffff815179e0 t ZSTD_initStaticCStream
-ffffffff815179f0 t ZSTD_freeCStream
-ffffffff81517a00 t ZSTD_CStreamInSize
-ffffffff81517a10 t ZSTD_CStreamOutSize
-ffffffff81517a20 t ZSTD_resetCStream
-ffffffff81517a50 t ZSTD_initCStream_internal
-ffffffff81517c90 t ZSTD_initCStream_usingCDict_advanced
-ffffffff81517ea0 t ZSTD_initCStream_usingCDict
-ffffffff815180a0 t ZSTD_initCStream_advanced
-ffffffff81518180 t ZSTD_initCStream_usingDict
-ffffffff815181e0 t ZSTD_initCStream_srcSize
-ffffffff81518440 t ZSTD_initCStream
-ffffffff81518680 t ZSTD_compressStream
-ffffffff815186c0 t ZSTD_compressStream2
-ffffffff81518cc0 t ZSTD_CCtx_init_compressStream2
-ffffffff81518f90 t ZSTD_compressStream2_simpleArgs
-ffffffff81519010 t ZSTD_compressSequences
-ffffffff815194b0 t ZSTD_writeFrameHeader
-ffffffff81519630 t ZSTD_flushStream
-ffffffff81519690 t ZSTD_endStream
-ffffffff81519730 t ZSTD_getParams
-ffffffff815197e0 t ZSTD_resetCCtx_internal
-ffffffff8151a270 t ZSTD_reset_matchState
-ffffffff8151a750 t ZSTD_overflowCorrectIfNeeded
-ffffffff8151a920 t ZSTD_compressBlock_internal
-ffffffff8151aaa0 t ZSTD_reduceTable
-ffffffff8151ac40 t ZSTD_buildSeqStore
-ffffffff8151aef0 t ZSTD_isRLE
-ffffffff8151b040 t ZSTD_copyBlockSequences
-ffffffff8151b2c0 t ZSTD_entropyCompressSequences
-ffffffff8151b9a0 t ZSTD_compress_insertDictionary
-ffffffff8151bad0 t ZSTD_loadDictionaryContent
-ffffffff8151bd60 t ZSTD_copySequencesToSeqStoreExplicitBlockDelim
-ffffffff8151c2e0 t ZSTD_copySequencesToSeqStoreNoBlockDelim
-ffffffff8151c940 t ZSTD_noCompressLiterals
-ffffffff8151c9c0 t ZSTD_compressRleLiteralsBlock
-ffffffff8151ca20 t ZSTD_compressLiterals
-ffffffff8151ce70 t ZSTD_fseBitCost
-ffffffff8151cf50 t ZSTD_crossEntropyCost
-ffffffff8151cfc0 t ZSTD_selectEncodingType
-ffffffff8151d370 t ZSTD_buildCTable
-ffffffff8151d500 t ZSTD_encodeSequences
-ffffffff8151dbf0 t ZSTD_encodeSequences_bmi2
-ffffffff8151e230 t ZSTD_compressSuperBlock
-ffffffff8151f920 t ZSTD_fillDoubleHashTable
-ffffffff8151fab0 t ZSTD_compressBlock_doubleFast
-ffffffff81523660 t ZSTD_compressBlock_doubleFast_dictMatchState
-ffffffff81527b60 t ZSTD_compressBlock_doubleFast_extDict
-ffffffff81529b50 t ZSTD_count_2segments
-ffffffff81529cf0 t ZSTD_count_2segments
-ffffffff81529e90 t ZSTD_count_2segments
-ffffffff8152a030 t ZSTD_count_2segments
-ffffffff8152a1d0 t ZSTD_fillHashTable
-ffffffff8152a3d0 t ZSTD_compressBlock_fast
-ffffffff8152c690 t ZSTD_compressBlock_fast_dictMatchState
-ffffffff8152fbc0 t ZSTD_compressBlock_fast_extDict
-ffffffff81531080 t ZSTD_insertAndFindFirstIndex
-ffffffff815311f0 t ZSTD_dedicatedDictSearch_lazy_loadDictionary
-ffffffff81531680 t ZSTD_compressBlock_btlazy2
-ffffffff81532180 t ZSTD_compressBlock_lazy2
-ffffffff81534a80 t ZSTD_compressBlock_lazy
-ffffffff81536880 t ZSTD_compressBlock_greedy
-ffffffff815379e0 t ZSTD_compressBlock_btlazy2_dictMatchState
-ffffffff81538280 t ZSTD_compressBlock_lazy2_dictMatchState
-ffffffff81538b20 t ZSTD_compressBlock_lazy_dictMatchState
-ffffffff815393a0 t ZSTD_compressBlock_greedy_dictMatchState
-ffffffff815399c0 t ZSTD_compressBlock_lazy2_dedicatedDictSearch
-ffffffff8153a260 t ZSTD_compressBlock_lazy_dedicatedDictSearch
-ffffffff8153aae0 t ZSTD_compressBlock_greedy_dedicatedDictSearch
-ffffffff8153b100 t ZSTD_compressBlock_greedy_extDict
-ffffffff8153c3c0 t ZSTD_compressBlock_lazy_extDict
-ffffffff8153e5a0 t ZSTD_compressBlock_lazy2_extDict
-ffffffff81541360 t ZSTD_compressBlock_btlazy2_extDict
-ffffffff81541cc0 t ZSTD_BtFindBestMatch_selectMLS
-ffffffff81543650 t ZSTD_HcFindBestMatch_dictMatchState_selectMLS
-ffffffff815443a0 t ZSTD_BtFindBestMatch_dictMatchState_selectMLS
-ffffffff815463b0 t ZSTD_HcFindBestMatch_dedicatedDictSearch_selectMLS
-ffffffff815473f0 t ZSTD_BtFindBestMatch_extDict_selectMLS
-ffffffff81549160 t ZSTD_ldm_adjustParameters
-ffffffff815491c0 t ZSTD_ldm_getTableSize
-ffffffff81549200 t ZSTD_ldm_getMaxNbSeq
-ffffffff81549240 t ZSTD_ldm_fillHashTable
-ffffffff815493f0 t ZSTD_ldm_gear_feed
-ffffffff81549540 t ZSTD_ldm_generateSequences
-ffffffff8154a2c0 t ZSTD_ldm_skipSequences
-ffffffff8154a370 t ZSTD_ldm_skipRawSeqStoreBytes
-ffffffff8154a3e0 t ZSTD_ldm_blockCompress
-ffffffff8154aa20 t ZSTD_updateTree
-ffffffff8154aa40 t ZSTD_updateTree_internal.llvm.8862287173213563988
-ffffffff8154afe0 t ZSTD_compressBlock_btopt
-ffffffff8154b000 t ZSTD_compressBlock_opt_generic
-ffffffff8154cd30 t ZSTD_compressBlock_btultra
-ffffffff8154cd50 t ZSTD_compressBlock_btultra2
-ffffffff8154cfa0 t ZSTD_compressBlock_btopt_dictMatchState
-ffffffff8154cfc0 t ZSTD_compressBlock_btultra_dictMatchState
-ffffffff8154cfe0 t ZSTD_compressBlock_btopt_extDict
-ffffffff8154d000 t ZSTD_compressBlock_btultra_extDict
-ffffffff8154d020 t ZSTD_opt_getNextMatchAndUpdateSeqStore
-ffffffff8154d1b0 t ZSTD_optLdm_processMatchCandidate
-ffffffff8154d2b0 t ZSTD_getMatchPrice
-ffffffff8154d400 t ZSTD_setBasePrices
-ffffffff8154d4d0 t ZSTD_insertBtAndGetAllMatches
-ffffffff8154e360 t zstd_is_error
-ffffffff8154e380 t zstd_get_error_code
-ffffffff8154e3a0 t zstd_get_error_name
-ffffffff8154e3b0 t zstd_dctx_workspace_bound
-ffffffff8154e3c0 t zstd_init_dctx
-ffffffff8154e3e0 t zstd_decompress_dctx
-ffffffff8154e3f0 t zstd_dstream_workspace_bound
-ffffffff8154e420 t zstd_init_dstream
-ffffffff8154e450 t zstd_reset_dstream
-ffffffff8154e460 t zstd_decompress_stream
-ffffffff8154e470 t zstd_find_frame_compressed_size
-ffffffff8154e480 t zstd_get_frame_header
-ffffffff8154e4a0 t HUF_readDTableX1_wksp
-ffffffff8154e4c0 t HUF_readDTableX1_wksp_bmi2
-ffffffff8154eaf0 t HUF_decompress1X1_usingDTable
-ffffffff8154eb20 t HUF_decompress1X1_usingDTable_internal
-ffffffff8154ee50 t HUF_decompress1X1_DCtx_wksp
-ffffffff8154eed0 t HUF_decompress4X1_usingDTable
-ffffffff8154ef00 t HUF_decompress4X1_usingDTable_internal
-ffffffff815501f0 t HUF_decompress4X1_DCtx_wksp
-ffffffff81550270 t HUF_readDTableX2_wksp
-ffffffff81550c90 t HUF_decompress1X2_usingDTable
-ffffffff81550cc0 t HUF_decompress1X2_usingDTable_internal
-ffffffff81551090 t HUF_decompress1X2_DCtx_wksp
-ffffffff81551110 t HUF_decompress4X2_usingDTable
-ffffffff81551140 t HUF_decompress4X2_usingDTable_internal
-ffffffff81552720 t HUF_decompress4X2_DCtx_wksp
-ffffffff815527a0 t HUF_decompress1X_usingDTable
-ffffffff815527d0 t HUF_decompress4X_usingDTable
-ffffffff81552800 t HUF_selectDecoder
-ffffffff815528b0 t HUF_decompress4X_hufOnly_wksp
-ffffffff81552a30 t HUF_decompress1X_DCtx_wksp
-ffffffff81552bf0 t HUF_decompress1X_usingDTable_bmi2
-ffffffff81552c20 t HUF_decompress1X1_DCtx_wksp_bmi2
-ffffffff81552ca0 t HUF_decompress4X_usingDTable_bmi2
-ffffffff81552cd0 t HUF_decompress4X_hufOnly_wksp_bmi2
-ffffffff81552e50 t HUF_decompress1X1_usingDTable_internal_bmi2
-ffffffff81553160 t BIT_initDStream
-ffffffff815532c0 t HUF_decompress4X1_usingDTable_internal_bmi2
-ffffffff81554480 t HUF_decompress1X2_usingDTable_internal_bmi2
-ffffffff81554840 t HUF_decompress4X2_usingDTable_internal_bmi2
-ffffffff81555d60 t ZSTD_DDict_dictContent
-ffffffff81555d70 t ZSTD_DDict_dictSize
-ffffffff81555d80 t ZSTD_copyDDictParameters
-ffffffff81555e40 t ZSTD_createDDict_advanced
-ffffffff81556010 t ZSTD_freeDDict
-ffffffff815560b0 t ZSTD_createDDict
-ffffffff81556120 t ZSTD_createDDict_byReference
-ffffffff81556190 t ZSTD_initStaticDDict
-ffffffff81556280 t ZSTD_estimateDDictSize
-ffffffff815562a0 t ZSTD_sizeof_DDict
-ffffffff815562e0 t ZSTD_getDictID_fromDDict
-ffffffff81556310 t ZSTD_sizeof_DCtx
-ffffffff81556350 t ZSTD_estimateDCtxSize
-ffffffff81556360 t ZSTD_initStaticDCtx
-ffffffff81556480 t ZSTD_createDCtx_advanced
-ffffffff815565e0 t ZSTD_createDCtx
-ffffffff81556720 t ZSTD_freeDCtx
-ffffffff81556880 t ZSTD_copyDCtx
-ffffffff815568a0 t ZSTD_isFrame
-ffffffff815568d0 t ZSTD_frameHeaderSize
-ffffffff81556930 t ZSTD_getFrameHeader_advanced
-ffffffff81556b50 t ZSTD_getFrameHeader
-ffffffff81556b70 t ZSTD_getFrameContentSize
-ffffffff81556c00 t ZSTD_findDecompressedSize
-ffffffff81556d60 t ZSTD_findFrameCompressedSize
-ffffffff81556d70 t ZSTD_getDecompressedSize
-ffffffff81556e10 t ZSTD_findFrameSizeInfo.llvm.12252506871799799767
-ffffffff81556fb0 t ZSTD_decompressBound
-ffffffff81557010 t ZSTD_insertBlock
-ffffffff81557040 t ZSTD_decompress_usingDict
-ffffffff81557060 t ZSTD_decompressMultiFrame
-ffffffff81557820 t ZSTD_decompressDCtx
-ffffffff815578c0 t ZSTD_decompress_usingDDict
-ffffffff815578e0 t ZSTD_getDDict
-ffffffff81557950 t ZSTD_decompress
-ffffffff81557b30 t ZSTD_nextSrcSizeToDecompress
-ffffffff81557b50 t ZSTD_nextInputType
-ffffffff81557b80 t ZSTD_decompressContinue
-ffffffff81558160 t ZSTD_decodeFrameHeader
-ffffffff81558310 t ZSTD_loadDEntropy
-ffffffff81558700 t ZSTD_decompressBegin
-ffffffff815587e0 t ZSTD_decompressBegin_usingDict
-ffffffff81558970 t ZSTD_decompressBegin_usingDDict
-ffffffff81558a70 t ZSTD_getDictID_fromDict
-ffffffff81558a90 t ZSTD_getDictID_fromFrame
-ffffffff81558b10 t ZSTD_createDStream
-ffffffff81558c50 t ZSTD_createDStream_advanced
-ffffffff81558dc0 t ZSTD_initStaticDStream
-ffffffff81558ee0 t ZSTD_freeDStream
-ffffffff81558ef0 t ZSTD_DStreamInSize
-ffffffff81558f00 t ZSTD_DStreamOutSize
-ffffffff81558f10 t ZSTD_DCtx_loadDictionary_advanced
-ffffffff81558ff0 t ZSTD_DCtx_loadDictionary_byReference
-ffffffff815590c0 t ZSTD_DCtx_loadDictionary
-ffffffff81559190 t ZSTD_DCtx_refPrefix_advanced
-ffffffff81559260 t ZSTD_DCtx_refPrefix
-ffffffff81559330 t ZSTD_initDStream_usingDict
-ffffffff81559400 t ZSTD_DCtx_reset
-ffffffff815594a0 t ZSTD_initDStream
-ffffffff81559510 t ZSTD_initDStream_usingDDict
-ffffffff81559560 t ZSTD_DCtx_refDDict
-ffffffff81559920 t ZSTD_resetDStream
-ffffffff81559960 t ZSTD_DCtx_setMaxWindowSize
-ffffffff815599b0 t ZSTD_dParam_getBounds
-ffffffff81559a10 t ZSTD_DCtx_setFormat
-ffffffff81559a50 t ZSTD_DCtx_setParameter
-ffffffff81559b40 t ZSTD_DCtx_getParameter
-ffffffff81559bb0 t ZSTD_sizeof_DStream
-ffffffff81559bf0 t ZSTD_decodingBufferSize_min
-ffffffff81559c20 t ZSTD_estimateDStreamSize
-ffffffff81559c50 t ZSTD_estimateDStreamSize_fromFrame
-ffffffff81559d10 t ZSTD_decompressStream
-ffffffff8155a9d0 t ZSTD_decompressStream_simpleArgs
-ffffffff8155aa50 t ZSTD_getcBlockSize
-ffffffff8155aab0 t ZSTD_decodeLiteralsBlock
-ffffffff8155ae50 t ZSTD_buildFSETable
-ffffffff8155b1b0 t ZSTD_buildFSETable_body_bmi2
-ffffffff8155b500 t ZSTD_decodeSeqHeaders
-ffffffff8155b740 t ZSTD_buildSeqTable
-ffffffff8155b980 t ZSTD_decompressBlock_internal
-ffffffff8155d300 t ZSTD_decompressSequences
-ffffffff8155dfd0 t ZSTD_checkContinuity
-ffffffff8155e020 t ZSTD_decompressBlock
-ffffffff8155e090 t ZSTD_decompressSequencesLong_bmi2
-ffffffff8155f760 t BIT_reloadDStream
-ffffffff8155f7d0 t ZSTD_execSequenceEnd
-ffffffff8155fd20 t ZSTD_decompressSequences_bmi2
-ffffffff81560990 t FSE_versionNumber
-ffffffff815609a0 t FSE_isError
-ffffffff815609c0 t FSE_getErrorName
-ffffffff815609e0 t HUF_isError
-ffffffff81560a00 t HUF_getErrorName
-ffffffff81560a20 t FSE_readNCount_bmi2
-ffffffff81560d20 t FSE_readNCount_body_bmi2
-ffffffff81561030 t FSE_readNCount
-ffffffff81561050 t HUF_readStats
-ffffffff81561100 t HUF_readStats_wksp
-ffffffff81561340 t HUF_readStats_body_bmi2
-ffffffff81561550 t ERR_getErrorString
-ffffffff81561820 t FSE_createDTable
-ffffffff81561830 t FSE_freeDTable
-ffffffff81561840 t FSE_buildDTable_wksp
-ffffffff81561850 t FSE_buildDTable_internal
-ffffffff81561b50 t FSE_buildDTable_rle
-ffffffff81561b80 t FSE_buildDTable_raw
-ffffffff81561bd0 t FSE_decompress_usingDTable
-ffffffff81562610 t FSE_decompress_wksp
-ffffffff81562630 t FSE_decompress_wksp_bmi2
-ffffffff815631e0 t FSE_decompress_wksp_body_bmi2
-ffffffff81563d80 t ZSTD_versionNumber
-ffffffff81563d90 t ZSTD_versionString
-ffffffff81563db0 t ZSTD_isError
-ffffffff81563dd0 t ZSTD_getErrorName
-ffffffff81563df0 t ZSTD_getErrorCode
-ffffffff81563e10 t ZSTD_getErrorString
-ffffffff81563e20 t ZSTD_customMalloc
-ffffffff81563e50 t ZSTD_customCalloc
-ffffffff81563ea0 t ZSTD_customFree
-ffffffff81563ed0 t xz_dec_run
-ffffffff81564850 t xz_dec_reset
-ffffffff81564900 t xz_dec_init
-ffffffff81564a30 t xz_dec_end
-ffffffff81564a70 t fill_temp
-ffffffff81564af0 t crc32_validate
-ffffffff81564b60 t dec_index
-ffffffff81564cd0 t index_update
-ffffffff81564d10 t dec_stream_footer
-ffffffff81564d90 t xz_dec_lzma2_run
-ffffffff81565570 t xz_dec_lzma2_create
-ffffffff815655f0 t xz_dec_lzma2_reset
-ffffffff81565690 t xz_dec_lzma2_end
-ffffffff815656c0 t lzma_main
-ffffffff815663f0 t lzma_len
-ffffffff815665f0 t xz_dec_bcj_run
-ffffffff81566880 t bcj_apply
-ffffffff81566e20 t xz_dec_bcj_create
-ffffffff81566e50 t xz_dec_bcj_reset
-ffffffff81566e90 t percpu_counter_set
-ffffffff81566f10 t percpu_counter_add_batch
-ffffffff81566fc0 t percpu_counter_sync
-ffffffff81567020 t __percpu_counter_sum
-ffffffff815670a0 t __percpu_counter_init
-ffffffff81567150 t percpu_counter_destroy
-ffffffff815671d0 t __percpu_counter_compare
-ffffffff815672a0 t compute_batch_value
-ffffffff815672d0 t percpu_counter_cpu_dead
-ffffffff81567380 t task_current_syscall
-ffffffff81567410 t collect_syscall
-ffffffff81567570 t param_set_dyndbg_classes
-ffffffff81567a80 t ddebug_apply_class_bitmap
-ffffffff81567c80 t param_get_dyndbg_classes
-ffffffff81567cf0 t __dynamic_pr_debug
-ffffffff81567e30 t __dynamic_dev_dbg
-ffffffff81567fb0 t __dynamic_netdev_dbg
-ffffffff81568270 t ddebug_add_module
-ffffffff81568280 t __ddebug_add_module
-ffffffff81568510 t ddebug_dyndbg_module_param_cb
-ffffffff815685a0 t ddebug_remove_module
-ffffffff81568660 t ddebug_exec_queries
-ffffffff81569500 t parse_linerange
-ffffffff81569640 t __dynamic_emit_prefix
-ffffffff815697e0 t ddebug_dyndbg_boot_param_cb
-ffffffff81569860 t ddebug_proc_write
-ffffffff81569910 t ddebug_proc_open
-ffffffff81569940 t ddebug_proc_start
-ffffffff815699f0 t ddebug_proc_stop
-ffffffff81569a10 t ddebug_proc_next
-ffffffff81569aa0 t ddebug_proc_show
-ffffffff81569c90 t errname
-ffffffff81569d00 t nla_get_range_unsigned
-ffffffff81569dc0 t nla_get_range_signed
-ffffffff81569e50 t __nla_validate
-ffffffff81569e70 t __nla_validate_parse.llvm.791157543404103634
-ffffffff8156ace0 t nla_policy_len
-ffffffff8156ad70 t __nla_parse
-ffffffff8156adb0 t nla_find
-ffffffff8156ae00 t nla_strscpy
-ffffffff8156ae90 t nla_strdup
-ffffffff8156af00 t nla_memcpy
-ffffffff8156af60 t nla_memcmp
-ffffffff8156af90 t nla_strcmp
-ffffffff8156b000 t __nla_reserve
-ffffffff8156b060 t __nla_reserve_64bit
-ffffffff8156b0c0 t __nla_reserve_nohdr
-ffffffff8156b100 t nla_reserve
-ffffffff8156b180 t nla_reserve_64bit
-ffffffff8156b200 t nla_reserve_nohdr
-ffffffff8156b250 t __nla_put
-ffffffff8156b2c0 t __nla_put_64bit
-ffffffff8156b330 t __nla_put_nohdr
-ffffffff8156b380 t nla_put
-ffffffff8156b420 t nla_put_64bit
-ffffffff8156b4c0 t nla_put_nohdr
-ffffffff8156b540 t nla_append
-ffffffff8156b5a0 t alloc_cpu_rmap
-ffffffff8156b650 t cpu_rmap_put
-ffffffff8156b690 t cpu_rmap_add
-ffffffff8156b6c0 t cpu_rmap_update
-ffffffff8156b950 t free_irq_cpu_rmap
-ffffffff8156b9c0 t irq_cpu_rmap_add
-ffffffff8156bac0 t irq_cpu_rmap_notify
-ffffffff8156bae0 t irq_cpu_rmap_release
-ffffffff8156bb30 t dql_completed
-ffffffff8156bc80 t dql_reset
-ffffffff8156bcd0 t dql_init
-ffffffff8156bd20 t glob_match
-ffffffff8156bf30 t strncpy_from_user
-ffffffff8156c060 t strnlen_user
-ffffffff8156c1a0 t mac_pton
-ffffffff8156c3b0 t sg_free_table_chained
-ffffffff8156c3e0 t sg_pool_free
-ffffffff8156c450 t sg_alloc_table_chained
-ffffffff8156c500 t sg_pool_alloc
-ffffffff8156c570 t memregion_alloc
-ffffffff8156c590 t memregion_free
-ffffffff8156c5b0 t stack_depot_get_extra_bits
-ffffffff8156c5c0 t stack_depot_init
-ffffffff8156c6b0 t stack_depot_snprint
-ffffffff8156c740 t stack_depot_fetch
-ffffffff8156c7b0 t stack_depot_print
-ffffffff8156c820 t __stack_depot_save
-ffffffff8156ccf0 t stack_depot_save
-ffffffff8156cd10 t skip_comment
-ffffffff8156cd40 t find_font
-ffffffff8156cd70 t get_default_font
-ffffffff8156cde0 t ucs2_strnlen
-ffffffff8156ce20 t ucs2_strlen
-ffffffff8156ce60 t ucs2_strsize
-ffffffff8156cea0 t ucs2_strncmp
-ffffffff8156cf00 t ucs2_utf8size
-ffffffff8156cf60 t ucs2_as_utf8
-ffffffff8156d060 t sbitmap_init_node
-ffffffff8156d1b0 t sbitmap_resize
-ffffffff8156d220 t sbitmap_get
-ffffffff8156d430 t sbitmap_get_shallow
-ffffffff8156d640 t sbitmap_any_bit_set
-ffffffff8156d6b0 t sbitmap_weight
-ffffffff8156d7a0 t sbitmap_show
-ffffffff8156d8a0 t sbitmap_bitmap_show
-ffffffff8156dab0 t sbitmap_queue_init_node
-ffffffff8156dcb0 t sbitmap_queue_recalculate_wake_batch
-ffffffff8156dcf0 t sbitmap_queue_resize
-ffffffff8156dda0 t __sbitmap_queue_get
-ffffffff8156ddb0 t __sbitmap_queue_get_batch
-ffffffff8156dfa0 t sbitmap_queue_get_shallow
-ffffffff8156dfc0 t sbitmap_queue_min_shallow_depth
-ffffffff8156e020 t sbitmap_queue_wake_up
-ffffffff8156e0e0 t sbitmap_queue_clear_batch
-ffffffff8156e1c0 t sbitmap_queue_clear
-ffffffff8156e240 t sbitmap_queue_wake_all
-ffffffff8156e410 t sbitmap_queue_show
-ffffffff8156e6e0 t sbitmap_add_wait_queue
-ffffffff8156e710 t sbitmap_del_wait_queue
-ffffffff8156e760 t sbitmap_prepare_to_wait
-ffffffff8156e790 t sbitmap_finish_wait
-ffffffff8156e7d0 t rdmsr_on_cpu
-ffffffff8156e860 t __rdmsr_on_cpu
-ffffffff8156e8d0 t rdmsrl_on_cpu
-ffffffff8156e950 t wrmsr_on_cpu
-ffffffff8156e9d0 t __wrmsr_on_cpu
-ffffffff8156ea30 t wrmsrl_on_cpu
-ffffffff8156eaa0 t rdmsr_on_cpus
-ffffffff8156ebd0 t wrmsr_on_cpus
-ffffffff8156ecf0 t rdmsr_safe_on_cpu
-ffffffff8156ee00 t __rdmsr_safe_on_cpu
-ffffffff8156ee60 t wrmsr_safe_on_cpu
-ffffffff8156eee0 t __wrmsr_safe_on_cpu
-ffffffff8156ef30 t wrmsrl_safe_on_cpu
-ffffffff8156efa0 t rdmsrl_safe_on_cpu
-ffffffff8156f0a0 t rdmsr_safe_regs_on_cpu
-ffffffff8156f100 t __rdmsr_safe_regs_on_cpu
-ffffffff8156f120 t wrmsr_safe_regs_on_cpu
-ffffffff8156f180 t __wrmsr_safe_regs_on_cpu
-ffffffff8156f1a0 t wbinvd_on_cpu
-ffffffff8156f1c0 t __wbinvd.llvm.8397116075338899991
-ffffffff8156f1d0 t wbinvd_on_all_cpus
-ffffffff8156f200 t __traceiter_read_msr
-ffffffff8156f260 t __traceiter_write_msr
-ffffffff8156f2c0 t __traceiter_rdpmc
-ffffffff8156f320 t trace_event_raw_event_msr_trace_class
-ffffffff8156f3f0 t perf_trace_msr_trace_class
-ffffffff8156f500 t msrs_alloc
-ffffffff8156f550 t msrs_free
-ffffffff8156f560 t msr_set_bit
-ffffffff8156f580 t __flip_bit.llvm.8480862335402734323
-ffffffff8156f6c0 t msr_clear_bit
-ffffffff8156f6e0 t do_trace_write_msr
-ffffffff8156f740 t do_trace_read_msr
-ffffffff8156f7a0 t do_trace_rdpmc
-ffffffff8156f800 t trace_raw_output_msr_trace_class
-ffffffff8156f870 t memcpy_fromio
-ffffffff8156f8c0 t memcpy_toio
-ffffffff8156f910 t memset_io
-ffffffff8156f920 t platform_irqchip_probe
-ffffffff8156fa20 t simple_pm_bus_probe
-ffffffff8156fac0 t simple_pm_bus_remove
-ffffffff8156fb00 t __traceiter_gpio_direction
-ffffffff8156fb60 t __traceiter_gpio_value
-ffffffff8156fbc0 t trace_event_raw_event_gpio_direction
-ffffffff8156fc90 t perf_trace_gpio_direction
-ffffffff8156fda0 t trace_event_raw_event_gpio_value
-ffffffff8156fe70 t perf_trace_gpio_value
-ffffffff8156ff80 t gpio_to_desc
-ffffffff81570020 t gpiochip_get_desc
-ffffffff81570060 t desc_to_gpio
-ffffffff81570090 t gpiod_to_chip
-ffffffff815700c0 t gpiod_get_direction
-ffffffff81570150 t gpiochip_line_is_valid
-ffffffff81570180 t gpiochip_add_data_with_key
-ffffffff81570cb0 t gpiochip_find_base
-ffffffff81570d20 t machine_gpiochip_add
-ffffffff81570d90 t gpiochip_free_hogs
-ffffffff81570e10 t gpiochip_get_data
-ffffffff81570e30 t gpiochip_remove
-ffffffff81570fe0 t gpiochip_is_requested
-ffffffff81571030 t gpiochip_find
-ffffffff815710c0 t gpiochip_generic_request
-ffffffff815710d0 t gpiochip_generic_free
-ffffffff815710e0 t gpiochip_generic_config
-ffffffff815710f0 t gpiod_request
-ffffffff815711a0 t gpiod_request_commit
-ffffffff81571370 t gpiod_free
-ffffffff815713b0 t gpiod_free_commit.llvm.2032662934192771727
-ffffffff815714d0 t gpiochip_request_own_desc
-ffffffff81571590 t gpiod_configure_flags
-ffffffff815716e0 t gpiochip_free_own_desc
-ffffffff81571700 t gpio_set_debounce_timeout
-ffffffff81571750 t gpiod_direction_input
-ffffffff815719e0 t gpiod_direction_output_raw
-ffffffff81571a80 t gpiod_direction_output_raw_commit
-ffffffff81571cc0 t gpiod_direction_output
-ffffffff81571f50 t gpiod_enable_hw_timestamp_ns
-ffffffff815720d0 t gpiod_disable_hw_timestamp_ns
-ffffffff81572250 t gpiod_set_config
-ffffffff81572330 t gpiod_set_debounce
-ffffffff81572410 t gpiod_set_transitory
-ffffffff81572510 t gpiod_is_active_low
-ffffffff815725b0 t gpiod_toggle_active_low
-ffffffff81572630 t gpiod_get_array_value_complex
-ffffffff81572cb0 t gpiod_get_raw_value
-ffffffff81572d70 t gpiod_get_raw_value_commit
-ffffffff81572e30 t gpiod_get_value
-ffffffff81572f00 t gpiod_get_raw_array_value
-ffffffff81572f40 t gpiod_get_array_value
-ffffffff81572f70 t gpiod_set_array_value_complex
-ffffffff81573570 t gpio_set_open_drain_value_commit
-ffffffff81573690 t gpio_set_open_source_value_commit
-ffffffff815737c0 t gpiod_set_raw_value
-ffffffff81573870 t gpiod_set_raw_value_commit
-ffffffff81573920 t gpiod_set_value
-ffffffff81573a40 t gpiod_set_raw_array_value
-ffffffff81573a80 t gpiod_set_array_value
-ffffffff81573ab0 t gpiod_cansleep
-ffffffff81573b50 t gpiod_set_consumer_name
-ffffffff81573c20 t gpiod_to_irq
-ffffffff81573c90 t gpiochip_lock_as_irq
-ffffffff81573e10 t gpiochip_unlock_as_irq
-ffffffff81573e80 t gpiochip_disable_irq
-ffffffff81573ee0 t gpiochip_enable_irq
-ffffffff81573f50 t gpiochip_line_is_irq
-ffffffff81573f90 t gpiochip_reqres_irq
-ffffffff81573fe0 t gpiochip_relres_irq
-ffffffff81574050 t gpiochip_line_is_open_drain
-ffffffff81574090 t gpiochip_line_is_open_source
-ffffffff815740d0 t gpiochip_line_is_persistent
-ffffffff81574110 t gpiod_get_raw_value_cansleep
-ffffffff815741b0 t gpiod_get_value_cansleep
-ffffffff81574260 t gpiod_get_raw_array_value_cansleep
-ffffffff815742a0 t gpiod_get_array_value_cansleep
-ffffffff815742e0 t gpiod_set_raw_value_cansleep
-ffffffff81574370 t gpiod_set_value_cansleep
-ffffffff81574460 t gpiod_set_raw_array_value_cansleep
-ffffffff815744a0 t gpiod_add_lookup_tables
-ffffffff81574530 t gpiod_set_array_value_cansleep
-ffffffff81574570 t gpiod_add_lookup_table
-ffffffff815745d0 t gpiod_remove_lookup_table
-ffffffff81574630 t gpiod_add_hogs
-ffffffff81574760 t gpiochip_machine_hog
-ffffffff81574850 t gpiod_remove_hogs
-ffffffff815748d0 t fwnode_gpiod_get_index
-ffffffff81574b60 t gpiod_count
-ffffffff81574cd0 t gpiod_get
-ffffffff81574cf0 t gpiod_get_index
-ffffffff81575190 t gpiod_get_optional
-ffffffff815751b0 t gpiod_get_index_optional
-ffffffff815751d0 t gpiod_put
-ffffffff81575210 t gpiod_hog
-ffffffff81575330 t gpiod_get_array
-ffffffff81575a30 t gpiod_put_array
-ffffffff81575aa0 t gpiod_get_array_optional
-ffffffff81575ac0 t trace_raw_output_gpio_direction
-ffffffff81575b30 t trace_raw_output_gpio_value
-ffffffff81575ba0 t gpio_bus_match
-ffffffff81575bd0 t gpiodevice_release
-ffffffff81575c80 t gpio_stub_drv_probe
-ffffffff81575c90 t gpiolib_open
-ffffffff81575ce0 t gpiolib_seq_start
-ffffffff81575d60 t gpiolib_seq_stop
-ffffffff81575d70 t gpiolib_seq_next
-ffffffff81575de0 t gpiolib_seq_show
-ffffffff815760e0 t devm_gpiod_get
-ffffffff81576100 t devm_gpiod_get_index
-ffffffff815761d0 t devm_gpiod_get_optional
-ffffffff815761f0 t devm_gpiod_get_index_optional
-ffffffff81576210 t devm_gpiod_release
-ffffffff81576230 t devm_gpiod_match
-ffffffff81576250 t devm_gpiod_get_from_of_node
-ffffffff81576320 t devm_fwnode_gpiod_get_index
-ffffffff815763d0 t devm_gpiod_get_array
-ffffffff81576460 t devm_gpiod_release_array
-ffffffff81576480 t devm_gpiod_get_array_optional
-ffffffff81576510 t devm_gpiod_put
-ffffffff81576570 t devm_gpiod_unhinge
-ffffffff815765e0 t devm_gpiod_put_array
-ffffffff81576640 t devm_gpiod_match_array
-ffffffff81576660 t devm_gpio_request
-ffffffff815766f0 t devm_gpio_release
-ffffffff81576710 t devm_gpio_request_one
-ffffffff815767a0 t devm_gpiochip_add_data_with_key
-ffffffff81576800 t devm_gpio_chip_release
-ffffffff81576810 t gpio_free
-ffffffff81576830 t gpio_request_one
-ffffffff81576900 t gpio_request
-ffffffff81576940 t gpio_request_array
-ffffffff815769d0 t gpio_free_array
-ffffffff81576a20 t of_gpio_get_count
-ffffffff81576b50 t of_gpio_need_valid_mask
-ffffffff81576b80 t of_get_named_gpio_flags
-ffffffff81576ca0 t gpiod_get_from_of_node
-ffffffff81576e50 t of_find_gpio
-ffffffff81577170 t of_mm_gpiochip_add_data
-ffffffff81577250 t of_mm_gpiochip_remove
-ffffffff81577280 t of_gpiochip_add
-ffffffff81577730 t of_gpio_simple_xlate
-ffffffff81577780 t of_gpiochip_remove
-ffffffff81577790 t of_gpio_dev_init
-ffffffff81577820 t of_gpiochip_match_node_and_xlate
-ffffffff81577860 t gpiolib_cdev_register
-ffffffff815778c0 t gpiolib_cdev_unregister
-ffffffff815778e0 t lineinfo_watch_read
-ffffffff81577c70 t lineinfo_watch_poll
-ffffffff81577d20 t gpio_ioctl
-ffffffff81578be0 t gpio_chrdev_open
-ffffffff81578d40 t gpio_chrdev_release
-ffffffff81578da0 t lineinfo_get_v1
-ffffffff81578fa0 t lineinfo_get
-ffffffff81579100 t linehandle_flags_to_desc_flags
-ffffffff81579180 t linehandle_ioctl
-ffffffff815795f0 t linehandle_release
-ffffffff81579670 t lineevent_irq_handler
-ffffffff815796a0 t lineevent_irq_thread
-ffffffff81579790 t lineevent_free
-ffffffff815797e0 t lineevent_read
-ffffffff81579a10 t lineevent_poll
-ffffffff81579ac0 t lineevent_ioctl
-ffffffff81579be0 t lineevent_release
-ffffffff81579c40 t gpio_desc_to_lineinfo
-ffffffff81579e70 t gpio_v2_line_config_validate
-ffffffff8157a070 t debounce_work_func
-ffffffff8157a1b0 t gpio_v2_line_config_flags_to_desc_flags
-ffffffff8157a2c0 t gpio_v2_line_config_output_value
-ffffffff8157a330 t edge_detector_setup
-ffffffff8157a560 t linereq_free
-ffffffff8157a650 t linereq_put_event
-ffffffff8157a6e0 t edge_irq_handler
-ffffffff8157a740 t edge_irq_thread
-ffffffff8157a880 t debounce_irq_handler
-ffffffff8157a8d0 t linereq_read
-ffffffff8157ab30 t linereq_poll
-ffffffff8157abe0 t linereq_ioctl
-ffffffff8157b5e0 t linereq_release
-ffffffff8157b600 t linereq_show_fdinfo
-ffffffff8157b690 t lineinfo_changed_notify
-ffffffff8157b7a0 t acpi_get_and_request_gpiod
-ffffffff8157b850 t acpi_gpio_get_irq_resource
-ffffffff8157b880 t acpi_gpio_get_io_resource
-ffffffff8157b8b0 t acpi_gpiochip_request_interrupts
-ffffffff8157b9f0 t acpi_gpio_chip_dh
-ffffffff8157ba00 t acpi_gpiochip_alloc_event
-ffffffff8157bda0 t acpi_gpiochip_request_irqs
-ffffffff8157bea0 t acpi_gpiochip_free_interrupts
-ffffffff8157c040 t acpi_dev_add_driver_gpios
-ffffffff8157c070 t acpi_dev_remove_driver_gpios
-ffffffff8157c090 t devm_acpi_dev_add_driver_gpios
-ffffffff8157c110 t acpi_dev_release_driver_gpios
-ffffffff8157c130 t acpi_gpio_update_gpiod_flags
-ffffffff8157c1c0 t acpi_gpio_update_gpiod_lookup_flags
-ffffffff8157c1f0 t acpi_find_gpio
-ffffffff8157c7f0 t acpi_node_get_gpiod
-ffffffff8157c9a0 t acpi_gpio_property_lookup
-ffffffff8157cb80 t acpi_dev_gpio_irq_wake_get_by
-ffffffff8157cef0 t acpi_gpiochip_add
-ffffffff8157d210 t acpi_gpiochip_remove
-ffffffff8157d3c0 t acpi_gpio_dev_init
-ffffffff8157d450 t acpi_gpio_count
-ffffffff8157d780 t acpi_find_gpio_count
-ffffffff8157d7a0 t acpi_gpiochip_find
-ffffffff8157d7d0 t acpi_gpio_irq_handler
-ffffffff8157d7f0 t acpi_gpio_irq_handler_evt
-ffffffff8157d810 t acpi_gpio_in_ignore_list
-ffffffff8157d940 t acpi_populate_gpio_lookup
-ffffffff8157db30 t acpi_gpio_adr_space_handler
-ffffffff8157de40 t bgpio_init
-ffffffff8157e1e0 t bgpio_request
-ffffffff8157e200 t bgpio_set_set
-ffffffff8157e2a0 t bgpio_set_with_clear
-ffffffff8157e2f0 t bgpio_set_multiple_with_clear
-ffffffff8157e3d0 t bgpio_set_multiple_set
-ffffffff8157e3f0 t bgpio_set_none
-ffffffff8157e400 t bgpio_set
-ffffffff8157e4a0 t bgpio_set_multiple
-ffffffff8157e4c0 t bgpio_get_set
-ffffffff8157e510 t bgpio_get_set_multiple
-ffffffff8157e590 t bgpio_get
-ffffffff8157e5e0 t bgpio_get_multiple_be
-ffffffff8157e6f0 t bgpio_get_multiple
-ffffffff8157e730 t bgpio_set_multiple_single_reg
-ffffffff8157e830 t bgpio_read8
-ffffffff8157e840 t bgpio_write8
-ffffffff8157e850 t bgpio_read16be
-ffffffff8157e870 t bgpio_write16be
-ffffffff8157e890 t bgpio_read16
-ffffffff8157e8b0 t bgpio_write16
-ffffffff8157e8c0 t bgpio_read32be
-ffffffff8157e8e0 t bgpio_write32be
-ffffffff8157e900 t bgpio_read32
-ffffffff8157e910 t bgpio_write32
-ffffffff8157e920 t bgpio_read64
-ffffffff8157e930 t bgpio_write64
-ffffffff8157e940 t bgpio_dir_out_dir_first
-ffffffff8157ea00 t bgpio_dir_out_val_first
-ffffffff8157eab0 t bgpio_dir_in
-ffffffff8157eb50 t bgpio_get_dir
-ffffffff8157ec00 t bgpio_dir_out_err
-ffffffff8157ec10 t bgpio_simple_dir_out
-ffffffff8157ec30 t bgpio_simple_dir_in
-ffffffff8157ec40 t bgpio_pdev_probe
-ffffffff8157ef90 t pci_bus_read_config_byte
-ffffffff8157f000 t pci_bus_read_config_word
-ffffffff8157f080 t pci_bus_read_config_dword
-ffffffff8157f100 t pci_bus_write_config_byte
-ffffffff8157f130 t pci_bus_write_config_word
-ffffffff8157f160 t pci_bus_write_config_dword
-ffffffff8157f1a0 t pci_generic_config_read
-ffffffff8157f200 t pci_generic_config_write
-ffffffff8157f250 t pci_generic_config_read32
-ffffffff8157f2c0 t pci_generic_config_write32
-ffffffff8157f3b0 t pci_bus_set_ops
-ffffffff8157f400 t pci_user_read_config_byte
-ffffffff8157f4f0 t pci_wait_cfg
-ffffffff8157f5f0 t pci_user_read_config_word
-ffffffff8157f6f0 t pci_user_read_config_dword
-ffffffff8157f7f0 t pci_user_write_config_byte
-ffffffff8157f890 t pci_user_write_config_word
-ffffffff8157f930 t pci_user_write_config_dword
-ffffffff8157f9e0 t pci_cfg_access_lock
-ffffffff8157fa60 t pci_cfg_access_trylock
-ffffffff8157fad0 t pci_cfg_access_unlock
-ffffffff8157fb70 t pcie_cap_has_lnkctl
-ffffffff8157fba0 t pcie_cap_has_rtctl
-ffffffff8157fbd0 t pcie_capability_read_word
-ffffffff8157fca0 t pcie_capability_reg_implemented
-ffffffff8157fd90 t pci_read_config_word
-ffffffff8157fdd0 t pcie_capability_read_dword
-ffffffff8157fe90 t pci_read_config_dword
-ffffffff8157fed0 t pcie_capability_write_word
-ffffffff8157ff30 t pci_write_config_word
-ffffffff8157ff70 t pcie_capability_write_dword
-ffffffff8157ffd0 t pci_write_config_dword
-ffffffff81580000 t pcie_capability_clear_and_set_word
-ffffffff81580130 t pcie_capability_clear_and_set_dword
-ffffffff81580260 t pci_read_config_byte
-ffffffff815802a0 t pci_write_config_byte
-ffffffff815802e0 t pci_add_resource_offset
-ffffffff81580350 t pci_add_resource
-ffffffff815803c0 t pci_free_resource_list
-ffffffff815803d0 t pci_bus_add_resource
-ffffffff81580460 t pci_bus_resource_n
-ffffffff815804c0 t pci_bus_remove_resource
-ffffffff81580560 t pci_bus_remove_resources
-ffffffff81580600 t devm_request_pci_bus_resources
-ffffffff81580680 t pci_bus_alloc_resource
-ffffffff81580720 t pci_bus_alloc_from_region
-ffffffff81580980 t pci_bus_clip_resource
-ffffffff81580b40 t pcibios_bus_add_device
-ffffffff81580b50 t pci_bus_add_device
-ffffffff81580bd0 t pci_bus_add_devices
-ffffffff81580c60 t pci_walk_bus
-ffffffff81580d00 t pci_bus_get
-ffffffff81580d30 t pci_bus_put
-ffffffff81580d50 t no_pci_devices
-ffffffff81580d90 t __pci_read_base
-ffffffff81581120 t pci_read_bridge_bases
-ffffffff81581570 t pci_alloc_host_bridge
-ffffffff815815f0 t pci_release_host_bridge_dev
-ffffffff81581640 t devm_pci_alloc_host_bridge
-ffffffff81581700 t devm_pci_alloc_host_bridge_release
-ffffffff81581720 t pci_free_host_bridge
-ffffffff81581740 t pci_speed_string
-ffffffff81581770 t pcie_update_link_speed
-ffffffff81581790 t pci_add_new_bus
-ffffffff81581db0 t pci_scan_bridge
-ffffffff81581dd0 t pci_scan_bridge_extend
-ffffffff815825a0 t set_pcie_port_type
-ffffffff815826f0 t set_pcie_hotplug_bridge
-ffffffff81582750 t pci_cfg_space_size
-ffffffff815829d0 t pci_setup_device
-ffffffff81583500 t pci_configure_extended_tags
-ffffffff81583600 t pcie_relaxed_ordering_enabled
-ffffffff81583660 t pci_alloc_dev
-ffffffff815836c0 t pci_bus_generic_read_dev_vendor_id
-ffffffff81583830 t pci_bus_read_dev_vendor_id
-ffffffff81583880 t pcie_report_downtraining
-ffffffff815838d0 t pci_device_add
-ffffffff81583ef0 t pci_release_dev
-ffffffff81583f90 t pci_scan_single_device
-ffffffff815840d0 t pci_scan_slot
-ffffffff81584280 t pcie_bus_configure_settings
-ffffffff81584340 t pcie_find_smpss
-ffffffff81584380 t pcie_bus_configure_set
-ffffffff81584520 t pci_scan_child_bus
-ffffffff81584540 t pci_scan_child_bus_extend.llvm.16384162823192132837
-ffffffff815848c0 t pci_create_root_bus
-ffffffff815849d0 t pci_register_host_bridge
-ffffffff81585000 t pci_host_probe
-ffffffff81585150 t pci_scan_root_bus_bridge
-ffffffff81585320 t pci_bus_insert_busn_res
-ffffffff81585480 t pci_bus_update_busn_res_end
-ffffffff815855b0 t pci_bus_release_busn_res
-ffffffff81585620 t pci_scan_root_bus
-ffffffff815857d0 t pci_scan_bus
-ffffffff81585890 t pci_rescan_bus_bridge_resize
-ffffffff815858d0 t pci_rescan_bus
-ffffffff81585910 t pci_lock_rescan_remove
-ffffffff81585930 t pci_unlock_rescan_remove
-ffffffff81585950 t pci_hp_add_bridge
-ffffffff81585a10 t release_pcibus_dev
-ffffffff81585a60 t pci_find_host_bridge
-ffffffff81585a90 t pci_get_host_bridge_device
-ffffffff81585ad0 t pci_put_host_bridge_device
-ffffffff81585ae0 t pci_set_host_bridge_release
-ffffffff81585b00 t pcibios_resource_to_bus
-ffffffff81585bc0 t pcibios_bus_to_resource
-ffffffff81585c60 t pci_remove_bus
-ffffffff81585d00 t pci_stop_and_remove_bus_device
-ffffffff81585d20 t pci_stop_bus_device.llvm.17375645171721724123
-ffffffff81585dc0 t pci_remove_bus_device.llvm.17375645171721724123
-ffffffff81585ee0 t pci_stop_and_remove_bus_device_locked
-ffffffff81585f20 t pci_stop_root_bus
-ffffffff81585f80 t pci_remove_root_bus
-ffffffff81585ff0 t pci_reset_supported
-ffffffff81586010 t pci_ats_disabled
-ffffffff81586030 t pci_bus_max_busnr
-ffffffff81586080 t pci_status_get_and_clear_errors
-ffffffff81586100 t pci_ioremap_bar
-ffffffff81586180 t pci_ioremap_wc_bar
-ffffffff81586200 t pci_find_next_capability
-ffffffff815862d0 t pci_find_capability
-ffffffff815863e0 t pci_bus_find_capability
-ffffffff81586500 t pci_find_next_ext_capability
-ffffffff81586600 t pci_find_ext_capability
-ffffffff815866e0 t pci_get_dsn
-ffffffff81586800 t pci_find_next_ht_capability
-ffffffff81586820 t __pci_find_next_ht_cap.llvm.5933474857879622910
-ffffffff815869f0 t pci_find_ht_capability
-ffffffff81586a80 t pci_find_vsec_capability
-ffffffff81586bd0 t pci_find_dvsec_capability
-ffffffff81586da0 t pci_find_parent_resource
-ffffffff81586e70 t pci_find_resource
-ffffffff815870a0 t pci_wait_for_pending
-ffffffff81587180 t pci_request_acs
-ffffffff815871a0 t pci_update_current_state
-ffffffff81587240 t pci_refresh_power_state
-ffffffff815872f0 t pci_platform_power_transition
-ffffffff815873c0 t pci_resume_bus
-ffffffff815873e0 t pci_resume_one.llvm.5933474857879622910
-ffffffff81587400 t pci_power_up
-ffffffff815875b0 t pci_bus_set_current_state
-ffffffff81587600 t __pci_dev_set_current_state
-ffffffff81587620 t pci_set_power_state
-ffffffff815879f0 t pci_set_low_power_state
-ffffffff81587c30 t pci_find_saved_cap
-ffffffff81587c70 t pci_find_saved_ext_cap
-ffffffff81587cb0 t pci_bridge_reconfigure_ltr
-ffffffff81587d50 t pci_save_state
-ffffffff81588110 t pci_restore_state
-ffffffff81588ce0 t pci_enable_acs
-ffffffff81588eb0 t pci_store_saved_state
-ffffffff81588fc0 t pci_load_saved_state
-ffffffff81589110 t pci_load_and_free_saved_state
-ffffffff815892a0 t pci_reenable_device
-ffffffff815892d0 t do_pci_enable_device
-ffffffff815893f0 t pci_enable_device_io
-ffffffff81589410 t pci_enable_device_flags.llvm.5933474857879622910
-ffffffff815895d0 t pci_enable_device_mem
-ffffffff815895f0 t pci_enable_device
-ffffffff81589610 t pcim_enable_device
-ffffffff815896c0 t pcim_pin_device
-ffffffff81589720 t pci_disable_enabled_device
-ffffffff815897a0 t pci_disable_device
-ffffffff815898b0 t pcibios_set_pcie_reset_state
-ffffffff815898c0 t pci_set_pcie_reset_state
-ffffffff815898d0 t pcie_clear_device_status
-ffffffff81589930 t pcie_clear_root_pme_status
-ffffffff81589950 t pci_check_pme_status
-ffffffff815899f0 t pci_pme_wakeup_bus
-ffffffff81589a20 t pci_pme_wakeup.llvm.5933474857879622910
-ffffffff81589b10 t pci_pme_capable
-ffffffff81589b50 t pci_pme_restore
-ffffffff81589bf0 t pci_pme_active
-ffffffff81589dd0 t pci_enable_wake
-ffffffff81589e00 t __pci_enable_wake
-ffffffff81589ec0 t pci_wake_from_d3
-ffffffff81589f20 t pci_prepare_to_sleep
-ffffffff8158a090 t pci_target_state
-ffffffff8158a180 t pci_back_from_sleep
-ffffffff8158a1f0 t pci_finish_runtime_suspend
-ffffffff8158a320 t pci_dev_run_wake
-ffffffff8158a3b0 t pci_dev_need_resume
-ffffffff8158a430 t pci_dev_adjust_pme
-ffffffff8158a510 t pci_dev_complete_resume
-ffffffff8158a650 t pci_choose_state
-ffffffff8158a6f0 t pci_config_pm_runtime_get
-ffffffff8158a750 t pci_config_pm_runtime_put
-ffffffff8158a790 t pci_bridge_d3_possible
-ffffffff8158a840 t pci_bridge_d3_update
-ffffffff8158aa20 t pci_dev_check_d3cold
-ffffffff8158aa90 t pci_d3cold_enable
-ffffffff8158aac0 t pci_d3cold_disable
-ffffffff8158aaf0 t pci_pm_init
-ffffffff8158ae20 t pci_ea_init
-ffffffff8158b180 t pci_add_cap_save_buffer
-ffffffff8158b200 t pci_add_ext_cap_save_buffer
-ffffffff8158b330 t pci_allocate_cap_save_buffers
-ffffffff8158b470 t pci_free_cap_save_buffers
-ffffffff8158b4b0 t pci_configure_ari
-ffffffff8158b600 t pci_acs_enabled
-ffffffff8158b700 t pci_acs_path_enabled
-ffffffff8158b760 t pci_acs_init
-ffffffff8158b850 t pci_rebar_get_possible_sizes
-ffffffff8158b8f0 t pci_rebar_find_pos
-ffffffff8158ba40 t pci_rebar_get_current_size
-ffffffff8158bab0 t pci_rebar_set_size
-ffffffff8158bb40 t pci_enable_atomic_ops_to_root
-ffffffff8158bc90 t pci_swizzle_interrupt_pin
-ffffffff8158bce0 t pci_get_interrupt_pin
-ffffffff8158bd60 t pci_common_swizzle
-ffffffff8158bdf0 t pci_release_region
-ffffffff8158bea0 t pci_request_region
-ffffffff8158bec0 t __pci_request_region.llvm.5933474857879622910
-ffffffff8158bfc0 t pci_release_selected_regions
-ffffffff8158c0a0 t pci_request_selected_regions
-ffffffff8158c0c0 t __pci_request_selected_regions.llvm.5933474857879622910
-ffffffff8158c2a0 t pci_request_selected_regions_exclusive
-ffffffff8158c2c0 t pci_release_regions
-ffffffff8158c2e0 t pci_request_regions
-ffffffff8158c300 t pci_request_regions_exclusive
-ffffffff8158c320 t pci_register_io_range
-ffffffff8158c330 t pci_pio_to_address
-ffffffff8158c350 t pci_address_to_pio
-ffffffff8158c370 t pci_remap_iospace
-ffffffff8158c3a0 t pci_unmap_iospace
-ffffffff8158c3b0 t devm_pci_remap_iospace
-ffffffff8158c420 t devm_pci_unmap_iospace
-ffffffff8158c430 t devm_pci_remap_cfgspace
-ffffffff8158c4c0 t devm_pci_remap_cfg_resource
-ffffffff8158c660 t pcibios_set_master
-ffffffff8158c6f0 t pci_set_master
-ffffffff8158c770 t pci_clear_master
-ffffffff8158c7f0 t pci_set_cacheline_size
-ffffffff8158c8a0 t pci_set_mwi
-ffffffff8158c990 t pcim_set_mwi
-ffffffff8158c9f0 t pci_try_set_mwi
-ffffffff8158ca00 t pci_clear_mwi
-ffffffff8158ca70 t pci_disable_parity
-ffffffff8158cae0 t pci_intx
-ffffffff8158cbb0 t pci_check_and_mask_intx
-ffffffff8158cca0 t pci_check_and_unmask_intx
-ffffffff8158cd90 t pci_wait_for_pending_transaction
-ffffffff8158cdc0 t pcie_flr
-ffffffff8158ce50 t pci_dev_wait
-ffffffff8158cf70 t pcie_reset_flr
-ffffffff8158cfa0 t pcie_wait_for_link
-ffffffff8158d0c0 t pcie_wait_for_link_delay
-ffffffff8158d1b0 t pci_bridge_wait_for_secondary_bus
-ffffffff8158d310 t pcie_get_speed_cap
-ffffffff8158d3f0 t pci_reset_secondary_bus
-ffffffff8158d480 t pcibios_reset_secondary_bus
-ffffffff8158d510 t pci_bridge_secondary_bus_reset
-ffffffff8158d540 t pci_dev_lock
-ffffffff8158d570 t pci_dev_trylock
-ffffffff8158d5c0 t pci_dev_unlock
-ffffffff8158d5f0 t pci_dev_reset_method_attr_is_visible
-ffffffff8158d620 t __pci_reset_function_locked
-ffffffff8158d7b0 t pci_init_reset_methods
-ffffffff8158d9c0 t pci_reset_function
-ffffffff8158dab0 t pci_reset_function_locked
-ffffffff8158db70 t pci_try_reset_function
-ffffffff8158dc80 t pci_probe_reset_slot
-ffffffff8158dd30 t pci_bus_error_reset
-ffffffff8158dfb0 t pci_probe_reset_bus
-ffffffff8158dfe0 t pci_reset_bus
-ffffffff8158e390 t pcix_get_max_mmrbc
-ffffffff8158e410 t pcix_get_mmrbc
-ffffffff8158e490 t pcix_set_mmrbc
-ffffffff8158e600 t pcie_get_readrq
-ffffffff8158e660 t pcie_set_readrq
-ffffffff8158e7f0 t pcie_get_mps
-ffffffff8158e850 t pcie_set_mps
-ffffffff8158e910 t pcie_bandwidth_available
-ffffffff8158ea50 t pcie_get_width_cap
-ffffffff8158eab0 t pcie_bandwidth_capable
-ffffffff8158ebf0 t __pcie_print_link_status
-ffffffff8158ee40 t pcie_print_link_status
-ffffffff8158ee60 t pci_select_bars
-ffffffff8158ef90 t pci_set_vga_state
-ffffffff8158f0e0 t pci_pr3_present
-ffffffff8158f140 t pci_add_dma_alias
-ffffffff8158f220 t pci_devs_are_dma_aliases
-ffffffff8158f280 t pci_real_dma_dev
-ffffffff8158f290 t pci_device_is_present
-ffffffff8158f310 t pci_ignore_hotplug
-ffffffff8158f340 t pcibios_default_alignment
-ffffffff8158f350 t pci_resource_to_user
-ffffffff8158f370 t pci_reassigndev_resource_alignment
-ffffffff8158f7a0 t pci_fixup_cardbus
-ffffffff8158f7b0 t pci_dev_str_match
-ffffffff8158fae0 t pci_enable_bridge
-ffffffff8158fbf0 t pcim_release
-ffffffff8158fde0 t pci_pme_list_scan
-ffffffff8158ffc0 t reset_method_show
-ffffffff81590290 t reset_method_store
-ffffffff81590540 t pci_af_flr
-ffffffff81590640 t pci_pm_reset
-ffffffff815907d0 t pci_reset_bus_function
-ffffffff815908c0 t pci_bus_resetable
-ffffffff81590930 t pci_bus_lock
-ffffffff81590990 t pci_bus_unlock
-ffffffff815909f0 t pci_bus_trylock
-ffffffff81590ab0 t pci_bus_save_and_disable_locked
-ffffffff81590b40 t pci_bus_restore_locked
-ffffffff81590bd0 t resource_alignment_show
-ffffffff81590c20 t resource_alignment_store
-ffffffff81590cc0 t pci_add_dynid
-ffffffff81590db0 t pci_match_id
-ffffffff81590e40 t pcibios_alloc_irq
-ffffffff81590e50 t pcibios_free_irq
-ffffffff81590e60 t __pci_register_driver
-ffffffff81590ed0 t pci_unregister_driver
-ffffffff81590f80 t pci_dev_driver
-ffffffff81590ff0 t pci_dev_get
-ffffffff81591020 t pci_dev_put
-ffffffff81591040 t pci_uevent_ers
-ffffffff815910f0 t pci_bus_match
-ffffffff81591140 t pci_uevent
-ffffffff81591250 t pci_device_probe
-ffffffff815913c0 t pci_device_remove
-ffffffff81591460 t pci_device_shutdown
-ffffffff815914c0 t pci_bus_num_vf
-ffffffff815914e0 t pci_dma_configure
-ffffffff815915c0 t pci_dma_cleanup
-ffffffff815915f0 t pcie_port_bus_match
-ffffffff81591640 t new_id_store
-ffffffff815918b0 t new_id_store
-ffffffff815918d0 t pci_match_device
-ffffffff81591a60 t remove_id_store
-ffffffff81591be0 t remove_id_store
-ffffffff81591c00 t pci_pm_prepare
-ffffffff81591c70 t pci_pm_complete
-ffffffff81591ce0 t pci_pm_suspend
-ffffffff81591f60 t pci_pm_resume
-ffffffff815920d0 t pci_pm_suspend_late
-ffffffff81592110 t pci_pm_resume_early
-ffffffff81592140 t pci_pm_suspend_noirq
-ffffffff815923d0 t pci_pm_resume_noirq
-ffffffff81592560 t pci_pm_runtime_suspend
-ffffffff815926c0 t pci_pm_runtime_resume
-ffffffff815927b0 t pci_pm_runtime_idle
-ffffffff81592810 t pci_for_each_dma_alias
-ffffffff815929a0 t pci_find_bus
-ffffffff81592a50 t pci_find_next_bus
-ffffffff81592aa0 t pci_do_find_bus
-ffffffff81592af0 t pci_get_slot
-ffffffff81592b60 t pci_get_domain_bus_and_slot
-ffffffff81592ce0 t pci_get_device
-ffffffff81592d90 t pci_get_subsys
-ffffffff81592e40 t pci_get_class
-ffffffff81592ef0 t pci_dev_present
-ffffffff81592f70 t match_pci_dev_by_id
-ffffffff81592fe0 t pci_mmap_fits
-ffffffff815930c0 t pci_create_sysfs_dev_files
-ffffffff815930e0 t pci_create_resource_files
-ffffffff81593180 t pci_remove_sysfs_dev_files
-ffffffff815931a0 t pci_remove_resource_files.llvm.12520832794413114532
-ffffffff81593370 t rescan_store
-ffffffff81593440 t bus_rescan_store
-ffffffff81593520 t cpuaffinity_show
-ffffffff81593550 t cpulistaffinity_show
-ffffffff81593580 t pci_create_attr
-ffffffff815936f0 t pci_mmap_resource_wc
-ffffffff81593710 t pci_read_resource_io
-ffffffff815937b0 t pci_write_resource_io
-ffffffff81593870 t pci_mmap_resource_uc
-ffffffff81593890 t pci_mmap_resource
-ffffffff81593980 t power_state_show
-ffffffff815939b0 t power_state_show
-ffffffff815939e0 t resource_show
-ffffffff81593ac0 t resource_show
-ffffffff81593b00 t resource_show
-ffffffff81593b70 t resource_show
-ffffffff81593bb0 t vendor_show
-ffffffff81593be0 t vendor_show
-ffffffff81593c10 t device_show
-ffffffff81593c40 t device_show
-ffffffff81593c70 t subsystem_vendor_show
-ffffffff81593ca0 t subsystem_device_show
-ffffffff81593cd0 t revision_show
-ffffffff81593d00 t class_show
-ffffffff81593d30 t irq_show
-ffffffff81593d80 t irq_show
-ffffffff81593de0 t local_cpus_show
-ffffffff81593e10 t local_cpulist_show
-ffffffff81593e40 t modalias_show
-ffffffff81593ea0 t modalias_show
-ffffffff81593f70 t modalias_show
-ffffffff81593fa0 t modalias_show
-ffffffff81594000 t modalias_show
-ffffffff815940a0 t modalias_show
-ffffffff815940c0 t modalias_show
-ffffffff81594100 t dma_mask_bits_show
-ffffffff81594140 t consistent_dma_mask_bits_show
-ffffffff81594180 t enable_show
-ffffffff815941b0 t enable_store
-ffffffff815942c0 t broken_parity_status_show
-ffffffff815942f0 t broken_parity_status_store
-ffffffff815943a0 t msi_bus_show
-ffffffff815943f0 t msi_bus_store
-ffffffff81594530 t d3cold_allowed_show
-ffffffff81594560 t d3cold_allowed_store
-ffffffff81594610 t devspec_show
-ffffffff81594650 t driver_override_show
-ffffffff815946a0 t driver_override_show
-ffffffff815946f0 t driver_override_store
-ffffffff81594720 t driver_override_store
-ffffffff81594750 t ari_enabled_show
-ffffffff81594790 t pci_dev_config_attr_is_visible
-ffffffff815947d0 t pci_read_config
-ffffffff815949c0 t pci_write_config
-ffffffff81594b40 t pci_dev_rom_attr_is_visible
-ffffffff81594b80 t pci_read_rom
-ffffffff81594c50 t pci_write_rom
-ffffffff81594c80 t pci_dev_reset_attr_is_visible
-ffffffff81594cb0 t reset_store
-ffffffff81594d60 t reset_store
-ffffffff81594e60 t reset_store
-ffffffff81594ee0 t resource_resize_is_visible
-ffffffff81594f10 t resource0_resize_show
-ffffffff81594f60 t resource0_resize_store
-ffffffff815951d0 t resource1_resize_show
-ffffffff81595230 t resource1_resize_store
-ffffffff815954a0 t resource2_resize_show
-ffffffff81595500 t resource2_resize_store
-ffffffff81595770 t resource3_resize_show
-ffffffff815957d0 t resource3_resize_store
-ffffffff81595a40 t resource4_resize_show
-ffffffff81595aa0 t resource4_resize_store
-ffffffff81595d10 t resource5_resize_show
-ffffffff81595d70 t resource5_resize_store
-ffffffff81595fe0 t pci_dev_attrs_are_visible
-ffffffff81596020 t boot_vga_show
-ffffffff81596070 t pci_dev_hp_attrs_are_visible
-ffffffff815960a0 t remove_store
-ffffffff81596160 t dev_rescan_store
-ffffffff81596210 t pci_bridge_attrs_are_visible
-ffffffff81596240 t subordinate_bus_number_show
-ffffffff815962c0 t secondary_bus_number_show
-ffffffff81596340 t pcie_dev_attrs_are_visible
-ffffffff81596360 t current_link_speed_show
-ffffffff815963f0 t current_link_width_show
-ffffffff81596470 t max_link_width_show
-ffffffff815964a0 t max_link_speed_show
-ffffffff815964e0 t pci_enable_rom
-ffffffff815965a0 t pci_disable_rom
-ffffffff81596610 t pci_map_rom
-ffffffff81596870 t pci_unmap_rom
-ffffffff815968f0 t pci_update_resource
-ffffffff81596b70 t pci_claim_resource
-ffffffff81596c80 t pci_disable_bridge_window
-ffffffff81596ce0 t pci_assign_resource
-ffffffff81596e60 t _pci_assign_resource
-ffffffff81596fa0 t pci_revert_fw_address
-ffffffff815970c0 t pci_reassign_resource
-ffffffff815971f0 t pci_release_resource
-ffffffff81597270 t pci_resize_resource
-ffffffff81597430 t pci_enable_resources
-ffffffff81597580 t pci_request_irq
-ffffffff81597680 t pci_free_irq
-ffffffff815976b0 t pci_vpd_init
-ffffffff81597700 t vpd_attr_is_visible
-ffffffff81597730 t pci_vpd_alloc
-ffffffff81597830 t pci_vpd_available
-ffffffff81597aa0 t pci_read_vpd
-ffffffff81597b30 t pci_vpd_find_id_string
-ffffffff81597ba0 t pci_read_vpd_any
-ffffffff81597c30 t pci_write_vpd
-ffffffff81597cc0 t pci_write_vpd_any
-ffffffff81597d50 t pci_vpd_find_ro_info_keyword
-ffffffff81597e40 t pci_vpd_check_csum
-ffffffff81597fb0 t __UNIQUE_ID_quirk_f0_vpd_link265
-ffffffff81598020 t __UNIQUE_ID_quirk_blacklist_vpd267
-ffffffff81598050 t __UNIQUE_ID_quirk_blacklist_vpd269
-ffffffff81598080 t __UNIQUE_ID_quirk_blacklist_vpd271
-ffffffff815980b0 t __UNIQUE_ID_quirk_blacklist_vpd273
-ffffffff815980e0 t __UNIQUE_ID_quirk_blacklist_vpd275
-ffffffff81598110 t __UNIQUE_ID_quirk_blacklist_vpd277
-ffffffff81598140 t __UNIQUE_ID_quirk_blacklist_vpd279
-ffffffff81598170 t __UNIQUE_ID_quirk_blacklist_vpd281
-ffffffff815981a0 t __UNIQUE_ID_quirk_blacklist_vpd283
-ffffffff815981d0 t __UNIQUE_ID_quirk_blacklist_vpd285
-ffffffff81598200 t __UNIQUE_ID_quirk_blacklist_vpd287
-ffffffff81598230 t __UNIQUE_ID_quirk_blacklist_vpd289
-ffffffff81598260 t __UNIQUE_ID_quirk_blacklist_vpd291
-ffffffff81598290 t __UNIQUE_ID_quirk_chelsio_extend_vpd293
-ffffffff815982d0 t vpd_read
-ffffffff81598370 t vpd_write
-ffffffff81598410 t pci_vpd_read
-ffffffff81598710 t pci_vpd_write
-ffffffff81598950 t pci_setup_cardbus
-ffffffff81598b30 t pcibios_setup_bridge
-ffffffff81598b40 t pci_setup_bridge
-ffffffff81598b70 t __pci_setup_bridge
-ffffffff81598cb0 t pci_claim_bridge_resource
-ffffffff81598df0 t pci_setup_bridge_io
-ffffffff81598f30 t pci_setup_bridge_mmio_pref
-ffffffff81599050 t pcibios_window_alignment
-ffffffff81599060 t pci_cardbus_resource_alignment
-ffffffff815990a0 t __pci_bus_size_bridges
-ffffffff81599b50 t pbus_size_mem
-ffffffff8159a1c0 t pci_bus_size_bridges
-ffffffff8159a1e0 t __pci_bus_assign_resources
-ffffffff8159a450 t pci_bus_assign_resources
-ffffffff8159a470 t pci_bus_claim_resources
-ffffffff8159a490 t pci_bus_allocate_resources.llvm.13080192251758765770
-ffffffff8159a630 t pci_bus_allocate_dev_resources.llvm.13080192251758765770
-ffffffff8159a6c0 t pci_assign_unassigned_root_bus_resources
-ffffffff8159a9e0 t pci_bus_get_depth
-ffffffff8159aa30 t pci_root_bus_distribute_available_resources
-ffffffff8159ac50 t pci_bus_release_bridge_resources
-ffffffff8159ae20 t pci_bus_dump_resources
-ffffffff8159aee0 t pci_assign_unassigned_bridge_resources
-ffffffff8159b2d0 t __pci_bridge_assign_resources
-ffffffff8159b3c0 t pci_reassign_bridge_resources
-ffffffff8159b860 t add_to_list
-ffffffff8159b900 t pci_assign_unassigned_bus_resources
-ffffffff8159b9d0 t __dev_sort_resources
-ffffffff8159bc30 t __assign_resources_sorted
-ffffffff8159c550 t assign_requested_resources_sorted
-ffffffff8159c690 t pci_bus_distribute_available_resources
-ffffffff8159d020 t pci_save_vc_state
-ffffffff8159d180 t pci_vc_do_save_buffer
-ffffffff8159d8a0 t pci_restore_vc_state
-ffffffff8159d960 t pci_allocate_vc_save_buffers
-ffffffff8159da70 t pci_mmap_resource_range
-ffffffff8159db60 t pci_assign_irq
-ffffffff8159dc40 t pci_msi_init
-ffffffff8159dcd0 t pci_msix_init
-ffffffff8159dd50 t pci_msi_mask_irq
-ffffffff8159ddb0 t pci_msi_unmask_irq
-ffffffff8159de10 t __pci_read_msi_msg
-ffffffff8159df00 t msi_desc_to_pci_dev
-ffffffff8159df20 t __pci_write_msi_msg
-ffffffff8159e0b0 t pci_write_msi_msg
-ffffffff8159e0f0 t pci_restore_msi_state
-ffffffff8159e360 t pci_msi_vec_count
-ffffffff8159e3d0 t pci_disable_msi
-ffffffff8159e550 t pci_msix_vec_count
-ffffffff8159e5b0 t pci_disable_msix
-ffffffff8159e750 t pci_enable_msi
-ffffffff8159e780 t __pci_enable_msi_range
-ffffffff8159ed00 t pci_enable_msix_range
-ffffffff8159ed20 t __pci_enable_msix_range
-ffffffff8159f4a0 t pci_alloc_irq_vectors_affinity
-ffffffff8159f5d0 t pci_free_irq_vectors
-ffffffff8159f5f0 t pci_irq_vector
-ffffffff8159f640 t pci_irq_get_affinity
-ffffffff8159f6f0 t pci_no_msi
-ffffffff8159f710 t pci_msi_enabled
-ffffffff8159f730 t pci_msi_update_mask
-ffffffff8159f7a0 t pcim_msi_release
-ffffffff8159f7d0 t pci_msi_setup_msi_irqs
-ffffffff8159f810 t pci_msi_teardown_msi_irqs
-ffffffff8159f860 t pci_msi_create_irq_domain
-ffffffff8159f950 t pci_msi_domain_get_msi_rid
-ffffffff8159fa00 t get_msi_id_cb
-ffffffff8159fa30 t pci_msi_get_device_domain
-ffffffff8159fab0 t pci_dev_has_special_msi_domain
-ffffffff8159faf0 t pci_msi_domain_set_desc
-ffffffff8159fb40 t pci_msi_domain_check_cap
-ffffffff8159fbe0 t pci_msi_domain_write_msg
-ffffffff8159fc10 t pcie_port_device_register
-ffffffff815a0120 t pcie_port_device_iter
-ffffffff815a0170 t pcie_port_device_suspend
-ffffffff815a01c0 t pcie_port_device_resume_noirq
-ffffffff815a0210 t pcie_port_device_resume
-ffffffff815a0260 t pcie_port_device_runtime_suspend
-ffffffff815a02b0 t pcie_port_device_runtime_resume
-ffffffff815a0300 t pcie_port_find_device
-ffffffff815a0370 t find_service_iter
-ffffffff815a03c0 t pcie_port_device_remove
-ffffffff815a0400 t remove_iter.llvm.1730657046695327049
-ffffffff815a0420 t pcie_port_service_register
-ffffffff815a0480 t pcie_port_probe_service
-ffffffff815a04d0 t pcie_port_remove_service
-ffffffff815a0520 t pcie_port_shutdown_service
-ffffffff815a0530 t pcie_port_service_unregister
-ffffffff815a0550 t release_pcie_device
-ffffffff815a0570 t pcie_portdrv_probe
-ffffffff815a0630 t pcie_portdrv_remove
-ffffffff815a06a0 t pcie_portdrv_error_detected
-ffffffff815a06c0 t pcie_portdrv_mmio_enabled
-ffffffff815a06d0 t pcie_portdrv_slot_reset
-ffffffff815a0740 t pcie_port_runtime_suspend
-ffffffff815a0760 t pcie_port_runtime_idle
-ffffffff815a0780 t pcie_link_rcec
-ffffffff815a0870 t link_rcec_helper
-ffffffff815a0900 t pcie_walk_rcec
-ffffffff815a09f0 t walk_rcec_helper
-ffffffff815a0a80 t pci_rcec_init
-ffffffff815a0b70 t pci_rcec_exit
-ffffffff815a0ba0 t pcie_aspm_init_link_state
-ffffffff815a1a80 t pcie_config_aspm_path
-ffffffff815a1af0 t pcie_set_clkpm
-ffffffff815a1b90 t pcie_aspm_exit_link_state
-ffffffff815a1d70 t pcie_config_aspm_link
-ffffffff815a2050 t pcie_aspm_powersave_config_link
-ffffffff815a21c0 t pci_disable_link_state_locked
-ffffffff815a21e0 t __pci_disable_link_state.llvm.12306938874938390894
-ffffffff815a2420 t pci_disable_link_state
-ffffffff815a2440 t pcie_aspm_enabled
-ffffffff815a24a0 t aspm_ctrl_attrs_are_visible
-ffffffff815a2540 t pcie_no_aspm
-ffffffff815a2570 t pcie_aspm_support_enabled
-ffffffff815a2590 t pcie_aspm_check_latency
-ffffffff815a27b0 t pcie_aspm_set_policy
-ffffffff815a2980 t pcie_aspm_get_policy
-ffffffff815a2a50 t clkpm_show
-ffffffff815a2ad0 t clkpm_store
-ffffffff815a2c70 t l0s_aspm_show
-ffffffff815a2cf0 t l0s_aspm_store
-ffffffff815a2d10 t aspm_attr_store_common
-ffffffff815a2e70 t l1_aspm_show
-ffffffff815a2ef0 t l1_aspm_store
-ffffffff815a2f10 t l1_1_aspm_show
-ffffffff815a2f90 t l1_1_aspm_store
-ffffffff815a2fb0 t l1_2_aspm_show
-ffffffff815a3030 t l1_2_aspm_store
-ffffffff815a3050 t l1_1_pcipm_show
-ffffffff815a30d0 t l1_1_pcipm_store
-ffffffff815a30f0 t l1_2_pcipm_show
-ffffffff815a3170 t l1_2_pcipm_store
-ffffffff815a3190 t pci_no_aer
-ffffffff815a31b0 t pci_aer_available
-ffffffff815a31d0 t pcie_aer_is_native
-ffffffff815a3220 t pci_enable_pcie_error_reporting
-ffffffff815a32a0 t pci_disable_pcie_error_reporting
-ffffffff815a3320 t pci_aer_clear_nonfatal_status
-ffffffff815a33f0 t pci_aer_clear_fatal_status
-ffffffff815a34b0 t pci_aer_raw_clear_status
-ffffffff815a3590 t pci_aer_clear_status
-ffffffff815a35e0 t pci_save_aer_state
-ffffffff815a3690 t pci_restore_aer_state
-ffffffff815a3730 t pci_aer_init
-ffffffff815a3810 t pci_aer_exit
-ffffffff815a3840 t aer_stats_attrs_are_visible
-ffffffff815a38a0 t aer_print_error
-ffffffff815a3cb0 t aer_get_device_error_info
-ffffffff815a3e50 t aer_rootport_total_err_cor_show
-ffffffff815a3e80 t aer_rootport_total_err_fatal_show
-ffffffff815a3eb0 t aer_rootport_total_err_nonfatal_show
-ffffffff815a3ee0 t aer_dev_correctable_show
-ffffffff815a3fb0 t aer_dev_fatal_show
-ffffffff815a4080 t aer_dev_nonfatal_show
-ffffffff815a4150 t aer_probe
-ffffffff815a43b0 t aer_remove
-ffffffff815a44a0 t aer_irq
-ffffffff815a4570 t aer_isr
-ffffffff815a48d0 t aer_process_err_devices
-ffffffff815a4aa0 t find_device_iter
-ffffffff815a4be0 t aer_root_reset
-ffffffff815a4df0 t set_device_error_reporting
-ffffffff815a4e90 t pcie_do_recovery
-ffffffff815a5220 t report_frozen_detected
-ffffffff815a5240 t report_normal_detected
-ffffffff815a5260 t report_mmio_enabled
-ffffffff815a52f0 t report_slot_reset
-ffffffff815a5380 t report_resume
-ffffffff815a5400 t report_error_detected
-ffffffff815a5590 t pcie_pme_interrupt_enable
-ffffffff815a55c0 t pcie_pme_probe
-ffffffff815a5740 t pcie_pme_remove
-ffffffff815a57c0 t pcie_pme_suspend
-ffffffff815a5880 t pcie_pme_resume
-ffffffff815a58f0 t pcie_pme_work_fn
-ffffffff815a5cb0 t pcie_pme_irq
-ffffffff815a5d80 t pcie_pme_walk_bus
-ffffffff815a5e40 t pcie_pme_can_wakeup
-ffffffff815a5e60 t pcie_pme_check_wakeup
-ffffffff815a5ec0 t pci_proc_attach_device
-ffffffff815a5ff0 t pci_proc_detach_device
-ffffffff815a6020 t pci_proc_detach_bus
-ffffffff815a6040 t proc_bus_pci_open
-ffffffff815a6090 t proc_bus_pci_read
-ffffffff815a62c0 t proc_bus_pci_write
-ffffffff815a64b0 t proc_bus_pci_lseek
-ffffffff815a64e0 t proc_bus_pci_release
-ffffffff815a6510 t proc_bus_pci_ioctl
-ffffffff815a65c0 t proc_bus_pci_mmap
-ffffffff815a6820 t pci_seq_start
-ffffffff815a6860 t pci_seq_stop
-ffffffff815a6880 t pci_seq_next
-ffffffff815a68b0 t show_device
-ffffffff815a6bf0 t pci_dev_assign_slot
-ffffffff815a6c50 t pci_create_slot
-ffffffff815a6e90 t make_slot_name
-ffffffff815a6f90 t pci_destroy_slot
-ffffffff815a6fd0 t pci_slot_release
-ffffffff815a7080 t pci_slot_attr_show
-ffffffff815a70b0 t pci_slot_attr_store
-ffffffff815a70f0 t address_read_file
-ffffffff815a7140 t max_speed_read_file
-ffffffff815a7180 t cur_speed_read_file
-ffffffff815a71c0 t acpi_pci_root_get_mcfg_addr
-ffffffff815a7230 t pci_acpi_program_hp_params
-ffffffff815a7be0 t pciehp_is_native
-ffffffff815a7bf0 t shpchp_is_native
-ffffffff815a7c10 t pci_acpi_add_bus_pm_notifier
-ffffffff815a7c30 t pci_acpi_wake_bus.llvm.5228320855637248914
-ffffffff815a7c60 t pci_acpi_add_pm_notifier
-ffffffff815a7c80 t pci_acpi_wake_dev
-ffffffff815a7d10 t acpi_pci_choose_state
-ffffffff815a7d50 t pci_set_acpi_fwnode
-ffffffff815a7db0 t acpi_pci_find_companion
-ffffffff815a7eb0 t pci_dev_acpi_reset
-ffffffff815a7f60 t acpi_pci_power_manageable
-ffffffff815a7fa0 t acpi_pci_bridge_d3
-ffffffff815a8100 t acpi_pci_set_power_state
-ffffffff815a81a0 t acpi_pci_get_power_state
-ffffffff815a8200 t acpi_pci_refresh_power_state
-ffffffff815a8240 t acpi_pci_wakeup
-ffffffff815a8300 t acpi_pci_need_resume
-ffffffff815a83c0 t acpi_pci_add_bus
-ffffffff815a8490 t acpi_pci_remove_bus
-ffffffff815a84a0 t pci_acpi_set_companion_lookup_hook
-ffffffff815a8500 t pci_acpi_clear_companion_lookup_hook
-ffffffff815a8530 t pci_acpi_setup
-ffffffff815a8750 t pci_acpi_cleanup
-ffffffff815a87a0 t pci_msi_register_fwnode_provider
-ffffffff815a87c0 t pci_host_bridge_acpi_msi_domain
-ffffffff815a8870 t program_hpx_type0
-ffffffff815a89b0 t pci_set_of_node
-ffffffff815a89f0 t of_pci_find_child_device
-ffffffff815a8b80 t pci_release_of_node
-ffffffff815a8bb0 t pci_set_bus_of_node
-ffffffff815a8c60 t pci_release_bus_of_node
-ffffffff815a8c90 t pci_host_bridge_of_msi_domain
-ffffffff815a8e40 t pci_host_of_has_msi_map
-ffffffff815a8e80 t of_pci_get_devfn
-ffffffff815a8f00 t of_pci_parse_bus_range
-ffffffff815a8f90 t of_get_pci_domain_nr
-ffffffff815a9000 t of_pci_check_probe_only
-ffffffff815a90c0 t of_irq_parse_and_map_pci
-ffffffff815a9320 t devm_of_pci_bridge_init
-ffffffff815a9900 t of_pci_get_max_link_speed
-ffffffff815a9970 t of_pci_get_slot_power_limit
-ffffffff815a9af0 t pci_fixup_device
-ffffffff815a9cf0 t __UNIQUE_ID_quirk_mmio_always_on324
-ffffffff815a9d10 t __UNIQUE_ID_pci_disable_parity326
-ffffffff815a9d20 t __UNIQUE_ID_pci_disable_parity328
-ffffffff815a9d30 t __UNIQUE_ID_quirk_passive_release330
-ffffffff815a9df0 t __UNIQUE_ID_quirk_passive_release332
-ffffffff815a9eb0 t __UNIQUE_ID_quirk_tigerpoint_bm_sts334
-ffffffff815a9f40 t __UNIQUE_ID_quirk_nopcipci336
-ffffffff815a9f80 t __UNIQUE_ID_quirk_nopcipci338
-ffffffff815a9fc0 t __UNIQUE_ID_quirk_nopciamd340
-ffffffff815aa030 t __UNIQUE_ID_quirk_triton342
-ffffffff815aa070 t __UNIQUE_ID_quirk_triton344
-ffffffff815aa0b0 t __UNIQUE_ID_quirk_triton346
-ffffffff815aa0f0 t __UNIQUE_ID_quirk_triton348
-ffffffff815aa130 t __UNIQUE_ID_quirk_vialatency350
-ffffffff815aa140 t quirk_vialatency
-ffffffff815aa220 t __UNIQUE_ID_quirk_vialatency352
-ffffffff815aa230 t __UNIQUE_ID_quirk_vialatency354
-ffffffff815aa240 t __UNIQUE_ID_quirk_vialatency356
-ffffffff815aa250 t __UNIQUE_ID_quirk_vialatency358
-ffffffff815aa260 t __UNIQUE_ID_quirk_vialatency360
-ffffffff815aa270 t __UNIQUE_ID_quirk_viaetbf362
-ffffffff815aa2b0 t __UNIQUE_ID_quirk_vsfx364
-ffffffff815aa2f0 t __UNIQUE_ID_quirk_alimagik366
-ffffffff815aa330 t __UNIQUE_ID_quirk_alimagik368
-ffffffff815aa370 t __UNIQUE_ID_quirk_natoma370
-ffffffff815aa3b0 t __UNIQUE_ID_quirk_natoma372
-ffffffff815aa3f0 t __UNIQUE_ID_quirk_natoma374
-ffffffff815aa430 t __UNIQUE_ID_quirk_natoma376
-ffffffff815aa470 t __UNIQUE_ID_quirk_natoma378
-ffffffff815aa4b0 t __UNIQUE_ID_quirk_natoma380
-ffffffff815aa4f0 t __UNIQUE_ID_quirk_citrine382
-ffffffff815aa510 t __UNIQUE_ID_quirk_nfp6000384
-ffffffff815aa530 t __UNIQUE_ID_quirk_nfp6000386
-ffffffff815aa550 t __UNIQUE_ID_quirk_nfp6000388
-ffffffff815aa570 t __UNIQUE_ID_quirk_nfp6000390
-ffffffff815aa590 t __UNIQUE_ID_quirk_extend_bar_to_page392
-ffffffff815aa620 t __UNIQUE_ID_quirk_s3_64M394
-ffffffff815aa670 t __UNIQUE_ID_quirk_s3_64M396
-ffffffff815aa6c0 t __UNIQUE_ID_quirk_cs5536_vsa398
-ffffffff815aa910 t __UNIQUE_ID_quirk_ati_exploding_mce400
-ffffffff815aa970 t __UNIQUE_ID_quirk_amd_nl_class402
-ffffffff815aa9a0 t __UNIQUE_ID_quirk_synopsys_haps404
-ffffffff815aa9f0 t __UNIQUE_ID_quirk_ali7101_acpi406
-ffffffff815aaa40 t __UNIQUE_ID_quirk_piix4_acpi408
-ffffffff815aaa50 t quirk_piix4_acpi
-ffffffff815aaeb0 t __UNIQUE_ID_quirk_piix4_acpi410
-ffffffff815aaec0 t __UNIQUE_ID_quirk_ich4_lpc_acpi412
-ffffffff815aaf70 t __UNIQUE_ID_quirk_ich4_lpc_acpi414
-ffffffff815ab020 t __UNIQUE_ID_quirk_ich4_lpc_acpi416
-ffffffff815ab0d0 t __UNIQUE_ID_quirk_ich4_lpc_acpi418
-ffffffff815ab180 t __UNIQUE_ID_quirk_ich4_lpc_acpi420
-ffffffff815ab230 t __UNIQUE_ID_quirk_ich4_lpc_acpi422
-ffffffff815ab2e0 t __UNIQUE_ID_quirk_ich4_lpc_acpi424
-ffffffff815ab390 t __UNIQUE_ID_quirk_ich4_lpc_acpi426
-ffffffff815ab440 t __UNIQUE_ID_quirk_ich4_lpc_acpi428
-ffffffff815ab4f0 t __UNIQUE_ID_quirk_ich4_lpc_acpi430
-ffffffff815ab5a0 t __UNIQUE_ID_quirk_ich6_lpc432
-ffffffff815ab5b0 t quirk_ich6_lpc
-ffffffff815ab6f0 t __UNIQUE_ID_quirk_ich6_lpc434
-ffffffff815ab700 t __UNIQUE_ID_quirk_ich7_lpc436
-ffffffff815ab710 t quirk_ich7_lpc
-ffffffff815ab910 t __UNIQUE_ID_quirk_ich7_lpc438
-ffffffff815ab920 t __UNIQUE_ID_quirk_ich7_lpc440
-ffffffff815ab930 t __UNIQUE_ID_quirk_ich7_lpc442
-ffffffff815ab940 t __UNIQUE_ID_quirk_ich7_lpc444
-ffffffff815ab950 t __UNIQUE_ID_quirk_ich7_lpc446
-ffffffff815ab960 t __UNIQUE_ID_quirk_ich7_lpc448
-ffffffff815ab970 t __UNIQUE_ID_quirk_ich7_lpc450
-ffffffff815ab980 t __UNIQUE_ID_quirk_ich7_lpc452
-ffffffff815ab990 t __UNIQUE_ID_quirk_ich7_lpc454
-ffffffff815ab9a0 t __UNIQUE_ID_quirk_ich7_lpc456
-ffffffff815ab9b0 t __UNIQUE_ID_quirk_ich7_lpc458
-ffffffff815ab9c0 t __UNIQUE_ID_quirk_ich7_lpc460
-ffffffff815ab9d0 t __UNIQUE_ID_quirk_vt82c586_acpi462
-ffffffff815aba00 t __UNIQUE_ID_quirk_vt82c686_acpi464
-ffffffff815aba70 t __UNIQUE_ID_quirk_vt8235_acpi466
-ffffffff815abac0 t __UNIQUE_ID_quirk_xio2000a468
-ffffffff815abb80 t __UNIQUE_ID_quirk_via_ioapic470
-ffffffff815abbe0 t __UNIQUE_ID_quirk_via_ioapic472
-ffffffff815abc40 t __UNIQUE_ID_quirk_via_vt8237_bypass_apic_deassert474
-ffffffff815abcc0 t __UNIQUE_ID_quirk_via_vt8237_bypass_apic_deassert476
-ffffffff815abd40 t __UNIQUE_ID_quirk_amd_ioapic478
-ffffffff815abd80 t __UNIQUE_ID_quirk_amd_8131_mmrbc480
-ffffffff815abdd0 t __UNIQUE_ID_quirk_via_acpi482
-ffffffff815abe30 t __UNIQUE_ID_quirk_via_acpi484
-ffffffff815abe90 t __UNIQUE_ID_quirk_via_bridge486
-ffffffff815abf40 t __UNIQUE_ID_quirk_via_bridge488
-ffffffff815abff0 t __UNIQUE_ID_quirk_via_bridge490
-ffffffff815ac0a0 t __UNIQUE_ID_quirk_via_bridge492
-ffffffff815ac150 t __UNIQUE_ID_quirk_via_bridge494
-ffffffff815ac200 t __UNIQUE_ID_quirk_via_bridge496
-ffffffff815ac2b0 t __UNIQUE_ID_quirk_via_bridge498
-ffffffff815ac360 t __UNIQUE_ID_quirk_via_bridge500
-ffffffff815ac410 t __UNIQUE_ID_quirk_via_vlink502
-ffffffff815ac4e0 t __UNIQUE_ID_quirk_vt82c598_id504
-ffffffff815ac510 t __UNIQUE_ID_quirk_cardbus_legacy506
-ffffffff815ac530 t __UNIQUE_ID_quirk_cardbus_legacy508
-ffffffff815ac550 t __UNIQUE_ID_quirk_amd_ordering510
-ffffffff815ac560 t quirk_amd_ordering
-ffffffff815ac610 t __UNIQUE_ID_quirk_amd_ordering512
-ffffffff815ac620 t __UNIQUE_ID_quirk_dunord514
-ffffffff815ac650 t __UNIQUE_ID_quirk_transparent_bridge516
-ffffffff815ac670 t __UNIQUE_ID_quirk_transparent_bridge518
-ffffffff815ac690 t __UNIQUE_ID_quirk_mediagx_master520
-ffffffff815ac710 t __UNIQUE_ID_quirk_mediagx_master522
-ffffffff815ac790 t __UNIQUE_ID_quirk_disable_pxb524
-ffffffff815ac820 t __UNIQUE_ID_quirk_disable_pxb526
-ffffffff815ac8b0 t __UNIQUE_ID_quirk_amd_ide_mode528
-ffffffff815ac8c0 t quirk_amd_ide_mode
-ffffffff815ac9a0 t __UNIQUE_ID_quirk_amd_ide_mode530
-ffffffff815ac9b0 t __UNIQUE_ID_quirk_amd_ide_mode532
-ffffffff815ac9c0 t __UNIQUE_ID_quirk_amd_ide_mode534
-ffffffff815ac9d0 t __UNIQUE_ID_quirk_amd_ide_mode536
-ffffffff815ac9e0 t __UNIQUE_ID_quirk_amd_ide_mode538
-ffffffff815ac9f0 t __UNIQUE_ID_quirk_amd_ide_mode540
-ffffffff815aca00 t __UNIQUE_ID_quirk_amd_ide_mode542
-ffffffff815aca10 t __UNIQUE_ID_quirk_svwks_csb5ide544
-ffffffff815aca80 t __UNIQUE_ID_quirk_ide_samemode546
-ffffffff815acb10 t __UNIQUE_ID_quirk_no_ata_d3548
-ffffffff815acb30 t __UNIQUE_ID_quirk_no_ata_d3550
-ffffffff815acb50 t __UNIQUE_ID_quirk_no_ata_d3552
-ffffffff815acb70 t __UNIQUE_ID_quirk_no_ata_d3554
-ffffffff815acb90 t __UNIQUE_ID_quirk_eisa_bridge556
-ffffffff815acbb0 t __UNIQUE_ID_asus_hides_smbus_hostbridge558
-ffffffff815acbc0 t asus_hides_smbus_hostbridge
-ffffffff815aceb0 t __UNIQUE_ID_asus_hides_smbus_hostbridge560
-ffffffff815acec0 t __UNIQUE_ID_asus_hides_smbus_hostbridge562
-ffffffff815aced0 t __UNIQUE_ID_asus_hides_smbus_hostbridge564
-ffffffff815acee0 t __UNIQUE_ID_asus_hides_smbus_hostbridge566
-ffffffff815acef0 t __UNIQUE_ID_asus_hides_smbus_hostbridge568
-ffffffff815acf00 t __UNIQUE_ID_asus_hides_smbus_hostbridge570
-ffffffff815acf10 t __UNIQUE_ID_asus_hides_smbus_hostbridge572
-ffffffff815acf20 t __UNIQUE_ID_asus_hides_smbus_hostbridge574
-ffffffff815acf30 t __UNIQUE_ID_asus_hides_smbus_hostbridge576
-ffffffff815acf40 t __UNIQUE_ID_asus_hides_smbus_hostbridge578
-ffffffff815acf50 t __UNIQUE_ID_asus_hides_smbus_hostbridge580
-ffffffff815acf60 t __UNIQUE_ID_asus_hides_smbus_hostbridge582
-ffffffff815acf70 t __UNIQUE_ID_asus_hides_smbus_lpc584
-ffffffff815acf80 t asus_hides_smbus_lpc
-ffffffff815ad040 t __UNIQUE_ID_asus_hides_smbus_lpc586
-ffffffff815ad050 t __UNIQUE_ID_asus_hides_smbus_lpc588
-ffffffff815ad060 t __UNIQUE_ID_asus_hides_smbus_lpc590
-ffffffff815ad070 t __UNIQUE_ID_asus_hides_smbus_lpc592
-ffffffff815ad080 t __UNIQUE_ID_asus_hides_smbus_lpc594
-ffffffff815ad090 t __UNIQUE_ID_asus_hides_smbus_lpc596
-ffffffff815ad0a0 t __UNIQUE_ID_asus_hides_smbus_lpc598
-ffffffff815ad0b0 t __UNIQUE_ID_asus_hides_smbus_lpc600
-ffffffff815ad0c0 t __UNIQUE_ID_asus_hides_smbus_lpc602
-ffffffff815ad0d0 t __UNIQUE_ID_asus_hides_smbus_lpc604
-ffffffff815ad0e0 t __UNIQUE_ID_asus_hides_smbus_lpc606
-ffffffff815ad0f0 t __UNIQUE_ID_asus_hides_smbus_lpc608
-ffffffff815ad100 t __UNIQUE_ID_asus_hides_smbus_lpc610
-ffffffff815ad110 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6612
-ffffffff815ad220 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_suspend614
-ffffffff815ad2b0 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume616
-ffffffff815ad300 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume_early618
-ffffffff815ad340 t __UNIQUE_ID_quirk_sis_96x_smbus620
-ffffffff815ad3c0 t __UNIQUE_ID_quirk_sis_96x_smbus622
-ffffffff815ad440 t __UNIQUE_ID_quirk_sis_96x_smbus624
-ffffffff815ad4c0 t __UNIQUE_ID_quirk_sis_96x_smbus626
-ffffffff815ad540 t __UNIQUE_ID_quirk_sis_96x_smbus628
-ffffffff815ad5c0 t __UNIQUE_ID_quirk_sis_96x_smbus630
-ffffffff815ad640 t __UNIQUE_ID_quirk_sis_96x_smbus632
-ffffffff815ad6c0 t __UNIQUE_ID_quirk_sis_96x_smbus634
-ffffffff815ad740 t __UNIQUE_ID_quirk_sis_503636
-ffffffff815ad750 t quirk_sis_503
-ffffffff815ad840 t __UNIQUE_ID_quirk_sis_503638
-ffffffff815ad850 t __UNIQUE_ID_asus_hides_ac97_lpc640
-ffffffff815ad860 t asus_hides_ac97_lpc
-ffffffff815ad920 t __UNIQUE_ID_asus_hides_ac97_lpc642
-ffffffff815ad930 t __UNIQUE_ID_quirk_jmicron_async_suspend644
-ffffffff815ad980 t __UNIQUE_ID_quirk_jmicron_async_suspend646
-ffffffff815ad9d0 t __UNIQUE_ID_quirk_jmicron_async_suspend648
-ffffffff815ada20 t __UNIQUE_ID_quirk_jmicron_async_suspend650
-ffffffff815ada70 t __UNIQUE_ID_quirk_alder_ioapic652
-ffffffff815adae0 t __UNIQUE_ID_quirk_no_msi654
-ffffffff815adb10 t __UNIQUE_ID_quirk_no_msi656
-ffffffff815adb40 t __UNIQUE_ID_quirk_no_msi658
-ffffffff815adb70 t __UNIQUE_ID_quirk_no_msi660
-ffffffff815adba0 t __UNIQUE_ID_quirk_no_msi662
-ffffffff815adbd0 t __UNIQUE_ID_quirk_no_msi664
-ffffffff815adc00 t __UNIQUE_ID_quirk_pcie_mch666
-ffffffff815adc20 t __UNIQUE_ID_quirk_pcie_mch668
-ffffffff815adc40 t __UNIQUE_ID_quirk_pcie_mch670
-ffffffff815adc60 t __UNIQUE_ID_quirk_pcie_mch672
-ffffffff815adc80 t __UNIQUE_ID_quirk_huawei_pcie_sva674
-ffffffff815add70 t __UNIQUE_ID_quirk_huawei_pcie_sva676
-ffffffff815ade60 t __UNIQUE_ID_quirk_huawei_pcie_sva678
-ffffffff815adf50 t __UNIQUE_ID_quirk_huawei_pcie_sva680
-ffffffff815ae040 t __UNIQUE_ID_quirk_huawei_pcie_sva682
-ffffffff815ae130 t __UNIQUE_ID_quirk_huawei_pcie_sva684
-ffffffff815ae220 t __UNIQUE_ID_quirk_pcie_pxh686
-ffffffff815ae250 t __UNIQUE_ID_quirk_pcie_pxh688
-ffffffff815ae280 t __UNIQUE_ID_quirk_pcie_pxh690
-ffffffff815ae2b0 t __UNIQUE_ID_quirk_pcie_pxh692
-ffffffff815ae2e0 t __UNIQUE_ID_quirk_pcie_pxh694
-ffffffff815ae310 t __UNIQUE_ID_quirk_intel_pcie_pm696
-ffffffff815ae330 t __UNIQUE_ID_quirk_intel_pcie_pm698
-ffffffff815ae350 t __UNIQUE_ID_quirk_intel_pcie_pm700
-ffffffff815ae370 t __UNIQUE_ID_quirk_intel_pcie_pm702
-ffffffff815ae390 t __UNIQUE_ID_quirk_intel_pcie_pm704
-ffffffff815ae3b0 t __UNIQUE_ID_quirk_intel_pcie_pm706
-ffffffff815ae3d0 t __UNIQUE_ID_quirk_intel_pcie_pm708
-ffffffff815ae3f0 t __UNIQUE_ID_quirk_intel_pcie_pm710
-ffffffff815ae410 t __UNIQUE_ID_quirk_intel_pcie_pm712
-ffffffff815ae430 t __UNIQUE_ID_quirk_intel_pcie_pm714
-ffffffff815ae450 t __UNIQUE_ID_quirk_intel_pcie_pm716
-ffffffff815ae470 t __UNIQUE_ID_quirk_intel_pcie_pm718
-ffffffff815ae490 t __UNIQUE_ID_quirk_intel_pcie_pm720
-ffffffff815ae4b0 t __UNIQUE_ID_quirk_intel_pcie_pm722
-ffffffff815ae4d0 t __UNIQUE_ID_quirk_intel_pcie_pm724
-ffffffff815ae4f0 t __UNIQUE_ID_quirk_intel_pcie_pm726
-ffffffff815ae510 t __UNIQUE_ID_quirk_intel_pcie_pm728
-ffffffff815ae530 t __UNIQUE_ID_quirk_intel_pcie_pm730
-ffffffff815ae550 t __UNIQUE_ID_quirk_intel_pcie_pm732
-ffffffff815ae570 t __UNIQUE_ID_quirk_intel_pcie_pm734
-ffffffff815ae590 t __UNIQUE_ID_quirk_intel_pcie_pm736
-ffffffff815ae5b0 t __UNIQUE_ID_quirk_radeon_pm738
-ffffffff815ae610 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot740
-ffffffff815ae650 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot742
-ffffffff815ae690 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot744
-ffffffff815ae6d0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel746
-ffffffff815ae750 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel748
-ffffffff815ae7d0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel750
-ffffffff815ae850 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel752
-ffffffff815ae8d0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel754
-ffffffff815ae950 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel756
-ffffffff815ae9d0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel758
-ffffffff815aea50 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel760
-ffffffff815aead0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel762
-ffffffff815aeb50 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel764
-ffffffff815aebd0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel766
-ffffffff815aec50 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel768
-ffffffff815aecd0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel770
-ffffffff815aed50 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel772
-ffffffff815aedd0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel774
-ffffffff815aee50 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel776
-ffffffff815aeed0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt778
-ffffffff815aeee0 t quirk_disable_intel_boot_interrupt
-ffffffff815aeff0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt780
-ffffffff815af000 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt782
-ffffffff815af010 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt784
-ffffffff815af020 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt786
-ffffffff815af030 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt788
-ffffffff815af040 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt790
-ffffffff815af050 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt792
-ffffffff815af060 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt794
-ffffffff815af070 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt796
-ffffffff815af080 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt798
-ffffffff815af090 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt800
-ffffffff815af0a0 t __UNIQUE_ID_quirk_disable_broadcom_boot_interrupt802
-ffffffff815af0b0 t quirk_disable_broadcom_boot_interrupt
-ffffffff815af170 t __UNIQUE_ID_quirk_disable_broadcom_boot_interrupt804
-ffffffff815af180 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt806
-ffffffff815af220 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt808
-ffffffff815af2c0 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt810
-ffffffff815af360 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt812
-ffffffff815af400 t __UNIQUE_ID_quirk_disable_amd_8111_boot_interrupt814
-ffffffff815af490 t __UNIQUE_ID_quirk_disable_amd_8111_boot_interrupt816
-ffffffff815af520 t __UNIQUE_ID_quirk_tc86c001_ide818
-ffffffff815af560 t __UNIQUE_ID_quirk_plx_pci9050820
-ffffffff815af630 t __UNIQUE_ID_quirk_plx_pci9050822
-ffffffff815af700 t __UNIQUE_ID_quirk_plx_pci9050824
-ffffffff815af7d0 t __UNIQUE_ID_quirk_netmos826
-ffffffff815af870 t __UNIQUE_ID_quirk_e100_interrupt828
-ffffffff815af9f0 t __UNIQUE_ID_quirk_disable_aspm_l0s830
-ffffffff815afa30 t __UNIQUE_ID_quirk_disable_aspm_l0s832
-ffffffff815afa70 t __UNIQUE_ID_quirk_disable_aspm_l0s834
-ffffffff815afab0 t __UNIQUE_ID_quirk_disable_aspm_l0s836
-ffffffff815afaf0 t __UNIQUE_ID_quirk_disable_aspm_l0s838
-ffffffff815afb30 t __UNIQUE_ID_quirk_disable_aspm_l0s840
-ffffffff815afb70 t __UNIQUE_ID_quirk_disable_aspm_l0s842
-ffffffff815afbb0 t __UNIQUE_ID_quirk_disable_aspm_l0s844
-ffffffff815afbf0 t __UNIQUE_ID_quirk_disable_aspm_l0s846
-ffffffff815afc30 t __UNIQUE_ID_quirk_disable_aspm_l0s848
-ffffffff815afc70 t __UNIQUE_ID_quirk_disable_aspm_l0s850
-ffffffff815afcb0 t __UNIQUE_ID_quirk_disable_aspm_l0s852
-ffffffff815afcf0 t __UNIQUE_ID_quirk_disable_aspm_l0s854
-ffffffff815afd30 t __UNIQUE_ID_quirk_disable_aspm_l0s856
-ffffffff815afd70 t __UNIQUE_ID_quirk_disable_aspm_l0s_l1858
-ffffffff815afdb0 t __UNIQUE_ID_quirk_enable_clear_retrain_link860
-ffffffff815afde0 t __UNIQUE_ID_quirk_enable_clear_retrain_link862
-ffffffff815afe10 t __UNIQUE_ID_quirk_enable_clear_retrain_link864
-ffffffff815afe40 t __UNIQUE_ID_fixup_rev1_53c810866
-ffffffff815afe80 t __UNIQUE_ID_quirk_p64h2_1k_io868
-ffffffff815afef0 t __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap870
-ffffffff815aff80 t __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap872
-ffffffff815b0010 t __UNIQUE_ID_quirk_via_cx700_pci_parking_caching874
-ffffffff815b0130 t __UNIQUE_ID_quirk_brcm_5719_limit_mrrs876
-ffffffff815b01b0 t __UNIQUE_ID_quirk_unhide_mch_dev6878
-ffffffff815b0230 t __UNIQUE_ID_quirk_unhide_mch_dev6880
-ffffffff815b02b0 t __UNIQUE_ID_quirk_disable_all_msi882
-ffffffff815b02e0 t __UNIQUE_ID_quirk_disable_all_msi884
-ffffffff815b0310 t __UNIQUE_ID_quirk_disable_all_msi886
-ffffffff815b0340 t __UNIQUE_ID_quirk_disable_all_msi888
-ffffffff815b0370 t __UNIQUE_ID_quirk_disable_all_msi890
-ffffffff815b03a0 t __UNIQUE_ID_quirk_disable_all_msi892
-ffffffff815b03d0 t __UNIQUE_ID_quirk_disable_all_msi894
-ffffffff815b0400 t __UNIQUE_ID_quirk_disable_all_msi896
-ffffffff815b0430 t __UNIQUE_ID_quirk_disable_all_msi898
-ffffffff815b0460 t __UNIQUE_ID_quirk_disable_msi900
-ffffffff815b04a0 t __UNIQUE_ID_quirk_disable_msi902
-ffffffff815b04e0 t __UNIQUE_ID_quirk_disable_msi904
-ffffffff815b0520 t __UNIQUE_ID_quirk_amd_780_apc_msi906
-ffffffff815b0590 t __UNIQUE_ID_quirk_amd_780_apc_msi908
-ffffffff815b0600 t __UNIQUE_ID_quirk_msi_ht_cap910
-ffffffff815b0650 t __UNIQUE_ID_quirk_nvidia_ck804_msi_ht_cap912
-ffffffff815b06c0 t __UNIQUE_ID_ht_enable_msi_mapping914
-ffffffff815b06d0 t ht_enable_msi_mapping
-ffffffff815b07b0 t __UNIQUE_ID_ht_enable_msi_mapping916
-ffffffff815b07c0 t __UNIQUE_ID_nvenet_msi_disable918
-ffffffff815b0830 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi920
-ffffffff815b0850 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi922
-ffffffff815b0870 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi924
-ffffffff815b0890 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi926
-ffffffff815b08b0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi928
-ffffffff815b08d0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi930
-ffffffff815b08f0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi932
-ffffffff815b0910 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi934
-ffffffff815b0930 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi936
-ffffffff815b0950 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi938
-ffffffff815b0970 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi940
-ffffffff815b0990 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi942
-ffffffff815b09b0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi944
-ffffffff815b09d0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi946
-ffffffff815b09f0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi948
-ffffffff815b0a10 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi950
-ffffffff815b0a30 t __UNIQUE_ID_nvbridge_check_legacy_irq_routing952
-ffffffff815b0ac0 t __UNIQUE_ID_nvbridge_check_legacy_irq_routing954
-ffffffff815b0b50 t __UNIQUE_ID_nv_msi_ht_cap_quirk_all956
-ffffffff815b0b70 t __UNIQUE_ID_nv_msi_ht_cap_quirk_all958
-ffffffff815b0b90 t __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf960
-ffffffff815b0bb0 t __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf962
-ffffffff815b0bd0 t __UNIQUE_ID_quirk_msi_intx_disable_bug964
-ffffffff815b0bf0 t __UNIQUE_ID_quirk_msi_intx_disable_bug966
-ffffffff815b0c10 t __UNIQUE_ID_quirk_msi_intx_disable_bug968
-ffffffff815b0c30 t __UNIQUE_ID_quirk_msi_intx_disable_bug970
-ffffffff815b0c50 t __UNIQUE_ID_quirk_msi_intx_disable_bug972
-ffffffff815b0c70 t __UNIQUE_ID_quirk_msi_intx_disable_bug974
-ffffffff815b0c90 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug976
-ffffffff815b0ce0 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug978
-ffffffff815b0d30 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug980
-ffffffff815b0d80 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug982
-ffffffff815b0dd0 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug984
-ffffffff815b0e20 t __UNIQUE_ID_quirk_msi_intx_disable_bug986
-ffffffff815b0e40 t __UNIQUE_ID_quirk_msi_intx_disable_bug988
-ffffffff815b0e60 t __UNIQUE_ID_quirk_msi_intx_disable_bug990
-ffffffff815b0e80 t __UNIQUE_ID_quirk_msi_intx_disable_bug992
-ffffffff815b0ea0 t __UNIQUE_ID_quirk_msi_intx_disable_bug994
-ffffffff815b0ec0 t __UNIQUE_ID_quirk_msi_intx_disable_bug996
-ffffffff815b0ee0 t __UNIQUE_ID_quirk_msi_intx_disable_bug998
-ffffffff815b0f00 t __UNIQUE_ID_quirk_msi_intx_disable_bug1000
-ffffffff815b0f20 t __UNIQUE_ID_quirk_msi_intx_disable_bug1002
-ffffffff815b0f40 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1004
-ffffffff815b0f80 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1006
-ffffffff815b0fc0 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1008
-ffffffff815b1000 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1010
-ffffffff815b1040 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1012
-ffffffff815b1080 t __UNIQUE_ID_quirk_al_msi_disable1014
-ffffffff815b10b0 t __UNIQUE_ID_quirk_hotplug_bridge1016
-ffffffff815b10d0 t __UNIQUE_ID_fixup_ti816x_class1018
-ffffffff815b1100 t __UNIQUE_ID_fixup_mpss_2561020
-ffffffff815b1120 t __UNIQUE_ID_fixup_mpss_2561022
-ffffffff815b1140 t __UNIQUE_ID_fixup_mpss_2561024
-ffffffff815b1160 t __UNIQUE_ID_fixup_mpss_2561026
-ffffffff815b1180 t __UNIQUE_ID_quirk_intel_mc_errata1028
-ffffffff815b1190 t quirk_intel_mc_errata
-ffffffff815b1260 t __UNIQUE_ID_quirk_intel_mc_errata1030
-ffffffff815b1270 t __UNIQUE_ID_quirk_intel_mc_errata1032
-ffffffff815b1280 t __UNIQUE_ID_quirk_intel_mc_errata1034
-ffffffff815b1290 t __UNIQUE_ID_quirk_intel_mc_errata1036
-ffffffff815b12a0 t __UNIQUE_ID_quirk_intel_mc_errata1038
-ffffffff815b12b0 t __UNIQUE_ID_quirk_intel_mc_errata1040
-ffffffff815b12c0 t __UNIQUE_ID_quirk_intel_mc_errata1042
-ffffffff815b12d0 t __UNIQUE_ID_quirk_intel_mc_errata1044
-ffffffff815b12e0 t __UNIQUE_ID_quirk_intel_mc_errata1046
-ffffffff815b12f0 t __UNIQUE_ID_quirk_intel_mc_errata1048
-ffffffff815b1300 t __UNIQUE_ID_quirk_intel_mc_errata1050
-ffffffff815b1310 t __UNIQUE_ID_quirk_intel_mc_errata1052
-ffffffff815b1320 t __UNIQUE_ID_quirk_intel_mc_errata1054
-ffffffff815b1330 t __UNIQUE_ID_quirk_intel_mc_errata1056
-ffffffff815b1340 t __UNIQUE_ID_quirk_intel_mc_errata1058
-ffffffff815b1350 t __UNIQUE_ID_quirk_intel_mc_errata1060
-ffffffff815b1360 t __UNIQUE_ID_quirk_intel_mc_errata1062
-ffffffff815b1370 t __UNIQUE_ID_quirk_intel_mc_errata1064
-ffffffff815b1380 t __UNIQUE_ID_quirk_intel_mc_errata1066
-ffffffff815b1390 t __UNIQUE_ID_quirk_intel_mc_errata1068
-ffffffff815b13a0 t __UNIQUE_ID_quirk_intel_mc_errata1070
-ffffffff815b13b0 t __UNIQUE_ID_quirk_intel_mc_errata1072
-ffffffff815b13c0 t __UNIQUE_ID_quirk_intel_mc_errata1074
-ffffffff815b13d0 t __UNIQUE_ID_quirk_intel_mc_errata1076
-ffffffff815b13e0 t __UNIQUE_ID_quirk_intel_ntb1078
-ffffffff815b1490 t __UNIQUE_ID_quirk_intel_ntb1080
-ffffffff815b1540 t __UNIQUE_ID_disable_igfx_irq1082
-ffffffff815b15b0 t __UNIQUE_ID_disable_igfx_irq1084
-ffffffff815b1620 t __UNIQUE_ID_disable_igfx_irq1086
-ffffffff815b1690 t __UNIQUE_ID_disable_igfx_irq1088
-ffffffff815b1700 t __UNIQUE_ID_disable_igfx_irq1090
-ffffffff815b1770 t __UNIQUE_ID_disable_igfx_irq1092
-ffffffff815b17e0 t __UNIQUE_ID_disable_igfx_irq1094
-ffffffff815b1850 t __UNIQUE_ID_quirk_remove_d3hot_delay1096
-ffffffff815b1870 t __UNIQUE_ID_quirk_remove_d3hot_delay1098
-ffffffff815b1890 t __UNIQUE_ID_quirk_remove_d3hot_delay1100
-ffffffff815b18b0 t __UNIQUE_ID_quirk_remove_d3hot_delay1102
-ffffffff815b18d0 t __UNIQUE_ID_quirk_remove_d3hot_delay1104
-ffffffff815b18f0 t __UNIQUE_ID_quirk_remove_d3hot_delay1106
-ffffffff815b1910 t __UNIQUE_ID_quirk_remove_d3hot_delay1108
-ffffffff815b1930 t __UNIQUE_ID_quirk_remove_d3hot_delay1110
-ffffffff815b1950 t __UNIQUE_ID_quirk_remove_d3hot_delay1112
-ffffffff815b1970 t __UNIQUE_ID_quirk_remove_d3hot_delay1114
-ffffffff815b1990 t __UNIQUE_ID_quirk_remove_d3hot_delay1116
-ffffffff815b19b0 t __UNIQUE_ID_quirk_remove_d3hot_delay1118
-ffffffff815b19d0 t __UNIQUE_ID_quirk_remove_d3hot_delay1120
-ffffffff815b19f0 t __UNIQUE_ID_quirk_remove_d3hot_delay1122
-ffffffff815b1a10 t __UNIQUE_ID_quirk_remove_d3hot_delay1124
-ffffffff815b1a30 t __UNIQUE_ID_quirk_remove_d3hot_delay1126
-ffffffff815b1a50 t __UNIQUE_ID_quirk_remove_d3hot_delay1128
-ffffffff815b1a70 t __UNIQUE_ID_quirk_remove_d3hot_delay1130
-ffffffff815b1a90 t __UNIQUE_ID_quirk_remove_d3hot_delay1132
-ffffffff815b1ab0 t __UNIQUE_ID_quirk_remove_d3hot_delay1134
-ffffffff815b1ad0 t __UNIQUE_ID_quirk_remove_d3hot_delay1136
-ffffffff815b1af0 t __UNIQUE_ID_quirk_remove_d3hot_delay1138
-ffffffff815b1b10 t __UNIQUE_ID_quirk_remove_d3hot_delay1140
-ffffffff815b1b30 t __UNIQUE_ID_quirk_broken_intx_masking1142
-ffffffff815b1b50 t __UNIQUE_ID_quirk_broken_intx_masking1144
-ffffffff815b1b70 t __UNIQUE_ID_quirk_broken_intx_masking1146
-ffffffff815b1b90 t __UNIQUE_ID_quirk_broken_intx_masking1148
-ffffffff815b1bb0 t __UNIQUE_ID_quirk_broken_intx_masking1150
-ffffffff815b1bd0 t __UNIQUE_ID_quirk_broken_intx_masking1152
-ffffffff815b1bf0 t __UNIQUE_ID_quirk_broken_intx_masking1154
-ffffffff815b1c10 t __UNIQUE_ID_quirk_broken_intx_masking1156
-ffffffff815b1c30 t __UNIQUE_ID_quirk_broken_intx_masking1158
-ffffffff815b1c50 t __UNIQUE_ID_quirk_broken_intx_masking1160
-ffffffff815b1c70 t __UNIQUE_ID_quirk_broken_intx_masking1162
-ffffffff815b1c90 t __UNIQUE_ID_quirk_broken_intx_masking1164
-ffffffff815b1cb0 t __UNIQUE_ID_quirk_broken_intx_masking1166
-ffffffff815b1cd0 t __UNIQUE_ID_quirk_broken_intx_masking1168
-ffffffff815b1cf0 t __UNIQUE_ID_quirk_broken_intx_masking1170
-ffffffff815b1d10 t __UNIQUE_ID_quirk_broken_intx_masking1172
-ffffffff815b1d30 t __UNIQUE_ID_quirk_broken_intx_masking1174
-ffffffff815b1d50 t __UNIQUE_ID_quirk_broken_intx_masking1176
-ffffffff815b1d70 t __UNIQUE_ID_quirk_broken_intx_masking1178
-ffffffff815b1d90 t __UNIQUE_ID_quirk_broken_intx_masking1180
-ffffffff815b1db0 t __UNIQUE_ID_mellanox_check_broken_intx_masking1182
-ffffffff815b1f20 t __UNIQUE_ID_quirk_nvidia_no_bus_reset1184
-ffffffff815b1f40 t __UNIQUE_ID_quirk_no_bus_reset1186
-ffffffff815b1f60 t __UNIQUE_ID_quirk_no_bus_reset1188
-ffffffff815b1f80 t __UNIQUE_ID_quirk_no_bus_reset1190
-ffffffff815b1fa0 t __UNIQUE_ID_quirk_no_bus_reset1192
-ffffffff815b1fc0 t __UNIQUE_ID_quirk_no_bus_reset1194
-ffffffff815b1fe0 t __UNIQUE_ID_quirk_no_bus_reset1196
-ffffffff815b2000 t __UNIQUE_ID_quirk_no_bus_reset1198
-ffffffff815b2020 t __UNIQUE_ID_quirk_no_bus_reset1200
-ffffffff815b2040 t __UNIQUE_ID_quirk_no_pm_reset1202
-ffffffff815b2060 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1204
-ffffffff815b20b0 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1206
-ffffffff815b2100 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1208
-ffffffff815b2150 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1210
-ffffffff815b21a0 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1212
-ffffffff815b21f0 t __UNIQUE_ID_quirk_apple_poweroff_thunderbolt1214
-ffffffff815b2350 t pci_dev_specific_reset
-ffffffff815b2420 t __UNIQUE_ID_quirk_dma_func0_alias1216
-ffffffff815b2450 t __UNIQUE_ID_quirk_dma_func0_alias1218
-ffffffff815b2480 t __UNIQUE_ID_quirk_dma_func1_alias1220
-ffffffff815b24b0 t __UNIQUE_ID_quirk_dma_func1_alias1222
-ffffffff815b24e0 t __UNIQUE_ID_quirk_dma_func1_alias1224
-ffffffff815b2510 t __UNIQUE_ID_quirk_dma_func1_alias1226
-ffffffff815b2540 t __UNIQUE_ID_quirk_dma_func1_alias1228
-ffffffff815b2570 t __UNIQUE_ID_quirk_dma_func1_alias1230
-ffffffff815b25a0 t __UNIQUE_ID_quirk_dma_func1_alias1232
-ffffffff815b25d0 t __UNIQUE_ID_quirk_dma_func1_alias1234
-ffffffff815b2600 t __UNIQUE_ID_quirk_dma_func1_alias1236
-ffffffff815b2630 t __UNIQUE_ID_quirk_dma_func1_alias1238
-ffffffff815b2660 t __UNIQUE_ID_quirk_dma_func1_alias1240
-ffffffff815b2690 t __UNIQUE_ID_quirk_dma_func1_alias1242
-ffffffff815b26c0 t __UNIQUE_ID_quirk_dma_func1_alias1244
-ffffffff815b26f0 t __UNIQUE_ID_quirk_dma_func1_alias1246
-ffffffff815b2720 t __UNIQUE_ID_quirk_dma_func1_alias1248
-ffffffff815b2750 t __UNIQUE_ID_quirk_dma_func1_alias1250
-ffffffff815b2780 t __UNIQUE_ID_quirk_dma_func1_alias1252
-ffffffff815b27b0 t __UNIQUE_ID_quirk_dma_func1_alias1254
-ffffffff815b27e0 t __UNIQUE_ID_quirk_fixed_dma_alias1256
-ffffffff815b2820 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1258
-ffffffff815b2870 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1260
-ffffffff815b28c0 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1262
-ffffffff815b2910 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1264
-ffffffff815b2960 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1266
-ffffffff815b29b0 t __UNIQUE_ID_quirk_mic_x200_dma_alias1268
-ffffffff815b2a00 t __UNIQUE_ID_quirk_mic_x200_dma_alias1270
-ffffffff815b2a50 t __UNIQUE_ID_quirk_pex_vca_alias1272
-ffffffff815b2a90 t __UNIQUE_ID_quirk_pex_vca_alias1274
-ffffffff815b2ad0 t __UNIQUE_ID_quirk_pex_vca_alias1276
-ffffffff815b2b10 t __UNIQUE_ID_quirk_pex_vca_alias1278
-ffffffff815b2b50 t __UNIQUE_ID_quirk_pex_vca_alias1280
-ffffffff815b2b90 t __UNIQUE_ID_quirk_pex_vca_alias1282
-ffffffff815b2bd0 t __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1284
-ffffffff815b2bf0 t __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1286
-ffffffff815b2c10 t __UNIQUE_ID_quirk_tw686x_class1288
-ffffffff815b2c40 t __UNIQUE_ID_quirk_tw686x_class1290
-ffffffff815b2c70 t __UNIQUE_ID_quirk_tw686x_class1292
-ffffffff815b2ca0 t __UNIQUE_ID_quirk_tw686x_class1294
-ffffffff815b2cd0 t __UNIQUE_ID_quirk_relaxedordering_disable1296
-ffffffff815b2d00 t __UNIQUE_ID_quirk_relaxedordering_disable1298
-ffffffff815b2d30 t __UNIQUE_ID_quirk_relaxedordering_disable1300
-ffffffff815b2d60 t __UNIQUE_ID_quirk_relaxedordering_disable1302
-ffffffff815b2d90 t __UNIQUE_ID_quirk_relaxedordering_disable1304
-ffffffff815b2dc0 t __UNIQUE_ID_quirk_relaxedordering_disable1306
-ffffffff815b2df0 t __UNIQUE_ID_quirk_relaxedordering_disable1308
-ffffffff815b2e20 t __UNIQUE_ID_quirk_relaxedordering_disable1310
-ffffffff815b2e50 t __UNIQUE_ID_quirk_relaxedordering_disable1312
-ffffffff815b2e80 t __UNIQUE_ID_quirk_relaxedordering_disable1314
-ffffffff815b2eb0 t __UNIQUE_ID_quirk_relaxedordering_disable1316
-ffffffff815b2ee0 t __UNIQUE_ID_quirk_relaxedordering_disable1318
-ffffffff815b2f10 t __UNIQUE_ID_quirk_relaxedordering_disable1320
-ffffffff815b2f40 t __UNIQUE_ID_quirk_relaxedordering_disable1322
-ffffffff815b2f70 t __UNIQUE_ID_quirk_relaxedordering_disable1324
-ffffffff815b2fa0 t __UNIQUE_ID_quirk_relaxedordering_disable1326
-ffffffff815b2fd0 t __UNIQUE_ID_quirk_relaxedordering_disable1328
-ffffffff815b3000 t __UNIQUE_ID_quirk_relaxedordering_disable1330
-ffffffff815b3030 t __UNIQUE_ID_quirk_relaxedordering_disable1332
-ffffffff815b3060 t __UNIQUE_ID_quirk_relaxedordering_disable1334
-ffffffff815b3090 t __UNIQUE_ID_quirk_relaxedordering_disable1336
-ffffffff815b30c0 t __UNIQUE_ID_quirk_relaxedordering_disable1338
-ffffffff815b30f0 t __UNIQUE_ID_quirk_relaxedordering_disable1340
-ffffffff815b3120 t __UNIQUE_ID_quirk_relaxedordering_disable1342
-ffffffff815b3150 t __UNIQUE_ID_quirk_relaxedordering_disable1344
-ffffffff815b3180 t __UNIQUE_ID_quirk_relaxedordering_disable1346
-ffffffff815b31b0 t __UNIQUE_ID_quirk_relaxedordering_disable1348
-ffffffff815b31e0 t __UNIQUE_ID_quirk_relaxedordering_disable1350
-ffffffff815b3210 t __UNIQUE_ID_quirk_relaxedordering_disable1352
-ffffffff815b3240 t __UNIQUE_ID_quirk_relaxedordering_disable1354
-ffffffff815b3270 t __UNIQUE_ID_quirk_relaxedordering_disable1356
-ffffffff815b32a0 t __UNIQUE_ID_quirk_chelsio_T5_disable_root_port_attributes1358
-ffffffff815b3370 t pci_dev_specific_acs_enabled
-ffffffff815b3400 t pci_dev_specific_enable_acs
-ffffffff815b3690 t pci_dev_specific_disable_acs_redir
-ffffffff815b3760 t __UNIQUE_ID_quirk_intel_qat_vf_cap1360
-ffffffff815b3960 t __UNIQUE_ID_quirk_no_flr1362
-ffffffff815b3980 t __UNIQUE_ID_quirk_no_flr1364
-ffffffff815b39a0 t __UNIQUE_ID_quirk_no_flr1366
-ffffffff815b39c0 t __UNIQUE_ID_quirk_no_flr1368
-ffffffff815b39e0 t __UNIQUE_ID_quirk_no_flr1370
-ffffffff815b3a00 t __UNIQUE_ID_quirk_no_flr1372
-ffffffff815b3a20 t __UNIQUE_ID_quirk_no_ext_tags1374
-ffffffff815b3a80 t __UNIQUE_ID_quirk_no_ext_tags1376
-ffffffff815b3ae0 t __UNIQUE_ID_quirk_no_ext_tags1378
-ffffffff815b3b40 t __UNIQUE_ID_quirk_no_ext_tags1380
-ffffffff815b3ba0 t __UNIQUE_ID_quirk_no_ext_tags1382
-ffffffff815b3c00 t __UNIQUE_ID_quirk_no_ext_tags1384
-ffffffff815b3c60 t __UNIQUE_ID_quirk_no_ext_tags1386
-ffffffff815b3cc0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1388
-ffffffff815b3d30 t __UNIQUE_ID_quirk_amd_harvest_no_ats1390
-ffffffff815b3da0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1392
-ffffffff815b3e10 t __UNIQUE_ID_quirk_amd_harvest_no_ats1394
-ffffffff815b3e80 t __UNIQUE_ID_quirk_amd_harvest_no_ats1396
-ffffffff815b3ef0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1398
-ffffffff815b3f60 t __UNIQUE_ID_quirk_amd_harvest_no_ats1400
-ffffffff815b3fd0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1402
-ffffffff815b4040 t __UNIQUE_ID_quirk_amd_harvest_no_ats1404
-ffffffff815b40b0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1406
-ffffffff815b4120 t __UNIQUE_ID_quirk_amd_harvest_no_ats1408
-ffffffff815b4190 t __UNIQUE_ID_quirk_amd_harvest_no_ats1410
-ffffffff815b4200 t __UNIQUE_ID_quirk_amd_harvest_no_ats1412
-ffffffff815b4270 t __UNIQUE_ID_quirk_amd_harvest_no_ats1414
-ffffffff815b42e0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1416
-ffffffff815b4350 t __UNIQUE_ID_quirk_fsl_no_msi1418
-ffffffff815b4380 t __UNIQUE_ID_quirk_gpu_hda1420
-ffffffff815b43a0 t __UNIQUE_ID_quirk_gpu_hda1422
-ffffffff815b43c0 t __UNIQUE_ID_quirk_gpu_hda1424
-ffffffff815b43e0 t __UNIQUE_ID_quirk_gpu_usb1426
-ffffffff815b4400 t __UNIQUE_ID_quirk_gpu_usb1428
-ffffffff815b4420 t __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1430
-ffffffff815b4440 t __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1432
-ffffffff815b4460 t __UNIQUE_ID_quirk_nvidia_hda1434
-ffffffff815b4470 t quirk_nvidia_hda
-ffffffff815b4550 t __UNIQUE_ID_quirk_nvidia_hda1436
-ffffffff815b4560 t pci_idt_bus_quirk
-ffffffff815b4650 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1438
-ffffffff815b4660 t quirk_switchtec_ntb_dma_alias
-ffffffff815b4820 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1440
-ffffffff815b4830 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1442
-ffffffff815b4840 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1444
-ffffffff815b4850 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1446
-ffffffff815b4860 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1448
-ffffffff815b4870 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1450
-ffffffff815b4880 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1452
-ffffffff815b4890 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1454
-ffffffff815b48a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1456
-ffffffff815b48b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1458
-ffffffff815b48c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1460
-ffffffff815b48d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1462
-ffffffff815b48e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1464
-ffffffff815b48f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1466
-ffffffff815b4900 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1468
-ffffffff815b4910 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1470
-ffffffff815b4920 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1472
-ffffffff815b4930 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1474
-ffffffff815b4940 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1476
-ffffffff815b4950 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1478
-ffffffff815b4960 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1480
-ffffffff815b4970 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1482
-ffffffff815b4980 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1484
-ffffffff815b4990 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1486
-ffffffff815b49a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1488
-ffffffff815b49b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1490
-ffffffff815b49c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1492
-ffffffff815b49d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1494
-ffffffff815b49e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1496
-ffffffff815b49f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1498
-ffffffff815b4a00 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1500
-ffffffff815b4a10 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1502
-ffffffff815b4a20 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1504
-ffffffff815b4a30 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1506
-ffffffff815b4a40 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1508
-ffffffff815b4a50 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1510
-ffffffff815b4a60 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1512
-ffffffff815b4a70 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1514
-ffffffff815b4a80 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1516
-ffffffff815b4a90 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1518
-ffffffff815b4aa0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1520
-ffffffff815b4ab0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1522
-ffffffff815b4ac0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1524
-ffffffff815b4ad0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1526
-ffffffff815b4ae0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1528
-ffffffff815b4af0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1530
-ffffffff815b4b00 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1532
-ffffffff815b4b10 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1534
-ffffffff815b4b20 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1536
-ffffffff815b4b30 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1538
-ffffffff815b4b40 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1540
-ffffffff815b4b50 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1542
-ffffffff815b4b60 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1544
-ffffffff815b4b70 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1546
-ffffffff815b4b80 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1548
-ffffffff815b4b90 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1550
-ffffffff815b4ba0 t __UNIQUE_ID_quirk_plx_ntb_dma_alias1552
-ffffffff815b4be0 t __UNIQUE_ID_quirk_plx_ntb_dma_alias1554
-ffffffff815b4c20 t __UNIQUE_ID_quirk_reset_lenovo_thinkpad_p50_nvgpu1556
-ffffffff815b4cf0 t __UNIQUE_ID_pci_fixup_no_d0_pme1558
-ffffffff815b4d20 t __UNIQUE_ID_pci_fixup_no_msi_no_pme1560
-ffffffff815b4d70 t __UNIQUE_ID_pci_fixup_no_msi_no_pme1562
-ffffffff815b4dc0 t __UNIQUE_ID_apex_pci_fixup_class1564
-ffffffff815b4de0 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1566
-ffffffff815b4df0 t pci_fixup_pericom_acs_store_forward
-ffffffff815b4ed0 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1568
-ffffffff815b4ee0 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1570
-ffffffff815b4ef0 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1572
-ffffffff815b4f00 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1574
-ffffffff815b4f10 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1576
-ffffffff815b4f20 t __UNIQUE_ID_nvidia_ion_ahci_fixup1578
-ffffffff815b4f40 t __UNIQUE_ID_rom_bar_overlap_defect1580
-ffffffff815b4f70 t __UNIQUE_ID_rom_bar_overlap_defect1582
-ffffffff815b4fa0 t __UNIQUE_ID_rom_bar_overlap_defect1584
-ffffffff815b4fd0 t __UNIQUE_ID_rom_bar_overlap_defect1586
-ffffffff815b5000 t __UNIQUE_ID_aspm_l1_acceptable_latency1598
-ffffffff815b5040 t __UNIQUE_ID_aspm_l1_acceptable_latency1600
-ffffffff815b5080 t __UNIQUE_ID_aspm_l1_acceptable_latency1602
-ffffffff815b50c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1604
-ffffffff815b5100 t __UNIQUE_ID_aspm_l1_acceptable_latency1606
-ffffffff815b5140 t __UNIQUE_ID_aspm_l1_acceptable_latency1608
-ffffffff815b5180 t __UNIQUE_ID_aspm_l1_acceptable_latency1610
-ffffffff815b51c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1612
-ffffffff815b5200 t __UNIQUE_ID_aspm_l1_acceptable_latency1614
-ffffffff815b5240 t __UNIQUE_ID_aspm_l1_acceptable_latency1616
-ffffffff815b5280 t __UNIQUE_ID_aspm_l1_acceptable_latency1618
-ffffffff815b52c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1620
-ffffffff815b5300 t __UNIQUE_ID_aspm_l1_acceptable_latency1622
-ffffffff815b5340 t __UNIQUE_ID_aspm_l1_acceptable_latency1624
-ffffffff815b5380 t __UNIQUE_ID_aspm_l1_acceptable_latency1626
-ffffffff815b53c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1628
-ffffffff815b5400 t __UNIQUE_ID_aspm_l1_acceptable_latency1630
-ffffffff815b5440 t __UNIQUE_ID_aspm_l1_acceptable_latency1632
-ffffffff815b5480 t __UNIQUE_ID_aspm_l1_acceptable_latency1634
-ffffffff815b54c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1636
-ffffffff815b5500 t __UNIQUE_ID_aspm_l1_acceptable_latency1638
-ffffffff815b5540 t __UNIQUE_ID_aspm_l1_acceptable_latency1640
-ffffffff815b5580 t __UNIQUE_ID_aspm_l1_acceptable_latency1642
-ffffffff815b55c0 t __UNIQUE_ID_aspm_l1_acceptable_latency1644
-ffffffff815b5600 t __UNIQUE_ID_aspm_l1_acceptable_latency1646
-ffffffff815b5640 t __UNIQUE_ID_aspm_l1_acceptable_latency1648
-ffffffff815b5680 t quirk_io_region
-ffffffff815b5780 t dmi_disable_ioapicreroute
-ffffffff815b57b0 t msi_ht_cap_enabled
-ffffffff815b5890 t __nv_msi_ht_cap_quirk
-ffffffff815b5c50 t reset_intel_82599_sfp_virtfn
-ffffffff815b5c70 t reset_ivb_igd
-ffffffff815b5d60 t nvme_disable_and_flr
-ffffffff815b5eb0 t delay_250ms_after_flr
-ffffffff815b5ef0 t reset_chelsio_generic_dev
-ffffffff815b5fe0 t reset_hinic_vf_dev
-ffffffff815b6100 t pci_quirk_amd_sb_acs
-ffffffff815b6190 t pci_quirk_mf_endpoint_acs
-ffffffff815b61b0 t pci_quirk_rciep_acs
-ffffffff815b61e0 t pci_quirk_qcom_rp_acs
-ffffffff815b6200 t pci_quirk_intel_pch_acs
-ffffffff815b62b0 t pci_quirk_intel_spt_pch_acs
-ffffffff815b6360 t pci_quirk_cavium_acs
-ffffffff815b63c0 t pci_quirk_xgene_acs
-ffffffff815b63e0 t pci_quirk_brcm_acs
-ffffffff815b6400 t pci_quirk_al_acs
-ffffffff815b6430 t pci_quirk_nxp_rp_acs
-ffffffff815b6450 t pci_quirk_zhaoxin_pcie_ports_acs
-ffffffff815b64b0 t pci_quirk_wangxun_nic_acs
-ffffffff815b64f0 t pci_quirk_intel_spt_pch_acs_match
-ffffffff815b6560 t pci_create_device_link
-ffffffff815b6630 t pci_ats_init
-ffffffff815b6660 t pci_ats_supported
-ffffffff815b6690 t pci_enable_ats
-ffffffff815b6730 t pci_disable_ats
-ffffffff815b67c0 t pci_restore_ats_state
-ffffffff815b6820 t pci_ats_queue_depth
-ffffffff815b68a0 t pci_ats_page_aligned
-ffffffff815b6900 t pci_iov_virtfn_bus
-ffffffff815b6950 t pci_iov_virtfn_devfn
-ffffffff815b6990 t pci_iov_vf_id
-ffffffff815b69f0 t pci_iov_get_pf_drvdata
-ffffffff815b6a30 t pci_iov_resource_size
-ffffffff815b6a70 t pci_iov_sysfs_link
-ffffffff815b6b40 t sriov_vf_attrs_are_visible
-ffffffff815b6b70 t pci_iov_add_virtfn
-ffffffff815b6f60 t pci_iov_remove_virtfn
-ffffffff815b70b0 t sriov_pf_attrs_are_visible
-ffffffff815b70f0 t pcibios_sriov_enable
-ffffffff815b7100 t pcibios_sriov_disable
-ffffffff815b7110 t pci_iov_init
-ffffffff815b7620 t pci_iov_release
-ffffffff815b7680 t pci_iov_remove
-ffffffff815b76d0 t pci_iov_update_resource
-ffffffff815b7840 t pcibios_iov_resource_alignment
-ffffffff815b7880 t pci_sriov_resource_alignment
-ffffffff815b7890 t pci_restore_iov_state
-ffffffff815b7a00 t pci_vf_drivers_autoprobe
-ffffffff815b7a30 t pci_iov_bus_range
-ffffffff815b7aa0 t pci_enable_sriov
-ffffffff815b7ae0 t sriov_enable
-ffffffff815b7e60 t pci_disable_sriov
-ffffffff815b7e90 t sriov_disable
-ffffffff815b7f80 t pci_num_vf
-ffffffff815b7fb0 t pci_vfs_assigned
-ffffffff815b8050 t pci_sriov_set_totalvfs
-ffffffff815b80a0 t pci_sriov_get_totalvfs
-ffffffff815b80d0 t pci_sriov_configure_simple
-ffffffff815b81c0 t sriov_vf_msix_count_store
-ffffffff815b82f0 t sriov_totalvfs_show
-ffffffff815b8330 t sriov_numvfs_show
-ffffffff815b8390 t sriov_numvfs_store
-ffffffff815b8530 t sriov_offset_show
-ffffffff815b8560 t sriov_stride_show
-ffffffff815b8590 t sriov_vf_device_show
-ffffffff815b85c0 t sriov_drivers_autoprobe_show
-ffffffff815b85f0 t sriov_drivers_autoprobe_store
-ffffffff815b8660 t sriov_vf_total_msix_show
-ffffffff815b86e0 t pci_iov_set_numvfs
-ffffffff815b8730 t sriov_add_vfs
-ffffffff815b87d0 t smbios_attr_is_visible
-ffffffff815b88c0 t acpi_attr_is_visible
-ffffffff815b8920 t smbios_label_show
-ffffffff815b89e0 t index_show
-ffffffff815b8aa0 t label_show
-ffffffff815b8ac0 t dsm_get_label
-ffffffff815b8be0 t acpi_index_show
-ffffffff815b8c00 t vga_default_device
-ffffffff815b8c20 t vga_set_default_device
-ffffffff815b8c50 t vga_remove_vgacon
-ffffffff815b8cd0 t vga_get
-ffffffff815b8e90 t __vga_tryget
-ffffffff815b9050 t vga_put
-ffffffff815b90d0 t __vga_put
-ffffffff815b9180 t vga_set_legacy_decoding
-ffffffff815b91a0 t __vga_set_legacy_decoding
-ffffffff815b9320 t vga_client_register
-ffffffff815b9390 t vga_arbiter_notify_clients
-ffffffff815b9520 t vga_arbiter_add_pci_device
-ffffffff815b9a10 t vga_arb_read
-ffffffff815b9c00 t vga_arb_write
-ffffffff815ba730 t vga_arb_fpoll
-ffffffff815ba760 t vga_arb_open
-ffffffff815ba820 t vga_arb_release
-ffffffff815baad0 t vga_str_to_iostate
-ffffffff815bab60 t vga_tryget
-ffffffff815bac00 t vga_pci_str_to_vars
-ffffffff815bac80 t pci_notify
-ffffffff815badc0 t pci_epc_put
-ffffffff815bade0 t pci_epc_get
-ffffffff815baeb0 t pci_epc_get_first_free_bar
-ffffffff815baf00 t pci_epc_get_next_free_bar
-ffffffff815baf70 t pci_epc_get_features
-ffffffff815bb020 t pci_epc_stop
-ffffffff815bb080 t pci_epc_start
-ffffffff815bb0f0 t pci_epc_raise_irq
-ffffffff815bb1c0 t pci_epc_map_msi_irq
-ffffffff815bb290 t pci_epc_get_msi
-ffffffff815bb340 t pci_epc_set_msi
-ffffffff815bb430 t pci_epc_get_msix
-ffffffff815bb4d0 t pci_epc_set_msix
-ffffffff815bb5c0 t pci_epc_unmap_addr
-ffffffff815bb660 t pci_epc_map_addr
-ffffffff815bb730 t pci_epc_clear_bar
-ffffffff815bb7e0 t pci_epc_set_bar
-ffffffff815bb8d0 t pci_epc_write_header
-ffffffff815bb9a0 t pci_epc_add_epf
-ffffffff815bbb10 t pci_epc_remove_epf
-ffffffff815bbbf0 t pci_epc_linkup
-ffffffff815bbc20 t pci_epc_init_notify
-ffffffff815bbc50 t pci_epc_destroy
-ffffffff815bbc70 t devm_pci_epc_destroy
-ffffffff815bbce0 t devm_pci_epc_release
-ffffffff815bbd00 t devm_pci_epc_match
-ffffffff815bbd20 t __pci_epc_create
-ffffffff815bbe40 t __devm_pci_epc_create
-ffffffff815bbec0 t pci_epf_type_add_cfs
-ffffffff815bbf50 t pci_epf_unbind
-ffffffff815bc030 t pci_epf_bind
-ffffffff815bc220 t pci_epf_add_vepf
-ffffffff815bc380 t pci_epf_remove_vepf
-ffffffff815bc430 t pci_epf_free_space
-ffffffff815bc4c0 t pci_epf_alloc_space
-ffffffff815bc5f0 t pci_epf_unregister_driver
-ffffffff815bc610 t __pci_epf_register_driver
-ffffffff815bc660 t pci_epf_destroy
-ffffffff815bc670 t pci_epf_create
-ffffffff815bc780 t pci_epf_dev_release
-ffffffff815bc7b0 t pci_epf_device_match
-ffffffff815bc830 t pci_epf_device_probe
-ffffffff815bc870 t pci_epf_device_remove
-ffffffff815bc8b0 t pci_epc_multi_mem_init
-ffffffff815bca90 t pci_epc_mem_init
-ffffffff815bcae0 t pci_epc_mem_exit
-ffffffff815bcb70 t pci_epc_mem_alloc_addr
-ffffffff815bccb0 t pci_epc_mem_free_addr
-ffffffff815bcdc0 t dw_pcie_version_detect
-ffffffff815bced0 t dw_pcie_find_capability
-ffffffff815bcf50 t __dw_pcie_find_next_cap
-ffffffff815bcff0 t dw_pcie_find_ext_capability
-ffffffff815bd120 t dw_pcie_read
-ffffffff815bd170 t dw_pcie_write
-ffffffff815bd1b0 t dw_pcie_read_dbi
-ffffffff815bd240 t dw_pcie_write_dbi
-ffffffff815bd2d0 t dw_pcie_write_dbi2
-ffffffff815bd360 t dw_pcie_prog_outbound_atu
-ffffffff815bd390 t __dw_pcie_prog_outbound_atu.llvm.1793644208456523173
-ffffffff815bd7b0 t dw_pcie_prog_ep_outbound_atu
-ffffffff815bd7d0 t dw_pcie_prog_inbound_atu
-ffffffff815bdb00 t dw_pcie_disable_atu
-ffffffff815bdb20 t dw_pcie_writel_atu.llvm.1793644208456523173
-ffffffff815bdc10 t dw_pcie_wait_for_link
-ffffffff815bdde0 t dw_pcie_link_up
-ffffffff815bde60 t dw_pcie_upconfig_setup
-ffffffff815bdf20 t dw_pcie_iatu_detect
-ffffffff815be300 t dw_pcie_setup
-ffffffff815bea80 t dw_pcie_readl_atu
-ffffffff815beb60 t dw_pcie_ep_linkup
-ffffffff815beb80 t dw_pcie_ep_init_notify
-ffffffff815beba0 t dw_pcie_ep_get_func_from_ep
-ffffffff815bebd0 t dw_pcie_ep_reset_bar
-ffffffff815bec30 t __dw_pcie_ep_reset_bar
-ffffffff815bed30 t dw_pcie_ep_raise_legacy_irq
-ffffffff815bed60 t dw_pcie_ep_raise_msi_irq
-ffffffff815befe0 t dw_pcie_ep_map_addr
-ffffffff815bf0c0 t dw_pcie_ep_unmap_addr
-ffffffff815bf120 t dw_pcie_ep_raise_msix_irq_doorbell
-ffffffff815bf180 t dw_pcie_ep_raise_msix_irq
-ffffffff815bf3b0 t dw_pcie_ep_exit
-ffffffff815bf3f0 t dw_pcie_ep_init_complete
-ffffffff815bf530 t dw_pcie_ep_init
-ffffffff815bf980 t dw_pcie_ep_write_header
-ffffffff815bfae0 t dw_pcie_ep_set_bar
-ffffffff815bfcf0 t dw_pcie_ep_clear_bar
-ffffffff815bfd70 t dw_pcie_ep_set_msi
-ffffffff815bfe90 t dw_pcie_ep_get_msi
-ffffffff815bff20 t dw_pcie_ep_set_msix
-ffffffff815c00a0 t dw_pcie_ep_get_msix
-ffffffff815c0140 t dw_pcie_ep_raise_irq
-ffffffff815c0180 t dw_pcie_ep_start
-ffffffff815c01c0 t dw_pcie_ep_stop
-ffffffff815c0200 t dw_pcie_ep_get_features
-ffffffff815c0230 t __dw_pcie_ep_find_next_cap
-ffffffff815c02c0 t dw_plat_pcie_probe
-ffffffff815c0390 t dw_plat_pcie_ep_init
-ffffffff815c0400 t dw_plat_pcie_ep_raise_irq
-ffffffff815c0480 t dw_plat_pcie_get_features
-ffffffff815c04a0 t dummycon_startup.llvm.10836149488814160867
-ffffffff815c04c0 t dummycon_init.llvm.10836149488814160867
-ffffffff815c0510 t dummycon_deinit.llvm.10836149488814160867
-ffffffff815c0520 t dummycon_clear.llvm.10836149488814160867
-ffffffff815c0530 t dummycon_putc.llvm.10836149488814160867
-ffffffff815c0540 t dummycon_putcs.llvm.10836149488814160867
-ffffffff815c0550 t dummycon_cursor.llvm.10836149488814160867
-ffffffff815c0560 t dummycon_scroll.llvm.10836149488814160867
-ffffffff815c0570 t dummycon_switch.llvm.10836149488814160867
-ffffffff815c0580 t dummycon_blank.llvm.10836149488814160867
-ffffffff815c0590 t vgacon_startup.llvm.226846389282248196
-ffffffff815c08f0 t vgacon_init.llvm.226846389282248196
-ffffffff815c09f0 t vgacon_deinit.llvm.226846389282248196
-ffffffff815c0a80 t vgacon_clear.llvm.226846389282248196
-ffffffff815c0a90 t vgacon_putc.llvm.226846389282248196
-ffffffff815c0aa0 t vgacon_putcs.llvm.226846389282248196
-ffffffff815c0ab0 t vgacon_cursor.llvm.226846389282248196
-ffffffff815c0ce0 t vgacon_scroll.llvm.226846389282248196
-ffffffff815c0e80 t vgacon_switch.llvm.226846389282248196
-ffffffff815c0f60 t vgacon_blank.llvm.226846389282248196
-ffffffff815c15b0 t vgacon_font_set.llvm.226846389282248196
-ffffffff815c1800 t vgacon_font_get.llvm.226846389282248196
-ffffffff815c1860 t vgacon_resize.llvm.226846389282248196
-ffffffff815c1910 t vgacon_set_palette.llvm.226846389282248196
-ffffffff815c1950 t vgacon_scrolldelta.llvm.226846389282248196
-ffffffff815c19d0 t vgacon_set_origin.llvm.226846389282248196
-ffffffff815c1a60 t vgacon_save_screen.llvm.226846389282248196
-ffffffff815c1ae0 t vgacon_build_attr.llvm.226846389282248196
-ffffffff815c1b90 t vgacon_invert_region.llvm.226846389282248196
-ffffffff815c1c20 t vga_set_mem_top
-ffffffff815c1c80 t vgacon_restore_screen
-ffffffff815c1d10 t vgacon_set_cursor_size
-ffffffff815c1e30 t vgacon_doresize
-ffffffff815c2050 t vga_set_palette
-ffffffff815c20f0 t vgacon_do_font_op
-ffffffff815c23b0 t acpi_table_print_madt_entry
-ffffffff815c2560 t acpi_os_physical_table_override
-ffffffff815c26c0 t acpi_os_table_override
-ffffffff815c26f0 t acpi_osi_is_win8
-ffffffff815c2710 t acpi_osi_handler
-ffffffff815c2810 t acpi_os_printf
-ffffffff815c28e0 t acpi_os_vprintf
-ffffffff815c2950 t acpi_os_get_iomem
-ffffffff815c29e0 t acpi_os_map_generic_address
-ffffffff815c2a20 t acpi_os_unmap_generic_address
-ffffffff815c2b20 t acpi_os_predefined_override
-ffffffff815c2bc0 t acpi_os_install_interrupt_handler
-ffffffff815c2cc0 t acpi_irq
-ffffffff815c2d00 t acpi_os_remove_interrupt_handler
-ffffffff815c2d50 t acpi_os_sleep
-ffffffff815c2d60 t acpi_os_stall
-ffffffff815c2da0 t acpi_os_get_timer
-ffffffff815c2dd0 t acpi_os_read_port
-ffffffff815c2e30 t acpi_os_write_port
-ffffffff815c2e70 t acpi_os_read_iomem
-ffffffff815c2ec0 t acpi_os_read_memory
-ffffffff815c2fd0 t acpi_os_write_memory
-ffffffff815c30d0 t acpi_os_read_pci_configuration
-ffffffff815c3180 t acpi_os_write_pci_configuration
-ffffffff815c31e0 t acpi_os_execute
-ffffffff815c32d0 t acpi_os_execute_deferred
-ffffffff815c3300 t acpi_os_wait_events_complete
-ffffffff815c3340 t acpi_hotplug_schedule
-ffffffff815c33e0 t acpi_hotplug_work_fn
-ffffffff815c3430 t acpi_queue_hotplug_work
-ffffffff815c3450 t acpi_os_create_semaphore
-ffffffff815c34f0 t acpi_os_delete_semaphore
-ffffffff815c3530 t acpi_os_wait_semaphore
-ffffffff815c35a0 t acpi_os_signal_semaphore
-ffffffff815c35e0 t acpi_os_get_line
-ffffffff815c35f0 t acpi_os_wait_command_ready
-ffffffff815c3600 t acpi_os_notify_command_complete
-ffffffff815c3610 t acpi_os_signal
-ffffffff815c3640 t acpi_check_resource_conflict
-ffffffff815c36c0 t acpi_check_region
-ffffffff815c3730 t acpi_resources_are_enforced
-ffffffff815c3750 t acpi_os_delete_lock
-ffffffff815c3760 t acpi_os_acquire_lock
-ffffffff815c3770 t acpi_os_release_lock
-ffffffff815c3780 t acpi_os_create_cache
-ffffffff815c37c0 t acpi_os_purge_cache
-ffffffff815c37e0 t acpi_os_delete_cache
-ffffffff815c3800 t acpi_os_release_object
-ffffffff815c3820 t acpi_os_terminate
-ffffffff815c38f0 t acpi_os_prepare_sleep
-ffffffff815c3930 t acpi_os_set_prepare_sleep
-ffffffff815c3950 t acpi_os_prepare_extended_sleep
-ffffffff815c3960 t acpi_os_set_prepare_extended_sleep
-ffffffff815c3970 t acpi_os_enter_sleep
-ffffffff815c39c0 t acpi_os_map_remove
-ffffffff815c3a00 t acpi_extract_package
-ffffffff815c3ca0 t acpi_os_allocate_zeroed
-ffffffff815c3d00 t acpi_os_allocate_zeroed
-ffffffff815c3d60 t acpi_evaluate_integer
-ffffffff815c3df0 t acpi_get_local_address
-ffffffff815c3e80 t acpi_get_subsystem_id
-ffffffff815c3f70 t acpi_handle_printk
-ffffffff815c4060 t acpi_evaluate_reference
-ffffffff815c4160 t acpi_get_physical_device_location
-ffffffff815c4220 t acpi_evaluate_ost
-ffffffff815c4310 t acpi_evaluation_failure_warn
-ffffffff815c4350 t acpi_has_method
-ffffffff815c43a0 t acpi_execute_simple_method
-ffffffff815c4410 t acpi_evaluate_ej0
-ffffffff815c44d0 t acpi_evaluate_lck
-ffffffff815c4590 t acpi_evaluate_reg
-ffffffff815c4630 t acpi_evaluate_dsm
-ffffffff815c47b0 t acpi_check_dsm
-ffffffff815c49f0 t acpi_dev_hid_uid_match
-ffffffff815c4a50 t acpi_dev_uid_to_integer
-ffffffff815c4a90 t acpi_dev_found
-ffffffff815c4b00 t acpi_dev_present
-ffffffff815c4be0 t acpi_dev_match_cb
-ffffffff815c4cd0 t acpi_dev_get_next_match_dev
-ffffffff815c4de0 t acpi_dev_get_first_match_dev
-ffffffff815c4ec0 t acpi_reduced_hardware
-ffffffff815c4ee0 t acpi_match_platform_list
-ffffffff815c5010 t acpi_reboot
-ffffffff815c5130 t acpi_nvs_register
-ffffffff815c52e0 t acpi_nvs_for_each_region
-ffffffff815c5340 t suspend_nvs_free
-ffffffff815c53b0 t suspend_nvs_alloc
-ffffffff815c5460 t suspend_nvs_save
-ffffffff815c5560 t suspend_nvs_restore
-ffffffff815c55c0 t acpi_enable_wakeup_devices
-ffffffff815c5670 t acpi_disable_wakeup_devices
-ffffffff815c5720 t acpi_register_wakeup_handler
-ffffffff815c57d0 t acpi_unregister_wakeup_handler
-ffffffff815c5870 t acpi_check_wakeup_handlers
-ffffffff815c58d0 t acpi_sleep_state_supported
-ffffffff815c5950 t acpi_target_system_state
-ffffffff815c5970 t acpi_s2idle_begin
-ffffffff815c5990 t acpi_s2idle_prepare
-ffffffff815c59e0 t acpi_s2idle_wake
-ffffffff815c5a90 t acpi_s2idle_restore
-ffffffff815c5ae0 t acpi_s2idle_end
-ffffffff815c5b00 t acpi_s2idle_wakeup
-ffffffff815c5b20 t acpi_power_off_prepare
-ffffffff815c5b60 t acpi_power_off
-ffffffff815c5b80 t acpi_save_bm_rld
-ffffffff815c5ba0 t acpi_restore_bm_rld
-ffffffff815c5c00 t acpi_suspend_state_valid
-ffffffff815c5c30 t acpi_suspend_begin_old
-ffffffff815c5ca0 t acpi_pm_pre_suspend
-ffffffff815c5cc0 t acpi_suspend_enter
-ffffffff815c5e80 t acpi_pm_finish
-ffffffff815c5f30 t acpi_pm_end
-ffffffff815c5f90 t acpi_suspend_begin
-ffffffff815c6050 t acpi_pm_prepare
-ffffffff815c60d0 t tts_notify_reboot
-ffffffff815c6110 t __acpi_device_uevent_modalias
-ffffffff815c61e0 t create_of_modalias
-ffffffff815c6360 t create_pnp_modalias
-ffffffff815c6470 t acpi_device_uevent_modalias
-ffffffff815c6540 t acpi_device_modalias
-ffffffff815c6600 t acpi_device_setup_files
-ffffffff815c68a0 t acpi_expose_nondev_subnodes
-ffffffff815c6960 t acpi_device_remove_files
-ffffffff815c6b50 t acpi_hide_nondev_subnodes
-ffffffff815c6ba0 t path_show
-ffffffff815c6c30 t hid_show
-ffffffff815c6c60 t description_show
-ffffffff815c6cb0 t description_show
-ffffffff815c6ce0 t adr_show
-ffffffff815c6d20 t uid_show
-ffffffff815c6d50 t sun_show
-ffffffff815c6dd0 t hrv_show
-ffffffff815c6e50 t status_show
-ffffffff815c6ed0 t status_show
-ffffffff815c6f10 t status_show
-ffffffff815c6f50 t eject_store
-ffffffff815c7080 t real_power_state_show
-ffffffff815c70f0 t acpi_data_node_release
-ffffffff815c7110 t acpi_data_node_attr_show
-ffffffff815c7150 t data_node_show_path
-ffffffff815c71f0 t acpi_power_state_string
-ffffffff815c7220 t acpi_device_get_power
-ffffffff815c7370 t acpi_device_set_power
-ffffffff815c7570 t acpi_dev_pm_explicit_set
-ffffffff815c75e0 t acpi_bus_set_power
-ffffffff815c7610 t acpi_bus_init_power
-ffffffff815c76d0 t acpi_device_fix_up_power
-ffffffff815c7750 t acpi_device_fix_up_power_extended
-ffffffff815c77e0 t fix_up_power_if_applicable
-ffffffff815c7860 t acpi_device_update_power
-ffffffff815c7950 t acpi_bus_update_power
-ffffffff815c7980 t acpi_bus_power_manageable
-ffffffff815c79b0 t acpi_dev_power_up_children_with_adr
-ffffffff815c79d0 t acpi_power_up_if_adr_present.llvm.10681468048147460153
-ffffffff815c7a00 t acpi_dev_power_state_for_wake
-ffffffff815c7a60 t acpi_pm_wakeup_event
-ffffffff815c7a80 t acpi_add_pm_notifier
-ffffffff815c7b50 t acpi_pm_notify_handler
-ffffffff815c7bd0 t acpi_remove_pm_notifier
-ffffffff815c7c70 t acpi_bus_can_wakeup
-ffffffff815c7ca0 t acpi_pm_device_can_wakeup
-ffffffff815c7ce0 t acpi_pm_device_sleep_state
-ffffffff815c7e00 t acpi_dev_pm_get_state
-ffffffff815c8000 t acpi_pm_set_device_wakeup
-ffffffff815c80b0 t __acpi_device_wakeup_enable
-ffffffff815c81a0 t acpi_dev_suspend
-ffffffff815c82e0 t acpi_dev_resume
-ffffffff815c8370 t acpi_subsys_runtime_suspend
-ffffffff815c83a0 t acpi_subsys_runtime_resume
-ffffffff815c83d0 t acpi_subsys_prepare
-ffffffff815c8520 t acpi_subsys_complete
-ffffffff815c8560 t acpi_subsys_suspend
-ffffffff815c8670 t acpi_subsys_suspend_late
-ffffffff815c86c0 t acpi_subsys_suspend_noirq
-ffffffff815c8710 t acpi_subsys_freeze
-ffffffff815c8730 t acpi_subsys_restore_early
-ffffffff815c8760 t acpi_subsys_poweroff
-ffffffff815c8870 t acpi_dev_pm_attach
-ffffffff815c8990 t acpi_pm_notify_work_func
-ffffffff815c89c0 t acpi_dev_pm_detach
-ffffffff815c8b50 t acpi_storage_d3
-ffffffff815c8bf0 t acpi_dev_state_d0
-ffffffff815c8c30 t acpi_subsys_resume
-ffffffff815c8c90 t acpi_subsys_resume_early
-ffffffff815c8d00 t acpi_subsys_poweroff_late
-ffffffff815c8d50 t acpi_subsys_resume_noirq
-ffffffff815c8d80 t acpi_subsys_poweroff_noirq
-ffffffff815c8db0 t acpi_system_wakeup_device_open_fs.llvm.5074490897747803762
-ffffffff815c8de0 t acpi_system_write_wakeup_device.llvm.5074490897747803762
-ffffffff815c8f90 t acpi_system_wakeup_device_seq_show
-ffffffff815c91a0 t acpi_bus_get_status_handle
-ffffffff815c91d0 t acpi_bus_get_status
-ffffffff815c9270 t acpi_bus_private_data_handler
-ffffffff815c9280 t acpi_bus_attach_private_data
-ffffffff815c92b0 t acpi_bus_get_private_data
-ffffffff815c92f0 t acpi_bus_detach_private_data
-ffffffff815c9310 t acpi_run_osc
-ffffffff815c9530 t acpi_get_first_physical_node
-ffffffff815c9580 t acpi_device_is_first_physical_node
-ffffffff815c95f0 t acpi_companion_match
-ffffffff815c9690 t acpi_set_modalias
-ffffffff815c96f0 t acpi_match_device
-ffffffff815c97d0 t __acpi_match_device.llvm.10453599748606521752
-ffffffff815c99b0 t acpi_device_get_match_data
-ffffffff815c9ba0 t acpi_match_device_ids
-ffffffff815c9bc0 t acpi_driver_match_device
-ffffffff815c9d40 t acpi_of_match_device
-ffffffff815c9e00 t acpi_bus_register_driver
-ffffffff815c9e50 t acpi_bus_unregister_driver
-ffffffff815c9e70 t acpi_bus_match
-ffffffff815c9ea0 t acpi_device_uevent
-ffffffff815c9ec0 t acpi_device_probe
-ffffffff815c9fb0 t acpi_device_remove
-ffffffff815ca050 t acpi_bus_for_each_dev
-ffffffff815ca070 t acpi_dev_for_each_child
-ffffffff815ca0d0 t acpi_dev_for_one_check
-ffffffff815ca110 t acpi_dev_for_each_child_reverse
-ffffffff815ca170 t acpi_device_fixed_event
-ffffffff815ca1a0 t acpi_notify_device
-ffffffff815ca1c0 t acpi_notify_device_fixed
-ffffffff815ca1f0 t set_copy_dsdt
-ffffffff815ca220 t acpi_bus_table_handler
-ffffffff815ca260 t acpi_bus_notify
-ffffffff815ca330 t acpi_sb_notify
-ffffffff815ca390 t sb_notify_work
-ffffffff815ca3f0 t register_acpi_bus_type
-ffffffff815ca490 t unregister_acpi_bus_type
-ffffffff815ca510 t acpi_find_child_device
-ffffffff815ca580 t acpi_find_child_by_adr
-ffffffff815ca5f0 t acpi_bind_one
-ffffffff815ca940 t acpi_unbind_one
-ffffffff815caae0 t acpi_device_notify
-ffffffff815cabf0 t acpi_device_notify_remove
-ffffffff815cac60 t check_one_child
-ffffffff815cae20 t match_any
-ffffffff815cae30 t acpi_scan_lock_acquire
-ffffffff815cae50 t acpi_scan_lock_release
-ffffffff815cae70 t acpi_lock_hp_context
-ffffffff815cae90 t acpi_unlock_hp_context
-ffffffff815caeb0 t acpi_initialize_hp_context
-ffffffff815caf00 t acpi_scan_add_handler
-ffffffff815caf60 t acpi_scan_add_handler_with_hotplug
-ffffffff815cafe0 t acpi_scan_is_offline
-ffffffff815cb0d0 t acpi_device_hotplug
-ffffffff815cb670 t acpi_fetch_acpi_dev
-ffffffff815cb6d0 t acpi_get_acpi_dev
-ffffffff815cb730 t get_acpi_device
-ffffffff815cb750 t acpi_tie_acpi_dev
-ffffffff815cb7a0 t acpi_scan_drop_device
-ffffffff815cb840 t acpi_device_add
-ffffffff815cbbc0 t acpi_device_hid
-ffffffff815cbbf0 t acpi_bus_get_ejd
-ffffffff815cbcb0 t acpi_ata_match
-ffffffff815cbd20 t acpi_bay_match
-ffffffff815cbe30 t acpi_device_is_battery
-ffffffff815cbe80 t acpi_dock_match
-ffffffff815cbea0 t acpi_is_video_device
-ffffffff815cbfb0 t acpi_backlight_cap_match
-ffffffff815cc000 t acpi_free_pnp_ids
-ffffffff815cc060 t acpi_dma_supported
-ffffffff815cc080 t acpi_get_dma_attr
-ffffffff815cc0b0 t acpi_dma_get_range
-ffffffff815cc250 t acpi_iommu_fwspec_init
-ffffffff815cc2b0 t acpi_dma_configure_id
-ffffffff815cc310 t acpi_init_device_object
-ffffffff815cce90 t acpi_device_add_finalize
-ffffffff815ccec0 t acpi_device_is_present
-ffffffff815ccee0 t acpi_scan_hotplug_enabled
-ffffffff815ccf30 t acpi_dev_clear_dependencies
-ffffffff815cd0e0 t acpi_dev_ready_for_enumeration
-ffffffff815cd110 t acpi_dev_get_next_consumer_dev
-ffffffff815cd220 t acpi_bus_scan
-ffffffff815cd320 t acpi_bus_check_add
-ffffffff815cd9a0 t acpi_bus_check_add_1
-ffffffff815cd9c0 t acpi_bus_attach
-ffffffff815cdd40 t acpi_bus_check_add_2
-ffffffff815cdd60 t acpi_bus_trim
-ffffffff815cdde0 t acpi_bus_trim_one
-ffffffff815cde60 t acpi_bus_register_early_device
-ffffffff815cded0 t acpi_add_single_object
-ffffffff815ce540 t acpi_scan_table_notify
-ffffffff815ce5b0 t acpi_table_events_fn
-ffffffff815ce5f0 t acpi_reconfig_notifier_register
-ffffffff815ce610 t acpi_reconfig_notifier_unregister
-ffffffff815ce630 t acpi_scan_bus_check
-ffffffff815ce6c0 t acpi_scan_device_not_present
-ffffffff815ce770 t acpi_bus_offline
-ffffffff815ce8c0 t acpi_bus_online
-ffffffff815ce970 t acpi_device_del_work_fn
-ffffffff815cebc0 t acpi_check_serial_bus_slave
-ffffffff815cebe0 t acpi_scan_clear_dep_fn
-ffffffff815cec40 t acpi_get_resource_memory
-ffffffff815cec60 t acpi_device_release
-ffffffff815ced40 t acpi_generic_device_attach
-ffffffff815ced90 t acpi_dev_resource_memory
-ffffffff815cee50 t acpi_dev_resource_io
-ffffffff815cef50 t acpi_dev_resource_address_space
-ffffffff815cf000 t acpi_decode_space
-ffffffff815cf180 t acpi_dev_resource_ext_address_space
-ffffffff815cf1c0 t acpi_dev_irq_flags
-ffffffff815cf210 t acpi_dev_get_irq_type
-ffffffff815cf260 t acpi_dev_resource_interrupt
-ffffffff815cf610 t acpi_dev_free_resource_list
-ffffffff815cf620 t acpi_dev_get_resources
-ffffffff815cf6f0 t acpi_dev_get_dma_resources
-ffffffff815cf7c0 t is_memory
-ffffffff815cfa00 t acpi_dev_get_memory_resources
-ffffffff815cfad0 t acpi_dev_filter_resource_type
-ffffffff815cfb50 t acpi_resource_consumer
-ffffffff815cfbb0 t acpi_res_consumer_cb
-ffffffff815cfd20 t acpi_dev_process_resource
-ffffffff815d0390 t acpi_duplicate_processor_id
-ffffffff815d0430 t acpi_processor_claim_cst_control
-ffffffff815d0480 t acpi_processor_evaluate_cst
-ffffffff815d08f0 t acpi_processor_add
-ffffffff815d0f60 t acpi_processor_remove
-ffffffff815d1050 t acpi_processor_container_attach
-ffffffff815d1060 t map_madt_entry
-ffffffff815d1190 t acpi_get_phys_id
-ffffffff815d1370 t acpi_map_cpuid
-ffffffff815d1400 t acpi_get_cpuid
-ffffffff815d1490 t acpi_get_ioapic_id
-ffffffff815d1600 t acpi_processor_set_pdc
-ffffffff815d17b0 t acpi_ec_flush_work
-ffffffff815d17e0 t ec_read
-ffffffff815d1870 t ec_write
-ffffffff815d18f0 t ec_transaction
-ffffffff815d1970 t acpi_ec_transaction
-ffffffff815d1c90 t ec_get_handle
-ffffffff815d1cc0 t acpi_ec_block_transactions
-ffffffff815d1d00 t acpi_ec_stop
-ffffffff815d1f10 t acpi_ec_unblock_transactions
-ffffffff815d1f70 t acpi_ec_add_query_handler
-ffffffff815d2030 t acpi_ec_remove_query_handler
-ffffffff815d2050 t acpi_ec_remove_query_handlers
-ffffffff815d2180 t acpi_ec_alloc
-ffffffff815d2250 t ec_parse_device
-ffffffff815d2330 t acpi_ec_setup
-ffffffff815d2640 t acpi_ec_mark_gpe_for_wake
-ffffffff815d2670 t acpi_ec_set_gpe_wake_mask
-ffffffff815d26b0 t acpi_ec_dispatch_gpe
-ffffffff815d2810 t advance_transaction
-ffffffff815d2c80 t acpi_ec_unmask_events
-ffffffff815d2d10 t ec_guard
-ffffffff815d2fd0 t acpi_ec_event_handler
-ffffffff815d3110 t acpi_ec_submit_query
-ffffffff815d32c0 t acpi_ec_close_event
-ffffffff815d3360 t acpi_ec_event_processor
-ffffffff815d3410 t ec_parse_io_ports
-ffffffff815d3450 t acpi_ec_space_handler
-ffffffff815d3670 t acpi_ec_register_query_methods
-ffffffff815d3790 t acpi_ec_enable_event
-ffffffff815d3850 t acpi_ec_gpe_handler
-ffffffff815d38a0 t acpi_ec_irq_handler
-ffffffff815d38f0 t ec_correct_ecdt
-ffffffff815d3910 t ec_honor_dsdt_gpe
-ffffffff815d3930 t ec_clear_on_resume
-ffffffff815d3950 t param_set_event_clearing
-ffffffff815d39e0 t param_get_event_clearing
-ffffffff815d3a60 t acpi_ec_add
-ffffffff815d3e80 t acpi_ec_remove
-ffffffff815d3ff0 t acpi_ec_suspend
-ffffffff815d4070 t acpi_ec_resume
-ffffffff815d4090 t acpi_ec_suspend_noirq
-ffffffff815d4120 t acpi_ec_resume_noirq
-ffffffff815d41b0 t acpi_is_root_bridge
-ffffffff815d41f0 t acpi_pci_find_root
-ffffffff815d4240 t acpi_get_pci_dev
-ffffffff815d42d0 t acpi_pci_probe_root_resources
-ffffffff815d4400 t acpi_dev_filter_resource_type_cb
-ffffffff815d4410 t acpi_pci_root_validate_resources
-ffffffff815d4680 t acpi_pci_root_create
-ffffffff815d4a40 t acpi_pci_root_release_info
-ffffffff815d4b50 t acpi_pci_root_add
-ffffffff815d57a0 t acpi_pci_root_remove
-ffffffff815d5820 t acpi_pci_root_scan_dependent
-ffffffff815d5830 t get_root_bridge_busnr_callback
-ffffffff815d58e0 t decode_osc_control
-ffffffff815d5c10 t decode_osc_support
-ffffffff815d5f50 t decode_cxl_osc_control
-ffffffff815d6030 t acpi_pci_link_allocate_irq
-ffffffff815d6790 t acpi_pci_link_free_irq
-ffffffff815d6850 t acpi_penalize_isa_irq
-ffffffff815d6880 t acpi_isa_irq_available
-ffffffff815d68c0 t acpi_penalize_sci_irq
-ffffffff815d68f0 t acpi_pci_link_set
-ffffffff815d6b20 t acpi_pci_link_get_current
-ffffffff815d6c40 t acpi_pci_link_check_current
-ffffffff815d6c80 t irqrouter_resume
-ffffffff815d6cd0 t acpi_pci_link_add
-ffffffff815d6e60 t acpi_pci_link_remove
-ffffffff815d6ed0 t acpi_pci_link_check_possible
-ffffffff815d6f90 t acpi_pci_irq_enable
-ffffffff815d7170 t acpi_pci_irq_lookup
-ffffffff815d7310 t acpi_pci_irq_disable
-ffffffff815d73a0 t acpi_pci_irq_find_prt_entry
-ffffffff815d7750 t acpi_apd_create_device
-ffffffff815d7830 t acpi_create_platform_device
-ffffffff815d7b30 t acpi_platform_device_remove_notify
-ffffffff815d7b90 t acpi_is_pnp_device
-ffffffff815d7bd0 t acpi_pnp_match
-ffffffff815d7db0 t acpi_pnp_attach
-ffffffff815d7dc0 t acpi_power_resources_list_free
-ffffffff815d7e40 t acpi_extract_power_resources
-ffffffff815d8090 t acpi_add_power_resource
-ffffffff815d8310 t acpi_device_power_add_dependent
-ffffffff815d84d0 t acpi_device_power_remove_dependent
-ffffffff815d85b0 t acpi_power_add_remove_device
-ffffffff815d8660 t acpi_power_expose_hide
-ffffffff815d8790 t acpi_power_wakeup_list_init
-ffffffff815d88b0 t acpi_power_get_state
-ffffffff815d8940 t acpi_device_sleep_wake
-ffffffff815d8a80 t acpi_enable_wakeup_device_power
-ffffffff815d8b60 t acpi_power_on_list
-ffffffff815d8c40 t acpi_power_off_list
-ffffffff815d8d10 t acpi_disable_wakeup_device_power
-ffffffff815d8ea0 t acpi_power_get_inferred_state
-ffffffff815d91b0 t acpi_power_on_resources
-ffffffff815d91e0 t acpi_power_transition
-ffffffff815d92a0 t acpi_release_power_resource
-ffffffff815d9330 t __acpi_power_on
-ffffffff815d93c0 t acpi_power_sysfs_remove
-ffffffff815d93f0 t acpi_power_add_resource_to_list
-ffffffff815d94d0 t acpi_resume_power_resources
-ffffffff815d9630 t acpi_turn_off_unused_power_resources
-ffffffff815d96d0 t acpi_power_on
-ffffffff815d97a0 t resource_in_use_show
-ffffffff815d97d0 t acpi_notifier_call_chain
-ffffffff815d98a0 t register_acpi_notifier
-ffffffff815d98c0 t unregister_acpi_notifier
-ffffffff815d98e0 t acpi_bus_generate_netlink_event
-ffffffff815d9a70 t ged_probe
-ffffffff815d9b20 t ged_remove
-ffffffff815d9bb0 t ged_shutdown
-ffffffff815d9c40 t acpi_ged_request_interrupt
-ffffffff815d9e90 t acpi_ged_irq_handler
-ffffffff815d9ee0 t acpi_sysfs_table_handler
-ffffffff815d9fa0 t acpi_table_attr_init
-ffffffff815da0e0 t acpi_irq_stats_init
-ffffffff815da420 t acpi_global_event_handler
-ffffffff815da480 t counter_show
-ffffffff815da6c0 t counter_set
-ffffffff815daa50 t acpi_sysfs_add_hotplug_profile
-ffffffff815daab0 t param_get_acpica_version
-ffffffff815daad0 t acpi_table_show
-ffffffff815dab70 t acpi_data_show
-ffffffff815dac00 t force_remove_show
-ffffffff815dac20 t force_remove_store
-ffffffff815dac90 t pm_profile_show
-ffffffff815dacc0 t acpi_data_add_props
-ffffffff815dad50 t acpi_init_properties
-ffffffff815db090 t acpi_extract_properties
-ffffffff815db730 t acpi_enumerate_nondev_subnodes
-ffffffff815db940 t acpi_tie_nondev_subnodes
-ffffffff815db9c0 t acpi_untie_nondev_subnodes
-ffffffff815dba10 t acpi_free_properties
-ffffffff815dbb30 t acpi_destroy_nondev_subnodes
-ffffffff815dbcc0 t acpi_dev_get_property
-ffffffff815dbdc0 t acpi_node_prop_get
-ffffffff815dbed0 t __acpi_node_get_property_reference
-ffffffff815dc2f0 t acpi_get_next_subnode
-ffffffff815dc4a0 t is_acpi_device_node
-ffffffff815dc4d0 t stop_on_next
-ffffffff815dc500 t is_acpi_data_node
-ffffffff815dc530 t acpi_fwnode_device_is_available.llvm.3889380398539598109
-ffffffff815dc570 t acpi_fwnode_device_get_match_data.llvm.3889380398539598109
-ffffffff815dc590 t acpi_fwnode_device_dma_supported.llvm.3889380398539598109
-ffffffff815dc5d0 t acpi_fwnode_device_get_dma_attr.llvm.3889380398539598109
-ffffffff815dc610 t acpi_fwnode_property_present.llvm.3889380398539598109
-ffffffff815dc700 t acpi_fwnode_property_read_int_array.llvm.3889380398539598109
-ffffffff815dc740 t acpi_fwnode_property_read_string_array.llvm.3889380398539598109
-ffffffff815dc760 t acpi_fwnode_get_name.llvm.3889380398539598109
-ffffffff815dc7d0 t acpi_fwnode_get_name_prefix.llvm.3889380398539598109
-ffffffff815dc810 t acpi_node_get_parent.llvm.3889380398539598109
-ffffffff815dc880 t acpi_fwnode_get_named_child_node.llvm.3889380398539598109
-ffffffff815dc940 t acpi_fwnode_get_reference_args.llvm.3889380398539598109
-ffffffff815dc960 t acpi_graph_get_next_endpoint.llvm.3889380398539598109
-ffffffff815dcb60 t acpi_graph_get_remote_endpoint.llvm.3889380398539598109
-ffffffff815dcd70 t acpi_fwnode_get_parent.llvm.3889380398539598109
-ffffffff815dcde0 t acpi_fwnode_graph_parse_endpoint.llvm.3889380398539598109
-ffffffff815dce80 t acpi_fwnode_irq_get.llvm.3889380398539598109
-ffffffff815dce90 t acpi_nondev_subnode_extract
-ffffffff815dd030 t acpi_nondev_subnode_tag
-ffffffff815dd040 t acpi_node_prop_read
-ffffffff815dd670 t acpi_install_cmos_rtc_space_handler
-ffffffff815dd6c0 t acpi_remove_cmos_rtc_space_handler
-ffffffff815dd700 t acpi_cmos_rtc_space_handler
-ffffffff815dd7b0 t acpi_extract_apple_properties
-ffffffff815ddb20 t acpi_device_override_status
-ffffffff815ddc80 t force_storage_d3
-ffffffff815ddca0 t acpi_quirk_skip_acpi_ac_and_battery
-ffffffff815ddd50 t acpi_s2idle_prepare_late
-ffffffff815ddf70 t acpi_s2idle_check
-ffffffff815ddfd0 t acpi_s2idle_restore_early
-ffffffff815de200 t acpi_register_lps0_dev
-ffffffff815de280 t acpi_unregister_lps0_dev
-ffffffff815de2f0 t lps0_device_attach
-ffffffff815dea20 t acpi_lpat_raw_to_temp
-ffffffff815deab0 t acpi_lpat_temp_to_raw
-ffffffff815deb30 t acpi_lpat_get_conversion_table
-ffffffff815dec80 t acpi_lpat_free_conversion_table
-ffffffff815decb0 t lpit_read_residency_count_address
-ffffffff815dece0 t acpi_init_lpit
-ffffffff815deee0 t low_power_idle_system_residency_us_show
-ffffffff815def80 t low_power_idle_cpu_residency_us_show
-ffffffff815df040 t acpi_platformrt_space_handler
-ffffffff815df370 t efi_pa_va_lookup
-ffffffff815df3f0 t acpi_pcc_address_space_handler
-ffffffff815df4a0 t acpi_pcc_address_space_setup
-ffffffff815df5c0 t pcc_rx_callback
-ffffffff815df5e0 t acpi_ds_get_buffer_field_arguments
-ffffffff815df620 t acpi_ds_execute_arguments
-ffffffff815df780 t acpi_ds_get_bank_field_arguments
-ffffffff815df7d0 t acpi_ds_get_buffer_arguments
-ffffffff815df830 t acpi_ds_get_package_arguments
-ffffffff815df890 t acpi_ds_get_region_arguments
-ffffffff815df8f0 t acpi_ds_exec_begin_control_op
-ffffffff815df9d0 t acpi_ds_exec_end_control_op
-ffffffff815dfc70 t acpi_ds_dump_method_stack
-ffffffff815dfc80 t acpi_ds_create_buffer_field
-ffffffff815dfe40 t acpi_ds_create_field
-ffffffff815dffc0 t acpi_ds_get_field_names
-ffffffff815e0250 t acpi_ds_init_field_objects
-ffffffff815e03d0 t acpi_ds_create_bank_field
-ffffffff815e0550 t acpi_ds_create_index_field
-ffffffff815e06c0 t acpi_ds_initialize_objects
-ffffffff815e07c0 t acpi_ds_init_one_object
-ffffffff815e08a0 t acpi_ds_auto_serialize_method
-ffffffff815e0970 t acpi_ds_detect_named_opcodes
-ffffffff815e09b0 t acpi_ds_method_error
-ffffffff815e0a50 t acpi_ds_begin_method_execution
-ffffffff815e0c90 t acpi_ds_call_control_method
-ffffffff815e0fa0 t acpi_ds_terminate_control_method
-ffffffff815e10f0 t acpi_ds_restart_control_method
-ffffffff815e1170 t acpi_ds_method_data_init
-ffffffff815e1280 t acpi_ds_method_data_delete_all
-ffffffff815e13e0 t acpi_ds_method_data_init_args
-ffffffff815e1460 t acpi_ds_method_data_get_node
-ffffffff815e1520 t acpi_ds_method_data_get_value
-ffffffff815e1690 t acpi_ds_store_object_to_local
-ffffffff815e1970 t acpi_ds_build_internal_object
-ffffffff815e1af0 t acpi_ds_init_object_from_op
-ffffffff815e1db0 t acpi_ds_build_internal_buffer_obj
-ffffffff815e1f00 t acpi_ds_create_node
-ffffffff815e1fb0 t acpi_ds_initialize_region
-ffffffff815e1fd0 t acpi_ds_eval_buffer_field_operands
-ffffffff815e20d0 t acpi_ds_init_buffer_field
-ffffffff815e2330 t acpi_ds_eval_region_operands
-ffffffff815e2450 t acpi_ds_eval_table_region_operands
-ffffffff815e25f0 t acpi_ds_eval_data_object_operands
-ffffffff815e2760 t acpi_ds_eval_bank_field_operands
-ffffffff815e2810 t acpi_ds_build_internal_package_obj
-ffffffff815e2b50 t acpi_ds_init_package_element
-ffffffff815e2d90 t acpi_ds_clear_implicit_return
-ffffffff815e2dd0 t acpi_ds_do_implicit_return
-ffffffff815e2e40 t acpi_ds_is_result_used
-ffffffff815e2fa0 t acpi_ds_delete_result_if_not_used
-ffffffff815e3030 t acpi_ds_resolve_operands
-ffffffff815e3180 t acpi_ds_clear_operands
-ffffffff815e32c0 t acpi_ds_create_operand
-ffffffff815e3540 t acpi_ds_create_operands
-ffffffff815e36e0 t acpi_ds_evaluate_name_path
-ffffffff815e3800 t acpi_ds_get_predicate_value
-ffffffff815e39c0 t acpi_ds_exec_begin_op
-ffffffff815e3b00 t acpi_ds_exec_end_op
-ffffffff815e3f90 t acpi_ds_init_callbacks
-ffffffff815e4040 t acpi_ds_load1_begin_op
-ffffffff815e42f0 t acpi_ds_load1_end_op
-ffffffff815e44c0 t acpi_ds_load2_begin_op
-ffffffff815e4890 t acpi_ds_load2_end_op
-ffffffff815e4d70 t acpi_ds_scope_stack_clear
-ffffffff815e4dc0 t acpi_ds_scope_stack_push
-ffffffff815e4e60 t acpi_ds_scope_stack_pop
-ffffffff815e4ea0 t acpi_ds_result_pop
-ffffffff815e4fb0 t acpi_ds_result_push
-ffffffff815e50f0 t acpi_ds_obj_stack_push
-ffffffff815e5160 t acpi_ds_obj_stack_pop
-ffffffff815e51f0 t acpi_ds_obj_stack_pop_and_delete
-ffffffff815e5260 t acpi_ds_get_current_walk_state
-ffffffff815e5280 t acpi_ds_push_walk_state
-ffffffff815e52a0 t acpi_ds_pop_walk_state
-ffffffff815e52c0 t acpi_ds_create_walk_state
-ffffffff815e5390 t acpi_ds_init_aml_walk
-ffffffff815e54b0 t acpi_ds_delete_walk_state
-ffffffff815e5590 t acpi_ev_initialize_events
-ffffffff815e5700 t acpi_ev_install_xrupt_handlers
-ffffffff815e5790 t acpi_ev_fixed_event_detect
-ffffffff815e58f0 t acpi_any_fixed_event_status_set
-ffffffff815e5a00 t acpi_ev_update_gpe_enable_mask
-ffffffff815e5a50 t acpi_ev_enable_gpe
-ffffffff815e5a70 t acpi_ev_mask_gpe
-ffffffff815e5b10 t acpi_ev_add_gpe_reference
-ffffffff815e5bb0 t acpi_ev_remove_gpe_reference
-ffffffff815e5c40 t acpi_ev_low_get_gpe_info
-ffffffff815e5c80 t acpi_ev_get_gpe_event_info
-ffffffff815e5d40 t acpi_ev_gpe_detect
-ffffffff815e6090 t acpi_ev_detect_gpe
-ffffffff815e6290 t acpi_ev_finish_gpe
-ffffffff815e62d0 t acpi_ev_gpe_dispatch
-ffffffff815e6440 t acpi_ev_asynch_execute_gpe_method
-ffffffff815e65b0 t acpi_ev_asynch_enable_gpe
-ffffffff815e6610 t acpi_ev_delete_gpe_block
-ffffffff815e66e0 t acpi_ev_create_gpe_block
-ffffffff815e6be0 t acpi_ev_initialize_gpe_block
-ffffffff815e6d40 t acpi_ev_gpe_initialize
-ffffffff815e6eb0 t acpi_ev_update_gpes
-ffffffff815e6fd0 t acpi_ev_match_gpe_method
-ffffffff815e7100 t acpi_ev_walk_gpe_list
-ffffffff815e71c0 t acpi_ev_get_gpe_device
-ffffffff815e7200 t acpi_ev_get_gpe_xrupt_block
-ffffffff815e7350 t acpi_ev_delete_gpe_xrupt
-ffffffff815e73e0 t acpi_ev_delete_gpe_handlers
-ffffffff815e74d0 t acpi_ev_init_global_lock_handler
-ffffffff815e75b0 t acpi_ev_global_lock_handler.llvm.2534400330951305821
-ffffffff815e7620 t acpi_ev_remove_global_lock_handler
-ffffffff815e7660 t acpi_ev_acquire_global_lock
-ffffffff815e7750 t acpi_ev_release_global_lock
-ffffffff815e77e0 t acpi_ev_install_region_handlers
-ffffffff815e78d0 t acpi_ev_install_space_handler
-ffffffff815e7bc0 t acpi_ev_has_default_handler
-ffffffff815e7c10 t acpi_ev_find_region_handler
-ffffffff815e7c40 t acpi_ev_install_handler
-ffffffff815e7d00 t acpi_ev_is_notify_object
-ffffffff815e7d30 t acpi_ev_queue_notify_request
-ffffffff815e7e20 t acpi_ev_notify_dispatch
-ffffffff815e7ea0 t acpi_ev_terminate
-ffffffff815e8090 t acpi_ev_initialize_op_regions
-ffffffff815e8180 t acpi_ev_execute_reg_methods
-ffffffff815e8330 t acpi_ev_address_space_dispatch
-ffffffff815e8660 t acpi_ev_detach_region
-ffffffff815e87d0 t acpi_ev_execute_reg_method
-ffffffff815e89d0 t acpi_ev_attach_region
-ffffffff815e8a10 t acpi_ev_reg_run
-ffffffff815e8a70 t acpi_ev_system_memory_region_setup
-ffffffff815e8b50 t acpi_ev_io_space_region_setup
-ffffffff815e8b70 t acpi_ev_pci_config_region_setup
-ffffffff815e8da0 t acpi_ev_is_pci_root_bridge
-ffffffff815e8e80 t acpi_ev_pci_bar_region_setup
-ffffffff815e8e90 t acpi_ev_cmos_region_setup
-ffffffff815e8ea0 t acpi_ev_data_table_region_setup
-ffffffff815e8f40 t acpi_ev_default_region_setup
-ffffffff815e8f60 t acpi_ev_initialize_region
-ffffffff815e9030 t acpi_ev_sci_dispatch
-ffffffff815e90a0 t acpi_ev_gpe_xrupt_handler
-ffffffff815e90b0 t acpi_ev_install_sci_handler
-ffffffff815e90e0 t acpi_ev_sci_xrupt_handler.llvm.3998269782381701536
-ffffffff815e9180 t acpi_ev_remove_all_sci_handlers
-ffffffff815e9200 t acpi_install_notify_handler
-ffffffff815e9430 t acpi_remove_notify_handler
-ffffffff815e9680 t acpi_install_sci_handler
-ffffffff815e97a0 t acpi_remove_sci_handler
-ffffffff815e9860 t acpi_install_global_event_handler
-ffffffff815e98d0 t acpi_install_fixed_event_handler
-ffffffff815e99b0 t acpi_remove_fixed_event_handler
-ffffffff815e9a40 t acpi_install_gpe_handler
-ffffffff815e9a60 t acpi_ev_install_gpe_handler.llvm.17273271764498892033
-ffffffff815e9c50 t acpi_install_gpe_raw_handler
-ffffffff815e9c70 t acpi_remove_gpe_handler
-ffffffff815e9de0 t acpi_acquire_global_lock
-ffffffff815e9e40 t acpi_release_global_lock
-ffffffff815e9e70 t acpi_enable
-ffffffff815e9f50 t acpi_disable
-ffffffff815e9fb0 t acpi_enable_event
-ffffffff815ea080 t acpi_disable_event
-ffffffff815ea140 t acpi_clear_event
-ffffffff815ea180 t acpi_get_event_status
-ffffffff815ea240 t acpi_update_all_gpes
-ffffffff815ea2e0 t acpi_enable_gpe
-ffffffff815ea3b0 t acpi_disable_gpe
-ffffffff815ea410 t acpi_set_gpe
-ffffffff815ea490 t acpi_mask_gpe
-ffffffff815ea500 t acpi_mark_gpe_for_wake
-ffffffff815ea560 t acpi_setup_gpe_for_wake
-ffffffff815ea700 t acpi_set_gpe_wake_mask
-ffffffff815ea7c0 t acpi_clear_gpe
-ffffffff815ea820 t acpi_get_gpe_status
-ffffffff815ea890 t acpi_dispatch_gpe
-ffffffff815ea8b0 t acpi_finish_gpe
-ffffffff815ea910 t acpi_disable_all_gpes
-ffffffff815ea950 t acpi_enable_all_runtime_gpes
-ffffffff815ea990 t acpi_enable_all_wakeup_gpes
-ffffffff815ea9d0 t acpi_any_gpe_status_set
-ffffffff815eaa80 t acpi_get_gpe_device
-ffffffff815eab10 t acpi_install_gpe_block
-ffffffff815eac60 t acpi_remove_gpe_block
-ffffffff815eacf0 t acpi_install_address_space_handler
-ffffffff815eada0 t acpi_remove_address_space_handler
-ffffffff815eaed0 t acpi_ex_do_concatenate
-ffffffff815eb270 t acpi_ex_concat_template
-ffffffff815eb360 t acpi_ex_load_table_op
-ffffffff815eb560 t acpi_ex_add_table
-ffffffff815eb5b0 t acpi_ex_unload_table
-ffffffff815eb640 t acpi_ex_load_op
-ffffffff815eb900 t acpi_os_allocate
-ffffffff815eb960 t acpi_ex_region_read
-ffffffff815eba00 t acpi_ex_convert_to_integer
-ffffffff815ebb60 t acpi_ex_convert_to_buffer
-ffffffff815ebc00 t acpi_ex_convert_to_string
-ffffffff815ec0c0 t acpi_ex_convert_to_target_type
-ffffffff815ec380 t acpi_ex_create_alias
-ffffffff815ec3d0 t acpi_ex_create_event
-ffffffff815ec450 t acpi_ex_create_mutex
-ffffffff815ec4f0 t acpi_ex_create_region
-ffffffff815ec620 t acpi_ex_create_processor
-ffffffff815ec6b0 t acpi_ex_create_power_resource
-ffffffff815ec730 t acpi_ex_create_method
-ffffffff815ec7f0 t acpi_ex_do_debug_object
-ffffffff815ecbe0 t acpi_ex_get_protocol_buffer_length
-ffffffff815ecc30 t acpi_ex_read_data_from_field
-ffffffff815ecdc0 t acpi_ex_write_data_to_field
-ffffffff815ecf10 t acpi_ex_access_region
-ffffffff815ed160 t acpi_ex_write_with_update_rule
-ffffffff815ed250 t acpi_ex_field_datum_io
-ffffffff815ed430 t acpi_ex_extract_from_field
-ffffffff815ed6b0 t acpi_ex_insert_into_field
-ffffffff815ed9f0 t acpi_ex_get_object_reference
-ffffffff815edac0 t acpi_ex_do_math_op
-ffffffff815edb70 t acpi_ex_do_logical_numeric_op
-ffffffff815edbd0 t acpi_ex_do_logical_op
-ffffffff815edde0 t acpi_ex_unlink_mutex
-ffffffff815ede30 t acpi_ex_acquire_mutex_object
-ffffffff815edeb0 t acpi_ex_acquire_mutex
-ffffffff815ee010 t acpi_ex_release_mutex_object
-ffffffff815ee0b0 t acpi_ex_release_mutex
-ffffffff815ee2a0 t acpi_ex_release_all_mutexes
-ffffffff815ee330 t acpi_ex_get_name_string
-ffffffff815ee840 t acpi_ex_name_segment
-ffffffff815ee980 t acpi_ex_opcode_0A_0T_1R
-ffffffff815eea20 t acpi_ex_opcode_1A_0T_0R
-ffffffff815eeb10 t acpi_ex_opcode_1A_1T_1R
-ffffffff815ef0e0 t acpi_ex_opcode_1A_0T_1R
-ffffffff815ef660 t acpi_ex_opcode_2A_0T_0R
-ffffffff815ef6f0 t acpi_ex_opcode_2A_2T_1R
-ffffffff815ef820 t acpi_ex_opcode_2A_1T_1R
-ffffffff815efc20 t acpi_ex_opcode_2A_0T_1R
-ffffffff815efd90 t acpi_ex_opcode_3A_0T_0R
-ffffffff815efea0 t acpi_ex_opcode_3A_1T_1R
-ffffffff815f0080 t acpi_ex_opcode_6A_0T_1R
-ffffffff815f0260 t acpi_ex_do_match
-ffffffff815f0330 t acpi_ex_prep_common_field_object
-ffffffff815f03b0 t acpi_ex_prep_field_value
-ffffffff815f06b0 t acpi_ex_system_memory_space_handler
-ffffffff815f09a0 t acpi_ex_system_io_space_handler
-ffffffff815f0a20 t acpi_ex_pci_config_space_handler
-ffffffff815f0a70 t acpi_ex_cmos_space_handler
-ffffffff815f0a80 t acpi_ex_pci_bar_space_handler
-ffffffff815f0a90 t acpi_ex_data_table_space_handler
-ffffffff815f0ad0 t acpi_ex_resolve_node_to_value
-ffffffff815f0d70 t acpi_ex_resolve_to_value
-ffffffff815f1000 t acpi_ex_resolve_multiple
-ffffffff815f12c0 t acpi_ex_resolve_operands
-ffffffff815f18e0 t acpi_ex_read_gpio
-ffffffff815f1920 t acpi_ex_write_gpio
-ffffffff815f1980 t acpi_ex_read_serial_bus
-ffffffff815f1af0 t acpi_ex_write_serial_bus
-ffffffff815f1cb0 t acpi_ex_store
-ffffffff815f1de0 t acpi_ex_store_object_to_node
-ffffffff815f2000 t acpi_ex_store_object_to_index
-ffffffff815f21c0 t acpi_ex_resolve_object
-ffffffff815f22a0 t acpi_ex_store_object_to_object
-ffffffff815f2400 t acpi_ex_store_buffer_to_buffer
-ffffffff815f24e0 t acpi_ex_store_string_to_string
-ffffffff815f25d0 t acpi_ex_system_wait_semaphore
-ffffffff815f2620 t acpi_ex_system_wait_mutex
-ffffffff815f2670 t acpi_ex_system_do_stall
-ffffffff815f26d0 t acpi_ex_system_do_sleep
-ffffffff815f2710 t acpi_ex_system_signal_event
-ffffffff815f2740 t acpi_ex_system_wait_event
-ffffffff815f27a0 t acpi_ex_system_reset_event
-ffffffff815f2810 t acpi_ex_trace_point
-ffffffff815f2820 t acpi_ex_start_trace_method
-ffffffff815f28f0 t acpi_ex_stop_trace_method
-ffffffff815f2970 t acpi_ex_start_trace_opcode
-ffffffff815f2980 t acpi_ex_stop_trace_opcode
-ffffffff815f2990 t acpi_ex_enter_interpreter
-ffffffff815f29f0 t acpi_ex_exit_interpreter
-ffffffff815f2a50 t acpi_ex_truncate_for32bit_table
-ffffffff815f2aa0 t acpi_ex_acquire_global_lock
-ffffffff815f2af0 t acpi_ex_release_global_lock
-ffffffff815f2b30 t acpi_ex_eisa_id_to_string
-ffffffff815f2be0 t acpi_ex_integer_to_string
-ffffffff815f2cb0 t acpi_ex_pci_cls_to_string
-ffffffff815f2d30 t acpi_is_valid_space_id
-ffffffff815f2d50 t acpi_hw_set_mode
-ffffffff815f2e20 t acpi_hw_get_mode
-ffffffff815f2ea0 t acpi_hw_execute_sleep_method
-ffffffff815f2f40 t acpi_hw_extended_sleep
-ffffffff815f3040 t acpi_hw_extended_wake_prep
-ffffffff815f3080 t acpi_hw_extended_wake
-ffffffff815f3220 t acpi_hw_gpe_read
-ffffffff815f3290 t acpi_hw_gpe_write
-ffffffff815f32d0 t acpi_hw_get_gpe_register_bit
-ffffffff815f32f0 t acpi_hw_low_set_gpe
-ffffffff815f3400 t acpi_hw_clear_gpe
-ffffffff815f3460 t acpi_hw_get_gpe_status
-ffffffff815f3580 t acpi_hw_disable_gpe_block
-ffffffff815f35f0 t acpi_hw_clear_gpe_block
-ffffffff815f3660 t acpi_hw_enable_runtime_gpe_block
-ffffffff815f36e0 t acpi_hw_disable_all_gpes
-ffffffff815f3700 t acpi_hw_enable_all_runtime_gpes
-ffffffff815f3720 t acpi_hw_enable_all_wakeup_gpes
-ffffffff815f3740 t acpi_hw_enable_wakeup_gpe_block.llvm.8390790072690524140
-ffffffff815f37b0 t acpi_hw_check_all_gpes
-ffffffff815f3870 t acpi_hw_get_gpe_block_status
-ffffffff815f3990 t acpi_hw_validate_register
-ffffffff815f3a60 t acpi_hw_get_access_bit_width
-ffffffff815f3b40 t acpi_hw_read
-ffffffff815f3cd0 t acpi_hw_write
-ffffffff815f3e00 t acpi_hw_clear_acpi_status
-ffffffff815f3ea0 t acpi_hw_register_write
-ffffffff815f4090 t acpi_hw_get_bit_register_info
-ffffffff815f40d0 t acpi_hw_write_pm1_control
-ffffffff815f4110 t acpi_hw_register_read
-ffffffff815f4320 t acpi_hw_legacy_sleep
-ffffffff815f44e0 t acpi_hw_legacy_wake_prep
-ffffffff815f45a0 t acpi_hw_legacy_wake
-ffffffff815f4670 t acpi_hw_read_port
-ffffffff815f49b0 t acpi_hw_write_port
-ffffffff815f4c90 t acpi_hw_validate_io_block
-ffffffff815f4d90 t acpi_reset
-ffffffff815f4df0 t acpi_read
-ffffffff815f4e00 t acpi_write
-ffffffff815f4e10 t acpi_read_bit_register
-ffffffff815f4e90 t acpi_write_bit_register
-ffffffff815f4f80 t acpi_get_sleep_type_data
-ffffffff815f5170 t acpi_set_firmware_waking_vector
-ffffffff815f51a0 t acpi_enter_sleep_state_s4bios
-ffffffff815f5270 t acpi_enter_sleep_state_prep
-ffffffff815f5360 t acpi_enter_sleep_state
-ffffffff815f53d0 t acpi_leave_sleep_state_prep
-ffffffff815f5400 t acpi_leave_sleep_state
-ffffffff815f5430 t acpi_hw_derive_pci_id
-ffffffff815f56d0 t acpi_ns_root_initialize
-ffffffff815f59d0 t acpi_ns_lookup
-ffffffff815f5e10 t acpi_ns_create_node
-ffffffff815f5e80 t acpi_ns_delete_node
-ffffffff815f5f10 t acpi_ns_remove_node
-ffffffff815f5fd0 t acpi_ns_install_node
-ffffffff815f6040 t acpi_ns_delete_children
-ffffffff815f6120 t acpi_ns_delete_namespace_subtree
-ffffffff815f61c0 t acpi_ns_delete_namespace_by_owner
-ffffffff815f6370 t acpi_ns_check_argument_types
-ffffffff815f6460 t acpi_ns_check_acpi_compliance
-ffffffff815f6550 t acpi_ns_check_argument_count
-ffffffff815f6640 t acpi_ns_convert_to_integer
-ffffffff815f6780 t acpi_ns_convert_to_string
-ffffffff815f6870 t acpi_ns_convert_to_buffer
-ffffffff815f6a00 t acpi_ns_convert_to_unicode
-ffffffff815f6a90 t acpi_ns_convert_to_resource
-ffffffff815f6af0 t acpi_ns_convert_to_reference
-ffffffff815f6c70 t acpi_ns_evaluate
-ffffffff815f6f10 t acpi_ns_initialize_objects
-ffffffff815f6fd0 t acpi_ns_init_one_object
-ffffffff815f7160 t acpi_ns_initialize_devices
-ffffffff815f73c0 t acpi_ns_find_ini_methods
-ffffffff815f7430 t acpi_ns_init_one_device
-ffffffff815f7580 t acpi_ns_init_one_package
-ffffffff815f75d0 t acpi_ns_load_table
-ffffffff815f7660 t acpi_ns_get_external_pathname
-ffffffff815f7720 t acpi_ns_get_normalized_pathname
-ffffffff815f77f0 t acpi_ns_get_pathname_length
-ffffffff815f7840 t acpi_ns_build_normalized_path
-ffffffff815f7980 t acpi_ns_handle_to_name
-ffffffff815f79e0 t acpi_ns_handle_to_pathname
-ffffffff815f7a60 t acpi_ns_build_prefixed_pathname
-ffffffff815f7c50 t acpi_ns_normalize_pathname
-ffffffff815f7db0 t acpi_ns_attach_object
-ffffffff815f7eb0 t acpi_ns_detach_object
-ffffffff815f7f50 t acpi_ns_get_attached_object
-ffffffff815f7fa0 t acpi_ns_get_secondary_object
-ffffffff815f7fe0 t acpi_ns_attach_data
-ffffffff815f8080 t acpi_ns_detach_data
-ffffffff815f80e0 t acpi_ns_get_attached_data
-ffffffff815f8120 t acpi_ns_execute_table
-ffffffff815f82c0 t acpi_ns_one_complete_parse
-ffffffff815f8430 t acpi_ns_parse_table
-ffffffff815f8440 t acpi_ns_check_return_value
-ffffffff815f8510 t acpi_ns_check_object_type
-ffffffff815f8790 t acpi_ns_check_package
-ffffffff815f8f80 t acpi_ns_check_package_list
-ffffffff815f9430 t acpi_ns_simple_repair
-ffffffff815f9760 t acpi_ns_repair_null_element
-ffffffff815f97e0 t acpi_ns_wrap_with_package
-ffffffff815f9830 t acpi_ns_remove_null_elements
-ffffffff815f98e0 t acpi_ns_complex_repairs
-ffffffff815f99b0 t acpi_ns_repair_ALR
-ffffffff815f9ac0 t acpi_ns_repair_CID
-ffffffff815f9b60 t acpi_ns_repair_CST
-ffffffff815f9dd0 t acpi_ns_repair_FDE
-ffffffff815f9ea0 t acpi_ns_repair_HID
-ffffffff815f9f80 t acpi_ns_repair_PRT
-ffffffff815fa020 t acpi_ns_repair_PSS
-ffffffff815fa1c0 t acpi_ns_repair_TSS
-ffffffff815fa330 t acpi_ns_search_one_scope
-ffffffff815fa380 t acpi_ns_search_and_enter
-ffffffff815fa590 t acpi_ns_print_node_pathname
-ffffffff815fa630 t acpi_ns_get_type
-ffffffff815fa670 t acpi_ns_local
-ffffffff815fa6b0 t acpi_ns_get_internal_name_length
-ffffffff815fa760 t acpi_ns_build_internal_name
-ffffffff815fa8f0 t acpi_ns_internalize_name
-ffffffff815faa80 t acpi_ns_externalize_name
-ffffffff815fad00 t acpi_ns_validate_handle
-ffffffff815fad30 t acpi_ns_terminate
-ffffffff815fad80 t acpi_ns_opens_scope
-ffffffff815fadc0 t acpi_ns_get_node_unlocked
-ffffffff815faef0 t acpi_ns_get_node
-ffffffff815fb050 t acpi_ns_get_next_node
-ffffffff815fb070 t acpi_ns_get_next_node_typed
-ffffffff815fb0b0 t acpi_ns_walk_namespace
-ffffffff815fb300 t acpi_evaluate_object_typed
-ffffffff815fb470 t acpi_evaluate_object
-ffffffff815fb750 t acpi_walk_namespace
-ffffffff815fb830 t acpi_get_devices
-ffffffff815fb8e0 t acpi_ns_get_device_callback
-ffffffff815fbab0 t acpi_attach_data
-ffffffff815fbb30 t acpi_detach_data
-ffffffff815fbba0 t acpi_get_data_full
-ffffffff815fbc40 t acpi_get_data
-ffffffff815fbcc0 t acpi_get_handle
-ffffffff815fbd90 t acpi_get_name
-ffffffff815fbe20 t acpi_get_object_info
-ffffffff815fc210 t acpi_install_method
-ffffffff815fc4b0 t acpi_get_type
-ffffffff815fc520 t acpi_get_parent
-ffffffff815fc5a0 t acpi_get_next_object
-ffffffff815fc650 t acpi_ps_get_next_package_end
-ffffffff815fc6e0 t acpi_ps_get_next_namestring
-ffffffff815fc750 t acpi_ps_get_next_namepath
-ffffffff815fc9d0 t acpi_ps_get_next_simple_arg
-ffffffff815fcb40 t acpi_ps_get_next_arg
-ffffffff815fd240 t acpi_ps_parse_loop
-ffffffff815fd8a0 t acpi_ps_build_named_op
-ffffffff815fda30 t acpi_ps_create_op
-ffffffff815fdc80 t acpi_ps_complete_op
-ffffffff815fdf40 t acpi_ps_complete_final_op
-ffffffff815fe0e0 t acpi_ps_get_opcode_info
-ffffffff815fe150 t acpi_ps_get_opcode_name
-ffffffff815fe170 t acpi_ps_get_argument_count
-ffffffff815fe1a0 t acpi_ps_get_opcode_size
-ffffffff815fe1c0 t acpi_ps_peek_opcode
-ffffffff815fe1f0 t acpi_ps_complete_this_op
-ffffffff815fe3a0 t acpi_ps_next_parse_state
-ffffffff815fe4d0 t acpi_ps_parse_aml
-ffffffff815fe840 t acpi_ps_get_parent_scope
-ffffffff815fe860 t acpi_ps_has_completed_scope
-ffffffff815fe890 t acpi_ps_init_scope
-ffffffff815fe8f0 t acpi_ps_push_scope
-ffffffff815fe960 t acpi_ps_pop_scope
-ffffffff815fe9e0 t acpi_ps_cleanup_scope
-ffffffff815fea20 t acpi_ps_get_arg
-ffffffff815fea80 t acpi_ps_append_arg
-ffffffff815feb10 t acpi_ps_get_depth_next
-ffffffff815febe0 t acpi_ps_create_scope_op
-ffffffff815fecb0 t acpi_ps_alloc_op
-ffffffff815fed80 t acpi_ps_init_op
-ffffffff815feda0 t acpi_ps_free_op
-ffffffff815fedd0 t acpi_ps_is_leading_char
-ffffffff815fedf0 t acpi_ps_get_name
-ffffffff815fee10 t acpi_ps_set_name
-ffffffff815fee30 t acpi_ps_delete_parse_tree
-ffffffff815feea0 t acpi_debug_trace
-ffffffff815fef10 t acpi_ps_execute_method
-ffffffff815ff120 t acpi_ps_execute_table
-ffffffff815ff220 t acpi_rs_get_address_common
-ffffffff815ff2a0 t acpi_rs_set_address_common
-ffffffff815ff310 t acpi_rs_get_aml_length
-ffffffff815ff5c0 t acpi_rs_get_list_length
-ffffffff815ff960 t acpi_rs_get_pci_routing_table_length
-ffffffff815ffa40 t acpi_buffer_to_resource
-ffffffff815ffb40 t acpi_rs_create_resource_list
-ffffffff815ffbe0 t acpi_rs_create_pci_routing_table
-ffffffff815ffe80 t acpi_rs_create_aml_resources
-ffffffff815fff00 t acpi_rs_convert_aml_to_resources
-ffffffff81600000 t acpi_rs_convert_resources_to_aml
-ffffffff81600160 t acpi_rs_convert_aml_to_resource
-ffffffff81600770 t acpi_rs_convert_resource_to_aml
-ffffffff81600c20 t acpi_rs_decode_bitmask
-ffffffff81600c60 t acpi_rs_encode_bitmask
-ffffffff81600cf0 t acpi_rs_move_data
-ffffffff81600d70 t acpi_rs_set_resource_length
-ffffffff81600db0 t acpi_rs_set_resource_header
-ffffffff81600df0 t acpi_rs_get_resource_source
-ffffffff81600ed0 t acpi_rs_set_resource_source
-ffffffff81600f10 t acpi_rs_get_prt_method_data
-ffffffff81600f90 t acpi_rs_get_crs_method_data
-ffffffff81601010 t acpi_rs_get_prs_method_data
-ffffffff81601090 t acpi_rs_get_aei_method_data
-ffffffff81601110 t acpi_rs_get_method_data
-ffffffff81601190 t acpi_rs_set_srs_method_data
-ffffffff816012f0 t acpi_get_irq_routing_table
-ffffffff81601350 t acpi_get_current_resources
-ffffffff816013b0 t acpi_get_possible_resources
-ffffffff81601410 t acpi_set_current_resources
-ffffffff81601480 t acpi_get_event_resources
-ffffffff816014e0 t acpi_resource_to_address64
-ffffffff81601620 t acpi_get_vendor_resource
-ffffffff81601690 t acpi_walk_resources
-ffffffff816017c0 t acpi_rs_match_vendor_resource
-ffffffff81601850 t acpi_walk_resource_buffer
-ffffffff81601900 t acpi_tb_init_table_descriptor
-ffffffff81601940 t acpi_tb_acquire_table
-ffffffff816019c0 t acpi_tb_release_table
-ffffffff816019e0 t acpi_tb_acquire_temp_table
-ffffffff81601ae0 t acpi_tb_release_temp_table
-ffffffff81601b30 t acpi_tb_invalidate_table
-ffffffff81601b80 t acpi_tb_validate_table
-ffffffff81601bd0 t acpi_tb_validate_temp_table
-ffffffff81601c40 t acpi_tb_verify_temp_table
-ffffffff81601f00 t acpi_tb_resize_root_table_list
-ffffffff81602120 t acpi_tb_get_next_table_descriptor
-ffffffff81602180 t acpi_tb_terminate
-ffffffff81602210 t acpi_tb_delete_namespace_by_owner
-ffffffff816022a0 t acpi_tb_allocate_owner_id
-ffffffff81602300 t acpi_tb_release_owner_id
-ffffffff81602360 t acpi_tb_get_owner_id
-ffffffff816023c0 t acpi_tb_is_table_loaded
-ffffffff81602410 t acpi_tb_set_table_loaded_flag
-ffffffff81602470 t acpi_tb_load_table
-ffffffff81602550 t acpi_tb_notify_table
-ffffffff81602580 t acpi_tb_install_and_load_table
-ffffffff816025f0 t acpi_tb_unload_table
-ffffffff81602720 t acpi_tb_parse_fadt
-ffffffff81602830 t acpi_tb_create_local_fadt
-ffffffff81602d20 t acpi_tb_find_table
-ffffffff81602ed0 t acpi_tb_install_table_with_override
-ffffffff81602f80 t acpi_tb_override_table
-ffffffff81603110 t acpi_tb_install_standard_table
-ffffffff816032c0 t acpi_tb_uninstall_table
-ffffffff81603300 t acpi_tb_print_table_header
-ffffffff816036d0 t acpi_tb_verify_checksum
-ffffffff81603790 t acpi_tb_checksum
-ffffffff81603810 t acpi_tb_initialize_facs
-ffffffff816038a0 t acpi_tb_check_dsdt_header
-ffffffff81603930 t acpi_tb_copy_dsdt
-ffffffff81603a30 t acpi_tb_get_table
-ffffffff81603aa0 t acpi_tb_put_table
-ffffffff81603b00 t acpi_allocate_root_table
-ffffffff81603b20 t acpi_get_table_header
-ffffffff81603c30 t acpi_get_table
-ffffffff81603cd0 t acpi_put_table
-ffffffff81603d30 t acpi_get_table_by_index
-ffffffff81603da0 t acpi_install_table_handler
-ffffffff81603e10 t acpi_remove_table_handler
-ffffffff81603e60 t acpi_tb_load_namespace
-ffffffff816040c0 t acpi_load_table
-ffffffff81604150 t acpi_unload_parent_table
-ffffffff81604210 t acpi_unload_table
-ffffffff81604230 t acpi_tb_get_rsdp_length
-ffffffff81604270 t acpi_tb_validate_rsdp
-ffffffff816042e0 t acpi_tb_scan_memory_for_rsdp
-ffffffff81604360 t acpi_ut_add_address_range
-ffffffff81604430 t acpi_ut_remove_address_range
-ffffffff816044b0 t acpi_ut_check_address_range
-ffffffff816045d0 t acpi_ut_delete_address_lists
-ffffffff81604650 t acpi_ut_create_caches
-ffffffff81604710 t acpi_ut_delete_caches
-ffffffff81604790 t acpi_ut_validate_buffer
-ffffffff816047d0 t acpi_ut_initialize_buffer
-ffffffff816048c0 t acpi_ut_valid_nameseg
-ffffffff81604940 t acpi_ut_valid_name_char
-ffffffff81604980 t acpi_ut_check_and_repair_ascii
-ffffffff816049c0 t acpi_ut_dump_buffer
-ffffffff81604c10 t acpi_ut_debug_dump_buffer
-ffffffff81604c40 t acpi_ut_copy_iobject_to_eobject
-ffffffff81604cf0 t acpi_ut_copy_isimple_to_esimple
-ffffffff81604e40 t acpi_ut_copy_eobject_to_iobject
-ffffffff816050c0 t acpi_ut_copy_iobject_to_iobject
-ffffffff816051f0 t acpi_ut_copy_simple_object
-ffffffff816053a0 t acpi_ut_copy_ielement_to_eelement
-ffffffff81605450 t acpi_ut_copy_ielement_to_ielement
-ffffffff81605520 t acpi_format_exception
-ffffffff81605630 t acpi_ut_validate_exception
-ffffffff81605720 t acpi_ut_get_region_name
-ffffffff81605780 t acpi_ut_get_event_name
-ffffffff816057b0 t acpi_ut_get_type_name
-ffffffff816057e0 t acpi_ut_get_object_type_name
-ffffffff81605830 t acpi_ut_get_node_name
-ffffffff81605880 t acpi_ut_get_descriptor_name
-ffffffff816058c0 t acpi_ut_get_reference_name
-ffffffff81605920 t acpi_ut_get_mutex_name
-ffffffff81605950 t acpi_ut_valid_object_type
-ffffffff81605970 t acpi_ut_delete_internal_object_list
-ffffffff816059e0 t acpi_ut_remove_reference
-ffffffff81605a20 t acpi_ut_update_object_reference
-ffffffff81605c80 t acpi_ut_update_ref_count
-ffffffff81606050 t acpi_ut_add_reference
-ffffffff81606080 t acpi_ut_predefined_warning
-ffffffff81606150 t acpi_ut_predefined_info
-ffffffff81606220 t acpi_ut_predefined_bios_error
-ffffffff816062f0 t acpi_ut_prefixed_namespace_error
-ffffffff816063c0 t acpi_ut_method_error
-ffffffff81606490 t acpi_ut_evaluate_object
-ffffffff81606650 t acpi_ut_evaluate_numeric_object
-ffffffff816066d0 t acpi_ut_execute_STA
-ffffffff81606750 t acpi_ut_execute_power_methods
-ffffffff81606820 t acpi_ut_hex_to_ascii_char
-ffffffff81606880 t acpi_ut_ascii_to_hex_byte
-ffffffff816068e0 t acpi_ut_ascii_char_to_hex
-ffffffff81606910 t acpi_ut_execute_HID
-ffffffff81606a10 t acpi_ut_execute_UID
-ffffffff81606b10 t acpi_ut_execute_CID
-ffffffff81606cf0 t acpi_ut_execute_CLS
-ffffffff81606e20 t acpi_ut_init_globals
-ffffffff816070e0 t acpi_ut_subsystem_shutdown
-ffffffff816071b0 t acpi_ut_create_rw_lock
-ffffffff816071f0 t acpi_ut_delete_rw_lock
-ffffffff81607230 t acpi_ut_acquire_read_lock
-ffffffff816072a0 t acpi_ut_release_read_lock
-ffffffff81607300 t acpi_ut_acquire_write_lock
-ffffffff81607320 t acpi_ut_release_write_lock
-ffffffff81607340 t acpi_ut_short_multiply
-ffffffff81607360 t acpi_ut_short_shift_left
-ffffffff81607380 t acpi_ut_short_shift_right
-ffffffff816073a0 t acpi_ut_short_divide
-ffffffff81607420 t acpi_ut_divide
-ffffffff816074b0 t acpi_ut_is_pci_root_bridge
-ffffffff816074f0 t acpi_ut_dword_byte_swap
-ffffffff81607500 t acpi_ut_set_integer_width
-ffffffff81607540 t acpi_ut_create_update_state_and_push
-ffffffff81607580 t acpi_ut_walk_package_tree
-ffffffff816076f0 t acpi_ut_mutex_initialize
-ffffffff816079f0 t acpi_ut_mutex_terminate
-ffffffff81607b10 t acpi_ut_acquire_mutex
-ffffffff81607bb0 t acpi_ut_release_mutex
-ffffffff81607c30 t acpi_ut_strlwr
-ffffffff81607c80 t acpi_ut_strupr
-ffffffff81607cd0 t acpi_ut_stricmp
-ffffffff81607d30 t acpi_ut_create_internal_object_dbg
-ffffffff81607e50 t acpi_ut_allocate_object_desc_dbg
-ffffffff81607ef0 t acpi_ut_delete_object_desc
-ffffffff81607f40 t acpi_ut_create_package_object
-ffffffff81608030 t acpi_ut_create_integer_object
-ffffffff816080d0 t acpi_ut_create_buffer_object
-ffffffff816081d0 t acpi_ut_create_string_object
-ffffffff816082d0 t acpi_ut_valid_internal_object
-ffffffff816082f0 t acpi_ut_get_object_size
-ffffffff81608390 t acpi_ut_get_simple_object_size
-ffffffff816084e0 t acpi_ut_get_element_length
-ffffffff81608560 t acpi_ut_initialize_interfaces
-ffffffff816086e0 t acpi_ut_interface_terminate
-ffffffff81608780 t acpi_ut_install_interface
-ffffffff81608880 t acpi_ut_remove_interface
-ffffffff81608930 t acpi_ut_update_interfaces
-ffffffff81608990 t acpi_ut_get_interface
-ffffffff816089e0 t acpi_ut_osi_implementation
-ffffffff81608b20 t acpi_ut_allocate_owner_id
-ffffffff81608c40 t acpi_ut_release_owner_id
-ffffffff81608ce0 t acpi_ut_get_next_predefined_method
-ffffffff81608d20 t acpi_ut_match_predefined_method
-ffffffff81608d80 t acpi_ut_get_expected_return_types
-ffffffff81608e50 t acpi_ut_walk_aml_resources
-ffffffff81608fc0 t acpi_ut_validate_resource
-ffffffff816090f0 t acpi_ut_get_descriptor_length
-ffffffff81609120 t acpi_ut_get_resource_type
-ffffffff81609140 t acpi_ut_get_resource_length
-ffffffff81609170 t acpi_ut_get_resource_header_length
-ffffffff81609190 t acpi_ut_get_resource_end_tag
-ffffffff81609330 t acpi_ut_push_generic_state
-ffffffff81609350 t acpi_ut_pop_generic_state
-ffffffff81609370 t acpi_ut_create_generic_state
-ffffffff816093e0 t acpi_ut_create_thread_state
-ffffffff81609490 t acpi_ut_create_update_state
-ffffffff81609510 t acpi_ut_create_pkg_state
-ffffffff816095a0 t acpi_ut_create_control_state
-ffffffff81609610 t acpi_ut_delete_generic_state
-ffffffff81609630 t acpi_ut_print_string
-ffffffff816097d0 t acpi_ut_repair_name
-ffffffff81609890 t acpi_ut_convert_octal_string
-ffffffff816099c0 t acpi_ut_convert_decimal_string
-ffffffff81609af0 t acpi_ut_convert_hex_string
-ffffffff81609c20 t acpi_ut_remove_leading_zeros
-ffffffff81609c60 t acpi_ut_remove_whitespace
-ffffffff81609ca0 t acpi_ut_detect_hex_prefix
-ffffffff81609ce0 t acpi_ut_remove_hex_prefix
-ffffffff81609d20 t acpi_ut_detect_octal_prefix
-ffffffff81609d50 t acpi_ut_strtoul64
-ffffffff81609e50 t acpi_ut_implicit_strtoul64
-ffffffff81609ed0 t acpi_ut_explicit_strtoul64
-ffffffff81609f60 t acpi_purge_cached_objects
-ffffffff81609fa0 t acpi_install_interface
-ffffffff8160a030 t acpi_remove_interface
-ffffffff8160a090 t acpi_install_interface_handler
-ffffffff8160a100 t acpi_update_interfaces
-ffffffff8160a150 t acpi_check_address_range
-ffffffff8160a1b0 t acpi_decode_pld_buffer
-ffffffff8160a350 t acpi_error
-ffffffff8160a420 t acpi_exception
-ffffffff8160a500 t acpi_warning
-ffffffff8160a5d0 t acpi_info
-ffffffff8160a690 t acpi_bios_error
-ffffffff8160a760 t acpi_bios_exception
-ffffffff8160a840 t acpi_bios_warning
-ffffffff8160a910 t acpi_acquire_mutex
-ffffffff8160a9b0 t acpi_release_mutex
-ffffffff8160aa40 t acpi_ac_add
-ffffffff8160ac60 t acpi_ac_remove
-ffffffff8160acb0 t acpi_ac_notify
-ffffffff8160adb0 t get_ac_property
-ffffffff8160ae60 t acpi_ac_battery_notify
-ffffffff8160af10 t acpi_ac_resume
-ffffffff8160afe0 t acpi_lid_open
-ffffffff8160b060 t param_set_lid_init_state
-ffffffff8160b0c0 t param_get_lid_init_state
-ffffffff8160b190 t acpi_button_add
-ffffffff8160b5e0 t acpi_button_remove
-ffffffff8160b680 t acpi_button_notify
-ffffffff8160b810 t acpi_lid_input_open
-ffffffff8160b900 t acpi_lid_notify_state
-ffffffff8160ba30 t acpi_button_state_seq_show
-ffffffff8160bad0 t acpi_button_suspend
-ffffffff8160baf0 t acpi_button_resume
-ffffffff8160bbf0 t acpi_fan_get_fst
-ffffffff8160bcf0 t acpi_fan_probe
-ffffffff8160c280 t acpi_fan_remove
-ffffffff8160c300 t acpi_fan_speed_cmp
-ffffffff8160c320 t fan_get_max_state
-ffffffff8160c370 t fan_get_cur_state
-ffffffff8160c480 t fan_set_cur_state
-ffffffff8160c540 t acpi_fan_resume
-ffffffff8160c5b0 t acpi_fan_suspend
-ffffffff8160c5f0 t acpi_fan_create_attributes
-ffffffff8160c7a0 t show_fine_grain_control
-ffffffff8160c7d0 t show_fan_speed
-ffffffff8160c850 t show_state
-ffffffff8160c9a0 t acpi_fan_delete_attributes
-ffffffff8160ca30 t acpi_processor_notifier
-ffffffff8160ca70 t acpi_processor_start
-ffffffff8160cac0 t acpi_processor_stop
-ffffffff8160cb30 t __acpi_processor_start
-ffffffff8160cc10 t acpi_processor_notify
-ffffffff8160ccf0 t acpi_soft_cpu_online
-ffffffff8160cda0 t acpi_soft_cpu_dead
-ffffffff8160cdf0 t acpi_thermal_cpufreq_init
-ffffffff8160ce90 t acpi_thermal_cpufreq_exit
-ffffffff8160cf10 t processor_get_max_state
-ffffffff8160cf90 t processor_get_cur_state
-ffffffff8160d0a0 t processor_set_cur_state
-ffffffff8160d1d0 t acpi_processor_thermal_init
-ffffffff8160d2b0 t acpi_processor_thermal_exit
-ffffffff8160d310 t cpufreq_set_cur_state
-ffffffff8160d570 t cpufreq_set_cur_state
-ffffffff8160d5e0 t acpi_processor_ffh_lpi_probe
-ffffffff8160d5f0 t acpi_processor_ffh_lpi_enter
-ffffffff8160d600 t acpi_processor_hotplug
-ffffffff8160d6a0 t acpi_processor_get_power_info
-ffffffff8160e140 t acpi_processor_setup_cpuidle_dev
-ffffffff8160e280 t acpi_processor_power_state_has_changed
-ffffffff8160e400 t acpi_processor_setup_cpuidle_states
-ffffffff8160e700 t acpi_processor_power_init
-ffffffff8160e8a0 t acpi_processor_power_exit
-ffffffff8160e910 t acpi_processor_evaluate_lpi
-ffffffff8160ec90 t acpi_cst_latency_cmp
-ffffffff8160ecc0 t acpi_cst_latency_swap
-ffffffff8160ecf0 t __lapic_timer_propagate_broadcast
-ffffffff8160ed20 t acpi_idle_lpi_enter
-ffffffff8160ed70 t acpi_idle_play_dead
-ffffffff8160ee10 t set_max_cstate
-ffffffff8160ee60 t acpi_processor_throttling_init
-ffffffff8160f180 t acpi_processor_tstate_has_changed
-ffffffff8160f2a0 t acpi_processor_set_throttling
-ffffffff8160f2c0 t acpi_processor_reevaluate_tstate
-ffffffff8160f3a0 t __acpi_processor_set_throttling.llvm.4708296572356299050
-ffffffff8160f6d0 t acpi_processor_get_throttling_info
-ffffffff8160fd80 t acpi_processor_get_throttling_fadt
-ffffffff8160fe30 t acpi_processor_set_throttling_fadt
-ffffffff8160fef0 t acpi_processor_get_throttling_ptc
-ffffffff81610080 t acpi_processor_set_throttling_ptc
-ffffffff816101c0 t __acpi_processor_get_throttling
-ffffffff816101e0 t acpi_processor_throttling_fn
-ffffffff81610210 t acpi_processor_ppc_has_changed
-ffffffff816102d0 t acpi_processor_get_platform_limit
-ffffffff816103e0 t acpi_processor_get_bios_limit
-ffffffff81610440 t acpi_processor_ignore_ppc_init
-ffffffff81610470 t acpi_processor_ppc_init
-ffffffff81610510 t acpi_processor_ppc_exit
-ffffffff81610590 t acpi_processor_get_performance_info
-ffffffff81610b20 t acpi_processor_pstate_control
-ffffffff81610b90 t acpi_processor_notify_smm
-ffffffff81610c30 t acpi_processor_get_psd
-ffffffff81610d60 t acpi_processor_preregister_performance
-ffffffff816111b0 t acpi_processor_register_performance
-ffffffff81611270 t acpi_processor_unregister_performance
-ffffffff816112e0 t container_device_attach
-ffffffff816113b0 t container_device_detach
-ffffffff816113e0 t container_device_online
-ffffffff81611400 t acpi_container_offline
-ffffffff81611440 t acpi_container_release
-ffffffff81611450 t check_offline
-ffffffff81611470 t acpi_thermal_add
-ffffffff81611a10 t acpi_thermal_remove
-ffffffff81611ab0 t acpi_thermal_notify
-ffffffff81611bd0 t acpi_thermal_check_fn
-ffffffff81611c50 t acpi_thermal_trips_update
-ffffffff81612590 t acpi_thermal_bind_cooling_device
-ffffffff816125b0 t acpi_thermal_unbind_cooling_device
-ffffffff816125d0 t thermal_get_temp
-ffffffff81612680 t thermal_get_trip_type
-ffffffff816127a0 t thermal_get_trip_temp
-ffffffff816128c0 t thermal_get_crit_temp
-ffffffff816128f0 t thermal_get_trend
-ffffffff816129e0 t acpi_thermal_zone_device_hot
-ffffffff81612a20 t acpi_thermal_zone_device_critical
-ffffffff81612a90 t acpi_thermal_cooling_device_cb
-ffffffff81612c70 t acpi_thermal_suspend
-ffffffff81612c90 t acpi_thermal_resume
-ffffffff81612dd0 t thermal_act
-ffffffff81612e10 t thermal_psv
-ffffffff81612e50 t thermal_tzp
-ffffffff81612e90 t thermal_nocrt
-ffffffff81612ec0 t acpi_ioapic_add
-ffffffff81612f40 t handle_ioapic_add
-ffffffff81613320 t pci_ioapic_remove
-ffffffff816133b0 t acpi_ioapic_remove
-ffffffff816134e0 t setup_res
-ffffffff81613610 t battery_hook_unregister
-ffffffff816136c0 t battery_hook_register
-ffffffff81613800 t acpi_battery_add
-ffffffff816139e0 t acpi_battery_remove
-ffffffff81613a60 t acpi_battery_notify
-ffffffff81613b50 t battery_notify
-ffffffff81613bf0 t sysfs_remove_battery
-ffffffff81613cf0 t acpi_battery_update
-ffffffff81613f90 t acpi_battery_get_info
-ffffffff81614420 t acpi_battery_init_alarm
-ffffffff816144c0 t acpi_battery_get_state
-ffffffff81614750 t sysfs_add_battery
-ffffffff816149f0 t find_battery
-ffffffff81614a60 t acpi_battery_get_property
-ffffffff81614e60 t acpi_battery_alarm_show
-ffffffff81614ea0 t acpi_battery_alarm_store
-ffffffff81614f80 t acpi_battery_resume
-ffffffff81615000 t acpi_cpc_valid
-ffffffff81615070 t cppc_allow_fast_switch
-ffffffff816150e0 t acpi_get_psd_map
-ffffffff81615250 t acpi_cppc_processor_probe
-ffffffff81615820 t pcc_data_alloc
-ffffffff81615870 t acpi_get_psd
-ffffffff81615990 t register_pcc_channel
-ffffffff81615a50 t acpi_cppc_processor_exit
-ffffffff81615b50 t cppc_get_desired_perf
-ffffffff81615b70 t cppc_get_perf
-ffffffff81615c60 t cppc_get_nominal_perf
-ffffffff81615c80 t cppc_get_perf_caps
-ffffffff81615fe0 t send_pcc_cmd
-ffffffff81616280 t cpc_read
-ffffffff816163d0 t cppc_perf_ctrs_in_pcc
-ffffffff816164e0 t cppc_get_perf_ctrs
-ffffffff81616780 t cppc_set_enable
-ffffffff81616850 t cpc_write
-ffffffff81616950 t cppc_set_perf
-ffffffff81616b50 t check_pcc_chan
-ffffffff81616c40 t cppc_get_transition_latency
-ffffffff81616cf0 t cppc_chan_tx_done
-ffffffff81616d00 t show_feedback_ctrs
-ffffffff81616d90 t show_reference_perf
-ffffffff81616e20 t show_wraparound_time
-ffffffff81616eb0 t show_highest_perf
-ffffffff81616f40 t show_lowest_perf
-ffffffff81616fd0 t show_lowest_nonlinear_perf
-ffffffff81617060 t show_nominal_perf
-ffffffff816170f0 t show_nominal_freq
-ffffffff81617180 t show_lowest_freq
-ffffffff81617210 t int340x_thermal_handler_attach
-ffffffff81617220 t pnp_register_protocol
-ffffffff81617360 t pnp_unregister_protocol
-ffffffff816173d0 t pnp_free_resource
-ffffffff81617420 t pnp_free_resources
-ffffffff816174b0 t pnp_alloc_dev
-ffffffff816175b0 t pnp_release_device
-ffffffff81617670 t __pnp_add_device
-ffffffff81617820 t pnp_add_device
-ffffffff81617960 t __pnp_remove_device
-ffffffff81617a10 t pnp_alloc_card
-ffffffff81617b90 t pnp_add_card
-ffffffff81617d40 t pnp_release_card
-ffffffff81617d90 t card_probe
-ffffffff81618040 t pnp_remove_card
-ffffffff81618190 t pnp_remove_card_device
-ffffffff81618210 t pnp_add_card_device
-ffffffff816182d0 t pnp_request_card_device
-ffffffff816183d0 t pnp_release_card_device
-ffffffff81618410 t card_remove
-ffffffff81618430 t card_remove_first
-ffffffff816184a0 t pnp_register_card_driver
-ffffffff816185a0 t card_suspend
-ffffffff816185d0 t card_resume
-ffffffff81618600 t pnp_unregister_card_driver
-ffffffff81618670 t card_id_show
-ffffffff816186d0 t compare_pnp_id
-ffffffff81618860 t pnp_device_attach
-ffffffff816188b0 t pnp_device_detach
-ffffffff816188f0 t pnp_bus_match
-ffffffff81618940 t pnp_device_probe
-ffffffff81618a80 t pnp_device_remove
-ffffffff81618b10 t pnp_device_shutdown
-ffffffff81618b40 t pnp_register_driver
-ffffffff81618b70 t pnp_unregister_driver
-ffffffff81618b90 t pnp_add_id
-ffffffff81618c80 t pnp_bus_suspend
-ffffffff81618ca0 t pnp_bus_resume
-ffffffff81618d40 t pnp_bus_freeze
-ffffffff81618d60 t pnp_bus_poweroff
-ffffffff81618d80 t __pnp_bus_suspend
-ffffffff81618e90 t pnp_register_irq_resource
-ffffffff81618fa0 t pnp_register_dma_resource
-ffffffff81619050 t pnp_register_port_resource
-ffffffff81619120 t pnp_register_mem_resource
-ffffffff816191f0 t pnp_free_options
-ffffffff81619280 t pnp_check_port
-ffffffff81619550 t pnp_get_resource
-ffffffff816195a0 t pnp_check_mem
-ffffffff81619870 t pnp_check_irq
-ffffffff81619c50 t pnp_test_handler
-ffffffff81619c60 t pnp_check_dma
-ffffffff81619e50 t pnp_resource_type
-ffffffff81619e70 t pnp_add_resource
-ffffffff81619f50 t pnp_add_irq_resource
-ffffffff8161a000 t pnp_add_dma_resource
-ffffffff8161a0d0 t pnp_add_io_resource
-ffffffff8161a1b0 t pnp_add_mem_resource
-ffffffff8161a290 t pnp_add_bus_resource
-ffffffff8161a360 t pnp_possible_config
-ffffffff8161a410 t pnp_range_reserved
-ffffffff8161a470 t pnp_init_resources
-ffffffff8161a480 t pnp_auto_config_dev
-ffffffff8161a530 t pnp_assign_resources
-ffffffff8161aff0 t pnp_start_dev
-ffffffff8161b0a0 t pnp_stop_dev
-ffffffff8161b140 t pnp_activate_dev
-ffffffff8161b210 t pnp_disable_dev
-ffffffff8161b310 t pnp_is_active
-ffffffff8161b400 t pnp_eisa_id_to_string
-ffffffff8161b480 t pnp_resource_type_name
-ffffffff8161b510 t dbg_pnp_show_resources
-ffffffff8161b5d0 t pnp_option_priority_name
-ffffffff8161b600 t dbg_pnp_show_option
-ffffffff8161bbc0 t resources_show
-ffffffff8161bd60 t resources_store
-ffffffff8161c1d0 t pnp_printf
-ffffffff8161c2b0 t options_show
-ffffffff8161ca60 t id_show
-ffffffff8161cac0 t id_show
-ffffffff8161caf0 t id_show
-ffffffff8161cb20 t id_show
-ffffffff8161cb50 t pnp_fixup_device
-ffffffff8161cc00 t quirk_awe32_resources
-ffffffff8161cc80 t quirk_cmi8330_resources
-ffffffff8161cd60 t quirk_sb16audio_resources
-ffffffff8161ce10 t quirk_ad1815_mpu_resources
-ffffffff8161ce80 t quirk_add_irq_optional_dependent_sets
-ffffffff8161d0c0 t quirk_system_pci_resources
-ffffffff8161d250 t quirk_amd_mmconfig_area
-ffffffff8161d380 t quirk_intel_mch
-ffffffff8161d560 t quirk_awe32_add_ports
-ffffffff8161d620 t system_pnp_probe
-ffffffff8161d6f0 t reserve_range
-ffffffff8161d7e0 t pnpacpi_get_resources
-ffffffff8161d820 t pnpacpi_set_resources
-ffffffff8161d970 t pnpacpi_disable_resources
-ffffffff8161d9e0 t pnpacpi_can_wakeup
-ffffffff8161da20 t pnpacpi_suspend
-ffffffff8161dac0 t pnpacpi_resume
-ffffffff8161db30 t pnpacpi_parse_allocated_resource
-ffffffff8161dbc0 t pnpacpi_allocated_resource
-ffffffff8161df00 t pnpacpi_build_resource_template
-ffffffff8161e040 t pnpacpi_count_resources
-ffffffff8161e060 t pnpacpi_type_resources
-ffffffff8161e0a0 t pnpacpi_encode_resources
-ffffffff8161e8e0 t dma_flags
-ffffffff8161e990 t pnpacpi_parse_allocated_vendor
-ffffffff8161ea10 t virtio_check_driver_offered_feature
-ffffffff8161ea80 t virtio_config_changed
-ffffffff8161eae0 t virtio_add_status
-ffffffff8161eb30 t virtio_reset_device
-ffffffff8161eb50 t register_virtio_driver
-ffffffff8161eb80 t unregister_virtio_driver
-ffffffff8161eb90 t register_virtio_device
-ffffffff8161ee00 t is_virtio_device
-ffffffff8161ee20 t unregister_virtio_device
-ffffffff8161ee50 t virtio_device_freeze
-ffffffff8161eec0 t virtio_device_restore
-ffffffff8161f0a0 t virtio_features_ok
-ffffffff8161f180 t virtio_device_ready
-ffffffff8161f1d0 t virtio_dev_match
-ffffffff8161f230 t virtio_uevent
-ffffffff8161f260 t virtio_dev_probe
-ffffffff8161f4c0 t virtio_dev_remove
-ffffffff8161f560 t virtio_max_dma_size
-ffffffff8161f590 t virtqueue_add_sgs
-ffffffff8161f640 t virtqueue_add.llvm.5856530329870159887
-ffffffff816203d0 t virtqueue_add_outbuf
-ffffffff81620430 t virtqueue_add_inbuf
-ffffffff81620490 t virtqueue_add_inbuf_ctx
-ffffffff816204f0 t virtqueue_kick_prepare
-ffffffff816205c0 t virtqueue_notify
-ffffffff81620600 t virtqueue_kick
-ffffffff816206f0 t virtqueue_get_buf_ctx
-ffffffff81620920 t virtqueue_get_buf
-ffffffff81620940 t virtqueue_disable_cb
-ffffffff816209c0 t virtqueue_enable_cb_prepare
-ffffffff81620a50 t virtqueue_poll
-ffffffff81620ad0 t virtqueue_enable_cb
-ffffffff81620bc0 t virtqueue_enable_cb_delayed
-ffffffff81620d10 t virtqueue_detach_unused_buf
-ffffffff81620dd0 t vring_interrupt
-ffffffff81620e50 t vring_create_virtqueue
-ffffffff816212c0 t virtqueue_resize
-ffffffff816213c0 t virtqueue_resize_packed
-ffffffff81621690 t virtqueue_resize_split
-ffffffff816219a0 t vring_new_virtqueue
-ffffffff81621aa0 t __vring_new_virtqueue
-ffffffff81621d10 t vring_del_virtqueue
-ffffffff81621d80 t vring_free
-ffffffff81621f10 t vring_transport_features
-ffffffff81621f30 t virtqueue_get_vring_size
-ffffffff81621f40 t __virtqueue_break
-ffffffff81621f50 t __virtqueue_unbreak
-ffffffff81621f60 t virtqueue_is_broken
-ffffffff81621f70 t virtio_break_device
-ffffffff81621fc0 t __virtio_unbreak_device
-ffffffff81622010 t virtqueue_get_desc_addr
-ffffffff81622030 t virtqueue_get_avail_addr
-ffffffff81622070 t virtqueue_get_used_addr
-ffffffff816220b0 t virtqueue_get_vring
-ffffffff816220c0 t virtqueue_disable_dma_api_for_buffers
-ffffffff816220d0 t vring_unmap_extra_packed
-ffffffff81622110 t vring_map_single
-ffffffff81622220 t detach_buf_packed
-ffffffff81622390 t detach_buf_split
-ffffffff816225c0 t vring_alloc_queue_packed
-ffffffff816227e0 t vring_free_packed
-ffffffff816228e0 t vring_alloc_queue_split
-ffffffff81622b60 t virtio_require_restricted_mem_acc
-ffffffff81622b70 t virtio_no_restricted_mem_acc
-ffffffff81622b80 t vp_modern_probe
-ffffffff81623140 t vp_modern_map_capability
-ffffffff816233c0 t vp_modern_remove
-ffffffff81623420 t vp_modern_get_features
-ffffffff81623470 t vp_modern_get_driver_features
-ffffffff816234d0 t vp_modern_set_features
-ffffffff81623530 t vp_modern_generation
-ffffffff81623550 t vp_modern_get_status
-ffffffff81623570 t vp_modern_set_status
-ffffffff81623590 t vp_modern_get_queue_reset
-ffffffff816235c0 t vp_modern_set_queue_reset
-ffffffff81623640 t vp_modern_queue_vector
-ffffffff81623680 t vp_modern_config_vector
-ffffffff816236b0 t vp_modern_queue_address
-ffffffff81623750 t vp_modern_set_queue_enable
-ffffffff81623790 t vp_modern_get_queue_enable
-ffffffff816237d0 t vp_modern_set_queue_size
-ffffffff81623810 t vp_modern_get_queue_size
-ffffffff81623840 t vp_modern_get_num_queues
-ffffffff81623860 t vp_modern_map_vq_notify
-ffffffff81623930 t vp_legacy_probe
-ffffffff81623a30 t vp_legacy_remove
-ffffffff81623a60 t vp_legacy_get_features
-ffffffff81623a80 t vp_legacy_get_driver_features
-ffffffff81623aa0 t vp_legacy_set_features
-ffffffff81623ac0 t vp_legacy_get_status
-ffffffff81623ae0 t vp_legacy_set_status
-ffffffff81623b00 t vp_legacy_queue_vector
-ffffffff81623b50 t vp_legacy_config_vector
-ffffffff81623b80 t vp_legacy_set_queue_address
-ffffffff81623bc0 t vp_legacy_get_queue_enable
-ffffffff81623c00 t vp_legacy_get_queue_size
-ffffffff81623c30 t virtio_pci_modern_probe
-ffffffff81623cc0 t vp_config_vector
-ffffffff81623ce0 t vp_config_vector
-ffffffff81623d00 t setup_vq
-ffffffff81623e60 t setup_vq
-ffffffff81623fd0 t del_vq
-ffffffff81624030 t del_vq
-ffffffff816240a0 t virtio_pci_modern_remove
-ffffffff816240c0 t vp_get
-ffffffff81624160 t vp_get
-ffffffff816241d0 t vp_set
-ffffffff81624270 t vp_set
-ffffffff816242e0 t vp_generation
-ffffffff81624300 t vp_get_status
-ffffffff81624320 t vp_get_status
-ffffffff81624340 t vp_set_status
-ffffffff81624370 t vp_set_status
-ffffffff816243a0 t vp_reset
-ffffffff81624400 t vp_reset
-ffffffff81624440 t vp_modern_find_vqs
-ffffffff816244b0 t vp_get_features
-ffffffff816244d0 t vp_get_features
-ffffffff816244f0 t vp_finalize_features
-ffffffff816245b0 t vp_finalize_features
-ffffffff81624600 t vp_get_shm_region
-ffffffff81624820 t vp_modern_disable_vq_and_reset
-ffffffff81624910 t vp_modern_enable_vq_after_reset
-ffffffff81624a50 t vp_active_vq
-ffffffff81624af0 t vp_synchronize_vectors
-ffffffff81624b60 t vp_notify
-ffffffff81624b80 t vp_del_vqs
-ffffffff81624dd0 t vp_find_vqs
-ffffffff81624f90 t vp_find_vqs_msix
-ffffffff81625450 t vp_bus_name
-ffffffff81625480 t vp_set_vq_affinity
-ffffffff81625530 t vp_get_vq_affinity
-ffffffff81625580 t vp_setup_vq
-ffffffff816256c0 t vp_config_changed
-ffffffff816256e0 t vp_vring_interrupt
-ffffffff81625760 t vp_interrupt
-ffffffff81625810 t virtio_pci_probe
-ffffffff81625980 t virtio_pci_remove
-ffffffff81625a30 t virtio_pci_sriov_configure
-ffffffff81625ac0 t virtio_pci_release_dev
-ffffffff81625ae0 t virtio_pci_freeze
-ffffffff81625b20 t virtio_pci_restore
-ffffffff81625b60 t virtio_pci_legacy_probe
-ffffffff81625be0 t virtio_pci_legacy_remove
-ffffffff81625c00 t virtballoon_validate
-ffffffff81625c40 t virtballoon_probe
-ffffffff816260c0 t virtballoon_remove
-ffffffff816261d0 t virtballoon_changed
-ffffffff81626270 t virtballoon_freeze
-ffffffff81626290 t virtballoon_restore
-ffffffff816263a0 t update_balloon_stats_func
-ffffffff81626610 t update_balloon_size_func
-ffffffff81626930 t init_vqs
-ffffffff81626dd0 t init_vqs
-ffffffff816271a0 t virtballoon_migratepage
-ffffffff816273e0 t report_free_page_func
-ffffffff81627900 t virtio_balloon_oom_notify
-ffffffff81627990 t virtballoon_free_page_report
-ffffffff81627af0 t leak_balloon
-ffffffff81627d30 t tell_host
-ffffffff81627eb0 t balloon_ack
-ffffffff81627ee0 t stats_request
-ffffffff81627f40 t virtio_balloon_shrinker_scan
-ffffffff81628060 t virtio_balloon_shrinker_count
-ffffffff81628080 t remove_common
-ffffffff81628210 t tty_alloc_file
-ffffffff81628250 t tty_add_file
-ffffffff816282d0 t tty_free_file
-ffffffff81628300 t tty_name
-ffffffff81628320 t tty_driver_name
-ffffffff81628350 t tty_dev_name_to_number
-ffffffff816284a0 t tty_wakeup
-ffffffff81628520 t tty_hangup
-ffffffff81628550 t tty_vhangup
-ffffffff81628570 t __tty_hangup.llvm.3910776340376622018
-ffffffff81628990 t tty_vhangup_self
-ffffffff81628a20 t tty_kref_put
-ffffffff81628aa0 t tty_vhangup_session
-ffffffff81628ac0 t tty_hung_up_p
-ffffffff81628af0 t __stop_tty
-ffffffff81628b30 t stop_tty
-ffffffff81628b90 t __start_tty
-ffffffff81628c40 t start_tty
-ffffffff81628d10 t tty_write_message
-ffffffff81628e20 t redirected_tty_write
-ffffffff81628ea0 t file_tty_write
-ffffffff816291a0 t tty_write.llvm.3910776340376622018
-ffffffff816291c0 t tty_send_xchar
-ffffffff81629360 t tty_init_termios
-ffffffff81629470 t tty_standard_install
-ffffffff816295c0 t tty_init_dev
-ffffffff81629880 t alloc_tty_struct
-ffffffff81629af0 t release_tty
-ffffffff81629d60 t tty_save_termios
-ffffffff81629e00 t tty_kclose
-ffffffff81629e90 t tty_release_struct
-ffffffff81629f10 t tty_release
-ffffffff8162a560 t check_tty_count
-ffffffff8162a650 t tty_kopen_exclusive
-ffffffff8162a670 t tty_kopen
-ffffffff8162a840 t tty_kopen_shared
-ffffffff8162a860 t tty_do_resize
-ffffffff8162a8e0 t tty_get_icount
-ffffffff8162a960 t tty_ioctl
-ffffffff8162b430 t tioccons
-ffffffff8162b520 t tiocsetd
-ffffffff8162b550 t tty_devnum
-ffffffff8162b570 t send_break
-ffffffff8162b6a0 t hung_up_tty_ioctl
-ffffffff8162b6d0 t __do_SAK
-ffffffff8162b9d0 t this_tty
-ffffffff8162ba10 t do_SAK
-ffffffff8162ba40 t do_tty_hangup
-ffffffff8162ba60 t do_SAK_work
-ffffffff8162ba80 t tty_put_char
-ffffffff8162baf0 t tty_register_device
-ffffffff8162bb10 t tty_register_device_attr
-ffffffff8162bdc0 t tty_device_create_release
-ffffffff8162bdd0 t tty_unregister_device
-ffffffff8162be30 t __tty_alloc_driver
-ffffffff8162bf80 t tty_driver_kref_put
-ffffffff8162c0a0 t tty_register_driver
-ffffffff8162c340 t tty_unregister_driver
-ffffffff8162c3c0 t tty_default_fops
-ffffffff8162c3e0 t console_sysfs_notify
-ffffffff8162c410 t hung_up_tty_read
-ffffffff8162c420 t hung_up_tty_write
-ffffffff8162c440 t hung_up_tty_poll
-ffffffff8162c450 t hung_up_tty_compat_ioctl
-ffffffff8162c480 t hung_up_tty_fasync
-ffffffff8162c490 t release_one_tty
-ffffffff8162c560 t tty_lookup_driver
-ffffffff8162c6e0 t tty_read.llvm.3910776340376622018
-ffffffff8162c9b0 t tty_poll.llvm.3910776340376622018
-ffffffff8162ca60 t tty_open.llvm.3910776340376622018
-ffffffff8162d2b0 t tty_fasync.llvm.3910776340376622018
-ffffffff8162d4b0 t tty_show_fdinfo.llvm.3910776340376622018
-ffffffff8162d4f0 t tty_reopen
-ffffffff8162d5c0 t tty_devnode
-ffffffff8162d5f0 t show_cons_active
-ffffffff8162d850 t n_tty_inherit_ops
-ffffffff8162d880 t n_tty_open
-ffffffff8162d930 t n_tty_close
-ffffffff8162d9d0 t n_tty_flush_buffer
-ffffffff8162dac0 t n_tty_read
-ffffffff8162e2f0 t n_tty_write
-ffffffff8162e7b0 t n_tty_ioctl
-ffffffff8162e8b0 t n_tty_set_termios
-ffffffff8162ebf0 t n_tty_poll
-ffffffff8162edd0 t n_tty_receive_buf
-ffffffff8162edf0 t n_tty_write_wakeup
-ffffffff8162ee20 t n_tty_receive_buf2
-ffffffff8162ee40 t n_tty_lookahead_flow_ctrl
-ffffffff8162eed0 t n_tty_kick_worker
-ffffffff8162ef90 t canon_copy_from_read_buf
-ffffffff8162f220 t n_tty_check_unthrottle
-ffffffff8162f2e0 t __process_echoes
-ffffffff8162f5f0 t do_output_char
-ffffffff8162f7e0 t n_tty_receive_buf_common
-ffffffff8162fd60 t n_tty_receive_buf_closing
-ffffffff8162ff00 t n_tty_receive_buf_standard
-ffffffff81631130 t n_tty_receive_char_flagged
-ffffffff816312f0 t isig
-ffffffff816314a0 t n_tty_receive_char_flow_ctrl
-ffffffff81631560 t n_tty_receive_char
-ffffffff816317e0 t n_tty_receive_signal_char
-ffffffff81631960 t commit_echoes
-ffffffff81631a00 t echo_char
-ffffffff81631aa0 t tty_chars_in_buffer
-ffffffff81631ad0 t tty_write_room
-ffffffff81631b00 t tty_driver_flush_buffer
-ffffffff81631b30 t tty_unthrottle
-ffffffff81631b90 t tty_throttle_safe
-ffffffff81631c00 t tty_unthrottle_safe
-ffffffff81631c80 t tty_wait_until_sent
-ffffffff81631e00 t tty_termios_copy_hw
-ffffffff81631e30 t tty_termios_hw_change
-ffffffff81631e70 t tty_get_char_size
-ffffffff81631e90 t tty_get_frame_size
-ffffffff81631ec0 t tty_set_termios
-ffffffff81632370 t user_termio_to_kernel_termios
-ffffffff81632410 t kernel_termios_to_user_termio
-ffffffff81632490 t user_termios_to_kernel_termios
-ffffffff816324b0 t kernel_termios_to_user_termios
-ffffffff816324d0 t user_termios_to_kernel_termios_1
-ffffffff816324f0 t kernel_termios_to_user_termios_1
-ffffffff81632510 t tty_mode_ioctl
-ffffffff81632a40 t set_termios
-ffffffff81632bc0 t tty_change_softcar
-ffffffff81632cc0 t tty_perform_flush
-ffffffff81632d20 t __tty_perform_flush
-ffffffff81632e50 t n_tty_ioctl_helper
-ffffffff81632f60 t tty_register_ldisc
-ffffffff81632fb0 t tty_unregister_ldisc
-ffffffff81633000 t tty_ldiscs_seq_start.llvm.15371552177515968348
-ffffffff81633020 t tty_ldiscs_seq_stop.llvm.15371552177515968348
-ffffffff81633030 t tty_ldiscs_seq_next.llvm.15371552177515968348
-ffffffff81633050 t tty_ldiscs_seq_show.llvm.15371552177515968348
-ffffffff81633100 t tty_ldisc_ref_wait
-ffffffff81633140 t tty_ldisc_ref
-ffffffff81633180 t tty_ldisc_deref
-ffffffff816331a0 t tty_ldisc_lock
-ffffffff81633220 t tty_ldisc_unlock
-ffffffff81633250 t tty_ldisc_flush
-ffffffff816332b0 t tty_set_ldisc
-ffffffff81633520 t tty_ldisc_get
-ffffffff81633600 t tty_ldisc_put
-ffffffff81633640 t tty_ldisc_restore
-ffffffff816336c0 t tty_ldisc_reinit
-ffffffff81633820 t tty_ldisc_hangup
-ffffffff81633a40 t tty_ldisc_kill
-ffffffff81633ad0 t tty_ldisc_setup
-ffffffff81633bb0 t tty_ldisc_release
-ffffffff81633cd0 t tty_ldisc_init
-ffffffff81633d00 t tty_ldisc_deinit
-ffffffff81633d50 t tty_sysctl_init
-ffffffff81633d80 t tty_ldisc_failto
-ffffffff81633e60 t tty_buffer_lock_exclusive
-ffffffff81633e80 t tty_buffer_unlock_exclusive
-ffffffff81633ed0 t tty_buffer_space_avail
-ffffffff81633ef0 t tty_buffer_free_all
-ffffffff81633fc0 t tty_buffer_flush
-ffffffff816340a0 t tty_buffer_request_room
-ffffffff816340c0 t __tty_buffer_request_room.llvm.8625117738834442742
-ffffffff816341d0 t tty_insert_flip_string_fixed_flag
-ffffffff816342b0 t tty_insert_flip_string_flags
-ffffffff816343a0 t __tty_insert_flip_char
-ffffffff81634410 t tty_prepare_flip_string
-ffffffff81634480 t tty_ldisc_receive_buf
-ffffffff816344e0 t tty_flip_buffer_push
-ffffffff81634510 t tty_insert_flip_string_and_push_buffer
-ffffffff81634630 t tty_buffer_init
-ffffffff816346d0 t flush_to_ldisc
-ffffffff816348b0 t tty_buffer_set_limit
-ffffffff816348d0 t tty_buffer_set_lock_subclass
-ffffffff816348e0 t tty_buffer_restart_work
-ffffffff81634900 t tty_buffer_cancel_work
-ffffffff81634920 t tty_buffer_flush_work
-ffffffff81634940 t tty_port_default_receive_buf
-ffffffff816349b0 t tty_port_default_lookahead_buf
-ffffffff81634a20 t tty_port_default_wakeup
-ffffffff81634ab0 t tty_port_init
-ffffffff81634b70 t tty_port_link_device
-ffffffff81634ba0 t tty_port_register_device
-ffffffff81634be0 t tty_port_register_device_attr
-ffffffff81634c20 t tty_port_register_device_attr_serdev
-ffffffff81634c60 t tty_port_register_device_serdev
-ffffffff81634ca0 t tty_port_unregister_device
-ffffffff81634cc0 t tty_port_alloc_xmit_buf
-ffffffff81634d40 t tty_port_free_xmit_buf
-ffffffff81634db0 t tty_port_destroy
-ffffffff81634de0 t tty_port_put
-ffffffff81634e80 t tty_port_tty_get
-ffffffff81634ef0 t tty_port_tty_set
-ffffffff81634f70 t tty_port_hangup
-ffffffff81635090 t tty_port_tty_hangup
-ffffffff81635140 t tty_port_tty_wakeup
-ffffffff81635160 t tty_port_carrier_raised
-ffffffff81635190 t tty_port_raise_dtr_rts
-ffffffff816351c0 t tty_port_lower_dtr_rts
-ffffffff816351f0 t tty_port_block_til_ready
-ffffffff816354a0 t tty_port_close_start
-ffffffff81635620 t tty_port_close_end
-ffffffff816356c0 t tty_port_close
-ffffffff816357c0 t tty_port_install
-ffffffff816357e0 t tty_port_open
-ffffffff81635900 t tty_lock
-ffffffff81635950 t tty_lock_interruptible
-ffffffff816359b0 t tty_unlock
-ffffffff816359e0 t tty_lock_slave
-ffffffff81635a40 t tty_unlock_slave
-ffffffff81635a80 t tty_set_lock_subclass
-ffffffff81635a90 t __init_ldsem
-ffffffff81635ad0 t ldsem_down_read_trylock
-ffffffff81635b00 t ldsem_down_write_trylock
-ffffffff81635b40 t ldsem_up_read
-ffffffff81635be0 t ldsem_up_write
-ffffffff81635c60 t __ldsem_wake_readers
-ffffffff81635d30 t tty_termios_baud_rate
-ffffffff81635d80 t tty_termios_input_baud_rate
-ffffffff81635e00 t tty_termios_encode_baud_rate
-ffffffff81635f50 t tty_encode_baud_rate
-ffffffff81635f70 t __tty_check_change
-ffffffff816360c0 t tty_check_change
-ffffffff816360e0 t proc_clear_tty
-ffffffff81636130 t tty_open_proc_set_tty
-ffffffff816361c0 t __proc_set_tty
-ffffffff81636340 t get_current_tty
-ffffffff816363c0 t session_clear_tty
-ffffffff81636440 t tty_signal_session_leader
-ffffffff81636650 t disassociate_ctty
-ffffffff816369d0 t tty_get_pgrp
-ffffffff81636a40 t no_tty
-ffffffff81636aa0 t tty_jobctrl_ioctl
-ffffffff81636f20 t session_of_pgrp
-ffffffff81636f70 t n_null_open
-ffffffff81636f80 t n_null_close
-ffffffff81636f90 t n_null_read
-ffffffff81636fb0 t n_null_write
-ffffffff81636fd0 t n_null_receivebuf
-ffffffff81636fe0 t ptm_open_peer
-ffffffff816370d0 t ptmx_open
-ffffffff81637270 t ptm_unix98_lookup
-ffffffff81637290 t pty_unix98_install
-ffffffff81637510 t pty_unix98_remove
-ffffffff81637560 t pty_open
-ffffffff816375f0 t pty_close
-ffffffff81637740 t pty_cleanup
-ffffffff81637760 t pty_write
-ffffffff81637790 t pty_write_room
-ffffffff816377c0 t pty_unix98_ioctl
-ffffffff81637960 t pty_unthrottle
-ffffffff81637990 t pty_flush_buffer
-ffffffff81637a10 t pty_resize
-ffffffff81637ae0 t pty_show_fdinfo
-ffffffff81637b00 t pts_unix98_lookup
-ffffffff81637b50 t pty_set_termios
-ffffffff81637c70 t pty_stop
-ffffffff81637cf0 t pty_start
-ffffffff81637d70 t tty_audit_exit
-ffffffff81637de0 t tty_audit_fork
-ffffffff81637e10 t tty_audit_tiocsti
-ffffffff81637ea0 t tty_audit_push
-ffffffff81637f40 t tty_audit_log
-ffffffff81638090 t tty_audit_add_data
-ffffffff81638340 t sysrq_mask
-ffffffff81638360 t __handle_sysrq
-ffffffff816384e0 t handle_sysrq
-ffffffff81638510 t sysrq_toggle_support
-ffffffff81638560 t sysrq_register_handler
-ffffffff81638680 t register_sysrq_key
-ffffffff81638710 t __sysrq_swap_key_ops.llvm.12040585429012923938
-ffffffff816387b0 t unregister_sysrq_key
-ffffffff81638840 t sysrq_handle_reboot
-ffffffff81638860 t sysrq_handle_loglevel
-ffffffff81638890 t sysrq_handle_crash
-ffffffff816388b0 t sysrq_handle_term
-ffffffff81638940 t sysrq_handle_moom
-ffffffff81638970 t moom_callback
-ffffffff81638a20 t sysrq_handle_kill
-ffffffff81638ab0 t sysrq_handle_thaw
-ffffffff81638ac0 t sysrq_handle_SAK
-ffffffff81638b00 t sysrq_handle_showallcpus
-ffffffff81638b20 t sysrq_handle_showmem
-ffffffff81638b40 t sysrq_handle_unrt
-ffffffff81638b50 t sysrq_handle_showregs
-ffffffff81638b90 t sysrq_handle_show_timers
-ffffffff81638ba0 t sysrq_handle_unraw
-ffffffff81638bc0 t sysrq_handle_sync
-ffffffff81638bd0 t sysrq_handle_showstate
-ffffffff81638bf0 t sysrq_handle_mountro
-ffffffff81638c00 t sysrq_handle_showstate_blocked
-ffffffff81638c20 t sysrq_ftrace_dump
-ffffffff81638c40 t sysrq_reset_seq_param_set
-ffffffff81638cc0 t sysrq_filter
-ffffffff81639080 t sysrq_connect
-ffffffff81639170 t sysrq_disconnect
-ffffffff816391c0 t sysrq_do_reset
-ffffffff816391f0 t sysrq_reinject_alt_sysrq
-ffffffff816392b0 t write_sysrq_trigger
-ffffffff816392f0 t vt_event_post
-ffffffff816393b0 t vt_waitactive
-ffffffff81639600 t vt_ioctl
-ffffffff8163a410 t vt_setactivate
-ffffffff8163a550 t vt_reldisp
-ffffffff8163a5c0 t vt_disallocate_all
-ffffffff8163a6f0 t vt_disallocate
-ffffffff8163a7b0 t vt_resizex
-ffffffff8163a960 t vt_event_wait_ioctl
-ffffffff8163ab80 t reset_vc
-ffffffff8163abe0 t vc_SAK
-ffffffff8163ac60 t change_console
-ffffffff8163ad50 t complete_change_console
-ffffffff8163af10 t vt_move_to_console
-ffffffff8163afa0 t pm_set_vt_switch
-ffffffff8163afd0 t vt_kdsetmode
-ffffffff8163b030 t vcs_make_sysfs
-ffffffff8163b0c0 t vcs_remove_sysfs
-ffffffff8163b120 t vcs_lseek
-ffffffff8163b230 t vcs_read
-ffffffff8163b880 t vcs_write
-ffffffff8163bf40 t vcs_poll
-ffffffff8163bfb0 t vcs_open
-ffffffff8163c010 t vcs_release
-ffffffff8163c050 t vcs_fasync
-ffffffff8163c0b0 t vcs_poll_data_get
-ffffffff8163c1a0 t vcs_notifier
-ffffffff8163c230 t clear_selection
-ffffffff8163c290 t vc_is_sel
-ffffffff8163c2b0 t sel_loadlut
-ffffffff8163c340 t set_selection_user
-ffffffff8163c3c0 t set_selection_kernel
-ffffffff8163cd00 t paste_selection
-ffffffff8163cee0 t register_keyboard_notifier
-ffffffff8163cf00 t unregister_keyboard_notifier
-ffffffff8163cf20 t kd_mksound
-ffffffff8163cfa0 t kd_sound_helper
-ffffffff8163d020 t kbd_rate
-ffffffff8163d090 t kbd_rate_helper
-ffffffff8163d100 t vt_set_leds_compute_shiftstate
-ffffffff8163d200 t do_compute_shiftstate
-ffffffff8163d2c0 t setledstate
-ffffffff8163d340 t vt_get_leds
-ffffffff8163d3a0 t vt_set_led_state
-ffffffff8163d430 t vt_kbd_con_start
-ffffffff8163d490 t vt_kbd_con_stop
-ffffffff8163d4f0 t vt_do_diacrit
-ffffffff8163d8c0 t vt_do_kdskbmode
-ffffffff8163db00 t vt_do_kdskbmeta
-ffffffff8163db70 t vt_do_kbkeycode_ioctl
-ffffffff8163dce0 t vt_do_kdsk_ioctl
-ffffffff8163e090 t vt_do_kdgkb_ioctl
-ffffffff8163e240 t vt_kdskbsent
-ffffffff8163e2b0 t vt_do_kdskled
-ffffffff8163e460 t vt_do_kdgkbmode
-ffffffff8163e4a0 t vt_do_kdgkbmeta
-ffffffff8163e4d0 t vt_reset_unicode
-ffffffff8163e530 t vt_get_shift_state
-ffffffff8163e550 t vt_reset_keyboard
-ffffffff8163e5f0 t vt_get_kbd_mode_bit
-ffffffff8163e620 t vt_set_kbd_mode_bit
-ffffffff8163e680 t vt_clr_kbd_mode_bit
-ffffffff8163e6e0 t kd_nosound
-ffffffff8163e710 t kbd_event
-ffffffff8163f1f0 t kbd_match
-ffffffff8163f260 t kbd_connect
-ffffffff8163f2f0 t kbd_disconnect
-ffffffff8163f320 t kbd_start
-ffffffff8163f370 t k_unicode
-ffffffff8163f430 t handle_diacr
-ffffffff8163f550 t to_utf8
-ffffffff8163f710 t k_self
-ffffffff8163f740 t k_fn
-ffffffff8163f7c0 t k_spec
-ffffffff8163f820 t k_pad
-ffffffff8163fa70 t k_dead
-ffffffff8163fac0 t k_cons
-ffffffff8163fae0 t k_cur
-ffffffff8163fb60 t k_shift
-ffffffff8163fcd0 t k_meta
-ffffffff8163fda0 t k_ascii
-ffffffff8163fe00 t k_lock
-ffffffff8163fe30 t k_lowercase
-ffffffff8163fe50 t k_slock
-ffffffff8163feb0 t k_dead2
-ffffffff8163fee0 t k_brl
-ffffffff81640120 t k_ignore
-ffffffff81640130 t fn_null
-ffffffff816401f0 t fn_enter
-ffffffff81640330 t fn_show_ptregs
-ffffffff81640360 t fn_show_mem
-ffffffff81640380 t fn_show_state
-ffffffff816403a0 t fn_send_intr
-ffffffff81640400 t fn_lastcons
-ffffffff81640420 t fn_caps_toggle
-ffffffff81640450 t fn_num
-ffffffff816404b0 t fn_hold
-ffffffff816404f0 t fn_scroll_forw
-ffffffff81640510 t fn_scroll_back
-ffffffff81640520 t fn_boot_it
-ffffffff81640530 t fn_caps_on
-ffffffff81640560 t fn_compose
-ffffffff81640580 t fn_SAK
-ffffffff816405c0 t fn_dec_console
-ffffffff81640630 t fn_inc_console
-ffffffff816406a0 t fn_spawn_con
-ffffffff81640700 t fn_bare_num
-ffffffff81640730 t applkey
-ffffffff81640790 t kbd_update_leds_helper
-ffffffff81640810 t kbd_bh
-ffffffff816408f0 t getkeycode_helper
-ffffffff81640920 t setkeycode_helper
-ffffffff81640950 t set_translate
-ffffffff81640990 t inverse_translate
-ffffffff81640a10 t con_set_trans_old
-ffffffff81640ad0 t update_user_maps
-ffffffff81640c20 t con_get_trans_old
-ffffffff81640d90 t conv_uni_to_pc
-ffffffff81640e50 t con_set_trans_new
-ffffffff81640ef0 t con_get_trans_new
-ffffffff81640f80 t con_free_unimap
-ffffffff81640fc0 t con_release_unimap
-ffffffff816411f0 t con_clear_unimap
-ffffffff81641290 t con_set_unimap
-ffffffff816418b0 t con_unify_unimap
-ffffffff81641a10 t set_inverse_transl
-ffffffff81641b50 t con_set_default_unimap
-ffffffff81641f60 t con_copy_unimap
-ffffffff81641ff0 t con_get_unimap
-ffffffff816421a0 t conv_8bit_to_uni
-ffffffff816421c0 t conv_uni_to_8bit
-ffffffff81642240 t register_vt_notifier
-ffffffff81642260 t unregister_vt_notifier
-ffffffff81642280 t schedule_console_callback
-ffffffff816422b0 t vc_uniscr_check
-ffffffff81642480 t vc_uniscr_copy_line
-ffffffff816425d0 t update_region
-ffffffff81642840 t hide_cursor
-ffffffff816428f0 t do_update_region
-ffffffff81642b30 t invert_screen
-ffffffff81642ea0 t complement_pos
-ffffffff816430d0 t clear_buffer_attributes
-ffffffff81643130 t redraw_screen
-ffffffff81643680 t con_is_visible
-ffffffff816436c0 t set_origin
-ffffffff816437b0 t set_palette
-ffffffff81643810 t update_attr
-ffffffff81643a20 t vc_cons_allocated
-ffffffff81643a50 t vc_allocate
-ffffffff81643d60 t vc_init
-ffffffff81643e60 t vc_resize
-ffffffff81643e80 t vc_do_resize.llvm.9716869111761671445
-ffffffff81644560 t vc_deallocate
-ffffffff81644680 t scrollback
-ffffffff816446c0 t scrollfront
-ffffffff81644700 t mouse_report
-ffffffff816447a0 t mouse_reporting
-ffffffff816447e0 t set_console
-ffffffff81644860 t vt_kmsg_redirect
-ffffffff81644890 t tioclinux
-ffffffff81644b50 t unblank_screen
-ffffffff81644b70 t do_blank_screen
-ffffffff81644f20 t con_is_bound
-ffffffff81644f90 t con_debug_enter
-ffffffff81645010 t con_debug_leave
-ffffffff816450a0 t do_unregister_con_driver
-ffffffff81645320 t do_take_over_console
-ffffffff81645b10 t give_up_console
-ffffffff81645b40 t do_unblank_screen
-ffffffff81645e00 t poke_blanked_console
-ffffffff81645ed0 t con_set_cmap
-ffffffff816460b0 t con_get_cmap
-ffffffff816461a0 t reset_palette
-ffffffff81646250 t con_font_op
-ffffffff81646650 t screen_glyph
-ffffffff816466a0 t screen_glyph_unicode
-ffffffff81646720 t screen_pos
-ffffffff81646770 t getconsxy
-ffffffff816467b0 t putconsxy
-ffffffff81646a10 t gotoxy
-ffffffff81646aa0 t vcs_scr_readw
-ffffffff81646ad0 t vcs_scr_writew
-ffffffff81646b00 t add_softcursor
-ffffffff81646be0 t vcs_scr_updated
-ffffffff81646c40 t vc_scrolldelta_helper
-ffffffff81646d30 t console_callback
-ffffffff81646f60 t vc_port_destruct
-ffffffff81646f70 t reset_terminal
-ffffffff81647300 t csi_J
-ffffffff816476d0 t vt_console_print
-ffffffff81647c50 t vt_console_device
-ffffffff81647c80 t lf
-ffffffff81647d30 t cr
-ffffffff81647db0 t con_scroll
-ffffffff81647fe0 t show_tty_active
-ffffffff81648010 t con_install
-ffffffff81648160 t con_open
-ffffffff81648170 t con_close
-ffffffff81648180 t con_shutdown
-ffffffff816481b0 t con_cleanup
-ffffffff816481d0 t con_write
-ffffffff81648200 t con_put_char
-ffffffff81648250 t con_flush_chars
-ffffffff816483b0 t con_write_room
-ffffffff816483d0 t con_throttle
-ffffffff816483e0 t con_unthrottle
-ffffffff81648410 t con_stop
-ffffffff81648440 t con_start
-ffffffff81648470 t vt_resize
-ffffffff816484c0 t do_con_write
-ffffffff8164a0a0 t ri
-ffffffff8164a100 t respond_ID
-ffffffff8164a140 t restore_cur
-ffffffff8164a230 t set_mode
-ffffffff8164a500 t status_report
-ffffffff8164a540 t cursor_report
-ffffffff8164a610 t gotoxay
-ffffffff8164a6b0 t csi_K
-ffffffff8164a7a0 t csi_L
-ffffffff8164a7f0 t csi_M
-ffffffff8164a840 t csi_P
-ffffffff8164a990 t csi_m
-ffffffff8164acd0 t csi_X
-ffffffff8164ada0 t setterm_command
-ffffffff8164b0c0 t vc_setGx
-ffffffff8164b130 t vc_t416_color
-ffffffff8164b310 t rgb_foreground
-ffffffff8164b3a0 t rgb_background
-ffffffff8164b3e0 t insert_char
-ffffffff8164b4e0 t ucs_cmp
-ffffffff8164b500 t con_driver_unregister_callback
-ffffffff8164b610 t show_bind
-ffffffff8164b6b0 t store_bind
-ffffffff8164b6e0 t show_name
-ffffffff8164b720 t blank_screen_t
-ffffffff8164b750 t hvc_instantiate
-ffffffff8164b7e0 t hvc_get_by_index
-ffffffff8164b8b0 t hvc_kick
-ffffffff8164b8e0 t hvc_poll
-ffffffff8164b900 t __hvc_poll.llvm.4250908402033475605
-ffffffff8164bcd0 t __hvc_resize
-ffffffff8164bd00 t hvc_alloc
-ffffffff8164c200 t hvc_set_winsz
-ffffffff8164c290 t hvc_remove
-ffffffff8164c330 t hvc_console_print
-ffffffff8164c520 t hvc_console_device
-ffffffff8164c560 t hvc_console_setup
-ffffffff8164c590 t hvc_port_destruct
-ffffffff8164c630 t khvcd
-ffffffff8164c760 t hvc_install
-ffffffff8164c7d0 t hvc_open
-ffffffff8164c8c0 t hvc_close
-ffffffff8164c9d0 t hvc_cleanup
-ffffffff8164c9f0 t hvc_write
-ffffffff8164cc00 t hvc_write_room
-ffffffff8164cc30 t hvc_chars_in_buffer
-ffffffff8164cc60 t hvc_unthrottle
-ffffffff8164cc90 t hvc_hangup
-ffffffff8164cd30 t hvc_tiocmget
-ffffffff8164cd70 t hvc_tiocmset
-ffffffff8164cdb0 t uart_write_wakeup
-ffffffff8164cdd0 t uart_update_timeout
-ffffffff8164ce20 t uart_get_baud_rate
-ffffffff8164cf60 t uart_get_divisor
-ffffffff8164cfb0 t uart_xchar_out
-ffffffff8164cfe0 t uart_console_write
-ffffffff8164d060 t uart_parse_earlycon
-ffffffff8164d1c0 t uart_parse_options
-ffffffff8164d230 t uart_set_options
-ffffffff8164d390 t uart_suspend_port
-ffffffff8164d640 t serial_match_port
-ffffffff8164d670 t uart_resume_port
-ffffffff8164dae0 t uart_change_speed
-ffffffff8164dc20 t uart_shutdown
-ffffffff8164dde0 t uart_register_driver
-ffffffff8164dfb0 t uart_unregister_driver
-ffffffff8164e040 t uart_console_device
-ffffffff8164e060 t uart_add_one_port
-ffffffff8164e6f0 t uart_remove_one_port
-ffffffff8164e950 t uart_match_port
-ffffffff8164e9c0 t uart_handle_dcd_change
-ffffffff8164ea80 t uart_handle_cts_change
-ffffffff8164eb10 t uart_insert_char
-ffffffff8164ec10 t uart_try_toggle_sysrq
-ffffffff8164ec20 t uart_get_rs485_mode
-ffffffff8164ed80 t uart_sanitize_serial_rs485_delays
-ffffffff8164eee0 t uart_sanitize_serial_rs485
-ffffffff8164efb0 t uart_install
-ffffffff8164efe0 t uart_open
-ffffffff8164f010 t uart_close
-ffffffff8164f080 t uart_write
-ffffffff8164f320 t uart_put_char
-ffffffff8164f430 t uart_flush_chars
-ffffffff8164f440 t uart_write_room
-ffffffff8164f4f0 t uart_chars_in_buffer
-ffffffff8164f5a0 t uart_ioctl
-ffffffff8164fae0 t uart_set_termios
-ffffffff8164fc80 t uart_throttle
-ffffffff8164fdb0 t uart_unthrottle
-ffffffff8164fee0 t uart_stop
-ffffffff8164ff80 t uart_start
-ffffffff81650080 t uart_hangup
-ffffffff816501e0 t uart_break_ctl
-ffffffff81650260 t uart_flush_buffer
-ffffffff81650320 t uart_set_ldisc
-ffffffff816503a0 t uart_wait_until_sent
-ffffffff81650550 t uart_send_xchar
-ffffffff81650630 t uart_tiocmget
-ffffffff816506c0 t uart_tiocmset
-ffffffff81650790 t uart_get_icount
-ffffffff816508e0 t uart_get_info_user
-ffffffff81650a00 t uart_set_info_user
-ffffffff81650f90 t uart_proc_show
-ffffffff81651420 t uart_get_lsr_info
-ffffffff816514b0 t uart_get_rs485_config
-ffffffff81651550 t uart_set_rs485_config
-ffffffff81651730 t uart_set_iso7816_config
-ffffffff81651860 t uart_get_iso7816_config
-ffffffff81651920 t uart_startup
-ffffffff81651bf0 t uart_carrier_raised
-ffffffff81651cb0 t uart_dtr_rts
-ffffffff81651d80 t uart_tty_port_shutdown
-ffffffff81651ea0 t uart_port_activate
-ffffffff81651ef0 t uartclk_show
-ffffffff81651f60 t line_show
-ffffffff81651fc0 t port_show
-ffffffff81652040 t flags_show
-ffffffff816520a0 t flags_show
-ffffffff81652100 t flags_show
-ffffffff81652160 t xmit_fifo_size_show
-ffffffff816521c0 t close_delay_show
-ffffffff81652240 t closing_wait_show
-ffffffff816522c0 t custom_divisor_show
-ffffffff81652320 t io_type_show
-ffffffff81652380 t iomem_base_show
-ffffffff816523e0 t iomem_reg_shift_show
-ffffffff81652440 t console_show
-ffffffff816524d0 t console_store
-ffffffff816525e0 t serial8250_get_port
-ffffffff81652610 t serial8250_set_isa_configurator
-ffffffff81652630 t serial8250_suspend_port
-ffffffff81652730 t serial8250_resume_port
-ffffffff81652840 t serial8250_register_8250_port
-ffffffff81652f70 t serial_8250_overrun_backoff_work
-ffffffff81652fd0 t serial8250_unregister_port
-ffffffff816530f0 t univ8250_console_write
-ffffffff81653120 t univ8250_console_setup
-ffffffff81653180 t univ8250_console_exit
-ffffffff816531b0 t univ8250_console_match
-ffffffff816533b0 t serial8250_timeout
-ffffffff81653430 t univ8250_setup_irq
-ffffffff816535b0 t univ8250_release_irq
-ffffffff81653650 t univ8250_setup_timer
-ffffffff81653730 t serial8250_interrupt
-ffffffff816537e0 t serial_do_unlink
-ffffffff816538b0 t serial8250_backup_timeout
-ffffffff81653a50 t serial8250_probe
-ffffffff81653c50 t serial8250_remove
-ffffffff81653d00 t serial8250_suspend
-ffffffff81653db0 t serial8250_resume
-ffffffff816540f0 t serial8250_pnp_init
-ffffffff81654110 t serial8250_pnp_exit
-ffffffff81654130 t serial_pnp_probe
-ffffffff81654440 t serial_pnp_remove
-ffffffff81654470 t check_name
-ffffffff816546b0 t serial_pnp_suspend
-ffffffff816546e0 t serial_pnp_resume
-ffffffff81654710 t serial8250_clear_and_reinit_fifos
-ffffffff81654790 t serial8250_rpm_get
-ffffffff816547c0 t serial8250_rpm_put
-ffffffff81654810 t serial8250_em485_destroy
-ffffffff81654860 t serial8250_em485_config
-ffffffff816549b0 t serial8250_rpm_get_tx
-ffffffff816549f0 t serial8250_rpm_put_tx
-ffffffff81654a40 t serial8250_em485_stop_tx
-ffffffff81654ba0 t serial8250_em485_start_tx
-ffffffff81654cf0 t serial8250_stop_rx
-ffffffff81654d80 t serial8250_read_char
-ffffffff81654ec0 t uart_handle_break
-ffffffff81654f60 t serial8250_rx_chars
-ffffffff81654fd0 t serial8250_tx_chars
-ffffffff81655160 t serial8250_stop_tx
-ffffffff81655210 t __stop_tx
-ffffffff81655360 t serial8250_modem_status
-ffffffff81655420 t serial8250_handle_irq
-ffffffff816555f0 t serial8250_do_get_mctrl
-ffffffff816556c0 t serial8250_do_set_mctrl
-ffffffff81655720 t serial8250_do_startup
-ffffffff816560d0 t serial8250_tx_threshold_handle_irq
-ffffffff81656140 t wait_for_xmitr
-ffffffff81656240 t serial8250_set_mctrl
-ffffffff816562d0 t serial8250_do_shutdown
-ffffffff816564c0 t serial8250_do_set_divisor
-ffffffff81656520 t serial8250_update_uartclk
-ffffffff81656830 t serial8250_do_set_termios
-ffffffff81656dd0 t serial8250_do_set_ldisc
-ffffffff81656e70 t serial8250_enable_ms
-ffffffff81656f10 t serial8250_do_pm
-ffffffff81657080 t serial8250_init_port
-ffffffff816570b0 t serial8250_set_defaults
-ffffffff816571f0 t serial8250_tx_dma
-ffffffff81657200 t serial8250_rx_dma
-ffffffff81657210 t serial8250_console_write
-ffffffff816577c0 t serial8250_console_putchar
-ffffffff81657800 t serial8250_console_setup
-ffffffff816579a0 t serial8250_console_exit
-ffffffff816579d0 t serial8250_em485_handle_stop_tx
-ffffffff81657a70 t serial8250_em485_handle_start_tx
-ffffffff81657ba0 t default_serial_dl_read
-ffffffff81657bf0 t default_serial_dl_write
-ffffffff81657c30 t hub6_serial_in
-ffffffff81657c60 t hub6_serial_out
-ffffffff81657c90 t mem_serial_in
-ffffffff81657cc0 t mem_serial_out
-ffffffff81657ce0 t mem16_serial_in
-ffffffff81657d10 t mem16_serial_out
-ffffffff81657d30 t mem32be_serial_in
-ffffffff81657d60 t mem32be_serial_out
-ffffffff81657d90 t serial8250_default_handle_irq
-ffffffff81657e20 t serial8250_tx_empty
-ffffffff81657ee0 t serial8250_get_mctrl
-ffffffff81657f10 t serial8250_start_tx
-ffffffff816580f0 t serial8250_throttle
-ffffffff81658110 t serial8250_unthrottle
-ffffffff81658130 t serial8250_break_ctl
-ffffffff816581e0 t serial8250_startup
-ffffffff81658210 t serial8250_shutdown
-ffffffff81658240 t serial8250_set_termios
-ffffffff81658270 t serial8250_set_ldisc
-ffffffff816582a0 t serial8250_pm
-ffffffff816582d0 t serial8250_type
-ffffffff81658300 t serial8250_release_port
-ffffffff816583c0 t serial8250_request_port
-ffffffff816583d0 t serial8250_config_port
-ffffffff816596f0 t serial8250_verify_port
-ffffffff81659740 t serial8250_request_std_resource
-ffffffff81659880 t size_fifo
-ffffffff81659bd0 t rx_trig_bytes_show
-ffffffff81659c90 t rx_trig_bytes_store
-ffffffff81659e80 t dw8250_do_set_termios
-ffffffff81659ed0 t dw8250_setup_port
-ffffffff8165a140 t dw8250_rs485_config
-ffffffff8165a400 t dw8250_get_divisor
-ffffffff8165a440 t dw8250_set_divisor
-ffffffff8165a4a0 t serial8250_early_in
-ffffffff8165a550 t serial8250_early_out
-ffffffff8165a600 t early_serial8250_write
-ffffffff8165a620 t serial_putc
-ffffffff8165a740 t lpss8250_probe
-ffffffff8165a9e0 t lpss8250_remove
-ffffffff8165aa30 t qrk_serial_setup
-ffffffff8165aa40 t qrk_serial_exit
-ffffffff8165aa50 t ehl_serial_setup
-ffffffff8165aa80 t ehl_serial_exit
-ffffffff8165aaa0 t byt_serial_setup
-ffffffff8165ab80 t byt_serial_exit
-ffffffff8165aba0 t byt_set_termios
-ffffffff8165acb0 t byt_get_mctrl
-ffffffff8165acd0 t lpss8250_dma_filter
-ffffffff8165ad00 t mid8250_probe
-ffffffff8165af50 t mid8250_remove
-ffffffff8165af80 t pnw_setup
-ffffffff8165afe0 t pnw_exit
-ffffffff8165b000 t tng_setup
-ffffffff8165b060 t tng_exit
-ffffffff8165b080 t tng_handle_irq
-ffffffff8165b0c0 t dnv_setup
-ffffffff8165b1a0 t dnv_exit
-ffffffff8165b1b0 t mid8250_set_termios
-ffffffff8165b320 t mid8250_dma_filter
-ffffffff8165b350 t pericom8250_probe
-ffffffff8165b580 t pericom8250_remove
-ffffffff8165b5c0 t pericom_do_set_divisor
-ffffffff8165b6d0 t of_platform_serial_probe
-ffffffff8165bd50 t of_platform_serial_remove
-ffffffff8165bdb0 t of_serial_suspend
-ffffffff8165be20 t of_serial_resume
-ffffffff8165be80 t mctrl_gpio_set
-ffffffff8165bf70 t mctrl_gpio_to_gpiod
-ffffffff8165bfa0 t mctrl_gpio_get
-ffffffff8165c050 t mctrl_gpio_get_outputs
-ffffffff8165c0b0 t mctrl_gpio_init_noauto
-ffffffff8165c1b0 t mctrl_gpio_init
-ffffffff8165c2d0 t mctrl_gpio_irq_handle
-ffffffff8165c3f0 t mctrl_gpio_free
-ffffffff8165c520 t mctrl_gpio_enable_ms
-ffffffff8165c5a0 t mctrl_gpio_disable_ms
-ffffffff8165c610 t mctrl_gpio_enable_irq_wake
-ffffffff8165c6a0 t mctrl_gpio_disable_irq_wake
-ffffffff8165c710 t ttynull_device
-ffffffff8165c730 t ttynull_open
-ffffffff8165c750 t ttynull_close
-ffffffff8165c770 t ttynull_write
-ffffffff8165c780 t ttynull_write_room
-ffffffff8165c790 t ttynull_hangup
-ffffffff8165c7b0 t mem_devnode
-ffffffff8165c810 t memory_open
-ffffffff8165c890 t null_lseek
-ffffffff8165c8b0 t read_null
-ffffffff8165c8c0 t write_null
-ffffffff8165c8d0 t read_iter_null
-ffffffff8165c8e0 t write_iter_null
-ffffffff8165c900 t splice_write_null
-ffffffff8165c920 t uring_cmd_null
-ffffffff8165c930 t pipe_to_null
-ffffffff8165c940 t read_zero
-ffffffff8165c9f0 t read_iter_zero
-ffffffff8165cac0 t mmap_zero
-ffffffff8165caf0 t get_unmapped_area_zero
-ffffffff8165cb30 t write_full
-ffffffff8165cb50 t rng_is_initialized
-ffffffff8165cb70 t wait_for_random_bytes
-ffffffff8165cca5 t try_to_generate_entropy
-ffffffff8165cde0 t get_random_bytes
-ffffffff8165cdf0 t _get_random_bytes.llvm.17500253487144846431
-ffffffff8165d000 t get_random_u8
-ffffffff8165d250 t get_random_u16
-ffffffff8165d4b0 t get_random_u32
-ffffffff8165d710 t get_random_u64
-ffffffff8165d970 t __get_random_u32_below
-ffffffff8165d9c0 t random_prepare_cpu
-ffffffff8165da30 t crng_reseed
-ffffffff8165db3e t _credit_init_bits
-ffffffff8165dc6a t crng_set_ready
-ffffffff8165dc90 t add_device_randomness
-ffffffff8165dd30 t add_hwgenerator_randomness
-ffffffff8165de00 t mix_pool_bytes
-ffffffff8165de4b t random_online_cpu
-ffffffff8165de80 t add_interrupt_randomness
-ffffffff8165dfe0 t add_input_randomness
-ffffffff8165e020 t add_timer_randomness
-ffffffff8165e260 t add_disk_randomness
-ffffffff8165e292 t rand_initialize_disk
-ffffffff8165e2d0 t __x64_sys_getrandom
-ffffffff8165e3b0 t random_read_iter
-ffffffff8165e400 t random_write_iter
-ffffffff8165e420 t random_poll
-ffffffff8165e470 t random_ioctl
-ffffffff8165e7b0 t random_fasync
-ffffffff8165e7d0 t urandom_read_iter
-ffffffff8165e870 t crng_make_state
-ffffffff8165eca0 t extract_entropy
-ffffffff8165f200 t crng_fast_key_erasure
-ffffffff8165f390 t random_pm_notification
-ffffffff8165f580 t mix_interrupt_randomness
-ffffffff8165f69c t entropy_timer
-ffffffff8165f6e0 t get_random_bytes_user
-ffffffff8165f930 t write_pool_user
-ffffffff8165fab0 t proc_do_rointvec
-ffffffff8165faf0 t proc_do_uuid
-ffffffff8165fc50 t misc_register
-ffffffff8165fdb0 t misc_deregister
-ffffffff8165fe50 t misc_devnode
-ffffffff8165fe90 t misc_seq_start
-ffffffff8165fec0 t misc_seq_stop
-ffffffff8165fee0 t misc_seq_next
-ffffffff8165ff00 t misc_seq_show
-ffffffff8165ff30 t misc_open
-ffffffff81660020 t reclaim_dma_bufs
-ffffffff816601f0 t get_chars
-ffffffff816602a0 t put_chars
-ffffffff816604b0 t notifier_add_vio
-ffffffff816605a0 t notifier_del_vio
-ffffffff816605c0 t fill_readbuf
-ffffffff81660810 t reclaim_consumed_buffers
-ffffffff81660920 t free_buf
-ffffffff816609a0 t virtcons_probe
-ffffffff81660d20 t virtcons_remove
-ffffffff81660e30 t config_intr
-ffffffff81660e70 t virtcons_freeze
-ffffffff81660f60 t virtcons_restore
-ffffffff816610a0 t config_work_handler
-ffffffff81661210 t control_work_handler
-ffffffff81661770 t fill_queue
-ffffffff81661910 t __send_control_msg
-ffffffff81661a70 t add_port
-ffffffff81661de0 t in_intr
-ffffffff81661f70 t out_intr
-ffffffff81662010 t control_intr
-ffffffff81662040 t flush_bufs
-ffffffff81662140 t discard_port_data
-ffffffff81662380 t unplug_port
-ffffffff81662550 t init_port_console
-ffffffff81662650 t show_port_name
-ffffffff81662680 t port_fops_read
-ffffffff816628e0 t port_fops_write
-ffffffff81662b10 t port_fops_poll
-ffffffff81662bd0 t port_fops_open
-ffffffff81662db0 t port_fops_release
-ffffffff81662e60 t port_fops_fasync
-ffffffff81662e80 t port_fops_splice_write
-ffffffff816630e0 t will_read_block
-ffffffff816631b0 t wait_port_writable
-ffffffff81663380 t pipe_to_sg
-ffffffff81663550 t port_debugfs_open
-ffffffff81663580 t port_debugfs_show
-ffffffff81663680 t remove_vqs
-ffffffff816637b0 t hpet_alloc
-ffffffff81663ca0 t hpet_read
-ffffffff81663e00 t hpet_poll
-ffffffff81663e70 t hpet_ioctl
-ffffffff81664320 t hpet_mmap
-ffffffff816643a0 t hpet_open
-ffffffff816645b0 t hpet_release
-ffffffff81664650 t hpet_fasync
-ffffffff81664680 t hpet_interrupt
-ffffffff816647b0 t hpet_acpi_add
-ffffffff81664880 t hpet_resources
-ffffffff81664a50 t hwrng_register
-ffffffff81664c50 t set_current_rng
-ffffffff81664df0 t add_early_randomness
-ffffffff81664ea0 t hwrng_unregister
-ffffffff816650b0 t enable_best_rng
-ffffffff81665190 t devm_hwrng_register
-ffffffff81665210 t devm_hwrng_release
-ffffffff81665230 t devm_hwrng_unregister
-ffffffff81665260 t devm_hwrng_match
-ffffffff81665290 t hwrng_msleep
-ffffffff816652c0 t rng_dev_read
-ffffffff81665640 t rng_dev_open
-ffffffff81665670 t rng_current_show
-ffffffff816657b0 t rng_current_store
-ffffffff81665950 t rng_available_show
-ffffffff81665a00 t rng_selected_show
-ffffffff81665a30 t rng_quality_show
-ffffffff81665b60 t rng_quality_store
-ffffffff81665c50 t hwrng_fillfn
-ffffffff81665ee0 t intel_rng_init
-ffffffff81665f20 t intel_rng_cleanup
-ffffffff81665f50 t intel_rng_data_present
-ffffffff81665fa0 t intel_rng_data_read
-ffffffff81665fc0 t amd_rng_init
-ffffffff81666060 t amd_rng_cleanup
-ffffffff816660d0 t amd_rng_read
-ffffffff81666170 t via_rng_init
-ffffffff816662a0 t via_rng_data_present
-ffffffff81666360 t via_rng_data_read
-ffffffff81666380 t virtrng_probe
-ffffffff81666390 t virtrng_scan
-ffffffff816663c0 t virtrng_remove
-ffffffff81666440 t virtrng_freeze
-ffffffff816664d0 t virtrng_restore
-ffffffff81666510 t probe_common
-ffffffff816667f0 t virtio_cleanup
-ffffffff81666810 t virtio_read
-ffffffff81666aa0 t random_recv_done
-ffffffff81666af0 t iommu_device_register
-ffffffff81666c40 t bus_iommu_probe
-ffffffff81667080 t iommu_device_unregister
-ffffffff81667110 t remove_iommu_group
-ffffffff81667140 t iommu_probe_device
-ffffffff81667380 t __iommu_probe_device
-ffffffff81667650 t iommu_group_get
-ffffffff81667680 t __iommu_attach_device
-ffffffff81667700 t iommu_group_put
-ffffffff81667720 t iommu_create_device_direct_mappings
-ffffffff81667980 t iommu_release_device
-ffffffff81667a10 t iommu_group_remove_device
-ffffffff81667b70 t iommu_set_dma_strict
-ffffffff81667ba0 t iommu_get_group_resv_regions
-ffffffff81667f60 t iommu_get_resv_regions
-ffffffff81667f90 t iommu_put_resv_regions
-ffffffff81667ff0 t iommu_group_alloc
-ffffffff81668150 t iommu_group_get_by_id
-ffffffff816681d0 t iommu_group_get_iommudata
-ffffffff816681f0 t iommu_group_set_iommudata
-ffffffff81668210 t iommu_group_set_name
-ffffffff816682c0 t iommu_group_add_device
-ffffffff81668580 t trace_add_device_to_group
-ffffffff816685e0 t iommu_group_for_each_dev
-ffffffff81668660 t iommu_group_ref_get
-ffffffff81668680 t iommu_register_device_fault_handler
-ffffffff81668760 t iommu_unregister_device_fault_handler
-ffffffff816687e0 t iommu_report_device_fault
-ffffffff81668950 t iommu_page_response
-ffffffff81668af0 t iommu_group_id
-ffffffff81668b10 t generic_device_group
-ffffffff81668b20 t pci_device_group
-ffffffff81668c70 t get_pci_alias_or_group
-ffffffff81668cb0 t get_pci_alias_group
-ffffffff81668d90 t get_pci_function_alias_group
-ffffffff81668e70 t fsl_mc_device_group
-ffffffff81668eb0 t iommu_group_default_domain
-ffffffff81668ed0 t probe_iommu_group
-ffffffff81668f10 t iommu_present
-ffffffff81668f30 t device_iommu_capable
-ffffffff81668f70 t iommu_set_fault_handler
-ffffffff81668f90 t iommu_domain_alloc
-ffffffff81669000 t __iommu_domain_alloc
-ffffffff816690c0 t iommu_domain_free
-ffffffff81669100 t iommu_attach_device
-ffffffff81669190 t __iommu_attach_group
-ffffffff816692c0 t iommu_deferred_attach
-ffffffff81669370 t iommu_detach_device
-ffffffff81669430 t iommu_get_domain_for_dev
-ffffffff81669470 t iommu_get_dma_domain
-ffffffff81669490 t iommu_attach_group
-ffffffff816694d0 t iommu_detach_group
-ffffffff81669530 t iommu_iova_to_phys
-ffffffff81669570 t iommu_map
-ffffffff816695f0 t iommu_map_atomic
-ffffffff81669650 t iommu_unmap
-ffffffff816696f0 t __iommu_unmap.llvm.259322843263825890
-ffffffff816698f0 t iommu_unmap_fast
-ffffffff81669900 t iommu_map_sg
-ffffffff81669950 t __iommu_map_sg.llvm.259322843263825890
-ffffffff81669b00 t iommu_map_sg_atomic
-ffffffff81669b20 t report_iommu_fault
-ffffffff81669bc0 t iommu_enable_nesting
-ffffffff81669bf0 t iommu_set_pgtable_quirks
-ffffffff81669c20 t iommu_alloc_resv_region
-ffffffff81669cb0 t iommu_set_default_passthrough
-ffffffff81669cd0 t iommu_set_default_translated
-ffffffff81669cf0 t iommu_default_passthrough
-ffffffff81669d10 t iommu_ops_from_fwnode
-ffffffff81669d70 t iommu_fwspec_init
-ffffffff81669e30 t iommu_fwspec_free
-ffffffff81669e80 t iommu_fwspec_add_ids
-ffffffff81669fc0 t iommu_dev_enable_feature
-ffffffff8166a000 t iommu_dev_disable_feature
-ffffffff8166a040 t iommu_device_use_default_domain
-ffffffff8166a0f0 t iommu_device_unuse_default_domain
-ffffffff8166a160 t iommu_group_claim_dma_owner
-ffffffff8166a2e0 t __iommu_group_set_domain
-ffffffff8166a480 t iommu_group_release_dma_owner
-ffffffff8166a500 t iommu_group_dma_owner_claimed
-ffffffff8166a540 t iommu_attach_device_pasid
-ffffffff8166a6d0 t iommu_detach_device_pasid
-ffffffff8166a790 t iommu_get_domain_for_dev_pasid
-ffffffff8166a810 t iommu_sva_domain_alloc
-ffffffff8166a860 t iommu_sva_handle_iopf
-ffffffff8166a870 t iommu_bus_notifier
-ffffffff8166a8b0 t iommu_group_release
-ffffffff8166a980 t iommu_group_attr_show
-ffffffff8166a9b0 t iommu_group_attr_store
-ffffffff8166a9e0 t iommu_group_show_resv_regions
-ffffffff8166aab0 t iommu_group_show_type
-ffffffff8166ab20 t iommu_group_store_type
-ffffffff8166b010 t iommu_group_alloc_default_domain
-ffffffff8166b0a0 t iommu_group_show_name
-ffffffff8166b0d0 t __iommu_map
-ffffffff8166b400 t __traceiter_add_device_to_group
-ffffffff8166b450 t __traceiter_remove_device_from_group
-ffffffff8166b4a0 t __traceiter_attach_device_to_domain
-ffffffff8166b4f0 t __traceiter_detach_device_from_domain
-ffffffff8166b540 t __traceiter_map
-ffffffff8166b5a0 t __traceiter_unmap
-ffffffff8166b600 t __traceiter_io_page_fault
-ffffffff8166b660 t trace_event_raw_event_iommu_group_event
-ffffffff8166b790 t perf_trace_iommu_group_event
-ffffffff8166b900 t trace_event_raw_event_iommu_device_event
-ffffffff8166ba20 t perf_trace_iommu_device_event
-ffffffff8166bb90 t trace_event_raw_event_map
-ffffffff8166bc60 t perf_trace_map
-ffffffff8166bd70 t trace_event_raw_event_unmap
-ffffffff8166be40 t perf_trace_unmap
-ffffffff8166bf50 t trace_event_raw_event_iommu_error
-ffffffff8166c110 t perf_trace_iommu_error
-ffffffff8166c320 t trace_raw_output_iommu_group_event
-ffffffff8166c380 t trace_raw_output_iommu_device_event
-ffffffff8166c3e0 t trace_raw_output_map
-ffffffff8166c440 t trace_raw_output_unmap
-ffffffff8166c4a0 t trace_raw_output_iommu_error
-ffffffff8166c510 t iommu_device_sysfs_add
-ffffffff8166c650 t iommu_device_sysfs_remove
-ffffffff8166c680 t iommu_device_link
-ffffffff8166c720 t iommu_device_unlink
-ffffffff8166c770 t release_device
-ffffffff8166c780 t iommu_dma_init_fq
-ffffffff8166c8e0 t fq_flush_timeout
-ffffffff8166ca50 t iommu_get_dma_cookie
-ffffffff8166cae0 t iommu_get_msi_cookie
-ffffffff8166cb60 t iommu_put_dma_cookie
-ffffffff8166cd10 t iommu_dma_get_resv_regions
-ffffffff8166cd20 t iommu_setup_dma_ops
-ffffffff8166d220 t iommu_dma_prepare_msi
-ffffffff8166d3e0 t iommu_dma_compose_msi_msg
-ffffffff8166d440 t iommu_dma_ranges_sort
-ffffffff8166d460 t iommu_dma_alloc
-ffffffff8166d660 t iommu_dma_free
-ffffffff8166d690 t iommu_dma_alloc_noncontiguous
-ffffffff8166d730 t iommu_dma_free_noncontiguous
-ffffffff8166d7b0 t iommu_dma_mmap
-ffffffff8166d890 t iommu_dma_get_sgtable
-ffffffff8166d990 t iommu_dma_map_page
-ffffffff8166db90 t iommu_dma_unmap_page
-ffffffff8166dc20 t iommu_dma_map_sg
-ffffffff8166df90 t iommu_dma_unmap_sg
-ffffffff8166e070 t iommu_dma_map_resource
-ffffffff8166e0d0 t iommu_dma_unmap_resource
-ffffffff8166e0e0 t iommu_dma_sync_single_for_cpu
-ffffffff8166e160 t iommu_dma_sync_single_for_device
-ffffffff8166e1e0 t iommu_dma_sync_sg_for_cpu
-ffffffff8166e2b0 t iommu_dma_sync_sg_for_device
-ffffffff8166e380 t iommu_dma_opt_mapping_size
-ffffffff8166e390 t iommu_dma_get_merge_boundary
-ffffffff8166e3d0 t __iommu_dma_map
-ffffffff8166e4f0 t __iommu_dma_free
-ffffffff8166e600 t __iommu_dma_alloc_noncontiguous
-ffffffff8166e980 t __iommu_dma_unmap
-ffffffff8166edb0 t iommu_dma_alloc_iova
-ffffffff8166eea0 t __finalise_sg
-ffffffff8166f040 t iommu_dma_unmap_sg_swiotlb
-ffffffff8166f110 t iova_rcache_range
-ffffffff8166f120 t init_iova_domain
-ffffffff8166f240 t iova_cache_get
-ffffffff8166f340 t iova_cpuhp_dead
-ffffffff8166f360 t iova_cache_put
-ffffffff8166f3c0 t alloc_iova
-ffffffff8166f640 t find_iova
-ffffffff8166f6b0 t __free_iova
-ffffffff8166f700 t remove_iova
-ffffffff8166f790 t free_iova
-ffffffff8166f830 t alloc_iova_fast
-ffffffff8166fb00 t free_cpu_cached_iovas
-ffffffff8166fd00 t free_iova_fast
-ffffffff8166fe80 t put_iova_domain
-ffffffff8166ff00 t reserve_iova
-ffffffff81670070 t iova_domain_init_rcaches
-ffffffff81670200 t free_iova_rcaches
-ffffffff81670360 t iova_magazine_free_pfns
-ffffffff81670430 t of_iommu_configure
-ffffffff81670730 t of_pci_iommu_init
-ffffffff81670780 t of_iommu_configure_dev_id
-ffffffff816708c0 t component_compare_of
-ffffffff816708e0 t component_release_of
-ffffffff816708f0 t component_compare_dev
-ffffffff81670910 t component_compare_dev_name
-ffffffff81670920 t component_match_add_release
-ffffffff81670940 t __component_match_add
-ffffffff81670af0 t component_match_add_typed
-ffffffff81670b10 t component_master_add_with_match
-ffffffff81670c90 t try_to_bring_up_aggregate_device
-ffffffff81670e70 t free_aggregate_device
-ffffffff81670f20 t component_master_del
-ffffffff81670fc0 t component_unbind_all
-ffffffff816710b0 t component_bind_all
-ffffffff816712f0 t component_add_typed
-ffffffff81671320 t __component_add
-ffffffff81671490 t component_add
-ffffffff816714b0 t component_del
-ffffffff816715e0 t devm_component_match_release
-ffffffff81671650 t component_devices_open
-ffffffff81671680 t component_devices_show
-ffffffff816717d0 t fwnode_link_add
-ffffffff81671810 t __fwnode_link_add
-ffffffff81671910 t fwnode_links_purge
-ffffffff81671930 t fwnode_links_purge_suppliers
-ffffffff81671a00 t fwnode_links_purge_consumers
-ffffffff81671ad0 t fw_devlink_purge_absent_suppliers
-ffffffff81671b30 t device_links_read_lock
-ffffffff81671b50 t device_links_read_unlock
-ffffffff81671b80 t device_links_read_lock_held
-ffffffff81671b90 t device_is_dependent
-ffffffff81671cd0 t device_for_each_child
-ffffffff81671d80 t device_pm_move_to_tail
-ffffffff81671de0 t device_reorder_to_tail
-ffffffff81671f50 t device_link_add
-ffffffff81672460 t kref_get
-ffffffff816724a0 t kref_get
-ffffffff816724e0 t device_link_init_status
-ffffffff81672570 t get_device
-ffffffff81672590 t dev_set_name
-ffffffff81672610 t device_register
-ffffffff81672630 t put_device
-ffffffff81672650 t device_link_del
-ffffffff81672680 t device_link_put_kref
-ffffffff81672750 t device_link_remove
-ffffffff816727c0 t device_links_check_suppliers
-ffffffff816729e0 t dev_err_probe
-ffffffff81672a90 t device_links_supplier_sync_state_pause
-ffffffff81672ac0 t device_links_supplier_sync_state_resume
-ffffffff81672bc0 t __device_links_queue_sync_state
-ffffffff81672cb0 t device_links_flush_sync_list
-ffffffff81672d90 t device_links_force_bind
-ffffffff81672e20 t device_link_drop_managed
-ffffffff81672ee0 t device_links_driver_bound
-ffffffff81673280 t __fw_devlink_pickup_dangling_consumers
-ffffffff816733d0 t __fw_devlink_link_to_consumers
-ffffffff81673540 t device_remove_file
-ffffffff81673560 t device_links_no_driver
-ffffffff81673660 t device_links_driver_cleanup
-ffffffff816737d0 t device_links_busy
-ffffffff81673860 t device_links_unbind_consumers
-ffffffff81673970 t fw_devlink_is_strict
-ffffffff816739a0 t fw_devlink_drivers_done
-ffffffff816739f0 t fw_devlink_no_driver.llvm.4157689720821036174
-ffffffff81673a40 t lock_device_hotplug
-ffffffff81673a60 t unlock_device_hotplug
-ffffffff81673a80 t lock_device_hotplug_sysfs
-ffffffff81673ad0 t dev_driver_string
-ffffffff81673b10 t device_store_ulong
-ffffffff81673b80 t device_show_ulong
-ffffffff81673bb0 t device_store_int
-ffffffff81673c30 t device_show_int
-ffffffff81673c60 t device_store_bool
-ffffffff81673c90 t device_show_bool
-ffffffff81673cc0 t device_add_groups
-ffffffff81673cd0 t device_remove_groups
-ffffffff81673ce0 t devm_device_add_group
-ffffffff81673d70 t devm_attr_group_remove
-ffffffff81673d90 t devm_device_remove_group
-ffffffff81673dc0 t devm_attr_group_match
-ffffffff81673de0 t devm_device_add_groups
-ffffffff81673e70 t devm_attr_groups_remove
-ffffffff81673e90 t devm_device_remove_groups
-ffffffff81673ec0 t devices_kset_move_last
-ffffffff81673f50 t device_create_file
-ffffffff81673fd0 t device_remove_file_self
-ffffffff81673ff0 t device_create_bin_file
-ffffffff81674010 t device_remove_bin_file
-ffffffff81674030 t device_initialize
-ffffffff81674140 t virtual_device_parent
-ffffffff81674180 t device_add
-ffffffff81674710 t get_device_parent
-ffffffff816748c0 t device_add_attrs
-ffffffff81674ab0 t device_create_sys_dev_entry
-ffffffff81674b60 t fw_devlink_link_device
-ffffffff81674bc0 t fw_devlink_unblock_consumers
-ffffffff81674c50 t device_remove_attrs
-ffffffff81674d40 t device_remove_class_symlinks
-ffffffff81674dd0 t cleanup_glue_dir
-ffffffff81674e60 t kill_device
-ffffffff81674e90 t device_del
-ffffffff816752e0 t device_unregister
-ffffffff81675310 t device_get_devnode
-ffffffff816753e0 t device_for_each_child_reverse
-ffffffff816754a0 t device_find_child
-ffffffff81675570 t device_find_child_by_name
-ffffffff81675640 t device_find_any_child
-ffffffff816756e0 t device_offline
-ffffffff81675800 t device_check_offline
-ffffffff816758e0 t device_online
-ffffffff81675970 t __root_device_register
-ffffffff81675a00 t root_device_release
-ffffffff81675a10 t root_device_unregister
-ffffffff81675a50 t device_create
-ffffffff81675b80 t device_create_with_groups
-ffffffff81675cb0 t device_destroy
-ffffffff81675d20 t device_rename
-ffffffff81675de0 t device_move
-ffffffff81676020 t devices_kset_move_after
-ffffffff816760b0 t devices_kset_move_before
-ffffffff81676150 t device_change_owner
-ffffffff816762b0 t device_shutdown
-ffffffff816764b6 t _dev_info
-ffffffff8167653e t dev_vprintk_emit
-ffffffff8167669b t dev_printk_emit
-ffffffff81676706 t _dev_printk
-ffffffff81676780 t __dev_printk
-ffffffff816767f6 t _dev_emerg
-ffffffff8167687e t _dev_alert
-ffffffff81676906 t _dev_crit
-ffffffff8167698e t _dev_err
-ffffffff81676a16 t _dev_warn
-ffffffff81676a9e t _dev_notice
-ffffffff81676b30 t set_primary_fwnode
-ffffffff81676bc0 t set_secondary_fwnode
-ffffffff81676c00 t device_set_of_node_from_dev
-ffffffff81676c20 t device_set_node
-ffffffff81676c60 t device_match_name
-ffffffff81676c90 t device_match_of_node
-ffffffff81676cb0 t device_match_fwnode
-ffffffff81676cd0 t device_match_devt
-ffffffff81676cf0 t device_match_acpi_dev
-ffffffff81676d30 t device_match_acpi_handle
-ffffffff81676d70 t device_match_any
-ffffffff81676d80 t devlink_add_symlinks
-ffffffff81677030 t devlink_remove_symlinks
-ffffffff816771e0 t devlink_dev_release
-ffffffff81677240 t auto_remove_on_show
-ffffffff81677290 t runtime_pm_show
-ffffffff816772c0 t sync_state_only_show
-ffffffff816772f0 t device_link_release_fn
-ffffffff81677380 t waiting_for_supplier_show
-ffffffff81677420 t fw_devlink_create_devlink
-ffffffff81677630 t __fw_devlink_relax_cycles
-ffffffff81677860 t device_release
-ffffffff816778f0 t device_namespace
-ffffffff81677930 t device_get_ownership
-ffffffff81677960 t dev_attr_show
-ffffffff816779b0 t dev_attr_store
-ffffffff816779e0 t klist_children_get
-ffffffff81677a00 t klist_children_put
-ffffffff81677a20 t class_dir_release
-ffffffff81677a30 t class_dir_child_ns_type
-ffffffff81677a50 t uevent_show
-ffffffff81677b60 t uevent_store
-ffffffff81677bb0 t uevent_store
-ffffffff81677be0 t online_show
-ffffffff81677c40 t online_store
-ffffffff81677d80 t removable_show
-ffffffff81677dd0 t removable_show
-ffffffff81677e00 t dev_show
-ffffffff81677e30 t fw_devlink_parse_fwtree
-ffffffff81677ec0 t __fw_devlink_link_to_suppliers
-ffffffff81678020 t dev_uevent_filter
-ffffffff81678060 t dev_uevent_name
-ffffffff81678090 t dev_uevent
-ffffffff81678260 t device_create_release
-ffffffff81678270 t device_create_release
-ffffffff81678280 t device_create_release
-ffffffff81678290 t bus_create_file
-ffffffff81678300 t bus_remove_file
-ffffffff81678360 t bus_for_each_dev
-ffffffff81678430 t bus_find_device
-ffffffff81678520 t subsys_find_device_by_id
-ffffffff81678650 t bus_for_each_drv
-ffffffff81678740 t bus_add_device
-ffffffff81678850 t bus_probe_device
-ffffffff816788f0 t bus_remove_device
-ffffffff816789f0 t bus_add_driver
-ffffffff81678c70 t bus_remove_driver
-ffffffff81678d20 t bus_rescan_devices
-ffffffff81678e30 t device_reprobe
-ffffffff81678ec0 t bus_register
-ffffffff81679150 t klist_devices_get
-ffffffff81679170 t klist_devices_put
-ffffffff81679190 t add_probe_files
-ffffffff81679290 t remove_probe_files
-ffffffff81679330 t bus_unregister
-ffffffff816793e0 t bus_register_notifier
-ffffffff81679410 t bus_unregister_notifier
-ffffffff81679430 t bus_get_kset
-ffffffff81679450 t bus_get_device_klist
-ffffffff81679470 t bus_sort_breadthfirst
-ffffffff81679650 t subsys_dev_iter_init
-ffffffff81679690 t subsys_dev_iter_next
-ffffffff816796d0 t subsys_dev_iter_exit
-ffffffff816796e0 t subsys_interface_register
-ffffffff81679850 t subsys_interface_unregister
-ffffffff81679990 t subsys_system_register
-ffffffff816799b0 t subsys_register.llvm.14726823957068119945
-ffffffff81679a80 t subsys_virtual_register
-ffffffff81679ac0 t driver_release
-ffffffff81679ad0 t drv_attr_show
-ffffffff81679b10 t drv_attr_store
-ffffffff81679b50 t unbind_store
-ffffffff81679cb0 t bind_store
-ffffffff81679e30 t bus_release
-ffffffff81679e60 t bus_attr_show
-ffffffff81679e90 t bus_attr_store
-ffffffff81679ec0 t bus_uevent_store
-ffffffff81679ef0 t drivers_probe_store
-ffffffff8167a060 t drivers_autoprobe_show
-ffffffff8167a090 t drivers_autoprobe_store
-ffffffff8167a0c0 t system_root_device_release
-ffffffff8167a0d0 t bus_uevent_filter
-ffffffff8167a0f0 t driver_deferred_probe_add
-ffffffff8167a180 t driver_deferred_probe_del
-ffffffff8167a220 t driver_deferred_probe_trigger
-ffffffff8167a2c0 t device_block_probing
-ffffffff8167a2e0 t wait_for_device_probe
-ffffffff8167a3c0 t device_unblock_probing
-ffffffff8167a470 t device_set_deferred_probe_reason
-ffffffff8167a4e0 t driver_deferred_probe_check_state
-ffffffff8167a520 t deferred_probe_extend_timeout
-ffffffff8167a560 t device_is_bound
-ffffffff8167a590 t device_bind_driver
-ffffffff8167a660 t driver_bound
-ffffffff8167a810 t driver_probe_done
-ffffffff8167a830 t driver_allows_async_probing
-ffffffff8167a880 t device_attach
-ffffffff8167a8a0 t __device_attach.llvm.14026978907403598246
-ffffffff8167aa10 t device_initial_probe
-ffffffff8167aa30 t device_driver_attach
-ffffffff8167aad0 t __driver_probe_device
-ffffffff8167abb0 t driver_attach
-ffffffff8167abd0 t __driver_attach.llvm.14026978907403598246
-ffffffff8167ad80 t device_release_driver_internal
-ffffffff8167b050 t device_release_driver
-ffffffff8167b070 t device_driver_detach
-ffffffff8167b090 t driver_detach
-ffffffff8167b150 t deferred_probe_work_func
-ffffffff8167b240 t deferred_probe_timeout_work_func
-ffffffff8167b370 t deferred_devs_open
-ffffffff8167b3a0 t deferred_devs_show
-ffffffff8167b440 t __device_attach_driver
-ffffffff8167b560 t __device_attach_async_helper
-ffffffff8167b630 t driver_probe_device
-ffffffff8167b7c0 t really_probe
-ffffffff8167bb60 t device_remove
-ffffffff8167bbd0 t state_synced_show
-ffffffff8167bc30 t coredump_store
-ffffffff8167bc80 t __driver_attach_async_helper
-ffffffff8167bd20 t register_syscore_ops
-ffffffff8167bd80 t unregister_syscore_ops
-ffffffff8167bde0 t syscore_suspend
-ffffffff8167bff0 t syscore_resume
-ffffffff8167c190 t syscore_shutdown
-ffffffff8167c210 t driver_set_override
-ffffffff8167c300 t driver_for_each_device
-ffffffff8167c3e0 t driver_find_device
-ffffffff8167c4d0 t driver_create_file
-ffffffff8167c500 t driver_remove_file
-ffffffff8167c530 t driver_add_groups
-ffffffff8167c550 t driver_remove_groups
-ffffffff8167c570 t driver_register
-ffffffff8167c6a0 t driver_find
-ffffffff8167c6f0 t driver_unregister
-ffffffff8167c740 t class_create_file_ns
-ffffffff8167c770 t class_remove_file_ns
-ffffffff8167c790 t __class_register
-ffffffff8167c900 t klist_class_dev_get
-ffffffff8167c920 t klist_class_dev_put
-ffffffff8167c940 t class_unregister
-ffffffff8167c970 t __class_create
-ffffffff8167c9f0 t class_create_release
-ffffffff8167ca00 t class_destroy
-ffffffff8167ca40 t class_dev_iter_init
-ffffffff8167ca90 t class_dev_iter_next
-ffffffff8167cad0 t class_dev_iter_exit
-ffffffff8167cae0 t class_for_each_device
-ffffffff8167cbf0 t class_find_device
-ffffffff8167cd10 t class_interface_register
-ffffffff8167ce60 t class_interface_unregister
-ffffffff8167cf80 t show_class_attr_string
-ffffffff8167cfa0 t class_compat_register
-ffffffff8167d000 t class_compat_unregister
-ffffffff8167d020 t class_compat_create_link
-ffffffff8167d0a0 t class_compat_remove_link
-ffffffff8167d0e0 t class_release
-ffffffff8167d120 t class_child_ns_type
-ffffffff8167d140 t class_attr_show
-ffffffff8167d170 t class_attr_store
-ffffffff8167d1a0 t platform_get_resource
-ffffffff8167d1f0 t platform_get_mem_or_io
-ffffffff8167d240 t devm_platform_get_and_ioremap_resource
-ffffffff8167d2b0 t devm_platform_ioremap_resource
-ffffffff8167d310 t devm_platform_ioremap_resource_byname
-ffffffff8167d3a0 t platform_get_resource_byname
-ffffffff8167d420 t platform_get_irq_optional
-ffffffff8167d5b0 t platform_get_irq
-ffffffff8167d5f0 t platform_irq_count
-ffffffff8167d630 t devm_platform_get_irqs_affinity
-ffffffff8167d830 t devm_platform_get_irqs_affinity_release
-ffffffff8167d8f0 t platform_get_irq_byname
-ffffffff8167d930 t __platform_get_irq_byname
-ffffffff8167d9f0 t platform_get_irq_byname_optional
-ffffffff8167da00 t platform_add_devices
-ffffffff8167db90 t platform_device_register
-ffffffff8167dc10 t platform_device_unregister
-ffffffff8167dcc0 t platform_device_put
-ffffffff8167dcf0 t platform_device_alloc
-ffffffff8167ddc0 t platform_device_release
-ffffffff8167de10 t platform_device_add_resources
-ffffffff8167de80 t platform_device_add_data
-ffffffff8167dee0 t platform_device_add
-ffffffff8167e0f0 t platform_device_del
-ffffffff8167e190 t platform_device_register_full
-ffffffff8167e3d0 t __platform_driver_register
-ffffffff8167e400 t platform_driver_unregister
-ffffffff8167e420 t platform_probe_fail
-ffffffff8167e430 t __platform_register_drivers
-ffffffff8167e4e0 t platform_unregister_drivers
-ffffffff8167e530 t platform_pm_suspend
-ffffffff8167e580 t platform_pm_resume
-ffffffff8167e5d0 t platform_match
-ffffffff8167e690 t platform_uevent
-ffffffff8167e6e0 t platform_probe
-ffffffff8167e790 t platform_remove
-ffffffff8167e7e0 t platform_shutdown
-ffffffff8167e810 t platform_dma_configure
-ffffffff8167e8b0 t platform_dma_cleanup
-ffffffff8167e8e0 t platform_find_device_by_driver
-ffffffff8167e910 t __platform_match
-ffffffff8167e920 t platform_dev_attrs_visible
-ffffffff8167e950 t numa_node_show
-ffffffff8167e980 t numa_node_show
-ffffffff8167e9b0 t numa_node_show
-ffffffff8167e9e0 t unregister_cpu
-ffffffff8167ea20 t cpu_subsys_match
-ffffffff8167ea40 t cpu_subsys_online
-ffffffff8167ea60 t cpu_subsys_offline
-ffffffff8167ea70 t register_cpu
-ffffffff8167eb80 t cpu_device_release
-ffffffff8167eb90 t cpu_uevent
-ffffffff8167ebf0 t get_cpu_device
-ffffffff8167ec40 t cpu_device_create
-ffffffff8167ed50 t cpu_is_hotpluggable
-ffffffff8167eda0 t print_cpu_modalias
-ffffffff8167ee60 t show_cpus_attr
-ffffffff8167ee90 t print_cpus_kernel_max
-ffffffff8167eec0 t print_cpus_offline
-ffffffff8167efd0 t print_cpus_isolated
-ffffffff8167f060 t kobj_map
-ffffffff8167f290 t kobj_unmap
-ffffffff8167f380 t kobj_lookup
-ffffffff8167f4a0 t kobj_map_init
-ffffffff8167f570 t __devres_alloc_node
-ffffffff8167f5d0 t devres_for_each_res
-ffffffff8167f6a0 t devres_free
-ffffffff8167f6d0 t devres_add
-ffffffff8167f720 t add_dr
-ffffffff8167f7e0 t devres_find
-ffffffff8167f890 t devres_get
-ffffffff8167f980 t devres_remove
-ffffffff8167fac0 t devres_destroy
-ffffffff8167fb00 t devres_release
-ffffffff8167fb60 t devres_release_all
-ffffffff8167fc30 t remove_nodes
-ffffffff8167fe80 t release_nodes
-ffffffff8167ff30 t devres_open_group
-ffffffff81680030 t group_open_release
-ffffffff81680040 t group_close_release
-ffffffff81680050 t devres_close_group
-ffffffff816800f0 t devres_remove_group
-ffffffff81680240 t devres_release_group
-ffffffff81680340 t devm_add_action
-ffffffff816803f0 t devm_action_release
-ffffffff81680410 t devm_remove_action
-ffffffff81680490 t devm_action_match
-ffffffff816804c0 t devm_release_action
-ffffffff81680550 t devm_kmalloc
-ffffffff81680600 t devm_kmalloc_release
-ffffffff81680610 t devm_krealloc
-ffffffff81680870 t devm_kfree
-ffffffff816808e0 t devm_kmalloc_match
-ffffffff81680900 t devm_kstrdup
-ffffffff816809e0 t devm_kstrdup_const
-ffffffff81680a20 t devm_kvasprintf
-ffffffff81680b60 t devm_kasprintf
-ffffffff81680be0 t devm_kmemdup
-ffffffff81680cb0 t devm_get_free_pages
-ffffffff81680d80 t devm_pages_release
-ffffffff81680da0 t devm_free_pages
-ffffffff81680e30 t devm_pages_match
-ffffffff81680e50 t __devm_alloc_percpu
-ffffffff81680f10 t devm_percpu_release
-ffffffff81680f30 t devm_free_percpu
-ffffffff81680f80 t devm_percpu_match
-ffffffff81680fa0 t attribute_container_classdev_to_container
-ffffffff81680fb0 t attribute_container_register
-ffffffff81681030 t internal_container_klist_get
-ffffffff81681050 t internal_container_klist_put
-ffffffff81681070 t attribute_container_unregister
-ffffffff81681100 t attribute_container_add_device
-ffffffff816812e0 t attribute_container_release
-ffffffff81681310 t attribute_container_add_class_device
-ffffffff816813b0 t attribute_container_remove_device
-ffffffff81681560 t attribute_container_remove_attrs
-ffffffff816815e0 t attribute_container_device_trigger_safe
-ffffffff81681890 t attribute_container_device_trigger
-ffffffff816819c0 t attribute_container_trigger
-ffffffff81681a40 t attribute_container_add_attrs
-ffffffff81681ad0 t attribute_container_add_class_device_adapter
-ffffffff81681b70 t attribute_container_class_device_del
-ffffffff81681c00 t attribute_container_find_class_device
-ffffffff81681c90 t transport_class_register
-ffffffff81681cb0 t transport_class_unregister
-ffffffff81681cc0 t anon_transport_class_register
-ffffffff81681d10 t anon_transport_dummy_function
-ffffffff81681d20 t anon_transport_class_unregister
-ffffffff81681d40 t transport_setup_device
-ffffffff81681d60 t transport_setup_classdev
-ffffffff81681d80 t transport_add_device
-ffffffff81681da0 t transport_add_class_device
-ffffffff81681e20 t transport_remove_classdev
-ffffffff81681e90 t transport_configure_device
-ffffffff81681eb0 t transport_configure
-ffffffff81681ee0 t transport_remove_device
-ffffffff81681f00 t transport_destroy_device
-ffffffff81681f20 t transport_destroy_classdev
-ffffffff81681f50 t topology_add_dev
-ffffffff81681f80 t topology_remove_dev
-ffffffff81681fb0 t topology_is_visible
-ffffffff81682000 t ppin_show
-ffffffff81682040 t physical_package_id_show
-ffffffff81682080 t die_id_show
-ffffffff816820c0 t cluster_id_show
-ffffffff81682100 t core_id_show
-ffffffff81682140 t core_cpus_read
-ffffffff81682190 t core_cpus_list_read
-ffffffff816821e0 t thread_siblings_read
-ffffffff81682230 t thread_siblings_list_read
-ffffffff81682280 t core_siblings_read
-ffffffff816822d0 t core_siblings_list_read
-ffffffff81682320 t cluster_cpus_read
-ffffffff81682370 t cluster_cpus_list_read
-ffffffff816823c0 t die_cpus_read
-ffffffff81682410 t die_cpus_list_read
-ffffffff81682460 t package_cpus_read
-ffffffff816824b0 t package_cpus_list_read
-ffffffff81682500 t trivial_online
-ffffffff81682510 t container_offline
-ffffffff81682540 t dev_fwnode
-ffffffff81682570 t device_property_present
-ffffffff81682610 t fwnode_property_present
-ffffffff81682690 t device_property_read_u8_array
-ffffffff81682760 t fwnode_property_read_u8_array
-ffffffff81682820 t device_property_read_u16_array
-ffffffff816828f0 t fwnode_property_read_u16_array
-ffffffff816829b0 t device_property_read_u32_array
-ffffffff81682a80 t fwnode_property_read_u32_array
-ffffffff81682b40 t device_property_read_u64_array
-ffffffff81682c10 t fwnode_property_read_u64_array
-ffffffff81682cd0 t device_property_read_string_array
-ffffffff81682da0 t fwnode_property_read_string_array
-ffffffff81682e40 t device_property_read_string
-ffffffff81682f10 t fwnode_property_read_string
-ffffffff81682fc0 t device_property_match_string
-ffffffff81682ff0 t fwnode_property_match_string
-ffffffff816831b0 t fwnode_property_get_reference_args
-ffffffff81683270 t fwnode_find_reference
-ffffffff816833a0 t fwnode_get_name
-ffffffff816833e0 t fwnode_get_name_prefix
-ffffffff81683420 t fwnode_get_parent
-ffffffff81683460 t fwnode_get_next_parent
-ffffffff816834d0 t fwnode_handle_put
-ffffffff81683510 t fwnode_get_next_parent_dev
-ffffffff81683600 t fwnode_count_parents
-ffffffff816836c0 t fwnode_get_nth_parent
-ffffffff816837c0 t fwnode_handle_get
-ffffffff81683800 t fwnode_is_ancestor_of
-ffffffff81683900 t fwnode_get_next_child_node
-ffffffff81683940 t fwnode_get_next_available_child_node
-ffffffff816839e0 t fwnode_device_is_available
-ffffffff81683a20 t device_get_next_child_node
-ffffffff81683ac0 t fwnode_get_named_child_node
-ffffffff81683b00 t device_get_named_child_node
-ffffffff81683b60 t device_get_child_node_count
-ffffffff81683ce0 t device_dma_supported
-ffffffff81683d50 t device_get_dma_attr
-ffffffff81683dc0 t fwnode_get_phy_mode
-ffffffff81683f70 t device_get_phy_mode
-ffffffff81683fa0 t fwnode_iomap
-ffffffff81683fe0 t fwnode_irq_get
-ffffffff81684020 t fwnode_irq_get_byname
-ffffffff81684090 t fwnode_graph_get_next_endpoint
-ffffffff816841d0 t fwnode_graph_get_port_parent
-ffffffff81684270 t fwnode_graph_get_remote_port_parent
-ffffffff81684360 t fwnode_graph_get_remote_endpoint
-ffffffff816843a0 t fwnode_graph_get_remote_port
-ffffffff81684440 t fwnode_graph_get_endpoint_by_id
-ffffffff81684750 t fwnode_graph_parse_endpoint
-ffffffff816847a0 t fwnode_graph_get_endpoint_count
-ffffffff81684970 t device_get_match_data
-ffffffff816849f0 t fwnode_connection_find_match
-ffffffff81684a90 t fwnode_graph_devcon_matches
-ffffffff81684d10 t fwnode_devcon_matches
-ffffffff81684f50 t fwnode_connection_find_matches
-ffffffff81684fe0 t get_cpu_cacheinfo
-ffffffff81685010 t last_level_cache_is_valid
-ffffffff81685070 t last_level_cache_is_shared
-ffffffff81685120 t cache_setup_acpi
-ffffffff81685130 t detect_cache_attributes
-ffffffff816856a0 t free_cache_attributes
-ffffffff81685820 t cacheinfo_cpu_online
-ffffffff81685a00 t cacheinfo_cpu_pre_down
-ffffffff81685a30 t cpu_cache_sysfs_exit
-ffffffff81685b00 t cache_default_attrs_is_visible
-ffffffff81685c30 t level_show
-ffffffff81685c60 t shared_cpu_map_show
-ffffffff81685c90 t shared_cpu_list_show
-ffffffff81685cc0 t coherency_line_size_show
-ffffffff81685cf0 t ways_of_associativity_show
-ffffffff81685d20 t number_of_sets_show
-ffffffff81685d50 t size_show
-ffffffff81685d80 t size_show
-ffffffff81685e00 t size_show
-ffffffff81685e90 t size_show
-ffffffff81685f00 t size_show
-ffffffff81685fd0 t size_show
-ffffffff81686000 t write_policy_show
-ffffffff81686040 t allocation_policy_show
-ffffffff816860a0 t physical_line_partition_show
-ffffffff816860d0 t is_software_node
-ffffffff81686100 t to_software_node
-ffffffff81686140 t software_node_fwnode
-ffffffff816861b0 t property_entries_dup
-ffffffff816865a0 t property_entries_free
-ffffffff81686660 t software_node_find_by_name
-ffffffff81686710 t software_node_register_nodes
-ffffffff816867e0 t software_node_register
-ffffffff816868e0 t software_node_unregister_nodes
-ffffffff816869d0 t software_node_unregister
-ffffffff81686a60 t software_node_register_node_group
-ffffffff81686ad0 t software_node_unregister_node_group
-ffffffff81686bb0 t swnode_register
-ffffffff81686d90 t fwnode_remove_software_node
-ffffffff81686dd0 t fwnode_create_software_node
-ffffffff81686ec0 t device_add_software_node
-ffffffff816870a0 t software_node_notify
-ffffffff81687150 t device_remove_software_node
-ffffffff816871d0 t software_node_notify_remove
-ffffffff81687280 t device_create_managed_software_node
-ffffffff81687370 t software_node_get
-ffffffff816873c0 t software_node_put
-ffffffff81687400 t software_node_property_present
-ffffffff81687480 t software_node_read_int_array
-ffffffff81687640 t software_node_read_string_array
-ffffffff816877a0 t software_node_get_name
-ffffffff816877e0 t software_node_get_name_prefix
-ffffffff81687870 t software_node_get_parent
-ffffffff816878c0 t software_node_get_next_child
-ffffffff81687960 t software_node_get_named_child_node
-ffffffff81687a00 t software_node_get_reference_args
-ffffffff81687ce0 t software_node_graph_get_next_endpoint
-ffffffff81687fc0 t software_node_graph_get_remote_endpoint
-ffffffff816880e0 t software_node_graph_get_port_parent
-ffffffff81688180 t software_node_graph_parse_endpoint
-ffffffff81688240 t swnode_graph_find_next_port
-ffffffff81688370 t software_node_release
-ffffffff81688440 t dpm_sysfs_add
-ffffffff81688530 t dpm_sysfs_change_owner
-ffffffff81688610 t wakeup_sysfs_add
-ffffffff81688650 t wakeup_sysfs_remove
-ffffffff81688680 t pm_qos_sysfs_add_resume_latency
-ffffffff816886a0 t pm_qos_sysfs_remove_resume_latency
-ffffffff816886c0 t pm_qos_sysfs_add_flags
-ffffffff816886e0 t pm_qos_sysfs_remove_flags
-ffffffff81688700 t pm_qos_sysfs_add_latency_tolerance
-ffffffff81688720 t pm_qos_sysfs_remove_latency_tolerance
-ffffffff81688740 t rpm_sysfs_remove
-ffffffff81688760 t dpm_sysfs_remove
-ffffffff816887c0 t runtime_status_show
-ffffffff81688820 t runtime_suspended_time_show
-ffffffff81688860 t runtime_active_time_show
-ffffffff816888a0 t autosuspend_delay_ms_show
-ffffffff816888e0 t autosuspend_delay_ms_store
-ffffffff81688990 t wakeup_store
-ffffffff81688a10 t wakeup_active_count_show
-ffffffff81688a90 t wakeup_abort_count_show
-ffffffff81688b10 t wakeup_expire_count_show
-ffffffff81688b90 t wakeup_active_show
-ffffffff81688c10 t wakeup_total_time_ms_show
-ffffffff81688ca0 t wakeup_max_time_ms_show
-ffffffff81688d30 t wakeup_last_time_ms_show
-ffffffff81688dc0 t pm_qos_latency_tolerance_us_show
-ffffffff81688e20 t pm_qos_latency_tolerance_us_store
-ffffffff81688ef0 t pm_qos_resume_latency_us_show
-ffffffff81688f40 t pm_qos_resume_latency_us_store
-ffffffff81689030 t pm_qos_no_power_off_show
-ffffffff81689070 t pm_qos_no_power_off_store
-ffffffff81689100 t pm_generic_runtime_suspend
-ffffffff81689140 t pm_generic_runtime_resume
-ffffffff81689180 t pm_generic_prepare
-ffffffff816891b0 t pm_generic_suspend_noirq
-ffffffff816891e0 t pm_generic_suspend_late
-ffffffff81689210 t pm_generic_suspend
-ffffffff81689240 t pm_generic_freeze_noirq
-ffffffff81689280 t pm_generic_freeze_late
-ffffffff816892b0 t pm_generic_freeze
-ffffffff816892e0 t pm_generic_poweroff_noirq
-ffffffff81689320 t pm_generic_poweroff_late
-ffffffff81689350 t pm_generic_poweroff
-ffffffff81689380 t pm_generic_thaw_noirq
-ffffffff816893c0 t pm_generic_thaw_early
-ffffffff816893f0 t pm_generic_thaw
-ffffffff81689420 t pm_generic_resume_noirq
-ffffffff81689450 t pm_generic_resume_early
-ffffffff81689480 t pm_generic_resume
-ffffffff816894b0 t pm_generic_restore_noirq
-ffffffff816894f0 t pm_generic_restore_early
-ffffffff81689520 t pm_generic_restore
-ffffffff81689550 t pm_generic_complete
-ffffffff81689580 t dev_pm_get_subsys_data
-ffffffff81689610 t dev_pm_put_subsys_data
-ffffffff81689670 t dev_pm_domain_attach
-ffffffff816896a0 t dev_pm_domain_attach_by_id
-ffffffff816896c0 t dev_pm_domain_attach_by_name
-ffffffff816896e0 t dev_pm_domain_detach
-ffffffff81689710 t dev_pm_domain_start
-ffffffff81689740 t dev_pm_domain_set
-ffffffff81689790 t __dev_pm_qos_flags
-ffffffff816897e0 t dev_pm_qos_flags
-ffffffff81689860 t __dev_pm_qos_resume_latency
-ffffffff81689890 t dev_pm_qos_read_value
-ffffffff81689950 t dev_pm_qos_constraints_destroy
-ffffffff81689d10 t apply_constraint
-ffffffff81689de0 t dev_pm_qos_add_request
-ffffffff81689e30 t __dev_pm_qos_add_request
-ffffffff81689fa0 t dev_pm_qos_update_request
-ffffffff81689fe0 t __dev_pm_qos_update_request.llvm.334234074015421732
-ffffffff8168a0f0 t dev_pm_qos_remove_request
-ffffffff8168a130 t __dev_pm_qos_remove_request
-ffffffff8168a260 t dev_pm_qos_add_notifier
-ffffffff8168a330 t dev_pm_qos_constraints_allocate
-ffffffff8168a450 t dev_pm_qos_remove_notifier
-ffffffff8168a4f0 t dev_pm_qos_add_ancestor_request
-ffffffff8168a5a0 t dev_pm_qos_expose_latency_limit
-ffffffff8168a710 t dev_pm_qos_hide_latency_limit
-ffffffff8168a7a0 t dev_pm_qos_expose_flags
-ffffffff8168a920 t dev_pm_qos_hide_flags
-ffffffff8168a9d0 t dev_pm_qos_update_flags
-ffffffff8168aa70 t dev_pm_qos_get_user_latency_tolerance
-ffffffff8168aad0 t dev_pm_qos_update_user_latency_tolerance
-ffffffff8168abc0 t dev_pm_qos_expose_latency_tolerance
-ffffffff8168ac10 t dev_pm_qos_hide_latency_tolerance
-ffffffff8168acc0 t pm_runtime_active_time
-ffffffff8168ad40 t pm_runtime_suspended_time
-ffffffff8168adc0 t pm_runtime_autosuspend_expiration
-ffffffff8168ae10 t pm_runtime_set_memalloc_noio
-ffffffff8168af00 t dev_memalloc_noio
-ffffffff8168af20 t pm_runtime_release_supplier
-ffffffff8168af80 t pm_schedule_suspend
-ffffffff8168b0e0 t rpm_suspend
-ffffffff8168b8b0 t __pm_runtime_idle
-ffffffff8168b960 t trace_rpm_usage_rcuidle
-ffffffff8168ba10 t rpm_idle
-ffffffff8168bd40 t __pm_runtime_suspend
-ffffffff8168bdf0 t __pm_runtime_resume
-ffffffff8168be70 t rpm_resume
-ffffffff8168c5c0 t pm_runtime_get_if_active
-ffffffff8168c670 t __pm_runtime_set_status
-ffffffff8168cb00 t pm_runtime_enable
-ffffffff8168cbc0 t pm_runtime_barrier
-ffffffff8168cc40 t __pm_runtime_barrier
-ffffffff8168cda0 t __pm_runtime_disable
-ffffffff8168ceb0 t devm_pm_runtime_enable
-ffffffff8168cf50 t pm_runtime_disable_action
-ffffffff8168cfd0 t pm_runtime_forbid
-ffffffff8168d030 t pm_runtime_allow
-ffffffff8168d0c0 t pm_runtime_no_callbacks
-ffffffff8168d110 t pm_runtime_irq_safe
-ffffffff8168d1a0 t pm_runtime_set_autosuspend_delay
-ffffffff8168d250 t __pm_runtime_use_autosuspend
-ffffffff8168d300 t pm_runtime_init
-ffffffff8168d3d0 t pm_runtime_work
-ffffffff8168d470 t pm_suspend_timer_fn
-ffffffff8168d4e0 t pm_runtime_reinit
-ffffffff8168d5d0 t pm_runtime_remove
-ffffffff8168d5f0 t pm_runtime_get_suppliers
-ffffffff8168d6b0 t pm_runtime_put_suppliers
-ffffffff8168d790 t pm_runtime_new_link
-ffffffff8168d7d0 t pm_runtime_drop_link
-ffffffff8168d8b0 t pm_runtime_force_suspend
-ffffffff8168da50 t pm_runtime_force_resume
-ffffffff8168dbc0 t trace_rpm_return_int_rcuidle
-ffffffff8168dc70 t __rpm_callback
-ffffffff8168dfa0 t dev_pm_set_wake_irq
-ffffffff8168e020 t dev_pm_attach_wake_irq
-ffffffff8168e0e0 t dev_pm_clear_wake_irq
-ffffffff8168e160 t dev_pm_set_dedicated_wake_irq
-ffffffff8168e180 t __dev_pm_set_dedicated_wake_irq
-ffffffff8168e290 t dev_pm_set_dedicated_wake_irq_reverse
-ffffffff8168e2b0 t dev_pm_enable_wake_irq
-ffffffff8168e2e0 t dev_pm_disable_wake_irq
-ffffffff8168e310 t dev_pm_enable_wake_irq_check
-ffffffff8168e360 t dev_pm_disable_wake_irq_check
-ffffffff8168e3a0 t dev_pm_enable_wake_irq_complete
-ffffffff8168e3d0 t dev_pm_arm_wake_irq
-ffffffff8168e420 t dev_pm_disarm_wake_irq
-ffffffff8168e470 t handle_threaded_wake_irq
-ffffffff8168e4e0 t device_pm_sleep_init
-ffffffff8168e550 t device_pm_lock
-ffffffff8168e570 t device_pm_unlock
-ffffffff8168e590 t device_pm_add
-ffffffff8168e650 t device_pm_check_callbacks
-ffffffff8168e8a0 t device_pm_remove
-ffffffff8168e950 t device_pm_move_before
-ffffffff8168e9e0 t device_pm_move_after
-ffffffff8168ea60 t device_pm_move_last
-ffffffff8168eae0 t dev_pm_skip_resume
-ffffffff8168eb20 t dev_pm_skip_suspend
-ffffffff8168eb50 t dpm_resume_noirq
-ffffffff8168ef20 t dpm_resume_early
-ffffffff8168f2e0 t async_resume_early
-ffffffff8168f3d0 t device_resume_early
-ffffffff8168f5c0 t dpm_resume_start
-ffffffff8168f5e0 t dpm_resume
-ffffffff8168f9d0 t async_resume
-ffffffff8168fac0 t device_resume
-ffffffff8168fcc0 t dpm_complete
-ffffffff81690050 t dpm_resume_end
-ffffffff81690070 t dpm_suspend_noirq
-ffffffff816904b0 t dpm_suspend_late
-ffffffff816908a0 t dpm_suspend_end
-ffffffff81690900 t dpm_suspend
-ffffffff81690d10 t dpm_prepare
-ffffffff81691200 t dpm_suspend_start
-ffffffff81691290 t __suspend_report_result
-ffffffff816912c0 t device_pm_wait_for_dev
-ffffffff81691300 t dpm_for_each_dev
-ffffffff81691380 t async_resume_noirq
-ffffffff81691470 t device_resume_noirq
-ffffffff81691690 t dpm_wait_for_superior
-ffffffff816917b0 t dpm_run_callback
-ffffffff816918c0 t async_suspend_noirq
-ffffffff81691a10 t __device_suspend_noirq
-ffffffff81691e00 t dpm_wait_fn
-ffffffff81691e40 t async_suspend_late
-ffffffff81691f90 t __device_suspend_late
-ffffffff81692310 t dpm_propagate_wakeup_to_parent
-ffffffff81692370 t async_suspend
-ffffffff816924c0 t __device_suspend
-ffffffff816929f0 t legacy_suspend
-ffffffff81692af0 t wakeup_source_create
-ffffffff81692b70 t wakeup_source_destroy
-ffffffff81692c80 t __pm_relax
-ffffffff81692cd0 t wakeup_source_add
-ffffffff81692d80 t pm_wakeup_timer_fn
-ffffffff81692de0 t wakeup_source_remove
-ffffffff81692e70 t wakeup_source_register
-ffffffff81692fb0 t wakeup_source_unregister
-ffffffff81693050 t wakeup_sources_read_lock
-ffffffff81693070 t wakeup_sources_read_unlock
-ffffffff816930a0 t wakeup_sources_walk_start
-ffffffff816930c0 t wakeup_sources_walk_next
-ffffffff816930f0 t device_wakeup_enable
-ffffffff816931b0 t device_wakeup_attach_irq
-ffffffff816931f0 t device_wakeup_detach_irq
-ffffffff81693210 t device_wakeup_arm_wake_irqs
-ffffffff81693280 t device_wakeup_disarm_wake_irqs
-ffffffff816932f0 t device_wakeup_disable
-ffffffff81693350 t device_set_wakeup_capable
-ffffffff816933e0 t device_set_wakeup_enable
-ffffffff81693450 t __pm_stay_awake
-ffffffff816934b0 t wakeup_source_report_event
-ffffffff816935b0 t pm_stay_awake
-ffffffff81693640 t wakeup_source_deactivate
-ffffffff81693740 t pm_relax
-ffffffff816937c0 t pm_wakeup_ws_event
-ffffffff81693860 t pm_wakeup_dev_event
-ffffffff816938c0 t pm_get_active_wakeup_sources
-ffffffff816939d0 t pm_print_active_wakeup_sources
-ffffffff81693a30 t pm_wakeup_pending
-ffffffff81693b70 t pm_system_wakeup
-ffffffff81693b90 t pm_system_cancel_wakeup
-ffffffff81693bc0 t pm_wakeup_clear
-ffffffff81693c20 t pm_system_irq_wakeup
-ffffffff81693cf0 t pm_wakeup_irq
-ffffffff81693d10 t pm_get_wakeup_count
-ffffffff81693e50 t pm_save_wakeup_count
-ffffffff81693eb0 t wakeup_sources_stats_open
-ffffffff81693ee0 t wakeup_sources_stats_seq_start
-ffffffff81693f60 t wakeup_sources_stats_seq_stop
-ffffffff81693f90 t wakeup_sources_stats_seq_next
-ffffffff81693fd0 t wakeup_sources_stats_seq_show
-ffffffff81693ff0 t print_wakeup_source_stats
-ffffffff81694150 t wakeup_source_sysfs_add
-ffffffff81694230 t pm_wakeup_source_sysfs_add
-ffffffff81694260 t wakeup_source_sysfs_remove
-ffffffff81694280 t active_count_show
-ffffffff816942b0 t event_count_show
-ffffffff816942e0 t expire_count_show
-ffffffff81694310 t active_time_ms_show
-ffffffff81694370 t total_time_ms_show
-ffffffff816943e0 t max_time_ms_show
-ffffffff81694450 t last_change_ms_show
-ffffffff81694490 t prevent_suspend_time_ms_show
-ffffffff81694500 t register_firmware_config_sysctl
-ffffffff81694540 t unregister_firmware_config_sysctl
-ffffffff81694570 t fw_state_init
-ffffffff816945b0 t alloc_lookup_fw_priv
-ffffffff816947d0 t free_fw_priv
-ffffffff81694900 t fw_is_paged_buf
-ffffffff81694910 t fw_free_paged_buf
-ffffffff81694990 t fw_grow_paged_buf
-ffffffff81694aa0 t fw_map_paged_buf
-ffffffff81694b00 t assign_fw
-ffffffff81694b70 t request_firmware
-ffffffff81694b90 t _request_firmware.llvm.18438301432458709247
-ffffffff816950c0 t firmware_request_nowarn
-ffffffff816950e0 t request_firmware_direct
-ffffffff81695100 t firmware_request_platform
-ffffffff81695120 t firmware_request_cache
-ffffffff81695150 t request_firmware_into_buf
-ffffffff81695170 t request_partial_firmware_into_buf
-ffffffff81695190 t release_firmware
-ffffffff816951d0 t request_firmware_nowait
-ffffffff81695300 t request_firmware_work_func
-ffffffff816953a0 t firmware_param_path_set
-ffffffff81695480 t firmware_param_path_get
-ffffffff81695630 t fw_shutdown_notify
-ffffffff81695650 t fw_fallback_set_cache_timeout
-ffffffff81695680 t fw_fallback_set_default_timeout
-ffffffff816956a0 t kill_pending_fw_fallback_reqs
-ffffffff81695720 t firmware_fallback_sysfs
-ffffffff81695a50 t __fw_load_abort
-ffffffff81695ac0 t register_sysfs_loader
-ffffffff81695b20 t unregister_sysfs_loader
-ffffffff81695b50 t firmware_loading_show
-ffffffff81695bb0 t firmware_loading_store
-ffffffff81695dc0 t fw_create_instance
-ffffffff81695e60 t firmware_uevent
-ffffffff81695f00 t fw_dev_release
-ffffffff81695f20 t timeout_show
-ffffffff81695f50 t timeout_store
-ffffffff81695f90 t firmware_data_read
-ffffffff816960a0 t firmware_data_write
-ffffffff81696280 t firmware_request_builtin
-ffffffff816962f0 t firmware_request_builtin_buf
-ffffffff81696390 t firmware_is_builtin
-ffffffff816963f0 t mhp_online_type_from_str
-ffffffff81696470 t register_memory_notifier
-ffffffff81696490 t unregister_memory_notifier
-ffffffff816964b0 t memory_notify
-ffffffff816964d0 t arch_get_memory_phys_device
-ffffffff816964e0 t find_memory_block
-ffffffff81696540 t create_memory_block_devices
-ffffffff81696670 t remove_memory_block
-ffffffff81696730 t remove_memory_block_devices
-ffffffff81696810 t walk_memory_blocks
-ffffffff81696900 t for_each_memory_block
-ffffffff81696960 t for_each_memory_block_cb
-ffffffff81696980 t memory_group_register_static
-ffffffff81696a30 t memory_group_register
-ffffffff81696b80 t memory_group_register_dynamic
-ffffffff81696c60 t memory_group_unregister
-ffffffff81696cd0 t memory_group_find_by_id
-ffffffff81696cf0 t walk_dynamic_memory_groups
-ffffffff81696dc0 t add_memory_block
-ffffffff81697110 t memory_block_release
-ffffffff81697130 t phys_index_show
-ffffffff81697180 t phys_device_show
-ffffffff816971b0 t valid_zones_show
-ffffffff81697320 t memory_subsys_online
-ffffffff81697360 t memory_subsys_offline
-ffffffff81697390 t memory_block_change_state
-ffffffff81697590 t block_size_bytes_show
-ffffffff816975c0 t auto_online_blocks_show
-ffffffff81697600 t auto_online_blocks_store
-ffffffff81697690 t __traceiter_regmap_reg_write
-ffffffff816976f0 t __traceiter_regmap_reg_read
-ffffffff81697750 t __traceiter_regmap_reg_read_cache
-ffffffff816977b0 t __traceiter_regmap_bulk_write
-ffffffff81697820 t __traceiter_regmap_bulk_read
-ffffffff81697890 t __traceiter_regmap_hw_read_start
-ffffffff816978f0 t __traceiter_regmap_hw_read_done
-ffffffff81697950 t __traceiter_regmap_hw_write_start
-ffffffff816979b0 t __traceiter_regmap_hw_write_done
-ffffffff81697a10 t __traceiter_regcache_sync
-ffffffff81697a70 t __traceiter_regmap_cache_only
-ffffffff81697ac0 t __traceiter_regmap_cache_bypass
-ffffffff81697b10 t __traceiter_regmap_async_write_start
-ffffffff81697b70 t __traceiter_regmap_async_io_complete
-ffffffff81697bc0 t __traceiter_regmap_async_complete_start
-ffffffff81697c10 t __traceiter_regmap_async_complete_done
-ffffffff81697c60 t __traceiter_regcache_drop_region
-ffffffff81697cc0 t trace_event_raw_event_regmap_reg
-ffffffff81697e20 t perf_trace_regmap_reg
-ffffffff81697fd0 t trace_event_raw_event_regmap_bulk
-ffffffff81698170 t perf_trace_regmap_bulk
-ffffffff81698350 t trace_event_raw_event_regmap_block
-ffffffff816984b0 t perf_trace_regmap_block
-ffffffff81698660 t trace_event_raw_event_regcache_sync
-ffffffff81698860 t perf_trace_regcache_sync
-ffffffff81698a90 t trace_event_raw_event_regmap_bool
-ffffffff81698bf0 t perf_trace_regmap_bool
-ffffffff81698d90 t trace_event_raw_event_regmap_async
-ffffffff81698ee0 t perf_trace_regmap_async
-ffffffff81699070 t trace_event_raw_event_regcache_drop_region
-ffffffff816991d0 t perf_trace_regcache_drop_region
-ffffffff81699380 t regmap_reg_in_ranges
-ffffffff816993d0 t regmap_check_range_table
-ffffffff81699460 t regmap_writeable
-ffffffff81699510 t regmap_cached
-ffffffff816995c0 t regmap_readable
-ffffffff81699680 t regmap_volatile
-ffffffff81699830 t regmap_precious
-ffffffff816999a0 t regmap_writeable_noinc
-ffffffff81699a50 t regmap_readable_noinc
-ffffffff81699b00 t regmap_attach_dev
-ffffffff81699bb0 t dev_get_regmap_release
-ffffffff81699bc0 t regmap_get_val_endian
-ffffffff81699c60 t __regmap_init
-ffffffff8169ab80 t regmap_lock_unlock_none
-ffffffff8169ab90 t regmap_lock_hwlock_irqsave
-ffffffff8169aba0 t regmap_unlock_hwlock_irqrestore
-ffffffff8169abb0 t regmap_lock_hwlock_irq
-ffffffff8169abc0 t regmap_unlock_hwlock_irq
-ffffffff8169abd0 t regmap_lock_hwlock
-ffffffff8169abe0 t regmap_unlock_hwlock
-ffffffff8169abf0 t regmap_lock_raw_spinlock
-ffffffff8169ac10 t regmap_unlock_raw_spinlock
-ffffffff8169ac30 t regmap_lock_spinlock
-ffffffff8169ac50 t regmap_unlock_spinlock
-ffffffff8169ac70 t regmap_lock_mutex
-ffffffff8169ac80 t regmap_unlock_mutex
-ffffffff8169ac90 t _regmap_bus_read
-ffffffff8169acf0 t _regmap_bus_reg_read
-ffffffff8169ad20 t _regmap_bus_reg_write
-ffffffff8169ad50 t regmap_format_2_6_write
-ffffffff8169ad70 t regmap_format_4_12_write
-ffffffff8169ad90 t regmap_format_7_9_write
-ffffffff8169adb0 t regmap_format_7_17_write
-ffffffff8169ade0 t regmap_format_10_14_write
-ffffffff8169ae10 t regmap_format_12_20_write
-ffffffff8169ae40 t regmap_format_8
-ffffffff8169ae60 t regmap_format_16_be
-ffffffff8169ae80 t regmap_format_16_le
-ffffffff8169aea0 t regmap_format_16_native
-ffffffff8169aec0 t regmap_format_24_be
-ffffffff8169aee0 t regmap_format_32_be
-ffffffff8169af00 t regmap_format_32_le
-ffffffff8169af20 t regmap_format_32_native
-ffffffff8169af40 t regmap_format_64_be
-ffffffff8169af60 t regmap_format_64_le
-ffffffff8169af80 t regmap_format_64_native
-ffffffff8169afa0 t regmap_parse_inplace_noop
-ffffffff8169afb0 t regmap_parse_8
-ffffffff8169afc0 t regmap_parse_16_be
-ffffffff8169afe0 t regmap_parse_16_be_inplace
-ffffffff8169aff0 t regmap_parse_16_le
-ffffffff8169b000 t regmap_parse_16_le_inplace
-ffffffff8169b010 t regmap_parse_16_native
-ffffffff8169b020 t regmap_parse_24_be
-ffffffff8169b040 t regmap_parse_32_be
-ffffffff8169b050 t regmap_parse_32_be_inplace
-ffffffff8169b070 t regmap_parse_32_le
-ffffffff8169b080 t regmap_parse_32_le_inplace
-ffffffff8169b090 t regmap_parse_32_native
-ffffffff8169b0a0 t regmap_parse_64_be
-ffffffff8169b0c0 t regmap_parse_64_be_inplace
-ffffffff8169b0e0 t regmap_parse_64_le
-ffffffff8169b0f0 t regmap_parse_64_le_inplace
-ffffffff8169b100 t regmap_parse_64_native
-ffffffff8169b110 t _regmap_bus_formatted_write
-ffffffff8169b2d0 t _regmap_bus_raw_write
-ffffffff8169b330 t __devm_regmap_init
-ffffffff8169b3d0 t devm_regmap_release
-ffffffff8169b3f0 t devm_regmap_field_alloc
-ffffffff8169b4a0 t regmap_field_bulk_alloc
-ffffffff8169b5d0 t devm_regmap_field_bulk_alloc
-ffffffff8169b6f0 t regmap_field_bulk_free
-ffffffff8169b700 t devm_regmap_field_bulk_free
-ffffffff8169b710 t devm_regmap_field_free
-ffffffff8169b720 t regmap_field_alloc
-ffffffff8169b7d0 t regmap_field_free
-ffffffff8169b7e0 t regmap_reinit_cache
-ffffffff8169b8c0 t regmap_exit
-ffffffff8169ba30 t dev_get_regmap
-ffffffff8169ba70 t dev_get_regmap_match
-ffffffff8169bac0 t regmap_get_device
-ffffffff8169bad0 t regmap_can_raw_write
-ffffffff8169bb10 t regmap_get_raw_read_max
-ffffffff8169bb30 t regmap_get_raw_write_max
-ffffffff8169bb50 t _regmap_write
-ffffffff8169bd10 t regmap_write
-ffffffff8169bd80 t regmap_write_async
-ffffffff8169be00 t _regmap_raw_write
-ffffffff8169bf80 t _regmap_raw_write_impl
-ffffffff8169ca70 t regmap_raw_write
-ffffffff8169cc90 t regmap_noinc_write
-ffffffff8169d0d0 t regmap_field_update_bits_base
-ffffffff8169d110 t regmap_update_bits_base
-ffffffff8169d240 t regmap_field_test_bits
-ffffffff8169d310 t regmap_field_read
-ffffffff8169d3d0 t regmap_fields_update_bits_base
-ffffffff8169d420 t regmap_bulk_write
-ffffffff8169d640 t regmap_multi_reg_write
-ffffffff8169d690 t _regmap_multi_reg_write
-ffffffff8169db40 t regmap_multi_reg_write_bypassed
-ffffffff8169dbb0 t regmap_raw_write_async
-ffffffff8169ddc0 t regmap_read
-ffffffff8169de30 t _regmap_read
-ffffffff8169e000 t regmap_raw_read
-ffffffff8169e310 t _regmap_raw_read
-ffffffff8169e5c0 t regmap_noinc_read
-ffffffff8169e7d0 t regmap_fields_read
-ffffffff8169e8a0 t regmap_bulk_read
-ffffffff8169eb60 t regmap_test_bits
-ffffffff8169ec00 t regmap_async_complete_cb
-ffffffff8169ed20 t regmap_async_complete
-ffffffff8169ef40 t regmap_register_patch
-ffffffff8169f070 t regmap_get_val_bytes
-ffffffff8169f0a0 t regmap_get_max_register
-ffffffff8169f0c0 t regmap_get_reg_stride
-ffffffff8169f0e0 t regmap_parse_val
-ffffffff8169f110 t trace_raw_output_regmap_reg
-ffffffff8169f170 t trace_raw_output_regmap_bulk
-ffffffff8169f200 t trace_raw_output_regmap_block
-ffffffff8169f260 t trace_raw_output_regcache_sync
-ffffffff8169f2d0 t trace_raw_output_regmap_bool
-ffffffff8169f330 t trace_raw_output_regmap_async
-ffffffff8169f390 t trace_raw_output_regcache_drop_region
-ffffffff8169f3f0 t _regmap_select_page
-ffffffff8169f550 t _regmap_raw_multi_reg_write
-ffffffff8169f780 t regcache_init
-ffffffff8169fcc0 t regcache_exit
-ffffffff8169fd20 t regcache_read
-ffffffff8169fdf0 t regcache_write
-ffffffff8169fe60 t regcache_sync
-ffffffff816a0080 t regcache_default_sync
-ffffffff816a01f0 t regcache_sync_region
-ffffffff816a0370 t regcache_drop_region
-ffffffff816a0440 t regcache_cache_only
-ffffffff816a04e0 t regcache_mark_dirty
-ffffffff816a0520 t regcache_cache_bypass
-ffffffff816a05c0 t regcache_set_val
-ffffffff816a06e0 t regcache_get_val
-ffffffff816a0770 t regcache_lookup_reg
-ffffffff816a07f0 t regcache_default_cmp
-ffffffff816a0800 t regcache_sync_block
-ffffffff816a0c90 t regcache_rbtree_init
-ffffffff816a0d30 t regcache_rbtree_exit
-ffffffff816a0dd0 t rbtree_debugfs_init
-ffffffff816a0e10 t regcache_rbtree_read
-ffffffff816a0f00 t regcache_rbtree_write
-ffffffff816a13f0 t regcache_rbtree_sync
-ffffffff816a14b0 t regcache_rbtree_drop
-ffffffff816a1560 t rbtree_open
-ffffffff816a1590 t rbtree_show
-ffffffff816a16d0 t regcache_flat_init
-ffffffff816a1770 t regcache_flat_exit
-ffffffff816a17a0 t regcache_flat_read
-ffffffff816a17d0 t regcache_flat_write
-ffffffff816a1800 t regmap_debugfs_init
-ffffffff816a1b80 t regmap_debugfs_exit
-ffffffff816a1ce0 t regmap_debugfs_initcall
-ffffffff816a1db0 t regmap_name_read_file
-ffffffff816a1e70 t regmap_reg_ranges_read_file
-ffffffff816a2090 t regmap_debugfs_get_dump_start
-ffffffff816a2410 t regmap_map_read_file
-ffffffff816a2440 t regmap_read_debugfs
-ffffffff816a27e0 t regmap_access_open
-ffffffff816a2810 t regmap_access_show
-ffffffff816a2930 t regmap_cache_only_write_file
-ffffffff816a2a90 t regmap_cache_bypass_write_file
-ffffffff816a2b90 t regmap_range_read_file
-ffffffff816a2bc0 t __regmap_init_mmio_clk
-ffffffff816a2c10 t regmap_mmio_gen_context
-ffffffff816a2f20 t __devm_regmap_init_mmio_clk
-ffffffff816a2f70 t regmap_mmio_attach_clk
-ffffffff816a2fa0 t regmap_mmio_detach_clk
-ffffffff816a2fd0 t regmap_mmio_ioread8
-ffffffff816a2ff0 t regmap_mmio_iowrite8
-ffffffff816a3010 t regmap_mmio_read8_relaxed
-ffffffff816a3030 t regmap_mmio_write8_relaxed
-ffffffff816a3050 t regmap_mmio_read8
-ffffffff816a3070 t regmap_mmio_write8
-ffffffff816a3090 t regmap_mmio_ioread16le
-ffffffff816a30b0 t regmap_mmio_iowrite16le
-ffffffff816a30d0 t regmap_mmio_read16le_relaxed
-ffffffff816a30f0 t regmap_mmio_write16le_relaxed
-ffffffff816a3110 t regmap_mmio_read16le
-ffffffff816a3130 t regmap_mmio_write16le
-ffffffff816a3150 t regmap_mmio_ioread32le
-ffffffff816a3170 t regmap_mmio_iowrite32le
-ffffffff816a3190 t regmap_mmio_read32le_relaxed
-ffffffff816a31b0 t regmap_mmio_write32le_relaxed
-ffffffff816a31d0 t regmap_mmio_read32le
-ffffffff816a31f0 t regmap_mmio_write32le
-ffffffff816a3210 t regmap_mmio_ioread16be
-ffffffff816a3230 t regmap_mmio_iowrite16be
-ffffffff816a3250 t regmap_mmio_read16be
-ffffffff816a3270 t regmap_mmio_write16be
-ffffffff816a3290 t regmap_mmio_ioread32be
-ffffffff816a32b0 t regmap_mmio_iowrite32be
-ffffffff816a32d0 t regmap_mmio_read32be
-ffffffff816a32f0 t regmap_mmio_write32be
-ffffffff816a3310 t regmap_mmio_write
-ffffffff816a3330 t regmap_mmio_noinc_write
-ffffffff816a3530 t regmap_mmio_read
-ffffffff816a3550 t regmap_mmio_noinc_read
-ffffffff816a37e0 t regmap_mmio_free_context
-ffffffff816a3810 t platform_msi_create_irq_domain
-ffffffff816a3960 t platform_msi_domain_alloc_irqs
-ffffffff816a39d0 t platform_msi_alloc_priv_data
-ffffffff816a3ad0 t platform_msi_domain_free_irqs
-ffffffff816a3b20 t platform_msi_get_host_data
-ffffffff816a3b40 t __platform_msi_create_device_domain
-ffffffff816a3c20 t platform_msi_device_domain_free
-ffffffff816a3c90 t platform_msi_device_domain_alloc
-ffffffff816a3cc0 t platform_msi_write_msg
-ffffffff816a3cf0 t dev_add_physical_location
-ffffffff816a3dd0 t panel_show
-ffffffff816a3e10 t vertical_position_show
-ffffffff816a3e50 t horizontal_position_show
-ffffffff816a3e90 t dock_show
-ffffffff816a3ed0 t lid_show
-ffffffff816a3f10 t __traceiter_devres_log
-ffffffff816a3f80 t trace_event_raw_event_devres
-ffffffff816a40d0 t perf_trace_devres
-ffffffff816a4270 t trace_raw_output_devres
-ffffffff816a42e0 t brd_cleanup
-ffffffff816a4550 t brd_alloc
-ffffffff816a47d0 t brd_probe
-ffffffff816a4800 t brd_submit_bio
-ffffffff816a4950 t brd_rw_page
-ffffffff816a49b0 t brd_do_bvec
-ffffffff816a4db0 t brd_insert_page
-ffffffff816a4ee0 t loop_set_hw_queue_depth
-ffffffff816a4f20 t loop_control_ioctl
-ffffffff816a5190 t loop_add
-ffffffff816a54a0 t loop_free_idle_workers_timer
-ffffffff816a54c0 t loop_rootcg_workfn
-ffffffff816a54e0 t loop_free_idle_workers
-ffffffff816a5650 t loop_queue_rq
-ffffffff816a5970 t lo_complete_rq
-ffffffff816a5a20 t loop_workfn
-ffffffff816a5a40 t loop_process_work
-ffffffff816a63e0 t lo_rw_aio
-ffffffff816a66f0 t lo_rw_aio_complete
-ffffffff816a6730 t lo_release
-ffffffff816a6790 t lo_ioctl
-ffffffff816a72a0 t lo_free_disk
-ffffffff816a72f0 t __loop_clr_fd
-ffffffff816a7520 t loop_attr_do_show_backing_file
-ffffffff816a75b0 t loop_attr_do_show_offset
-ffffffff816a75e0 t loop_attr_do_show_sizelimit
-ffffffff816a7610 t loop_attr_do_show_autoclear
-ffffffff816a7650 t loop_attr_do_show_partscan
-ffffffff816a7690 t loop_attr_do_show_dio
-ffffffff816a76d0 t loop_configure
-ffffffff816a7c50 t loop_set_status_from_info
-ffffffff816a7d10 t loop_config_discard
-ffffffff816a7e70 t loop_update_rotational
-ffffffff816a7ed0 t loop_set_size
-ffffffff816a7f10 t loop_reread_partitions
-ffffffff816a7f90 t __loop_update_dio
-ffffffff816a80a0 t loop_set_status
-ffffffff816a8330 t loop_get_status
-ffffffff816a84f0 t loop_probe
-ffffffff816a8530 t virtblk_probe
-ffffffff816a8f30 t virtblk_remove
-ffffffff816a8fc0 t virtblk_config_changed
-ffffffff816a8ff0 t virtblk_freeze
-ffffffff816a9050 t virtblk_restore
-ffffffff816a90d0 t virtblk_config_changed_work
-ffffffff816a90f0 t init_vq
-ffffffff816a9550 t virtblk_update_cache_mode
-ffffffff816a9610 t virtblk_update_capacity
-ffffffff816a9860 t virtblk_done
-ffffffff816a9990 t virtio_queue_rq
-ffffffff816a9b20 t virtio_commit_rqs
-ffffffff816a9b90 t virtio_queue_rqs
-ffffffff816a9db0 t virtblk_poll
-ffffffff816a9f30 t virtblk_request_done
-ffffffff816a9fb0 t virtblk_map_queues
-ffffffff816aa060 t virtblk_prep_rq
-ffffffff816aa330 t virtblk_add_req
-ffffffff816aa470 t virtblk_fail_to_queue
-ffffffff816aa4b0 t virtblk_complete_batch
-ffffffff816aa540 t virtblk_getgeo
-ffffffff816aa6a0 t virtblk_free_disk
-ffffffff816aa6d0 t virtblk_attrs_are_visible
-ffffffff816aa720 t cache_type_show
-ffffffff816aa7f0 t cache_type_store
-ffffffff816aa8b0 t serial_show
-ffffffff816aa980 t zcomp_available_algorithm
-ffffffff816aa9a0 t zcomp_available_show
-ffffffff816aab40 t zcomp_stream_get
-ffffffff816aab90 t zcomp_stream_put
-ffffffff816aabd0 t zcomp_compress
-ffffffff816aac00 t zcomp_decompress
-ffffffff816aac50 t zcomp_cpu_up_prepare
-ffffffff816aad10 t zcomp_cpu_dead
-ffffffff816aad80 t zcomp_destroy
-ffffffff816aadc0 t zcomp_create
-ffffffff816aae90 t destroy_devices
-ffffffff816aaef0 t zram_remove_cb
-ffffffff816aaf10 t hot_add_show
-ffffffff816aaf70 t zram_add
-ffffffff816ab1b0 t zram_submit_bio
-ffffffff816ab4a0 t zram_open
-ffffffff816ab4e0 t zram_rw_page
-ffffffff816ab630 t zram_slot_free_notify
-ffffffff816ab6e0 t zram_bvec_rw
-ffffffff816abef0 t zram_slot_lock
-ffffffff816abf70 t zram_free_page
-ffffffff816ac070 t disksize_show
-ffffffff816ac0b0 t disksize_store
-ffffffff816ac200 t zram_meta_free
-ffffffff816ac250 t initstate_show
-ffffffff816ac2c0 t zram_reset_device
-ffffffff816ac470 t compact_store
-ffffffff816ac4d0 t mem_limit_store
-ffffffff816ac580 t mem_used_max_store
-ffffffff816ac630 t idle_store
-ffffffff816ac750 t max_comp_streams_show
-ffffffff816ac780 t max_comp_streams_store
-ffffffff816ac790 t comp_algorithm_show
-ffffffff816ac7e0 t comp_algorithm_store
-ffffffff816ac980 t io_stat_show
-ffffffff816ac9f0 t mm_stat_show
-ffffffff816acac0 t debug_stat_show
-ffffffff816acb30 t hot_remove_store
-ffffffff816acc10 t zram_remove
-ffffffff816accf0 t device_node_to_regmap
-ffffffff816acd00 t device_node_get_regmap
-ffffffff816ad020 t syscon_node_to_regmap
-ffffffff816ad090 t syscon_regmap_lookup_by_compatible
-ffffffff816ad110 t syscon_regmap_lookup_by_phandle
-ffffffff816ad230 t syscon_regmap_lookup_by_phandle_args
-ffffffff816ad380 t syscon_regmap_lookup_by_phandle_optional
-ffffffff816ad4a0 t syscon_probe
-ffffffff816ad5f0 t nvdimm_bus_lock
-ffffffff816ad620 t nvdimm_bus_unlock
-ffffffff816ad650 t is_nvdimm_bus_locked
-ffffffff816ad680 t devm_nvdimm_memremap
-ffffffff816ad960 t nvdimm_map_put
-ffffffff816ada50 t nd_fletcher64
-ffffffff816adaa0 t to_nd_desc
-ffffffff816adab0 t to_nvdimm_bus_dev
-ffffffff816adac0 t nd_uuid_store
-ffffffff816adb50 t nd_size_select_show
-ffffffff816adbe0 t nd_size_select_store
-ffffffff816adc90 t nvdimm_bus_add_badrange
-ffffffff816adcb0 t nd_integrity_init
-ffffffff816adcc0 t commands_show
-ffffffff816add80 t commands_show
-ffffffff816ade80 t wait_probe_show
-ffffffff816adef0 t flush_regions_dimms
-ffffffff816adf30 t flush_namespaces
-ffffffff816adf60 t provider_show
-ffffffff816adfc0 t nvdimm_bus_firmware_visible
-ffffffff816ae000 t activate_show
-ffffffff816ae0e0 t activate_show
-ffffffff816ae1b0 t activate_store
-ffffffff816ae280 t activate_store
-ffffffff816ae350 t capability_show
-ffffffff816ae3c0 t nd_device_notify
-ffffffff816ae420 t nvdimm_region_notify
-ffffffff816ae4d0 t walk_to_nvdimm_bus
-ffffffff816ae550 t nvdimm_clear_poison
-ffffffff816ae780 t nvdimm_account_cleared_poison
-ffffffff816ae800 t is_nvdimm_bus
-ffffffff816ae820 t to_nvdimm_bus
-ffffffff816ae850 t nvdimm_to_bus
-ffffffff816ae880 t nvdimm_bus_register
-ffffffff816ae9d0 t nvdimm_bus_unregister
-ffffffff816ae9f0 t nd_synchronize
-ffffffff816aea10 t nd_device_register
-ffffffff816aea30 t __nd_device_register.llvm.15917668482514818688
-ffffffff816aeb00 t nd_device_register_sync
-ffffffff816aeb20 t nd_device_unregister
-ffffffff816aebc0 t nd_async_device_unregister
-ffffffff816aec00 t __nd_driver_register
-ffffffff816aec40 t nvdimm_check_and_set_ro
-ffffffff816aecf0 t nd_numa_attr_visible
-ffffffff816aed00 t nvdimm_bus_create_ndctl
-ffffffff816aedd0 t ndctl_release
-ffffffff816aede0 t nvdimm_bus_destroy_ndctl
-ffffffff816aee10 t nd_cmd_dimm_desc
-ffffffff816aee40 t nd_cmd_bus_desc
-ffffffff816aee70 t nd_cmd_in_size
-ffffffff816aeee0 t nd_cmd_out_size
-ffffffff816aef80 t wait_nvdimm_bus_probe_idle
-ffffffff816af110 t nvdimm_bus_exit
-ffffffff816af180 t nvdimm_clear_badblocks_region
-ffffffff816af210 t nvdimm_bus_release
-ffffffff816af240 t nvdimm_bus_match
-ffffffff816af2f0 t nvdimm_bus_uevent
-ffffffff816af380 t nvdimm_bus_probe
-ffffffff816af4c0 t nvdimm_bus_remove
-ffffffff816af560 t nvdimm_bus_shutdown
-ffffffff816af5f0 t to_bus_provider
-ffffffff816af670 t nd_async_device_register
-ffffffff816af6d0 t devtype_show
-ffffffff816af700 t target_node_show
-ffffffff816af790 t target_node_show
-ffffffff816af7c0 t bus_ioctl
-ffffffff816af7e0 t nd_open
-ffffffff816af800 t nd_ioctl
-ffffffff816b03d0 t match_dimm
-ffffffff816b0410 t nd_ns_forget_poison_check
-ffffffff816b0430 t nd_pmem_forget_poison_check
-ffffffff816b04c0 t dimm_ioctl
-ffffffff816b04e0 t nd_bus_probe
-ffffffff816b0580 t nd_bus_remove
-ffffffff816b07a0 t child_unregister
-ffffffff816b0830 t child_unregister
-ffffffff816b0850 t nvdimm_check_config_data
-ffffffff816b08a0 t to_nvdimm
-ffffffff816b08d0 t nvdimm_init_nsarea
-ffffffff816b09d0 t nvdimm_get_config_data
-ffffffff816b0bd0 t nvdimm_set_config_data
-ffffffff816b0dd0 t nvdimm_set_labeling
-ffffffff816b0e00 t nvdimm_set_locked
-ffffffff816b0e30 t nvdimm_clear_locked
-ffffffff816b0e60 t is_nvdimm
-ffffffff816b0e80 t to_ndd
-ffffffff816b0eb0 t nvdimm_drvdata_release
-ffffffff816b0f60 t nvdimm_free_dpa
-ffffffff816b0fb0 t get_ndd
-ffffffff816b0ff0 t put_ndd
-ffffffff816b1030 t nvdimm_name
-ffffffff816b1050 t nvdimm_kobj
-ffffffff816b1060 t nvdimm_cmd_mask
-ffffffff816b1070 t nvdimm_provider_data
-ffffffff816b1090 t security_show
-ffffffff816b1160 t __nvdimm_create
-ffffffff816b1410 t nvdimm_security_overwrite_query
-ffffffff816b1420 t nvdimm_delete
-ffffffff816b1490 t nvdimm_security_setup_events
-ffffffff816b1540 t shutdown_security_notify
-ffffffff816b1560 t nvdimm_in_overwrite
-ffffffff816b1580 t nvdimm_security_freeze
-ffffffff816b16a0 t nd_pmem_max_contiguous_dpa
-ffffffff816b17b0 t dpa_align
-ffffffff816b18e0 t nd_pmem_available_dpa
-ffffffff816b19e0 t nvdimm_allocate_dpa
-ffffffff816b1a60 t nvdimm_allocated_dpa
-ffffffff816b1ac0 t nvdimm_bus_check_dimm_count
-ffffffff816b1b40 t count_dimms
-ffffffff816b1b60 t nvdimm_release.llvm.13749472731363974932
-ffffffff816b1ba0 t nvdimm_visible
-ffffffff816b1c50 t security_store
-ffffffff816b1ca0 t frozen_show
-ffffffff816b1ce0 t available_slots_show
-ffffffff816b1db0 t nvdimm_firmware_visible
-ffffffff816b1e30 t result_show
-ffffffff816b1f50 t nvdimm_events_sysfs_show
-ffffffff816b1f70 t register_nvdimm_pmu
-ffffffff816b2250 t unregister_nvdimm_pmu
-ffffffff816b22d0 t nvdimm_pmu_cpu_online
-ffffffff816b2300 t nvdimm_pmu_cpu_offline
-ffffffff816b23a0 t nvdimm_pmu_cpumask_show
-ffffffff816b23f0 t nvdimm_exit
-ffffffff816b2410 t nvdimm_probe
-ffffffff816b2560 t nvdimm_remove
-ffffffff816b25a0 t nd_region_activate
-ffffffff816b28d0 t to_nd_region
-ffffffff816b2900 t nd_region_release.llvm.2848778896877633854
-ffffffff816b29b0 t nd_region_dev
-ffffffff816b29c0 t nd_region_provider_data
-ffffffff816b29e0 t nd_region_to_nstype
-ffffffff816b2ab0 t nd_region_available_dpa
-ffffffff816b2b30 t nd_region_allocatable_dpa
-ffffffff816b2bc0 t is_nd_pmem
-ffffffff816b2bf0 t is_nd_volatile
-ffffffff816b2c20 t nd_region_interleave_set_cookie
-ffffffff816b2c60 t nd_region_interleave_set_altcookie
-ffffffff816b2c90 t nd_mapping_free_labels
-ffffffff816b2d10 t nd_region_advance_seeds
-ffffffff816b2d90 t nd_region_acquire_lane
-ffffffff816b2e30 t nd_region_release_lane
-ffffffff816b2ef0 t nvdimm_pmem_region_create
-ffffffff816b2f20 t nd_region_create.llvm.2848778896877633854
-ffffffff816b3400 t nvdimm_volatile_region_create
-ffffffff816b3430 t nvdimm_region_delete
-ffffffff816b3450 t nvdimm_flush
-ffffffff816b3530 t generic_nvdimm_flush
-ffffffff816b35e0 t nvdimm_has_flush
-ffffffff816b3660 t nvdimm_has_cache
-ffffffff816b36a0 t is_nvdimm_sync
-ffffffff816b36f0 t nd_region_conflict
-ffffffff816b3760 t region_conflict
-ffffffff816b37f0 t region_visible
-ffffffff816b3ab0 t pfn_seed_show
-ffffffff816b3b30 t dax_seed_show
-ffffffff816b3bb0 t region_badblocks_show
-ffffffff816b3c30 t deep_flush_show
-ffffffff816b3cd0 t deep_flush_store
-ffffffff816b3e20 t persistence_domain_show
-ffffffff816b3ec0 t align_store
-ffffffff816b4070 t align_store
-ffffffff816b41d0 t set_cookie_show
-ffffffff816b4340 t available_size_show
-ffffffff816b4430 t available_size_show
-ffffffff816b44c0 t nstype_show
-ffffffff816b45c0 t nstype_show
-ffffffff816b4600 t mappings_show
-ffffffff816b4640 t btt_seed_show
-ffffffff816b46c0 t read_only_show
-ffffffff816b4700 t read_only_store
-ffffffff816b4790 t revalidate_read_only
-ffffffff816b47b0 t max_available_extent_show
-ffffffff816b48c0 t namespace_seed_show
-ffffffff816b4940 t init_namespaces_show
-ffffffff816b49a0 t mapping_visible
-ffffffff816b49e0 t mapping0_show
-ffffffff816b4a60 t mapping1_show
-ffffffff816b4ad0 t mapping2_show
-ffffffff816b4b40 t mapping3_show
-ffffffff816b4bb0 t mapping4_show
-ffffffff816b4c20 t mapping5_show
-ffffffff816b4c90 t mapping6_show
-ffffffff816b4d00 t mapping7_show
-ffffffff816b4d70 t mapping8_show
-ffffffff816b4de0 t mapping9_show
-ffffffff816b4e50 t mapping10_show
-ffffffff816b4ec0 t mapping11_show
-ffffffff816b4f30 t mapping12_show
-ffffffff816b4fa0 t mapping13_show
-ffffffff816b5010 t mapping14_show
-ffffffff816b5080 t mapping15_show
-ffffffff816b50f0 t mapping16_show
-ffffffff816b5160 t mapping17_show
-ffffffff816b51d0 t mapping18_show
-ffffffff816b5240 t mapping19_show
-ffffffff816b52b0 t mapping20_show
-ffffffff816b5320 t mapping21_show
-ffffffff816b5390 t mapping22_show
-ffffffff816b5400 t mapping23_show
-ffffffff816b5470 t mapping24_show
-ffffffff816b54e0 t mapping25_show
-ffffffff816b5550 t mapping26_show
-ffffffff816b55c0 t mapping27_show
-ffffffff816b5630 t mapping28_show
-ffffffff816b56a0 t mapping29_show
-ffffffff816b5710 t mapping30_show
-ffffffff816b5780 t mapping31_show
-ffffffff816b57f0 t nd_region_exit
-ffffffff816b5810 t nd_region_probe
-ffffffff816b59d0 t nd_region_remove
-ffffffff816b5a60 t nd_region_notify
-ffffffff816b5b20 t child_notify
-ffffffff816b5b40 t nd_is_uuid_unique
-ffffffff816b5b90 t is_namespace_uuid_busy
-ffffffff816b5be0 t pmem_should_map_pages
-ffffffff816b5c00 t pmem_sector_size
-ffffffff816b5c90 t nvdimm_namespace_disk_name
-ffffffff816b5d60 t nd_dev_to_uuid
-ffffffff816b5da0 t __reserve_free_pmem
-ffffffff816b5f30 t scan_allocate
-ffffffff816b6460 t release_free_pmem
-ffffffff816b64c0 t __nvdimm_namespace_capacity
-ffffffff816b6530 t nvdimm_namespace_capacity
-ffffffff816b65c0 t nvdimm_namespace_locked
-ffffffff816b6660 t nvdimm_namespace_common_probe
-ffffffff816b68e0 t devm_namespace_enable
-ffffffff816b68f0 t devm_namespace_disable
-ffffffff816b6900 t nd_region_create_ns_seed
-ffffffff816b6a40 t nd_region_create_dax_seed
-ffffffff816b6a80 t nd_region_create_pfn_seed
-ffffffff816b6ac0 t nd_region_create_btt_seed
-ffffffff816b6b10 t nd_region_register_namespaces
-ffffffff816b7ab0 t is_uuid_busy
-ffffffff816b7b30 t namespace_pmem_release
-ffffffff816b7b90 t namespace_visible
-ffffffff816b7c30 t size_store
-ffffffff816b7fb0 t size_store
-ffffffff816b8710 t nd_namespace_label_update
-ffffffff816b87e0 t shrink_dpa_allocation
-ffffffff816b88f0 t grow_dpa_allocation
-ffffffff816b8aa0 t nd_namespace_pmem_set_resource
-ffffffff816b8bd0 t holder_show
-ffffffff816b8c40 t holder_class_show
-ffffffff816b8d00 t holder_class_store
-ffffffff816b8f30 t force_raw_show
-ffffffff816b8f60 t force_raw_store
-ffffffff816b8fd0 t uuid_show
-ffffffff816b9040 t uuid_show
-ffffffff816b9090 t uuid_store
-ffffffff816b94f0 t uuid_store
-ffffffff816b9560 t alt_name_show
-ffffffff816b95c0 t alt_name_store
-ffffffff816b9730 t sector_size_show
-ffffffff816b9770 t sector_size_show
-ffffffff816b97a0 t sector_size_store
-ffffffff816b9870 t sector_size_store
-ffffffff816b98f0 t dpa_extents_show
-ffffffff816b9a60 t namespace_io_release
-ffffffff816b9a80 t deactivate_labels
-ffffffff816b9b20 t cmp_dpa
-ffffffff816b9b70 t has_uuid_at_pos
-ffffffff816b9d20 t sizeof_namespace_label
-ffffffff816b9d30 t nvdimm_num_label_slots
-ffffffff816b9d80 t sizeof_namespace_index
-ffffffff816b9e10 t nd_label_gen_id
-ffffffff816b9e50 t nd_label_reserve_dpa
-ffffffff816ba0a0 t nd_label_data_init
-ffffffff816ba3b0 t nd_label_validate
-ffffffff816baad0 t to_current_namespace_index
-ffffffff816bab80 t nd_label_copy
-ffffffff816bac30 t to_next_namespace_index
-ffffffff816bace0 t nd_label_active_count
-ffffffff816bae80 t nd_label_active
-ffffffff816bb030 t nd_label_alloc_slot
-ffffffff816bb120 t nd_label_free_slot
-ffffffff816bb200 t nd_label_nfree
-ffffffff816bb310 t nsl_validate_type_guid
-ffffffff816bb350 t nsl_get_claim_class
-ffffffff816bb510 t nd_pmem_namespace_label_update
-ffffffff816bbba0 t __pmem_label_update
-ffffffff816bc300 t nd_label_base
-ffffffff816bc410 t nd_label_write_index
-ffffffff816bcbe0 t badrange_init
-ffffffff816bcc00 t badrange_add
-ffffffff816bcd00 t badrange_forget
-ffffffff816bced0 t nvdimm_badblocks_populate
-ffffffff816bd190 t __nd_detach_ndns
-ffffffff816bd230 t nd_detach_ndns
-ffffffff816bd300 t __nd_attach_ndns
-ffffffff816bd3a0 t nd_attach_ndns
-ffffffff816bd450 t to_nd_pfn_safe
-ffffffff816bd460 t nd_namespace_store
-ffffffff816bd6f0 t namespace_match
-ffffffff816bd720 t nd_sb_checksum
-ffffffff816bd760 t devm_nsio_enable
-ffffffff816bd880 t nsio_rw_bytes
-ffffffff816bdac0 t devm_nsio_disable
-ffffffff816bdb60 t to_nd_btt
-ffffffff816bdb90 t is_nd_btt
-ffffffff816bdbb0 t nd_btt_create
-ffffffff816bdc60 t nd_btt_arena_is_valid
-ffffffff816bdd60 t nd_btt_version
-ffffffff816bde50 t nd_btt_probe
-ffffffff816be060 t nd_btt_release.llvm.17839109793716951103
-ffffffff816be0d0 t namespace_show
-ffffffff816be140 t namespace_store
-ffffffff816be1c0 t log_zero_flags_show
-ffffffff816be1e0 t __pmem_direct_access
-ffffffff816be300 t nd_pmem_probe
-ffffffff816be740 t nd_pmem_remove
-ffffffff816be7a0 t nd_pmem_shutdown
-ffffffff816be7c0 t nd_pmem_notify
-ffffffff816be910 t devm_add_action_or_reset
-ffffffff816be970 t pmem_release_disk
-ffffffff816be9b0 t pmem_submit_bio
-ffffffff816beba0 t pmem_rw_page
-ffffffff816bec40 t pmem_do_write
-ffffffff816bee20 t pmem_do_read
-ffffffff816bf020 t pmem_clear_poison
-ffffffff816bf0c0 t pmem_dax_direct_access
-ffffffff816bf110 t pmem_dax_zero_page_range
-ffffffff816bf1a0 t pmem_recovery_write
-ffffffff816bf340 t dax_visible
-ffffffff816bf350 t write_cache_show
-ffffffff816bf390 t write_cache_store
-ffffffff816bf410 t nvdimm_namespace_attach_btt
-ffffffff816c08e0 t nvdimm_namespace_detach_btt
-ffffffff816c0930 t btt_freelist_init
-ffffffff816c0d00 t free_arenas
-ffffffff816c0db0 t arena_clear_freelist_error
-ffffffff816c0f00 t btt_map_read
-ffffffff816c1050 t btt_submit_bio
-ffffffff816c1260 t btt_rw_page
-ffffffff816c12d0 t btt_getgeo
-ffffffff816c1300 t btt_do_bvec
-ffffffff816c1dc0 t of_pmem_region_probe
-ffffffff816c2000 t of_pmem_region_remove
-ffffffff816c2030 t dax_read_lock
-ffffffff816c2050 t dax_read_unlock
-ffffffff816c2080 t dax_direct_access
-ffffffff816c20f0 t dax_alive
-ffffffff816c2110 t dax_copy_from_iter
-ffffffff816c2170 t dax_copy_to_iter
-ffffffff816c21d0 t dax_zero_page_range
-ffffffff816c2210 t dax_recovery_write
-ffffffff816c2240 t dax_holder_notify_failure
-ffffffff816c22e0 t dax_flush
-ffffffff816c2310 t dax_write_cache_enabled
-ffffffff816c2330 t dax_write_cache
-ffffffff816c2360 t dax_synchronous
-ffffffff816c2380 t set_dax_synchronous
-ffffffff816c23a0 t set_dax_nocache
-ffffffff816c23c0 t set_dax_nomc
-ffffffff816c23e0 t kill_dax
-ffffffff816c2490 t run_dax
-ffffffff816c24b0 t alloc_dax
-ffffffff816c25f0 t put_dax
-ffffffff816c2610 t dax_holder
-ffffffff816c2630 t inode_dax
-ffffffff816c2650 t dax_inode
-ffffffff816c2660 t dax_get_private
-ffffffff816c2690 t dax_fs_exit
-ffffffff816c26c0 t dax_test
-ffffffff816c26e0 t dax_set
-ffffffff816c2700 t dax_init_fs_context
-ffffffff816c2730 t dax_alloc_inode
-ffffffff816c2770 t dax_destroy_inode
-ffffffff816c27b0 t dax_free_inode
-ffffffff816c27f0 t static_dev_dax
-ffffffff816c2810 t kill_dev_dax
-ffffffff816c2860 t dax_region_put
-ffffffff816c28a0 t alloc_dax_region
-ffffffff816c2a20 t dax_region_unregister
-ffffffff816c2a70 t devm_create_dev_dax
-ffffffff816c2ec0 t alloc_dev_dax_range
-ffffffff816c3120 t unregister_dev_dax
-ffffffff816c31f0 t devm_register_dax_mapping
-ffffffff816c3380 t __dax_driver_register
-ffffffff816c3460 t dax_driver_unregister
-ffffffff816c3520 t dax_region_visible
-ffffffff816c3570 t create_show
-ffffffff816c35f0 t create_store
-ffffffff816c3740 t seed_show
-ffffffff816c37c0 t delete_store
-ffffffff816c3970 t region_size_show
-ffffffff816c39a0 t region_align_show
-ffffffff816c39d0 t dax_bus_match
-ffffffff816c3a60 t dax_bus_uevent
-ffffffff816c3a80 t dax_bus_probe
-ffffffff816c3b60 t dax_bus_remove
-ffffffff816c3b90 t do_id_store
-ffffffff816c3dd0 t dev_dax_release
-ffffffff816c3e80 t dev_dax_visible
-ffffffff816c3ef0 t mapping_store
-ffffffff816c4080 t unregister_dax_mapping
-ffffffff816c40d0 t dax_mapping_release
-ffffffff816c4100 t start_show
-ffffffff816c41b0 t start_show
-ffffffff816c41e0 t end_show
-ffffffff816c4290 t end_show
-ffffffff816c42c0 t pgoff_show
-ffffffff816c4360 t dma_buf_get_each
-ffffffff816c43f0 t is_dma_buf_file
-ffffffff816c4410 t dma_buf_export
-ffffffff816c4700 t dma_buf_fd
-ffffffff816c4740 t dma_buf_get
-ffffffff816c4790 t dma_buf_put
-ffffffff816c47c0 t dma_buf_dynamic_attach
-ffffffff816c4a40 t dma_buf_detach
-ffffffff816c4b50 t dma_buf_attach
-ffffffff816c4b70 t dma_buf_pin
-ffffffff816c4bb0 t dma_buf_unpin
-ffffffff816c4be0 t dma_buf_map_attachment
-ffffffff816c4d30 t dma_buf_unmap_attachment
-ffffffff816c4dc0 t dma_buf_move_notify
-ffffffff816c4e10 t dma_buf_begin_cpu_access
-ffffffff816c4e80 t dma_buf_begin_cpu_access_partial
-ffffffff816c4ef0 t dma_buf_end_cpu_access
-ffffffff816c4f20 t dma_buf_end_cpu_access_partial
-ffffffff816c4f50 t dma_buf_mmap
-ffffffff816c4fe0 t dma_buf_vmap
-ffffffff816c5110 t dma_buf_vunmap
-ffffffff816c51a0 t dma_buf_get_flags
-ffffffff816c51e0 t dma_buf_llseek
-ffffffff816c5240 t dma_buf_poll
-ffffffff816c5470 t dma_buf_ioctl
-ffffffff816c55b0 t dma_buf_mmap_internal
-ffffffff816c5610 t dma_buf_file_release
-ffffffff816c56a0 t dma_buf_show_fdinfo
-ffffffff816c5730 t dma_buf_poll_add_cb
-ffffffff816c5850 t dma_buf_poll_cb
-ffffffff816c58e0 t dma_buf_fs_init_context
-ffffffff816c5910 t dma_buf_release
-ffffffff816c59a0 t dmabuffs_dname
-ffffffff816c5a80 t dma_buf_debug_open
-ffffffff816c5ab0 t dma_buf_debug_show
-ffffffff816c5ca0 t __traceiter_dma_fence_emit
-ffffffff816c5cf0 t __traceiter_dma_fence_init
-ffffffff816c5d40 t __traceiter_dma_fence_destroy
-ffffffff816c5d90 t __traceiter_dma_fence_enable_signal
-ffffffff816c5de0 t __traceiter_dma_fence_signaled
-ffffffff816c5e30 t __traceiter_dma_fence_wait_start
-ffffffff816c5e80 t __traceiter_dma_fence_wait_end
-ffffffff816c5ed0 t trace_event_raw_event_dma_fence
-ffffffff816c60d0 t perf_trace_dma_fence
-ffffffff816c6320 t dma_fence_get_stub
-ffffffff816c63c0 t dma_fence_init
-ffffffff816c6470 t dma_fence_signal_locked
-ffffffff816c6490 t dma_fence_allocate_private_stub
-ffffffff816c6520 t dma_fence_signal
-ffffffff816c6580 t dma_fence_context_alloc
-ffffffff816c65a0 t dma_fence_signal_timestamp_locked
-ffffffff816c66a0 t dma_fence_signal_timestamp
-ffffffff816c66f0 t dma_fence_wait_timeout
-ffffffff816c6810 t dma_fence_enable_sw_signaling
-ffffffff816c6850 t dma_fence_default_wait
-ffffffff816c6a70 t dma_fence_release
-ffffffff816c6ba0 t dma_fence_free
-ffffffff816c6bc0 t __dma_fence_enable_signaling
-ffffffff816c6c70 t dma_fence_add_callback
-ffffffff816c6d40 t dma_fence_get_status
-ffffffff816c6dc0 t dma_fence_remove_callback
-ffffffff816c6e30 t dma_fence_default_wait_cb
-ffffffff816c6e50 t dma_fence_wait_any_timeout
-ffffffff816c7170 t dma_fence_describe
-ffffffff816c7240 t trace_raw_output_dma_fence
-ffffffff816c72b0 t dma_fence_stub_get_name
-ffffffff816c72d0 t dma_fence_array_get_driver_name.llvm.3250346519607338421
-ffffffff816c72f0 t dma_fence_array_get_timeline_name.llvm.3250346519607338421
-ffffffff816c7310 t dma_fence_array_enable_signaling.llvm.3250346519607338421
-ffffffff816c7440 t dma_fence_array_signaled.llvm.3250346519607338421
-ffffffff816c7480 t dma_fence_array_release.llvm.3250346519607338421
-ffffffff816c7520 t dma_fence_array_create
-ffffffff816c7670 t irq_dma_fence_array_work
-ffffffff816c76d0 t dma_fence_match_context
-ffffffff816c7760 t dma_fence_array_first
-ffffffff816c77a0 t dma_fence_array_next
-ffffffff816c77e0 t dma_fence_array_cb_func
-ffffffff816c7860 t dma_fence_chain_walk
-ffffffff816c7a60 t dma_fence_chain_get_prev
-ffffffff816c7b20 t dma_fence_chain_find_seqno
-ffffffff816c7c30 t dma_fence_chain_get_driver_name.llvm.5404482785546918235
-ffffffff816c7c50 t dma_fence_chain_get_timeline_name.llvm.5404482785546918235
-ffffffff816c7c70 t dma_fence_chain_enable_signaling.llvm.5404482785546918235
-ffffffff816c7e50 t dma_fence_chain_signaled.llvm.5404482785546918235
-ffffffff816c7f40 t dma_fence_chain_release.llvm.5404482785546918235
-ffffffff816c8040 t dma_fence_chain_init
-ffffffff816c8120 t dma_fence_chain_cb
-ffffffff816c8190 t dma_fence_chain_irq_work
-ffffffff816c81f0 t dma_fence_unwrap_first
-ffffffff816c8270 t dma_fence_unwrap_next
-ffffffff816c82d0 t __dma_fence_unwrap_merge
-ffffffff816c88f0 t dma_resv_init
-ffffffff816c8930 t dma_resv_fini
-ffffffff816c89a0 t dma_resv_reserve_fences
-ffffffff816c8bb0 t dma_resv_add_fence
-ffffffff816c8d50 t dma_resv_replace_fences
-ffffffff816c8e40 t dma_resv_iter_first_unlocked
-ffffffff816c8eb0 t dma_resv_iter_walk_unlocked
-ffffffff816c9030 t dma_resv_iter_next_unlocked
-ffffffff816c90a0 t dma_resv_iter_first
-ffffffff816c9110 t dma_resv_iter_next
-ffffffff816c9180 t dma_resv_copy_fences
-ffffffff816c94e0 t dma_resv_get_fences
-ffffffff816c9750 t dma_resv_get_singleton
-ffffffff816c9870 t dma_resv_wait_timeout
-ffffffff816c9a20 t dma_resv_test_signaled
-ffffffff816c9b20 t dma_resv_describe
-ffffffff816c9c20 t dma_heap_find
-ffffffff816c9cc0 t dma_heap_buffer_free
-ffffffff816c9cd0 t dma_heap_buffer_alloc
-ffffffff816c9d20 t dma_heap_bufferfd_alloc
-ffffffff816c9d90 t dma_heap_get_drvdata
-ffffffff816c9da0 t dma_heap_put
-ffffffff816c9e70 t dma_heap_get_dev
-ffffffff816c9e90 t dma_heap_get_name
-ffffffff816c9ea0 t dma_heap_add
-ffffffff816ca170 t dma_heap_ioctl
-ffffffff816ca440 t dma_heap_open
-ffffffff816ca4a0 t dma_heap_devnode
-ffffffff816ca4d0 t total_pools_kb_show
-ffffffff816ca560 t dma_buf_stats_teardown
-ffffffff816ca590 t dma_buf_init_sysfs_statistics
-ffffffff816ca610 t dma_buf_uninit_sysfs_statistics
-ffffffff816ca640 t dma_buf_stats_setup
-ffffffff816ca700 t dmabuf_sysfs_uevent_filter
-ffffffff816ca710 t dma_buf_sysfs_release
-ffffffff816ca720 t dma_buf_stats_attribute_show
-ffffffff816ca750 t exporter_name_show
-ffffffff816ca780 t dev_lstats_read
-ffffffff816ca810 t loopback_setup
-ffffffff816ca8d0 t loopback_dev_free
-ffffffff816ca900 t always_on
-ffffffff816ca910 t loopback_dev_init
-ffffffff816ca9a0 t loopback_xmit
-ffffffff816caae0 t loopback_get_stats64
-ffffffff816cab70 t blackhole_netdev_setup
-ffffffff816cac30 t blackhole_netdev_xmit
-ffffffff816cac80 t uio_event_notify
-ffffffff816cacd0 t __uio_register_device
-ffffffff816caf50 t uio_device_release
-ffffffff816caf70 t uio_dev_add_attributes
-ffffffff816cb6f0 t uio_interrupt
-ffffffff816cb770 t uio_dev_del_attributes
-ffffffff816cb8c0 t __devm_uio_register_device
-ffffffff816cb950 t devm_uio_unregister_device
-ffffffff816cb970 t uio_unregister_device
-ffffffff816cba50 t map_release
-ffffffff816cba60 t map_release
-ffffffff816cba80 t map_type_show
-ffffffff816cbab0 t map_name_show
-ffffffff816cbaf0 t map_addr_show
-ffffffff816cbb10 t map_size_show
-ffffffff816cbb30 t map_offset_show
-ffffffff816cbb50 t portio_release
-ffffffff816cbb60 t portio_type_show
-ffffffff816cbb90 t portio_name_show
-ffffffff816cbbd0 t portio_start_show
-ffffffff816cbbf0 t portio_size_show
-ffffffff816cbc10 t portio_porttype_show
-ffffffff816cbc50 t uio_read
-ffffffff816cbe00 t uio_write
-ffffffff816cbf00 t uio_poll
-ffffffff816cbfb0 t uio_mmap
-ffffffff816cc0c0 t uio_open
-ffffffff816cc1f0 t uio_release
-ffffffff816cc280 t uio_fasync
-ffffffff816cc2a0 t uio_mmap_physical
-ffffffff816cc370 t uio_vma_fault
-ffffffff816cc460 t serio_rescan
-ffffffff816cc480 t serio_queue_event
-ffffffff816cc5a0 t serio_reconnect
-ffffffff816cc5c0 t __serio_register_port
-ffffffff816cc6d0 t serio_unregister_port
-ffffffff816cc7a0 t serio_destroy_port
-ffffffff816cca50 t serio_unregister_child_port
-ffffffff816ccb50 t __serio_register_driver
-ffffffff816ccbe0 t serio_unregister_driver
-ffffffff816ccde0 t serio_open
-ffffffff816cce60 t serio_close
-ffffffff816cceb0 t serio_interrupt
-ffffffff816ccf40 t serio_bus_match
-ffffffff816ccfd0 t serio_uevent
-ffffffff816cd0c0 t serio_driver_probe
-ffffffff816cd120 t serio_driver_remove
-ffffffff816cd170 t serio_shutdown
-ffffffff816cd1c0 t serio_release_port
-ffffffff816cd1e0 t proto_show
-ffffffff816cd210 t extra_show
-ffffffff816cd240 t serio_show_description
-ffffffff816cd270 t drvctl_store
-ffffffff816cd7b0 t serio_reconnect_port
-ffffffff816cd8e0 t serio_disconnect_driver
-ffffffff816cd930 t serio_show_bind_mode
-ffffffff816cd970 t serio_set_bind_mode
-ffffffff816cd9e0 t firmware_id_show
-ffffffff816cda10 t bind_mode_show
-ffffffff816cda50 t bind_mode_store
-ffffffff816cdab0 t serio_suspend
-ffffffff816cdb00 t serio_resume
-ffffffff816cdba0 t serio_handle_event
-ffffffff816cdfe0 t i8042_lock_chip
-ffffffff816ce000 t i8042_unlock_chip
-ffffffff816ce020 t i8042_install_filter
-ffffffff816ce070 t i8042_remove_filter
-ffffffff816ce0c0 t i8042_command
-ffffffff816ce120 t __i8042_command
-ffffffff816ce390 t i8042_set_reset
-ffffffff816ce3f0 t i8042_probe
-ffffffff816cf050 t i8042_remove
-ffffffff816cf150 t i8042_shutdown
-ffffffff816cf170 t i8042_controller_selftest
-ffffffff816cf280 t i8042_controller_reset
-ffffffff816cf390 t i8042_flush
-ffffffff816cf460 t i8042_create_aux_port
-ffffffff816cf5e0 t i8042_enable_aux_port
-ffffffff816cf670 t i8042_enable_mux_ports
-ffffffff816cf860 t i8042_interrupt
-ffffffff816cfbb0 t i8042_toggle_aux
-ffffffff816cfcc0 t i8042_kbd_write
-ffffffff816cfd80 t i8042_aux_test_irq
-ffffffff816cfe50 t i8042_set_mux_mode
-ffffffff816cffc0 t i8042_aux_write
-ffffffff816d0060 t i8042_start
-ffffffff816d00d0 t i8042_stop
-ffffffff816d0120 t i8042_port_close
-ffffffff816d0240 t i8042_pm_suspend
-ffffffff816d0380 t i8042_pm_resume
-ffffffff816d04b0 t i8042_pm_thaw
-ffffffff816d04d0 t i8042_pm_reset
-ffffffff816d04f0 t i8042_pm_restore
-ffffffff816d0510 t i8042_pm_resume_noirq
-ffffffff816d0530 t i8042_controller_resume
-ffffffff816d0860 t i8042_pnp_kbd_probe
-ffffffff816d0a60 t i8042_pnp_aux_probe
-ffffffff816d0c40 t i8042_kbd_bind_notifier
-ffffffff816d0c80 t i8042_panic_blink
-ffffffff816d0f30 t serport_ldisc_open
-ffffffff816d0fc0 t serport_ldisc_close
-ffffffff816d0fe0 t serport_ldisc_read
-ffffffff816d11c0 t serport_ldisc_ioctl
-ffffffff816d1210 t serport_ldisc_hangup
-ffffffff816d1260 t serport_ldisc_receive
-ffffffff816d1320 t serport_ldisc_write_wakeup
-ffffffff816d1380 t serport_serio_write
-ffffffff816d13f0 t serport_serio_open
-ffffffff816d1430 t serport_serio_close
-ffffffff816d1470 t input_handle_event
-ffffffff816d1910 t input_event_dispose
-ffffffff816d1a50 t input_event
-ffffffff816d1ac0 t input_inject_event
-ffffffff816d1b50 t input_alloc_absinfo
-ffffffff816d1bc0 t input_set_abs_params
-ffffffff816d1c90 t input_copy_abs
-ffffffff816d1d20 t input_set_capability
-ffffffff816d1eb0 t input_grab_device
-ffffffff816d1f10 t input_release_device
-ffffffff816d1fa0 t input_open_device
-ffffffff816d2070 t input_flush_device
-ffffffff816d20e0 t input_close_device
-ffffffff816d21d0 t input_scancode_to_scalar
-ffffffff816d2210 t input_get_keycode
-ffffffff816d2270 t input_set_keycode
-ffffffff816d2460 t input_match_device_id
-ffffffff816d25b0 t input_reset_device
-ffffffff816d2680 t input_dev_toggle
-ffffffff816d2850 t input_dev_release_keys
-ffffffff816d29b0 t input_devnode
-ffffffff816d29e0 t input_allocate_device
-ffffffff816d2ad0 t devm_input_allocate_device
-ffffffff816d2b50 t devm_input_device_release
-ffffffff816d2b80 t input_free_device
-ffffffff816d2be0 t devm_input_device_match
-ffffffff816d2c00 t input_set_timestamp
-ffffffff816d2c50 t input_get_timestamp
-ffffffff816d2cb0 t input_enable_softrepeat
-ffffffff816d2ce0 t input_repeat_key
-ffffffff816d2e70 t input_device_enabled
-ffffffff816d2ea0 t input_register_device
-ffffffff816d3490 t devm_input_device_unregister
-ffffffff816d34b0 t input_default_getkeycode
-ffffffff816d3560 t input_default_setkeycode
-ffffffff816d36c0 t input_unregister_device
-ffffffff816d3730 t __input_unregister_device
-ffffffff816d38e0 t input_register_handler
-ffffffff816d3a40 t input_unregister_handler
-ffffffff816d3b00 t input_handler_for_each_handle
-ffffffff816d3b70 t input_register_handle
-ffffffff816d3c90 t input_unregister_handle
-ffffffff816d3d20 t input_get_new_minor
-ffffffff816d3d70 t input_free_minor
-ffffffff816d3d90 t input_proc_exit
-ffffffff816d3dd0 t input_pass_values
-ffffffff816d4130 t input_dev_uevent
-ffffffff816d44d0 t input_dev_release
-ffffffff816d4530 t input_dev_show_name
-ffffffff816d4570 t input_dev_show_phys
-ffffffff816d45b0 t input_dev_show_uniq
-ffffffff816d45f0 t input_dev_show_modalias
-ffffffff816d4630 t input_print_modalias
-ffffffff816d4f10 t input_dev_show_properties
-ffffffff816d4f50 t input_print_bitmap
-ffffffff816d5100 t inhibited_show
-ffffffff816d5130 t inhibited_store
-ffffffff816d5320 t input_dev_show_id_bustype
-ffffffff816d5350 t input_dev_show_id_vendor
-ffffffff816d5380 t input_dev_show_id_product
-ffffffff816d53b0 t input_dev_show_id_version
-ffffffff816d53e0 t input_dev_show_cap_ev
-ffffffff816d5420 t input_dev_show_cap_key
-ffffffff816d5460 t input_dev_show_cap_rel
-ffffffff816d54a0 t input_dev_show_cap_abs
-ffffffff816d54e0 t input_dev_show_cap_msc
-ffffffff816d5520 t input_dev_show_cap_led
-ffffffff816d5560 t input_dev_show_cap_snd
-ffffffff816d55a0 t input_dev_show_cap_ff
-ffffffff816d55e0 t input_dev_show_cap_sw
-ffffffff816d5620 t input_add_uevent_bm_var
-ffffffff816d56c0 t input_add_uevent_modalias_var
-ffffffff816d5750 t input_dev_suspend
-ffffffff816d5810 t input_dev_resume
-ffffffff816d5850 t input_dev_freeze
-ffffffff816d5900 t input_dev_poweroff
-ffffffff816d5940 t input_proc_devices_open
-ffffffff816d5960 t input_proc_devices_poll
-ffffffff816d59b0 t input_devices_seq_start
-ffffffff816d5a00 t input_seq_stop
-ffffffff816d5a20 t input_devices_seq_next
-ffffffff816d5a40 t input_devices_seq_show
-ffffffff816d5d70 t input_seq_print_bitmap
-ffffffff816d5e90 t input_proc_handlers_open
-ffffffff816d5eb0 t input_handlers_seq_start
-ffffffff816d5f00 t input_handlers_seq_next
-ffffffff816d5f30 t input_handlers_seq_show
-ffffffff816d5fa0 t input_event_from_user
-ffffffff816d5fd0 t input_event_to_user
-ffffffff816d6000 t input_ff_effect_from_user
-ffffffff816d6040 t input_mt_init_slots
-ffffffff816d6300 t input_mt_destroy_slots
-ffffffff816d6340 t input_mt_report_slot_state
-ffffffff816d63d0 t input_mt_report_finger_count
-ffffffff816d6470 t input_mt_report_pointer_emulation
-ffffffff816d66a0 t input_mt_drop_unused
-ffffffff816d6770 t input_mt_release_slots
-ffffffff816d6840 t input_mt_sync_frame
-ffffffff816d6930 t input_mt_assign_slots
-ffffffff816d6df0 t input_mt_get_slot_by_key
-ffffffff816d6e80 t input_dev_poller_finalize
-ffffffff816d6ec0 t input_dev_poller_start
-ffffffff816d6f20 t input_dev_poller_stop
-ffffffff816d6f40 t input_setup_polling
-ffffffff816d7010 t input_dev_poller_work
-ffffffff816d7060 t input_set_poll_interval
-ffffffff816d70b0 t input_set_min_poll_interval
-ffffffff816d7100 t input_set_max_poll_interval
-ffffffff816d7150 t input_get_poll_interval
-ffffffff816d7180 t input_poller_attrs_visible
-ffffffff816d71b0 t input_dev_get_poll_interval
-ffffffff816d71e0 t input_dev_set_poll_interval
-ffffffff816d72f0 t input_dev_get_poll_max
-ffffffff816d7320 t input_dev_get_poll_min
-ffffffff816d7350 t input_ff_upload
-ffffffff816d75b0 t input_ff_erase
-ffffffff816d7620 t erase_effect
-ffffffff816d7710 t input_ff_flush
-ffffffff816d7780 t input_ff_event
-ffffffff816d7820 t input_ff_create
-ffffffff816d7980 t input_ff_destroy
-ffffffff816d79e0 t touchscreen_parse_properties
-ffffffff816d7f00 t touchscreen_set_mt_pos
-ffffffff816d7f40 t touchscreen_report_pos
-ffffffff816d7fc0 t rtc_month_days
-ffffffff816d8020 t rtc_year_days
-ffffffff816d8090 t rtc_time64_to_tm
-ffffffff816d81e0 t rtc_valid_tm
-ffffffff816d8290 t rtc_tm_to_time64
-ffffffff816d82c0 t rtc_tm_to_ktime
-ffffffff816d8320 t rtc_ktime_to_tm
-ffffffff816d8490 t devm_rtc_allocate_device
-ffffffff816d8700 t devm_rtc_release_device
-ffffffff816d8720 t __devm_rtc_register_device
-ffffffff816d8a50 t devm_rtc_unregister_device
-ffffffff816d8ab0 t devm_rtc_device_register
-ffffffff816d8b00 t rtc_device_release
-ffffffff816d8b80 t rtc_suspend
-ffffffff816d8d10 t rtc_resume
-ffffffff816d8e90 t __traceiter_rtc_set_time
-ffffffff816d8ee0 t __traceiter_rtc_read_time
-ffffffff816d8f30 t __traceiter_rtc_set_alarm
-ffffffff816d8f80 t __traceiter_rtc_read_alarm
-ffffffff816d8fd0 t __traceiter_rtc_irq_set_freq
-ffffffff816d9020 t __traceiter_rtc_irq_set_state
-ffffffff816d9070 t __traceiter_rtc_alarm_irq_enable
-ffffffff816d90c0 t __traceiter_rtc_set_offset
-ffffffff816d9110 t __traceiter_rtc_read_offset
-ffffffff816d9160 t __traceiter_rtc_timer_enqueue
-ffffffff816d91b0 t __traceiter_rtc_timer_dequeue
-ffffffff816d9200 t __traceiter_rtc_timer_fired
-ffffffff816d9250 t trace_event_raw_event_rtc_time_alarm_class
-ffffffff816d9310 t perf_trace_rtc_time_alarm_class
-ffffffff816d9410 t trace_event_raw_event_rtc_irq_set_freq
-ffffffff816d94d0 t perf_trace_rtc_irq_set_freq
-ffffffff816d95d0 t trace_event_raw_event_rtc_irq_set_state
-ffffffff816d9690 t perf_trace_rtc_irq_set_state
-ffffffff816d9790 t trace_event_raw_event_rtc_alarm_irq_enable
-ffffffff816d9850 t perf_trace_rtc_alarm_irq_enable
-ffffffff816d9950 t trace_event_raw_event_rtc_offset_class
-ffffffff816d9a10 t perf_trace_rtc_offset_class
-ffffffff816d9b10 t trace_event_raw_event_rtc_timer_class
-ffffffff816d9be0 t perf_trace_rtc_timer_class
-ffffffff816d9ce0 t rtc_read_time
-ffffffff816d9d80 t __rtc_read_time
-ffffffff816d9e60 t rtc_set_time
-ffffffff816da0a0 t rtc_update_irq_enable
-ffffffff816da1f0 t __rtc_read_alarm
-ffffffff816da650 t rtc_read_alarm
-ffffffff816da7b0 t rtc_set_alarm
-ffffffff816da970 t rtc_timer_remove
-ffffffff816daac0 t rtc_timer_enqueue
-ffffffff816dad60 t rtc_initialize_alarm
-ffffffff816daee0 t trace_rtc_timer_enqueue
-ffffffff816daf40 t rtc_alarm_irq_enable
-ffffffff816db040 t rtc_handle_legacy_irq
-ffffffff816db0d0 t rtc_aie_update_irq
-ffffffff816db150 t rtc_uie_update_irq
-ffffffff816db1d0 t rtc_pie_update_irq
-ffffffff816db290 t rtc_update_irq
-ffffffff816db2e0 t rtc_class_open
-ffffffff816db310 t rtc_class_close
-ffffffff816db330 t rtc_irq_set_state
-ffffffff816db3e0 t rtc_irq_set_freq
-ffffffff816db4c0 t rtc_timer_do_work
-ffffffff816db8b0 t __rtc_set_alarm
-ffffffff816dba40 t rtc_alarm_disable
-ffffffff816dbad0 t rtc_timer_init
-ffffffff816dbaf0 t rtc_timer_start
-ffffffff816dbb60 t rtc_timer_cancel
-ffffffff816dbbb0 t rtc_read_offset
-ffffffff816dbc70 t rtc_set_offset
-ffffffff816dbd30 t trace_raw_output_rtc_time_alarm_class
-ffffffff816dbd90 t trace_raw_output_rtc_irq_set_freq
-ffffffff816dbdf0 t trace_raw_output_rtc_irq_set_state
-ffffffff816dbe60 t trace_raw_output_rtc_alarm_irq_enable
-ffffffff816dbed0 t trace_raw_output_rtc_offset_class
-ffffffff816dbf30 t trace_raw_output_rtc_timer_class
-ffffffff816dbf90 t devm_rtc_nvmem_register
-ffffffff816dc000 t rtc_dev_prepare
-ffffffff816dc060 t rtc_dev_read
-ffffffff816dc230 t rtc_dev_poll
-ffffffff816dc280 t rtc_dev_ioctl
-ffffffff816dc9b0 t rtc_dev_open
-ffffffff816dca10 t rtc_dev_release
-ffffffff816dca70 t rtc_dev_fasync
-ffffffff816dca90 t rtc_proc_add_device
-ffffffff816dcb30 t rtc_proc_show
-ffffffff816dcd20 t rtc_proc_del_device
-ffffffff816dcda0 t rtc_get_dev_attribute_groups
-ffffffff816dcdc0 t rtc_add_groups
-ffffffff816dcf00 t rtc_add_group
-ffffffff816dd070 t rtc_attr_is_visible
-ffffffff816dd0f0 t wakealarm_show
-ffffffff816dd190 t wakealarm_store
-ffffffff816dd330 t offset_show
-ffffffff816dd3a0 t offset_show
-ffffffff816dd3e0 t offset_store
-ffffffff816dd460 t offset_store
-ffffffff816dd4f0 t range_show
-ffffffff816dd520 t date_show
-ffffffff816dd5b0 t time_show
-ffffffff816dd640 t since_epoch_show
-ffffffff816dd6d0 t max_user_freq_show
-ffffffff816dd700 t max_user_freq_store
-ffffffff816dd790 t hctosys_show
-ffffffff816dd7f0 t mc146818_avoid_UIP
-ffffffff816dd910 t mc146818_does_rtc_work
-ffffffff816dd930 t mc146818_get_time
-ffffffff816dda50 t mc146818_get_time_callback
-ffffffff816ddb00 t mc146818_set_time
-ffffffff816ddd30 t cmos_do_probe
-ffffffff816de2a0 t cmos_nvram_read
-ffffffff816de330 t cmos_nvram_write
-ffffffff816de400 t cmos_irq_disable
-ffffffff816de4c0 t cmos_interrupt
-ffffffff816de5c0 t acpi_rtc_event_setup
-ffffffff816de610 t rtc_wake_on
-ffffffff816de640 t rtc_wake_off
-ffffffff816de660 t cmos_read_time
-ffffffff816de6b0 t cmos_set_time
-ffffffff816de6d0 t cmos_read_alarm
-ffffffff816de800 t cmos_set_alarm
-ffffffff816deb30 t cmos_procfs
-ffffffff816dec40 t cmos_alarm_irq_enable
-ffffffff816deca0 t cmos_read_alarm_callback
-ffffffff816ded50 t cmos_set_alarm_callback
-ffffffff816dee00 t cmos_irq_enable
-ffffffff816def00 t rtc_handler
-ffffffff816defc0 t cmos_pnp_probe
-ffffffff816df060 t cmos_pnp_remove
-ffffffff816df070 t cmos_pnp_shutdown
-ffffffff816df0e0 t cmos_do_remove
-ffffffff816df1c0 t cmos_aie_poweroff
-ffffffff816df320 t cmos_suspend
-ffffffff816df480 t cmos_resume
-ffffffff816df810 t cmos_platform_remove
-ffffffff816df830 t cmos_platform_shutdown
-ffffffff816df8a0 t power_supply_changed
-ffffffff816df900 t power_supply_am_i_supplied
-ffffffff816df970 t __power_supply_am_i_supplied
-ffffffff816dfac0 t power_supply_is_system_supplied
-ffffffff816dfb30 t __power_supply_is_system_supplied
-ffffffff816dfba0 t power_supply_get_property_from_supplier
-ffffffff816dfc20 t __power_supply_get_supplier_property
-ffffffff816dfd40 t power_supply_set_battery_charged
-ffffffff816dfd80 t power_supply_get_by_name
-ffffffff816dfdc0 t power_supply_match_device_by_name
-ffffffff816dfdf0 t power_supply_put
-ffffffff816dfe20 t power_supply_get_by_phandle
-ffffffff816dff00 t power_supply_match_device_node
-ffffffff816dff20 t power_supply_get_by_phandle_array
-ffffffff816e0020 t power_supply_match_device_node_array
-ffffffff816e0080 t devm_power_supply_get_by_phandle
-ffffffff816e01f0 t devm_power_supply_put
-ffffffff816e0220 t power_supply_get_battery_info
-ffffffff816e0dc0 t power_supply_put_battery_info
-ffffffff816e0e30 t power_supply_temp2resist_simple
-ffffffff816e0ec0 t power_supply_vbat2ri
-ffffffff816e0fb0 t power_supply_get_maintenance_charging_setting
-ffffffff816e0fe0 t power_supply_ocv2cap_simple
-ffffffff816e1070 t power_supply_find_ocv2cap_table
-ffffffff816e1130 t power_supply_batinfo_ocv2cap
-ffffffff816e1280 t power_supply_battery_bti_in_range
-ffffffff816e12e0 t power_supply_get_property
-ffffffff816e1320 t power_supply_set_property
-ffffffff816e1350 t power_supply_property_is_writeable
-ffffffff816e1380 t power_supply_external_power_changed
-ffffffff816e13b0 t power_supply_powers
-ffffffff816e13d0 t power_supply_reg_notifier
-ffffffff816e13f0 t power_supply_unreg_notifier
-ffffffff816e1410 t power_supply_register
-ffffffff816e1430 t __power_supply_register.llvm.11830574628852068877
-ffffffff816e1860 t power_supply_register_no_ws
-ffffffff816e1880 t devm_power_supply_register
-ffffffff816e1910 t devm_power_supply_release
-ffffffff816e1930 t devm_power_supply_register_no_ws
-ffffffff816e19c0 t power_supply_unregister
-ffffffff816e1a60 t device_init_wakeup
-ffffffff816e1ab0 t power_supply_get_drvdata
-ffffffff816e1ac0 t power_supply_dev_release
-ffffffff816e1ae0 t power_supply_changed_work
-ffffffff816e1ba0 t power_supply_deferred_register_work
-ffffffff816e1c50 t psy_register_thermal
-ffffffff816e1d10 t __power_supply_changed_work
-ffffffff816e1e20 t __power_supply_find_supply_from_node
-ffffffff816e1e40 t __power_supply_populate_supplied_from
-ffffffff816e1f40 t power_supply_read_temp
-ffffffff816e1fe0 t power_supply_init_attrs
-ffffffff816e20e0 t power_supply_show_property
-ffffffff816e2300 t power_supply_store_property
-ffffffff816e23d0 t power_supply_uevent
-ffffffff816e25d0 t power_supply_charge_behaviour_show
-ffffffff816e2740 t power_supply_charge_behaviour_parse
-ffffffff816e2780 t power_supply_attr_is_visible
-ffffffff816e2810 t __traceiter_thermal_temperature
-ffffffff816e2860 t __traceiter_cdev_update
-ffffffff816e28b0 t __traceiter_thermal_zone_trip
-ffffffff816e2910 t __traceiter_thermal_power_cpu_get_power_simple
-ffffffff816e2960 t __traceiter_thermal_power_cpu_limit
-ffffffff816e29d0 t trace_event_raw_event_thermal_temperature
-ffffffff816e2af0 t perf_trace_thermal_temperature
-ffffffff816e2c50 t trace_event_raw_event_cdev_update
-ffffffff816e2d70 t perf_trace_cdev_update
-ffffffff816e2ed0 t trace_event_raw_event_thermal_zone_trip
-ffffffff816e2ff0 t perf_trace_thermal_zone_trip
-ffffffff816e3160 t trace_event_raw_event_thermal_power_cpu_get_power_simple
-ffffffff816e3220 t perf_trace_thermal_power_cpu_get_power_simple
-ffffffff816e3320 t trace_event_raw_event_thermal_power_cpu_limit
-ffffffff816e3460 t perf_trace_thermal_power_cpu_limit
-ffffffff816e35f0 t thermal_register_governor
-ffffffff816e3800 t __find_governor
-ffffffff816e3880 t thermal_set_governor
-ffffffff816e3940 t thermal_unregister_governor
-ffffffff816e3a80 t thermal_zone_device_set_policy
-ffffffff816e3c00 t thermal_build_list_of_policies
-ffffffff816e3ca0 t thermal_zone_device_critical
-ffffffff816e3ce0 t thermal_zone_device_enable
-ffffffff816e3d70 t thermal_zone_device_disable
-ffffffff816e3e00 t thermal_zone_device_is_enabled
-ffffffff816e3e20 t thermal_zone_device_update
-ffffffff816e4200 t for_each_thermal_governor
-ffffffff816e4280 t for_each_thermal_cooling_device
-ffffffff816e4300 t for_each_thermal_zone
-ffffffff816e4380 t thermal_zone_get_by_id
-ffffffff816e43f0 t thermal_zone_bind_cooling_device
-ffffffff816e47f0 t thermal_zone_unbind_cooling_device
-ffffffff816e4960 t thermal_cooling_device_register
-ffffffff816e4980 t __thermal_cooling_device_register.llvm.8179560354648126384
-ffffffff816e4c50 t thermal_of_cooling_device_register
-ffffffff816e4c60 t devm_thermal_of_cooling_device_register
-ffffffff816e4d00 t thermal_cooling_device_release
-ffffffff816e4d20 t thermal_cooling_device_unregister
-ffffffff816e4f50 t thermal_zone_device_register_with_trips
-ffffffff816e5430 t bind_tz
-ffffffff816e56b0 t thermal_zone_device_check
-ffffffff816e56d0 t thermal_zone_device_register
-ffffffff816e5700 t thermal_zone_device_unregister
-ffffffff816e5960 t thermal_zone_get_zone_by_name
-ffffffff816e5a50 t trace_raw_output_thermal_temperature
-ffffffff816e5ab0 t trace_raw_output_cdev_update
-ffffffff816e5b10 t trace_raw_output_thermal_zone_trip
-ffffffff816e5ba0 t trace_raw_output_thermal_power_cpu_get_power_simple
-ffffffff816e5c00 t trace_raw_output_thermal_power_cpu_limit
-ffffffff816e5c80 t bind_cdev
-ffffffff816e5eb0 t thermal_release
-ffffffff816e5f20 t thermal_pm_notify
-ffffffff816e5fe0 t thermal_zone_create_device_groups
-ffffffff816e63d0 t thermal_zone_destroy_device_groups
-ffffffff816e6440 t thermal_cooling_device_stats_update
-ffffffff816e64b0 t thermal_cooling_device_setup_sysfs
-ffffffff816e6590 t thermal_cooling_device_destroy_sysfs
-ffffffff816e65c0 t trip_point_show
-ffffffff816e65e0 t weight_show
-ffffffff816e6600 t weight_store
-ffffffff816e6670 t temp_show
-ffffffff816e66e0 t emul_temp_store
-ffffffff816e67b0 t policy_show
-ffffffff816e67e0 t policy_store
-ffffffff816e6880 t available_policies_show
-ffffffff816e68a0 t sustainable_power_show
-ffffffff816e68e0 t sustainable_power_store
-ffffffff816e6970 t k_po_show
-ffffffff816e69b0 t k_po_store
-ffffffff816e6a40 t k_pu_show
-ffffffff816e6a80 t k_pu_store
-ffffffff816e6b10 t k_i_show
-ffffffff816e6b50 t k_i_store
-ffffffff816e6be0 t k_d_show
-ffffffff816e6c20 t k_d_store
-ffffffff816e6cb0 t integral_cutoff_show
-ffffffff816e6cf0 t integral_cutoff_store
-ffffffff816e6d80 t slope_show
-ffffffff816e6dc0 t slope_store
-ffffffff816e6e50 t trip_point_type_show
-ffffffff816e6f90 t trip_point_temp_show
-ffffffff816e7050 t trip_point_temp_store
-ffffffff816e71d0 t trip_point_hyst_show
-ffffffff816e7290 t trip_point_hyst_store
-ffffffff816e7390 t total_trans_show
-ffffffff816e73e0 t time_in_state_ms_show
-ffffffff816e74a0 t trans_table_show
-ffffffff816e76f0 t cdev_type_show
-ffffffff816e7720 t max_state_show
-ffffffff816e7750 t cur_state_show
-ffffffff816e77d0 t cur_state_store
-ffffffff816e7920 t get_tz_trend
-ffffffff816e79b0 t get_thermal_instance
-ffffffff816e7a50 t __thermal_zone_get_temp
-ffffffff816e7b70 t thermal_zone_get_temp
-ffffffff816e7ce0 t __thermal_zone_set_trips
-ffffffff816e7e60 t thermal_zone_set_trips
-ffffffff816e7ea0 t __thermal_cdev_update
-ffffffff816e7f80 t thermal_cdev_update
-ffffffff816e7fd0 t thermal_zone_get_slope
-ffffffff816e8000 t thermal_zone_get_offset
-ffffffff816e8030 t thermal_genl_sampling_temp
-ffffffff816e81a0 t thermal_genl_event_tz
-ffffffff816e81a0 t thermal_genl_event_tz_delete
-ffffffff816e81a0 t thermal_genl_event_tz_disable
-ffffffff816e81a0 t thermal_genl_event_tz_enable
-ffffffff816e8200 t thermal_genl_event_tz_trip_down
-ffffffff816e8200 t thermal_genl_event_tz_trip_up
-ffffffff816e82b0 t thermal_genl_event_tz_trip_add
-ffffffff816e82b0 t thermal_genl_event_tz_trip_change
-ffffffff816e83b0 t thermal_notify_tz_create
-ffffffff816e8450 t thermal_genl_send_event
-ffffffff816e8570 t thermal_notify_tz_delete
-ffffffff816e8610 t thermal_notify_tz_enable
-ffffffff816e86b0 t thermal_notify_tz_disable
-ffffffff816e8750 t thermal_notify_tz_trip_down
-ffffffff816e87f0 t thermal_notify_tz_trip_up
-ffffffff816e8890 t thermal_notify_tz_trip_add
-ffffffff816e8940 t thermal_notify_tz_trip_delete
-ffffffff816e89e0 t thermal_notify_tz_trip_change
-ffffffff816e8a90 t thermal_notify_cdev_state_update
-ffffffff816e8b30 t thermal_notify_cdev_add
-ffffffff816e8bd0 t thermal_notify_cdev_delete
-ffffffff816e8c70 t thermal_notify_tz_gov_change
-ffffffff816e8d10 t thermal_genl_cpu_capability_event
-ffffffff816e8db0 t thermal_genl_event_tz_create
-ffffffff816e8e50 t thermal_genl_event_tz_trip_delete
-ffffffff816e8ee0 t thermal_genl_event_cdev_add
-ffffffff816e8fa0 t thermal_genl_event_cdev_delete
-ffffffff816e9000 t thermal_genl_event_cdev_state_update
-ffffffff816e9090 t thermal_genl_event_gov_change
-ffffffff816e9130 t thermal_genl_event_cpu_capability_change
-ffffffff816e9280 t thermal_genl_cmd_dumpit
-ffffffff816e93b0 t thermal_genl_cmd_doit
-ffffffff816e9540 t thermal_genl_cmd_tz_get_id
-ffffffff816e95e0 t thermal_genl_cmd_tz_get_trip
-ffffffff816e97e0 t thermal_genl_cmd_tz_get_temp
-ffffffff816e98b0 t thermal_genl_cmd_tz_get_gov
-ffffffff816e9990 t thermal_genl_cmd_cdev_get
-ffffffff816e9a30 t __thermal_genl_cmd_tz_get_id
-ffffffff816e9ad0 t __thermal_genl_cmd_cdev_get
-ffffffff816e9b70 t of_thermal_get_ntrips
-ffffffff816e9b90 t of_thermal_is_trip_valid
-ffffffff816e9bb0 t of_thermal_get_trip_points
-ffffffff816e9bd0 t thermal_of_zone_unregister
-ffffffff816e9c30 t thermal_of_zone_register
-ffffffff816ea460 t of_thermal_get_trip_type
-ffffffff816ea4a0 t of_thermal_get_trip_temp
-ffffffff816ea4d0 t of_thermal_get_trip_hyst
-ffffffff816ea510 t of_thermal_set_trip_hyst
-ffffffff816ea540 t of_thermal_get_crit_temp
-ffffffff816ea5a0 t thermal_of_bind
-ffffffff816ea5c0 t thermal_of_unbind
-ffffffff816ea5e0 t devm_thermal_of_zone_register
-ffffffff816ea680 t devm_thermal_of_zone_release
-ffffffff816ea6e0 t devm_thermal_of_zone_unregister
-ffffffff816ea710 t devm_thermal_of_zone_match
-ffffffff816ea740 t thermal_of_for_each_cooling_maps
-ffffffff816eaa00 t __thermal_of_bind
-ffffffff816eab70 t __thermal_of_unbind
-ffffffff816eaca0 t step_wise_throttle
-ffffffff816eaf80 t user_space_bind
-ffffffff816eafb0 t notify_user_space
-ffffffff816eb0b0 t cpufreq_cooling_register
-ffffffff816eb0d0 t __cpufreq_cooling_register
-ffffffff816eb2e0 t of_cpufreq_cooling_register
-ffffffff816eb370 t cpufreq_cooling_unregister
-ffffffff816eb3a0 t cpufreq_get_max_state
-ffffffff816eb3c0 t cpufreq_get_cur_state
-ffffffff816eb3e0 t intel_thermal_interrupt
-ffffffff816eb6c0 t therm_throt_process
-ffffffff816eb810 t x86_thermal_enabled
-ffffffff816eb830 t intel_init_thermal
-ffffffff816ebc30 t thermal_throttle_online
-ffffffff816ebe50 t thermal_throttle_offline
-ffffffff816ebf00 t throttle_active_work
-ffffffff816ec100 t therm_throt_device_show_core_throttle_count
-ffffffff816ec180 t therm_throt_device_show_core_throttle_max_time_ms
-ffffffff816ec200 t therm_throt_device_show_core_throttle_total_time_ms
-ffffffff816ec280 t therm_throt_device_show_core_power_limit_count
-ffffffff816ec300 t therm_throt_device_show_package_throttle_count
-ffffffff816ec380 t therm_throt_device_show_package_throttle_max_time_ms
-ffffffff816ec400 t therm_throt_device_show_package_throttle_total_time_ms
-ffffffff816ec480 t therm_throt_device_show_package_power_limit_count
-ffffffff816ec500 t __traceiter_watchdog_start
-ffffffff816ec550 t __traceiter_watchdog_ping
-ffffffff816ec5a0 t __traceiter_watchdog_stop
-ffffffff816ec5f0 t __traceiter_watchdog_set_timeout
-ffffffff816ec650 t trace_event_raw_event_watchdog_template
-ffffffff816ec710 t perf_trace_watchdog_template
-ffffffff816ec810 t trace_event_raw_event_watchdog_set_timeout
-ffffffff816ec8e0 t perf_trace_watchdog_set_timeout
-ffffffff816ec9f0 t watchdog_init_timeout
-ffffffff816ecb80 t watchdog_set_restart_priority
-ffffffff816ecb90 t watchdog_register_device
-ffffffff816ecc70 t __watchdog_register_device
-ffffffff816ecef0 t watchdog_unregister_device
-ffffffff816ecfe0 t devm_watchdog_register_device
-ffffffff816ed060 t devm_watchdog_unregister_device
-ffffffff816ed080 t trace_raw_output_watchdog_template
-ffffffff816ed0e0 t trace_raw_output_watchdog_set_timeout
-ffffffff816ed140 t watchdog_reboot_notifier
-ffffffff816ed1e0 t watchdog_restart_notifier
-ffffffff816ed210 t watchdog_pm_notifier
-ffffffff816ed260 t watchdog_dev_register
-ffffffff816ed530 t watchdog_dev_unregister
-ffffffff816ed600 t watchdog_set_last_hw_keepalive
-ffffffff816ed670 t __watchdog_ping
-ffffffff816ed870 t watchdog_dev_suspend
-ffffffff816ed930 t watchdog_dev_resume
-ffffffff816ed9c0 t watchdog_core_data_release
-ffffffff816ed9d0 t watchdog_ping_work
-ffffffff816eda30 t watchdog_timer_expired
-ffffffff816eda50 t watchdog_write
-ffffffff816edb50 t watchdog_ioctl
-ffffffff816ede40 t watchdog_open
-ffffffff816edf00 t watchdog_release
-ffffffff816ee100 t watchdog_ping
-ffffffff816ee160 t watchdog_stop
-ffffffff816ee330 t watchdog_start
-ffffffff816ee510 t watchdog_set_timeout
-ffffffff816ee6d0 t watchdog_set_pretimeout
-ffffffff816ee720 t dm_send_uevents
-ffffffff816ee870 t dm_path_uevent
-ffffffff816eea30 t dm_uevent_init
-ffffffff816eea90 t dm_uevent_exit
-ffffffff816eeab0 t dm_blk_report_zones
-ffffffff816eebf0 t dm_report_zones
-ffffffff816eec20 t dm_report_zones_cb.llvm.8483889944663120710
-ffffffff816eeca0 t dm_is_zone_write
-ffffffff816eecf0 t dm_cleanup_zoned_dev
-ffffffff816eed70 t dm_set_zones_restrictions
-ffffffff816ef130 t dm_zone_map_bio
-ffffffff816ef680 t dm_zone_map_bio_end
-ffffffff816ef760 t dm_zone_endio
-ffffffff816ef8b0 t device_not_zone_append_capable
-ffffffff816ef8f0 t dm_zone_revalidate_cb
-ffffffff816efa20 t dm_update_zone_wp_offset_cb
-ffffffff816efa50 t dm_issue_global_event
-ffffffff816efa80 t dm_per_bio_data
-ffffffff816efaa0 t dm_bio_from_per_bio_data
-ffffffff816efae0 t dm_bio_get_target_bio_nr
-ffffffff816efaf0 t __dm_get_module_param
-ffffffff816efb20 t dm_get_reserved_bio_based_ios
-ffffffff816efb60 t dm_deleting_md
-ffffffff816efb80 t dm_open_count
-ffffffff816efba0 t dm_lock_for_deletion
-ffffffff816efc20 t dm_cancel_deferred_remove
-ffffffff816efc70 t dm_start_time_ns_from_clone
-ffffffff816efc90 t dm_get_live_table
-ffffffff816efcc0 t dm_put_live_table
-ffffffff816efce0 t dm_sync_table
-ffffffff816efd00 t dm_get_table_device
-ffffffff816efef0 t dm_put_table_device
-ffffffff816effc0 t dm_get_geometry
-ffffffff816efff0 t dm_set_geometry
-ffffffff816f0050 t disable_discard
-ffffffff816f0080 t dm_get_queue_limits
-ffffffff816f00b0 t disable_write_zeroes
-ffffffff816f00e0 t dm_set_target_max_io_len
-ffffffff816f0120 t dm_accept_partial_bio
-ffffffff816f01a0 t dm_submit_bio_remap
-ffffffff816f02a0 t dm_create
-ffffffff816f07e0 t dm_lock_md_type
-ffffffff816f0800 t dm_unlock_md_type
-ffffffff816f0820 t dm_set_md_type
-ffffffff816f0840 t dm_get_md_type
-ffffffff816f0860 t dm_get_immutable_target_type
-ffffffff816f0880 t dm_setup_md_queue
-ffffffff816f0ac0 t dm_get_md
-ffffffff816f0b60 t dm_disk
-ffffffff816f0b80 t dm_get
-ffffffff816f0ba0 t dm_get_mdptr
-ffffffff816f0bc0 t dm_set_mdptr
-ffffffff816f0be0 t dm_hold
-ffffffff816f0c40 t dm_device_name
-ffffffff816f0c60 t dm_destroy
-ffffffff816f0c80 t __dm_destroy.llvm.3934523783560193998
-ffffffff816f0e90 t dm_destroy_immediate
-ffffffff816f0eb0 t dm_put
-ffffffff816f0ed0 t dm_swap_table
-ffffffff816f1150 t dm_suspended_md
-ffffffff816f1170 t dm_suspend
-ffffffff816f1240 t dm_suspended_internally_md
-ffffffff816f1260 t __dm_suspend
-ffffffff816f1400 t dm_resume
-ffffffff816f1540 t dm_internal_suspend_noflush
-ffffffff816f15c0 t dm_internal_resume
-ffffffff816f1690 t dm_internal_suspend_fast
-ffffffff816f16f0 t dm_wait_for_completion
-ffffffff816f18b0 t dm_internal_resume_fast
-ffffffff816f1900 t dm_kobject_uevent
-ffffffff816f1a20 t dm_next_uevent_seq
-ffffffff816f1a40 t dm_get_event_nr
-ffffffff816f1a60 t dm_wait_event
-ffffffff816f1b50 t dm_uevent_add
-ffffffff816f1bc0 t dm_kobject
-ffffffff816f1be0 t dm_get_from_kobject
-ffffffff816f1c50 t dm_test_deferred_remove_flag
-ffffffff816f1c70 t dm_suspended
-ffffffff816f1c90 t dm_post_suspending
-ffffffff816f1cb0 t dm_noflush_suspending
-ffffffff816f1cd0 t dm_free_md_mempools
-ffffffff816f1d00 t local_exit
-ffffffff816f1d50 t dm_io_acct
-ffffffff816f1e40 t dm_wq_work
-ffffffff816f1ed0 t dm_wq_requeue_work
-ffffffff816f1f50 t cleanup_mapped_device
-ffffffff816f20d0 t __dm_io_complete
-ffffffff816f2340 t dm_submit_bio
-ffffffff816f2b20 t dm_poll_bio
-ffffffff816f2c20 t dm_blk_open
-ffffffff816f2c90 t dm_blk_close
-ffffffff816f2d00 t dm_blk_ioctl
-ffffffff816f2de0 t dm_blk_getgeo
-ffffffff816f2e10 t __send_duplicate_bios
-ffffffff816f3060 t alloc_tio
-ffffffff816f3160 t __map_bio
-ffffffff816f33d0 t clone_endio
-ffffffff816f35f0 t __set_swap_bios_limit
-ffffffff816f36a0 t __process_abnormal_io
-ffffffff816f3760 t dm_io_set_error
-ffffffff816f37b0 t do_deferred_remove
-ffffffff816f37d0 t dm_prepare_ioctl
-ffffffff816f38e0 t dm_pr_register
-ffffffff816f3ac0 t dm_pr_reserve
-ffffffff816f3be0 t dm_pr_release
-ffffffff816f3d10 t dm_pr_preempt
-ffffffff816f3e30 t dm_pr_clear
-ffffffff816f3ef0 t __dm_pr_register
-ffffffff816f3f60 t __dm_pr_reserve
-ffffffff816f3fc0 t __dm_pr_release
-ffffffff816f4020 t __dm_pr_preempt
-ffffffff816f4090 t event_callback
-ffffffff816f4190 t dm_table_create
-ffffffff816f42b0 t dm_table_destroy
-ffffffff816f4410 t dm_get_dev_t
-ffffffff816f4470 t dm_get_device
-ffffffff816f46c0 t dm_put_device
-ffffffff816f4780 t dm_split_args
-ffffffff816f4940 t dm_table_add_target
-ffffffff816f4d40 t dm_read_arg
-ffffffff816f4de0 t dm_read_arg_group
-ffffffff816f4e90 t dm_shift_arg
-ffffffff816f4ec0 t dm_consume_args
-ffffffff816f4ee0 t dm_table_set_type
-ffffffff816f4ef0 t dm_table_get_type
-ffffffff816f4f00 t dm_table_get_immutable_target_type
-ffffffff816f4f20 t dm_table_get_immutable_target
-ffffffff816f4f60 t dm_table_get_wildcard_target
-ffffffff816f4fa0 t dm_table_bio_based
-ffffffff816f4fc0 t dm_table_request_based
-ffffffff816f4fe0 t dm_destroy_crypto_profile
-ffffffff816f5010 t dm_table_complete
-ffffffff816f5930 t dm_table_event_callback
-ffffffff816f5980 t dm_table_event
-ffffffff816f59d0 t dm_table_get_size
-ffffffff816f5a00 t dm_table_find_target
-ffffffff816f5b10 t dm_table_has_no_data_devices
-ffffffff816f5bd0 t count_device
-ffffffff816f5be0 t dm_calculate_queue_limits
-ffffffff816f6190 t dm_set_device_limits
-ffffffff816f6240 t device_area_is_invalid
-ffffffff816f6360 t dm_table_set_restrictions
-ffffffff816f6ab0 t device_not_dax_capable
-ffffffff816f6ad0 t device_not_dax_synchronous_capable
-ffffffff816f6b00 t device_dax_write_cache_enabled
-ffffffff816f6b30 t device_is_rotational
-ffffffff816f6b60 t device_requires_stable_pages
-ffffffff816f6b80 t device_is_not_random
-ffffffff816f6bb0 t dm_table_get_devices
-ffffffff816f6bd0 t dm_table_get_mode
-ffffffff816f6bf0 t dm_table_presuspend_targets
-ffffffff816f6c60 t dm_table_presuspend_undo_targets
-ffffffff816f6cd0 t dm_table_postsuspend_targets
-ffffffff816f6d40 t dm_table_resume_targets
-ffffffff816f6e40 t dm_table_get_md
-ffffffff816f6e50 t dm_table_device_name
-ffffffff816f6e70 t dm_table_run_md_queue_async
-ffffffff816f6ea0 t device_is_rq_stackable
-ffffffff816f6ee0 t dm_keyslot_evict
-ffffffff816f6fc0 t dm_derive_sw_secret
-ffffffff816f70c0 t device_intersect_crypto_capabilities
-ffffffff816f70f0 t dm_keyslot_evict_callback
-ffffffff816f7110 t dm_derive_sw_secret_callback
-ffffffff816f7140 t device_not_matches_zone_sectors
-ffffffff816f7180 t device_not_zoned_model
-ffffffff816f71b0 t device_not_nowait_capable
-ffffffff816f71e0 t device_not_discard_capable
-ffffffff816f7210 t device_not_secure_erase_capable
-ffffffff816f7240 t device_flush_capable
-ffffffff816f7260 t device_not_write_zeroes_capable
-ffffffff816f7290 t device_not_poll_capable
-ffffffff816f72c0 t dm_get_target_type
-ffffffff816f73a0 t dm_put_target_type
-ffffffff816f73d0 t dm_target_iterate
-ffffffff816f7440 t dm_register_target
-ffffffff816f7500 t dm_unregister_target
-ffffffff816f75c0 t dm_target_exit
-ffffffff816f75e0 t io_err_ctr
-ffffffff816f7600 t io_err_dtr
-ffffffff816f7610 t io_err_map
-ffffffff816f7620 t io_err_clone_and_map_rq
-ffffffff816f7630 t io_err_release_clone_rq
-ffffffff816f7640 t io_err_dax_direct_access
-ffffffff816f7660 t dm_linear_exit
-ffffffff816f7680 t linear_ctr
-ffffffff816f77a0 t linear_dtr
-ffffffff816f77d0 t linear_map
-ffffffff816f7840 t linear_status
-ffffffff816f7900 t linear_prepare_ioctl
-ffffffff816f7940 t linear_report_zones
-ffffffff816f7980 t linear_iterate_devices
-ffffffff816f79b0 t dm_stripe_exit
-ffffffff816f79d0 t stripe_ctr
-ffffffff816f7d40 t stripe_dtr
-ffffffff816f7da0 t stripe_map
-ffffffff816f7ed0 t stripe_end_io
-ffffffff816f7ff0 t stripe_status
-ffffffff816f8390 t stripe_iterate_devices
-ffffffff816f8410 t stripe_io_hints
-ffffffff816f8450 t trigger_event
-ffffffff816f8470 t stripe_map_range
-ffffffff816f86d0 t dm_deferred_remove
-ffffffff816f86f0 t dm_hash_remove_all.llvm.11899205543020515164
-ffffffff816f8870 t dm_interface_exit
-ffffffff816f88a0 t dm_copy_name_and_uuid
-ffffffff816f8940 t dm_hash_insert
-ffffffff816f8c70 t __hash_remove
-ffffffff816f8d70 t dm_poll
-ffffffff816f8db0 t dm_ctl_ioctl
-ffffffff816f93e0 t dm_open
-ffffffff816f9430 t dm_release
-ffffffff816f9450 t remove_all
-ffffffff816f9480 t list_devices
-ffffffff816f96f0 t dev_create
-ffffffff816f9800 t dev_remove
-ffffffff816f9930 t dev_rename
-ffffffff816f9e30 t dev_suspend
-ffffffff816fa070 t dev_status
-ffffffff816fa0e0 t dev_wait
-ffffffff816fa230 t table_load
-ffffffff816fa550 t table_clear
-ffffffff816fa600 t table_deps
-ffffffff816fa7e0 t table_status
-ffffffff816fa910 t list_versions
-ffffffff816fa9e0 t target_message
-ffffffff816facf0 t dev_set_geometry
-ffffffff816faec0 t dev_arm_poll
-ffffffff816faee0 t get_target_version
-ffffffff816fb080 t filter_device
-ffffffff816fb120 t __dev_status
-ffffffff816fb2e0 t __find_device_hash_cell
-ffffffff816fb490 t retrieve_status
-ffffffff816fb690 t list_version_get_needed
-ffffffff816fb6d0 t list_version_get_info
-ffffffff816fb790 t dm_io_client_create
-ffffffff816fb840 t dm_io_client_destroy
-ffffffff816fb870 t dm_io
-ffffffff816fbbc0 t dm_io_exit
-ffffffff816fbbf0 t list_get_page
-ffffffff816fbc20 t list_next_page
-ffffffff816fbc40 t bio_get_page
-ffffffff816fbcb0 t bio_next_page
-ffffffff816fbd50 t vm_get_page
-ffffffff816fbda0 t vm_next_page
-ffffffff816fbdd0 t km_get_page
-ffffffff816fbe30 t km_next_page
-ffffffff816fbe60 t sync_io_complete
-ffffffff816fbe80 t dispatch_io
-ffffffff816fc280 t endio
-ffffffff816fc330 t dm_kcopyd_exit
-ffffffff816fc360 t dm_kcopyd_copy
-ffffffff816fc730 t dispatch_job
-ffffffff816fc840 t dm_kcopyd_zero
-ffffffff816fc870 t dm_kcopyd_prepare_callback
-ffffffff816fc8e0 t dm_kcopyd_do_callback
-ffffffff816fc990 t push
-ffffffff816fca10 t dm_kcopyd_client_create
-ffffffff816fcd40 t do_work
-ffffffff816fce50 t dm_kcopyd_client_destroy
-ffffffff816fd000 t dm_kcopyd_client_flush
-ffffffff816fd020 t segment_complete
-ffffffff816fd250 t process_jobs
-ffffffff816fd460 t run_complete_job
-ffffffff816fd560 t run_pages_job
-ffffffff816fd6d0 t run_io_job
-ffffffff816fd8a0 t complete_io
-ffffffff816fda60 t dm_sysfs_init
-ffffffff816fdaa0 t dm_sysfs_exit
-ffffffff816fdad0 t dm_attr_show
-ffffffff816fdb30 t dm_attr_store
-ffffffff816fdba0 t dm_attr_name_show
-ffffffff816fdbe0 t dm_attr_uuid_show
-ffffffff816fdc20 t dm_attr_suspended_show
-ffffffff816fdc50 t dm_attr_use_blk_mq_show
-ffffffff816fdc80 t dm_stats_init
-ffffffff816fdd40 t dm_stats_cleanup
-ffffffff816fde50 t dm_stat_free
-ffffffff816fe070 t dm_stats_account_io
-ffffffff816fe4c0 t dm_stats_message
-ffffffff816ff0e0 t message_stats_print
-ffffffff816ff7d0 t dm_statistics_exit
-ffffffff816ff810 t dm_stats_create
-ffffffff816ffd20 t dm_kvzalloc
-ffffffff816ffe30 t __dm_stat_clear
-ffffffff816fffd0 t __dm_stat_init_temporary_percpu_totals
-ffffffff817001e0 t dm_get_reserved_rq_based_ios
-ffffffff81700210 t dm_request_based
-ffffffff81700230 t dm_start_queue
-ffffffff81700260 t dm_stop_queue
-ffffffff81700270 t dm_mq_kick_requeue_list
-ffffffff81700290 t dm_attr_rq_based_seq_io_merge_deadline_show
-ffffffff817002b0 t dm_attr_rq_based_seq_io_merge_deadline_store
-ffffffff817002c0 t dm_mq_init_request_queue
-ffffffff81700410 t dm_mq_cleanup_mapped_device
-ffffffff81700450 t dm_mq_queue_rq
-ffffffff81700850 t dm_softirq_done
-ffffffff81700aa0 t dm_mq_init_request
-ffffffff81700ad0 t dm_requeue_original_request
-ffffffff81700bb0 t dm_rq_bio_constructor
-ffffffff81700bd0 t end_clone_request
-ffffffff81700c00 t end_clone_bio
-ffffffff81700c70 t dm_io_rewind
-ffffffff81700e30 t dm_kobject_release
-ffffffff81700e50 t dm_bufio_get
-ffffffff81700e70 t new_read.llvm.14713201340224700140
-ffffffff81701060 t dm_bufio_read
-ffffffff81701090 t dm_bufio_new
-ffffffff817010c0 t dm_bufio_prefetch
-ffffffff81701270 t dm_bufio_lock
-ffffffff817012a0 t __bufio_new
-ffffffff81701660 t dm_bufio_unlock
-ffffffff81701690 t __flush_write_list
-ffffffff81701780 t submit_io
-ffffffff81701a70 t read_endio
-ffffffff81701aa0 t dm_bufio_release
-ffffffff81701bf0 t __unlink_buffer
-ffffffff81701d10 t dm_bufio_mark_partial_buffer_dirty
-ffffffff81701e70 t dm_bufio_mark_buffer_dirty
-ffffffff81701e90 t dm_bufio_write_dirty_buffers_async
-ffffffff81702010 t __write_dirty_buffers_async
-ffffffff81702200 t dm_bufio_write_dirty_buffers
-ffffffff817026b0 t dm_bufio_issue_flush
-ffffffff81702760 t dm_bufio_issue_discard
-ffffffff81702840 t dm_bufio_release_move
-ffffffff81702b10 t __wait_for_free_buffer
-ffffffff81702bf0 t __make_buffer_clean
-ffffffff81702cc0 t __link_buffer
-ffffffff81702e90 t write_endio
-ffffffff81702f00 t dm_bufio_forget
-ffffffff81702f90 t forget_buffer_locked
-ffffffff81703040 t dm_bufio_forget_buffers
-ffffffff81703120 t dm_bufio_set_minimum_buffers
-ffffffff81703140 t dm_bufio_get_block_size
-ffffffff81703150 t dm_bufio_get_device_size
-ffffffff817031b0 t dm_bufio_get_dm_io_client
-ffffffff817031d0 t dm_bufio_get_block_number
-ffffffff817031e0 t dm_bufio_get_block_data
-ffffffff817031f0 t dm_bufio_get_aux_data
-ffffffff81703210 t dm_bufio_get_client
-ffffffff81703220 t dm_bufio_client_create
-ffffffff817038c0 t alloc_buffer
-ffffffff817039a0 t shrink_work
-ffffffff81703b60 t dm_bufio_shrink_count
-ffffffff81703bd0 t dm_bufio_shrink_scan
-ffffffff81703c10 t free_buffer
-ffffffff81703c90 t dm_bufio_client_destroy
-ffffffff81704080 t dm_bufio_set_sector_offset
-ffffffff817040a0 t __get_unclaimed_buffer
-ffffffff81704180 t bio_complete
-ffffffff817041d0 t dmio_complete
-ffffffff81704200 t __try_evict_buffer
-ffffffff817042f0 t work_fn
-ffffffff81704680 t do_global_cleanup
-ffffffff817048f0 t dm_bufio_trylock
-ffffffff81704920 t crypt_ctr
-ffffffff81705bb0 t crypt_dtr
-ffffffff81705d60 t crypt_map
-ffffffff81705fa0 t crypt_postsuspend
-ffffffff81705fc0 t crypt_preresume
-ffffffff81706000 t crypt_resume
-ffffffff81706020 t crypt_status
-ffffffff81706740 t crypt_message
-ffffffff81706900 t crypt_report_zones
-ffffffff81706940 t crypt_iterate_devices
-ffffffff81706970 t crypt_io_hints
-ffffffff817069d0 t crypt_page_alloc
-ffffffff81706a40 t crypt_page_free
-ffffffff81706a70 t dmcrypt_write
-ffffffff81706bd0 t crypt_set_key
-ffffffff81706ca0 t crypt_alloc_tfms
-ffffffff81706dd0 t crypt_free_tfms
-ffffffff81706eb0 t crypt_iv_plain_gen
-ffffffff81706ef0 t crypt_iv_plain64_gen
-ffffffff81706f30 t crypt_iv_plain64be_gen
-ffffffff81706f80 t crypt_iv_essiv_gen
-ffffffff81706fc0 t crypt_iv_benbi_ctr
-ffffffff81707040 t crypt_iv_benbi_dtr
-ffffffff81707050 t crypt_iv_benbi_gen
-ffffffff817070b0 t crypt_iv_null_gen
-ffffffff817070d0 t crypt_iv_eboiv_ctr
-ffffffff81707120 t crypt_iv_eboiv_gen
-ffffffff81707350 t crypt_iv_elephant_ctr
-ffffffff817073f0 t crypt_iv_elephant_dtr
-ffffffff81707420 t crypt_iv_elephant_init
-ffffffff81707460 t crypt_iv_elephant_wipe
-ffffffff81707500 t crypt_iv_elephant_gen
-ffffffff81707550 t crypt_iv_elephant_post
-ffffffff81707580 t crypt_iv_elephant
-ffffffff81707ec0 t crypt_iv_lmk_ctr
-ffffffff81707fd0 t crypt_iv_lmk_dtr
-ffffffff81708020 t crypt_iv_lmk_init
-ffffffff81708070 t crypt_iv_lmk_wipe
-ffffffff817080d0 t crypt_iv_lmk_gen
-ffffffff817081c0 t crypt_iv_lmk_post
-ffffffff817082d0 t crypt_iv_lmk_one
-ffffffff81708490 t crypt_iv_tcw_ctr
-ffffffff817085e0 t crypt_iv_tcw_dtr
-ffffffff81708650 t crypt_iv_tcw_init
-ffffffff817086c0 t crypt_iv_tcw_wipe
-ffffffff81708700 t crypt_iv_tcw_gen
-ffffffff81708850 t crypt_iv_tcw_post
-ffffffff81708920 t crypt_iv_tcw_whitening
-ffffffff81708bc0 t crypt_iv_random_gen
-ffffffff81708be0 t crypt_setkey
-ffffffff81708dd0 t kcryptd_io_read
-ffffffff81708e80 t kcryptd_queue_crypt
-ffffffff81708f80 t crypt_endio
-ffffffff817090c0 t crypt_dec_pending
-ffffffff817091b0 t crypt_free_buffer_pages
-ffffffff81709290 t kcryptd_io_bio_endio
-ffffffff817092b0 t kcryptd_io_read_work
-ffffffff817092f0 t kcryptd_crypt_tasklet
-ffffffff81709300 t kcryptd_crypt
-ffffffff817098f0 t crypt_convert
-ffffffff8170aa40 t kcryptd_crypt_read_continue
-ffffffff8170aab0 t kcryptd_async_done
-ffffffff8170ac50 t kcryptd_crypt_write_io_submit
-ffffffff8170adb0 t kcryptd_crypt_write_continue
-ffffffff8170ae60 t verity_fec_is_enabled
-ffffffff8170ae90 t verity_fec_decode
-ffffffff8170b040 t fec_decode_rsb
-ffffffff8170bad0 t fec_bv_copy
-ffffffff8170bb20 t verity_fec_finish_io
-ffffffff8170bc00 t verity_fec_init_io
-ffffffff8170bc70 t verity_fec_status_table
-ffffffff8170bcd0 t verity_fec_dtr
-ffffffff8170bd70 t verity_is_fec_opt_arg
-ffffffff8170bde0 t verity_fec_parse_opt_args
-ffffffff8170bff0 t verity_fec_ctr_alloc
-ffffffff8170c040 t verity_fec_ctr
-ffffffff8170c3f0 t fec_rs_alloc
-ffffffff8170c430 t fec_rs_free
-ffffffff8170c450 t verity_hash
-ffffffff8170c580 t verity_hash_init
-ffffffff8170c660 t verity_hash_update
-ffffffff8170c7f0 t verity_hash_for_block
-ffffffff8170c8e0 t verity_verify_level
-ffffffff8170caf0 t verity_for_bv_block
-ffffffff8170ccc0 t dm_is_verity_target
-ffffffff8170cce0 t dm_verity_get_mode
-ffffffff8170cd10 t dm_verity_get_root_digest
-ffffffff8170cd70 t verity_handle_err
-ffffffff8170cf30 t verity_ctr
-ffffffff8170d690 t verity_dtr
-ffffffff8170d760 t verity_map
-ffffffff8170d9c0 t verity_status
-ffffffff8170e160 t verity_prepare_ioctl
-ffffffff8170e1a0 t verity_iterate_devices
-ffffffff8170e1d0 t verity_io_hints
-ffffffff8170e220 t verity_parse_opt_args
-ffffffff8170e5a0 t dm_bufio_alloc_callback
-ffffffff8170e5c0 t verity_end_io
-ffffffff8170e6c0 t verity_tasklet
-ffffffff8170e770 t verity_verify_io
-ffffffff8170ee60 t verity_bv_zero
-ffffffff8170ee80 t verity_prefetch_io
-ffffffff8170ef70 t user_ctr
-ffffffff8170f0f0 t user_dtr
-ffffffff8170f150 t user_map
-ffffffff8170f6d0 t dev_read
-ffffffff8170fbc0 t dev_write
-ffffffff8170fed0 t dev_open
-ffffffff8170ffa0 t dev_open
-ffffffff81710080 t dev_release
-ffffffff817101a0 t msg_copy_from_iov
-ffffffff81710370 t target_put
-ffffffff81710530 t process_delayed_work
-ffffffff817105f0 t edac_dimm_info_location
-ffffffff81710710 t edac_mc_alloc
-ffffffff81710d30 t mci_release
-ffffffff81710e70 t edac_mc_free
-ffffffff81710e90 t edac_has_mcs
-ffffffff81710ed0 t find_mci_by_dev
-ffffffff81710f40 t edac_mc_reset_delay_period
-ffffffff81710fc0 t edac_mc_find
-ffffffff81711020 t edac_get_owner
-ffffffff81711040 t edac_mc_add_mc_with_groups
-ffffffff81711320 t edac_mc_workq_function
-ffffffff817113b0 t edac_mc_del_mc
-ffffffff817114d0 t edac_mc_find_csrow_by_page
-ffffffff81711630 t edac_raw_mc_handle_error
-ffffffff81711bb0 t edac_mc_handle_error
-ffffffff81712160 t edac_device_alloc_ctl_info
-ffffffff81712580 t edac_device_free_ctl_info
-ffffffff817125a0 t edac_device_reset_delay_period
-ffffffff817125f0 t edac_device_alloc_index
-ffffffff81712610 t edac_device_add_device
-ffffffff81712870 t edac_device_del_device
-ffffffff81712970 t edac_device_handle_ce_count
-ffffffff81712a40 t edac_device_handle_ue_count
-ffffffff81712b90 t edac_device_workq_function
-ffffffff81712c30 t edac_mc_get_log_ue
-ffffffff81712c50 t edac_mc_get_log_ce
-ffffffff81712c70 t edac_mc_get_panic_on_ue
-ffffffff81712c90 t edac_mc_get_poll_msec
-ffffffff81712cb0 t edac_create_sysfs_mci_device
-ffffffff81712f70 t edac_remove_sysfs_mci_device
-ffffffff81713030 t mc_attr_release
-ffffffff81713040 t edac_mc_sysfs_exit
-ffffffff81713060 t edac_set_poll_msec
-ffffffff817130e0 t mci_attr_is_visible
-ffffffff81713130 t mci_sdram_scrub_rate_show
-ffffffff81713180 t mci_sdram_scrub_rate_store
-ffffffff81713220 t mci_reset_counters_store
-ffffffff81713310 t mci_ctl_name_show
-ffffffff81713340 t mci_size_mb_show
-ffffffff81713470 t mci_seconds_show
-ffffffff817134b0 t mci_ue_noinfo_show
-ffffffff817134e0 t mci_ce_noinfo_show
-ffffffff81713510 t mci_ue_count_show
-ffffffff81713540 t mci_ce_count_show
-ffffffff81713570 t mci_max_location_show
-ffffffff81713630 t dimm_release
-ffffffff81713640 t dimmdev_label_show
-ffffffff81713680 t dimmdev_label_store
-ffffffff817136f0 t dimmdev_location_show
-ffffffff81713740 t dimmdev_size_show
-ffffffff81713770 t dimmdev_mem_type_show
-ffffffff817137a0 t dimmdev_dev_type_show
-ffffffff817137e0 t dimmdev_edac_mode_show
-ffffffff81713820 t dimmdev_ce_count_show
-ffffffff81713850 t dimmdev_ue_count_show
-ffffffff81713880 t csrow_release
-ffffffff81713890 t csrow_dev_type_show
-ffffffff817138e0 t csrow_mem_type_show
-ffffffff81713920 t csrow_edac_mode_show
-ffffffff81713970 t csrow_size_show
-ffffffff81713a60 t csrow_ue_count_show
-ffffffff81713a90 t csrow_ce_count_show
-ffffffff81713ac0 t csrow_dev_is_visible
-ffffffff81713b30 t channel_dimm_label_show
-ffffffff81713b80 t channel_dimm_label_store
-ffffffff81713c00 t channel_ce_count_show
-ffffffff81713c30 t edac_op_state_to_string
-ffffffff81713cc0 t edac_get_sysfs_subsys
-ffffffff81713ce0 t edac_device_register_sysfs_main_kobj
-ffffffff81713db0 t edac_device_unregister_sysfs_main_kobj
-ffffffff81713dd0 t edac_device_create_sysfs
-ffffffff817142a0 t edac_device_remove_sysfs
-ffffffff81714430 t edac_device_ctrl_master_release
-ffffffff81714480 t edac_dev_ctl_info_show
-ffffffff817144c0 t edac_dev_ctl_info_store
-ffffffff81714500 t edac_device_ctl_panic_on_ue_show
-ffffffff81714520 t edac_device_ctl_panic_on_ue_store
-ffffffff81714560 t edac_device_ctl_log_ue_show
-ffffffff81714580 t edac_device_ctl_log_ue_store
-ffffffff817145c0 t edac_device_ctl_log_ce_show
-ffffffff817145e0 t edac_device_ctl_log_ce_store
-ffffffff81714620 t edac_device_ctl_poll_msec_show
-ffffffff81714640 t edac_device_ctl_poll_msec_store
-ffffffff81714680 t edac_device_ctrl_instance_release
-ffffffff817146a0 t edac_dev_instance_show
-ffffffff817146d0 t edac_dev_instance_store
-ffffffff81714710 t instance_ce_count_show
-ffffffff81714730 t instance_ue_count_show
-ffffffff81714750 t edac_device_ctrl_block_release
-ffffffff81714770 t edac_dev_block_show
-ffffffff817147a0 t edac_dev_block_store
-ffffffff817147d0 t block_ce_count_show
-ffffffff81714800 t block_ue_count_show
-ffffffff81714830 t edac_queue_work
-ffffffff81714860 t edac_mod_work
-ffffffff81714890 t edac_stop_work
-ffffffff817148c0 t edac_workqueue_setup
-ffffffff81714900 t edac_workqueue_teardown
-ffffffff81714930 t edac_pci_alloc_ctl_info
-ffffffff817149d0 t edac_pci_free_ctl_info
-ffffffff817149e0 t edac_pci_alloc_index
-ffffffff81714a00 t edac_pci_add_device
-ffffffff81714c30 t edac_pci_workq_function
-ffffffff81714ca0 t edac_pci_del_device
-ffffffff81714d90 t edac_pci_create_generic_ctl
-ffffffff81714ea0 t edac_pci_generic_check
-ffffffff81714eb0 t edac_pci_release_generic_ctl
-ffffffff81714ee0 t edac_pci_get_check_errors
-ffffffff81714f00 t edac_pci_get_poll_msec
-ffffffff81714f10 t edac_pci_create_sysfs
-ffffffff81715070 t edac_pci_remove_sysfs
-ffffffff817150c0 t edac_pci_do_parity_check
-ffffffff81715440 t edac_pci_clear_parity_errors
-ffffffff817155c0 t edac_pci_handle_pe
-ffffffff81715600 t edac_pci_handle_npe
-ffffffff81715640 t edac_pci_release_main_kobj
-ffffffff81715650 t edac_pci_dev_show
-ffffffff81715680 t edac_pci_dev_store
-ffffffff817156c0 t edac_pci_int_show
-ffffffff817156e0 t edac_pci_int_store
-ffffffff81715720 t edac_pci_instance_release
-ffffffff81715750 t edac_pci_instance_show
-ffffffff81715790 t edac_pci_instance_store
-ffffffff817157d0 t instance_pe_count_show
-ffffffff81715800 t instance_npe_count_show
-ffffffff81715830 t cpufreq_supports_freq_invariance
-ffffffff81715850 t disable_cpufreq
-ffffffff81715870 t have_governor_per_policy
-ffffffff81715890 t get_governor_parent_kobj
-ffffffff817158c0 t get_cpu_idle_time
-ffffffff817159b0 t cpufreq_generic_init
-ffffffff817159e0 t cpufreq_cpu_get_raw
-ffffffff81715a20 t cpufreq_generic_get
-ffffffff81715a90 t cpufreq_cpu_get
-ffffffff81715b20 t cpufreq_cpu_put
-ffffffff81715b40 t cpufreq_cpu_release
-ffffffff81715b80 t cpufreq_cpu_acquire
-ffffffff81715c60 t cpufreq_freq_transition_begin
-ffffffff81715e00 t cpufreq_notify_transition
-ffffffff81715f30 t cpufreq_freq_transition_end
-ffffffff81716030 t cpufreq_enable_fast_switch
-ffffffff817160e0 t cpufreq_disable_fast_switch
-ffffffff81716130 t cpufreq_driver_resolve_freq
-ffffffff81716150 t __resolve_freq.llvm.12424873168283460255
-ffffffff81716450 t cpufreq_policy_transition_delay_us
-ffffffff817164a0 t cpufreq_show_cpus
-ffffffff81716530 t refresh_frequency_limits
-ffffffff81716570 t cpufreq_set_policy
-ffffffff81716ab0 t cpufreq_quick_get
-ffffffff81716bb0 t cpufreq_quick_get_max
-ffffffff81716c60 t cpufreq_get_hw_max_freq
-ffffffff81716d10 t cpufreq_get
-ffffffff81716e20 t cpufreq_generic_suspend
-ffffffff81716e80 t __cpufreq_driver_target
-ffffffff817170c0 t cpufreq_suspend
-ffffffff81717210 t cpufreq_stop_governor
-ffffffff81717240 t cpufreq_resume
-ffffffff817173d0 t cpufreq_start_governor
-ffffffff81717450 t cpufreq_driver_test_flags
-ffffffff81717470 t cpufreq_get_current_driver
-ffffffff81717490 t cpufreq_get_driver_data
-ffffffff817174c0 t cpufreq_register_notifier
-ffffffff81717560 t cpufreq_unregister_notifier
-ffffffff817175f0 t cpufreq_driver_fast_switch
-ffffffff817176b0 t cpufreq_driver_adjust_perf
-ffffffff817176d0 t cpufreq_driver_has_adjust_perf
-ffffffff817176f0 t cpufreq_driver_target
-ffffffff81717740 t cpufreq_verify_current_freq
-ffffffff81717880 t cpufreq_register_governor
-ffffffff81717960 t cpufreq_unregister_governor
-ffffffff81717a70 t cpufreq_get_policy
-ffffffff81717b40 t cpufreq_update_policy
-ffffffff81717be0 t cpufreq_update_limits
-ffffffff81717c10 t cpufreq_boost_trigger_state
-ffffffff81717d40 t cpufreq_enable_boost_support
-ffffffff81717dc0 t cpufreq_boost_set_sw
-ffffffff81717e20 t create_boost_sysfs_file
-ffffffff81717e60 t cpufreq_boost_enabled
-ffffffff81717e80 t cpufreq_register_driver
-ffffffff81718090 t cpuhp_cpufreq_online
-ffffffff817180b0 t cpuhp_cpufreq_offline
-ffffffff81718110 t cpufreq_unregister_driver
-ffffffff817181c0 t show_boost
-ffffffff817181f0 t store_boost
-ffffffff81718290 t cpufreq_add_dev
-ffffffff81718330 t cpufreq_remove_dev
-ffffffff81718410 t cpufreq_online
-ffffffff81718fc0 t cpufreq_policy_free
-ffffffff81719190 t cpufreq_notifier_min
-ffffffff817191c0 t cpufreq_notifier_max
-ffffffff817191f0 t handle_update
-ffffffff81719250 t cpufreq_sysfs_release
-ffffffff81719270 t show
-ffffffff81719300 t store
-ffffffff817193a0 t show_cpuinfo_min_freq
-ffffffff817193c0 t show_cpuinfo_max_freq
-ffffffff817193e0 t show_cpuinfo_transition_latency
-ffffffff81719400 t show_scaling_min_freq
-ffffffff81719420 t store_scaling_min_freq
-ffffffff817194b0 t show_scaling_max_freq
-ffffffff817194d0 t store_scaling_max_freq
-ffffffff81719560 t show_affected_cpus
-ffffffff817195f0 t show_related_cpus
-ffffffff81719680 t show_scaling_governor
-ffffffff81719710 t store_scaling_governor
-ffffffff81719890 t show_scaling_driver
-ffffffff817198c0 t show_scaling_available_governors
-ffffffff817199a0 t show_scaling_setspeed
-ffffffff817199f0 t store_scaling_setspeed
-ffffffff81719a90 t show_cpuinfo_cur_freq
-ffffffff81719b00 t show_scaling_cur_freq
-ffffffff81719b60 t show_bios_limit
-ffffffff81719bf0 t __cpufreq_offline
-ffffffff81719de0 t policy_has_boost_freq
-ffffffff81719e30 t cpufreq_frequency_table_cpuinfo
-ffffffff81719eb0 t cpufreq_frequency_table_verify
-ffffffff81719fb0 t cpufreq_generic_frequency_table_verify
-ffffffff8171a0b0 t cpufreq_table_index_unsorted
-ffffffff8171a1f0 t cpufreq_frequency_table_get_index
-ffffffff8171a250 t scaling_available_frequencies_show
-ffffffff8171a2d0 t scaling_boost_frequencies_show
-ffffffff8171a350 t cpufreq_table_validate_and_sort
-ffffffff8171a440 t cpufreq_stats_free_table
-ffffffff8171a490 t cpufreq_stats_create_table
-ffffffff8171a640 t cpufreq_stats_record_transition
-ffffffff8171a710 t cpufreq_stats_reset_table
-ffffffff8171a7a0 t show_total_trans
-ffffffff8171a7e0 t show_time_in_state
-ffffffff8171a8e0 t store_reset
-ffffffff8171a920 t show_trans_table
-ffffffff8171ab70 t cpufreq_task_times_init
-ffffffff8171abb0 t cpufreq_task_times_alloc
-ffffffff8171ac20 t cpufreq_task_times_exit
-ffffffff8171ac80 t proc_time_in_state_show
-ffffffff8171adb0 t cpufreq_acct_update_power
-ffffffff8171ae90 t cpufreq_times_create_policy
-ffffffff8171b000 t cpufreq_times_record_transition
-ffffffff8171b060 t cpufreq_fallback_governor
-ffffffff8171b080 t cpufreq_gov_performance_limits
-ffffffff8171b0a0 t cpufreq_gov_powersave_limits
-ffffffff8171b0c0 t cs_dbs_update
-ffffffff8171b210 t cs_alloc
-ffffffff8171b240 t cs_free
-ffffffff8171b250 t cs_init
-ffffffff8171b2c0 t cs_exit
-ffffffff8171b2e0 t cs_start
-ffffffff8171b310 t sampling_rate_show
-ffffffff8171b340 t sampling_down_factor_show
-ffffffff8171b370 t sampling_down_factor_store
-ffffffff8171b3f0 t up_threshold_show
-ffffffff8171b420 t up_threshold_store
-ffffffff8171b4b0 t down_threshold_show
-ffffffff8171b4e0 t down_threshold_store
-ffffffff8171b570 t ignore_nice_load_show
-ffffffff8171b5a0 t ignore_nice_load_store
-ffffffff8171b640 t freq_step_show
-ffffffff8171b670 t freq_step_store
-ffffffff8171b700 t sampling_rate_store
-ffffffff8171b7c0 t gov_update_cpu_data
-ffffffff8171b890 t dbs_update
-ffffffff8171ba70 t cpufreq_dbs_governor_init
-ffffffff8171bd70 t cpufreq_dbs_data_release
-ffffffff8171bda0 t cpufreq_dbs_governor_exit
-ffffffff8171be90 t cpufreq_dbs_governor_start
-ffffffff8171c040 t cpufreq_dbs_governor_stop
-ffffffff8171c0c0 t cpufreq_dbs_governor_limits
-ffffffff8171c140 t dbs_irq_work
-ffffffff8171c170 t dbs_work_handler
-ffffffff8171c1e0 t dbs_update_util_handler
-ffffffff8171c260 t governor_show.llvm.1457409218143354876
-ffffffff8171c280 t governor_store.llvm.1457409218143354876
-ffffffff8171c2f0 t gov_attr_set_init
-ffffffff8171c360 t gov_attr_set_get
-ffffffff8171c3c0 t gov_attr_set_put
-ffffffff8171c440 t notify_hwp_interrupt
-ffffffff8171c530 t intel_cpufreq_adjust_perf
-ffffffff8171c6f0 t hybrid_get_cpu_scaling
-ffffffff8171c750 t intel_pstate_register_driver
-ffffffff8171c800 t set_power_ctl_ee_state
-ffffffff8171c8a0 t core_get_max_pstate
-ffffffff8171c9b0 t core_get_max_pstate_physical
-ffffffff8171ca00 t core_get_min_pstate
-ffffffff8171ca60 t core_get_turbo_pstate
-ffffffff8171cac0 t core_get_scaling
-ffffffff8171cad0 t core_get_val
-ffffffff8171cb10 t show_energy_performance_preference
-ffffffff8171cc80 t store_energy_performance_preference
-ffffffff8171cfe0 t show_energy_performance_available_preferences
-ffffffff8171d090 t show_base_frequency
-ffffffff8171d170 t intel_pstate_cpu_init
-ffffffff8171d250 t intel_pstate_verify_policy
-ffffffff8171d280 t intel_pstate_set_policy
-ffffffff8171d780 t intel_pstate_update_limits
-ffffffff8171d8a0 t intel_pstate_cpu_online
-ffffffff8171d8f0 t intel_pstate_cpu_offline
-ffffffff8171d940 t intel_pstate_cpu_exit
-ffffffff8171d960 t intel_pstate_suspend
-ffffffff8171d9e0 t intel_pstate_resume
-ffffffff8171db40 t __intel_pstate_cpu_init
-ffffffff8171ded0 t intel_pstate_init_acpi_perf_limits
-ffffffff8171e070 t intel_pstate_hwp_enable
-ffffffff8171e260 t intel_pstate_notify_work
-ffffffff8171e370 t intel_pstate_set_pstate
-ffffffff8171e400 t intel_pstste_sched_itmt_work_fn
-ffffffff8171e410 t intel_pstate_verify_cpu_policy
-ffffffff8171e5c0 t intel_pstate_update_util_hwp
-ffffffff8171e720 t intel_pstate_update_util
-ffffffff8171ea40 t intel_pstate_sample
-ffffffff8171ebb0 t intel_cpufreq_cpu_offline
-ffffffff8171ed10 t intel_cpufreq_cpu_init
-ffffffff8171efe0 t intel_cpufreq_verify_policy
-ffffffff8171f100 t intel_cpufreq_target
-ffffffff8171f250 t intel_cpufreq_fast_switch
-ffffffff8171f2f0 t intel_cpufreq_cpu_exit
-ffffffff8171f330 t intel_cpufreq_suspend
-ffffffff8171f400 t intel_cpufreq_update_pstate
-ffffffff8171f550 t intel_cpufreq_trace
-ffffffff8171f620 t hybrid_get_type
-ffffffff8171f640 t atom_get_max_pstate
-ffffffff8171f680 t atom_get_min_pstate
-ffffffff8171f6c0 t atom_get_turbo_pstate
-ffffffff8171f700 t silvermont_get_scaling
-ffffffff8171f750 t atom_get_val
-ffffffff8171f7e0 t atom_get_vid
-ffffffff8171f8a0 t airmont_get_scaling
-ffffffff8171f8f0 t knl_get_turbo_pstate
-ffffffff8171f950 t knl_get_aperf_mperf_shift
-ffffffff8171f960 t show_status
-ffffffff8171f9e0 t store_status
-ffffffff8171fc40 t intel_pstate_driver_cleanup
-ffffffff8171fd30 t show_hwp_dynamic_boost
-ffffffff8171fd60 t store_hwp_dynamic_boost
-ffffffff8171fe20 t show_no_turbo
-ffffffff8171fee0 t store_no_turbo
-ffffffff817200b0 t show_turbo_pct
-ffffffff81720170 t show_num_pstates
-ffffffff817201f0 t show_max_perf_pct
-ffffffff81720220 t store_max_perf_pct
-ffffffff81720350 t update_qos_request
-ffffffff817204e0 t show_min_perf_pct
-ffffffff81720510 t store_min_perf_pct
-ffffffff81720650 t show_energy_efficiency
-ffffffff817206b0 t store_energy_efficiency
-ffffffff81720710 t cpuidle_disabled
-ffffffff81720730 t disable_cpuidle
-ffffffff81720750 t cpuidle_not_available
-ffffffff81720780 t cpuidle_play_dead
-ffffffff817207f0 t cpuidle_use_deepest_state
-ffffffff81720850 t cpuidle_find_deepest_state
-ffffffff81720970 t cpuidle_enter_s2idle
-ffffffff81720b00 t cpuidle_enter_state
-ffffffff81720f40 t cpuidle_select
-ffffffff81720f60 t cpuidle_enter
-ffffffff81720fa0 t cpuidle_reflect
-ffffffff81720fd0 t cpuidle_poll_time
-ffffffff81721150 t cpuidle_install_idle_handler
-ffffffff81721170 t cpuidle_uninstall_idle_handler
-ffffffff817211a0 t cpuidle_pause_and_lock
-ffffffff817211e0 t cpuidle_resume_and_unlock
-ffffffff81721210 t cpuidle_pause
-ffffffff81721250 t cpuidle_resume
-ffffffff81721290 t cpuidle_enable_device
-ffffffff81721330 t cpuidle_disable_device
-ffffffff81721390 t cpuidle_register_device
-ffffffff817215e0 t cpuidle_unregister_device
-ffffffff81721700 t cpuidle_unregister
-ffffffff81721780 t cpuidle_register
-ffffffff817218a0 t cpuidle_register_driver
-ffffffff81721ac0 t cpuidle_get_driver
-ffffffff81721b10 t cpuidle_unregister_driver
-ffffffff81721c00 t cpuidle_get_cpu_driver
-ffffffff81721c20 t cpuidle_driver_state_disabled
-ffffffff81721d30 t cpuidle_setup_broadcast_timer
-ffffffff81721d50 t cpuidle_find_governor
-ffffffff81721db0 t cpuidle_switch_governor
-ffffffff81721e70 t cpuidle_register_governor
-ffffffff81721fb0 t cpuidle_governor_latency_req
-ffffffff81722000 t cpuidle_add_interface
-ffffffff81722020 t cpuidle_remove_interface
-ffffffff81722040 t cpuidle_add_device_sysfs
-ffffffff81722240 t cpuidle_remove_device_sysfs
-ffffffff81722300 t cpuidle_add_sysfs
-ffffffff817223d0 t cpuidle_remove_sysfs
-ffffffff81722400 t show_available_governors
-ffffffff817224a0 t show_current_driver
-ffffffff81722500 t show_current_governor
-ffffffff81722560 t store_current_governor
-ffffffff81722670 t cpuidle_state_sysfs_release
-ffffffff81722690 t cpuidle_state_show
-ffffffff817226d0 t cpuidle_state_store
-ffffffff81722710 t show_state_name
-ffffffff81722750 t show_state_desc
-ffffffff817227a0 t show_state_exit_latency
-ffffffff817227e0 t show_state_target_residency
-ffffffff81722820 t show_state_power_usage
-ffffffff81722850 t show_state_usage
-ffffffff81722870 t show_state_rejected
-ffffffff81722890 t show_state_time
-ffffffff817228d0 t show_state_disable
-ffffffff81722900 t store_state_disable
-ffffffff817229a0 t show_state_above
-ffffffff817229c0 t show_state_below
-ffffffff817229e0 t show_state_default_status
-ffffffff81722a20 t show_state_s2idle_usage
-ffffffff81722a40 t show_state_s2idle_time
-ffffffff81722a60 t cpuidle_sysfs_release
-ffffffff81722a80 t cpuidle_show
-ffffffff81722ae0 t cpuidle_store
-ffffffff81722b50 t menu_enable_device
-ffffffff81722c10 t menu_select
-ffffffff81723460 t menu_reflect
-ffffffff817234c0 t cpuidle_poll_state_init
-ffffffff81723530 t haltpoll_uninit
-ffffffff81723580 t default_enter_idle
-ffffffff817235b0 t haltpoll_cpu_online
-ffffffff81723620 t haltpoll_cpu_offline
-ffffffff81723660 t dmi_check_system
-ffffffff817236d0 t dmi_matches
-ffffffff817237e0 t dmi_first_match
-ffffffff81723820 t dmi_get_system_info
-ffffffff81723840 t dmi_name_in_serial
-ffffffff81723880 t dmi_name_in_vendors
-ffffffff817238e0 t dmi_find_device
-ffffffff81723950 t dmi_get_date
-ffffffff81723af0 t dmi_get_bios_year
-ffffffff81723b60 t dmi_walk
-ffffffff81723cb0 t dmi_match
-ffffffff81723cf0 t dmi_memdev_name
-ffffffff81723d50 t dmi_memdev_size
-ffffffff81723db0 t dmi_memdev_type
-ffffffff81723e00 t dmi_memdev_handle
-ffffffff81723e40 t raw_table_read
-ffffffff81723e70 t sys_dmi_field_show
-ffffffff81723eb0 t sys_dmi_modalias_show
-ffffffff81723ee0 t get_modalias
-ffffffff81724020 t dmi_dev_uevent
-ffffffff817240b0 t firmware_map_add_entry
-ffffffff81724150 t add_sysfs_fw_map_entry
-ffffffff817241d0 t memmap_attr_show
-ffffffff817241f0 t efi_runtime_disabled
-ffffffff81724210 t __efi_soft_reserve_enabled
-ffffffff81724230 t efi_mem_desc_lookup
-ffffffff81724340 t efi_mem_attributes
-ffffffff817243d0 t efi_mem_type
-ffffffff81724460 t efi_status_to_err
-ffffffff81724560 t systab_show
-ffffffff81724620 t fw_platform_size_show
-ffffffff81724650 t efivars_kobject
-ffffffff81724680 t efivars_register
-ffffffff817246e0 t efivars_unregister
-ffffffff81724760 t efivar_supports_writes
-ffffffff81724790 t efivar_lock
-ffffffff817247e0 t efivar_trylock
-ffffffff81724830 t efivar_unlock
-ffffffff81724850 t efivar_get_variable
-ffffffff81724870 t efivar_get_next_variable
-ffffffff81724890 t efivar_set_variable_locked
-ffffffff81724980 t efivar_set_variable
-ffffffff81724ac0 t efi_reboot
-ffffffff81724b10 t efi_power_off
-ffffffff81724b40 t esrt_attr_is_visible
-ffffffff81724b70 t fw_resource_count_show
-ffffffff81724ba0 t fw_resource_count_max_show
-ffffffff81724bd0 t fw_resource_version_show
-ffffffff81724c00 t esre_release
-ffffffff81724c50 t esre_attr_show
-ffffffff81724ca0 t fw_class_show
-ffffffff81724ce0 t fw_type_show
-ffffffff81724d10 t fw_version_show
-ffffffff81724d40 t lowest_supported_fw_version_show
-ffffffff81724d70 t capsule_flags_show
-ffffffff81724da0 t last_attempt_version_show
-ffffffff81724dd0 t last_attempt_status_show
-ffffffff81724e00 t efi_get_runtime_map_size
-ffffffff81724e20 t efi_get_runtime_map_desc_size
-ffffffff81724e40 t efi_runtime_map_copy
-ffffffff81724e70 t map_attr_show
-ffffffff81724e90 t phys_addr_show
-ffffffff81724ec0 t virt_addr_show
-ffffffff81724ef0 t num_pages_show
-ffffffff81724f20 t attribute_show
-ffffffff81724f50 t efi_call_virt_save_flags
-ffffffff81724fa0 t efi_call_virt_check_flags
-ffffffff81725060 t efi_native_runtime_setup
-ffffffff81725110 t virt_efi_get_time
-ffffffff81725290 t virt_efi_set_time
-ffffffff81725410 t virt_efi_get_wakeup_time
-ffffffff81725590 t virt_efi_set_wakeup_time
-ffffffff81725740 t virt_efi_get_variable
-ffffffff817258e0 t virt_efi_get_next_variable
-ffffffff81725a60 t virt_efi_set_variable
-ffffffff81725c10 t virt_efi_set_variable_nonblocking
-ffffffff81725dd0 t virt_efi_get_next_high_mono_count
-ffffffff81725f50 t virt_efi_reset_system
-ffffffff81726110 t virt_efi_query_variable_info
-ffffffff817262e0 t virt_efi_query_variable_info_nonblocking
-ffffffff817264b0 t virt_efi_update_capsule
-ffffffff81726670 t virt_efi_query_capsule_caps
-ffffffff81726840 t efi_call_rts
-ffffffff817276c0 t efi_earlycon_scroll_up
-ffffffff81727790 t efi_earlycon_write
-ffffffff81727ab0 t acpi_pm_read_verified
-ffffffff81727b10 t __UNIQUE_ID_acpi_pm_check_blacklist268
-ffffffff81727b60 t __UNIQUE_ID_acpi_pm_check_graylist270
-ffffffff81727ba0 t __UNIQUE_ID_acpi_pm_check_graylist272
-ffffffff81727be0 t acpi_pm_read_slow
-ffffffff81727c40 t acpi_pm_read
-ffffffff81727c60 t pit_next_event
-ffffffff81727cb0 t pit_set_periodic
-ffffffff81727d00 t pit_shutdown
-ffffffff81727d60 t pit_set_oneshot
-ffffffff81727d90 t of_node_name_eq
-ffffffff81727e00 t of_node_name_prefix
-ffffffff81727e60 t of_bus_n_addr_cells
-ffffffff81727f00 t of_n_addr_cells
-ffffffff81727fa0 t of_bus_n_size_cells
-ffffffff81728040 t of_n_size_cells
-ffffffff817280e0 t __of_phandle_cache_inv_entry
-ffffffff81728120 t __of_find_all_nodes
-ffffffff81728170 t of_find_property
-ffffffff81728200 t of_find_all_nodes
-ffffffff81728270 t __of_get_property
-ffffffff817282f0 t of_get_property
-ffffffff81728390 t of_get_cpu_hwid
-ffffffff81728520 t arch_find_n_match_cpu_physical_id
-ffffffff81728750 t of_get_cpu_node
-ffffffff817287c0 t of_get_next_cpu_node
-ffffffff81728990 t of_cpu_node_to_id
-ffffffff81728a40 t of_get_cpu_state_node
-ffffffff81728c20 t of_device_is_compatible
-ffffffff81728c70 t __of_device_is_compatible.llvm.3063795195648512548
-ffffffff81728e30 t of_device_compatible_match
-ffffffff81728ec0 t of_machine_is_compatible
-ffffffff81728f30 t of_device_is_available
-ffffffff81728fe0 t of_device_is_big_endian
-ffffffff81729050 t of_get_parent
-ffffffff81729090 t of_get_next_parent
-ffffffff817290d0 t of_get_next_child
-ffffffff81729120 t of_get_next_available_child
-ffffffff81729200 t of_get_compatible_child
-ffffffff817292b0 t of_get_child_by_name
-ffffffff81729380 t __of_find_node_by_path
-ffffffff81729420 t __of_find_node_by_full_path
-ffffffff81729540 t of_find_node_opts_by_path
-ffffffff81729680 t of_find_node_by_name
-ffffffff81729790 t of_find_node_by_type
-ffffffff817298a0 t of_find_compatible_node
-ffffffff81729980 t of_find_node_with_property
-ffffffff81729a60 t of_match_node
-ffffffff81729b10 t of_find_matching_node_and_match
-ffffffff81729c70 t of_modalias_node
-ffffffff81729d50 t of_find_node_by_phandle
-ffffffff81729e00 t of_print_phandle_args
-ffffffff81729e80 t of_phandle_iterator_init
-ffffffff81729fa0 t of_phandle_iterator_next
-ffffffff8172a1d0 t of_phandle_iterator_args
-ffffffff8172a260 t __of_parse_phandle_with_args
-ffffffff8172a4d0 t of_parse_phandle_with_args_map
-ffffffff8172abe0 t of_count_phandle_with_args
-ffffffff8172adb0 t __of_add_property
-ffffffff8172ae10 t of_add_property
-ffffffff8172aee0 t __of_remove_property
-ffffffff8172af40 t of_remove_property
-ffffffff8172aff0 t __of_update_property
-ffffffff8172b0a0 t of_update_property
-ffffffff8172b1a0 t of_alias_scan
-ffffffff8172b440 t of_alias_get_id
-ffffffff8172b4d0 t of_alias_get_highest_id
-ffffffff8172b550 t of_console_check
-ffffffff8172b5a0 t of_find_next_cache_node
-ffffffff8172b6d0 t of_find_last_cache_level
-ffffffff8172b8b0 t of_map_id
-ffffffff8172bc00 t of_match_device
-ffffffff8172bc40 t of_device_add
-ffffffff8172bc80 t of_dma_configure_id
-ffffffff8172bec0 t of_device_register
-ffffffff8172bf10 t of_device_unregister
-ffffffff8172bf30 t of_device_get_match_data
-ffffffff8172bf80 t of_device_request_module
-ffffffff8172bff0 t of_device_get_modalias
-ffffffff8172c150 t of_device_modalias
-ffffffff8172c1a0 t of_device_uevent
-ffffffff8172c310 t of_device_uevent_modalias
-ffffffff8172c3c0 t of_find_device_by_node
-ffffffff8172c3f0 t of_device_alloc
-ffffffff8172c6e0 t of_platform_device_create
-ffffffff8172c700 t of_platform_device_create_pdata
-ffffffff8172c7d0 t of_platform_bus_probe
-ffffffff8172c8a0 t of_platform_bus_create
-ffffffff8172cb80 t of_platform_populate
-ffffffff8172cc30 t of_platform_default_populate
-ffffffff8172cc50 t of_platform_device_destroy
-ffffffff8172ccd0 t of_platform_depopulate
-ffffffff8172cd20 t devm_of_platform_populate
-ffffffff8172cdc0 t devm_of_platform_populate_release
-ffffffff8172ce10 t devm_of_platform_depopulate
-ffffffff8172ce40 t devm_of_platform_match
-ffffffff8172ce70 t of_graph_is_present
-ffffffff8172ceb0 t of_property_count_elems_of_size
-ffffffff8172cf20 t of_property_read_u32_index
-ffffffff8172cf90 t of_property_read_u64_index
-ffffffff8172d010 t of_property_read_variable_u8_array
-ffffffff8172d130 t of_property_read_variable_u16_array
-ffffffff8172d250 t of_property_read_variable_u32_array
-ffffffff8172d350 t of_property_read_u64
-ffffffff8172d3b0 t of_property_read_variable_u64_array
-ffffffff8172d4a0 t of_property_read_string
-ffffffff8172d500 t of_property_match_string
-ffffffff8172d5a0 t of_property_read_string_helper
-ffffffff8172d680 t of_prop_next_u32
-ffffffff8172d6c0 t of_prop_next_string
-ffffffff8172d710 t of_graph_parse_endpoint
-ffffffff8172d7e0 t of_graph_get_port_by_id
-ffffffff8172d8a0 t of_graph_get_next_endpoint
-ffffffff8172d9c0 t of_graph_get_endpoint_by_regs
-ffffffff8172da80 t of_graph_get_remote_endpoint
-ffffffff8172db30 t of_graph_get_port_parent
-ffffffff8172db90 t of_graph_get_remote_port_parent
-ffffffff8172dc80 t of_graph_get_remote_port
-ffffffff8172dd40 t of_graph_get_endpoint_count
-ffffffff8172dd80 t of_graph_get_remote_node
-ffffffff8172de60 t of_fwnode_get.llvm.7677942839210005194
-ffffffff8172dea0 t of_fwnode_put.llvm.7677942839210005194
-ffffffff8172deb0 t of_fwnode_device_is_available.llvm.7677942839210005194
-ffffffff8172def0 t of_fwnode_device_get_match_data.llvm.7677942839210005194
-ffffffff8172df10 t of_fwnode_device_dma_supported.llvm.7677942839210005194
-ffffffff8172df20 t of_fwnode_device_get_dma_attr.llvm.7677942839210005194
-ffffffff8172df60 t of_fwnode_property_present.llvm.7677942839210005194
-ffffffff8172dfa0 t of_fwnode_property_read_int_array.llvm.7677942839210005194
-ffffffff8172e400 t of_fwnode_property_read_string_array.llvm.7677942839210005194
-ffffffff8172e590 t of_fwnode_get_name.llvm.7677942839210005194
-ffffffff8172e5f0 t of_fwnode_get_name_prefix.llvm.7677942839210005194
-ffffffff8172e640 t of_fwnode_get_parent.llvm.7677942839210005194
-ffffffff8172e690 t of_fwnode_get_next_child_node.llvm.7677942839210005194
-ffffffff8172e700 t of_fwnode_get_named_child_node.llvm.7677942839210005194
-ffffffff8172e790 t of_fwnode_get_reference_args.llvm.7677942839210005194
-ffffffff8172e950 t of_fwnode_graph_get_next_endpoint.llvm.7677942839210005194
-ffffffff8172e9c0 t of_fwnode_graph_get_remote_endpoint.llvm.7677942839210005194
-ffffffff8172eaa0 t of_fwnode_graph_get_port_parent.llvm.7677942839210005194
-ffffffff8172eb20 t of_fwnode_graph_parse_endpoint.llvm.7677942839210005194
-ffffffff8172ebe0 t of_fwnode_iomap.llvm.7677942839210005194
-ffffffff8172ec20 t of_fwnode_irq_get.llvm.7677942839210005194
-ffffffff8172ec60 t of_fwnode_add_links.llvm.7677942839210005194
-ffffffff8172ec70 t of_node_is_attached
-ffffffff8172eca0 t of_node_release
-ffffffff8172ecb0 t __of_add_property_sysfs
-ffffffff8172ed90 t safe_name
-ffffffff8172ee40 t of_node_property_read
-ffffffff8172eea0 t __of_sysfs_remove_bin_file
-ffffffff8172eed0 t __of_remove_property_sysfs
-ffffffff8172ef20 t __of_update_property_sysfs
-ffffffff8172ef80 t __of_attach_node_sysfs
-ffffffff8172f070 t __of_detach_node_sysfs
-ffffffff8172f0f0 t of_pci_address_to_resource
-ffffffff8172f110 t __of_address_to_resource.llvm.9757328158468781712
-ffffffff8172f2b0 t of_pci_range_to_resource
-ffffffff8172f340 t of_translate_address
-ffffffff8172f3a0 t __of_get_dma_parent
-ffffffff8172f480 t of_translate_dma_address
-ffffffff8172f9c0 t __of_get_address
-ffffffff8172fc30 t of_pci_range_parser_init
-ffffffff8172fc50 t parser_init.llvm.9757328158468781712
-ffffffff8172fd80 t of_pci_dma_range_parser_init
-ffffffff8172fda0 t of_pci_range_parser_one
-ffffffff817301b0 t of_address_to_resource
-ffffffff817301d0 t of_iomap
-ffffffff81730280 t of_io_request_and_map
-ffffffff817303a0 t of_dma_get_range
-ffffffff817307a0 t of_dma_is_coherent
-ffffffff817308f0 t of_translate_one
-ffffffff81730ac0 t of_bus_pci_match
-ffffffff81730be0 t of_bus_pci_count_cells
-ffffffff81730c10 t of_bus_pci_map
-ffffffff81730de0 t of_bus_pci_translate
-ffffffff81730ec0 t of_bus_pci_get_flags
-ffffffff81730f00 t of_bus_isa_match
-ffffffff81730f20 t of_bus_isa_count_cells
-ffffffff81730f50 t of_bus_isa_map
-ffffffff817310d0 t of_bus_isa_translate
-ffffffff817311b0 t of_bus_isa_get_flags
-ffffffff817311d0 t of_bus_default_count_cells
-ffffffff81731210 t of_bus_default_map
-ffffffff81731360 t of_bus_default_translate
-ffffffff81731420 t of_bus_default_get_flags
-ffffffff81731430 t __of_translate_address.28
-ffffffff81731770 t irq_of_parse_and_map
-ffffffff81731810 t of_irq_parse_one
-ffffffff817319a0 t of_irq_find_parent
-ffffffff81731a50 t of_irq_parse_raw
-ffffffff817325e0 t of_irq_to_resource
-ffffffff81732880 t of_irq_get
-ffffffff81732a20 t of_irq_get_byname
-ffffffff81732bf0 t of_irq_count
-ffffffff81732cb0 t of_irq_to_resource_table
-ffffffff81732d10 t of_msi_map_id
-ffffffff81732db0 t of_msi_map_get_device_domain
-ffffffff81732ed0 t of_msi_get_domain
-ffffffff81733150 t of_msi_configure
-ffffffff81733180 t mbox_chan_received_data
-ffffffff817331a0 t mbox_chan_txdone
-ffffffff81733250 t mbox_client_txdone
-ffffffff81733300 t mbox_client_peek_data
-ffffffff81733330 t mbox_send_message
-ffffffff81733480 t msg_submit
-ffffffff81733570 t mbox_flush
-ffffffff81733630 t mbox_bind_client
-ffffffff81733670 t __mbox_bind_client
-ffffffff81733750 t mbox_request_channel
-ffffffff817338e0 t mbox_request_channel_byname
-ffffffff817339e0 t mbox_free_channel
-ffffffff81733a50 t mbox_controller_register
-ffffffff81733bc0 t txdone_hrtimer
-ffffffff81733d30 t of_mbox_index_xlate
-ffffffff81733d60 t mbox_controller_unregister
-ffffffff81733e90 t devm_mbox_controller_register
-ffffffff81733f10 t __devm_mbox_controller_unregister
-ffffffff81733f30 t devm_mbox_controller_unregister
-ffffffff81733f60 t devm_mbox_controller_match
-ffffffff81733f90 t pcc_mbox_request_channel
-ffffffff81734100 t pcc_mbox_irq
-ffffffff81734330 t pcc_mbox_free_channel
-ffffffff817343a0 t pcc_chan_reg_read_modify_write
-ffffffff817344a0 t pcc_mbox_probe
-ffffffff81734c30 t parse_pcc_subspace
-ffffffff81734c50 t pcc_send_data
-ffffffff81734c80 t __traceiter_mc_event
-ffffffff81734d30 t __traceiter_arm_event
-ffffffff81734d80 t __traceiter_non_standard_event
-ffffffff81734e00 t __traceiter_aer_event
-ffffffff81734e70 t trace_event_raw_event_mc_event
-ffffffff81735060 t perf_trace_mc_event
-ffffffff81735290 t trace_event_raw_event_arm_event
-ffffffff817353a0 t perf_trace_arm_event
-ffffffff817354e0 t trace_event_raw_event_non_standard_event
-ffffffff81735650 t perf_trace_non_standard_event
-ffffffff81735810 t trace_event_raw_event_aer_event
-ffffffff81735960 t perf_trace_aer_event
-ffffffff81735af0 t log_non_standard_event
-ffffffff81735b60 t log_arm_hw_error
-ffffffff81735bc0 t trace_raw_output_mc_event
-ffffffff81735cf0 t trace_raw_output_arm_event
-ffffffff81735d60 t trace_raw_output_non_standard_event
-ffffffff81735e20 t trace_raw_output_aer_event
-ffffffff81735f20 t ras_userspace_consumers
-ffffffff81735f40 t trace_open
-ffffffff81735f70 t trace_release
-ffffffff81735f90 t nvmem_register_notifier
-ffffffff81735fb0 t nvmem_unregister_notifier
-ffffffff81735fd0 t nvmem_register
-ffffffff81736560 t nvmem_add_cells
-ffffffff817367d0 t nvmem_add_cells_from_table
-ffffffff817369f0 t nvmem_add_cells_from_of
-ffffffff81736c50 t nvmem_unregister
-ffffffff81736d10 t devm_nvmem_register
-ffffffff81736d60 t devm_nvmem_unregister
-ffffffff81736d70 t of_nvmem_device_get
-ffffffff81736ed0 t nvmem_device_get
-ffffffff81736f90 t nvmem_device_find
-ffffffff81737030 t devm_nvmem_device_put
-ffffffff81737060 t devm_nvmem_device_release
-ffffffff81737080 t devm_nvmem_device_match
-ffffffff817370b0 t nvmem_device_put
-ffffffff817370c0 t __nvmem_device_put
-ffffffff81737190 t devm_nvmem_device_get
-ffffffff81737210 t of_nvmem_cell_get
-ffffffff81737480 t nvmem_cell_get
-ffffffff817376c0 t devm_nvmem_cell_get
-ffffffff81737740 t devm_nvmem_cell_release
-ffffffff81737780 t devm_nvmem_cell_put
-ffffffff817377b0 t devm_nvmem_cell_match
-ffffffff817377e0 t nvmem_cell_put
-ffffffff81737820 t nvmem_cell_read
-ffffffff817378a0 t __nvmem_cell_read
-ffffffff81737a10 t nvmem_cell_write
-ffffffff81737a30 t __nvmem_cell_entry_write
-ffffffff81737cf0 t nvmem_cell_read_u8
-ffffffff81737d10 t nvmem_cell_read_common
-ffffffff81737e90 t nvmem_cell_read_u16
-ffffffff81737eb0 t nvmem_cell_read_u32
-ffffffff81737ed0 t nvmem_cell_read_u64
-ffffffff81737ef0 t nvmem_cell_read_variable_le_u32
-ffffffff81737f90 t nvmem_cell_read_variable_common
-ffffffff817380a0 t nvmem_cell_read_variable_le_u64
-ffffffff81738140 t nvmem_device_cell_read
-ffffffff81738240 t nvmem_device_cell_write
-ffffffff81738330 t nvmem_device_read
-ffffffff81738360 t nvmem_reg_read
-ffffffff817384e0 t nvmem_device_write
-ffffffff81738580 t nvmem_add_cell_table
-ffffffff817385f0 t nvmem_del_cell_table
-ffffffff81738650 t nvmem_add_cell_lookups
-ffffffff81738700 t nvmem_del_cell_lookups
-ffffffff817387c0 t nvmem_dev_name
-ffffffff817387e0 t nvmem_release
-ffffffff81738820 t nvmem_bin_attr_is_visible
-ffffffff81738880 t bin_attr_nvmem_read
-ffffffff81738920 t bin_attr_nvmem_write
-ffffffff81738a30 t nvmem_cell_entry_drop
-ffffffff81738ab0 t nvmem_access_with_keepouts
-ffffffff81738c60 t devm_alloc_etherdev_mqs
-ffffffff81738d00 t devm_free_netdev
-ffffffff81738d20 t devm_register_netdev
-ffffffff81738dc0 t netdev_devres_match
-ffffffff81738de0 t devm_unregister_netdev
-ffffffff81738e00 t move_addr_to_kernel
-ffffffff81738e90 t sock_alloc_file
-ffffffff81738f80 t sock_release
-ffffffff81739000 t sock_from_file
-ffffffff81739030 t sockfd_lookup
-ffffffff81739080 t sock_alloc
-ffffffff81739100 t __sock_tx_timestamp
-ffffffff81739140 t sock_sendmsg
-ffffffff817391c0 t kernel_sendmsg
-ffffffff81739250 t kernel_sendmsg_locked
-ffffffff817392b0 t __sock_recv_timestamp
-ffffffff81739700 t __sock_recv_wifi_status
-ffffffff81739770 t __sock_recv_cmsgs
-ffffffff817398e0 t sock_recvmsg
-ffffffff81739960 t sock_recvmsg_nosec
-ffffffff817399c0 t kernel_recvmsg
-ffffffff81739a60 t brioctl_set
-ffffffff81739a90 t br_ioctl_call
-ffffffff81739b00 t vlan_ioctl_set
-ffffffff81739b30 t sock_create_lite
-ffffffff81739c90 t sock_wake_async
-ffffffff81739d00 t __sock_create
-ffffffff81739f40 t sock_create
-ffffffff81739f70 t sock_create_kern
-ffffffff81739f90 t __sys_socket_file
-ffffffff8173a040 t __sys_socket
-ffffffff8173a1a0 t __x64_sys_socket
-ffffffff8173a1c0 t __sys_socketpair
-ffffffff8173a470 t __x64_sys_socketpair
-ffffffff8173a4a0 t __sys_bind
-ffffffff8173a690 t __x64_sys_bind
-ffffffff8173a6b0 t __sys_listen
-ffffffff8173a760 t __x64_sys_listen
-ffffffff8173a780 t do_accept
-ffffffff8173aa00 t move_addr_to_user
-ffffffff8173aad0 t __sys_accept4
-ffffffff8173ab90 t __x64_sys_accept4
-ffffffff8173abc0 t __x64_sys_accept
-ffffffff8173abf0 t __sys_connect_file
-ffffffff8173ac60 t __sys_connect
-ffffffff8173ae60 t __x64_sys_connect
-ffffffff8173ae80 t __sys_getsockname
-ffffffff8173b000 t __x64_sys_getsockname
-ffffffff8173b020 t __sys_getpeername
-ffffffff8173b1a0 t __x64_sys_getpeername
-ffffffff8173b1c0 t __sys_sendto
-ffffffff8173b580 t __x64_sys_sendto
-ffffffff8173b5b0 t __x64_sys_send
-ffffffff8173b5e0 t __sys_recvfrom
-ffffffff8173b8d0 t __x64_sys_recvfrom
-ffffffff8173b900 t __x64_sys_recv
-ffffffff8173b930 t __sys_setsockopt
-ffffffff8173ba50 t __x64_sys_setsockopt
-ffffffff8173ba80 t __sys_getsockopt
-ffffffff8173bb80 t __x64_sys_getsockopt
-ffffffff8173bbb0 t __sys_shutdown_sock
-ffffffff8173bbf0 t __sys_shutdown
-ffffffff8173bc90 t __x64_sys_shutdown
-ffffffff8173bd40 t __copy_msghdr
-ffffffff8173be70 t sendmsg_copy_msghdr
-ffffffff8173bf60 t __sys_sendmsg_sock
-ffffffff8173bf80 t ____sys_sendmsg.llvm.14330798830013879553
-ffffffff8173c230 t __sys_sendmsg
-ffffffff8173c360 t ___sys_sendmsg
-ffffffff8173c620 t __x64_sys_sendmsg
-ffffffff8173c750 t __sys_sendmmsg
-ffffffff8173c9a0 t __x64_sys_sendmmsg
-ffffffff8173c9d0 t recvmsg_copy_msghdr
-ffffffff8173cac0 t __sys_recvmsg_sock
-ffffffff8173cae0 t ____sys_recvmsg.llvm.14330798830013879553
-ffffffff8173cd00 t __sys_recvmsg
-ffffffff8173ce20 t ___sys_recvmsg
-ffffffff8173d0b0 t __x64_sys_recvmsg
-ffffffff8173d1e0 t __sys_recvmmsg
-ffffffff8173d320 t do_recvmmsg
-ffffffff8173d650 t __x64_sys_recvmmsg
-ffffffff8173d730 t __x64_sys_socketcall
-ffffffff8173de60 t sock_register
-ffffffff8173df00 t sock_unregister
-ffffffff8173df60 t sock_is_registered
-ffffffff8173df90 t socket_seq_show
-ffffffff8173dfc0 t get_user_ifreq
-ffffffff8173e010 t put_user_ifreq
-ffffffff8173e040 t kernel_bind
-ffffffff8173e060 t kernel_listen
-ffffffff8173e080 t kernel_accept
-ffffffff8173e170 t kernel_connect
-ffffffff8173e190 t kernel_getsockname
-ffffffff8173e1b0 t kernel_getpeername
-ffffffff8173e1d0 t kernel_sendpage
-ffffffff8173e2c0 t kernel_sendpage_locked
-ffffffff8173e300 t kernel_sock_shutdown
-ffffffff8173e320 t kernel_sock_ip_overhead
-ffffffff8173e3a0 t sock_read_iter
-ffffffff8173e560 t sock_write_iter
-ffffffff8173e710 t sock_poll
-ffffffff8173e7e0 t sock_ioctl
-ffffffff8173ebd0 t sock_mmap
-ffffffff8173ec00 t sock_close
-ffffffff8173ecc0 t sock_fasync
-ffffffff8173ed40 t sock_sendpage
-ffffffff8173ee40 t sock_splice_read
-ffffffff8173ee80 t sock_show_fdinfo
-ffffffff8173eeb0 t get_net_ns
-ffffffff8173eed0 t sockfs_setattr
-ffffffff8173ef20 t sockfs_listxattr
-ffffffff8173efa0 t sockfs_init_fs_context
-ffffffff8173efe0 t sock_alloc_inode
-ffffffff8173f070 t sock_free_inode
-ffffffff8173f090 t sockfs_dname
-ffffffff8173f0c0 t sockfs_xattr_get
-ffffffff8173f100 t sockfs_security_xattr_set
-ffffffff8173f110 t sk_ns_capable
-ffffffff8173f150 t sk_capable
-ffffffff8173f190 t sk_net_capable
-ffffffff8173f1e0 t sk_set_memalloc
-ffffffff8173f210 t sk_clear_memalloc
-ffffffff8173f2a0 t __sk_backlog_rcv
-ffffffff8173f320 t sk_error_report
-ffffffff8173f390 t sock_get_timeout
-ffffffff8173f3f0 t sock_copy_user_timeval
-ffffffff8173f4d0 t __sock_queue_rcv_skb
-ffffffff8173f720 t sock_queue_rcv_skb_reason
-ffffffff8173f790 t __sk_receive_skb
-ffffffff8173f970 t sk_backlog_rcv
-ffffffff8173fa30 t __sk_dst_check
-ffffffff8173fac0 t sk_dst_check
-ffffffff8173fb90 t sock_bindtoindex
-ffffffff8173fbc0 t release_sock
-ffffffff8173fce0 t sk_mc_loop
-ffffffff8173fd60 t sock_set_reuseaddr
-ffffffff8173fd90 t sock_set_reuseport
-ffffffff8173fdc0 t sock_no_linger
-ffffffff8173fdf0 t sock_set_priority
-ffffffff8173fe20 t sock_set_sndtimeo
-ffffffff8173fe80 t sock_enable_timestamps
-ffffffff8173fed0 t sock_set_timestamp
-ffffffff81740030 t sock_set_timestamping
-ffffffff81740270 t sock_enable_timestamp
-ffffffff817402b0 t sock_set_keepalive
-ffffffff817402f0 t sock_set_rcvbuf
-ffffffff81740340 t sock_set_mark
-ffffffff817403a0 t __sock_set_mark
-ffffffff817403e0 t sockopt_lock_sock
-ffffffff817403f0 t sockopt_release_sock
-ffffffff81740400 t sockopt_ns_capable
-ffffffff81740410 t sockopt_capable
-ffffffff81740420 t sk_setsockopt
-ffffffff81741340 t sock_set_timeout
-ffffffff81741500 t dst_negative_advice
-ffffffff81741580 t sock_release_reserved_memory
-ffffffff81741610 t sock_reserve_memory
-ffffffff817417e0 t sock_setsockopt
-ffffffff81741800 t sk_getsockopt
-ffffffff81742440 t copy_to_sockptr
-ffffffff817424b0 t copy_to_sockptr
-ffffffff81742520 t copy_to_sockptr
-ffffffff81742590 t copy_to_sockptr
-ffffffff81742600 t sk_get_peer_cred
-ffffffff81742650 t groups_to_user
-ffffffff81742710 t sk_get_meminfo
-ffffffff817427a0 t sock_gen_cookie
-ffffffff817427f0 t sock_gen_cookie
-ffffffff817428c0 t sock_getsockopt
-ffffffff81742920 t sk_alloc
-ffffffff81742a80 t sk_prot_alloc
-ffffffff81742bc0 t sk_destruct
-ffffffff81742c20 t __sk_destruct
-ffffffff81742d50 t sk_free
-ffffffff81742d90 t __sk_free
-ffffffff81742e90 t sk_clone_lock
-ffffffff81743230 t sk_free_unlock_clone
-ffffffff81743290 t sk_setup_caps
-ffffffff817433f0 t sock_wfree
-ffffffff81743580 t sock_def_write_space
-ffffffff81743610 t __sock_wfree
-ffffffff81743660 t skb_set_owner_w
-ffffffff81743740 t skb_orphan_partial
-ffffffff81743820 t sock_rfree
-ffffffff817438b0 t sock_efree
-ffffffff81743910 t sock_pfree
-ffffffff81743940 t sock_i_uid
-ffffffff81743990 t sock_i_ino
-ffffffff817439e0 t sock_wmalloc
-ffffffff81743a40 t sock_omalloc
-ffffffff81743ab0 t sock_ofree
-ffffffff81743ad0 t sock_kmalloc
-ffffffff81743b20 t sock_kfree_s
-ffffffff81743b50 t sock_kzfree_s
-ffffffff81743b80 t sock_alloc_send_pskb
-ffffffff81743dc0 t __sock_cmsg_send
-ffffffff81743e90 t sock_cmsg_send
-ffffffff81743f40 t skb_page_frag_refill
-ffffffff81744000 t sk_page_frag_refill
-ffffffff81744060 t sk_stream_moderate_sndbuf
-ffffffff817440c0 t sk_stream_moderate_sndbuf
-ffffffff81744120 t __lock_sock
-ffffffff817441e0 t __release_sock
-ffffffff81744280 t __sk_flush_backlog
-ffffffff81744340 t sk_wait_data
-ffffffff81744460 t __sk_mem_raise_allocated
-ffffffff817449a0 t __sk_mem_schedule
-ffffffff817449f0 t __sk_mem_reduce_allocated
-ffffffff81744b90 t __sk_mem_reclaim
-ffffffff81744bc0 t sk_set_peek_off
-ffffffff81744be0 t sock_no_bind
-ffffffff81744bf0 t sock_no_connect
-ffffffff81744c00 t sock_no_socketpair
-ffffffff81744c10 t sock_no_accept
-ffffffff81744c20 t sock_no_getname
-ffffffff81744c30 t sock_no_ioctl
-ffffffff81744c40 t sock_no_listen
-ffffffff81744c50 t sock_no_shutdown
-ffffffff81744c60 t sock_no_sendmsg
-ffffffff81744c70 t sock_no_sendmsg_locked
-ffffffff81744c80 t sock_no_recvmsg
-ffffffff81744c90 t sock_no_mmap
-ffffffff81744ca0 t __receive_sock
-ffffffff81744d00 t sock_no_sendpage
-ffffffff81744e20 t sock_no_sendpage_locked
-ffffffff81744f40 t sock_def_readable
-ffffffff81744fc0 t sk_send_sigurg
-ffffffff81745020 t sk_reset_timer
-ffffffff81745070 t sk_stop_timer
-ffffffff817450b0 t sk_stop_timer_sync
-ffffffff817450f0 t sock_init_data_uid
-ffffffff81745330 t sock_def_wakeup
-ffffffff81745380 t sock_def_error_report
-ffffffff81745400 t sock_def_destruct
-ffffffff81745410 t sock_init_data
-ffffffff81745430 t lock_sock_nested
-ffffffff81745520 t __lock_sock_fast
-ffffffff81745620 t sock_gettstamp
-ffffffff81745710 t sock_recv_errqueue
-ffffffff81745850 t sock_common_getsockopt
-ffffffff81745870 t sock_common_recvmsg
-ffffffff817458d0 t sock_common_setsockopt
-ffffffff817458f0 t sk_common_release
-ffffffff81745a00 t sock_prot_inuse_get
-ffffffff81745a80 t sock_inuse_get
-ffffffff81745af0 t proto_register
-ffffffff81745e00 t proto_unregister
-ffffffff81745f00 t sock_load_diag_module
-ffffffff81745f70 t sk_busy_loop_end
-ffffffff81745fc0 t sock_bind_add
-ffffffff81745ff0 t proto_seq_start
-ffffffff81746020 t proto_seq_stop
-ffffffff81746040 t proto_seq_next
-ffffffff81746060 t proto_seq_show
-ffffffff817463b0 t reqsk_queue_alloc
-ffffffff817463f0 t reqsk_fastopen_remove
-ffffffff81746550 t napi_get_frags_check
-ffffffff817465a0 t __napi_alloc_frag_align
-ffffffff817465f0 t __netdev_alloc_frag_align
-ffffffff817466e0 t __build_skb
-ffffffff817467d0 t build_skb
-ffffffff81746930 t virt_to_head_page
-ffffffff81746990 t build_skb_around
-ffffffff81746ad0 t napi_build_skb
-ffffffff81746b70 t __napi_build_skb
-ffffffff81746cc0 t __alloc_skb
-ffffffff81746f50 t __netdev_alloc_skb
-ffffffff817471e0 t __napi_alloc_skb
-ffffffff81747380 t skb_add_rx_frag
-ffffffff817473f0 t skb_fill_page_desc
-ffffffff81747450 t skb_coalesce_rx_frag
-ffffffff81747480 t skb_release_head_state
-ffffffff817474e0 t __kfree_skb
-ffffffff817475c0 t kfree_skb_reason
-ffffffff81747720 t kfree_skb_list_reason
-ffffffff81747750 t skb_dump
-ffffffff81747d50 t skb_tx_error
-ffffffff81747e30 t consume_skb
-ffffffff81747ed0 t __consume_stateless_skb
-ffffffff81747fb0 t skb_release_data
-ffffffff81748110 t __kfree_skb_defer
-ffffffff817481e0 t napi_skb_free_stolen_head
-ffffffff817482d0 t napi_consume_skb
-ffffffff81748440 t alloc_skb_for_msg
-ffffffff817484c0 t __copy_skb_header
-ffffffff81748620 t skb_morph
-ffffffff817486a0 t __skb_clone
-ffffffff817487c0 t mm_account_pinned_pages
-ffffffff817488b0 t mm_unaccount_pinned_pages
-ffffffff817488e0 t msg_zerocopy_realloc
-ffffffff81748a80 t msg_zerocopy_callback
-ffffffff81748c20 t net_zcopy_get
-ffffffff81748c60 t refcount_dec_and_test
-ffffffff81748ca0 t refcount_dec_and_test
-ffffffff81748ce0 t refcount_dec_and_test
-ffffffff81748d20 t msg_zerocopy_put_abort
-ffffffff81748d50 t skb_zerocopy_iter_stream
-ffffffff81748ea0 t ___pskb_trim
-ffffffff817491d0 t __skb_zcopy_downgrade_managed
-ffffffff81749260 t skb_copy_ubufs
-ffffffff817497c0 t skb_clone
-ffffffff81749880 t skb_headers_offset_update
-ffffffff817498e0 t skb_copy_header
-ffffffff81749970 t skb_copy
-ffffffff81749ab0 t skb_put
-ffffffff81749af0 t skb_copy_bits
-ffffffff81749d60 t __pskb_copy_fclone
-ffffffff8174a060 t skb_zerocopy_clone
-ffffffff8174a190 t pskb_expand_head
-ffffffff8174a550 t skb_realloc_headroom
-ffffffff8174a5d0 t __skb_unclone_keeptruesize
-ffffffff8174a650 t skb_expand_head
-ffffffff8174a7e0 t skb_copy_expand
-ffffffff8174a990 t __skb_pad
-ffffffff8174aac0 t pskb_put
-ffffffff8174ab20 t skb_over_panic
-ffffffff8174ab80 t skb_push
-ffffffff8174abc0 t skb_under_panic
-ffffffff8174ac20 t skb_pull
-ffffffff8174ac60 t skb_pull_data
-ffffffff8174aca0 t skb_trim
-ffffffff8174ace0 t skb_condense
-ffffffff8174ad40 t pskb_trim_rcsum_slow
-ffffffff8174ae20 t skb_checksum
-ffffffff8174ae40 t __pskb_pull_tail
-ffffffff8174b280 t skb_splice_bits
-ffffffff8174b380 t sock_spd_release
-ffffffff8174b3c0 t __skb_splice_bits
-ffffffff8174b570 t skb_send_sock_locked
-ffffffff8174b850 t skb_send_sock
-ffffffff8174bb50 t skb_store_bits
-ffffffff8174bdc0 t __skb_checksum
-ffffffff8174c110 t csum_partial_ext.llvm.13914390606543108028
-ffffffff8174c120 t csum_block_add_ext.llvm.13914390606543108028
-ffffffff8174c150 t skb_copy_and_csum_bits
-ffffffff8174c430 t __skb_checksum_complete_head
-ffffffff8174c4d0 t __skb_checksum_complete
-ffffffff8174c590 t skb_zerocopy_headlen
-ffffffff8174c5e0 t skb_zerocopy
-ffffffff8174c940 t skb_copy_and_csum_dev
-ffffffff8174c9f0 t skb_dequeue
-ffffffff8174ca60 t skb_dequeue_tail
-ffffffff8174cad0 t skb_queue_purge
-ffffffff8174cb50 t skb_rbtree_purge
-ffffffff8174cbc0 t skb_queue_head
-ffffffff8174cc10 t skb_queue_tail
-ffffffff8174cc60 t skb_unlink
-ffffffff8174ccc0 t skb_append
-ffffffff8174cd10 t skb_split
-ffffffff8174d060 t skb_shift
-ffffffff8174d5c0 t skb_prepare_for_shift
-ffffffff8174d660 t skb_prepare_seq_read
-ffffffff8174d690 t skb_seq_read
-ffffffff8174d920 t skb_abort_seq_read
-ffffffff8174d970 t skb_find_text
-ffffffff8174da40 t skb_ts_get_next_block
-ffffffff8174da60 t skb_ts_finish
-ffffffff8174dab0 t skb_append_pagefrags
-ffffffff8174dc00 t skb_pull_rcsum
-ffffffff8174dc80 t skb_segment_list
-ffffffff8174e0e0 t skb_segment
-ffffffff8174ef50 t skb_to_sgvec
-ffffffff8174ef90 t __skb_to_sgvec
-ffffffff8174f260 t skb_to_sgvec_nomark
-ffffffff8174f280 t skb_cow_data
-ffffffff8174f530 t sock_queue_err_skb
-ffffffff8174f670 t sock_rmem_free
-ffffffff8174f690 t sock_dequeue_err_skb
-ffffffff8174f780 t skb_clone_sk
-ffffffff8174f840 t skb_complete_tx_timestamp
-ffffffff8174fa20 t __skb_tstamp_tx
-ffffffff8174fcd0 t skb_tstamp_tx
-ffffffff8174fcf0 t skb_complete_wifi_ack
-ffffffff8174fe00 t skb_partial_csum_set
-ffffffff8174feb0 t skb_checksum_setup
-ffffffff817502b0 t skb_checksum_trimmed
-ffffffff81750480 t __skb_warn_lro_forwarding
-ffffffff817504c0 t kfree_skb_partial
-ffffffff81750540 t skb_try_coalesce
-ffffffff81750870 t skb_scrub_packet
-ffffffff817508f0 t skb_gso_validate_network_len
-ffffffff817509c0 t skb_gso_validate_mac_len
-ffffffff81750a90 t skb_vlan_untag
-ffffffff81750ce0 t skb_ensure_writable
-ffffffff81750d90 t __skb_vlan_pop
-ffffffff81750fb0 t skb_vlan_pop
-ffffffff81751090 t skb_vlan_push
-ffffffff81751260 t skb_eth_pop
-ffffffff817513a0 t skb_eth_push
-ffffffff81751510 t skb_mpls_push
-ffffffff81751740 t skb_mpls_pop
-ffffffff81751970 t skb_mpls_update_lse
-ffffffff81751ad0 t skb_mpls_dec_ttl
-ffffffff81751b80 t alloc_skb_with_frags
-ffffffff81751d40 t pskb_extract
-ffffffff81751dd0 t pskb_carve
-ffffffff81752460 t __skb_ext_alloc
-ffffffff81752490 t __skb_ext_set
-ffffffff817524f0 t skb_ext_add
-ffffffff817527f0 t __skb_ext_del
-ffffffff817528b0 t __skb_ext_put
-ffffffff81752980 t skb_attempt_defer_free
-ffffffff81752a80 t __splice_segment
-ffffffff81752c90 t warn_crc32c_csum_update
-ffffffff81752cd0 t warn_crc32c_csum_combine
-ffffffff81752d10 t skb_checksum_setup_ip
-ffffffff81752f20 t __skb_wait_for_more_packets
-ffffffff81753080 t receiver_wake_function
-ffffffff817530b0 t __skb_try_recv_from_queue
-ffffffff81753250 t __skb_try_recv_datagram
-ffffffff817533e0 t __skb_recv_datagram
-ffffffff817534b0 t skb_recv_datagram
-ffffffff81753590 t skb_free_datagram
-ffffffff817535b0 t __skb_free_datagram_locked
-ffffffff817536b0 t __sk_queue_drop_skb
-ffffffff81753780 t skb_kill_datagram
-ffffffff81753830 t skb_copy_and_hash_datagram_iter
-ffffffff81753860 t __skb_datagram_iter
-ffffffff81753b70 t skb_copy_datagram_iter
-ffffffff81753c00 t simple_copy_to_iter
-ffffffff81753c50 t skb_copy_datagram_from_iter
-ffffffff81753e40 t __zerocopy_sg_from_iter
-ffffffff81754260 t zerocopy_sg_from_iter
-ffffffff817542b0 t skb_copy_and_csum_datagram_msg
-ffffffff81754470 t datagram_poll
-ffffffff81754560 t sk_stream_write_space
-ffffffff81754660 t sk_stream_wait_connect
-ffffffff81754820 t sk_stream_wait_close
-ffffffff81754920 t sk_stream_wait_memory
-ffffffff81754cc0 t sk_stream_error
-ffffffff81754d20 t sk_stream_kill_queues
-ffffffff81754df0 t __scm_destroy
-ffffffff81754e60 t __scm_send
-ffffffff81755260 t put_cmsg
-ffffffff81755400 t put_cmsg_scm_timestamping64
-ffffffff81755480 t put_cmsg_scm_timestamping
-ffffffff81755500 t scm_detach_fds
-ffffffff817556b0 t scm_fp_dup
-ffffffff81755750 t gnet_stats_start_copy_compat
-ffffffff81755880 t gnet_stats_start_copy
-ffffffff817558b0 t gnet_stats_basic_sync_init
-ffffffff817558d0 t gnet_stats_add_basic
-ffffffff81755980 t gnet_stats_copy_basic
-ffffffff817559a0 t ___gnet_stats_copy_basic.llvm.14425393350753721767
-ffffffff81755b10 t gnet_stats_copy_basic_hw
-ffffffff81755b30 t gnet_stats_copy_rate_est
-ffffffff81755c40 t gnet_stats_add_queue
-ffffffff81755cf0 t gnet_stats_copy_queue
-ffffffff81755e80 t gnet_stats_copy_app
-ffffffff81755f30 t gnet_stats_finish_copy
-ffffffff81756030 t gen_new_estimator
-ffffffff81756270 t est_timer
-ffffffff81756390 t gen_kill_estimator
-ffffffff817563d0 t gen_replace_estimator
-ffffffff817563e0 t gen_estimator_active
-ffffffff81756400 t gen_estimator_read
-ffffffff81756460 t peernet2id_alloc
-ffffffff81756530 t rtnl_net_notifyid
-ffffffff81756630 t peernet2id
-ffffffff81756680 t peernet_has_id
-ffffffff817566d0 t get_net_ns_by_id
-ffffffff81756710 t get_net_ns_by_pid
-ffffffff81756780 t register_pernet_subsys
-ffffffff817567c0 t rtnl_net_newid
-ffffffff81756b00 t rtnl_net_getid
-ffffffff81756f50 t rtnl_net_dumpid
-ffffffff81757200 t register_pernet_operations.llvm.11034435689234402693
-ffffffff817572e0 t unregister_pernet_subsys
-ffffffff81757310 t unregister_pernet_operations.llvm.11034435689234402693
-ffffffff817574c0 t register_pernet_device
-ffffffff81757520 t unregister_pernet_device
-ffffffff81757570 t net_eq_idr
-ffffffff81757590 t rtnl_net_fill
-ffffffff817576c0 t ops_init
-ffffffff81757820 t rtnl_net_dumpid_one
-ffffffff81757890 t secure_tcpv6_ts_off
-ffffffff81757950 t secure_tcpv6_seq
-ffffffff81757a30 t secure_ipv6_port_ephemeral
-ffffffff81757b10 t secure_tcp_ts_off
-ffffffff81757bc0 t secure_tcp_seq
-ffffffff81757c90 t secure_ipv4_port_ephemeral
-ffffffff81757d60 t skb_flow_dissector_init
-ffffffff81757e10 t __skb_flow_get_ports
-ffffffff81757ef0 t skb_flow_get_icmp_tci
-ffffffff81757fb0 t skb_flow_dissect_meta
-ffffffff81757fd0 t skb_flow_dissect_ct
-ffffffff81757fe0 t skb_flow_dissect_tunnel_info
-ffffffff81758190 t skb_flow_dissect_hash
-ffffffff817581b0 t bpf_flow_dissect
-ffffffff817582f0 t __skb_flow_dissect
-ffffffff8175a4b0 t flow_get_u32_src
-ffffffff8175a4f0 t flow_get_u32_dst
-ffffffff8175a530 t flow_hash_from_keys
-ffffffff8175a6a0 t make_flow_keys_digest
-ffffffff8175a6e0 t __skb_get_hash_symmetric
-ffffffff8175a8c0 t __skb_get_hash
-ffffffff8175a9f0 t ___skb_get_hash
-ffffffff8175ab60 t skb_get_hash_perturb
-ffffffff8175abf0 t __skb_get_poff
-ffffffff8175ace0 t skb_get_poff
-ffffffff8175ad80 t __get_hash_from_flowi6
-ffffffff8175ae30 t proc_do_dev_weight
-ffffffff8175aed0 t proc_do_rss_key
-ffffffff8175afd0 t rps_sock_flow_sysctl
-ffffffff8175b230 t flow_limit_cpu_sysctl
-ffffffff8175b550 t flow_limit_table_len_sysctl
-ffffffff8175b600 t netdev_name_in_use
-ffffffff8175b670 t netdev_name_node_alt_create
-ffffffff8175b7b0 t netdev_name_node_alt_destroy
-ffffffff8175b8a0 t dev_add_pack
-ffffffff8175b950 t __dev_remove_pack
-ffffffff8175ba20 t dev_remove_pack
-ffffffff8175bb00 t synchronize_net
-ffffffff8175bb30 t dev_get_iflink
-ffffffff8175bb70 t dev_fill_metadata_dst
-ffffffff8175bcb0 t dev_fill_forward_path
-ffffffff8175be00 t __dev_get_by_name
-ffffffff8175be80 t dev_get_by_name_rcu
-ffffffff8175bf00 t dev_get_by_name
-ffffffff8175bfa0 t __dev_get_by_index
-ffffffff8175c000 t dev_get_by_index_rcu
-ffffffff8175c060 t dev_get_by_index
-ffffffff8175c0e0 t dev_get_by_napi_id
-ffffffff8175c140 t netdev_get_name
-ffffffff8175c1d0 t dev_getbyhwaddr_rcu
-ffffffff8175c250 t dev_getfirstbyhwtype
-ffffffff8175c2b0 t __dev_get_by_flags
-ffffffff8175c340 t dev_valid_name
-ffffffff8175c3c0 t dev_alloc_name
-ffffffff8175c3d0 t dev_alloc_name_ns
-ffffffff8175c710 t dev_change_name
-ffffffff8175cac0 t dev_get_valid_name
-ffffffff8175cbef t netdev_info
-ffffffff8175cc80 t netdev_adjacent_rename_links
-ffffffff8175ce90 t call_netdevice_notifiers
-ffffffff8175cf39 t netdev_err
-ffffffff8175cfd0 t dev_set_alias
-ffffffff8175d070 t dev_get_alias
-ffffffff8175d0c0 t netdev_features_change
-ffffffff8175d170 t netdev_state_change
-ffffffff8175d250 t call_netdevice_notifiers_info
-ffffffff8175d2d0 t __netdev_notify_peers
-ffffffff8175d440 t netdev_notify_peers
-ffffffff8175d470 t __dev_open
-ffffffff8175d630 t dev_close_many
-ffffffff8175d7c0 t __dev_close_many
-ffffffff8175d920 t dev_close
-ffffffff8175d9d0 t dev_disable_lro
-ffffffff8175da80 t netdev_update_features
-ffffffff8175db40 t netdev_reg_state
-ffffffff8175dba0 t netdev_lower_get_next
-ffffffff8175dbd0 t netdev_cmd_to_name
-ffffffff8175dc00 t register_netdevice_notifier
-ffffffff8175ddb0 t call_netdevice_register_net_notifiers
-ffffffff8175df40 t unregister_netdevice_notifier
-ffffffff8175e0a0 t register_netdevice_notifier_net
-ffffffff8175e120 t unregister_netdevice_notifier_net
-ffffffff8175e240 t register_netdevice_notifier_dev_net
-ffffffff8175e300 t unregister_netdevice_notifier_dev_net
-ffffffff8175e450 t net_enable_timestamp
-ffffffff8175e4b0 t net_disable_timestamp
-ffffffff8175e510 t is_skb_forwardable
-ffffffff8175e560 t __dev_forward_skb
-ffffffff8175e580 t __dev_forward_skb2
-ffffffff8175e720 t dev_forward_skb
-ffffffff8175e760 t netif_rx_internal
-ffffffff8175e870 t dev_forward_skb_nomtu
-ffffffff8175e8a0 t dev_nit_active
-ffffffff8175e8e0 t dev_queue_xmit_nit
-ffffffff8175ebc0 t netdev_txq_to_tc
-ffffffff8175edc0 t __netif_set_xps_queue
-ffffffff8175f690 t netif_set_xps_queue
-ffffffff8175f6d0 t netdev_reset_tc
-ffffffff8175f890 t netif_reset_xps_queues_gt
-ffffffff8175f910 t netdev_set_tc_queue
-ffffffff8175f9c0 t netdev_set_num_tc
-ffffffff8175fb30 t netdev_unbind_sb_channel
-ffffffff8175fc20 t netdev_bind_sb_channel_queue
-ffffffff8175fd20 t netdev_set_sb_channel
-ffffffff8175fd60 t netif_set_real_num_tx_queues
-ffffffff8175ffa0 t netif_set_real_num_rx_queues
-ffffffff81760030 t netif_set_real_num_queues
-ffffffff81760250 t netif_set_tso_max_size
-ffffffff81760280 t netif_set_tso_max_segs
-ffffffff817602b0 t netif_inherit_tso_max
-ffffffff81760310 t netif_get_num_default_rss_queues
-ffffffff81760400 t __netif_schedule
-ffffffff817604b0 t netif_schedule_queue
-ffffffff81760570 t netif_tx_wake_queue
-ffffffff81760640 t __dev_kfree_skb_irq
-ffffffff81760700 t __dev_kfree_skb_any
-ffffffff81760780 t netif_device_detach
-ffffffff817607e0 t netif_tx_stop_all_queues
-ffffffff81760830 t netif_device_attach
-ffffffff817608a0 t skb_checksum_help
-ffffffff81760a20 t skb_warn_bad_offload
-ffffffff81760af0 t skb_crc32c_csum_help
-ffffffff81760be0 t skb_network_protocol
-ffffffff81760d80 t __skb_gso_segment
-ffffffff81760ea0 t skb_cow_head
-ffffffff81760ee0 t netdev_rx_csum_fault
-ffffffff81760f10 t do_netdev_rx_csum_fault
-ffffffff81760f50 t passthru_features_check
-ffffffff81760f60 t netif_skb_features
-ffffffff817611a0 t dev_hard_start_xmit
-ffffffff81761390 t skb_csum_hwoffload_help
-ffffffff817613e0 t validate_xmit_skb_list
-ffffffff81761450 t validate_xmit_skb
-ffffffff81761790 t dev_loopback_xmit
-ffffffff81761870 t netif_rx
-ffffffff81761950 t dev_pick_tx_zero
-ffffffff81761960 t dev_pick_tx_cpu_id
-ffffffff81761980 t netdev_pick_tx
-ffffffff81761ca0 t netdev_core_pick_tx
-ffffffff81761d70 t __dev_queue_xmit
-ffffffff81762800 t __dev_direct_xmit
-ffffffff81762a40 t rps_may_expire_flow
-ffffffff81762ad0 t bpf_prog_run_generic_xdp
-ffffffff81762e20 t generic_xdp_tx
-ffffffff81762fd0 t do_xdp_generic
-ffffffff81763200 t __netif_rx
-ffffffff817632b0 t netdev_is_rx_handler_busy
-ffffffff81763310 t netdev_rx_handler_register
-ffffffff817633a0 t netdev_rx_handler_unregister
-ffffffff81763420 t netif_receive_skb_core
-ffffffff817634e0 t netif_receive_skb_list_internal
-ffffffff817637c0 t get_rps_cpu
-ffffffff817639d0 t enqueue_to_backlog
-ffffffff81763c60 t netif_receive_skb
-ffffffff81763dc0 t netif_receive_skb_list
-ffffffff81763e90 t __napi_schedule
-ffffffff81763f80 t napi_schedule_prep
-ffffffff81763fd0 t __napi_schedule_irqoff
-ffffffff81764070 t napi_complete_done
-ffffffff81764210 t napi_busy_loop
-ffffffff817644c0 t busy_poll_stop
-ffffffff81764640 t dev_set_threaded
-ffffffff81764780 t netif_napi_add_weight
-ffffffff81764ac0 t napi_watchdog
-ffffffff81764afd t netdev_printk
-ffffffff81764b80 t napi_disable
-ffffffff81764c00 t napi_enable
-ffffffff81764c70 t __netif_napi_del
-ffffffff81764f10 t netdev_has_upper_dev
-ffffffff817650d0 t netdev_walk_all_upper_dev_rcu
-ffffffff81765280 t netdev_has_upper_dev_all_rcu
-ffffffff817653f0 t netdev_has_any_upper_dev
-ffffffff81765450 t netdev_master_upper_dev_get
-ffffffff817654c0 t netdev_adjacent_get_private
-ffffffff817654d0 t netdev_upper_get_next_dev_rcu
-ffffffff81765500 t netdev_lower_get_next_private
-ffffffff81765530 t netdev_lower_get_next_private_rcu
-ffffffff81765560 t netdev_walk_all_lower_dev
-ffffffff81765710 t netdev_next_lower_dev_rcu
-ffffffff81765740 t netdev_walk_all_lower_dev_rcu
-ffffffff817658f0 t netdev_lower_get_first_private_rcu
-ffffffff81765930 t netdev_master_upper_dev_get_rcu
-ffffffff81765980 t netdev_upper_dev_link
-ffffffff817659a0 t __netdev_upper_dev_link
-ffffffff81765fd0 t netdev_master_upper_dev_link
-ffffffff81765ff0 t netdev_upper_dev_unlink
-ffffffff81766000 t __netdev_upper_dev_unlink
-ffffffff81766630 t netdev_adjacent_change_prepare
-ffffffff81766750 t netdev_adjacent_change_commit
-ffffffff817667d0 t netdev_adjacent_change_abort
-ffffffff81766850 t netdev_bonding_info_change
-ffffffff81766920 t netdev_offload_xstats_enable
-ffffffff81766af0 t netdev_offload_xstats_enabled
-ffffffff81766b60 t netdev_offload_xstats_disable
-ffffffff81766cf0 t netdev_offload_xstats_get
-ffffffff81767030 t netdev_offload_xstats_report_delta
-ffffffff81767090 t netdev_offload_xstats_report_used
-ffffffff817670a0 t netdev_offload_xstats_push_delta
-ffffffff81767160 t netdev_get_xmit_slave
-ffffffff81767190 t netdev_sk_get_lowest_dev
-ffffffff817671f0 t netdev_lower_dev_get_private
-ffffffff81767240 t netdev_lower_state_changed
-ffffffff81767330 t dev_set_promiscuity
-ffffffff81767380 t __dev_set_promiscuity
-ffffffff81767530 t dev_set_rx_mode
-ffffffff817675e0 t dev_set_allmulti
-ffffffff81767600 t __dev_set_allmulti.llvm.7372871604328025957
-ffffffff81767720 t __dev_set_rx_mode
-ffffffff817677b0 t dev_get_flags
-ffffffff81767820 t __dev_change_flags
-ffffffff81767a20 t __dev_notify_flags
-ffffffff81767c10 t dev_change_flags
-ffffffff81767c70 t __dev_set_mtu
-ffffffff81767cb0 t dev_validate_mtu
-ffffffff81767d10 t dev_set_mtu_ext
-ffffffff81767f10 t call_netdevice_notifiers_mtu
-ffffffff81767fd0 t dev_set_mtu
-ffffffff81768090 t dev_change_tx_queue_len
-ffffffff817681d0 t dev_set_group
-ffffffff817681f0 t dev_pre_changeaddr_notify
-ffffffff817682c0 t dev_set_mac_address
-ffffffff81768490 t dev_set_mac_address_user
-ffffffff817684e0 t dev_get_mac_address
-ffffffff817685e0 t dev_change_carrier
-ffffffff81768630 t dev_get_phys_port_id
-ffffffff81768660 t dev_get_phys_port_name
-ffffffff81768690 t dev_get_port_parent_id
-ffffffff817687f0 t netdev_port_same_parent_id
-ffffffff817688c0 t dev_change_proto_down
-ffffffff81768910 t dev_change_proto_down_reason
-ffffffff817689a0 t dev_xdp_prog_count
-ffffffff81768a10 t dev_xdp_prog_id
-ffffffff81768a70 t bpf_xdp_link_attach
-ffffffff81768b60 t dev_change_xdp_fd
-ffffffff81768f40 t __netdev_update_features
-ffffffff81769a10 t netdev_change_features
-ffffffff81769ad0 t netif_stacked_transfer_operstate
-ffffffff81769b50 t register_netdevice
-ffffffff8176a170 t list_netdevice
-ffffffff8176a2c0 t unregister_netdevice_queue
-ffffffff8176a3d0 t init_dummy_netdev
-ffffffff8176a410 t register_netdev
-ffffffff8176a450 t netdev_refcnt_read
-ffffffff8176a4c0 t netdev_run_todo
-ffffffff8176aa90 t free_netdev
-ffffffff8176ac40 t netdev_stats_to_stats64
-ffffffff8176ad50 t netdev_core_stats_alloc
-ffffffff8176ada0 t dev_get_stats
-ffffffff8176b0b0 t dev_fetch_sw_netstats
-ffffffff8176b140 t dev_get_tstats64
-ffffffff8176b2f0 t dev_ingress_queue_create
-ffffffff8176b310 t netdev_set_default_ethtool_ops
-ffffffff8176b340 t netdev_freemem
-ffffffff8176b360 t alloc_netdev_mqs
-ffffffff8176b770 t unregister_netdevice_many
-ffffffff8176c100 t unregister_netdev
-ffffffff8176c1d0 t __dev_change_net_namespace
-ffffffff8176c240 t netdev_increment_features
-ffffffff8176c290 t netdev_drivername
-ffffffff8176c2d0 t __netdev_printk
-ffffffff8176c47d t netdev_emerg
-ffffffff8176c505 t netdev_alert
-ffffffff8176c58d t netdev_crit
-ffffffff8176c615 t netdev_warn
-ffffffff8176c69d t netdev_notice
-ffffffff8176c730 t netstamp_clear
-ffffffff8176c780 t clean_xps_maps
-ffffffff8176c930 t skb_header_pointer
-ffffffff8176c980 t skb_header_pointer
-ffffffff8176c9d0 t skb_header_pointer
-ffffffff8176ca20 t skb_header_pointer
-ffffffff8176ca60 t dev_qdisc_enqueue
-ffffffff8176cae0 t qdisc_run_end
-ffffffff8176cb30 t qdisc_run
-ffffffff8176cc70 t __netif_receive_skb_core
-ffffffff8176d650 t deliver_ptype_list_skb
-ffffffff8176d750 t set_rps_cpu
-ffffffff8176d880 t __netif_receive_skb_list_core
-ffffffff8176db40 t __netif_receive_skb
-ffffffff8176dcb0 t napi_threaded_poll
-ffffffff8176ddc0 t __napi_poll
-ffffffff8176df70 t napi_schedule
-ffffffff8176dfc0 t __netdev_update_upper_level
-ffffffff8176e030 t __netdev_walk_all_lower_dev
-ffffffff8176e210 t __netdev_update_lower_level
-ffffffff8176e280 t __netdev_walk_all_upper_dev
-ffffffff8176e460 t __netdev_adjacent_dev_unlink_neighbour
-ffffffff8176e4a0 t __netdev_adjacent_dev_insert
-ffffffff8176e730 t __netdev_adjacent_dev_remove
-ffffffff8176e8a0 t generic_xdp_install
-ffffffff8176e980 t flush_backlog
-ffffffff8176eac0 t rps_trigger_softirq
-ffffffff8176eb50 t trigger_rx_softirq
-ffffffff8176eb80 t process_backlog
-ffffffff8176ed10 t net_tx_action
-ffffffff8176eea0 t net_rx_action
-ffffffff8176f170 t dev_cpu_dead
-ffffffff8176f3c0 t trace_kfree_skb
-ffffffff8176f420 t __hw_addr_sync
-ffffffff8176f4c0 t __hw_addr_unsync_one
-ffffffff8176f550 t __hw_addr_unsync
-ffffffff8176f5a0 t __hw_addr_sync_dev
-ffffffff8176f6f0 t __hw_addr_ref_sync_dev
-ffffffff8176f850 t __hw_addr_ref_unsync_dev
-ffffffff8176f940 t __hw_addr_unsync_dev
-ffffffff8176fa20 t __hw_addr_init
-ffffffff8176fa50 t dev_addr_check
-ffffffff8176fb40 t dev_addr_flush
-ffffffff8176fbf0 t dev_addr_init
-ffffffff8176fcc0 t dev_addr_mod
-ffffffff8176fde0 t dev_addr_add
-ffffffff8176fe90 t dev_addr_del
-ffffffff8176ff60 t dev_uc_add_excl
-ffffffff8176ffe0 t __hw_addr_add_ex
-ffffffff81770190 t dev_uc_add
-ffffffff81770210 t dev_uc_del
-ffffffff81770280 t dev_uc_sync
-ffffffff817703a0 t dev_uc_sync_multiple
-ffffffff817704a0 t dev_uc_unsync
-ffffffff81770570 t dev_uc_flush
-ffffffff81770640 t dev_uc_init
-ffffffff81770680 t dev_mc_add_excl
-ffffffff81770700 t dev_mc_add
-ffffffff81770780 t dev_mc_add_global
-ffffffff81770800 t dev_mc_del
-ffffffff81770870 t dev_mc_del_global
-ffffffff817708f0 t dev_mc_sync
-ffffffff81770a10 t dev_mc_sync_multiple
-ffffffff81770b10 t dev_mc_unsync
-ffffffff81770be0 t dev_mc_flush
-ffffffff81770cb0 t dev_mc_init
-ffffffff81770cf0 t __hw_addr_del_ex
-ffffffff81770e40 t dst_discard_out
-ffffffff81770e60 t dst_init
-ffffffff81770f10 t dst_discard
-ffffffff81770f30 t dst_discard
-ffffffff81770f50 t dst_discard
-ffffffff81770f70 t dst_discard
-ffffffff81770f90 t dst_alloc
-ffffffff817710e0 t dst_destroy
-ffffffff81771220 t metadata_dst_free
-ffffffff81771250 t dst_release_immediate
-ffffffff817712e0 t dst_dev_put
-ffffffff81771360 t dst_release
-ffffffff81771400 t dst_destroy_rcu
-ffffffff81771420 t dst_cow_metrics_generic
-ffffffff817714e0 t __dst_destroy_metrics_generic
-ffffffff81771510 t dst_blackhole_check
-ffffffff81771520 t dst_blackhole_cow_metrics
-ffffffff81771530 t dst_blackhole_neigh_lookup
-ffffffff81771540 t dst_blackhole_update_pmtu
-ffffffff81771550 t dst_blackhole_redirect
-ffffffff81771560 t dst_blackhole_mtu
-ffffffff81771590 t metadata_dst_alloc
-ffffffff81771660 t metadata_dst_alloc_percpu
-ffffffff817717b0 t metadata_dst_free_percpu
-ffffffff81771840 t register_netevent_notifier
-ffffffff81771860 t unregister_netevent_notifier
-ffffffff81771880 t call_netevent_notifiers
-ffffffff817718a0 t neigh_rand_reach_time
-ffffffff817718d0 t neigh_remove_one
-ffffffff81771a10 t neigh_changeaddr
-ffffffff81771a50 t neigh_flush_dev.llvm.9828612375563595592
-ffffffff81771ca0 t neigh_carrier_down
-ffffffff81771cc0 t __neigh_ifdown.llvm.9828612375563595592
-ffffffff81771df0 t neigh_ifdown
-ffffffff81771e10 t neigh_lookup
-ffffffff81771f10 t neigh_lookup_nodev
-ffffffff81772020 t __neigh_create
-ffffffff81772040 t ___neigh_create.llvm.9828612375563595592
-ffffffff81772820 t __pneigh_lookup
-ffffffff817728c0 t pneigh_lookup
-ffffffff81772a70 t pneigh_delete
-ffffffff81772b70 t neigh_destroy
-ffffffff81772d10 t neigh_del_timer
-ffffffff81772d70 t __skb_queue_purge
-ffffffff81772dc0 t __neigh_event_send
-ffffffff817731d0 t neigh_add_timer
-ffffffff81773280 t neigh_update
-ffffffff817732a0 t __neigh_update.llvm.9828612375563595592
-ffffffff81773c50 t __neigh_set_probe_once
-ffffffff81773cc0 t neigh_event_ns
-ffffffff81773d70 t neigh_resolve_output
-ffffffff81773f30 t neigh_event_send
-ffffffff81773f80 t neigh_event_send
-ffffffff81773fd0 t neigh_connected_output
-ffffffff817740f0 t neigh_direct_output
-ffffffff81774110 t pneigh_enqueue
-ffffffff81774230 t neigh_parms_alloc
-ffffffff81774360 t neigh_parms_release
-ffffffff81774400 t neigh_rcu_free_parms
-ffffffff81774440 t neigh_table_init
-ffffffff81774730 t neigh_hash_alloc
-ffffffff81774810 t neigh_periodic_work
-ffffffff81774ad0 t neigh_managed_work
-ffffffff81774b90 t neigh_proxy_process
-ffffffff81774d60 t neigh_table_clear
-ffffffff81774e50 t pneigh_queue_purge
-ffffffff81774fe0 t neigh_hash_free_rcu
-ffffffff81775040 t neigh_for_each
-ffffffff817750f0 t __neigh_for_each_release
-ffffffff81775260 t neigh_cleanup_and_release
-ffffffff81775310 t neigh_xmit
-ffffffff81775500 t neigh_seq_start
-ffffffff817757a0 t neigh_seq_next
-ffffffff817759e0 t pneigh_get_first
-ffffffff81775b00 t neigh_seq_stop
-ffffffff81775b30 t neigh_app_ns
-ffffffff81775b50 t __neigh_notify.llvm.9828612375563595592
-ffffffff81775c10 t neigh_proc_dointvec
-ffffffff81775c60 t neigh_proc_update.llvm.9828612375563595592
-ffffffff81775d60 t neigh_proc_dointvec_jiffies
-ffffffff81775db0 t neigh_proc_dointvec_ms_jiffies
-ffffffff81775e00 t neigh_sysctl_register
-ffffffff81776020 t neigh_proc_base_reachable_time
-ffffffff81776100 t neigh_sysctl_unregister
-ffffffff81776130 t neigh_blackhole
-ffffffff81776150 t neigh_release
-ffffffff81776190 t neigh_release
-ffffffff817761d0 t neigh_release
-ffffffff81776210 t neigh_release
-ffffffff81776250 t neigh_release
-ffffffff81776290 t neigh_timer_handler
-ffffffff817765b0 t neigh_invalidate
-ffffffff817766b0 t neigh_stat_seq_start
-ffffffff81776760 t neigh_stat_seq_stop
-ffffffff81776770 t neigh_stat_seq_next
-ffffffff81776810 t neigh_stat_seq_show
-ffffffff81776880 t neigh_fill_info
-ffffffff81776bf0 t neigh_proc_dointvec_zero_intmax
-ffffffff81776c90 t neigh_proc_dointvec_userhz_jiffies
-ffffffff81776ce0 t neigh_proc_dointvec_ms_jiffies_positive
-ffffffff81776d90 t neigh_proc_dointvec_unres_qlen
-ffffffff81776e80 t neigh_add
-ffffffff81777330 t neigh_delete
-ffffffff81777520 t neigh_get
-ffffffff81777aa0 t neigh_dump_info
-ffffffff817780b0 t neightbl_dump_info
-ffffffff81778890 t neightbl_set
-ffffffff81778f50 t nlmsg_parse_deprecated_strict
-ffffffff81778fc0 t nlmsg_parse_deprecated_strict
-ffffffff81779030 t nlmsg_parse_deprecated_strict
-ffffffff817790a0 t nlmsg_parse_deprecated_strict
-ffffffff81779110 t nlmsg_parse_deprecated_strict
-ffffffff81779180 t nlmsg_parse_deprecated_strict
-ffffffff817791f0 t nlmsg_parse_deprecated_strict
-ffffffff81779260 t pneigh_fill_info
-ffffffff81779400 t neightbl_fill_parms
-ffffffff817797d0 t rtnl_lock
-ffffffff817797f0 t rtnl_lock_killable
-ffffffff81779810 t rtnl_kfree_skbs
-ffffffff81779840 t __rtnl_unlock
-ffffffff817798b0 t rtnl_unlock
-ffffffff817798c0 t rtnl_trylock
-ffffffff817798e0 t rtnl_is_locked
-ffffffff81779900 t refcount_dec_and_rtnl_lock
-ffffffff81779920 t rtnl_register_module
-ffffffff81779930 t rtnl_register_internal.llvm.3271695376387194793
-ffffffff81779ad0 t rtnl_register
-ffffffff81779b20 t rtnl_unregister
-ffffffff81779ba0 t rtnl_unregister_all
-ffffffff81779c30 t __rtnl_link_register
-ffffffff81779ce0 t rtnl_link_register
-ffffffff81779dc0 t __rtnl_link_unregister
-ffffffff81779eb0 t rtnl_link_unregister
-ffffffff8177a0a0 t rtnl_af_register
-ffffffff8177a100 t rtnl_af_unregister
-ffffffff8177a150 t rtnetlink_send
-ffffffff8177a180 t rtnl_unicast
-ffffffff8177a1b0 t rtnl_notify
-ffffffff8177a1f0 t rtnl_set_sk_err
-ffffffff8177a210 t rtnetlink_put_metrics
-ffffffff8177a400 t nla_put_string
-ffffffff8177a440 t nla_put_string
-ffffffff8177a480 t nla_put_string
-ffffffff8177a4c0 t nla_put_string
-ffffffff8177a500 t nla_nest_cancel
-ffffffff8177a530 t nla_nest_cancel
-ffffffff8177a560 t rtnl_put_cacheinfo
-ffffffff8177a650 t rtnl_get_net_ns_capable
-ffffffff8177a6a0 t rtnl_nla_parse_ifla
-ffffffff8177a6e0 t rtnl_link_get_net
-ffffffff8177a720 t rtnl_delete_link
-ffffffff8177a7a0 t rtnl_configure_link
-ffffffff8177a840 t rtnl_create_link
-ffffffff8177ab70 t set_operstate
-ffffffff8177ac20 t rtmsg_ifinfo_build_skb
-ffffffff8177acf0 t if_nlmsg_size
-ffffffff8177af80 t rtnl_fill_ifinfo
-ffffffff8177b760 t rtmsg_ifinfo_send
-ffffffff8177b790 t rtmsg_ifinfo
-ffffffff8177b7e0 t rtmsg_ifinfo_newnet
-ffffffff8177b830 t ndo_dflt_fdb_add
-ffffffff8177b8d0 t ndo_dflt_fdb_del
-ffffffff8177b940 t ndo_dflt_fdb_dump
-ffffffff8177bab0 t ndo_dflt_bridge_getlink
-ffffffff8177c000 t rtnl_offload_xstats_notify
-ffffffff8177c160 t if_nlmsg_stats_size
-ffffffff8177c340 t rtnl_fill_statsinfo
-ffffffff8177cc70 t rtnl_getlink
-ffffffff8177d130 t rtnl_dump_ifinfo
-ffffffff8177d7b0 t rtnl_setlink
-ffffffff8177da40 t rtnl_newlink
-ffffffff8177e6d0 t rtnl_dellink
-ffffffff8177eaf0 t rtnl_dump_all
-ffffffff8177ec00 t rtnl_newlinkprop
-ffffffff8177ec20 t rtnl_dellinkprop
-ffffffff8177ec40 t rtnl_fdb_add
-ffffffff8177ef60 t rtnl_fdb_del
-ffffffff8177f360 t rtnl_fdb_get
-ffffffff8177f7d0 t rtnl_fdb_dump
-ffffffff8177fca0 t rtnl_bridge_getlink
-ffffffff8177ffc0 t rtnl_bridge_dellink
-ffffffff81780190 t rtnl_bridge_setlink
-ffffffff81780370 t rtnl_stats_get
-ffffffff81780580 t rtnl_stats_dump
-ffffffff81780810 t rtnl_stats_set
-ffffffff81780a30 t put_master_ifindex
-ffffffff81780ab0 t nla_put_ifalias
-ffffffff81780b60 t rtnl_fill_proto_down
-ffffffff81780c70 t rtnl_fill_link_ifmap
-ffffffff81780d10 t rtnl_phys_port_id_fill
-ffffffff81780db0 t rtnl_phys_port_name_fill
-ffffffff81780e50 t rtnl_phys_switch_id_fill
-ffffffff81780f00 t rtnl_fill_stats
-ffffffff81781020 t rtnl_fill_vf
-ffffffff81781160 t rtnl_port_fill
-ffffffff817813f0 t rtnl_xdp_fill
-ffffffff81781630 t rtnl_have_link_slave_info
-ffffffff81781670 t rtnl_link_fill
-ffffffff81781900 t rtnl_fill_link_netnsid
-ffffffff81781990 t rtnl_fill_link_af
-ffffffff81781ac0 t rtnl_fill_prop_list
-ffffffff81781be0 t rtnl_fill_vfinfo
-ffffffff81782410 t nlmsg_populate_fdb_fill
-ffffffff81782550 t rtnetlink_rcv
-ffffffff81782570 t rtnetlink_bind
-ffffffff817825a0 t rtnetlink_rcv_msg
-ffffffff81782990 t rtnetlink_event
-ffffffff81782a10 t do_setlink
-ffffffff81783c40 t validate_linkmsg
-ffffffff81783dc0 t rtnl_af_lookup
-ffffffff81783e30 t do_set_proto_down
-ffffffff81783f90 t rtnl_linkprop
-ffffffff817843c0 t fdb_vid_parse
-ffffffff81784430 t rtnl_fdb_notify
-ffffffff81784500 t rtnl_bridge_notify
-ffffffff81784600 t rtnl_stats_get_parse
-ffffffff81784840 t net_ratelimit
-ffffffff81784860 t in_aton
-ffffffff817849c0 t in4_pton
-ffffffff81784b50 t in6_pton
-ffffffff81784f40 t inet_pton_with_scope
-ffffffff817850a0 t inet6_pton
-ffffffff81785200 t inet_addr_is_any
-ffffffff81785290 t inet_proto_csum_replace4
-ffffffff81785350 t inet_proto_csum_replace16
-ffffffff81785430 t inet_proto_csum_replace_by_diff
-ffffffff817854d0 t linkwatch_init_dev
-ffffffff817855b0 t linkwatch_forget_dev
-ffffffff81785650 t linkwatch_do_dev
-ffffffff81785780 t linkwatch_run_queue
-ffffffff817857a0 t __linkwatch_run_queue.llvm.5648091938636729580
-ffffffff81785a00 t linkwatch_fire_event
-ffffffff81785b20 t linkwatch_urgent_event
-ffffffff81785c20 t linkwatch_event
-ffffffff81785c60 t copy_bpf_fprog_from_user
-ffffffff81785cb0 t sk_filter_trim_cap
-ffffffff81785ef0 t bpf_skb_get_pay_offset
-ffffffff81785f10 t bpf_skb_get_nlattr
-ffffffff81785f60 t bpf_skb_get_nlattr_nest
-ffffffff81785fc0 t bpf_skb_load_helper_8
-ffffffff81786050 t bpf_skb_load_helper_8_no_cache
-ffffffff817860f0 t bpf_skb_load_helper_16
-ffffffff81786190 t bpf_skb_load_helper_16_no_cache
-ffffffff81786230 t bpf_skb_load_helper_32
-ffffffff817862c0 t bpf_skb_load_helper_32_no_cache
-ffffffff81786360 t sk_filter_uncharge
-ffffffff817863c0 t sk_filter_charge
-ffffffff81786480 t bpf_prog_create
-ffffffff81786530 t bpf_prepare_filter
-ffffffff81786a70 t bpf_prog_create_from_user
-ffffffff81786be0 t bpf_prog_destroy
-ffffffff81786c20 t sk_attach_filter
-ffffffff81786d40 t __get_filter
-ffffffff81786e90 t sk_reuseport_attach_filter
-ffffffff81786f20 t sk_attach_bpf
-ffffffff81786f40 t sk_reuseport_attach_bpf
-ffffffff81786f60 t sk_reuseport_prog_free
-ffffffff81786fb0 t bpf_skb_store_bytes
-ffffffff81787130 t bpf_skb_load_bytes
-ffffffff817871b0 t bpf_flow_dissector_load_bytes
-ffffffff81787230 t bpf_skb_load_bytes_relative
-ffffffff817872c0 t bpf_skb_pull_data
-ffffffff81787320 t bpf_sk_fullsock
-ffffffff81787340 t sk_skb_pull_data
-ffffffff81787360 t bpf_l3_csum_replace
-ffffffff817874d0 t bpf_l4_csum_replace
-ffffffff81787630 t bpf_csum_diff
-ffffffff81787760 t bpf_csum_update
-ffffffff817877a0 t bpf_csum_level
-ffffffff81787890 t bpf_clone_redirect
-ffffffff81787960 t skb_do_redirect
-ffffffff81788490 t __bpf_redirect
-ffffffff817887a0 t bpf_redirect
-ffffffff817887f0 t bpf_redirect_peer
-ffffffff81788850 t bpf_redirect_neigh
-ffffffff817888e0 t bpf_msg_apply_bytes
-ffffffff81788900 t bpf_msg_cork_bytes
-ffffffff81788920 t bpf_msg_pull_data
-ffffffff81788c90 t bpf_msg_push_data
-ffffffff81789250 t bpf_msg_pop_data
-ffffffff817897c0 t bpf_get_cgroup_classid
-ffffffff817897d0 t bpf_get_route_realm
-ffffffff817897e0 t bpf_get_hash_recalc
-ffffffff81789810 t bpf_set_hash_invalid
-ffffffff81789830 t bpf_set_hash
-ffffffff81789850 t bpf_skb_vlan_push
-ffffffff817898b0 t bpf_skb_vlan_pop
-ffffffff81789900 t bpf_skb_change_proto
-ffffffff81789b90 t bpf_skb_change_type
-ffffffff81789bd0 t sk_skb_adjust_room
-ffffffff81789d20 t bpf_skb_adjust_room
-ffffffff8178a290 t bpf_skb_change_tail
-ffffffff8178a2e0 t sk_skb_change_tail
-ffffffff8178a300 t bpf_skb_change_head
-ffffffff8178a440 t sk_skb_change_head
-ffffffff8178a550 t bpf_xdp_get_buff_len
-ffffffff8178a580 t bpf_xdp_adjust_head
-ffffffff8178a600 t bpf_xdp_load_bytes
-ffffffff8178a800 t bpf_xdp_store_bytes
-ffffffff8178aa10 t bpf_xdp_adjust_tail
-ffffffff8178aac0 t bpf_xdp_adjust_meta
-ffffffff8178ab20 t xdp_do_flush
-ffffffff8178ab30 t bpf_clear_redirect_map
-ffffffff8178abc0 t xdp_master_redirect
-ffffffff8178ac50 t xdp_do_redirect
-ffffffff8178afd0 t xdp_do_redirect_frame
-ffffffff8178b230 t xdp_do_generic_redirect
-ffffffff8178b560 t bpf_xdp_redirect
-ffffffff8178b5b0 t bpf_xdp_redirect_map
-ffffffff8178b5d0 t bpf_skb_event_output
-ffffffff8178b640 t bpf_skb_get_tunnel_key
-ffffffff8178b860 t bpf_skb_get_tunnel_opt
-ffffffff8178b940 t bpf_skb_set_tunnel_key
-ffffffff8178bc40 t bpf_skb_set_tunnel_opt
-ffffffff8178bd10 t bpf_skb_under_cgroup
-ffffffff8178bdc0 t bpf_skb_cgroup_id
-ffffffff8178be10 t bpf_skb_ancestor_cgroup_id
-ffffffff8178be80 t bpf_sk_cgroup_id
-ffffffff8178bed0 t bpf_sk_ancestor_cgroup_id
-ffffffff8178bf40 t bpf_xdp_event_output
-ffffffff8178bfc0 t bpf_get_socket_cookie
-ffffffff8178bff0 t bpf_get_socket_cookie_sock_addr
-ffffffff8178c010 t bpf_get_socket_cookie_sock
-ffffffff8178c020 t bpf_get_socket_ptr_cookie
-ffffffff8178c070 t bpf_get_socket_cookie_sock_ops
-ffffffff8178c090 t bpf_get_netns_cookie_sock
-ffffffff8178c0b0 t bpf_get_netns_cookie_sock_addr
-ffffffff8178c0d0 t bpf_get_netns_cookie_sock_ops
-ffffffff8178c0f0 t bpf_get_netns_cookie_sk_msg
-ffffffff8178c110 t bpf_get_socket_uid
-ffffffff8178c170 t bpf_sk_setsockopt
-ffffffff8178c190 t bpf_sk_getsockopt
-ffffffff8178c1b0 t bpf_unlocked_sk_setsockopt
-ffffffff8178c1d0 t bpf_unlocked_sk_getsockopt
-ffffffff8178c1f0 t bpf_sock_addr_setsockopt
-ffffffff8178c210 t bpf_sock_addr_getsockopt
-ffffffff8178c230 t bpf_sock_ops_setsockopt
-ffffffff8178c250 t bpf_sock_ops_getsockopt
-ffffffff8178c430 t bpf_sock_ops_cb_flags_set
-ffffffff8178c470 t bpf_bind
-ffffffff8178c4f0 t bpf_skb_get_xfrm_state
-ffffffff8178c5b0 t bpf_xdp_fib_lookup
-ffffffff8178c610 t bpf_skb_fib_lookup
-ffffffff8178c6d0 t bpf_skb_check_mtu
-ffffffff8178c7b0 t bpf_xdp_check_mtu
-ffffffff8178c830 t bpf_lwt_in_push_encap
-ffffffff8178c850 t bpf_lwt_xmit_push_encap
-ffffffff8178c870 t bpf_skc_lookup_tcp
-ffffffff8178c910 t bpf_sk_lookup_tcp
-ffffffff8178c930 t bpf_sk_lookup_udp
-ffffffff8178c950 t bpf_sk_release
-ffffffff8178c980 t bpf_xdp_sk_lookup_udp
-ffffffff8178c9b0 t bpf_xdp_skc_lookup_tcp
-ffffffff8178ca30 t bpf_xdp_sk_lookup_tcp
-ffffffff8178ca60 t bpf_sock_addr_skc_lookup_tcp
-ffffffff8178cae0 t bpf_sock_addr_sk_lookup_tcp
-ffffffff8178cb10 t bpf_sock_addr_sk_lookup_udp
-ffffffff8178cb40 t bpf_tcp_sock_is_valid_access
-ffffffff8178cb80 t bpf_tcp_sock_convert_ctx_access
-ffffffff8178cbe0 t bpf_tcp_sock
-ffffffff8178cc10 t bpf_get_listener_sock
-ffffffff8178cc50 t bpf_skb_ecn_set_ce
-ffffffff8178cfb0 t bpf_xdp_sock_is_valid_access
-ffffffff8178cfe0 t bpf_xdp_sock_convert_ctx_access
-ffffffff8178d020 t bpf_tcp_check_syncookie
-ffffffff8178d040 t bpf_tcp_gen_syncookie
-ffffffff8178d060 t bpf_sk_assign
-ffffffff8178d090 t bpf_sock_ops_load_hdr_opt
-ffffffff8178d2b0 t bpf_sock_ops_store_hdr_opt
-ffffffff8178d440 t bpf_sock_ops_reserve_hdr_opt
-ffffffff8178d480 t bpf_skb_set_tstamp
-ffffffff8178d4e0 t bpf_helper_changes_pkt_data
-ffffffff8178d660 t bpf_sock_common_is_valid_access
-ffffffff8178d680 t bpf_sock_is_valid_access
-ffffffff8178d720 t bpf_warn_invalid_xdp_action
-ffffffff8178d790 t bpf_sock_convert_ctx_access
-ffffffff8178da80 t sk_filter_func_proto
-ffffffff8178dbc0 t sk_filter_is_valid_access
-ffffffff8178dc20 t bpf_gen_ld_abs
-ffffffff8178dd00 t bpf_convert_ctx_access
-ffffffff8178e5e0 t bpf_prog_test_run_skb
-ffffffff8178e5f0 t tc_cls_act_func_proto
-ffffffff8178eca0 t tc_cls_act_is_valid_access
-ffffffff8178ed50 t tc_cls_act_prologue
-ffffffff8178edd0 t tc_cls_act_convert_ctx_access
-ffffffff8178ee40 t tc_cls_act_btf_struct_access
-ffffffff8178eee0 t xdp_func_proto
-ffffffff8178f1a0 t xdp_is_valid_access
-ffffffff8178f210 t bpf_noop_prologue
-ffffffff8178f220 t xdp_convert_ctx_access
-ffffffff8178f380 t xdp_btf_struct_access
-ffffffff8178f420 t bpf_prog_test_run_xdp
-ffffffff8178f430 t cg_skb_func_proto
-ffffffff8178f5c0 t cg_skb_is_valid_access
-ffffffff8178f6b0 t lwt_in_func_proto
-ffffffff8178f6d0 t lwt_is_valid_access
-ffffffff8178f750 t lwt_out_func_proto
-ffffffff8178f900 t lwt_xmit_func_proto
-ffffffff8178faf0 t lwt_seg6local_func_proto
-ffffffff8178fb00 t sock_filter_func_proto
-ffffffff8178fb80 t sock_filter_is_valid_access
-ffffffff8178fc20 t sock_addr_func_proto
-ffffffff8178fe60 t sock_addr_is_valid_access
-ffffffff81790030 t sock_addr_convert_ctx_access
-ffffffff81790760 t sock_ops_func_proto
-ffffffff81790990 t sock_ops_is_valid_access
-ffffffff81790a60 t sock_ops_convert_ctx_access
-ffffffff81792f50 t sk_skb_func_proto
-ffffffff81793190 t sk_skb_is_valid_access
-ffffffff81793220 t sk_skb_prologue
-ffffffff817932a0 t sk_skb_convert_ctx_access
-ffffffff81793480 t sk_msg_func_proto
-ffffffff817936c0 t sk_msg_is_valid_access
-ffffffff81793730 t sk_msg_convert_ctx_access
-ffffffff817939d0 t flow_dissector_func_proto
-ffffffff81793ab0 t flow_dissector_is_valid_access
-ffffffff81793b20 t flow_dissector_convert_ctx_access
-ffffffff81793b80 t bpf_prog_test_run_flow_dissector
-ffffffff81793b90 t sk_detach_filter
-ffffffff81793c20 t sk_get_filter
-ffffffff81793cf0 t bpf_run_sk_reuseport
-ffffffff81793df0 t sk_select_reuseport
-ffffffff81793ee0 t sk_reuseport_load_bytes
-ffffffff81793f60 t sk_reuseport_load_bytes_relative
-ffffffff81793ff0 t sk_reuseport_func_proto
-ffffffff81794060 t sk_reuseport_is_valid_access
-ffffffff81794110 t sk_reuseport_convert_ctx_access
-ffffffff81794350 t bpf_sk_lookup_assign
-ffffffff81794450 t bpf_prog_test_run_sk_lookup
-ffffffff81794460 t sk_lookup_func_proto
-ffffffff81794570 t sk_lookup_is_valid_access
-ffffffff81794600 t sk_lookup_convert_ctx_access
-ffffffff81794830 t bpf_prog_change_xdp
-ffffffff81794840 t bpf_skc_to_tcp6_sock
-ffffffff81794880 t bpf_skc_to_tcp_sock
-ffffffff817948c0 t bpf_skc_to_tcp_timewait_sock
-ffffffff81794910 t bpf_skc_to_tcp_request_sock
-ffffffff81794960 t bpf_skc_to_udp6_sock
-ffffffff817949b0 t bpf_skc_to_unix_sock
-ffffffff817949f0 t bpf_skc_to_mptcp_sock
-ffffffff81794a00 t bpf_sock_from_file
-ffffffff81794a10 t sk_filter_release_rcu
-ffffffff81794a70 t bpf_convert_filter
-ffffffff81795690 t convert_bpf_ld_abs
-ffffffff81795890 t neigh_output
-ffffffff817959e0 t __ipv6_neigh_lookup_noref_stub
-ffffffff81795ab0 t bpf_skb_net_hdr_pop
-ffffffff81795be0 t __bpf_skb_change_tail
-ffffffff81795dd0 t bpf_xdp_frags_shrink_tail
-ffffffff81795f20 t bpf_xdp_frags_increase_tail
-ffffffff81795fd0 t bpf_skb_copy
-ffffffff81796040 t bpf_xdp_copy
-ffffffff81796130 t __bpf_setsockopt
-ffffffff81796280 t sol_tcp_sockopt
-ffffffff81796480 t bpf_sol_tcp_setsockopt
-ffffffff81796540 t __bpf_getsockopt
-ffffffff81796720 t bpf_ipv4_fib_lookup
-ffffffff81796b70 t bpf_ipv6_fib_lookup
-ffffffff81796fa0 t sk_lookup
-ffffffff81797160 t bpf_sk_lookup
-ffffffff81797270 t __bpf_sk_lookup
-ffffffff81797360 t bpf_skb_is_valid_access
-ffffffff817974b0 t bpf_convert_tstamp_type_read
-ffffffff81797530 t bpf_convert_shinfo_access
-ffffffff81797590 t __sock_gen_cookie
-ffffffff81797630 t sock_diag_check_cookie
-ffffffff81797670 t sock_diag_save_cookie
-ffffffff81797690 t sock_diag_put_meminfo
-ffffffff81797730 t sock_diag_put_filterinfo
-ffffffff817977d0 t sock_diag_broadcast_destroy
-ffffffff81797850 t sock_diag_broadcast_destroy_work
-ffffffff817979d0 t sock_diag_register_inet_compat
-ffffffff81797a00 t sock_diag_unregister_inet_compat
-ffffffff81797a30 t sock_diag_register
-ffffffff81797aa0 t sock_diag_unregister
-ffffffff81797af0 t sock_diag_destroy
-ffffffff81797b50 t sock_diag_rcv
-ffffffff81797b90 t sock_diag_bind
-ffffffff81797be0 t sock_diag_rcv_msg
-ffffffff81797d10 t dev_ifconf
-ffffffff81797e40 t dev_load
-ffffffff81797e90 t dev_ioctl
-ffffffff81798440 t dev_ifsioc
-ffffffff817988d0 t tso_count_descs
-ffffffff81798900 t tso_build_hdr
-ffffffff81798a10 t tso_build_data
-ffffffff81798a80 t tso_start
-ffffffff81798cb0 t reuseport_has_conns_set
-ffffffff81798d00 t reuseport_update_incoming_cpu
-ffffffff81798d70 t reuseport_alloc
-ffffffff81798e80 t reuseport_resurrect
-ffffffff817990a0 t reuseport_add_sock
-ffffffff817991d0 t reuseport_grow
-ffffffff81799370 t reuseport_free_rcu
-ffffffff817993a0 t reuseport_detach_sock
-ffffffff817994b0 t reuseport_stop_listen_sock
-ffffffff81799580 t reuseport_select_sock
-ffffffff817998a0 t reuseport_migrate_sock
-ffffffff81799a60 t reuseport_attach_prog
-ffffffff81799ae0 t reuseport_detach_prog
-ffffffff81799b70 t call_fib_notifier
-ffffffff81799ba0 t call_fib_notifiers
-ffffffff81799c10 t register_fib_notifier
-ffffffff81799e10 t unregister_fib_notifier
-ffffffff81799e60 t fib_notifier_ops_register
-ffffffff81799f20 t fib_notifier_ops_unregister
-ffffffff81799f70 t xdp_unreg_mem_model
-ffffffff8179a010 t rhashtable_lookup
-ffffffff8179a160 t rhashtable_lookup
-ffffffff8179a2d0 t xdp_rxq_info_unreg_mem_model
-ffffffff8179a380 t xdp_rxq_info_unreg
-ffffffff8179a450 t __xdp_rxq_info_reg
-ffffffff8179a520 t xdp_rxq_info_unused
-ffffffff8179a540 t xdp_rxq_info_is_reg
-ffffffff8179a560 t xdp_reg_mem_model
-ffffffff8179a580 t __xdp_reg_mem_model
-ffffffff8179a7b0 t xdp_rxq_info_reg_mem_model
-ffffffff8179a850 t __xdp_return
-ffffffff8179a960 t xdp_return_frame
-ffffffff8179aa20 t xdp_return_frame_rx_napi
-ffffffff8179aae0 t xdp_flush_frame_bulk
-ffffffff8179ab00 t xdp_return_frame_bulk
-ffffffff8179ad50 t xdp_return_buff
-ffffffff8179adf0 t __xdp_release_frame
-ffffffff8179ae90 t xdp_attachment_setup
-ffffffff8179aeb0 t xdp_convert_zc_to_xdp_frame
-ffffffff8179afd0 t xdp_warn
-ffffffff8179aff0 t xdp_alloc_skb_bulk
-ffffffff8179b030 t __xdp_build_skb_from_frame
-ffffffff8179b280 t xdp_update_skb_shared_info
-ffffffff8179b2d0 t xdp_build_skb_from_frame
-ffffffff8179b330 t xdpf_clone
-ffffffff8179b3e0 t xdp_mem_id_hashfn
-ffffffff8179b3f0 t xdp_mem_id_cmp
-ffffffff8179b410 t flow_rule_alloc
-ffffffff8179b490 t offload_action_alloc
-ffffffff8179b510 t flow_rule_match_meta
-ffffffff8179b540 t flow_rule_match_basic
-ffffffff8179b570 t flow_rule_match_control
-ffffffff8179b5a0 t flow_rule_match_eth_addrs
-ffffffff8179b5d0 t flow_rule_match_vlan
-ffffffff8179b600 t flow_rule_match_cvlan
-ffffffff8179b630 t flow_rule_match_ipv4_addrs
-ffffffff8179b660 t flow_rule_match_ipv6_addrs
-ffffffff8179b690 t flow_rule_match_ip
-ffffffff8179b6c0 t flow_rule_match_ports
-ffffffff8179b6f0 t flow_rule_match_ports_range
-ffffffff8179b720 t flow_rule_match_tcp
-ffffffff8179b750 t flow_rule_match_icmp
-ffffffff8179b780 t flow_rule_match_mpls
-ffffffff8179b7b0 t flow_rule_match_enc_control
-ffffffff8179b7e0 t flow_rule_match_enc_ipv4_addrs
-ffffffff8179b810 t flow_rule_match_enc_ipv6_addrs
-ffffffff8179b840 t flow_rule_match_enc_ip
-ffffffff8179b870 t flow_rule_match_enc_ports
-ffffffff8179b8a0 t flow_rule_match_enc_keyid
-ffffffff8179b8d0 t flow_rule_match_enc_opts
-ffffffff8179b900 t flow_action_cookie_create
-ffffffff8179b950 t flow_action_cookie_destroy
-ffffffff8179b960 t flow_rule_match_ct
-ffffffff8179b990 t flow_rule_match_pppoe
-ffffffff8179b9c0 t flow_rule_match_l2tpv3
-ffffffff8179b9f0 t flow_block_cb_alloc
-ffffffff8179ba50 t flow_block_cb_free
-ffffffff8179ba80 t flow_block_cb_lookup
-ffffffff8179bac0 t flow_block_cb_priv
-ffffffff8179bad0 t flow_block_cb_incref
-ffffffff8179baf0 t flow_block_cb_decref
-ffffffff8179bb10 t flow_block_cb_is_busy
-ffffffff8179bb50 t flow_block_cb_setup_simple
-ffffffff8179bd40 t flow_indr_dev_register
-ffffffff8179bf80 t flow_indr_dev_unregister
-ffffffff8179c1a0 t flow_indr_block_cb_alloc
-ffffffff8179c290 t flow_indr_dev_setup_offload
-ffffffff8179c4f0 t flow_indr_dev_exists
-ffffffff8179c510 t dev_add_offload
-ffffffff8179c5a0 t dev_remove_offload
-ffffffff8179c640 t skb_eth_gso_segment
-ffffffff8179c6b0 t skb_mac_gso_segment
-ffffffff8179c7c0 t skb_gro_receive
-ffffffff8179cc20 t napi_gro_flush
-ffffffff8179cd30 t gro_find_receive_by_type
-ffffffff8179cd80 t gro_find_complete_by_type
-ffffffff8179cdd0 t napi_gro_receive
-ffffffff8179cfd0 t dev_gro_receive
-ffffffff8179d690 t napi_get_frags
-ffffffff8179d6f0 t napi_gro_frags
-ffffffff8179dab0 t __skb_gro_checksum_complete
-ffffffff8179db50 t napi_gro_complete
-ffffffff8179dcb0 t gro_flush_oldest
-ffffffff8179dd00 t skb_metadata_dst_cmp
-ffffffff8179dde0 t skb_frag_unref
-ffffffff8179de30 t napi_reuse_skb
-ffffffff8179df30 t net_rx_queue_update_kobjects
-ffffffff8179e080 t netdev_queue_update_kobjects
-ffffffff8179e200 t net_current_may_mount
-ffffffff8179e230 t net_grab_current_ns
-ffffffff8179e250 t net_netlink_ns
-ffffffff8179e270 t net_initial_ns
-ffffffff8179e290 t of_find_net_device_by_node
-ffffffff8179e2d0 t of_dev_node_match
-ffffffff8179e310 t netdev_unregister_kobject
-ffffffff8179e3b0 t netdev_register_kobject
-ffffffff8179e500 t netdev_change_owner
-ffffffff8179e510 t netdev_class_create_file_ns
-ffffffff8179e530 t netdev_class_remove_file_ns
-ffffffff8179e550 t rx_queue_release
-ffffffff8179e600 t rx_queue_namespace
-ffffffff8179e640 t rx_queue_get_ownership
-ffffffff8179e690 t rps_dev_flow_table_release
-ffffffff8179e6b0 t rx_queue_attr_show
-ffffffff8179e6e0 t rx_queue_attr_store
-ffffffff8179e720 t show_rps_map
-ffffffff8179e7f0 t store_rps_map
-ffffffff8179ea30 t show_rps_dev_flow_table_cnt
-ffffffff8179ea80 t store_rps_dev_flow_table_cnt
-ffffffff8179ec00 t netdev_queue_release
-ffffffff8179ec60 t netdev_queue_namespace
-ffffffff8179eca0 t netdev_queue_get_ownership
-ffffffff8179ecf0 t netdev_queue_attr_show
-ffffffff8179ed20 t netdev_queue_attr_store
-ffffffff8179ed60 t tx_timeout_show
-ffffffff8179ed80 t traffic_class_show
-ffffffff8179ee70 t xps_cpus_show
-ffffffff8179ef70 t xps_cpus_store
-ffffffff8179f0a0 t xps_queue_show
-ffffffff8179f1d0 t xps_rxqs_show
-ffffffff8179f270 t xps_rxqs_store
-ffffffff8179f3a0 t tx_maxrate_show
-ffffffff8179f3c0 t tx_maxrate_store
-ffffffff8179f500 t bql_show_limit
-ffffffff8179f530 t bql_set_limit
-ffffffff8179f5f0 t bql_show_limit_max
-ffffffff8179f620 t bql_set_limit_max
-ffffffff8179f6e0 t bql_show_limit_min
-ffffffff8179f710 t bql_set_limit_min
-ffffffff8179f7d0 t bql_show_hold_time
-ffffffff8179f800 t bql_set_hold_time
-ffffffff8179f880 t bql_show_inflight
-ffffffff8179f8b0 t netdev_uevent
-ffffffff8179f900 t netdev_release
-ffffffff8179f940 t net_namespace
-ffffffff8179f960 t net_get_ownership
-ffffffff8179f980 t group_show
-ffffffff8179f9e0 t group_store
-ffffffff8179fab0 t dev_id_show
-ffffffff8179fb10 t dev_port_show
-ffffffff8179fb70 t iflink_show
-ffffffff8179fba0 t ifindex_show
-ffffffff8179fc00 t name_assign_type_show
-ffffffff8179fc70 t addr_assign_type_show
-ffffffff8179fcd0 t addr_len_show
-ffffffff8179fd30 t link_mode_show
-ffffffff8179fd90 t address_show
-ffffffff8179fe00 t broadcast_show
-ffffffff8179fe40 t speed_show
-ffffffff8179ffa0 t duplex_show
-ffffffff817a0110 t dormant_show
-ffffffff817a0150 t testing_show
-ffffffff817a0190 t operstate_show
-ffffffff817a0210 t carrier_changes_show
-ffffffff817a0240 t ifalias_show
-ffffffff817a02e0 t ifalias_store
-ffffffff817a03a0 t carrier_show
-ffffffff817a03f0 t carrier_store
-ffffffff817a0500 t mtu_show
-ffffffff817a0560 t mtu_store
-ffffffff817a0640 t flags_store
-ffffffff817a0720 t tx_queue_len_show
-ffffffff817a0780 t tx_queue_len_store
-ffffffff817a0870 t gro_flush_timeout_show
-ffffffff817a08d0 t gro_flush_timeout_store
-ffffffff817a09b0 t napi_defer_hard_irqs_show
-ffffffff817a0a10 t napi_defer_hard_irqs_store
-ffffffff817a0af0 t phys_port_id_show
-ffffffff817a0bf0 t phys_port_name_show
-ffffffff817a0ce0 t phys_switch_id_show
-ffffffff817a0de0 t proto_down_show
-ffffffff817a0e40 t proto_down_store
-ffffffff817a0f20 t carrier_up_count_show
-ffffffff817a0f50 t carrier_down_count_show
-ffffffff817a0f80 t threaded_show
-ffffffff817a1000 t threaded_store
-ffffffff817a1100 t rx_packets_show
-ffffffff817a11b0 t tx_packets_show
-ffffffff817a1270 t rx_bytes_show
-ffffffff817a1330 t tx_bytes_show
-ffffffff817a13f0 t rx_errors_show
-ffffffff817a14b0 t tx_errors_show
-ffffffff817a1570 t rx_dropped_show
-ffffffff817a1630 t tx_dropped_show
-ffffffff817a16f0 t multicast_show
-ffffffff817a17b0 t collisions_show
-ffffffff817a1870 t rx_length_errors_show
-ffffffff817a1930 t rx_over_errors_show
-ffffffff817a19f0 t rx_crc_errors_show
-ffffffff817a1ab0 t rx_frame_errors_show
-ffffffff817a1b70 t rx_fifo_errors_show
-ffffffff817a1c30 t rx_missed_errors_show
-ffffffff817a1cf0 t tx_aborted_errors_show
-ffffffff817a1db0 t tx_carrier_errors_show
-ffffffff817a1e70 t tx_fifo_errors_show
-ffffffff817a1f30 t tx_heartbeat_errors_show
-ffffffff817a1ff0 t tx_window_errors_show
-ffffffff817a20b0 t rx_compressed_show
-ffffffff817a2170 t tx_compressed_show
-ffffffff817a2230 t rx_nohandler_show
-ffffffff817a22f0 t dev_seq_start
-ffffffff817a23a0 t dev_seq_stop
-ffffffff817a23b0 t dev_seq_next
-ffffffff817a2440 t dev_seq_show
-ffffffff817a2550 t softnet_seq_start
-ffffffff817a25d0 t softnet_seq_stop
-ffffffff817a25e0 t softnet_seq_next
-ffffffff817a2660 t softnet_seq_show
-ffffffff817a26f0 t ptype_seq_start
-ffffffff817a2820 t ptype_seq_stop
-ffffffff817a2830 t ptype_seq_next
-ffffffff817a2ac0 t ptype_seq_show
-ffffffff817a2b50 t dev_mc_seq_show
-ffffffff817a2c00 t fib_rule_matchall
-ffffffff817a2c80 t fib_default_rule_add
-ffffffff817a2d40 t fib_rules_register
-ffffffff817a2e60 t fib_rules_unregister
-ffffffff817a2f80 t fib_rules_lookup
-ffffffff817a31e0 t fib_rules_dump
-ffffffff817a32c0 t fib_rules_seq_read
-ffffffff817a3360 t fib_nl_newrule
-ffffffff817a38c0 t fib_nl2rule
-ffffffff817a3dc0 t notify_rule_change
-ffffffff817a3ec0 t fib_nl_delrule
-ffffffff817a4420 t fib_rule_put
-ffffffff817a4470 t fib_nl_fill_rule
-ffffffff817a4890 t nla_put_uid_range
-ffffffff817a4900 t fib_nl_dumprule
-ffffffff817a4be0 t fib_rules_event
-ffffffff817a4e30 t __traceiter_kfree_skb
-ffffffff817a4e90 t __traceiter_consume_skb
-ffffffff817a4ee0 t __traceiter_skb_copy_datagram_iovec
-ffffffff817a4f30 t trace_event_raw_event_kfree_skb
-ffffffff817a5010 t perf_trace_kfree_skb
-ffffffff817a5130 t trace_event_raw_event_consume_skb
-ffffffff817a51f0 t perf_trace_consume_skb
-ffffffff817a52e0 t trace_event_raw_event_skb_copy_datagram_iovec
-ffffffff817a53a0 t perf_trace_skb_copy_datagram_iovec
-ffffffff817a54a0 t __traceiter_net_dev_start_xmit
-ffffffff817a54f0 t __traceiter_net_dev_xmit
-ffffffff817a5560 t __traceiter_net_dev_xmit_timeout
-ffffffff817a55b0 t __traceiter_net_dev_queue
-ffffffff817a5600 t __traceiter_netif_receive_skb
-ffffffff817a5650 t __traceiter_netif_rx
-ffffffff817a56a0 t __traceiter_napi_gro_frags_entry
-ffffffff817a56f0 t __traceiter_napi_gro_receive_entry
-ffffffff817a5740 t __traceiter_netif_receive_skb_entry
-ffffffff817a5790 t __traceiter_netif_receive_skb_list_entry
-ffffffff817a57e0 t __traceiter_netif_rx_entry
-ffffffff817a5830 t __traceiter_napi_gro_frags_exit
-ffffffff817a5880 t __traceiter_napi_gro_receive_exit
-ffffffff817a58d0 t __traceiter_netif_receive_skb_exit
-ffffffff817a5920 t __traceiter_netif_rx_exit
-ffffffff817a5970 t __traceiter_netif_receive_skb_list_exit
-ffffffff817a59c0 t trace_event_raw_event_net_dev_start_xmit
-ffffffff817a5bc0 t perf_trace_net_dev_start_xmit
-ffffffff817a5e30 t trace_event_raw_event_net_dev_xmit
-ffffffff817a5f50 t perf_trace_net_dev_xmit
-ffffffff817a60b0 t trace_event_raw_event_net_dev_xmit_timeout
-ffffffff817a6240 t perf_trace_net_dev_xmit_timeout
-ffffffff817a6400 t trace_event_raw_event_net_dev_template
-ffffffff817a6520 t perf_trace_net_dev_template
-ffffffff817a6680 t trace_event_raw_event_net_dev_rx_verbose_template
-ffffffff817a6880 t perf_trace_net_dev_rx_verbose_template
-ffffffff817a6af0 t trace_event_raw_event_net_dev_rx_exit_template
-ffffffff817a6bb0 t perf_trace_net_dev_rx_exit_template
-ffffffff817a6ca0 t __traceiter_napi_poll
-ffffffff817a6d00 t trace_event_raw_event_napi_poll
-ffffffff817a6e30 t perf_trace_napi_poll
-ffffffff817a6fa0 t __traceiter_sock_rcvqueue_full
-ffffffff817a6ff0 t __traceiter_sock_exceed_buf_limit
-ffffffff817a7060 t __traceiter_inet_sock_set_state
-ffffffff817a70c0 t __traceiter_inet_sk_error_report
-ffffffff817a7110 t trace_event_raw_event_sock_rcvqueue_full
-ffffffff817a71f0 t perf_trace_sock_rcvqueue_full
-ffffffff817a7310 t trace_event_raw_event_sock_exceed_buf_limit
-ffffffff817a74a0 t perf_trace_sock_exceed_buf_limit
-ffffffff817a7670 t trace_event_raw_event_inet_sock_set_state
-ffffffff817a77e0 t perf_trace_inet_sock_set_state
-ffffffff817a7990 t trace_event_raw_event_inet_sk_error_report
-ffffffff817a7af0 t perf_trace_inet_sk_error_report
-ffffffff817a7c90 t __traceiter_udp_fail_queue_rcv_skb
-ffffffff817a7ce0 t trace_event_raw_event_udp_fail_queue_rcv_skb
-ffffffff817a7db0 t perf_trace_udp_fail_queue_rcv_skb
-ffffffff817a7eb0 t __traceiter_tcp_retransmit_skb
-ffffffff817a7f00 t __traceiter_tcp_send_reset
-ffffffff817a7f50 t __traceiter_tcp_receive_reset
-ffffffff817a7fa0 t __traceiter_tcp_destroy_sock
-ffffffff817a7ff0 t __traceiter_tcp_rcv_space_adjust
-ffffffff817a8040 t __traceiter_tcp_retransmit_synack
-ffffffff817a8090 t __traceiter_tcp_probe
-ffffffff817a80e0 t __traceiter_tcp_bad_csum
-ffffffff817a8130 t __traceiter_tcp_cong_state_set
-ffffffff817a8180 t trace_event_raw_event_tcp_event_sk_skb
-ffffffff817a82f0 t perf_trace_tcp_event_sk_skb
-ffffffff817a8490 t trace_event_raw_event_tcp_event_sk
-ffffffff817a8620 t perf_trace_tcp_event_sk
-ffffffff817a8800 t trace_event_raw_event_tcp_retransmit_synack
-ffffffff817a8950 t perf_trace_tcp_retransmit_synack
-ffffffff817a8ae0 t trace_event_raw_event_tcp_probe
-ffffffff817a8d70 t perf_trace_tcp_probe
-ffffffff817a9050 t trace_event_raw_event_tcp_event_skb
-ffffffff817a9210 t perf_trace_tcp_event_skb
-ffffffff817a9410 t trace_event_raw_event_tcp_cong_state_set
-ffffffff817a9570 t perf_trace_tcp_cong_state_set
-ffffffff817a9700 t __traceiter_fib_table_lookup
-ffffffff817a9770 t trace_event_raw_event_fib_table_lookup
-ffffffff817a9950 t perf_trace_fib_table_lookup
-ffffffff817a9b80 t __traceiter_qdisc_dequeue
-ffffffff817a9bf0 t __traceiter_qdisc_enqueue
-ffffffff817a9c50 t __traceiter_qdisc_reset
-ffffffff817a9ca0 t __traceiter_qdisc_destroy
-ffffffff817a9cf0 t __traceiter_qdisc_create
-ffffffff817a9d50 t trace_event_raw_event_qdisc_dequeue
-ffffffff817a9e70 t perf_trace_qdisc_dequeue
-ffffffff817a9fc0 t trace_event_raw_event_qdisc_enqueue
-ffffffff817aa0b0 t perf_trace_qdisc_enqueue
-ffffffff817aa1e0 t trace_event_raw_event_qdisc_reset
-ffffffff817aa340 t perf_trace_qdisc_reset
-ffffffff817aa4f0 t trace_event_raw_event_qdisc_destroy
-ffffffff817aa650 t perf_trace_qdisc_destroy
-ffffffff817aa800 t trace_event_raw_event_qdisc_create
-ffffffff817aa950 t perf_trace_qdisc_create
-ffffffff817aaaf0 t __traceiter_br_fdb_add
-ffffffff817aab60 t __traceiter_br_fdb_external_learn_add
-ffffffff817aabd0 t __traceiter_fdb_delete
-ffffffff817aac20 t __traceiter_br_fdb_update
-ffffffff817aac90 t trace_event_raw_event_br_fdb_add
-ffffffff817aade0 t perf_trace_br_fdb_add
-ffffffff817aaf60 t trace_event_raw_event_br_fdb_external_learn_add
-ffffffff817ab120 t perf_trace_br_fdb_external_learn_add
-ffffffff817ab310 t trace_event_raw_event_fdb_delete
-ffffffff817ab4c0 t perf_trace_fdb_delete
-ffffffff817ab6b0 t trace_event_raw_event_br_fdb_update
-ffffffff817ab840 t perf_trace_br_fdb_update
-ffffffff817aba10 t __traceiter_neigh_create
-ffffffff817aba80 t __traceiter_neigh_update
-ffffffff817abaf0 t __traceiter_neigh_update_done
-ffffffff817abb40 t __traceiter_neigh_timer_handler
-ffffffff817abb90 t __traceiter_neigh_event_send_done
-ffffffff817abbe0 t __traceiter_neigh_event_send_dead
-ffffffff817abc30 t __traceiter_neigh_cleanup_and_release
-ffffffff817abc80 t trace_event_raw_event_neigh_create
-ffffffff817abde0 t perf_trace_neigh_create
-ffffffff817abf80 t trace_event_raw_event_neigh_update
-ffffffff817ac1c0 t perf_trace_neigh_update
-ffffffff817ac460 t trace_event_raw_event_neigh__update
-ffffffff817ac660 t perf_trace_neigh__update
-ffffffff817ac8a0 t trace_raw_output_kfree_skb
-ffffffff817ac930 t trace_raw_output_consume_skb
-ffffffff817ac980 t trace_raw_output_skb_copy_datagram_iovec
-ffffffff817ac9e0 t trace_raw_output_net_dev_start_xmit
-ffffffff817acad0 t trace_raw_output_net_dev_xmit
-ffffffff817acb30 t trace_raw_output_net_dev_xmit_timeout
-ffffffff817acb90 t trace_raw_output_net_dev_template
-ffffffff817acbf0 t trace_raw_output_net_dev_rx_verbose_template
-ffffffff817accf0 t trace_raw_output_net_dev_rx_exit_template
-ffffffff817acd40 t trace_raw_output_napi_poll
-ffffffff817acda0 t trace_raw_output_sock_rcvqueue_full
-ffffffff817ace00 t trace_raw_output_sock_exceed_buf_limit
-ffffffff817acee0 t trace_raw_output_inet_sock_set_state
-ffffffff817ad000 t trace_raw_output_inet_sk_error_report
-ffffffff817ad0d0 t trace_raw_output_udp_fail_queue_rcv_skb
-ffffffff817ad130 t trace_raw_output_tcp_event_sk_skb
-ffffffff817ad210 t trace_raw_output_tcp_event_sk
-ffffffff817ad2a0 t trace_raw_output_tcp_retransmit_synack
-ffffffff817ad330 t trace_raw_output_tcp_probe
-ffffffff817ad410 t trace_raw_output_tcp_event_skb
-ffffffff817ad470 t trace_raw_output_tcp_cong_state_set
-ffffffff817ad4f0 t trace_raw_output_fib_table_lookup
-ffffffff817ad5d0 t trace_raw_output_qdisc_dequeue
-ffffffff817ad640 t trace_raw_output_qdisc_enqueue
-ffffffff817ad6a0 t trace_raw_output_qdisc_reset
-ffffffff817ad720 t trace_raw_output_qdisc_destroy
-ffffffff817ad7a0 t trace_raw_output_qdisc_create
-ffffffff817ad810 t trace_raw_output_br_fdb_add
-ffffffff817ad8b0 t trace_raw_output_br_fdb_external_learn_add
-ffffffff817ad940 t trace_raw_output_fdb_delete
-ffffffff817ad9d0 t trace_raw_output_br_fdb_update
-ffffffff817ada70 t trace_raw_output_neigh_create
-ffffffff817adaf0 t trace_raw_output_neigh_update
-ffffffff817adc60 t trace_raw_output_neigh__update
-ffffffff817add60 t cgrp_css_alloc
-ffffffff817add90 t cgrp_css_online
-ffffffff817ade40 t cgrp_css_free
-ffffffff817ade50 t net_prio_attach
-ffffffff817adf10 t netprio_set_prio
-ffffffff817ae050 t update_netprio
-ffffffff817ae080 t read_prioidx
-ffffffff817ae090 t read_priomap
-ffffffff817ae120 t write_priomap
-ffffffff817ae220 t netprio_device_event
-ffffffff817ae260 t dst_cache_get
-ffffffff817ae2b0 t dst_cache_per_cpu_get
-ffffffff817ae340 t dst_cache_get_ip4
-ffffffff817ae3a0 t dst_cache_set_ip4
-ffffffff817ae420 t dst_cache_set_ip6
-ffffffff817ae510 t dst_cache_get_ip6
-ffffffff817ae570 t dst_cache_init
-ffffffff817ae5c0 t dst_cache_destroy
-ffffffff817ae640 t dst_cache_reset_now
-ffffffff817ae6d0 t gro_cells_receive
-ffffffff817ae800 t gro_cells_init
-ffffffff817ae8e0 t gro_cell_poll
-ffffffff817ae970 t gro_cells_destroy
-ffffffff817aeab0 t percpu_free_defer_callback
-ffffffff817aeae0 t of_get_phy_mode
-ffffffff817aebb0 t of_get_mac_address
-ffffffff817aed70 t of_get_ethdev_address
-ffffffff817aede0 t eth_header
-ffffffff817aee80 t eth_get_headlen
-ffffffff817aef30 t eth_type_trans
-ffffffff817af040 t eth_header_parse
-ffffffff817af070 t eth_header_cache
-ffffffff817af0d0 t eth_header_cache_update
-ffffffff817af0f0 t eth_header_parse_protocol
-ffffffff817af110 t eth_prepare_mac_addr_change
-ffffffff817af150 t eth_commit_mac_addr_change
-ffffffff817af170 t eth_mac_addr
-ffffffff817af1c0 t eth_validate_addr
-ffffffff817af1f0 t ether_setup
-ffffffff817af270 t alloc_etherdev_mqs
-ffffffff817af2a0 t sysfs_format_mac
-ffffffff817af2d0 t eth_gro_receive
-ffffffff817af460 t eth_gro_complete
-ffffffff817af4f0 t arch_get_platform_mac_address
-ffffffff817af500 t eth_platform_get_mac_address
-ffffffff817af550 t platform_get_ethdev_address
-ffffffff817af5f0 t nvmem_get_mac_address
-ffffffff817af6c0 t fwnode_get_mac_address
-ffffffff817af760 t device_get_mac_address
-ffffffff817af780 t device_get_ethdev_address
-ffffffff817af800 t sch_direct_xmit
-ffffffff817afa80 t __qdisc_run
-ffffffff817b01f0 t dev_trans_start
-ffffffff817b02c0 t netif_tx_lock
-ffffffff817b0360 t netif_tx_unlock
-ffffffff817b03d0 t __netdev_watchdog_up
-ffffffff817b0450 t netif_carrier_on
-ffffffff817b0500 t netif_carrier_off
-ffffffff817b0530 t netif_carrier_event
-ffffffff817b0560 t noop_enqueue
-ffffffff817b0580 t noop_dequeue
-ffffffff817b0590 t noqueue_init
-ffffffff817b05b0 t pfifo_fast_enqueue
-ffffffff817b06c0 t pfifo_fast_dequeue
-ffffffff817b0c00 t pfifo_fast_peek
-ffffffff817b0c90 t pfifo_fast_init
-ffffffff817b0e10 t pfifo_fast_reset
-ffffffff817b1090 t pfifo_fast_destroy
-ffffffff817b10e0 t pfifo_fast_change_tx_queue_len
-ffffffff817b13d0 t pfifo_fast_dump
-ffffffff817b1450 t qdisc_alloc
-ffffffff817b1640 t qdisc_create_dflt
-ffffffff817b1730 t qdisc_put
-ffffffff817b1780 t qdisc_reset
-ffffffff817b18b0 t qdisc_free
-ffffffff817b18e0 t qdisc_destroy
-ffffffff817b1990 t qdisc_put_unlocked
-ffffffff817b19d0 t dev_graft_qdisc
-ffffffff817b1a30 t dev_activate
-ffffffff817b1e50 t dev_deactivate_many
-ffffffff817b2160 t dev_reset_queue
-ffffffff817b21f0 t dev_deactivate
-ffffffff817b2290 t dev_qdisc_change_real_num_tx
-ffffffff817b22c0 t mq_change_real_num_tx
-ffffffff817b22d0 t dev_qdisc_change_tx_queue_len
-ffffffff817b2400 t dev_init_scheduler
-ffffffff817b2490 t dev_watchdog
-ffffffff817b2760 t dev_shutdown
-ffffffff817b28a0 t psched_ratecfg_precompute
-ffffffff817b2950 t psched_ppscfg_precompute
-ffffffff817b29c0 t mini_qdisc_pair_swap
-ffffffff817b2a40 t mini_qdisc_pair_block_init
-ffffffff817b2a60 t mini_qdisc_pair_init
-ffffffff817b2ab0 t qdisc_free_cb
-ffffffff817b2af0 t mq_init
-ffffffff817b2c80 t mq_destroy
-ffffffff817b2d70 t mq_attach
-ffffffff817b2e00 t mq_dump
-ffffffff817b2f20 t mq_select_queue
-ffffffff817b2f60 t mq_graft
-ffffffff817b2ff0 t mq_leaf
-ffffffff817b3030 t mq_find
-ffffffff817b3080 t mq_walk
-ffffffff817b3110 t mq_dump_class
-ffffffff817b3160 t mq_dump_class_stats
-ffffffff817b3250 t sch_frag_xmit_hook
-ffffffff817b3980 t sch_frag_xmit
-ffffffff817b3b70 t sch_frag_dst_get_mtu
-ffffffff817b3b90 t __traceiter_netlink_extack
-ffffffff817b3be0 t trace_event_raw_event_netlink_extack
-ffffffff817b3cd0 t perf_trace_netlink_extack
-ffffffff817b3e10 t do_trace_netlink_extack
-ffffffff817b3e70 t netlink_add_tap
-ffffffff817b3f10 t netlink_remove_tap
-ffffffff817b3fd0 t netlink_table_grab
-ffffffff817b40d0 t netlink_table_ungrab
-ffffffff817b4100 t __netlink_ns_capable
-ffffffff817b4150 t netlink_ns_capable
-ffffffff817b41a0 t netlink_capable
-ffffffff817b41f0 t netlink_net_capable
-ffffffff817b4240 t netlink_getsockbyfilp
-ffffffff817b42b0 t netlink_attachskb
-ffffffff817b4520 t netlink_sendskb
-ffffffff817b45d0 t __netlink_sendskb
-ffffffff817b4650 t netlink_detachskb
-ffffffff817b46a0 t netlink_unicast
-ffffffff817b49d0 t netlink_trim
-ffffffff817b4a80 t netlink_has_listeners
-ffffffff817b4af0 t netlink_strict_get_check
-ffffffff817b4b10 t netlink_broadcast
-ffffffff817b5030 t netlink_lock_table
-ffffffff817b5060 t netlink_unlock_table
-ffffffff817b5090 t netlink_set_err
-ffffffff817b51a0 t __netlink_kernel_create
-ffffffff817b54b0 t netlink_data_ready
-ffffffff817b54c0 t netlink_insert
-ffffffff817b58f0 t netlink_kernel_release
-ffffffff817b5920 t __netlink_change_ngroups
-ffffffff817b5a00 t netlink_change_ngroups
-ffffffff817b5b10 t __netlink_clear_multicast_users
-ffffffff817b5b80 t netlink_update_socket_mc
-ffffffff817b5ce0 t __nlmsg_put
-ffffffff817b5d70 t __netlink_dump_start
-ffffffff817b6070 t netlink_dump
-ffffffff817b64a0 t netlink_ack
-ffffffff817b6870 t netlink_rcv_skb
-ffffffff817b69b0 t nlmsg_notify
-ffffffff817b6a90 t netlink_register_notifier
-ffffffff817b6ab0 t netlink_unregister_notifier
-ffffffff817b6ad0 t trace_raw_output_netlink_extack
-ffffffff817b6b30 t netlink_skb_destructor
-ffffffff817b6ba0 t __netlink_deliver_tap
-ffffffff817b6d70 t netlink_sock_destruct
-ffffffff817b6e20 t netlink_release
-ffffffff817b74e0 t netlink_bind
-ffffffff817b7880 t netlink_connect
-ffffffff817b7970 t netlink_getname
-ffffffff817b7a30 t netlink_ioctl
-ffffffff817b7a40 t netlink_setsockopt
-ffffffff817b7d70 t netlink_getsockopt
-ffffffff817b8030 t netlink_sendmsg
-ffffffff817b8460 t netlink_recvmsg
-ffffffff817b8750 t deferred_put_nlk_sk
-ffffffff817b8800 t netlink_hash
-ffffffff817b8860 t netlink_compare
-ffffffff817b8880 t netlink_sock_destruct_work
-ffffffff817b88a0 t netlink_allowed
-ffffffff817b88f0 t netlink_realloc_groups
-ffffffff817b89e0 t netlink_undo_bind
-ffffffff817b8a70 t netlink_autobind
-ffffffff817b8b70 t __netlink_lookup
-ffffffff817b8c70 t netlink_create
-ffffffff817b8e70 t netlink_seq_start
-ffffffff817b8f30 t netlink_seq_stop
-ffffffff817b8f60 t netlink_seq_next
-ffffffff817b8fe0 t netlink_seq_show
-ffffffff817b90c0 t genl_lock
-ffffffff817b90e0 t genl_unlock
-ffffffff817b9100 t genl_register_family
-ffffffff817b9830 t genl_ctrl_event
-ffffffff817b9bd0 t genl_unregister_family
-ffffffff817b9e10 t genlmsg_put
-ffffffff817b9e80 t genlmsg_multicast_allns
-ffffffff817b9fd0 t genl_notify
-ffffffff817ba020 t ctrl_fill_info
-ffffffff817ba4e0 t ctrl_getfamily
-ffffffff817ba670 t ctrl_dumpfamily
-ffffffff817ba740 t ctrl_dumppolicy_start
-ffffffff817baa80 t ctrl_dumppolicy
-ffffffff817bb050 t ctrl_dumppolicy_done
-ffffffff817bb070 t genl_get_cmd
-ffffffff817bb220 t genl_rcv
-ffffffff817bb260 t genl_bind
-ffffffff817bb350 t genl_rcv_msg
-ffffffff817bb750 t genl_start
-ffffffff817bb8b0 t genl_lock_dumpit
-ffffffff817bb900 t genl_lock_done
-ffffffff817bb960 t genl_parallel_done
-ffffffff817bb9a0 t genl_family_rcv_msg_attrs_parse
-ffffffff817bba90 t netlink_policy_dump_get_policy_idx
-ffffffff817bbae0 t netlink_policy_dump_add_policy
-ffffffff817bbc50 t add_policy
-ffffffff817bbd70 t netlink_policy_dump_free
-ffffffff817bbd80 t netlink_policy_dump_loop
-ffffffff817bbdb0 t netlink_policy_dump_attr_size_estimate
-ffffffff817bbde0 t netlink_policy_dump_write_attr
-ffffffff817bbe00 t __netlink_policy_dump_write_attr.llvm.638637270097297184
-ffffffff817bc260 t netlink_policy_dump_write
-ffffffff817bc3d0 t ethtool_op_get_link
-ffffffff817bc3f0 t ethtool_op_get_ts_info
-ffffffff817bc410 t ethtool_intersect_link_masks
-ffffffff817bc440 t ethtool_convert_legacy_u32_to_link_mode
-ffffffff817bc460 t ethtool_convert_link_mode_to_legacy_u32
-ffffffff817bc490 t __ethtool_get_link_ksettings
-ffffffff817bc590 t ethtool_virtdev_validate_cmd
-ffffffff817bc660 t ethtool_virtdev_set_link_ksettings
-ffffffff817bc770 t netdev_rss_key_fill
-ffffffff817bc820 t ethtool_sprintf
-ffffffff817bc8b0 t ethtool_get_module_info_call
-ffffffff817bc920 t ethtool_get_module_eeprom_call
-ffffffff817bc990 t dev_ethtool
-ffffffff817bd560 t ethtool_rx_flow_rule_create
-ffffffff817bdad0 t ethtool_rx_flow_rule_destroy
-ffffffff817bdaf0 t ethtool_get_settings
-ffffffff817bdd00 t ethtool_set_settings
-ffffffff817bdee0 t ethtool_get_drvinfo
-ffffffff817be070 t ethtool_get_regs
-ffffffff817be1c0 t ethtool_get_wol
-ffffffff817be260 t ethtool_set_wol
-ffffffff817be330 t ethtool_set_value_void
-ffffffff817be3b0 t ethtool_get_eee
-ffffffff817be460 t ethtool_set_eee
-ffffffff817be530 t ethtool_get_link
-ffffffff817be5a0 t ethtool_get_eeprom
-ffffffff817be620 t ethtool_set_eeprom
-ffffffff817be7b0 t ethtool_get_coalesce
-ffffffff817be8a0 t ethtool_set_coalesce
-ffffffff817beb10 t ethtool_get_ringparam
-ffffffff817bebe0 t ethtool_set_ringparam
-ffffffff817bed40 t ethtool_get_pauseparam
-ffffffff817bede0 t ethtool_set_pauseparam
-ffffffff817beea0 t ethtool_self_test
-ffffffff817bf030 t ethtool_get_strings
-ffffffff817bf300 t ethtool_phys_id
-ffffffff817bf4d0 t ethtool_get_stats
-ffffffff817bf680 t ethtool_get_perm_addr
-ffffffff817bf760 t ethtool_set_value
-ffffffff817bf7e0 t __ethtool_set_flags
-ffffffff817bf870 t ethtool_get_rxnfc
-ffffffff817bfab0 t ethtool_set_rxnfc
-ffffffff817bfbe0 t ethtool_reset
-ffffffff817bfca0 t ethtool_get_sset_info
-ffffffff817bff10 t ethtool_get_rxfh_indir
-ffffffff817c00a0 t ethtool_set_rxfh_indir
-ffffffff817c02c0 t ethtool_get_rxfh
-ffffffff817c0520 t ethtool_set_rxfh
-ffffffff817c0940 t ethtool_get_features
-ffffffff817c0a60 t ethtool_set_features
-ffffffff817c0bb0 t ethtool_get_one_feature
-ffffffff817c0c40 t ethtool_set_one_feature
-ffffffff817c0d00 t ethtool_get_channels
-ffffffff817c0db0 t ethtool_set_channels
-ffffffff817c0f60 t ethtool_set_dump
-ffffffff817c1000 t ethtool_get_dump_flag
-ffffffff817c10c0 t ethtool_get_dump_data
-ffffffff817c1260 t ethtool_get_ts_info
-ffffffff817c1300 t ethtool_get_module_info
-ffffffff817c1410 t ethtool_get_module_eeprom
-ffffffff817c1500 t ethtool_get_tunable
-ffffffff817c1660 t ethtool_set_tunable
-ffffffff817c1770 t ethtool_get_phy_stats
-ffffffff817c1980 t ethtool_set_per_queue
-ffffffff817c1a50 t ethtool_get_link_ksettings
-ffffffff817c1d10 t ethtool_set_link_ksettings
-ffffffff817c1fe0 t get_phy_tunable
-ffffffff817c21c0 t set_phy_tunable
-ffffffff817c2350 t ethtool_get_fecparam
-ffffffff817c23f0 t ethtool_set_fecparam
-ffffffff817c24b0 t ethtool_get_any_eeprom
-ffffffff817c2690 t ethtool_copy_validate_indir
-ffffffff817c2740 t ethtool_get_per_queue_coalesce
-ffffffff817c2900 t ethtool_set_per_queue_coalesce
-ffffffff817c2ce0 t convert_legacy_settings_to_link_ksettings
-ffffffff817c2dd0 t __ethtool_get_link
-ffffffff817c2e20 t ethtool_get_max_rxfh_channel
-ffffffff817c2f20 t ethtool_check_ops
-ffffffff817c2f50 t __ethtool_get_ts_info
-ffffffff817c2fe0 t ethtool_get_phc_vclocks
-ffffffff817c3090 t ethtool_set_ethtool_phy_ops
-ffffffff817c30c0 t ethtool_params_from_link_mode
-ffffffff817c3130 t ethnl_ops_begin
-ffffffff817c31d0 t ethnl_ops_complete
-ffffffff817c3220 t ethnl_parse_header_dev_get
-ffffffff817c3470 t ethnl_fill_reply_header
-ffffffff817c3580 t ethnl_reply_init
-ffffffff817c3650 t ethnl_dump_put
-ffffffff817c3680 t ethnl_bcastmsg_put
-ffffffff817c36b0 t ethnl_multicast
-ffffffff817c3700 t ethtool_notify
-ffffffff817c37f0 t ethnl_default_notify
-ffffffff817c3a40 t ethnl_default_doit
-ffffffff817c3e10 t ethnl_default_start
-ffffffff817c3f90 t ethnl_default_dumpit
-ffffffff817c42c0 t ethnl_default_done
-ffffffff817c42f0 t ethnl_netdev_event
-ffffffff817c4320 t ethnl_bitset32_size
-ffffffff817c4460 t ethnl_put_bitset32
-ffffffff817c4820 t ethnl_bitset_is_compact
-ffffffff817c4930 t ethnl_update_bitset32
-ffffffff817c4ee0 t ethnl_compact_sanity_checks
-ffffffff817c5110 t ethnl_parse_bitset
-ffffffff817c54a0 t ethnl_parse_bit
-ffffffff817c5750 t ethnl_bitset_size
-ffffffff817c5890 t ethnl_put_bitset
-ffffffff817c58b0 t ethnl_update_bitset
-ffffffff817c58c0 t strset_parse_request
-ffffffff817c5ae0 t strset_prepare_data
-ffffffff817c5db0 t strset_reply_size
-ffffffff817c5ec0 t strset_fill_reply
-ffffffff817c62c0 t strset_cleanup_data
-ffffffff817c6320 t linkinfo_prepare_data
-ffffffff817c63a0 t linkinfo_reply_size
-ffffffff817c63b0 t linkinfo_fill_reply
-ffffffff817c64c0 t ethnl_set_linkinfo
-ffffffff817c6730 t linkmodes_prepare_data
-ffffffff817c67e0 t linkmodes_reply_size
-ffffffff817c6880 t linkmodes_fill_reply
-ffffffff817c6a50 t ethnl_set_linkmodes
-ffffffff817c6fb0 t linkstate_prepare_data
-ffffffff817c7110 t linkstate_reply_size
-ffffffff817c7150 t linkstate_fill_reply
-ffffffff817c7280 t debug_prepare_data
-ffffffff817c72e0 t debug_reply_size
-ffffffff817c7310 t debug_fill_reply
-ffffffff817c7350 t ethnl_set_debug
-ffffffff817c74c0 t wol_prepare_data
-ffffffff817c7540 t wol_reply_size
-ffffffff817c7590 t wol_fill_reply
-ffffffff817c7610 t ethnl_set_wol
-ffffffff817c7880 t features_prepare_data
-ffffffff817c78d0 t features_reply_size
-ffffffff817c79a0 t features_fill_reply
-ffffffff817c7a70 t ethnl_set_features
-ffffffff817c7e00 t privflags_prepare_data
-ffffffff817c7ee0 t privflags_reply_size
-ffffffff817c7f40 t privflags_fill_reply
-ffffffff817c7fb0 t privflags_cleanup_data
-ffffffff817c7fd0 t ethnl_set_privflags
-ffffffff817c81d0 t ethnl_get_priv_flags_info
-ffffffff817c82c0 t rings_prepare_data
-ffffffff817c8340 t rings_reply_size
-ffffffff817c8350 t rings_fill_reply
-ffffffff817c85b0 t ethnl_set_rings
-ffffffff817c8910 t channels_prepare_data
-ffffffff817c8980 t channels_reply_size
-ffffffff817c8990 t channels_fill_reply
-ffffffff817c8b20 t ethnl_set_channels
-ffffffff817c8e30 t coalesce_prepare_data
-ffffffff817c8ec0 t coalesce_reply_size
-ffffffff817c8ed0 t coalesce_fill_reply
-ffffffff817c93c0 t ethnl_set_coalesce
-ffffffff817c98d0 t coalesce_put_bool
-ffffffff817c9940 t pause_prepare_data
-ffffffff817c99f0 t pause_reply_size
-ffffffff817c9a10 t pause_fill_reply
-ffffffff817c9ba0 t ethnl_set_pause
-ffffffff817c9d80 t eee_prepare_data
-ffffffff817c9e00 t eee_reply_size
-ffffffff817c9e70 t eee_fill_reply
-ffffffff817c9fc0 t ethnl_set_eee
-ffffffff817ca1e0 t tsinfo_prepare_data
-ffffffff817ca230 t tsinfo_reply_size
-ffffffff817ca300 t tsinfo_fill_reply
-ffffffff817ca420 t ethnl_act_cable_test
-ffffffff817ca540 t ethnl_cable_test_started
-ffffffff817ca660 t ethnl_cable_test_alloc
-ffffffff817ca7a0 t ethnl_cable_test_free
-ffffffff817ca7d0 t ethnl_cable_test_finished
-ffffffff817ca840 t ethnl_cable_test_result
-ffffffff817ca950 t ethnl_cable_test_fault_length
-ffffffff817caa60 t ethnl_act_cable_test_tdr
-ffffffff817cae30 t ethnl_cable_test_amplitude
-ffffffff817caf40 t ethnl_cable_test_pulse
-ffffffff817cb020 t ethnl_cable_test_step
-ffffffff817cb160 t ethnl_tunnel_info_doit
-ffffffff817cb530 t ethnl_tunnel_info_fill_reply
-ffffffff817cb890 t ethnl_tunnel_info_start
-ffffffff817cb900 t ethnl_tunnel_info_dumpit
-ffffffff817cbb50 t fec_prepare_data
-ffffffff817cbdd0 t fec_reply_size
-ffffffff817cbe20 t fec_fill_reply
-ffffffff817cbfd0 t ethnl_set_fec
-ffffffff817cc320 t fec_stats_recalc
-ffffffff817cc450 t eeprom_parse_request
-ffffffff817cc560 t eeprom_prepare_data
-ffffffff817cc780 t eeprom_reply_size
-ffffffff817cc7a0 t eeprom_fill_reply
-ffffffff817cc7c0 t eeprom_cleanup_data
-ffffffff817cc7e0 t stats_parse_request
-ffffffff817cc870 t stats_prepare_data
-ffffffff817cc980 t stats_reply_size
-ffffffff817cca10 t stats_fill_reply
-ffffffff817ccbe0 t stats_put_stats
-ffffffff817cccf0 t stats_put_mac_stats
-ffffffff817ccf40 t stats_put_ctrl_stats
-ffffffff817ccfb0 t stats_put_rmon_stats
-ffffffff817cd070 t stat_put
-ffffffff817cd160 t stats_put_rmon_hist
-ffffffff817cd310 t phc_vclocks_prepare_data
-ffffffff817cd360 t phc_vclocks_reply_size
-ffffffff817cd390 t phc_vclocks_fill_reply
-ffffffff817cd420 t phc_vclocks_cleanup_data
-ffffffff817cd440 t module_prepare_data
-ffffffff817cd4c0 t module_reply_size
-ffffffff817cd4f0 t module_fill_reply
-ffffffff817cd590 t ethnl_set_module
-ffffffff817cd730 t pse_prepare_data
-ffffffff817cd7f0 t pse_reply_size
-ffffffff817cd820 t pse_fill_reply
-ffffffff817cd8c0 t ethnl_set_pse
-ffffffff817cd9f0 t rt_cache_flush
-ffffffff817cda10 t __ip_select_ident
-ffffffff817cdac0 t ip_rt_send_redirect
-ffffffff817cdca0 t ipv4_update_pmtu
-ffffffff817cddf0 t __ip_rt_update_pmtu
-ffffffff817ce010 t ipv4_sk_update_pmtu
-ffffffff817ce6a0 t ip_route_output_flow
-ffffffff817ce790 t ipv4_redirect
-ffffffff817ce8c0 t __ip_do_redirect
-ffffffff817ceb40 t ipv4_sk_redirect
-ffffffff817cecd0 t ipv4_dst_check
-ffffffff817ced00 t ip_rt_get_source
-ffffffff817cef40 t fib_lookup
-ffffffff817cefe0 t fib_lookup
-ffffffff817cf080 t ipv4_mtu
-ffffffff817cf100 t ip_mtu_from_fib_result
-ffffffff817cf170 t find_exception
-ffffffff817cf380 t rt_add_uncached_list
-ffffffff817cf400 t rt_del_uncached_list
-ffffffff817cf480 t rt_flush_dev
-ffffffff817cf5e0 t rt_dst_alloc
-ffffffff817cf680 t rt_dst_clone
-ffffffff817cf7a0 t ip_mc_validate_source
-ffffffff817cf850 t ip_route_use_hint
-ffffffff817cf990 t ip_route_input_noref
-ffffffff817cfa40 t ip_route_input_rcu
-ffffffff817d0460 t ip_route_output_key_hash
-ffffffff817d0520 t ip_route_output_key_hash_rcu
-ffffffff817d0ce0 t ipv4_blackhole_route
-ffffffff817d0e20 t ip_route_output_tunnel
-ffffffff817d1010 t fib_dump_info_fnhe
-ffffffff817d11f0 t ip_rt_multicast_event
-ffffffff817d1210 t inet_rtm_getroute
-ffffffff817d1b00 t update_or_create_fnhe
-ffffffff817d1f40 t __ipv4_neigh_lookup
-ffffffff817d2010 t ipv4_default_advmss
-ffffffff817d20a0 t ipv4_cow_metrics
-ffffffff817d20b0 t ipv4_dst_destroy
-ffffffff817d2160 t ipv4_negative_advice
-ffffffff817d2190 t ipv4_link_failure
-ffffffff817d2330 t ip_rt_update_pmtu
-ffffffff817d2570 t ip_do_redirect
-ffffffff817d26a0 t ipv4_neigh_lookup
-ffffffff817d2830 t ipv4_confirm_neigh
-ffffffff817d29e0 t ip_neigh_gw4
-ffffffff817d2a90 t ip_neigh_gw4
-ffffffff817d2b40 t ip_neigh_gw6
-ffffffff817d2c10 t ip_neigh_gw6
-ffffffff817d2ce0 t ip_rt_bug
-ffffffff817d2d00 t ip_mkroute_input
-ffffffff817d3000 t ip_error
-ffffffff817d31f0 t rt_cache_route
-ffffffff817d32e0 t rt_set_nexthop
-ffffffff817d3490 t rt_bind_exception
-ffffffff817d3640 t rt_fill_info
-ffffffff817d3ac0 t rt_cache_seq_start
-ffffffff817d3ae0 t rt_cache_seq_stop
-ffffffff817d3af0 t rt_cache_seq_next
-ffffffff817d3b00 t rt_cache_seq_show
-ffffffff817d3b30 t rt_cpu_seq_start
-ffffffff817d3bd0 t rt_cpu_seq_stop
-ffffffff817d3be0 t rt_cpu_seq_next
-ffffffff817d3c70 t rt_cpu_seq_show
-ffffffff817d3d20 t ipv4_sysctl_rtcache_flush
-ffffffff817d3d50 t inet_peer_base_init
-ffffffff817d3d80 t inet_getpeer
-ffffffff817d41d0 t inet_putpeer
-ffffffff817d4230 t inetpeer_free_rcu
-ffffffff817d4250 t inet_peer_xrlim_allow
-ffffffff817d42a0 t inetpeer_invalidate_tree
-ffffffff817d4350 t inet_add_protocol
-ffffffff817d4380 t inet_add_offload
-ffffffff817d43b0 t inet_del_protocol
-ffffffff817d43e0 t inet_del_offload
-ffffffff817d4410 t ip_call_ra_chain
-ffffffff817d4520 t ip_protocol_deliver_rcu
-ffffffff817d46e0 t ip_local_deliver
-ffffffff817d47a0 t ip_rcv
-ffffffff817d4830 t ip_rcv_core
-ffffffff817d4bb0 t ip_list_rcv
-ffffffff817d4d10 t ip_sublist_rcv
-ffffffff817d4f70 t ip_rcv_finish_core
-ffffffff817d5340 t ip_defrag
-ffffffff817d5b80 t ip_check_defrag
-ffffffff817d5d40 t pskb_may_pull
-ffffffff817d5d80 t pskb_may_pull
-ffffffff817d5dc0 t pskb_may_pull
-ffffffff817d5e00 t pskb_may_pull
-ffffffff817d5e40 t pskb_may_pull
-ffffffff817d5e90 t ip4_frag_init
-ffffffff817d5f40 t ip4_frag_free
-ffffffff817d5f60 t ip_expire
-ffffffff817d60f0 t ip4_key_hashfn
-ffffffff817d61b0 t ip4_obj_hashfn
-ffffffff817d6270 t ip4_obj_cmpfn
-ffffffff817d62a0 t ip_forward
-ffffffff817d6660 t ip_forward_finish
-ffffffff817d6720 t ip_options_build
-ffffffff817d6810 t __ip_options_echo
-ffffffff817d6b10 t ip_options_fragment
-ffffffff817d6ba0 t __ip_options_compile
-ffffffff817d7360 t ip_options_compile
-ffffffff817d73d0 t ip_options_undo
-ffffffff817d7490 t ip_options_get
-ffffffff817d7630 t ip_forward_options
-ffffffff817d77e0 t ip_options_rcv_srr
-ffffffff817d7a10 t ip_send_check
-ffffffff817d7a60 t __ip_local_out
-ffffffff817d7af0 t ip_local_out
-ffffffff817d7bf0 t ip_build_and_send_pkt
-ffffffff817d7dd0 t ip_mc_output
-ffffffff817d7f70 t ip_finish_output
-ffffffff817d8170 t ip_output
-ffffffff817d81b0 t __ip_queue_xmit
-ffffffff817d8590 t ip_queue_xmit
-ffffffff817d85b0 t ip_fraglist_init
-ffffffff817d8710 t ip_fraglist_prepare
-ffffffff817d8840 t ip_copy_metadata
-ffffffff817d89e0 t ip_frag_init
-ffffffff817d8a40 t ip_frag_next
-ffffffff817d8c00 t ip_do_fragment
-ffffffff817d93e0 t ip_generic_getfrag
-ffffffff817d94e0 t ip_append_data
-ffffffff817d95c0 t ip_setup_cork
-ffffffff817d9780 t __ip_append_data
-ffffffff817da5a0 t ip_append_page
-ffffffff817daa00 t __ip_make_skb
-ffffffff817dae30 t ip_send_skb
-ffffffff817dae70 t ip_push_pending_frames
-ffffffff817daed0 t ip_flush_pending_frames
-ffffffff817daf70 t ip_make_skb
-ffffffff817db0f0 t ip_send_unicast_reply
-ffffffff817db560 t ip_reply_glue_bits
-ffffffff817db5b0 t ip_fragment
-ffffffff817db640 t ip_finish_output2
-ffffffff817db9a0 t ip_cmsg_recv_offset
-ffffffff817dbdc0 t ip_cmsg_send
-ffffffff817dbfc0 t ip_ra_control
-ffffffff817dc140 t ip_ra_destroy_rcu
-ffffffff817dc190 t ip_icmp_error
-ffffffff817dc2c0 t ip_local_error
-ffffffff817dc3f0 t ip_recv_error
-ffffffff817dc670 t __ip_sock_set_tos
-ffffffff817dc6f0 t ip_sock_set_tos
-ffffffff817dc780 t ip_sock_set_freebind
-ffffffff817dc7b0 t ip_sock_set_recverr
-ffffffff817dc7e0 t ip_sock_set_mtu_discover
-ffffffff817dc820 t ip_sock_set_pktinfo
-ffffffff817dc850 t do_ip_setsockopt
-ffffffff817dd8d0 t memdup_sockptr
-ffffffff817dd980 t ip_mcast_join_leave
-ffffffff817dda80 t ip_set_mcast_msfilter
-ffffffff817ddbe0 t ipv4_pktinfo_prepare
-ffffffff817ddc90 t ip_setsockopt
-ffffffff817ddcc0 t do_ip_getsockopt
-ffffffff817de630 t sk_dst_get
-ffffffff817de680 t dst_mtu
-ffffffff817de6d0 t dst_mtu
-ffffffff817de720 t dst_mtu
-ffffffff817de770 t dst_mtu
-ffffffff817de7c0 t dst_mtu
-ffffffff817de810 t ip_get_mcast_msfilter
-ffffffff817de980 t ip_getsockopt
-ffffffff817de9e0 t set_mcast_msfilter
-ffffffff817deab0 t inet_bind_bucket_create
-ffffffff817deb20 t inet_bind_bucket_destroy
-ffffffff817deb60 t inet_bind_bucket_match
-ffffffff817deb80 t inet_bind2_bucket_create
-ffffffff817dec20 t inet_bind2_bucket_destroy
-ffffffff817dec60 t inet_bind_hash
-ffffffff817decd0 t inet_put_port
-ffffffff817dee80 t __inet_inherit_port
-ffffffff817df2c0 t inet_bind2_bucket_find
-ffffffff817df360 t __inet_lookup_listener
-ffffffff817df760 t inet_lhash2_lookup
-ffffffff817df890 t sock_gen_put
-ffffffff817df960 t sock_edemux
-ffffffff817df980 t __inet_lookup_established
-ffffffff817dfaf0 t inet_ehashfn
-ffffffff817dfc10 t inet_ehash_insert
-ffffffff817dfe90 t inet_ehash_nolisten
-ffffffff817dfef0 t __inet_hash
-ffffffff817e01f0 t inet_hash
-ffffffff817e0210 t inet_unhash
-ffffffff817e0390 t inet_bind2_bucket_match_addr_any
-ffffffff817e03f0 t inet_bhash2_addr_any_hashbucket
-ffffffff817e04b0 t ipv6_portaddr_hash
-ffffffff817e0610 t ipv6_portaddr_hash
-ffffffff817e0770 t ipv6_portaddr_hash
-ffffffff817e08d0 t inet_bhash2_update_saddr
-ffffffff817e08f0 t __inet_bhash2_update_saddr.llvm.6972576971237941208
-ffffffff817e0e00 t inet_bhash2_reset_saddr
-ffffffff817e0e30 t __inet_hash_connect
-ffffffff817e1470 t inet_hash_connect
-ffffffff817e14c0 t __inet_check_established
-ffffffff817e1700 t inet_hashinfo2_init_mod
-ffffffff817e1790 t inet_ehash_locks_alloc
-ffffffff817e1890 t inet_pernet_hashinfo_alloc
-ffffffff817e1a50 t inet_pernet_hashinfo_free
-ffffffff817e1a90 t inet_twsk_bind_unhash
-ffffffff817e1b40 t inet_twsk_free
-ffffffff817e1b90 t inet_twsk_put
-ffffffff817e1c00 t inet_twsk_hashdance
-ffffffff817e1de0 t inet_bhashfn_portaddr
-ffffffff817e1fe0 t inet_bhashfn_portaddr
-ffffffff817e21e0 t inet_twsk_alloc
-ffffffff817e2310 t tw_timer_handler
-ffffffff817e2330 t inet_twsk_deschedule_put
-ffffffff817e23c0 t inet_twsk_kill
-ffffffff817e25c0 t __inet_twsk_schedule
-ffffffff817e2680 t inet_twsk_purge
-ffffffff817e28e0 t inet_rcv_saddr_equal
-ffffffff817e2a30 t ipv6_rcv_saddr_equal
-ffffffff817e2af0 t inet_rcv_saddr_any
-ffffffff817e2b20 t inet_get_local_port_range
-ffffffff817e2b60 t inet_csk_update_fastreuse
-ffffffff817e2cb0 t inet_csk_get_port
-ffffffff817e3380 t inet_bhash2_addr_any_conflict
-ffffffff817e3480 t inet_csk_bind_conflict
-ffffffff817e35a0 t inet_csk_accept
-ffffffff817e3850 t reqsk_put.llvm.11875851316128703375
-ffffffff817e38f0 t inet_csk_init_xmit_timers
-ffffffff817e3960 t inet_csk_clear_xmit_timers
-ffffffff817e39b0 t inet_csk_delete_keepalive_timer
-ffffffff817e39d0 t inet_csk_reset_keepalive_timer
-ffffffff817e3a00 t inet_csk_route_req
-ffffffff817e3b60 t inet_csk_route_child_sock
-ffffffff817e3ce0 t inet_rtx_syn_ack
-ffffffff817e3d10 t inet_csk_reqsk_queue_drop
-ffffffff817e3de0 t inet_csk_reqsk_queue_drop_and_put
-ffffffff817e3e00 t inet_csk_reqsk_queue_hash_add
-ffffffff817e3e80 t inet_csk_clone_lock
-ffffffff817e3fe0 t inet_csk_destroy_sock
-ffffffff817e4100 t inet_csk_prepare_forced_close
-ffffffff817e4170 t inet_csk_listen_start
-ffffffff817e4270 t inet_csk_reqsk_queue_add
-ffffffff817e4310 t inet_child_forget
-ffffffff817e43d0 t inet_csk_complete_hashdance
-ffffffff817e46f0 t inet_reqsk_clone
-ffffffff817e47f0 t inet_csk_listen_stop
-ffffffff817e4b90 t inet_csk_addr2sockaddr
-ffffffff817e4bb0 t inet_csk_update_pmtu
-ffffffff817e4c30 t inet_csk_rebuild_route
-ffffffff817e4db0 t inet_bhash2_conflict
-ffffffff817e4ed0 t inet_bind_conflict
-ffffffff817e4f80 t reqsk_timer_handler
-ffffffff817e5340 t tcp_enter_memory_pressure
-ffffffff817e5390 t tcp_leave_memory_pressure
-ffffffff817e53d0 t tcp_init_sock
-ffffffff817e5530 t tcp_poll
-ffffffff817e5840 t tcp_ioctl
-ffffffff817e5a10 t tcp_mark_push
-ffffffff817e5a30 t tcp_skb_entail
-ffffffff817e5b30 t tcp_push
-ffffffff817e5c30 t tcp_splice_read
-ffffffff817e5ef0 t tcp_stream_alloc_skb
-ffffffff817e5fd0 t sk_wmem_schedule
-ffffffff817e6010 t tcp_send_mss
-ffffffff817e60c0 t tcp_remove_empty_skb
-ffffffff817e6230 t do_tcp_sendpages
-ffffffff817e6a10 t tcp_sendpage_locked
-ffffffff817e6a80 t tcp_sendpage
-ffffffff817e6b00 t tcp_free_fastopen_req
-ffffffff817e6b30 t tcp_sendmsg_fastopen
-ffffffff817e6d30 t tcp_set_state
-ffffffff817e6de0 t tcp_sendmsg_locked
-ffffffff817e7bd0 t tcp_downgrade_zcopy_pure
-ffffffff817e7c50 t tcp_sendmsg
-ffffffff817e7c90 t tcp_cleanup_rbuf
-ffffffff817e7cf0 t __tcp_cleanup_rbuf
-ffffffff817e7dc0 t tcp_recv_skb
-ffffffff817e7f00 t tcp_read_sock
-ffffffff817e81e0 t tcp_read_skb
-ffffffff817e83b0 t tcp_read_done
-ffffffff817e8590 t tcp_peek_len
-ffffffff817e8620 t tcp_set_rcvlowat
-ffffffff817e86c0 t tcp_update_recv_tstamps
-ffffffff817e8720 t tcp_mmap
-ffffffff817e8760 t tcp_recv_timestamp
-ffffffff817e8930 t tcp_recvmsg
-ffffffff817e8b50 t tcp_recvmsg_locked
-ffffffff817e93e0 t tcp_inq_hint
-ffffffff817e9450 t tcp_shutdown
-ffffffff817e94b0 t tcp_orphan_count_sum
-ffffffff817e9510 t tcp_check_oom
-ffffffff817e95d0 t __tcp_close
-ffffffff817e9ba0 t tcp_close
-ffffffff817e9c00 t tcp_write_queue_purge
-ffffffff817e9f40 t tcp_disconnect
-ffffffff817ea530 t __tcp_sock_set_cork
-ffffffff817ea5c0 t tcp_sock_set_cork
-ffffffff817ea660 t __tcp_sock_set_nodelay
-ffffffff817ea6d0 t tcp_sock_set_nodelay
-ffffffff817ea730 t tcp_sock_set_quickack
-ffffffff817ea7e0 t __tcp_sock_set_quickack
-ffffffff817ea880 t tcp_sock_set_syncnt
-ffffffff817ea8d0 t tcp_sock_set_user_timeout
-ffffffff817ea900 t tcp_sock_set_keepidle_locked
-ffffffff817ea980 t tcp_sock_set_keepidle
-ffffffff817eaa30 t tcp_sock_set_keepintvl
-ffffffff817eaa80 t tcp_sock_set_keepcnt
-ffffffff817eaad0 t tcp_set_window_clamp
-ffffffff817eab20 t do_tcp_setsockopt
-ffffffff817eb5b0 t copy_from_sockptr
-ffffffff817eb620 t copy_from_sockptr
-ffffffff817eb670 t copy_from_sockptr
-ffffffff817eb6e0 t tcp_repair_options_est
-ffffffff817eb890 t tcp_repair_set_window
-ffffffff817eb990 t tcp_enable_tx_delay
-ffffffff817eb9e0 t tcp_setsockopt
-ffffffff817eba20 t tcp_get_info
-ffffffff817ebed0 t tcp_get_timestamping_opt_stats
-ffffffff817ec410 t do_tcp_getsockopt
-ffffffff817ed350 t check_zeroed_sockptr
-ffffffff817ed390 t tcp_zerocopy_receive
-ffffffff817edc90 t tcp_bpf_bypass_getsockopt
-ffffffff817edcb0 t tcp_getsockopt
-ffffffff817edd20 t tcp_done
-ffffffff817ede80 t tcp_abort
-ffffffff817ee040 t tcp_orphan_update
-ffffffff817ee0c0 t tcp_splice_data_recv
-ffffffff817ee110 t tcp_fast_path_check
-ffffffff817ee180 t tcp_peek_sndq
-ffffffff817ee240 t tcp_zerocopy_vm_insert_batch
-ffffffff817ee300 t tcp_zc_handle_leftover
-ffffffff817ee4d0 t tcp_zerocopy_vm_insert_batch_error
-ffffffff817ee5a0 t tcp_enter_quickack_mode
-ffffffff817ee600 t tcp_initialize_rcv_mss
-ffffffff817ee650 t tcp_rcv_space_adjust
-ffffffff817ee820 t tcp_init_cwnd
-ffffffff817ee850 t tcp_mark_skb_lost
-ffffffff817ee8e0 t tcp_skb_shift
-ffffffff817ee920 t tcp_clear_retrans
-ffffffff817ee960 t tcp_enter_loss
-ffffffff817eecc0 t tcp_cwnd_reduction
-ffffffff817eedb0 t tcp_enter_cwr
-ffffffff817eee50 t tcp_simple_retransmit
-ffffffff817ef030 t tcp_enter_recovery
-ffffffff817ef140 t tcp_synack_rtt_meas
-ffffffff817ef1f0 t tcp_ack_update_rtt
-ffffffff817ef460 t tcp_rearm_rto
-ffffffff817ef560 t tcp_oow_rate_limited
-ffffffff817ef5d0 t tcp_parse_mss_option
-ffffffff817ef670 t tcp_parse_options
-ffffffff817efb20 t tcp_reset
-ffffffff817efbd0 t tcp_fin
-ffffffff817efd40 t sk_wake_async
-ffffffff817efd80 t tcp_send_rcvq
-ffffffff817eff00 t tcp_try_rmem_schedule
-ffffffff817f0a50 t tcp_queue_rcv
-ffffffff817f0b30 t tcp_data_ready
-ffffffff817f0bf0 t tcp_rbtree_insert
-ffffffff817f0c70 t tcp_check_space
-ffffffff817f0e90 t tcp_rcv_established
-ffffffff817f14f0 t tcp_ack
-ffffffff817f2960 t tcp_data_snd_check
-ffffffff817f29b0 t tcp_event_data_recv
-ffffffff817f2c20 t __tcp_ack_snd_check
-ffffffff817f2df0 t tcp_validate_incoming
-ffffffff817f3300 t tcp_urg
-ffffffff817f33e0 t tcp_data_queue
-ffffffff817f4470 t tcp_drop_reason
-ffffffff817f44b0 t tcp_init_transfer
-ffffffff817f4710 t tcp_finish_connect
-ffffffff817f4820 t tcp_rcv_state_process
-ffffffff817f5490 t tcp_send_challenge_ack
-ffffffff817f5560 t tcp_rcv_synrecv_state_fastopen
-ffffffff817f55c0 t tcp_update_pacing_rate
-ffffffff817f5640 t inet_reqsk_alloc
-ffffffff817f5770 t tcp_get_syncookie_mss
-ffffffff817f5820 t tcp_conn_request
-ffffffff817f60e0 t tcp_prune_ofo_queue
-ffffffff817f6270 t tcp_try_coalesce
-ffffffff817f6370 t tcp_sacktag_write_queue
-ffffffff817f6fe0 t tcp_process_tlp_ack
-ffffffff817f7180 t tcp_fastretrans_alert
-ffffffff817f8050 t tcp_sacktag_walk
-ffffffff817f8690 t tcp_sacktag_one
-ffffffff817f8830 t tcp_shifted_skb
-ffffffff817f8a30 t tcp_rtx_queue_unlink_and_free
-ffffffff817f8b70 t tcp_rtx_queue_unlink_and_free
-ffffffff817f8cb0 t tcp_mtup_probe_success
-ffffffff817f8dd0 t tcp_try_undo_recovery
-ffffffff817f8f30 t tcp_try_undo_loss
-ffffffff817f91c0 t tcp_mark_head_lost
-ffffffff817f9340 t tcp_ecn_check_ce
-ffffffff817f9490 t tcp_grow_window
-ffffffff817f96b0 t tcp_gro_dev_warn
-ffffffff817f9720 t tcp_send_dupack
-ffffffff817f9890 t tcp_check_urg
-ffffffff817f99a0 t tcp_rcv_fastopen_synack
-ffffffff817f9c00 t tcp_mstamp_refresh
-ffffffff817f9c40 t tcp_cwnd_restart
-ffffffff817f9d30 t tcp_select_initial_window
-ffffffff817f9e20 t tcp_release_cb
-ffffffff817f9f60 t tcp_tsq_write
-ffffffff817fa000 t tcp_tasklet_func
-ffffffff817fa190 t tcp_wfree
-ffffffff817fa320 t tcp_pace_kick
-ffffffff817fa3e0 t tcp_fragment
-ffffffff817fa780 t tcp_adjust_pcount
-ffffffff817fa840 t tcp_trim_head
-ffffffff817fa960 t __pskb_trim_head
-ffffffff817faab0 t tcp_mtu_to_mss
-ffffffff817fab20 t tcp_mss_to_mtu
-ffffffff817fab70 t tcp_mtup_init
-ffffffff817fac30 t tcp_sync_mss
-ffffffff817fad60 t tcp_current_mss
-ffffffff817fae40 t tcp_chrono_start
-ffffffff817faea0 t tcp_chrono_stop
-ffffffff817faf60 t tcp_schedule_loss_probe
-ffffffff817fb0b0 t tcp_send_loss_probe
-ffffffff817fb2d0 t tcp_write_xmit
-ffffffff817fc490 t __tcp_retransmit_skb
-ffffffff817fca90 t __tcp_push_pending_frames
-ffffffff817fcb60 t tcp_push_one
-ffffffff817fcba0 t __tcp_select_window
-ffffffff817fcda0 t tcp_skb_collapse_tstamp
-ffffffff817fce00 t tcp_update_skb_after_send
-ffffffff817fcef0 t tcp_retransmit_skb
-ffffffff817fcf80 t tcp_xmit_retransmit_queue
-ffffffff817fd380 t sk_forced_mem_schedule
-ffffffff817fd480 t tcp_send_fin
-ffffffff817fd720 t tcp_send_active_reset
-ffffffff817fd880 t tcp_send_synack
-ffffffff817fda60 t tcp_make_synack
-ffffffff817fde30 t tcp_options_write
-ffffffff817fdfe0 t tcp_connect
-ffffffff817feb00 t tcp_send_delayed_ack
-ffffffff817febe0 t tcp_send_ack
-ffffffff817fec00 t __tcp_send_ack
-ffffffff817fed30 t __tcp_transmit_skb
-ffffffff817ff710 t tcp_send_window_probe
-ffffffff817ff7e0 t tcp_write_wakeup
-ffffffff817ffaa0 t tcp_event_new_data_sent
-ffffffff817ffb50 t tcp_send_probe0
-ffffffff817ffc70 t tcp_rtx_synack
-ffffffff817ffdf0 t tcp_init_tso_segs
-ffffffff817ffe30 t tcp_mtu_check_reprobe
-ffffffff817ffeb0 t tcp_can_coalesce_send_queue_head
-ffffffff817fff30 t tcp_wmem_free_skb
-ffffffff81800020 t tcp_syn_options
-ffffffff818001a0 t tcp_clamp_probe0_to_user_timeout
-ffffffff81800200 t tcp_delack_timer_handler
-ffffffff818002d0 t tcp_retransmit_timer
-ffffffff81800c10 t tcp_write_err
-ffffffff81800c70 t tcp_write_timer_handler
-ffffffff81800ea0 t tcp_syn_ack_timeout
-ffffffff81800ed0 t tcp_set_keepalive
-ffffffff81800f40 t tcp_init_xmit_timers
-ffffffff81800fb0 t tcp_write_timer
-ffffffff81801070 t tcp_delack_timer
-ffffffff81801150 t tcp_keepalive_timer
-ffffffff818013c0 t tcp_compressed_ack_kick
-ffffffff818014a0 t tcp_out_of_resources
-ffffffff81801560 t tcp_twsk_unique
-ffffffff818016e0 t tcp_v4_connect
-ffffffff81801b20 t ip_route_newports
-ffffffff81801ba0 t tcp_v4_mtu_reduced
-ffffffff81801cd0 t tcp_req_err
-ffffffff81801d40 t reqsk_put
-ffffffff81801de0 t reqsk_put
-ffffffff81801e80 t tcp_ld_RTO_revert
-ffffffff81801fc0 t tcp_v4_err
-ffffffff81802430 t sock_put
-ffffffff81802470 t sock_put
-ffffffff818024b0 t sock_put
-ffffffff818024f0 t sock_put
-ffffffff81802530 t sock_put
-ffffffff81802570 t __tcp_v4_send_check
-ffffffff818025f0 t tcp_v4_send_check
-ffffffff81802670 t tcp_v4_reqsk_send_ack
-ffffffff81802740 t tcp_v4_send_reset
-ffffffff81802b00 t tcp_v4_reqsk_destructor
-ffffffff81802b20 t tcp_v4_route_req
-ffffffff81802c10 t tcp_v4_init_seq
-ffffffff81802c50 t tcp_v4_init_ts_off
-ffffffff81802c80 t tcp_v4_send_synack
-ffffffff81802e30 t tcp_v4_conn_request
-ffffffff81802e90 t tcp_v4_syn_recv_sock
-ffffffff818031f0 t inet_sk_rx_dst_set
-ffffffff81803230 t tcp_v4_get_syncookie
-ffffffff81803240 t tcp_v4_do_rcv
-ffffffff81803440 t tcp_checksum_complete
-ffffffff818034a0 t tcp_checksum_complete
-ffffffff81803500 t trace_tcp_bad_csum
-ffffffff81803560 t tcp_v4_early_demux
-ffffffff818036c0 t tcp_add_backlog
-ffffffff81803b30 t tcp_filter
-ffffffff81803b50 t tcp_v4_rcv
-ffffffff81804760 t xfrm4_policy_check
-ffffffff818047d0 t xfrm4_policy_check
-ffffffff81804820 t tcp_v4_fill_cb
-ffffffff818048d0 t tcp_segs_in
-ffffffff81804930 t tcp_segs_in
-ffffffff81804990 t tcp_v4_destroy_sock
-ffffffff81804b00 t tcp_seq_start
-ffffffff81804e10 t tcp_get_idx
-ffffffff81805010 t tcp_seq_next
-ffffffff81805150 t listening_get_next
-ffffffff818052a0 t established_get_next
-ffffffff818053e0 t tcp_seq_stop
-ffffffff81805440 t tcp4_proc_exit
-ffffffff81805470 t tcp_stream_memory_free
-ffffffff818054b0 t tcp_v4_pre_connect
-ffffffff818054d0 t tcp_v4_init_sock
-ffffffff81805500 t tcp_v4_send_ack
-ffffffff81805760 t tcp4_seq_show
-ffffffff81805b90 t tcp_timewait_state_process
-ffffffff81805ef0 t tcp_time_wait
-ffffffff81806100 t tcp_twsk_destructor
-ffffffff81806110 t tcp_twsk_purge
-ffffffff81806180 t tcp_openreq_init_rwin
-ffffffff818062e0 t tcp_ca_openreq_child
-ffffffff81806370 t tcp_create_openreq_child
-ffffffff81806700 t tcp_check_req
-ffffffff81806bf0 t tcp_child_process
-ffffffff81806d80 t tcp_ca_find
-ffffffff81806dd0 t tcp_set_ca_state
-ffffffff81806e70 t tcp_ca_find_key
-ffffffff81806eb0 t tcp_register_congestion_control
-ffffffff81807060 t tcp_unregister_congestion_control
-ffffffff818070c0 t tcp_ca_get_key_by_name
-ffffffff81807140 t tcp_ca_get_name_by_key
-ffffffff818071a0 t tcp_assign_congestion_control
-ffffffff818072e0 t tcp_init_congestion_control
-ffffffff818073b0 t tcp_cleanup_congestion_control
-ffffffff818073e0 t tcp_set_default_congestion_control
-ffffffff81807460 t tcp_get_available_congestion_control
-ffffffff818074f0 t tcp_get_default_congestion_control
-ffffffff81807530 t tcp_get_allowed_congestion_control
-ffffffff818075d0 t tcp_set_allowed_congestion_control
-ffffffff81807770 t tcp_set_congestion_control
-ffffffff818079c0 t tcp_slow_start
-ffffffff81807a00 t tcp_cong_avoid_ai
-ffffffff81807a90 t tcp_reno_cong_avoid
-ffffffff81807b70 t tcp_reno_ssthresh
-ffffffff81807b90 t tcp_reno_undo_cwnd
-ffffffff81807bb0 t tcp_update_metrics
-ffffffff81807da0 t tcp_get_metrics
-ffffffff818082b0 t tcp_init_metrics
-ffffffff818083f0 t tcp_peer_is_proven
-ffffffff818085c0 t tcp_fastopen_cache_get
-ffffffff81808670 t tcp_fastopen_cache_set
-ffffffff818087a0 t tcp_metrics_nl_cmd_get
-ffffffff81808ac0 t tcp_metrics_nl_dump
-ffffffff81808c20 t tcp_metrics_nl_cmd_del
-ffffffff81808f50 t tcp_metrics_fill_info
-ffffffff818092d0 t tcp_fastopen_init_key_once
-ffffffff818093a0 t tcp_fastopen_reset_cipher
-ffffffff81809450 t tcp_fastopen_destroy_cipher
-ffffffff81809480 t tcp_fastopen_ctx_free
-ffffffff818094a0 t tcp_fastopen_ctx_destroy
-ffffffff818094d0 t tcp_fastopen_get_cipher
-ffffffff81809560 t tcp_fastopen_add_skb
-ffffffff81809710 t tcp_try_fastopen
-ffffffff81809dd0 t tcp_fastopen_cookie_check
-ffffffff81809e90 t tcp_fastopen_active_should_disable
-ffffffff81809ef0 t tcp_fastopen_defer_connect
-ffffffff8180a0a0 t tcp_fastopen_active_disable
-ffffffff8180a0e0 t tcp_fastopen_active_disable_ofo_check
-ffffffff8180a1d0 t tcp_fastopen_active_detect_blackhole
-ffffffff8180a240 t tcp_rate_skb_sent
-ffffffff8180a2d0 t tcp_rate_skb_delivered
-ffffffff8180a380 t tcp_rate_gen
-ffffffff8180a490 t tcp_rate_check_app_limited
-ffffffff8180a500 t tcp_rack_skb_timeout
-ffffffff8180a550 t tcp_rack_mark_lost
-ffffffff8180a600 t tcp_rack_detect_loss
-ffffffff8180a790 t tcp_rack_advance
-ffffffff8180a800 t tcp_rack_reo_timeout
-ffffffff8180a8f0 t tcp_rack_update_reo_wnd
-ffffffff8180a980 t tcp_newreno_mark_lost
-ffffffff8180aa10 t tcp_register_ulp
-ffffffff8180aac0 t tcp_unregister_ulp
-ffffffff8180ab20 t tcp_get_available_ulp
-ffffffff8180abb0 t tcp_update_ulp
-ffffffff8180abe0 t tcp_cleanup_ulp
-ffffffff8180ac20 t tcp_set_ulp
-ffffffff8180ace0 t tcp_gso_segment
-ffffffff8180b1a0 t refcount_sub_and_test
-ffffffff8180b1f0 t refcount_sub_and_test
-ffffffff8180b240 t tcp_gro_receive
-ffffffff8180b5e0 t tcp_gro_complete
-ffffffff8180b650 t tcp4_gro_receive
-ffffffff8180b7c0 t tcp4_gro_complete
-ffffffff8180b8d0 t tcp4_gso_segment.llvm.11843097101923400041
-ffffffff8180b980 t __ip4_datagram_connect
-ffffffff8180bc30 t ip4_datagram_connect
-ffffffff8180bc70 t ip4_datagram_release_cb
-ffffffff8180be80 t raw_hash_sk
-ffffffff8180bfa0 t raw_unhash_sk
-ffffffff8180c040 t raw_v4_match
-ffffffff8180c080 t raw_local_deliver
-ffffffff8180c280 t raw_icmp_error
-ffffffff8180c480 t raw_rcv
-ffffffff8180c560 t raw_rcv_skb
-ffffffff8180c5b0 t raw_abort
-ffffffff8180c5f0 t raw_close
-ffffffff8180c620 t raw_ioctl
-ffffffff8180c6c0 t raw_sk_init
-ffffffff8180c6e0 t raw_destroy
-ffffffff8180c710 t raw_setsockopt
-ffffffff8180c7b0 t raw_getsockopt
-ffffffff8180c870 t raw_sendmsg
-ffffffff8180cf30 t raw_recvmsg
-ffffffff8180d100 t raw_bind
-ffffffff8180d1f0 t raw_seq_start
-ffffffff8180d310 t raw_seq_next
-ffffffff8180d400 t raw_seq_stop
-ffffffff8180d420 t raw_send_hdrinc
-ffffffff8180d860 t raw_getfrag
-ffffffff8180d950 t ip_select_ident
-ffffffff8180d9a0 t raw_seq_show
-ffffffff8180da90 t udp_lib_get_port
-ffffffff8180e020 t udp_lib_lport_inuse
-ffffffff8180e130 t udp_lib_lport_inuse2
-ffffffff8180e210 t udp_v4_get_port
-ffffffff8180e2d0 t __udp4_lib_lookup
-ffffffff8180e6e0 t udp4_lib_lookup2
-ffffffff8180e870 t udp4_lib_lookup_skb
-ffffffff8180e8e0 t udp_encap_enable
-ffffffff8180e910 t udp_encap_disable
-ffffffff8180e930 t __udp4_lib_err
-ffffffff8180ed80 t udp_err
-ffffffff8180eda0 t udp_flush_pending_frames
-ffffffff8180edd0 t udp4_hwcsum
-ffffffff8180ef10 t udp_set_csum
-ffffffff8180f080 t udp_push_pending_frames
-ffffffff8180f0f0 t udp_send_skb
-ffffffff8180f440 t udp_cmsg_send
-ffffffff8180f4f0 t udp_sendmsg
-ffffffff8180ff00 t udplite_getfrag
-ffffffff8180ff70 t udplite_getfrag
-ffffffff8180ffe0 t dst_clone
-ffffffff81810010 t udp_sendpage
-ffffffff81810270 t udp_skb_destructor
-ffffffff81810290 t udp_rmem_release
-ffffffff818103a0 t __udp_enqueue_schedule_skb
-ffffffff818105f0 t udp_destruct_common
-ffffffff81810760 t udp_init_sock
-ffffffff818107b0 t udp_destruct_sock
-ffffffff818107d0 t skb_consume_udp
-ffffffff81810880 t udp_ioctl
-ffffffff818108e0 t first_packet_length
-ffffffff81810a20 t __skb_recv_udp
-ffffffff81810d90 t udp_read_skb
-ffffffff81810fd0 t udp_lib_checksum_complete
-ffffffff81811040 t udp_lib_checksum_complete
-ffffffff818110b0 t udp_recvmsg
-ffffffff81811540 t udp_pre_connect
-ffffffff81811560 t __udp_disconnect
-ffffffff81811660 t udp_disconnect
-ffffffff81811770 t udp_lib_unhash
-ffffffff818118d0 t udp_lib_rehash
-ffffffff81811a20 t udp_v4_rehash
-ffffffff81811a80 t udp_sk_rx_dst_set
-ffffffff81811ad0 t __udp4_lib_rcv
-ffffffff81812490 t udp_unicast_rcv_skb
-ffffffff81812540 t udp_v4_early_demux
-ffffffff81812990 t udp_rcv
-ffffffff818129b0 t udp_destroy_sock
-ffffffff81812a50 t udp_lib_setsockopt
-ffffffff81812dc0 t udp_setsockopt
-ffffffff81812e00 t udp_lib_getsockopt
-ffffffff81812f50 t udp_getsockopt
-ffffffff81812f80 t udp_poll
-ffffffff81813010 t udp_abort
-ffffffff81813140 t udp_lib_close
-ffffffff81813150 t udp_lib_close
-ffffffff81813160 t udp_lib_close
-ffffffff81813170 t udp_lib_close
-ffffffff81813180 t udp_lib_hash
-ffffffff81813190 t udp_lib_hash
-ffffffff818131a0 t udp_lib_hash
-ffffffff818131b0 t udp_lib_hash
-ffffffff818131c0 t udp_seq_start
-ffffffff818132d0 t udp_seq_next
-ffffffff81813380 t udp_seq_stop
-ffffffff818133d0 t udp4_seq_show
-ffffffff818134f0 t udp4_proc_exit
-ffffffff81813520 t udp_flow_hashrnd
-ffffffff818135b0 t lookup_reuseport
-ffffffff81813700 t lookup_reuseport
-ffffffff81813900 t __first_packet_length
-ffffffff81813ab0 t udp_queue_rcv_skb
-ffffffff81813ca0 t udp_queue_rcv_one_skb
-ffffffff81814130 t udp_get_first
-ffffffff81814200 t udplite_sk_init
-ffffffff81814220 t udplite_rcv
-ffffffff81814240 t udplite_err
-ffffffff81814260 t skb_udp_tunnel_segment
-ffffffff81814780 t __udp_gso_segment
-ffffffff81814ca0 t udp_gro_receive
-ffffffff81815070 t udp4_gro_receive
-ffffffff81815370 t udp_gro_complete
-ffffffff818154d0 t udp4_gro_complete
-ffffffff81815600 t __udpv4_gso_segment_csum
-ffffffff81815710 t skb_gro_receive_list
-ffffffff818157a0 t udp4_ufo_fragment.llvm.8326017856540786842
-ffffffff81815950 t arp_hash
-ffffffff81815970 t arp_key_eq
-ffffffff81815990 t arp_constructor
-ffffffff81815bc0 t parp_redo
-ffffffff81815bd0 t arp_is_multicast
-ffffffff81815bf0 t arp_mc_map
-ffffffff81815d10 t arp_send
-ffffffff81815d50 t arp_send_dst
-ffffffff81815df0 t arp_create
-ffffffff81815fc0 t arp_xmit
-ffffffff81815fe0 t arp_invalidate
-ffffffff81816110 t arp_ioctl
-ffffffff81816330 t arp_req_delete
-ffffffff81816490 t arp_req_set
-ffffffff81816730 t arp_req_get
-ffffffff81816860 t arp_ifdown
-ffffffff81816880 t arp_solicit
-ffffffff81816b70 t arp_error_report
-ffffffff81816bc0 t arp_process
-ffffffff818171b0 t arp_ignore
-ffffffff81817230 t arp_filter
-ffffffff81817310 t arp_fwd_proxy
-ffffffff81817380 t __neigh_lookup
-ffffffff818173f0 t __neigh_lookup
-ffffffff81817460 t arp_accept
-ffffffff818174c0 t arp_is_garp
-ffffffff81817530 t arp_rcv
-ffffffff81817640 t arp_seq_start
-ffffffff81817660 t arp_seq_show
-ffffffff81817a40 t arp_netdev_event
-ffffffff81817b10 t icmp_global_allow
-ffffffff81817c00 t icmp_out_count
-ffffffff81817c30 t __icmp_send
-ffffffff818181c0 t icmp_route_lookup
-ffffffff81818520 t icmpv4_xrlim_allow
-ffffffff818185e0 t icmp_push_reply
-ffffffff81818700 t icmp_build_probe
-ffffffff81818a70 t icmp_rcv
-ffffffff81818f80 t icmp_echo
-ffffffff81819070 t ip_icmp_error_rfc4884
-ffffffff81819220 t icmp_err
-ffffffff818192a0 t ip_route_input
-ffffffff81819360 t icmp_glue_bits
-ffffffff818193c0 t icmp_reply
-ffffffff818197a0 t icmp_discard
-ffffffff818197b0 t icmp_unreach
-ffffffff818199b0 t icmp_redirect
-ffffffff81819a30 t icmp_timestamp
-ffffffff81819b80 t icmp_tag_validation
-ffffffff81819bb0 t icmp_socket_deliver
-ffffffff81819c50 t __ip_dev_find
-ffffffff81819dc0 t inet_lookup_ifaddr_rcu
-ffffffff81819e00 t in_dev_finish_destroy
-ffffffff81819e70 t inet_addr_onlink
-ffffffff81819ee0 t inetdev_by_index
-ffffffff81819f20 t inet_ifa_byprefix
-ffffffff81819fa0 t devinet_ioctl
-ffffffff8181a5b0 t inet_abc_len
-ffffffff8181a620 t inet_set_ifa
-ffffffff8181a720 t inet_gifconf
-ffffffff8181a880 t inet_select_addr
-ffffffff8181a9a0 t inet_confirm_addr
-ffffffff8181aa40 t confirm_addr_indev
-ffffffff8181ab80 t register_inetaddr_notifier
-ffffffff8181aba0 t unregister_inetaddr_notifier
-ffffffff8181abc0 t register_inetaddr_validator_notifier
-ffffffff8181abe0 t unregister_inetaddr_validator_notifier
-ffffffff8181ac00 t inet_netconf_notify_devconf
-ffffffff8181ad50 t inet_netconf_fill_devconf
-ffffffff8181afc0 t inet_rtm_newaddr
-ffffffff8181b550 t inet_rtm_deladdr
-ffffffff8181b7d0 t inet_dump_ifaddr
-ffffffff8181bd90 t inet_netconf_get_devconf
-ffffffff8181c070 t inet_netconf_dump_devconf
-ffffffff8181c2e0 t __inet_del_ifa
-ffffffff8181c660 t rtmsg_ifa
-ffffffff8181c760 t inet_fill_ifaddr
-ffffffff8181ca60 t put_cacheinfo
-ffffffff8181caf0 t inet_rcu_free_ifa
-ffffffff8181cba0 t __inet_insert_ifa
-ffffffff8181ce70 t __devinet_sysctl_register
-ffffffff8181cfd0 t __devinet_sysctl_unregister
-ffffffff8181d020 t devinet_sysctl_forward
-ffffffff8181d290 t devinet_conf_proc
-ffffffff8181d500 t ipv4_doint_and_flush
-ffffffff8181d560 t inetdev_event
-ffffffff8181db50 t inetdev_init
-ffffffff8181dd30 t devinet_sysctl_register
-ffffffff8181ddd0 t in_dev_rcu_put
-ffffffff8181de80 t check_lifetime
-ffffffff8181e0d0 t inet_fill_link_af
-ffffffff8181e250 t inet_get_link_af_size
-ffffffff8181e270 t inet_validate_link_af
-ffffffff8181e370 t inet_set_link_af
-ffffffff8181e480 t ip_mc_autojoin_config
-ffffffff8181e550 t inet_sock_destruct
-ffffffff8181e6f0 t inet_listen
-ffffffff8181e7b0 t inet_release
-ffffffff8181e820 t inet_bind
-ffffffff8181e860 t __inet_bind
-ffffffff8181ea90 t inet_dgram_connect
-ffffffff8181eb50 t __inet_stream_connect
-ffffffff8181ee40 t inet_stream_connect
-ffffffff8181ee90 t inet_accept
-ffffffff8181f020 t inet_getname
-ffffffff8181f0d0 t inet_send_prepare
-ffffffff8181f1a0 t inet_sendmsg
-ffffffff8181f230 t inet_sendpage
-ffffffff8181f2c0 t inet_recvmsg
-ffffffff8181f3e0 t inet_shutdown
-ffffffff8181f4d0 t inet_ioctl
-ffffffff8181f720 t inet_register_protosw
-ffffffff8181f7e0 t inet_unregister_protosw
-ffffffff8181f850 t inet_sk_rebuild_header
-ffffffff8181fcb0 t inet_sk_set_state
-ffffffff8181fd20 t inet_sk_state_store
-ffffffff8181fd90 t inet_gso_segment
-ffffffff81820150 t inet_gro_receive
-ffffffff81820430 t inet_current_timestamp
-ffffffff818204c0 t inet_recv_error
-ffffffff81820500 t inet_gro_complete
-ffffffff818205f0 t inet_ctl_sock_create
-ffffffff81820680 t snmp_fold_field
-ffffffff818206f0 t ipip_gso_segment
-ffffffff81820720 t ipip_gro_receive
-ffffffff81820750 t ipip_gro_complete
-ffffffff81820780 t inet_create
-ffffffff81820af0 t igmp_rcv
-ffffffff818212c0 t __ip_mc_inc_group
-ffffffff818212e0 t ____ip_mc_inc_group
-ffffffff81821540 t ip_mc_inc_group
-ffffffff81821560 t ip_mc_check_igmp
-ffffffff818218c0 t __ip_mc_dec_group
-ffffffff81821ac0 t __igmp_group_dropped
-ffffffff81821c70 t ip_mc_unmap
-ffffffff81821cf0 t ip_mc_remap
-ffffffff81821d70 t igmpv3_del_delrec
-ffffffff81821f00 t igmp_group_added
-ffffffff818220b0 t ip_mc_down
-ffffffff818221a0 t ip_mc_init_dev
-ffffffff81822240 t igmp_gq_timer_expire
-ffffffff818222a0 t igmp_ifc_timer_expire
-ffffffff81822710 t ip_mc_up
-ffffffff818227c0 t ip_mc_destroy_dev
-ffffffff81822950 t igmpv3_clear_delrec
-ffffffff81822b30 t ip_mc_join_group
-ffffffff81822b50 t __ip_mc_join_group.llvm.1869046863835837833
-ffffffff81822ca0 t ip_mc_join_group_ssm
-ffffffff81822cb0 t ip_mc_leave_group
-ffffffff81822e50 t ip_mc_find_dev
-ffffffff81822f60 t ip_mc_source
-ffffffff81823460 t ip_mc_add_src
-ffffffff81823720 t ip_mc_del_src
-ffffffff818238f0 t ip_mc_msfilter
-ffffffff81823c50 t ip_mc_msfget
-ffffffff81823f20 t copy_to_sockptr_offset
-ffffffff81823f90 t ip_mc_gsfget
-ffffffff818241d0 t ip_mc_sf_allow
-ffffffff818242e0 t ip_mc_drop_socket
-ffffffff81824410 t ip_check_mc_rcu
-ffffffff818244e0 t igmp_gq_start_timer
-ffffffff81824560 t igmp_timer_expire
-ffffffff81824780 t igmp_send_report
-ffffffff81824a30 t igmpv3_send_report
-ffffffff81824b60 t add_grec
-ffffffff81825090 t add_grec
-ffffffff81825590 t igmpv3_sendpack
-ffffffff818255f0 t igmpv3_newpack
-ffffffff81825900 t is_in
-ffffffff81825a00 t is_in
-ffffffff81825b00 t ip_mc_validate_checksum
-ffffffff81825bf0 t igmpv3_add_delrec
-ffffffff81825d40 t igmp_ifc_event
-ffffffff81825e10 t ip_mc_del1_src
-ffffffff81825f30 t sf_setstate
-ffffffff818260a0 t sf_setstate
-ffffffff81826270 t igmp_mc_seq_start
-ffffffff81826380 t igmp_mc_seq_stop
-ffffffff818263b0 t igmp_mc_seq_next
-ffffffff81826490 t igmp_mc_seq_show
-ffffffff818265f0 t igmp_mcf_seq_start
-ffffffff818267b0 t igmp_mcf_seq_stop
-ffffffff818267f0 t igmp_mcf_seq_next
-ffffffff81826980 t igmp_mcf_seq_show
-ffffffff818269e0 t igmp_netdev_event
-ffffffff81826b00 t fib_new_table
-ffffffff81826bd0 t fib_get_table
-ffffffff81826c10 t fib_unmerge
-ffffffff81826d10 t fib_flush
-ffffffff81826d90 t inet_addr_type_table
-ffffffff81826f20 t inet_addr_type
-ffffffff818270a0 t inet_dev_addr_type
-ffffffff81827240 t inet_addr_type_dev_table
-ffffffff818273c0 t fib_compute_spec_dst
-ffffffff818276d0 t fib_info_nh_uses_dev
-ffffffff81827730 t fib_validate_source
-ffffffff81827be0 t ip_rt_ioctl
-ffffffff81828120 t fib_gw_from_via
-ffffffff81828200 t ip_valid_fib_dump_req
-ffffffff81828440 t fib_add_ifaddr
-ffffffff81828a20 t fib_modify_prefix_metric
-ffffffff81828d40 t fib_del_ifaddr
-ffffffff81829710 t inet_rtm_newroute
-ffffffff81829840 t inet_rtm_delroute
-ffffffff818299c0 t inet_dump_fib
-ffffffff81829c40 t ip_fib_net_exit
-ffffffff81829db0 t nl_fib_input
-ffffffff81829fb0 t fib_netdev_event
-ffffffff8182a1e0 t fib_disable_ip
-ffffffff8182a280 t fib_inetaddr_event
-ffffffff8182a380 t rtm_to_fib_config
-ffffffff8182a7a0 t fib_nh_common_release
-ffffffff8182a880 t rt_fibinfo_free_cpus
-ffffffff8182a910 t fib_nh_release
-ffffffff8182a930 t free_fib_info
-ffffffff8182a970 t free_fib_info_rcu
-ffffffff8182aa10 t fib_release_info
-ffffffff8182ab80 t ip_fib_check_default
-ffffffff8182ac00 t fib_nlmsg_size
-ffffffff8182add0 t fib_info_nhc
-ffffffff8182ae30 t rtmsg_fib
-ffffffff8182afa0 t fib_dump_info
-ffffffff8182b2b0 t fib_nh_common_init
-ffffffff8182b350 t fib_nh_init
-ffffffff8182b440 t fib_nh_match
-ffffffff8182b510 t fib_metrics_match
-ffffffff8182b670 t fib_check_nh
-ffffffff8182bca0 t fib_info_update_nhc_saddr
-ffffffff8182bcf0 t fib_result_prefsrc
-ffffffff8182bd60 t fib_create_info
-ffffffff8182c480 t fib_info_hash_move
-ffffffff8182c650 t nexthop_get
-ffffffff8182c690 t nexthop_get
-ffffffff8182c6d0 t fib_valid_prefsrc
-ffffffff8182c750 t fib_find_info
-ffffffff8182c930 t fib_info_hashfn
-ffffffff8182c990 t fib_nexthop_info
-ffffffff8182cb40 t fib_add_nexthop
-ffffffff8182cc40 t fib_sync_down_addr
-ffffffff8182ccc0 t fib_nhc_update_mtu
-ffffffff8182cd50 t fib_sync_mtu
-ffffffff8182ce20 t fib_sync_down_dev
-ffffffff8182d000 t fib_sync_up
-ffffffff8182d1f0 t fib_select_path
-ffffffff8182d600 t fib_detect_death
-ffffffff8182d770 t fib_alias_hw_flags_set
-ffffffff8182d960 t fib_table_insert
-ffffffff8182df50 t call_fib_entry_notifiers
-ffffffff8182dfe0 t fib_insert_alias
-ffffffff8182e550 t fib_remove_alias
-ffffffff8182e7f0 t fib_lookup_good_nhc
-ffffffff8182e850 t fib_table_lookup
-ffffffff8182ed40 t trace_fib_table_lookup
-ffffffff8182eda0 t nexthop_get_nhc_lookup
-ffffffff8182eeb0 t fib_table_delete
-ffffffff8182f260 t fib_trie_unmerge
-ffffffff8182f6f0 t fib_trie_table
-ffffffff8182f760 t fib_table_flush_external
-ffffffff8182f9a0 t resize
-ffffffff81830860 t __node_free_rcu
-ffffffff81830890 t fib_table_flush
-ffffffff81830c60 t fib_info_notify_update
-ffffffff81830db0 t fib_notify
-ffffffff81830ff0 t fib_free_table
-ffffffff81831010 t __trie_free_rcu.llvm.17843055199414255912
-ffffffff81831030 t fib_table_dump
-ffffffff81831410 t fib_triestat_seq_show
-ffffffff81831a40 t __alias_free_mem
-ffffffff81831a60 t put_child
-ffffffff81831b50 t replace
-ffffffff81831c70 t update_children
-ffffffff81831cc0 t fib_trie_seq_start
-ffffffff81831e20 t fib_trie_seq_stop
-ffffffff81831e30 t fib_trie_seq_next
-ffffffff81831fa0 t fib_trie_seq_show
-ffffffff818322d0 t fib_route_seq_start
-ffffffff81832460 t fib_route_seq_stop
-ffffffff81832470 t fib_route_seq_next
-ffffffff81832570 t fib_route_seq_show
-ffffffff818327c0 t call_fib4_notifier
-ffffffff818327e0 t call_fib4_notifiers
-ffffffff81832860 t fib4_seq_read
-ffffffff818328d0 t fib4_dump
-ffffffff81832910 t inet_frags_init
-ffffffff81832980 t inet_frags_fini
-ffffffff818329e0 t fqdir_init
-ffffffff81832a90 t fqdir_exit
-ffffffff81832af0 t fqdir_work_fn
-ffffffff81832b50 t inet_frag_kill
-ffffffff81832e50 t inet_frag_rbtree_purge
-ffffffff81832ed0 t inet_frag_destroy
-ffffffff81832fd0 t inet_frag_destroy_rcu
-ffffffff81833020 t inet_frag_find
-ffffffff818335b0 t inet_frag_queue_insert
-ffffffff81833710 t inet_frag_reasm_prepare
-ffffffff818339d0 t inet_frag_reasm_finish
-ffffffff81833c00 t inet_frag_pull_head
-ffffffff81833c90 t inet_frags_free_cb
-ffffffff81833d30 t fqdir_free_fn
-ffffffff81833db0 t ping_get_port
-ffffffff81833f30 t ping_hash
-ffffffff81833f40 t ping_unhash
-ffffffff81833fe0 t ping_init_sock
-ffffffff81834090 t ping_close
-ffffffff818340a0 t ping_bind
-ffffffff81834400 t ping_err
-ffffffff818346a0 t ping_lookup
-ffffffff818347a0 t ping_getfrag
-ffffffff81834840 t ping_common_sendmsg
-ffffffff81834930 t ping_recvmsg
-ffffffff81834c60 t ping_queue_rcv_skb
-ffffffff81834cd0 t ping_rcv
-ffffffff81834da0 t ping_pre_connect
-ffffffff81834dc0 t ping_v4_sendmsg
-ffffffff81835420 t ping_seq_start
-ffffffff81835470 t ping_get_idx
-ffffffff81835560 t ping_seq_next
-ffffffff81835630 t ping_seq_stop
-ffffffff81835650 t ping_proc_exit
-ffffffff81835680 t ping_v4_push_pending_frames
-ffffffff81835720 t ping_v4_seq_start
-ffffffff81835770 t ping_v4_seq_show
-ffffffff81835890 t iptunnel_xmit
-ffffffff81835aa0 t __iptunnel_pull_header
-ffffffff81835c30 t iptunnel_metadata_reply
-ffffffff81835d10 t iptunnel_handle_offloads
-ffffffff81835dd0 t skb_tunnel_check_pmtu
-ffffffff818360b0 t ip_tunnel_need_metadata
-ffffffff818360e0 t ip_tunnel_unneed_metadata
-ffffffff81836100 t ip_tunnel_parse_protocol
-ffffffff81836160 t ip_tunnel_netlink_encap_parms
-ffffffff818361e0 t ip_tunnel_netlink_parms
-ffffffff81836280 t iptunnel_pmtud_build_icmp
-ffffffff81836570 t iptunnel_pmtud_build_icmpv6
-ffffffff818368a0 t gre_gso_segment
-ffffffff81836cd0 t gre_gro_receive
-ffffffff81836fa0 t gre_gro_complete
-ffffffff81837040 t __skb_gro_checksum_validate_complete
-ffffffff81837090 t skb_gro_incr_csum_unnecessary
-ffffffff81837100 t ip_fib_metrics_init
-ffffffff81837390 t rtm_getroute_parse_ip_proto
-ffffffff818373f0 t nexthop_free_rcu
-ffffffff818374f0 t nexthop_find_by_id
-ffffffff81837540 t nexthop_select_path
-ffffffff818377a0 t nexthop_for_each_fib6_nh
-ffffffff81837830 t fib6_check_nexthop
-ffffffff818378d0 t fib_check_nexthop
-ffffffff818379a0 t register_nexthop_notifier
-ffffffff81837a10 t nexthops_dump
-ffffffff81837b40 t unregister_nexthop_notifier
-ffffffff81837ba0 t nexthop_set_hw_flags
-ffffffff81837c30 t nexthop_bucket_set_hw_flags
-ffffffff81837d00 t nexthop_res_grp_activity_update
-ffffffff81837dc0 t nh_notifier_info_init
-ffffffff81837fa0 t nh_notifier_mpath_info_init
-ffffffff818380e0 t rtm_new_nexthop
-ffffffff8183a5f0 t rtm_del_nexthop
-ffffffff8183a6b0 t rtm_get_nexthop
-ffffffff8183a7f0 t rtm_dump_nexthop
-ffffffff8183ab00 t rtm_get_nexthop_bucket
-ffffffff8183af30 t rtm_dump_nexthop_bucket
-ffffffff8183b3f0 t remove_nexthop
-ffffffff8183b600 t call_nexthop_notifiers
-ffffffff8183b760 t nexthop_notify
-ffffffff8183b8d0 t __remove_nexthop
-ffffffff8183ba50 t nh_fill_node
-ffffffff8183bea0 t remove_nexthop_from_groups
-ffffffff8183c380 t replace_nexthop_grp_res
-ffffffff8183c4d0 t nh_res_group_rebalance
-ffffffff8183c680 t nh_res_table_upkeep
-ffffffff8183ca50 t __call_nexthop_res_bucket_notifiers
-ffffffff8183cc70 t nh_fill_res_bucket
-ffffffff8183cea0 t nh_netdev_event
-ffffffff8183d020 t nh_res_table_upkeep_dw
-ffffffff8183d040 t replace_nexthop_single_notify
-ffffffff8183d1b0 t nh_valid_get_del_req
-ffffffff8183d2d0 t rtm_dump_nexthop_bucket_nh
-ffffffff8183d480 t ip_tunnel_lookup
-ffffffff8183d720 t ip_tunnel_rcv
-ffffffff8183def0 t ip_tunnel_encap_add_ops
-ffffffff8183df20 t ip_tunnel_encap_del_ops
-ffffffff8183df60 t ip_tunnel_encap_setup
-ffffffff8183e040 t ip_md_tunnel_xmit
-ffffffff8183e650 t tnl_update_pmtu
-ffffffff8183e9a0 t ip_tunnel_xmit
-ffffffff8183f5a0 t ip_tunnel_ctl
-ffffffff8183fbe0 t ip_tunnel_update
-ffffffff8183fd80 t ip_tunnel_siocdevprivate
-ffffffff8183fe70 t __ip_tunnel_change_mtu
-ffffffff8183fec0 t ip_tunnel_change_mtu
-ffffffff8183ff00 t ip_tunnel_dellink
-ffffffff8183ffa0 t ip_tunnel_get_link_net
-ffffffff8183ffc0 t ip_tunnel_get_iflink
-ffffffff8183ffe0 t ip_tunnel_init_net
-ffffffff81840200 t __ip_tunnel_create
-ffffffff818403d0 t ip_tunnel_bind_dev
-ffffffff818405a0 t ip_tunnel_delete_nets
-ffffffff81840680 t ip_tunnel_newlink
-ffffffff818409c0 t ip_tunnel_changelink
-ffffffff81840b70 t ip_tunnel_init
-ffffffff81840ca0 t ip_tunnel_dev_free
-ffffffff81840ce0 t ip_tunnel_uninit
-ffffffff81840d80 t ip_tunnel_setup
-ffffffff81840da0 t proc_tcp_available_ulp
-ffffffff81840e90 t ipv4_ping_group_range
-ffffffff81840ff0 t ipv4_local_port_range
-ffffffff81841150 t ipv4_fwd_update_priority
-ffffffff818411a0 t proc_tcp_congestion_control
-ffffffff818412a0 t proc_tcp_available_congestion_control
-ffffffff81841390 t proc_allowed_congestion_control
-ffffffff81841490 t proc_tcp_fastopen_key
-ffffffff81841900 t proc_tfo_blackhole_detect_timeout
-ffffffff81841930 t ipv4_privileged_ports
-ffffffff81841a10 t proc_tcp_ehash_entries
-ffffffff81841ad0 t sockstat_seq_show
-ffffffff81841c10 t netstat_seq_show
-ffffffff818421b0 t snmp_seq_show
-ffffffff81843c10 t fib4_rule_default
-ffffffff81843c70 t fib4_rules_dump
-ffffffff81843c90 t fib4_rules_seq_read
-ffffffff81843cb0 t __fib_lookup
-ffffffff81843d30 t fib4_rule_action
-ffffffff81843db0 t fib4_rule_suppress
-ffffffff81843e80 t fib4_rule_match
-ffffffff81843f40 t fib4_rule_configure
-ffffffff818440d0 t fib4_rule_delete
-ffffffff81844150 t fib4_rule_compare
-ffffffff818441d0 t fib4_rule_fill
-ffffffff818442a0 t fib4_rule_nlmsg_payload
-ffffffff818442b0 t fib4_rule_flush_cache
-ffffffff818442d0 t fib_empty_table
-ffffffff81844320 t ipip_tunnel_setup
-ffffffff818443a0 t ipip_tunnel_validate
-ffffffff818443e0 t ipip_newlink
-ffffffff818444f0 t ipip_changelink
-ffffffff81844630 t ipip_get_size
-ffffffff81844640 t ipip_fill_info
-ffffffff81844890 t ipip_tunnel_init
-ffffffff818448e0 t ipip_tunnel_xmit
-ffffffff818449f0 t ipip_tunnel_ctl
-ffffffff81844a60 t ipip_rcv
-ffffffff81844c50 t ipip_rcv
-ffffffff81844d40 t ipip_err
-ffffffff81844e80 t gre_add_protocol
-ffffffff81844ec0 t gre_del_protocol
-ffffffff81844f10 t gre_parse_header
-ffffffff81845390 t gre_rcv
-ffffffff81845430 t gre_rcv
-ffffffff81845850 t gre_rcv
-ffffffff81845cc0 t gre_err
-ffffffff81845d40 t gre_err
-ffffffff81845fb0 t gretap_fb_dev_create
-ffffffff81846130 t ipgre_newlink
-ffffffff81846270 t ipgre_tap_setup
-ffffffff818462d0 t ipgre_tap_validate
-ffffffff81846380 t ipgre_changelink
-ffffffff818465b0 t ipgre_get_size
-ffffffff818465c0 t ipgre_fill_info
-ffffffff81846960 t gre_tap_init
-ffffffff81846a50 t gre_tap_xmit
-ffffffff81846bf0 t gre_fill_metadata_dst
-ffffffff81846d60 t gre_fb_xmit
-ffffffff81846f10 t gre_build_header
-ffffffff818470c0 t gre_build_header
-ffffffff81847270 t ipgre_tunnel_validate
-ffffffff818472d0 t ipgre_netlink_parms
-ffffffff81847510 t ipgre_tunnel_setup
-ffffffff81847540 t ipgre_tunnel_init
-ffffffff81847680 t ipgre_xmit
-ffffffff818478c0 t ipgre_tunnel_ctl
-ffffffff81847bc0 t ipgre_header
-ffffffff81847cb0 t ipgre_header_parse
-ffffffff81847ce0 t erspan_setup
-ffffffff81847d40 t erspan_validate
-ffffffff81847e50 t erspan_newlink
-ffffffff818480a0 t erspan_changelink
-ffffffff81848310 t erspan_fill_info
-ffffffff81848430 t erspan_tunnel_init
-ffffffff818484c0 t erspan_xmit
-ffffffff81848b90 t pskb_trim
-ffffffff81848bd0 t erspan_build_header
-ffffffff81848cb0 t erspan_build_header
-ffffffff81848d90 t erspan_build_header_v2
-ffffffff81848ee0 t erspan_build_header_v2
-ffffffff81849030 t __ipgre_rcv
-ffffffff81849220 t vti_tunnel_setup
-ffffffff81849260 t vti_tunnel_validate
-ffffffff81849270 t vti_newlink
-ffffffff81849360 t vti_changelink
-ffffffff81849440 t vti_get_size
-ffffffff81849450 t vti_fill_info
-ffffffff81849580 t vti_tunnel_init
-ffffffff818495e0 t vti_tunnel_xmit
-ffffffff81849c00 t vti_tunnel_ctl
-ffffffff81849c90 t vti_rcv_proto
-ffffffff81849cd0 t vti_input_proto
-ffffffff81849ce0 t vti_rcv_cb
-ffffffff81849e70 t vti4_err
-ffffffff8184a030 t vti_input
-ffffffff8184a120 t esp_output_head
-ffffffff8184a6a0 t __skb_fill_page_desc
-ffffffff8184a6f0 t __skb_fill_page_desc
-ffffffff8184a740 t esp_output_tail
-ffffffff8184ac30 t esp_output_done_esn
-ffffffff8184ac80 t esp_output_done_esn
-ffffffff8184acd0 t esp_output_done
-ffffffff8184ae10 t esp_output_done
-ffffffff8184b000 t esp_ssg_unref
-ffffffff8184b0c0 t esp_ssg_unref
-ffffffff8184b180 t esp_input_done2
-ffffffff8184b470 t esp4_rcv_cb
-ffffffff8184b480 t esp4_err
-ffffffff8184b5a0 t esp_init_state
-ffffffff8184bc00 t esp_destroy
-ffffffff8184bc20 t esp_input
-ffffffff8184bf50 t esp_output
-ffffffff8184c0d0 t esp_input_done_esn
-ffffffff8184c140 t esp_input_done_esn
-ffffffff8184c1b0 t esp_input_done
-ffffffff8184c1e0 t esp_input_done
-ffffffff8184c210 t xfrm4_tunnel_register
-ffffffff8184c2c0 t xfrm4_tunnel_deregister
-ffffffff8184c360 t tunnel64_rcv
-ffffffff8184c400 t tunnel64_err
-ffffffff8184c470 t tunnel4_rcv
-ffffffff8184c510 t tunnel4_err
-ffffffff8184c580 t inet_diag_msg_common_fill
-ffffffff8184c620 t inet_diag_msg_attrs_fill
-ffffffff8184c860 t inet_sk_diag_fill
-ffffffff8184cd10 t inet_diag_find_one_icsk
-ffffffff8184cf80 t inet_diag_dump_one_icsk
-ffffffff8184d0c0 t sk_diag_fill
-ffffffff8184d480 t inet_diag_bc_sk
-ffffffff8184d8a0 t inet_diag_dump_icsk
-ffffffff8184ded0 t inet_diag_register
-ffffffff8184df40 t inet_diag_unregister
-ffffffff8184df90 t inet_diag_rcv_msg_compat
-ffffffff8184e0c0 t inet_diag_handler_cmd
-ffffffff8184e180 t inet_diag_handler_get_info
-ffffffff8184e480 t inet_diag_dump_start
-ffffffff8184e4a0 t inet_diag_dump
-ffffffff8184e4c0 t inet_diag_dump_done
-ffffffff8184e4e0 t inet_diag_cmd_exact
-ffffffff8184e740 t __inet_diag_dump_start
-ffffffff8184ea20 t __inet_diag_dump
-ffffffff8184eb40 t inet_diag_dump_start_compat
-ffffffff8184eb60 t inet_diag_dump_compat
-ffffffff8184ec10 t tcp_diag_dump
-ffffffff8184ec30 t tcp_diag_dump_one
-ffffffff8184ec50 t tcp_diag_get_info
-ffffffff8184ecc0 t tcp_diag_get_aux
-ffffffff8184edb0 t tcp_diag_get_aux_size
-ffffffff8184ee10 t tcp_diag_destroy
-ffffffff8184ee60 t udplite_diag_dump
-ffffffff8184ee80 t udplite_diag_dump_one
-ffffffff8184eea0 t udp_diag_get_info
-ffffffff8184eed0 t udplite_diag_destroy
-ffffffff8184eef0 t udp_dump
-ffffffff8184f080 t udp_dump_one
-ffffffff8184f280 t __udp_diag_destroy
-ffffffff8184f420 t udp_diag_dump
-ffffffff8184f440 t udp_diag_dump_one
-ffffffff8184f460 t udp_diag_destroy
-ffffffff8184f480 t cubictcp_recalc_ssthresh
-ffffffff8184f4e0 t cubictcp_cong_avoid
-ffffffff8184f7e0 t cubictcp_state
-ffffffff8184f860 t cubictcp_cwnd_event
-ffffffff8184f8a0 t cubictcp_acked
-ffffffff8184fad0 t cubictcp_init
-ffffffff8184fb70 t xfrm4_dst_lookup
-ffffffff8184fc10 t xfrm4_get_saddr
-ffffffff8184fcc0 t xfrm4_fill_dst
-ffffffff8184fda0 t xfrm4_dst_destroy
-ffffffff8184fe60 t xfrm4_dst_ifdown
-ffffffff8184fe80 t xfrm4_update_pmtu
-ffffffff8184fea0 t xfrm4_redirect
-ffffffff8184fec0 t xfrm4_transport_finish
-ffffffff81850020 t xfrm4_udp_encap_rcv
-ffffffff818501c0 t xfrm4_rcv
-ffffffff81850200 t xfrm4_rcv_encap_finish2
-ffffffff81850260 t xfrm4_output
-ffffffff81850280 t xfrm4_local_error
-ffffffff818502d0 t xfrm4_rcv_encap
-ffffffff818503f0 t xfrm4_protocol_register
-ffffffff81850510 t xfrm4_protocol_deregister
-ffffffff81850660 t xfrm4_esp_rcv
-ffffffff818506e0 t xfrm4_esp_err
-ffffffff81850750 t xfrm4_ah_rcv
-ffffffff818507d0 t xfrm4_ah_err
-ffffffff81850840 t xfrm4_ipcomp_rcv
-ffffffff818508c0 t xfrm4_ipcomp_err
-ffffffff81850930 t xfrm4_rcv_cb.llvm.11166284717704595025
-ffffffff818509c0 t xfrm_selector_match
-ffffffff81850d20 t __xfrm_dst_lookup
-ffffffff81850db0 t xfrm_policy_alloc
-ffffffff81850ed0 t xfrm_policy_timer
-ffffffff81851180 t xfrm_policy_queue_process
-ffffffff81851700 t xfrm_policy_destroy
-ffffffff81851750 t xfrm_policy_destroy_rcu
-ffffffff81851770 t xfrm_spd_getinfo
-ffffffff818517c0 t xfrm_policy_hash_rebuild
-ffffffff818517f0 t xfrm_policy_insert
-ffffffff81851bc0 t policy_hash_bysel
-ffffffff81851d50 t xfrm_policy_insert_list
-ffffffff81851f30 t xfrm_policy_inexact_insert
-ffffffff81852220 t xfrm_policy_requeue
-ffffffff81852430 t xfrm_policy_kill
-ffffffff818525d0 t xfrm_policy_bysel_ctx
-ffffffff81852a40 t __xfrm_policy_bysel_ctx
-ffffffff81852b50 t xfrm_policy_byid
-ffffffff81852d90 t xfrm_policy_flush
-ffffffff81852fb0 t xfrm_audit_policy_delete
-ffffffff81853080 t xfrm_policy_walk
-ffffffff818531e0 t xfrm_policy_walk_init
-ffffffff81853210 t xfrm_policy_walk_done
-ffffffff81853280 t xfrm_policy_delete
-ffffffff818533b0 t xfrm_sk_policy_insert
-ffffffff81853640 t __xfrm_sk_clone_policy
-ffffffff81853a20 t xfrm_lookup_with_ifid
-ffffffff818544a0 t xfrm_sk_policy_lookup
-ffffffff81854590 t xfrm_resolve_and_create_bundle
-ffffffff81855330 t xfrm_pols_put
-ffffffff818553b0 t xfrm_lookup
-ffffffff818553d0 t xfrm_lookup_route
-ffffffff81855470 t __xfrm_decode_session
-ffffffff81855b80 t __xfrm_policy_check
-ffffffff81856590 t xfrm_policy_lookup
-ffffffff818569d0 t xfrm_secpath_reject
-ffffffff81856a20 t __xfrm_route_forward
-ffffffff81856bd0 t xfrm_dst_ifdown
-ffffffff81856c40 t xfrm_policy_register_afinfo
-ffffffff81856d30 t xfrm_dst_check
-ffffffff818570e0 t xfrm_default_advmss
-ffffffff81857130 t xfrm_mtu
-ffffffff818571b0 t xfrm_negative_advice
-ffffffff818571e0 t xfrm_link_failure
-ffffffff818571f0 t xfrm_neigh_lookup
-ffffffff81857280 t xfrm_confirm_neigh
-ffffffff81857310 t xfrm_policy_unregister_afinfo
-ffffffff81857410 t xfrm_if_register_cb
-ffffffff81857440 t xfrm_if_unregister_cb
-ffffffff81857460 t xfrm_audit_policy_add
-ffffffff81857530 t xfrm_audit_common_policyinfo
-ffffffff81857640 t xfrm_migrate
-ffffffff81858440 t __xfrm6_pref_hash
-ffffffff81858570 t xfrm_policy_inexact_alloc_bin
-ffffffff81858b00 t xfrm_policy_inexact_alloc_chain
-ffffffff81858cf0 t __xfrm_policy_inexact_prune_bin
-ffffffff81859000 t xfrm_pol_bin_key
-ffffffff81859060 t xfrm_pol_bin_obj
-ffffffff818590c0 t xfrm_pol_bin_cmp
-ffffffff81859110 t xfrm_policy_inexact_insert_node
-ffffffff81859760 t xfrm_policy_inexact_list_reinsert
-ffffffff81859aa0 t xfrm_policy_inexact_gc_tree
-ffffffff81859b40 t xfrm_policy_lookup_inexact_addr
-ffffffff81859ca0 t xdst_queue_output
-ffffffff81859ec0 t policy_hash_direct
-ffffffff8185a010 t xfrm_policy_fini
-ffffffff8185a1c0 t xfrm_hash_resize
-ffffffff8185a5f0 t xfrm_hash_resize
-ffffffff8185a9d0 t xfrm_hash_rebuild
-ffffffff8185ae20 t xfrm_register_type
-ffffffff8185af40 t xfrm_state_get_afinfo
-ffffffff8185af80 t xfrm_unregister_type
-ffffffff8185b090 t xfrm_register_type_offload
-ffffffff8185b100 t xfrm_unregister_type_offload
-ffffffff8185b160 t xfrm_state_free
-ffffffff8185b180 t xfrm_state_alloc
-ffffffff8185b2a0 t xfrm_timer_handler
-ffffffff8185b5c0 t xfrm_replay_timer_handler
-ffffffff8185b650 t __xfrm_state_destroy
-ffffffff8185b6e0 t ___xfrm_state_destroy
-ffffffff8185b7c0 t __xfrm_state_delete
-ffffffff8185b990 t xfrm_state_delete
-ffffffff8185b9d0 t xfrm_state_flush
-ffffffff8185bc50 t xfrm_state_hold
-ffffffff8185bc90 t xfrm_audit_state_delete
-ffffffff8185bdd0 t xfrm_dev_state_flush
-ffffffff8185bfc0 t xfrm_sad_getinfo
-ffffffff8185c010 t xfrm_state_find
-ffffffff8185d0f0 t __xfrm_state_lookup.llvm.8683275436754393652
-ffffffff8185d330 t km_query
-ffffffff8185d3c0 t xfrm_stateonly_find
-ffffffff8185d5a0 t xfrm_state_lookup_byspi
-ffffffff8185d650 t xfrm_state_insert
-ffffffff8185d690 t __xfrm_state_bump_genids.llvm.8683275436754393652
-ffffffff8185d7d0 t __xfrm_state_insert.llvm.8683275436754393652
-ffffffff8185dab0 t xfrm_state_add
-ffffffff8185dec0 t __find_acq_core.llvm.8683275436754393652
-ffffffff8185e390 t xfrm_migrate_state_find
-ffffffff8185e610 t xfrm_state_migrate
-ffffffff8185ed60 t xfrm_init_state
-ffffffff8185ed90 t xfrm_state_update
-ffffffff8185f2e0 t xfrm_state_check_expire
-ffffffff8185f430 t km_state_expired
-ffffffff8185f4f0 t xfrm_state_lookup
-ffffffff8185f550 t xfrm_state_lookup_byaddr
-ffffffff8185f5c0 t __xfrm_state_lookup_byaddr.llvm.8683275436754393652
-ffffffff8185f730 t xfrm_find_acq
-ffffffff8185f7c0 t xfrm_find_acq_byseq
-ffffffff8185f8a0 t xfrm_get_acqseq
-ffffffff8185f8d0 t verify_spi_info
-ffffffff8185f910 t xfrm_alloc_spi
-ffffffff8185fd10 t xfrm_state_walk
-ffffffff8185ff90 t xfrm_state_walk_init
-ffffffff8185ffc0 t xfrm_state_walk_done
-ffffffff81860030 t km_policy_notify
-ffffffff818600a0 t km_state_notify
-ffffffff81860110 t km_new_mapping
-ffffffff81860260 t km_policy_expired
-ffffffff81860320 t km_migrate
-ffffffff818603d0 t km_report
-ffffffff81860460 t xfrm_user_policy
-ffffffff81860690 t xfrm_register_km
-ffffffff818606f0 t xfrm_unregister_km
-ffffffff81860750 t xfrm_state_register_afinfo
-ffffffff818607c0 t xfrm_state_unregister_afinfo
-ffffffff81860850 t xfrm_state_afinfo_get_rcu
-ffffffff81860880 t xfrm_flush_gc
-ffffffff818608a0 t xfrm_state_delete_tunnel
-ffffffff81860950 t xfrm_state_mtu
-ffffffff81860a00 t __xfrm_init_state
-ffffffff81860e70 t xfrm_state_fini
-ffffffff81860f60 t xfrm_audit_state_add
-ffffffff818610a0 t xfrm_audit_state_replay_overflow
-ffffffff818611b0 t xfrm_audit_state_replay
-ffffffff818612d0 t xfrm_audit_state_notfound_simple
-ffffffff818613d0 t xfrm_audit_state_notfound
-ffffffff81861500 t xfrm_audit_state_icvfail
-ffffffff81861670 t xfrm_state_gc_task
-ffffffff81861700 t __xfrm_dst_hash
-ffffffff818618d0 t __xfrm_src_hash
-ffffffff81861a90 t xfrm_hash_alloc
-ffffffff81861ae0 t xfrm_hash_free
-ffffffff81861b20 t xfrm_input_register_afinfo
-ffffffff81861ba0 t xfrm_input_unregister_afinfo
-ffffffff81861c20 t secpath_set
-ffffffff81861c90 t xfrm_parse_spi
-ffffffff81861dc0 t xfrm_input
-ffffffff81863280 t xfrm_offload
-ffffffff818632d0 t xfrm_input_resume
-ffffffff818632f0 t xfrm_trans_queue_net
-ffffffff818633a0 t xfrm_trans_queue
-ffffffff81863450 t xfrm_trans_reinject
-ffffffff81863550 t pktgen_xfrm_outer_mode_output
-ffffffff81863560 t xfrm_outer_mode_output
-ffffffff81863e40 t xfrm_output_resume
-ffffffff81864280 t xfrm_output
-ffffffff81864400 t xfrm_local_error
-ffffffff81864460 t xfrm_inner_extract_output
-ffffffff818649e0 t xfrm6_hdr_offset
-ffffffff81864b60 t xfrm_replay_seqhi
-ffffffff81864bb0 t xfrm_replay_notify
-ffffffff81864de0 t xfrm_replay_advance
-ffffffff818650e0 t xfrm_replay_check
-ffffffff818651d0 t xfrm_replay_check_esn
-ffffffff818652b0 t xfrm_replay_recheck
-ffffffff81865410 t xfrm_replay_overflow
-ffffffff81865580 t xfrm_init_replay
-ffffffff81865620 t xfrm_dev_event
-ffffffff81865690 t xfrm_statistics_seq_show
-ffffffff818657c0 t xfrm_proc_fini
-ffffffff818657e0 t xfrm_aalg_get_byid
-ffffffff81865900 t xfrm_ealg_get_byid
-ffffffff81865a40 t xfrm_calg_get_byid
-ffffffff81865ae0 t xfrm_aalg_get_byname
-ffffffff81865ba0 t xfrm_ealg_get_byname
-ffffffff81865c60 t xfrm_calg_get_byname
-ffffffff81865d90 t xfrm_aead_get_byname
-ffffffff81865fd0 t xfrm_aalg_get_byidx
-ffffffff81866000 t xfrm_ealg_get_byidx
-ffffffff81866030 t xfrm_probe_algs
-ffffffff818661b0 t xfrm_count_pfkey_auth_supported
-ffffffff81866260 t xfrm_count_pfkey_enc_supported
-ffffffff81866320 t xfrm_send_state_notify
-ffffffff81866ac0 t xfrm_send_acquire
-ffffffff81866f50 t xfrm_compile_policy
-ffffffff81867140 t xfrm_send_mapping
-ffffffff818672b0 t xfrm_send_policy_notify
-ffffffff81867af0 t xfrm_send_report
-ffffffff81867c90 t xfrm_send_migrate
-ffffffff81867fe0 t xfrm_is_alive
-ffffffff81868020 t build_aevent
-ffffffff818682c0 t copy_to_user_state_extra
-ffffffff818689c0 t xfrm_smark_put
-ffffffff81868a50 t copy_user_offload
-ffffffff81868ab0 t copy_sec_ctx
-ffffffff81868b30 t copy_to_user_tmpl
-ffffffff81868ca0 t verify_newpolicy_info
-ffffffff81868d90 t validate_tmpl
-ffffffff81869130 t copy_templates
-ffffffff81869210 t xfrm_netlink_rcv
-ffffffff81869250 t xfrm_user_rcv_msg
-ffffffff81869520 t xfrm_add_sa
-ffffffff8186a170 t xfrm_del_sa
-ffffffff8186a360 t xfrm_get_sa
-ffffffff8186a570 t xfrm_dump_sa
-ffffffff8186a700 t xfrm_dump_sa_done
-ffffffff8186a730 t xfrm_add_policy
-ffffffff8186a8e0 t xfrm_get_policy
-ffffffff8186abe0 t xfrm_dump_policy_start
-ffffffff8186ac00 t xfrm_dump_policy
-ffffffff8186ac80 t xfrm_dump_policy_done
-ffffffff8186aca0 t xfrm_alloc_userspi
-ffffffff8186af60 t xfrm_add_acquire
-ffffffff8186b230 t xfrm_add_sa_expire
-ffffffff8186b350 t xfrm_add_pol_expire
-ffffffff8186b570 t xfrm_flush_sa
-ffffffff8186b610 t xfrm_flush_policy
-ffffffff8186b6e0 t xfrm_new_ae
-ffffffff8186b9e0 t xfrm_get_ae
-ffffffff8186bbc0 t xfrm_do_migrate
-ffffffff8186c1e0 t xfrm_get_sadinfo
-ffffffff8186c370 t xfrm_set_spdinfo
-ffffffff8186c470 t xfrm_get_spdinfo
-ffffffff8186c6a0 t xfrm_set_default
-ffffffff8186c7e0 t xfrm_get_default
-ffffffff8186c8d0 t verify_aead
-ffffffff8186c930 t verify_auth_trunc
-ffffffff8186c990 t verify_one_alg
-ffffffff8186c9f0 t verify_sec_ctx_len
-ffffffff8186ca50 t verify_replay
-ffffffff8186cb20 t xfrm_alloc_replay_state_esn
-ffffffff8186cbf0 t xfrm_update_ae_params
-ffffffff8186cca0 t dump_one_state
-ffffffff8186cd70 t xfrm_policy_construct
-ffffffff8186d040 t dump_one_policy
-ffffffff8186d350 t ipcomp_input
-ffffffff8186d5e0 t ipcomp_output
-ffffffff8186d7d0 t ipcomp_destroy
-ffffffff8186d820 t ipcomp_free_data
-ffffffff8186d8c0 t ipcomp_init_state
-ffffffff8186dc00 t ipcomp_free_tfms
-ffffffff8186dcf0 t xfrmi4_fini
-ffffffff8186dd30 t xfrmi6_fini
-ffffffff8186dd90 t xfrmi_dev_setup
-ffffffff8186de10 t xfrmi_validate
-ffffffff8186de20 t xfrmi_newlink
-ffffffff8186e010 t xfrmi_changelink
-ffffffff8186e200 t xfrmi_dellink
-ffffffff8186e210 t xfrmi_get_size
-ffffffff8186e220 t xfrmi_fill_info
-ffffffff8186e2e0 t xfrmi_get_link_net
-ffffffff8186e300 t xfrmi_dev_free
-ffffffff8186e330 t xfrmi_dev_init
-ffffffff8186e540 t xfrmi_dev_uninit
-ffffffff8186e5d0 t xfrmi_xmit
-ffffffff8186ec20 t xfrmi_get_iflink
-ffffffff8186ec40 t xfrmi_rcv_cb
-ffffffff8186ee00 t xfrmi4_err
-ffffffff8186f000 t xfrmi6_rcv_tunnel
-ffffffff8186f050 t xfrmi6_err
-ffffffff8186f220 t xfrmi_decode_session
-ffffffff8186f2c0 t unix_peer_get
-ffffffff8186f330 t unix_close
-ffffffff8186f340 t unix_unhash
-ffffffff8186f350 t __unix_dgram_recvmsg
-ffffffff8186f720 t scm_recv
-ffffffff8186f860 t __unix_stream_recvmsg
-ffffffff8186f8d0 t unix_stream_read_actor
-ffffffff8186f900 t unix_stream_read_generic
-ffffffff81870330 t unix_inq_len
-ffffffff818703d0 t unix_outq_len
-ffffffff818703f0 t scm_destroy
-ffffffff81870420 t unix_stream_recv_urg
-ffffffff81870500 t unix_seq_start
-ffffffff818705d0 t unix_seq_stop
-ffffffff81870600 t unix_seq_next
-ffffffff818707d0 t unix_seq_show
-ffffffff81870950 t unix_create
-ffffffff818709f0 t unix_create1
-ffffffff81870c40 t unix_release
-ffffffff81870c90 t unix_bind
-ffffffff81871160 t unix_stream_connect
-ffffffff81871670 t unix_socketpair
-ffffffff81871730 t unix_accept
-ffffffff818718c0 t unix_getname
-ffffffff818719f0 t unix_poll
-ffffffff81871af0 t unix_ioctl
-ffffffff81871d30 t unix_listen
-ffffffff81871de0 t unix_shutdown
-ffffffff81871fa0 t unix_show_fdinfo
-ffffffff81872080 t unix_stream_sendmsg
-ffffffff81872820 t unix_stream_recvmsg
-ffffffff81872890 t unix_stream_sendpage
-ffffffff81872d70 t unix_stream_splice_read
-ffffffff81872e10 t unix_set_peek_off
-ffffffff81872e60 t unix_stream_read_skb
-ffffffff81872f20 t unix_release_sock
-ffffffff81873310 t unix_autobind
-ffffffff818735b0 t unix_table_double_lock
-ffffffff818735f0 t unix_table_double_unlock
-ffffffff81873630 t __unix_set_addr_hash
-ffffffff81873700 t unix_insert_bsd_socket
-ffffffff81873780 t unix_find_other
-ffffffff81873a70 t unix_wait_for_peer
-ffffffff81873b60 t init_peercred
-ffffffff81873c40 t copy_peercred
-ffffffff81873d30 t unix_scm_to_skb
-ffffffff81873db0 t maybe_add_creds
-ffffffff81873e50 t unix_stream_splice_actor
-ffffffff81873e80 t unix_read_skb
-ffffffff81873f30 t unix_dgram_connect
-ffffffff81874350 t unix_dgram_poll
-ffffffff818744f0 t unix_dgram_sendmsg
-ffffffff81874d40 t unix_dgram_recvmsg
-ffffffff81874d60 t unix_state_double_lock
-ffffffff81874db0 t unix_dgram_peer_wake_disconnect_wakeup
-ffffffff81874e60 t unix_dgram_disconnected
-ffffffff81874ed0 t unix_dgram_peer_wake_me
-ffffffff81875030 t unix_seqpacket_sendmsg
-ffffffff81875080 t unix_seqpacket_recvmsg
-ffffffff818750b0 t unix_write_space
-ffffffff81875140 t unix_sock_destructor
-ffffffff818751d0 t unix_dgram_peer_wake_relay
-ffffffff81875240 t wait_for_unix_gc
-ffffffff81875320 t unix_gc
-ffffffff81875800 t scan_children
-ffffffff81875960 t dec_inflight
-ffffffff81875980 t inc_inflight_move_tail
-ffffffff81875a10 t inc_inflight
-ffffffff81875a30 t scan_inflight
-ffffffff81875b70 t unix_sysctl_unregister
-ffffffff81875b90 t unix_get_socket
-ffffffff81875bf0 t unix_inflight
-ffffffff81875d00 t unix_notinflight
-ffffffff81875e00 t unix_attach_fds
-ffffffff81875ec0 t unix_detach_fds
-ffffffff81875f20 t unix_destruct_scm
-ffffffff81876010 t ipv6_mod_enabled
-ffffffff81876030 t inet6_sock_destruct
-ffffffff81876050 t inet6_cleanup_sock
-ffffffff81876060 t inet6_bind
-ffffffff818760a0 t __inet6_bind
-ffffffff81876510 t inet6_release
-ffffffff81876550 t inet6_destroy_sock
-ffffffff81876600 t inet6_getname
-ffffffff81876730 t inet6_ioctl
-ffffffff81876880 t inet6_sendmsg
-ffffffff81876910 t inet6_recvmsg
-ffffffff81876a30 t inet6_register_protosw
-ffffffff81876b20 t inet6_unregister_protosw
-ffffffff81876b90 t inet6_sk_rebuild_header
-ffffffff81876db0 t ipv6_opt_accepted
-ffffffff81876e60 t inet6_create
-ffffffff81877230 t ipv6_route_input
-ffffffff81877260 t ipv6_sock_ac_join
-ffffffff818774b0 t __ipv6_dev_ac_inc
-ffffffff818777e0 t ipv6_sock_ac_drop
-ffffffff81877910 t __ipv6_sock_ac_close
-ffffffff81877a00 t ipv6_sock_ac_close
-ffffffff81877a50 t __ipv6_dev_ac_dec
-ffffffff81877bf0 t ipv6_ac_destroy_dev
-ffffffff81877cf0 t ipv6_chk_acast_addr
-ffffffff81877e80 t ipv6_chk_acast_addr_src
-ffffffff81877ec0 t ac6_proc_exit
-ffffffff81877ee0 t ipv6_anycast_cleanup
-ffffffff81877f30 t aca_free_rcu
-ffffffff81877f90 t ac6_seq_start
-ffffffff81878100 t ac6_seq_stop
-ffffffff81878140 t ac6_seq_next
-ffffffff818781f0 t ac6_seq_show
-ffffffff81878220 t ip6_output
-ffffffff81878490 t ip6_autoflowlabel
-ffffffff818784d0 t ip6_xmit
-ffffffff81878a60 t ip6_forward
-ffffffff818791f0 t ip6_call_ra_chain
-ffffffff818792c0 t skb_cow
-ffffffff81879320 t ip6_forward_finish
-ffffffff81879420 t ip6_fraglist_init
-ffffffff81879620 t ip6_fraglist_prepare
-ffffffff81879720 t ip6_copy_metadata
-ffffffff818798b0 t ip6_frag_init
-ffffffff81879900 t ip6_frag_next
-ffffffff81879af0 t ip6_fragment
-ffffffff8187a500 t ip6_dst_lookup
-ffffffff8187a520 t ip6_dst_lookup_tail.llvm.14741763300007182163
-ffffffff8187a950 t ip6_dst_lookup_flow
-ffffffff8187a9f0 t ip6_sk_dst_lookup_flow
-ffffffff8187aba0 t ip6_dst_lookup_tunnel
-ffffffff8187ad50 t ip6_append_data
-ffffffff8187aec0 t ip6_setup_cork
-ffffffff8187b260 t __ip6_append_data
-ffffffff8187c110 t __ip6_make_skb
-ffffffff8187c700 t ip6_cork_release
-ffffffff8187c770 t ip6_send_skb
-ffffffff8187c7e0 t ip6_push_pending_frames
-ffffffff8187c890 t ip6_flush_pending_frames
-ffffffff8187c960 t ip6_make_skb
-ffffffff8187cb60 t ip6_finish_output2
-ffffffff8187d000 t skb_zcopy_set
-ffffffff8187d0a0 t ip6_rcv_finish
-ffffffff8187d1e0 t ipv6_rcv
-ffffffff8187d210 t ip6_rcv_core
-ffffffff8187d740 t ipv6_list_rcv
-ffffffff8187d8a0 t ip6_sublist_rcv
-ffffffff8187db50 t ip6_protocol_deliver_rcu
-ffffffff8187e040 t ip6_input
-ffffffff8187e0a0 t ip6_mc_input
-ffffffff8187e1b0 t ip6_sublist_rcv_finish
-ffffffff8187e290 t inet6_netconf_notify_devconf
-ffffffff8187e3a0 t inet6_netconf_fill_devconf
-ffffffff8187e550 t inet6_ifa_finish_destroy
-ffffffff8187e600 t in6_dev_put
-ffffffff8187e640 t ipv6_dev_get_saddr
-ffffffff8187e840 t __ipv6_dev_get_saddr
-ffffffff8187e9c0 t ipv6_get_lladdr
-ffffffff8187ea70 t ipv6_chk_addr
-ffffffff8187eaa0 t ipv6_chk_addr_and_flags
-ffffffff8187eac0 t __ipv6_chk_addr_and_flags.llvm.8687801613065663081
-ffffffff8187ebc0 t ipv6_chk_custom_prefix
-ffffffff8187ec90 t ipv6_chk_prefix
-ffffffff8187ed40 t ipv6_dev_find
-ffffffff8187ed70 t ipv6_get_ifaddr
-ffffffff8187ee70 t in6_ifa_hold
-ffffffff8187eeb0 t addrconf_dad_failure
-ffffffff8187f1a0 t in6_ifa_put
-ffffffff8187f1e0 t ipv6_generate_stable_address
-ffffffff8187f440 t ipv6_add_addr
-ffffffff8187f7b0 t addrconf_mod_dad_work
-ffffffff8187f840 t addrconf_join_solict
-ffffffff8187f8b0 t addrconf_leave_solict
-ffffffff8187f920 t addrconf_rt_table
-ffffffff8187f9e0 t addrconf_prefix_rcv_add_addr
-ffffffff8187fd20 t addrconf_dad_start
-ffffffff8187fd70 t manage_tempaddrs
-ffffffff8187ff20 t addrconf_prefix_rcv
-ffffffff81880500 t addrconf_get_prefix_route
-ffffffff81880650 t addrconf_prefix_route
-ffffffff81880780 t fib6_info_release
-ffffffff818807d0 t fib6_info_release
-ffffffff81880820 t ipv6_generate_eui64
-ffffffff81880b10 t ipv6_inherit_eui64
-ffffffff81880ba0 t addrconf_set_dstaddr
-ffffffff81880d10 t addrconf_add_ifaddr
-ffffffff81880e10 t inet6_addr_add
-ffffffff818810a0 t addrconf_del_ifaddr
-ffffffff81881160 t inet6_addr_del
-ffffffff81881340 t addrconf_add_linklocal
-ffffffff81881560 t if6_proc_exit
-ffffffff81881590 t ipv6_chk_home_addr
-ffffffff81881630 t ipv6_chk_rpl_srh_loop
-ffffffff81881720 t inet6_ifinfo_notify
-ffffffff818817d0 t inet6_fill_ifinfo
-ffffffff81881a20 t ipv6_add_dev
-ffffffff81881ec0 t inet6_dump_ifinfo
-ffffffff81882050 t inet6_rtm_newaddr
-ffffffff81882a70 t inet6_rtm_deladdr
-ffffffff81882bf0 t inet6_rtm_getaddr
-ffffffff81882ff0 t inet6_dump_ifaddr
-ffffffff81883010 t inet6_dump_ifmcaddr
-ffffffff81883030 t inet6_dump_ifacaddr
-ffffffff81883050 t inet6_netconf_get_devconf
-ffffffff81883410 t inet6_netconf_dump_devconf
-ffffffff81883680 t addrconf_cleanup
-ffffffff81883760 t addrconf_ifdown
-ffffffff81883fb0 t ipv6_get_saddr_eval
-ffffffff818842a0 t addrconf_dad_work
-ffffffff818847c0 t in6_dev_hold
-ffffffff81884800 t ipv6_add_addr_hash
-ffffffff818848f0 t ipv6_link_dev_addr
-ffffffff818849a0 t addrconf_dad_stop
-ffffffff81884b30 t addrconf_dad_completed
-ffffffff81884f30 t addrconf_dad_kick
-ffffffff81885010 t ipv6_create_tempaddr
-ffffffff81885640 t ipv6_del_addr
-ffffffff81885940 t check_cleanup_prefix_route
-ffffffff81885a80 t cleanup_prefix_route
-ffffffff81885b30 t addrconf_mod_rs_timer
-ffffffff81885ba0 t addrconf_verify_rtnl
-ffffffff818860f0 t addrconf_add_dev
-ffffffff818862a0 t ipv6_mc_config
-ffffffff81886340 t if6_seq_start
-ffffffff818863f0 t if6_seq_stop
-ffffffff81886400 t if6_seq_next
-ffffffff81886470 t if6_seq_show
-ffffffff818864c0 t inet6_fill_ifla6_attrs
-ffffffff81886ad0 t snmp6_fill_stats
-ffffffff81886b30 t __ipv6_ifa_notify
-ffffffff81887010 t inet6_fill_ifaddr
-ffffffff81887340 t addrconf_verify_work
-ffffffff81887370 t __addrconf_sysctl_register
-ffffffff81887550 t addrconf_sysctl_forward
-ffffffff818877b0 t addrconf_sysctl_mtu
-ffffffff81887850 t addrconf_sysctl_proxy_ndp
-ffffffff81887950 t addrconf_sysctl_disable
-ffffffff81887b90 t addrconf_sysctl_stable_secret
-ffffffff81887e30 t addrconf_sysctl_ignore_routes_with_linkdown
-ffffffff81888060 t addrconf_sysctl_addr_gen_mode
-ffffffff81888260 t addrconf_sysctl_disable_policy
-ffffffff818883e0 t dev_forward_change
-ffffffff81888700 t addrconf_notify
-ffffffff81888bb0 t addrconf_permanent_addr
-ffffffff81888f70 t addrconf_link_ready
-ffffffff81889000 t addrconf_dad_run
-ffffffff81889190 t addrconf_init_auto_addrs
-ffffffff81889640 t addrconf_sysctl_unregister
-ffffffff818896b0 t addrconf_sysctl_register
-ffffffff81889750 t addrconf_addr_gen
-ffffffff81889920 t add_v4_addrs
-ffffffff81889d10 t add_addr
-ffffffff81889e20 t addrconf_disable_policy_idev
-ffffffff81889f60 t addrconf_rs_timer
-ffffffff8188a150 t rfc3315_s14_backoff_update
-ffffffff8188a1e0 t inet6_fill_link_af
-ffffffff8188a210 t inet6_get_link_af_size
-ffffffff8188a230 t inet6_validate_link_af
-ffffffff8188a390 t inet6_set_link_af
-ffffffff8188a710 t modify_prefix_route
-ffffffff8188a920 t inet6_dump_addr
-ffffffff8188adb0 t in6_dump_addrs
-ffffffff8188b350 t ipv6_addr_label
-ffffffff8188b430 t ipv6_addr_label_cleanup
-ffffffff8188b460 t ip6addrlbl_newdel
-ffffffff8188b5d0 t ip6addrlbl_get
-ffffffff8188b900 t ip6addrlbl_dump
-ffffffff8188ba30 t ip6addrlbl_add
-ffffffff8188bd00 t addrlbl_ifindex_exists
-ffffffff8188bd30 t ip6addrlbl_del
-ffffffff8188be90 t ip6addrlbl_fill
-ffffffff8188bfd0 t __traceiter_fib6_table_lookup
-ffffffff8188c040 t trace_event_raw_event_fib6_table_lookup
-ffffffff8188c240 t perf_trace_fib6_table_lookup
-ffffffff8188c480 t rt6_uncached_list_add
-ffffffff8188c500 t rt6_uncached_list_del
-ffffffff8188c580 t ip6_neigh_lookup
-ffffffff8188c6f0 t ip6_dst_alloc
-ffffffff8188c7f0 t fib6_select_path
-ffffffff8188c8f0 t rt6_multipath_hash
-ffffffff8188d430 t nexthop_path_fib6_result
-ffffffff8188d4b0 t rt6_score_route
-ffffffff8188d630 t rt6_route_rcv
-ffffffff8188d8a0 t rt6_get_dflt_router
-ffffffff8188d990 t rt6_get_route_info
-ffffffff8188dae0 t ip6_del_rt
-ffffffff8188db40 t rt6_add_route_info
-ffffffff8188dc70 t ip6_pol_route_lookup
-ffffffff8188e270 t ip6_create_rt_rcu
-ffffffff8188e450 t ip6_route_lookup
-ffffffff8188e470 t rt6_lookup
-ffffffff8188e560 t ip6_ins_rt
-ffffffff8188e5f0 t rt6_flush_exceptions
-ffffffff8188e630 t rt6_nh_flush_exceptions
-ffffffff8188e650 t fib6_nh_flush_exceptions
-ffffffff8188e720 t rt6_age_exceptions
-ffffffff8188e790 t rt6_nh_age_exceptions
-ffffffff8188e7b0 t fib6_nh_age_exceptions
-ffffffff8188e990 t fib6_table_lookup
-ffffffff8188ec40 t ip6_pol_route
-ffffffff8188f180 t ip6_rt_cache_alloc
-ffffffff8188f3f0 t ip6_pol_route_input
-ffffffff8188f410 t ip6_route_input_lookup
-ffffffff8188f480 t ip6_multipath_l3_keys
-ffffffff8188f600 t ip6_route_input
-ffffffff8188f950 t ip6_pol_route_output
-ffffffff8188f970 t ip6_route_output_flags_noref
-ffffffff8188fa50 t ip6_route_output_flags
-ffffffff8188fae0 t ip6_blackhole_route
-ffffffff8188fd10 t ip6_dst_check
-ffffffff8188fdf0 t ip6_update_pmtu
-ffffffff8188ff20 t __ip6_rt_update_pmtu
-ffffffff81890210 t ip6_sk_update_pmtu
-ffffffff818903e0 t ip6_sk_dst_store_flow
-ffffffff818904b0 t __ip6_route_redirect
-ffffffff81890750 t fib6_nh_redirect_match
-ffffffff81890780 t ip6_redirect_nh_match
-ffffffff81890890 t ip6_redirect
-ffffffff818909e0 t rt6_do_redirect
-ffffffff81890d70 t ip6_redirect_no_header
-ffffffff81890ef0 t ip6_sk_redirect
-ffffffff81891050 t ip6_mtu
-ffffffff818910a0 t ip6_mtu_from_fib6
-ffffffff818911b0 t icmp6_dst_alloc
-ffffffff81891470 t fib6_nh_init
-ffffffff81892000 t fib6_nh_release
-ffffffff81892150 t fib6_nh_release_dsts
-ffffffff818921e0 t ip6_route_add
-ffffffff818922a0 t ip6_route_info_create
-ffffffff818927f0 t __ip6_del_rt
-ffffffff81892890 t rt6_add_dflt_router
-ffffffff818929b0 t rt6_purge_dflt_routers
-ffffffff818929d0 t rt6_addrconf_purge.llvm.13110894228874493375
-ffffffff81892a70 t ipv6_route_ioctl
-ffffffff81892ca0 t ip6_route_del
-ffffffff81893000 t addrconf_f6i_alloc
-ffffffff818931e0 t rt6_remove_prefsrc
-ffffffff81893250 t fib6_remove_prefsrc
-ffffffff818932c0 t rt6_clean_tohost
-ffffffff818932e0 t fib6_clean_tohost.llvm.13110894228874493375
-ffffffff818933f0 t rt6_multipath_rebalance
-ffffffff818935e0 t rt6_sync_up
-ffffffff81893660 t fib6_ifup
-ffffffff818936c0 t rt6_sync_down_dev
-ffffffff81893740 t fib6_ifdown
-ffffffff818938a0 t rt6_disable_ip
-ffffffff81893b40 t rt6_mtu_change
-ffffffff81893bb0 t rt6_mtu_change_route
-ffffffff81893c10 t rt6_dump_route
-ffffffff81893e40 t rt6_fill_node
-ffffffff81894470 t rt6_nh_dump_exceptions
-ffffffff81894590 t inet6_rt_notify
-ffffffff81894750 t fib6_rt_update
-ffffffff81894910 t fib6_info_hw_flags_set
-ffffffff81894af0 t inet6_rtm_newroute
-ffffffff81895400 t inet6_rtm_delroute
-ffffffff81895620 t inet6_rtm_getroute
-ffffffff81895c80 t ip6_route_cleanup
-ffffffff81895d90 t trace_raw_output_fib6_table_lookup
-ffffffff81895e60 t __rt6_nh_dev_match
-ffffffff81895ed0 t ip6_rt_copy_init
-ffffffff818960e0 t ip6_pkt_prohibit_out
-ffffffff81896110 t ip6_pkt_prohibit
-ffffffff81896130 t ip6_pkt_discard_out
-ffffffff81896160 t ip6_pkt_discard
-ffffffff81896180 t ip6_pkt_drop
-ffffffff818962e0 t rt6_remove_exception
-ffffffff818963b0 t __rt6_find_exception_rcu
-ffffffff818964e0 t __find_rr_leaf
-ffffffff818966c0 t rt6_nh_find_match
-ffffffff818966f0 t find_match
-ffffffff81896a50 t rt6_probe_deferred
-ffffffff81896ae0 t ip6_default_advmss
-ffffffff81896b80 t ip6_dst_destroy
-ffffffff81896cc0 t ip6_dst_neigh_lookup
-ffffffff81896d10 t rt6_do_update_pmtu
-ffffffff81896dd0 t fib6_nh_find_match
-ffffffff81896e20 t rt6_insert_exception
-ffffffff81897050 t __rt6_find_exception_spinlock
-ffffffff81897180 t ip_fib_metrics_put
-ffffffff818971d0 t ip6_del_cached_rt
-ffffffff818972d0 t __ip6_del_rt_siblings
-ffffffff818975b0 t fib6_nh_del_cached_rt
-ffffffff818975e0 t rt6_remove_exception_rt
-ffffffff81897700 t rt6_nh_remove_exception_rt
-ffffffff818977b0 t rt6_multipath_dead_count
-ffffffff81897810 t rt6_multipath_nh_flags_set
-ffffffff81897860 t fib6_nh_mtu_change
-ffffffff81897a60 t fib6_info_nh_uses_dev
-ffffffff81897a80 t rt6_fill_node_nexthop
-ffffffff81897bc0 t rt6_nh_nlmsg_size
-ffffffff81897be0 t ipv6_sysctl_rtcache_flush
-ffffffff81897c50 t ip6_dst_gc
-ffffffff81897d40 t ip6_dst_ifdown
-ffffffff81897e00 t ip6_negative_advice
-ffffffff81897e80 t ip6_link_failure
-ffffffff81897f00 t ip6_rt_update_pmtu
-ffffffff81897f30 t ip6_confirm_neigh
-ffffffff81898060 t rt6_stats_seq_show
-ffffffff81898100 t rtm_to_fib6_config
-ffffffff81898620 t ip6_route_dev_notify
-ffffffff818988b0 t fib6_update_sernum
-ffffffff81898900 t fib6_info_alloc
-ffffffff81898950 t fib6_info_destroy_rcu
-ffffffff81898a00 t fib6_new_table
-ffffffff81898af0 t fib6_get_table
-ffffffff81898b50 t fib6_tables_seq_read
-ffffffff81898bd0 t call_fib6_entry_notifiers
-ffffffff81898c40 t call_fib6_multipath_entry_notifiers
-ffffffff81898cb0 t call_fib6_entry_notifiers_replace
-ffffffff81898d20 t fib6_tables_dump
-ffffffff81898e40 t fib6_node_dump
-ffffffff81898f00 t fib6_metric_set
-ffffffff81898f70 t fib6_force_start_gc
-ffffffff81898fb0 t fib6_update_sernum_upto_root
-ffffffff81899010 t fib6_update_sernum_stub
-ffffffff81899090 t fib6_add
-ffffffff8189a020 t fib6_repair_tree
-ffffffff8189a2c0 t fib6_node_lookup
-ffffffff8189a390 t fib6_locate
-ffffffff8189a480 t fib6_del
-ffffffff8189a850 t fib6_clean_all
-ffffffff8189a9a0 t fib6_clean_all_skip_notify
-ffffffff8189aaf0 t fib6_run_gc
-ffffffff8189ad00 t fib6_age
-ffffffff8189ad40 t inet6_dump_fib
-ffffffff8189b070 t fib6_flush_trees
-ffffffff8189b1f0 t fib6_gc_cleanup
-ffffffff8189b230 t ipv6_route_seq_start.llvm.14349312228952580389
-ffffffff8189b380 t ipv6_route_seq_stop.llvm.14349312228952580389
-ffffffff8189b400 t ipv6_route_seq_next.llvm.14349312228952580389
-ffffffff8189b640 t ipv6_route_seq_show.llvm.14349312228952580389
-ffffffff8189b750 t fib6_walk
-ffffffff8189b820 t fib6_walk_continue
-ffffffff8189b980 t fib6_purge_rt
-ffffffff8189bb50 t fib6_nh_drop_pcpu_from
-ffffffff8189bb70 t __fib6_drop_pcpu_from
-ffffffff8189bc50 t node_free_rcu
-ffffffff8189bc70 t fib6_clean_node
-ffffffff8189bd90 t fib6_net_exit
-ffffffff8189be90 t fib6_gc_timer_cb
-ffffffff8189beb0 t fib6_dump_done
-ffffffff8189bf60 t fib6_dump_node
-ffffffff8189bfe0 t fib6_dump_table
-ffffffff8189c120 t ipv6_route_yield
-ffffffff8189c180 t ip6_ra_control
-ffffffff8189c300 t ipv6_update_options
-ffffffff8189c3b0 t do_ipv6_setsockopt
-ffffffff8189dc30 t sock_prot_inuse_add
-ffffffff8189dc50 t txopt_put
-ffffffff8189dc90 t ipv6_set_mcast_msfilter
-ffffffff8189dde0 t __ip6_sock_set_addr_preferences
-ffffffff8189ded0 t ipv6_setsockopt
-ffffffff8189df20 t do_ipv6_getsockopt
-ffffffff8189ec40 t ipv6_get_msfilter
-ffffffff8189edf0 t ipv6_getsockopt
-ffffffff8189ee70 t ndisc_hash
-ffffffff8189eeb0 t ndisc_key_eq
-ffffffff8189eef0 t ndisc_constructor
-ffffffff8189f160 t pndisc_constructor
-ffffffff8189f1e0 t pndisc_destructor
-ffffffff8189f250 t pndisc_redo
-ffffffff8189f280 t ndisc_is_multicast
-ffffffff8189f2a0 t ndisc_allow_add
-ffffffff8189f2f0 t __ndisc_fill_addr_option
-ffffffff8189f3a0 t ndisc_parse_options
-ffffffff8189f590 t ndisc_mc_map
-ffffffff8189f6a0 t ndisc_send_skb
-ffffffff8189fa50 t ndisc_send_na
-ffffffff8189fd50 t ndisc_alloc_skb
-ffffffff8189fe30 t ndisc_ns_create
-ffffffff818a0060 t ndisc_send_ns
-ffffffff818a0110 t ndisc_send_rs
-ffffffff818a0340 t ndisc_update
-ffffffff818a03b0 t ndisc_send_redirect
-ffffffff818a0870 t ndisc_redirect_opt_addr_space
-ffffffff818a08e0 t ndisc_fill_redirect_addr_option
-ffffffff818a09e0 t ndisc_fill_redirect_hdr_option
-ffffffff818a0a40 t ndisc_rcv
-ffffffff818a0b60 t ndisc_recv_ns
-ffffffff818a1160 t ndisc_recv_na
-ffffffff818a15b0 t ndisc_recv_rs
-ffffffff818a17f0 t ndisc_router_discovery
-ffffffff818a24a0 t ndisc_redirect_rcv
-ffffffff818a2600 t ndisc_ifinfo_sysctl_change
-ffffffff818a2890 t ndisc_late_cleanup
-ffffffff818a28b0 t ndisc_cleanup
-ffffffff818a2900 t ndisc_solicit
-ffffffff818a2ab0 t ndisc_error_report
-ffffffff818a2b00 t pndisc_is_router
-ffffffff818a2b60 t accept_untracked_na
-ffffffff818a2bb0 t ndisc_netdev_event
-ffffffff818a2e50 t ndisc_send_unsol_na
-ffffffff818a2f80 t udpv6_init_sock
-ffffffff818a2fd0 t udpv6_destruct_sock
-ffffffff818a3000 t udp_v6_get_port
-ffffffff818a3060 t udp_v6_rehash
-ffffffff818a3090 t __udp6_lib_lookup
-ffffffff818a3450 t udp6_lib_lookup2
-ffffffff818a3600 t udp6_lib_lookup_skb
-ffffffff818a3650 t udpv6_recvmsg
-ffffffff818a3be0 t udpv6_encap_enable
-ffffffff818a3c10 t __udp6_lib_err
-ffffffff818a41b0 t __udp6_lib_rcv
-ffffffff818a4930 t udp6_sk_rx_dst_set
-ffffffff818a4990 t udp6_unicast_rcv_skb
-ffffffff818a4a30 t xfrm6_policy_check
-ffffffff818a4a90 t xfrm6_policy_check
-ffffffff818a4b10 t udp_v6_early_demux
-ffffffff818a4d60 t udpv6_rcv
-ffffffff818a4d80 t udpv6_sendmsg
-ffffffff818a5a10 t txopt_get
-ffffffff818a5a80 t udp_v6_send_skb
-ffffffff818a5e90 t udp_v6_push_pending_frames
-ffffffff818a5f30 t udpv6_destroy_sock
-ffffffff818a5fd0 t udpv6_setsockopt
-ffffffff818a6010 t udpv6_getsockopt
-ffffffff818a6040 t udp6_seq_show
-ffffffff818a60a0 t udp6_proc_exit
-ffffffff818a60c0 t udpv6_pre_connect
-ffffffff818a6110 t udpv6_exit
-ffffffff818a6140 t udpv6_queue_rcv_skb
-ffffffff818a6340 t udpv6_queue_rcv_one_skb
-ffffffff818a6790 t udpv6_err.llvm.3078323922797927899
-ffffffff818a67b0 t udplitev6_sk_init
-ffffffff818a67d0 t udplitev6_exit
-ffffffff818a6800 t udplite6_proc_exit
-ffffffff818a6830 t udplitev6_rcv.llvm.13785457115057781828
-ffffffff818a6850 t udplitev6_err.llvm.13785457115057781828
-ffffffff818a6870 t raw_v6_match
-ffffffff818a68f0 t rawv6_mh_filter_register
-ffffffff818a6910 t rawv6_mh_filter_unregister
-ffffffff818a6930 t raw6_local_deliver
-ffffffff818a6b90 t raw6_icmp_error
-ffffffff818a6dd0 t rawv6_rcv
-ffffffff818a70b0 t rawv6_rcv_skb
-ffffffff818a7170 t rawv6_close
-ffffffff818a71a0 t rawv6_ioctl
-ffffffff818a7240 t rawv6_init_sk
-ffffffff818a7280 t raw6_destroy
-ffffffff818a72b0 t rawv6_setsockopt
-ffffffff818a7490 t rawv6_getsockopt
-ffffffff818a7610 t rawv6_sendmsg
-ffffffff818a7f20 t rawv6_recvmsg
-ffffffff818a8200 t rawv6_bind
-ffffffff818a83f0 t raw6_proc_exit
-ffffffff818a8420 t rawv6_exit
-ffffffff818a8440 t rawv6_probe_proto_opt
-ffffffff818a84f0 t rawv6_send_hdrinc
-ffffffff818a8900 t raw6_getfrag
-ffffffff818a89f0 t rawv6_push_pending_frames
-ffffffff818a8c10 t raw6_seq_show
-ffffffff818a8c50 t icmpv6_push_pending_frames
-ffffffff818a8d40 t icmp6_send
-ffffffff818a95b0 t icmpv6_rt_has_prefsrc
-ffffffff818a9620 t icmpv6_xrlim_allow
-ffffffff818a9750 t icmpv6_route_lookup
-ffffffff818a9970 t icmpv6_getfrag
-ffffffff818a99c0 t icmpv6_param_prob_reason
-ffffffff818a9a00 t ip6_err_gen_icmpv6_unreach
-ffffffff818a9c50 t icmpv6_notify
-ffffffff818a9df0 t icmpv6_flow_init
-ffffffff818a9e90 t icmpv6_cleanup
-ffffffff818a9eb0 t icmpv6_err_convert
-ffffffff818a9f30 t icmpv6_rcv.llvm.12430388489175590748
-ffffffff818aa4d0 t icmpv6_err.llvm.12430388489175590748
-ffffffff818aa570 t icmpv6_echo_reply
-ffffffff818aaab0 t ipv6_sock_mc_join
-ffffffff818aaad0 t __ipv6_sock_mc_join.llvm.8540766267562702954
-ffffffff818aacb0 t ipv6_sock_mc_join_ssm
-ffffffff818aacc0 t ipv6_sock_mc_drop
-ffffffff818aae40 t ip6_mc_leave_src
-ffffffff818aaef0 t __ipv6_dev_mc_dec
-ffffffff818ab0c0 t __ipv6_sock_mc_close
-ffffffff818ab1f0 t ipv6_sock_mc_close
-ffffffff818ab260 t ip6_mc_source
-ffffffff818ab710 t ip6_mc_add_src
-ffffffff818abac0 t ip6_mc_del_src
-ffffffff818abd30 t ip6_mc_msfilter
-ffffffff818ac040 t ip6_mc_msfget
-ffffffff818ac260 t inet6_mc_check
-ffffffff818ac360 t ipv6_dev_mc_inc
-ffffffff818ac380 t __ipv6_dev_mc_inc.llvm.8540766267562702954
-ffffffff818ac750 t igmp6_group_dropped
-ffffffff818aca30 t ipv6_dev_mc_dec
-ffffffff818acaa0 t ipv6_chk_mcast_addr
-ffffffff818acb60 t igmp6_event_query
-ffffffff818acc50 t igmp6_event_report
-ffffffff818acd40 t ipv6_mc_dad_complete
-ffffffff818aced0 t ipv6_mc_unmap
-ffffffff818acf20 t ipv6_mc_remap
-ffffffff818acfd0 t ipv6_mc_up
-ffffffff818ad080 t ipv6_mc_down
-ffffffff818ad220 t mld_del_delrec
-ffffffff818ad3a0 t igmp6_group_added
-ffffffff818ad560 t ipv6_mc_init_dev
-ffffffff818ad790 t mld_gq_work
-ffffffff818ad850 t mld_ifc_work
-ffffffff818adc50 t mld_dad_work
-ffffffff818ade10 t mld_query_work
-ffffffff818ae940 t mld_report_work
-ffffffff818aee90 t ipv6_mc_destroy_dev
-ffffffff818af0f0 t mld_clear_delrec
-ffffffff818af240 t igmp6_cleanup
-ffffffff818af280 t igmp6_late_cleanup
-ffffffff818af2a0 t mld_mca_work
-ffffffff818af440 t mld_in_v1_mode
-ffffffff818af4a0 t igmp6_send
-ffffffff818af960 t mld_sendpack
-ffffffff818afc60 t mld_newpack
-ffffffff818afe90 t mld_ifc_event
-ffffffff818aff40 t ip6_mc_del1_src
-ffffffff818b0030 t igmp6_join_group
-ffffffff818b0160 t igmp6_group_queried
-ffffffff818b0250 t igmp6_mc_seq_start
-ffffffff818b0340 t igmp6_mc_seq_stop
-ffffffff818b0370 t igmp6_mc_seq_next
-ffffffff818b03e0 t igmp6_mc_seq_show
-ffffffff818b0460 t igmp6_mcf_seq_start
-ffffffff818b05c0 t igmp6_mcf_seq_stop
-ffffffff818b0600 t igmp6_mcf_seq_next
-ffffffff818b0720 t igmp6_mcf_seq_show
-ffffffff818b0770 t ipv6_mc_netdev_event
-ffffffff818b08b0 t ip6frag_init
-ffffffff818b08f0 t ip6_frag_expire
-ffffffff818b0a90 t ipv6_frag_exit
-ffffffff818b0af0 t ip6frag_key_hashfn
-ffffffff818b0b10 t ip6frag_obj_hashfn
-ffffffff818b0b30 t ip6frag_obj_cmpfn
-ffffffff818b0b60 t jhash2
-ffffffff818b0cc0 t ipv6_frag_rcv
-ffffffff818b15f0 t ip6_frag_reasm
-ffffffff818b18d0 t tcp_v6_reqsk_send_ack
-ffffffff818b19b0 t tcp_v6_send_reset
-ffffffff818b1ba0 t tcp_v6_reqsk_destructor
-ffffffff818b1bd0 t tcp_v6_route_req
-ffffffff818b1cf0 t tcp_v6_init_seq
-ffffffff818b1d30 t tcp_v6_init_ts_off
-ffffffff818b1d60 t tcp_v6_send_synack
-ffffffff818b1f20 t tcp_v6_get_syncookie
-ffffffff818b1f30 t tcp_v6_do_rcv
-ffffffff818b2360 t tcp_v6_rcv
-ffffffff818b2ed0 t tcp_v6_fill_cb
-ffffffff818b2f80 t tcp_v6_early_demux
-ffffffff818b30f0 t tcp_v6_send_check
-ffffffff818b3150 t inet6_sk_rx_dst_set
-ffffffff818b31e0 t tcp_v6_conn_request
-ffffffff818b32a0 t tcp_v6_syn_recv_sock
-ffffffff818b3a70 t tcp_v6_mtu_reduced
-ffffffff818b3b60 t tcp6_proc_exit
-ffffffff818b3b80 t tcp_v6_pre_connect
-ffffffff818b3ba0 t tcp_v6_connect
-ffffffff818b4130 t tcp_v6_init_sock
-ffffffff818b4160 t tcpv6_exit
-ffffffff818b41b0 t tcp_v6_send_response
-ffffffff818b46a0 t ip6_dst_store
-ffffffff818b4720 t tcp6_seq_show
-ffffffff818b4c00 t tcp_v6_err.llvm.8864556368208849951
-ffffffff818b5010 t ip6_sk_accept_pmtu
-ffffffff818b5070 t ping_v6_pre_connect
-ffffffff818b5090 t ping_v6_sendmsg
-ffffffff818b5600 t pingv6_exit
-ffffffff818b5680 t dummy_ipv6_recv_error
-ffffffff818b5690 t dummy_ip6_datagram_recv_ctl
-ffffffff818b56a0 t dummy_icmpv6_err_convert
-ffffffff818b56b0 t dummy_ipv6_icmp_error
-ffffffff818b56c0 t dummy_ipv6_chk_addr
-ffffffff818b56d0 t ping_v6_seq_start
-ffffffff818b56f0 t ping_v6_seq_show
-ffffffff818b5740 t ipv6_exthdrs_exit
-ffffffff818b5780 t ipv6_parse_hopopts
-ffffffff818b5880 t ip6_parse_tlv
-ffffffff818b5ea0 t ipv6_push_nfrag_opts
-ffffffff818b60a0 t ipv6_push_frag_opts
-ffffffff818b6100 t ipv6_dup_options
-ffffffff818b6190 t ipv6_renew_options
-ffffffff818b6450 t __ipv6_fixup_options
-ffffffff818b64e0 t fl6_update_dst
-ffffffff818b6550 t ipv6_rthdr_rcv.llvm.5574609928904987319
-ffffffff818b7980 t dst_input
-ffffffff818b79d0 t ipv6_destopt_rcv.llvm.5574609928904987319
-ffffffff818b7b80 t dst_discard.llvm.5574609928904987319
-ffffffff818b7ba0 t ip6_datagram_dst_update
-ffffffff818b7e60 t ip6_datagram_release_cb
-ffffffff818b7ee0 t __ip6_datagram_connect
-ffffffff818b8200 t ip6_datagram_connect
-ffffffff818b8240 t ip6_datagram_connect_v6_only
-ffffffff818b82a0 t ipv6_icmp_error
-ffffffff818b8440 t ipv6_local_error
-ffffffff818b85a0 t ipv6_local_rxpmtu
-ffffffff818b86d0 t ipv6_recv_error
-ffffffff818b8b50 t ip6_datagram_recv_common_ctl
-ffffffff818b8c20 t ip6_datagram_recv_specific_ctl
-ffffffff818b9170 t ipv6_recv_rxpmtu
-ffffffff818b9350 t ip6_datagram_recv_ctl
-ffffffff818b9440 t ip6_datagram_send_ctl
-ffffffff818b99d0 t __ip6_dgram_sock_seq_show
-ffffffff818b9ad0 t __fl6_sock_lookup
-ffffffff818b9b60 t fl6_free_socklist
-ffffffff818b9bf0 t fl_release
-ffffffff818b9c90 t fl6_merge_options
-ffffffff818b9d30 t ipv6_flowlabel_opt_get
-ffffffff818b9e60 t ipv6_flowlabel_opt
-ffffffff818ba960 t ip6_flowlabel_init
-ffffffff818ba9a0 t ip6_flowlabel_cleanup
-ffffffff818ba9f0 t fl6_renew
-ffffffff818baad0 t fl_lookup
-ffffffff818bab40 t fl_link
-ffffffff818bab90 t fl_free
-ffffffff818babe0 t mem_check
-ffffffff818baca0 t fl_intern
-ffffffff818bad80 t fl_free_rcu
-ffffffff818badc0 t ip6fl_seq_start
-ffffffff818baee0 t ip6fl_seq_stop
-ffffffff818baef0 t ip6fl_seq_next
-ffffffff818bafb0 t ip6fl_seq_show
-ffffffff818bb0a0 t ip6_fl_gc
-ffffffff818bb1f0 t inet6_csk_route_req
-ffffffff818bb370 t inet6_csk_addr2sockaddr
-ffffffff818bb3e0 t inet6_csk_xmit
-ffffffff818bb570 t inet6_csk_route_socket
-ffffffff818bb7a0 t inet6_csk_update_pmtu
-ffffffff818bb8a0 t udp6_gro_receive
-ffffffff818bbb70 t udp6_gro_complete
-ffffffff818bbc80 t udpv6_offload_init
-ffffffff818bbca0 t udpv6_offload_exit
-ffffffff818bbcc0 t udp6_ufo_fragment.llvm.17633239604859943964
-ffffffff818bbf80 t seg6_validate_srh
-ffffffff818bc010 t seg6_get_srh
-ffffffff818bc190 t seg6_icmp_srh
-ffffffff818bc1f0 t seg6_exit
-ffffffff818bc230 t seg6_genl_sethmac
-ffffffff818bc240 t seg6_genl_dumphmac_start
-ffffffff818bc250 t seg6_genl_dumphmac
-ffffffff818bc260 t seg6_genl_dumphmac_done
-ffffffff818bc270 t seg6_genl_set_tunsrc
-ffffffff818bc2f0 t seg6_genl_get_tunsrc
-ffffffff818bc3e0 t call_fib6_notifier
-ffffffff818bc400 t call_fib6_notifiers
-ffffffff818bc420 t fib6_seq_read
-ffffffff818bc450 t fib6_dump
-ffffffff818bc490 t ipv6_rpl_srh_size
-ffffffff818bc4c0 t ipv6_rpl_srh_decompress
-ffffffff818bc610 t ipv6_rpl_srh_compress
-ffffffff818bc970 t ioam6_namespace
-ffffffff818bc9f0 t rhashtable_lookup_fast
-ffffffff818bcb50 t ioam6_fill_trace_data
-ffffffff818bd160 t ioam6_exit
-ffffffff818bd1a0 t ioam6_ns_cmpfn
-ffffffff818bd1c0 t ioam6_sc_cmpfn
-ffffffff818bd1e0 t ioam6_free_ns
-ffffffff818bd200 t ioam6_free_sc
-ffffffff818bd220 t ioam6_genl_addns
-ffffffff818bd3d0 t ioam6_genl_delns
-ffffffff818bd510 t ioam6_genl_dumpns_start
-ffffffff818bd570 t ioam6_genl_dumpns
-ffffffff818bd780 t ioam6_genl_dumpns_done
-ffffffff818bd7b0 t ioam6_genl_addsc
-ffffffff818bd950 t ioam6_genl_delsc
-ffffffff818bda90 t ioam6_genl_dumpsc_start
-ffffffff818bdaf0 t ioam6_genl_dumpsc
-ffffffff818bdca0 t ioam6_genl_dumpsc_done
-ffffffff818bdcd0 t ioam6_genl_ns_set_schema
-ffffffff818bde50 t rhashtable_lookup_insert_fast
-ffffffff818be210 t rhashtable_remove_fast
-ffffffff818be490 t ipv6_sysctl_register
-ffffffff818be510 t ipv6_sysctl_unregister
-ffffffff818be550 t proc_rt6_multipath_hash_policy
-ffffffff818be5a0 t proc_rt6_multipath_hash_fields
-ffffffff818be5f0 t xfrm6_fini
-ffffffff818be650 t xfrm6_dst_lookup.llvm.680911775214528811
-ffffffff818be730 t xfrm6_get_saddr.llvm.680911775214528811
-ffffffff818be860 t xfrm6_fill_dst.llvm.680911775214528811
-ffffffff818be9f0 t xfrm6_dst_destroy
-ffffffff818beb00 t xfrm6_dst_ifdown
-ffffffff818bec90 t xfrm6_update_pmtu
-ffffffff818becb0 t xfrm6_redirect
-ffffffff818becd0 t xfrm6_state_fini
-ffffffff818becf0 t xfrm6_rcv_spi
-ffffffff818bed20 t xfrm6_transport_finish
-ffffffff818beea0 t xfrm6_udp_encap_rcv
-ffffffff818bf040 t xfrm6_rcv_tnl
-ffffffff818bf080 t xfrm6_rcv
-ffffffff818bf0c0 t xfrm6_input_addr
-ffffffff818bf460 t xfrm6_local_rxpmtu
-ffffffff818bf530 t xfrm6_local_error
-ffffffff818bf620 t xfrm6_output
-ffffffff818bf8d0 t __xfrm6_output_finish
-ffffffff818bf8f0 t xfrm6_rcv_encap
-ffffffff818bfb20 t xfrm6_protocol_register
-ffffffff818bfc40 t xfrm6_protocol_deregister
-ffffffff818bfd90 t xfrm6_protocol_fini
-ffffffff818bfdb0 t xfrm6_esp_rcv
-ffffffff818bfe30 t xfrm6_esp_err
-ffffffff818bfec0 t xfrm6_ah_rcv
-ffffffff818bff40 t xfrm6_ah_err
-ffffffff818bffd0 t xfrm6_ipcomp_rcv
-ffffffff818c0050 t xfrm6_ipcomp_err
-ffffffff818c00e0 t xfrm6_rcv_cb.llvm.9504734376162117919
-ffffffff818c0170 t fib6_rule_default
-ffffffff818c01d0 t fib6_rules_dump
-ffffffff818c01f0 t fib6_rules_seq_read
-ffffffff818c0210 t fib6_lookup
-ffffffff818c0310 t fib6_rule_lookup
-ffffffff818c05b0 t fib6_rule_action
-ffffffff818c0850 t fib6_rule_suppress
-ffffffff818c08d0 t fib6_rule_match
-ffffffff818c0a60 t fib6_rules_cleanup
-ffffffff818c0a90 t fib6_rule_saddr
-ffffffff818c0b90 t fib6_rule_configure
-ffffffff818c0d50 t fib6_rule_delete
-ffffffff818c0db0 t fib6_rule_compare
-ffffffff818c0e60 t fib6_rule_fill
-ffffffff818c0f00 t fib6_rule_nlmsg_payload
-ffffffff818c0f10 t snmp6_register_dev
-ffffffff818c0f70 t snmp6_dev_seq_show
-ffffffff818c1160 t snmp6_unregister_dev
-ffffffff818c11b0 t ipv6_misc_proc_exit
-ffffffff818c11e0 t snmp6_seq_show_item
-ffffffff818c13a0 t snmp6_seq_show_icmpv6msg
-ffffffff818c1500 t sockstat6_seq_show
-ffffffff818c15c0 t snmp6_seq_show
-ffffffff818c1740 t esp6_output_head
-ffffffff818c1cc0 t esp6_output_tail
-ffffffff818c2230 t esp6_input_done2
-ffffffff818c25f0 t esp6_rcv_cb
-ffffffff818c2600 t esp6_err
-ffffffff818c2700 t esp6_init_state
-ffffffff818c2d60 t esp6_destroy
-ffffffff818c2d80 t esp6_input
-ffffffff818c30a0 t esp6_output
-ffffffff818c3220 t ipcomp6_rcv_cb
-ffffffff818c3230 t ipcomp6_err
-ffffffff818c3340 t ipcomp6_init_state
-ffffffff818c3610 t xfrm6_tunnel_spi_lookup
-ffffffff818c36b0 t xfrm6_tunnel_alloc_spi
-ffffffff818c3970 t xfrm6_tunnel_rcv
-ffffffff818c3a40 t xfrm6_tunnel_err
-ffffffff818c3a50 t xfrm6_tunnel_init_state
-ffffffff818c3ac0 t xfrm6_tunnel_destroy
-ffffffff818c3bd0 t xfrm6_tunnel_input
-ffffffff818c3c00 t xfrm6_tunnel_output
-ffffffff818c3c30 t x6spi_destroy_rcu
-ffffffff818c3c50 t xfrm6_tunnel_register
-ffffffff818c3d00 t xfrm6_tunnel_deregister
-ffffffff818c3da0 t tunnel6_rcv_cb
-ffffffff818c3e20 t tunnel46_rcv
-ffffffff818c3ec0 t tunnel46_err
-ffffffff818c3f50 t tunnel6_rcv
-ffffffff818c3ff0 t tunnel6_err
-ffffffff818c4080 t mip6_mh_filter
-ffffffff818c41b0 t mip6_rthdr_init_state
-ffffffff818c4220 t mip6_rthdr_destroy
-ffffffff818c4230 t mip6_rthdr_input
-ffffffff818c42c0 t mip6_rthdr_output
-ffffffff818c43a0 t mip6_destopt_init_state
-ffffffff818c4410 t mip6_destopt_destroy
-ffffffff818c4420 t mip6_destopt_input
-ffffffff818c44b0 t mip6_destopt_output
-ffffffff818c45b0 t mip6_destopt_reject
-ffffffff818c4930 t vti6_dev_setup
-ffffffff818c49c0 t vti6_validate
-ffffffff818c49d0 t vti6_newlink
-ffffffff818c4b90 t vti6_changelink
-ffffffff818c4e30 t vti6_dellink
-ffffffff818c4e80 t vti6_get_size
-ffffffff818c4e90 t vti6_fill_info
-ffffffff818c4fb0 t vti6_dev_free
-ffffffff818c4fd0 t vti6_dev_init
-ffffffff818c5090 t vti6_dev_uninit
-ffffffff818c5180 t vti6_tnl_xmit
-ffffffff818c5940 t vti6_siocdevprivate
-ffffffff818c5fa0 t vti6_link_config
-ffffffff818c60f0 t vti6_locate
-ffffffff818c62c0 t vti6_update
-ffffffff818c6450 t vti6_tnl_create2
-ffffffff818c6520 t vti6_rcv_tunnel
-ffffffff818c6570 t vti6_rcv_cb
-ffffffff818c6700 t vti6_err
-ffffffff818c6870 t vti6_input_proto
-ffffffff818c69b0 t vti6_tnl_lookup
-ffffffff818c6b20 t vti6_rcv
-ffffffff818c6b50 t ipip6_tunnel_setup
-ffffffff818c6c00 t ipip6_validate
-ffffffff818c6c40 t ipip6_newlink
-ffffffff818c6e20 t ipip6_changelink
-ffffffff818c7030 t ipip6_dellink
-ffffffff818c7080 t ipip6_get_size
-ffffffff818c7090 t ipip6_fill_info
-ffffffff818c72e0 t ipip6_dev_free
-ffffffff818c7310 t ipip6_tunnel_init
-ffffffff818c7410 t ipip6_tunnel_uninit
-ffffffff818c7560 t sit_tunnel_xmit
-ffffffff818c7df0 t ipip6_tunnel_siocdevprivate
-ffffffff818c8210 t ipip6_tunnel_ctl
-ffffffff818c8730 t ipip6_tunnel_bind_dev
-ffffffff818c8880 t ipip6_tunnel_del_prl
-ffffffff818c8960 t prl_list_destroy_rcu
-ffffffff818c8990 t ipip6_tunnel_locate
-ffffffff818c8b80 t ipip6_tunnel_create
-ffffffff818c8c50 t ipip6_tunnel_update
-ffffffff818c8de0 t ipip6_rcv
-ffffffff818c9660 t ipip6_err
-ffffffff818c97e0 t ipip6_tunnel_lookup
-ffffffff818c9960 t ip6_tnl_parse_tlv_enc_lim
-ffffffff818c9b20 t ip6_tnl_get_cap
-ffffffff818c9ba0 t ip6_tnl_rcv_ctl
-ffffffff818c9cd0 t ip6_tnl_rcv
-ffffffff818c9d00 t ip6ip6_dscp_ecn_decapsulate
-ffffffff818c9d50 t ip4ip6_dscp_ecn_decapsulate
-ffffffff818c9de0 t __ip6_tnl_rcv
-ffffffff818ca100 t ip6_tnl_xmit_ctl
-ffffffff818ca2a0 t ip6_tnl_xmit
-ffffffff818cb070 t skb_clone_writable
-ffffffff818cb0c0 t ip6_tnl_change_mtu
-ffffffff818cb130 t ip6_tnl_get_iflink
-ffffffff818cb150 t ip6_tnl_encap_add_ops
-ffffffff818cb180 t ip6_tnl_encap_del_ops
-ffffffff818cb1c0 t ip6_tnl_encap_setup
-ffffffff818cb2a0 t ip6_tnl_get_link_net
-ffffffff818cb2c0 t IP6_ECN_decapsulate
-ffffffff818cb7f0 t ip6_tnl_dev_setup
-ffffffff818cb8a0 t ip6_tnl_validate
-ffffffff818cb8e0 t ip6_tnl_newlink
-ffffffff818cbaf0 t ip6_tnl_changelink
-ffffffff818cbdd0 t ip6_tnl_dellink
-ffffffff818cbe20 t ip6_tnl_get_size
-ffffffff818cbe30 t ip6_tnl_fill_info
-ffffffff818cc0a0 t ip6_dev_free
-ffffffff818cc0e0 t ip6_tnl_dev_init
-ffffffff818cc290 t ip6_tnl_dev_uninit
-ffffffff818cc390 t ip6_tnl_start_xmit
-ffffffff818cc940 t ip6_tnl_siocdevprivate
-ffffffff818cd000 t ip6_tnl_link_config
-ffffffff818cd220 t ip6_tnl_locate
-ffffffff818cd410 t ip6_tnl_update
-ffffffff818cd5d0 t ip6_tnl_create2
-ffffffff818cd6b0 t ip6_tnl_netlink_parms
-ffffffff818cd840 t ip4ip6_rcv
-ffffffff818cd870 t ip4ip6_err
-ffffffff818cdcd0 t ipxip6_rcv
-ffffffff818cdef0 t ip6_tnl_lookup
-ffffffff818ce0d0 t ip6_tnl_err
-ffffffff818ce2c0 t ip6ip6_rcv
-ffffffff818ce2f0 t ip6ip6_err
-ffffffff818ce480 t ip6gre_tap_setup
-ffffffff818ce4e0 t ip6gre_tap_validate
-ffffffff818ce5c0 t ip6gre_newlink
-ffffffff818ce7a0 t ip6gre_changelink
-ffffffff818ce9b0 t ip6gre_get_size
-ffffffff818ce9c0 t ip6gre_fill_info
-ffffffff818cee20 t ip6gre_dev_free
-ffffffff818cee60 t ip6gre_tap_init
-ffffffff818cee80 t ip6gre_tunnel_uninit
-ffffffff818cefa0 t ip6gre_tunnel_xmit
-ffffffff818cf6b0 t ip6gre_tunnel_init_common
-ffffffff818cf920 t ip6gre_tunnel_unlink
-ffffffff818cf9a0 t prepare_ip6gre_xmit_ipv4
-ffffffff818cfa40 t __gre6_xmit
-ffffffff818cfdf0 t prepare_ip6gre_xmit_ipv6
-ffffffff818cff50 t ip6gre_tunnel_validate
-ffffffff818cffa0 t ip6gre_netlink_parms
-ffffffff818d0200 t ip6gre_tunnel_find
-ffffffff818d0310 t ip6gre_newlink_common
-ffffffff818d0480 t ip6gre_tunnel_link
-ffffffff818d04f0 t ip6gre_tnl_link_config_common
-ffffffff818d0610 t ip6gre_tnl_link_config_route
-ffffffff818d06f0 t ip6gre_changelink_common
-ffffffff818d0850 t ip6gre_tnl_change
-ffffffff818d0970 t ip6gre_tunnel_locate
-ffffffff818d0bd0 t ip6gre_tunnel_setup
-ffffffff818d0c50 t ip6gre_tunnel_init
-ffffffff818d0cc0 t ip6gre_tunnel_siocdevprivate
-ffffffff818d14f0 t ip6gre_header
-ffffffff818d1700 t ip6gre_tnl_parm_from_user
-ffffffff818d1820 t ip6gre_tnl_parm_to_user
-ffffffff818d1940 t ip6gre_dellink
-ffffffff818d1990 t ip6erspan_tap_setup
-ffffffff818d19f0 t ip6erspan_tap_validate
-ffffffff818d1ba0 t ip6erspan_newlink
-ffffffff818d1dd0 t ip6erspan_changelink
-ffffffff818d2110 t ip6erspan_tap_init
-ffffffff818d2330 t ip6erspan_tunnel_uninit
-ffffffff818d2430 t ip6erspan_tunnel_xmit
-ffffffff818d2b60 t ip6gre_err
-ffffffff818d2cf0 t ip6gre_tunnel_lookup
-ffffffff818d3080 t __ipv6_addr_type
-ffffffff818d3180 t register_inet6addr_notifier
-ffffffff818d31a0 t unregister_inet6addr_notifier
-ffffffff818d31c0 t inet6addr_notifier_call_chain
-ffffffff818d31e0 t register_inet6addr_validator_notifier
-ffffffff818d3200 t unregister_inet6addr_validator_notifier
-ffffffff818d3220 t inet6addr_validator_notifier_call_chain
-ffffffff818d3240 t eafnosupport_ipv6_dst_lookup_flow
-ffffffff818d3260 t eafnosupport_ipv6_route_input
-ffffffff818d3270 t eafnosupport_fib6_get_table
-ffffffff818d3280 t eafnosupport_fib6_lookup
-ffffffff818d3290 t eafnosupport_fib6_table_lookup
-ffffffff818d32a0 t eafnosupport_fib6_select_path
-ffffffff818d32b0 t eafnosupport_ip6_mtu_from_fib6
-ffffffff818d32c0 t eafnosupport_fib6_nh_init
-ffffffff818d32f0 t eafnosupport_ip6_del_rt
-ffffffff818d3300 t eafnosupport_ipv6_fragment
-ffffffff818d3320 t eafnosupport_ipv6_dev_find
-ffffffff818d3340 t in6_dev_finish_destroy
-ffffffff818d33d0 t in6_dev_finish_destroy_rcu
-ffffffff818d3410 t ipv6_ext_hdr
-ffffffff818d3440 t ipv6_skip_exthdr
-ffffffff818d3620 t ipv6_find_tlv
-ffffffff818d36c0 t ipv6_find_hdr
-ffffffff818d3b40 t udp6_csum_init
-ffffffff818d3d80 t udp6_set_csum
-ffffffff818d3e70 t ipv6_proxy_select_ident
-ffffffff818d3f40 t ipv6_select_ident
-ffffffff818d3f70 t ip6_find_1stfragopt
-ffffffff818d4090 t ip6_dst_hoplimit
-ffffffff818d40e0 t __ip6_local_out
-ffffffff818d4130 t ip6_local_out
-ffffffff818d41c0 t inet6_add_protocol
-ffffffff818d41f0 t inet6_del_protocol
-ffffffff818d4220 t inet6_add_offload
-ffffffff818d4250 t inet6_del_offload
-ffffffff818d4280 t ipv6_gro_receive
-ffffffff818d46a0 t ipv6_gso_pull_exthdrs
-ffffffff818d4780 t ipv6_gro_complete
-ffffffff818d4910 t ipv6_gso_segment
-ffffffff818d4d90 t sit_gso_segment
-ffffffff818d4dc0 t sit_ip6ip6_gro_receive
-ffffffff818d4df0 t sit_gro_complete
-ffffffff818d4e20 t ip6ip6_gso_segment
-ffffffff818d4e50 t ip6ip6_gro_complete
-ffffffff818d4e80 t ip4ip6_gso_segment
-ffffffff818d4eb0 t ip4ip6_gro_receive
-ffffffff818d4ee0 t ip4ip6_gro_complete
-ffffffff818d4f10 t tcp6_gro_receive
-ffffffff818d5070 t tcp6_gro_complete
-ffffffff818d50f0 t tcp6_gso_segment.llvm.7369255479864496245
-ffffffff818d51b0 t __tcp_v6_send_check
-ffffffff818d5210 t inet6_ehashfn
-ffffffff818d5400 t __inet6_lookup_established
-ffffffff818d55c0 t inet6_lookup_listener
-ffffffff818d5960 t inet6_lhash2_lookup
-ffffffff818d5a90 t inet6_lookup
-ffffffff818d5b80 t inet6_hash_connect
-ffffffff818d5bd0 t __inet6_check_established
-ffffffff818d5e40 t inet6_hash
-ffffffff818d5e60 t ipv6_mc_check_mld
-ffffffff818d6290 t ipv6_mc_validate_checksum
-ffffffff818d63d0 t packet_notifier
-ffffffff818d6620 t __unregister_prot_hook
-ffffffff818d6710 t __register_prot_hook
-ffffffff818d67c0 t __fanout_link
-ffffffff818d6820 t packet_seq_start
-ffffffff818d6850 t packet_seq_stop
-ffffffff818d6860 t packet_seq_next
-ffffffff818d6880 t packet_seq_show
-ffffffff818d6960 t packet_create
-ffffffff818d6bf0 t dev_queue_xmit
-ffffffff818d6c10 t packet_sock_destruct
-ffffffff818d6c70 t packet_rcv
-ffffffff818d6fb0 t packet_rcv_spkt
-ffffffff818d70b0 t packet_release
-ffffffff818d74d0 t packet_bind
-ffffffff818d7510 t packet_getname
-ffffffff818d75c0 t packet_poll
-ffffffff818d7710 t packet_ioctl
-ffffffff818d77e0 t packet_setsockopt
-ffffffff818d8100 t packet_getsockopt
-ffffffff818d84a0 t packet_sendmsg
-ffffffff818d9a30 t packet_recvmsg
-ffffffff818d9e40 t packet_mmap
-ffffffff818da030 t packet_set_ring
-ffffffff818daa40 t tpacket_rcv
-ffffffff818db5b0 t free_pg_vec
-ffffffff818db620 t prb_retire_rx_blk_timer_expired
-ffffffff818db8a0 t prb_retire_current_block
-ffffffff818db9a0 t prb_dispatch_next_block
-ffffffff818dbac0 t run_filter
-ffffffff818dbb90 t __packet_rcv_has_room
-ffffffff818dbd10 t skb_csum_unnecessary
-ffffffff818dbd60 t skb_get
-ffffffff818dbdb0 t skb_set_owner_r
-ffffffff818dbe20 t packet_increment_rx_head
-ffffffff818dbe60 t skb_clear_delivery_time
-ffffffff818dbea0 t __packet_set_status
-ffffffff818dbf00 t __packet_get_status
-ffffffff818dbf50 t packet_do_bind
-ffffffff818dc190 t packet_mc_add
-ffffffff818dc3b0 t packet_mc_drop
-ffffffff818dc500 t fanout_add
-ffffffff818dc900 t fanout_set_data
-ffffffff818dca40 t packet_direct_xmit
-ffffffff818dcb10 t packet_rcv_fanout
-ffffffff818dd110 t match_fanout_group
-ffffffff818dd140 t virtio_net_hdr_to_skb
-ffffffff818dd560 t tpacket_destruct_skb
-ffffffff818dd700 t packet_parse_headers
-ffffffff818dd950 t packet_mm_open
-ffffffff818dd980 t packet_mm_close
-ffffffff818dd9b0 t packet_bind_spkt
-ffffffff818dda20 t packet_getname_spkt
-ffffffff818ddaa0 t packet_sendmsg_spkt
-ffffffff818ddfb0 t pfkey_send_notify
-ffffffff818de250 t pfkey_send_acquire
-ffffffff818de9a0 t pfkey_compile_policy
-ffffffff818deb60 t pfkey_send_new_mapping
-ffffffff818dedf0 t pfkey_send_policy_notify
-ffffffff818df100 t pfkey_send_migrate
-ffffffff818df110 t pfkey_is_alive
-ffffffff818df180 t pfkey_broadcast
-ffffffff818df4e0 t __pfkey_xfrm_state2msg
-ffffffff818dfce0 t parse_ipsecrequests
-ffffffff818e0070 t pfkey_sadb2xfrm_user_sec_ctx
-ffffffff818e00e0 t check_reqid
-ffffffff818e0160 t pfkey_xfrm_policy2msg
-ffffffff818e0810 t pfkey_seq_start
-ffffffff818e0850 t pfkey_seq_stop
-ffffffff818e0860 t pfkey_seq_next
-ffffffff818e08b0 t pfkey_seq_show
-ffffffff818e0950 t pfkey_create
-ffffffff818e0b30 t pfkey_sock_destruct
-ffffffff818e0c00 t pfkey_release
-ffffffff818e0d20 t pfkey_sendmsg
-ffffffff818e1190 t pfkey_recvmsg
-ffffffff818e12e0 t pfkey_reserved
-ffffffff818e12f0 t pfkey_getspi
-ffffffff818e1620 t pfkey_add
-ffffffff818e1de0 t pfkey_delete
-ffffffff818e1f80 t pfkey_get
-ffffffff818e2140 t pfkey_acquire
-ffffffff818e21f0 t pfkey_register
-ffffffff818e2400 t pfkey_flush
-ffffffff818e2550 t pfkey_dump
-ffffffff818e26c0 t pfkey_promisc
-ffffffff818e2770 t pfkey_spdadd
-ffffffff818e2b50 t pfkey_spddelete
-ffffffff818e2e30 t pfkey_spdget
-ffffffff818e3160 t pfkey_spddump
-ffffffff818e31f0 t pfkey_spdflush
-ffffffff818e3300 t pfkey_migrate
-ffffffff818e3310 t xfrm_state_put
-ffffffff818e3350 t pfkey_dump_sa
-ffffffff818e3380 t pfkey_dump_sa_done
-ffffffff818e33a0 t pfkey_do_dump
-ffffffff818e3490 t dump_sa
-ffffffff818e3580 t xfrm_pol_put
-ffffffff818e35c0 t pfkey_dump_sp
-ffffffff818e35f0 t pfkey_dump_sp_done
-ffffffff818e3610 t dump_sp
-ffffffff818e3860 t register_net_sysctl
-ffffffff818e3880 t unregister_net_sysctl_table
-ffffffff818e3890 t is_seen
-ffffffff818e38c0 t net_ctl_header_lookup
-ffffffff818e38f0 t net_ctl_set_ownership
-ffffffff818e3910 t net_ctl_permissions
-ffffffff818e3950 t vsock_insert_connected
-ffffffff818e3a10 t vsock_remove_bound
-ffffffff818e3ab0 t vsock_remove_connected
-ffffffff818e3b50 t vsock_find_bound_socket
-ffffffff818e3c60 t vsock_find_connected_socket
-ffffffff818e3d70 t vsock_remove_sock
-ffffffff818e3d90 t vsock_for_each_connected_socket
-ffffffff818e3e30 t vsock_add_pending
-ffffffff818e3ef0 t vsock_remove_pending
-ffffffff818e3fa0 t vsock_enqueue_accept
-ffffffff818e4060 t vsock_assign_transport
-ffffffff818e41e0 t vsock_find_cid
-ffffffff818e4240 t vsock_create_connected
-ffffffff818e4270 t __vsock_create.llvm.3617677762428779304
-ffffffff818e4510 t vsock_stream_has_data
-ffffffff818e4530 t vsock_stream_has_space
-ffffffff818e4550 t vsock_data_ready
-ffffffff818e45a0 t vsock_core_get_transport
-ffffffff818e45c0 t vsock_core_register
-ffffffff818e4690 t vsock_core_unregister
-ffffffff818e4730 t vsock_sk_destruct
-ffffffff818e47b0 t vsock_queue_rcv_skb
-ffffffff818e47f0 t vsock_connect_timeout
-ffffffff818e48b0 t vsock_pending_work
-ffffffff818e49e0 t vsock_dev_ioctl
-ffffffff818e4a50 t vsock_create
-ffffffff818e4be0 t vsock_release
-ffffffff818e4c10 t vsock_bind
-ffffffff818e4ca0 t vsock_dgram_connect
-ffffffff818e4df0 t vsock_getname
-ffffffff818e4e80 t vsock_poll
-ffffffff818e50a0 t vsock_shutdown
-ffffffff818e5160 t vsock_dgram_sendmsg
-ffffffff818e5310 t vsock_dgram_recvmsg
-ffffffff818e5330 t __vsock_release
-ffffffff818e5500 t __vsock_bind
-ffffffff818e5910 t vsock_auto_bind
-ffffffff818e5990 t vsock_connect
-ffffffff818e5d20 t vsock_accept
-ffffffff818e6040 t vsock_listen
-ffffffff818e60c0 t vsock_connectible_setsockopt
-ffffffff818e63f0 t vsock_connectible_getsockopt
-ffffffff818e6560 t vsock_connectible_sendmsg
-ffffffff818e6900 t vsock_connectible_recvmsg
-ffffffff818e6c90 t vsock_set_rcvlowat
-ffffffff818e6cf0 t vsock_connectible_wait_data
-ffffffff818e6e90 t vsock_add_tap
-ffffffff818e6f20 t vsock_remove_tap
-ffffffff818e6fc0 t vsock_deliver_tap
-ffffffff818e7020 t __vsock_deliver_tap
-ffffffff818e70d0 t vsock_addr_init
-ffffffff818e7100 t vsock_addr_validate
-ffffffff818e7140 t vsock_addr_bound
-ffffffff818e7160 t vsock_addr_unbind
-ffffffff818e7190 t vsock_addr_equals_addr
-ffffffff818e71c0 t vsock_addr_cast
-ffffffff818e7200 t vsock_diag_handler_dump
-ffffffff818e72b0 t vsock_diag_dump
-ffffffff818e7630 t virtio_vsock_probe
-ffffffff818e7800 t virtio_vsock_remove
-ffffffff818e7890 t virtio_vsock_freeze
-ffffffff818e78e0 t virtio_vsock_restore
-ffffffff818e7940 t virtio_transport_rx_work
-ffffffff818e7a90 t virtio_transport_tx_work
-ffffffff818e7ba0 t virtio_transport_event_work
-ffffffff818e7d40 t virtio_transport_send_pkt_work
-ffffffff818e8130 t virtio_vsock_vqs_init
-ffffffff818e8630 t virtio_vsock_rx_fill
-ffffffff818e87d0 t virtio_vsock_reset_sock
-ffffffff818e87f0 t virtio_vsock_rx_done
-ffffffff818e8820 t virtio_vsock_tx_done
-ffffffff818e8850 t virtio_vsock_event_done
-ffffffff818e8880 t virtio_vsock_vqs_del
-ffffffff818e8a60 t virtio_transport_cancel_pkt
-ffffffff818e8c40 t virtio_transport_seqpacket_allow
-ffffffff818e8c80 t virtio_transport_get_local_cid
-ffffffff818e8cc0 t virtio_transport_send_pkt
-ffffffff818e8db0 t __traceiter_virtio_transport_alloc_pkt
-ffffffff818e8e40 t __traceiter_virtio_transport_recv_pkt
-ffffffff818e8ee0 t trace_event_raw_event_virtio_transport_alloc_pkt
-ffffffff818e8fe0 t perf_trace_virtio_transport_alloc_pkt
-ffffffff818e9110 t trace_event_raw_event_virtio_transport_recv_pkt
-ffffffff818e9220 t perf_trace_virtio_transport_recv_pkt
-ffffffff818e9370 t virtio_transport_deliver_tap_pkt
-ffffffff818e93a0 t virtio_transport_build_skb
-ffffffff818e94b0 t virtio_transport_inc_tx_pkt
-ffffffff818e9500 t virtio_transport_get_credit
-ffffffff818e9560 t virtio_transport_put_credit
-ffffffff818e95a0 t virtio_transport_stream_dequeue
-ffffffff818e98b0 t virtio_transport_seqpacket_dequeue
-ffffffff818e9b10 t virtio_transport_seqpacket_enqueue
-ffffffff818e9bc0 t virtio_transport_stream_enqueue
-ffffffff818e9c30 t virtio_transport_dgram_dequeue
-ffffffff818e9c40 t virtio_transport_stream_has_data
-ffffffff818e9c80 t virtio_transport_seqpacket_has_data
-ffffffff818e9cc0 t virtio_transport_stream_has_space
-ffffffff818e9d10 t virtio_transport_do_socket_init
-ffffffff818e9db0 t virtio_transport_notify_buffer_size
-ffffffff818e9e40 t virtio_transport_notify_poll_in
-ffffffff818e9e70 t virtio_transport_notify_poll_out
-ffffffff818e9ea0 t virtio_transport_notify_recv_init
-ffffffff818e9eb0 t virtio_transport_notify_recv_pre_block
-ffffffff818e9ec0 t virtio_transport_notify_recv_pre_dequeue
-ffffffff818e9ed0 t virtio_transport_notify_recv_post_dequeue
-ffffffff818e9ee0 t virtio_transport_notify_send_init
-ffffffff818e9ef0 t virtio_transport_notify_send_pre_block
-ffffffff818e9f00 t virtio_transport_notify_send_pre_enqueue
-ffffffff818e9f10 t virtio_transport_notify_send_post_enqueue
-ffffffff818e9f20 t virtio_transport_stream_rcvhiwat
-ffffffff818e9f40 t virtio_transport_stream_is_active
-ffffffff818e9f50 t virtio_transport_stream_allow
-ffffffff818e9f60 t virtio_transport_dgram_bind
-ffffffff818e9f70 t virtio_transport_dgram_allow
-ffffffff818e9f80 t virtio_transport_connect
-ffffffff818e9ff0 t virtio_transport_send_pkt_info
-ffffffff818ea170 t virtio_transport_shutdown
-ffffffff818ea1e0 t virtio_transport_dgram_enqueue
-ffffffff818ea1f0 t virtio_transport_destruct
-ffffffff818ea210 t virtio_transport_release
-ffffffff818ea530 t virtio_transport_recv_pkt
-ffffffff818eb0b0 t virtio_transport_free_pkt
-ffffffff818eb0e0 t trace_raw_output_virtio_transport_alloc_pkt
-ffffffff818eb1c0 t trace_raw_output_virtio_transport_recv_pkt
-ffffffff818eb2b0 t virtio_transport_alloc_pkt
-ffffffff818eb4d0 t virtio_transport_close_timeout
-ffffffff818eb5f0 t virtio_transport_do_close
-ffffffff818eb740 t vsock_loopback_cancel_pkt
-ffffffff818eb8a0 t vsock_loopback_seqpacket_allow
-ffffffff818eb8b0 t vsock_loopback_get_local_cid
-ffffffff818eb8c0 t vsock_loopback_send_pkt
-ffffffff818eb950 t vsock_loopback_work
-ffffffff818eba30 t pcibios_retrieve_fw_addr
-ffffffff818ebab0 t pcibios_align_resource
-ffffffff818ebb20 t pcibios_resource_survey_bus
-ffffffff818ebb80 t pcibios_allocate_bus_resources
-ffffffff818ebd00 t pcibios_allocate_resources
-ffffffff818ec050 t pcibios_allocate_rom_resources
-ffffffff818ec0e0 t pci_mmcfg_read.llvm.11918153577564607686
-ffffffff818ec1b0 t pci_mmcfg_write.llvm.11918153577564607686
-ffffffff818ec280 t pci_mmcfg_arch_map
-ffffffff818ec300 t pci_mmcfg_arch_unmap
-ffffffff818ec340 t pci_conf1_read
-ffffffff818ec430 t pci_conf1_write
-ffffffff818ec520 t pci_conf2_read
-ffffffff818ec630 t pci_conf2_write
-ffffffff818ec730 t pci_mmconfig_alloc
-ffffffff818ec7f0 t list_add_sorted
-ffffffff818ec8a0 t pci_mmconfig_lookup
-ffffffff818ec8f0 t pci_mmconfig_insert
-ffffffff818ecaf0 t pci_mmconfig_delete
-ffffffff818ecbc0 t is_acpi_reserved
-ffffffff818ecc80 t find_mboard_resource
-ffffffff818eccc0 t check_mcfg_resource
-ffffffff818ecdb0 t __UNIQUE_ID_pci_fixup_i450nx265
-ffffffff818ecec0 t __UNIQUE_ID_pci_fixup_i450gx267
-ffffffff818ecf40 t __UNIQUE_ID_pci_fixup_umc_ide269
-ffffffff818ecf80 t __UNIQUE_ID_pci_fixup_latency271
-ffffffff818ecfa0 t __UNIQUE_ID_pci_fixup_latency273
-ffffffff818ecfc0 t __UNIQUE_ID_pci_fixup_piix4_acpi275
-ffffffff818ecfe0 t __UNIQUE_ID_pci_fixup_via_northbridge_bug277
-ffffffff818ecff0 t pci_fixup_via_northbridge_bug
-ffffffff818ed0f0 t __UNIQUE_ID_pci_fixup_via_northbridge_bug279
-ffffffff818ed100 t __UNIQUE_ID_pci_fixup_via_northbridge_bug281
-ffffffff818ed110 t __UNIQUE_ID_pci_fixup_via_northbridge_bug283
-ffffffff818ed120 t __UNIQUE_ID_pci_fixup_via_northbridge_bug285
-ffffffff818ed130 t __UNIQUE_ID_pci_fixup_via_northbridge_bug287
-ffffffff818ed140 t __UNIQUE_ID_pci_fixup_via_northbridge_bug289
-ffffffff818ed150 t __UNIQUE_ID_pci_fixup_via_northbridge_bug291
-ffffffff818ed160 t __UNIQUE_ID_pci_fixup_transparent_bridge293
-ffffffff818ed180 t __UNIQUE_ID_pci_fixup_nforce2295
-ffffffff818ed210 t __UNIQUE_ID_pci_fixup_nforce2297
-ffffffff818ed2a0 t __UNIQUE_ID_pcie_rootport_aspm_quirk299
-ffffffff818ed2b0 t pcie_rootport_aspm_quirk
-ffffffff818ed440 t __UNIQUE_ID_pcie_rootport_aspm_quirk301
-ffffffff818ed450 t __UNIQUE_ID_pcie_rootport_aspm_quirk303
-ffffffff818ed460 t __UNIQUE_ID_pcie_rootport_aspm_quirk305
-ffffffff818ed470 t __UNIQUE_ID_pcie_rootport_aspm_quirk307
-ffffffff818ed480 t __UNIQUE_ID_pcie_rootport_aspm_quirk309
-ffffffff818ed490 t __UNIQUE_ID_pci_fixup_video311
-ffffffff818ed5b0 t __UNIQUE_ID_pci_fixup_msi_k8t_onboard_sound313
-ffffffff818ed5c0 t pci_fixup_msi_k8t_onboard_sound
-ffffffff818ed670 t __UNIQUE_ID_pci_fixup_msi_k8t_onboard_sound315
-ffffffff818ed680 t __UNIQUE_ID_pci_pre_fixup_toshiba_ohci1394317
-ffffffff818ed6c0 t __UNIQUE_ID_pci_post_fixup_toshiba_ohci1394319
-ffffffff818ed730 t __UNIQUE_ID_pci_early_fixup_cyrix_5530321
-ffffffff818ed7a0 t __UNIQUE_ID_pci_early_fixup_cyrix_5530323
-ffffffff818ed810 t __UNIQUE_ID_pci_siemens_interrupt_controller325
-ffffffff818ed830 t __UNIQUE_ID_sb600_disable_hpet_bar327
-ffffffff818ed8a0 t __UNIQUE_ID_sb600_hpet_quirk329
-ffffffff818ed8f0 t __UNIQUE_ID_twinhead_reserve_killing_zone331
-ffffffff818ed950 t __UNIQUE_ID_pci_invalid_bar333
-ffffffff818ed970 t __UNIQUE_ID_pci_invalid_bar335
-ffffffff818ed990 t __UNIQUE_ID_pci_invalid_bar337
-ffffffff818ed9b0 t __UNIQUE_ID_pci_invalid_bar339
-ffffffff818ed9d0 t __UNIQUE_ID_pci_invalid_bar341
-ffffffff818ed9f0 t __UNIQUE_ID_pci_invalid_bar343
-ffffffff818eda10 t __UNIQUE_ID_pci_invalid_bar345
-ffffffff818eda30 t __UNIQUE_ID_pci_invalid_bar347
-ffffffff818eda50 t __UNIQUE_ID_pci_fixup_amd_ehci_pme349
-ffffffff818eda80 t __UNIQUE_ID_pci_fixup_amd_fch_xhci_pme351
-ffffffff818edab0 t __UNIQUE_ID_quirk_apple_mbp_poweroff353
-ffffffff818edb60 t __UNIQUE_ID_quirk_no_aersid355
-ffffffff818edb70 t __UNIQUE_ID_quirk_intel_th_dnv357
-ffffffff818edbb0 t __UNIQUE_ID_pci_amd_enable_64bit_bar359
-ffffffff818edbc0 t pci_amd_enable_64bit_bar
-ffffffff818eddf0 t __UNIQUE_ID_pci_amd_enable_64bit_bar361
-ffffffff818ede00 t __UNIQUE_ID_pci_amd_enable_64bit_bar363
-ffffffff818ede10 t __UNIQUE_ID_pci_amd_enable_64bit_bar365
-ffffffff818ede20 t __UNIQUE_ID_pci_amd_enable_64bit_bar367
-ffffffff818ede30 t __UNIQUE_ID_pci_amd_enable_64bit_bar369
-ffffffff818ede40 t __UNIQUE_ID_pci_amd_enable_64bit_bar371
-ffffffff818ede50 t __UNIQUE_ID_pci_amd_enable_64bit_bar373
-ffffffff818ede60 t __UNIQUE_ID_pci_amd_enable_64bit_bar375
-ffffffff818ede70 t __UNIQUE_ID_pci_amd_enable_64bit_bar377
-ffffffff818ede80 t __UNIQUE_ID_rs690_fix_64bit_dma379
-ffffffff818edfa0 t __UNIQUE_ID_quirk_clear_strap_no_soft_reset_dev2_f0381
-ffffffff818ee050 t quirk_pcie_aspm_read
-ffffffff818ee080 t quirk_pcie_aspm_write
-ffffffff818ee0f0 t pci_acpi_scan_root
-ffffffff818ee230 t pcibios_root_bridge_prepare
-ffffffff818ee270 t pci_acpi_root_init_info
-ffffffff818ee370 t pci_acpi_root_release_info
-ffffffff818ee3b0 t pci_acpi_root_prepare_resources
-ffffffff818ee500 t pcibios_scan_specific_bus
-ffffffff818ee5c0 t pirq_enable_irq
-ffffffff818ee7f0 t pirq_disable_irq
-ffffffff818ee860 t elcr_set_level_irq
-ffffffff818ee8d0 t pcibios_lookup_irq
-ffffffff818eedc0 t pcibios_penalize_isa_irq
-ffffffff818eee20 t mp_should_keep_irq
-ffffffff818eee40 t pirq_get_info
-ffffffff818ef010 t pirq_esc_get
-ffffffff818ef080 t pirq_esc_set
-ffffffff818ef0f0 t pirq_piix_get
-ffffffff818ef150 t pirq_piix_set
-ffffffff818ef170 t pirq_ib_get
-ffffffff818ef1d0 t pirq_ib_set
-ffffffff818ef200 t pirq_finali_get
-ffffffff818ef270 t pirq_finali_set
-ffffffff818ef310 t pirq_finali_lvl
-ffffffff818ef3e0 t pirq_ali_get
-ffffffff818ef450 t pirq_ali_set
-ffffffff818ef520 t pirq_ite_get
-ffffffff818ef5a0 t pirq_ite_set
-ffffffff818ef650 t pirq_via586_get
-ffffffff818ef6d0 t pirq_via586_set
-ffffffff818ef790 t pirq_via_get
-ffffffff818ef800 t pirq_via_set
-ffffffff818ef8a0 t pirq_opti_get
-ffffffff818ef910 t pirq_opti_set
-ffffffff818ef9b0 t pirq_sis497_get
-ffffffff818efa20 t pirq_sis497_set
-ffffffff818efac0 t pirq_sis503_get
-ffffffff818efb30 t pirq_sis503_set
-ffffffff818efbc0 t pirq_cyrix_get
-ffffffff818efc20 t pirq_cyrix_set
-ffffffff818efcc0 t pirq_vlsi_get
-ffffffff818efd50 t pirq_vlsi_set
-ffffffff818efe10 t pirq_serverworks_get
-ffffffff818efe30 t pirq_serverworks_set
-ffffffff818efe50 t pirq_amd756_get
-ffffffff818eff00 t pirq_amd756_set
-ffffffff818effc0 t pirq_pico_get
-ffffffff818efff0 t pirq_pico_set
-ffffffff818f0030 t raw_pci_read
-ffffffff818f0080 t raw_pci_write
-ffffffff818f00d0 t pci_read
-ffffffff818f0140 t pci_write
-ffffffff818f01b0 t pcibios_fixup_bus
-ffffffff818f0360 t pcibios_add_bus
-ffffffff818f0370 t pcibios_remove_bus
-ffffffff818f0380 t pcibios_scan_root
-ffffffff818f0460 t pcibios_assign_all_busses
-ffffffff818f0480 t pcibios_device_add
-ffffffff818f05a0 t pcibios_enable_device
-ffffffff818f05e0 t pcibios_disable_device
-ffffffff818f0610 t pcibios_release_device
-ffffffff818f0650 t pci_ext_cfg_avail
-ffffffff818f0670 t read_pci_config
-ffffffff818f06a0 t read_pci_config_byte
-ffffffff818f06d0 t read_pci_config_16
-ffffffff818f0700 t write_pci_config
-ffffffff818f0730 t write_pci_config_byte
-ffffffff818f0770 t write_pci_config_16
-ffffffff818f07b0 t early_pci_allowed
-ffffffff818f07d0 t x86_pci_root_bus_node
-ffffffff818f0810 t x86_pci_root_bus_resources
-ffffffff818f08e0 t update_res
-ffffffff818f09e0 t amd_bus_cpu_online
-ffffffff818f0a60 t argv_free
-ffffffff818f0a90 t argv_split
-ffffffff818f0bb0 t bug_get_file_line
-ffffffff818f0bd0 t find_bug
-ffffffff818f0c10 t report_bug
-ffffffff818f0e20 t generic_bug_clear_once
-ffffffff818f0e60 t build_id_parse
-ffffffff818f1200 t build_id_parse_buf
-ffffffff818f12e0 t get_option
-ffffffff818f1380 t get_options
-ffffffff818f1510 t memparse
-ffffffff818f15e0 t parse_option_str
-ffffffff818f1690 t next_arg
-ffffffff818f17b0 t cpumask_next_wrap
-ffffffff818f1820 t cpumask_local_spread
-ffffffff818f18d0 t cpumask_any_and_distribute
-ffffffff818f1970 t cpumask_any_distribute
-ffffffff818f1a00 t _atomic_dec_and_lock
-ffffffff818f1a50 t _atomic_dec_and_lock_irqsave
-ffffffff818f1ab0 t dump_stack_print_info
-ffffffff818f1ba0 t show_regs_print_info
-ffffffff818f1bb0 t dump_stack_lvl
-ffffffff818f1c48 t dump_stack
-ffffffff818f1c60 t find_cpio_data
-ffffffff818f2080 t sort_extable
-ffffffff818f20c0 t cmp_ex_sort
-ffffffff818f20f0 t swap_ex
-ffffffff818f2130 t search_extable
-ffffffff818f2190 t cmp_ex_search.llvm.13862335234397298336
-ffffffff818f21c0 t fprop_global_init
-ffffffff818f2200 t fprop_global_destroy
-ffffffff818f2210 t fprop_new_period
-ffffffff818f2270 t fprop_local_init_single
-ffffffff818f2290 t fprop_local_destroy_single
-ffffffff818f22a0 t __fprop_inc_single
-ffffffff818f2320 t fprop_fraction_single
-ffffffff818f23f0 t fprop_local_init_percpu
-ffffffff818f2420 t fprop_local_destroy_percpu
-ffffffff818f2430 t __fprop_add_percpu
-ffffffff818f2490 t fprop_reflect_period_percpu
-ffffffff818f2560 t fprop_fraction_percpu
-ffffffff818f25f0 t __fprop_add_percpu_max
-ffffffff818f2710 t idr_alloc_u32
-ffffffff818f27f0 t idr_alloc
-ffffffff818f28f0 t idr_alloc_cyclic
-ffffffff818f2ab0 t idr_remove
-ffffffff818f2ad0 t idr_find
-ffffffff818f2af0 t idr_for_each
-ffffffff818f2c00 t idr_get_next_ul
-ffffffff818f2d30 t idr_get_next
-ffffffff818f2e80 t idr_replace
-ffffffff818f2f30 t ida_alloc_range
-ffffffff818f33a0 t ida_free
-ffffffff818f34f0 t ida_destroy
-ffffffff818f3630 t current_is_single_threaded
-ffffffff818f3720 t klist_init
-ffffffff818f3750 t klist_add_head
-ffffffff818f37e0 t klist_add_tail
-ffffffff818f3870 t klist_add_behind
-ffffffff818f3900 t klist_add_before
-ffffffff818f39a0 t klist_del
-ffffffff818f3a10 t klist_remove
-ffffffff818f3b60 t klist_node_attached
-ffffffff818f3b80 t klist_iter_init_node
-ffffffff818f3bf0 t klist_iter_init
-ffffffff818f3c10 t klist_iter_exit
-ffffffff818f3c80 t klist_prev
-ffffffff818f3d60 t klist_dec_and_del
-ffffffff818f3eb0 t klist_next
-ffffffff818f3f90 t kobject_namespace
-ffffffff818f3fe0 t kobj_ns_ops
-ffffffff818f4020 t kobject_get_ownership
-ffffffff818f4050 t kobject_get_path
-ffffffff818f4140 t kobject_set_name_vargs
-ffffffff818f41e0 t kobject_set_name
-ffffffff818f4260 t kobject_init
-ffffffff818f4300 t kobject_add
-ffffffff818f4400 t kobject_init_and_add
-ffffffff818f4560 t kobject_rename
-ffffffff818f4770 t kobject_get
-ffffffff818f47d0 t kobject_put
-ffffffff818f4890 t kobject_move
-ffffffff818f4b00 t kobject_del
-ffffffff818f4b30 t __kobject_del
-ffffffff818f4bf0 t kobject_get_unless_zero
-ffffffff818f4c50 t kobject_create_and_add
-ffffffff818f4d20 t kset_init
-ffffffff818f4d60 t kobj_attr_show
-ffffffff818f4d90 t kobj_attr_store
-ffffffff818f4dc0 t kset_register
-ffffffff818f4e30 t kobject_add_internal
-ffffffff818f5230 t kset_unregister
-ffffffff818f5270 t kset_find_obj
-ffffffff818f5330 t kset_create_and_add
-ffffffff818f5400 t kobj_ns_type_register
-ffffffff818f5460 t kobj_ns_type_registered
-ffffffff818f54a0 t kobj_child_ns_ops
-ffffffff818f54e0 t kobj_ns_current_may_mount
-ffffffff818f5530 t kobj_ns_grab_current
-ffffffff818f5580 t kobj_ns_netlink
-ffffffff818f55e0 t kobj_ns_initial
-ffffffff818f5630 t kobj_ns_drop
-ffffffff818f5690 t dynamic_kobj_release
-ffffffff818f56a0 t kset_release
-ffffffff818f56c0 t kset_get_ownership
-ffffffff818f5700 t kobject_synth_uevent
-ffffffff818f5c30 t kobject_uevent_env
-ffffffff818f5ef0 t add_uevent_var
-ffffffff818f6050 t zap_modalias_env
-ffffffff818f61a0 t kobject_uevent_net_broadcast
-ffffffff818f63b0 t kobject_uevent
-ffffffff818f63d0 t alloc_uevent_skb
-ffffffff818f64a0 t uevent_net_init
-ffffffff818f65f0 t uevent_net_exit
-ffffffff818f6670 t uevent_net_rcv
-ffffffff818f6690 t uevent_net_rcv_skb
-ffffffff818f6870 t logic_pio_register_range
-ffffffff818f6a40 t logic_pio_unregister_range
-ffffffff818f6aa0 t find_io_range_by_fwnode
-ffffffff818f6af0 t logic_pio_to_hwaddr
-ffffffff818f6b70 t logic_pio_trans_hwaddr
-ffffffff818f6c40 t logic_pio_trans_cpuaddr
-ffffffff818f6d00 t __traceiter_ma_op
-ffffffff818f6d50 t __traceiter_ma_read
-ffffffff818f6da0 t __traceiter_ma_write
-ffffffff818f6e10 t trace_event_raw_event_ma_op
-ffffffff818f6f00 t perf_trace_ma_op
-ffffffff818f7020 t trace_event_raw_event_ma_read
-ffffffff818f7110 t perf_trace_ma_read
-ffffffff818f7230 t trace_event_raw_event_ma_write
-ffffffff818f7330 t perf_trace_ma_write
-ffffffff818f7470 t mas_is_err
-ffffffff818f74a0 t mas_walk
-ffffffff818f7500 t mas_state_walk
-ffffffff818f7800 t mas_empty_area
-ffffffff818f79f0 t mas_skip_node
-ffffffff818f7b80 t mas_awalk
-ffffffff818f7e60 t mas_empty_area_rev
-ffffffff818f84b0 t mas_store
-ffffffff818f85f0 t mas_wr_store_entry
-ffffffff818f88b0 t mas_store_gfp
-ffffffff818f8a40 t mas_nomem
-ffffffff818f8ad0 t mas_store_prealloc
-ffffffff818f8c30 t mas_destroy
-ffffffff818f9cd0 t mas_preallocate
-ffffffff818f9db0 t mas_expected_entries
-ffffffff818f9eb0 t mas_next
-ffffffff818f9f70 t mas_next_entry
-ffffffff818fa300 t mt_next
-ffffffff818fa3d0 t mas_prev
-ffffffff818fa4d0 t mas_prev_entry
-ffffffff818fa760 t mt_prev
-ffffffff818fa7f0 t mas_pause
-ffffffff818fa810 t mas_find
-ffffffff818fa8b0 t mas_find_rev
-ffffffff818fa950 t mas_erase
-ffffffff818faaa0 t mas_alloc_nodes
-ffffffff818facb0 t mtree_load
-ffffffff818fafd0 t mtree_store_range
-ffffffff818fb1b0 t mtree_store
-ffffffff818fb1d0 t mtree_insert_range
-ffffffff818fb4e0 t mtree_insert
-ffffffff818fb500 t mtree_alloc_range
-ffffffff818fba40 t mtree_alloc_rrange
-ffffffff818fbd50 t mtree_erase
-ffffffff818fbe40 t __mt_destroy
-ffffffff818fbeb0 t mtree_destroy
-ffffffff818fbf30 t mt_find
-ffffffff818fc0d0 t mt_find_after
-ffffffff818fc0f0 t trace_raw_output_ma_op
-ffffffff818fc160 t trace_raw_output_ma_read
-ffffffff818fc1d0 t trace_raw_output_ma_write
-ffffffff818fc240 t mas_ascend
-ffffffff818fc4a0 t mas_is_span_wr
-ffffffff818fc550 t mas_wr_walk
-ffffffff818fc790 t mas_wr_spanning_store
-ffffffff818fd220 t mas_new_root
-ffffffff818fd430 t mas_wr_modify
-ffffffff818ff160 t mas_root_expand
-ffffffff818ff330 t mas_store_b_node
-ffffffff818ff740 t mas_mab_cp
-ffffffff818ff9b0 t mas_spanning_rebalance
-ffffffff81900fd0 t mast_spanning_rebalance
-ffffffff81901c80 t mast_ascend_free
-ffffffff81901f60 t mast_topiary
-ffffffff81902480 t mab_mas_cp
-ffffffff81902740 t mas_wmb_replace
-ffffffff81903280 t mab_calc_split
-ffffffff81903460 t mas_leaf_max_gap
-ffffffff819035f0 t mas_leaf_set_meta
-ffffffff81903650 t mas_replace
-ffffffff81903970 t mas_update_gap
-ffffffff81903c50 t mt_free_rcu
-ffffffff81903c70 t mas_next_sibling
-ffffffff81903ea0 t mas_split_final_node
-ffffffff819040b0 t mas_push_data
-ffffffff81904860 t mast_split_data
-ffffffff81904af0 t mast_fill_bnode
-ffffffff81904fe0 t mas_next_node
-ffffffff81905280 t mas_prev_node
-ffffffff819055b0 t mt_destroy_walk
-ffffffff81905920 t mt_free_walk
-ffffffff81905b30 t nmi_trigger_cpumask_backtrace
-ffffffff81905cb0 t nmi_cpu_backtrace
-ffffffff81905e00 t plist_add
-ffffffff81905f10 t plist_del
-ffffffff81905fc0 t plist_requeue
-ffffffff81906110 t radix_tree_node_rcu_free
-ffffffff81906150 t radix_tree_preload
-ffffffff81906180 t __radix_tree_preload
-ffffffff819062c0 t radix_tree_maybe_preload
-ffffffff81906310 t radix_tree_insert
-ffffffff819064e0 t __radix_tree_lookup
-ffffffff819065a0 t radix_tree_lookup_slot
-ffffffff81906650 t radix_tree_lookup
-ffffffff819066d0 t __radix_tree_replace
-ffffffff81906790 t delete_node
-ffffffff819069f0 t radix_tree_replace_slot
-ffffffff81906a50 t radix_tree_iter_replace
-ffffffff81906a70 t radix_tree_tag_set
-ffffffff81906b30 t radix_tree_tag_clear
-ffffffff81906c30 t radix_tree_iter_tag_clear
-ffffffff81906cc0 t radix_tree_tag_get
-ffffffff81906d60 t radix_tree_iter_resume
-ffffffff81906d90 t radix_tree_next_chunk
-ffffffff81906fe0 t radix_tree_gang_lookup
-ffffffff819070f0 t radix_tree_gang_lookup_tag
-ffffffff81907250 t radix_tree_gang_lookup_tag_slot
-ffffffff81907380 t radix_tree_iter_delete
-ffffffff819073b0 t __radix_tree_delete
-ffffffff81907540 t radix_tree_delete_item
-ffffffff81907640 t radix_tree_delete
-ffffffff81907660 t radix_tree_tagged
-ffffffff81907680 t idr_preload
-ffffffff819076c0 t idr_get_free
-ffffffff819079c0 t radix_tree_extend
-ffffffff81907b30 t radix_tree_node_alloc
-ffffffff81907c10 t idr_destroy
-ffffffff81907cf0 t radix_tree_node_ctor
-ffffffff81907d20 t radix_tree_cpu_dead
-ffffffff81907d80 t ___ratelimit
-ffffffff81907ea0 t __rb_erase_color
-ffffffff819080f0 t rb_insert_color
-ffffffff81908230 t rb_erase
-ffffffff81908530 t __rb_insert_augmented
-ffffffff819086b0 t rb_first
-ffffffff819086e0 t rb_last
-ffffffff81908710 t rb_next
-ffffffff81908770 t rb_prev
-ffffffff819087d0 t rb_replace_node
-ffffffff81908840 t rb_replace_node_rcu
-ffffffff819088b0 t rb_next_postorder
-ffffffff819088f0 t rb_first_postorder
-ffffffff81908930 t seq_buf_print_seq
-ffffffff81908960 t seq_buf_vprintf
-ffffffff819089c0 t seq_buf_printf
-ffffffff81908a90 t seq_buf_bprintf
-ffffffff81908b20 t seq_buf_puts
-ffffffff81908b90 t seq_buf_putc
-ffffffff81908be0 t seq_buf_putmem
-ffffffff81908c40 t seq_buf_putmem_hex
-ffffffff81908f10 t seq_buf_path
-ffffffff81908fc0 t seq_buf_to_user
-ffffffff81909060 t seq_buf_hex_dump
-ffffffff81909200 t __show_mem
-ffffffff819092d0 t __siphash_unaligned
-ffffffff81909510 t siphash_1u64
-ffffffff81909700 t siphash_2u64
-ffffffff81909950 t siphash_3u64
-ffffffff81909c10 t siphash_4u64
-ffffffff81909f30 t siphash_1u32
-ffffffff8190a0c0 t siphash_3u32
-ffffffff8190a2c0 t __hsiphash_unaligned
-ffffffff8190a470 t hsiphash_1u32
-ffffffff8190a590 t hsiphash_2u32
-ffffffff8190a6f0 t hsiphash_3u32
-ffffffff8190a850 t hsiphash_4u32
-ffffffff8190a9f0 t strncasecmp
-ffffffff8190aa80 t strcasecmp
-ffffffff8190aae0 t strcpy
-ffffffff8190ab10 t strncpy
-ffffffff8190abd0 t strlcpy
-ffffffff8190ac30 t strlen
-ffffffff8190ac60 t strscpy
-ffffffff8190ad70 t stpcpy
-ffffffff8190ada0 t strcat
-ffffffff8190ade0 t strncat
-ffffffff8190ae30 t strlcat
-ffffffff8190aeb0 t strcmp
-ffffffff8190aef0 t strncmp
-ffffffff8190af50 t strchr
-ffffffff8190af90 t strchrnul
-ffffffff8190afd0 t strnchrnul
-ffffffff8190b010 t strrchr
-ffffffff8190b040 t strnchr
-ffffffff8190b070 t strnlen
-ffffffff8190b0b0 t strspn
-ffffffff8190b110 t strcspn
-ffffffff8190b170 t strpbrk
-ffffffff8190b1e0 t strsep
-ffffffff8190b260 t memcmp
-ffffffff8190b2c0 t bcmp
-ffffffff8190b320 t memscan
-ffffffff8190b350 t strstr
-ffffffff8190b420 t strnstr
-ffffffff8190b4d0 t memchr
-ffffffff8190b510 t memchr_inv
-ffffffff8190b760 t timerqueue_add
-ffffffff8190b820 t timerqueue_del
-ffffffff8190b870 t timerqueue_iterate_next
-ffffffff8190b890 t simple_strtoull
-ffffffff8190b8b0 t simple_strntoull
-ffffffff8190b960 t simple_strtoul
-ffffffff8190b970 t simple_strtol
-ffffffff8190b9a0 t simple_strtoll
-ffffffff8190b9e0 t num_to_str
-ffffffff8190bb30 t put_dec
-ffffffff8190bbd0 t ptr_to_hashval
-ffffffff8190bc10 t vsnprintf
-ffffffff8190c370 t format_decode
-ffffffff8190c890 t string
-ffffffff8190c9b0 t pointer
-ffffffff8190d160 t number
-ffffffff8190d630 t vscnprintf
-ffffffff8190d660 t snprintf
-ffffffff8190d6e0 t scnprintf
-ffffffff8190d770 t vsprintf
-ffffffff8190d790 t sprintf
-ffffffff8190d820 t vbin_printf
-ffffffff8190dd70 t bstr_printf
-ffffffff8190e350 t bprintf
-ffffffff8190e3d0 t vsscanf
-ffffffff8190eba0 t skip_atoi
-ffffffff8190ebe0 t sscanf
-ffffffff8190ec60 t put_dec_full8
-ffffffff8190ecf0 t put_dec_trunc8
-ffffffff8190edc0 t fill_ptr_key_workfn
-ffffffff8190ee10 t string_nocheck
-ffffffff8190ef60 t widen_string
-ffffffff8190f070 t symbol_string
-ffffffff8190f1e0 t resource_string
-ffffffff8190f8b0 t hex_string
-ffffffff8190fa60 t bitmap_list_string
-ffffffff8190fcb0 t bitmap_string
-ffffffff8190fe80 t mac_address_string
-ffffffff819101e0 t ip_addr_string
-ffffffff81910530 t escaped_string
-ffffffff81910700 t uuid_string
-ffffffff819109d0 t restricted_pointer
-ffffffff81910c00 t netdev_bits
-ffffffff81910de0 t fourcc_string
-ffffffff81911140 t address_val
-ffffffff81911230 t dentry_name
-ffffffff81911620 t time_and_date
-ffffffff81911750 t clock
-ffffffff81911850 t file_dentry_name
-ffffffff81911940 t bdev_name
-ffffffff81911ad0 t flags_string
-ffffffff81911f10 t device_node_string
-ffffffff81912560 t fwnode_string
-ffffffff819127a0 t pointer_string
-ffffffff81912800 t default_pointer
-ffffffff81912ad0 t err_ptr
-ffffffff81912b90 t ip6_addr_string
-ffffffff81912cd0 t ip4_addr_string
-ffffffff81912dd0 t ip4_addr_string_sa
-ffffffff81912f90 t ip6_addr_string_sa
-ffffffff81913250 t ip6_compressed_string
-ffffffff819135d0 t ip6_string
-ffffffff81913890 t ip4_string
-ffffffff81913b40 t special_hex_number
-ffffffff81913b70 t rtc_str
-ffffffff81913d30 t time64_str
-ffffffff81913e00 t date_str
-ffffffff81913e90 t time_str
-ffffffff81913f00 t fwnode_full_name_string
-ffffffff81913fb0 t minmax_running_max
-ffffffff819140c0 t minmax_running_min
-ffffffff819141d0 t xas_load
-ffffffff81914360 t xas_destroy
-ffffffff819143b0 t xas_nomem
-ffffffff81914440 t xas_create_range
-ffffffff81914550 t xas_create
-ffffffff81914a60 t xas_store
-ffffffff81915080 t xas_init_marks
-ffffffff81915180 t xas_get_mark
-ffffffff819151d0 t xas_set_mark
-ffffffff81915230 t xas_clear_mark
-ffffffff819152a0 t xas_split_alloc
-ffffffff819153f0 t xas_split
-ffffffff819156a0 t xas_pause
-ffffffff81915720 t __xas_prev
-ffffffff81915810 t __xas_next
-ffffffff819158e0 t xas_find
-ffffffff81915aa0 t xas_find_marked
-ffffffff81915d30 t xas_find_conflict
-ffffffff81916010 t xa_load
-ffffffff819160d0 t __xa_erase
-ffffffff81916180 t xa_erase
-ffffffff81916250 t __xa_store
-ffffffff819163e0 t __xas_nomem
-ffffffff81916500 t xa_store
-ffffffff81916550 t __xa_cmpxchg
-ffffffff819166e0 t __xa_insert
-ffffffff81916860 t xa_store_range
-ffffffff81916bb0 t xa_get_order
-ffffffff81916c80 t __xa_alloc
-ffffffff81916e30 t __xa_alloc_cyclic
-ffffffff81916ef0 t __xa_set_mark
-ffffffff81916fc0 t __xa_clear_mark
-ffffffff819170a0 t xa_get_mark
-ffffffff819171c0 t xa_set_mark
-ffffffff819172b0 t xa_clear_mark
-ffffffff819173c0 t xa_find
-ffffffff819174b0 t xa_find_after
-ffffffff819175d0 t xa_extract
-ffffffff819178c0 t xa_delete_node
-ffffffff81917950 t xa_destroy
-ffffffff81917af0 t cmdline_find_option_bool
-ffffffff81917ba0 t cmdline_find_option
-ffffffff81917ca0 t enable_copy_mc_fragile
-ffffffff81917cb0 t copy_mc_to_kernel
-ffffffff81917ce0 t copy_mc_to_user
-ffffffff81917d10 t x86_family
-ffffffff81917d40 t x86_model
-ffffffff81917d80 t x86_stepping
-ffffffff81917d90 t csum_partial
-ffffffff81917ec0 t ip_compute_csum
-ffffffff81917ef0 t csum_and_copy_from_user
-ffffffff81917f50 t csum_and_copy_to_user
-ffffffff81917fb0 t csum_partial_copy_nocheck
-ffffffff81917fc0 t csum_ipv6_magic
-ffffffff81918020 t delay_loop
-ffffffff81918050 t delay_tsc
-ffffffff81918140 t delay_halt_tpause
-ffffffff81918160 t delay_halt
-ffffffff819181c0 t use_mwaitx_delay
-ffffffff819181f0 t delay_halt_mwaitx
-ffffffff81918230 t read_current_timer
-ffffffff81918270 t __delay
-ffffffff81918290 t __const_udelay
-ffffffff819182e0 t __udelay
-ffffffff81918300 t __ndelay
-ffffffff81918320 t inat_get_opcode_attribute
-ffffffff81918340 t inat_get_last_prefix_id
-ffffffff81918360 t inat_get_escape_attribute
-ffffffff819183c0 t inat_get_group_attribute
-ffffffff81918440 t inat_get_avx_attribute
-ffffffff819184a0 t insn_has_rep_prefix
-ffffffff81918500 t pt_regs_offset
-ffffffff81918520 t insn_get_seg_base
-ffffffff81918770 t insn_get_code_seg_params
-ffffffff81918890 t insn_get_modrm_rm_off
-ffffffff81918910 t get_reg_offset
-ffffffff819189f0 t insn_get_modrm_reg_off
-ffffffff81918a60 t insn_get_modrm_reg_ptr
-ffffffff81918ad0 t insn_get_addr_ref
-ffffffff81918db0 t insn_get_effective_ip
-ffffffff81918e10 t insn_fetch_from_user
-ffffffff81918e70 t insn_fetch_from_user_inatomic
-ffffffff81918ee0 t insn_decode_from_regs
-ffffffff81918f50 t insn_decode_mmio
-ffffffff81919100 t get_eff_addr_reg
-ffffffff819191f0 t get_seg_base_limit
-ffffffff81919730 t get_eff_addr_sib
-ffffffff81919850 t get_eff_addr_modrm
-ffffffff81919970 t insn_init
-ffffffff81919a10 t insn_get_prefixes
-ffffffff81919d40 t insn_get_opcode
-ffffffff81919f00 t insn_get_modrm
-ffffffff8191a010 t insn_rip_relative
-ffffffff8191a060 t insn_get_sib
-ffffffff8191a0e0 t insn_get_displacement
-ffffffff8191a230 t insn_get_immediate
-ffffffff8191a490 t __get_immptr
-ffffffff8191a510 t __get_immv32
-ffffffff8191a570 t __get_immv
-ffffffff8191a610 t insn_get_length
-ffffffff8191a650 t insn_decode
-ffffffff8191a7a0 t kaslr_get_random_long
-ffffffff8191a930 t num_digits
-ffffffff8191a970 t copy_from_user_nmi
-ffffffff8191a9e0 t arch_wb_cache_pmem
-ffffffff8191aa20 t __copy_user_flushcache
-ffffffff8191ab20 t __memcpy_flushcache
-ffffffff8191ac60 t memcpy_page_flushcache
-ffffffff8191ace8 T __noinstr_text_start
-ffffffff8191acf0 T entry_ibpb
-ffffffff8191ad10 T native_save_fl
-ffffffff8191ad20 T __memcpy
-ffffffff8191ad20 W memcpy
-ffffffff8191ad40 t memcpy_erms
-ffffffff8191ad50 t memcpy_orig
-ffffffff8191ae80 t do_syscall_64
-ffffffff8191af10 t __rdgsbase_inactive
-ffffffff8191af40 t __wrgsbase_inactive
-ffffffff8191af70 t exc_divide_error
-ffffffff8191b010 t exc_overflow
-ffffffff8191b0a0 t exc_invalid_op
-ffffffff8191b0f0 t handle_bug
-ffffffff8191b160 t exc_coproc_segment_overrun
-ffffffff8191b1f0 t exc_invalid_tss
-ffffffff8191b290 t exc_segment_not_present
-ffffffff8191b330 t exc_stack_segment
-ffffffff8191b3d0 t exc_alignment_check
-ffffffff8191b480 t exc_double_fault
-ffffffff8191b630 t exc_bounds
-ffffffff8191b6e0 t exc_general_protection
-ffffffff8191bbc0 t exc_int3
-ffffffff8191bc40 t sync_regs
-ffffffff8191bc80 t fixup_bad_iret
-ffffffff8191bd40 t exc_debug
-ffffffff8191bec0 t noist_exc_debug
-ffffffff8191bfe0 t exc_coprocessor_error
-ffffffff8191c020 t exc_simd_coprocessor_error
-ffffffff8191c060 t exc_spurious_interrupt_bug
-ffffffff8191c080 t exc_device_not_available
-ffffffff8191c190 t common_interrupt
-ffffffff8191c260 t sysvec_x86_platform_ipi
-ffffffff8191c320 t sysvec_kvm_posted_intr_ipi
-ffffffff8191c380 t sysvec_kvm_posted_intr_wakeup_ipi
-ffffffff8191c430 t sysvec_kvm_posted_intr_nested_ipi
-ffffffff8191c490 t sysvec_thermal
-ffffffff8191c540 t get_stack_info_noinstr
-ffffffff8191c690 t in_task_stack
-ffffffff8191c6d0 t in_entry_stack
-ffffffff8191c730 t exc_nmi
-ffffffff8191c860 t default_do_nmi
-ffffffff8191c9d0 t sysvec_irq_work
-ffffffff8191ca80 t poke_int3_handler
-ffffffff8191cc60 t fpu_idle_fpregs
-ffffffff8191cca0 t sysvec_reboot
-ffffffff8191cd50 t sysvec_reschedule_ipi
-ffffffff8191ce60 t sysvec_call_function
-ffffffff8191cf10 t sysvec_call_function_single
-ffffffff8191cfc0 t sysvec_apic_timer_interrupt
-ffffffff8191d080 t spurious_interrupt
-ffffffff8191d150 t sysvec_spurious_apic_interrupt
-ffffffff8191d200 t sysvec_error_interrupt
-ffffffff8191d2b0 t sysvec_irq_move_cleanup
-ffffffff8191d360 t kvm_read_and_reset_apf_flags
-ffffffff8191d3c0 t __kvm_handle_async_pf
-ffffffff8191d470 t sysvec_kvm_asyncpf_interrupt
-ffffffff8191d530 t paravirt_BUG
-ffffffff8191d540 t exc_page_fault
-ffffffff8191db70 t get_cpu_entry_area
-ffffffff8191dba0 t __stack_chk_fail
-ffffffff8191dbc0 t enter_from_user_mode
-ffffffff8191dbd0 t syscall_enter_from_user_mode
-ffffffff8191dd40 t syscall_enter_from_user_mode_prepare
-ffffffff8191dd50 t exit_to_user_mode
-ffffffff8191dd70 t syscall_exit_to_user_mode
-ffffffff8191deb0 t irqentry_enter_from_user_mode
-ffffffff8191dec0 t irqentry_exit_to_user_mode
-ffffffff8191dee0 t irqentry_enter
-ffffffff8191df20 t irqentry_exit
-ffffffff8191df70 t irqentry_nmi_enter
-ffffffff8191dfa0 t irqentry_nmi_exit
-ffffffff8191dfd0 t __ktime_get_real_seconds
-ffffffff8191dff0 t ct_nmi_exit
-ffffffff8191e180 t ct_kernel_exit_state
-ffffffff8191e1b0 t ct_nmi_enter
-ffffffff8191e2e0 t ct_kernel_enter_state
-ffffffff8191e310 t ct_idle_enter
-ffffffff8191e320 t ct_kernel_exit
-ffffffff8191e420 t ct_idle_exit
-ffffffff8191e480 t ct_kernel_enter
-ffffffff8191e570 t ct_irq_enter
-ffffffff8191e580 t ct_irq_exit
-ffffffff8191e590 t debug_smp_processor_id
-ffffffff8191e5b0 t check_preemption_disabled
-ffffffff8191e6d0 t __this_cpu_preempt_check
-ffffffff8191e6ea T __noinstr_text_end
-ffffffff8191e6f0 t rest_init
-ffffffff8191e7b0 t kernel_init
-ffffffff8191e950 t jump_label_transform
-ffffffff8191e9b0 t text_poke_queue
-ffffffff8191ea80 t text_poke_bp
-ffffffff8191eb10 t __static_call_transform
-ffffffff8191ece0 t check_enable_amd_mmconf_dmi
-ffffffff8191ed00 t alloc_low_pages
-ffffffff8191ee60 t init_memory_mapping
-ffffffff8191f080 t free_initmem
-ffffffff8191f1a0 t adjust_range_page_size_mask
-ffffffff8191f290 t vmemmap_free
-ffffffff8191f2b0 t arch_remove_memory
-ffffffff8191f2f0 t spp_getpage
-ffffffff8191f370 t _cpu_down
-ffffffff8191f700 t __irq_alloc_descs
-ffffffff8191f990 t profile_init
-ffffffff8191fa80 t create_proc_profile
-ffffffff8191fb90 t audit_net_exit
-ffffffff8191fbd0 t build_all_zonelists
-ffffffff8191fcf0 t free_area_init_core_hotplug
-ffffffff8191ff40 t __add_pages
-ffffffff81920060 t remove_pfn_range_from_zone
-ffffffff81920380 t move_pfn_range_to_zone
-ffffffff819204a0 t online_pages
-ffffffff819206b0 t add_memory_resource
-ffffffff81920950 t __add_memory
-ffffffff819209c0 t offline_pages
-ffffffff81921240 t try_remove_memory
-ffffffff81921450 t hotadd_init_pgdat
-ffffffff819214c0 t sparse_index_alloc
-ffffffff81921530 t __earlyonly_bootmem_alloc
-ffffffff81921550 t mem_cgroup_css_alloc
-ffffffff81921b20 t proc_net_ns_exit
-ffffffff81921b50 t acpi_os_map_iomem
-ffffffff81921d10 t acpi_os_map_memory
-ffffffff81921d20 t acpi_os_unmap_iomem
-ffffffff81921e50 t acpi_os_unmap_memory
-ffffffff81921e60 t efi_mem_reserve_persistent
-ffffffff81922190 t efi_earlycon_map
-ffffffff81922200 t efi_earlycon_unmap
-ffffffff81922230 t sock_inuse_exit_net
-ffffffff81922250 t proto_exit_net
-ffffffff81922270 t net_ns_net_exit
-ffffffff819222a0 t sysctl_core_net_exit
-ffffffff819222e0 t netdev_exit
-ffffffff81922330 t default_device_exit_batch
-ffffffff819224d0 t default_device_exit_net
-ffffffff819226c0 t rtnetlink_net_exit
-ffffffff819226f0 t diag_net_exit
-ffffffff81922720 t fib_notifier_net_exit
-ffffffff81922760 t dev_proc_net_exit
-ffffffff819227b0 t dev_mc_net_exit
-ffffffff819227d0 t fib_rules_net_exit
-ffffffff81922800 t netlink_net_exit
-ffffffff81922820 t genl_pernet_exit
-ffffffff81922850 t ip_rt_do_proc_exit
-ffffffff81922890 t sysctl_route_net_exit
-ffffffff819228d0 t ipv4_inetpeer_exit
-ffffffff81922900 t ipv4_frags_pre_exit_net
-ffffffff81922920 t ipv4_frags_exit_net
-ffffffff81922950 t ip4_frags_ns_ctl_unregister
-ffffffff81922980 t tcp4_proc_exit_net
-ffffffff819229a0 t tcp_sk_exit
-ffffffff819229b0 t tcp_sk_exit_batch
-ffffffff81922a30 t tcp_net_metrics_exit_batch
-ffffffff81922ad0 t raw_exit_net
-ffffffff81922af0 t udp4_proc_exit_net
-ffffffff81922b10 t udplite4_proc_exit_net
-ffffffff81922b30 t arp_net_exit
-ffffffff81922b50 t devinet_exit_net
-ffffffff81922c20 t ipv4_mib_exit_net
-ffffffff81922c90 t igmp_net_exit
-ffffffff81922ce0 t fib_net_exit
-ffffffff81922d10 t fib_net_exit_batch
-ffffffff81922d50 t fib_proc_exit
-ffffffff81922da0 t fib4_notifier_exit
-ffffffff81922dc0 t ping_v4_proc_exit_net
-ffffffff81922de0 t nexthop_net_exit_batch
-ffffffff81922e70 t ipv4_sysctl_exit_net
-ffffffff81922eb0 t ip_proc_exit_net
-ffffffff81922f00 t fib4_rules_exit
-ffffffff81922f20 t ipip_exit_batch_net
-ffffffff81922f40 t ipgre_tap_exit_batch_net
-ffffffff81922f60 t ipgre_exit_batch_net
-ffffffff81922f80 t erspan_exit_batch_net
-ffffffff81922fa0 t vti_exit_batch_net
-ffffffff81922fc0 t xfrm4_net_exit
-ffffffff81922ff0 t xfrm4_net_sysctl_exit
-ffffffff81923010 t xfrm_net_exit
-ffffffff81923060 t xfrm_sysctl_fini
-ffffffff81923090 t xfrm_user_net_pre_exit
-ffffffff819230b0 t xfrm_user_net_exit
-ffffffff819230f0 t xfrmi_exit_batch_net
-ffffffff81923210 t unix_net_exit
-ffffffff81923260 t inet6_net_exit
-ffffffff819232f0 t if6_proc_net_exit
-ffffffff81923310 t addrconf_exit_net
-ffffffff81923440 t ip6addrlbl_net_exit
-ffffffff819234e0 t ipv6_inetpeer_exit
-ffffffff81923510 t ip6_route_net_exit
-ffffffff81923560 t ip6_route_net_exit_late
-ffffffff819235a0 t ndisc_net_exit
-ffffffff819235d0 t udplite6_proc_exit_net
-ffffffff819235f0 t raw6_exit_net
-ffffffff81923610 t igmp6_net_exit
-ffffffff81923660 t igmp6_proc_exit
-ffffffff819236a0 t ipv6_frags_pre_exit_net
-ffffffff819236c0 t ipv6_frags_exit_net
-ffffffff819236f0 t ip6_frags_ns_sysctl_unregister
-ffffffff81923710 t tcpv6_net_exit
-ffffffff81923740 t tcpv6_net_exit_batch
-ffffffff81923760 t ping_v6_proc_exit_net
-ffffffff81923780 t ip6_flowlabel_net_exit
-ffffffff819237a0 t ip6_fl_purge
-ffffffff81923880 t ip6_flowlabel_proc_fini
-ffffffff819238a0 t seg6_net_exit
-ffffffff819238d0 t fib6_notifier_exit
-ffffffff819238f0 t ioam6_net_exit
-ffffffff81923940 t ipv6_sysctl_net_exit
-ffffffff819239c0 t xfrm6_net_exit
-ffffffff819239f0 t xfrm6_net_sysctl_exit
-ffffffff81923a10 t fib6_rules_net_exit_batch
-ffffffff81923a60 t ipv6_proc_exit_net
-ffffffff81923ab0 t xfrm6_tunnel_net_exit
-ffffffff81923b50 t vti6_exit_batch_net
-ffffffff81923c10 t vti6_destroy_tunnels
-ffffffff81923c90 t sit_exit_batch_net
-ffffffff81923d30 t sit_destroy_tunnels
-ffffffff81923da0 t ip6_tnl_exit_batch_net
-ffffffff81923e40 t ip6_tnl_destroy_tunnels
-ffffffff81923eb0 t ip6gre_exit_batch_net
-ffffffff81923fb0 t packet_net_exit
-ffffffff81923ff0 t pfkey_net_exit
-ffffffff81924040 t pfkey_exit_proc
-ffffffff81924060 t sysctl_net_exit
-ffffffff81924080 t pci_mmcfg_check_reserved
-ffffffff81924120 t is_mmconf_reserved
-ffffffff819242b0 t is_mmconf_reserved.15
-ffffffff81924430 t split_mem_range
-ffffffff8192460e t save_mr
-ffffffff81924650 t kernel_physical_mapping_init
-ffffffff81924666 t __kernel_physical_mapping_init
-ffffffff81924986 t kernel_physical_mapping_change
-ffffffff819249aa t remove_pagetable
-ffffffff81924a7a t vmemmap_populate
-ffffffff81924ac9 t vmemmap_populate_hugepages
-ffffffff81924d95 t vmemmap_populate_print_last
-ffffffff81924dc4 t phys_p4d_init
-ffffffff819250a2 t phys_pud_init
-ffffffff81925452 t phys_pmd_init
-ffffffff81925813 t phys_pte_init
-ffffffff81925995 t remove_p4d_table
-ffffffff81925aaa t remove_pud_table
-ffffffff81925bed t free_pud_table
-ffffffff81925c85 t remove_pmd_table
-ffffffff81925e9f t free_pmd_table
-ffffffff81925f37 t vmemmap_pmd_is_unused
-ffffffff81925fb9 t remove_pte_table
-ffffffff819260d8 t free_pte_table
-ffffffff81926170 t free_pagetable
-ffffffff81926210 t vmemmap_use_new_sub_pmd
-ffffffff819262aa t init_trampoline_kaslr
-ffffffff8192645e t mm_compute_batch_notifier
-ffffffff81926485 t init_reserve_notifier
-ffffffff819264b7 t reserve_bootmem_region
-ffffffff8192658e t alloc_pages_exact_nid
-ffffffff81926682 t memmap_init_range
-ffffffff81926798 t overlap_memmap_init
-ffffffff81926840 t setup_zone_pageset
-ffffffff819268e4 t init_currently_empty_zone
-ffffffff819269ac t pgdat_init_internals
-ffffffff81926a94 t init_per_zone_wmark_min
-ffffffff81926aba t __shuffle_zone
-ffffffff81926ccf t shuffle_valid_page
-ffffffff81926d27 t __shuffle_free_memory
-ffffffff81926d61 t shuffle_param_set
-ffffffff81926da6 t memblock_overlaps_region
-ffffffff81926e15 t memblock_add_node
-ffffffff81926eb2 t memblock_add_range
-ffffffff8192706e t memblock_add
-ffffffff819270fc t memblock_remove
-ffffffff81927188 t memblock_remove_range
-ffffffff81927203 t memblock_free
-ffffffff81927244 t memblock_phys_free
-ffffffff819272d0 t memblock_reserve
-ffffffff8192735e t memblock_mark_hotplug
-ffffffff81927378 t memblock_setclr_flag
-ffffffff81927430 t memblock_clear_hotplug
-ffffffff81927447 t memblock_mark_mirror
-ffffffff81927475 t memblock_mark_nomap
-ffffffff8192748f t memblock_clear_nomap
-ffffffff819274a6 t __next_mem_range_rev
-ffffffff819276fd t __next_mem_pfn_range
-ffffffff8192777e t memblock_set_node
-ffffffff8192778b t memblock_find_in_range_node
-ffffffff819277e4 t memblock_phys_mem_size
-ffffffff819277f6 t memblock_reserved_size
-ffffffff81927808 t memblock_start_of_DRAM
-ffffffff8192781d t memblock_end_of_DRAM
-ffffffff81927846 t memblock_isolate_range
-ffffffff81927994 t memblock_remove_region
-ffffffff81927a0d t memblock_is_reserved
-ffffffff81927a55 t memblock_is_memory
-ffffffff81927a9d t memblock_is_map_memory
-ffffffff81927af1 t memblock_search_pfn_nid
-ffffffff81927b6f t memblock_is_region_memory
-ffffffff81927bce t memblock_is_region_reserved
-ffffffff81927beb t memblock_trim_memory
-ffffffff81927caf t memblock_set_current_limit
-ffffffff81927cc1 t memblock_get_current_limit
-ffffffff81927cd3 t memblock_dump_all
-ffffffff81927cee t __memblock_dump_all
-ffffffff81927d37 t memblock_insert_region
-ffffffff81927da8 t memblock_double_array
-ffffffff81928047 t memblock_merge_regions
-ffffffff819280fe t memblock_find_in_range
-ffffffff819281ce t __memblock_find_range_bottom_up
-ffffffff819282e8 t __memblock_find_range_top_down
-ffffffff819283fd t memblock_dump
-ffffffff81928505 t sparse_buffer_alloc
-ffffffff81928565 t sparse_buffer_free
-ffffffff8192858f t sparse_add_section
-ffffffff819286b5 t section_activate
-ffffffff81928890 t mminit_validate_memmodel_limits
-ffffffff81928917 t vmemmap_alloc_block
-ffffffff81928a08 t vmemmap_alloc_block_buf
-ffffffff81928a4b t altmap_alloc_block_buf
-ffffffff81928b1f t vmemmap_verify
-ffffffff81928b55 t vmemmap_pte_populate
-ffffffff81928c85 t vmemmap_pmd_populate
-ffffffff81928d38 t vmemmap_pud_populate
-ffffffff81928ddb t vmemmap_p4d_populate
-ffffffff81928eae t vmemmap_pgd_populate
-ffffffff81928f6c t vmemmap_populate_basepages
-ffffffff81928fc2 t __populate_section_memmap
-ffffffff81929031 t vmemmap_populate_compound_pages
-ffffffff819291f3 t vmemmap_populate_address
-ffffffff819292ad t compound_section_tail_page
-ffffffff8192937b t init_section_page_ext
-ffffffff81929437 t page_ext_callback
-ffffffff8192948a t pgdat_page_ext_init
-ffffffff81929495 t alloc_page_ext
-ffffffff819294c9 t online_page_ext
-ffffffff81929552 t offline_page_ext
-ffffffff81929614 t firmware_map_add_hotplug
-ffffffff81929714 t firmware_map_remove
-ffffffff819297bd t firmware_map_find_entry_in_list
-ffffffff8192981d t release_firmware_map_entry
-ffffffff819298d0 T __sched_text_start
-ffffffff819298d0 t __schedule
-ffffffff8192a0c0 t schedule
-ffffffff8192a180 t schedule_idle
-ffffffff8192a1c0 t schedule_preempt_disabled
-ffffffff8192a1f0 t preempt_schedule
-ffffffff8192a250 t preempt_schedule_common
-ffffffff8192a300 t preempt_schedule_notrace
-ffffffff8192a390 t preempt_schedule_irq
-ffffffff8192a430 t __cond_resched
-ffffffff8192a4f0 t yield
-ffffffff8192a510 t yield_to
-ffffffff8192a6d0 t io_schedule_timeout
-ffffffff8192a740 t io_schedule
-ffffffff8192a7a0 t wait_for_completion
-ffffffff8192a7c0 t wait_for_common
-ffffffff8192a980 t wait_for_completion_timeout
-ffffffff8192a9a0 t wait_for_completion_io
-ffffffff8192a9c0 t wait_for_common_io
-ffffffff8192ab20 t wait_for_completion_io_timeout
-ffffffff8192ab30 t wait_for_completion_interruptible
-ffffffff8192ab70 t wait_for_completion_interruptible_timeout
-ffffffff8192ab90 t wait_for_completion_killable
-ffffffff8192abd0 t wait_for_completion_state
-ffffffff8192ac10 t wait_for_completion_killable_timeout
-ffffffff8192ac30 t __wait_on_bit
-ffffffff8192ad90 t out_of_line_wait_on_bit
-ffffffff8192ae40 t out_of_line_wait_on_bit_timeout
-ffffffff8192aef0 t __wait_on_bit_lock
-ffffffff8192b0c0 t out_of_line_wait_on_bit_lock
-ffffffff8192b170 t bit_wait
-ffffffff8192b1d0 t bit_wait_io
-ffffffff8192b230 t bit_wait_timeout
-ffffffff8192b2a0 t bit_wait_io_timeout
-ffffffff8192b310 t mutex_lock
-ffffffff8192b350 t __mutex_lock_slowpath
-ffffffff8192b370 t mutex_unlock
-ffffffff8192b3a0 t __mutex_unlock_slowpath
-ffffffff8192b4c0 t ww_mutex_unlock
-ffffffff8192b510 t mutex_trylock
-ffffffff8192b560 t mutex_lock_interruptible
-ffffffff8192b5a0 t __mutex_lock_interruptible_slowpath
-ffffffff8192b5c0 t mutex_lock_killable
-ffffffff8192b600 t __mutex_lock_killable_slowpath
-ffffffff8192b620 t mutex_lock_io
-ffffffff8192b670 t ww_mutex_lock
-ffffffff8192b700 t __ww_mutex_lock_slowpath
-ffffffff8192b720 t ww_mutex_lock_interruptible
-ffffffff8192b7b0 t __ww_mutex_lock_interruptible_slowpath
-ffffffff8192b7d0 t __mutex_lock
-ffffffff8192be70 t __ww_mutex_lock
-ffffffff8192c840 t down
-ffffffff8192c890 t __down
-ffffffff8192c8b0 t down_interruptible
-ffffffff8192c910 t __down_interruptible
-ffffffff8192c930 t down_killable
-ffffffff8192c990 t __down_killable
-ffffffff8192c9b0 t down_trylock
-ffffffff8192c9f0 t down_timeout
-ffffffff8192ca50 t __down_timeout
-ffffffff8192ca70 t up
-ffffffff8192cac0 t __up
-ffffffff8192cb20 t __down_common
-ffffffff8192cd20 t down_read
-ffffffff8192d0e0 t down_read_interruptible
-ffffffff8192d620 t down_read_killable
-ffffffff8192db50 t down_write
-ffffffff8192dbd0 t down_write_killable
-ffffffff8192dc60 t rwsem_down_write_slowpath
-ffffffff8192e320 t __percpu_down_read
-ffffffff8192e450 t percpu_down_write
-ffffffff8192e5e0 t rt_mutex_lock
-ffffffff8192e630 t rt_mutex_lock_interruptible
-ffffffff8192e680 t rt_mutex_lock_killable
-ffffffff8192e6d0 t rt_mutex_trylock
-ffffffff8192e710 t rt_mutex_unlock
-ffffffff8192e740 t rt_mutex_futex_trylock
-ffffffff8192e7b0 t rt_mutex_slowtrylock
-ffffffff8192e820 t __rt_mutex_futex_trylock
-ffffffff8192e860 t __rt_mutex_futex_unlock
-ffffffff8192e8a0 t mark_wakeup_next_waiter
-ffffffff8192e990 t rt_mutex_futex_unlock
-ffffffff8192ea60 t rt_mutex_postunlock
-ffffffff8192eaa0 t __rt_mutex_init
-ffffffff8192ead0 t rt_mutex_init_proxy_locked
-ffffffff8192eb10 t rt_mutex_proxy_unlock
-ffffffff8192eb30 t __rt_mutex_start_proxy_lock
-ffffffff8192eb90 t try_to_take_rt_mutex
-ffffffff8192ed90 t task_blocks_on_rt_mutex
-ffffffff8192f0e0 t rt_mutex_start_proxy_lock
-ffffffff8192f170 t remove_waiter
-ffffffff8192f3e0 t rt_mutex_wait_proxy_lock
-ffffffff8192f450 t rt_mutex_slowlock_block
-ffffffff8192f5b0 t rt_mutex_cleanup_proxy_lock
-ffffffff8192f630 t rt_mutex_adjust_pi
-ffffffff8192f6f0 t rt_mutex_adjust_prio_chain
-ffffffff8192ff00 t rt_mutex_slowlock
-ffffffff81930130 t rt_mutex_slowunlock
-ffffffff81930230 t console_conditional_schedule
-ffffffff81930250 t schedule_timeout
-ffffffff819303f0 t schedule_timeout_interruptible
-ffffffff81930410 t schedule_timeout_killable
-ffffffff81930430 t schedule_timeout_uninterruptible
-ffffffff81930450 t schedule_timeout_idle
-ffffffff81930470 t usleep_range_state
-ffffffff81930510 t do_nanosleep
-ffffffff81930640 t hrtimer_nanosleep_restart
-ffffffff819306f0 t schedule_hrtimeout_range_clock
-ffffffff81930860 t schedule_hrtimeout_range
-ffffffff81930880 t schedule_hrtimeout
-ffffffff819308a0 t alarm_timer_nsleep_restart
-ffffffff819309c0 t ldsem_down_read
-ffffffff81930c50 t ldsem_down_write
-ffffffff81930e57 T __sched_text_end
-ffffffff81930e58 T __cpuidle_text_start
-ffffffff81930e60 t default_idle
-ffffffff81930e80 t mwait_idle
-ffffffff81930ef0 t acpi_processor_ffh_cstate_enter
-ffffffff81930fc0 t default_idle_call
-ffffffff819310a0 t cpu_idle_poll
-ffffffff81931190 t acpi_idle_enter
-ffffffff819312e0 t acpi_idle_enter_s2idle
-ffffffff819313e0 t acpi_idle_enter_bm
-ffffffff81931630 t poll_idle
-ffffffff819316f9 T __cpuidle_text_end
-ffffffff81931700 T __lock_text_start
-ffffffff81931700 t _raw_spin_trylock
-ffffffff81931760 t _raw_spin_trylock_bh
-ffffffff819317b0 t _raw_spin_lock
-ffffffff819317f0 t _raw_spin_lock_irqsave
-ffffffff81931870 t _raw_spin_lock_irq
-ffffffff819318b0 t _raw_spin_lock_bh
-ffffffff819318f0 t _raw_spin_unlock
-ffffffff81931920 t _raw_spin_unlock_irqrestore
-ffffffff81931960 t _raw_spin_unlock_irq
-ffffffff81931990 t _raw_spin_unlock_bh
-ffffffff819319b0 t _raw_read_trylock
-ffffffff81931a20 t _raw_read_lock
-ffffffff81931a60 t _raw_read_lock_irqsave
-ffffffff81931ae0 t _raw_read_lock_irq
-ffffffff81931b20 t _raw_read_lock_bh
-ffffffff81931b60 t _raw_read_unlock
-ffffffff81931ba0 t _raw_read_unlock_irqrestore
-ffffffff81931be0 t _raw_read_unlock_irq
-ffffffff81931c20 t _raw_read_unlock_bh
-ffffffff81931c50 t _raw_write_trylock
-ffffffff81931cb0 t _raw_write_lock
-ffffffff81931cf0 t _raw_write_lock_nested
-ffffffff81931d30 t _raw_write_lock_irqsave
-ffffffff81931db0 t _raw_write_lock_irq
-ffffffff81931df0 t _raw_write_lock_bh
-ffffffff81931e30 t _raw_write_unlock
-ffffffff81931e60 t _raw_write_unlock_irqrestore
-ffffffff81931ea0 t _raw_write_unlock_irq
-ffffffff81931ed0 t _raw_write_unlock_bh
-ffffffff81931ef0 t queued_spin_lock_slowpath
-ffffffff819321b0 t queued_read_lock_slowpath
-ffffffff819322c0 t queued_write_lock_slowpath
-ffffffff819323e1 T __lock_text_end
-ffffffff819323e8 T __kprobes_text_end
-ffffffff819323e8 T __kprobes_text_start
+ffffffff8105cea0 t do_one_initcall
+ffffffff8105d160 t trace_raw_output_initcall_level
+ffffffff8105d1c0 t trace_raw_output_initcall_start
+ffffffff8105d210 t trace_raw_output_initcall_finish
+ffffffff8105d270 t trace_initcall_start_cb
+ffffffff8105d2b0 t trace_initcall_finish_cb
+ffffffff8105d310 t run_init_process
+ffffffff8105d3c0 t name_to_dev_t
+ffffffff8105dbf0 t rootfs_init_fs_context
+ffffffff8105dc20 t match_dev_by_uuid
+ffffffff8105dc60 t match_dev_by_label
+ffffffff8105dca0 t wait_for_initramfs
+ffffffff8105dcf0 t panic_show_mem
+ffffffff8105dd70 t show_mem
+ffffffff8105dd90 t calibration_delay_done
+ffffffff8105dda0 t calibrate_delay
+ffffffff8105e520 t __x64_sys_ni_syscall
+ffffffff8105e540 t arch_get_vdso_data
+ffffffff8105e560 t map_vdso_once
+ffffffff8105e6e0 t map_vdso
+ffffffff8105e870 t arch_setup_additional_pages
+ffffffff8105e920 t arch_syscall_is_vdso_sigreturn
+ffffffff8105e930 t vdso_fault
+ffffffff8105e9c0 t vdso_mremap
+ffffffff8105e9f0 t vvar_fault
+ffffffff8105eac0 t fixup_vdso_exception
+ffffffff8105eb70 t __traceiter_emulate_vsyscall
+ffffffff8105ebc0 t trace_event_raw_event_emulate_vsyscall
+ffffffff8105ec80 t perf_trace_emulate_vsyscall
+ffffffff8105ed70 t emulate_vsyscall
+ffffffff8105f210 t warn_bad_vsyscall
+ffffffff8105f2a0 t write_ok_or_segv
+ffffffff8105f300 t get_gate_vma
+ffffffff8105f320 t in_gate_area
+ffffffff8105f350 t in_gate_area_no_mm
+ffffffff8105f380 t trace_raw_output_emulate_vsyscall
+ffffffff8105f3d0 t gate_vma_name
+ffffffff8105f3f0 t x86_perf_event_update
+ffffffff8105f4a0 t check_hw_exists
+ffffffff8105f820 t hw_perf_lbr_event_destroy
+ffffffff8105f850 t hw_perf_event_destroy
+ffffffff8105f870 t x86_del_exclusive
+ffffffff8105f8b0 t x86_reserve_hardware
+ffffffff8105fae0 t x86_release_hardware
+ffffffff8105fc60 t x86_add_exclusive
+ffffffff8105fd20 t x86_setup_perfctr
+ffffffff81060010 t x86_pmu_max_precise
+ffffffff81060060 t x86_pmu_hw_config
+ffffffff81060270 t x86_pmu_disable_all
+ffffffff81060420 t native_read_msr
+ffffffff81060450 t native_read_msr
+ffffffff81060480 t native_read_msr
+ffffffff810604c0 t native_read_msr
+ffffffff810604f0 t perf_guest_get_msrs
+ffffffff81060500 t x86_pmu_enable_all
+ffffffff81060580 t __x86_pmu_enable_event
+ffffffff81060660 t __x86_pmu_enable_event
+ffffffff81060740 t x86_get_pmu
+ffffffff81060780 t perf_assign_events
+ffffffff81060b50 t x86_schedule_events
+ffffffff81060e20 t x86_perf_rdpmc_index
+ffffffff81060e40 t x86_perf_event_set_period
+ffffffff81061010 t x86_pmu_enable_event
+ffffffff81061050 t perf_event_print_debug
+ffffffff810614c0 t x86_pmu_stop
+ffffffff81061580 t x86_pmu_handle_irq
+ffffffff810617a0 t perf_events_lapic_init
+ffffffff810617e0 t events_sysfs_show
+ffffffff81061850 t events_ht_sysfs_show
+ffffffff81061880 t events_hybrid_sysfs_show
+ffffffff81061990 t x86_event_sysfs_show
+ffffffff81061a90 t x86_pmu_show_pmu_cap
+ffffffff81061b40 t x86_pmu_update_cpu_context
+ffffffff81061b70 t perf_clear_dirty_counters
+ffffffff81061ce0 t perf_check_microcode
+ffffffff81061d00 t arch_perf_update_userpage
+ffffffff81061e00 t perf_callchain_kernel
+ffffffff81061f80 t perf_callchain_user
+ffffffff81062060 t perf_instruction_pointer
+ffffffff81062100 t perf_misc_flags
+ffffffff81062130 t perf_get_x86_pmu_capability
+ffffffff810621d0 t perf_get_hw_event_config
+ffffffff81062210 t perf_event_nmi_handler
+ffffffff81062260 t _x86_pmu_read
+ffffffff81062270 t x86_pmu_prepare_cpu
+ffffffff810622c0 t x86_pmu_dead_cpu
+ffffffff810622e0 t x86_pmu_starting_cpu
+ffffffff81062300 t x86_pmu_dying_cpu
+ffffffff81062320 t x86_pmu_online_cpu
+ffffffff81062380 t is_visible
+ffffffff810623c0 t x86_pmu_enable
+ffffffff81062750 t x86_pmu_disable
+ffffffff810627a0 t x86_pmu_event_init
+ffffffff81062ae0 t x86_pmu_event_mapped
+ffffffff81062b30 t x86_pmu_event_unmapped
+ffffffff81062b80 t x86_pmu_add
+ffffffff81062ca0 t x86_pmu_del
+ffffffff81062ec0 t x86_pmu_start
+ffffffff81062f70 t x86_pmu_read
+ffffffff81062f80 t x86_pmu_start_txn
+ffffffff81063020 t x86_pmu_commit_txn
+ffffffff81063130 t x86_pmu_cancel_txn
+ffffffff81063240 t x86_pmu_event_idx
+ffffffff81063280 t x86_pmu_sched_task
+ffffffff81063290 t x86_pmu_swap_task_ctx
+ffffffff810632a0 t x86_pmu_aux_output_match
+ffffffff810632d0 t x86_pmu_filter_match
+ffffffff81063300 t x86_pmu_check_period
+ffffffff810633a0 t get_attr_rdpmc
+ffffffff810633d0 t set_attr_rdpmc
+ffffffff810634e0 t max_precise_show
+ffffffff81063540 t allocate_fake_cpuc
+ffffffff81063600 t collect_events
+ffffffff81063960 t perf_msr_probe
+ffffffff81063aa0 t not_visible
+ffffffff81063ab0 t branch_type
+ffffffff81063ad0 t get_branch_type.llvm.7852887872124530445
+ffffffff81063d70 t branch_type_fused
+ffffffff81063d90 t common_branch_type
+ffffffff81063de0 t decode_branch_type
+ffffffff81063f60 t cleanup_rapl_pmus
+ffffffff81063fb0 t rapl_cpu_online
+ffffffff810640e0 t rapl_cpu_offline
+ffffffff810641c0 t test_msr
+ffffffff810641e0 t test_msr
+ffffffff81064200 t rapl_pmu_event_init
+ffffffff81064300 t rapl_pmu_event_add
+ffffffff81064360 t rapl_pmu_event_del
+ffffffff81064380 t rapl_pmu_event_start
+ffffffff810643c0 t rapl_pmu_event_stop
+ffffffff810644a0 t rapl_pmu_event_read
+ffffffff810644b0 t rapl_get_attr_cpumask
+ffffffff810644e0 t event_show
+ffffffff81064510 t event_show
+ffffffff81064550 t event_show
+ffffffff81064580 t event_show
+ffffffff810645b0 t event_show
+ffffffff810645e0 t event_show
+ffffffff81064610 t event_show
+ffffffff81064640 t event_show
+ffffffff81064670 t event_show
+ffffffff810646a0 t event_show
+ffffffff810646d0 t __rapl_pmu_event_start
+ffffffff81064790 t rapl_event_update
+ffffffff81064840 t rapl_hrtimer_handle
+ffffffff810648e0 t amd_pmu_test_overflow_topbit
+ffffffff81064940 t amd_pmu_enable_virt
+ffffffff81064980 t amd_pmu_reload_virt
+ffffffff81064a90 t amd_pmu_disable_virt
+ffffffff81064ad0 t amd_pmu_handle_irq
+ffffffff81064b60 t amd_pmu_disable_all
+ffffffff81064bf0 t amd_pmu_enable_all
+ffffffff81064c60 t amd_pmu_enable_event
+ffffffff81064c70 t amd_pmu_disable_event
+ffffffff81064d60 t amd_pmu_add_event
+ffffffff81064d80 t amd_pmu_del_event
+ffffffff81064da0 t amd_pmu_hw_config
+ffffffff81064ea0 t amd_pmu_addr_offset
+ffffffff81064f20 t amd_pmu_event_map
+ffffffff81064f60 t amd_get_event_constraints
+ffffffff810650a0 t amd_put_event_constraints
+ffffffff81065120 t amd_event_sysfs_show
+ffffffff81065150 t amd_pmu_cpu_prepare
+ffffffff81065260 t amd_pmu_cpu_starting
+ffffffff810653b0 t amd_pmu_cpu_dead
+ffffffff81065480 t umask_show
+ffffffff810654b0 t umask_show
+ffffffff810654e0 t umask_show
+ffffffff81065510 t umask_show
+ffffffff81065540 t umask_show
+ffffffff81065570 t edge_show
+ffffffff810655a0 t edge_show
+ffffffff810655d0 t edge_show
+ffffffff81065600 t edge_show
+ffffffff81065630 t edge_show
+ffffffff81065660 t inv_show
+ffffffff81065690 t inv_show
+ffffffff810656c0 t inv_show
+ffffffff810656f0 t inv_show
+ffffffff81065720 t inv_show
+ffffffff81065750 t cmask_show
+ffffffff81065780 t cmask_show
+ffffffff810657b0 t cmask_show
+ffffffff810657e0 t cmask_show
+ffffffff81065810 t cmask_show
+ffffffff81065840 t amd_pmu_v2_enable_all
+ffffffff81065880 t amd_pmu_v2_disable_all
+ffffffff81065930 t amd_pmu_v2_enable_event
+ffffffff81065a30 t amd_pmu_v2_handle_irq
+ffffffff81065ce0 t amd_pmu_test_overflow_status
+ffffffff81065d20 t amd_get_event_constraints_f15h
+ffffffff81065ef0 t amd_get_event_constraints_f17h
+ffffffff81065f40 t amd_put_event_constraints_f17h
+ffffffff81065f60 t amd_get_event_constraints_f19h
+ffffffff81065fe0 t amd_pmu_brs_sched_task
+ffffffff81065ff0 t amd_pmu_limit_period
+ffffffff81066020 t amd_brs_hw_config
+ffffffff81066030 t amd_brs_reset
+ffffffff81066040 t amd_pmu_brs_add
+ffffffff81066050 t amd_pmu_brs_del
+ffffffff81066060 t amd_branches_is_visible
+ffffffff81066090 t branches_show
+ffffffff810660c0 t branches_show
+ffffffff810660f0 t amd_pmu_lbr_read
+ffffffff810664a0 t amd_pmu_lbr_hw_config
+ffffffff810665c0 t amd_pmu_lbr_reset
+ffffffff81066690 t amd_pmu_lbr_add
+ffffffff81066730 t amd_pmu_lbr_del
+ffffffff81066790 t amd_pmu_lbr_sched_task
+ffffffff810667d0 t amd_pmu_lbr_enable_all
+ffffffff810668f0 t amd_pmu_lbr_disable_all
+ffffffff810669d0 t get_ibs_caps
+ffffffff810669f0 t ibs_eilvt_setup
+ffffffff81066bb0 t ibs_eilvt_valid
+ffffffff81066c80 t x86_pmu_amd_ibs_starting_cpu
+ffffffff81066cf0 t x86_pmu_amd_ibs_dying_cpu
+ffffffff81066d50 t perf_ibs_suspend
+ffffffff81066db0 t perf_ibs_resume
+ffffffff81066e20 t perf_ibs_nmi_handler
+ffffffff81066e90 t rand_en_show
+ffffffff81066ec0 t zen4_ibs_extensions_is_visible
+ffffffff81066ef0 t cnt_ctl_is_visible
+ffffffff81066f20 t cnt_ctl_show
+ffffffff81066f50 t perf_ibs_handle_irq
+ffffffff81067ac0 t perf_ibs_stop
+ffffffff81067d00 t perf_ibs_init
+ffffffff81067ee0 t perf_ibs_add
+ffffffff81067f60 t perf_ibs_del
+ffffffff81067fd0 t perf_ibs_start
+ffffffff81068190 t perf_ibs_read
+ffffffff810681a0 t get_ibs_op_count
+ffffffff81068200 t get_ibs_fetch_count
+ffffffff81068220 t amd_uncore_event_init
+ffffffff81068390 t amd_uncore_add
+ffffffff810685a0 t amd_uncore_del
+ffffffff81068670 t amd_uncore_start
+ffffffff810686f0 t amd_uncore_stop
+ffffffff810687a0 t amd_uncore_read
+ffffffff81068810 t amd_uncore_attr_show_cpumask
+ffffffff81068870 t __uncore_event12_show
+ffffffff810688b0 t __uncore_umask8_show
+ffffffff810688e0 t amd_f17h_uncore_is_visible
+ffffffff81068910 t __uncore_slicemask_show
+ffffffff81068940 t amd_f19h_uncore_is_visible
+ffffffff81068970 t __uncore_coreid_show
+ffffffff810689a0 t __uncore_enallslices_show
+ffffffff810689d0 t __uncore_enallcores_show
+ffffffff81068a00 t __uncore_sliceid_show
+ffffffff81068a30 t amd_uncore_cpu_up_prepare
+ffffffff81068c40 t amd_uncore_cpu_dead
+ffffffff81068d10 t amd_uncore_cpu_starting
+ffffffff81068ee0 t amd_uncore_cpu_online
+ffffffff81069060 t amd_uncore_cpu_down_prepare
+ffffffff810690a0 t __uncore_event14v2_show
+ffffffff810690e0 t __uncore_umask12_show
+ffffffff81069120 t __uncore_event14_show
+ffffffff81069160 t __uncore_event8_show
+ffffffff81069190 t __uncore_threadmask2_show
+ffffffff810691c0 t __uncore_threadmask8_show
+ffffffff810691f0 t uncore_down_prepare
+ffffffff810692c0 t test_aperfmperf
+ffffffff810692e0 t test_intel
+ffffffff810693b0 t test_ptsc
+ffffffff810693d0 t test_irperf
+ffffffff810693f0 t test_therm_status
+ffffffff81069410 t msr_event_init
+ffffffff81069490 t msr_event_add
+ffffffff810694f0 t msr_event_del
+ffffffff81069500 t msr_event_start
+ffffffff81069560 t msr_event_stop
+ffffffff81069570 t msr_event_update
+ffffffff81069630 t intel_pmu_save_and_restart
+ffffffff81069680 t x86_get_event_constraints
+ffffffff81069730 t intel_event_sysfs_show
+ffffffff81069750 t intel_cpuc_prepare
+ffffffff810698a0 t intel_cpuc_finish
+ffffffff81069930 t intel_pmu_nhm_enable_all
+ffffffff81069c60 t nhm_limit_period
+ffffffff81069c80 t intel_pebs_aliases_core2
+ffffffff81069cc0 t glp_get_event_constraints
+ffffffff81069cf0 t tnt_get_event_constraints
+ffffffff81069d50 t spr_limit_period
+ffffffff81069d80 t intel_pebs_aliases_snb
+ffffffff81069dc0 t intel_pebs_aliases_ivb
+ffffffff81069e10 t hsw_hw_config
+ffffffff81069eb0 t hsw_get_event_constraints
+ffffffff81069ef0 t bdw_limit_period
+ffffffff81069f30 t intel_pebs_aliases_skl
+ffffffff81069f90 t tfa_get_event_constraints
+ffffffff8106a050 t intel_tfa_pmu_enable_all
+ffffffff8106a0c0 t intel_tfa_commit_scheduling
+ffffffff8106a110 t icl_get_event_constraints
+ffffffff8106a180 t icl_update_topdown_event
+ffffffff8106a5d0 t icl_set_topdown_event_period
+ffffffff8106a6b0 t spr_get_event_constraints
+ffffffff8106a770 t adl_update_topdown_event
+ffffffff8106a7a0 t adl_set_topdown_event_period
+ffffffff8106a7d0 t intel_pmu_filter_match
+ffffffff8106a800 t adl_get_event_constraints
+ffffffff8106a930 t adl_hw_config
+ffffffff8106aa00 t adl_get_hybrid_cpu_type
+ffffffff8106aa10 t check_msr
+ffffffff8106ab50 t intel_pmu_disable_all
+ffffffff8106abc0 t intel_pmu_snapshot_arch_branch_stack
+ffffffff8106ac70 t intel_pmu_snapshot_branch_stack
+ffffffff8106ad50 t core_pmu_enable_all
+ffffffff8106adf0 t core_pmu_enable_event
+ffffffff8106ae10 t x86_pmu_disable_event
+ffffffff8106aeb0 t core_pmu_hw_config
+ffffffff8106af60 t intel_pmu_event_map
+ffffffff8106af80 t intel_get_event_constraints
+ffffffff8106b3a0 t intel_put_event_constraints
+ffffffff8106b500 t intel_pmu_cpu_prepare
+ffffffff8106b530 t intel_pmu_cpu_starting
+ffffffff8106b940 t intel_pmu_cpu_dying
+ffffffff8106b950 t intel_pmu_cpu_dead
+ffffffff8106ba10 t core_guest_get_msrs
+ffffffff8106bb70 t intel_pmu_check_period
+ffffffff8106bbd0 t __intel_shared_reg_get_constraints
+ffffffff8106be70 t flip_smm_bit
+ffffffff8106bea0 t intel_pmu_handle_irq
+ffffffff8106c720 t intel_pmu_enable_all
+ffffffff8106c740 t intel_pmu_enable_event
+ffffffff8106ca00 t intel_pmu_disable_event
+ffffffff8106cc30 t intel_pmu_add_event
+ffffffff8106cc70 t intel_pmu_del_event
+ffffffff8106ccb0 t intel_pmu_read_event
+ffffffff8106cd40 t intel_pmu_set_period
+ffffffff8106cd70 t intel_pmu_update
+ffffffff8106cda0 t intel_pmu_hw_config
+ffffffff8106d1c0 t intel_pmu_sched_task
+ffffffff8106d1f0 t intel_pmu_swap_task_ctx
+ffffffff8106d200 t intel_guest_get_msrs
+ffffffff8106d400 t intel_pmu_aux_output_match
+ffffffff8106d430 t __intel_pmu_enable_all
+ffffffff8106d550 t intel_set_masks
+ffffffff8106d5d0 t intel_clear_masks
+ffffffff8106d620 t perf_allow_cpu
+ffffffff8106d670 t pc_show
+ffffffff8106d6a0 t pc_show
+ffffffff8106d6d0 t any_show
+ffffffff8106d700 t offcore_rsp_show
+ffffffff8106d730 t ldlat_show
+ffffffff8106d760 t intel_snb_check_microcode
+ffffffff8106d7d0 t intel_start_scheduling
+ffffffff8106d840 t intel_commit_scheduling
+ffffffff8106d8e0 t intel_stop_scheduling
+ffffffff8106d950 t intel_check_pebs_isolation
+ffffffff8106d990 t in_tx_show
+ffffffff8106d9c0 t in_tx_cp_show
+ffffffff8106d9f0 t frontend_show
+ffffffff8106da20 t pebs_is_visible
+ffffffff8106da50 t tsx_is_visible
+ffffffff8106da80 t exra_is_visible
+ffffffff8106dab0 t pmu_name_show
+ffffffff8106dae0 t lbr_is_visible
+ffffffff8106db10 t default_is_visible
+ffffffff8106db50 t show_sysctl_tfa
+ffffffff8106db80 t set_sysctl_tfa
+ffffffff8106dc10 t update_tfa_sched
+ffffffff8106dc60 t freeze_on_smi_show
+ffffffff8106dc90 t freeze_on_smi_store
+ffffffff8106dd50 t hybrid_events_is_visible
+ffffffff8106dd80 t hybrid_tsx_is_visible
+ffffffff8106de00 t hybrid_format_is_visible
+ffffffff8106de60 t intel_hybrid_get_attr_cpus
+ffffffff8106de90 t __intel_pmu_snapshot_branch_stack
+ffffffff8106df10 t intel_pmu_assign_event
+ffffffff8106df30 t intel_bts_enable_local
+ffffffff8106df80 t __bts_event_start
+ffffffff8106e100 t intel_bts_disable_local
+ffffffff8106e160 t intel_bts_interrupt
+ffffffff8106e290 t bts_update
+ffffffff8106e330 t bts_buffer_reset
+ffffffff8106e500 t bts_event_init
+ffffffff8106e5c0 t bts_event_add
+ffffffff8106e650 t bts_event_del
+ffffffff8106e670 t bts_event_start
+ffffffff8106e750 t bts_event_stop
+ffffffff8106e880 t bts_event_read
+ffffffff8106e890 t bts_buffer_setup_aux
+ffffffff8106eb50 t bts_buffer_free_aux
+ffffffff8106eb60 t bts_event_destroy
+ffffffff8106eb80 t adl_latency_data_small
+ffffffff8106ec10 t init_debug_store_on_cpu
+ffffffff8106ec50 t fini_debug_store_on_cpu
+ffffffff8106ec90 t release_ds_buffers
+ffffffff8106edb0 t release_pebs_buffer
+ffffffff8106eed0 t release_bts_buffer
+ffffffff8106f0a0 t reserve_ds_buffers
+ffffffff8106f840 t intel_pmu_enable_bts
+ffffffff8106f8d0 t intel_pmu_disable_bts
+ffffffff8106f950 t intel_pmu_drain_bts_buffer
+ffffffff8106fbd0 t intel_pebs_constraints
+ffffffff8106fc70 t intel_pmu_pebs_sched_task
+ffffffff8106fd20 t intel_pmu_pebs_add
+ffffffff8106fdc0 t pebs_update_state
+ffffffff81070040 t intel_pmu_pebs_enable
+ffffffff81070250 t intel_pmu_pebs_del
+ffffffff810702e0 t intel_pmu_pebs_disable
+ffffffff81070460 t intel_pmu_pebs_enable_all
+ffffffff810704c0 t intel_pmu_pebs_disable_all
+ffffffff81070510 t intel_pmu_auto_reload_read
+ffffffff810705b0 t intel_pmu_drain_pebs_core
+ffffffff810709a0 t intel_pmu_drain_pebs_nhm
+ffffffff810711d0 t intel_pmu_drain_pebs_icl
+ffffffff81071820 t perf_restore_debug_store
+ffffffff81071870 t intel_pmu_save_and_restart_reload
+ffffffff81071930 t setup_pebs_fixed_sample_data
+ffffffff81071f10 t get_data_src
+ffffffff81072120 t intel_pmu_pebs_event_update_no_drain
+ffffffff81072190 t setup_pebs_adaptive_sample_data
+ffffffff81072570 t knc_pmu_handle_irq
+ffffffff810728d0 t knc_pmu_disable_all
+ffffffff81072930 t knc_pmu_enable_all
+ffffffff81072990 t knc_pmu_enable_event
+ffffffff810729e0 t knc_pmu_disable_event
+ffffffff81072a30 t knc_pmu_event_map
+ffffffff81072a50 t intel_pmu_lbr_reset_32
+ffffffff81072aa0 t intel_pmu_lbr_reset_64
+ffffffff81072b40 t intel_pmu_lbr_reset
+ffffffff81072bc0 t lbr_from_signext_quirk_wr
+ffffffff81072bf0 t intel_pmu_lbr_restore
+ffffffff81072f30 t intel_pmu_lbr_save
+ffffffff810731b0 t intel_pmu_lbr_swap_task_ctx
+ffffffff81073230 t intel_pmu_lbr_sched_task
+ffffffff81073560 t intel_pmu_lbr_add
+ffffffff810736b0 t release_lbr_buffers
+ffffffff81073740 t reserve_lbr_buffers
+ffffffff810737d0 t intel_pmu_lbr_del
+ffffffff810738a0 t intel_pmu_lbr_enable_all
+ffffffff81073a50 t intel_pmu_lbr_disable_all
+ffffffff81073b10 t intel_pmu_lbr_read_32
+ffffffff81073c30 t intel_pmu_lbr_read_64
+ffffffff81073f70 t intel_pmu_lbr_read
+ffffffff81073ff0 t intel_pmu_lbr_filter
+ffffffff81074200 t intel_pmu_setup_lbr_filter
+ffffffff810743b0 t intel_pmu_store_pebs_lbrs
+ffffffff81074450 t intel_pmu_store_lbr
+ffffffff81074720 t intel_pmu_lbr_init_hsw
+ffffffff810747a0 t intel_pmu_lbr_init_knl
+ffffffff81074810 t intel_pmu_lbr_init
+ffffffff81074900 t intel_pmu_arch_lbr_reset
+ffffffff81074940 t intel_pmu_arch_lbr_xsaves
+ffffffff81074960 t intel_pmu_arch_lbr_xrstors
+ffffffff81074980 t intel_pmu_arch_lbr_read_xsave
+ffffffff810749d0 t intel_pmu_arch_lbr_save
+ffffffff81074ae0 t intel_pmu_arch_lbr_restore
+ffffffff81074c00 t intel_pmu_arch_lbr_read
+ffffffff81074c20 t x86_perf_get_lbr
+ffffffff81074c70 t p4_pmu_handle_irq
+ffffffff81074f10 t p4_pmu_disable_all
+ffffffff81074fa0 t p4_pmu_enable_all
+ffffffff81075010 t p4_pmu_enable_event
+ffffffff81075060 t p4_pmu_disable_event
+ffffffff810750a0 t p4_pmu_set_period
+ffffffff81075110 t p4_hw_config
+ffffffff81075410 t p4_pmu_schedule_events
+ffffffff81075a70 t p4_pmu_event_map
+ffffffff81075ae0 t __p4_pmu_enable_event
+ffffffff81075c90 t cccr_show
+ffffffff81075cc0 t escr_show
+ffffffff81075cf0 t ht_show
+ffffffff81075d20 t p6_pmu_disable_all
+ffffffff81075d80 t p6_pmu_enable_all
+ffffffff81075de0 t p6_pmu_enable_event
+ffffffff81075e20 t p6_pmu_disable_event
+ffffffff81075e60 t p6_pmu_event_map
+ffffffff81075e80 t intel_pt_validate_cap
+ffffffff81075ef0 t intel_pt_validate_hw_cap
+ffffffff81075f70 t intel_pt_interrupt
+ffffffff810762f0 t pt_read_offset
+ffffffff810763b0 t pt_handle_status
+ffffffff810765e0 t pt_buffer_reset_markers
+ffffffff810767e0 t pt_config_buffer
+ffffffff810768e0 t intel_pt_handle_vmx
+ffffffff810769c0 t cpu_emergency_stop_pt
+ffffffff81076a00 t pt_event_stop
+ffffffff81076c80 t is_intel_pt_event
+ffffffff81076ca0 t pt_topa_entry_for_page
+ffffffff81076db0 t pt_event_init
+ffffffff81076f90 t pt_event_add
+ffffffff81077000 t pt_event_del
+ffffffff81077020 t pt_event_start
+ffffffff810773b0 t pt_event_snapshot_aux
+ffffffff81077690 t pt_event_read
+ffffffff810776a0 t pt_buffer_setup_aux
+ffffffff81077d40 t pt_buffer_free_aux
+ffffffff81077d90 t pt_event_addr_filters_sync
+ffffffff81077ed0 t pt_event_addr_filters_validate
+ffffffff81077fe0 t pt_cap_show
+ffffffff81078080 t pt_show
+ffffffff810780b0 t cyc_show
+ffffffff810780e0 t pwr_evt_show
+ffffffff81078110 t notnt_show
+ffffffff81078140 t fup_on_ptw_show
+ffffffff81078170 t mtc_show
+ffffffff810781a0 t tsc_show
+ffffffff810781d0 t noretcomp_show
+ffffffff81078200 t ptw_show
+ffffffff81078230 t branch_show
+ffffffff81078260 t mtc_period_show
+ffffffff81078290 t cyc_thresh_show
+ffffffff810782c0 t psb_period_show
+ffffffff810782f0 t pt_timing_attr_show
+ffffffff81078350 t pt_event_destroy
+ffffffff81078390 t uncore_pcibus_to_dieid
+ffffffff81078400 t uncore_die_to_segment
+ffffffff810784b0 t __find_pci2phy_map
+ffffffff81078590 t uncore_event_show
+ffffffff810785b0 t uncore_pmu_to_box
+ffffffff81078600 t uncore_msr_read_counter
+ffffffff81078640 t uncore_mmio_exit_box
+ffffffff81078660 t uncore_mmio_read_counter
+ffffffff810786d0 t uncore_get_constraint
+ffffffff810787c0 t uncore_put_constraint
+ffffffff81078800 t uncore_shared_reg_config
+ffffffff81078850 t uncore_perf_event_update
+ffffffff81078930 t uncore_pmu_start_hrtimer
+ffffffff81078960 t uncore_pmu_cancel_hrtimer
+ffffffff81078980 t uncore_pmu_event_start
+ffffffff81078b00 t uncore_pmu_event_stop
+ffffffff81078dd0 t uncore_pmu_event_add
+ffffffff810792a0 t uncore_assign_events
+ffffffff81079530 t uncore_pmu_event_del
+ffffffff81079700 t uncore_pmu_event_read
+ffffffff810797f0 t uncore_get_alias_name
+ffffffff81079840 t uncore_types_exit
+ffffffff81079990 t uncore_pci_exit
+ffffffff81079a90 t uncore_event_cpu_online
+ffffffff81079d10 t uncore_event_cpu_offline
+ffffffff8107a1a0 t uncore_pci_probe
+ffffffff8107a2e0 t uncore_pci_remove
+ffffffff8107a470 t uncore_get_attr_cpumask
+ffffffff8107a4a0 t uncore_pci_find_dev_pmu
+ffffffff8107a630 t uncore_pci_pmu_register
+ffffffff8107a850 t uncore_pmu_register
+ffffffff8107aae0 t uncore_pmu_hrtimer
+ffffffff8107ae00 t uncore_pmu_enable
+ffffffff8107ae70 t uncore_pmu_disable
+ffffffff8107aee0 t uncore_pmu_event_init
+ffffffff8107b0c0 t uncore_freerunning_counter
+ffffffff8107b130 t uncore_validate_group
+ffffffff8107b360 t uncore_pci_bus_notify
+ffffffff8107b380 t uncore_bus_notify
+ffffffff8107b4c0 t uncore_pci_sub_bus_notify
+ffffffff8107b4f0 t uncore_box_ref
+ffffffff8107b850 t nhmex_uncore_cpu_init
+ffffffff8107b8a0 t nhmex_uncore_msr_init_box
+ffffffff8107b8e0 t nhmex_uncore_msr_exit_box
+ffffffff8107b910 t nhmex_uncore_msr_disable_box
+ffffffff8107ba00 t nhmex_uncore_msr_enable_box
+ffffffff8107baf0 t nhmex_uncore_msr_disable_event
+ffffffff8107bb20 t nhmex_mbox_msr_enable_event
+ffffffff8107bd20 t nhmex_mbox_hw_config
+ffffffff8107bed0 t nhmex_mbox_get_constraint
+ffffffff8107c230 t nhmex_mbox_put_constraint
+ffffffff8107c310 t nhmex_mbox_get_shared_reg
+ffffffff8107c480 t __uncore_count_mode_show
+ffffffff8107c4b0 t __uncore_storage_mode_show
+ffffffff8107c4e0 t __uncore_wrap_mode_show
+ffffffff8107c510 t __uncore_flag_mode_show
+ffffffff8107c540 t __uncore_inc_sel_show
+ffffffff8107c570 t __uncore_set_flag_sel_show
+ffffffff8107c5a0 t __uncore_filter_cfg_en_show
+ffffffff8107c5d0 t __uncore_filter_match_show
+ffffffff8107c600 t __uncore_filter_mask_show
+ffffffff8107c630 t __uncore_dsp_show
+ffffffff8107c660 t __uncore_thr_show
+ffffffff8107c690 t __uncore_fvc_show
+ffffffff8107c6c0 t __uncore_pgt_show
+ffffffff8107c6f0 t __uncore_map_show
+ffffffff8107c720 t __uncore_iss_show
+ffffffff8107c750 t __uncore_pld_show
+ffffffff8107c780 t nhmex_uncore_msr_enable_event
+ffffffff8107c800 t __uncore_event_show
+ffffffff8107c830 t __uncore_event_show
+ffffffff8107c860 t __uncore_event_show
+ffffffff8107c890 t __uncore_event_show
+ffffffff8107c8c0 t __uncore_umask_show
+ffffffff8107c8f0 t __uncore_umask_show
+ffffffff8107c920 t __uncore_umask_show
+ffffffff8107c950 t __uncore_umask_show
+ffffffff8107c980 t __uncore_edge_show
+ffffffff8107c9b0 t __uncore_edge_show
+ffffffff8107c9e0 t __uncore_edge_show
+ffffffff8107ca10 t __uncore_edge_show
+ffffffff8107ca40 t __uncore_inv_show
+ffffffff8107ca70 t __uncore_inv_show
+ffffffff8107caa0 t __uncore_inv_show
+ffffffff8107cad0 t __uncore_inv_show
+ffffffff8107cb00 t __uncore_thresh8_show
+ffffffff8107cb30 t __uncore_thresh8_show
+ffffffff8107cb60 t nhmex_bbox_msr_enable_event
+ffffffff8107cbf0 t nhmex_bbox_hw_config
+ffffffff8107cc80 t __uncore_event5_show
+ffffffff8107ccb0 t __uncore_counter_show
+ffffffff8107cce0 t __uncore_match_show
+ffffffff8107cd10 t __uncore_mask_show
+ffffffff8107cd40 t nhmex_sbox_msr_enable_event
+ffffffff8107ce20 t nhmex_sbox_hw_config
+ffffffff8107ce80 t nhmex_rbox_msr_enable_event
+ffffffff8107d0d0 t nhmex_rbox_hw_config
+ffffffff8107d150 t nhmex_rbox_get_constraint
+ffffffff8107d490 t nhmex_rbox_put_constraint
+ffffffff8107d520 t __uncore_xbr_mm_cfg_show
+ffffffff8107d550 t __uncore_xbr_match_show
+ffffffff8107d580 t __uncore_xbr_mask_show
+ffffffff8107d5b0 t __uncore_qlx_cfg_show
+ffffffff8107d5e0 t __uncore_iperf_cfg_show
+ffffffff8107d610 t snb_uncore_cpu_init
+ffffffff8107d640 t skl_uncore_cpu_init
+ffffffff8107d680 t icl_uncore_cpu_init
+ffffffff8107d6d0 t tgl_uncore_cpu_init
+ffffffff8107d750 t rkl_uncore_msr_init_box
+ffffffff8107d7a0 t adl_uncore_cpu_init
+ffffffff8107d7f0 t mtl_uncore_cpu_init
+ffffffff8107d840 t snb_pci2phy_map_init
+ffffffff8107d8d0 t snb_uncore_pci_init
+ffffffff8107d8e0 t imc_uncore_pci_init
+ffffffff8107d9c0 t ivb_uncore_pci_init
+ffffffff8107d9d0 t hsw_uncore_pci_init
+ffffffff8107d9e0 t bdw_uncore_pci_init
+ffffffff8107d9f0 t skl_uncore_pci_init
+ffffffff8107da00 t nhm_uncore_cpu_init
+ffffffff8107da20 t tgl_l_uncore_mmio_init
+ffffffff8107da50 t tgl_uncore_mmio_init
+ffffffff8107da70 t adl_uncore_mmio_init
+ffffffff8107da90 t snb_uncore_msr_init_box
+ffffffff8107dae0 t snb_uncore_msr_exit_box
+ffffffff8107db20 t snb_uncore_msr_enable_box
+ffffffff8107db60 t snb_uncore_msr_disable_event
+ffffffff8107db90 t snb_uncore_msr_enable_event
+ffffffff8107dc00 t __uncore_cmask5_show
+ffffffff8107dc30 t skl_uncore_msr_init_box
+ffffffff8107dc90 t skl_uncore_msr_exit_box
+ffffffff8107dcd0 t skl_uncore_msr_enable_box
+ffffffff8107dd10 t adl_uncore_msr_init_box
+ffffffff8107dd60 t adl_uncore_msr_exit_box
+ffffffff8107dda0 t adl_uncore_msr_disable_box
+ffffffff8107dde0 t adl_uncore_msr_enable_box
+ffffffff8107de20 t __uncore_threshold_show
+ffffffff8107de50 t mtl_uncore_msr_init_box
+ffffffff8107dec0 t snb_uncore_imc_init_box
+ffffffff8107dfb0 t snb_uncore_imc_disable_box
+ffffffff8107dfc0 t snb_uncore_imc_enable_box
+ffffffff8107dfd0 t snb_uncore_imc_disable_event
+ffffffff8107dfe0 t snb_uncore_imc_enable_event
+ffffffff8107dff0 t snb_uncore_imc_read_counter
+ffffffff8107e010 t snb_uncore_imc_hw_config
+ffffffff8107e020 t snb_uncore_imc_event_init
+ffffffff8107e130 t nhm_uncore_msr_disable_box
+ffffffff8107e160 t nhm_uncore_msr_enable_box
+ffffffff8107e1a0 t nhm_uncore_msr_enable_event
+ffffffff8107e210 t __uncore_cmask8_show
+ffffffff8107e240 t tgl_uncore_imc_freerunning_init_box
+ffffffff8107e260 t uncore_freerunning_hw_config
+ffffffff8107e290 t uncore_freerunning_hw_config
+ffffffff8107e2c0 t __uncore_imc_init_box
+ffffffff8107e400 t adl_uncore_imc_init_box
+ffffffff8107e450 t adl_uncore_mmio_disable_box
+ffffffff8107e490 t adl_uncore_mmio_enable_box
+ffffffff8107e4d0 t __uncore_chmask_show
+ffffffff8107e500 t adl_uncore_imc_freerunning_init_box
+ffffffff8107e520 t snbep_uncore_cpu_init
+ffffffff8107e550 t snbep_uncore_pci_init
+ffffffff8107e5a0 t snbep_pci2phy_map_init
+ffffffff8107e8f0 t ivbep_uncore_cpu_init
+ffffffff8107e920 t ivbep_uncore_pci_init
+ffffffff8107e970 t knl_uncore_cpu_init
+ffffffff8107e990 t knl_uncore_pci_init
+ffffffff8107e9e0 t hswep_uncore_cpu_init
+ffffffff8107ea80 t hswep_uncore_pci_init
+ffffffff8107ead0 t bdx_uncore_cpu_init
+ffffffff8107eba0 t bdx_uncore_pci_init
+ffffffff8107ebf0 t skx_uncore_cpu_init
+ffffffff8107ec80 t skx_uncore_pci_init
+ffffffff8107ecd0 t snr_uncore_cpu_init
+ffffffff8107ecf0 t snr_uncore_pci_init
+ffffffff8107ed40 t snr_uncore_mmio_init
+ffffffff8107ed60 t icx_uncore_cpu_init
+ffffffff8107ee10 t icx_uncore_pci_init
+ffffffff8107ee60 t icx_uncore_mmio_init
+ffffffff8107ee80 t spr_uncore_cpu_init
+ffffffff8107ef60 t uncore_get_uncores
+ffffffff8107f0a0 t spr_uncore_pci_init
+ffffffff8107f0d0 t spr_uncore_mmio_init
+ffffffff8107f200 t snbep_uncore_msr_init_box
+ffffffff8107f270 t snbep_uncore_msr_disable_box
+ffffffff8107f300 t snbep_uncore_msr_enable_box
+ffffffff8107f390 t snbep_uncore_msr_disable_event
+ffffffff8107f3d0 t snbep_uncore_msr_enable_event
+ffffffff8107f450 t snbep_cbox_hw_config
+ffffffff8107f520 t snbep_cbox_get_constraint
+ffffffff8107f540 t snbep_cbox_put_constraint
+ffffffff8107f5d0 t snbep_cbox_filter_mask
+ffffffff8107f620 t __snbep_cbox_get_constraint
+ffffffff8107f7b0 t __uncore_tid_en_show
+ffffffff8107f7e0 t __uncore_filter_tid_show
+ffffffff8107f810 t __uncore_filter_nid_show
+ffffffff8107f840 t __uncore_filter_state_show
+ffffffff8107f870 t __uncore_filter_opc_show
+ffffffff8107f8a0 t __uncore_thresh5_show
+ffffffff8107f8d0 t snbep_pcu_hw_config
+ffffffff8107f920 t snbep_pcu_get_constraint
+ffffffff8107fae0 t snbep_pcu_put_constraint
+ffffffff8107fb20 t __uncore_occ_sel_show
+ffffffff8107fb50 t __uncore_occ_invert_show
+ffffffff8107fb80 t __uncore_occ_edge_show
+ffffffff8107fbb0 t __uncore_filter_band0_show
+ffffffff8107fbe0 t __uncore_filter_band1_show
+ffffffff8107fc10 t __uncore_filter_band2_show
+ffffffff8107fc40 t __uncore_filter_band3_show
+ffffffff8107fc70 t snbep_uncore_pci_init_box
+ffffffff8107fca0 t snbep_uncore_pci_disable_box
+ffffffff8107fd30 t snbep_uncore_pci_enable_box
+ffffffff8107fdc0 t snbep_uncore_pci_disable_event
+ffffffff8107fdf0 t snbep_uncore_pci_enable_event
+ffffffff8107fe20 t snbep_uncore_pci_read_counter
+ffffffff8107fea0 t snbep_qpi_enable_event
+ffffffff8107ff70 t snbep_qpi_hw_config
+ffffffff8107ffc0 t __uncore_event_ext_show
+ffffffff8107fff0 t __uncore_match_rds_show
+ffffffff81080020 t __uncore_match_rnid30_show
+ffffffff81080050 t __uncore_match_rnid4_show
+ffffffff81080080 t __uncore_match_dnid_show
+ffffffff810800b0 t __uncore_match_mc_show
+ffffffff810800e0 t __uncore_match_opc_show
+ffffffff81080110 t __uncore_match_vnw_show
+ffffffff81080140 t __uncore_match0_show
+ffffffff81080170 t __uncore_match1_show
+ffffffff810801a0 t __uncore_mask_rds_show
+ffffffff810801d0 t __uncore_mask_rnid30_show
+ffffffff81080200 t __uncore_mask_rnid4_show
+ffffffff81080230 t __uncore_mask_dnid_show
+ffffffff81080260 t __uncore_mask_mc_show
+ffffffff81080290 t __uncore_mask_opc_show
+ffffffff810802c0 t __uncore_mask_vnw_show
+ffffffff810802f0 t __uncore_mask0_show
+ffffffff81080320 t __uncore_mask1_show
+ffffffff81080350 t ivbep_uncore_msr_init_box
+ffffffff810803c0 t ivbep_cbox_enable_event
+ffffffff81080460 t ivbep_cbox_hw_config
+ffffffff81080540 t ivbep_cbox_get_constraint
+ffffffff81080560 t ivbep_cbox_filter_mask
+ffffffff810805d0 t __uncore_filter_link_show
+ffffffff81080600 t __uncore_filter_state2_show
+ffffffff81080630 t __uncore_filter_nid2_show
+ffffffff81080660 t __uncore_filter_opc2_show
+ffffffff81080690 t __uncore_filter_nc_show
+ffffffff810806c0 t __uncore_filter_c6_show
+ffffffff810806f0 t __uncore_filter_isoc_show
+ffffffff81080720 t ivbep_uncore_pci_init_box
+ffffffff81080750 t ivbep_uncore_irp_disable_event
+ffffffff81080790 t ivbep_uncore_irp_enable_event
+ffffffff810807d0 t ivbep_uncore_irp_read_counter
+ffffffff81080870 t hswep_cbox_enable_event
+ffffffff81080900 t knl_cha_hw_config
+ffffffff810809b0 t knl_cha_get_constraint
+ffffffff810809d0 t knl_cha_filter_mask
+ffffffff81080a10 t __uncore_qor_show
+ffffffff81080a40 t __uncore_filter_tid4_show
+ffffffff81080a70 t __uncore_filter_link3_show
+ffffffff81080aa0 t __uncore_filter_state4_show
+ffffffff81080ad0 t __uncore_filter_local_show
+ffffffff81080b00 t __uncore_filter_all_op_show
+ffffffff81080b30 t __uncore_filter_nnm_show
+ffffffff81080b60 t __uncore_filter_opc3_show
+ffffffff81080b90 t __uncore_event2_show
+ffffffff81080bc0 t __uncore_use_occ_ctr_show
+ffffffff81080bf0 t __uncore_thresh6_show
+ffffffff81080c20 t __uncore_occ_edge_det_show
+ffffffff81080c50 t knl_uncore_imc_enable_box
+ffffffff81080c80 t knl_uncore_imc_enable_event
+ffffffff81080cc0 t hswep_cbox_hw_config
+ffffffff81080da0 t hswep_cbox_get_constraint
+ffffffff81080dc0 t hswep_cbox_filter_mask
+ffffffff81080e30 t __uncore_filter_tid3_show
+ffffffff81080e60 t __uncore_filter_link2_show
+ffffffff81080e90 t __uncore_filter_state3_show
+ffffffff81080ec0 t hswep_uncore_sbox_msr_init_box
+ffffffff81080f90 t hswep_ubox_hw_config
+ffffffff81080fd0 t __uncore_filter_tid2_show
+ffffffff81081000 t __uncore_filter_cid_show
+ffffffff81081030 t hswep_uncore_irp_read_counter
+ffffffff810810d0 t hswep_pcu_hw_config
+ffffffff81081110 t skx_cha_hw_config
+ffffffff81081200 t skx_cha_get_constraint
+ffffffff81081220 t skx_cha_filter_mask
+ffffffff81081270 t __uncore_filter_state5_show
+ffffffff810812a0 t __uncore_filter_rem_show
+ffffffff810812d0 t __uncore_filter_loc_show
+ffffffff81081300 t __uncore_filter_nm_show
+ffffffff81081330 t __uncore_filter_not_nm_show
+ffffffff81081360 t __uncore_filter_opc_0_show
+ffffffff81081390 t __uncore_filter_opc_1_show
+ffffffff810813c0 t skx_iio_get_topology
+ffffffff81081560 t skx_iio_set_mapping
+ffffffff81081580 t skx_iio_cleanup_mapping
+ffffffff81081610 t skx_iio_enable_event
+ffffffff81081650 t __uncore_thresh9_show
+ffffffff81081680 t __uncore_ch_mask_show
+ffffffff810816b0 t __uncore_fc_mask_show
+ffffffff810816e0 t skx_iio_mapping_visible
+ffffffff81081730 t pmu_iio_set_mapping
+ffffffff81081960 t skx_iio_mapping_show
+ffffffff810819c0 t skx_m2m_uncore_pci_init_box
+ffffffff810819f0 t skx_upi_uncore_pci_init_box
+ffffffff81081a20 t __uncore_umask_ext_show
+ffffffff81081a60 t snr_cha_enable_event
+ffffffff81081ad0 t snr_cha_hw_config
+ffffffff81081b20 t __uncore_umask_ext2_show
+ffffffff81081b60 t __uncore_filter_tid5_show
+ffffffff81081b90 t snr_iio_get_topology
+ffffffff81081bb0 t snr_iio_set_mapping
+ffffffff81081bd0 t snr_iio_cleanup_mapping
+ffffffff81081c60 t __uncore_ch_mask2_show
+ffffffff81081c90 t __uncore_fc_mask2_show
+ffffffff81081cc0 t snr_iio_mapping_visible
+ffffffff81081d20 t sad_cfg_iio_topology
+ffffffff81081fa0 t snr_pcu_hw_config
+ffffffff81081fe0 t snr_m2m_uncore_pci_init_box
+ffffffff81082020 t __uncore_umask_ext3_show
+ffffffff81082060 t snr_uncore_pci_enable_event
+ffffffff810820b0 t snr_uncore_mmio_init_box
+ffffffff81082100 t snr_uncore_mmio_disable_box
+ffffffff81082130 t snr_uncore_mmio_enable_box
+ffffffff81082160 t snr_uncore_mmio_disable_event
+ffffffff810821d0 t snr_uncore_mmio_enable_event
+ffffffff81082240 t snr_uncore_mmio_map
+ffffffff81082370 t icx_cha_hw_config
+ffffffff810823d0 t icx_iio_get_topology
+ffffffff810823f0 t icx_iio_set_mapping
+ffffffff81082480 t icx_iio_cleanup_mapping
+ffffffff81082510 t icx_iio_mapping_visible
+ffffffff81082570 t __uncore_umask_ext4_show
+ffffffff810825b0 t icx_uncore_imc_init_box
+ffffffff81082620 t icx_uncore_imc_freerunning_init_box
+ffffffff81082660 t spr_uncore_msr_disable_event
+ffffffff810826b0 t spr_uncore_msr_enable_event
+ffffffff81082720 t spr_cha_hw_config
+ffffffff81082780 t __uncore_tid_en2_show
+ffffffff810827b0 t alias_show
+ffffffff81082840 t spr_uncore_mmio_enable_event
+ffffffff81082890 t spr_uncore_pci_enable_event
+ffffffff810828e0 t spr_uncore_imc_freerunning_init_box
+ffffffff81082920 t intel_uncore_has_discovery_tables
+ffffffff81082fd0 t intel_uncore_clear_discovery_tables
+ffffffff81083020 t intel_generic_uncore_msr_init_box
+ffffffff81083090 t intel_generic_uncore_msr_disable_box
+ffffffff81083100 t intel_generic_uncore_msr_enable_box
+ffffffff81083160 t intel_generic_uncore_pci_init_box
+ffffffff810831a0 t intel_generic_uncore_pci_disable_box
+ffffffff810831d0 t intel_generic_uncore_pci_enable_box
+ffffffff81083200 t intel_generic_uncore_pci_disable_event
+ffffffff81083220 t intel_generic_uncore_pci_read_counter
+ffffffff810832a0 t intel_generic_uncore_mmio_init_box
+ffffffff81083370 t intel_generic_uncore_mmio_disable_box
+ffffffff81083390 t intel_generic_uncore_mmio_enable_box
+ffffffff810833b0 t intel_generic_uncore_mmio_enable_event
+ffffffff810833e0 t intel_generic_uncore_mmio_disable_event
+ffffffff81083410 t intel_uncore_generic_init_uncores
+ffffffff810835f0 t intel_uncore_generic_uncore_cpu_init
+ffffffff81083610 t intel_uncore_generic_uncore_pci_init
+ffffffff81083630 t intel_uncore_generic_uncore_mmio_init
+ffffffff81083650 t __uncore_thresh_show
+ffffffff81083680 t intel_generic_uncore_msr_disable_event
+ffffffff810836b0 t intel_generic_uncore_msr_enable_event
+ffffffff810836f0 t intel_generic_uncore_pci_enable_event
+ffffffff81083720 t cstate_cpu_init
+ffffffff810837c0 t cstate_cpu_exit
+ffffffff810838d0 t cstate_pmu_event_init
+ffffffff81083a30 t cstate_pmu_event_add
+ffffffff81083a80 t cstate_pmu_event_del
+ffffffff81083af0 t cstate_pmu_event_start
+ffffffff81083b30 t cstate_pmu_event_stop
+ffffffff81083ba0 t cstate_pmu_event_update
+ffffffff81083c10 t __cstate_core_event_show
+ffffffff81083c40 t cstate_get_attr_cpumask
+ffffffff81083ca0 t __cstate_pkg_event_show
+ffffffff81083cd0 t zhaoxin_pmu_handle_irq
+ffffffff81084010 t zhaoxin_pmu_disable_all
+ffffffff81084040 t zhaoxin_pmu_enable_all
+ffffffff81084080 t zhaoxin_pmu_enable_event
+ffffffff810841a0 t zhaoxin_pmu_disable_event
+ffffffff81084260 t zhaoxin_pmu_event_map
+ffffffff81084280 t zhaoxin_get_event_constraints
+ffffffff810842e0 t zhaoxin_event_sysfs_show
+ffffffff81084300 t zhaoxin_pmu_enable_fixed
+ffffffff810843a0 t zhaoxin_pmu_disable_fixed
+ffffffff81084410 t load_trampoline_pgtable
+ffffffff81084490 t __show_regs
+ffffffff810847b0 t release_thread
+ffffffff810847d0 t current_save_fsgs
+ffffffff810848a0 t x86_fsgsbase_read_task
+ffffffff81084960 t x86_gsbase_read_cpu_inactive
+ffffffff81084a00 t x86_gsbase_write_cpu_inactive
+ffffffff81084a90 t wrmsrl
+ffffffff81084ad0 t x86_fsbase_read_task
+ffffffff81084bf0 t x86_gsbase_read_task
+ffffffff81084d60 t x86_fsbase_write_task
+ffffffff81084d90 t x86_gsbase_write_task
+ffffffff81084dc0 t start_thread
+ffffffff81084ec0 t __switch_to
+ffffffff810853b0 t set_personality_64bit
+ffffffff81085400 t set_personality_ia32
+ffffffff81085420 t do_arch_prctl_64
+ffffffff81085650 t __x64_sys_arch_prctl
+ffffffff81085690 t KSTK_ESP
+ffffffff810856b0 t __x64_sys_rt_sigreturn
+ffffffff81085970 t get_sigframe_size
+ffffffff81085990 t arch_do_signal_or_restart
+ffffffff81086030 t signal_fault
+ffffffff81086100 t sigaltstack_size_valid
+ffffffff81086190 t is_valid_bugaddr
+ffffffff810861c0 t handle_invalid_op
+ffffffff81086250 t handle_stack_overflow
+ffffffff810862b0 t do_int3_user
+ffffffff81086330 t do_int3
+ffffffff81086370 t do_trap
+ffffffff810864c0 t math_error
+ffffffff810865e0 t load_current_idt
+ffffffff81086600 t idt_invalidate
+ffffffff81086620 t __traceiter_local_timer_entry
+ffffffff81086670 t __traceiter_local_timer_exit
+ffffffff810866c0 t __traceiter_spurious_apic_entry
+ffffffff81086710 t __traceiter_spurious_apic_exit
+ffffffff81086760 t __traceiter_error_apic_entry
+ffffffff810867b0 t __traceiter_error_apic_exit
+ffffffff81086800 t __traceiter_x86_platform_ipi_entry
+ffffffff81086850 t __traceiter_x86_platform_ipi_exit
+ffffffff810868a0 t __traceiter_irq_work_entry
+ffffffff810868f0 t __traceiter_irq_work_exit
+ffffffff81086940 t __traceiter_reschedule_entry
+ffffffff81086990 t __traceiter_reschedule_exit
+ffffffff810869e0 t __traceiter_call_function_entry
+ffffffff81086a30 t __traceiter_call_function_exit
+ffffffff81086a80 t __traceiter_call_function_single_entry
+ffffffff81086ad0 t __traceiter_call_function_single_exit
+ffffffff81086b20 t __traceiter_thermal_apic_entry
+ffffffff81086b70 t __traceiter_thermal_apic_exit
+ffffffff81086bc0 t __traceiter_vector_config
+ffffffff81086c30 t __traceiter_vector_update
+ffffffff81086ca0 t __traceiter_vector_clear
+ffffffff81086d10 t __traceiter_vector_reserve_managed
+ffffffff81086d60 t __traceiter_vector_reserve
+ffffffff81086db0 t __traceiter_vector_alloc
+ffffffff81086e20 t __traceiter_vector_alloc_managed
+ffffffff81086e80 t __traceiter_vector_activate
+ffffffff81086ef0 t __traceiter_vector_deactivate
+ffffffff81086f60 t __traceiter_vector_teardown
+ffffffff81086fd0 t __traceiter_vector_setup
+ffffffff81087030 t __traceiter_vector_free_moved
+ffffffff810870a0 t trace_event_raw_event_x86_irq_vector
+ffffffff81087160 t perf_trace_x86_irq_vector
+ffffffff81087250 t trace_event_raw_event_vector_config
+ffffffff81087330 t perf_trace_vector_config
+ffffffff81087440 t trace_event_raw_event_vector_mod
+ffffffff81087520 t perf_trace_vector_mod
+ffffffff81087640 t trace_event_raw_event_vector_reserve
+ffffffff81087700 t perf_trace_vector_reserve
+ffffffff81087800 t trace_event_raw_event_vector_alloc
+ffffffff810878e0 t perf_trace_vector_alloc
+ffffffff81087a00 t trace_event_raw_event_vector_alloc_managed
+ffffffff81087ae0 t perf_trace_vector_alloc_managed
+ffffffff81087bf0 t trace_event_raw_event_vector_activate
+ffffffff81087cd0 t perf_trace_vector_activate
+ffffffff81087de0 t trace_event_raw_event_vector_teardown
+ffffffff81087eb0 t perf_trace_vector_teardown
+ffffffff81087fc0 t trace_event_raw_event_vector_setup
+ffffffff81088090 t perf_trace_vector_setup
+ffffffff810881a0 t trace_event_raw_event_vector_free_moved
+ffffffff81088280 t perf_trace_vector_free_moved
+ffffffff81088390 t ack_bad_irq
+ffffffff810883e0 t arch_show_interrupts
+ffffffff81088bf0 t arch_irq_stat_cpu
+ffffffff81088c70 t arch_irq_stat
+ffffffff81088c90 t __common_interrupt
+ffffffff81088dc0 t __sysvec_x86_platform_ipi
+ffffffff81088f00 t kvm_set_posted_intr_wakeup_handler
+ffffffff81088f30 t dummy_handler
+ffffffff81088f40 t __sysvec_kvm_posted_intr_wakeup_ipi
+ffffffff81088f80 t fixup_irqs
+ffffffff810890b0 t __sysvec_thermal
+ffffffff810891a0 t perf_perm_irq_work_exit
+ffffffff810891c0 t trace_raw_output_x86_irq_vector
+ffffffff81089210 t trace_raw_output_vector_config
+ffffffff81089270 t trace_raw_output_vector_mod
+ffffffff810892e0 t trace_raw_output_vector_reserve
+ffffffff81089340 t trace_raw_output_vector_alloc
+ffffffff810893a0 t trace_raw_output_vector_alloc_managed
+ffffffff81089400 t trace_raw_output_vector_activate
+ffffffff81089460 t trace_raw_output_vector_teardown
+ffffffff810894c0 t trace_raw_output_vector_setup
+ffffffff81089520 t trace_raw_output_vector_free_moved
+ffffffff81089580 t irq_init_percpu_irqstack
+ffffffff810896b0 t stack_type_name
+ffffffff810896f0 t get_stack_info
+ffffffff81089790 t profile_pc
+ffffffff810897e0 t clocksource_arch_init
+ffffffff81089820 t timer_interrupt
+ffffffff81089840 t io_bitmap_share
+ffffffff810898b0 t io_bitmap_exit
+ffffffff81089950 t ksys_ioperm
+ffffffff81089b10 t __x64_sys_ioperm
+ffffffff81089b30 t __x64_sys_iopl
+ffffffff81089bf0 t show_opcodes
+ffffffff81089d10 t show_ip
+ffffffff81089d50 t show_iret_regs
+ffffffff81089db0 t show_stack
+ffffffff81089df0 t show_trace_log_lvl.llvm.6910218593785238477
+ffffffff8108a1f0 t show_stack_regs
+ffffffff8108a220 t oops_begin
+ffffffff8108a2f0 t oops_end
+ffffffff8108a3e0 t __die
+ffffffff8108a490 t __die_body
+ffffffff8108a540 t die
+ffffffff8108a610 t die_addr
+ffffffff8108a6e0 t show_regs
+ffffffff8108a740 t __traceiter_nmi_handler
+ffffffff8108a7a0 t trace_event_raw_event_nmi_handler
+ffffffff8108a870 t perf_trace_nmi_handler
+ffffffff8108a980 t __register_nmi_handler
+ffffffff8108aaf0 t unregister_nmi_handler
+ffffffff8108abf0 t stop_nmi
+ffffffff8108ac10 t restart_nmi
+ffffffff8108ac30 t local_touch_nmi
+ffffffff8108ac60 t trace_raw_output_nmi_handler
+ffffffff8108acc0 t nmi_handle
+ffffffff8108ae10 t pci_serr_error
+ffffffff8108ae90 t io_check_error
+ffffffff8108af30 t unknown_nmi_error
+ffffffff8108afc0 t load_mm_ldt
+ffffffff8108b030 t native_set_ldt
+ffffffff8108b0d0 t switch_ldt
+ffffffff8108b180 t ldt_dup_context
+ffffffff8108b400 t map_ldt_struct
+ffffffff8108b6c0 t free_ldt_pgtables
+ffffffff8108b7f0 t free_ldt_struct
+ffffffff8108b840 t destroy_context_ldt
+ffffffff8108b8a0 t ldt_arch_exit_mmap
+ffffffff8108b9d0 t __x64_sys_modify_ldt
+ffffffff8108bb70 t write_ldt
+ffffffff8108beb0 t install_ldt
+ffffffff8108bf10 t unmap_ldt_struct
+ffffffff8108c030 t flush_ldt
+ffffffff8108c1c0 t x86_configure_nx
+ffffffff8108c200 t dump_kernel_offset
+ffffffff8108c250 t x86_init_noop
+ffffffff8108c260 t x86_op_int_noop
+ffffffff8108c270 t iommu_shutdown_noop
+ffffffff8108c280 t is_ISA_range
+ffffffff8108c2b0 t default_nmi_init
+ffffffff8108c2c0 t default_get_nmi_reason
+ffffffff8108c2d0 t enc_status_change_prepare_noop
+ffffffff8108c2e0 t enc_status_change_finish_noop
+ffffffff8108c2f0 t enc_tlb_flush_required_noop
+ffffffff8108c300 t enc_cache_flush_required_noop
+ffffffff8108c310 t get_rtc_noop
+ffffffff8108c320 t set_rtc_noop
+ffffffff8108c330 t disable_8259A_irq
+ffffffff8108c380 t mask_and_ack_8259A
+ffffffff8108c480 t enable_8259A_irq
+ffffffff8108c4d0 t legacy_pic_uint_noop
+ffffffff8108c4e0 t legacy_pic_noop
+ffffffff8108c4f0 t legacy_pic_int_noop
+ffffffff8108c500 t legacy_pic_probe
+ffffffff8108c510 t legacy_pic_irq_pending_noop
+ffffffff8108c520 t mask_8259A_irq
+ffffffff8108c570 t unmask_8259A_irq
+ffffffff8108c5c0 t mask_8259A
+ffffffff8108c5f0 t unmask_8259A
+ffffffff8108c630 t init_8259A
+ffffffff8108c720 t probe_8259A
+ffffffff8108c780 t i8259A_irq_pending
+ffffffff8108c7e0 t make_8259A_irq
+ffffffff8108c850 t i8259A_suspend
+ffffffff8108c880 t i8259A_resume
+ffffffff8108c8b0 t i8259A_shutdown
+ffffffff8108c8d0 t arch_jump_entry_size
+ffffffff8108c9a0 t arch_jump_label_transform
+ffffffff8108c9b0 t arch_jump_label_transform_queue
+ffffffff8108ca20 t __jump_label_patch
+ffffffff8108cc10 t arch_jump_label_transform_apply
+ffffffff8108cc40 t __sysvec_irq_work
+ffffffff8108cd10 t arch_irq_work_raise
+ffffffff8108cd50 t pci_map_biosrom
+ffffffff8108cd90 t find_oprom
+ffffffff8108d020 t pci_unmap_biosrom
+ffffffff8108d030 t pci_biosrom_size
+ffffffff8108d060 t align_vdso_addr
+ffffffff8108d0b0 t __x64_sys_mmap
+ffffffff8108d100 t arch_get_unmapped_area
+ffffffff8108d2c0 t arch_get_unmapped_area_topdown
+ffffffff8108d4f0 t init_espfix_ap
+ffffffff8108d890 t version_show
+ffffffff8108d8c0 t version_show
+ffffffff8108d920 t version_show
+ffffffff8108d9a0 t boot_params_data_read
+ffffffff8108d9d0 t setup_data_data_read
+ffffffff8108dbe0 t type_show
+ffffffff8108dd50 t type_show
+ffffffff8108dde0 t type_show
+ffffffff8108de50 t type_show
+ffffffff8108de80 t type_show
+ffffffff8108def0 t type_show
+ffffffff8108df50 t type_show
+ffffffff8108df80 t type_show
+ffffffff8108dfb0 t type_show
+ffffffff8108dfe0 t type_show
+ffffffff8108e010 t type_show
+ffffffff8108e050 t type_show
+ffffffff8108e0b0 t e820__mapped_raw_any
+ffffffff8108e120 t e820__mapped_any
+ffffffff8108e190 t __e820__mapped_all.llvm.8243566140799179074
+ffffffff8108e210 t e820__get_entry_type
+ffffffff8108e280 t __UNIQUE_ID_via_no_dac277
+ffffffff8108e2c0 t via_no_dac_cb
+ffffffff8108e2e0 t __UNIQUE_ID_quirk_intel_irqbalance270
+ffffffff8108e2f0 t quirk_intel_irqbalance
+ffffffff8108e3d0 t __UNIQUE_ID_quirk_intel_irqbalance272
+ffffffff8108e3e0 t __UNIQUE_ID_quirk_intel_irqbalance274
+ffffffff8108e3f0 t __UNIQUE_ID_ich_force_enable_hpet276
+ffffffff8108e400 t ich_force_enable_hpet
+ffffffff8108e5b0 t __UNIQUE_ID_ich_force_enable_hpet278
+ffffffff8108e5c0 t __UNIQUE_ID_ich_force_enable_hpet280
+ffffffff8108e5d0 t __UNIQUE_ID_ich_force_enable_hpet282
+ffffffff8108e5e0 t __UNIQUE_ID_ich_force_enable_hpet284
+ffffffff8108e5f0 t __UNIQUE_ID_ich_force_enable_hpet286
+ffffffff8108e600 t __UNIQUE_ID_ich_force_enable_hpet288
+ffffffff8108e610 t __UNIQUE_ID_ich_force_enable_hpet290
+ffffffff8108e620 t __UNIQUE_ID_ich_force_enable_hpet292
+ffffffff8108e630 t __UNIQUE_ID_ich_force_enable_hpet294
+ffffffff8108e640 t __UNIQUE_ID_old_ich_force_enable_hpet_user296
+ffffffff8108e660 t __UNIQUE_ID_old_ich_force_enable_hpet_user298
+ffffffff8108e680 t __UNIQUE_ID_old_ich_force_enable_hpet_user300
+ffffffff8108e6a0 t __UNIQUE_ID_old_ich_force_enable_hpet_user302
+ffffffff8108e6c0 t __UNIQUE_ID_old_ich_force_enable_hpet_user304
+ffffffff8108e6e0 t __UNIQUE_ID_old_ich_force_enable_hpet306
+ffffffff8108e6f0 t old_ich_force_enable_hpet
+ffffffff8108e840 t __UNIQUE_ID_old_ich_force_enable_hpet308
+ffffffff8108e850 t __UNIQUE_ID_vt8237_force_enable_hpet310
+ffffffff8108e860 t vt8237_force_enable_hpet
+ffffffff8108e9a0 t __UNIQUE_ID_vt8237_force_enable_hpet312
+ffffffff8108e9b0 t __UNIQUE_ID_vt8237_force_enable_hpet314
+ffffffff8108e9c0 t __UNIQUE_ID_ati_force_enable_hpet316
+ffffffff8108ebe0 t __UNIQUE_ID_nvidia_force_enable_hpet318
+ffffffff8108ecb0 t __UNIQUE_ID_nvidia_force_enable_hpet320
+ffffffff8108ed80 t __UNIQUE_ID_nvidia_force_enable_hpet322
+ffffffff8108ee50 t __UNIQUE_ID_nvidia_force_enable_hpet324
+ffffffff8108ef20 t __UNIQUE_ID_nvidia_force_enable_hpet326
+ffffffff8108eff0 t __UNIQUE_ID_nvidia_force_enable_hpet328
+ffffffff8108f0c0 t __UNIQUE_ID_nvidia_force_enable_hpet330
+ffffffff8108f190 t __UNIQUE_ID_nvidia_force_enable_hpet332
+ffffffff8108f260 t __UNIQUE_ID_nvidia_force_enable_hpet334
+ffffffff8108f330 t __UNIQUE_ID_nvidia_force_enable_hpet336
+ffffffff8108f400 t __UNIQUE_ID_nvidia_force_enable_hpet338
+ffffffff8108f4d0 t force_hpet_resume
+ffffffff8108f690 t __UNIQUE_ID_e6xx_force_enable_hpet340
+ffffffff8108f6f0 t __UNIQUE_ID_force_disable_hpet_msi342
+ffffffff8108f710 t __UNIQUE_ID_amd_disable_seq_and_redirect_scrub344
+ffffffff8108f7b0 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap346
+ffffffff8108f800 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap348
+ffffffff8108f850 t __UNIQUE_ID_quirk_intel_brickland_xeon_ras_cap350
+ffffffff8108f8a0 t __UNIQUE_ID_quirk_intel_purley_xeon_ras_cap352
+ffffffff8108f910 t arch_register_cpu
+ffffffff8108fa00 t arch_unregister_cpu
+ffffffff8108fa30 t apply_alternatives
+ffffffff8108ff50 t text_poke_early
+ffffffff81090010 t optimize_nops
+ffffffff810902a0 t apply_retpolines
+ffffffff81090940 t apply_returns
+ffffffff81090eb0 t apply_ibt_endbr
+ffffffff81090ec0 t alternatives_smp_module_add
+ffffffff81091070 t alternatives_smp_module_del
+ffffffff81091100 t alternatives_enable_smp
+ffffffff81091260 t alternatives_text_reserved
+ffffffff810912d0 t apply_paravirt
+ffffffff810914a0 t text_poke
+ffffffff810914d0 t __text_poke.llvm.3163363374992690926
+ffffffff81091880 t text_poke_memcpy.llvm.3163363374992690926
+ffffffff81091890 t text_poke_kgdb
+ffffffff810918c0 t text_poke_copy
+ffffffff81091960 t text_poke_set
+ffffffff81091a30 t text_poke_memset
+ffffffff81091a50 t text_poke_sync
+ffffffff81091a80 t do_sync_core.llvm.3163363374992690926
+ffffffff81091ab0 t text_poke_finish
+ffffffff81091ae0 t text_poke_loc_init
+ffffffff81091d20 t text_poke_bp_batch
+ffffffff81091fb0 t encode_dr7
+ffffffff81091ff0 t decode_dr7
+ffffffff81092030 t arch_install_hw_breakpoint
+ffffffff81092200 t arch_uninstall_hw_breakpoint
+ffffffff81092360 t arch_bp_generic_fields
+ffffffff810923d0 t arch_check_bp_in_kernelspace
+ffffffff81092430 t hw_breakpoint_arch_parse
+ffffffff81092670 t flush_ptrace_hw_breakpoint
+ffffffff81092710 t hw_breakpoint_restore
+ffffffff810927a0 t hw_breakpoint_exceptions_notify
+ffffffff81092970 t hw_breakpoint_pmu_read
+ffffffff81092980 t cyc2ns_read_begin
+ffffffff810929d0 t cyc2ns_read_end
+ffffffff810929f0 t native_sched_clock
+ffffffff81092a90 t native_sched_clock_from_tsc
+ffffffff81092b00 t sched_clock
+ffffffff81092b10 t using_native_sched_clock
+ffffffff81092b30 t check_tsc_unstable
+ffffffff81092b50 t mark_tsc_unstable
+ffffffff81092bc0 t native_calibrate_tsc
+ffffffff81092cb0 t native_calibrate_cpu_early
+ffffffff81092f10 t recalibrate_cpu_khz
+ffffffff81092f20 t tsc_save_sched_clock_state
+ffffffff81092f40 t tsc_restore_sched_clock_state
+ffffffff81093020 t unsynchronized_tsc
+ffffffff81093090 t convert_art_to_tsc
+ffffffff81093100 t convert_art_ns_to_tsc
+ffffffff81093160 t native_calibrate_cpu
+ffffffff81093190 t calibrate_delay_is_known
+ffffffff81093220 t time_cpufreq_notifier
+ffffffff81093450 t __set_cyc2ns_scale
+ffffffff810935b0 t read_tsc
+ffffffff810935d0 t tsc_cs_enable
+ffffffff810935f0 t tsc_resume
+ffffffff81093610 t tsc_cs_mark_unstable
+ffffffff81093660 t tsc_cs_tick_stable
+ffffffff810936a0 t tsc_refine_calibration_work
+ffffffff81093940 t tsc_read_refs
+ffffffff81093b20 t pit_hpet_ptimer_calibrate_cpu
+ffffffff81093f70 t cpu_khz_from_msr
+ffffffff810940e0 t native_io_delay
+ffffffff81094120 t mach_set_cmos_time
+ffffffff810941f0 t mach_get_cmos_time
+ffffffff81094290 t rtc_cmos_read
+ffffffff810942b0 t rtc_cmos_write
+ffffffff810942d0 t update_persistent_clock64
+ffffffff81094320 t read_persistent_clock64
+ffffffff81094340 t arch_remove_reservations
+ffffffff810944d0 t arch_static_call_transform
+ffffffff81094640 t __static_call_fixup
+ffffffff810946d0 t arch_dup_task_struct
+ffffffff81094700 t arch_release_task_struct
+ffffffff81094720 t exit_thread
+ffffffff81094760 t copy_thread
+ffffffff81094990 t flush_thread
+ffffffff810949f0 t disable_TSC
+ffffffff81094a90 t get_tsc_mode
+ffffffff81094ad0 t set_tsc_mode
+ffffffff81094be0 t arch_setup_new_exec
+ffffffff81094c40 t enable_cpuid
+ffffffff81094cc0 t speculation_ctrl_update
+ffffffff81094f30 t native_tss_update_io_bitmap
+ffffffff81095070 t speculative_store_bypass_ht_init
+ffffffff81095140 t speculation_ctrl_update_current
+ffffffff810951d0 t speculation_ctrl_update_tif
+ffffffff81095230 t __switch_to_xtra
+ffffffff810957a0 t arch_cpu_idle_enter
+ffffffff810957c0 t arch_cpu_idle_dead
+ffffffff810957e0 t arch_cpu_idle
+ffffffff81095800 t stop_this_cpu
+ffffffff81095860 t select_idle_routine
+ffffffff81095940 t amd_e400_idle
+ffffffff81095990 t amd_e400_c1e_apic_setup
+ffffffff810959d0 t arch_align_stack
+ffffffff81095a10 t arch_randomize_brk
+ffffffff81095a30 t __get_wchan
+ffffffff81095bb0 t do_arch_prctl_common
+ffffffff81095c90 t force_reload_TR
+ffffffff81095d50 t fpu__init_cpu
+ffffffff81095dc0 t __traceiter_x86_fpu_before_save
+ffffffff81095e10 t __traceiter_x86_fpu_after_save
+ffffffff81095e60 t __traceiter_x86_fpu_before_restore
+ffffffff81095eb0 t __traceiter_x86_fpu_after_restore
+ffffffff81095f00 t __traceiter_x86_fpu_regs_activated
+ffffffff81095f50 t __traceiter_x86_fpu_regs_deactivated
+ffffffff81095fa0 t __traceiter_x86_fpu_init_state
+ffffffff81095ff0 t __traceiter_x86_fpu_dropped
+ffffffff81096040 t __traceiter_x86_fpu_copy_src
+ffffffff81096090 t __traceiter_x86_fpu_copy_dst
+ffffffff810960e0 t __traceiter_x86_fpu_xstate_check_failed
+ffffffff81096130 t trace_event_raw_event_x86_fpu
+ffffffff81096230 t perf_trace_x86_fpu
+ffffffff81096370 t irq_fpu_usable
+ffffffff810963c0 t save_fpregs_to_fpstate
+ffffffff81096450 t restore_fpregs_from_fpstate
+ffffffff81096540 t fpu_reset_from_exception_fixup
+ffffffff81096560 t kernel_fpu_begin_mask
+ffffffff810966f0 t kernel_fpu_end
+ffffffff81096740 t fpu_sync_fpstate
+ffffffff810968a0 t fpstate_init_user
+ffffffff810968e0 t fpstate_reset
+ffffffff81096940 t fpu_clone
+ffffffff81096c10 t fpregs_restore_userregs.llvm.3930919036978742196
+ffffffff81096cd0 t fpu_thread_struct_whitelist
+ffffffff81096cf0 t fpu__drop
+ffffffff81096df0 t fpu__clear_user_states
+ffffffff81096ec0 t fpregs_mark_activate
+ffffffff81096f50 t fpu_flush_thread
+ffffffff81097040 t switch_fpu_return
+ffffffff81097050 t fpregs_assert_state_consistent
+ffffffff81097090 t fpu__exception_code
+ffffffff81097100 t trace_raw_output_x86_fpu
+ffffffff81097160 t local_bh_enable
+ffffffff81097180 t local_bh_enable
+ffffffff810971a0 t local_bh_enable
+ffffffff810971c0 t local_bh_enable
+ffffffff810971e0 t local_bh_enable
+ffffffff81097200 t local_bh_enable
+ffffffff81097220 t local_bh_enable
+ffffffff81097240 t local_bh_enable
+ffffffff81097260 t local_bh_enable
+ffffffff81097280 t local_bh_enable
+ffffffff810972a0 t local_bh_enable
+ffffffff810972c0 t local_bh_enable
+ffffffff810972e0 t local_bh_enable
+ffffffff81097300 t local_bh_enable
+ffffffff81097320 t local_bh_enable
+ffffffff81097340 t local_bh_enable
+ffffffff81097360 t local_bh_enable
+ffffffff81097380 t local_bh_enable
+ffffffff810973a0 t local_bh_enable
+ffffffff810973c0 t local_bh_enable
+ffffffff810973e0 t local_bh_enable
+ffffffff81097400 t local_bh_enable
+ffffffff81097420 t local_bh_enable
+ffffffff81097440 t local_bh_enable
+ffffffff81097460 t local_bh_enable
+ffffffff81097480 t local_bh_enable
+ffffffff810974a0 t local_bh_enable
+ffffffff810974c0 t local_bh_enable
+ffffffff810974e0 t local_bh_enable
+ffffffff81097500 t local_bh_enable
+ffffffff81097520 t local_bh_enable
+ffffffff81097540 t local_bh_enable
+ffffffff81097560 t local_bh_enable
+ffffffff81097580 t local_bh_enable
+ffffffff810975a0 t local_bh_enable
+ffffffff810975c0 t local_bh_enable
+ffffffff810975e0 t local_bh_enable
+ffffffff81097600 t local_bh_enable
+ffffffff81097620 t local_bh_enable
+ffffffff81097640 t local_bh_enable
+ffffffff81097660 t local_bh_enable
+ffffffff81097680 t local_bh_enable
+ffffffff810976a0 t regset_fpregs_active
+ffffffff810976b0 t regset_xregset_fpregs_active
+ffffffff810976c0 t xfpregs_get
+ffffffff81097750 t xfpregs_set
+ffffffff810978b0 t xstateregs_get
+ffffffff81097910 t xstateregs_set
+ffffffff81097a10 t copy_fpstate_to_sigframe
+ffffffff81097ce0 t fpu__restore_sig
+ffffffff810980a0 t fpu__alloc_mathframe
+ffffffff810980f0 t cpu_has_xfeatures
+ffffffff81098160 t fpu__init_cpu_xstate
+ffffffff81098260 t xfeature_size
+ffffffff81098290 t fpu__resume_cpu
+ffffffff81098330 t get_xsave_addr
+ffffffff81098380 t __raw_xsave_addr
+ffffffff81098470 t arch_set_user_pkey_access
+ffffffff810984f0 t __copy_xstate_to_uabi_buf
+ffffffff81098960 t copy_xstate_to_uabi_buf
+ffffffff81098990 t copy_uabi_from_kernel_to_xstate
+ffffffff810989b0 t copy_uabi_to_xstate.llvm.15222153720283226745
+ffffffff81098cb0 t copy_sigframe_from_user_to_xstate
+ffffffff81098ce0 t xsaves
+ffffffff81098d40 t xrstors
+ffffffff81098da0 t xfd_validate_state
+ffffffff81098e20 t fpstate_free
+ffffffff81098e50 t __xfd_enable_feature
+ffffffff81099230 t xfd_enable_feature
+ffffffff81099250 t xstate_get_guest_group_perm
+ffffffff81099280 t fpu_xstate_prctl
+ffffffff81099560 t proc_pid_arch_status
+ffffffff810995d0 t xstate_calculate_size
+ffffffff810996a0 t regs_query_register_offset
+ffffffff81099970 t regs_query_register_name
+ffffffff810999a0 t ptrace_disable
+ffffffff810999b0 t arch_ptrace
+ffffffff81099bc0 t getreg
+ffffffff81099d10 t ptrace_get_debugreg
+ffffffff81099d80 t putreg
+ffffffff81099f50 t ptrace_set_debugreg
+ffffffff8109a4e0 t task_user_regset_view
+ffffffff8109a500 t send_sigtrap
+ffffffff8109a550 t user_single_step_report
+ffffffff8109a5a0 t ptrace_triggered
+ffffffff8109a610 t genregs_get
+ffffffff8109a6c0 t genregs_set
+ffffffff8109a760 t ioperm_get
+ffffffff8109a7c0 t ioperm_active
+ffffffff8109a7f0 t convert_ip_to_linear
+ffffffff8109a8a0 t set_task_blockstep
+ffffffff8109a930 t user_enable_single_step
+ffffffff8109a950 t enable_step.llvm.740349249066805399
+ffffffff8109ac70 t user_enable_block_step
+ffffffff8109ac90 t user_disable_single_step
+ffffffff8109ad30 t i8237A_resume
+ffffffff8109ae30 t arch_stack_walk
+ffffffff8109af80 t arch_stack_walk_reliable
+ffffffff8109b0f0 t arch_stack_walk_user
+ffffffff8109b1d0 t cache_get_priv_group
+ffffffff8109b280 t cacheinfo_amd_init_llc_id
+ffffffff8109b370 t cacheinfo_hygon_init_llc_id
+ffffffff8109b3b0 t init_amd_cacheinfo
+ffffffff8109b430 t init_hygon_cacheinfo
+ffffffff8109b470 t init_intel_cacheinfo
+ffffffff8109b9b0 t cpuid4_cache_lookup_regs
+ffffffff8109bc70 t init_cache_level
+ffffffff8109bcc0 t populate_cache_leaves
+ffffffff8109c120 t cache_disable_0_show
+ffffffff8109c1c0 t cache_disable_0_store
+ffffffff8109c1e0 t store_cache_disable
+ffffffff8109c450 t cache_disable_1_show
+ffffffff8109c4f0 t cache_disable_1_store
+ffffffff8109c520 t subcaches_show
+ffffffff8109c560 t subcaches_store
+ffffffff8109c620 t cache_private_attrs_is_visible
+ffffffff8109c680 t amd_init_l3_cache
+ffffffff8109c7b0 t init_scattered_cpuid_features
+ffffffff8109c870 t detect_extended_topology_early
+ffffffff8109c900 t detect_extended_topology
+ffffffff8109cb20 t get_llc_id
+ffffffff8109cb50 t native_write_cr0
+ffffffff8109cba0 t native_write_cr4
+ffffffff8109cc00 t cr4_update_irqsoff
+ffffffff8109cc40 t cr4_read_shadow
+ffffffff8109cc60 t cr4_init
+ffffffff8109cca0 t cet_disable
+ffffffff8109ccd0 t load_percpu_segment
+ffffffff8109cd20 t load_direct_gdt
+ffffffff8109cd60 t load_fixmap_gdt
+ffffffff8109cd90 t switch_to_new_gdt
+ffffffff8109ce00 t detect_num_cpu_cores
+ffffffff8109ce40 t cpu_detect_cache_sizes
+ffffffff8109ceb0 t detect_ht_early
+ffffffff8109cf30 t detect_ht
+ffffffff8109d070 t cpu_detect
+ffffffff8109d110 t get_cpu_cap
+ffffffff8109d370 t get_cpu_address_sizes
+ffffffff8109d3b0 t x86_read_arch_cap_msr
+ffffffff8109d400 t check_null_seg_clears_base
+ffffffff8109d500 t identify_cpu
+ffffffff8109de10 t identify_secondary_cpu
+ffffffff8109dec0 t print_cpu_info
+ffffffff8109df90 t syscall_init
+ffffffff8109e0e0 t cpu_init_exception_handling
+ffffffff8109e330 t cpu_init
+ffffffff8109e5a0 t cpu_init_secondary
+ffffffff8109e5c0 t arch_smt_update
+ffffffff8109e5e0 t filter_cpuid_features
+ffffffff8109e6c0 t default_init
+ffffffff8109e730 t x86_init_rdrand
+ffffffff8109e910 t x86_match_cpu
+ffffffff8109ea00 t x86_cpu_has_min_microcode_rev
+ffffffff8109ea90 t update_spec_ctrl_cond
+ffffffff8109eae0 t spec_ctrl_current
+ffffffff8109eb00 t x86_virt_spec_ctrl
+ffffffff8109eb50 t update_srbds_msr
+ffffffff8109ec00 t retpoline_module_ok
+ffffffff8109ec40 t cpu_bugs_smt_update
+ffffffff8109ee20 t arch_prctl_spec_ctrl_set
+ffffffff8109f0a0 t arch_seccomp_spec_mitigate
+ffffffff8109f150 t arch_prctl_spec_ctrl_get
+ffffffff8109f280 t x86_spec_ctrl_setup_ap
+ffffffff8109f340 t update_spec_ctrl
+ffffffff8109f380 t x86_amd_ssb_disable
+ffffffff8109f400 t cpu_show_meltdown
+ffffffff8109f520 t cpu_show_common
+ffffffff8109f970 t cpu_show_spectre_v1
+ffffffff8109f9e0 t cpu_show_spectre_v2
+ffffffff8109fa00 t cpu_show_spec_store_bypass
+ffffffff8109fa70 t cpu_show_l1tf
+ffffffff8109fb00 t cpu_show_mds
+ffffffff8109fb20 t cpu_show_tsx_async_abort
+ffffffff8109fbd0 t cpu_show_itlb_multihit
+ffffffff8109fc40 t cpu_show_srbds
+ffffffff8109fcb0 t cpu_show_mmio_stale_data
+ffffffff8109fce0 t cpu_show_retbleed
+ffffffff8109fdb0 t update_stibp_msr
+ffffffff8109fe00 t arch_set_max_freq_ratio
+ffffffff8109fe30 t freq_invariance_set_perf_ratio
+ffffffff8109fea0 t arch_scale_freq_tick
+ffffffff810a0000 t arch_freq_get_on_cpu
+ffffffff810a00b0 t ap_init_aperfmperf
+ffffffff810a0120 t init_counter_refs
+ffffffff810a0190 t disable_freq_invariance_workfn
+ffffffff810a0210 t clear_cpu_cap
+ffffffff810a0550 t setup_clear_cpu_cap
+ffffffff810a0850 t umwait_cpu_online
+ffffffff810a0890 t umwait_cpu_offline
+ffffffff810a08c0 t umwait_update_control_msr
+ffffffff810a0900 t umwait_syscore_resume
+ffffffff810a0940 t enable_c02_show
+ffffffff810a0970 t enable_c02_store
+ffffffff810a0a20 t max_time_show
+ffffffff810a0a50 t max_time_store
+ffffffff810a0b10 t c_start.llvm.2822526003943565688
+ffffffff810a0b70 t c_stop.llvm.2822526003943565688
+ffffffff810a0b80 t c_next.llvm.2822526003943565688
+ffffffff810a0be0 t show_cpuinfo.llvm.2822526003943565688
+ffffffff810a1020 t init_ia32_feat_ctl
+ffffffff810a1370 t intel_cpu_collect_info
+ffffffff810a1430 t handle_guest_split_lock
+ffffffff810a14e0 t split_lock_warn
+ffffffff810a1600 t handle_user_split_lock
+ffffffff810a1640 t handle_bus_lock
+ffffffff810a16e0 t get_this_hybrid_cpu_type
+ffffffff810a1700 t early_init_intel
+ffffffff810a1ad0 t bsp_init_intel
+ffffffff810a1ae0 t init_intel
+ffffffff810a2000 t intel_detect_tlb
+ffffffff810a23c0 t split_lock_verify_msr
+ffffffff810a2490 t __split_lock_reenable_unlock
+ffffffff810a24e0 t __split_lock_reenable
+ffffffff810a2520 t splitlock_cpu_offline
+ffffffff810a2560 t pconfig_target_supported
+ffffffff810a2590 t tsx_dev_mode_disable
+ffffffff810a2630 t tsx_clear_cpuid
+ffffffff810a2700 t tsx_ap_init
+ffffffff810a27c0 t intel_epb_online
+ffffffff810a2800 t intel_epb_offline
+ffffffff810a2860 t intel_epb_restore
+ffffffff810a2910 t energy_perf_bias_show
+ffffffff810a2980 t energy_perf_bias_store
+ffffffff810a2a70 t intel_epb_save
+ffffffff810a2ab0 t amd_get_nodes_per_socket
+ffffffff810a2ad0 t init_spectral_chicken
+ffffffff810a2b70 t set_dr_addr_mask
+ffffffff810a2bd0 t amd_get_highest_perf
+ffffffff810a2c30 t early_init_amd
+ffffffff810a2f00 t bsp_init_amd
+ffffffff810a30f0 t init_amd
+ffffffff810a37e0 t cpu_detect_tlb_amd
+ffffffff810a38b0 t cpu_has_amd_erratum
+ffffffff810a39a0 t early_init_hygon
+ffffffff810a3ad0 t bsp_init_hygon
+ffffffff810a3c40 t init_hygon
+ffffffff810a3e50 t cpu_detect_tlb_hygon
+ffffffff810a3ef0 t early_init_centaur
+ffffffff810a3f30 t init_centaur
+ffffffff810a4120 t early_init_zhaoxin
+ffffffff810a4190 t init_zhaoxin
+ffffffff810a4390 t mtrr_add_page
+ffffffff810a4850 t mtrr_add
+ffffffff810a48b0 t mtrr_del_page
+ffffffff810a4a70 t mtrr_del
+ffffffff810a4ad0 t arch_phys_wc_add
+ffffffff810a4b70 t arch_phys_wc_del
+ffffffff810a4bb0 t arch_phys_wc_index
+ffffffff810a4bd0 t mtrr_ap_init
+ffffffff810a4c60 t mtrr_save_state
+ffffffff810a4ca0 t set_mtrr_aps_delayed_init
+ffffffff810a4cd0 t mtrr_aps_init
+ffffffff810a4d70 t mtrr_bp_restore
+ffffffff810a4da0 t mtrr_rendezvous_handler
+ffffffff810a4e10 t mtrr_save
+ffffffff810a4e80 t mtrr_restore
+ffffffff810a4f80 t mtrr_attrib_to_str
+ffffffff810a4fb0 t mtrr_open
+ffffffff810a5010 t mtrr_write
+ffffffff810a5250 t mtrr_close
+ffffffff810a52f0 t mtrr_ioctl
+ffffffff810a57d0 t mtrr_seq_show
+ffffffff810a5940 t mtrr_type_lookup
+ffffffff810a5b10 t mtrr_type_lookup_variable
+ffffffff810a5cc0 t fill_mtrr_var_range
+ffffffff810a5d30 t mtrr_save_fixed_ranges
+ffffffff810a5d50 t get_fixed_ranges
+ffffffff810a5e70 t prepare_set
+ffffffff810a5f80 t post_set
+ffffffff810a6030 t mtrr_wrmsr
+ffffffff810a60a0 t generic_get_free_region
+ffffffff810a6160 t generic_validate_add_page
+ffffffff810a6250 t positive_have_wrcomb
+ffffffff810a6260 t generic_set_mtrr.llvm.12055681661683746592
+ffffffff810a64e0 t generic_set_all.llvm.12055681661683746592
+ffffffff810a6a70 t generic_get_mtrr.llvm.12055681661683746592
+ffffffff810a6bd0 t generic_have_wrcomb.llvm.12055681661683746592
+ffffffff810a6c10 t k8_check_syscfg_dram_mod_en
+ffffffff810a6cf0 t load_ucode_ap
+ffffffff810a6d70 t find_microcode_in_initrd
+ffffffff810a6e50 t reload_early_microcode
+ffffffff810a6eb0 t microcode_bsp_resume
+ffffffff810a6f80 t mc_cpu_starting
+ffffffff810a7090 t mc_cpu_online
+ffffffff810a70d0 t mc_cpu_down_prep
+ffffffff810a7100 t mc_device_add
+ffffffff810a7160 t mc_device_remove
+ffffffff810a71b0 t microcode_init_cpu
+ffffffff810a7300 t pf_show
+ffffffff810a7360 t collect_cpu_info_local
+ffffffff810a73a0 t apply_microcode_local
+ffffffff810a73e0 t scan_microcode
+ffffffff810a7700 t __load_ucode_intel
+ffffffff810a7830 t apply_microcode_early
+ffffffff810a7910 t load_ucode_intel_ap
+ffffffff810a7990 t reload_ucode_intel
+ffffffff810a7ad0 t microcode_sanity_check
+ffffffff810a7d80 t save_microcode_patch
+ffffffff810a80b0 t request_microcode_fw
+ffffffff810a8800 t apply_microcode_intel
+ffffffff810a8a90 t collect_cpu_info
+ffffffff810a8b80 t reserve_perfctr_nmi
+ffffffff810a8c20 t release_perfctr_nmi
+ffffffff810a8cc0 t reserve_evntsel_nmi
+ffffffff810a8d60 t release_evntsel_nmi
+ffffffff810a8e00 t vmware_get_tsc_khz
+ffffffff810a8e20 t vmware_sched_clock
+ffffffff810a8e60 t vmware_steal_clock
+ffffffff810a8eb0 t vmware_cpu_online
+ffffffff810a8f50 t vmware_cpu_down_prepare
+ffffffff810a8f90 t vmware_pv_reboot_notify
+ffffffff810a8fc0 t vmware_pv_guest_cpu_reboot
+ffffffff810a8ff0 t hv_get_tsc_khz
+ffffffff810a9040 t hv_nmi_unknown
+ffffffff810a9080 t hv_get_nmi_reason
+ffffffff810a9090 t acpi_gsi_to_irq
+ffffffff810a9130 t acpi_register_gsi
+ffffffff810a9150 t acpi_isa_irq_to_gsi
+ffffffff810a9190 t acpi_register_gsi_pic
+ffffffff810a91b0 t acpi_unregister_gsi
+ffffffff810a91d0 t acpi_map_cpu
+ffffffff810a9280 t acpi_register_lapic
+ffffffff810a9300 t acpi_unmap_cpu
+ffffffff810a9340 t acpi_register_ioapic
+ffffffff810a9440 t acpi_unregister_ioapic
+ffffffff810a9480 t acpi_ioapic_registered
+ffffffff810a94c0 t __acpi_acquire_global_lock
+ffffffff810a94f0 t __acpi_release_global_lock
+ffffffff810a9520 t x86_default_set_root_pointer
+ffffffff810a9540 t x86_default_get_root_pointer
+ffffffff810a9560 t acpi_register_gsi_ioapic
+ffffffff810a9720 t acpi_unregister_gsi_ioapic
+ffffffff810a9760 t acpi_wakeup_cpu
+ffffffff810a97d0 t acpi_get_wakeup_address
+ffffffff810a97f0 t x86_acpi_enter_sleep_state
+ffffffff810a9800 t x86_acpi_suspend_lowlevel
+ffffffff810a99a0 t cpc_supported_by_cpu
+ffffffff810a9a20 t cpc_ffh_supported
+ffffffff810a9a30 t cpc_read_ffh
+ffffffff810a9a90 t cpc_write_ffh
+ffffffff810a9b40 t init_freq_invariance_cppc
+ffffffff810a9c20 t acpi_processor_power_init_bm_check
+ffffffff810a9d00 t acpi_processor_ffh_cstate_probe
+ffffffff810a9e00 t acpi_processor_ffh_cstate_probe_cpu
+ffffffff810a9ec0 t machine_real_restart
+ffffffff810a9f00 t mach_reboot_fixups
+ffffffff810a9f10 t native_machine_shutdown
+ffffffff810a9f50 t native_machine_restart
+ffffffff810a9fa0 t native_machine_halt
+ffffffff810a9fc0 t native_machine_power_off
+ffffffff810a9ff0 t native_machine_emergency_restart
+ffffffff810aa230 t machine_power_off
+ffffffff810aa250 t machine_shutdown
+ffffffff810aa270 t machine_emergency_restart
+ffffffff810aa290 t machine_restart
+ffffffff810aa2b0 t machine_halt
+ffffffff810aa2d0 t machine_crash_shutdown
+ffffffff810aa2f0 t cpu_emergency_disable_virtualization
+ffffffff810aa470 t nmi_shootdown_cpus
+ffffffff810aa520 t crash_nmi_callback
+ffffffff810aa580 t run_crash_ipi_callback
+ffffffff810aa5e0 t nmi_panic_self_stop
+ffffffff810aa650 t __sysvec_reboot
+ffffffff810aa680 t __sysvec_call_function
+ffffffff810aa750 t __sysvec_call_function_single
+ffffffff810aa820 t native_stop_other_cpus
+ffffffff810aa990 t smp_stop_nmi_callback
+ffffffff810aa9c0 t arch_update_cpu_topology
+ffffffff810aa9e0 t topology_is_primary_thread
+ffffffff810aaa10 t topology_smt_supported
+ffffffff810aaa30 t topology_phys_to_logical_pkg
+ffffffff810aaab0 t topology_phys_to_logical_die
+ffffffff810aab50 t topology_update_package_map
+ffffffff810aac30 t topology_update_die_map
+ffffffff810aad20 t smp_store_cpu_info
+ffffffff810aad90 t set_cpu_sibling_map
+ffffffff810ab280 t match_smt
+ffffffff810ab370 t cpu_coregroup_mask
+ffffffff810ab3a0 t cpu_clustergroup_mask
+ffffffff810ab3d0 t __inquire_remote_apic
+ffffffff810ab660 t wakeup_secondary_cpu_via_nmi
+ffffffff810ab730 t common_cpu_up
+ffffffff810ab7a0 t native_cpu_up
+ffffffff810abfd0 t arch_disable_smp_support
+ffffffff810ac000 t arch_thaw_secondary_cpus_begin
+ffffffff810ac010 t arch_thaw_secondary_cpus_end
+ffffffff810ac020 t cpu_disable_common
+ffffffff810ac440 t native_cpu_disable
+ffffffff810ac470 t common_cpu_die
+ffffffff810ac4c0 t native_cpu_die
+ffffffff810ac500 t play_dead_common
+ffffffff810ac520 t cond_wakeup_cpu0
+ffffffff810ac550 t hlt_play_dead
+ffffffff810ac5a0 t native_play_dead
+ffffffff810ac780 t start_secondary
+ffffffff810ac820 t smp_callin
+ffffffff810ac8e0 t wakeup_cpu0_nmi
+ffffffff810ac920 t cpu_smt_mask
+ffffffff810ac950 t cpu_smt_mask
+ffffffff810ac980 t x86_smt_flags
+ffffffff810ac9a0 t x86_cluster_flags
+ffffffff810ac9c0 t x86_core_flags
+ffffffff810ac9e0 t cpu_cpu_mask
+ffffffff810aca00 t cpu_cpu_mask
+ffffffff810aca20 t mark_tsc_async_resets
+ffffffff810aca60 t tsc_verify_tsc_adjust
+ffffffff810acb70 t tsc_store_and_check_tsc_adjust
+ffffffff810acd70 t check_tsc_sync_source
+ffffffff810acf20 t check_tsc_warp
+ffffffff810ad080 t check_tsc_sync_target
+ffffffff810ad1f0 t tsc_sync_check_timer_fn
+ffffffff810ad250 t native_apic_wait_icr_idle
+ffffffff810ad290 t native_safe_apic_wait_icr_idle
+ffffffff810ad2f0 t native_apic_icr_write
+ffffffff810ad380 t native_apic_icr_read
+ffffffff810ad3d0 t lapic_get_maxlvt
+ffffffff810ad400 t setup_APIC_eilvt
+ffffffff810ad570 t lapic_update_tsc_freq
+ffffffff810ad5a0 t __lapic_update_tsc_freq.llvm.14138436965395970410
+ffffffff810ad5f0 t setup_APIC_timer
+ffffffff810ad6d0 t setup_secondary_APIC_clock
+ffffffff810ad6f0 t __sysvec_apic_timer_interrupt
+ffffffff810ad8c0 t clear_local_APIC
+ffffffff810adaf0 t apic_soft_disable
+ffffffff810adb40 t disable_local_APIC
+ffffffff810adba0 t lapic_shutdown
+ffffffff810adc60 t apic_ap_setup
+ffffffff810adc80 t setup_local_APIC.llvm.14138436965395970410
+ffffffff810ae140 t end_local_APIC_setup.llvm.14138436965395970410
+ffffffff810ae240 t x2apic_setup
+ffffffff810ae340 t x2apic_hw_locked
+ffffffff810ae390 t __x2apic_disable
+ffffffff810ae460 t __x2apic_enable
+ffffffff810ae500 t read_apic_id
+ffffffff810ae540 t __spurious_interrupt
+ffffffff810ae560 t __sysvec_spurious_apic_interrupt
+ffffffff810ae580 t __sysvec_error_interrupt
+ffffffff810ae740 t disconnect_bsp_APIC
+ffffffff810ae800 t arch_match_cpu_phys_id
+ffffffff810ae830 t apic_id_is_primary_thread
+ffffffff810ae870 t generic_processor_info
+ffffffff810aebc0 t hard_smp_processor_id
+ffffffff810aec00 t __irq_msi_compose_msg
+ffffffff810aecb0 t x86_msi_msg_get_destid
+ffffffff810aece0 t apic_is_clustered_box
+ffffffff810aed10 t lapic_next_event
+ffffffff810aed40 t lapic_timer_set_periodic
+ffffffff810aedd0 t lapic_timer_set_oneshot
+ffffffff810aee60 t lapic_timer_shutdown
+ffffffff810aeec0 t lapic_timer_broadcast
+ffffffff810aeef0 t __setup_APIC_LVTT
+ffffffff810aef70 t lapic_next_deadline
+ffffffff810aefc0 t handle_spurious_interrupt
+ffffffff810af100 t lapic_suspend
+ffffffff810af350 t lapic_resume
+ffffffff810af710 t set_multi
+ffffffff810af740 t apic_default_calc_apicid
+ffffffff810af770 t apic_flat_calc_apicid
+ffffffff810af790 t default_check_apicid_used
+ffffffff810af7b0 t default_ioapic_phys_id_map
+ffffffff810af7d0 t default_cpu_present_to_apicid
+ffffffff810af810 t default_check_phys_apicid_present
+ffffffff810af830 t default_apic_id_valid
+ffffffff810af850 t noop_apic_write
+ffffffff810af880 t noop_apic_read
+ffffffff810af8b0 t noop_apic_wait_icr_idle
+ffffffff810af8c0 t noop_safe_apic_wait_icr_idle
+ffffffff810af8d0 t noop_send_IPI
+ffffffff810af8e0 t noop_send_IPI_mask
+ffffffff810af8f0 t noop_send_IPI_mask_allbutself
+ffffffff810af900 t noop_send_IPI_allbutself
+ffffffff810af910 t noop_send_IPI_all
+ffffffff810af920 t noop_send_IPI_self
+ffffffff810af930 t noop_apic_icr_read
+ffffffff810af940 t noop_apic_icr_write
+ffffffff810af950 t noop_probe
+ffffffff810af960 t noop_apic_id_registered
+ffffffff810af980 t noop_init_apic_ldr
+ffffffff810af990 t physid_set_mask_of_physid
+ffffffff810af9c0 t noop_phys_pkg_id
+ffffffff810af9d0 t noop_get_apic_id
+ffffffff810af9e0 t noop_wakeup_secondary_cpu
+ffffffff810af9f0 t apic_smt_update
+ffffffff810afa60 t apic_send_IPI_allbutself
+ffffffff810afac0 t native_smp_send_reschedule
+ffffffff810afb10 t native_send_call_func_single_ipi
+ffffffff810afb40 t native_send_call_func_ipi
+ffffffff810afbf0 t __default_send_IPI_shortcut
+ffffffff810afc50 t __default_send_IPI_dest_field
+ffffffff810afcd0 t default_send_IPI_single_phys
+ffffffff810afda0 t default_send_IPI_mask_sequence_phys
+ffffffff810afea0 t default_send_IPI_mask_allbutself_phys
+ffffffff810affd0 t default_send_IPI_single
+ffffffff810b0010 t default_send_IPI_allbutself
+ffffffff810b0070 t default_send_IPI_all
+ffffffff810b00d0 t default_send_IPI_self
+ffffffff810b0130 t lock_vector_lock
+ffffffff810b0150 t unlock_vector_lock
+ffffffff810b0170 t init_irq_alloc_info
+ffffffff810b01c0 t copy_irq_alloc_info
+ffffffff810b0230 t irqd_cfg
+ffffffff810b0260 t irq_cfg
+ffffffff810b02a0 t x86_fwspec_is_ioapic
+ffffffff810b0380 t x86_fwspec_is_hpet
+ffffffff810b0400 t lapic_assign_legacy_vector
+ffffffff810b0420 t lapic_online
+ffffffff810b04b0 t lapic_offline
+ffffffff810b04e0 t apic_ack_irq
+ffffffff810b0520 t apic_ack_edge
+ffffffff810b0640 t irq_complete_move
+ffffffff810b0680 t __sysvec_irq_move_cleanup
+ffffffff810b0770 t send_cleanup_vector
+ffffffff810b0810 t __send_cleanup_vector
+ffffffff810b08a0 t irq_force_complete_move
+ffffffff810b0930 t free_moved_vector
+ffffffff810b0a40 t lapic_can_unplug_cpu
+ffffffff810b0ae0 t x86_vector_select
+ffffffff810b0ba0 t x86_vector_alloc_irqs
+ffffffff810b0fa0 t x86_vector_free_irqs
+ffffffff810b1120 t x86_vector_activate
+ffffffff810b1350 t x86_vector_deactivate
+ffffffff810b1470 t apic_set_affinity
+ffffffff810b1500 t apic_retrigger_irq
+ffffffff810b1570 t x86_vector_msi_compose_msg
+ffffffff810b15b0 t assign_managed_vector
+ffffffff810b16f0 t assign_vector_locked
+ffffffff810b1830 t apic_update_vector
+ffffffff810b1990 t apic_update_irq_cfg
+ffffffff810b1a80 t clear_irq_vector
+ffffffff810b1c10 t reserve_irq_vector_locked
+ffffffff810b1ce0 t assign_irq_vector_any_locked
+ffffffff810b1d90 t arch_trigger_cpumask_backtrace
+ffffffff810b1db0 t nmi_raise_cpu_backtrace.llvm.5643793800606745026
+ffffffff810b1de0 t nmi_cpu_backtrace_handler
+ffffffff810b1e00 t mpc_ioapic_id
+ffffffff810b1e30 t mpc_ioapic_addr
+ffffffff810b1e60 t disable_ioapic_support
+ffffffff810b1e90 t mp_save_irq
+ffffffff810b1f70 t alloc_ioapic_saved_registers
+ffffffff810b1fe0 t native_io_apic_read
+ffffffff810b2030 t clear_IO_APIC
+ffffffff810b20c0 t clear_IO_APIC_pin
+ffffffff810b2400 t save_ioapic_entries
+ffffffff810b2550 t ioapic_read_entry
+ffffffff810b25d0 t mask_ioapic_entries
+ffffffff810b2740 t ioapic_write_entry
+ffffffff810b27f0 t restore_ioapic_entries
+ffffffff810b2950 t acpi_get_override_irq
+ffffffff810b2970 t __acpi_get_override_irq.llvm.14548536985639343777
+ffffffff810b2bc0 t ioapic_set_alloc_attr
+ffffffff810b2c30 t mp_map_gsi_to_irq
+ffffffff810b2dd0 t mp_find_ioapic
+ffffffff810b2e60 t mp_find_ioapic_pin
+ffffffff810b2eb0 t find_irq_entry
+ffffffff810b2f80 t mp_map_pin_to_irq
+ffffffff810b3300 t mp_unmap_irq
+ffffffff810b3370 t IO_APIC_get_PCI_irq_vector
+ffffffff810b3630 t ioapic_zap_locks
+ffffffff810b3650 t native_restore_boot_irq_mode
+ffffffff810b3780 t restore_boot_irq_mode
+ffffffff810b37b0 t mp_irqdomain_create
+ffffffff810b3980 t arch_dynirq_lower_bound
+ffffffff810b39b0 t mp_register_ioapic
+ffffffff810b4090 t mp_unregister_ioapic
+ffffffff810b42e0 t mp_ioapic_registered
+ffffffff810b4370 t mp_irqdomain_alloc
+ffffffff810b4660 t mp_irqdomain_ioapic_idx
+ffffffff810b4670 t add_pin_to_irq_node
+ffffffff810b4740 t mp_irqdomain_free
+ffffffff810b4820 t mp_irqdomain_activate
+ffffffff810b4860 t ioapic_configure_entry
+ffffffff810b4990 t mp_irqdomain_deactivate
+ffffffff810b4a50 t __eoi_ioapic_pin
+ffffffff810b4b70 t irq_is_level
+ffffffff810b4be0 t alloc_isa_irq_from_domain
+ffffffff810b4d60 t mp_check_pin_attr
+ffffffff810b4e80 t startup_ioapic_irq
+ffffffff810b4f60 t mask_ioapic_irq
+ffffffff810b5030 t unmask_ioapic_irq
+ffffffff810b50d0 t ioapic_ack_level
+ffffffff810b52d0 t ioapic_set_affinity
+ffffffff810b5340 t ioapic_irq_get_chip_state
+ffffffff810b5400 t ioapic_ir_ack_level
+ffffffff810b5470 t mp_alloc_timer_irq
+ffffffff810b5570 t apic_is_x2apic_enabled
+ffffffff810b55c0 t ack_lapic_irq
+ffffffff810b55f0 t mask_lapic_irq
+ffffffff810b5630 t unmask_lapic_irq
+ffffffff810b5670 t ioapic_resume
+ffffffff810b5780 t pci_msi_prepare
+ffffffff810b5800 t arch_restore_msi_irqs
+ffffffff810b5810 t msi_set_affinity
+ffffffff810b5aa0 t x2apic_apic_id_valid
+ffffffff810b5ac0 t x2apic_apic_id_registered
+ffffffff810b5ad0 t __x2apic_send_IPI_dest
+ffffffff810b5b20 t native_x2apic_icr_write
+ffffffff810b5b60 t native_x2apic_icr_write
+ffffffff810b5ba0 t __x2apic_send_IPI_shorthand
+ffffffff810b5be0 t x2apic_get_apic_id
+ffffffff810b5bf0 t x2apic_set_apic_id
+ffffffff810b5c00 t x2apic_phys_pkg_id
+ffffffff810b5c20 t x2apic_send_IPI_self
+ffffffff810b5c50 t native_apic_msr_eoi_write
+ffffffff810b5c70 t native_apic_msr_eoi_write
+ffffffff810b5c90 t native_apic_msr_write
+ffffffff810b5cf0 t native_apic_msr_write
+ffffffff810b5d50 t native_apic_msr_read
+ffffffff810b5da0 t native_apic_msr_read
+ffffffff810b5df0 t native_x2apic_wait_icr_idle
+ffffffff810b5e00 t native_x2apic_wait_icr_idle
+ffffffff810b5e10 t native_safe_x2apic_wait_icr_idle
+ffffffff810b5e20 t native_safe_x2apic_wait_icr_idle
+ffffffff810b5e30 t x2apic_send_IPI
+ffffffff810b5e90 t x2apic_send_IPI
+ffffffff810b5ec0 t x2apic_send_IPI_mask
+ffffffff810b5ee0 t x2apic_send_IPI_mask
+ffffffff810b5f00 t x2apic_send_IPI_mask_allbutself
+ffffffff810b5f20 t x2apic_send_IPI_mask_allbutself
+ffffffff810b5f40 t x2apic_send_IPI_allbutself
+ffffffff810b5f90 t x2apic_send_IPI_allbutself
+ffffffff810b5fb0 t x2apic_send_IPI_all
+ffffffff810b6000 t x2apic_send_IPI_all
+ffffffff810b6020 t native_x2apic_icr_read
+ffffffff810b6060 t native_x2apic_icr_read
+ffffffff810b60a0 t x2apic_phys_probe
+ffffffff810b6100 t x2apic_acpi_madt_oem_check
+ffffffff810b61a0 t x2apic_acpi_madt_oem_check
+ffffffff810b6200 t init_x2apic_ldr
+ffffffff810b6210 t init_x2apic_ldr
+ffffffff810b62e0 t __x2apic_send_IPI_mask
+ffffffff810b63f0 t __x2apic_send_IPI_mask
+ffffffff810b6580 t x2apic_calc_apicid
+ffffffff810b65a0 t x2apic_cluster_probe
+ffffffff810b6660 t x2apic_prepare_cpu
+ffffffff810b6710 t x2apic_dead_cpu
+ffffffff810b6750 t flat_init_apic_ldr
+ffffffff810b67c0 t native_apic_mem_write
+ffffffff810b67e0 t native_apic_mem_read
+ffffffff810b6800 t flat_send_IPI_mask
+ffffffff810b6860 t flat_send_IPI_mask_allbutself
+ffffffff810b68f0 t flat_probe
+ffffffff810b6900 t flat_acpi_madt_oem_check
+ffffffff810b6910 t flat_apic_id_registered
+ffffffff810b6950 t flat_phys_pkg_id
+ffffffff810b6970 t flat_get_apic_id
+ffffffff810b6990 t set_apic_id
+ffffffff810b69a0 t default_inquire_remote_apic
+ffffffff810b69c0 t physflat_probe
+ffffffff810b6a10 t physflat_acpi_madt_oem_check
+ffffffff810b6a90 t physflat_init_apic_ldr
+ffffffff810b6aa0 t trace_clock_x86_tsc
+ffffffff810b6ac0 t arch_crash_save_vmcoreinfo
+ffffffff810b6b60 t machine_kexec_prepare
+ffffffff810b7110 t machine_kexec_cleanup
+ffffffff810b7190 t machine_kexec
+ffffffff810b7330 t arch_kexec_kernel_image_load
+ffffffff810b7390 t arch_kexec_apply_relocations_add
+ffffffff810b75b0 t arch_kimage_file_post_load_cleanup
+ffffffff810b75f0 t arch_kexec_protect_crashkres
+ffffffff810b7610 t kexec_mark_crashkres.llvm.18187589464578897399
+ffffffff810b7700 t arch_kexec_unprotect_crashkres
+ffffffff810b7720 t arch_kexec_post_alloc_pages
+ffffffff810b7730 t arch_kexec_pre_free_pages
+ffffffff810b7740 t alloc_pgt_page
+ffffffff810b7780 t mem_region_callback
+ffffffff810b77a0 t kdump_nmi_shootdown_cpus
+ffffffff810b77c0 t kdump_nmi_callback
+ffffffff810b7800 t crash_smp_send_stop
+ffffffff810b7840 t native_machine_crash_shutdown
+ffffffff810b78e0 t crash_setup_memmap_entries
+ffffffff810b7af0 t memmap_entry_callback
+ffffffff810b7b40 t crash_load_segments
+ffffffff810b7d30 t prepare_elf64_ram_headers_callback
+ffffffff810b7d60 t get_nr_ram_ranges_callback
+ffffffff810b7d70 t bzImage64_probe.llvm.16754442525062978654
+ffffffff810b7e40 t bzImage64_load.llvm.16754442525062978654
+ffffffff810b8430 t bzImage64_cleanup.llvm.16754442525062978654
+ffffffff810b8460 t setup_cmdline
+ffffffff810b8500 t setup_boot_parameters
+ffffffff810b88d0 t module_alloc
+ffffffff810b8990 t apply_relocate_add
+ffffffff810b8c60 t module_finalize
+ffffffff810b8e60 t module_arch_cleanup
+ffffffff810b8e70 t early_console_register
+ffffffff810b8ec0 t io_serial_in
+ffffffff810b8ee0 t io_serial_in
+ffffffff810b8f00 t io_serial_out
+ffffffff810b8f20 t io_serial_out
+ffffffff810b8f40 t early_serial_write
+ffffffff810b9070 t mem32_serial_in
+ffffffff810b9090 t mem32_serial_in
+ffffffff810b90b0 t mem32_serial_out
+ffffffff810b90d0 t mem32_serial_out
+ffffffff810b90f0 t early_vga_write
+ffffffff810b92d0 t hpet_readl
+ffffffff810b92f0 t is_hpet_enabled
+ffffffff810b9320 t _hpet_print_config
+ffffffff810b9460 t hpet_disable
+ffffffff810b9500 t hpet_register_irq_handler
+ffffffff810b9550 t hpet_unregister_irq_handler
+ffffffff810b9590 t hpet_rtc_timer_init
+ffffffff810b96a0 t hpet_mask_rtc_irq_bit
+ffffffff810b9700 t hpet_set_rtc_irq_bit
+ffffffff810b9770 t hpet_set_alarm_time
+ffffffff810b97c0 t hpet_set_periodic_freq
+ffffffff810b9850 t hpet_rtc_dropped_irq
+ffffffff810b9880 t hpet_rtc_interrupt
+ffffffff810b9ac0 t read_hpet
+ffffffff810b9bc0 t hpet_resume_counter
+ffffffff810b9c20 t hpet_clkevt_legacy_resume
+ffffffff810b9c70 t hpet_clkevt_set_state_periodic
+ffffffff810b9d40 t hpet_clkevt_set_state_oneshot
+ffffffff810b9d80 t hpet_clkevt_set_next_event
+ffffffff810b9de0 t hpet_clkevt_set_state_shutdown
+ffffffff810b9e20 t hpet_cpuhp_online
+ffffffff810b9fe0 t hpet_cpuhp_dead
+ffffffff810ba040 t hpet_msi_init
+ffffffff810ba0a0 t hpet_msi_free
+ffffffff810ba0c0 t hpet_msi_mask
+ffffffff810ba110 t hpet_msi_unmask
+ffffffff810ba160 t hpet_msi_write_msg
+ffffffff810ba1b0 t hpet_clkevt_msi_resume
+ffffffff810ba2a0 t hpet_msi_interrupt_handler
+ffffffff810ba2e0 t amd_nb_num
+ffffffff810ba300 t amd_nb_has_feature
+ffffffff810ba320 t node_to_amd_nb
+ffffffff810ba350 t amd_smn_read
+ffffffff810ba370 t __amd_smn_rw.llvm.8803323678341578771
+ffffffff810ba460 t amd_smn_write
+ffffffff810ba4b0 t amd_get_mmconfig_range
+ffffffff810ba550 t amd_get_subcaches
+ffffffff810ba600 t amd_set_subcaches
+ffffffff810ba7c0 t amd_flush_garts
+ffffffff810ba920 t __fix_erratum_688
+ffffffff810ba960 t kvm_async_pf_task_wait_schedule
+ffffffff810bab00 t kvm_async_pf_task_wake
+ffffffff810bac50 t apf_task_wake_all
+ffffffff810bad30 t __sysvec_kvm_asyncpf_interrupt
+ffffffff810bae20 t kvm_para_available
+ffffffff810bae50 t kvm_arch_para_features
+ffffffff810bae80 t kvm_arch_para_hints
+ffffffff810baeb0 t arch_haltpoll_enable
+ffffffff810baf50 t kvm_disable_host_haltpoll
+ffffffff810baf80 t arch_haltpoll_disable
+ffffffff810bafd0 t kvm_enable_host_haltpoll
+ffffffff810bb010 t pv_tlb_flush_supported
+ffffffff810bb0c0 t pv_ipi_supported
+ffffffff810bb110 t __kvm_cpuid_base
+ffffffff810bb1b0 t kvm_send_ipi_mask
+ffffffff810bb1c0 t kvm_send_ipi_mask_allbutself
+ffffffff810bb240 t __send_ipi_mask
+ffffffff810bb490 t kvm_steal_clock
+ffffffff810bb4e0 t kvm_guest_apic_eoi_write
+ffffffff810bb530 t kvm_flush_tlb_multi
+ffffffff810bb5f0 t kvm_smp_send_call_func_ipi
+ffffffff810bb650 t kvm_cpu_online
+ffffffff810bb6b0 t kvm_cpu_down_prepare
+ffffffff810bb710 t kvm_crash_shutdown
+ffffffff810bb740 t kvm_io_delay
+ffffffff810bb750 t kvm_pv_reboot_notify
+ffffffff810bb780 t kvm_pv_guest_cpu_reboot
+ffffffff810bb7a0 t kvm_guest_cpu_offline
+ffffffff810bb8d0 t kvm_guest_cpu_init
+ffffffff810bbaf0 t kvm_suspend
+ffffffff810bbb70 t kvm_resume
+ffffffff810bbc20 t kvm_check_and_clear_guest_paused
+ffffffff810bbc70 t kvm_clock_get_cycles
+ffffffff810bbcb0 t kvm_cs_enable
+ffffffff810bbcd0 t kvmclock_disable
+ffffffff810bbd10 t kvmclock_setup_percpu
+ffffffff810bbd80 t kvm_get_tsc_khz
+ffffffff810bbdb0 t kvm_get_wallclock
+ffffffff810bbe40 t kvm_set_wallclock
+ffffffff810bbe50 t kvm_setup_secondary_clock
+ffffffff810bbeb0 t kvm_save_sched_clock_state
+ffffffff810bbec0 t kvm_restore_sched_clock_state
+ffffffff810bbf20 t kvm_sched_clock_read
+ffffffff810bbf60 t paravirt_patch
+ffffffff810bbfc0 t native_steal_clock
+ffffffff810bbfd0 t paravirt_set_sched_clock
+ffffffff810bc000 t paravirt_disable_iospace
+ffffffff810bc020 t paravirt_enter_lazy_mmu
+ffffffff810bc050 t paravirt_leave_lazy_mmu
+ffffffff810bc080 t paravirt_flush_lazy_mmu
+ffffffff810bc0d0 t paravirt_get_lazy_mode
+ffffffff810bc100 t tlb_remove_page
+ffffffff810bc130 t pvclock_set_flags
+ffffffff810bc150 t pvclock_tsc_khz
+ffffffff810bc190 t pvclock_touch_watchdogs
+ffffffff810bc1c0 t pvclock_resume
+ffffffff810bc1e0 t pvclock_read_flags
+ffffffff810bc210 t pvclock_clocksource_read
+ffffffff810bc2d0 t pvclock_read_wallclock
+ffffffff810bc350 t pvclock_set_pvti_cpu0_va
+ffffffff810bc380 t pvclock_get_pvti_cpu0_va
+ffffffff810bc3a0 t pcibios_get_phb_of_node
+ffffffff810bc420 t x86_of_pci_init
+ffffffff810bc450 t x86_of_pci_irq_enable
+ffffffff810bc4e0 t x86_of_pci_irq_disable
+ffffffff810bc4f0 t dt_irqdomain_alloc
+ffffffff810bc600 t arch_uprobe_analyze_insn
+ffffffff810bcb20 t arch_uprobe_pre_xol
+ffffffff810bcbd0 t arch_uprobe_xol_was_trapped
+ffffffff810bcbf0 t arch_uprobe_post_xol
+ffffffff810bccc0 t arch_uprobe_exception_notify
+ffffffff810bcd10 t arch_uprobe_abort_xol
+ffffffff810bcd80 t arch_uprobe_skip_sstep
+ffffffff810bcdd0 t arch_uretprobe_hijack_return_addr
+ffffffff810bcef0 t arch_uretprobe_is_alive
+ffffffff810bcf20 t branch_emulate_op
+ffffffff810bd120 t branch_post_xol_op
+ffffffff810bd160 t push_emulate_op
+ffffffff810bd220 t default_pre_xol_op
+ffffffff810bd280 t default_post_xol_op
+ffffffff810bd3a0 t default_abort_op
+ffffffff810bd3f0 t perf_reg_value
+ffffffff810bd450 t perf_reg_validate
+ffffffff810bd480 t perf_reg_abi
+ffffffff810bd4a0 t perf_get_regs_user
+ffffffff810bd620 t trace_pagefault_reg
+ffffffff810bd650 t trace_pagefault_unreg
+ffffffff810bd670 t sched_set_itmt_support
+ffffffff810bd6f0 t sched_clear_itmt_support
+ffffffff810bd760 t arch_asym_cpu_priority
+ffffffff810bd790 t sched_set_itmt_core_prio
+ffffffff810bd830 t sched_itmt_update_handler
+ffffffff810bd8d0 t fixup_umip_exception
+ffffffff810bdc80 t umip_printk
+ffffffff810bdd90 t force_sig_info_umip_fault
+ffffffff810bde10 t unwind_get_return_address
+ffffffff810bde40 t unwind_get_return_address_ptr
+ffffffff810bde80 t unwind_next_frame
+ffffffff810be050 t update_stack_state
+ffffffff810be190 t unwind_dump
+ffffffff810be2e0 t __unwind_start
+ffffffff810be420 t audit_classify_arch
+ffffffff810be430 t audit_classify_syscall
+ffffffff810be490 t fam10h_check_enable_mmcfg
+ffffffff810bea90 t cmp_range
+ffffffff810beab0 t cmp_range
+ffffffff810bead0 t vsmp_apic_post_init
+ffffffff810beaf0 t apicid_phys_pkg_id
+ffffffff810beb10 t cachemode2protval
+ffffffff810beb40 t x86_has_pat_wp
+ffffffff810beb70 t pgprot2cachemode
+ffffffff810bebb0 t pfn_range_is_mapped
+ffffffff810bec40 t devmem_is_allowed
+ffffffff810becb0 t free_init_pages
+ffffffff810bed80 t free_kernel_image_pages
+ffffffff810bee90 t update_cache_mode_entry
+ffffffff810beee0 t arch_max_swapfile_size
+ffffffff810bef30 t kernel_ident_mapping_init
+ffffffff810bf160 t ident_p4d_init
+ffffffff810bf320 t set_pte_vaddr_p4d
+ffffffff810bf360 t fill_pud
+ffffffff810bf440 t __set_pte_vaddr
+ffffffff810bf5e0 t set_pte_vaddr_pud
+ffffffff810bf600 t set_pte_vaddr
+ffffffff810bf6a0 t add_pages
+ffffffff810bf710 t arch_add_memory
+ffffffff810bf7c0 t mark_rodata_ro
+ffffffff810bf8d0 t kern_addr_valid
+ffffffff810bfb00 t pfn_valid
+ffffffff810bfb90 t pfn_valid
+ffffffff810bfc20 t memory_block_size_bytes
+ffffffff810bfcd0 t sync_global_pgds
+ffffffff810c0060 t register_page_bootmem_memmap
+ffffffff810c0300 t ident_pud_init
+ffffffff810c0500 t p4d_populate_init
+ffffffff810c0600 t __traceiter_page_fault_user
+ffffffff810c0660 t __traceiter_page_fault_kernel
+ffffffff810c06c0 t trace_event_raw_event_x86_exceptions
+ffffffff810c0790 t perf_trace_x86_exceptions
+ffffffff810c08a0 t fault_in_kernel_space
+ffffffff810c08e0 t trace_raw_output_x86_exceptions
+ffffffff810c0940 t do_kern_addr_fault
+ffffffff810c0990 t spurious_kernel_fault
+ffffffff810c0b30 t bad_area_nosemaphore
+ffffffff810c0b50 t __bad_area_nosemaphore
+ffffffff810c0d80 t kernelmode_fixup_or_oops
+ffffffff810c0e80 t page_fault_oops
+ffffffff810c1240 t is_prefetch
+ffffffff810c1420 t show_ldttss
+ffffffff810c1520 t dump_pagetable
+ffffffff810c17a0 t is_errata93
+ffffffff810c1850 t pgtable_bad
+ffffffff810c18d0 t bad_area
+ffffffff810c1940 t bad_area_access_error
+ffffffff810c1a60 t do_sigbus
+ffffffff810c1b30 t ioremap_change_attr
+ffffffff810c1bd0 t ioremap
+ffffffff810c1bf0 t __ioremap_caller.llvm.11065821313663622629
+ffffffff810c1ea0 t ioremap_uc
+ffffffff810c1ec0 t ioremap_wc
+ffffffff810c1ee0 t ioremap_wt
+ffffffff810c1f00 t ioremap_encrypted
+ffffffff810c1f20 t ioremap_cache
+ffffffff810c1f40 t ioremap_prot
+ffffffff810c1f70 t iounmap
+ffffffff810c2030 t xlate_dev_mem_ptr
+ffffffff810c2070 t unxlate_dev_mem_ptr
+ffffffff810c20a0 t __ioremap_collect_map_flags
+ffffffff810c21d0 t ex_get_fixup_type
+ffffffff810c2200 t fixup_exception
+ffffffff810c2840 t task_size_32bit
+ffffffff810c2870 t task_size_64bit
+ffffffff810c28a0 t arch_mmap_rnd
+ffffffff810c28f0 t arch_pick_mmap_layout
+ffffffff810c2a10 t get_mmap_base
+ffffffff810c2a40 t arch_vma_name
+ffffffff810c2a50 t mmap_address_hint_valid
+ffffffff810c2ac0 t valid_phys_addr_range
+ffffffff810c2b10 t valid_mmap_phys_addr_range
+ffffffff810c2b40 t pfn_modify_allowed
+ffffffff810c2c20 t pte_alloc_one
+ffffffff810c2cb0 t ___pte_free_tlb
+ffffffff810c2d40 t ___pmd_free_tlb
+ffffffff810c2e00 t ___pud_free_tlb
+ffffffff810c2e50 t ___p4d_free_tlb
+ffffffff810c2ea0 t pgd_page_get_mm
+ffffffff810c2eb0 t pgd_alloc
+ffffffff810c3020 t pgd_free
+ffffffff810c30d0 t ptep_set_access_flags
+ffffffff810c3100 t pmdp_set_access_flags
+ffffffff810c3130 t pudp_set_access_flags
+ffffffff810c3160 t ptep_test_and_clear_young
+ffffffff810c3180 t pmdp_test_and_clear_young
+ffffffff810c31a0 t pudp_test_and_clear_young
+ffffffff810c31c0 t ptep_clear_flush_young
+ffffffff810c31e0 t pmdp_clear_flush_young
+ffffffff810c3220 t pmdp_invalidate_ad
+ffffffff810c3280 t __native_set_fixmap
+ffffffff810c32b0 t native_set_fixmap
+ffffffff810c3330 t p4d_set_huge
+ffffffff810c3340 t p4d_clear_huge
+ffffffff810c3350 t pud_set_huge
+ffffffff810c3430 t pmd_set_huge
+ffffffff810c3550 t pud_clear_huge
+ffffffff810c3580 t pmd_clear_huge
+ffffffff810c35b0 t pud_free_pmd_page
+ffffffff810c37a0 t pmd_free_pte_page
+ffffffff810c3810 t __virt_addr_valid
+ffffffff810c38f0 t leave_mm
+ffffffff810c3970 t switch_mm
+ffffffff810c39d0 t switch_mm_irqs_off
+ffffffff810c3f50 t cr4_update_pce
+ffffffff810c3f90 t enter_lazy_tlb
+ffffffff810c3fc0 t initialize_tlbstate_and_flush
+ffffffff810c4140 t native_flush_tlb_multi
+ffffffff810c4230 t flush_tlb_func
+ffffffff810c4410 t tlb_is_not_lazy
+ffffffff810c4440 t flush_tlb_multi
+ffffffff810c4460 t flush_tlb_mm_range
+ffffffff810c45f0 t flush_tlb_all
+ffffffff810c4620 t do_flush_tlb_all.llvm.14252443934047787810
+ffffffff810c4650 t flush_tlb_kernel_range
+ffffffff810c4760 t do_kernel_range_flush
+ffffffff810c47b0 t __get_current_cr3_fast
+ffffffff810c4840 t flush_tlb_one_kernel
+ffffffff810c4860 t flush_tlb_one_user
+ffffffff810c4880 t native_flush_tlb_one_user
+ffffffff810c4930 t native_flush_tlb_global
+ffffffff810c49d0 t native_flush_tlb_local
+ffffffff810c4a70 t flush_tlb_local
+ffffffff810c4a90 t __flush_tlb_all
+ffffffff810c4ac0 t arch_tlbbatch_flush
+ffffffff810c4bf0 t nmi_uaccess_okay
+ffffffff810c4c20 t l1d_flush_evaluate
+ffffffff810c4ca0 t l1d_flush_force_sigbus
+ffffffff810c4cc0 t tlbflush_read_file
+ffffffff810c4d70 t tlbflush_write_file
+ffffffff810c4e60 t cea_set_pte
+ffffffff810c4ed0 t copy_from_kernel_nofault_allowed
+ffffffff810c4f10 t add_encrypt_protection_map
+ffffffff810c4f20 t vm_get_page_prot
+ffffffff810c4f70 t update_page_count
+ffffffff810c4fc0 t arch_report_meminfo
+ffffffff810c5030 t clflush_cache_range
+ffffffff810c5080 t arch_invalidate_pmem
+ffffffff810c50d0 t lookup_address_in_pgd
+ffffffff810c5230 t lookup_address
+ffffffff810c5270 t lookup_pmd_address
+ffffffff810c5350 t slow_virt_to_phys
+ffffffff810c5480 t __set_memory_prot
+ffffffff810c54e0 t change_page_attr_set_clr.llvm.2459936748118878983
+ffffffff810c5890 t _set_memory_uc
+ffffffff810c5900 t set_memory_uc
+ffffffff810c5a00 t _set_memory_wc
+ffffffff810c5a90 t set_memory_wc
+ffffffff810c5bd0 t _set_memory_wt
+ffffffff810c5c40 t _set_memory_wb
+ffffffff810c5ca0 t set_memory_wb
+ffffffff810c5d50 t set_mce_nospec
+ffffffff810c5df0 t set_memory_np
+ffffffff810c5e50 t clear_mce_nospec
+ffffffff810c5ec0 t set_memory_x
+ffffffff810c5f30 t set_memory_nx
+ffffffff810c5fa0 t set_memory_ro
+ffffffff810c6000 t set_memory_rw
+ffffffff810c6060 t set_memory_np_noalias
+ffffffff810c60c0 t set_memory_4k
+ffffffff810c6120 t set_memory_nonglobal
+ffffffff810c6180 t set_memory_global
+ffffffff810c61e0 t set_memory_encrypted
+ffffffff810c61f0 t set_memory_decrypted
+ffffffff810c6200 t set_pages_uc
+ffffffff810c6230 t set_pages_array_uc
+ffffffff810c6250 t _set_pages_array
+ffffffff810c6360 t set_pages_array_wc
+ffffffff810c6380 t set_pages_wb
+ffffffff810c6440 t set_pages_array_wb
+ffffffff810c64d0 t set_pages_ro
+ffffffff810c6540 t set_pages_rw
+ffffffff810c65b0 t set_direct_map_invalid_noflush
+ffffffff810c6660 t set_direct_map_default_noflush
+ffffffff810c6710 t kernel_page_present
+ffffffff810c6790 t __change_page_attr_set_clr
+ffffffff810c7730 t __cpa_flush_all
+ffffffff810c7760 t __cpa_flush_tlb
+ffffffff810c77e0 t __cpa_process_fault
+ffffffff810c7ec0 t static_protections
+ffffffff810c8160 t populate_pmd
+ffffffff810c8690 t unmap_pmd_range
+ffffffff810c8860 t __unmap_pmd_range
+ffffffff810c8a60 t pat_disable
+ffffffff810c8ac0 t pat_enabled
+ffffffff810c8ae0 t __init_cache_modes
+ffffffff810c8c90 t pat_init
+ffffffff810c8e20 t memtype_reserve
+ffffffff810c9210 t cattr_name
+ffffffff810c9240 t memtype_free
+ffffffff810c93f0 t pat_pfn_immune_to_uc_mtrr
+ffffffff810c9420 t lookup_memtype
+ffffffff810c9540 t memtype_reserve_io
+ffffffff810c9630 t memtype_kernel_map_sync
+ffffffff810c9770 t memtype_free_io
+ffffffff810c9780 t arch_io_reserve_memtype_wc
+ffffffff810c97d0 t arch_io_free_memtype_wc
+ffffffff810c97f0 t phys_mem_access_prot
+ffffffff810c9800 t phys_mem_access_prot_allowed
+ffffffff810c98a0 t track_pfn_copy
+ffffffff810c9940 t reserve_pfn_range
+ffffffff810c9bb0 t track_pfn_remap
+ffffffff810c9cc0 t track_pfn_insert
+ffffffff810c9d00 t untrack_pfn
+ffffffff810c9e40 t untrack_pfn_moved
+ffffffff810c9e80 t pgprot_writecombine
+ffffffff810c9ea0 t pgprot_writethrough
+ffffffff810c9ec0 t pagerange_is_ram_callback
+ffffffff810c9f00 t memtype_seq_open
+ffffffff810c9f20 t memtype_seq_start
+ffffffff810c9fb0 t memtype_seq_stop
+ffffffff810c9fd0 t memtype_seq_next
+ffffffff810ca050 t memtype_seq_show
+ffffffff810ca090 t memtype_check_insert
+ffffffff810ca3f0 t memtype_erase
+ffffffff810ca760 t memtype_match
+ffffffff810ca8e0 t memtype_lookup
+ffffffff810ca950 t memtype_copy_nth_element
+ffffffff810caa40 t interval_augment_rotate
+ffffffff810caa90 t __execute_only_pkey
+ffffffff810cab50 t __arch_override_mprotect_pkey
+ffffffff810cac70 t init_pkru_read_file
+ffffffff810cad10 t init_pkru_write_file
+ffffffff810cae00 t __pti_set_user_pgtbl
+ffffffff810cae50 t pti_finalize
+ffffffff810caf20 t pti_user_pagetable_walk_pte
+ffffffff810cb020 t pti_user_pagetable_walk_p4d
+ffffffff810cb170 t pti_user_pagetable_walk_pmd
+ffffffff810cb320 t pti_clone_pgtable
+ffffffff810cb4d0 t common_rfc4106_set_key
+ffffffff810cb610 t common_rfc4106_set_authsize
+ffffffff810cb640 t helper_rfc4106_encrypt
+ffffffff810cb7d0 t helper_rfc4106_decrypt
+ffffffff810cb9a0 t generic_gcmaes_set_key
+ffffffff810cbad0 t generic_gcmaes_set_authsize
+ffffffff810cbb00 t generic_gcmaes_encrypt
+ffffffff810cbc00 t generic_gcmaes_decrypt
+ffffffff810cbd40 t gcmaes_crypt_by_sg
+ffffffff810cc140 t aesni_skcipher_setkey
+ffffffff810cc1d0 t ecb_encrypt
+ffffffff810cc2a0 t ecb_decrypt
+ffffffff810cc370 t cbc_encrypt
+ffffffff810cc450 t cbc_decrypt
+ffffffff810cc530 t cts_cbc_encrypt
+ffffffff810cc860 t cts_cbc_decrypt
+ffffffff810ccb90 t ctr_crypt
+ffffffff810ccd00 t xts_aesni_setkey
+ffffffff810cce30 t xts_encrypt
+ffffffff810cce50 t xts_decrypt
+ffffffff810cce70 t xts_crypt
+ffffffff810cd2d0 t aes_set_key
+ffffffff810cd360 t aesni_encrypt
+ffffffff810cd3c0 t aesni_decrypt
+ffffffff810cd420 t xctr_crypt
+ffffffff810cd620 t aesni_ctr_enc_avx_tfm
+ffffffff810cd680 t unregister_sha256_avx2
+ffffffff810cd6f0 t unregister_sha256_avx
+ffffffff810cd740 t sha256_base_init
+ffffffff810cd790 t sha256_base_init
+ffffffff810cd7e0 t sha256_ni_update
+ffffffff810cd920 t sha256_ni_final
+ffffffff810cd940 t sha256_ni_finup
+ffffffff810cdbd0 t sha224_base_init
+ffffffff810cdc20 t sha224_base_init
+ffffffff810cdc70 t sha256_avx2_update
+ffffffff810cddb0 t sha256_avx2_final
+ffffffff810cddd0 t sha256_avx2_finup
+ffffffff810ce060 t sha256_avx_update
+ffffffff810ce1a0 t sha256_avx_final
+ffffffff810ce1c0 t sha256_avx_finup
+ffffffff810ce450 t sha256_ssse3_update
+ffffffff810ce590 t sha256_ssse3_final
+ffffffff810ce5b0 t sha256_ssse3_finup
+ffffffff810ce840 t unregister_sha512_avx
+ffffffff810ce890 t sha512_base_init
+ffffffff810ce920 t sha512_base_init
+ffffffff810ce9b0 t sha512_avx2_update
+ffffffff810ceae0 t sha512_avx2_final
+ffffffff810ceb00 t sha512_avx2_finup
+ffffffff810ced70 t sha384_base_init
+ffffffff810cee00 t sha384_base_init
+ffffffff810cee90 t sha512_avx_update
+ffffffff810cefc0 t sha512_avx_final
+ffffffff810cefe0 t sha512_avx_finup
+ffffffff810cf250 t sha512_ssse3_update
+ffffffff810cf380 t sha512_ssse3_final
+ffffffff810cf3a0 t sha512_ssse3_finup
+ffffffff810cf610 t polyval_x86_init
+ffffffff810cf640 t polyval_x86_update
+ffffffff810cf890 t polyval_x86_final
+ffffffff810cf910 t polyval_x86_setkey
+ffffffff810cfb60 t efi_delete_dummy_variable
+ffffffff810cfbe0 t efi_query_variable_store
+ffffffff810cfdd0 t efi_reboot_required
+ffffffff810cfe00 t efi_poweroff_required
+ffffffff810cfe20 t efi_crash_gracefully_on_page_fault
+ffffffff810cff20 t efi_is_table_address
+ffffffff810cfff0 t efi_systab_show_arch
+ffffffff810d0030 t fw_vendor_show
+ffffffff810d0060 t runtime_show
+ffffffff810d0090 t config_table_show
+ffffffff810d00c0 t efi_attr_is_visible
+ffffffff810d0140 t efi_sync_low_kernel_mappings
+ffffffff810d02d0 t efi_enter_mm
+ffffffff810d0310 t efi_leave_mm
+ffffffff810d0340 t __traceiter_task_newtask
+ffffffff810d0390 t __traceiter_task_rename
+ffffffff810d03e0 t trace_event_raw_event_task_newtask
+ffffffff810d04d0 t perf_trace_task_newtask
+ffffffff810d0600 t trace_event_raw_event_task_rename
+ffffffff810d0710 t perf_trace_task_rename
+ffffffff810d0860 t nr_processes
+ffffffff810d08c0 t vm_area_alloc
+ffffffff810d0970 t vm_area_dup
+ffffffff810d0a70 t __vm_area_free
+ffffffff810d0ae0 t vm_area_free
+ffffffff810d0b00 t vm_area_free_rcu_cb.llvm.14541082310709499962
+ffffffff810d0b70 t exit_task_stack_account
+ffffffff810d0be0 t account_kernel_stack
+ffffffff810d0cf0 t put_task_stack
+ffffffff810d0d90 t free_task
+ffffffff810d0e00 t __mmdrop
+ffffffff810d0f30 t __put_task_struct
+ffffffff810d1080 t free_vm_stack_cache
+ffffffff810d10f0 t set_task_stack_end_magic
+ffffffff810d1110 t mm_alloc
+ffffffff810d1160 t mm_init
+ffffffff810d13c0 t mmput
+ffffffff810d13f0 t __mmput
+ffffffff810d14e0 t mmput_async
+ffffffff810d1540 t mmput_async_fn
+ffffffff810d1560 t set_mm_exe_file
+ffffffff810d15d0 t replace_mm_exe_file
+ffffffff810d1810 t get_mm_exe_file
+ffffffff810d1860 t get_task_exe_file
+ffffffff810d18e0 t get_task_mm
+ffffffff810d1930 t mm_access
+ffffffff810d1a00 t exit_mm_release
+ffffffff810d1a30 t mm_release.llvm.14541082310709499962
+ffffffff810d1b30 t exec_mm_release
+ffffffff810d1b60 t __cleanup_sighand
+ffffffff810d1bb0 t __x64_sys_set_tid_address
+ffffffff810d1be0 t pidfd_pid
+ffffffff810d1c10 t pidfd_poll.llvm.14541082310709499962
+ffffffff810d1c60 t pidfd_release.llvm.14541082310709499962
+ffffffff810d1c90 t pidfd_show_fdinfo.llvm.14541082310709499962
+ffffffff810d1d00 t idle_dummy
+ffffffff810d1d10 t copy_process
+ffffffff810d2e10 t copy_init_mm
+ffffffff810d2e30 t dup_mm.llvm.14541082310709499962
+ffffffff810d3570 t create_io_thread
+ffffffff810d3640 t kernel_clone
+ffffffff810d39a0 t ptrace_event_pid
+ffffffff810d3a20 t kernel_thread
+ffffffff810d3b00 t user_mode_thread
+ffffffff810d3bd0 t __x64_sys_fork
+ffffffff810d3cb0 t __x64_sys_vfork
+ffffffff810d3d90 t __x64_sys_clone
+ffffffff810d3e70 t __x64_sys_clone3
+ffffffff810d40c0 t walk_process_tree
+ffffffff810d41c0 t sighand_ctor
+ffffffff810d41f0 t unshare_fd
+ffffffff810d4280 t ksys_unshare
+ffffffff810d4520 t __x64_sys_unshare
+ffffffff810d4540 t unshare_files
+ffffffff810d4600 t sysctl_max_threads
+ffffffff810d46c0 t trace_raw_output_task_newtask
+ffffffff810d4720 t trace_raw_output_task_rename
+ffffffff810d4780 t refcount_inc
+ffffffff810d47c0 t refcount_inc
+ffffffff810d4800 t refcount_inc
+ffffffff810d4840 t refcount_inc
+ffffffff810d4880 t refcount_inc
+ffffffff810d48c0 t refcount_inc
+ffffffff810d4900 t refcount_inc
+ffffffff810d4940 t refcount_inc
+ffffffff810d4980 t thread_stack_free_rcu
+ffffffff810d49c0 t free_signal_struct
+ffffffff810d4a60 t mmdrop_async_fn
+ffffffff810d4a80 t dup_task_struct
+ffffffff810d4cd0 t copy_files
+ffffffff810d4d60 t copy_fs
+ffffffff810d4de0 t copy_sighand
+ffffffff810d4ee0 t copy_signal
+ffffffff810d50e0 t copy_mm
+ffffffff810d51a0 t get_pid
+ffffffff810d51e0 t get_pid
+ffffffff810d5220 t get_pid
+ffffffff810d5260 t copy_seccomp
+ffffffff810d52e0 t ptrace_init_task
+ffffffff810d5390 t tty_kref_get
+ffffffff810d53d0 t trace_task_newtask
+ffffffff810d5430 t copy_oom_score_adj
+ffffffff810d54c0 t memcg_charge_kernel_stack
+ffffffff810d55b0 t __delayed_free_task
+ffffffff810d55d0 t copy_clone_args_from_user
+ffffffff810d5860 t __x64_sys_personality
+ffffffff810d5890 t execdomains_proc_show
+ffffffff810d58b0 t panic_smp_self_stop
+ffffffff810d58d0 t nmi_panic
+ffffffff810d5909 t panic
+ffffffff810d5c30 t check_panic_on_warn
+ffffffff810d5c80 t test_taint
+ffffffff810d5ca0 t panic_print_sys_info
+ffffffff810d5d10 t no_blink
+ffffffff810d5d20 t print_tainted
+ffffffff810d5dc0 t get_taint
+ffffffff810d5de0 t add_taint
+ffffffff810d5e40 t oops_may_print
+ffffffff810d5e60 t oops_enter
+ffffffff810d5ea0 t do_oops_enter_exit.llvm.2440622221274145116
+ffffffff810d5f90 t oops_exit
+ffffffff810d5fc0 t __warn
+ffffffff810d6180 t __warn_printk
+ffffffff810d6320 t warn_count_show
+ffffffff810d6350 t clear_warn_once_fops_open
+ffffffff810d6370 t clear_warn_once_set
+ffffffff810d63b0 t __traceiter_cpuhp_enter
+ffffffff810d6420 t __traceiter_cpuhp_multi_enter
+ffffffff810d6490 t __traceiter_cpuhp_exit
+ffffffff810d6500 t trace_event_raw_event_cpuhp_enter
+ffffffff810d65e0 t perf_trace_cpuhp_enter
+ffffffff810d66f0 t trace_event_raw_event_cpuhp_multi_enter
+ffffffff810d67d0 t perf_trace_cpuhp_multi_enter
+ffffffff810d68e0 t trace_event_raw_event_cpuhp_exit
+ffffffff810d69c0 t perf_trace_cpuhp_exit
+ffffffff810d6ad0 t cpu_maps_update_begin
+ffffffff810d6af0 t cpu_maps_update_done
+ffffffff810d6b10 t cpus_read_lock
+ffffffff810d6b70 t cpus_read_trylock
+ffffffff810d6be0 t cpus_read_unlock
+ffffffff810d6c50 t cpus_write_lock
+ffffffff810d6c70 t cpus_write_unlock
+ffffffff810d6c90 t lockdep_assert_cpus_held
+ffffffff810d6ca0 t cpu_hotplug_disable
+ffffffff810d6cd0 t cpu_hotplug_enable
+ffffffff810d6d30 t cpu_smt_possible
+ffffffff810d6d50 t clear_tasks_mm_cpumask
+ffffffff810d6df0 t cpuhp_report_idle_dead
+ffffffff810d6e60 t cpuhp_complete_idle_dead
+ffffffff810d6e80 t cpu_device_down
+ffffffff810d6ed0 t cpu_down
+ffffffff810d6f30 t remove_cpu
+ffffffff810d6f70 t smp_shutdown_nonboot_cpus
+ffffffff810d7050 t notify_cpu_starting
+ffffffff810d7160 t cpuhp_online_idle
+ffffffff810d71c0 t cpu_device_up
+ffffffff810d71e0 t cpu_up.llvm.1315302404838068721
+ffffffff810d7290 t add_cpu
+ffffffff810d72d0 t bringup_hibernate_cpu
+ffffffff810d7330 t bringup_nonboot_cpus
+ffffffff810d73a0 t freeze_secondary_cpus
+ffffffff810d75b0 t thaw_secondary_cpus
+ffffffff810d7780 t _cpu_up
+ffffffff810d7a30 t __cpuhp_state_add_instance_cpuslocked
+ffffffff810d7c50 t cpuhp_issue_call
+ffffffff810d7e00 t __cpuhp_state_add_instance
+ffffffff810d7ee0 t __cpuhp_setup_state_cpuslocked
+ffffffff810d8250 t __cpuhp_setup_state
+ffffffff810d8360 t __cpuhp_state_remove_instance
+ffffffff810d8580 t __cpuhp_remove_state_cpuslocked
+ffffffff810d8730 t __cpuhp_remove_state
+ffffffff810d8800 t cpuhp_smt_disable
+ffffffff810d88c0 t cpuhp_smt_enable
+ffffffff810d8970 t init_cpu_present
+ffffffff810d89a0 t init_cpu_possible
+ffffffff810d89d0 t init_cpu_online
+ffffffff810d8a00 t set_cpu_online
+ffffffff810d8a50 t cpu_mitigations_off
+ffffffff810d8a70 t cpu_mitigations_auto_nosmt
+ffffffff810d8a90 t trace_raw_output_cpuhp_enter
+ffffffff810d8af0 t trace_raw_output_cpuhp_multi_enter
+ffffffff810d8b50 t trace_raw_output_cpuhp_exit
+ffffffff810d8bb0 t cpuhp_should_run
+ffffffff810d8be0 t cpuhp_thread_fun
+ffffffff810d8d90 t cpuhp_invoke_callback
+ffffffff810d9330 t cpuhp_kick_ap_work
+ffffffff810d9430 t cpuhp_kick_ap
+ffffffff810d95a0 t cpu_hotplug_pm_callback
+ffffffff810d9640 t bringup_cpu
+ffffffff810d9730 t finish_cpu
+ffffffff810d9770 t takedown_cpu
+ffffffff810d9850 t take_cpu_down
+ffffffff810d99b0 t control_show
+ffffffff810d99f0 t control_show
+ffffffff810d9a30 t control_store
+ffffffff810d9b20 t control_store
+ffffffff810d9ba0 t active_show
+ffffffff810d9bd0 t states_show
+ffffffff810d9c60 t state_show
+ffffffff810d9ca0 t state_show
+ffffffff810d9d30 t state_show
+ffffffff810d9d90 t state_show
+ffffffff810d9e00 t target_show
+ffffffff810d9e40 t target_store
+ffffffff810d9fe0 t fail_show
+ffffffff810da020 t fail_show
+ffffffff810da050 t fail_store
+ffffffff810da1c0 t put_task_struct_rcu_user
+ffffffff810da210 t delayed_put_task_struct
+ffffffff810da2b0 t release_task
+ffffffff810da890 t rcuwait_wake_up
+ffffffff810da8d0 t is_current_pgrp_orphaned
+ffffffff810da990 t mm_update_next_owner
+ffffffff810dabe0 t get_task_struct
+ffffffff810dac20 t get_task_struct
+ffffffff810dac60 t get_task_struct
+ffffffff810daca0 t put_task_struct
+ffffffff810dace0 t put_task_struct
+ffffffff810dad20 t do_exit
+ffffffff810db790 t make_task_dead
+ffffffff810db8d0 t __x64_sys_exit
+ffffffff810db8f0 t do_group_exit
+ffffffff810db980 t __x64_sys_exit_group
+ffffffff810db9a0 t __wake_up_parent
+ffffffff810db9d0 t __x64_sys_waitid
+ffffffff810dbd40 t kernel_wait4
+ffffffff810dbec0 t do_wait
+ffffffff810dc190 t kernel_wait
+ffffffff810dc260 t __x64_sys_wait4
+ffffffff810dc320 t __x64_sys_waitpid
+ffffffff810dc340 t thread_group_exited
+ffffffff810dc3a0 t abort
+ffffffff810dc3b0 t oops_count_show
+ffffffff810dc3e0 t kill_orphaned_pgrp
+ffffffff810dc510 t child_wait_callback
+ffffffff810dc580 t wait_consider_task
+ffffffff810dcf10 t __traceiter_irq_handler_entry
+ffffffff810dcf60 t __traceiter_irq_handler_exit
+ffffffff810dcfc0 t __traceiter_softirq_entry
+ffffffff810dd010 t __traceiter_softirq_exit
+ffffffff810dd060 t __traceiter_softirq_raise
+ffffffff810dd0b0 t __traceiter_tasklet_entry
+ffffffff810dd100 t __traceiter_tasklet_exit
+ffffffff810dd150 t trace_event_raw_event_irq_handler_entry
+ffffffff810dd270 t perf_trace_irq_handler_entry
+ffffffff810dd3d0 t trace_event_raw_event_irq_handler_exit
+ffffffff810dd490 t perf_trace_irq_handler_exit
+ffffffff810dd590 t trace_event_raw_event_softirq
+ffffffff810dd650 t perf_trace_softirq
+ffffffff810dd740 t trace_event_raw_event_tasklet
+ffffffff810dd800 t perf_trace_tasklet
+ffffffff810dd8f0 t _local_bh_enable
+ffffffff810dd920 t __local_bh_enable_ip
+ffffffff810dd9b0 t do_softirq
+ffffffff810ddab0 t irq_enter_rcu
+ffffffff810ddb00 t irq_enter
+ffffffff810ddb60 t irq_exit_rcu
+ffffffff810ddb70 t __irq_exit_rcu.llvm.4730009062035096958
+ffffffff810ddc80 t irq_exit
+ffffffff810ddca0 t raise_softirq_irqoff
+ffffffff810ddd50 t __raise_softirq_irqoff
+ffffffff810dddc0 t raise_softirq
+ffffffff810ddec0 t open_softirq
+ffffffff810ddee0 t __tasklet_schedule
+ffffffff810ddf00 t __tasklet_schedule_common
+ffffffff810de040 t __tasklet_hi_schedule
+ffffffff810de060 t tasklet_setup
+ffffffff810de0a0 t tasklet_init
+ffffffff810de0d0 t tasklet_unlock_spin_wait
+ffffffff810de100 t tasklet_kill
+ffffffff810de290 t tasklet_unlock_wait
+ffffffff810de380 t tasklet_unlock
+ffffffff810de3a0 t tasklet_action
+ffffffff810de3e0 t tasklet_hi_action
+ffffffff810de420 t trace_raw_output_irq_handler_entry
+ffffffff810de480 t trace_raw_output_irq_handler_exit
+ffffffff810de4f0 t trace_raw_output_softirq
+ffffffff810de560 t trace_raw_output_tasklet
+ffffffff810de5b0 t tasklet_action_common
+ffffffff810de8a0 t takeover_tasklets
+ffffffff810deb00 t ksoftirqd_should_run
+ffffffff810deb30 t run_ksoftirqd
+ffffffff810deb70 t release_child_resources
+ffffffff810deba0 t __release_child_resources.llvm.6013999449226960140
+ffffffff810dec10 t request_resource_conflict
+ffffffff810deca0 t request_resource
+ffffffff810ded30 t release_resource
+ffffffff810dedb0 t walk_iomem_res_desc
+ffffffff810dede0 t __walk_iomem_res_desc.llvm.6013999449226960140
+ffffffff810df000 t walk_system_ram_res
+ffffffff810df020 t walk_mem_res
+ffffffff810df040 t walk_system_ram_range
+ffffffff810df170 t page_is_ram
+ffffffff810df240 t region_intersects
+ffffffff810df2f0 t allocate_resource
+ffffffff810df5a0 t simple_align_resource
+ffffffff810df5b0 t lookup_resource
+ffffffff810df610 t insert_resource_conflict
+ffffffff810df650 t __insert_resource.llvm.6013999449226960140
+ffffffff810df780 t insert_resource
+ffffffff810df7d0 t insert_resource_expand_to_fit
+ffffffff810df860 t remove_resource
+ffffffff810df910 t adjust_resource
+ffffffff810df9e0 t __adjust_resource
+ffffffff810dfa70 t resource_alignment
+ffffffff810dfab0 t iomem_get_mapping
+ffffffff810dfad0 t __request_region
+ffffffff810dfd70 t free_resource
+ffffffff810dfe00 t __release_region
+ffffffff810dff60 t release_mem_region_adjustable
+ffffffff810e0220 t merge_system_ram_resource
+ffffffff810e0450 t devm_request_resource
+ffffffff810e0570 t devm_resource_release
+ffffffff810e05e0 t devm_release_resource
+ffffffff810e0610 t devm_resource_match
+ffffffff810e0630 t __devm_request_region
+ffffffff810e06d0 t devm_region_release
+ffffffff810e06f0 t __devm_release_region
+ffffffff810e0770 t devm_region_match
+ffffffff810e07b0 t iomem_map_sanity_check
+ffffffff810e0890 t r_next
+ffffffff810e08d0 t iomem_is_exclusive
+ffffffff810e09d0 t resource_list_create_entry
+ffffffff810e0a20 t resource_list_free
+ffffffff810e0aa0 t r_start
+ffffffff810e0b20 t r_stop
+ffffffff810e0b40 t r_show
+ffffffff810e0c40 t __find_resource
+ffffffff810e0ef0 t iomem_fs_init_fs_context
+ffffffff810e0f20 t proc_dostring
+ffffffff810e10d0 t do_proc_douintvec
+ffffffff810e1390 t proc_dobool
+ffffffff810e13c0 t do_proc_dobool_conv
+ffffffff810e13f0 t proc_dointvec
+ffffffff810e1420 t proc_douintvec
+ffffffff810e1440 t do_proc_douintvec_conv.llvm.16294858378822551814
+ffffffff810e1470 t proc_dointvec_minmax
+ffffffff810e14e0 t do_proc_dointvec_minmax_conv
+ffffffff810e1580 t proc_douintvec_minmax
+ffffffff810e15e0 t do_proc_douintvec_minmax_conv
+ffffffff810e1660 t proc_dou8vec_minmax
+ffffffff810e1790 t proc_doulongvec_minmax
+ffffffff810e17b0 t do_proc_doulongvec_minmax.llvm.16294858378822551814
+ffffffff810e1cb0 t proc_doulongvec_ms_jiffies_minmax
+ffffffff810e1cd0 t proc_dointvec_jiffies
+ffffffff810e1d00 t do_proc_dointvec_jiffies_conv.llvm.16294858378822551814
+ffffffff810e1d60 t proc_dointvec_ms_jiffies_minmax
+ffffffff810e1dd0 t do_proc_dointvec_ms_jiffies_minmax_conv
+ffffffff810e1e80 t proc_dointvec_userhz_jiffies
+ffffffff810e1eb0 t do_proc_dointvec_userhz_jiffies_conv.llvm.16294858378822551814
+ffffffff810e1f30 t proc_dointvec_ms_jiffies
+ffffffff810e1f60 t do_proc_dointvec_ms_jiffies_conv.llvm.16294858378822551814
+ffffffff810e1fc0 t proc_do_large_bitmap
+ffffffff810e2660 t proc_get_long
+ffffffff810e27f0 t proc_do_static_key
+ffffffff810e2960 t __do_proc_dointvec.llvm.16294858378822551814
+ffffffff810e2da0 t do_proc_dointvec_conv
+ffffffff810e2e00 t proc_taint
+ffffffff810e2f40 t sysrq_sysctl_handler
+ffffffff810e2fe0 t proc_do_cad_pid
+ffffffff810e30a0 t proc_dointvec_minmax_warn_RT_change
+ffffffff810e3110 t __x64_sys_capget
+ffffffff810e3310 t __x64_sys_capset
+ffffffff810e3550 t has_ns_capability
+ffffffff810e35a0 t has_capability
+ffffffff810e35e0 t has_ns_capability_noaudit
+ffffffff810e3630 t has_capability_noaudit
+ffffffff810e3680 t ns_capable
+ffffffff810e36d0 t ns_capable_noaudit
+ffffffff810e3720 t ns_capable_setid
+ffffffff810e3770 t capable
+ffffffff810e37c0 t file_ns_capable
+ffffffff810e37f0 t privileged_wrt_inode_uidgid
+ffffffff810e3820 t capable_wrt_inode_uidgid
+ffffffff810e3890 t ptracer_capable
+ffffffff810e38e0 t cap_validate_magic
+ffffffff810e3a20 t ptrace_access_vm
+ffffffff810e3ad0 t __ptrace_link
+ffffffff810e3b70 t __ptrace_unlink
+ffffffff810e3cb0 t ptrace_may_access
+ffffffff810e3d00 t __ptrace_may_access
+ffffffff810e3e40 t exit_ptrace
+ffffffff810e3ef0 t __ptrace_detach
+ffffffff810e3fd0 t ptrace_readdata
+ffffffff810e4200 t ptrace_writedata
+ffffffff810e4420 t ptrace_request
+ffffffff810e4f30 t generic_ptrace_peekdata
+ffffffff810e5020 t generic_ptrace_pokedata
+ffffffff810e5100 t ptrace_setsiginfo
+ffffffff810e51c0 t ptrace_regset
+ffffffff810e52e0 t __x64_sys_ptrace
+ffffffff810e58c0 t find_user
+ffffffff810e5980 t free_uid
+ffffffff810e5a30 t alloc_uid
+ffffffff810e5c30 t __traceiter_signal_generate
+ffffffff810e5ca0 t __traceiter_signal_deliver
+ffffffff810e5d00 t trace_event_raw_event_signal_generate
+ffffffff810e5e40 t perf_trace_signal_generate
+ffffffff810e5fb0 t trace_event_raw_event_signal_deliver
+ffffffff810e60c0 t perf_trace_signal_deliver
+ffffffff810e6210 t recalc_sigpending_and_wake
+ffffffff810e6280 t recalc_sigpending
+ffffffff810e62f0 t calculate_sigpending
+ffffffff810e6370 t next_signal
+ffffffff810e63b0 t task_set_jobctl_pending
+ffffffff810e6420 t task_clear_jobctl_trapping
+ffffffff810e6460 t task_clear_jobctl_pending
+ffffffff810e64e0 t task_join_group_stop
+ffffffff810e6560 t flush_sigqueue
+ffffffff810e65f0 t flush_signals
+ffffffff810e6730 t flush_itimer_signals
+ffffffff810e6950 t ignore_signals
+ffffffff810e69c0 t flush_signal_handlers
+ffffffff810e6a60 t unhandled_signal
+ffffffff810e6aa0 t dequeue_signal
+ffffffff810e6c90 t __dequeue_signal
+ffffffff810e6e10 t signal_wake_up_state
+ffffffff810e6e40 t send_signal_locked
+ffffffff810e6fe0 t __send_signal_locked
+ffffffff810e7370 t do_send_sig_info
+ffffffff810e7410 t force_sig_info
+ffffffff810e7430 t force_sig_info_to_task
+ffffffff810e7570 t zap_other_threads
+ffffffff810e7690 t __lock_task_sighand
+ffffffff810e76f0 t group_send_sig_info
+ffffffff810e7760 t check_kill_permission
+ffffffff810e7850 t __kill_pgrp_info
+ffffffff810e7910 t kill_pid_info
+ffffffff810e79b0 t kill_pid_usb_asyncio
+ffffffff810e7b30 t send_sig_info
+ffffffff810e7b50 t send_sig
+ffffffff810e7b80 t force_sig
+ffffffff810e7c00 t force_fatal_sig
+ffffffff810e7c90 t force_exit_sig
+ffffffff810e7d20 t force_sigsegv
+ffffffff810e7df0 t force_sig_fault_to_task
+ffffffff810e7e70 t force_sig_fault
+ffffffff810e7ef0 t send_sig_fault
+ffffffff810e7f70 t force_sig_mceerr
+ffffffff810e8000 t send_sig_mceerr
+ffffffff810e8090 t force_sig_bnderr
+ffffffff810e8110 t force_sig_pkuerr
+ffffffff810e8190 t send_sig_perf
+ffffffff810e8220 t force_sig_seccomp
+ffffffff810e82c0 t force_sig_ptrace_errno_trap
+ffffffff810e8340 t force_sig_fault_trapno
+ffffffff810e83c0 t send_sig_fault_trapno
+ffffffff810e8440 t kill_pgrp
+ffffffff810e8530 t kill_pid
+ffffffff810e8560 t sigqueue_alloc
+ffffffff810e8590 t __sigqueue_alloc
+ffffffff810e8660 t sigqueue_free
+ffffffff810e86f0 t send_sigqueue
+ffffffff810e8900 t prepare_signal
+ffffffff810e8be0 t complete_signal
+ffffffff810e8ea0 t do_notify_parent
+ffffffff810e9180 t ptrace_notify
+ffffffff810e9290 t get_signal
+ffffffff810e9a40 t do_notify_parent_cldstop
+ffffffff810e9bf0 t do_signal_stop
+ffffffff810e9e10 t do_jobctl_trap
+ffffffff810e9f30 t do_freezer_trap
+ffffffff810e9f90 t ptrace_signal
+ffffffff810ea0c0 t signal_setup_done
+ffffffff810ea270 t exit_signals
+ffffffff810ea500 t task_participate_group_stop
+ffffffff810ea5c0 t __x64_sys_restart_syscall
+ffffffff810ea5f0 t do_no_restart_syscall
+ffffffff810ea610 t set_current_blocked
+ffffffff810ea670 t __set_current_blocked
+ffffffff810ea6c0 t __set_task_blocked
+ffffffff810ea810 t sigprocmask
+ffffffff810ea8e0 t set_user_sigmask
+ffffffff810ea9b0 t __x64_sys_rt_sigprocmask
+ffffffff810eab00 t __x64_sys_rt_sigpending
+ffffffff810eabd0 t siginfo_layout
+ffffffff810eaca0 t copy_siginfo_to_user
+ffffffff810ead10 t copy_siginfo_from_user
+ffffffff810eae90 t __x64_sys_rt_sigtimedwait
+ffffffff810eb1e0 t __x64_sys_kill
+ffffffff810eb490 t __x64_sys_pidfd_send_signal
+ffffffff810eb6c0 t __x64_sys_tgkill
+ffffffff810eb7b0 t __x64_sys_tkill
+ffffffff810eb8d0 t __x64_sys_rt_sigqueueinfo
+ffffffff810ebb00 t __x64_sys_rt_tgsigqueueinfo
+ffffffff810ebd30 t kernel_sigaction
+ffffffff810ebe40 t flush_sigqueue_mask
+ffffffff810ebf10 t sigaction_compat_abi
+ffffffff810ebf20 t do_sigaction
+ffffffff810ec110 t __x64_sys_sigaltstack
+ffffffff810ec340 t restore_altstack
+ffffffff810ec480 t __save_altstack
+ffffffff810ec4d0 t __x64_sys_sigpending
+ffffffff810ec580 t __x64_sys_sigprocmask
+ffffffff810ec6b0 t __x64_sys_rt_sigaction
+ffffffff810ec7c0 t __x64_sys_sgetmask
+ffffffff810ec7e0 t __x64_sys_ssetmask
+ffffffff810ec870 t __x64_sys_signal
+ffffffff810ec910 t __x64_sys_pause
+ffffffff810ec960 t __x64_sys_rt_sigsuspend
+ffffffff810eca60 t trace_raw_output_signal_generate
+ffffffff810ecad0 t trace_raw_output_signal_deliver
+ffffffff810ecb40 t print_dropped_signal
+ffffffff810ecba0 t ptrace_trap_notify
+ffffffff810ecc30 t ptrace_stop
+ffffffff810ecf00 t do_send_specific
+ffffffff810ecfa0 t __x64_sys_setpriority
+ffffffff810ed210 t __x64_sys_getpriority
+ffffffff810ed460 t __sys_setregid
+ffffffff810ed570 t __x64_sys_setregid
+ffffffff810ed590 t __sys_setgid
+ffffffff810ed660 t __x64_sys_setgid
+ffffffff810ed680 t __sys_setreuid
+ffffffff810ed820 t __x64_sys_setreuid
+ffffffff810ed840 t __sys_setuid
+ffffffff810ed980 t __x64_sys_setuid
+ffffffff810ed9a0 t __sys_setresuid
+ffffffff810edb90 t __x64_sys_setresuid
+ffffffff810edbb0 t __x64_sys_getresuid
+ffffffff810edc30 t __sys_setresgid
+ffffffff810edda0 t __x64_sys_setresgid
+ffffffff810eddc0 t __x64_sys_getresgid
+ffffffff810ede40 t __sys_setfsuid
+ffffffff810edef0 t __x64_sys_setfsuid
+ffffffff810edf10 t __sys_setfsgid
+ffffffff810edfc0 t __x64_sys_setfsgid
+ffffffff810edfe0 t __x64_sys_getpid
+ffffffff810ee010 t __x64_sys_gettid
+ffffffff810ee030 t __x64_sys_getppid
+ffffffff810ee070 t __x64_sys_getuid
+ffffffff810ee0a0 t __x64_sys_geteuid
+ffffffff810ee0d0 t __x64_sys_getgid
+ffffffff810ee100 t __x64_sys_getegid
+ffffffff810ee130 t __x64_sys_times
+ffffffff810ee240 t __x64_sys_setpgid
+ffffffff810ee3d0 t __x64_sys_getpgid
+ffffffff810ee450 t __x64_sys_getpgrp
+ffffffff810ee490 t __x64_sys_getsid
+ffffffff810ee510 t ksys_setsid
+ffffffff810ee600 t __x64_sys_setsid
+ffffffff810ee620 t __x64_sys_newuname
+ffffffff810ee710 t __x64_sys_uname
+ffffffff810ee810 t __x64_sys_olduname
+ffffffff810ee950 t __x64_sys_sethostname
+ffffffff810eeac0 t __x64_sys_gethostname
+ffffffff810eec10 t __x64_sys_setdomainname
+ffffffff810eed90 t __x64_sys_getrlimit
+ffffffff810eee70 t __x64_sys_old_getrlimit
+ffffffff810eef80 t __x64_sys_prlimit64
+ffffffff810ef220 t __x64_sys_setrlimit
+ffffffff810ef2b0 t getrusage
+ffffffff810ef680 t __x64_sys_getrusage
+ffffffff810ef730 t __x64_sys_umask
+ffffffff810ef760 t __x64_sys_prctl
+ffffffff810f0690 t __x64_sys_getcpu
+ffffffff810f06f0 t __x64_sys_sysinfo
+ffffffff810f0880 t set_one_prio
+ffffffff810f0930 t override_release
+ffffffff810f0ae0 t do_prlimit
+ffffffff810f0c40 t propagate_has_child_subreaper
+ffffffff810f0c90 t usermodehelper_read_trylock
+ffffffff810f0db0 t usermodehelper_read_lock_wait
+ffffffff810f0e90 t usermodehelper_read_unlock
+ffffffff810f0eb0 t __usermodehelper_set_disable_depth
+ffffffff810f0f00 t __usermodehelper_disable
+ffffffff810f10a0 t call_usermodehelper_setup
+ffffffff810f1160 t call_usermodehelper_exec_work
+ffffffff810f1210 t call_usermodehelper_exec
+ffffffff810f13a0 t call_usermodehelper
+ffffffff810f1440 t proc_cap_handler
+ffffffff810f1610 t call_usermodehelper_exec_async
+ffffffff810f1750 t __traceiter_workqueue_queue_work
+ffffffff810f17b0 t __traceiter_workqueue_activate_work
+ffffffff810f1800 t __traceiter_workqueue_execute_start
+ffffffff810f1850 t __traceiter_workqueue_execute_end
+ffffffff810f18a0 t trace_event_raw_event_workqueue_queue_work
+ffffffff810f19e0 t perf_trace_workqueue_queue_work
+ffffffff810f1b60 t trace_event_raw_event_workqueue_activate_work
+ffffffff810f1c20 t perf_trace_workqueue_activate_work
+ffffffff810f1d10 t trace_event_raw_event_workqueue_execute_start
+ffffffff810f1dd0 t perf_trace_workqueue_execute_start
+ffffffff810f1ed0 t trace_event_raw_event_workqueue_execute_end
+ffffffff810f1f90 t perf_trace_workqueue_execute_end
+ffffffff810f2090 t wq_worker_running
+ffffffff810f20f0 t wq_worker_sleeping
+ffffffff810f2180 t wq_worker_last_func
+ffffffff810f21a0 t queue_work_on
+ffffffff810f2220 t __queue_work
+ffffffff810f26b0 t queue_work_node
+ffffffff810f2740 t delayed_work_timer_fn
+ffffffff810f2760 t queue_delayed_work_on
+ffffffff810f27e0 t __queue_delayed_work
+ffffffff810f2870 t mod_delayed_work_on
+ffffffff810f2910 t try_to_grab_pending
+ffffffff810f2ab0 t queue_rcu_work
+ffffffff810f2af0 t rcu_work_rcufn
+ffffffff810f2b10 t __flush_workqueue
+ffffffff810f2fe0 t flush_workqueue_prep_pwqs
+ffffffff810f3100 t check_flush_dependency
+ffffffff810f3200 t drain_workqueue
+ffffffff810f3350 t flush_work
+ffffffff810f3360 t __flush_work.llvm.16590592510278011231
+ffffffff810f35c0 t cancel_work_sync
+ffffffff810f35e0 t __cancel_work_timer.llvm.16590592510278011231
+ffffffff810f3770 t flush_delayed_work
+ffffffff810f37b0 t flush_rcu_work
+ffffffff810f37f0 t cancel_work
+ffffffff810f38a0 t cancel_delayed_work
+ffffffff810f3950 t cancel_delayed_work_sync
+ffffffff810f3970 t schedule_on_each_cpu
+ffffffff810f3b20 t execute_in_process_context
+ffffffff810f3bd0 t schedule_work
+ffffffff810f3c50 t free_workqueue_attrs
+ffffffff810f3c70 t alloc_workqueue_attrs
+ffffffff810f3cd0 t apply_workqueue_attrs
+ffffffff810f3d10 t apply_workqueue_attrs_locked
+ffffffff810f3da0 t alloc_workqueue
+ffffffff810f4380 t init_rescuer
+ffffffff810f4470 t workqueue_sysfs_register
+ffffffff810f45a0 t pwq_adjust_max_active
+ffffffff810f4670 t destroy_workqueue
+ffffffff810f4920 t show_pwq
+ffffffff810f4cc0 t show_one_workqueue
+ffffffff810f4d90 t rcu_free_wq
+ffffffff810f4dd0 t put_pwq_unlocked
+ffffffff810f4e80 t workqueue_set_max_active
+ffffffff810f4f60 t current_work
+ffffffff810f4fa0 t current_is_workqueue_rescuer
+ffffffff810f4ff0 t workqueue_congested
+ffffffff810f5090 t work_busy
+ffffffff810f5170 t set_worker_desc
+ffffffff810f5250 t print_worker_info
+ffffffff810f53d0 t show_all_workqueues
+ffffffff810f55f0 t wq_worker_comm
+ffffffff810f56b0 t workqueue_prepare_cpu
+ffffffff810f5730 t create_worker
+ffffffff810f5910 t workqueue_online_cpu
+ffffffff810f5b20 t workqueue_offline_cpu
+ffffffff810f5cd0 t work_on_cpu
+ffffffff810f5da0 t work_for_cpu_fn
+ffffffff810f5dd0 t work_on_cpu_safe
+ffffffff810f5ed0 t freeze_workqueues_begin
+ffffffff810f5f80 t freeze_workqueues_busy
+ffffffff810f6040 t thaw_workqueues
+ffffffff810f60e0 t workqueue_set_unbound_cpumask
+ffffffff810f6320 t wq_device_release
+ffffffff810f6340 t wq_watchdog_touch
+ffffffff810f6380 t init_worker_pool
+ffffffff810f64d0 t __warn_flushing_systemwide_wq
+ffffffff810f64e0 t trace_raw_output_workqueue_queue_work
+ffffffff810f6550 t trace_raw_output_workqueue_activate_work
+ffffffff810f65a0 t trace_raw_output_workqueue_execute_start
+ffffffff810f6600 t trace_raw_output_workqueue_execute_end
+ffffffff810f6660 t is_chained_work
+ffffffff810f66b0 t insert_work
+ffffffff810f6770 t pwq_activate_inactive_work
+ffffffff810f68c0 t pwq_dec_nr_in_flight
+ffffffff810f6970 t wq_barrier_func
+ffffffff810f6990 t cwt_wakefn
+ffffffff810f69b0 t apply_wqattrs_prepare
+ffffffff810f70f0 t apply_wqattrs_commit
+ffffffff810f7240 t put_unbound_pool
+ffffffff810f7420 t destroy_worker
+ffffffff810f74a0 t rcu_free_pool
+ffffffff810f74e0 t pwq_unbound_release_workfn
+ffffffff810f75f0 t rcu_free_pwq
+ffffffff810f7620 t rescuer_thread
+ffffffff810f7a70 t worker_attach_to_pool
+ffffffff810f7b30 t worker_detach_from_pool
+ffffffff810f7be0 t process_one_work
+ffffffff810f7fb0 t worker_set_flags
+ffffffff810f7ff0 t worker_clr_flags
+ffffffff810f8040 t worker_thread
+ffffffff810f8490 t worker_enter_idle
+ffffffff810f8580 t wq_unbound_cpumask_show
+ffffffff810f85d0 t wq_unbound_cpumask_store
+ffffffff810f8670 t per_cpu_show
+ffffffff810f86b0 t max_active_show
+ffffffff810f86e0 t max_active_store
+ffffffff810f8760 t wq_pool_ids_show
+ffffffff810f87f0 t wq_nice_show
+ffffffff810f8850 t wq_nice_store
+ffffffff810f8980 t wq_cpumask_show
+ffffffff810f89e0 t wq_cpumask_store
+ffffffff810f8b00 t wq_numa_show
+ffffffff810f8b60 t wq_numa_store
+ffffffff810f8c80 t wq_watchdog_param_set_thresh
+ffffffff810f8da0 t idle_worker_timeout
+ffffffff810f8e30 t pool_mayday_timeout
+ffffffff810f8f90 t wq_watchdog_timer_fn
+ffffffff810f91b0 t put_pid
+ffffffff810f9200 t free_pid
+ffffffff810f92d0 t delayed_put_pid
+ffffffff810f9320 t alloc_pid
+ffffffff810f96b0 t disable_pid_allocation
+ffffffff810f96e0 t find_pid_ns
+ffffffff810f9700 t find_vpid
+ffffffff810f9740 t task_active_pid_ns
+ffffffff810f9770 t attach_pid
+ffffffff810f97f0 t detach_pid
+ffffffff810f98a0 t change_pid
+ffffffff810f99b0 t exchange_tids
+ffffffff810f9a20 t transfer_pid
+ffffffff810f9ab0 t pid_task
+ffffffff810f9af0 t find_task_by_pid_ns
+ffffffff810f9b30 t find_task_by_vpid
+ffffffff810f9b90 t find_get_task_by_vpid
+ffffffff810f9c30 t get_task_pid
+ffffffff810f9cc0 t get_pid_task
+ffffffff810f9d50 t find_get_pid
+ffffffff810f9dd0 t pid_nr_ns
+ffffffff810f9e00 t pid_vnr
+ffffffff810f9e60 t __task_pid_nr_ns
+ffffffff810f9f10 t find_ge_pid
+ffffffff810f9f60 t pidfd_get_pid
+ffffffff810f9ff0 t pidfd_get_task
+ffffffff810fa180 t pidfd_create
+ffffffff810fa250 t __x64_sys_pidfd_open
+ffffffff810fa350 t __x64_sys_pidfd_getfd
+ffffffff810fa540 t task_work_add
+ffffffff810fa600 t task_work_cancel_match
+ffffffff810fa6c0 t task_work_cancel
+ffffffff810fa750 t task_work_run
+ffffffff810fa800 t search_kernel_exception_table
+ffffffff810fa880 t search_exception_tables
+ffffffff810fa910 t core_kernel_text
+ffffffff810fa980 t __kernel_text_address
+ffffffff810fa9c0 t kernel_text_address
+ffffffff810faa50 t func_ptr_is_kernel_text
+ffffffff810faac0 t parameqn
+ffffffff810fab40 t parameq
+ffffffff810fabd0 t parse_args
+ffffffff810fafa0 t param_set_byte
+ffffffff810fafc0 t param_get_byte
+ffffffff810faff0 t param_set_short
+ffffffff810fb010 t param_get_short
+ffffffff810fb040 t param_set_ushort
+ffffffff810fb060 t param_get_ushort
+ffffffff810fb090 t param_set_int
+ffffffff810fb0b0 t param_get_int
+ffffffff810fb0e0 t param_set_uint
+ffffffff810fb100 t param_get_uint
+ffffffff810fb130 t param_set_long
+ffffffff810fb150 t param_get_long
+ffffffff810fb180 t param_set_ulong
+ffffffff810fb1a0 t param_get_ulong
+ffffffff810fb1d0 t param_set_ullong
+ffffffff810fb1f0 t param_get_ullong
+ffffffff810fb220 t param_set_hexint
+ffffffff810fb240 t param_get_hexint
+ffffffff810fb270 t param_set_uint_minmax
+ffffffff810fb300 t param_set_charp
+ffffffff810fb480 t param_get_charp
+ffffffff810fb4b0 t param_free_charp
+ffffffff810fb540 t param_set_bool
+ffffffff810fb570 t param_get_bool
+ffffffff810fb5a0 t param_set_bool_enable_only
+ffffffff810fb640 t param_set_invbool
+ffffffff810fb6b0 t param_get_invbool
+ffffffff810fb6e0 t param_set_bint
+ffffffff810fb750 t param_array_set
+ffffffff810fb8f0 t param_array_get
+ffffffff810fba80 t param_array_free
+ffffffff810fbaf0 t param_set_copystring
+ffffffff810fbb50 t param_get_string
+ffffffff810fbb80 t kernel_param_lock
+ffffffff810fbbb0 t kernel_param_unlock
+ffffffff810fbbe0 t module_param_sysfs_setup
+ffffffff810fbce0 t add_sysfs_param
+ffffffff810fbee0 t module_param_sysfs_remove
+ffffffff810fbf40 t destroy_params
+ffffffff810fbf90 t __modver_version_show
+ffffffff810fbfc0 t module_kobj_release
+ffffffff810fbfe0 t param_attr_show
+ffffffff810fc070 t param_attr_store
+ffffffff810fc170 t module_attr_show
+ffffffff810fc1b0 t module_attr_store
+ffffffff810fc1f0 t uevent_filter
+ffffffff810fc210 t get_kthread_comm
+ffffffff810fc260 t to_kthread
+ffffffff810fc280 t set_kthread_struct
+ffffffff810fc340 t free_kthread_struct
+ffffffff810fc390 t kthread_should_stop
+ffffffff810fc3c0 t __kthread_should_park
+ffffffff810fc3f0 t kthread_should_park
+ffffffff810fc420 t kthread_freezable_should_stop
+ffffffff810fc490 t kthread_func
+ffffffff810fc4c0 t kthread_data
+ffffffff810fc4e0 t kthread_probe_data
+ffffffff810fc550 t kthread_parkme
+ffffffff810fc580 t __kthread_parkme
+ffffffff810fc620 t kthread_exit
+ffffffff810fc640 t kthread_complete_and_exit
+ffffffff810fc660 t tsk_fork_get_node
+ffffffff810fc670 t kthread_create_on_node
+ffffffff810fc6e0 t __kthread_create_on_node
+ffffffff810fc900 t kthread_bind_mask
+ffffffff810fc960 t kthread_bind
+ffffffff810fc9e0 t kthread_create_on_cpu
+ffffffff810fcaa0 t kthread_set_per_cpu
+ffffffff810fcaf0 t kthread_is_per_cpu
+ffffffff810fcb20 t kthread_unpark
+ffffffff810fcbe0 t kthread_park
+ffffffff810fcc80 t kthread_stop
+ffffffff810fcde0 t kthreadd
+ffffffff810fcf50 t __kthread_init_worker
+ffffffff810fcfb0 t kthread_worker_fn
+ffffffff810fd1d0 t kthread_create_worker
+ffffffff810fd320 t kthread_create_worker_on_cpu
+ffffffff810fd4f0 t kthread_queue_work
+ffffffff810fd560 t kthread_insert_work
+ffffffff810fd640 t kthread_delayed_work_timer_fn
+ffffffff810fd6e0 t kthread_queue_delayed_work
+ffffffff810fd750 t __kthread_queue_delayed_work
+ffffffff810fd820 t kthread_flush_work
+ffffffff810fd920 t kthread_flush_work_fn
+ffffffff810fd940 t kthread_mod_delayed_work
+ffffffff810fda30 t kthread_cancel_work_sync
+ffffffff810fda50 t __kthread_cancel_work_sync.llvm.11262700147022795017
+ffffffff810fdb50 t kthread_cancel_delayed_work_sync
+ffffffff810fdb70 t kthread_flush_worker
+ffffffff810fdc60 t kthread_destroy_worker
+ffffffff810fdcb0 t kthread_use_mm
+ffffffff810fdda0 t kthread_unuse_mm
+ffffffff810fde30 t kthread_associate_blkcg
+ffffffff810fdef0 t kthread_blkcg
+ffffffff810fdf30 t kthread
+ffffffff810fe040 W compat_sys_epoll_pwait
+ffffffff810fe040 W compat_sys_epoll_pwait2
+ffffffff810fe040 W compat_sys_fadvise64_64
+ffffffff810fe040 W compat_sys_fanotify_mark
+ffffffff810fe040 W compat_sys_get_robust_list
+ffffffff810fe040 W compat_sys_getsockopt
+ffffffff810fe040 W compat_sys_io_pgetevents
+ffffffff810fe040 W compat_sys_io_pgetevents_time32
+ffffffff810fe040 W compat_sys_io_setup
+ffffffff810fe040 W compat_sys_io_submit
+ffffffff810fe040 W compat_sys_ipc
+ffffffff810fe040 W compat_sys_kexec_load
+ffffffff810fe040 W compat_sys_keyctl
+ffffffff810fe040 W compat_sys_lookup_dcookie
+ffffffff810fe040 W compat_sys_mq_getsetattr
+ffffffff810fe040 W compat_sys_mq_notify
+ffffffff810fe040 W compat_sys_mq_open
+ffffffff810fe040 W compat_sys_msgctl
+ffffffff810fe040 W compat_sys_msgrcv
+ffffffff810fe040 W compat_sys_msgsnd
+ffffffff810fe040 W compat_sys_old_msgctl
+ffffffff810fe040 W compat_sys_old_semctl
+ffffffff810fe040 W compat_sys_old_shmctl
+ffffffff810fe040 W compat_sys_open_by_handle_at
+ffffffff810fe040 W compat_sys_ppoll_time32
+ffffffff810fe040 W compat_sys_process_vm_readv
+ffffffff810fe040 W compat_sys_process_vm_writev
+ffffffff810fe040 W compat_sys_pselect6_time32
+ffffffff810fe040 W compat_sys_recv
+ffffffff810fe040 W compat_sys_recvfrom
+ffffffff810fe040 W compat_sys_recvmmsg_time32
+ffffffff810fe040 W compat_sys_recvmmsg_time64
+ffffffff810fe040 W compat_sys_recvmsg
+ffffffff810fe040 W compat_sys_rt_sigtimedwait_time32
+ffffffff810fe040 W compat_sys_s390_ipc
+ffffffff810fe040 W compat_sys_semctl
+ffffffff810fe040 W compat_sys_sendmmsg
+ffffffff810fe040 W compat_sys_sendmsg
+ffffffff810fe040 W compat_sys_set_robust_list
+ffffffff810fe040 W compat_sys_setsockopt
+ffffffff810fe040 W compat_sys_shmat
+ffffffff810fe040 W compat_sys_shmctl
+ffffffff810fe040 W compat_sys_signalfd
+ffffffff810fe040 W compat_sys_signalfd4
+ffffffff810fe040 W compat_sys_socketcall
+ffffffff810fe040 t sys_ni_syscall
+ffffffff810fe060 t __x64_sys_io_getevents_time32
+ffffffff810fe080 t __x64_sys_io_pgetevents_time32
+ffffffff810fe0a0 t __x64_sys_lookup_dcookie
+ffffffff810fe0c0 t __x64_sys_quotactl
+ffffffff810fe0e0 t __x64_sys_quotactl_fd
+ffffffff810fe100 t __x64_sys_timerfd_settime32
+ffffffff810fe120 t __x64_sys_timerfd_gettime32
+ffffffff810fe140 t __x64_sys_acct
+ffffffff810fe160 t __x64_sys_futex_time32
+ffffffff810fe180 t __x64_sys_kexec_load
+ffffffff810fe1a0 t __x64_sys_delete_module
+ffffffff810fe1c0 t __x64_sys_mq_open
+ffffffff810fe1e0 t __x64_sys_mq_unlink
+ffffffff810fe200 t __x64_sys_mq_timedsend
+ffffffff810fe220 t __x64_sys_mq_timedsend_time32
+ffffffff810fe240 t __x64_sys_mq_timedreceive
+ffffffff810fe260 t __x64_sys_mq_timedreceive_time32
+ffffffff810fe280 t __x64_sys_mq_notify
+ffffffff810fe2a0 t __x64_sys_mq_getsetattr
+ffffffff810fe2c0 t __x64_sys_msgget
+ffffffff810fe2e0 t __x64_sys_old_msgctl
+ffffffff810fe300 t __x64_sys_msgctl
+ffffffff810fe320 t __x64_sys_msgrcv
+ffffffff810fe340 t __x64_sys_msgsnd
+ffffffff810fe360 t __x64_sys_semget
+ffffffff810fe380 t __x64_sys_old_semctl
+ffffffff810fe3a0 t __x64_sys_semctl
+ffffffff810fe3c0 t __x64_sys_semtimedop
+ffffffff810fe3e0 t __x64_sys_semtimedop_time32
+ffffffff810fe400 t __x64_sys_semop
+ffffffff810fe420 t __x64_sys_shmget
+ffffffff810fe440 t __x64_sys_old_shmctl
+ffffffff810fe460 t __x64_sys_shmctl
+ffffffff810fe480 t __x64_sys_shmat
+ffffffff810fe4a0 t __x64_sys_shmdt
+ffffffff810fe4c0 t __x64_sys_add_key
+ffffffff810fe4e0 t __x64_sys_request_key
+ffffffff810fe500 t __x64_sys_keyctl
+ffffffff810fe520 t __x64_sys_landlock_create_ruleset
+ffffffff810fe540 t __x64_sys_landlock_add_rule
+ffffffff810fe560 t __x64_sys_landlock_restrict_self
+ffffffff810fe580 t __x64_sys_mbind
+ffffffff810fe5a0 t __x64_sys_get_mempolicy
+ffffffff810fe5c0 t __x64_sys_set_mempolicy
+ffffffff810fe5e0 t __x64_sys_migrate_pages
+ffffffff810fe600 t __x64_sys_move_pages
+ffffffff810fe620 t __x64_sys_set_mempolicy_home_node
+ffffffff810fe640 t __x64_sys_recvmmsg_time32
+ffffffff810fe660 t __x64_sys_fanotify_init
+ffffffff810fe680 t __x64_sys_fanotify_mark
+ffffffff810fe6a0 t __x64_sys_kcmp
+ffffffff810fe6c0 t __x64_sys_bpf
+ffffffff810fe6e0 t __x64_sys_pciconfig_read
+ffffffff810fe700 t __x64_sys_pciconfig_write
+ffffffff810fe720 t __x64_sys_pciconfig_iobase
+ffffffff810fe740 t __x64_sys_vm86old
+ffffffff810fe760 t __x64_sys_vm86
+ffffffff810fe780 t __x64_sys_s390_pci_mmio_read
+ffffffff810fe7a0 t __x64_sys_s390_pci_mmio_write
+ffffffff810fe7c0 t __x64_sys_s390_ipc
+ffffffff810fe7e0 t __x64_sys_rtas
+ffffffff810fe800 t __x64_sys_spu_run
+ffffffff810fe820 t __x64_sys_spu_create
+ffffffff810fe840 t __x64_sys_subpage_prot
+ffffffff810fe860 t __x64_sys_uselib
+ffffffff810fe880 t __x64_sys_time32
+ffffffff810fe8a0 t __x64_sys_stime32
+ffffffff810fe8c0 t __x64_sys_utime32
+ffffffff810fe8e0 t __x64_sys_adjtimex_time32
+ffffffff810fe900 t __x64_sys_sched_rr_get_interval_time32
+ffffffff810fe920 t __x64_sys_nanosleep_time32
+ffffffff810fe940 t __x64_sys_rt_sigtimedwait_time32
+ffffffff810fe960 t __x64_sys_timer_settime32
+ffffffff810fe980 t __x64_sys_timer_gettime32
+ffffffff810fe9a0 t __x64_sys_clock_settime32
+ffffffff810fe9c0 t __x64_sys_clock_gettime32
+ffffffff810fe9e0 t __x64_sys_clock_getres_time32
+ffffffff810fea00 t __x64_sys_clock_nanosleep_time32
+ffffffff810fea20 t __x64_sys_utimes_time32
+ffffffff810fea40 t __x64_sys_futimesat_time32
+ffffffff810fea60 t __x64_sys_pselect6_time32
+ffffffff810fea80 t __x64_sys_ppoll_time32
+ffffffff810feaa0 t __x64_sys_utimensat_time32
+ffffffff810feac0 t __x64_sys_clock_adjtime32
+ffffffff810feae0 t __x64_sys_ipc
+ffffffff810feb00 t __x64_sys_chown16
+ffffffff810feb20 t __x64_sys_fchown16
+ffffffff810feb40 t __x64_sys_getegid16
+ffffffff810feb60 t __x64_sys_geteuid16
+ffffffff810feb80 t __x64_sys_getgid16
+ffffffff810feba0 t __x64_sys_getgroups16
+ffffffff810febc0 t __x64_sys_getresgid16
+ffffffff810febe0 t __x64_sys_getresuid16
+ffffffff810fec00 t __x64_sys_getuid16
+ffffffff810fec20 t __x64_sys_lchown16
+ffffffff810fec40 t __x64_sys_setfsgid16
+ffffffff810fec60 t __x64_sys_setfsuid16
+ffffffff810fec80 t __x64_sys_setgid16
+ffffffff810feca0 t __x64_sys_setgroups16
+ffffffff810fecc0 t __x64_sys_setregid16
+ffffffff810fece0 t __x64_sys_setresgid16
+ffffffff810fed00 t __x64_sys_setresuid16
+ffffffff810fed20 t __x64_sys_setreuid16
+ffffffff810fed40 t __x64_sys_setuid16
+ffffffff810fed60 t copy_namespaces
+ffffffff810fee10 t create_new_namespaces
+ffffffff810fefb0 t free_nsproxy
+ffffffff810ff010 t put_cgroup_ns
+ffffffff810ff050 t unshare_nsproxy_namespaces
+ffffffff810ff0e0 t switch_task_namespaces
+ffffffff810ff190 t exit_task_namespaces
+ffffffff810ff1b0 t __x64_sys_setns
+ffffffff810ff5c0 t atomic_notifier_chain_register
+ffffffff810ff660 t notifier_chain_register
+ffffffff810ff6e0 t atomic_notifier_chain_register_unique_prio
+ffffffff810ff780 t atomic_notifier_chain_unregister
+ffffffff810ff800 t atomic_notifier_call_chain
+ffffffff810ff880 t atomic_notifier_call_chain_is_empty
+ffffffff810ff8a0 t blocking_notifier_chain_register
+ffffffff810ff8c0 t __blocking_notifier_chain_register.llvm.4817558001719751988
+ffffffff810ff990 t blocking_notifier_chain_register_unique_prio
+ffffffff810ff9b0 t blocking_notifier_chain_unregister
+ffffffff810ffa70 t blocking_notifier_call_chain_robust
+ffffffff810ffb60 t blocking_notifier_call_chain
+ffffffff810ffc00 t raw_notifier_chain_register
+ffffffff810ffc60 t raw_notifier_chain_unregister
+ffffffff810ffcb0 t raw_notifier_call_chain_robust
+ffffffff810ffd80 t raw_notifier_call_chain
+ffffffff810ffde0 t srcu_notifier_chain_register
+ffffffff810ffea0 t srcu_notifier_chain_unregister
+ffffffff810fff70 t srcu_notifier_call_chain
+ffffffff81100020 t srcu_init_notifier_head
+ffffffff81100070 t notify_die
+ffffffff81100140 t register_die_notifier
+ffffffff811001f0 t unregister_die_notifier
+ffffffff81100270 t fscaps_show
+ffffffff811002a0 t uevent_seqnum_show
+ffffffff811002d0 t profiling_show
+ffffffff81100300 t profiling_store
+ffffffff81100350 t kexec_loaded_show
+ffffffff81100380 t kexec_crash_loaded_show
+ffffffff811003b0 t kexec_crash_size_show
+ffffffff811003e0 t kexec_crash_size_store
+ffffffff81100450 t vmcoreinfo_show
+ffffffff811004b0 t rcu_expedited_show
+ffffffff811004e0 t rcu_expedited_store
+ffffffff81100510 t rcu_normal_show
+ffffffff81100540 t rcu_normal_store
+ffffffff81100570 t notes_read
+ffffffff811005a0 t __put_cred
+ffffffff81100600 t put_cred_rcu
+ffffffff81100680 t exit_creds
+ffffffff81100760 t get_task_cred
+ffffffff811007b0 t cred_alloc_blank
+ffffffff81100800 t abort_creds
+ffffffff81100870 t prepare_creds
+ffffffff81100940 t prepare_exec_creds
+ffffffff81100970 t copy_creds
+ffffffff81100aa0 t set_cred_ucounts
+ffffffff81100b00 t commit_creds
+ffffffff81100cd0 t override_creds
+ffffffff81100d00 t revert_creds
+ffffffff81100d70 t cred_fscmp
+ffffffff81100df0 t prepare_kernel_cred
+ffffffff81101020 t set_security_override
+ffffffff81101030 t set_security_override_from_ctx
+ffffffff811010a0 t set_create_files_as
+ffffffff811010d0 t emergency_restart
+ffffffff81101100 t kernel_restart_prepare
+ffffffff81101140 t register_reboot_notifier
+ffffffff81101160 t unregister_reboot_notifier
+ffffffff81101180 t devm_register_reboot_notifier
+ffffffff81101210 t devm_unregister_reboot_notifier
+ffffffff81101240 t register_restart_handler
+ffffffff81101260 t unregister_restart_handler
+ffffffff81101280 t do_kernel_restart
+ffffffff811012b0 t migrate_to_reboot_cpu
+ffffffff81101320 t kernel_restart
+ffffffff81101410 t kernel_halt
+ffffffff811014d0 t register_sys_off_handler
+ffffffff81101710 t sys_off_notify
+ffffffff81101770 t unregister_sys_off_handler
+ffffffff81101820 t devm_register_sys_off_handler
+ffffffff81101910 t devm_unregister_sys_off_handler
+ffffffff811019c0 t devm_register_power_off_handler
+ffffffff811019e0 t devm_register_restart_handler
+ffffffff81101a00 t register_platform_power_off
+ffffffff81101b20 t platform_power_off_notify
+ffffffff81101b40 t unregister_platform_power_off
+ffffffff81101c10 t do_kernel_power_off
+ffffffff81101cf0 t legacy_pm_power_off
+ffffffff81101d10 t kernel_can_power_off
+ffffffff81101d30 t kernel_power_off
+ffffffff81101e00 t __x64_sys_reboot
+ffffffff81101ff0 t ctrl_alt_del
+ffffffff81102040 t deferred_cad
+ffffffff81102060 t orderly_poweroff
+ffffffff81102090 t orderly_reboot
+ffffffff811020c0 t hw_protection_shutdown
+ffffffff81102130 t poweroff_work_func
+ffffffff811021d0 t reboot_work_func
+ffffffff81102260 t hw_failure_emergency_poweroff_func
+ffffffff811022b0 t mode_show
+ffffffff811022f0 t mode_show
+ffffffff81102380 t mode_show
+ffffffff811023e0 t mode_store
+ffffffff811024d0 t mode_store
+ffffffff81102550 t force_show
+ffffffff81102580 t force_store
+ffffffff81102610 t type_store
+ffffffff81102720 t cpu_show
+ffffffff81102750 t cpu_store
+ffffffff81102800 t async_schedule_node_domain
+ffffffff811029d0 t async_run_entry_fn
+ffffffff81102aa0 t async_schedule_node
+ffffffff81102ac0 t async_synchronize_full
+ffffffff81102ae0 t async_synchronize_full_domain
+ffffffff81102b00 t async_synchronize_cookie_domain
+ffffffff81102cb0 t async_synchronize_cookie
+ffffffff81102cd0 t current_is_async
+ffffffff81102d20 t add_range
+ffffffff81102d50 t add_range_with_merge
+ffffffff81102e50 t subtract_range
+ffffffff81102f70 t clean_sort_range
+ffffffff81103070 t sort_range
+ffffffff811030a0 t idle_thread_get
+ffffffff811030e0 t smpboot_create_threads
+ffffffff81103150 t __smpboot_create_thread
+ffffffff81103280 t smpboot_unpark_threads
+ffffffff81103310 t smpboot_park_threads
+ffffffff811033a0 t smpboot_register_percpu_thread
+ffffffff811034a0 t smpboot_destroy_threads
+ffffffff81103570 t smpboot_unregister_percpu_thread
+ffffffff811035e0 t cpu_report_state
+ffffffff81103610 t cpu_check_up_prepare
+ffffffff81103680 t cpu_set_state_online
+ffffffff811036b0 t cpu_wait_death
+ffffffff811037d0 t cpu_report_death
+ffffffff81103840 t smpboot_thread_fn
+ffffffff81103a70 t setup_userns_sysctls
+ffffffff81103ba0 t set_is_seen
+ffffffff81103bc0 t retire_userns_sysctls
+ffffffff81103c00 t get_ucounts
+ffffffff81103cb0 t put_ucounts
+ffffffff81103d50 t alloc_ucounts
+ffffffff81103f30 t inc_ucount
+ffffffff81104060 t dec_ucount
+ffffffff81104140 t inc_rlimit_ucounts
+ffffffff811041c0 t dec_rlimit_ucounts
+ffffffff81104230 t dec_rlimit_put_ucounts
+ffffffff81104250 t do_dec_rlimit_put_ucounts.llvm.12194467415089788925
+ffffffff81104350 t inc_rlimit_get_ucounts
+ffffffff811044a0 t is_rlimit_overlimit
+ffffffff81104510 t set_lookup
+ffffffff81104530 t set_permissions
+ffffffff81104580 t regset_get
+ffffffff81104620 t regset_get_alloc
+ffffffff811046c0 t copy_regset_to_user
+ffffffff811047b0 t __request_module
+ffffffff81104c20 t free_modprobe_argv
+ffffffff81104c50 t groups_alloc
+ffffffff81104ca0 t groups_free
+ffffffff81104cb0 t groups_sort
+ffffffff81104ce0 t gid_cmp
+ffffffff81104d00 t groups_search
+ffffffff81104d50 t set_groups
+ffffffff81104d80 t set_current_groups
+ffffffff81104e00 t __x64_sys_getgroups
+ffffffff81104e90 t may_setgroups
+ffffffff81104eb0 t __x64_sys_setgroups
+ffffffff81104fe0 t in_group_p
+ffffffff81105050 t in_egroup_p
+ffffffff811050c0 t __traceiter_sched_kthread_stop
+ffffffff81105110 t __traceiter_sched_kthread_stop_ret
+ffffffff81105160 t __traceiter_sched_kthread_work_queue_work
+ffffffff811051b0 t __traceiter_sched_kthread_work_execute_start
+ffffffff81105200 t __traceiter_sched_kthread_work_execute_end
+ffffffff81105250 t __traceiter_sched_waking
+ffffffff811052a0 t __traceiter_sched_wakeup
+ffffffff811052f0 t __traceiter_sched_wakeup_new
+ffffffff81105340 t __traceiter_sched_switch
+ffffffff811053b0 t __traceiter_sched_migrate_task
+ffffffff81105400 t __traceiter_sched_process_free
+ffffffff81105450 t __traceiter_sched_process_exit
+ffffffff811054a0 t __traceiter_sched_wait_task
+ffffffff811054f0 t __traceiter_sched_process_wait
+ffffffff81105540 t __traceiter_sched_process_fork
+ffffffff81105590 t __traceiter_sched_process_exec
+ffffffff811055f0 t __traceiter_sched_stat_wait
+ffffffff81105640 t __traceiter_sched_stat_sleep
+ffffffff81105690 t __traceiter_sched_stat_iowait
+ffffffff811056e0 t __traceiter_sched_stat_blocked
+ffffffff81105730 t __traceiter_sched_blocked_reason
+ffffffff81105780 t __traceiter_sched_stat_runtime
+ffffffff811057e0 t __traceiter_sched_pi_setprio
+ffffffff81105830 t __traceiter_sched_process_hang
+ffffffff81105880 t __traceiter_sched_move_numa
+ffffffff811058e0 t __traceiter_sched_stick_numa
+ffffffff81105950 t __traceiter_sched_swap_numa
+ffffffff811059c0 t __traceiter_sched_wake_idle_without_ipi
+ffffffff81105a10 t __traceiter_pelt_cfs_tp
+ffffffff81105a60 t __traceiter_pelt_rt_tp
+ffffffff81105ab0 t __traceiter_pelt_dl_tp
+ffffffff81105b00 t __traceiter_pelt_thermal_tp
+ffffffff81105b50 t __traceiter_pelt_irq_tp
+ffffffff81105ba0 t __traceiter_pelt_se_tp
+ffffffff81105bf0 t __traceiter_sched_cpu_capacity_tp
+ffffffff81105c40 t __traceiter_sched_overutilized_tp
+ffffffff81105c90 t __traceiter_sched_util_est_cfs_tp
+ffffffff81105ce0 t __traceiter_sched_util_est_se_tp
+ffffffff81105d30 t __traceiter_sched_update_nr_running_tp
+ffffffff81105d80 t trace_event_raw_event_sched_kthread_stop
+ffffffff81105e50 t perf_trace_sched_kthread_stop
+ffffffff81105f60 t trace_event_raw_event_sched_kthread_stop_ret
+ffffffff81106020 t perf_trace_sched_kthread_stop_ret
+ffffffff81106110 t trace_event_raw_event_sched_kthread_work_queue_work
+ffffffff811061e0 t perf_trace_sched_kthread_work_queue_work
+ffffffff811062e0 t trace_event_raw_event_sched_kthread_work_execute_start
+ffffffff811063a0 t perf_trace_sched_kthread_work_execute_start
+ffffffff811064a0 t trace_event_raw_event_sched_kthread_work_execute_end
+ffffffff81106560 t perf_trace_sched_kthread_work_execute_end
+ffffffff81106660 t trace_event_raw_event_sched_wakeup_template
+ffffffff81106740 t perf_trace_sched_wakeup_template
+ffffffff81106850 t trace_event_raw_event_sched_switch
+ffffffff811069e0 t perf_trace_sched_switch
+ffffffff81106ba0 t trace_event_raw_event_sched_migrate_task
+ffffffff81106c90 t perf_trace_sched_migrate_task
+ffffffff81106dc0 t trace_event_raw_event_sched_process_template
+ffffffff81106ea0 t perf_trace_sched_process_template
+ffffffff81106fc0 t trace_event_raw_event_sched_process_wait
+ffffffff811070b0 t perf_trace_sched_process_wait
+ffffffff811071e0 t trace_event_raw_event_sched_process_fork
+ffffffff811072e0 t perf_trace_sched_process_fork
+ffffffff81107420 t trace_event_raw_event_sched_process_exec
+ffffffff81107550 t perf_trace_sched_process_exec
+ffffffff811076c0 t trace_event_raw_event_sched_stat_template
+ffffffff811077a0 t perf_trace_sched_stat_template
+ffffffff811078b0 t trace_event_raw_event_sched_blocked_reason
+ffffffff81107990 t perf_trace_sched_blocked_reason
+ffffffff81107ab0 t trace_event_raw_event_sched_stat_runtime
+ffffffff81107ba0 t perf_trace_sched_stat_runtime
+ffffffff81107cd0 t trace_event_raw_event_sched_pi_setprio
+ffffffff81107dd0 t perf_trace_sched_pi_setprio
+ffffffff81107f10 t trace_event_raw_event_sched_process_hang
+ffffffff81107fe0 t perf_trace_sched_process_hang
+ffffffff811080f0 t trace_event_raw_event_sched_move_numa
+ffffffff811081e0 t perf_trace_sched_move_numa
+ffffffff81108320 t trace_event_raw_event_sched_numa_pair_template
+ffffffff81108450 t perf_trace_sched_numa_pair_template
+ffffffff811085c0 t trace_event_raw_event_sched_wake_idle_without_ipi
+ffffffff81108680 t perf_trace_sched_wake_idle_without_ipi
+ffffffff81108770 t raw_spin_rq_lock_nested
+ffffffff811087a0 t preempt_count_add
+ffffffff81108880 t preempt_count_sub
+ffffffff81108930 t raw_spin_rq_trylock
+ffffffff81108980 t raw_spin_rq_unlock
+ffffffff81108990 t double_rq_lock
+ffffffff81108a10 t raw_spin_rq_lock
+ffffffff81108a40 t __task_rq_lock
+ffffffff81108b30 t task_rq_lock
+ffffffff81108c50 t update_rq_clock
+ffffffff81108e90 t hrtick_start
+ffffffff81108f30 t wake_q_add
+ffffffff81108fa0 t wake_q_add_safe
+ffffffff81109010 t wake_up_q
+ffffffff811090b0 t wake_up_process
+ffffffff811090d0 t resched_curr
+ffffffff811091a0 t resched_cpu
+ffffffff81109260 t _raw_spin_rq_lock_irqsave
+ffffffff811092d0 t get_nohz_timer_target
+ffffffff81109420 t idle_cpu
+ffffffff81109470 t wake_up_nohz_cpu
+ffffffff81109540 t walk_tg_tree_from
+ffffffff81109600 t tg_nop
+ffffffff81109610 t uclamp_eff_value
+ffffffff811096c0 t sched_task_on_rq
+ffffffff811096e0 t get_wchan
+ffffffff81109750 t activate_task
+ffffffff81109780 t enqueue_task
+ffffffff81109b00 t deactivate_task
+ffffffff81109b20 t dequeue_task
+ffffffff8110a0d0 t task_curr
+ffffffff8110a100 t check_preempt_curr
+ffffffff8110a160 t migrate_disable
+ffffffff8110a1e0 t migrate_enable
+ffffffff8110a2f0 t __migrate_task
+ffffffff8110a3a0 t move_queued_task
+ffffffff8110a520 t push_cpu_stop
+ffffffff8110a6d0 t set_task_cpu
+ffffffff8110a890 t set_cpus_allowed_common
+ffffffff8110a8f0 t do_set_cpus_allowed
+ffffffff8110a910 t __do_set_cpus_allowed.llvm.5455774376933422653
+ffffffff8110aa50 t dup_user_cpus_ptr
+ffffffff8110ab30 t release_user_cpus_ptr
+ffffffff8110ab60 t set_cpus_allowed_ptr
+ffffffff8110abe0 t force_compatible_cpus_allowed_ptr
+ffffffff8110add0 t relax_compatible_cpus_allowed_ptr
+ffffffff8110ae40 t __sched_setaffinity
+ffffffff8110b030 t migrate_swap
+ffffffff8110b120 t migrate_swap_stop
+ffffffff8110b270 t wait_task_inactive
+ffffffff8110b430 t task_rq_unlock
+ffffffff8110b470 t kick_process
+ffffffff8110b4f0 t select_fallback_rq
+ffffffff8110b700 t sched_set_stop_task
+ffffffff8110b810 t sched_setscheduler_nocheck
+ffffffff8110b8c0 t sched_ttwu_pending
+ffffffff8110baf0 t send_call_function_single_ipi
+ffffffff8110bbc0 t wake_up_if_idle
+ffffffff8110bcd0 t cpus_share_cache
+ffffffff8110bd20 t task_call_func
+ffffffff8110be10 t cpu_curr_snapshot
+ffffffff8110be50 t try_to_wake_up.llvm.5455774376933422653
+ffffffff8110c420 t wake_up_state
+ffffffff8110c440 t force_schedstat_enabled
+ffffffff8110c470 t sched_fork
+ffffffff8110c710 t set_load_weight
+ffffffff8110c770 t sched_cgroup_fork
+ffffffff8110c880 t sched_post_fork
+ffffffff8110c940 t to_ratio
+ffffffff8110c990 t wake_up_new_task
+ffffffff8110cbe0 t select_task_rq
+ffffffff8110ccb0 t balance_push
+ffffffff8110ce00 t __balance_callbacks
+ffffffff8110ce50 t schedule_tail
+ffffffff8110ceb0 t finish_task_switch
+ffffffff8110d130 t nr_running
+ffffffff8110d190 t single_task_running
+ffffffff8110d1c0 t nr_context_switches
+ffffffff8110d220 t nr_iowait_cpu
+ffffffff8110d250 t nr_iowait
+ffffffff8110d2b0 t sched_exec
+ffffffff8110d390 t migration_cpu_stop
+ffffffff8110d5f0 t task_sched_runtime
+ffffffff8110d6c0 t scheduler_tick
+ffffffff8110d930 t preempt_latency_start
+ffffffff8110d9b0 t do_task_dead
+ffffffff8110d9f0 t default_wake_function
+ffffffff8110da10 t rt_mutex_setprio
+ffffffff8110de00 t set_user_nice
+ffffffff8110e020 t can_nice
+ffffffff8110e060 t __x64_sys_nice
+ffffffff8110e110 t task_prio
+ffffffff8110e130 t available_idle_cpu
+ffffffff8110e180 t idle_task
+ffffffff8110e1b0 t effective_cpu_util
+ffffffff8110e450 t sched_cpu_util
+ffffffff8110e500 t sched_setscheduler
+ffffffff8110e5b0 t sched_setattr
+ffffffff8110e5d0 t __sched_setscheduler.llvm.5455774376933422653
+ffffffff8110efc0 t sched_setattr_nocheck
+ffffffff8110efe0 t sched_set_fifo
+ffffffff8110f080 t sched_set_fifo_low
+ffffffff8110f120 t sched_set_normal
+ffffffff8110f1b0 t __x64_sys_sched_setscheduler
+ffffffff8110f1e0 t __x64_sys_sched_setparam
+ffffffff8110f200 t __x64_sys_sched_setattr
+ffffffff8110f4d0 t __x64_sys_sched_getscheduler
+ffffffff8110f550 t __x64_sys_sched_getparam
+ffffffff8110f640 t __x64_sys_sched_getattr
+ffffffff8110f840 t dl_task_check_affinity
+ffffffff8110f8c0 t sched_setaffinity
+ffffffff8110fa20 t __x64_sys_sched_setaffinity
+ffffffff8110fb00 t sched_getaffinity
+ffffffff8110fbb0 t __x64_sys_sched_getaffinity
+ffffffff8110fcc0 t __x64_sys_sched_yield
+ffffffff8110fce0 t __cond_resched_lock
+ffffffff8110fd30 t __cond_resched_rwlock_read
+ffffffff8110fd80 t __cond_resched_rwlock_write
+ffffffff8110fdd0 t sched_dynamic_mode
+ffffffff8110fe30 t sched_dynamic_update
+ffffffff81110070 t preempt_model_none
+ffffffff811100a0 t preempt_model_voluntary
+ffffffff811100d0 t preempt_model_full
+ffffffff81110100 t do_sched_yield
+ffffffff811101e0 t io_schedule_prepare
+ffffffff81110230 t io_schedule_finish
+ffffffff81110260 t __x64_sys_sched_get_priority_max
+ffffffff81110290 t __x64_sys_sched_get_priority_min
+ffffffff811102c0 t __x64_sys_sched_rr_get_interval
+ffffffff811103f0 t sched_show_task
+ffffffff81110580 t show_state_filter
+ffffffff81110640 t cpuset_cpumask_can_shrink
+ffffffff81110690 t task_can_attach
+ffffffff81110730 t idle_task_exit
+ffffffff811107b0 t pick_migrate_task
+ffffffff81110830 t set_rq_online
+ffffffff811108a0 t set_rq_offline
+ffffffff81110920 t sched_cpu_activate
+ffffffff81110b20 t balance_push_set
+ffffffff81110c30 t sched_cpu_deactivate
+ffffffff81110ea0 t sched_cpu_starting
+ffffffff81110ee0 t sched_cpu_wait_empty
+ffffffff81110f60 t sched_cpu_dying
+ffffffff81111170 t in_sched_functions
+ffffffff811111c0 t nohz_csd_func
+ffffffff811112a0 t normalize_rt_tasks
+ffffffff81111420 t sched_create_group
+ffffffff811114c0 t sched_online_group
+ffffffff811115b0 t sched_destroy_group
+ffffffff811115d0 t sched_unregister_group_rcu
+ffffffff81111600 t sched_release_group
+ffffffff811116a0 t sched_move_task
+ffffffff81111870 t cpu_cgroup_css_alloc
+ffffffff81111940 t cpu_cgroup_css_online
+ffffffff81111990 t cpu_cgroup_css_released
+ffffffff81111a30 t cpu_cgroup_css_free
+ffffffff81111a60 t cpu_extra_stat_show
+ffffffff81111a70 t cpu_cgroup_attach
+ffffffff81111af0 t dump_cpu_task
+ffffffff81111b60 t call_trace_sched_update_nr_running
+ffffffff81111bc0 t trace_raw_output_sched_kthread_stop
+ffffffff81111c20 t trace_raw_output_sched_kthread_stop_ret
+ffffffff81111c70 t trace_raw_output_sched_kthread_work_queue_work
+ffffffff81111cd0 t trace_raw_output_sched_kthread_work_execute_start
+ffffffff81111d30 t trace_raw_output_sched_kthread_work_execute_end
+ffffffff81111d90 t trace_raw_output_sched_wakeup_template
+ffffffff81111df0 t trace_raw_output_sched_switch
+ffffffff81111ed0 t trace_raw_output_sched_migrate_task
+ffffffff81111f40 t trace_raw_output_sched_process_template
+ffffffff81111fa0 t trace_raw_output_sched_process_wait
+ffffffff81112000 t trace_raw_output_sched_process_fork
+ffffffff81112060 t trace_raw_output_sched_process_exec
+ffffffff811120c0 t trace_raw_output_sched_stat_template
+ffffffff81112120 t trace_raw_output_sched_blocked_reason
+ffffffff81112180 t trace_raw_output_sched_stat_runtime
+ffffffff811121e0 t trace_raw_output_sched_pi_setprio
+ffffffff81112240 t trace_raw_output_sched_process_hang
+ffffffff811122a0 t trace_raw_output_sched_move_numa
+ffffffff81112310 t trace_raw_output_sched_numa_pair_template
+ffffffff811123a0 t trace_raw_output_sched_wake_idle_without_ipi
+ffffffff811123f0 t __set_cpus_allowed_ptr_locked
+ffffffff81112ab0 t __migrate_swap_task
+ffffffff81112c40 t ttwu_do_wakeup
+ffffffff81112e00 t ttwu_queue_wakelist
+ffffffff81112f00 t sysctl_schedstats
+ffffffff81113020 t sysctl_sched_uclamp_handler
+ffffffff811133b0 t cpu_util_update_eff
+ffffffff81113b00 t __schedule_bug
+ffffffff81113bf0 t do_sched_setscheduler
+ffffffff81113d40 t __balance_push_cpu_stop
+ffffffff81113eb0 t __hrtick_start
+ffffffff81113f40 t hrtick
+ffffffff81114010 t sched_free_group_rcu
+ffffffff81114040 t cpu_weight_read_u64
+ffffffff81114080 t cpu_weight_write_u64
+ffffffff811140c0 t cpu_weight_nice_read_s64
+ffffffff81114160 t cpu_weight_nice_write_s64
+ffffffff811141a0 t cpu_idle_read_s64
+ffffffff811141c0 t cpu_idle_write_s64
+ffffffff811141e0 t cpu_uclamp_min_show
+ffffffff81114270 t cpu_uclamp_min_write
+ffffffff81114290 t cpu_uclamp_max_show
+ffffffff81114320 t cpu_uclamp_max_write
+ffffffff81114340 t cpu_uclamp_ls_read_u64
+ffffffff81114360 t cpu_uclamp_ls_write_u64
+ffffffff81114380 t cpu_uclamp_write
+ffffffff81114500 t cpu_shares_read_u64
+ffffffff81114530 t cpu_shares_write_u64
+ffffffff81114560 t update_sysctl.llvm.14275127918660314142
+ffffffff811145e0 t __pick_first_entity
+ffffffff81114600 t __pick_last_entity
+ffffffff81114620 t sched_update_scaling
+ffffffff811146b0 t init_entity_runnable_average
+ffffffff81114750 t post_init_entity_util_avg
+ffffffff81114840 t reweight_task
+ffffffff81114890 t reweight_entity
+ffffffff811149d0 t set_task_rq_fair
+ffffffff81114a20 t set_next_entity
+ffffffff81114c00 t update_load_avg
+ffffffff81115380 t init_cfs_bandwidth
+ffffffff81115390 t __update_idle_core
+ffffffff81115450 t pick_next_task_fair
+ffffffff81115810 t update_curr
+ffffffff81115aa0 t pick_next_entity
+ffffffff81115dd0 t put_prev_entity
+ffffffff81115f10 t hrtick_start_fair
+ffffffff81115fd0 t update_misfit_status
+ffffffff81116240 t newidle_balance
+ffffffff81116610 t update_group_capacity
+ffffffff81116850 t update_max_interval
+ffffffff81116880 t nohz_balance_exit_idle
+ffffffff81116910 t set_cpu_sd_state_busy
+ffffffff81116970 t nohz_balance_enter_idle
+ffffffff81116a90 t nohz_run_idle_balance
+ffffffff81116b10 t _nohz_idle_balance
+ffffffff81116e60 t trigger_load_balance
+ffffffff81117210 t init_cfs_rq
+ffffffff81117240 t free_fair_sched_group
+ffffffff811172d0 t alloc_fair_sched_group
+ffffffff81117510 t init_tg_cfs_entry
+ffffffff811175b0 t online_fair_sched_group
+ffffffff81117730 t unregister_fair_sched_group
+ffffffff81117920 t sched_group_set_shares
+ffffffff81117980 t __sched_group_set_shares
+ffffffff81117bf0 t sched_group_set_idle
+ffffffff81117e40 t enqueue_task_fair.llvm.14275127918660314142
+ffffffff81118770 t dequeue_task_fair.llvm.14275127918660314142
+ffffffff81118f90 t yield_task_fair.llvm.14275127918660314142
+ffffffff811190a0 t yield_to_task_fair.llvm.14275127918660314142
+ffffffff81119150 t check_preempt_wakeup.llvm.14275127918660314142
+ffffffff81119560 t __pick_next_task_fair.llvm.14275127918660314142
+ffffffff81119580 t put_prev_task_fair.llvm.14275127918660314142
+ffffffff811195b0 t set_next_task_fair.llvm.14275127918660314142
+ffffffff81119660 t balance_fair.llvm.14275127918660314142
+ffffffff81119690 t select_task_rq_fair.llvm.14275127918660314142
+ffffffff8111a920 t pick_task_fair.llvm.14275127918660314142
+ffffffff8111a990 t migrate_task_rq_fair.llvm.14275127918660314142
+ffffffff8111ab20 t rq_online_fair.llvm.14275127918660314142
+ffffffff8111aba0 t rq_offline_fair.llvm.14275127918660314142
+ffffffff8111ac20 t task_tick_fair.llvm.14275127918660314142
+ffffffff8111aea0 t task_fork_fair.llvm.14275127918660314142
+ffffffff8111b120 t task_dead_fair.llvm.14275127918660314142
+ffffffff8111b1a0 t switched_from_fair.llvm.14275127918660314142
+ffffffff8111b1c0 t switched_to_fair.llvm.14275127918660314142
+ffffffff8111b210 t prio_changed_fair.llvm.14275127918660314142
+ffffffff8111b250 t get_rr_interval_fair.llvm.14275127918660314142
+ffffffff8111b2a0 t update_curr_fair.llvm.14275127918660314142
+ffffffff8111b2c0 t task_change_group_fair.llvm.14275127918660314142
+ffffffff8111b3a0 t print_cfs_stats
+ffffffff8111b440 t run_rebalance_domains
+ffffffff8111b4c0 t attach_entity_load_avg
+ffffffff8111b6c0 t detach_entity_load_avg
+ffffffff8111b8b0 t sched_slice
+ffffffff8111bab0 t rebalance_domains
+ffffffff8111bda0 t update_blocked_averages
+ffffffff8111c410 t load_balance
+ffffffff8111e540 t need_active_balance
+ffffffff8111e630 t active_load_balance_cpu_stop
+ffffffff8111ea00 t can_migrate_task
+ffffffff8111ec00 t propagate_entity_cfs_rq
+ffffffff8111eee0 t update_overutilized_status
+ffffffff8111f050 t set_next_buddy
+ffffffff8111f0e0 t set_last_buddy
+ffffffff8111f170 t find_idlest_cpu
+ffffffff8111fec0 t detach_task_cfs_rq
+ffffffff81120070 t attach_task_cfs_rq
+ffffffff81120140 t sched_idle_set_state
+ffffffff81120170 t cpu_idle_poll_ctrl
+ffffffff811201b0 t arch_cpu_idle_prepare
+ffffffff811201c0 t arch_cpu_idle_exit
+ffffffff811201d0 t cpu_in_idle
+ffffffff81120200 t play_idle_precise
+ffffffff811203e0 t idle_inject_timer_fn
+ffffffff81120400 t do_idle.llvm.15613813909784571273
+ffffffff81120670 t cpu_startup_entry
+ffffffff811206a0 t pick_next_task_idle
+ffffffff811206e0 t set_next_task_idle.llvm.15613813909784571273
+ffffffff81120710 t dequeue_task_idle.llvm.15613813909784571273
+ffffffff81120750 t check_preempt_curr_idle.llvm.15613813909784571273
+ffffffff81120760 t put_prev_task_idle.llvm.15613813909784571273
+ffffffff81120770 t balance_idle.llvm.15613813909784571273
+ffffffff81120790 t select_task_rq_idle.llvm.15613813909784571273
+ffffffff811207a0 t pick_task_idle.llvm.15613813909784571273
+ffffffff811207c0 t task_tick_idle.llvm.15613813909784571273
+ffffffff811207d0 t switched_to_idle.llvm.15613813909784571273
+ffffffff811207e0 t prio_changed_idle.llvm.15613813909784571273
+ffffffff811207f0 t update_curr_idle.llvm.15613813909784571273
+ffffffff81120800 t init_rt_bandwidth
+ffffffff81120840 t sched_rt_period_timer
+ffffffff81120bf0 t init_rt_rq
+ffffffff81120c90 t unregister_rt_sched_group
+ffffffff81120ca0 t free_rt_sched_group
+ffffffff81120cb0 t alloc_rt_sched_group
+ffffffff81120cc0 t sched_rt_bandwidth_account
+ffffffff81120d00 t pick_highest_pushable_task
+ffffffff81120d60 t rto_push_irq_work_func
+ffffffff81120e60 t push_rt_task
+ffffffff811211a0 t enqueue_task_rt.llvm.15613813909784571273
+ffffffff81121630 t dequeue_task_rt.llvm.15613813909784571273
+ffffffff811217a0 t yield_task_rt.llvm.15613813909784571273
+ffffffff81121880 t check_preempt_curr_rt.llvm.15613813909784571273
+ffffffff811219b0 t pick_next_task_rt.llvm.15613813909784571273
+ffffffff81121a70 t put_prev_task_rt.llvm.15613813909784571273
+ffffffff81121ba0 t set_next_task_rt.llvm.15613813909784571273
+ffffffff81121d40 t balance_rt.llvm.15613813909784571273
+ffffffff81121dd0 t select_task_rq_rt.llvm.15613813909784571273
+ffffffff81121fb0 t pick_task_rt.llvm.15613813909784571273
+ffffffff81122060 t task_woken_rt.llvm.15613813909784571273
+ffffffff811220c0 t rq_online_rt.llvm.15613813909784571273
+ffffffff81122180 t rq_offline_rt.llvm.15613813909784571273
+ffffffff811223b0 t find_lock_lowest_rq.llvm.15613813909784571273
+ffffffff811224d0 t task_tick_rt.llvm.15613813909784571273
+ffffffff811226c0 t switched_from_rt.llvm.15613813909784571273
+ffffffff81122740 t switched_to_rt.llvm.15613813909784571273
+ffffffff81122850 t prio_changed_rt.llvm.15613813909784571273
+ffffffff811228e0 t get_rr_interval_rt.llvm.15613813909784571273
+ffffffff81122900 t update_curr_rt.llvm.15613813909784571273
+ffffffff81122c70 t print_rt_stats
+ffffffff81122cc0 t cpudl_find
+ffffffff81122e20 t cpudl_clear
+ffffffff81122ee0 t cpudl_heapify
+ffffffff81123070 t cpudl_set
+ffffffff811231c0 t cpudl_set_freecpu
+ffffffff811231e0 t cpudl_clear_freecpu
+ffffffff81123200 t cpudl_init
+ffffffff811232b0 t cpudl_cleanup
+ffffffff811232d0 t __update_load_avg_blocked_se
+ffffffff81123550 t __update_load_avg_se
+ffffffff81123950 t __update_load_avg_cfs_rq
+ffffffff81123d30 t update_rt_rq_load_avg
+ffffffff811240b0 t update_dl_rq_load_avg
+ffffffff81124430 t update_irq_load_avg
+ffffffff81124920 t sched_pelt_multiplier
+ffffffff811249d0 t enable_sched_clock_irqtime
+ffffffff811249f0 t disable_sched_clock_irqtime
+ffffffff81124a10 t irqtime_account_irq
+ffffffff81124af0 t account_user_time
+ffffffff81124ba0 t account_guest_time
+ffffffff81124cb0 t account_system_index_time
+ffffffff81124d50 t account_system_time
+ffffffff81124dc0 t account_steal_time
+ffffffff81124df0 t account_idle_time
+ffffffff81124e50 t thread_group_cputime
+ffffffff81124f50 t account_process_tick
+ffffffff81125110 t irqtime_account_process_tick
+ffffffff811252d0 t account_idle_ticks
+ffffffff811253c0 t cputime_adjust
+ffffffff81125480 t task_cputime_adjusted
+ffffffff81125560 t thread_group_cputime_adjusted
+ffffffff81125680 t init_dl_bandwidth
+ffffffff811256a0 t init_dl_bw
+ffffffff811256f0 t init_dl_rq
+ffffffff811257c0 t init_dl_task_timer
+ffffffff811257f0 t dl_task_timer.llvm.15613813909784571273
+ffffffff81125990 t init_dl_inactive_task_timer
+ffffffff811259d0 t inactive_task_timer.llvm.15613813909784571273
+ffffffff81125f00 t dl_add_task_root_domain
+ffffffff81126050 t dl_clear_root_domain
+ffffffff81126090 t enqueue_task_dl.llvm.15613813909784571273
+ffffffff81126a20 t dequeue_task_dl.llvm.15613813909784571273
+ffffffff81126c00 t yield_task_dl.llvm.15613813909784571273
+ffffffff81126c40 t check_preempt_curr_dl.llvm.15613813909784571273
+ffffffff81126d30 t pick_next_task_dl.llvm.15613813909784571273
+ffffffff81126d80 t put_prev_task_dl.llvm.15613813909784571273
+ffffffff81126f10 t set_next_task_dl.llvm.15613813909784571273
+ffffffff81127120 t balance_dl.llvm.15613813909784571273
+ffffffff811271a0 t select_task_rq_dl.llvm.15613813909784571273
+ffffffff81127280 t pick_task_dl.llvm.15613813909784571273
+ffffffff811272c0 t migrate_task_rq_dl.llvm.15613813909784571273
+ffffffff81127540 t task_woken_dl.llvm.15613813909784571273
+ffffffff811275b0 t set_cpus_allowed_dl.llvm.15613813909784571273
+ffffffff81127760 t rq_online_dl.llvm.15613813909784571273
+ffffffff811277e0 t rq_offline_dl.llvm.15613813909784571273
+ffffffff81127850 t find_lock_later_rq.llvm.15613813909784571273
+ffffffff811279a0 t task_tick_dl.llvm.15613813909784571273
+ffffffff81127a60 t task_fork_dl.llvm.15613813909784571273
+ffffffff81127a70 t switched_from_dl.llvm.15613813909784571273
+ffffffff81127cc0 t switched_to_dl.llvm.15613813909784571273
+ffffffff81127e80 t prio_changed_dl.llvm.15613813909784571273
+ffffffff81127f20 t update_curr_dl.llvm.15613813909784571273
+ffffffff81128220 t sched_dl_global_validate
+ffffffff811283d0 t sched_dl_do_global
+ffffffff811285b0 t sched_dl_overflow
+ffffffff81128ba0 t dl_bw_capacity
+ffffffff81128cc0 t __setparam_dl
+ffffffff81128d30 t __getparam_dl
+ffffffff81128d80 t __checkparam_dl
+ffffffff81128e00 t __dl_clear_params
+ffffffff81128e70 t dl_param_changed
+ffffffff81128ec0 t dl_cpuset_cpumask_can_shrink
+ffffffff81128fd0 t dl_cpu_busy
+ffffffff811291b0 t print_dl_stats
+ffffffff811291e0 t sched_rt_handler
+ffffffff811293b0 t sched_rr_handler
+ffffffff81129440 t balance_runtime
+ffffffff811295e0 t enqueue_top_rt_rq
+ffffffff811296e0 t find_lowest_rq
+ffffffff811298a0 t get_push_task
+ffffffff81129910 t rt_task_fits_cpu
+ffffffff81129970 t dequeue_rt_stack
+ffffffff81129ce0 t push_rt_tasks
+ffffffff81129d10 t pull_rt_task
+ffffffff81129f00 t tell_cpu_to_push
+ffffffff8112a020 t replenish_dl_entity
+ffffffff8112a1f0 t dl_task_offline_migration
+ffffffff8112a700 t push_dl_task
+ffffffff8112aa10 t add_running_bw
+ffffffff8112ab10 t task_contending
+ffffffff8112ac10 t start_dl_timer
+ffffffff8112ad20 t update_dl_revised_wakeup
+ffffffff8112ade0 t __dequeue_task_dl
+ffffffff8112b0f0 t task_non_contending
+ffffffff8112b580 t push_dl_tasks
+ffffffff8112b5b0 t pull_dl_task
+ffffffff8112b7e0 t pick_earliest_pushable_dl_task
+ffffffff8112b850 t find_later_rq
+ffffffff8112b9c0 t sched_clock_stable
+ffffffff8112b9e0 t clear_sched_clock_stable
+ffffffff8112ba20 t sched_clock_cpu
+ffffffff8112bbd0 t sched_clock_tick
+ffffffff8112bc90 t sched_clock_tick_stable
+ffffffff8112bcf0 t sched_clock_idle_sleep_event
+ffffffff8112bd10 t sched_clock_idle_wakeup_event
+ffffffff8112bd80 t running_clock
+ffffffff8112bda0 t cpuacct_charge
+ffffffff8112bdf0 t cpuacct_account_field
+ffffffff8112be60 t cpuacct_css_alloc
+ffffffff8112bf10 t cpuacct_css_free
+ffffffff8112bf40 t cpufreq_add_update_util_hook
+ffffffff8112bfa0 t cpufreq_remove_update_util_hook
+ffffffff8112bfd0 t cpufreq_this_cpu_can_update
+ffffffff8112c020 t sugov_init
+ffffffff8112c390 t sugov_exit
+ffffffff8112c430 t sugov_start
+ffffffff8112c5f0 t sugov_stop
+ffffffff8112c680 t sugov_limits
+ffffffff8112c6f0 t cpufreq_default_governor
+ffffffff8112c710 t update_sched_domain_debugfs
+ffffffff8112c980 t dirty_sched_domain_sysctl
+ffffffff8112c9a0 t print_cfs_rq
+ffffffff8112de50 t print_rt_rq
+ffffffff8112e110 t print_dl_rq
+ffffffff8112e270 t sysrq_sched_debug_show
+ffffffff8112e2c0 t sched_debug_header
+ffffffff8112e900 t print_cpu
+ffffffff8112f800 t proc_sched_show_task
+ffffffff81130f80 t proc_sched_set_task
+ffffffff81130fa0 t resched_latency_warn
+ffffffff81131000 t __update_stats_wait_start
+ffffffff81131070 t __update_stats_wait_end
+ffffffff81131140 t __update_stats_enqueue_sleeper
+ffffffff81131390 t get_avenrun
+ffffffff811313d0 t calc_load_fold_active
+ffffffff81131410 t calc_load_n
+ffffffff811314a0 t calc_load_nohz_start
+ffffffff81131510 t calc_load_nohz_remote
+ffffffff81131570 t calc_load_nohz_stop
+ffffffff811315e0 t calc_global_load
+ffffffff81131930 t calc_global_load_tick
+ffffffff81131990 t complete
+ffffffff81131a20 t swake_up_locked
+ffffffff81131a70 t complete_all
+ffffffff81131b10 t swake_up_all_locked
+ffffffff81131b80 t try_wait_for_completion
+ffffffff81131bd0 t completion_done
+ffffffff81131c10 t __init_swait_queue_head
+ffffffff81131c30 t swake_up_one
+ffffffff81131ca0 t swake_up_all
+ffffffff81131d80 t __prepare_to_swait
+ffffffff81131df0 t prepare_to_swait_exclusive
+ffffffff81131e90 t prepare_to_swait_event
+ffffffff81131f90 t __finish_swait
+ffffffff81131ff0 t finish_swait
+ffffffff81132070 t bit_waitqueue
+ffffffff811320b0 t wake_bit_function
+ffffffff81132120 t autoremove_wake_function
+ffffffff81132170 t prepare_to_wait
+ffffffff81132220 t finish_wait
+ffffffff811322a0 t prepare_to_wait_exclusive
+ffffffff81132350 t __wake_up_bit
+ffffffff81132430 t __wake_up
+ffffffff81132500 t wake_up_bit
+ffffffff81132610 t __var_waitqueue
+ffffffff81132640 t init_wait_var_entry
+ffffffff81132680 t var_wake_function
+ffffffff811326f0 t wake_up_var
+ffffffff811327f0 t __init_waitqueue_head
+ffffffff81132810 t add_wait_queue
+ffffffff811328a0 t add_wait_queue_exclusive
+ffffffff81132910 t add_wait_queue_priority
+ffffffff811329a0 t remove_wait_queue
+ffffffff81132a00 t __wake_up_locked
+ffffffff81132a80 t __wake_up_common.llvm.7198467921976876906
+ffffffff81132bc0 t __wake_up_locked_key
+ffffffff81132c40 t __wake_up_locked_key_bookmark
+ffffffff81132c60 t __wake_up_sync_key
+ffffffff81132d30 t __wake_up_locked_sync_key
+ffffffff81132db0 t __wake_up_sync
+ffffffff81132e70 t __wake_up_pollfree
+ffffffff81132f40 t init_wait_entry
+ffffffff81132f70 t prepare_to_wait_event
+ffffffff811330e0 t do_wait_intr
+ffffffff81133180 t do_wait_intr_irq
+ffffffff81133220 t wait_woken
+ffffffff81133280 t woken_wake_function
+ffffffff811332a0 t cpupri_find
+ffffffff81133380 t cpupri_find_fitness
+ffffffff81133510 t cpupri_set
+ffffffff811335c0 t cpupri_init
+ffffffff811336b0 t cpupri_cleanup
+ffffffff811336d0 t enqueue_task_stop.llvm.7198467921976876906
+ffffffff81133730 t dequeue_task_stop.llvm.7198467921976876906
+ffffffff81133760 t yield_task_stop.llvm.7198467921976876906
+ffffffff81133770 t check_preempt_curr_stop.llvm.7198467921976876906
+ffffffff81133780 t pick_next_task_stop.llvm.7198467921976876906
+ffffffff811337f0 t put_prev_task_stop.llvm.7198467921976876906
+ffffffff81133910 t set_next_task_stop.llvm.7198467921976876906
+ffffffff81133960 t balance_stop.llvm.7198467921976876906
+ffffffff81133980 t select_task_rq_stop.llvm.7198467921976876906
+ffffffff81133990 t pick_task_stop.llvm.7198467921976876906
+ffffffff811339c0 t task_tick_stop.llvm.7198467921976876906
+ffffffff811339d0 t switched_to_stop.llvm.7198467921976876906
+ffffffff811339e0 t prio_changed_stop.llvm.7198467921976876906
+ffffffff811339f0 t update_curr_stop.llvm.7198467921976876906
+ffffffff81133a00 t rq_attach_root
+ffffffff81133b00 t free_rootdomain
+ffffffff81133b40 t sched_get_rd
+ffffffff81133b50 t sched_put_rd
+ffffffff81133b70 t init_defrootdomain
+ffffffff81133ba0 t init_rootdomain.llvm.7198467921976876906
+ffffffff81133d50 t group_balance_cpu
+ffffffff81133d70 t set_sched_topology
+ffffffff81133da0 t alloc_sched_domains
+ffffffff81133dc0 t free_sched_domains
+ffffffff81133dd0 t sched_init_domains
+ffffffff81133eb0 t asym_cpu_capacity_scan
+ffffffff81134120 t housekeeping_cpumask
+ffffffff81134160 t build_sched_domains
+ffffffff81135720 t partition_sched_domains_locked
+ffffffff81135b50 t partition_sched_domains
+ffffffff81135ba0 t group_init
+ffffffff81135d20 t psi_task_change
+ffffffff81135e30 t psi_group_change
+ffffffff811361c0 t psi_task_switch
+ffffffff811364a0 t psi_avgs_work
+ffffffff81136570 t psi_account_irqtime
+ffffffff811366e0 t record_times
+ffffffff81136730 t psi_memstall_enter
+ffffffff811367f0 t psi_memstall_leave
+ffffffff811368b0 t psi_cgroup_alloc
+ffffffff81136970 t psi_cgroup_free
+ffffffff811369f0 t cgroup_move_task
+ffffffff81136ae0 t psi_cgroup_restart
+ffffffff81136be0 t psi_show
+ffffffff81136d90 t collect_percpu_times
+ffffffff81137160 t update_averages
+ffffffff811374b0 t psi_trigger_create
+ffffffff81137760 t psi_poll_worker
+ffffffff81137d20 t psi_trigger_destroy
+ffffffff81137f70 t psi_trigger_poll
+ffffffff81137fd0 t membarrier_exec_mmap
+ffffffff81138000 t membarrier_update_current_mm
+ffffffff81138050 t __x64_sys_membarrier
+ffffffff81138340 t housekeeping_enabled
+ffffffff81138360 t housekeeping_any_cpu
+ffffffff811383b0 t housekeeping_affine
+ffffffff811383f0 t housekeeping_test_cpu
+ffffffff81138430 t __sched_clock_work
+ffffffff81138560 t cpuusage_read
+ffffffff811385d0 t cpuusage_write
+ffffffff81138690 t cpuusage_user_read
+ffffffff81138710 t cpuusage_sys_read
+ffffffff81138790 t cpuacct_percpu_seq_show
+ffffffff811387b0 t cpuacct_percpu_user_seq_show
+ffffffff811387d0 t cpuacct_percpu_sys_seq_show
+ffffffff811387f0 t cpuacct_all_seq_show
+ffffffff81138920 t cpuacct_stats_show
+ffffffff81138ac0 t __cpuacct_percpu_seq_show
+ffffffff81138bc0 t sugov_kthread_stop
+ffffffff81138c00 t sugov_work
+ffffffff81138c60 t sugov_irq_work
+ffffffff81138c80 t sugov_tunables_free
+ffffffff81138c90 t rate_limit_us_show
+ffffffff81138cc0 t rate_limit_us_store
+ffffffff81138d70 t sugov_update_shared
+ffffffff811391d0 t sugov_update_single_perf
+ffffffff811392f0 t sugov_update_single_freq
+ffffffff811394b0 t sugov_update_single_common
+ffffffff81139700 t sched_feat_write
+ffffffff811398e0 t sched_feat_open
+ffffffff81139900 t sched_feat_show
+ffffffff81139980 t sched_dynamic_write
+ffffffff81139a50 t sched_dynamic_open
+ffffffff81139a70 t sched_dynamic_show
+ffffffff81139b80 t sched_scaling_write
+ffffffff81139c70 t sched_scaling_open
+ffffffff81139c90 t sched_scaling_show
+ffffffff81139cb0 t sched_debug_open
+ffffffff81139cd0 t sched_debug_start
+ffffffff81139d40 t sched_debug_stop
+ffffffff81139d50 t sched_debug_next
+ffffffff81139dd0 t sched_debug_show
+ffffffff81139e00 t sd_flags_open
+ffffffff81139e30 t sd_flags_show
+ffffffff81139ef0 t schedstat_start
+ffffffff81139f60 t schedstat_stop
+ffffffff81139f70 t schedstat_next
+ffffffff81139ff0 t show_schedstat
+ffffffff8113a2a0 t cpu_smt_flags
+ffffffff8113a2b0 t cpu_cluster_flags
+ffffffff8113a2c0 t cpu_core_flags
+ffffffff8113a2d0 t cpu_attach_domain
+ffffffff8113aac0 t destroy_sched_domain
+ffffffff8113ab50 t destroy_sched_domains_rcu
+ffffffff8113ab80 t poll_timer_fn
+ffffffff8113ac40 t psi_io_open
+ffffffff8113ac60 t psi_io_write
+ffffffff8113ac80 t psi_fop_release
+ffffffff8113acc0 t psi_fop_poll
+ffffffff8113ad20 t psi_io_show
+ffffffff8113ad40 t psi_write
+ffffffff8113aea0 t psi_memory_open
+ffffffff8113aec0 t psi_memory_write
+ffffffff8113aee0 t psi_memory_show
+ffffffff8113af00 t psi_cpu_open
+ffffffff8113af20 t psi_cpu_write
+ffffffff8113af40 t psi_cpu_show
+ffffffff8113af60 t psi_irq_open
+ffffffff8113af80 t psi_irq_write
+ffffffff8113afa0 t psi_irq_show
+ffffffff8113afc0 t membarrier_private_expedited
+ffffffff8113b240 t ipi_mb
+ffffffff8113b260 t sync_runqueues_membarrier_state
+ffffffff8113b3a0 t ipi_sync_rq_state
+ffffffff8113b3e0 t ipi_sync_core
+ffffffff8113b420 t ipi_rseq
+ffffffff8113b450 t __traceiter_contention_begin
+ffffffff8113b4a0 t __traceiter_contention_end
+ffffffff8113b4f0 t trace_event_raw_event_contention_begin
+ffffffff8113b5b0 t perf_trace_contention_begin
+ffffffff8113b6b0 t trace_event_raw_event_contention_end
+ffffffff8113b770 t perf_trace_contention_end
+ffffffff8113b870 t __mutex_init
+ffffffff8113b8a0 t mutex_is_locked
+ffffffff8113b8c0 t ww_mutex_trylock
+ffffffff8113b9b0 t atomic_dec_and_mutex_lock
+ffffffff8113ba30 t trace_raw_output_contention_begin
+ffffffff8113bab0 t trace_raw_output_contention_end
+ffffffff8113bb10 t __ww_mutex_check_waiters
+ffffffff8113bba0 t trace_contention_begin
+ffffffff8113bc00 t mutex_spin_on_owner
+ffffffff8113bc70 t __init_rwsem
+ffffffff8113bcb0 t down_read_trylock
+ffffffff8113bd40 t down_write_trylock
+ffffffff8113bdb0 t up_read
+ffffffff8113beb0 t up_write
+ffffffff8113bf90 t downgrade_write
+ffffffff8113c060 t rwsem_mark_wake
+ffffffff8113c290 t rwsem_spin_on_owner
+ffffffff8113c330 t _trace_android_vh_record_pcpu_rwsem_starttime
+ffffffff8113c340 t __percpu_init_rwsem
+ffffffff8113c3f0 t percpu_free_rwsem
+ffffffff8113c420 t percpu_rwsem_wait
+ffffffff8113c550 t percpu_is_read_locked
+ffffffff8113c5d0 t percpu_up_write
+ffffffff8113c610 t percpu_rwsem_wake_function
+ffffffff8113c700 t __percpu_rwsem_trylock
+ffffffff8113c790 t in_lock_functions
+ffffffff8113c7c0 t osq_lock
+ffffffff8113c900 t osq_wait_next
+ffffffff8113c960 t osq_unlock
+ffffffff8113c9d0 t rt_mutex_base_init
+ffffffff8113ca00 t pm_qos_read_value
+ffffffff8113ca10 t pm_qos_update_target
+ffffffff8113cbc0 t pm_qos_update_flags
+ffffffff8113cda0 t cpu_latency_qos_limit
+ffffffff8113cdc0 t cpu_latency_qos_request_active
+ffffffff8113cde0 t cpu_latency_qos_add_request
+ffffffff8113ce90 t cpu_latency_qos_update_request
+ffffffff8113cf40 t cpu_latency_qos_remove_request
+ffffffff8113d020 t freq_constraints_init
+ffffffff8113d0e0 t freq_qos_read_value
+ffffffff8113d140 t freq_qos_apply
+ffffffff8113d180 t freq_qos_add_request
+ffffffff8113d210 t freq_qos_update_request
+ffffffff8113d290 t freq_qos_remove_request
+ffffffff8113d310 t freq_qos_add_notifier
+ffffffff8113d360 t freq_qos_remove_notifier
+ffffffff8113d3b0 t cpu_latency_qos_read
+ffffffff8113d4b0 t cpu_latency_qos_write
+ffffffff8113d550 t cpu_latency_qos_open
+ffffffff8113d5a0 t cpu_latency_qos_release
+ffffffff8113d5e0 t lock_system_sleep
+ffffffff8113d620 t unlock_system_sleep
+ffffffff8113d650 t ksys_sync_helper
+ffffffff8113d6f0 t register_pm_notifier
+ffffffff8113d710 t unregister_pm_notifier
+ffffffff8113d730 t pm_notifier_call_chain_robust
+ffffffff8113d770 t pm_notifier_call_chain
+ffffffff8113d790 t suspend_stats_open
+ffffffff8113d7c0 t suspend_stats_show
+ffffffff8113d9f0 t state_store
+ffffffff8113db10 t state_store
+ffffffff8113dbf0 t pm_async_show
+ffffffff8113dc20 t pm_async_store
+ffffffff8113dca0 t wakeup_count_show
+ffffffff8113dd10 t wakeup_count_show
+ffffffff8113dd90 t wakeup_count_show
+ffffffff8113ddc0 t wakeup_count_store
+ffffffff8113de40 t mem_sleep_show
+ffffffff8113df00 t mem_sleep_store
+ffffffff8113dff0 t sync_on_suspend_show
+ffffffff8113e020 t sync_on_suspend_store
+ffffffff8113e0a0 t wake_lock_show
+ffffffff8113e0c0 t wake_lock_store
+ffffffff8113e0e0 t wake_unlock_show
+ffffffff8113e100 t wake_unlock_store
+ffffffff8113e120 t pm_freeze_timeout_show
+ffffffff8113e150 t pm_freeze_timeout_store
+ffffffff8113e1c0 t success_show
+ffffffff8113e1f0 t failed_freeze_show
+ffffffff8113e220 t failed_prepare_show
+ffffffff8113e250 t failed_suspend_show
+ffffffff8113e280 t failed_suspend_late_show
+ffffffff8113e2b0 t failed_suspend_noirq_show
+ffffffff8113e2e0 t failed_resume_show
+ffffffff8113e310 t failed_resume_early_show
+ffffffff8113e340 t failed_resume_noirq_show
+ffffffff8113e370 t last_failed_dev_show
+ffffffff8113e3c0 t last_failed_errno_show
+ffffffff8113e410 t last_failed_step_show
+ffffffff8113e470 t pm_vt_switch_required
+ffffffff8113e530 t pm_vt_switch_unregister
+ffffffff8113e5c0 t pm_prepare_console
+ffffffff8113e650 t pm_restore_console
+ffffffff8113e6d0 t freeze_processes
+ffffffff8113e7d0 t try_to_freeze_tasks
+ffffffff8113ea90 t thaw_processes
+ffffffff8113ecd0 t freeze_kernel_threads
+ffffffff8113ed10 t thaw_kernel_threads
+ffffffff8113edd0 t pm_suspend_default_s2idle
+ffffffff8113edf0 t s2idle_set_ops
+ffffffff8113ee20 t s2idle_wake
+ffffffff8113ee70 t suspend_set_ops
+ffffffff8113ef40 t suspend_valid_only_mem
+ffffffff8113ef60 t arch_suspend_disable_irqs
+ffffffff8113ef70 t arch_suspend_enable_irqs
+ffffffff8113ef80 t suspend_devices_and_enter
+ffffffff8113f7d0 t pm_suspend
+ffffffff8113fc60 t pm_show_wakelocks
+ffffffff8113fd20 t pm_wake_lock
+ffffffff8113ff80 t pm_wake_unlock
+ffffffff81140070 t handle_poweroff
+ffffffff811400b0 t do_poweroff
+ffffffff811400c0 t log_irq_wakeup_reason
+ffffffff81140140 t add_sibling_node_sorted
+ffffffff81140220 t log_threaded_irq_wakeup_reason
+ffffffff81140380 t log_suspend_abort_reason
+ffffffff81140450 t log_abnormal_wakeup_reason
+ffffffff81140520 t clear_wakeup_reasons
+ffffffff81140630 t wakeup_reason_pm_event
+ffffffff81140730 t last_resume_reason_show
+ffffffff81140800 t last_suspend_time_show
+ffffffff811408c0 t __traceiter_console
+ffffffff81140910 t trace_event_raw_event_console
+ffffffff81140a20 t perf_trace_console
+ffffffff81140b80 t devkmsg_sysctl_set_loglvl
+ffffffff81140ce0 t printk_percpu_data_ready
+ffffffff81140d00 t log_buf_addr_get
+ffffffff81140d20 t log_buf_len_get
+ffffffff81140d40 t devkmsg_llseek
+ffffffff81140dd0 t devkmsg_read
+ffffffff81141110 t devkmsg_write
+ffffffff81141290 t devkmsg_poll
+ffffffff81141390 t devkmsg_open
+ffffffff81141500 t devkmsg_release
+ffffffff81141560 t log_buf_vmcoreinfo_setup
+ffffffff811419b0 t _printk
+ffffffff81141a30 t do_syslog
+ffffffff81141f10 t syslog_print
+ffffffff811422d0 t syslog_print_all
+ffffffff811425b0 t __x64_sys_syslog
+ffffffff811425d0 t printk_parse_prefix
+ffffffff81142640 t vprintk_store
+ffffffff81142c20 t printk_sprint
+ffffffff81142d50 t vprintk_emit
+ffffffff81142f40 t console_unlock
+ffffffff81143140 t wake_up_klogd
+ffffffff81143160 t vprintk_default
+ffffffff81143180 t early_printk
+ffffffff81143280 t add_preferred_console
+ffffffff811432a0 t __add_preferred_console.llvm.17047447849185621060
+ffffffff81143580 t console_verbose
+ffffffff811435b0 t suspend_console
+ffffffff81143670 t console_lock
+ffffffff811436b0 t resume_console
+ffffffff811436f0 t console_trylock
+ffffffff811437c0 t is_console_locked
+ffffffff811437e0 t console_unblank
+ffffffff811438d0 t console_flush_on_panic
+ffffffff81143920 t console_device
+ffffffff811439a0 t console_stop
+ffffffff811439f0 t __pr_flush
+ffffffff81143b20 t console_start
+ffffffff81143b70 t register_console
+ffffffff81143e00 t try_enable_preferred_console
+ffffffff81143f20 t unregister_console
+ffffffff81144010 t __wake_up_klogd.llvm.17047447849185621060
+ffffffff811440a0 t defer_console_output
+ffffffff811440c0 t printk_trigger_flush
+ffffffff811440e0 t vprintk_deferred
+ffffffff81144173 t _printk_deferred
+ffffffff811441f0 t __printk_ratelimit
+ffffffff81144210 t printk_timed_ratelimit
+ffffffff81144260 t kmsg_dump_register
+ffffffff81144300 t kmsg_dump_unregister
+ffffffff81144380 t kmsg_dump_reason_str
+ffffffff811443b0 t kmsg_dump
+ffffffff81144430 t kmsg_dump_get_line
+ffffffff81144690 t record_print_text
+ffffffff811448b0 t kmsg_dump_get_buffer
+ffffffff81144b40 t find_first_fitting_seq
+ffffffff81144e70 t kmsg_dump_rewind
+ffffffff81144ec0 t __printk_cpu_sync_wait
+ffffffff81144ef0 t __printk_cpu_sync_try_get
+ffffffff81144f30 t __printk_cpu_sync_put
+ffffffff81144f60 t trace_raw_output_console
+ffffffff81144fc0 t msg_print_ext_body
+ffffffff811450c0 t msg_add_dict_text
+ffffffff81145211 t devkmsg_emit
+ffffffff81145290 t console_emit_next_record
+ffffffff81145640 t console_cpu_notify
+ffffffff81145670 t wake_up_klogd_work_func
+ffffffff811456d0 t __printk_safe_enter
+ffffffff811456f0 t __printk_safe_exit
+ffffffff81145710 t vprintk
+ffffffff81145770 t prb_reserve_in_last
+ffffffff81145d80 t data_alloc
+ffffffff81145ea0 t get_data
+ffffffff81145f90 t prb_commit
+ffffffff81146030 t prb_reserve
+ffffffff811466d0 t prb_final_commit
+ffffffff81146730 t prb_read_valid
+ffffffff81146780 t _prb_read_valid.llvm.50066628570926255
+ffffffff81146bc0 t prb_read_valid_info
+ffffffff81146c20 t prb_first_valid_seq
+ffffffff81146c80 t prb_next_seq
+ffffffff81146da0 t prb_init
+ffffffff81146ea0 t prb_record_text_space
+ffffffff81146eb0 t data_push_tail
+ffffffff81147080 t proc_dointvec_minmax_sysadmin
+ffffffff811470e0 t irq_to_desc
+ffffffff81147100 t irq_lock_sparse
+ffffffff81147120 t irq_unlock_sparse
+ffffffff81147140 t alloc_desc
+ffffffff81147380 t handle_irq_desc
+ffffffff811473d0 t generic_handle_irq
+ffffffff81147430 t generic_handle_irq_safe
+ffffffff811474e0 t generic_handle_domain_irq
+ffffffff81147540 t generic_handle_domain_irq_safe
+ffffffff811475f0 t generic_handle_domain_nmi
+ffffffff81147660 t irq_free_descs
+ffffffff81147750 t irq_get_next_irq
+ffffffff81147770 t __irq_get_desc_lock
+ffffffff81147800 t __irq_put_desc_unlock
+ffffffff81147850 t irq_set_percpu_devid_partition
+ffffffff811478f0 t irq_set_percpu_devid
+ffffffff81147980 t irq_get_percpu_devid_partition
+ffffffff811479e0 t kstat_incr_irq_this_cpu
+ffffffff81147a30 t kstat_irqs_cpu
+ffffffff81147a80 t kstat_irqs_usr
+ffffffff81147b30 t irq_kobj_release
+ffffffff81147b60 t per_cpu_count_show
+ffffffff81147c80 t chip_name_show
+ffffffff81147cf0 t hwirq_show
+ffffffff81147d50 t wakeup_show
+ffffffff81147dc0 t wakeup_show
+ffffffff81147e10 t name_show
+ffffffff81147e70 t name_show
+ffffffff81147ea0 t name_show
+ffffffff81147ed0 t name_show
+ffffffff81147f50 t name_show
+ffffffff81147fa0 t actions_show
+ffffffff81148070 t delayed_free_desc
+ffffffff81148090 t handle_bad_irq
+ffffffff81148320 t no_action
+ffffffff81148330 t __irq_wake_thread
+ffffffff81148380 t __handle_irq_event_percpu
+ffffffff81148570 t handle_irq_event_percpu
+ffffffff811485b0 t handle_irq_event
+ffffffff81148620 t synchronize_hardirq
+ffffffff811486a0 t __synchronize_hardirq
+ffffffff81148790 t synchronize_irq
+ffffffff81148870 t irq_can_set_affinity
+ffffffff811488c0 t irq_can_set_affinity_usr
+ffffffff81148910 t irq_set_thread_affinity
+ffffffff81148940 t irq_do_set_affinity
+ffffffff81148b40 t irq_set_affinity_locked
+ffffffff81148ce0 t irq_update_affinity_desc
+ffffffff81148cf0 t irq_set_affinity
+ffffffff81148d60 t irq_force_affinity
+ffffffff81148dd0 t __irq_apply_affinity_hint
+ffffffff81148eb0 t irq_set_affinity_notifier
+ffffffff81148fe0 t irq_affinity_notify
+ffffffff811490f0 t irq_setup_affinity
+ffffffff81149240 t irq_set_vcpu_affinity
+ffffffff81149310 t __disable_irq
+ffffffff81149340 t disable_irq_nosync
+ffffffff811493d0 t disable_irq
+ffffffff81149470 t disable_hardirq
+ffffffff81149580 t disable_nmi_nosync
+ffffffff81149610 t __enable_irq
+ffffffff81149670 t enable_irq
+ffffffff81149750 t enable_nmi
+ffffffff81149760 t irq_set_irq_wake
+ffffffff81149900 t can_request_irq
+ffffffff81149990 t __irq_set_trigger
+ffffffff81149ab0 t irq_set_parent
+ffffffff81149b30 t irq_wake_thread
+ffffffff81149bc0 t free_irq
+ffffffff81149f10 t free_nmi
+ffffffff81149fc0 t __cleanup_nmi
+ffffffff8114a050 t request_threaded_irq
+ffffffff8114a1d0 t irq_default_primary_handler
+ffffffff8114a1e0 t __setup_irq
+ffffffff8114a9f0 t request_any_context_irq
+ffffffff8114aa90 t request_nmi
+ffffffff8114ac60 t enable_percpu_irq
+ffffffff8114ad20 t enable_percpu_nmi
+ffffffff8114ad30 t irq_percpu_is_enabled
+ffffffff8114adc0 t disable_percpu_irq
+ffffffff8114ae40 t disable_percpu_nmi
+ffffffff8114aec0 t remove_percpu_irq
+ffffffff8114af00 t __free_percpu_irq
+ffffffff8114b030 t free_percpu_irq
+ffffffff8114b0b0 t free_percpu_nmi
+ffffffff8114b100 t setup_percpu_irq
+ffffffff8114b190 t __request_percpu_irq
+ffffffff8114b2b0 t request_percpu_nmi
+ffffffff8114b400 t prepare_percpu_nmi
+ffffffff8114b510 t teardown_percpu_nmi
+ffffffff8114b5d0 t __irq_get_irqchip_state
+ffffffff8114b630 t irq_get_irqchip_state
+ffffffff8114b710 t irq_set_irqchip_state
+ffffffff8114b7f0 t irq_has_action
+ffffffff8114b830 t irq_check_status_bit
+ffffffff8114b870 t irq_nested_primary_handler
+ffffffff8114b890 t wake_up_and_wait_for_irq_thread_ready
+ffffffff8114b980 t irq_forced_secondary_handler
+ffffffff8114b9a0 t irq_thread
+ffffffff8114bc30 t irq_forced_thread_fn
+ffffffff8114bc90 t irq_thread_fn
+ffffffff8114bce0 t irq_thread_dtor
+ffffffff8114bd80 t irq_finalize_oneshot
+ffffffff8114be70 t irq_wait_for_poll
+ffffffff8114bf30 t note_interrupt
+ffffffff8114c120 t misrouted_irq
+ffffffff8114c1d0 t __report_bad_irq
+ffffffff8114c290 t noirqdebug_setup
+ffffffff8114c2c0 t try_one_irq
+ffffffff8114c3a0 t poll_spurious_irqs
+ffffffff8114c460 t check_irq_resend
+ffffffff8114c520 t resend_irqs
+ffffffff8114c5a0 t bad_chained_irq
+ffffffff8114c5d0 t irq_set_chip
+ffffffff8114c660 t irq_set_irq_type
+ffffffff8114c6f0 t irq_set_handler_data
+ffffffff8114c770 t irq_set_msi_desc_off
+ffffffff8114c810 t irq_set_msi_desc
+ffffffff8114c8a0 t irq_set_chip_data
+ffffffff8114c920 t irq_get_irq_data
+ffffffff8114c950 t irq_startup
+ffffffff8114cac0 t irq_enable
+ffffffff8114cb30 t __irq_startup
+ffffffff8114cbe0 t irq_activate
+ffffffff8114cc10 t irq_activate_and_startup
+ffffffff8114cc70 t irq_shutdown
+ffffffff8114cd10 t irq_shutdown_and_deactivate
+ffffffff8114cdd0 t unmask_irq
+ffffffff8114ce10 t irq_disable
+ffffffff8114ce90 t irq_percpu_enable
+ffffffff8114cee0 t irq_percpu_disable
+ffffffff8114cf30 t mask_irq
+ffffffff8114cf70 t unmask_threaded_irq
+ffffffff8114cfd0 t handle_nested_irq
+ffffffff8114d0f0 t handle_simple_irq
+ffffffff8114d200 t handle_untracked_irq
+ffffffff8114d300 t handle_level_irq
+ffffffff8114d4d0 t handle_fasteoi_irq
+ffffffff8114d6e0 t handle_fasteoi_nmi
+ffffffff8114d7f0 t handle_edge_irq
+ffffffff8114da10 t handle_percpu_irq
+ffffffff8114da80 t handle_percpu_devid_irq
+ffffffff8114dc40 t handle_percpu_devid_fasteoi_nmi
+ffffffff8114dd60 t __irq_set_handler
+ffffffff8114ddf0 t __irq_do_set_handler
+ffffffff8114dff0 t irq_set_chained_handler_and_data
+ffffffff8114e080 t irq_set_chip_and_handler_name
+ffffffff8114e150 t irq_modify_status
+ffffffff8114e280 t irq_chip_set_parent_state
+ffffffff8114e2b0 t irq_chip_get_parent_state
+ffffffff8114e2e0 t irq_chip_enable_parent
+ffffffff8114e310 t irq_chip_disable_parent
+ffffffff8114e340 t irq_chip_ack_parent
+ffffffff8114e360 t irq_chip_mask_parent
+ffffffff8114e380 t irq_chip_mask_ack_parent
+ffffffff8114e3a0 t irq_chip_unmask_parent
+ffffffff8114e3c0 t irq_chip_eoi_parent
+ffffffff8114e3e0 t irq_chip_set_affinity_parent
+ffffffff8114e420 t irq_chip_set_type_parent
+ffffffff8114e450 t irq_chip_retrigger_hierarchy
+ffffffff8114e490 t irq_chip_set_vcpu_affinity_parent
+ffffffff8114e4d0 t irq_chip_set_wake_parent
+ffffffff8114e510 t irq_chip_request_resources_parent
+ffffffff8114e540 t irq_chip_release_resources_parent
+ffffffff8114e570 t irq_chip_compose_msi_msg
+ffffffff8114e5e0 t irq_chip_pm_get
+ffffffff8114e640 t irq_chip_pm_put
+ffffffff8114e680 t noop_ret
+ffffffff8114e690 t noop
+ffffffff8114e6a0 t ack_bad
+ffffffff8114e910 t devm_request_threaded_irq
+ffffffff8114e9e0 t devm_irq_release
+ffffffff8114ea00 t devm_request_any_context_irq
+ffffffff8114ead0 t devm_free_irq
+ffffffff8114eb50 t devm_irq_match
+ffffffff8114eb70 t __devm_irq_alloc_descs
+ffffffff8114ec20 t devm_irq_desc_release
+ffffffff8114ec40 t probe_irq_on
+ffffffff8114ee40 t probe_irq_mask
+ffffffff8114ef20 t probe_irq_off
+ffffffff8114f010 t irqchip_fwnode_get_name.llvm.1834836232419378684
+ffffffff8114f020 t __irq_domain_alloc_fwnode
+ffffffff8114f100 t irq_domain_free_fwnode
+ffffffff8114f140 t __irq_domain_add
+ffffffff8114f1b0 t __irq_domain_create
+ffffffff8114f3c0 t irq_domain_remove
+ffffffff8114f480 t irq_set_default_host
+ffffffff8114f4a0 t irq_domain_update_bus_token
+ffffffff8114f520 t irq_domain_create_simple
+ffffffff8114f630 t irq_domain_associate_many
+ffffffff8114f690 t irq_domain_add_legacy
+ffffffff8114f6b0 t irq_domain_create_legacy
+ffffffff8114f790 t irq_find_matching_fwspec
+ffffffff8114f8a0 t irq_domain_check_msi_remap
+ffffffff8114f920 t irq_domain_hierarchical_is_msi_remap
+ffffffff8114f960 t irq_get_default_host
+ffffffff8114f980 t irq_domain_associate
+ffffffff8114f9d0 t irq_domain_associate_locked
+ffffffff8114fb60 t irq_create_mapping_affinity
+ffffffff8114fcf0 t of_phandle_args_to_fwspec
+ffffffff8114fda0 t irq_create_fwspec_mapping
+ffffffff811502a0 t irq_domain_alloc_irqs_locked
+ffffffff811506d0 t irq_create_of_mapping
+ffffffff81150850 t irq_dispose_mapping
+ffffffff811509d0 t irq_domain_free_irqs
+ffffffff81150c40 t __irq_resolve_mapping
+ffffffff81150cd0 t irq_domain_get_irq_data
+ffffffff81150d20 t irq_domain_xlate_onecell
+ffffffff81150d50 t irq_domain_xlate_twocell
+ffffffff81150d90 t irq_domain_translate_twocell
+ffffffff81150dc0 t irq_domain_xlate_onetwocell
+ffffffff81150e00 t irq_domain_translate_onecell
+ffffffff81150e30 t irq_domain_alloc_descs
+ffffffff81150ed0 t irq_domain_reset_irq_data
+ffffffff81150f00 t irq_domain_create_hierarchy
+ffffffff81150fa0 t irq_domain_disconnect_hierarchy
+ffffffff81151000 t irq_domain_set_hwirq_and_chip
+ffffffff81151080 t irq_domain_set_info
+ffffffff81151120 t irq_domain_free_irqs_common
+ffffffff81151240 t irq_domain_free_irqs_parent
+ffffffff811512e0 t irq_domain_free_irqs_top
+ffffffff81151340 t irq_domain_alloc_irqs_hierarchy
+ffffffff81151370 t __irq_domain_alloc_irqs
+ffffffff81151410 t irq_domain_push_irq
+ffffffff81151690 t irq_domain_pop_irq
+ffffffff811518f0 t irq_domain_alloc_irqs_parent
+ffffffff81151920 t irq_domain_activate_irq
+ffffffff81151960 t __irq_domain_activate_irq
+ffffffff811519e0 t irq_domain_deactivate_irq
+ffffffff81151a10 t __irq_domain_deactivate_irq
+ffffffff81151a60 t register_handler_proc
+ffffffff81151c20 t register_irq_proc
+ffffffff81151de0 t irq_affinity_hint_proc_show
+ffffffff81151ec0 t irq_node_proc_show
+ffffffff81151f00 t irq_effective_aff_proc_show
+ffffffff81151f50 t irq_effective_aff_list_proc_show
+ffffffff81151fa0 t irq_spurious_proc_show
+ffffffff81151ff0 t unregister_irq_proc
+ffffffff81152100 t unregister_handler_proc
+ffffffff81152120 t init_irq_proc
+ffffffff811521c0 t show_interrupts
+ffffffff81152540 t irq_affinity_proc_open
+ffffffff81152570 t irq_affinity_proc_write
+ffffffff81152590 t irq_affinity_proc_show
+ffffffff811525f0 t write_irq_affinity
+ffffffff811526f0 t irq_affinity_list_proc_open
+ffffffff81152720 t irq_affinity_list_proc_write
+ffffffff81152740 t irq_affinity_list_proc_show
+ffffffff811527a0 t default_affinity_open
+ffffffff811527d0 t default_affinity_write
+ffffffff811528a0 t default_affinity_show
+ffffffff811528d0 t irq_fixup_move_pending
+ffffffff81152940 t irq_move_masked_irq
+ffffffff81152a20 t __irq_move_irq
+ffffffff81152a90 t irq_migrate_all_off_this_cpu
+ffffffff81152d20 t irq_affinity_online_cpu
+ffffffff81152e80 t irq_pm_check_wakeup
+ffffffff81152ed0 t irq_pm_install_action
+ffffffff81152f50 t irq_pm_remove_action
+ffffffff81152fa0 t suspend_device_irqs
+ffffffff811530e0 t rearm_wake_irq
+ffffffff81153180 t resume_device_irqs
+ffffffff811531a0 t resume_irqs.llvm.13845170584573395257
+ffffffff811532c0 t irq_pm_syscore_resume
+ffffffff811532e0 t msi_add_msi_desc
+ffffffff811533e0 t msi_free_msi_descs_range
+ffffffff811534e0 t __get_cached_msi_msg
+ffffffff81153500 t get_cached_msi_msg
+ffffffff81153550 t msi_setup_device_data
+ffffffff81153610 t msi_device_data_release
+ffffffff81153650 t msi_lock_descs
+ffffffff81153670 t msi_unlock_descs
+ffffffff811536a0 t msi_first_desc
+ffffffff81153740 t msi_next_desc
+ffffffff811537f0 t msi_get_virq
+ffffffff811538e0 t msi_domain_set_affinity
+ffffffff811539c0 t msi_create_irq_domain
+ffffffff81153b20 t msi_domain_prepare_irqs
+ffffffff81153b80 t msi_domain_populate_irqs
+ffffffff81153d60 t msi_add_simple_msi_descs
+ffffffff81153ee0 t __msi_domain_alloc_irqs
+ffffffff81154510 t msi_domain_alloc_irqs_descs_locked
+ffffffff81154590 t msi_domain_free_irqs_descs_locked
+ffffffff81154660 t msi_domain_alloc_irqs
+ffffffff81154710 t __msi_domain_free_irqs
+ffffffff81154930 t msi_domain_free_irqs
+ffffffff81154990 t msi_get_domain_info
+ffffffff811549a0 t msi_domain_ops_get_hwirq
+ffffffff811549b0 t msi_domain_ops_init
+ffffffff81154a10 t msi_domain_ops_check
+ffffffff81154a20 t msi_domain_ops_prepare
+ffffffff81154a80 t msi_domain_ops_set_desc
+ffffffff81154a90 t msi_domain_alloc
+ffffffff81154c00 t msi_domain_free
+ffffffff81154c90 t msi_domain_activate
+ffffffff81154d50 t msi_domain_deactivate
+ffffffff81154dc0 t msi_mode_show
+ffffffff81154e20 t irq_create_affinity_masks
+ffffffff81155330 t default_calc_sets
+ffffffff81155350 t irq_calc_affinity_vectors
+ffffffff811553c0 t __irq_build_affinity_masks
+ffffffff81155730 t ncpus_cmp_func
+ffffffff81155750 t __traceiter_irq_matrix_online
+ffffffff811557a0 t __traceiter_irq_matrix_offline
+ffffffff811557f0 t __traceiter_irq_matrix_reserve
+ffffffff81155840 t __traceiter_irq_matrix_remove_reserved
+ffffffff81155890 t __traceiter_irq_matrix_assign_system
+ffffffff811558e0 t __traceiter_irq_matrix_alloc_reserved
+ffffffff81155950 t __traceiter_irq_matrix_reserve_managed
+ffffffff811559c0 t __traceiter_irq_matrix_remove_managed
+ffffffff81155a30 t __traceiter_irq_matrix_alloc_managed
+ffffffff81155aa0 t __traceiter_irq_matrix_assign
+ffffffff81155b10 t __traceiter_irq_matrix_alloc
+ffffffff81155b80 t __traceiter_irq_matrix_free
+ffffffff81155bf0 t trace_event_raw_event_irq_matrix_global
+ffffffff81155cc0 t perf_trace_irq_matrix_global
+ffffffff81155dd0 t trace_event_raw_event_irq_matrix_global_update
+ffffffff81155eb0 t perf_trace_irq_matrix_global_update
+ffffffff81155fd0 t trace_event_raw_event_irq_matrix_cpu
+ffffffff811560e0 t perf_trace_irq_matrix_cpu
+ffffffff81156230 t irq_matrix_online
+ffffffff811562f0 t irq_matrix_offline
+ffffffff81156380 t irq_matrix_assign_system
+ffffffff81156460 t irq_matrix_reserve_managed
+ffffffff81156640 t irq_matrix_remove_managed
+ffffffff81156770 t irq_matrix_alloc_managed
+ffffffff81156910 t irq_matrix_assign
+ffffffff811569d0 t irq_matrix_reserve
+ffffffff81156a50 t irq_matrix_remove_reserved
+ffffffff81156ab0 t irq_matrix_alloc
+ffffffff81156c90 t irq_matrix_free
+ffffffff81156d60 t irq_matrix_available
+ffffffff81156db0 t irq_matrix_reserved
+ffffffff81156dc0 t irq_matrix_allocated
+ffffffff81156df0 t trace_raw_output_irq_matrix_global
+ffffffff81156e50 t trace_raw_output_irq_matrix_global_update
+ffffffff81156ec0 t trace_raw_output_irq_matrix_cpu
+ffffffff81156f50 t __traceiter_rcu_utilization
+ffffffff81156fa0 t __traceiter_rcu_grace_period
+ffffffff81157000 t __traceiter_rcu_future_grace_period
+ffffffff81157080 t __traceiter_rcu_grace_period_init
+ffffffff81157100 t __traceiter_rcu_exp_grace_period
+ffffffff81157160 t __traceiter_rcu_exp_funnel_lock
+ffffffff811571d0 t __traceiter_rcu_nocb_wake
+ffffffff81157230 t __traceiter_rcu_preempt_task
+ffffffff81157290 t __traceiter_rcu_unlock_preempted_task
+ffffffff811572f0 t __traceiter_rcu_quiescent_state_report
+ffffffff81157370 t __traceiter_rcu_fqs
+ffffffff811573e0 t __traceiter_rcu_stall_warning
+ffffffff81157430 t __traceiter_rcu_dyntick
+ffffffff811574a0 t __traceiter_rcu_callback
+ffffffff81157500 t __traceiter_rcu_segcb_stats
+ffffffff81157550 t __traceiter_rcu_kvfree_callback
+ffffffff811575c0 t __traceiter_rcu_batch_start
+ffffffff81157620 t __traceiter_rcu_invoke_callback
+ffffffff81157670 t __traceiter_rcu_invoke_kvfree_callback
+ffffffff811576d0 t __traceiter_rcu_invoke_kfree_bulk_callback
+ffffffff81157730 t __traceiter_rcu_batch_end
+ffffffff811577c0 t __traceiter_rcu_torture_read
+ffffffff81157830 t __traceiter_rcu_barrier
+ffffffff811578a0 t trace_event_raw_event_rcu_utilization
+ffffffff81157960 t perf_trace_rcu_utilization
+ffffffff81157a50 t trace_event_raw_event_rcu_grace_period
+ffffffff81157b20 t perf_trace_rcu_grace_period
+ffffffff81157c30 t trace_event_raw_event_rcu_future_grace_period
+ffffffff81157d20 t perf_trace_rcu_future_grace_period
+ffffffff81157e50 t trace_event_raw_event_rcu_grace_period_init
+ffffffff81157f40 t perf_trace_rcu_grace_period_init
+ffffffff81158070 t trace_event_raw_event_rcu_exp_grace_period
+ffffffff81158140 t perf_trace_rcu_exp_grace_period
+ffffffff81158250 t trace_event_raw_event_rcu_exp_funnel_lock
+ffffffff81158330 t perf_trace_rcu_exp_funnel_lock
+ffffffff81158450 t trace_event_raw_event_rcu_nocb_wake
+ffffffff81158520 t perf_trace_rcu_nocb_wake
+ffffffff81158630 t trace_event_raw_event_rcu_preempt_task
+ffffffff81158700 t perf_trace_rcu_preempt_task
+ffffffff81158810 t trace_event_raw_event_rcu_unlock_preempted_task
+ffffffff811588e0 t perf_trace_rcu_unlock_preempted_task
+ffffffff811589f0 t trace_event_raw_event_rcu_quiescent_state_report
+ffffffff81158af0 t perf_trace_rcu_quiescent_state_report
+ffffffff81158c20 t trace_event_raw_event_rcu_fqs
+ffffffff81158d00 t perf_trace_rcu_fqs
+ffffffff81158e10 t trace_event_raw_event_rcu_stall_warning
+ffffffff81158ed0 t perf_trace_rcu_stall_warning
+ffffffff81158fd0 t trace_event_raw_event_rcu_dyntick
+ffffffff811590b0 t perf_trace_rcu_dyntick
+ffffffff811591c0 t trace_event_raw_event_rcu_callback
+ffffffff811592a0 t perf_trace_rcu_callback
+ffffffff811593b0 t trace_event_raw_event_rcu_segcb_stats
+ffffffff811594c0 t perf_trace_rcu_segcb_stats
+ffffffff81159600 t trace_event_raw_event_rcu_kvfree_callback
+ffffffff811596e0 t perf_trace_rcu_kvfree_callback
+ffffffff811597f0 t trace_event_raw_event_rcu_batch_start
+ffffffff811598c0 t perf_trace_rcu_batch_start
+ffffffff811599d0 t trace_event_raw_event_rcu_invoke_callback
+ffffffff81159aa0 t perf_trace_rcu_invoke_callback
+ffffffff81159ba0 t trace_event_raw_event_rcu_invoke_kvfree_callback
+ffffffff81159c70 t perf_trace_rcu_invoke_kvfree_callback
+ffffffff81159d80 t trace_event_raw_event_rcu_invoke_kfree_bulk_callback
+ffffffff81159e50 t perf_trace_rcu_invoke_kfree_bulk_callback
+ffffffff81159f60 t trace_event_raw_event_rcu_batch_end
+ffffffff8115a050 t perf_trace_rcu_batch_end
+ffffffff8115a180 t trace_event_raw_event_rcu_torture_read
+ffffffff8115a280 t perf_trace_rcu_torture_read
+ffffffff8115a3d0 t trace_event_raw_event_rcu_barrier
+ffffffff8115a4b0 t perf_trace_rcu_barrier
+ffffffff8115a5d0 t rcu_gp_is_normal
+ffffffff8115a600 t rcu_gp_is_expedited
+ffffffff8115a630 t rcu_expedite_gp
+ffffffff8115a650 t rcu_unexpedite_gp
+ffffffff8115a670 t rcu_end_inkernel_boot
+ffffffff8115a6a0 t rcu_inkernel_boot_has_ended
+ffffffff8115a6c0 t rcu_test_sync_prims
+ffffffff8115a6d0 t wakeme_after_rcu
+ffffffff8115a6f0 t __wait_rcu_gp
+ffffffff8115a850 t finish_rcuwait
+ffffffff8115a880 t do_trace_rcu_torture_read
+ffffffff8115a8e0 t get_completed_synchronize_rcu
+ffffffff8115a8f0 t rcu_early_boot_tests
+ffffffff8115a900 t call_rcu_tasks
+ffffffff8115aaf0 t synchronize_rcu_tasks
+ffffffff8115abe0 t rcu_barrier_tasks
+ffffffff8115ada0 t show_rcu_tasks_classic_gp_kthread
+ffffffff8115ae90 t exit_tasks_rcu_start
+ffffffff8115aec0 t exit_tasks_rcu_stop
+ffffffff8115aef0 t exit_tasks_rcu_finish
+ffffffff8115af20 t show_rcu_tasks_gp_kthreads
+ffffffff8115af30 t trace_raw_output_rcu_utilization
+ffffffff8115af80 t trace_raw_output_rcu_grace_period
+ffffffff8115afe0 t trace_raw_output_rcu_future_grace_period
+ffffffff8115b050 t trace_raw_output_rcu_grace_period_init
+ffffffff8115b0c0 t trace_raw_output_rcu_exp_grace_period
+ffffffff8115b120 t trace_raw_output_rcu_exp_funnel_lock
+ffffffff8115b190 t trace_raw_output_rcu_nocb_wake
+ffffffff8115b1f0 t trace_raw_output_rcu_preempt_task
+ffffffff8115b250 t trace_raw_output_rcu_unlock_preempted_task
+ffffffff8115b2b0 t trace_raw_output_rcu_quiescent_state_report
+ffffffff8115b330 t trace_raw_output_rcu_fqs
+ffffffff8115b390 t trace_raw_output_rcu_stall_warning
+ffffffff8115b3f0 t trace_raw_output_rcu_dyntick
+ffffffff8115b450 t trace_raw_output_rcu_callback
+ffffffff8115b4b0 t trace_raw_output_rcu_segcb_stats
+ffffffff8115b530 t trace_raw_output_rcu_kvfree_callback
+ffffffff8115b590 t trace_raw_output_rcu_batch_start
+ffffffff8115b5f0 t trace_raw_output_rcu_invoke_callback
+ffffffff8115b650 t trace_raw_output_rcu_invoke_kvfree_callback
+ffffffff8115b6b0 t trace_raw_output_rcu_invoke_kfree_bulk_callback
+ffffffff8115b710 t trace_raw_output_rcu_batch_end
+ffffffff8115b7b0 t trace_raw_output_rcu_torture_read
+ffffffff8115b820 t trace_raw_output_rcu_barrier
+ffffffff8115b890 t cblist_init_generic
+ffffffff8115ba80 t rcu_tasks_invoke_cbs_wq
+ffffffff8115baa0 t rcu_tasks_invoke_cbs
+ffffffff8115bc80 t rcu_tasks_wait_gp
+ffffffff8115bf40 t call_rcu_tasks_iw_wakeup
+ffffffff8115bf60 t rcu_tasks_one_gp
+ffffffff8115c350 t rcu_barrier_tasks_generic_cb
+ffffffff8115c380 t rcu_tasks_pregp_step
+ffffffff8115c390 t rcu_tasks_pertask
+ffffffff8115c440 t rcu_tasks_postscan
+ffffffff8115c460 t check_all_holdout_tasks
+ffffffff8115c5f0 t rcu_tasks_postgp
+ffffffff8115c600 t rcu_tasks_kthread
+ffffffff8115c650 t rcu_sync_init
+ffffffff8115c6b0 t rcu_sync_enter_start
+ffffffff8115c6d0 t rcu_sync_enter
+ffffffff8115c800 t rcu_sync_func
+ffffffff8115c8a0 t rcu_sync_exit
+ffffffff8115c920 t rcu_sync_dtor
+ffffffff8115c990 t init_srcu_struct
+ffffffff8115c9b0 t init_srcu_struct_fields.llvm.13916969435790692829
+ffffffff8115cc60 t cleanup_srcu_struct
+ffffffff8115cf10 t __srcu_read_lock
+ffffffff8115cf40 t __srcu_read_unlock
+ffffffff8115cf70 t call_srcu
+ffffffff8115cf90 t synchronize_srcu_expedited
+ffffffff8115cfb0 t __synchronize_srcu
+ffffffff8115d0d0 t synchronize_srcu
+ffffffff8115d1e0 t get_state_synchronize_srcu
+ffffffff8115d210 t start_poll_synchronize_srcu
+ffffffff8115d230 t srcu_gp_start_if_needed.llvm.13916969435790692829
+ffffffff8115d850 t poll_state_synchronize_srcu
+ffffffff8115d880 t srcu_barrier
+ffffffff8115db40 t srcu_batches_completed
+ffffffff8115db60 t srcutorture_get_gp_data
+ffffffff8115db80 t srcu_torture_stats_print
+ffffffff8115dd20 t process_srcu
+ffffffff8115e380 t init_srcu_struct_nodes
+ffffffff8115e6f0 t srcu_reschedule
+ffffffff8115e770 t srcu_gp_start
+ffffffff8115e880 t try_check_zero
+ffffffff8115ea20 t srcu_invoke_callbacks
+ffffffff8115ebc0 t srcu_delay_timer
+ffffffff8115ebf0 t srcu_funnel_exp_start
+ffffffff8115ed50 t srcu_barrier_cb
+ffffffff8115ed80 t srcu_module_notify
+ffffffff8115ee20 t rcu_get_gp_kthreads_prio
+ffffffff8115ee40 t rcu_softirq_qs
+ffffffff8115eee0 t rcu_qs
+ffffffff8115ef90 t rcu_preempt_deferred_qs
+ffffffff8115f020 t rcu_is_idle_cpu
+ffffffff8115f060 t rcu_dynticks_zero_in_eqs
+ffffffff8115f0b0 t rcu_momentary_dyntick_idle
+ffffffff8115f170 t rcu_get_gp_seq
+ffffffff8115f190 t rcu_exp_batches_completed
+ffffffff8115f1b0 t rcutorture_get_gp_data
+ffffffff8115f1e0 t rcu_needs_cpu
+ffffffff8115f240 t rcu_is_watching
+ffffffff8115f290 t rcu_request_urgent_qs_task
+ffffffff8115f2d0 t rcu_gp_slow_register
+ffffffff8115f2f0 t rcu_gp_slow_unregister
+ffffffff8115f320 t rcu_gp_set_torture_wait
+ffffffff8115f330 t rcutree_dying_cpu
+ffffffff8115f3d0 t rcutree_dead_cpu
+ffffffff8115f410 t rcu_boost_kthread_setaffinity
+ffffffff8115f590 t rcu_sched_clock_irq
+ffffffff8115fe40 t invoke_rcu_core
+ffffffff8115ff30 t rcu_force_quiescent_state
+ffffffff81160050 t call_rcu
+ffffffff81160830 t __call_rcu_nocb_wake
+ffffffff81160c10 t kvfree_call_rcu
+ffffffff81160f50 t synchronize_rcu
+ffffffff811611a0 t synchronize_rcu_expedited
+ffffffff81161b70 t get_completed_synchronize_rcu_full
+ffffffff81161b90 t get_state_synchronize_rcu
+ffffffff81161bc0 t get_state_synchronize_rcu_full
+ffffffff81161c10 t start_poll_synchronize_rcu
+ffffffff81161c40 t start_poll_synchronize_rcu_common
+ffffffff81161d50 t start_poll_synchronize_rcu_full
+ffffffff81161da0 t poll_state_synchronize_rcu
+ffffffff81161de0 t poll_state_synchronize_rcu_full
+ffffffff81161e40 t cond_synchronize_rcu
+ffffffff81161e80 t cond_synchronize_rcu_full
+ffffffff81161ee0 t rcu_barrier
+ffffffff81162470 t rcu_barrier_entrain
+ffffffff81162610 t rcu_barrier_handler
+ffffffff81162680 t rcutree_prepare_cpu
+ffffffff81162800 t rcu_iw_handler
+ffffffff81162850 t rcu_spawn_one_boost_kthread
+ffffffff81162950 t rcu_spawn_cpu_nocb_kthread
+ffffffff81162b70 t rcutree_online_cpu
+ffffffff81162bf0 t rcutree_offline_cpu
+ffffffff81162c70 t rcu_cpu_starting
+ffffffff81162e80 t rcu_report_qs_rnp
+ffffffff811630b0 t rcu_report_dead
+ffffffff81163270 t rcutree_migrate_callbacks
+ffffffff811635b0 t rcu_nocb_flush_bypass
+ffffffff811636f0 t rcu_scheduler_starting
+ffffffff81163820 t rcu_init_geometry
+ffffffff811639e0 t rcu_core_si
+ffffffff811639f0 t rcu_pm_notify
+ffffffff81163a30 t start_poll_synchronize_rcu_expedited
+ffffffff81163b10 t rcu_exp_jiffies_till_stall_check
+ffffffff81163b90 t rcu_jiffies_till_stall_check
+ffffffff81163bd0 t rcu_gp_might_be_stalled
+ffffffff81163c50 t rcu_sysrq_start
+ffffffff81163c80 t rcu_sysrq_end
+ffffffff81163ca0 t rcu_cpu_stall_reset
+ffffffff81163cf0 t rcu_check_boost_fail
+ffffffff81163e80 t show_rcu_gp_kthreads
+ffffffff811648a0 t rcu_fwd_progress_check
+ffffffff81164a00 t rcu_exp_sel_wait_wake
+ffffffff811659f0 t start_poll_synchronize_rcu_expedited_full
+ffffffff81165a40 t cond_synchronize_rcu_expedited
+ffffffff81165a80 t cond_synchronize_rcu_expedited_full
+ffffffff81165ae0 t rcu_nocb_flush_deferred_wakeup
+ffffffff81165b50 t rcu_nocb_cpu_deoffload
+ffffffff81165c10 t rcu_nocb_rdp_deoffload
+ffffffff81165f10 t rcu_nocb_cpu_offload
+ffffffff81165fd0 t rcu_nocb_rdp_offload
+ffffffff81166170 t rcu_bind_current_to_nocb
+ffffffff811661c0 t rcu_note_context_switch
+ffffffff81166710 t __rcu_read_lock
+ffffffff81166730 t __rcu_read_unlock
+ffffffff81166760 t rcu_read_unlock_special
+ffffffff81166900 t rcu_preempt_deferred_qs_irqrestore
+ffffffff81166d50 t exit_rcu
+ffffffff81166db0 t param_set_first_fqs_jiffies
+ffffffff81166e70 t param_set_next_fqs_jiffies
+ffffffff81166f40 t note_gp_changes
+ffffffff81167040 t rcu_accelerate_cbs_unlocked
+ffffffff81167110 t __note_gp_changes
+ffffffff81167350 t rcu_accelerate_cbs
+ffffffff81167540 t rcu_start_this_gp
+ffffffff811679f0 t schedule_page_work_fn
+ffffffff81167a20 t rcu_stall_kick_kthreads
+ffffffff81167b20 t print_other_cpu_stall
+ffffffff81168190 t print_cpu_stall_info
+ffffffff81168410 t rcu_check_gp_kthread_expired_fqs_timer
+ffffffff811684c0 t rcu_check_gp_kthread_starvation
+ffffffff811685e0 t rcu_dump_cpu_stacks
+ffffffff811686f0 t check_slow_task
+ffffffff81168750 t rcu_barrier_callback
+ffffffff81168840 t rcu_gp_kthread
+ffffffff81168a20 t rcu_gp_init
+ffffffff811691e0 t rcu_gp_fqs_loop
+ffffffff81169900 t rcu_gp_cleanup
+ffffffff81169fc0 t rcu_cleanup_dead_rnp
+ffffffff8116a050 t dump_blkd_tasks
+ffffffff8116a2c0 t dyntick_save_progress_counter
+ffffffff8116a3b0 t rcu_implicit_dynticks_qs
+ffffffff8116a690 t rcu_initiate_boost
+ffffffff8116a750 t rcu_cpu_kthread_should_run
+ffffffff8116a780 t rcu_cpu_kthread
+ffffffff8116a9e0 t rcu_cpu_kthread_setup
+ffffffff8116aa60 t rcu_cpu_kthread_park
+ffffffff8116aa90 t rcu_core
+ffffffff8116af20 t rcu_do_batch
+ffffffff8116b5e0 t kfree_rcu_work
+ffffffff8116b920 t kfree_rcu_monitor
+ffffffff8116bb60 t fill_page_cache_func
+ffffffff8116bc40 t kfree_rcu_shrink_count
+ffffffff8116bcc0 t kfree_rcu_shrink_scan
+ffffffff8116bdf0 t sync_rcu_do_polled_gp
+ffffffff8116bef0 t strict_work_handler
+ffffffff8116bf30 t do_nocb_deferred_wakeup_timer
+ffffffff8116bfd0 t trace_rcu_nocb_wake
+ffffffff8116c030 t do_nocb_deferred_wakeup_common
+ffffffff8116c0c0 t __wake_nocb_gp
+ffffffff8116c230 t rcu_panic
+ffffffff8116c250 t sysrq_show_rcu
+ffffffff8116c260 t rcu_report_exp_cpu_mult
+ffffffff8116c350 t __rcu_report_exp_rnp
+ffffffff8116c420 t sync_rcu_exp_select_node_cpus
+ffffffff8116c840 t rcu_exp_handler
+ffffffff8116c960 t wait_rcu_exp_gp
+ffffffff8116c980 t rcu_advance_cbs_nowake
+ffffffff8116ca10 t wake_nocb_gp_defer
+ffffffff8116cb20 t rdp_offload_toggle
+ffffffff8116cbd0 t rcu_nocb_gp_kthread
+ffffffff8116d6e0 t rcu_nocb_cb_kthread
+ffffffff8116daf0 t nocb_gp_sleep
+ffffffff8116dc80 t rcu_preempt_deferred_qs_handler
+ffffffff8116dc90 t rcu_boost_kthread
+ffffffff8116dfb0 t rcu_cblist_init
+ffffffff8116dfd0 t rcu_cblist_enqueue
+ffffffff8116dff0 t rcu_cblist_flush_enqueue
+ffffffff8116e050 t rcu_cblist_dequeue
+ffffffff8116e080 t rcu_segcblist_n_segment_cbs
+ffffffff8116e0a0 t rcu_segcblist_add_len
+ffffffff8116e0b0 t rcu_segcblist_inc_len
+ffffffff8116e0d0 t rcu_segcblist_init
+ffffffff8116e120 t rcu_segcblist_disable
+ffffffff8116e150 t rcu_segcblist_offload
+ffffffff8116e180 t rcu_segcblist_ready_cbs
+ffffffff8116e1b0 t rcu_segcblist_pend_cbs
+ffffffff8116e1e0 t rcu_segcblist_first_cb
+ffffffff8116e200 t rcu_segcblist_first_pend_cb
+ffffffff8116e230 t rcu_segcblist_nextgp
+ffffffff8116e260 t rcu_segcblist_enqueue
+ffffffff8116e290 t rcu_segcblist_entrain
+ffffffff8116e320 t rcu_segcblist_extract_done_cbs
+ffffffff8116e3b0 t rcu_segcblist_extract_pend_cbs
+ffffffff8116e440 t rcu_segcblist_insert_count
+ffffffff8116e460 t rcu_segcblist_insert_done_cbs
+ffffffff8116e4d0 t rcu_segcblist_insert_pend_cbs
+ffffffff8116e500 t rcu_segcblist_advance
+ffffffff8116e5c0 t rcu_segcblist_accelerate
+ffffffff8116e690 t rcu_segcblist_merge
+ffffffff8116e8b0 t dmam_free_coherent
+ffffffff8116e980 t dmam_release
+ffffffff8116ea20 t dmam_match
+ffffffff8116ea60 t dmam_alloc_attrs
+ffffffff8116eb60 t dma_alloc_attrs
+ffffffff8116ebc0 t dma_map_page_attrs
+ffffffff8116edb0 t dma_unmap_page_attrs
+ffffffff8116ef40 t dma_map_sg_attrs
+ffffffff8116ef60 t __dma_map_sg_attrs
+ffffffff8116efe0 t dma_map_sgtable
+ffffffff8116f010 t dma_unmap_sg_attrs
+ffffffff8116f060 t dma_map_resource
+ffffffff8116f0c0 t dma_unmap_resource
+ffffffff8116f100 t dma_sync_single_for_cpu
+ffffffff8116f1c0 t dma_sync_single_for_device
+ffffffff8116f280 t dma_sync_sg_for_cpu
+ffffffff8116f2d0 t dma_sync_sg_for_device
+ffffffff8116f320 t dma_get_sgtable_attrs
+ffffffff8116f370 t dma_pgprot
+ffffffff8116f380 t dma_can_mmap
+ffffffff8116f3c0 t dma_mmap_attrs
+ffffffff8116f410 t dma_get_required_mask
+ffffffff8116f460 t dma_free_attrs
+ffffffff8116f4f0 t dma_alloc_pages
+ffffffff8116f560 t dma_free_pages
+ffffffff8116f5b0 t dma_mmap_pages
+ffffffff8116f620 t dma_alloc_noncontiguous
+ffffffff8116f7f0 t dma_free_noncontiguous
+ffffffff8116f890 t dma_vmap_noncontiguous
+ffffffff8116f910 t dma_vunmap_noncontiguous
+ffffffff8116f950 t dma_mmap_noncontiguous
+ffffffff8116fa30 t dma_pci_p2pdma_supported
+ffffffff8116fa70 t dma_set_mask
+ffffffff8116fb00 t dma_set_coherent_mask
+ffffffff8116fb70 t dma_max_mapping_size
+ffffffff8116fbc0 t dma_opt_mapping_size
+ffffffff8116fc60 t dma_need_sync
+ffffffff8116fcb0 t dma_get_merge_boundary
+ffffffff8116fcf0 t dma_direct_get_required_mask
+ffffffff8116fd70 t dma_direct_alloc
+ffffffff8116fec0 t __dma_direct_alloc_pages
+ffffffff811700c0 t dma_direct_free
+ffffffff811701a0 t dma_direct_alloc_pages
+ffffffff81170250 t dma_direct_free_pages
+ffffffff81170280 t dma_direct_sync_sg_for_device
+ffffffff81170360 t dma_direct_sync_sg_for_cpu
+ffffffff81170440 t dma_direct_unmap_sg
+ffffffff81170600 t dma_direct_map_sg
+ffffffff81170830 t dma_direct_map_resource
+ffffffff811708f0 t dma_direct_get_sgtable
+ffffffff811709b0 t dma_direct_can_mmap
+ffffffff811709c0 t dma_direct_mmap
+ffffffff81170a70 t dma_direct_supported
+ffffffff81170b20 t dma_direct_max_mapping_size
+ffffffff81170bb0 t dma_direct_need_sync
+ffffffff81170c20 t dma_direct_set_offset
+ffffffff81170cb0 t dma_common_get_sgtable
+ffffffff81170d70 t dma_common_mmap
+ffffffff81170e50 t dma_common_alloc_pages
+ffffffff81170f40 t dma_common_free_pages
+ffffffff81170fb0 t dma_dummy_mmap.llvm.1655235228450864045
+ffffffff81170fc0 t dma_dummy_map_page.llvm.1655235228450864045
+ffffffff81170fe0 t dma_dummy_map_sg.llvm.1655235228450864045
+ffffffff81170ff0 t dma_dummy_supported.llvm.1655235228450864045
+ffffffff81171000 t __traceiter_swiotlb_bounced
+ffffffff81171060 t trace_event_raw_event_swiotlb_bounced
+ffffffff811711d0 t perf_trace_swiotlb_bounced
+ffffffff81171380 t swiotlb_max_segment
+ffffffff811713b0 t swiotlb_size_or_default
+ffffffff811713d0 t swiotlb_print_info
+ffffffff81171430 t swiotlb_adjust_nareas
+ffffffff81171510 t swiotlb_init_late
+ffffffff81171a40 t swiotlb_tbl_map_single
+ffffffff81172170 t swiotlb_bounce
+ffffffff81172320 t swiotlb_tbl_unmap_single
+ffffffff811724e0 t swiotlb_sync_single_for_device
+ffffffff81172510 t swiotlb_sync_single_for_cpu
+ffffffff81172540 t swiotlb_map
+ffffffff81172760 t swiotlb_max_mapping_size
+ffffffff811727b0 t is_swiotlb_active
+ffffffff811727e0 t trace_raw_output_swiotlb_bounced
+ffffffff81172860 t fops_io_tlb_used_open
+ffffffff81172880 t io_tlb_used_get
+ffffffff81172930 t dma_common_find_pages
+ffffffff81172960 t dma_common_pages_remap
+ffffffff811729b0 t dma_common_contiguous_remap
+ffffffff81172ab0 t dma_common_free_remap
+ffffffff81172af0 t __traceiter_sys_enter
+ffffffff81172b40 t __traceiter_sys_exit
+ffffffff81172b90 t trace_event_raw_event_sys_enter
+ffffffff81172c60 t perf_trace_sys_enter
+ffffffff81172d70 t trace_event_raw_event_sys_exit
+ffffffff81172e20 t perf_trace_sys_exit
+ffffffff81172ef0 t syscall_enter_from_user_mode_work
+ffffffff81173060 t syscall_exit_to_user_mode_work
+ffffffff81173190 t exit_to_user_mode_prepare
+ffffffff81173210 t raw_irqentry_exit_cond_resched
+ffffffff81173250 t trace_raw_output_sys_enter
+ffffffff811732c0 t trace_raw_output_sys_exit
+ffffffff81173320 t exit_to_user_mode_loop
+ffffffff811733f0 t syscall_user_dispatch
+ffffffff81173470 t trigger_sigsys
+ffffffff81173510 t set_syscall_user_dispatch
+ffffffff811735b0 t __traceiter_module_load
+ffffffff81173600 t __traceiter_module_free
+ffffffff81173650 t __traceiter_module_request
+ffffffff811736c0 t trace_event_raw_event_module_load
+ffffffff811737d0 t perf_trace_module_load
+ffffffff81173930 t trace_event_raw_event_module_free
+ffffffff81173a30 t perf_trace_module_free
+ffffffff81173b70 t trace_event_raw_event_module_request
+ffffffff81173c80 t perf_trace_module_request
+ffffffff81173de0 t register_module_notifier
+ffffffff81173e00 t unregister_module_notifier
+ffffffff81173e20 t __module_put_and_kthread_exit
+ffffffff81173e30 t cmp_name
+ffffffff81173e50 t find_symbol
+ffffffff81174060 t find_module_all
+ffffffff811740f0 t find_module
+ffffffff81174170 t __is_module_percpu_address
+ffffffff811742b0 t is_module_percpu_address
+ffffffff811742d0 t module_flags_taint
+ffffffff81174350 t store_uevent
+ffffffff81174380 t try_to_force_load
+ffffffff81174390 t module_memfree
+ffffffff811743c0 t module_arch_freeing_init
+ffffffff811743d0 t __symbol_get
+ffffffff811744b0 t arch_mod_section_prepend
+ffffffff811744c0 t module_get_offset
+ffffffff81174510 t module_init_section
+ffffffff81174540 t module_exit_section
+ffffffff81174570 t module_frob_arch_sections
+ffffffff81174580 t __x64_sys_init_module
+ffffffff81174720 t __x64_sys_finit_module
+ffffffff81174830 t module_flags
+ffffffff81174930 t search_module_extables
+ffffffff81174a40 t __module_address
+ffffffff81174ac0 t is_module_address
+ffffffff81174b70 t is_module_text_address
+ffffffff81174c50 t __module_text_address
+ffffffff81174d00 t print_modules
+ffffffff81174ef0 t trace_raw_output_module_load
+ffffffff81174f70 t trace_raw_output_module_free
+ffffffff81174fd0 t trace_raw_output_module_request
+ffffffff81175030 t show_modinfo_version
+ffffffff81175060 t setup_modinfo_version
+ffffffff81175090 t modinfo_version_exists
+ffffffff811750b0 t free_modinfo_version
+ffffffff811750e0 t show_modinfo_srcversion
+ffffffff81175110 t setup_modinfo_srcversion
+ffffffff81175140 t modinfo_srcversion_exists
+ffffffff81175160 t free_modinfo_srcversion
+ffffffff81175190 t show_modinfo_scmversion
+ffffffff811751c0 t setup_modinfo_scmversion
+ffffffff811751f0 t modinfo_scmversion_exists
+ffffffff81175210 t free_modinfo_scmversion
+ffffffff81175240 t show_initstate
+ffffffff81175280 t show_coresize
+ffffffff811752b0 t show_initsize
+ffffffff811752e0 t show_taint
+ffffffff81175370 t load_module
+ffffffff81176e30 t find_module_sections
+ffffffff81177710 t check_module_license_and_versions
+ffffffff811777d0 t setup_modinfo
+ffffffff81177910 t simplify_symbols
+ffffffff81177da0 t apply_relocations
+ffffffff81177e90 t post_relocation
+ffffffff81177f60 t complete_formation
+ffffffff81178170 t unknown_module_param_cb
+ffffffff811781f0 t trace_module_load
+ffffffff81178250 t do_init_module
+ffffffff81178540 t free_modinfo
+ffffffff81178680 t finished_loading
+ffffffff81178730 t resolve_symbol
+ffffffff81178ac0 t do_free_init
+ffffffff81178b10 t module_check_misalignment
+ffffffff81178be0 t module_enable_x
+ffffffff81178c50 t module_enable_ro
+ffffffff81178df0 t module_enable_nx
+ffffffff81178ea0 t module_enforce_rwx_sections
+ffffffff81178f10 t mod_tree_insert
+ffffffff81178f60 t __mod_tree_insert
+ffffffff81179060 t mod_tree_remove_init
+ffffffff811790b0 t mod_tree_remove
+ffffffff81179130 t mod_find
+ffffffff811791c0 t layout_symtab
+ffffffff81179430 t add_kallsyms
+ffffffff81179790 t init_build_id
+ffffffff811797a0 t dereference_module_function_descriptor
+ffffffff811797b0 t module_address_lookup
+ffffffff81179860 t find_kallsyms_symbol
+ffffffff81179a10 t lookup_module_symbol_name
+ffffffff81179b10 t lookup_module_symbol_attrs
+ffffffff81179c40 t module_get_kallsym
+ffffffff81179de0 t find_kallsyms_symbol_value
+ffffffff81179e60 t module_kallsyms_lookup_name
+ffffffff81179fe0 t modules_open
+ffffffff8117a030 t m_start
+ffffffff8117a060 t m_start
+ffffffff8117a210 t m_stop
+ffffffff8117a230 t m_stop
+ffffffff8117a2b0 t m_next
+ffffffff8117a2d0 t m_next
+ffffffff8117a330 t m_show
+ffffffff8117a460 t mod_sysfs_setup
+ffffffff8117ace0 t mod_sysfs_teardown
+ffffffff8117aea0 t init_param_lock
+ffffffff8117aed0 t module_sect_read
+ffffffff8117af90 t module_notes_read
+ffffffff8117afc0 t freezing_slow_path
+ffffffff8117b020 t frozen
+ffffffff8117b040 t __refrigerator
+ffffffff8117b1a0 t freeze_task
+ffffffff8117b2c0 t __thaw_task
+ffffffff8117b3c0 t __set_task_special
+ffffffff8117b400 t set_freezable
+ffffffff8117b480 t __set_task_frozen
+ffffffff8117b500 t profile_setup
+ffffffff8117b6a0 t profile_task_exit
+ffffffff8117b6c0 t profile_munmap
+ffffffff8117b6e0 t profile_event_register
+ffffffff8117b710 t profile_event_unregister
+ffffffff8117b740 t profile_hits
+ffffffff8117b9e0 t profile_tick
+ffffffff8117ba50 t create_prof_cpu_mask
+ffffffff8117ba80 t setup_profiling_timer
+ffffffff8117ba90 t profile_prepare_cpu
+ffffffff8117bb80 t profile_dead_cpu
+ffffffff8117bc80 t profile_online_cpu
+ffffffff8117bca0 t prof_cpu_mask_proc_open
+ffffffff8117bcc0 t prof_cpu_mask_proc_write
+ffffffff8117bd70 t prof_cpu_mask_proc_show
+ffffffff8117bda0 t read_profile
+ffffffff8117c030 t write_profile
+ffffffff8117c1e0 t __profile_flip_buffers
+ffffffff8117c220 t stack_trace_print
+ffffffff8117c280 t stack_trace_snprint
+ffffffff8117c340 t stack_trace_save
+ffffffff8117c3b0 t stack_trace_consume_entry
+ffffffff8117c400 t stack_trace_save_tsk
+ffffffff8117c4d0 t stack_trace_consume_entry_nosched
+ffffffff8117c530 t stack_trace_save_regs
+ffffffff8117c5a0 t stack_trace_save_user
+ffffffff8117c620 t filter_irq_stacks
+ffffffff8117c690 t __x64_sys_time
+ffffffff8117c6d0 t __x64_sys_stime
+ffffffff8117c750 t __x64_sys_gettimeofday
+ffffffff8117c830 t do_sys_settimeofday64
+ffffffff8117c8f0 t __x64_sys_settimeofday
+ffffffff8117caa0 t __x64_sys_adjtimex
+ffffffff8117cb50 t jiffies_to_msecs
+ffffffff8117cb70 t jiffies_to_usecs
+ffffffff8117cb90 t mktime64
+ffffffff8117cc20 t ns_to_kernel_old_timeval
+ffffffff8117ccb0 t ns_to_timespec64
+ffffffff8117cd30 t set_normalized_timespec64
+ffffffff8117cdc0 t __msecs_to_jiffies
+ffffffff8117cdf0 t __usecs_to_jiffies
+ffffffff8117ce30 t timespec64_to_jiffies
+ffffffff8117ce90 t jiffies_to_timespec64
+ffffffff8117ced0 t jiffies_to_clock_t
+ffffffff8117cf00 t clock_t_to_jiffies
+ffffffff8117cf40 t jiffies_64_to_clock_t
+ffffffff8117cf70 t nsec_to_clock_t
+ffffffff8117cfa0 t jiffies64_to_nsecs
+ffffffff8117cfc0 t jiffies64_to_msecs
+ffffffff8117cfe0 t nsecs_to_jiffies64
+ffffffff8117d010 t nsecs_to_jiffies
+ffffffff8117d040 t timespec64_add_safe
+ffffffff8117d0f0 t get_timespec64
+ffffffff8117d170 t put_timespec64
+ffffffff8117d1e0 t get_old_timespec32
+ffffffff8117d250 t put_old_timespec32
+ffffffff8117d2b0 t get_itimerspec64
+ffffffff8117d370 t put_itimerspec64
+ffffffff8117d410 t get_old_itimerspec32
+ffffffff8117d4c0 t put_old_itimerspec32
+ffffffff8117d560 t __traceiter_timer_init
+ffffffff8117d5b0 t __traceiter_timer_start
+ffffffff8117d610 t __traceiter_timer_expire_entry
+ffffffff8117d660 t __traceiter_timer_expire_exit
+ffffffff8117d6b0 t __traceiter_timer_cancel
+ffffffff8117d700 t __traceiter_hrtimer_init
+ffffffff8117d760 t __traceiter_hrtimer_start
+ffffffff8117d7b0 t __traceiter_hrtimer_expire_entry
+ffffffff8117d800 t __traceiter_hrtimer_expire_exit
+ffffffff8117d850 t __traceiter_hrtimer_cancel
+ffffffff8117d8a0 t __traceiter_itimer_state
+ffffffff8117d900 t __traceiter_itimer_expire
+ffffffff8117d960 t __traceiter_tick_stop
+ffffffff8117d9b0 t trace_event_raw_event_timer_class
+ffffffff8117da70 t perf_trace_timer_class
+ffffffff8117db60 t trace_event_raw_event_timer_start
+ffffffff8117dc40 t perf_trace_timer_start
+ffffffff8117dd60 t trace_event_raw_event_timer_expire_entry
+ffffffff8117de40 t perf_trace_timer_expire_entry
+ffffffff8117df50 t trace_event_raw_event_hrtimer_init
+ffffffff8117e020 t perf_trace_hrtimer_init
+ffffffff8117e130 t trace_event_raw_event_hrtimer_start
+ffffffff8117e210 t perf_trace_hrtimer_start
+ffffffff8117e330 t trace_event_raw_event_hrtimer_expire_entry
+ffffffff8117e400 t perf_trace_hrtimer_expire_entry
+ffffffff8117e510 t trace_event_raw_event_hrtimer_class
+ffffffff8117e5d0 t perf_trace_hrtimer_class
+ffffffff8117e6c0 t trace_event_raw_event_itimer_state
+ffffffff8117e7b0 t perf_trace_itimer_state
+ffffffff8117e8e0 t trace_event_raw_event_itimer_expire
+ffffffff8117e9c0 t perf_trace_itimer_expire
+ffffffff8117ead0 t trace_event_raw_event_tick_stop
+ffffffff8117eb90 t perf_trace_tick_stop
+ffffffff8117ec90 t timers_update_nohz
+ffffffff8117ecc0 t __round_jiffies
+ffffffff8117ed20 t __round_jiffies_relative
+ffffffff8117ed90 t round_jiffies
+ffffffff8117edf0 t round_jiffies_relative
+ffffffff8117ee60 t __round_jiffies_up
+ffffffff8117eeb0 t __round_jiffies_up_relative
+ffffffff8117ef10 t round_jiffies_up
+ffffffff8117ef60 t round_jiffies_up_relative
+ffffffff8117efc0 t init_timer_key
+ffffffff8117f050 t mod_timer_pending
+ffffffff8117f070 t __mod_timer.llvm.3723309689587386746
+ffffffff8117f450 t mod_timer
+ffffffff8117f470 t timer_reduce
+ffffffff8117f490 t add_timer
+ffffffff8117f4c0 t add_timer_on
+ffffffff8117f650 t del_timer
+ffffffff8117f700 t detach_if_pending
+ffffffff8117f7c0 t try_to_del_timer_sync
+ffffffff8117f880 t del_timer_sync
+ffffffff8117f8d0 t get_next_timer_interrupt
+ffffffff8117f9f0 t __next_timer_interrupt
+ffffffff8117fb50 t timer_clear_idle
+ffffffff8117fb80 t update_process_times
+ffffffff8117fc10 t process_timeout
+ffffffff8117fc30 t timers_prepare_cpu
+ffffffff8117fcc0 t timers_dead_cpu
+ffffffff8117ff10 t run_timer_softirq
+ffffffff8117ff60 t msleep
+ffffffff8117ffa0 t msleep_interruptible
+ffffffff81180000 t trace_raw_output_timer_class
+ffffffff81180050 t trace_raw_output_timer_start
+ffffffff81180120 t trace_raw_output_timer_expire_entry
+ffffffff81180180 t trace_raw_output_hrtimer_init
+ffffffff81180220 t trace_raw_output_hrtimer_start
+ffffffff811802c0 t trace_raw_output_hrtimer_expire_entry
+ffffffff81180320 t trace_raw_output_hrtimer_class
+ffffffff81180370 t trace_raw_output_itimer_state
+ffffffff81180410 t trace_raw_output_itimer_expire
+ffffffff81180470 t trace_raw_output_tick_stop
+ffffffff811804f0 t timer_migration_handler
+ffffffff811805a0 t timer_update_keys
+ffffffff81180620 t calc_wheel_index
+ffffffff811807b0 t enqueue_timer
+ffffffff81180880 t __run_timers
+ffffffff81180b30 t call_timer_fn
+ffffffff81180c70 t ktime_get_real
+ffffffff81180c90 t ktime_get_real
+ffffffff81180cb0 t ktime_get_boottime
+ffffffff81180cd0 t ktime_get_boottime
+ffffffff81180cf0 t ktime_get_clocktai
+ffffffff81180d10 t ktime_add_safe
+ffffffff81180d50 t clock_was_set
+ffffffff81180f90 t retrigger_next_event.llvm.5156696644657162503
+ffffffff81181070 t clock_was_set_delayed
+ffffffff811810a0 t hrtimers_resume_local
+ffffffff811810b0 t hrtimer_forward
+ffffffff81181180 t hrtimer_start_range_ns
+ffffffff811814c0 t hrtimer_reprogram
+ffffffff81181580 t hrtimer_try_to_cancel
+ffffffff81181650 t hrtimer_active
+ffffffff811816b0 t remove_hrtimer
+ffffffff81181800 t hrtimer_cancel
+ffffffff81181830 t __hrtimer_get_remaining
+ffffffff811818b0 t hrtimer_get_next_event
+ffffffff81181a80 t hrtimer_next_event_without
+ffffffff81181c50 t hrtimer_init
+ffffffff81181d90 t hrtimer_interrupt
+ffffffff81182130 t __hrtimer_run_queues
+ffffffff81182400 t hrtimer_update_next_event
+ffffffff811825a0 t hrtimer_run_queues
+ffffffff81182700 t hrtimer_sleeper_start_expires
+ffffffff81182720 t hrtimer_init_sleeper
+ffffffff81182880 t nanosleep_copyout
+ffffffff811828c0 t hrtimer_nanosleep
+ffffffff81182a10 t __x64_sys_nanosleep
+ffffffff81182bf0 t hrtimers_prepare_cpu
+ffffffff81182da0 t hrtimers_dead_cpu
+ffffffff81183030 t hrtimer_update_softirq_timer
+ffffffff81183130 t hrtimer_run_softirq.llvm.5156696644657162503
+ffffffff81183200 t clock_was_set_work
+ffffffff81183220 t hrtimer_wakeup
+ffffffff81183250 t ktime_get_mono_fast_ns
+ffffffff811832f0 t ktime_get_raw_fast_ns
+ffffffff81183390 t ktime_get_boot_fast_ns
+ffffffff81183430 t ktime_get_tai_fast_ns
+ffffffff811834d0 t ktime_get_real_fast_ns
+ffffffff81183570 t ktime_get_fast_timestamps
+ffffffff81183630 t pvclock_gtod_register_notifier
+ffffffff81183690 t pvclock_gtod_unregister_notifier
+ffffffff811836e0 t ktime_get_real_ts64
+ffffffff811837e0 t ktime_get
+ffffffff81183890 t ktime_get_resolution_ns
+ffffffff811838e0 t ktime_get_with_offset
+ffffffff811839b0 t ktime_get_coarse_with_offset
+ffffffff81183a20 t ktime_mono_to_any
+ffffffff81183a70 t ktime_get_raw
+ffffffff81183b10 t ktime_get_ts64
+ffffffff81183c40 t ktime_get_seconds
+ffffffff81183c60 t ktime_get_real_seconds
+ffffffff81183c80 t ktime_get_snapshot
+ffffffff81183e00 t get_device_system_crosststamp
+ffffffff81184230 t do_settimeofday64
+ffffffff811845c0 t tk_set_wall_to_mono
+ffffffff811846d0 t timekeeping_update
+ffffffff81184950 t timekeeping_warp_clock
+ffffffff811849c0 t timekeeping_inject_offset
+ffffffff81184d70 t timekeeping_notify
+ffffffff81184dc0 t change_clocksource
+ffffffff81184f60 t ktime_get_raw_ts64
+ffffffff81185050 t timekeeping_valid_for_hres
+ffffffff81185090 t timekeeping_max_deferment
+ffffffff811850d0 t tk_setup_internals
+ffffffff81185240 t timekeeping_rtc_skipresume
+ffffffff81185260 t timekeeping_rtc_skipsuspend
+ffffffff81185280 t timekeeping_inject_sleeptime64
+ffffffff811853d0 t __timekeeping_inject_sleeptime
+ffffffff81185620 t timekeeping_resume
+ffffffff811857c0 t timekeeping_suspend
+ffffffff81185d00 t update_wall_time
+ffffffff81185d30 t timekeeping_advance.llvm.2975473794329840738
+ffffffff81186380 t getboottime64
+ffffffff811863b0 t ktime_get_coarse_real_ts64
+ffffffff81186400 t ktime_get_coarse_ts64
+ffffffff81186460 t do_timer
+ffffffff81186480 t ktime_get_update_offsets_now
+ffffffff81186580 t random_get_entropy_fallback
+ffffffff811865c0 t do_adjtimex
+ffffffff81186980 t dummy_clock_read
+ffffffff811869b0 t ntp_clear
+ffffffff81186a50 t ntp_tick_length
+ffffffff81186a70 t ntp_get_next_leap
+ffffffff81186ac0 t second_overflow
+ffffffff81186d50 t ntp_notify_cmos_timer
+ffffffff81186d90 t __do_adjtimex
+ffffffff811873f0 t sync_hw_clock
+ffffffff811875f0 t sync_timer_callback
+ffffffff81187620 t clocks_calc_mult_shift
+ffffffff811876f0 t clocksource_mark_unstable
+ffffffff811877f0 t __clocksource_unstable
+ffffffff81187860 t clocksource_verify_percpu
+ffffffff81187c90 t clocksource_verify_one_cpu
+ffffffff81187cb0 t clocksource_start_suspend_timing
+ffffffff81187d40 t clocksource_stop_suspend_timing
+ffffffff81187de0 t clocksource_suspend
+ffffffff81187e30 t clocksource_resume
+ffffffff81187e80 t clocksource_touch_watchdog
+ffffffff81187ea0 t clocks_calc_max_nsecs
+ffffffff81187ef0 t __clocksource_update_freq_scale
+ffffffff81188170 t __clocksource_register_scale
+ffffffff81188330 t clocksource_select_watchdog
+ffffffff81188490 t clocksource_change_rating
+ffffffff81188600 t clocksource_unregister
+ffffffff81188650 t clocksource_unbind
+ffffffff81188820 t sysfs_get_uname
+ffffffff81188880 t clocksource_watchdog_work
+ffffffff811888c0 t clocksource_watchdog_kthread
+ffffffff81188900 t __clocksource_watchdog_kthread
+ffffffff81188ac0 t __clocksource_select
+ffffffff81188c30 t clocksource_watchdog
+ffffffff811891c0 t current_clocksource_show
+ffffffff81189210 t current_clocksource_store
+ffffffff81189290 t unbind_clocksource_store
+ffffffff811893b0 t available_clocksource_show
+ffffffff81189480 t register_refined_jiffies
+ffffffff81189540 t jiffies_read
+ffffffff81189560 t sysrq_timer_list_show
+ffffffff81189b00 t print_tickdevice
+ffffffff81189d20 t SEQ_printf
+ffffffff81189db0 t timer_list_start
+ffffffff81189e60 t timer_list_stop
+ffffffff81189e70 t timer_list_next
+ffffffff81189ed0 t timer_list_show
+ffffffff8118a470 t time64_to_tm
+ffffffff8118a6b0 t timecounter_init
+ffffffff8118a710 t timecounter_read
+ffffffff8118a770 t timecounter_cyc2time
+ffffffff8118a7e0 t __traceiter_alarmtimer_suspend
+ffffffff8118a830 t __traceiter_alarmtimer_fired
+ffffffff8118a880 t __traceiter_alarmtimer_start
+ffffffff8118a8d0 t __traceiter_alarmtimer_cancel
+ffffffff8118a920 t trace_event_raw_event_alarmtimer_suspend
+ffffffff8118a9e0 t perf_trace_alarmtimer_suspend
+ffffffff8118aae0 t trace_event_raw_event_alarm_class
+ffffffff8118abb0 t perf_trace_alarm_class
+ffffffff8118acc0 t alarmtimer_get_rtcdev
+ffffffff8118ad00 t alarm_expires_remaining
+ffffffff8118ad50 t alarm_init
+ffffffff8118adb0 t alarm_start
+ffffffff8118aec0 t alarm_start_relative
+ffffffff8118af30 t alarm_restart
+ffffffff8118afd0 t alarm_try_to_cancel
+ffffffff8118b0c0 t alarm_cancel
+ffffffff8118b0f0 t alarm_forward
+ffffffff8118b180 t alarm_forward_now
+ffffffff8118b250 t alarm_clock_getres
+ffffffff8118b2b0 t alarm_clock_get_timespec
+ffffffff8118b350 t alarm_clock_get_ktime
+ffffffff8118b3e0 t alarm_timer_create
+ffffffff8118b4e0 t alarm_timer_nsleep
+ffffffff8118b770 t alarm_timer_rearm
+ffffffff8118b860 t alarm_timer_forward
+ffffffff8118b900 t alarm_timer_remaining
+ffffffff8118b920 t alarm_timer_try_to_cancel
+ffffffff8118b940 t alarm_timer_arm
+ffffffff8118b9d0 t alarm_timer_wait_running
+ffffffff8118b9e0 t trace_raw_output_alarmtimer_suspend
+ffffffff8118ba60 t trace_raw_output_alarm_class
+ffffffff8118baf0 t alarmtimer_fired
+ffffffff8118bcb0 t alarm_handle_timer
+ffffffff8118be10 t alarmtimer_nsleep_wakeup
+ffffffff8118be40 t alarmtimer_do_nsleep
+ffffffff8118c030 t get_boottime_timespec
+ffffffff8118c060 t alarmtimer_rtc_add_device
+ffffffff8118c1f0 t alarmtimer_suspend
+ffffffff8118c480 t alarmtimer_resume
+ffffffff8118c4d0 t posixtimer_rearm
+ffffffff8118c590 t __lock_timer
+ffffffff8118c660 t posix_timer_event
+ffffffff8118c6a0 t __x64_sys_timer_create
+ffffffff8118c760 t common_timer_get
+ffffffff8118c830 t __x64_sys_timer_gettime
+ffffffff8118c920 t __x64_sys_timer_getoverrun
+ffffffff8118c9a0 t common_timer_set
+ffffffff8118caa0 t __x64_sys_timer_settime
+ffffffff8118cd40 t common_timer_del
+ffffffff8118cd80 t __x64_sys_timer_delete
+ffffffff8118cf30 t exit_itimers
+ffffffff8118d100 t __x64_sys_clock_settime
+ffffffff8118d200 t __x64_sys_clock_gettime
+ffffffff8118d2f0 t do_clock_adjtime
+ffffffff8118d360 t __x64_sys_clock_adjtime
+ffffffff8118d490 t __x64_sys_clock_getres
+ffffffff8118d580 t __x64_sys_clock_nanosleep
+ffffffff8118d6e0 t do_timer_create
+ffffffff8118dc20 t k_itimer_rcu_free
+ffffffff8118dc40 t posix_get_hrtimer_res
+ffffffff8118dc60 t posix_clock_realtime_set
+ffffffff8118dc80 t posix_get_realtime_timespec
+ffffffff8118dca0 t posix_get_realtime_ktime
+ffffffff8118dcc0 t posix_clock_realtime_adj
+ffffffff8118dce0 t common_timer_create
+ffffffff8118dd00 t common_nsleep
+ffffffff8118dd50 t common_hrtimer_rearm
+ffffffff8118ddb0 t common_hrtimer_forward
+ffffffff8118ddd0 t common_hrtimer_remaining
+ffffffff8118ddf0 t common_hrtimer_try_to_cancel
+ffffffff8118de10 t common_hrtimer_arm
+ffffffff8118ded0 t common_timer_wait_running
+ffffffff8118dee0 t posix_timer_fn
+ffffffff8118dfb0 t posix_get_monotonic_timespec
+ffffffff8118dfd0 t posix_get_monotonic_ktime
+ffffffff8118dfe0 t common_nsleep_timens
+ffffffff8118e030 t posix_get_monotonic_raw
+ffffffff8118e050 t posix_get_coarse_res
+ffffffff8118e080 t posix_get_realtime_coarse
+ffffffff8118e0a0 t posix_get_monotonic_coarse
+ffffffff8118e0c0 t posix_get_boottime_timespec
+ffffffff8118e0f0 t posix_get_boottime_ktime
+ffffffff8118e110 t posix_get_tai_timespec
+ffffffff8118e140 t posix_get_tai_ktime
+ffffffff8118e160 t posix_cputimers_group_init
+ffffffff8118e1e0 t update_rlimit_cpu
+ffffffff8118e290 t set_process_cpu_timer
+ffffffff8118e320 t thread_group_sample_cputime
+ffffffff8118e370 t posix_cpu_timers_exit
+ffffffff8118e440 t posix_cpu_timers_exit_group
+ffffffff8118e520 t clear_posix_cputimers_work
+ffffffff8118e550 t posix_cpu_timers_work
+ffffffff8118e9f0 t run_posix_cpu_timers
+ffffffff8118eae0 t cpu_clock_sample_group
+ffffffff8118ec60 t posix_cpu_clock_getres.llvm.1958600409769587800
+ffffffff8118ed50 t posix_cpu_clock_set.llvm.1958600409769587800
+ffffffff8118ee20 t posix_cpu_clock_get.llvm.1958600409769587800
+ffffffff8118f050 t posix_cpu_timer_create.llvm.1958600409769587800
+ffffffff8118f160 t posix_cpu_nsleep.llvm.1958600409769587800
+ffffffff8118f200 t posix_cpu_timer_set.llvm.1958600409769587800
+ffffffff8118f660 t posix_cpu_timer_del.llvm.1958600409769587800
+ffffffff8118f7d0 t posix_cpu_timer_get.llvm.1958600409769587800
+ffffffff8118f970 t posix_cpu_timer_rearm.llvm.1958600409769587800
+ffffffff8118fbb0 t process_cpu_clock_getres
+ffffffff8118fc10 t process_cpu_clock_get
+ffffffff8118fc30 t process_cpu_timer_create
+ffffffff8118fc50 t process_cpu_nsleep
+ffffffff8118fcb0 t thread_cpu_clock_getres
+ffffffff8118fd00 t thread_cpu_clock_get
+ffffffff8118fd70 t thread_cpu_timer_create
+ffffffff8118fd90 t cpu_timer_fire
+ffffffff8118fe10 t collect_posix_cputimers
+ffffffff81190040 t check_cpu_itimer
+ffffffff81190110 t do_cpu_nanosleep
+ffffffff81190320 t posix_cpu_nsleep_restart
+ffffffff81190380 t posix_clock_register
+ffffffff81190420 t posix_clock_unregister
+ffffffff81190480 t pc_clock_getres.llvm.11100510664373091266
+ffffffff81190530 t pc_clock_settime.llvm.11100510664373091266
+ffffffff811905f0 t pc_clock_gettime.llvm.11100510664373091266
+ffffffff811906a0 t pc_clock_adjtime.llvm.11100510664373091266
+ffffffff81190760 t posix_clock_read
+ffffffff811907f0 t posix_clock_poll
+ffffffff81190870 t posix_clock_ioctl
+ffffffff811908f0 t posix_clock_open
+ffffffff81190980 t posix_clock_release
+ffffffff811909e0 t __x64_sys_getitimer
+ffffffff81190c30 t it_real_fn
+ffffffff81190ca0 t clear_itimer
+ffffffff81190d40 t do_setitimer
+ffffffff81190f40 t __x64_sys_alarm
+ffffffff81190ff0 t __x64_sys_setitimer
+ffffffff811911f0 t set_cpu_itimer
+ffffffff811913d0 t clockevent_delta2ns
+ffffffff81191460 t clockevents_switch_state
+ffffffff81191540 t clockevents_shutdown
+ffffffff81191590 t clockevents_tick_resume
+ffffffff811915c0 t clockevents_program_event
+ffffffff811916b0 t clockevents_program_min_delta
+ffffffff811917c0 t clockevents_unbind_device
+ffffffff81191840 t clockevents_register_device
+ffffffff811919e0 t clockevents_config_and_register
+ffffffff81191a10 t clockevents_config
+ffffffff81191b90 t __clockevents_update_freq
+ffffffff81191c00 t clockevents_update_freq
+ffffffff81191cd0 t clockevents_handle_noop
+ffffffff81191ce0 t clockevents_exchange_device
+ffffffff81191de0 t clockevents_suspend
+ffffffff81191e40 t clockevents_resume
+ffffffff81191e90 t tick_offline_cpu
+ffffffff81191ec0 t tick_cleanup_dead_cpu
+ffffffff81192010 t __clockevents_unbind
+ffffffff81192140 t current_device_show
+ffffffff811921e0 t unbind_device_store
+ffffffff811923c0 t tick_get_device
+ffffffff811923f0 t tick_is_oneshot_available
+ffffffff81192430 t tick_handle_periodic
+ffffffff811924c0 t tick_periodic
+ffffffff81192570 t tick_setup_periodic
+ffffffff81192620 t tick_install_replacement
+ffffffff811926b0 t tick_setup_device
+ffffffff811927a0 t tick_check_replacement
+ffffffff811928a0 t tick_check_new_device
+ffffffff81192970 t tick_broadcast_oneshot_control
+ffffffff811929b0 t tick_handover_do_timer
+ffffffff811929f0 t tick_shutdown
+ffffffff81192a50 t tick_suspend_local
+ffffffff81192a80 t tick_resume_local
+ffffffff81192af0 t tick_suspend
+ffffffff81192b30 t tick_resume
+ffffffff81192b50 t tick_freeze
+ffffffff81192c20 t tick_unfreeze
+ffffffff81192cd0 t tick_get_broadcast_device
+ffffffff81192cf0 t tick_get_broadcast_mask
+ffffffff81192d10 t tick_get_wakeup_device
+ffffffff81192d40 t tick_install_broadcast_device
+ffffffff81192ef0 t tick_broadcast_oneshot_active
+ffffffff81192f10 t tick_broadcast_switch_to_oneshot
+ffffffff81192f60 t tick_is_broadcast_device
+ffffffff81192f80 t tick_broadcast_update_freq
+ffffffff81192fe0 t tick_device_uses_broadcast
+ffffffff811931a0 t tick_broadcast_setup_oneshot
+ffffffff81193310 t tick_receive_broadcast
+ffffffff81193370 t tick_broadcast_control
+ffffffff81193510 t tick_set_periodic_handler
+ffffffff81193540 t tick_handle_periodic_broadcast.llvm.16095221743203599939
+ffffffff81193610 t tick_broadcast_offline
+ffffffff811936e0 t tick_suspend_broadcast
+ffffffff81193720 t tick_resume_check_broadcast
+ffffffff81193750 t tick_resume_broadcast
+ffffffff81193800 t tick_get_broadcast_oneshot_mask
+ffffffff81193820 t tick_check_broadcast_expired
+ffffffff81193840 t tick_check_oneshot_broadcast_this_cpu
+ffffffff81193890 t __tick_broadcast_oneshot_control
+ffffffff81193b30 t hotplug_cpu__broadcast_tick_pull
+ffffffff81193ba0 t tick_broadcast_oneshot_available
+ffffffff81193bd0 t tick_oneshot_wakeup_handler
+ffffffff81193c10 t err_broadcast
+ffffffff81193c40 t tick_do_broadcast
+ffffffff81193ce0 t tick_broadcast_set_event
+ffffffff81193d80 t tick_handle_oneshot_broadcast
+ffffffff81193f40 t tick_setup_hrtimer_broadcast
+ffffffff81193f80 t bc_handler
+ffffffff81193fb0 t bc_set_next
+ffffffff81194000 t bc_shutdown
+ffffffff81194020 t tick_program_event
+ffffffff811940a0 t tick_resume_oneshot
+ffffffff811940f0 t tick_setup_oneshot
+ffffffff81194130 t tick_switch_to_oneshot
+ffffffff811941f0 t tick_oneshot_mode_active
+ffffffff81194260 t tick_init_highres
+ffffffff81194280 t tick_get_tick_sched
+ffffffff811942b0 t tick_nohz_tick_stopped
+ffffffff811942e0 t tick_nohz_tick_stopped_cpu
+ffffffff81194310 t get_cpu_idle_time_us
+ffffffff81194410 t get_cpu_iowait_time_us
+ffffffff81194510 t tick_nohz_idle_stop_tick
+ffffffff811947f0 t tick_nohz_idle_retain_tick
+ffffffff81194830 t tick_nohz_idle_enter
+ffffffff81194890 t tick_nohz_irq_exit
+ffffffff811948f0 t tick_nohz_idle_got_tick
+ffffffff81194930 t tick_nohz_get_next_hrtimer
+ffffffff81194960 t tick_nohz_get_sleep_length
+ffffffff81194a80 t tick_nohz_next_event
+ffffffff81194ba0 t tick_nohz_get_idle_calls_cpu
+ffffffff81194bd0 t tick_nohz_get_idle_calls
+ffffffff81194c00 t tick_nohz_idle_restart_tick
+ffffffff81194c80 t tick_nohz_restart_sched_tick
+ffffffff81194d10 t tick_nohz_idle_exit
+ffffffff81194e30 t tick_irq_enter
+ffffffff81194f50 t tick_setup_sched_timer
+ffffffff81195090 t tick_sched_timer
+ffffffff811951c0 t tick_cancel_sched_timer
+ffffffff81195210 t tick_clock_notify
+ffffffff81195270 t tick_oneshot_notify
+ffffffff811952a0 t tick_check_oneshot_change
+ffffffff81195420 t tick_do_update_jiffies64
+ffffffff81195510 t tick_nohz_handler
+ffffffff81195670 t update_vsyscall
+ffffffff811958c0 t update_vsyscall_tz
+ffffffff811958e0 t vdso_update_begin
+ffffffff81195910 t vdso_update_end
+ffffffff81195940 t tk_debug_account_sleep_time
+ffffffff81195990 t tk_debug_sleep_time_open
+ffffffff811959c0 t tk_debug_sleep_time_show
+ffffffff81195a60 t futex_hash
+ffffffff81195b20 t futex_setup_timer
+ffffffff81195b70 t get_futex_key
+ffffffff81195ef0 t lock_page
+ffffffff81195f40 t lock_page
+ffffffff81195f90 t lock_page
+ffffffff81195fe0 t put_page
+ffffffff81196010 t put_page
+ffffffff81196040 t put_page
+ffffffff81196070 t put_page
+ffffffff811960a0 t put_page
+ffffffff811960d0 t put_page
+ffffffff81196100 t put_page
+ffffffff81196130 t put_page
+ffffffff81196160 t put_page
+ffffffff81196190 t put_page
+ffffffff811961c0 t put_page
+ffffffff811961f0 t put_page
+ffffffff81196220 t fault_in_user_writeable
+ffffffff811962b0 t futex_top_waiter
+ffffffff81196310 t futex_cmpxchg_value_locked
+ffffffff81196370 t futex_get_value_locked
+ffffffff811963b0 t wait_for_owner_exiting
+ffffffff81196420 t __futex_unqueue
+ffffffff81196460 t futex_q_lock
+ffffffff81196540 t futex_q_unlock
+ffffffff81196560 t __futex_queue
+ffffffff811965c0 t futex_unqueue
+ffffffff81196650 t futex_unqueue_pi
+ffffffff811966b0 t futex_exit_recursive
+ffffffff811966e0 t futex_exec_release
+ffffffff81196780 t futex_exit_release
+ffffffff81196820 t exit_robust_list
+ffffffff81196950 t exit_pi_state_list
+ffffffff81196c00 t handle_futex_death
+ffffffff81196d80 t __x64_sys_set_robust_list
+ffffffff81196dc0 t __x64_sys_get_robust_list
+ffffffff81196e70 t do_futex
+ffffffff81197050 t __x64_sys_futex
+ffffffff811971d0 t __x64_sys_futex_waitv
+ffffffff811974f0 t refill_pi_state_cache
+ffffffff81197570 t get_pi_state
+ffffffff811975c0 t put_pi_state
+ffffffff811976c0 t pi_state_update_owner
+ffffffff811977a0 t futex_lock_pi_atomic
+ffffffff81197cd0 t fixup_pi_owner
+ffffffff81197d30 t fixup_pi_state_owner
+ffffffff81197fc0 t futex_lock_pi
+ffffffff81198510 t futex_unlock_pi
+ffffffff811988c0 t handle_exit_race
+ffffffff81198940 t futex_requeue
+ffffffff81199180 t requeue_futex
+ffffffff81199200 t requeue_pi_wake_futex
+ffffffff81199290 t futex_requeue_pi_complete
+ffffffff811992f0 t futex_wait_requeue_pi
+ffffffff811997e0 t futex_wake_mark
+ffffffff81199870 t futex_wake
+ffffffff811999f0 t futex_wake_op
+ffffffff8119a020 t futex_wait_queue
+ffffffff8119a0b0 t futex_wait_multiple
+ffffffff8119a3e0 t futex_wait_setup
+ffffffff8119a4d0 t futex_wait
+ffffffff8119a780 t futex_wait_restart
+ffffffff8119a800 t request_dma
+ffffffff8119a840 t free_dma
+ffffffff8119a880 t proc_dma_show
+ffffffff8119a9b0 t smpcfd_prepare_cpu
+ffffffff8119aa40 t smpcfd_dead_cpu
+ffffffff8119aa70 t smpcfd_dying_cpu
+ffffffff8119aa90 t __flush_smp_call_function_queue.llvm.7859560841834812436
+ffffffff8119ac80 t __smp_call_single_queue
+ffffffff8119acc0 t generic_smp_call_function_single_interrupt
+ffffffff8119ace0 t flush_smp_call_function_queue
+ffffffff8119ada0 t smp_call_function_single
+ffffffff8119af30 t generic_exec_single
+ffffffff8119b030 t smp_call_function_single_async
+ffffffff8119b0a0 t smp_call_function_any
+ffffffff8119b180 t smp_call_function_many
+ffffffff8119b1a0 t smp_call_function_many_cond.llvm.7859560841834812436
+ffffffff8119b4f0 t smp_call_function
+ffffffff8119b550 t on_each_cpu_cond_mask
+ffffffff8119b5c0 t kick_all_cpus_sync
+ffffffff8119b620 t do_nothing
+ffffffff8119b630 t wake_up_all_idle_cpus
+ffffffff8119b6b0 t smp_call_on_cpu
+ffffffff8119b820 t smp_call_on_cpu_callback
+ffffffff8119b880 t kallsyms_lookup_name
+ffffffff8119ba80 t kallsyms_on_each_symbol
+ffffffff8119bc60 t kallsyms_lookup_size_offset
+ffffffff8119bd40 t get_symbol_pos
+ffffffff8119bed0 t kallsyms_lookup
+ffffffff8119bef0 t kallsyms_lookup_buildid.llvm.2464092270126702133
+ffffffff8119c110 t lookup_symbol_name
+ffffffff8119c2e0 t lookup_symbol_attrs
+ffffffff8119c4d0 t sprint_symbol
+ffffffff8119c4f0 t __sprint_symbol.llvm.2464092270126702133
+ffffffff8119c610 t sprint_symbol_build_id
+ffffffff8119c630 t sprint_symbol_no_offset
+ffffffff8119c650 t sprint_backtrace
+ffffffff8119c670 t sprint_backtrace_build_id
+ffffffff8119c690 t arch_get_kallsym
+ffffffff8119c6a0 t kallsyms_show_value
+ffffffff8119c6f0 t kallsyms_open
+ffffffff8119c7b0 t s_start
+ffffffff8119c7e0 t s_start
+ffffffff8119cb30 t s_start
+ffffffff8119cbb0 t s_start
+ffffffff8119cbf0 t s_stop
+ffffffff8119cc00 t s_stop
+ffffffff8119cc70 t s_stop
+ffffffff8119cca0 t s_next
+ffffffff8119ccd0 t s_next
+ffffffff8119ceb0 t s_next
+ffffffff8119cef0 t s_next
+ffffffff8119cf10 t s_show
+ffffffff8119cfa0 t s_show
+ffffffff8119d060 t s_show
+ffffffff8119d270 t update_iter
+ffffffff8119d560 t append_elf_note
+ffffffff8119d5f0 t final_note
+ffffffff8119d610 t crash_update_vmcoreinfo_safecopy
+ffffffff8119d650 t crash_save_vmcoreinfo
+ffffffff8119d700 t vmcoreinfo_append_str
+ffffffff8119d860 t paddr_vmcoreinfo_note
+ffffffff8119d8a0 t kexec_should_crash
+ffffffff8119d900 t kexec_crash_loaded
+ffffffff8119d920 t sanity_check_segment_list
+ffffffff8119db70 t do_kimage_alloc_init
+ffffffff8119dc00 t kimage_is_destination_range
+ffffffff8119dc90 t kimage_free_page_list
+ffffffff8119dd30 t kimage_alloc_control_pages
+ffffffff8119e120 t kimage_crash_copy_vmcoreinfo
+ffffffff8119e1d0 t kimage_terminate
+ffffffff8119e200 t kimage_free
+ffffffff8119e550 t kimage_load_segment
+ffffffff8119e980 t __crash_kexec
+ffffffff8119ea30 t crash_setup_regs
+ffffffff8119eac0 t crash_kexec
+ffffffff8119eb90 t crash_get_memory_size
+ffffffff8119ebe0 t crash_shrink_memory
+ffffffff8119ed70 t crash_save_cpu
+ffffffff8119ef90 t kernel_kexec
+ffffffff8119f050 t kimage_alloc_page
+ffffffff8119f3a0 t kexec_image_probe_default
+ffffffff8119f3d0 t kexec_image_load_default
+ffffffff8119f430 t kexec_image_post_load_cleanup_default
+ffffffff8119f460 t kimage_file_post_load_cleanup
+ffffffff8119f510 t __x64_sys_kexec_file_load
+ffffffff8119fd70 t kexec_locate_mem_hole
+ffffffff8119fde0 t locate_mem_hole_callback
+ffffffff8119ff50 t kexec_add_buffer
+ffffffff811a0060 t kexec_load_purgatory
+ffffffff811a0490 t kexec_purgatory_get_symbol_addr
+ffffffff811a05f0 t kexec_purgatory_get_set_symbol
+ffffffff811a07d0 t crash_exclude_mem_range
+ffffffff811a0950 t crash_prepare_elf64_headers
+ffffffff811a0e80 t __traceiter_cgroup_setup_root
+ffffffff811a0ed0 t __traceiter_cgroup_destroy_root
+ffffffff811a0f20 t __traceiter_cgroup_remount
+ffffffff811a0f70 t __traceiter_cgroup_mkdir
+ffffffff811a0fc0 t __traceiter_cgroup_rmdir
+ffffffff811a1010 t __traceiter_cgroup_release
+ffffffff811a1060 t __traceiter_cgroup_rename
+ffffffff811a10b0 t __traceiter_cgroup_freeze
+ffffffff811a1100 t __traceiter_cgroup_unfreeze
+ffffffff811a1150 t __traceiter_cgroup_attach_task
+ffffffff811a11c0 t __traceiter_cgroup_transfer_tasks
+ffffffff811a1230 t __traceiter_cgroup_notify_populated
+ffffffff811a1290 t __traceiter_cgroup_notify_frozen
+ffffffff811a12f0 t trace_event_raw_event_cgroup_root
+ffffffff811a1400 t perf_trace_cgroup_root
+ffffffff811a1560 t trace_event_raw_event_cgroup
+ffffffff811a1690 t perf_trace_cgroup
+ffffffff811a1800 t trace_event_raw_event_cgroup_migrate
+ffffffff811a1990 t perf_trace_cgroup_migrate
+ffffffff811a1b60 t trace_event_raw_event_cgroup_event
+ffffffff811a1ca0 t perf_trace_cgroup_event
+ffffffff811a1e20 t cgroup_ssid_enabled
+ffffffff811a1e50 t cgroup_on_dfl
+ffffffff811a1e70 t cgroup_is_threaded
+ffffffff811a1e90 t cgroup_is_thread_root
+ffffffff811a1ed0 t cgroup_e_css
+ffffffff811a1f30 t cgroup_get_e_css
+ffffffff811a2010 t __cgroup_task_count
+ffffffff811a2050 t cgroup_task_count
+ffffffff811a20b0 t of_css
+ffffffff811a20f0 t put_css_set_locked
+ffffffff811a23b0 t cgroup_root_from_kf
+ffffffff811a23d0 t cgroup_favor_dynmods
+ffffffff811a2430 t cgroup_free_root
+ffffffff811a2440 t task_cgroup_from_root
+ffffffff811a24b0 t cgroup_kn_unlock
+ffffffff811a2530 t cgroup_kn_lock_live
+ffffffff811a25e0 t cgroup_lock_and_drain_offline
+ffffffff811a2820 t rebind_subsystems
+ffffffff811a2d70 t css_next_child
+ffffffff811a2dd0 t cgroup_apply_control
+ffffffff811a3060 t cgroup_finalize_control
+ffffffff811a3430 t cgroup_show_path
+ffffffff811a3590 t init_cgroup_root
+ffffffff811a37c0 t cgroup_setup_root
+ffffffff811a3ad0 t css_release
+ffffffff811a3b20 t allocate_cgrp_cset_links
+ffffffff811a3c20 t css_populate_dir
+ffffffff811a3d80 t trace_cgroup_setup_root
+ffffffff811a3de0 t link_css_set
+ffffffff811a3f10 t cgroup_update_populated
+ffffffff811a40f0 t cgroup_do_get_tree
+ffffffff811a42b0 t cgroup_init_fs_context
+ffffffff811a4370 t cgroup_kill_sb
+ffffffff811a4410 t cgroup_path_ns_locked
+ffffffff811a44a0 t cgroup_path_ns
+ffffffff811a4580 t task_cgroup_path
+ffffffff811a4730 t cgroup_attach_lock
+ffffffff811a4760 t cgroup_attach_unlock
+ffffffff811a4780 t cgroup_taskset_first
+ffffffff811a4840 t cgroup_taskset_next
+ffffffff811a4900 t cgroup_migrate_vet_dst
+ffffffff811a49e0 t cgroup_migrate_finish
+ffffffff811a4af0 t cgroup_migrate_add_src
+ffffffff811a4c60 t cgroup_migrate_prepare_dst
+ffffffff811a4ee0 t find_css_set
+ffffffff811a55c0 t put_css_set
+ffffffff811a5610 t cgroup_migrate
+ffffffff811a56a0 t cgroup_migrate_add_task
+ffffffff811a5800 t cgroup_migrate_execute
+ffffffff811a5c10 t cgroup_attach_task
+ffffffff811a5e60 t cgroup_procs_write_start
+ffffffff811a5fa0 t cgroup_procs_write_finish
+ffffffff811a60a0 t css_next_descendant_post
+ffffffff811a6140 t cgroup_get_live
+ffffffff811a6190 t cgroup_psi_enabled
+ffffffff811a61b0 t cgroup_rm_cftypes
+ffffffff811a62a0 t cgroup_add_dfl_cftypes
+ffffffff811a62d0 t cgroup_add_cftypes
+ffffffff811a6430 t cgroup_add_legacy_cftypes
+ffffffff811a6460 t cgroup_file_notify
+ffffffff811a64e0 t cgroup_file_show
+ffffffff811a6540 t css_next_descendant_pre
+ffffffff811a65e0 t css_rightmost_descendant
+ffffffff811a6660 t css_has_online_children
+ffffffff811a66f0 t css_task_iter_start
+ffffffff811a67f0 t css_task_iter_advance
+ffffffff811a6ae0 t css_task_iter_next
+ffffffff811a6bb0 t css_task_iter_end
+ffffffff811a6c90 t cgroup_mkdir
+ffffffff811a72f0 t cgroup_apply_control_enable
+ffffffff811a7790 t trace_cgroup_mkdir
+ffffffff811a77f0 t cgroup_destroy_locked
+ffffffff811a79e0 t cgroup_rmdir
+ffffffff811a7ab0 t cgroup_init_cftypes
+ffffffff811a7c00 t cgroup_idr_alloc
+ffffffff811a7c90 t cgroup_path_from_kernfs_id
+ffffffff811a7ce0 t cgroup_get_from_id
+ffffffff811a7e50 t proc_cgroup_show
+ffffffff811a83b0 t cgroup_fork
+ffffffff811a83e0 t cgroup_can_fork
+ffffffff811a89c0 t cgroup_css_set_put_fork
+ffffffff811a8af0 t cgroup_cancel_fork
+ffffffff811a8be0 t cgroup_post_fork
+ffffffff811a8e50 t css_set_move_task
+ffffffff811a9020 t cgroup_exit
+ffffffff811a91b0 t cgroup_release
+ffffffff811a9300 t cgroup_free
+ffffffff811a9350 t css_tryget_online_from_dir
+ffffffff811a9440 t css_from_id
+ffffffff811a9460 t cgroup_get_from_path
+ffffffff811a9550 t cgroup_v1v2_get_from_fd
+ffffffff811a95a0 t cgroup_get_from_fd
+ffffffff811a9650 t cgroup_parse_float
+ffffffff811a9820 t cgroup_sk_alloc
+ffffffff811a9910 t cgroup_sk_clone
+ffffffff811a9950 t cgroup_sk_free
+ffffffff811a99a0 t trace_raw_output_cgroup_root
+ffffffff811a9a00 t trace_raw_output_cgroup
+ffffffff811a9a60 t trace_raw_output_cgroup_migrate
+ffffffff811a9ae0 t trace_raw_output_cgroup_event
+ffffffff811a9b50 t cgroup_addrm_files
+ffffffff811aa160 t cgroup_file_notify_timer
+ffffffff811aa1e0 t cgroup_fs_context_free
+ffffffff811aa260 t cgroup2_parse_param
+ffffffff811aa2f0 t cgroup_get_tree
+ffffffff811aa420 t cgroup_reconfigure
+ffffffff811aa4c0 t cgroup_propagate_control
+ffffffff811aa6d0 t cgroup_control
+ffffffff811aa740 t css_clear_dir
+ffffffff811aa810 t css_killed_ref_fn
+ffffffff811aa860 t css_killed_work_fn
+ffffffff811aa960 t cgroup_apply_cftypes
+ffffffff811aaad0 t css_release_work_fn
+ffffffff811aad20 t css_free_rwork_fn
+ffffffff811ab0f0 t init_and_link_css
+ffffffff811ab290 t cgroup_show_options
+ffffffff811ab320 t cgroup_file_open
+ffffffff811ab410 t cgroup_file_release
+ffffffff811ab480 t cgroup_seqfile_show
+ffffffff811ab530 t cgroup_seqfile_start
+ffffffff811ab560 t cgroup_seqfile_next
+ffffffff811ab590 t cgroup_seqfile_stop
+ffffffff811ab5c0 t cgroup_file_write
+ffffffff811ab730 t cgroup_file_poll
+ffffffff811ab760 t cgroup_type_show
+ffffffff811ab880 t cgroup_type_write
+ffffffff811abb10 t cgroup_procs_release
+ffffffff811abb30 t cgroup_procs_show
+ffffffff811abb60 t cgroup_procs_start
+ffffffff811abbd0 t cgroup_procs_next
+ffffffff811abc00 t cgroup_procs_write
+ffffffff811abc30 t cgroup_threads_start
+ffffffff811abc50 t cgroup_threads_write
+ffffffff811abc70 t cgroup_controllers_show
+ffffffff811abd20 t cgroup_subtree_control_show
+ffffffff811abd80 t cgroup_subtree_control_write
+ffffffff811ac2b0 t cgroup_events_show
+ffffffff811ac350 t cgroup_max_descendants_show
+ffffffff811ac3c0 t cgroup_max_descendants_write
+ffffffff811ac490 t cgroup_max_depth_show
+ffffffff811ac500 t cgroup_max_depth_write
+ffffffff811ac5d0 t cgroup_stat_show
+ffffffff811ac650 t cgroup_freeze_show
+ffffffff811ac6b0 t cgroup_freeze_write
+ffffffff811ac760 t cgroup_kill_write
+ffffffff811aca50 t cpu_stat_show
+ffffffff811acba0 t __cgroup_procs_start
+ffffffff811ace20 t __cgroup_procs_write
+ffffffff811acf80 t cgroup_attach_permissions
+ffffffff811ad1a0 t cgroup_print_ss_mask
+ffffffff811ad2d0 t cgroup_pressure_open
+ffffffff811ad300 t cgroup_pressure_release
+ffffffff811ad320 t cgroup_io_pressure_show
+ffffffff811ad390 t cgroup_io_pressure_write
+ffffffff811ad3b0 t cgroup_pressure_poll
+ffffffff811ad3d0 t cgroup_memory_pressure_show
+ffffffff811ad440 t cgroup_memory_pressure_write
+ffffffff811ad460 t cgroup_cpu_pressure_show
+ffffffff811ad4d0 t cgroup_cpu_pressure_write
+ffffffff811ad4f0 t cgroup_irq_pressure_show
+ffffffff811ad560 t cgroup_irq_pressure_write
+ffffffff811ad580 t cgroup_pressure_show
+ffffffff811ad600 t cgroup_pressure_write
+ffffffff811ad820 t pressure_write
+ffffffff811ad9a0 t cpuset_init_fs_context
+ffffffff811ada80 t delegate_show
+ffffffff811adda0 t features_show
+ffffffff811addd0 t features_show
+ffffffff811ade30 t cgroup_rstat_updated
+ffffffff811adf00 t bpf_rstat_flush
+ffffffff811adf10 t cgroup_rstat_flush
+ffffffff811adf50 t cgroup_rstat_flush_locked.llvm.14442165027210246642
+ffffffff811ae2a0 t cgroup_rstat_flush_irqsafe
+ffffffff811ae2e0 t cgroup_rstat_flush_hold
+ffffffff811ae310 t cgroup_rstat_flush_release
+ffffffff811ae330 t cgroup_rstat_init
+ffffffff811ae3e0 t cgroup_rstat_exit
+ffffffff811ae490 t __cgroup_account_cputime
+ffffffff811ae4f0 t cgroup_base_stat_cputime_account_end
+ffffffff811ae5e0 t __cgroup_account_cputime_field
+ffffffff811ae650 t cgroup_base_stat_cputime_show
+ffffffff811ae810 t free_cgroup_ns
+ffffffff811ae890 t copy_cgroup_ns
+ffffffff811aea70 t cgroupns_get.llvm.17658286127221970123
+ffffffff811aeaf0 t cgroupns_put.llvm.17658286127221970123
+ffffffff811aeb30 t cgroupns_install.llvm.17658286127221970123
+ffffffff811aebf0 t cgroupns_owner.llvm.17658286127221970123
+ffffffff811aec00 t cgroup1_ssid_disabled
+ffffffff811aec20 t cgroup_attach_task_all
+ffffffff811aece0 t cgroup_transfer_tasks
+ffffffff811af0a0 t cgroup1_pidlist_destroy_all
+ffffffff811af120 t cgroup_pidlist_show
+ffffffff811af140 t cgroup_pidlist_start
+ffffffff811af610 t cgroup_pidlist_next
+ffffffff811af660 t cgroup_pidlist_stop
+ffffffff811af6c0 t cgroup1_procs_write
+ffffffff811af6e0 t cgroup_clone_children_read
+ffffffff811af700 t cgroup_clone_children_write
+ffffffff811af730 t cgroup_sane_behavior_show
+ffffffff811af750 t cgroup1_tasks_write
+ffffffff811af770 t cgroup_read_notify_on_release
+ffffffff811af790 t cgroup_write_notify_on_release
+ffffffff811af7c0 t cgroup_release_agent_show
+ffffffff811af820 t cgroup_release_agent_write
+ffffffff811af8f0 t proc_cgroupstats_show
+ffffffff811afb10 t cgroupstats_build
+ffffffff811afda0 t cgroup1_check_for_release
+ffffffff811afe00 t cgroup1_release_agent
+ffffffff811aff90 t cgroup1_parse_param
+ffffffff811b03c0 t cgroup1_reconfigure
+ffffffff811b05f0 t check_cgroupfs_options
+ffffffff811b07a0 t cgroup1_show_options
+ffffffff811b0bb0 t cgroup1_rename
+ffffffff811b0cb0 t cgroup1_get_tree
+ffffffff811b1040 t cmppid
+ffffffff811b1050 t cgroup_pidlist_destroy_work_fn
+ffffffff811b10e0 t __cgroup1_procs_write
+ffffffff811b1230 t trace_cgroup_rename
+ffffffff811b1290 t cgroup_update_frozen
+ffffffff811b1580 t cgroup_enter_frozen
+ffffffff811b15e0 t cgroup_leave_frozen
+ffffffff811b16a0 t cgroup_freezer_migrate_task
+ffffffff811b17c0 t cgroup_freeze
+ffffffff811b1cc0 t cgroup_freezing
+ffffffff811b1d00 t freezer_css_alloc
+ffffffff811b1d30 t freezer_css_online
+ffffffff811b1db0 t freezer_css_offline
+ffffffff811b1e00 t freezer_css_free
+ffffffff811b1e10 t freezer_attach
+ffffffff811b1f00 t freezer_fork
+ffffffff811b1f70 t freezer_read
+ffffffff811b2250 t freezer_write
+ffffffff811b2410 t freezer_self_freezing_read
+ffffffff811b2430 t freezer_parent_freezing_read
+ffffffff811b2450 t freezer_apply_state
+ffffffff811b2690 t rebuild_sched_domains
+ffffffff811b26d0 t rebuild_sched_domains_locked
+ffffffff811b30d0 t current_cpuset_is_being_rebound
+ffffffff811b3110 t cpuset_css_alloc
+ffffffff811b3220 t cpuset_css_online
+ffffffff811b3440 t cpuset_css_offline
+ffffffff811b34f0 t cpuset_css_free
+ffffffff811b3500 t cpuset_can_attach
+ffffffff811b3640 t cpuset_cancel_attach
+ffffffff811b36d0 t cpuset_attach
+ffffffff811b38b0 t cpuset_post_attach
+ffffffff811b38d0 t cpuset_can_fork
+ffffffff811b39b0 t cpuset_cancel_fork
+ffffffff811b3a20 t cpuset_fork
+ffffffff811b3af0 t cpuset_bind
+ffffffff811b3ba0 t cpuset_force_rebuild
+ffffffff811b3bc0 t cpuset_update_active_cpus
+ffffffff811b3bf0 t cpuset_wait_for_hotplug
+ffffffff811b3c10 t cpuset_cpus_allowed
+ffffffff811b3c60 t guarantee_online_cpus.llvm.1604414782671841489
+ffffffff811b3d30 t cpuset_cpus_allowed_fallback
+ffffffff811b3da0 t cpuset_mems_allowed
+ffffffff811b3df0 t cpuset_nodemask_valid_mems_allowed
+ffffffff811b3e10 t __cpuset_node_allowed
+ffffffff811b3ef0 t cpuset_mem_spread_node
+ffffffff811b3f20 t cpuset_slab_spread_node
+ffffffff811b3f50 t cpuset_mems_allowed_intersects
+ffffffff811b3f70 t cpuset_print_current_mems_allowed
+ffffffff811b3fe0 t __cpuset_memory_pressure_bump
+ffffffff811b4170 t proc_cpuset_show
+ffffffff811b42b0 t cpuset_task_status_allowed
+ffffffff811b4300 t update_domain_attr_tree
+ffffffff811b43c0 t update_prstate
+ffffffff811b46b0 t update_flag
+ffffffff811b49f0 t update_parent_subparts_cpumask
+ffffffff811b5050 t compute_effective_cpumask
+ffffffff811b50e0 t update_tasks_cpumask
+ffffffff811b5250 t update_sibling_cpumasks
+ffffffff811b53a0 t update_cpumasks_hier
+ffffffff811b5820 t partition_is_populated
+ffffffff811b58e0 t validate_change
+ffffffff811b5c30 t cpuset_attach_task
+ffffffff811b5d20 t cpuset_migrate_mm_workfn
+ffffffff811b5d50 t cpuset_common_seq_show
+ffffffff811b5e30 t cpuset_write_resmask
+ffffffff811b66e0 t sched_partition_show
+ffffffff811b67b0 t sched_partition_write
+ffffffff811b6910 t update_tasks_nodemask
+ffffffff811b6b20 t cpuset_read_u64
+ffffffff811b6d40 t cpuset_write_u64
+ffffffff811b6e50 t cpuset_read_s64
+ffffffff811b6e70 t cpuset_write_s64
+ffffffff811b6f40 t cpuset_hotplug_workfn
+ffffffff811b79e0 t cpuset_track_online_nodes
+ffffffff811b7a10 t print_stop_info
+ffffffff811b7a70 t stop_one_cpu
+ffffffff811b7b50 t cpu_stop_queue_work
+ffffffff811b7ca0 t stop_machine_yield
+ffffffff811b7cb0 t stop_two_cpus
+ffffffff811b8030 t multi_cpu_stop
+ffffffff811b8160 t stop_one_cpu_nowait
+ffffffff811b81a0 t stop_machine_park
+ffffffff811b81e0 t stop_machine_unpark
+ffffffff811b8220 t stop_machine_cpuslocked
+ffffffff811b82d0 t stop_cpus
+ffffffff811b83b0 t stop_machine
+ffffffff811b8480 t stop_core_cpuslocked
+ffffffff811b8520 t stop_machine_from_inactive_cpu
+ffffffff811b86a0 t queue_stop_cpus_work
+ffffffff811b8790 t cpu_stop_should_run
+ffffffff811b87f0 t cpu_stopper_thread
+ffffffff811b8970 t cpu_stop_create
+ffffffff811b89a0 t cpu_stop_park
+ffffffff811b89e0 t auditd_test_task
+ffffffff811b8a30 t audit_ctl_lock
+ffffffff811b8a60 t audit_ctl_unlock
+ffffffff811b8a90 t audit_panic
+ffffffff811b8af0 t audit_log_lost
+ffffffff811b8bf0 t audit_send_list_thread
+ffffffff811b8cb0 t audit_make_reply
+ffffffff811b8d90 t audit_serial
+ffffffff811b8db0 t audit_log_start
+ffffffff811b9190 t audit_log_format
+ffffffff811b9230 t audit_log_vformat
+ffffffff811b9430 t audit_log_n_hex
+ffffffff811b9570 t audit_log_n_string
+ffffffff811b9670 t audit_string_contains_control
+ffffffff811b96e0 t audit_log_n_untrustedstring
+ffffffff811b9750 t audit_log_untrustedstring
+ffffffff811b97e0 t audit_log_d_path
+ffffffff811b9920 t audit_log_session_info
+ffffffff811b9950 t audit_log_key
+ffffffff811b9a00 t audit_log_task_context
+ffffffff811b9af0 t audit_log_d_path_exe
+ffffffff811b9b50 t audit_get_tty
+ffffffff811b9be0 t audit_put_tty
+ffffffff811b9bf0 t audit_log_task_info
+ffffffff811b9eb0 t audit_log_path_denied
+ffffffff811b9f30 t audit_log_end
+ffffffff811ba030 t audit_set_loginuid
+ffffffff811ba240 t audit_signal_info
+ffffffff811ba300 t audit_log
+ffffffff811ba3b0 t kauditd_thread
+ffffffff811ba760 t audit_receive
+ffffffff811bbe50 t audit_multicast_bind
+ffffffff811bbe90 t audit_multicast_unbind
+ffffffff811bbeb0 t audit_send_reply
+ffffffff811bc000 t audit_log_config_change
+ffffffff811bc0c0 t auditd_reset
+ffffffff811bc160 t audit_send_reply_thread
+ffffffff811bc200 t auditd_conn_free
+ffffffff811bc230 t kauditd_hold_skb
+ffffffff811bc300 t audit_log_multicast
+ffffffff811bc580 t kauditd_send_queue
+ffffffff811bc770 t kauditd_send_multicast_skb
+ffffffff811bc800 t kauditd_retry_skb
+ffffffff811bc8a0 t audit_free_rule_rcu
+ffffffff811bc960 t audit_unpack_string
+ffffffff811bc9f0 t audit_match_class
+ffffffff811bca40 t audit_dupe_rule
+ffffffff811bcda0 t audit_del_rule
+ffffffff811bd0e0 t audit_rule_change
+ffffffff811bd6b0 t audit_data_to_entry
+ffffffff811be1b0 t audit_log_rule_change
+ffffffff811be250 t audit_list_rules_send
+ffffffff811be640 t audit_comparator
+ffffffff811be6f0 t audit_uid_comparator
+ffffffff811be750 t audit_gid_comparator
+ffffffff811be7b0 t parent_len
+ffffffff811be820 t audit_compare_dname_path
+ffffffff811be8e0 t audit_filter
+ffffffff811bee00 t audit_update_lsm_rules
+ffffffff811bf060 t audit_compare_rule
+ffffffff811bf250 t audit_filter_inodes
+ffffffff811bf350 t audit_alloc
+ffffffff811bf400 t audit_filter_task
+ffffffff811bf4d0 t audit_alloc_context
+ffffffff811bf560 t __audit_free
+ffffffff811bf6a0 t audit_filter_syscall
+ffffffff811bf780 t audit_log_exit
+ffffffff811c0ef0 t audit_filter_uring
+ffffffff811c0fd0 t audit_log_uring
+ffffffff811c1120 t __audit_uring_entry
+ffffffff811c1180 t __audit_uring_exit
+ffffffff811c1280 t audit_reset_context
+ffffffff811c15d0 t __audit_syscall_entry
+ffffffff811c1700 t __audit_syscall_exit
+ffffffff811c17c0 t __audit_reusename
+ffffffff811c1820 t __audit_getname
+ffffffff811c1870 t audit_alloc_name
+ffffffff811c1a20 t __audit_inode
+ffffffff811c1e90 t __audit_file
+ffffffff811c1eb0 t __audit_inode_child
+ffffffff811c2370 t auditsc_get_stamp
+ffffffff811c23e0 t __audit_mq_open
+ffffffff811c24a0 t __audit_mq_sendrecv
+ffffffff811c2510 t __audit_mq_notify
+ffffffff811c2550 t __audit_mq_getsetattr
+ffffffff811c25e0 t __audit_ipc_obj
+ffffffff811c2640 t __audit_ipc_set_perm
+ffffffff811c2680 t __audit_bprm
+ffffffff811c26b0 t __audit_socketcall
+ffffffff811c2710 t __audit_fd_pair
+ffffffff811c2740 t __audit_sockaddr
+ffffffff811c27c0 t __audit_ptrace
+ffffffff811c2860 t audit_signal_info_syscall
+ffffffff811c2a80 t __audit_log_bprm_fcaps
+ffffffff811c2bc0 t __audit_log_capset
+ffffffff811c2c20 t __audit_mmap_fd
+ffffffff811c2c50 t __audit_openat2_how
+ffffffff811c2ca0 t __audit_log_kern_module
+ffffffff811c2cf0 t __audit_fanotify
+ffffffff811c2d30 t __audit_tk_injoffset
+ffffffff811c2d70 t __audit_ntp_log
+ffffffff811c2df0 t __audit_log_nfcfg
+ffffffff811c2f20 t audit_core_dumps
+ffffffff811c3050 t audit_seccomp
+ffffffff811c3190 t audit_seccomp_actions_logged
+ffffffff811c3200 t audit_killed_trees
+ffffffff811c3240 t audit_filter_rules
+ffffffff811c45a0 t audit_log_pid_context
+ffffffff811c46c0 t unroll_tree_refs
+ffffffff811c47d0 t grow_tree_refs
+ffffffff811c4840 t audit_get_watch
+ffffffff811c4880 t audit_put_watch
+ffffffff811c48e0 t audit_watch_path
+ffffffff811c48f0 t audit_watch_compare
+ffffffff811c4920 t audit_to_watch
+ffffffff811c49b0 t audit_init_watch
+ffffffff811c4a10 t audit_add_watch
+ffffffff811c4e50 t audit_remove_watch_rule
+ffffffff811c4f00 t audit_remove_watch
+ffffffff811c4fb0 t audit_dupe_exe
+ffffffff811c5030 t audit_exe_compare
+ffffffff811c5080 t audit_watch_handle_event
+ffffffff811c5320 t audit_watch_free_mark
+ffffffff811c5350 t audit_update_watch
+ffffffff811c57e0 t audit_mark_path
+ffffffff811c57f0 t audit_mark_compare
+ffffffff811c5820 t audit_alloc_mark
+ffffffff811c59a0 t audit_remove_mark
+ffffffff811c59d0 t audit_remove_mark_rule
+ffffffff811c5a00 t audit_mark_handle_event
+ffffffff811c5b30 t audit_fsnotify_free_mark
+ffffffff811c5b60 t audit_tree_path
+ffffffff811c5b70 t audit_put_chunk
+ffffffff811c5c00 t audit_tree_lookup
+ffffffff811c5c60 t audit_tree_match
+ffffffff811c5cc0 t audit_remove_tree_rule
+ffffffff811c5e30 t audit_trim_trees
+ffffffff811c6100 t compare_root
+ffffffff811c6120 t trim_marked
+ffffffff811c62b0 t audit_make_tree
+ffffffff811c6320 t alloc_tree
+ffffffff811c63c0 t audit_put_tree
+ffffffff811c6410 t audit_add_tree_rule
+ffffffff811c67c0 t audit_launch_prune
+ffffffff811c6840 t tag_mount
+ffffffff811c6fd0 t audit_tag_tree
+ffffffff811c75a0 t audit_kill_trees
+ffffffff811c76b0 t kill_rules
+ffffffff811c7850 t prune_tree_chunks
+ffffffff811c7d10 t replace_chunk
+ffffffff811c7eb0 t __put_chunk
+ffffffff811c7f40 t prune_tree_thread
+ffffffff811c8040 t audit_tree_handle_event
+ffffffff811c8050 t audit_tree_freeing_mark
+ffffffff811c8380 t audit_tree_destroy_watch
+ffffffff811c83a0 t reset_hung_task_detector
+ffffffff811c83c0 t hungtask_pm_notify
+ffffffff811c83f0 t watchdog
+ffffffff811c88a0 t hung_task_panic
+ffffffff811c88c0 t proc_dohung_task_timeout_secs
+ffffffff811c8910 t watchdog_nmi_enable
+ffffffff811c8920 t watchdog_nmi_disable
+ffffffff811c8930 t watchdog_nmi_stop
+ffffffff811c8940 t watchdog_nmi_start
+ffffffff811c8950 t touch_softlockup_watchdog_sched
+ffffffff811c8970 t touch_softlockup_watchdog
+ffffffff811c89a0 t touch_all_softlockup_watchdogs
+ffffffff811c8a10 t touch_softlockup_watchdog_sync
+ffffffff811c8a50 t is_hardlockup
+ffffffff811c8ab0 t lockup_detector_online_cpu
+ffffffff811c8ad0 t watchdog_enable
+ffffffff811c8be0 t lockup_detector_offline_cpu
+ffffffff811c8c00 t watchdog_disable
+ffffffff811c8c70 t lockup_detector_reconfigure
+ffffffff811c8ca0 t __lockup_detector_reconfigure
+ffffffff811c8e10 t lockup_detector_cleanup
+ffffffff811c8e40 t lockup_detector_soft_poweroff
+ffffffff811c8e60 t proc_watchdog
+ffffffff811c8e90 t proc_watchdog_common
+ffffffff811c8f70 t proc_nmi_watchdog
+ffffffff811c8fb0 t proc_soft_watchdog
+ffffffff811c8fe0 t proc_watchdog_thresh
+ffffffff811c9090 t proc_watchdog_cpumask
+ffffffff811c9120 t watchdog_timer_fn
+ffffffff811c93c0 t softlockup_fn
+ffffffff811c9430 t update_report_ts
+ffffffff811c9460 t softlockup_stop_fn
+ffffffff811c9480 t softlockup_start_fn
+ffffffff811c94a0 t seccomp_filter_release
+ffffffff811c94e0 t __seccomp_filter_release
+ffffffff811c95b0 t get_seccomp_filter
+ffffffff811c9620 t __secure_computing
+ffffffff811c96b0 t __seccomp_filter
+ffffffff811ca000 t prctl_get_seccomp
+ffffffff811ca020 t __x64_sys_seccomp
+ffffffff811ca040 t prctl_set_seccomp
+ffffffff811ca080 t do_seccomp
+ffffffff811ca560 t seccomp_log
+ffffffff811ca580 t seccomp_assign_mode
+ffffffff811ca5c0 t init_listener
+ffffffff811ca6a0 t seccomp_attach_filter
+ffffffff811cab90 t seccomp_notify_detach
+ffffffff811cac30 t seccomp_check_filter
+ffffffff811cacf0 t seccomp_notify_poll
+ffffffff811cada0 t seccomp_notify_ioctl
+ffffffff811cb420 t seccomp_notify_release
+ffffffff811cb510 t seccomp_actions_logged_handler
+ffffffff811cbc10 t uts_proc_notify
+ffffffff811cbc50 t proc_do_uts_string
+ffffffff811cbe30 t taskstats_exit
+ffffffff811cc1c0 t mk_reply
+ffffffff811cc2d0 t fill_stats
+ffffffff811cc3b0 t taskstats_user_cmd
+ffffffff811cc890 t cgroupstats_user_cmd
+ffffffff811cca50 t add_del_listener
+ffffffff811cccb0 t bacct_add_tsk
+ffffffff811ccf20 t xacct_add_tsk
+ffffffff811cd090 t acct_update_integrals
+ffffffff811cd170 t acct_account_cputime
+ffffffff811cd210 t acct_clear_integrals
+ffffffff811cd240 t tracepoint_probe_register_prio_may_exist
+ffffffff811cd2d0 t tracepoint_add_func
+ffffffff811cd6f0 t tracepoint_probe_register_prio
+ffffffff811cd780 t tracepoint_probe_register
+ffffffff811cd810 t tracepoint_probe_unregister
+ffffffff811cdc40 t trace_module_has_bad_taint
+ffffffff811cdc60 t register_tracepoint_module_notifier
+ffffffff811cdcf0 t unregister_tracepoint_module_notifier
+ffffffff811cdd80 t for_each_kernel_tracepoint
+ffffffff811cdde0 t syscall_regfunc
+ffffffff811cde70 t syscall_unregfunc
+ffffffff811cdef0 t rcu_free_old_probes
+ffffffff811cdf20 t srcu_free_old_probes
+ffffffff811cdf30 t tp_stub_func
+ffffffff811cdf40 t tracepoint_module_notify
+ffffffff811ce0f0 t trace_clock_local
+ffffffff811ce120 t trace_clock
+ffffffff811ce140 t trace_clock_jiffies
+ffffffff811ce180 t trace_clock_global
+ffffffff811ce240 t trace_clock_counter
+ffffffff811ce260 t ring_buffer_print_entry_header
+ffffffff811ce330 t ring_buffer_event_length
+ffffffff811ce380 t rb_event_length
+ffffffff811ce3d0 t ring_buffer_event_data
+ffffffff811ce410 t ring_buffer_print_page_header
+ffffffff811ce4c0 t ring_buffer_event_time_stamp
+ffffffff811ce580 t ring_buffer_nr_pages
+ffffffff811ce5a0 t ring_buffer_nr_dirty_pages
+ffffffff811ce5f0 t ring_buffer_wake_waiters
+ffffffff811ce6e0 t rb_wake_up_waiters
+ffffffff811ce730 t ring_buffer_wait
+ffffffff811ce9d0 t ring_buffer_empty
+ffffffff811ceb50 t ring_buffer_empty_cpu
+ffffffff811cec70 t ring_buffer_poll_wait
+ffffffff811cede0 t ring_buffer_time_stamp
+ffffffff811cee30 t ring_buffer_normalize_time_stamp
+ffffffff811cee40 t __ring_buffer_alloc
+ffffffff811cf030 t rb_allocate_cpu_buffer
+ffffffff811cf2c0 t rb_free_cpu_buffer
+ffffffff811cf3b0 t ring_buffer_alloc_ext
+ffffffff811cf430 t ring_buffer_free
+ffffffff811cf4b0 t ring_buffer_set_clock
+ffffffff811cf4c0 t ring_buffer_set_time_stamp_abs
+ffffffff811cf4e0 t ring_buffer_time_stamp_abs
+ffffffff811cf500 t ring_buffer_resize
+ffffffff811cf920 t __rb_allocate_pages
+ffffffff811cfad0 t rb_update_pages
+ffffffff811cfd70 t rb_check_pages
+ffffffff811cfe30 t ring_buffer_change_overwrite
+ffffffff811cfe70 t ring_buffer_nest_start
+ffffffff811cfea0 t ring_buffer_nest_end
+ffffffff811cfee0 t ring_buffer_unlock_commit
+ffffffff811d0020 t rb_commit
+ffffffff811d0180 t ring_buffer_lock_reserve
+ffffffff811d0860 t ring_buffer_discard_commit
+ffffffff811d0be0 t ring_buffer_write
+ffffffff811d1460 t ring_buffer_record_disable
+ffffffff811d1470 t ring_buffer_record_enable
+ffffffff811d1490 t ring_buffer_record_off
+ffffffff811d14c0 t ring_buffer_record_on
+ffffffff811d14f0 t ring_buffer_record_is_on
+ffffffff811d1510 t ring_buffer_record_is_set_on
+ffffffff811d1530 t ring_buffer_record_disable_cpu
+ffffffff811d1560 t ring_buffer_record_enable_cpu
+ffffffff811d1590 t ring_buffer_oldest_event_ts
+ffffffff811d1600 t rb_set_head_page
+ffffffff811d16f0 t ring_buffer_bytes_cpu
+ffffffff811d1730 t ring_buffer_entries_cpu
+ffffffff811d1770 t ring_buffer_overrun_cpu
+ffffffff811d17a0 t ring_buffer_commit_overrun_cpu
+ffffffff811d17d0 t ring_buffer_dropped_events_cpu
+ffffffff811d1800 t ring_buffer_read_events_cpu
+ffffffff811d1830 t ring_buffer_entries
+ffffffff811d18a0 t ring_buffer_overruns
+ffffffff811d1900 t ring_buffer_iter_reset
+ffffffff811d1990 t ring_buffer_iter_empty
+ffffffff811d1a20 t ring_buffer_peek
+ffffffff811d1b60 t ring_buffer_iter_peek
+ffffffff811d1f50 t rb_buffer_peek
+ffffffff811d20f0 t rb_advance_reader
+ffffffff811d21d0 t ring_buffer_iter_dropped
+ffffffff811d21f0 t ring_buffer_consume
+ffffffff811d2350 t ring_buffer_poke
+ffffffff811d2480 t ring_buffer_update_view
+ffffffff811d2700 t ring_buffer_read_prepare
+ffffffff811d2810 t ring_buffer_read_prepare_sync
+ffffffff811d2820 t ring_buffer_read_start
+ffffffff811d28f0 t ring_buffer_read_finish
+ffffffff811d2950 t ring_buffer_iter_advance
+ffffffff811d2990 t rb_advance_iter
+ffffffff811d2b60 t ring_buffer_size
+ffffffff811d2b90 t ring_buffer_reset_cpu
+ffffffff811d2bf0 t reset_disabled_cpu_buffer
+ffffffff811d2e70 t ring_buffer_reset_online_cpus
+ffffffff811d2f40 t ring_buffer_reset
+ffffffff811d3010 t ring_buffer_alloc_read_page
+ffffffff811d3110 t ring_buffer_free_read_page
+ffffffff811d3220 t ring_buffer_read_page
+ffffffff811d3540 t rb_get_reader_page
+ffffffff811d37e0 t trace_rb_cpu_prepare
+ffffffff811d38c0 t trace_buffer_pack_size
+ffffffff811d3930 t trace_buffer_pack
+ffffffff811d3af0 t update_pages_handler
+ffffffff811d3b20 t rb_move_tail
+ffffffff811d3f80 t rb_add_timestamp
+ffffffff811d4090 t rb_check_timestamp
+ffffffff811d40f0 t rb_swap_reader_page_ext
+ffffffff811d4280 t ns2usecs
+ffffffff811d42b0 t register_ftrace_export
+ffffffff811d4360 t unregister_ftrace_export
+ffffffff811d4400 t trace_array_get
+ffffffff811d4470 t trace_array_put
+ffffffff811d44c0 t tracing_check_open_get_tr
+ffffffff811d4550 t call_filter_check_discard
+ffffffff811d45a0 t __trace_event_discard_commit
+ffffffff811d45e0 t trace_find_filtered_pid
+ffffffff811d45f0 t trace_ignore_this_task
+ffffffff811d4640 t trace_filter_add_remove_task
+ffffffff811d46a0 t trace_pid_next
+ffffffff811d4700 t trace_pid_start
+ffffffff811d47b0 t trace_pid_show
+ffffffff811d47d0 t trace_pid_write
+ffffffff811d49f0 t trace_parser_get_init
+ffffffff811d4a40 t trace_parser_put
+ffffffff811d4a70 t trace_get_user
+ffffffff811d4c30 t ftrace_now
+ffffffff811d4c60 t tracing_is_enabled
+ffffffff811d4c80 t tracer_tracing_on
+ffffffff811d4cb0 t tracing_on
+ffffffff811d4ce0 t __trace_array_puts
+ffffffff811d4f80 t __trace_puts
+ffffffff811d4fa0 t __trace_bputs
+ffffffff811d51d0 t tracing_snapshot
+ffffffff811d5200 t tracing_snapshot_cond
+ffffffff811d5230 t tracing_alloc_snapshot
+ffffffff811d5260 t tracing_snapshot_alloc
+ffffffff811d5290 t tracing_cond_snapshot_data
+ffffffff811d52a0 t tracing_snapshot_cond_enable
+ffffffff811d52b0 t tracing_snapshot_cond_disable
+ffffffff811d52c0 t tracer_tracing_off
+ffffffff811d52f0 t tracing_off
+ffffffff811d5320 t disable_trace_on_warning
+ffffffff811d5370 t trace_array_printk_buf
+ffffffff811d5410 t tracer_tracing_is_on
+ffffffff811d5440 t tracing_is_on
+ffffffff811d5470 t nsecs_to_usecs
+ffffffff811d54a0 t trace_clock_in_ns
+ffffffff811d54d0 t dummy_set_flag
+ffffffff811d54e0 t add_tracer_options
+ffffffff811d57d0 t tracing_set_tracer
+ffffffff811d59d0 t tracing_reset_online_cpus
+ffffffff811d5a30 t tracing_reset_all_online_cpus_unlocked
+ffffffff811d5ab0 t tracing_reset_all_online_cpus
+ffffffff811d5b50 t is_tracing_stopped
+ffffffff811d5b70 t tracing_start
+ffffffff811d5c00 t tracing_stop
+ffffffff811d5c80 t trace_find_cmdline
+ffffffff811d5d70 t trace_find_tgid
+ffffffff811d5db0 t tracing_record_taskinfo
+ffffffff811d5f20 t tracing_record_taskinfo_sched_switch
+ffffffff811d61c0 t tracing_record_cmdline
+ffffffff811d61e0 t tracing_record_tgid
+ffffffff811d6260 t trace_handle_return
+ffffffff811d6290 t tracing_gen_ctx_irq_test
+ffffffff811d6340 t trace_buffer_lock_reserve
+ffffffff811d63a0 t trace_buffered_event_enable
+ffffffff811d64d0 t trace_buffered_event_disable
+ffffffff811d6620 t disable_trace_buffered_event
+ffffffff811d6640 t enable_trace_buffered_event
+ffffffff811d6660 t trace_event_buffer_lock_reserve
+ffffffff811d67c0 t tracepoint_printk_sysctl
+ffffffff811d6890 t trace_event_buffer_commit
+ffffffff811d6b50 t trace_buffer_unlock_commit_regs
+ffffffff811d6dc0 t trace_buffer_unlock_commit_nostack
+ffffffff811d6e30 t trace_function
+ffffffff811d6f90 t __trace_stack
+ffffffff811d6ff0 t __ftrace_trace_stack
+ffffffff811d71d0 t trace_dump_stack
+ffffffff811d72f0 t trace_last_func_repeats
+ffffffff811d73f0 t trace_printk_init_buffers
+ffffffff811d7530 t tracing_update_buffers
+ffffffff811d75f0 t trace_printk_start_comm
+ffffffff811d7610 t trace_vbprintk
+ffffffff811d7950 t trace_array_vprintk
+ffffffff811d7970 t __trace_array_vprintk.llvm.9205078670796757768
+ffffffff811d7c80 t trace_array_printk
+ffffffff811d7d40 t trace_array_init_printk
+ffffffff811d7de0 t trace_vprintk
+ffffffff811d7e00 t trace_check_vprintf
+ffffffff811d82e0 t trace_iter_expand_format
+ffffffff811d8330 t show_buffer
+ffffffff811d8380 t trace_event_format
+ffffffff811d84a0 t trace_find_next_entry
+ffffffff811d8590 t __find_next_entry
+ffffffff811d8850 t trace_find_next_entry_inc
+ffffffff811d88d0 t tracing_iter_reset
+ffffffff811d89c0 t trace_total_entries_cpu
+ffffffff811d8a30 t trace_total_entries
+ffffffff811d8ad0 t print_trace_header
+ffffffff811d8d80 t trace_empty
+ffffffff811d8e40 t print_trace_line
+ffffffff811d9040 t print_hex_fmt
+ffffffff811d9160 t print_raw_fmt
+ffffffff811d9230 t print_trace_fmt
+ffffffff811d9390 t trace_latency_header
+ffffffff811d93f0 t trace_default_header
+ffffffff811d95c0 t tracing_open_generic
+ffffffff811d9610 t tracing_is_disabled
+ffffffff811d9630 t tracing_open_generic_tr
+ffffffff811d96f0 t tracing_lseek
+ffffffff811d9720 t tracing_set_cpumask
+ffffffff811d9870 t trace_keep_overwrite
+ffffffff811d98a0 t set_tracer_flag
+ffffffff811d9a30 t trace_set_options
+ffffffff811d9bf0 t tracer_init
+ffffffff811d9c60 t tracing_resize_ring_buffer
+ffffffff811d9d60 t tracing_set_clock
+ffffffff811d9f20 t tracing_event_time_stamp
+ffffffff811d9f50 t tracing_set_filter_buffering
+ffffffff811d9fb0 t trace_min_max_read
+ffffffff811da070 t trace_min_max_write
+ffffffff811da170 t err_pos
+ffffffff811da1a0 t tracing_log_err
+ffffffff811da370 t trace_create_file
+ffffffff811da3b0 t trace_array_find
+ffffffff811da410 t trace_array_find_get
+ffffffff811da490 t trace_array_get_by_name
+ffffffff811da540 t trace_array_create
+ffffffff811da730 t trace_array_destroy
+ffffffff811da7c0 t __remove_instance
+ffffffff811da9c0 t tracing_init_dentry
+ffffffff811daa30 t trace_automount
+ffffffff811daa90 t trace_printk_seq
+ffffffff811dab30 t trace_init_global_iter
+ffffffff811dabe0 t ftrace_dump
+ffffffff811db050 t trace_parse_run_command
+ffffffff811db1e0 t print_event_info
+ffffffff811db2d0 t trace_options_read
+ffffffff811db320 t trace_options_write
+ffffffff811db450 t allocate_trace_buffers
+ffffffff811db530 t init_trace_flags_index
+ffffffff811db580 t trace_array_create_dir
+ffffffff811db620 t init_tracer_tracefs
+ffffffff811dbf60 t show_traces_open
+ffffffff811dc070 t show_traces_release
+ffffffff811dc0e0 t t_start
+ffffffff811dc1b0 t t_start
+ffffffff811dc2b0 t t_start
+ffffffff811dc340 t t_start
+ffffffff811dc370 t t_stop
+ffffffff811dc390 t t_stop
+ffffffff811dc3b0 t t_stop
+ffffffff811dc3d0 t t_stop
+ffffffff811dc3f0 t t_next
+ffffffff811dc440 t t_next
+ffffffff811dc5a0 t t_next
+ffffffff811dc600 t t_next
+ffffffff811dc620 t t_show
+ffffffff811dc670 t t_show
+ffffffff811dc770 t t_show
+ffffffff811dc7f0 t tracing_set_trace_read
+ffffffff811dc910 t tracing_set_trace_write
+ffffffff811dca60 t tracing_cpumask_read
+ffffffff811dcb30 t tracing_cpumask_write
+ffffffff811dcbe0 t tracing_release_generic_tr
+ffffffff811dcc30 t tracing_trace_options_write
+ffffffff811dcd40 t tracing_trace_options_open
+ffffffff811dce40 t tracing_single_release_tr
+ffffffff811dceb0 t tracing_trace_options_show
+ffffffff811dcfd0 t tracing_write_stub
+ffffffff811dcfe0 t tracing_open
+ffffffff811dd680 t tracing_release
+ffffffff811dd870 t tracing_read_pipe
+ffffffff811ddcc0 t tracing_poll_pipe
+ffffffff811ddd20 t tracing_open_pipe
+ffffffff811ddf30 t tracing_release_pipe
+ffffffff811ddfe0 t tracing_splice_read_pipe
+ffffffff811de630 t tracing_wait_pipe
+ffffffff811de6f0 t tracing_spd_release_pipe
+ffffffff811de710 t tracing_entries_read
+ffffffff811de930 t tracing_entries_write
+ffffffff811de9f0 t tracing_total_entries_read
+ffffffff811deb80 t tracing_free_buffer_write
+ffffffff811deba0 t tracing_free_buffer_release
+ffffffff811dec20 t tracing_mark_write
+ffffffff811def70 t tracing_mark_open
+ffffffff811df030 t tracing_mark_raw_write
+ffffffff811df290 t tracing_clock_write
+ffffffff811df3a0 t tracing_clock_open
+ffffffff811df4a0 t tracing_clock_show
+ffffffff811df720 t rb_simple_read
+ffffffff811df800 t rb_simple_write
+ffffffff811df940 t tracing_time_stamp_mode_open
+ffffffff811dfa40 t tracing_time_stamp_mode_show
+ffffffff811dfaa0 t buffer_percent_read
+ffffffff811dfb70 t buffer_percent_write
+ffffffff811dfc00 t trace_options_core_read
+ffffffff811dfc50 t trace_options_core_write
+ffffffff811dfd40 t tracing_err_log_write
+ffffffff811dfd50 t tracing_err_log_open
+ffffffff811dff10 t tracing_err_log_release
+ffffffff811dff90 t tracing_err_log_seq_start
+ffffffff811dffd0 t tracing_err_log_seq_stop
+ffffffff811dfff0 t tracing_err_log_seq_next
+ffffffff811e0020 t tracing_err_log_seq_show
+ffffffff811e0170 t tracing_buffers_read
+ffffffff811e03e0 t tracing_buffers_poll
+ffffffff811e0440 t tracing_buffers_ioctl
+ffffffff811e04a0 t tracing_buffers_open
+ffffffff811e0660 t tracing_buffers_release
+ffffffff811e0700 t tracing_buffers_splice_read
+ffffffff811e0c10 t buffer_spd_release
+ffffffff811e0c90 t buffer_pipe_buf_release
+ffffffff811e0cf0 t buffer_pipe_buf_get
+ffffffff811e0d40 t tracing_stats_read
+ffffffff811e1020 t tracing_thresh_read
+ffffffff811e1120 t tracing_thresh_write
+ffffffff811e11f0 t tracing_readme_read
+ffffffff811e1220 t tracing_saved_cmdlines_open
+ffffffff811e1260 t saved_cmdlines_start
+ffffffff811e1310 t saved_cmdlines_stop
+ffffffff811e1350 t saved_cmdlines_next
+ffffffff811e13b0 t saved_cmdlines_show
+ffffffff811e14b0 t tracing_saved_cmdlines_size_read
+ffffffff811e15e0 t tracing_saved_cmdlines_size_write
+ffffffff811e17c0 t tracing_saved_tgids_open
+ffffffff811e1800 t saved_tgids_start
+ffffffff811e1840 t saved_tgids_stop
+ffffffff811e1850 t saved_tgids_next
+ffffffff811e18a0 t saved_tgids_show
+ffffffff811e18e0 t trace_module_notify
+ffffffff811e1920 t trace_module_notify
+ffffffff811e1b40 t instance_mkdir
+ffffffff811e1bf0 t instance_rmdir
+ffffffff811e1c90 t test_can_verify
+ffffffff811e1ce0 t trace_panic_handler
+ffffffff811e1d00 t trace_die_handler
+ffffffff811e1d30 t test_can_verify_check
+ffffffff811e1e00 t trace_print_bputs_msg_only
+ffffffff811e1e40 t trace_print_bprintk_msg_only
+ffffffff811e1e80 t trace_print_printk_msg_only
+ffffffff811e1ec0 t trace_print_flags_seq
+ffffffff811e2010 t trace_print_symbols_seq
+ffffffff811e20f0 t trace_print_bitmask_seq
+ffffffff811e2140 t trace_print_hex_seq
+ffffffff811e2200 t trace_print_array_seq
+ffffffff811e23e0 t trace_print_hex_dump_seq
+ffffffff811e2480 t trace_raw_output_prep
+ffffffff811e2530 t trace_event_printf
+ffffffff811e25c0 t trace_output_call
+ffffffff811e2680 t trace_seq_print_sym
+ffffffff811e2740 t seq_print_ip_sym
+ffffffff811e2850 t trace_print_lat_fmt
+ffffffff811e2990 t trace_find_mark
+ffffffff811e2a00 t trace_print_context
+ffffffff811e2bb0 t trace_print_lat_context
+ffffffff811e2ea0 t ftrace_find_event
+ffffffff811e2ee0 t trace_event_read_lock
+ffffffff811e2f00 t trace_event_read_unlock
+ffffffff811e2f20 t register_trace_event
+ffffffff811e3150 t trace_nop_print
+ffffffff811e3190 t __unregister_trace_event
+ffffffff811e3200 t unregister_trace_event
+ffffffff811e3280 t trace_fn_trace
+ffffffff811e3310 t trace_fn_raw
+ffffffff811e3360 t trace_fn_hex
+ffffffff811e33c0 t trace_fn_bin
+ffffffff811e3420 t trace_ctx_print
+ffffffff811e3520 t trace_ctx_raw
+ffffffff811e35a0 t trace_ctx_hex
+ffffffff811e35c0 t trace_ctxwake_bin
+ffffffff811e3670 t trace_ctxwake_hex
+ffffffff811e3780 t trace_wake_print
+ffffffff811e3880 t trace_wake_raw
+ffffffff811e38f0 t trace_wake_hex
+ffffffff811e3910 t trace_stack_print
+ffffffff811e3a00 t trace_user_stack_print
+ffffffff811e3c20 t trace_bputs_print
+ffffffff811e3c90 t trace_bputs_raw
+ffffffff811e3cf0 t trace_bprint_print
+ffffffff811e3d60 t trace_bprint_raw
+ffffffff811e3dc0 t trace_print_print
+ffffffff811e3e20 t trace_print_raw
+ffffffff811e3e70 t trace_hwlat_print
+ffffffff811e3f10 t trace_hwlat_raw
+ffffffff811e3f70 t trace_osnoise_print
+ffffffff811e4090 t trace_osnoise_raw
+ffffffff811e4100 t trace_timerlat_print
+ffffffff811e4160 t trace_timerlat_raw
+ffffffff811e41b0 t trace_raw_data
+ffffffff811e4260 t trace_func_repeats_print
+ffffffff811e43b0 t trace_func_repeats_raw
+ffffffff811e4410 t trace_print_seq
+ffffffff811e44a0 t trace_seq_printf
+ffffffff811e45c0 t trace_seq_bitmask
+ffffffff811e4660 t trace_seq_vprintf
+ffffffff811e46f0 t trace_seq_bprintf
+ffffffff811e4780 t trace_seq_puts
+ffffffff811e4830 t trace_seq_putc
+ffffffff811e48d0 t trace_seq_putmem
+ffffffff811e4970 t trace_seq_putmem_hex
+ffffffff811e4a30 t trace_seq_path
+ffffffff811e4b00 t trace_seq_to_user
+ffffffff811e4b60 t trace_seq_hex_dump
+ffffffff811e4c30 t register_stat_tracer
+ffffffff811e4e50 t unregister_stat_tracer
+ffffffff811e4f40 t tracing_stat_open
+ffffffff811e52c0 t tracing_stat_release
+ffffffff811e5380 t dummy_cmp
+ffffffff811e5390 t stat_seq_start
+ffffffff811e5410 t stat_seq_stop
+ffffffff811e5430 t stat_seq_next
+ffffffff811e5470 t stat_seq_show
+ffffffff811e54b0 t trace_printk_control
+ffffffff811e54d0 t __trace_bprintk
+ffffffff811e5580 t __ftrace_vbprintk
+ffffffff811e55a0 t __trace_printk
+ffffffff811e5650 t __ftrace_vprintk
+ffffffff811e5690 t trace_is_tracepoint_string
+ffffffff811e56f0 t ftrace_formats_open
+ffffffff811e5720 t module_trace_bprintk_format_notify
+ffffffff811e5890 t trace_pid_list_is_set
+ffffffff811e5910 t trace_pid_list_set
+ffffffff811e5a50 t trace_pid_list_clear
+ffffffff811e5b60 t trace_pid_list_next
+ffffffff811e5cc0 t trace_pid_list_first
+ffffffff811e5ce0 t trace_pid_list_alloc
+ffffffff811e5f90 t pid_list_refill_irq
+ffffffff811e61a0 t trace_pid_list_free
+ffffffff811e6260 t tracing_map_update_sum
+ffffffff811e6280 t tracing_map_read_sum
+ffffffff811e62a0 t tracing_map_set_var
+ffffffff811e62c0 t tracing_map_var_set
+ffffffff811e62e0 t tracing_map_read_var
+ffffffff811e6300 t tracing_map_read_var_once
+ffffffff811e6320 t tracing_map_cmp_string
+ffffffff811e6330 t tracing_map_cmp_none
+ffffffff811e6340 t tracing_map_cmp_num
+ffffffff811e63c0 t tracing_map_cmp_s64
+ffffffff811e63f0 t tracing_map_cmp_u64
+ffffffff811e6420 t tracing_map_cmp_s32
+ffffffff811e6450 t tracing_map_cmp_u32
+ffffffff811e6470 t tracing_map_cmp_s16
+ffffffff811e64a0 t tracing_map_cmp_u16
+ffffffff811e64d0 t tracing_map_cmp_s8
+ffffffff811e6500 t tracing_map_cmp_u8
+ffffffff811e6530 t tracing_map_add_sum_field
+ffffffff811e6570 t tracing_map_cmp_atomic64
+ffffffff811e65a0 t tracing_map_add_var
+ffffffff811e65d0 t tracing_map_add_key_field
+ffffffff811e6630 t tracing_map_insert
+ffffffff811e6650 t __tracing_map_insert.llvm.15592010383890446723
+ffffffff811e69c0 t tracing_map_lookup
+ffffffff811e69e0 t tracing_map_destroy
+ffffffff811e6a70 t tracing_map_free_elts
+ffffffff811e6bd0 t tracing_map_clear
+ffffffff811e6d40 t tracing_map_create
+ffffffff811e6e10 t tracing_map_array_alloc
+ffffffff811e6f80 t tracing_map_init
+ffffffff811e7380 t tracing_map_destroy_sort_entries
+ffffffff811e7430 t tracing_map_sort_entries
+ffffffff811e78e0 t cmp_entries_key
+ffffffff811e7940 t cmp_entries_sum
+ffffffff811e79a0 t cmp_entries_dup
+ffffffff811e79d0 t tracing_start_cmdline_record
+ffffffff811e79f0 t tracing_start_sched_switch.llvm.3395982442487103122
+ffffffff811e7b00 t tracing_stop_cmdline_record
+ffffffff811e7b80 t tracing_start_tgid_record
+ffffffff811e7ba0 t tracing_stop_tgid_record
+ffffffff811e7c20 t probe_sched_wakeup
+ffffffff811e7c60 t probe_sched_switch
+ffffffff811e7ca0 t nop_trace_init
+ffffffff811e7cb0 t nop_trace_reset
+ffffffff811e7cc0 t nop_set_flag
+ffffffff811e7d00 t blk_fill_rwbs
+ffffffff811e7dd0 t trace_find_event_field
+ffffffff811e7e90 t trace_define_field
+ffffffff811e7f70 t trace_event_get_offsets
+ffffffff811e7fa0 t trace_event_raw_init
+ffffffff811e8570 t trace_event_ignore_this_pid
+ffffffff811e85c0 t trace_event_buffer_reserve
+ffffffff811e86b0 t trace_event_reg
+ffffffff811e8730 t trace_event_enable_cmd_record
+ffffffff811e87d0 t trace_event_enable_tgid_record
+ffffffff811e8870 t trace_event_enable_disable
+ffffffff811e8880 t __ftrace_event_enable_disable.llvm.5693675691896077049
+ffffffff811e8a90 t trace_event_follow_fork
+ffffffff811e8b10 t event_filter_pid_sched_process_fork
+ffffffff811e8b50 t event_filter_pid_sched_process_exit
+ffffffff811e8b90 t ftrace_set_clr_event
+ffffffff811e8ca0 t trace_set_clr_event
+ffffffff811e8d30 t trace_array_set_clr_event
+ffffffff811e8da0 t trace_event_eval_update
+ffffffff811e9310 t trace_add_event_call
+ffffffff811e93b0 t __register_event
+ffffffff811e9490 t trace_remove_event_call
+ffffffff811e9570 t __find_event_file
+ffffffff811e9620 t find_event_file
+ffffffff811e96f0 t trace_get_event_file
+ffffffff811e9890 t trace_put_event_file
+ffffffff811e98d0 t __trace_early_add_events
+ffffffff811e9970 t event_trace_add_tracer
+ffffffff811e9a60 t create_event_toplevel_files
+ffffffff811e9b90 t __trace_early_add_event_dirs
+ffffffff811e9c10 t event_trace_del_tracer
+ffffffff811e9d20 t __ftrace_clear_event_pids
+ffffffff811e9f10 t __ftrace_set_clr_event_nolock
+ffffffff811ea060 t __trace_remove_event_call
+ffffffff811ea1f0 t remove_event_file_dir
+ffffffff811ea330 t __put_system
+ffffffff811ea3c0 t trace_create_new_event
+ffffffff811ea4b0 t event_define_fields
+ffffffff811ea660 t event_create_dir
+ffffffff811eaaf0 t subsystem_filter_read
+ffffffff811eabd0 t subsystem_filter_write
+ffffffff811eac50 t subsystem_open
+ffffffff811eada0 t subsystem_release
+ffffffff811eade0 t put_system
+ffffffff811eae40 t system_enable_read
+ffffffff811eaf80 t system_enable_write
+ffffffff811eb140 t event_enable_read
+ffffffff811eb240 t event_enable_write
+ffffffff811eb310 t event_id_read
+ffffffff811eb3d0 t event_filter_read
+ffffffff811eb4e0 t event_filter_write
+ffffffff811eb580 t trace_format_open
+ffffffff811eb5c0 t f_start
+ffffffff811eb6e0 t f_stop
+ffffffff811eb700 t f_next
+ffffffff811eb790 t f_show
+ffffffff811eb940 t ftrace_event_write
+ffffffff811eba40 t ftrace_event_set_open
+ffffffff811ebb30 t ftrace_event_release
+ffffffff811ebb60 t system_tr_open
+ffffffff811ebbe0 t ftrace_event_pid_write
+ffffffff811ebc00 t ftrace_event_set_pid_open
+ffffffff811ebcc0 t event_pid_write
+ffffffff811ebf30 t ignore_task_cpu
+ffffffff811ebf60 t event_filter_pid_sched_switch_probe_pre
+ffffffff811ebfe0 t event_filter_pid_sched_switch_probe_post
+ffffffff811ec010 t event_filter_pid_sched_wakeup_probe_pre
+ffffffff811ec050 t event_filter_pid_sched_wakeup_probe_post
+ffffffff811ec090 t p_start
+ffffffff811ec0e0 t p_stop
+ffffffff811ec120 t p_next
+ffffffff811ec140 t ftrace_event_npid_write
+ffffffff811ec160 t ftrace_event_set_npid_open
+ffffffff811ec220 t np_start
+ffffffff811ec270 t np_next
+ffffffff811ec290 t show_header
+ffffffff811ec370 t ftrace_event_avail_open
+ffffffff811ec3c0 t ftrace_event_is_function
+ffffffff811ec3e0 t ftrace_event_register
+ffffffff811ec3f0 t perf_trace_init
+ffffffff811ec4c0 t perf_trace_event_init
+ffffffff811ec830 t perf_trace_destroy
+ffffffff811ec890 t perf_trace_event_unreg
+ffffffff811ec960 t perf_uprobe_init
+ffffffff811eca30 t perf_uprobe_destroy
+ffffffff811ecaa0 t perf_trace_add
+ffffffff811ecb40 t perf_trace_del
+ffffffff811ecba0 t perf_trace_buf_alloc
+ffffffff811ecc90 t perf_trace_buf_update
+ffffffff811ecd10 t filter_parse_regex
+ffffffff811ece60 t filter_match_preds
+ffffffff811ed780 t print_event_filter
+ffffffff811ed7d0 t print_subsystem_event_filter
+ffffffff811ed840 t free_event_filter
+ffffffff811ed8c0 t filter_assign_type
+ffffffff811ed9a0 t create_event_filter
+ffffffff811eda70 t apply_event_filter
+ffffffff811edca0 t apply_subsystem_event_filter
+ffffffff811ee400 t ftrace_profile_free_filter
+ffffffff811ee490 t ftrace_profile_set_filter
+ffffffff811ee610 t create_filter_start
+ffffffff811ee730 t process_preds
+ffffffff811ef6c0 t append_filter_err
+ffffffff811ef870 t filter_build_regex
+ffffffff811efaf0 t select_comparison_fn
+ffffffff811efbb0 t regex_match_full
+ffffffff811efbe0 t regex_match_front
+ffffffff811efc20 t regex_match_middle
+ffffffff811efc50 t regex_match_end
+ffffffff811efc90 t regex_match_glob
+ffffffff811efcb0 t trigger_data_free
+ffffffff811efd00 t event_triggers_call
+ffffffff811efdc0 t __trace_trigger_soft_disabled
+ffffffff811efe50 t event_triggers_post_call
+ffffffff811efeb0 t trigger_process_regex
+ffffffff811effc0 t event_trigger_write.llvm.6407885844830002796
+ffffffff811f0090 t event_trigger_open.llvm.6407885844830002796
+ffffffff811f0180 t event_trigger_release.llvm.6407885844830002796
+ffffffff811f01d0 t event_trigger_init
+ffffffff811f01e0 t trace_event_trigger_enable_disable
+ffffffff811f0240 t clear_event_triggers
+ffffffff811f0320 t update_cond_flag
+ffffffff811f0370 t event_trigger_check_remove
+ffffffff811f0390 t event_trigger_empty_param
+ffffffff811f03b0 t event_trigger_separate_filter
+ffffffff811f0470 t event_trigger_alloc
+ffffffff811f04f0 t event_trigger_parse_num
+ffffffff811f0560 t event_trigger_set_filter
+ffffffff811f0590 t event_trigger_reset_filter
+ffffffff811f05b0 t event_trigger_register
+ffffffff811f05e0 t event_trigger_unregister
+ffffffff811f0610 t set_trigger_filter
+ffffffff811f0740 t find_named_trigger
+ffffffff811f07b0 t is_named_trigger
+ffffffff811f0800 t save_named_trigger
+ffffffff811f0870 t del_named_trigger
+ffffffff811f08d0 t pause_named_trigger
+ffffffff811f0940 t unpause_named_trigger
+ffffffff811f09a0 t set_named_trigger_data
+ffffffff811f09b0 t get_named_trigger_data
+ffffffff811f09c0 t event_enable_trigger_print
+ffffffff811f0aa0 t event_enable_trigger_free
+ffffffff811f0b30 t event_enable_trigger_parse
+ffffffff811f0ed0 t trace_event_try_get_ref
+ffffffff811f0f10 t event_trigger_free
+ffffffff811f0f70 t event_enable_register_trigger
+ffffffff811f10f0 t event_enable_unregister_trigger
+ffffffff811f1200 t trigger_start
+ffffffff811f1280 t trigger_stop
+ffffffff811f12a0 t trigger_next
+ffffffff811f12e0 t trigger_show
+ffffffff811f13a0 t event_trigger_parse
+ffffffff811f1600 t register_trigger
+ffffffff811f1760 t unregister_trigger
+ffffffff811f1850 t onoff_get_trigger_ops
+ffffffff811f18a0 t traceon_count_trigger
+ffffffff811f1900 t traceon_trigger_print
+ffffffff811f1980 t traceon_trigger
+ffffffff811f19c0 t traceoff_count_trigger
+ffffffff811f1a20 t traceoff_trigger_print
+ffffffff811f1aa0 t traceoff_trigger
+ffffffff811f1ae0 t stacktrace_get_trigger_ops
+ffffffff811f1b00 t stacktrace_count_trigger
+ffffffff811f1b90 t stacktrace_trigger_print
+ffffffff811f1c10 t stacktrace_trigger
+ffffffff811f1c90 t event_enable_get_trigger_ops
+ffffffff811f1d00 t event_enable_count_trigger
+ffffffff811f1d60 t event_enable_trigger
+ffffffff811f1d90 t eprobe_dyn_event_create
+ffffffff811f1db0 t eprobe_dyn_event_show
+ffffffff811f1e80 t eprobe_dyn_event_is_busy
+ffffffff811f1ea0 t eprobe_dyn_event_release
+ffffffff811f1f40 t eprobe_dyn_event_match
+ffffffff811f2060 t __trace_eprobe_create
+ffffffff811f2950 t dyn_event_add
+ffffffff811f29b0 t dyn_event_add
+ffffffff811f2a10 t trace_event_probe_cleanup
+ffffffff811f2a70 t eprobe_register
+ffffffff811f2e00 t print_eprobe_event
+ffffffff811f3040 t eprobe_event_define_fields
+ffffffff811f3070 t disable_eprobe
+ffffffff811f3150 t eprobe_trigger_func
+ffffffff811f4210 t eprobe_trigger_init
+ffffffff811f4220 t eprobe_trigger_free
+ffffffff811f4230 t eprobe_trigger_print
+ffffffff811f4240 t eprobe_trigger_cmd_parse
+ffffffff811f4250 t eprobe_trigger_reg_func
+ffffffff811f4260 t eprobe_trigger_unreg_func
+ffffffff811f4270 t eprobe_trigger_get_ops
+ffffffff811f4290 t find_synth_event
+ffffffff811f4300 t synth_event_add_field
+ffffffff811f43d0 t synth_event_check_arg_fn
+ffffffff811f4410 t synth_event_add_field_str
+ffffffff811f44c0 t synth_event_add_fields
+ffffffff811f45c0 t __synth_event_gen_cmd_start
+ffffffff811f47d0 t synth_event_gen_cmd_array_start
+ffffffff811f4950 t synth_event_create
+ffffffff811f4a60 t synth_event_cmd_init
+ffffffff811f4a80 t synth_event_delete
+ffffffff811f4b80 t synth_event_run_command
+ffffffff811f4c10 t synth_event_trace
+ffffffff811f5030 t trace_string
+ffffffff811f52d0 t synth_event_trace_array
+ffffffff811f5560 t synth_event_trace_start
+ffffffff811f5680 t synth_event_add_next_val
+ffffffff811f5740 t synth_event_add_val
+ffffffff811f58a0 t synth_event_trace_end
+ffffffff811f58d0 t create_synth_event
+ffffffff811f5ad0 t synth_event_show
+ffffffff811f5b10 t synth_event_is_busy
+ffffffff811f5b30 t synth_event_release
+ffffffff811f5b90 t synth_event_match
+ffffffff811f5bd0 t synth_err
+ffffffff811f5c30 t check_command
+ffffffff811f5d10 t __create_synth_event
+ffffffff811f6900 t errpos
+ffffffff811f6950 t alloc_synth_event
+ffffffff811f6b10 t register_synth_event
+ffffffff811f6d20 t free_synth_event
+ffffffff811f6de0 t synth_field_size
+ffffffff811f6fc0 t synth_field_string_size
+ffffffff811f70c0 t trace_event_raw_event_synth
+ffffffff811f73a0 t print_synth_event
+ffffffff811f76e0 t synth_field_fmt
+ffffffff811f78e0 t synth_event_define_fields
+ffffffff811f79b0 t __set_synth_event_print_fmt
+ffffffff811f7b20 t __synth_event_show
+ffffffff811f7bf0 t create_or_delete_synth_event
+ffffffff811f7d80 t synth_events_write
+ffffffff811f7da0 t synth_events_open
+ffffffff811f7df0 t synth_events_seq_show
+ffffffff811f7e10 t event_hist_open.llvm.8561762090224348399
+ffffffff811f7e40 t hist_show
+ffffffff811f8a70 t hist_field_name
+ffffffff811f8bb0 t event_hist_trigger_parse
+ffffffff811fa7a0 t hist_register_trigger
+ffffffff811faa70 t hist_unregister_trigger
+ffffffff811fabb0 t hist_unreg_all
+ffffffff811face0 t event_hist_get_trigger_ops
+ffffffff811fad00 t destroy_hist_trigger_attrs
+ffffffff811faf80 t have_hist_trigger_match
+ffffffff811fb000 t hist_trigger_check_refs
+ffffffff811fb090 t existing_hist_update_only
+ffffffff811fb1b0 t has_hist_vars
+ffffffff811fb230 t save_hist_vars
+ffffffff811fb2e0 t create_actions
+ffffffff811fb5b0 t hist_trigger_enable
+ffffffff811fb660 t destroy_hist_data
+ffffffff811fba30 t create_tracing_map_fields
+ffffffff811fbb50 t track_data_parse
+ffffffff811fbc40 t action_parse
+ffffffff811fbf80 t onmatch_destroy
+ffffffff811fc010 t parse_action_params
+ffffffff811fc230 t check_track_val_max
+ffffffff811fc250 t check_track_val_changed
+ffffffff811fc270 t save_track_data_vars
+ffffffff811fc370 t ontrack_action
+ffffffff811fc440 t save_track_data_snapshot
+ffffffff811fc450 t action_trace
+ffffffff811fc4d0 t hist_fn_call
+ffffffff811fcac0 t track_data_destroy
+ffffffff811fcb50 t destroy_hist_field
+ffffffff811fcba0 t __destroy_hist_field
+ffffffff811fcc00 t create_hist_field
+ffffffff811fceb0 t select_value_fn
+ffffffff811fcf20 t __create_val_field
+ffffffff811fd040 t parse_expr
+ffffffff811fd890 t parse_atom
+ffffffff811fe200 t check_expr_operands
+ffffffff811fe3b0 t expr_str
+ffffffff811fe520 t find_event_var
+ffffffff811fe7d0 t create_var_ref
+ffffffff811fe920 t find_var_file
+ffffffff811fea80 t init_var_ref
+ffffffff811feb90 t expr_field_str
+ffffffff811fed10 t find_var
+ffffffff811fee10 t field_has_hist_vars
+ffffffff811fee70 t hist_trigger_elt_data_alloc
+ffffffff811ff080 t hist_trigger_elt_data_free
+ffffffff811ff0e0 t hist_trigger_elt_data_init
+ffffffff811ff150 t hist_trigger_match
+ffffffff811ff3e0 t actions_match
+ffffffff811ff580 t check_var_refs
+ffffffff811ff670 t hist_clear
+ffffffff811ff6d0 t action_create
+ffffffff812006f0 t create_target_field_var
+ffffffff81200940 t find_synthetic_field_var
+ffffffff812009d0 t create_var
+ffffffff81200ad0 t event_hist_trigger
+ffffffff81201530 t event_hist_trigger_named_init
+ffffffff81201590 t event_hist_trigger_named_free
+ffffffff812015d0 t event_hist_trigger_print
+ffffffff81201c70 t event_hist_trigger_init
+ffffffff81201cc0 t event_hist_trigger_free
+ffffffff81201e10 t hist_field_print
+ffffffff81201f90 t hist_enable_unreg_all
+ffffffff81202040 t hist_enable_get_trigger_ops
+ffffffff81202090 t hist_enable_count_trigger
+ffffffff812020f0 t hist_enable_trigger
+ffffffff81202140 t __traceiter_error_report_end
+ffffffff81202190 t trace_event_raw_event_error_report_template
+ffffffff81202250 t perf_trace_error_report_template
+ffffffff81202350 t trace_raw_output_error_report_template
+ffffffff812023c0 t __traceiter_cpu_idle
+ffffffff81202410 t __traceiter_cpu_idle_miss
+ffffffff81202470 t __traceiter_powernv_throttle
+ffffffff812024d0 t __traceiter_pstate_sample
+ffffffff81202550 t __traceiter_cpu_frequency
+ffffffff812025a0 t __traceiter_cpu_frequency_limits
+ffffffff812025f0 t __traceiter_device_pm_callback_start
+ffffffff81202650 t __traceiter_device_pm_callback_end
+ffffffff812026a0 t __traceiter_suspend_resume
+ffffffff81202700 t __traceiter_wakeup_source_activate
+ffffffff81202750 t __traceiter_wakeup_source_deactivate
+ffffffff812027a0 t __traceiter_clock_enable
+ffffffff81202800 t __traceiter_clock_disable
+ffffffff81202860 t __traceiter_clock_set_rate
+ffffffff812028c0 t __traceiter_power_domain_target
+ffffffff81202920 t __traceiter_pm_qos_add_request
+ffffffff81202970 t __traceiter_pm_qos_update_request
+ffffffff812029c0 t __traceiter_pm_qos_remove_request
+ffffffff81202a10 t __traceiter_pm_qos_update_target
+ffffffff81202a70 t __traceiter_pm_qos_update_flags
+ffffffff81202ad0 t __traceiter_dev_pm_qos_add_request
+ffffffff81202b30 t __traceiter_dev_pm_qos_update_request
+ffffffff81202b90 t __traceiter_dev_pm_qos_remove_request
+ffffffff81202bf0 t __traceiter_guest_halt_poll_ns
+ffffffff81202c50 t trace_event_raw_event_cpu
+ffffffff81202d10 t perf_trace_cpu
+ffffffff81202e10 t trace_event_raw_event_cpu_idle_miss
+ffffffff81202ee0 t perf_trace_cpu_idle_miss
+ffffffff81202ff0 t trace_event_raw_event_powernv_throttle
+ffffffff81203100 t perf_trace_powernv_throttle
+ffffffff81203250 t trace_event_raw_event_pstate_sample
+ffffffff81203350 t perf_trace_pstate_sample
+ffffffff81203490 t trace_event_raw_event_cpu_frequency_limits
+ffffffff81203560 t perf_trace_cpu_frequency_limits
+ffffffff81203660 t trace_event_raw_event_device_pm_callback_start
+ffffffff81203830 t perf_trace_device_pm_callback_start
+ffffffff81203a40 t trace_event_raw_event_device_pm_callback_end
+ffffffff81203be0 t perf_trace_device_pm_callback_end
+ffffffff81203dd0 t trace_event_raw_event_suspend_resume
+ffffffff81203ea0 t perf_trace_suspend_resume
+ffffffff81203fb0 t trace_event_raw_event_wakeup_source
+ffffffff812040c0 t perf_trace_wakeup_source
+ffffffff81204210 t trace_event_raw_event_clock
+ffffffff81204330 t perf_trace_clock
+ffffffff81204480 t trace_event_raw_event_power_domain
+ffffffff812045a0 t perf_trace_power_domain
+ffffffff812046f0 t trace_event_raw_event_cpu_latency_qos_request
+ffffffff812047b0 t perf_trace_cpu_latency_qos_request
+ffffffff812048a0 t trace_event_raw_event_pm_qos_update
+ffffffff81204970 t perf_trace_pm_qos_update
+ffffffff81204a80 t trace_event_raw_event_dev_pm_qos_request
+ffffffff81204b90 t perf_trace_dev_pm_qos_request
+ffffffff81204ce0 t trace_event_raw_event_guest_halt_poll_ns
+ffffffff81204db0 t perf_trace_guest_halt_poll_ns
+ffffffff81204ec0 t trace_raw_output_cpu
+ffffffff81204f20 t trace_raw_output_cpu_idle_miss
+ffffffff81204f90 t trace_raw_output_powernv_throttle
+ffffffff81204ff0 t trace_raw_output_pstate_sample
+ffffffff81205070 t trace_raw_output_cpu_frequency_limits
+ffffffff812050d0 t trace_event_get_offsets_device_pm_callback_start
+ffffffff812051f0 t trace_raw_output_device_pm_callback_start
+ffffffff812052a0 t trace_raw_output_device_pm_callback_end
+ffffffff81205300 t trace_raw_output_suspend_resume
+ffffffff81205370 t trace_raw_output_wakeup_source
+ffffffff812053d0 t trace_raw_output_clock
+ffffffff81205430 t trace_raw_output_power_domain
+ffffffff81205490 t trace_raw_output_cpu_latency_qos_request
+ffffffff812054e0 t trace_raw_output_pm_qos_update
+ffffffff81205550 t trace_raw_output_pm_qos_update_flags
+ffffffff812055f0 t trace_raw_output_dev_pm_qos_request
+ffffffff81205670 t trace_raw_output_guest_halt_poll_ns
+ffffffff812056e0 t __traceiter_rpm_suspend
+ffffffff81205730 t __traceiter_rpm_resume
+ffffffff81205780 t __traceiter_rpm_idle
+ffffffff812057d0 t __traceiter_rpm_usage
+ffffffff81205820 t __traceiter_rpm_return_int
+ffffffff81205880 t trace_event_raw_event_rpm_internal
+ffffffff81205a00 t perf_trace_rpm_internal
+ffffffff81205bd0 t trace_event_raw_event_rpm_return_int
+ffffffff81205d10 t perf_trace_rpm_return_int
+ffffffff81205e90 t trace_raw_output_rpm_internal
+ffffffff81205f10 t trace_raw_output_rpm_return_int
+ffffffff81205f70 t trace_event_dyn_try_get_ref
+ffffffff81205fe0 t trace_event_dyn_put_ref
+ffffffff81206020 t trace_event_dyn_busy
+ffffffff81206040 t dyn_event_register
+ffffffff812060e0 t dyn_event_release
+ffffffff812062b0 t dyn_event_seq_start
+ffffffff812062e0 t dyn_event_seq_next
+ffffffff81206300 t dyn_event_seq_stop
+ffffffff81206320 t dyn_events_release_all
+ffffffff81206410 t dynevent_arg_add
+ffffffff81206480 t dynevent_arg_pair_add
+ffffffff81206500 t dynevent_str_add
+ffffffff81206540 t dynevent_cmd_init
+ffffffff81206590 t dynevent_arg_init
+ffffffff812065c0 t dynevent_arg_pair_init
+ffffffff81206600 t dynevent_create
+ffffffff81206620 t dyn_event_write
+ffffffff81206640 t dyn_event_open
+ffffffff81206740 t create_dyn_event
+ffffffff812067f0 t dyn_event_seq_show
+ffffffff81206820 t print_type_u8
+ffffffff81206860 t print_type_u16
+ffffffff812068a0 t print_type_u32
+ffffffff812068e0 t print_type_u64
+ffffffff81206920 t print_type_s8
+ffffffff81206960 t print_type_s16
+ffffffff812069a0 t print_type_s32
+ffffffff812069e0 t print_type_s64
+ffffffff81206a20 t print_type_x8
+ffffffff81206a60 t print_type_x16
+ffffffff81206aa0 t print_type_x32
+ffffffff81206ae0 t print_type_x64
+ffffffff81206b20 t print_type_symbol
+ffffffff81206b60 t print_type_string
+ffffffff81206bc0 t trace_probe_log_init
+ffffffff81206bf0 t trace_probe_log_clear
+ffffffff81206c20 t trace_probe_log_set_index
+ffffffff81206c40 t __trace_probe_log_err
+ffffffff81206da0 t traceprobe_split_symbol_offset
+ffffffff81206e00 t traceprobe_parse_event_name
+ffffffff81206fd0 t traceprobe_parse_probe_arg
+ffffffff81207830 t traceprobe_free_probe_arg
+ffffffff812078a0 t traceprobe_update_arg
+ffffffff812079d0 t traceprobe_set_print_fmt
+ffffffff81207a50 t __set_print_fmt
+ffffffff81207dc0 t traceprobe_define_arg_fields
+ffffffff81207e60 t trace_probe_append
+ffffffff81207f50 t trace_probe_unlink
+ffffffff81207fd0 t trace_probe_cleanup
+ffffffff81208090 t trace_probe_init
+ffffffff812081c0 t trace_probe_register_event_call
+ffffffff812082d0 t trace_probe_add_file
+ffffffff81208380 t trace_probe_get_file_link
+ffffffff812083c0 t trace_probe_remove_file
+ffffffff81208460 t trace_probe_compare_arg_type
+ffffffff81208500 t trace_probe_match_command_args
+ffffffff81208600 t trace_probe_create
+ffffffff812086a0 t find_fetch_type
+ffffffff81208940 t parse_probe_arg
+ffffffff81208fb0 t __parse_bitfield_probe_arg
+ffffffff812090c0 t bpf_get_uprobe_info
+ffffffff81209230 t create_local_trace_uprobe
+ffffffff81209470 t alloc_trace_uprobe
+ffffffff81209540 t free_trace_uprobe
+ffffffff81209580 t destroy_local_trace_uprobe
+ffffffff812095d0 t trace_uprobe_create
+ffffffff812095f0 t trace_uprobe_show
+ffffffff812096e0 t trace_uprobe_is_busy
+ffffffff81209700 t trace_uprobe_release
+ffffffff812097c0 t trace_uprobe_match
+ffffffff81209990 t __trace_uprobe_create
+ffffffff81209f40 t register_trace_uprobe
+ffffffff8120a360 t uprobe_dispatcher
+ffffffff8120a6a0 t uretprobe_dispatcher
+ffffffff8120a960 t process_fetch_insn
+ffffffff8120af70 t fetch_store_strlen
+ffffffff8120afb0 t fetch_store_strlen_user
+ffffffff8120aff0 t __uprobe_trace_func
+ffffffff8120b170 t uprobe_perf_filter
+ffffffff8120b1f0 t __uprobe_perf_func
+ffffffff8120b400 t trace_uprobe_register
+ffffffff8120b620 t print_uprobe_event
+ffffffff8120b850 t uprobe_event_define_fields
+ffffffff8120b930 t probe_event_enable
+ffffffff8120bc90 t probe_event_disable
+ffffffff8120bd60 t uprobe_perf_close
+ffffffff8120bec0 t uprobe_buffer_disable
+ffffffff8120bf50 t probes_write
+ffffffff8120bf70 t probes_open
+ffffffff8120bfc0 t create_or_delete_trace_uprobe
+ffffffff8120c000 t probes_seq_show
+ffffffff8120c020 t profile_open
+ffffffff8120c050 t probes_profile_seq_show
+ffffffff8120c0b0 t irq_work_queue
+ffffffff8120c120 t __irq_work_queue_local
+ffffffff8120c1b0 t irq_work_queue_on
+ffffffff8120c270 t irq_work_needs_cpu
+ffffffff8120c2f0 t irq_work_single
+ffffffff8120c350 t irq_work_run
+ffffffff8120c500 t irq_work_tick
+ffffffff8120c6c0 t irq_work_sync
+ffffffff8120c740 t bpf_internal_load_pointer_neg_helper
+ffffffff8120c7d0 t bpf_prog_alloc_no_stats
+ffffffff8120c920 t bpf_prog_alloc
+ffffffff8120c9d0 t bpf_prog_alloc_jited_linfo
+ffffffff8120ca30 t bpf_prog_jit_attempt_done
+ffffffff8120ca90 t bpf_prog_fill_jited_linfo
+ffffffff8120cb30 t bpf_prog_realloc
+ffffffff8120cbf0 t __bpf_prog_free
+ffffffff8120cc40 t bpf_prog_calc_tag
+ffffffff8120ced0 t bpf_patch_insn_single
+ffffffff8120d0e0 t bpf_adj_branches
+ffffffff8120d310 t bpf_remove_insns
+ffffffff8120d390 t bpf_prog_kallsyms_del_all
+ffffffff8120d3a0 t __bpf_call_base
+ffffffff8120d3b0 t bpf_opcode_in_insntable
+ffffffff8120d3d0 t bpf_probe_read_kernel
+ffffffff8120d3f0 t bpf_patch_call_args
+ffffffff8120d440 t bpf_prog_map_compatible
+ffffffff8120d510 t bpf_prog_select_runtime
+ffffffff8120d7f0 t bpf_int_jit_compile
+ffffffff8120d800 t bpf_prog_array_alloc
+ffffffff8120d840 t bpf_prog_array_free
+ffffffff8120d870 t bpf_prog_array_free_sleepable
+ffffffff8120d890 t bpf_prog_array_length
+ffffffff8120d8e0 t bpf_prog_array_is_empty
+ffffffff8120d910 t bpf_prog_array_copy_to_user
+ffffffff8120da00 t bpf_prog_array_delete_safe
+ffffffff8120da50 t bpf_prog_array_delete_safe_at
+ffffffff8120dac0 t bpf_prog_array_update_at
+ffffffff8120db30 t bpf_prog_array_copy
+ffffffff8120dd00 t bpf_prog_array_copy_info
+ffffffff8120ddc0 t __bpf_free_used_maps
+ffffffff8120de20 t __bpf_free_used_btfs
+ffffffff8120de30 t bpf_prog_free
+ffffffff8120de90 t bpf_prog_free_deferred
+ffffffff8120e000 t bpf_user_rnd_init_once
+ffffffff8120e080 t bpf_user_rnd_u32
+ffffffff8120e0e0 t bpf_get_raw_cpu_id
+ffffffff8120e100 t bpf_get_trace_printk_proto
+ffffffff8120e110 t bpf_get_trace_vprintk_proto
+ffffffff8120e120 t bpf_event_output
+ffffffff8120e140 t bpf_jit_compile
+ffffffff8120e150 t bpf_jit_needs_zext
+ffffffff8120e160 t bpf_jit_supports_subprog_tailcalls
+ffffffff8120e170 t bpf_jit_supports_kfunc_call
+ffffffff8120e180 t bpf_arch_text_poke
+ffffffff8120e190 t bpf_arch_text_copy
+ffffffff8120e1b0 t bpf_arch_text_invalidate
+ffffffff8120e1c0 t __traceiter_xdp_exception
+ffffffff8120e220 t __traceiter_xdp_bulk_tx
+ffffffff8120e290 t __traceiter_xdp_redirect
+ffffffff8120e310 t __traceiter_xdp_redirect_err
+ffffffff8120e390 t __traceiter_xdp_redirect_map
+ffffffff8120e410 t __traceiter_xdp_redirect_map_err
+ffffffff8120e490 t __traceiter_xdp_cpumap_kthread
+ffffffff8120e500 t __traceiter_xdp_cpumap_enqueue
+ffffffff8120e570 t __traceiter_xdp_devmap_xmit
+ffffffff8120e5e0 t __traceiter_mem_disconnect
+ffffffff8120e630 t __traceiter_mem_connect
+ffffffff8120e680 t __traceiter_mem_return_failed
+ffffffff8120e6d0 t trace_event_raw_event_xdp_exception
+ffffffff8120e7b0 t perf_trace_xdp_exception
+ffffffff8120e8c0 t trace_event_raw_event_xdp_bulk_tx
+ffffffff8120e9b0 t perf_trace_xdp_bulk_tx
+ffffffff8120ead0 t trace_event_raw_event_xdp_redirect_template
+ffffffff8120ec10 t perf_trace_xdp_redirect_template
+ffffffff8120ed90 t trace_event_raw_event_xdp_cpumap_kthread
+ffffffff8120eea0 t perf_trace_xdp_cpumap_kthread
+ffffffff8120f000 t trace_event_raw_event_xdp_cpumap_enqueue
+ffffffff8120f0f0 t perf_trace_xdp_cpumap_enqueue
+ffffffff8120f220 t trace_event_raw_event_xdp_devmap_xmit
+ffffffff8120f320 t perf_trace_xdp_devmap_xmit
+ffffffff8120f450 t trace_event_raw_event_mem_disconnect
+ffffffff8120f520 t perf_trace_mem_disconnect
+ffffffff8120f630 t trace_event_raw_event_mem_connect
+ffffffff8120f710 t perf_trace_mem_connect
+ffffffff8120f830 t trace_event_raw_event_mem_return_failed
+ffffffff8120f900 t perf_trace_mem_return_failed
+ffffffff8120fa10 t __bpf_prog_run_args32
+ffffffff8120fae0 t __bpf_prog_run_args64
+ffffffff8120fbe0 t __bpf_prog_run_args96
+ffffffff8120fd10 t __bpf_prog_run_args128
+ffffffff8120fe70 t __bpf_prog_run_args160
+ffffffff8120ff60 t __bpf_prog_run_args192
+ffffffff81210050 t __bpf_prog_run_args224
+ffffffff81210140 t __bpf_prog_run_args256
+ffffffff81210230 t __bpf_prog_run_args288
+ffffffff81210320 t __bpf_prog_run_args320
+ffffffff81210410 t __bpf_prog_run_args352
+ffffffff81210500 t __bpf_prog_run_args384
+ffffffff812105f0 t __bpf_prog_run_args416
+ffffffff812106e0 t __bpf_prog_run_args448
+ffffffff812107d0 t __bpf_prog_run_args480
+ffffffff812108c0 t __bpf_prog_run_args512
+ffffffff812109b0 t ___bpf_prog_run
+ffffffff81212440 t __bpf_prog_run32
+ffffffff81212520 t __bpf_prog_run64
+ffffffff81212630 t __bpf_prog_run96
+ffffffff81212770 t __bpf_prog_run128
+ffffffff812128e0 t __bpf_prog_run160
+ffffffff812129c0 t __bpf_prog_run192
+ffffffff81212aa0 t __bpf_prog_run224
+ffffffff81212b80 t __bpf_prog_run256
+ffffffff81212c60 t __bpf_prog_run288
+ffffffff81212d40 t __bpf_prog_run320
+ffffffff81212e20 t __bpf_prog_run352
+ffffffff81212f00 t __bpf_prog_run384
+ffffffff81212fe0 t __bpf_prog_run416
+ffffffff812130c0 t __bpf_prog_run448
+ffffffff812131a0 t __bpf_prog_run480
+ffffffff81213280 t __bpf_prog_run512
+ffffffff81213360 t __bpf_prog_ret1
+ffffffff81213370 t trace_raw_output_xdp_exception
+ffffffff812133f0 t trace_raw_output_xdp_bulk_tx
+ffffffff81213480 t trace_raw_output_xdp_redirect_template
+ffffffff81213520 t trace_raw_output_xdp_cpumap_kthread
+ffffffff812135e0 t trace_raw_output_xdp_cpumap_enqueue
+ffffffff81213670 t trace_raw_output_xdp_devmap_xmit
+ffffffff81213700 t trace_raw_output_mem_disconnect
+ffffffff81213780 t trace_raw_output_mem_connect
+ffffffff81213800 t trace_raw_output_mem_return_failed
+ffffffff81213880 t __static_call_return0
+ffffffff81213890 t __static_call_update
+ffffffff81213a80 t static_call_text_reserved
+ffffffff81213be0 t __static_call_init
+ffffffff81213e40 t static_call_site_cmp
+ffffffff81213e80 t static_call_site_swap
+ffffffff81213eb0 t static_call_module_notify
+ffffffff81214150 t perf_proc_update_handler
+ffffffff81214210 t perf_cpu_time_max_percent_handler
+ffffffff81214290 t perf_sample_event_took
+ffffffff81214390 t perf_pmu_disable
+ffffffff812143e0 t perf_pmu_enable
+ffffffff81214430 t perf_event_disable_local
+ffffffff812145d0 t __perf_event_disable
+ffffffff81214670 t perf_event_disable
+ffffffff812146e0 t _perf_event_disable
+ffffffff81214730 t perf_event_disable_inatomic
+ffffffff81214760 t perf_pmu_resched
+ffffffff81214800 t ctx_resched
+ffffffff81214950 t perf_event_enable
+ffffffff812149f0 t _perf_event_enable
+ffffffff81214a70 t perf_event_addr_filters_sync
+ffffffff81214af0 t perf_event_refresh
+ffffffff81214b40 t _perf_event_refresh
+ffffffff81214be0 t perf_sched_cb_dec
+ffffffff81214c70 t perf_sched_cb_inc
+ffffffff81214d20 t __perf_event_task_sched_out
+ffffffff812150b0 t __perf_event_task_sched_in
+ffffffff81215200 t perf_event_context_sched_in
+ffffffff812153a0 t perf_event_task_tick
+ffffffff81215740 t perf_event_read_local
+ffffffff81215940 t perf_event_release_kernel
+ffffffff81215c40 t perf_remove_from_owner
+ffffffff81215d50 t perf_remove_from_context
+ffffffff81215df0 t put_ctx
+ffffffff81215e90 t perf_event_read_value
+ffffffff81215ee0 t __perf_event_read_value
+ffffffff81215fd0 t perf_event_pause
+ffffffff81216070 t perf_event_period
+ffffffff81216150 t perf_event_task_enable
+ffffffff81216320 t perf_event_task_disable
+ffffffff81216470 t perf_event_update_userpage
+ffffffff812165f0 t ring_buffer_get
+ffffffff81216670 t ring_buffer_put
+ffffffff812166c0 t rb_free_rcu
+ffffffff812166e0 t perf_event_wakeup
+ffffffff81216780 t perf_event_header__init_id
+ffffffff812167a0 t __perf_event_header__init_id
+ffffffff812168e0 t perf_event__output_id_sample
+ffffffff812169d0 t perf_output_sample
+ffffffff81217530 t perf_output_read
+ffffffff81217ab0 t perf_callchain
+ffffffff81217b50 t perf_prepare_sample
+ffffffff81218420 t perf_get_page_size
+ffffffff812185c0 t perf_event_output_forward
+ffffffff812186a0 t perf_event_output_backward
+ffffffff81218780 t perf_event_output
+ffffffff81218870 t perf_event_exec
+ffffffff81218dd0 t perf_iterate_ctx
+ffffffff81218f10 t perf_event_fork
+ffffffff81218fb0 t perf_event_namespaces
+ffffffff812191b0 t perf_event_comm
+ffffffff81219290 t perf_iterate_sb
+ffffffff81219470 t perf_event_namespaces_output
+ffffffff81219630 t perf_event_mmap
+ffffffff81219c40 t perf_event_aux_event
+ffffffff81219d90 t perf_log_lost_samples
+ffffffff81219ed0 t perf_event_ksymbol
+ffffffff8121a0e0 t perf_event_ksymbol_output
+ffffffff8121a2b0 t perf_event_bpf_event
+ffffffff8121a6f0 t perf_event_bpf_output
+ffffffff8121a810 t perf_event_text_poke
+ffffffff8121a8b0 t perf_event_text_poke_output
+ffffffff8121abe0 t perf_event_itrace_started
+ffffffff8121ac00 t perf_report_aux_output_id
+ffffffff8121ad50 t perf_event_account_interrupt
+ffffffff8121ad70 t __perf_event_account_interrupt.llvm.5365918025763440479
+ffffffff8121ae60 t perf_event_overflow
+ffffffff8121ae80 t __perf_event_overflow.llvm.5365918025763440479
+ffffffff8121b010 t perf_swevent_set_period
+ffffffff8121b090 t perf_swevent_get_recursion_context
+ffffffff8121b110 t perf_swevent_put_recursion_context
+ffffffff8121b150 t ___perf_sw_event
+ffffffff8121b2d0 t __perf_sw_event
+ffffffff8121b3b0 t perf_trace_run_bpf_submit
+ffffffff8121b420 t perf_tp_event
+ffffffff8121b6b0 t perf_swevent_event
+ffffffff8121b810 t perf_event_set_bpf_prog
+ffffffff8121b8d0 t perf_event_free_bpf_prog
+ffffffff8121b8e0 t perf_bp_event
+ffffffff8121b9b0 t nr_addr_filters_show
+ffffffff8121b9e0 t perf_pmu_register
+ffffffff8121bf10 t pmu_dev_alloc
+ffffffff8121c010 t perf_pmu_start_txn
+ffffffff8121c080 t perf_pmu_commit_txn
+ffffffff8121c100 t perf_pmu_cancel_txn
+ffffffff8121c180 t perf_pmu_nop_txn
+ffffffff8121c190 t perf_pmu_nop_int
+ffffffff8121c1a0 t perf_pmu_nop_void
+ffffffff8121c1b0 t perf_event_nop_int
+ffffffff8121c1c0 t perf_event_idx_default
+ffffffff8121c1d0 t perf_pmu_unregister
+ffffffff8121c2a0 t __x64_sys_perf_event_open
+ffffffff8121d7c0 t perf_event_create_kernel_counter
+ffffffff8121d9a0 t perf_event_alloc
+ffffffff8121e0b0 t find_get_context
+ffffffff8121e640 t perf_install_in_context
+ffffffff8121e870 t perf_pmu_migrate_context
+ffffffff8121eb50 t perf_event_exit_task
+ffffffff8121eee0 t perf_event_free_task
+ffffffff8121f1f0 t perf_event_delayed_put
+ffffffff8121f230 t perf_event_get
+ffffffff8121f270 t perf_get_event
+ffffffff8121f2a0 t perf_event_attrs
+ffffffff8121f2c0 t perf_event_init_task
+ffffffff8121f5a0 t perf_event_init_cpu
+ffffffff8121f6b0 t perf_event_exit_cpu
+ffffffff8121f7a0 t perf_event_sysfs_show
+ffffffff8121f7d0 t perf_duration_warn
+ffffffff8121f820 t update_context_time
+ffffffff8121f870 t group_sched_out
+ffffffff8121f960 t event_sched_out
+ffffffff8121fbd0 t perf_event_set_state
+ffffffff8121fce0 t local_clock
+ffffffff8121fd00 t perf_event_update_time
+ffffffff8121fd70 t perf_event_ctx_lock_nested
+ffffffff8121fe20 t event_function_call
+ffffffff8121ffa0 t event_function
+ffffffff812200a0 t remote_function
+ffffffff81220100 t task_ctx_sched_out
+ffffffff81220140 t ctx_sched_out
+ffffffff812202d0 t ctx_sched_in
+ffffffff812203a0 t ctx_pinned_sched_in
+ffffffff81220410 t ctx_flexible_sched_in
+ffffffff81220480 t visit_groups_merge
+ffffffff81220d20 t perf_mux_hrtimer_restart
+ffffffff81220dd0 t event_sched_in
+ffffffff812211c0 t perf_log_throttle
+ffffffff81221340 t __perf_event_enable
+ffffffff81221530 t __perf_pmu_sched_task
+ffffffff81221630 t context_equiv
+ffffffff812216c0 t perf_event_sync_stat
+ffffffff81221860 t perf_adjust_period
+ffffffff81221a80 t __perf_remove_from_context
+ffffffff81221e00 t perf_group_detach
+ffffffff81222370 t list_del_event
+ffffffff81222490 t _free_event
+ffffffff81222810 t ring_buffer_attach
+ffffffff81222a80 t perf_addr_filters_splice
+ffffffff81222be0 t free_event_rcu
+ffffffff81222c10 t perf_sched_delayed
+ffffffff81222c60 t __perf_event_stop
+ffffffff81222cf0 t free_ctx
+ffffffff81222d30 t perf_event_read
+ffffffff81222fc0 t __perf_event_read
+ffffffff81223220 t __perf_event_period
+ffffffff81223370 t perf_event_exit_event
+ffffffff81223570 t perf_lock_task_context
+ffffffff812236c0 t perf_event_task_output
+ffffffff81223980 t perf_event_comm_output
+ffffffff81223bd0 t perf_event_mmap_output
+ffffffff81224080 t perf_event_switch_output
+ffffffff81224270 t perf_tp_event_init
+ffffffff812242c0 t perf_swevent_start
+ffffffff812242e0 t perf_swevent_stop
+ffffffff81224300 t perf_swevent_read
+ffffffff81224310 t tp_perf_event_destroy
+ffffffff81224320 t perf_uprobe_event_init
+ffffffff812243a0 t retprobe_show
+ffffffff812243d0 t ref_ctr_offset_show
+ffffffff81224400 t pmu_dev_release
+ffffffff81224410 t perf_event_mux_interval_ms_show
+ffffffff81224440 t perf_event_mux_interval_ms_store
+ffffffff812245b0 t perf_mux_hrtimer_handler
+ffffffff81224860 t rotate_ctx
+ffffffff81224930 t perf_copy_attr
+ffffffff81224c20 t perf_allow_kernel
+ffffffff81224c70 t perf_event_set_output
+ffffffff81224eb0 t ktime_get_real_ns
+ffffffff81224ed0 t ktime_get_boottime_ns
+ffffffff81224ef0 t ktime_get_clocktai_ns
+ffffffff81224f10 t perf_pending_irq
+ffffffff81225100 t perf_pending_task
+ffffffff81225240 t account_event
+ffffffff812254f0 t perf_try_init_event
+ffffffff81225600 t add_event_to_ctx
+ffffffff81225a50 t __perf_install_in_context
+ffffffff81225be0 t perf_read
+ffffffff81225ef0 t perf_poll
+ffffffff81225fb0 t perf_ioctl
+ffffffff81226da0 t perf_mmap
+ffffffff812272d0 t perf_release
+ffffffff812272f0 t perf_fasync
+ffffffff81227360 t __perf_read_group_add
+ffffffff812274f0 t _perf_event_reset
+ffffffff81227520 t perf_event_addr_filters_apply
+ffffffff812278d0 t perf_event_modify_breakpoint
+ffffffff812279b0 t get_uid
+ffffffff812279f0 t get_uid
+ffffffff81227a30 t get_uid
+ffffffff81227a70 t perf_event_init_userpage
+ffffffff81227ad0 t perf_mmap_open
+ffffffff81227b30 t perf_mmap_close
+ffffffff81227ef0 t perf_mmap_fault
+ffffffff81227fb0 t __perf_pmu_output_stop
+ffffffff81228070 t __perf_event_output_stop
+ffffffff81228100 t inherit_task_group
+ffffffff81228400 t inherit_event
+ffffffff812287c0 t __perf_event_exit_context
+ffffffff81228860 t perf_swevent_init
+ffffffff81228a90 t perf_swevent_add
+ffffffff81228ba0 t perf_swevent_del
+ffffffff81228bd0 t sw_perf_event_destroy
+ffffffff81228cb0 t cpu_clock_event_init
+ffffffff81228d90 t cpu_clock_event_add
+ffffffff81228e20 t cpu_clock_event_del
+ffffffff81228e80 t cpu_clock_event_start
+ffffffff81228f00 t cpu_clock_event_stop
+ffffffff81228f60 t cpu_clock_event_read
+ffffffff81228f90 t perf_swevent_hrtimer
+ffffffff812290e0 t task_clock_event_init
+ffffffff812291c0 t task_clock_event_add
+ffffffff81229250 t task_clock_event_del
+ffffffff812292b0 t task_clock_event_start
+ffffffff81229330 t task_clock_event_stop
+ffffffff81229390 t task_clock_event_read
+ffffffff812293e0 t perf_reboot
+ffffffff81229430 t perf_output_begin_forward
+ffffffff81229670 t perf_output_begin_backward
+ffffffff812298c0 t perf_output_begin
+ffffffff81229b40 t perf_output_copy
+ffffffff81229be0 t perf_output_skip
+ffffffff81229c70 t perf_output_end
+ffffffff81229c90 t perf_output_put_handle.llvm.15050351137221494495
+ffffffff81229d50 t perf_aux_output_flag
+ffffffff81229d70 t perf_aux_output_begin
+ffffffff81229f40 t rb_free_aux
+ffffffff81229f80 t perf_aux_output_end
+ffffffff8122a100 t perf_aux_output_skip
+ffffffff8122a1e0 t perf_get_aux
+ffffffff8122a210 t perf_output_copy_aux
+ffffffff8122a370 t rb_alloc_aux
+ffffffff8122a650 t __rb_free_aux
+ffffffff8122a750 t rb_alloc
+ffffffff8122a9c0 t rb_free
+ffffffff8122aab0 t perf_mmap_to_page
+ffffffff8122aba0 t get_callchain_buffers
+ffffffff8122ad00 t put_callchain_buffers
+ffffffff8122ad50 t get_callchain_entry
+ffffffff8122ae30 t put_callchain_entry
+ffffffff8122ae70 t get_perf_callchain
+ffffffff8122b000 t perf_event_max_stack_handler
+ffffffff8122b0e0 t release_callchain_buffers_rcu
+ffffffff8122b140 t arch_reserve_bp_slot
+ffffffff8122b150 t arch_release_bp_slot
+ffffffff8122b160 t arch_unregister_hw_breakpoint
+ffffffff8122b170 t reserve_bp_slot
+ffffffff8122b1b0 t bp_constraints_lock
+ffffffff8122b250 t __reserve_bp_slot
+ffffffff8122b5e0 t bp_constraints_unlock
+ffffffff8122b670 t release_bp_slot
+ffffffff8122b6c0 t dbg_reserve_bp_slot
+ffffffff8122b730 t dbg_release_bp_slot
+ffffffff8122b7b0 t register_perf_hw_breakpoint
+ffffffff8122b8f0 t register_user_hw_breakpoint
+ffffffff8122b920 t modify_user_hw_breakpoint_check
+ffffffff8122bb40 t modify_user_hw_breakpoint
+ffffffff8122bbf0 t unregister_hw_breakpoint
+ffffffff8122bc10 t register_wide_hw_breakpoint
+ffffffff8122bd60 t unregister_wide_hw_breakpoint
+ffffffff8122bdf0 t hw_breakpoint_is_used
+ffffffff8122bef0 t toggle_bp_slot
+ffffffff8122c9e0 t task_bp_pinned
+ffffffff8122cb90 t hw_breakpoint_event_init
+ffffffff8122cbe0 t hw_breakpoint_add
+ffffffff8122cc30 t hw_breakpoint_del
+ffffffff8122cc40 t hw_breakpoint_start
+ffffffff8122cc60 t hw_breakpoint_stop
+ffffffff8122cc80 t bp_perf_event_destroy
+ffffffff8122ccd0 t is_swbp_insn
+ffffffff8122ccf0 t is_trap_insn
+ffffffff8122cd00 t uprobe_write_opcode
+ffffffff8122d610 t update_ref_ctr
+ffffffff8122d940 t set_swbp
+ffffffff8122d960 t set_orig_insn
+ffffffff8122d980 t uprobe_unregister
+ffffffff8122da60 t __uprobe_unregister
+ffffffff8122db30 t put_uprobe
+ffffffff8122dc20 t uprobe_register
+ffffffff8122dc40 t __uprobe_register.llvm.14915217969093546966
+ffffffff8122df30 t uprobe_register_refctr
+ffffffff8122df40 t uprobe_apply
+ffffffff8122e070 t register_for_each_vma
+ffffffff8122e520 t uprobe_mmap
+ffffffff8122ea50 t install_breakpoint
+ffffffff8122ed00 t uprobe_munmap
+ffffffff8122ee30 t uprobe_clear_state
+ffffffff8122ef30 t uprobe_start_dup_mmap
+ffffffff8122ef90 t uprobe_end_dup_mmap
+ffffffff8122f000 t uprobe_dup_mmap
+ffffffff8122f030 t arch_uprobe_copy_ixol
+ffffffff8122f0c0 t uprobe_get_swbp_addr
+ffffffff8122f0e0 t uprobe_get_trap_addr
+ffffffff8122f120 t uprobe_free_utask
+ffffffff8122f240 t uprobe_copy_process
+ffffffff8122f450 t dup_xol_work
+ffffffff8122f4c0 t uprobe_deny_signal
+ffffffff8122f550 t arch_uprobe_ignore
+ffffffff8122f560 t uprobe_notify_resume
+ffffffff812304d0 t uprobe_pre_sstep_notifier
+ffffffff81230520 t uprobe_post_sstep_notifier
+ffffffff81230570 t __update_ref_ctr
+ffffffff812306c0 t __create_xol_area
+ffffffff81230930 t jump_label_lock
+ffffffff81230950 t jump_label_unlock
+ffffffff81230970 t static_key_count
+ffffffff81230990 t static_key_slow_inc_cpuslocked
+ffffffff81230a10 t jump_label_update
+ffffffff81230b20 t static_key_slow_inc
+ffffffff81230b50 t static_key_enable_cpuslocked
+ffffffff81230bd0 t static_key_enable
+ffffffff81230c00 t static_key_disable_cpuslocked
+ffffffff81230c80 t static_key_disable
+ffffffff81230cb0 t jump_label_update_timeout
+ffffffff81230ce0 t static_key_slow_dec
+ffffffff81230d30 t static_key_slow_dec_cpuslocked
+ffffffff81230d70 t __static_key_slow_dec_cpuslocked
+ffffffff81230de0 t __static_key_slow_dec_deferred
+ffffffff81230e70 t __static_key_deferred_flush
+ffffffff81230eb0 t jump_label_rate_limit
+ffffffff81230f30 t jump_label_init_type
+ffffffff81230f50 t jump_label_text_reserved
+ffffffff812310d0 t jump_label_swap
+ffffffff81231120 t jump_label_cmp
+ffffffff81231180 t jump_label_module_notify
+ffffffff812315c0 t __jump_label_update
+ffffffff81231720 t trace_rcu_dyntick
+ffffffff81231780 t ct_irq_enter_irqson
+ffffffff812317e0 t ct_irq_exit_irqson
+ffffffff81231840 t memremap
+ffffffff81231a30 t memunmap
+ffffffff81231a60 t devm_memremap
+ffffffff81231b00 t devm_memremap_release
+ffffffff81231b30 t devm_memunmap
+ffffffff81231b60 t devm_memremap_match
+ffffffff81231b80 t __traceiter_rseq_update
+ffffffff81231bd0 t __traceiter_rseq_ip_fixup
+ffffffff81231c40 t trace_event_raw_event_rseq_update
+ffffffff81231d00 t perf_trace_rseq_update
+ffffffff81231df0 t trace_event_raw_event_rseq_ip_fixup
+ffffffff81231ed0 t perf_trace_rseq_ip_fixup
+ffffffff81231fe0 t __rseq_handle_notify_resume
+ffffffff81232530 t __x64_sys_rseq
+ffffffff81232670 t trace_raw_output_rseq_update
+ffffffff812326c0 t trace_raw_output_rseq_ip_fixup
+ffffffff81232720 t __traceiter_mm_filemap_delete_from_page_cache
+ffffffff81232770 t __traceiter_mm_filemap_add_to_page_cache
+ffffffff812327c0 t __traceiter_filemap_set_wb_err
+ffffffff81232810 t __traceiter_file_check_and_advance_wb_err
+ffffffff81232860 t trace_event_raw_event_mm_filemap_op_page_cache
+ffffffff81232980 t perf_trace_mm_filemap_op_page_cache
+ffffffff81232ad0 t trace_event_raw_event_filemap_set_wb_err
+ffffffff81232bb0 t perf_trace_filemap_set_wb_err
+ffffffff81232cd0 t trace_event_raw_event_file_check_and_advance_wb_err
+ffffffff81232de0 t perf_trace_file_check_and_advance_wb_err
+ffffffff81232f20 t __filemap_remove_folio
+ffffffff812330a0 t filemap_unaccount_folio
+ffffffff81233230 t filemap_free_folio
+ffffffff81233290 t filemap_remove_folio
+ffffffff81233360 t delete_from_page_cache_batch
+ffffffff81233660 t filemap_check_errors
+ffffffff812336d0 t filemap_fdatawrite_wbc
+ffffffff81233750 t __filemap_fdatawrite_range
+ffffffff81233800 t filemap_fdatawrite
+ffffffff812338c0 t filemap_fdatawrite_range
+ffffffff81233980 t filemap_flush
+ffffffff81233a30 t filemap_range_has_page
+ffffffff81233b00 t filemap_fdatawait_range
+ffffffff81233b60 t __filemap_fdatawait_range.llvm.549743729320992153
+ffffffff81233d10 t filemap_fdatawait_range_keep_errors
+ffffffff81233d50 t file_fdatawait_range
+ffffffff81233d80 t file_check_and_advance_wb_err
+ffffffff81233e60 t filemap_fdatawait_keep_errors
+ffffffff81233eb0 t filemap_range_has_writeback
+ffffffff81234040 t filemap_write_and_wait_range
+ffffffff812341a0 t __filemap_set_wb_err
+ffffffff81234210 t file_write_and_wait_range
+ffffffff81234350 t replace_page_cache_page
+ffffffff81234540 t __filemap_add_folio
+ffffffff812348b0 t filemap_add_folio
+ffffffff81234960 t filemap_invalidate_lock_two
+ffffffff812349b0 t filemap_invalidate_unlock_two
+ffffffff812349f0 t migration_entry_wait_on_locked
+ffffffff81234c30 t wake_page_function
+ffffffff81234ce0 t folio_wait_bit
+ffffffff81234d00 t folio_wait_bit_common.llvm.549743729320992153
+ffffffff81234f80 t folio_wait_bit_killable
+ffffffff81234fa0 t folio_add_wait_queue
+ffffffff81235060 t folio_unlock
+ffffffff81235080 t folio_wake_bit
+ffffffff812351c0 t folio_end_private_2
+ffffffff812351f0 t folio_wait_private_2
+ffffffff81235240 t folio_wait_private_2_killable
+ffffffff81235290 t folio_end_writeback
+ffffffff81235310 t page_endio
+ffffffff81235430 t __folio_lock
+ffffffff81235450 t __folio_lock_killable
+ffffffff81235470 t __folio_lock_or_retry
+ffffffff81235550 t page_cache_next_miss
+ffffffff81235640 t page_cache_prev_miss
+ffffffff81235730 t __filemap_get_folio
+ffffffff81235ad0 t find_get_entries
+ffffffff81235c50 t find_lock_entries
+ffffffff81235e60 t filemap_get_folios
+ffffffff81236010 t filemap_get_folios_contig
+ffffffff81236240 t find_get_pages_range_tag
+ffffffff81236440 t filemap_read
+ffffffff812370c0 t generic_file_read_iter
+ffffffff81237200 t mapping_seek_hole_data
+ffffffff81237610 t filemap_fault
+ffffffff81237b60 t count_memcg_event_mm
+ffffffff81237bf0 t do_sync_mmap_readahead
+ffffffff81237e50 t filemap_read_folio
+ffffffff81237f50 t filemap_map_pages
+ffffffff812384c0 t filemap_page_mkwrite
+ffffffff81238640 t generic_file_mmap
+ffffffff81238690 t generic_file_readonly_mmap
+ffffffff812386f0 t read_cache_folio
+ffffffff81238710 t do_read_cache_folio.llvm.549743729320992153
+ffffffff81238920 t read_cache_page
+ffffffff81238960 t read_cache_page_gfp
+ffffffff812389b0 t dio_warn_stale_pagecache
+ffffffff81238b10 t generic_file_direct_write
+ffffffff81238d60 t generic_perform_write
+ffffffff81238fb0 t __generic_file_write_iter
+ffffffff81239100 t generic_file_write_iter
+ffffffff812391c0 t filemap_release_folio
+ffffffff81239210 t trace_raw_output_mm_filemap_op_page_cache
+ffffffff81239290 t trace_raw_output_filemap_set_wb_err
+ffffffff81239300 t trace_raw_output_file_check_and_advance_wb_err
+ffffffff81239380 t page_mapcount
+ffffffff812393b0 t filemap_get_read_batch
+ffffffff81239600 t next_uptodate_page
+ffffffff812397e0 t mempool_exit
+ffffffff81239880 t remove_element
+ffffffff812398d0 t mempool_destroy
+ffffffff81239970 t mempool_init_node
+ffffffff81239a50 t mempool_init
+ffffffff81239a70 t mempool_create
+ffffffff81239af0 t mempool_create_node
+ffffffff81239bb0 t mempool_resize
+ffffffff81239d90 t mempool_alloc
+ffffffff81239f50 t mempool_free
+ffffffff81239fe0 t mempool_alloc_slab
+ffffffff8123a000 t mempool_free_slab
+ffffffff8123a020 t mempool_kmalloc
+ffffffff8123a040 t mempool_kfree
+ffffffff8123a050 t mempool_alloc_pages
+ffffffff8123a070 t mempool_free_pages
+ffffffff8123a080 t __traceiter_oom_score_adj_update
+ffffffff8123a0d0 t __traceiter_reclaim_retry_zone
+ffffffff8123a160 t __traceiter_mark_victim
+ffffffff8123a1b0 t __traceiter_wake_reaper
+ffffffff8123a200 t __traceiter_start_task_reaping
+ffffffff8123a250 t __traceiter_finish_task_reaping
+ffffffff8123a2a0 t __traceiter_skip_task_reaping
+ffffffff8123a2f0 t __traceiter_compact_retry
+ffffffff8123a380 t trace_event_raw_event_oom_score_adj_update
+ffffffff8123a460 t perf_trace_oom_score_adj_update
+ffffffff8123a580 t trace_event_raw_event_reclaim_retry_zone
+ffffffff8123a680 t perf_trace_reclaim_retry_zone
+ffffffff8123a7c0 t trace_event_raw_event_mark_victim
+ffffffff8123a880 t perf_trace_mark_victim
+ffffffff8123a970 t trace_event_raw_event_wake_reaper
+ffffffff8123aa30 t perf_trace_wake_reaper
+ffffffff8123ab20 t trace_event_raw_event_start_task_reaping
+ffffffff8123abe0 t perf_trace_start_task_reaping
+ffffffff8123acd0 t trace_event_raw_event_finish_task_reaping
+ffffffff8123ad90 t perf_trace_finish_task_reaping
+ffffffff8123ae80 t trace_event_raw_event_skip_task_reaping
+ffffffff8123af40 t perf_trace_skip_task_reaping
+ffffffff8123b030 t trace_event_raw_event_compact_retry
+ffffffff8123b140 t perf_trace_compact_retry
+ffffffff8123b280 t find_lock_task_mm
+ffffffff8123b310 t oom_badness
+ffffffff8123b4c0 t process_shares_mm
+ffffffff8123b510 t exit_oom_victim
+ffffffff8123b550 t oom_killer_enable
+ffffffff8123b570 t oom_killer_disable
+ffffffff8123b710 t register_oom_notifier
+ffffffff8123b730 t unregister_oom_notifier
+ffffffff8123b750 t out_of_memory
+ffffffff8123bab0 t task_will_free_mem
+ffffffff8123bbc0 t mark_oom_victim
+ffffffff8123bc80 t oom_kill_process
+ffffffff8123be90 t dump_header
+ffffffff8123c0e0 t pagefault_out_of_memory
+ffffffff8123c140 t __x64_sys_process_mrelease
+ffffffff8123c330 t trace_raw_output_oom_score_adj_update
+ffffffff8123c390 t trace_raw_output_reclaim_retry_zone
+ffffffff8123c430 t trace_raw_output_mark_victim
+ffffffff8123c480 t trace_raw_output_wake_reaper
+ffffffff8123c4d0 t trace_raw_output_start_task_reaping
+ffffffff8123c520 t trace_raw_output_finish_task_reaping
+ffffffff8123c570 t trace_raw_output_skip_task_reaping
+ffffffff8123c5c0 t trace_raw_output_compact_retry
+ffffffff8123c670 t oom_reaper
+ffffffff8123ca50 t __oom_reap_task_mm
+ffffffff8123cc20 t wake_oom_reaper
+ffffffff8123cd20 t __oom_kill_process
+ffffffff8123d1d0 t oom_kill_memcg_member
+ffffffff8123d240 t oom_evaluate_task
+ffffffff8123d390 t dump_task
+ffffffff8123d4e0 t generic_fadvise
+ffffffff8123d780 t vfs_fadvise
+ffffffff8123d7b0 t ksys_fadvise64_64
+ffffffff8123d830 t __x64_sys_fadvise64_64
+ffffffff8123d8c0 t __x64_sys_fadvise64
+ffffffff8123d950 t copy_from_kernel_nofault
+ffffffff8123da00 t copy_to_kernel_nofault
+ffffffff8123da90 t strncpy_from_kernel_nofault
+ffffffff8123db10 t copy_from_user_nofault
+ffffffff8123dba0 t copy_to_user_nofault
+ffffffff8123dc30 t strncpy_from_user_nofault
+ffffffff8123dc90 t strnlen_user_nofault
+ffffffff8123dcc0 t __copy_overflow
+ffffffff8123dce0 t global_dirty_limits
+ffffffff8123dd90 t domain_dirty_limits
+ffffffff8123df30 t node_dirty_ok
+ffffffff8123e0d0 t wb_writeout_inc
+ffffffff8123e130 t __wb_writeout_add
+ffffffff8123e230 t wb_domain_init
+ffffffff8123e290 t writeout_period
+ffffffff8123e320 t wb_domain_exit
+ffffffff8123e350 t bdi_set_min_ratio
+ffffffff8123e3c0 t bdi_set_max_ratio
+ffffffff8123e420 t wb_calc_thresh
+ffffffff8123e590 t wb_update_bandwidth
+ffffffff8123e630 t __wb_update_bandwidth
+ffffffff8123e8c0 t balance_dirty_pages_ratelimited_flags
+ffffffff8123ec10 t balance_dirty_pages
+ffffffff8123f6a0 t balance_dirty_pages_ratelimited
+ffffffff8123f6c0 t wb_over_bg_thresh
+ffffffff8123fc40 t laptop_mode_timer_fn
+ffffffff8123fc70 t laptop_io_completion
+ffffffff8123fca0 t laptop_sync_completion
+ffffffff8123fcf0 t writeback_set_ratelimit
+ffffffff8123fdd0 t page_writeback_cpu_online
+ffffffff8123feb0 t tag_pages_for_writeback
+ffffffff81240030 t write_cache_pages
+ffffffff81240530 t generic_writepages
+ffffffff812405e0 t __writepage
+ffffffff81240650 t do_writepages
+ffffffff81240890 t folio_write_one
+ffffffff812409d0 t folio_wait_writeback
+ffffffff81240a60 t folio_clear_dirty_for_io
+ffffffff81240c40 t noop_dirty_folio
+ffffffff81240c70 t folio_account_cleaned
+ffffffff81240d60 t __folio_mark_dirty
+ffffffff81240fa0 t filemap_dirty_folio
+ffffffff81241010 t folio_account_redirty
+ffffffff81241110 t folio_redirty_for_writepage
+ffffffff812411b0 t folio_mark_dirty
+ffffffff81241210 t set_page_dirty_lock
+ffffffff81241280 t __folio_cancel_dirty
+ffffffff81241330 t __folio_end_writeback
+ffffffff81241570 t __folio_start_writeback
+ffffffff812417d0 t folio_wait_writeback_killable
+ffffffff81241870 t folio_wait_stable
+ffffffff812418a0 t wb_update_dirty_ratelimit
+ffffffff81241aa0 t wb_dirty_limits
+ffffffff81241cc0 t wb_position_ratio
+ffffffff81241f10 t dirty_background_ratio_handler
+ffffffff81241f40 t dirty_background_bytes_handler
+ffffffff81241f80 t dirty_ratio_handler
+ffffffff812420a0 t dirty_bytes_handler
+ffffffff812421d0 t dirty_writeback_centisecs_handler
+ffffffff81242240 t page_mapping
+ffffffff81242260 t unlock_page
+ffffffff81242280 t end_page_writeback
+ffffffff812422a0 t wait_on_page_writeback
+ffffffff812422c0 t wait_for_stable_page
+ffffffff812422e0 t page_mapped
+ffffffff81242300 t mark_page_accessed
+ffffffff81242320 t set_page_writeback
+ffffffff81242350 t set_page_dirty
+ffffffff81242370 t __set_page_dirty_nobuffers
+ffffffff812423c0 t clear_page_dirty_for_io
+ffffffff812423e0 t redirty_page_for_writepage
+ffffffff81242400 t lru_cache_add
+ffffffff81242420 t lru_cache_add_inactive_or_unevictable
+ffffffff81242440 t add_to_page_cache_lru
+ffffffff81242470 t pagecache_get_page
+ffffffff812424c0 t grab_cache_page_write_begin
+ffffffff812424e0 t delete_from_page_cache
+ffffffff81242500 t try_to_release_page
+ffffffff81242530 t isolate_lru_page
+ffffffff81242580 t putback_lru_page
+ffffffff812425a0 t file_ra_state_init
+ffffffff812425d0 t readahead_gfp_mask
+ffffffff812425f0 t page_cache_ra_unbounded
+ffffffff81242770 t read_pages
+ffffffff812429b0 t force_page_cache_ra
+ffffffff81242a70 t do_page_cache_ra
+ffffffff81242ab0 t page_cache_ra_order
+ffffffff81242d20 t page_cache_sync_ra
+ffffffff81242e40 t ondemand_readahead
+ffffffff81243120 t page_cache_async_ra
+ffffffff81243170 t ksys_readahead
+ffffffff81243210 t __x64_sys_readahead
+ffffffff812432b0 t readahead_expand
+ffffffff812434c0 t __traceiter_mm_lru_insertion
+ffffffff81243510 t __traceiter_mm_lru_activate
+ffffffff81243560 t trace_event_raw_event_mm_lru_insertion
+ffffffff812436d0 t perf_trace_mm_lru_insertion
+ffffffff81243880 t trace_event_raw_event_mm_lru_activate
+ffffffff81243950 t perf_trace_mm_lru_activate
+ffffffff81243a50 t __folio_put
+ffffffff81243aa0 t put_pages_list
+ffffffff81243b80 t get_kernel_pages
+ffffffff81243c30 t folio_rotate_reclaimable
+ffffffff81243d40 t lru_move_tail_fn
+ffffffff81244060 t lru_note_cost
+ffffffff812441b0 t lru_note_cost_folio
+ffffffff81244240 t folio_activate
+ffffffff81244320 t folio_activate_fn
+ffffffff812446a0 t folio_mark_accessed
+ffffffff81244800 t folio_add_lru
+ffffffff812448f0 t lru_add_fn
+ffffffff81244ae0 t folio_add_lru_vma
+ffffffff81244b10 t lru_add_drain_cpu
+ffffffff81244c70 t folio_batch_move_lru
+ffffffff81244da0 t lru_deactivate_file_fn
+ffffffff81245220 t lru_deactivate_fn
+ffffffff81245560 t lru_lazyfree_fn
+ffffffff812458c0 t deactivate_file_folio
+ffffffff81245980 t deactivate_page
+ffffffff81245a80 t mark_page_lazyfree
+ffffffff81245ba0 t lru_add_drain
+ffffffff81245c00 t lru_add_drain_cpu_zone
+ffffffff81245c70 t lru_add_drain_all
+ffffffff81245c90 t __lru_add_drain_all.llvm.17111586598010100953
+ffffffff81245ea0 t lru_cache_disable
+ffffffff81245ed0 t release_pages
+ffffffff81246330 t zone_stat_sub_folio
+ffffffff81246370 t __pagevec_release
+ffffffff812463a0 t folio_batch_remove_exceptionals
+ffffffff81246430 t pagevec_lookup_range_tag
+ffffffff81246460 t trace_raw_output_mm_lru_insertion
+ffffffff81246540 t trace_raw_output_mm_lru_activate
+ffffffff812465a0 t __page_cache_release
+ffffffff81246840 t lru_gen_add_folio
+ffffffff81246ac0 t lru_gen_add_folio
+ffffffff81246d40 t lru_gen_update_size
+ffffffff81246e30 t lru_gen_update_size
+ffffffff81247000 t lru_gen_update_size
+ffffffff812470f0 t lru_add_drain_per_cpu
+ffffffff81247150 t folio_invalidate
+ffffffff81247180 t truncate_inode_folio
+ffffffff81247210 t truncate_inode_partial_folio
+ffffffff81247390 t generic_error_remove_page
+ffffffff812473e0 t invalidate_inode_page
+ffffffff81247490 t truncate_inode_pages_range
+ffffffff81247c80 t truncate_folio_batch_exceptionals
+ffffffff81247e30 t truncate_inode_pages
+ffffffff81247e50 t truncate_inode_pages_final
+ffffffff81247ea0 t invalidate_mapping_pagevec
+ffffffff81248240 t invalidate_mapping_pages
+ffffffff81248260 t invalidate_inode_pages2_range
+ffffffff81248710 t invalidate_inode_pages2
+ffffffff81248730 t truncate_pagecache
+ffffffff81248790 t truncate_setsize
+ffffffff81248810 t pagecache_isize_extended
+ffffffff812488e0 t truncate_pagecache_range
+ffffffff81248940 t clear_shadow_entry
+ffffffff81248a30 t __traceiter_mm_vmscan_kswapd_sleep
+ffffffff81248a80 t __traceiter_mm_vmscan_kswapd_wake
+ffffffff81248ae0 t __traceiter_mm_vmscan_wakeup_kswapd
+ffffffff81248b50 t __traceiter_mm_vmscan_direct_reclaim_begin
+ffffffff81248ba0 t __traceiter_mm_vmscan_memcg_reclaim_begin
+ffffffff81248bf0 t __traceiter_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff81248c40 t __traceiter_mm_vmscan_direct_reclaim_end
+ffffffff81248c90 t __traceiter_mm_vmscan_memcg_reclaim_end
+ffffffff81248ce0 t __traceiter_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff81248d30 t __traceiter_mm_shrink_slab_start
+ffffffff81248db0 t __traceiter_mm_shrink_slab_end
+ffffffff81248e30 t __traceiter_mm_vmscan_lru_isolate
+ffffffff81248eb0 t __traceiter_mm_vmscan_write_folio
+ffffffff81248f00 t __traceiter_mm_vmscan_lru_shrink_inactive
+ffffffff81248f80 t __traceiter_mm_vmscan_lru_shrink_active
+ffffffff81249000 t __traceiter_mm_vmscan_node_reclaim_begin
+ffffffff81249060 t __traceiter_mm_vmscan_node_reclaim_end
+ffffffff812490b0 t __traceiter_mm_vmscan_throttled
+ffffffff81249120 t trace_event_raw_event_mm_vmscan_kswapd_sleep
+ffffffff812491e0 t perf_trace_mm_vmscan_kswapd_sleep
+ffffffff812492d0 t trace_event_raw_event_mm_vmscan_kswapd_wake
+ffffffff812493a0 t perf_trace_mm_vmscan_kswapd_wake
+ffffffff812494b0 t trace_event_raw_event_mm_vmscan_wakeup_kswapd
+ffffffff81249590 t perf_trace_mm_vmscan_wakeup_kswapd
+ffffffff812496a0 t trace_event_raw_event_mm_vmscan_direct_reclaim_begin_template
+ffffffff81249760 t perf_trace_mm_vmscan_direct_reclaim_begin_template
+ffffffff81249860 t trace_event_raw_event_mm_vmscan_direct_reclaim_end_template
+ffffffff81249920 t perf_trace_mm_vmscan_direct_reclaim_end_template
+ffffffff81249a10 t trace_event_raw_event_mm_shrink_slab_start
+ffffffff81249b20 t perf_trace_mm_shrink_slab_start
+ffffffff81249c70 t trace_event_raw_event_mm_shrink_slab_end
+ffffffff81249d70 t perf_trace_mm_shrink_slab_end
+ffffffff81249ea0 t trace_event_raw_event_mm_vmscan_lru_isolate
+ffffffff81249fa0 t perf_trace_mm_vmscan_lru_isolate
+ffffffff8124a0e0 t trace_event_raw_event_mm_vmscan_write_folio
+ffffffff8124a1c0 t perf_trace_mm_vmscan_write_folio
+ffffffff8124a2e0 t trace_event_raw_event_mm_vmscan_lru_shrink_inactive
+ffffffff8124a420 t perf_trace_mm_vmscan_lru_shrink_inactive
+ffffffff8124a590 t trace_event_raw_event_mm_vmscan_lru_shrink_active
+ffffffff8124a690 t perf_trace_mm_vmscan_lru_shrink_active
+ffffffff8124a7d0 t trace_event_raw_event_mm_vmscan_node_reclaim_begin
+ffffffff8124a8a0 t perf_trace_mm_vmscan_node_reclaim_begin
+ffffffff8124a9b0 t trace_event_raw_event_mm_vmscan_throttled
+ffffffff8124aa90 t perf_trace_mm_vmscan_throttled
+ffffffff8124abb0 t free_shrinker_info
+ffffffff8124abe0 t alloc_shrinker_info
+ffffffff8124acd0 t set_shrinker_bit
+ffffffff8124ad30 t reparent_shrinker_deferred
+ffffffff8124add0 t zone_reclaimable_pages
+ffffffff8124af90 t prealloc_shrinker
+ffffffff8124afa0 t __prealloc_shrinker.llvm.18443044726611978187
+ffffffff8124b270 t free_prealloced_shrinker
+ffffffff8124b2d0 t register_shrinker_prepared
+ffffffff8124b340 t register_shrinker
+ffffffff8124b3c0 t unregister_shrinker
+ffffffff8124b460 t synchronize_shrinkers
+ffffffff8124b490 t drop_slab
+ffffffff8124b530 t reclaim_throttle
+ffffffff8124b7b0 t __acct_reclaim_writeback
+ffffffff8124b830 t remove_mapping
+ffffffff8124b880 t __remove_mapping
+ffffffff8124ba70 t folio_putback_lru
+ffffffff8124baa0 t reclaim_clean_pages_from_list
+ffffffff8124bd60 t shrink_folio_list
+ffffffff8124cb80 t folio_isolate_lru
+ffffffff8124cd90 t reclaim_pages
+ffffffff8124d040 t lru_gen_add_mm
+ffffffff8124d120 t lru_gen_del_mm
+ffffffff8124d290 t lru_gen_migrate_mm
+ffffffff8124d3b0 t lru_gen_look_around
+ffffffff8124d8d0 t get_pte_pfn
+ffffffff8124d9d0 t lru_gen_online_memcg
+ffffffff8124dac0 t lru_gen_offline_memcg
+ffffffff8124db00 t lru_gen_rotate_memcg
+ffffffff8124dd00 t lru_gen_release_memcg
+ffffffff8124ddd0 t lru_gen_soft_reclaim
+ffffffff8124ddf0 t lru_gen_init_lruvec
+ffffffff8124df40 t lru_gen_init_pgdat
+ffffffff8124e010 t lru_gen_init_memcg
+ffffffff8124e040 t lru_gen_exit_memcg
+ffffffff8124e0c0 t try_to_free_pages
+ffffffff8124e670 t do_try_to_free_pages
+ffffffff8124eb20 t mem_cgroup_shrink_node
+ffffffff8124ed50 t shrink_lruvec
+ffffffff8124fc00 t try_to_free_mem_cgroup_pages
+ffffffff8124fec0 t kswapd
+ffffffff81251100 t wakeup_kswapd
+ffffffff81251270 t pgdat_balanced
+ffffffff81251410 t kswapd_run
+ffffffff812514b0 t kswapd_stop
+ffffffff812514f0 t check_move_unevictable_pages
+ffffffff81251620 t check_move_unevictable_folios
+ffffffff81251a90 t trace_raw_output_mm_vmscan_kswapd_sleep
+ffffffff81251ae0 t trace_raw_output_mm_vmscan_kswapd_wake
+ffffffff81251b40 t trace_raw_output_mm_vmscan_wakeup_kswapd
+ffffffff81251bd0 t trace_raw_output_mm_vmscan_direct_reclaim_begin_template
+ffffffff81251c60 t trace_raw_output_mm_vmscan_direct_reclaim_end_template
+ffffffff81251cb0 t trace_raw_output_mm_shrink_slab_start
+ffffffff81251d80 t trace_raw_output_mm_shrink_slab_end
+ffffffff81251df0 t trace_raw_output_mm_vmscan_lru_isolate
+ffffffff81251eb0 t trace_raw_output_mm_vmscan_write_folio
+ffffffff81251f50 t trace_raw_output_mm_vmscan_lru_shrink_inactive
+ffffffff81252080 t trace_raw_output_mm_vmscan_lru_shrink_active
+ffffffff81252150 t trace_raw_output_mm_vmscan_node_reclaim_begin
+ffffffff812521e0 t trace_raw_output_mm_vmscan_throttled
+ffffffff81252280 t shrink_slab
+ffffffff81252570 t do_shrink_slab
+ffffffff81252860 t show_min_ttl
+ffffffff81252890 t store_min_ttl
+ffffffff81252900 t show_enabled
+ffffffff81252940 t store_enabled
+ffffffff81253150 t lru_gen_seq_write
+ffffffff81253860 t lru_gen_seq_open
+ffffffff81253880 t try_to_inc_max_seq
+ffffffff812543f0 t walk_pud_range
+ffffffff81255090 t should_skip_vma
+ffffffff81255160 t reset_batch_size
+ffffffff81255460 t walk_pmd_range_locked
+ffffffff81255a00 t evict_folios
+ffffffff81257170 t move_folios_to_lru
+ffffffff812574a0 t lru_gen_seq_start
+ffffffff81257540 t lru_gen_seq_stop
+ffffffff81257590 t lru_gen_seq_next
+ffffffff812575e0 t lru_gen_seq_show
+ffffffff81257cf0 t allow_direct_reclaim
+ffffffff81257e30 t shrink_node
+ffffffff81258c90 t shrink_one
+ffffffff81258e40 t lruvec_is_sizable
+ffffffff81258fd0 t try_to_shrink_lruvec
+ffffffff812592e0 t shrink_active_list
+ffffffff81259740 t isolate_lru_folios
+ffffffff81259c50 t vma_is_shmem
+ffffffff81259c70 t shmem_charge
+ffffffff81259dd0 t shmem_recalc_inode
+ffffffff81259e60 t shmem_uncharge
+ffffffff81259f80 t shmem_is_huge
+ffffffff8125a030 t shmem_partial_swap_usage
+ffffffff8125a1a0 t shmem_swap_usage
+ffffffff8125a200 t shmem_unlock_mapping
+ffffffff8125a350 t shmem_truncate_range
+ffffffff8125a390 t shmem_undo_range
+ffffffff8125abe0 t shmem_unuse
+ffffffff8125b250 t shmem_get_folio
+ffffffff8125b280 t shmem_get_folio_gfp
+ffffffff8125bb30 t shmem_get_unmapped_area
+ffffffff8125bd90 t shmem_lock
+ffffffff8125be20 t shmem_mfill_atomic_pte
+ffffffff8125c250 t shmem_add_to_page_cache
+ffffffff8125c500 t shmem_writepage.llvm.12035218767219187336
+ffffffff8125c950 t shmem_write_begin.llvm.12035218767219187336
+ffffffff8125ca20 t shmem_write_end.llvm.12035218767219187336
+ffffffff8125cc20 t shmem_error_remove_page.llvm.12035218767219187336
+ffffffff8125cc30 t shmem_init_fs_context
+ffffffff8125cca0 t shmem_enabled_show
+ffffffff8125ce10 t shmem_enabled_store
+ffffffff8125cf90 t shmem_kernel_file_setup
+ffffffff8125cfc0 t __shmem_file_setup.llvm.12035218767219187336
+ffffffff8125d110 t shmem_file_setup
+ffffffff8125d140 t shmem_file_setup_with_mnt
+ffffffff8125d160 t shmem_zero_setup
+ffffffff8125d1d0 t shmem_read_mapping_page_gfp
+ffffffff8125d280 t reclaim_shmem_address_space
+ffffffff8125d470 t shmem_swapin_folio
+ffffffff8125da10 t shmem_replace_folio
+ffffffff8125dc70 t shmem_alloc_and_acct_folio
+ffffffff8125df10 t shmem_unused_huge_shrink
+ffffffff8125e2d0 t shmem_fault.llvm.12035218767219187336
+ffffffff8125e4b0 t synchronous_wake_function
+ffffffff8125e500 t maybe_unlock_mmap_for_io
+ffffffff8125e560 t shmem_free_fc
+ffffffff8125e580 t shmem_parse_one
+ffffffff8125e7e0 t shmem_parse_options
+ffffffff8125e8c0 t shmem_get_tree
+ffffffff8125e8e0 t shmem_reconfigure
+ffffffff8125ea70 t shmem_fill_super
+ffffffff8125ecc0 t shmem_get_inode
+ffffffff8125f0c0 t shmem_put_super
+ffffffff8125f100 t shmem_encode_fh
+ffffffff8125f190 t shmem_fh_to_dentry
+ffffffff8125f1f0 t shmem_get_parent
+ffffffff8125f210 t shmem_match
+ffffffff8125f240 t shmem_alloc_inode
+ffffffff8125f280 t shmem_destroy_inode
+ffffffff8125f290 t shmem_free_in_core_inode
+ffffffff8125f2d0 t shmem_evict_inode
+ffffffff8125f5b0 t shmem_statfs
+ffffffff8125f650 t shmem_show_options
+ffffffff8125f790 t shmem_unused_huge_count
+ffffffff8125f7b0 t shmem_unused_huge_scan
+ffffffff8125f7f0 t shmem_xattr_handler_get
+ffffffff8125f830 t shmem_xattr_handler_set
+ffffffff8125f8b0 t shmem_setattr
+ffffffff8125fa90 t shmem_getattr
+ffffffff8125fc30 t shmem_listxattr
+ffffffff8125fc50 t shmem_fileattr_set
+ffffffff8125fd00 t shmem_fileattr_get
+ffffffff8125fd30 t shmem_file_llseek
+ffffffff8125fdf0 t shmem_file_read_iter
+ffffffff81260100 t shmem_mmap
+ffffffff812601c0 t shmem_fallocate
+ffffffff81260660 t shmem_create
+ffffffff81260680 t shmem_link
+ffffffff81260760 t shmem_unlink
+ffffffff81260820 t shmem_symlink
+ffffffff81260a60 t shmem_mkdir
+ffffffff81260aa0 t shmem_rmdir
+ffffffff81260af0 t shmem_mknod
+ffffffff81260bd0 t shmem_rename2
+ffffffff81260dc0 t shmem_tmpfile
+ffffffff81260e60 t shmem_initxattrs
+ffffffff81260f30 t shmem_get_link
+ffffffff81261020 t shmem_put_link
+ffffffff81261050 t shmem_init_inode
+ffffffff81261070 t kfree_const
+ffffffff812610a0 t kstrdup
+ffffffff81261100 t kstrdup_const
+ffffffff81261180 t kstrndup
+ffffffff812611e0 t kmemdup
+ffffffff81261230 t kmemdup_nul
+ffffffff81261290 t memdup_user
+ffffffff81261320 t vmemdup_user
+ffffffff81261450 t kvfree
+ffffffff81261480 t strndup_user
+ffffffff81261540 t memdup_user_nul
+ffffffff812615d0 t vma_is_stack_for_current
+ffffffff81261620 t vma_set_file
+ffffffff81261650 t randomize_stack_top
+ffffffff812616a0 t randomize_page
+ffffffff81261720 t __account_locked_vm
+ffffffff81261780 t account_locked_vm
+ffffffff81261880 t vm_mmap_pgoff
+ffffffff81261a00 t vm_mmap
+ffffffff81261a40 t kvmalloc_node
+ffffffff81261b20 t kvfree_sensitive
+ffffffff81261b60 t kvrealloc
+ffffffff81261bd0 t __vmalloc_array
+ffffffff81261c00 t vmalloc_array
+ffffffff81261c30 t __vcalloc
+ffffffff81261c60 t vcalloc
+ffffffff81261c90 t page_rmapping
+ffffffff81261cc0 t folio_mapped
+ffffffff81261d30 t folio_anon_vma
+ffffffff81261d50 t folio_mapping
+ffffffff81261dc0 t __page_mapcount
+ffffffff81261e10 t folio_mapcount
+ffffffff81261ef0 t folio_copy
+ffffffff81261fb0 t overcommit_ratio_handler
+ffffffff81262000 t overcommit_policy_handler
+ffffffff812620d0 t sync_overcommit_as
+ffffffff812620f0 t overcommit_kbytes_handler
+ffffffff81262130 t vm_commit_limit
+ffffffff81262180 t vm_memory_committed
+ffffffff812621a0 t __vm_enough_memory
+ffffffff812622f0 t get_cmdline
+ffffffff81262440 t memcmp_pages
+ffffffff81262510 t mem_dump_obj
+ffffffff81262590 t page_offline_freeze
+ffffffff812625b0 t page_offline_thaw
+ffffffff812625d0 t page_offline_begin
+ffffffff812625f0 t page_offline_end
+ffffffff81262610 t first_online_pgdat
+ffffffff81262630 t next_online_pgdat
+ffffffff81262640 t next_zone
+ffffffff81262670 t __next_zones_zonelist
+ffffffff812626b0 t lruvec_init
+ffffffff81262740 t gfp_zone
+ffffffff81262760 t all_vm_events
+ffffffff81262830 t vm_events_fold_cpu
+ffffffff81262890 t calculate_pressure_threshold
+ffffffff812628c0 t calculate_normal_threshold
+ffffffff81262910 t refresh_zone_stat_thresholds
+ffffffff81262aa0 t set_pgdat_percpu_threshold
+ffffffff81262b70 t __mod_zone_page_state
+ffffffff81262c10 t __mod_node_page_state
+ffffffff81262cd0 t __inc_zone_state
+ffffffff81262d70 t __inc_node_state
+ffffffff81262e20 t __inc_zone_page_state
+ffffffff81262ed0 t __inc_node_page_state
+ffffffff81262f70 t __dec_zone_state
+ffffffff81263010 t __dec_node_state
+ffffffff812630c0 t __dec_zone_page_state
+ffffffff812630f0 t __dec_node_page_state
+ffffffff81263110 t mod_zone_page_state
+ffffffff81263190 t inc_zone_page_state
+ffffffff81263230 t dec_zone_page_state
+ffffffff812632c0 t mod_node_page_state
+ffffffff81263360 t inc_node_state
+ffffffff812633f0 t inc_node_page_state
+ffffffff81263480 t dec_node_page_state
+ffffffff81263500 t cpu_vm_stats_fold
+ffffffff81263680 t fold_diff
+ffffffff812637a0 t drain_zonestat
+ffffffff812637f0 t extfrag_for_order
+ffffffff81263a00 t fragmentation_index
+ffffffff81263ce0 t vmstat_refresh
+ffffffff81263f20 t refresh_vm_stats
+ffffffff81263f30 t quiet_vmstat
+ffffffff81264020 t refresh_cpu_vm_stats
+ffffffff812641a0 t vmstat_cpu_dead
+ffffffff812641d0 t vmstat_cpu_online
+ffffffff812641f0 t vmstat_cpu_down_prep
+ffffffff81264230 t vmstat_update
+ffffffff812642a0 t vmstat_shepherd
+ffffffff81264410 t frag_start
+ffffffff81264430 t frag_stop
+ffffffff81264440 t frag_next
+ffffffff81264450 t frag_show
+ffffffff81264470 t walk_zones_in_node
+ffffffff812645a0 t frag_show_print
+ffffffff812646d0 t pagetypeinfo_show
+ffffffff812649f0 t pagetypeinfo_showfree_print
+ffffffff81264b40 t pagetypeinfo_showblockcount_print
+ffffffff81264d20 t vmstat_start
+ffffffff81264fa0 t vmstat_stop
+ffffffff81264fd0 t vmstat_next
+ffffffff81265000 t vmstat_show
+ffffffff81265080 t zoneinfo_show
+ffffffff81265170 t zoneinfo_show_print
+ffffffff81265590 t unusable_open
+ffffffff812655e0 t unusable_show
+ffffffff81265610 t unusable_show_print
+ffffffff81265870 t extfrag_open
+ffffffff812658c0 t extfrag_show
+ffffffff812658e0 t extfrag_show_print
+ffffffff81265bd0 t wb_wakeup_delayed
+ffffffff81265c40 t wb_get_lookup
+ffffffff81265d50 t wb_get_create
+ffffffff81266290 t wb_memcg_offline
+ffffffff81266310 t cgwb_kill
+ffffffff81266420 t wb_blkcg_offline
+ffffffff81266490 t bdi_init
+ffffffff81266580 t bdi_alloc
+ffffffff81266600 t bdi_get_by_id
+ffffffff812666a0 t bdi_register_va
+ffffffff812668e0 t bdi_register
+ffffffff81266960 t bdi_set_owner
+ffffffff81266990 t bdi_unregister
+ffffffff81266be0 t wb_shutdown
+ffffffff81266cc0 t bdi_put
+ffffffff81266d80 t inode_to_bdi
+ffffffff81266dc0 t bdi_dev_name
+ffffffff81266e00 t read_ahead_kb_show
+ffffffff81266e30 t read_ahead_kb_store
+ffffffff81266eb0 t min_ratio_show
+ffffffff81266ee0 t min_ratio_store
+ffffffff81266f60 t max_ratio_show
+ffffffff81266f90 t max_ratio_store
+ffffffff81267010 t stable_pages_required_show
+ffffffff81267060 t wb_init
+ffffffff812672c0 t cgwb_release
+ffffffff812672f0 t cgwb_release_workfn
+ffffffff812674b0 t wb_update_bandwidth_workfn
+ffffffff812674d0 t cgwb_free_rcu
+ffffffff81267500 t cleanup_offline_cgwbs_workfn
+ffffffff81267710 t bdi_debug_stats_open
+ffffffff81267740 t bdi_debug_stats_show
+ffffffff81267930 t mm_compute_batch
+ffffffff812679b0 t __traceiter_percpu_alloc_percpu
+ffffffff81267a40 t __traceiter_percpu_free_percpu
+ffffffff81267aa0 t __traceiter_percpu_alloc_percpu_fail
+ffffffff81267b10 t __traceiter_percpu_create_chunk
+ffffffff81267b60 t __traceiter_percpu_destroy_chunk
+ffffffff81267bb0 t trace_event_raw_event_percpu_alloc_percpu
+ffffffff81267cd0 t perf_trace_percpu_alloc_percpu
+ffffffff81267e20 t trace_event_raw_event_percpu_free_percpu
+ffffffff81267ef0 t perf_trace_percpu_free_percpu
+ffffffff81268000 t trace_event_raw_event_percpu_alloc_percpu_fail
+ffffffff812680e0 t perf_trace_percpu_alloc_percpu_fail
+ffffffff812681f0 t trace_event_raw_event_percpu_create_chunk
+ffffffff812682b0 t perf_trace_percpu_create_chunk
+ffffffff812683a0 t trace_event_raw_event_percpu_destroy_chunk
+ffffffff81268460 t perf_trace_percpu_destroy_chunk
+ffffffff81268550 t __alloc_percpu_gfp
+ffffffff81268570 t pcpu_alloc.llvm.485474724578166123
+ffffffff81269020 t __alloc_percpu
+ffffffff81269040 t __alloc_reserved_percpu
+ffffffff81269060 t free_percpu
+ffffffff81269570 t pcpu_free_area
+ffffffff81269850 t __is_kernel_percpu_address
+ffffffff81269910 t is_kernel_percpu_address
+ffffffff812699a0 t per_cpu_ptr_to_phys
+ffffffff81269ac0 t pcpu_dump_alloc_info
+ffffffff81269dd0 t pcpu_chunk_relocate
+ffffffff81269f10 t pcpu_nr_pages
+ffffffff81269f30 t trace_raw_output_percpu_alloc_percpu
+ffffffff8126a030 t trace_raw_output_percpu_free_percpu
+ffffffff8126a090 t trace_raw_output_percpu_alloc_percpu_fail
+ffffffff8126a0f0 t trace_raw_output_percpu_create_chunk
+ffffffff8126a140 t trace_raw_output_percpu_destroy_chunk
+ffffffff8126a190 t pcpu_find_block_fit
+ffffffff8126a300 t pcpu_alloc_area
+ffffffff8126a560 t pcpu_create_chunk
+ffffffff8126a830 t pcpu_populate_chunk
+ffffffff8126aca0 t obj_cgroup_put
+ffffffff8126acf0 t pcpu_next_fit_region
+ffffffff8126ae20 t pcpu_block_update_hint_alloc
+ffffffff8126b110 t pcpu_block_update
+ffffffff8126b1e0 t pcpu_block_refresh_hint
+ffffffff8126b2c0 t pcpu_chunk_refresh_hint
+ffffffff8126b4b0 t pcpu_balance_workfn
+ffffffff8126b9d0 t pcpu_balance_free
+ffffffff8126bc80 t pcpu_depopulate_chunk
+ffffffff8126beb0 t __traceiter_kmem_cache_alloc
+ffffffff8126bf20 t __traceiter_kmalloc
+ffffffff8126bfa0 t __traceiter_kfree
+ffffffff8126bff0 t __traceiter_kmem_cache_free
+ffffffff8126c050 t __traceiter_mm_page_free
+ffffffff8126c0a0 t __traceiter_mm_page_free_batched
+ffffffff8126c0f0 t __traceiter_mm_page_alloc
+ffffffff8126c160 t __traceiter_mm_page_alloc_zone_locked
+ffffffff8126c1d0 t __traceiter_mm_page_pcpu_drain
+ffffffff8126c230 t __traceiter_mm_page_alloc_extfrag
+ffffffff8126c2a0 t __traceiter_rss_stat
+ffffffff8126c300 t trace_event_raw_event_kmem_cache_alloc
+ffffffff8126c410 t perf_trace_kmem_cache_alloc
+ffffffff8126c560 t trace_event_raw_event_kmalloc
+ffffffff8126c650 t perf_trace_kmalloc
+ffffffff8126c780 t trace_event_raw_event_kfree
+ffffffff8126c840 t perf_trace_kfree
+ffffffff8126c940 t trace_event_raw_event_kmem_cache_free
+ffffffff8126ca60 t perf_trace_kmem_cache_free
+ffffffff8126cbd0 t trace_event_raw_event_mm_page_free
+ffffffff8126cca0 t perf_trace_mm_page_free
+ffffffff8126cdb0 t trace_event_raw_event_mm_page_free_batched
+ffffffff8126ce70 t perf_trace_mm_page_free_batched
+ffffffff8126cf70 t trace_event_raw_event_mm_page_alloc
+ffffffff8126d070 t perf_trace_mm_page_alloc
+ffffffff8126d1a0 t trace_event_raw_event_mm_page
+ffffffff8126d290 t perf_trace_mm_page
+ffffffff8126d3c0 t trace_event_raw_event_mm_page_pcpu_drain
+ffffffff8126d4b0 t perf_trace_mm_page_pcpu_drain
+ffffffff8126d5e0 t trace_event_raw_event_mm_page_alloc_extfrag
+ffffffff8126d700 t perf_trace_mm_page_alloc_extfrag
+ffffffff8126d860 t trace_event_raw_event_rss_stat
+ffffffff8126d980 t perf_trace_rss_stat
+ffffffff8126dad0 t kmem_cache_size
+ffffffff8126dae0 t slab_unmergeable
+ffffffff8126db20 t find_mergeable
+ffffffff8126dc30 t kmem_cache_create_usercopy
+ffffffff8126df10 t kmem_cache_create
+ffffffff8126df30 t slab_kmem_cache_release
+ffffffff8126df60 t kmem_cache_destroy
+ffffffff8126e0b0 t kmem_cache_shrink
+ffffffff8126e0e0 t slab_is_available
+ffffffff8126e100 t kmem_valid_obj
+ffffffff8126e180 t kmem_dump_obj
+ffffffff8126e710 t kmalloc_slab
+ffffffff8126e7b0 t kmalloc_size_roundup
+ffffffff8126e850 t free_large_kmalloc
+ffffffff8126e910 t __kmalloc_node
+ffffffff8126eaa0 t __kmalloc
+ffffffff8126ec50 t __kmalloc_node_track_caller
+ffffffff8126ede0 t kfree
+ffffffff8126eed0 t __ksize
+ffffffff8126efe0 t kmalloc_trace
+ffffffff8126f080 t trace_kmalloc
+ffffffff8126f0f0 t kmalloc_node_trace
+ffffffff8126f190 t kmalloc_fix_flags
+ffffffff8126f200 t kmalloc_large
+ffffffff8126f2b0 t __kmalloc_large_node
+ffffffff8126f3d0 t kmalloc_large_node
+ffffffff8126f480 t cache_random_seq_create
+ffffffff8126f630 t cache_random_seq_destroy
+ffffffff8126f660 t dump_unreclaimable_slab
+ffffffff8126f790 t krealloc
+ffffffff8126f850 t kfree_sensitive
+ffffffff8126f8a0 t ksize
+ffffffff8126f8d0 t should_failslab
+ffffffff8126f8e0 t trace_raw_output_kmem_cache_alloc
+ffffffff8126f9c0 t trace_raw_output_kmalloc
+ffffffff8126faa0 t trace_raw_output_kfree
+ffffffff8126fb00 t trace_raw_output_kmem_cache_free
+ffffffff8126fb60 t trace_raw_output_mm_page_free
+ffffffff8126fbc0 t trace_raw_output_mm_page_free_batched
+ffffffff8126fc20 t trace_raw_output_mm_page_alloc
+ffffffff8126fcf0 t trace_raw_output_mm_page
+ffffffff8126fd70 t trace_raw_output_mm_page_pcpu_drain
+ffffffff8126fde0 t trace_raw_output_mm_page_alloc_extfrag
+ffffffff8126fe70 t trace_raw_output_rss_stat
+ffffffff8126fef0 t slab_caches_to_rcu_destroy_workfn
+ffffffff8126fff0 t slabinfo_open
+ffffffff81270010 t slab_start
+ffffffff81270040 t slab_stop
+ffffffff81270060 t slab_next
+ffffffff81270080 t slab_show
+ffffffff812701e0 t __traceiter_mm_compaction_isolate_migratepages
+ffffffff81270250 t __traceiter_mm_compaction_isolate_freepages
+ffffffff812702c0 t __traceiter_mm_compaction_migratepages
+ffffffff81270310 t __traceiter_mm_compaction_begin
+ffffffff81270380 t __traceiter_mm_compaction_end
+ffffffff812703f0 t __traceiter_mm_compaction_try_to_compact_pages
+ffffffff81270450 t __traceiter_mm_compaction_finished
+ffffffff812704b0 t __traceiter_mm_compaction_suitable
+ffffffff81270510 t __traceiter_mm_compaction_deferred
+ffffffff81270560 t __traceiter_mm_compaction_defer_compaction
+ffffffff812705b0 t __traceiter_mm_compaction_defer_reset
+ffffffff81270600 t __traceiter_mm_compaction_kcompactd_sleep
+ffffffff81270650 t __traceiter_mm_compaction_wakeup_kcompactd
+ffffffff812706b0 t __traceiter_mm_compaction_kcompactd_wake
+ffffffff81270710 t trace_event_raw_event_mm_compaction_isolate_template
+ffffffff812707f0 t perf_trace_mm_compaction_isolate_template
+ffffffff81270900 t trace_event_raw_event_mm_compaction_migratepages
+ffffffff812709d0 t perf_trace_mm_compaction_migratepages
+ffffffff81270ae0 t trace_event_raw_event_mm_compaction_begin
+ffffffff81270bc0 t perf_trace_mm_compaction_begin
+ffffffff81270ce0 t trace_event_raw_event_mm_compaction_end
+ffffffff81270dd0 t perf_trace_mm_compaction_end
+ffffffff81270f00 t trace_event_raw_event_mm_compaction_try_to_compact_pages
+ffffffff81270fd0 t perf_trace_mm_compaction_try_to_compact_pages
+ffffffff812710e0 t trace_event_raw_event_mm_compaction_suitable_template
+ffffffff812711c0 t perf_trace_mm_compaction_suitable_template
+ffffffff812712e0 t trace_event_raw_event_mm_compaction_defer_template
+ffffffff812713e0 t perf_trace_mm_compaction_defer_template
+ffffffff81271520 t trace_event_raw_event_mm_compaction_kcompactd_sleep
+ffffffff812715e0 t perf_trace_mm_compaction_kcompactd_sleep
+ffffffff812716d0 t trace_event_raw_event_kcompactd_wake_template
+ffffffff812717a0 t perf_trace_kcompactd_wake_template
+ffffffff812718b0 t PageMovable
+ffffffff812718e0 t __SetPageMovable
+ffffffff81271900 t __ClearPageMovable
+ffffffff81271920 t compaction_defer_reset
+ffffffff812719a0 t reset_isolation_suitable
+ffffffff81271a30 t __reset_isolation_suitable
+ffffffff81271b60 t isolate_freepages_range
+ffffffff81271d20 t isolate_freepages_block
+ffffffff81272140 t split_map_pages
+ffffffff812722a0 t isolate_and_split_free_page
+ffffffff81272330 t isolate_migratepages_range
+ffffffff81272400 t isolate_migratepages_block
+ffffffff812733d0 t compaction_suitable
+ffffffff81273510 t compaction_zonelist_suitable
+ffffffff81273710 t try_to_compact_pages
+ffffffff81273c70 t compaction_proactiveness_sysctl_handler
+ffffffff81273cd0 t sysctl_compaction_handler
+ffffffff81273e40 t wakeup_kcompactd
+ffffffff81274050 t kcompactd_run
+ffffffff812740d0 t kcompactd
+ffffffff81274cd0 t kcompactd_stop
+ffffffff81274d00 t trace_raw_output_mm_compaction_isolate_template
+ffffffff81274d60 t trace_raw_output_mm_compaction_migratepages
+ffffffff81274dc0 t trace_raw_output_mm_compaction_begin
+ffffffff81274e40 t trace_raw_output_mm_compaction_end
+ffffffff81274f00 t trace_raw_output_mm_compaction_try_to_compact_pages
+ffffffff81274f90 t trace_raw_output_mm_compaction_suitable_template
+ffffffff81275040 t trace_raw_output_mm_compaction_defer_template
+ffffffff812750e0 t trace_raw_output_mm_compaction_kcompactd_sleep
+ffffffff81275130 t trace_raw_output_kcompactd_wake_template
+ffffffff812751b0 t __reset_isolation_pfn
+ffffffff812753b0 t compact_zone
+ffffffff812762c0 t compaction_alloc
+ffffffff81276bb0 t compaction_free
+ffffffff81276c00 t kcompactd_cpu_online
+ffffffff81276c50 t vma_interval_tree_insert
+ffffffff81276d20 t vma_interval_tree_remove
+ffffffff81276fc0 t vma_interval_tree_iter_first
+ffffffff81277050 t vma_interval_tree_iter_next
+ffffffff81277120 t vma_interval_tree_insert_after
+ffffffff812771c0 t anon_vma_interval_tree_insert
+ffffffff81277290 t anon_vma_interval_tree_remove
+ffffffff81277550 t anon_vma_interval_tree_iter_first
+ffffffff812775e0 t anon_vma_interval_tree_iter_next
+ffffffff812776c0 t vma_interval_tree_augment_rotate
+ffffffff81277720 t __anon_vma_interval_tree_augment_rotate
+ffffffff81277780 t list_lru_add
+ffffffff81277880 t list_lru_del
+ffffffff81277940 t list_lru_isolate
+ffffffff81277980 t list_lru_isolate_move
+ffffffff812779f0 t list_lru_count_one
+ffffffff81277a80 t list_lru_count_node
+ffffffff81277aa0 t list_lru_walk_one
+ffffffff81277b30 t __list_lru_walk_one
+ffffffff81277d30 t list_lru_walk_one_irq
+ffffffff81277dc0 t list_lru_walk_node
+ffffffff81277f10 t memcg_reparent_list_lrus
+ffffffff812780f0 t memcg_list_lru_alloc
+ffffffff81278480 t __list_lru_init
+ffffffff81278570 t list_lru_destroy
+ffffffff81278730 t workingset_age_nonresident
+ffffffff812787b0 t workingset_eviction
+ffffffff81278a20 t workingset_refault
+ffffffff81278f80 t workingset_activation
+ffffffff81279090 t workingset_update_node
+ffffffff81279100 t count_shadow_nodes
+ffffffff81279310 t scan_shadow_nodes
+ffffffff81279340 t shadow_lru_isolate
+ffffffff81279480 t dump_page
+ffffffff812796f0 t try_grab_folio
+ffffffff81279880 t try_grab_page
+ffffffff81279910 t unpin_user_page
+ffffffff81279970 t unpin_user_pages_dirty_lock
+ffffffff81279ab0 t unpin_user_pages
+ffffffff81279bb0 t unpin_user_page_range_dirty_lock
+ffffffff81279d00 t follow_page
+ffffffff81279dc0 t follow_page_mask
+ffffffff8127a240 t fixup_user_fault
+ffffffff8127a400 t populate_vma_page_range
+ffffffff8127a470 t __get_user_pages
+ffffffff8127aa50 t faultin_vma_page_range
+ffffffff8127aad0 t check_vma_flags
+ffffffff8127abb0 t __mm_populate
+ffffffff8127ad90 t fault_in_writeable
+ffffffff8127ae40 t fault_in_subpage_writeable
+ffffffff8127af10 t fault_in_safe_writeable
+ffffffff8127b040 t fault_in_readable
+ffffffff8127b110 t get_dump_page
+ffffffff8127b400 t get_user_pages_remote
+ffffffff8127b440 t __get_user_pages_remote
+ffffffff8127b720 t get_user_pages
+ffffffff8127b780 t __gup_longterm_locked
+ffffffff8127bbb0 t get_user_pages_unlocked
+ffffffff8127bee0 t get_user_pages_fast_only
+ffffffff8127bf00 t internal_get_user_pages_fast.llvm.8468752432317690107
+ffffffff8127cd50 t get_user_pages_fast
+ffffffff8127cd90 t pin_user_pages_fast
+ffffffff8127cdd0 t pin_user_pages_fast_only
+ffffffff8127ce10 t pin_user_pages_remote
+ffffffff8127ce50 t pin_user_pages
+ffffffff8127cea0 t pin_user_pages_unlocked
+ffffffff8127cee0 t pmd_lock
+ffffffff8127cf40 t follow_page_pte
+ffffffff8127d380 t pmd_trans_unstable
+ffffffff8127d3f0 t undo_dev_pagemap
+ffffffff8127d4e0 t __traceiter_mmap_lock_start_locking
+ffffffff8127d550 t trace_mmap_lock_reg
+ffffffff8127d640 t trace_mmap_lock_unreg
+ffffffff8127d670 t __traceiter_mmap_lock_released
+ffffffff8127d6e0 t __traceiter_mmap_lock_acquire_returned
+ffffffff8127d750 t trace_event_raw_event_mmap_lock
+ffffffff8127d860 t perf_trace_mmap_lock
+ffffffff8127d9c0 t trace_event_raw_event_mmap_lock_acquire_returned
+ffffffff8127dae0 t perf_trace_mmap_lock_acquire_returned
+ffffffff8127dc50 t free_memcg_path_bufs
+ffffffff8127dd30 t __mmap_lock_do_trace_start_locking
+ffffffff8127de20 t get_mm_memcg_path
+ffffffff8127df00 t __mmap_lock_do_trace_acquire_returned
+ffffffff8127e000 t __mmap_lock_do_trace_released
+ffffffff8127e0f0 t trace_raw_output_mmap_lock
+ffffffff8127e160 t trace_raw_output_mmap_lock_acquire_returned
+ffffffff8127e1e0 t mm_trace_rss_stat
+ffffffff8127e240 t sync_mm_rss
+ffffffff8127e310 t add_mm_counter
+ffffffff8127e380 t free_pgd_range
+ffffffff8127ea30 t free_pgtables
+ffffffff8127ec10 t pmd_install
+ffffffff8127ecd0 t __pte_alloc
+ffffffff8127ee10 t __pte_alloc_kernel
+ffffffff8127eec0 t vm_normal_page
+ffffffff8127ef60 t print_bad_pte
+ffffffff8127f1b0 t vm_normal_page_pmd
+ffffffff8127f2b0 t copy_page_range
+ffffffff81280670 t unmap_page_range
+ffffffff81281630 t unmap_vmas
+ffffffff81281790 t zap_page_range
+ffffffff81281a00 t zap_page_range_single
+ffffffff81281bd0 t zap_vma_ptes
+ffffffff81281c00 t __get_locked_pte
+ffffffff81281cd0 t walk_to_pmd
+ffffffff81281e00 t vm_insert_pages
+ffffffff81282160 t vm_insert_page
+ffffffff812823d0 t vm_map_pages
+ffffffff81282470 t vm_map_pages_zero
+ffffffff81282500 t vmf_insert_pfn_prot
+ffffffff81282680 t insert_pfn
+ffffffff812828b0 t vmf_insert_pfn
+ffffffff812828d0 t vmf_insert_mixed_prot
+ffffffff812828f0 t __vm_insert_mixed
+ffffffff812829f0 t vmf_insert_mixed
+ffffffff81282a10 t vmf_insert_mixed_mkwrite
+ffffffff81282a30 t remap_pfn_range_notrack
+ffffffff81282fc0 t remap_pfn_range
+ffffffff81283080 t vm_iomap_memory
+ffffffff81283190 t apply_to_page_range
+ffffffff812831b0 t __apply_to_page_range
+ffffffff812839d0 t apply_to_existing_page_range
+ffffffff812839f0 t finish_mkwrite_fault
+ffffffff81283af0 t unmap_mapping_folio
+ffffffff81283ba0 t unmap_mapping_range_tree
+ffffffff81283c50 t unmap_mapping_pages
+ffffffff81283d00 t unmap_mapping_range
+ffffffff81283e40 t do_swap_page
+ffffffff812846e0 t handle_pte_marker
+ffffffff81284760 t do_wp_page
+ffffffff81284a30 t do_set_pmd
+ffffffff81284ca0 t do_set_pte
+ffffffff81284e60 t finish_fault
+ffffffff81285120 t numa_migrate_prep
+ffffffff81285150 t handle_mm_fault
+ffffffff81286220 t lock_vma_under_rcu
+ffffffff81286390 t vma_end_read
+ffffffff812863c0 t __p4d_alloc
+ffffffff812864a0 t __pud_alloc
+ffffffff81286590 t __pmd_alloc
+ffffffff81286760 t follow_pte
+ffffffff81286940 t follow_pfn
+ffffffff812869f0 t follow_phys
+ffffffff81286ad0 t generic_access_phys
+ffffffff81286cb0 t __access_remote_vm
+ffffffff81286ef0 t access_remote_vm
+ffffffff81286f00 t access_process_vm
+ffffffff81286f60 t print_vma_addr
+ffffffff812870a0 t clear_huge_page
+ffffffff81287230 t clear_gigantic_page
+ffffffff812872a0 t copy_user_huge_page
+ffffffff812874b0 t copy_user_gigantic_page
+ffffffff81287530 t copy_huge_page_from_user
+ffffffff81287630 t kmap_atomic
+ffffffff81287670 t __kunmap_atomic
+ffffffff812876b0 t __kunmap_atomic
+ffffffff812876f0 t __kunmap_atomic
+ffffffff81287730 t set_direct_map_range_uncached
+ffffffff81287740 t insert_page_into_pte_locked
+ffffffff812878c0 t pte_marker_clear
+ffffffff812879b0 t do_fault
+ffffffff81288020 t fault_dirty_shared_page
+ffffffff81288130 t wp_page_copy
+ffffffff81288770 t wp_page_shared
+ffffffff81288950 t fault_around_bytes_fops_open
+ffffffff81288980 t fault_around_bytes_get
+ffffffff812889a0 t fault_around_bytes_set
+ffffffff812889f0 t __x64_sys_mincore
+ffffffff81288ca0 t mincore_pte_range
+ffffffff81288fa0 t mincore_unmapped_range
+ffffffff81288fd0 t mincore_hugetlb
+ffffffff81288fe0 t __mincore_unmapped_range
+ffffffff81289120 t can_do_mlock
+ffffffff81289160 t mlock_page_drain_local
+ffffffff812891e0 t mlock_pagevec
+ffffffff8128ab80 t mlock_page_drain_remote
+ffffffff8128abd0 t need_mlock_page_drain
+ffffffff8128ac00 t mlock_folio
+ffffffff8128ad00 t mlock_new_page
+ffffffff8128ae20 t munlock_page
+ffffffff8128aed0 t __x64_sys_mlock
+ffffffff8128aef0 t __x64_sys_mlock2
+ffffffff8128af30 t __x64_sys_munlock
+ffffffff8128b010 t __x64_sys_mlockall
+ffffffff8128b1b0 t __x64_sys_munlockall
+ffffffff8128b250 t user_shm_lock
+ffffffff8128b320 t user_shm_unlock
+ffffffff8128b380 t do_mlock
+ffffffff8128b650 t apply_vma_lock_flags
+ffffffff8128b7a0 t mlock_fixup
+ffffffff8128ba50 t mlock_pte_range
+ffffffff8128bc70 t apply_mlockall_flags
+ffffffff8128bdf0 t __traceiter_vm_unmapped_area
+ffffffff8128be40 t __traceiter_vma_mas_szero
+ffffffff8128bea0 t __traceiter_vma_store
+ffffffff8128bef0 t __traceiter_exit_mmap
+ffffffff8128bf40 t trace_event_raw_event_vm_unmapped_area
+ffffffff8128c050 t perf_trace_vm_unmapped_area
+ffffffff8128c1a0 t trace_event_raw_event_vma_mas_szero
+ffffffff8128c270 t perf_trace_vma_mas_szero
+ffffffff8128c380 t trace_event_raw_event_vma_store
+ffffffff8128c450 t perf_trace_vma_store
+ffffffff8128c560 t trace_event_raw_event_exit_mmap
+ffffffff8128c620 t perf_trace_exit_mmap
+ffffffff8128c710 t vma_set_page_prot
+ffffffff8128c810 t vma_wants_writenotify
+ffffffff8128c8d0 t unlink_file_vma
+ffffffff8128c930 t __x64_sys_brk
+ffffffff8128cd80 t vma_mas_store
+ffffffff8128ce10 t vma_mas_remove
+ffffffff8128cea0 t vma_expand
+ffffffff8128d230 t __vma_adjust
+ffffffff8128de10 t find_vma
+ffffffff8128de60 t vma_merge
+ffffffff8128e170 t can_vma_merge_after
+ffffffff8128e240 t find_mergeable_anon_vma
+ffffffff8128e3c0 t mlock_future_check
+ffffffff8128e420 t do_mmap
+ffffffff8128e940 t get_unmapped_area
+ffffffff8128ea50 t find_vma_intersection
+ffffffff8128eaa0 t mmap_region
+ffffffff8128f6b0 t ksys_mmap_pgoff
+ffffffff8128f7a0 t __x64_sys_mmap_pgoff
+ffffffff8128f7d0 t vm_unmapped_area
+ffffffff8128f990 t generic_get_unmapped_area
+ffffffff8128fba0 t find_vma_prev
+ffffffff8128fc60 t generic_get_unmapped_area_topdown
+ffffffff8128ff10 t expand_downwards
+ffffffff81290300 t vm_stat_account
+ffffffff81290350 t expand_stack
+ffffffff81290360 t find_extend_vma
+ffffffff81290400 t __split_vma
+ffffffff81290590 t split_vma
+ffffffff812905b0 t do_mas_munmap
+ffffffff812906c0 t do_mas_align_munmap
+ffffffff81290d20 t do_munmap
+ffffffff81290db0 t may_expand_vm
+ffffffff81290ea0 t vm_flags_clear
+ffffffff81290ef0 t vm_flags_clear
+ffffffff81290f40 t vm_flags_set
+ffffffff81290f80 t vm_flags_set
+ffffffff81290fd0 t unmap_region
+ffffffff812911a0 t vm_munmap
+ffffffff812911c0 t __vm_munmap.llvm.7774975967370580042
+ffffffff81291350 t __x64_sys_munmap
+ffffffff81291390 t __x64_sys_remap_file_pages
+ffffffff812916d0 t vm_brk_flags
+ffffffff81291960 t do_brk_flags
+ffffffff81291de0 t mmap_write_unlock
+ffffffff81291e20 t mmap_write_unlock
+ffffffff81291e60 t vm_brk
+ffffffff81291e80 t exit_mmap
+ffffffff81292280 t insert_vm_struct
+ffffffff81292360 t vma_link
+ffffffff812924d0 t copy_vma
+ffffffff812927a0 t vma_is_special_mapping
+ffffffff812927e0 t _install_special_mapping
+ffffffff81292800 t __install_special_mapping.llvm.7774975967370580042
+ffffffff81292910 t install_special_mapping
+ffffffff81292940 t mm_take_all_locks
+ffffffff81292c50 t mm_drop_all_locks
+ffffffff81292df0 t trace_raw_output_vm_unmapped_area
+ffffffff81292e80 t trace_raw_output_vma_mas_szero
+ffffffff81292ee0 t trace_raw_output_vma_store
+ffffffff81292f40 t trace_raw_output_exit_mmap
+ffffffff81292f90 t special_mapping_close.llvm.7774975967370580042
+ffffffff81292fa0 t special_mapping_split.llvm.7774975967370580042
+ffffffff81292fb0 t special_mapping_mremap.llvm.7774975967370580042
+ffffffff81293000 t special_mapping_fault.llvm.7774975967370580042
+ffffffff812930a0 t special_mapping_name.llvm.7774975967370580042
+ffffffff812930c0 t reserve_mem_notifier
+ffffffff81293230 t __tlb_remove_page_size
+ffffffff812932b0 t tlb_remove_table_sync_one
+ffffffff812932d0 t tlb_remove_table_smp_sync.llvm.1426696532359438263
+ffffffff812932e0 t tlb_remove_table
+ffffffff81293440 t tlb_table_flush
+ffffffff81293550 t tlb_flush_mmu
+ffffffff812936c0 t tlb_gather_mmu
+ffffffff81293760 t tlb_gather_mmu_fullmm
+ffffffff812937c0 t tlb_finish_mmu
+ffffffff81293840 t tlb_remove_table_rcu
+ffffffff81293890 t change_protection
+ffffffff81294620 t mprotect_fixup
+ffffffff81294970 t __x64_sys_mprotect
+ffffffff812949a0 t __x64_sys_pkey_mprotect
+ffffffff812949d0 t __x64_sys_pkey_alloc
+ffffffff81294b30 t __x64_sys_pkey_free
+ffffffff81294c20 t p4d_alloc
+ffffffff81294c90 t prot_none_pte_entry
+ffffffff81294ce0 t prot_none_hugetlb_entry
+ffffffff81294d30 t prot_none_test
+ffffffff81294d40 t do_mprotect_pkey
+ffffffff81295240 t move_page_tables
+ffffffff81295920 t get_old_pud
+ffffffff81295a20 t alloc_new_pud
+ffffffff81295b00 t move_pgt_entry
+ffffffff81295e70 t __x64_sys_mremap
+ffffffff812966e0 t vma_to_resize
+ffffffff81296830 t move_vma
+ffffffff81296cf0 t __x64_sys_msync
+ffffffff81296f60 t page_vma_mapped_walk
+ffffffff81297690 t page_mapped_in_vma
+ffffffff812977c0 t walk_page_range
+ffffffff81297a20 t walk_page_range_novma
+ffffffff81297aa0 t walk_pgd_range
+ffffffff81298370 t walk_page_vma
+ffffffff812984b0 t walk_page_mapping
+ffffffff812986b0 t pgd_clear_bad
+ffffffff81298710 t p4d_clear_bad
+ffffffff81298780 t pud_clear_bad
+ffffffff812987d0 t pmd_clear_bad
+ffffffff81298820 t ptep_clear_flush
+ffffffff81298870 t pmdp_huge_clear_flush
+ffffffff812988a0 t pudp_huge_clear_flush
+ffffffff812988d0 t pgtable_trans_huge_deposit
+ffffffff812989c0 t pgtable_trans_huge_withdraw
+ffffffff81298aa0 t pmdp_invalidate
+ffffffff81298b20 t pmdp_collapse_flush
+ffffffff81298b50 t __traceiter_tlb_flush
+ffffffff81298ba0 t trace_event_raw_event_tlb_flush
+ffffffff81298c60 t perf_trace_tlb_flush
+ffffffff81298d60 t __traceiter_mm_migrate_pages
+ffffffff81298de0 t __traceiter_mm_migrate_pages_start
+ffffffff81298e30 t __traceiter_set_migration_pte
+ffffffff81298e90 t __traceiter_remove_migration_pte
+ffffffff81298ef0 t trace_event_raw_event_mm_migrate_pages
+ffffffff81298fe0 t perf_trace_mm_migrate_pages
+ffffffff81299110 t trace_event_raw_event_mm_migrate_pages_start
+ffffffff812991d0 t perf_trace_mm_migrate_pages_start
+ffffffff812992d0 t trace_event_raw_event_migration_pte
+ffffffff812993a0 t perf_trace_migration_pte
+ffffffff812994b0 t __anon_vma_prepare
+ffffffff81299620 t anon_vma_clone
+ffffffff812997f0 t unlink_anon_vmas
+ffffffff81299990 t anon_vma_fork
+ffffffff81299ae0 t anon_vma_ctor.llvm.13943339852349955666
+ffffffff81299b20 t folio_get_anon_vma
+ffffffff81299bb0 t folio_lock_anon_vma_read
+ffffffff81299ca0 t __put_anon_vma
+ffffffff81299d30 t try_to_unmap_flush
+ffffffff81299d70 t try_to_unmap_flush_dirty
+ffffffff81299db0 t flush_tlb_batched_pending
+ffffffff81299e10 t page_address_in_vma
+ffffffff81299f20 t mm_find_pmd
+ffffffff81299fe0 t folio_referenced
+ffffffff8129a0f0 t folio_referenced_one
+ffffffff8129a2c0 t invalid_folio_referenced_vma
+ffffffff8129a370 t rmap_walk
+ffffffff8129a3a0 t folio_mkclean
+ffffffff8129a470 t page_mkclean_one
+ffffffff8129a5a0 t invalid_mkclean_vma
+ffffffff8129a5c0 t pfn_mkclean_range
+ffffffff8129a710 t page_move_anon_rmap
+ffffffff8129a740 t page_add_anon_rmap
+ffffffff8129a860 t page_add_new_anon_rmap
+ffffffff8129a960 t page_add_file_rmap
+ffffffff8129aae0 t page_remove_rmap
+ffffffff8129ad40 t try_to_unmap
+ffffffff8129add0 t try_to_unmap_one
+ffffffff8129b5a0 t page_not_mapped
+ffffffff8129b5c0 t rmap_walk_locked
+ffffffff8129b5f0 t try_to_migrate
+ffffffff8129b6b0 t try_to_migrate_one
+ffffffff8129bb00 t invalid_migration_vma
+ffffffff8129bb20 t rmap_walk_anon
+ffffffff8129bd40 t rmap_walk_file
+ffffffff8129bf30 t trace_raw_output_tlb_flush
+ffffffff8129bfb0 t trace_raw_output_mm_migrate_pages
+ffffffff8129c090 t trace_raw_output_mm_migrate_pages_start
+ffffffff8129c120 t trace_raw_output_migration_pte
+ffffffff8129c180 t is_vmalloc_addr
+ffffffff8129c1d0 t ioremap_page_range
+ffffffff8129c210 t vmap_range_noflush
+ffffffff8129c800 t __vunmap_range_noflush
+ffffffff8129cb70 t vunmap_range_noflush
+ffffffff8129cb80 t vunmap_range
+ffffffff8129cbb0 t __vmap_pages_range_noflush
+ffffffff8129d190 t vmap_pages_range_noflush
+ffffffff8129d1a0 t is_vmalloc_or_module_addr
+ffffffff8129d200 t vmalloc_to_page
+ffffffff8129d440 t vmalloc_to_pfn
+ffffffff8129d460 t vmalloc_nr_pages
+ffffffff8129d480 t register_vmap_purge_notifier
+ffffffff8129d4a0 t unregister_vmap_purge_notifier
+ffffffff8129d4c0 t find_vmap_area
+ffffffff8129d540 t vm_unmap_aliases
+ffffffff8129d560 t _vm_unmap_aliases.llvm.8329325227821403876
+ffffffff8129d6b0 t vm_unmap_ram
+ffffffff8129d870 t free_unmap_vmap_area
+ffffffff8129d8a0 t vm_map_ram
+ffffffff8129e160 t alloc_vmap_area
+ffffffff8129e9a0 t free_work
+ffffffff8129e9e0 t insert_vmap_area
+ffffffff8129eae0 t __get_vm_area_caller
+ffffffff8129eb20 t __get_vm_area_node
+ffffffff8129ec80 t get_vm_area
+ffffffff8129ece0 t get_vm_area_caller
+ffffffff8129ed40 t find_vm_area
+ffffffff8129edd0 t remove_vm_area
+ffffffff8129ee80 t vfree_atomic
+ffffffff8129eee0 t __vfree_deferred
+ffffffff8129ef30 t vfree
+ffffffff8129ef90 t vunmap
+ffffffff8129efd0 t __vunmap
+ffffffff8129f320 t vmap
+ffffffff8129f450 t __vmalloc_node_range
+ffffffff8129fc60 t __vmalloc_node
+ffffffff8129fcc0 t __vmalloc
+ffffffff8129fd20 t vmalloc
+ffffffff8129fd80 t vmalloc_huge
+ffffffff8129fde0 t vzalloc
+ffffffff8129fe40 t vmalloc_user
+ffffffff8129fea0 t vmalloc_node
+ffffffff8129ff00 t vzalloc_node
+ffffffff8129ff60 t vmalloc_32
+ffffffff8129ffc0 t vmalloc_32_user
+ffffffff812a0020 t vread
+ffffffff812a02f0 t remap_vmalloc_range_partial
+ffffffff812a0440 t remap_vmalloc_range
+ffffffff812a0460 t free_vm_area
+ffffffff812a0490 t pcpu_get_vm_areas
+ffffffff812a1510 t pcpu_free_vm_areas
+ffffffff812a1570 t vmalloc_dump_obj
+ffffffff812a1620 t purge_fragmented_blocks_allcpus
+ffffffff812a1880 t __purge_vmap_area_lazy
+ffffffff812a1ee0 t free_vmap_area_noflush
+ffffffff812a21a0 t free_vmap_area_rb_augment_cb_rotate
+ffffffff812a21f0 t drain_vmap_area_work
+ffffffff812a2260 t insert_vmap_area_augment
+ffffffff812a2400 t __x64_sys_process_vm_readv
+ffffffff812a2430 t __x64_sys_process_vm_writev
+ffffffff812a2460 t process_vm_rw
+ffffffff812a2cb0 t pm_restore_gfp_mask
+ffffffff812a2cf0 t pm_restrict_gfp_mask
+ffffffff812a2d40 t pm_suspended_storage
+ffffffff812a2d60 t free_compound_page
+ffffffff812a2dc0 t get_pfnblock_flags_mask
+ffffffff812a2e30 t isolate_anon_lru_page
+ffffffff812a2ed0 t set_pfnblock_flags_mask
+ffffffff812a2f70 t set_pageblock_migratetype
+ffffffff812a3040 t free_the_page
+ffffffff812a3070 t prep_compound_page
+ffffffff812a3140 t destroy_large_folio
+ffffffff812a3170 t split_free_page
+ffffffff812a3450 t __free_one_page
+ffffffff812a3840 t __free_pages_core
+ffffffff812a38c0 t __free_pages_ok
+ffffffff812a3ca0 t __pageblock_pfn_to_page
+ffffffff812a3e50 t set_zone_contiguous
+ffffffff812a3ed0 t clear_zone_contiguous
+ffffffff812a3ef0 t post_alloc_hook
+ffffffff812a3f90 t move_freepages_block
+ffffffff812a41b0 t find_suitable_fallback
+ffffffff812a42a0 t drain_local_pages
+ffffffff812a4390 t drain_all_pages
+ffffffff812a43b0 t __drain_all_pages.llvm.3472032013727214394
+ffffffff812a45f0 t free_unref_page
+ffffffff812a4840 t free_unref_page_prepare
+ffffffff812a4b50 t free_one_page
+ffffffff812a4c20 t free_unref_page_commit
+ffffffff812a4d70 t free_unref_page_list
+ffffffff812a5070 t split_page
+ffffffff812a5150 t __isolate_free_page
+ffffffff812a5460 t zone_watermark_ok
+ffffffff812a5490 t __putback_isolated_page
+ffffffff812a54d0 t should_fail_alloc_page
+ffffffff812a54e0 t __zone_watermark_ok
+ffffffff812a5620 t zone_watermark_ok_safe
+ffffffff812a5770 t warn_alloc
+ffffffff812a5910 t has_managed_dma
+ffffffff812a5930 t gfp_pfmemalloc_allowed
+ffffffff812a59a0 t __alloc_pages_bulk
+ffffffff812a6030 t prep_new_page
+ffffffff812a61e0 t __alloc_pages
+ffffffff812a64b0 t get_page_from_freelist
+ffffffff812a76b0 t __alloc_pages_slowpath
+ffffffff812a8690 t __free_pages
+ffffffff812a8720 t __folio_alloc
+ffffffff812a8760 t __get_free_pages
+ffffffff812a87a0 t get_zeroed_page
+ffffffff812a87f0 t free_pages
+ffffffff812a8840 t __page_frag_cache_drain
+ffffffff812a8880 t page_frag_alloc_align
+ffffffff812a89a0 t __page_frag_cache_refill
+ffffffff812a8a20 t page_frag_free
+ffffffff812a8aa0 t alloc_pages_exact
+ffffffff812a8b20 t make_alloc_exact
+ffffffff812a8c20 t free_pages_exact
+ffffffff812a8ce0 t nr_free_buffer_pages
+ffffffff812a8d80 t si_mem_available
+ffffffff812a8e60 t si_meminfo
+ffffffff812a8ed0 t __show_free_areas
+ffffffff812a9ad0 t __build_all_zonelists
+ffffffff812a9e60 t per_cpu_pages_init
+ffffffff812a9f90 t zone_set_pageset_high_and_batch
+ffffffff812aa100 t arch_has_descending_max_zone_pfns
+ffffffff812aa110 t adjust_managed_page_count
+ffffffff812aa140 t free_reserved_area
+ffffffff812aa2b0 t page_alloc_cpu_online
+ffffffff812aa310 t page_alloc_cpu_dead
+ffffffff812aa420 t setup_per_zone_wmarks
+ffffffff812aa6d0 t calculate_min_free_kbytes
+ffffffff812aa7b0 t setup_per_zone_lowmem_reserve
+ffffffff812aaa70 t min_free_kbytes_sysctl_handler
+ffffffff812aaab0 t watermark_scale_factor_sysctl_handler
+ffffffff812aaae0 t lowmem_reserve_ratio_sysctl_handler
+ffffffff812aab60 t percpu_pagelist_high_fraction_sysctl_handler
+ffffffff812aac30 t __alloc_contig_migrate_range
+ffffffff812aade0 t alloc_contig_range
+ffffffff812ab310 t free_contig_range
+ffffffff812ab3b0 t alloc_contig_pages
+ffffffff812ab610 t zone_pcp_disable
+ffffffff812ab690 t zone_pcp_enable
+ffffffff812ab710 t zone_pcp_reset
+ffffffff812ab7c0 t __offline_isolated_pages
+ffffffff812ab9b0 t is_free_buddy_page
+ffffffff812aba30 t free_page_is_bad
+ffffffff812aba80 t free_page_is_bad_report
+ffffffff812abb00 t bad_page
+ffffffff812abc00 t free_pcppages_bulk
+ffffffff812abf80 t get_populated_pcp_list
+ffffffff812aca80 t check_new_pages
+ffffffff812acba0 t reserve_highatomic_pageblock
+ffffffff812acd60 t wake_all_kswapds
+ffffffff812ace20 t __alloc_pages_direct_compact
+ffffffff812acfa0 t unreserve_highatomic_pageblock
+ffffffff812ad230 t shuffle_pick_tail
+ffffffff812ad280 t setup_initial_init_mm
+ffffffff812ad2b0 t __next_mem_range
+ffffffff812ad520 t reset_node_managed_pages
+ffffffff812ad550 t get_online_mems
+ffffffff812ad5b0 t put_online_mems
+ffffffff812ad620 t mem_hotplug_begin
+ffffffff812ad640 t mem_hotplug_done
+ffffffff812ad660 t pfn_to_online_page
+ffffffff812ad700 t __remove_pages
+ffffffff812ad7f0 t set_online_page_callback
+ffffffff812ad900 t generic_online_page
+ffffffff812ad930 t restore_online_page_callback
+ffffffff812ada40 t zone_for_pfn_range
+ffffffff812ade30 t adjust_present_page_count
+ffffffff812adef0 t mhp_init_memmap_on_memory
+ffffffff812adf70 t mhp_deinit_memmap_on_memory
+ffffffff812adfe0 t online_pages_range
+ffffffff812ae080 t try_online_node
+ffffffff812ae0c0 t mhp_supports_memmap_on_memory
+ffffffff812ae110 t online_memory_block
+ffffffff812ae130 t register_memory_resource
+ffffffff812ae230 t add_memory
+ffffffff812ae280 t add_memory_driver_managed
+ffffffff812ae350 t arch_get_mappable_range
+ffffffff812ae370 t mhp_get_pluggable_range
+ffffffff812ae3c0 t mhp_range_allowed
+ffffffff812ae460 t count_system_ram_pages_cb
+ffffffff812ae470 t try_offline_node
+ffffffff812ae510 t check_no_memblock_for_node_cb
+ffffffff812ae530 t __remove_memory
+ffffffff812ae550 t remove_memory
+ffffffff812ae590 t offline_and_remove_memory
+ffffffff812ae6f0 t try_offline_memory_block
+ffffffff812ae7e0 t try_reonline_memory_block
+ffffffff812ae830 t set_online_policy
+ffffffff812ae860 t get_online_policy
+ffffffff812ae890 t auto_movable_stats_account_group
+ffffffff812ae8e0 t check_memblock_offlined_cb
+ffffffff812ae960 t get_nr_vmemmap_pages_cb
+ffffffff812ae980 t anon_vma_name_alloc
+ffffffff812ae9f0 t anon_vma_name_free
+ffffffff812aea00 t anon_vma_name
+ffffffff812aea30 t madvise_set_anon_name
+ffffffff812aeba0 t do_madvise
+ffffffff812b0070 t __x64_sys_madvise
+ffffffff812b00a0 t __x64_sys_process_madvise
+ffffffff812b0380 t madvise_update_vma
+ffffffff812b0670 t swapin_walk_pmd_entry
+ffffffff812b08a0 t madvise_cold_or_pageout_pte_range
+ffffffff812b1310 t madvise_free_pte_range
+ffffffff812b1820 t generic_swapfile_activate
+ffffffff812b1a60 t swap_writepage
+ffffffff812b1ab0 t __swap_writepage
+ffffffff812b1f50 t sio_pool_init
+ffffffff812b1fb0 t end_swap_bio_write
+ffffffff812b2080 t swap_write_unplug
+ffffffff812b2150 t sio_write_complete
+ffffffff812b2310 t swap_readpage
+ffffffff812b2740 t end_swap_bio_read
+ffffffff812b2880 t __swap_read_unplug
+ffffffff812b2940 t sio_read_complete
+ffffffff812b2a50 t show_swap_cache_info
+ffffffff812b2ab0 t get_shadow_from_swap_cache
+ffffffff812b2b20 t add_to_swap_cache
+ffffffff812b2e60 t __delete_from_swap_cache
+ffffffff812b3010 t add_to_swap
+ffffffff812b3060 t delete_from_swap_cache
+ffffffff812b3110 t clear_shadow_from_swap_cache
+ffffffff812b3290 t free_swap_cache
+ffffffff812b32f0 t free_page_and_swap_cache
+ffffffff812b3390 t free_pages_and_swap_cache
+ffffffff812b3440 t swap_cache_get_folio
+ffffffff812b35e0 t find_get_incore_page
+ffffffff812b3700 t __read_swap_cache_async
+ffffffff812b3980 t read_swap_cache_async
+ffffffff812b39f0 t swap_cluster_readahead
+ffffffff812b3c70 t init_swap_address_space
+ffffffff812b3da0 t exit_swap_address_space
+ffffffff812b3de0 t swapin_readahead
+ffffffff812b4160 t vma_ra_enabled_show
+ffffffff812b41a0 t vma_ra_enabled_store
+ffffffff812b41d0 t swap_page_sector
+ffffffff812b4250 t page_swap_info
+ffffffff812b4280 t __page_file_index
+ffffffff812b42a0 t get_swap_pages
+ffffffff812b4de0 t get_swap_device
+ffffffff812b4ee0 t swp_swap_info
+ffffffff812b4f10 t swap_free
+ffffffff812b4fb0 t __swap_entry_free
+ffffffff812b50b0 t put_swap_folio
+ffffffff812b53d0 t split_swap_cluster
+ffffffff812b54b0 t swapcache_free_entries
+ffffffff812b56e0 t swp_entry_cmp
+ffffffff812b5700 t __swap_count
+ffffffff812b5780 t __swp_swapcount
+ffffffff812b5840 t swp_swapcount
+ffffffff812b5a00 t folio_free_swap
+ffffffff812b5b60 t free_swap_and_cache
+ffffffff812b5cc0 t swap_page_trans_huge_swapped
+ffffffff812b5da0 t add_swap_extent
+ffffffff812b5e80 t has_usable_swap
+ffffffff812b5ec0 t __x64_sys_swapoff
+ffffffff812b74f0 t generic_max_swapfile_size
+ffffffff812b7510 t __x64_sys_swapon
+ffffffff812b89e0 t si_swapinfo
+ffffffff812b8aa0 t swap_shmem_alloc
+ffffffff812b8ac0 t __swap_duplicate.llvm.13098503744718219347
+ffffffff812b8c50 t swap_duplicate
+ffffffff812b8c90 t add_swap_count_continuation
+ffffffff812b8f00 t swapcache_prepare
+ffffffff812b8f20 t swapcache_mapping
+ffffffff812b8f60 t __cgroup_throttle_swaprate
+ffffffff812b8ff0 t scan_swap_map_try_ssd_cluster
+ffffffff812b9180 t swap_do_scheduled_discard
+ffffffff812b93e0 t free_cluster
+ffffffff812b9500 t swap_range_free
+ffffffff812b9620 t swap_count_continued
+ffffffff812b9a10 t _enable_swap_info
+ffffffff812b9aa0 t swaps_open
+ffffffff812b9ae0 t swaps_poll
+ffffffff812b9b30 t swap_start
+ffffffff812b9b90 t swap_stop
+ffffffff812b9bb0 t swap_next
+ffffffff812b9c20 t swap_show
+ffffffff812b9d20 t swap_discard_work
+ffffffff812b9d60 t swap_users_ref_free
+ffffffff812b9d80 t disable_swap_slots_cache_lock
+ffffffff812b9df0 t reenable_swap_slots_cache_unlock
+ffffffff812b9e40 t enable_swap_slots_cache
+ffffffff812b9f10 t alloc_swap_slot_cache
+ffffffff812ba030 t free_slot_cache
+ffffffff812ba070 t free_swap_slot
+ffffffff812ba150 t folio_alloc_swap
+ffffffff812ba390 t drain_slots_cache_cpu
+ffffffff812ba470 t dma_pool_create
+ffffffff812ba660 t dma_pool_destroy
+ffffffff812ba800 t dma_pool_alloc
+ffffffff812ba9f0 t dma_pool_free
+ffffffff812bab10 t dmam_pool_create
+ffffffff812babb0 t dmam_pool_release
+ffffffff812babd0 t dmam_pool_destroy
+ffffffff812bac10 t dmam_pool_match
+ffffffff812bac30 t pools_show
+ffffffff812bad90 t sparse_decode_mem_map
+ffffffff812badb0 t mem_section_usage_size
+ffffffff812badc0 t online_mem_sections
+ffffffff812bae80 t offline_mem_sections
+ffffffff812baf40 t sparse_remove_section
+ffffffff812baf60 t section_deactivate.llvm.8342961630013695031
+ffffffff812bb180 t fixup_red_left
+ffffffff812bb1b0 t get_each_object_track
+ffffffff812bb370 t print_tracking
+ffffffff812bb460 t kmem_cache_flags
+ffffffff812bb5e0 t parse_slub_debug_flags
+ffffffff812bb7b0 t kmem_cache_alloc
+ffffffff812bba60 t kmem_cache_alloc_lru
+ffffffff812bbc90 t __kmem_cache_alloc_node
+ffffffff812bbed0 t kmem_cache_alloc_node
+ffffffff812bc180 t __kmem_cache_free
+ffffffff812bc4c0 t kmem_cache_free
+ffffffff812bc950 t kmem_cache_free_bulk
+ffffffff812bcff0 t kmem_cache_alloc_bulk
+ffffffff812bd330 t slab_pre_alloc_hook
+ffffffff812bd4c0 t ___slab_alloc
+ffffffff812bdf20 t slab_post_alloc_hook
+ffffffff812be200 t __kmem_cache_release
+ffffffff812be260 t __kmem_cache_empty
+ffffffff812be290 t __kmem_cache_shutdown
+ffffffff812be630 t flush_all_cpus_locked.llvm.7563578644961255253
+ffffffff812be780 t __kmem_obj_info
+ffffffff812bea70 t __check_heap_object
+ffffffff812beb90 t __kmem_cache_shrink
+ffffffff812bebc0 t __kmem_cache_do_shrink.llvm.7563578644961255253
+ffffffff812beeb0 t slub_cpu_dead
+ffffffff812bef80 t __kmem_cache_alias
+ffffffff812bf060 t __kmem_cache_create
+ffffffff812bf6d0 t sysfs_slab_add
+ffffffff812bf9a0 t validate_slab_cache
+ffffffff812bfaf0 t sysfs_slab_unlink
+ffffffff812bfb10 t sysfs_slab_release
+ffffffff812bfb30 t debugfs_slab_release
+ffffffff812bfb60 t get_slabinfo
+ffffffff812bfc30 t count_partial
+ffffffff812bfc90 t slabinfo_show_stats
+ffffffff812bfca0 t slabinfo_write
+ffffffff812bfcc0 t __slab_alloc
+ffffffff812bfd60 t __slab_free
+ffffffff812bffd0 t free_debug_processing
+ffffffff812c05d0 t cmpxchg_double_slab
+ffffffff812c0730 t put_cpu_partial
+ffffffff812c0800 t remove_full
+ffffffff812c0850 t add_partial
+ffffffff812c08b0 t remove_partial
+ffffffff812c0900 t discard_slab
+ffffffff812c0950 t set_track_prepare
+ffffffff812c0a50 t check_slab
+ffffffff812c0af0 t slab_err
+ffffffff812c0c90 t slab_fix
+ffffffff812c0d30 t slab_pad_check
+ffffffff812c0ea0 t slab_bug
+ffffffff812c0f60 t on_freelist
+ffffffff812c1200 t object_err
+ffffffff812c1250 t check_object
+ffffffff812c1520 t print_trailer
+ffffffff812c1740 t check_bytes_and_report
+ffffffff812c1880 t rcu_free_slab
+ffffffff812c18a0 t __free_slab
+ffffffff812c1a20 t __unfreeze_partials
+ffffffff812c1be0 t __cmpxchg_double_slab
+ffffffff812c1ce0 t deactivate_slab
+ffffffff812c2150 t new_slab
+ffffffff812c2a40 t slab_out_of_memory
+ffffffff812c2b50 t alloc_debug_processing
+ffffffff812c2d80 t flush_cpu_slab
+ffffffff812c2ec0 t slab_memory_callback
+ffffffff812c3050 t calculate_sizes
+ffffffff812c3470 t validate_slab
+ffffffff812c3620 t kmem_cache_release
+ffffffff812c3640 t slab_attr_show
+ffffffff812c3670 t slab_attr_store
+ffffffff812c36b0 t slab_size_show
+ffffffff812c36d0 t object_size_show
+ffffffff812c36f0 t objs_per_slab_show
+ffffffff812c3710 t order_show
+ffffffff812c3730 t min_partial_show
+ffffffff812c3750 t min_partial_store
+ffffffff812c37c0 t cpu_partial_show
+ffffffff812c37e0 t cpu_partial_store
+ffffffff812c3890 t objects_show
+ffffffff812c38b0 t show_slab_objects
+ffffffff812c3ad0 t objects_partial_show
+ffffffff812c3af0 t partial_show
+ffffffff812c3b80 t cpu_slabs_show
+ffffffff812c3ba0 t ctor_show
+ffffffff812c3bd0 t aliases_show
+ffffffff812c3c00 t align_show
+ffffffff812c3c20 t align_show
+ffffffff812c3c60 t align_show
+ffffffff812c3c90 t hwcache_align_show
+ffffffff812c3cc0 t reclaim_account_show
+ffffffff812c3cf0 t destroy_by_rcu_show
+ffffffff812c3d20 t shrink_show
+ffffffff812c3d30 t shrink_store
+ffffffff812c3d70 t slabs_cpu_partial_show
+ffffffff812c3eb0 t total_objects_show
+ffffffff812c3f50 t slabs_show
+ffffffff812c3ff0 t sanity_checks_show
+ffffffff812c4020 t trace_show
+ffffffff812c4050 t trace_show
+ffffffff812c4070 t red_zone_show
+ffffffff812c40a0 t poison_show
+ffffffff812c40d0 t store_user_show
+ffffffff812c4100 t validate_show
+ffffffff812c4110 t validate_store
+ffffffff812c4150 t cache_dma_show
+ffffffff812c4180 t usersize_show
+ffffffff812c41b0 t skip_kfence_show
+ffffffff812c41e0 t skip_kfence_store
+ffffffff812c4210 t slab_debug_trace_open
+ffffffff812c4450 t slab_debug_trace_release
+ffffffff812c44c0 t process_slab
+ffffffff812c49f0 t cmp_loc_by_count
+ffffffff812c4a10 t slab_debugfs_start
+ffffffff812c4a30 t slab_debugfs_stop
+ffffffff812c4a40 t slab_debugfs_next
+ffffffff812c4a70 t slab_debugfs_show
+ffffffff812c4ca0 t kfence_init_enable
+ffffffff812c4d80 t kfence_shutdown_cache
+ffffffff812c4e70 t kfence_guarded_free
+ffffffff812c51d0 t __kfence_alloc
+ffffffff812c5330 t get_alloc_stack_hash
+ffffffff812c54f0 t kfence_guarded_alloc
+ffffffff812c58f0 t kfence_ksize
+ffffffff812c5950 t kfence_object_start
+ffffffff812c59b0 t __kfence_free
+ffffffff812c5a90 t rcu_guarded_free
+ffffffff812c5ab0 t kfence_handle_page_fault
+ffffffff812c5d60 t kfence_unprotect
+ffffffff812c5e30 t param_set_sample_interval
+ffffffff812c6080 t param_get_sample_interval
+ffffffff812c60d0 t kfence_init_pool
+ffffffff812c6350 t kfence_protect
+ffffffff812c6420 t stats_open
+ffffffff812c6450 t stats_show
+ffffffff812c6560 t objects_open
+ffffffff812c65b0 t start_object
+ffffffff812c65d0 t stop_object
+ffffffff812c65e0 t next_object
+ffffffff812c6610 t show_object
+ffffffff812c6690 t toggle_allocation_gate
+ffffffff812c66e0 t kfence_check_canary_callback
+ffffffff812c68c0 t metadata_update_state
+ffffffff812c6970 t kfence_print_object
+ffffffff812c6a60 t seq_con_printf
+ffffffff812c6af0 t kfence_print_stack
+ffffffff812c6bf0 t kfence_report_error
+ffffffff812c70a0 t get_stack_skipnr
+ffffffff812c72c0 t __kfence_obj_info
+ffffffff812c7460 t isolate_movable_page
+ffffffff812c7550 t putback_movable_pages
+ffffffff812c7680 t remove_migration_ptes
+ffffffff812c7700 t remove_migration_pte
+ffffffff812c7a20 t __migration_entry_wait
+ffffffff812c7ab0 t migration_entry_wait
+ffffffff812c7ba0 t pmd_migration_entry_wait
+ffffffff812c7c70 t folio_migrate_mapping
+ffffffff812c8050 t migrate_huge_page_move_mapping
+ffffffff812c8170 t folio_migrate_flags
+ffffffff812c82d0 t folio_migrate_copy
+ffffffff812c8300 t migrate_folio_extra
+ffffffff812c8360 t migrate_folio
+ffffffff812c83c0 t buffer_migrate_folio
+ffffffff812c83e0 t __buffer_migrate_folio
+ffffffff812c86a0 t buffer_migrate_folio_norefs
+ffffffff812c86c0 t filemap_migrate_folio
+ffffffff812c8760 t migrate_pages
+ffffffff812c9350 t alloc_migration_target
+ffffffff812c93f0 t move_to_new_folio
+ffffffff812c9720 t __traceiter_hugepage_set_pmd
+ffffffff812c9770 t __traceiter_hugepage_update
+ffffffff812c97e0 t __traceiter_set_migration_pmd
+ffffffff812c9830 t __traceiter_remove_migration_pmd
+ffffffff812c9880 t trace_event_raw_event_hugepage_set_pmd
+ffffffff812c9940 t perf_trace_hugepage_set_pmd
+ffffffff812c9a40 t trace_event_raw_event_hugepage_update
+ffffffff812c9b20 t perf_trace_hugepage_update
+ffffffff812c9c30 t trace_event_raw_event_migration_pmd
+ffffffff812c9cf0 t perf_trace_migration_pmd
+ffffffff812c9df0 t hugepage_vma_check
+ffffffff812c9f10 t mm_get_huge_zero_page
+ffffffff812ca030 t mm_put_huge_zero_page
+ffffffff812ca060 t single_hugepage_flag_show
+ffffffff812ca090 t single_hugepage_flag_store
+ffffffff812ca130 t maybe_pmd_mkwrite
+ffffffff812ca150 t prep_transhuge_page
+ffffffff812ca180 t thp_get_unmapped_area
+ffffffff812ca270 t vma_thp_gfp_mask
+ffffffff812ca310 t do_huge_pmd_anonymous_page
+ffffffff812caa20 t pte_free
+ffffffff812caaa0 t set_huge_zero_page
+ffffffff812cab40 t vmf_insert_pfn_pmd_prot
+ffffffff812cadb0 t vmf_insert_pfn_pud_prot
+ffffffff812cafc0 t follow_devmap_pmd
+ffffffff812cb0b0 t copy_huge_pmd
+ffffffff812cb4f0 t __split_huge_pmd
+ffffffff812cc020 t follow_devmap_pud
+ffffffff812cc0d0 t copy_huge_pud
+ffffffff812cc180 t huge_pud_set_accessed
+ffffffff812cc200 t huge_pmd_set_accessed
+ffffffff812cc2c0 t do_huge_pmd_wp_page
+ffffffff812cc5b0 t follow_trans_huge_pmd
+ffffffff812cc810 t do_huge_pmd_numa_page
+ffffffff812cca30 t madvise_free_huge_pmd
+ffffffff812ccd60 t zap_huge_pmd
+ffffffff812cd100 t __pmd_trans_huge_lock
+ffffffff812cd1b0 t pfn_swap_entry_to_page
+ffffffff812cd220 t pfn_swap_entry_to_page
+ffffffff812cd290 t move_huge_pmd
+ffffffff812cd4a0 t change_huge_pmd
+ffffffff812cd880 t __pud_trans_huge_lock
+ffffffff812cd8e0 t zap_huge_pud
+ffffffff812cd9b0 t __split_huge_pud
+ffffffff812cda30 t split_huge_pmd_address
+ffffffff812cda80 t vma_adjust_trans_huge
+ffffffff812cdbc0 t can_split_folio
+ffffffff812cdc30 t split_huge_page_to_list
+ffffffff812ce890 t free_transhuge_page
+ffffffff812ce980 t deferred_split_huge_page
+ffffffff812ceb20 t set_pmd_migration_entry
+ffffffff812ced80 t remove_migration_pmd
+ffffffff812cefe0 t trace_raw_output_hugepage_set_pmd
+ffffffff812cf040 t trace_raw_output_hugepage_update
+ffffffff812cf0a0 t trace_raw_output_migration_pmd
+ffffffff812cf100 t enabled_show
+ffffffff812cf150 t enabled_show
+ffffffff812cf180 t enabled_store
+ffffffff812cf230 t enabled_store
+ffffffff812cf2c0 t defrag_show
+ffffffff812cf340 t defrag_show
+ffffffff812cf360 t defrag_store
+ffffffff812cf490 t defrag_store
+ffffffff812cf4b0 t use_zero_page_show
+ffffffff812cf4e0 t use_zero_page_store
+ffffffff812cf570 t hpage_pmd_size_show
+ffffffff812cf5a0 t shrink_huge_zero_page_count
+ffffffff812cf5c0 t shrink_huge_zero_page_scan
+ffffffff812cf620 t deferred_split_count
+ffffffff812cf650 t deferred_split_scan
+ffffffff812cf8e0 t split_huge_pages_write
+ffffffff812cfdd0 t split_huge_pages_pid
+ffffffff812d00e0 t __traceiter_mm_khugepaged_scan_pmd
+ffffffff812d0160 t __traceiter_mm_collapse_huge_page
+ffffffff812d01c0 t __traceiter_mm_collapse_huge_page_isolate
+ffffffff812d0230 t __traceiter_mm_collapse_huge_page_swapin
+ffffffff812d02a0 t __traceiter_mm_khugepaged_scan_file
+ffffffff812d0320 t trace_event_raw_event_mm_khugepaged_scan_pmd
+ffffffff812d0430 t perf_trace_mm_khugepaged_scan_pmd
+ffffffff812d0580 t trace_event_raw_event_mm_collapse_huge_page
+ffffffff812d0650 t perf_trace_mm_collapse_huge_page
+ffffffff812d0760 t trace_event_raw_event_mm_collapse_huge_page_isolate
+ffffffff812d0860 t perf_trace_mm_collapse_huge_page_isolate
+ffffffff812d09a0 t trace_event_raw_event_mm_collapse_huge_page_swapin
+ffffffff812d0a80 t perf_trace_mm_collapse_huge_page_swapin
+ffffffff812d0b90 t trace_event_raw_event_mm_khugepaged_scan_file
+ffffffff812d0ce0 t perf_trace_mm_khugepaged_scan_file
+ffffffff812d0e80 t hugepage_madvise
+ffffffff812d0f00 t khugepaged_enter_vma
+ffffffff812d0f50 t __khugepaged_enter
+ffffffff812d1080 t __khugepaged_exit
+ffffffff812d11e0 t collapse_pte_mapped_thp
+ffffffff812d15f0 t vma_start_write
+ffffffff812d1630 t collapse_and_free_pmd
+ffffffff812d1720 t set_huge_pmd
+ffffffff812d17f0 t start_stop_khugepaged
+ffffffff812d18e0 t khugepaged
+ffffffff812d2390 t set_recommended_min_free_kbytes
+ffffffff812d2450 t khugepaged_min_free_kbytes_update
+ffffffff812d2490 t madvise_collapse
+ffffffff812d2970 t hpage_collapse_scan_file
+ffffffff812d3fb0 t hpage_collapse_scan_pmd
+ffffffff812d5f50 t trace_raw_output_mm_khugepaged_scan_pmd
+ffffffff812d6000 t trace_raw_output_mm_collapse_huge_page
+ffffffff812d6080 t trace_raw_output_mm_collapse_huge_page_isolate
+ffffffff812d6120 t trace_raw_output_mm_collapse_huge_page_swapin
+ffffffff812d6180 t trace_raw_output_mm_khugepaged_scan_file
+ffffffff812d6230 t max_ptes_none_show
+ffffffff812d6260 t max_ptes_none_store
+ffffffff812d62e0 t max_ptes_swap_show
+ffffffff812d6310 t max_ptes_swap_store
+ffffffff812d6390 t max_ptes_shared_show
+ffffffff812d63c0 t max_ptes_shared_store
+ffffffff812d6440 t pages_to_scan_show
+ffffffff812d6470 t pages_to_scan_store
+ffffffff812d64e0 t pages_collapsed_show
+ffffffff812d6510 t full_scans_show
+ffffffff812d6540 t scan_sleep_millisecs_show
+ffffffff812d6570 t scan_sleep_millisecs_store
+ffffffff812d6600 t alloc_sleep_millisecs_show
+ffffffff812d6630 t alloc_sleep_millisecs_store
+ffffffff812d66c0 t alloc_charge_hpage
+ffffffff812d6800 t is_refcount_suitable
+ffffffff812d6880 t page_counter_cancel
+ffffffff812d6940 t page_counter_charge
+ffffffff812d69f0 t page_counter_try_charge
+ffffffff812d6b10 t page_counter_uncharge
+ffffffff812d6b60 t page_counter_set_max
+ffffffff812d6bc0 t page_counter_set_min
+ffffffff812d6c50 t page_counter_set_low
+ffffffff812d6ce0 t page_counter_memparse
+ffffffff812d6d80 t memcg_to_vmpressure
+ffffffff812d6da0 t vmpressure_to_memcg
+ffffffff812d6dc0 t mem_cgroup_kmem_disabled
+ffffffff812d6de0 t mem_cgroup_css_from_page
+ffffffff812d6e30 t page_cgroup_ino
+ffffffff812d6ea0 t mem_cgroup_flush_stats
+ffffffff812d6f80 t mem_cgroup_flush_stats_delayed
+ffffffff812d7070 t memcg_page_state
+ffffffff812d70a0 t __mod_memcg_state
+ffffffff812d7160 t __mod_memcg_lruvec_state
+ffffffff812d7250 t __mod_lruvec_state
+ffffffff812d7290 t __mod_lruvec_page_state
+ffffffff812d7370 t __mod_lruvec_kmem_state
+ffffffff812d7410 t mem_cgroup_from_slab_obj
+ffffffff812d7520 t __count_memcg_events
+ffffffff812d75f0 t mem_cgroup_from_task
+ffffffff812d7620 t get_mem_cgroup_from_mm
+ffffffff812d7710 t css_get
+ffffffff812d7750 t mem_cgroup_iter
+ffffffff812d7990 t css_put
+ffffffff812d79e0 t mem_cgroup_iter_break
+ffffffff812d7a50 t mem_cgroup_scan_tasks
+ffffffff812d7c30 t folio_lruvec_lock
+ffffffff812d7ca0 t folio_lruvec_lock_irq
+ffffffff812d7d10 t folio_lruvec_lock_irqsave
+ffffffff812d7d90 t mem_cgroup_update_lru_size
+ffffffff812d7e40 t mem_cgroup_print_oom_context
+ffffffff812d7ec0 t mem_cgroup_print_oom_meminfo
+ffffffff812d7fc0 t memory_stat_format
+ffffffff812d82c0 t mem_cgroup_get_max
+ffffffff812d8370 t mem_cgroup_size
+ffffffff812d8390 t mem_cgroup_oom_synchronize
+ffffffff812d86f0 t memcg_oom_wake_function
+ffffffff812d8760 t mem_cgroup_oom_trylock
+ffffffff812d88d0 t mem_cgroup_out_of_memory
+ffffffff812d8a10 t mem_cgroup_get_oom_group
+ffffffff812d8b10 t mem_cgroup_print_oom_group
+ffffffff812d8b50 t folio_memcg_lock
+ffffffff812d8bf0 t lock_page_memcg
+ffffffff812d8ca0 t folio_memcg_unlock
+ffffffff812d8d10 t unlock_page_memcg
+ffffffff812d8d90 t mem_cgroup_handle_over_high
+ffffffff812d8f60 t reclaim_high
+ffffffff812d9060 t swap_find_max_overage
+ffffffff812d9160 t memcg_alloc_slab_cgroups
+ffffffff812d91e0 t mem_cgroup_from_obj
+ffffffff812d9320 t get_obj_cgroup_from_current
+ffffffff812d94a0 t get_obj_cgroup_from_page
+ffffffff812d95c0 t __memcg_kmem_charge_page
+ffffffff812d97b0 t obj_cgroup_charge_pages
+ffffffff812d98f0 t __memcg_kmem_uncharge_page
+ffffffff812d9970 t obj_cgroup_uncharge_pages
+ffffffff812d9ae0 t mod_objcg_state
+ffffffff812d9e70 t drain_obj_stock
+ffffffff812da150 t obj_cgroup_charge
+ffffffff812da280 t refill_obj_stock.llvm.18350821595688034204
+ffffffff812da400 t obj_cgroup_uncharge
+ffffffff812da420 t split_page_memcg
+ffffffff812da570 t mem_cgroup_soft_limit_reclaim
+ffffffff812daa20 t __mem_cgroup_largest_soft_limit_node
+ffffffff812daaf0 t mem_cgroup_wb_domain
+ffffffff812dab20 t mem_cgroup_wb_stats
+ffffffff812dacd0 t mem_cgroup_track_foreign_dirty_slowpath
+ffffffff812daf10 t mem_cgroup_flush_foreign
+ffffffff812db000 t mem_cgroup_from_id
+ffffffff812db020 t mem_cgroup_css_online
+ffffffff812db170 t mem_cgroup_css_offline
+ffffffff812db260 t mem_cgroup_css_released
+ffffffff812db2c0 t mem_cgroup_css_free
+ffffffff812db440 t mem_cgroup_css_reset
+ffffffff812db500 t mem_cgroup_css_rstat_flush
+ffffffff812db710 t mem_cgroup_can_attach
+ffffffff812db9c0 t mem_cgroup_cancel_attach
+ffffffff812dba30 t mem_cgroup_attach
+ffffffff812dbaf0 t mem_cgroup_move_task
+ffffffff812dbc20 t mem_cgroup_calculate_protection
+ffffffff812dbdb0 t __mem_cgroup_charge
+ffffffff812dbe30 t charge_memcg
+ffffffff812dbf00 t mem_cgroup_swapin_charge_folio
+ffffffff812dc000 t mem_cgroup_swapin_uncharge_swap
+ffffffff812dc020 t __mem_cgroup_uncharge
+ffffffff812dc0b0 t uncharge_folio
+ffffffff812dc280 t uncharge_batch
+ffffffff812dc430 t __mem_cgroup_uncharge_list
+ffffffff812dc4e0 t mem_cgroup_migrate
+ffffffff812dc650 t memcg_check_events
+ffffffff812dc780 t mem_cgroup_sk_alloc
+ffffffff812dc840 t mem_cgroup_sk_free
+ffffffff812dc8a0 t mem_cgroup_charge_skmem
+ffffffff812dc990 t mem_cgroup_uncharge_skmem
+ffffffff812dca60 t mem_cgroup_swapout
+ffffffff812dcce0 t __mem_cgroup_try_charge_swap
+ffffffff812dcfa0 t __mem_cgroup_uncharge_swap
+ffffffff812dd070 t mem_cgroup_id_put_many
+ffffffff812dd110 t mem_cgroup_get_nr_swap_pages
+ffffffff812dd160 t mem_cgroup_swap_full
+ffffffff812dd1f0 t try_charge_memcg
+ffffffff812ddb50 t drain_all_stock
+ffffffff812ddd00 t drain_local_stock
+ffffffff812dddf0 t drain_stock
+ffffffff812dde80 t __refill_stock
+ffffffff812ddf10 t high_work_func
+ffffffff812ddf30 t memcg_offline_kmem
+ffffffff812de060 t obj_cgroup_release
+ffffffff812de120 t flush_memcg_stats_dwork
+ffffffff812de210 t mem_cgroup_count_precharge_pte_range
+ffffffff812de470 t get_mctgt_type
+ffffffff812de750 t __mem_cgroup_clear_mc
+ffffffff812de8e0 t mem_cgroup_move_charge_pte_range
+ffffffff812dee70 t mem_cgroup_move_account
+ffffffff812df4a0 t memory_current_read
+ffffffff812df4c0 t memory_peak_read
+ffffffff812df4e0 t memory_min_show
+ffffffff812df540 t memory_min_write
+ffffffff812df5d0 t memory_low_show
+ffffffff812df630 t memory_low_write
+ffffffff812df6c0 t memory_high_show
+ffffffff812df720 t memory_high_write
+ffffffff812df870 t memory_max_show
+ffffffff812df8d0 t memory_max_write
+ffffffff812dfab0 t memory_events_show
+ffffffff812dfb60 t memory_events_local_show
+ffffffff812dfc10 t memory_stat_show
+ffffffff812dfc80 t memory_oom_group_show
+ffffffff812dfcc0 t memory_oom_group_write
+ffffffff812dfd60 t memory_reclaim
+ffffffff812dfe70 t mem_cgroup_read_u64
+ffffffff812dff40 t mem_cgroup_reset
+ffffffff812dffe0 t mem_cgroup_write
+ffffffff812e0100 t memcg_stat_show
+ffffffff812e0770 t mem_cgroup_force_empty_write
+ffffffff812e0820 t mem_cgroup_hierarchy_read
+ffffffff812e0830 t mem_cgroup_hierarchy_write
+ffffffff812e0870 t memcg_write_event_control
+ffffffff812e0c50 t mem_cgroup_swappiness_read
+ffffffff812e0c90 t mem_cgroup_swappiness_write
+ffffffff812e0cd0 t mem_cgroup_move_charge_read
+ffffffff812e0cf0 t mem_cgroup_move_charge_write
+ffffffff812e0d40 t mem_cgroup_oom_control_read
+ffffffff812e0db0 t mem_cgroup_oom_control_write
+ffffffff812e0e10 t mem_cgroup_slab_show
+ffffffff812e0e20 t mem_cgroup_usage
+ffffffff812e0f70 t mem_cgroup_resize_max
+ffffffff812e1100 t memcg_update_tcp_max
+ffffffff812e1170 t memcg_event_ptable_queue_proc
+ffffffff812e1190 t memcg_event_wake
+ffffffff812e1220 t memcg_event_remove
+ffffffff812e12c0 t mem_cgroup_usage_register_event
+ffffffff812e12e0 t mem_cgroup_usage_unregister_event
+ffffffff812e1300 t mem_cgroup_oom_register_event
+ffffffff812e13b0 t mem_cgroup_oom_unregister_event
+ffffffff812e1470 t memsw_cgroup_usage_register_event
+ffffffff812e1490 t memsw_cgroup_usage_unregister_event
+ffffffff812e14b0 t __mem_cgroup_usage_register_event
+ffffffff812e1780 t __mem_cgroup_threshold
+ffffffff812e1860 t compare_thresholds
+ffffffff812e1890 t __mem_cgroup_usage_unregister_event
+ffffffff812e1a80 t mem_cgroup_update_tree
+ffffffff812e1c80 t memcg_hotplug_cpu_dead
+ffffffff812e1cb0 t swap_current_read
+ffffffff812e1cd0 t swap_high_show
+ffffffff812e1d30 t swap_high_write
+ffffffff812e1dc0 t swap_max_show
+ffffffff812e1e20 t swap_max_write
+ffffffff812e1eb0 t swap_events_show
+ffffffff812e1f20 t vmpressure
+ffffffff812e20b0 t vmpressure_prio
+ffffffff812e2140 t vmpressure_register_event
+ffffffff812e22d0 t vmpressure_unregister_event
+ffffffff812e2370 t vmpressure_init
+ffffffff812e23d0 t vmpressure_work_fn
+ffffffff812e2550 t vmpressure_cleanup
+ffffffff812e2570 t swap_cgroup_cmpxchg
+ffffffff812e2630 t swap_cgroup_record
+ffffffff812e2780 t lookup_swap_cgroup_id
+ffffffff812e2800 t swap_cgroup_swapon
+ffffffff812e2980 t swap_cgroup_swapoff
+ffffffff812e2a40 t get_page_owner_handle
+ffffffff812e2a80 t __reset_page_owner
+ffffffff812e2b20 t save_stack
+ffffffff812e2c60 t __set_page_owner
+ffffffff812e2d70 t __set_page_owner_migrate_reason
+ffffffff812e2da0 t __split_page_owner
+ffffffff812e2e60 t __folio_copy_owner
+ffffffff812e2f20 t pagetypeinfo_showmixedcount_print
+ffffffff812e31e0 t __dump_page_owner
+ffffffff812e3380 t register_dummy_stack
+ffffffff812e3410 t register_failure_stack
+ffffffff812e34a0 t register_early_stack
+ffffffff812e3530 t lseek_page_owner
+ffffffff812e3560 t read_page_owner
+ffffffff812e3bf0 t __traceiter_test_pages_isolated
+ffffffff812e3c50 t trace_event_raw_event_test_pages_isolated
+ffffffff812e3d20 t perf_trace_test_pages_isolated
+ffffffff812e3e30 t start_isolate_page_range
+ffffffff812e3ff0 t isolate_single_pageblock
+ffffffff812e4580 t unset_migratetype_isolate
+ffffffff812e4640 t set_migratetype_isolate
+ffffffff812e4930 t undo_isolate_page_range
+ffffffff812e49e0 t test_pages_isolated
+ffffffff812e4bd0 t trace_raw_output_test_pages_isolated
+ffffffff812e4c40 t zs_get_total_pages
+ffffffff812e4c60 t zs_map_object
+ffffffff812e4f20 t zs_unmap_object
+ffffffff812e5180 t zs_huge_class_size
+ffffffff812e51a0 t zs_malloc
+ffffffff812e5940 t obj_malloc
+ffffffff812e5a80 t fix_fullness_group
+ffffffff812e5be0 t zs_free
+ffffffff812e5ce0 t obj_free
+ffffffff812e5dc0 t free_zspage
+ffffffff812e5ef0 t zs_compact
+ffffffff812e6730 t zs_pool_stats
+ffffffff812e6750 t zs_create_pool
+ffffffff812e6aa0 t zs_destroy_pool
+ffffffff812e6bc0 t __free_zspage
+ffffffff812e6cf0 t zs_page_isolate
+ffffffff812e6d50 t zs_page_migrate
+ffffffff812e71b0 t zs_page_putback
+ffffffff812e7210 t putback_zspage
+ffffffff812e7320 t async_free_zspage
+ffffffff812e7680 t zs_shrinker_scan
+ffffffff812e76b0 t zs_shrinker_count
+ffffffff812e7720 t zs_cpu_prepare
+ffffffff812e7780 t zs_cpu_dead
+ffffffff812e77c0 t balloon_page_list_enqueue
+ffffffff812e7890 t balloon_page_enqueue_one.llvm.14338225768745355511
+ffffffff812e7930 t balloon_page_list_dequeue
+ffffffff812e7ac0 t balloon_page_alloc
+ffffffff812e7ae0 t balloon_page_enqueue
+ffffffff812e7b30 t balloon_page_dequeue
+ffffffff812e7bc0 t balloon_page_isolate.llvm.14338225768745355511
+ffffffff812e7c40 t balloon_page_migrate.llvm.14338225768745355511
+ffffffff812e7c70 t balloon_page_putback.llvm.14338225768745355511
+ffffffff812e7cf0 t page_ext_get
+ffffffff812e7d80 t page_ext_put
+ffffffff812e7da0 t __free_page_ext
+ffffffff812e7ec0 t secretmem_active
+ffffffff812e7ee0 t vma_is_secretmem
+ffffffff812e7f00 t secretmem_free_folio.llvm.2221581575700271655
+ffffffff812e7fa0 t secretmem_migrate_folio.llvm.2221581575700271655
+ffffffff812e7fb0 t __x64_sys_memfd_secret
+ffffffff812e8150 t secretmem_fault.llvm.2221581575700271655
+ffffffff812e82c0 t secretmem_mmap
+ffffffff812e8340 t secretmem_release
+ffffffff812e8360 t secretmem_setattr
+ffffffff812e83e0 t secretmem_init_fs_context
+ffffffff812e8410 t mfill_atomic_install_pte
+ffffffff812e8680 t mcopy_atomic
+ffffffff812e8da0 t mfill_zeropage
+ffffffff812e94d0 t mcopy_continue
+ffffffff812e9a50 t uffd_wp_range
+ffffffff812e9bb0 t mwriteprotect_range
+ffffffff812e9e30 t mmap_read_unlock
+ffffffff812e9e60 t mmap_read_unlock
+ffffffff812e9e90 t mmap_read_unlock
+ffffffff812e9ec0 t __traceiter_damon_aggregated
+ffffffff812e9f30 t trace_event_raw_event_damon_aggregated
+ffffffff812ea020 t perf_trace_damon_aggregated
+ffffffff812ea150 t damon_is_registered_ops
+ffffffff812ea230 t damon_register_ops
+ffffffff812ea330 t damon_select_ops
+ffffffff812ea430 t damon_new_region
+ffffffff812ea490 t damon_add_region
+ffffffff812ea4f0 t damon_destroy_region
+ffffffff812ea550 t damon_set_regions
+ffffffff812ea8c0 t damon_new_scheme
+ffffffff812eaa20 t damon_add_scheme
+ffffffff812eaa90 t damon_destroy_scheme
+ffffffff812eaaf0 t damon_new_target
+ffffffff812eab40 t damon_add_target
+ffffffff812eaba0 t damon_targets_empty
+ffffffff812eabc0 t damon_free_target
+ffffffff812eac10 t damon_destroy_target
+ffffffff812eac90 t damon_nr_regions
+ffffffff812eaca0 t damon_new_ctx
+ffffffff812ead60 t damon_destroy_ctx
+ffffffff812eaed0 t damon_set_attrs
+ffffffff812eaf20 t damon_set_schemes
+ffffffff812eb030 t damon_nr_running_ctxs
+ffffffff812eb060 t damon_start
+ffffffff812eb1b0 t damon_stop
+ffffffff812eb290 t damon_set_region_biggest_system_ram_default
+ffffffff812eb360 t trace_raw_output_damon_aggregated
+ffffffff812eb3d0 t kdamond_fn
+ffffffff812ec950 t walk_system_ram
+ffffffff812ec990 t damon_get_page
+ffffffff812eca20 t damon_ptep_mkold
+ffffffff812ecb40 t damon_pmdp_mkold
+ffffffff812ecc70 t damon_hot_score
+ffffffff812ecd40 t damon_cold_score
+ffffffff812ece20 t damon_pa_prepare_access_checks
+ffffffff812ecf90 t damon_pa_check_accesses
+ffffffff812ed1b0 t damon_pa_scheme_score
+ffffffff812ed1f0 t damon_pa_apply_scheme
+ffffffff812ed4a0 t __damon_pa_mkold
+ffffffff812ed590 t __damon_pa_young
+ffffffff812ed6b0 t damon_reclaim_enabled_store
+ffffffff812ed6f0 t damon_reclaim_timer_fn
+ffffffff812ed780 t damon_reclaim_apply_parameters
+ffffffff812ed880 t damon_reclaim_after_wmarks_check
+ffffffff812ed8b0 t damon_reclaim_after_aggregation
+ffffffff812ed940 t usercopy_abort
+ffffffff812ed9d0 t __check_object_size
+ffffffff812edc30 t check_stack_object
+ffffffff812edcd0 t memfd_fcntl
+ffffffff812ee2c0 t __x64_sys_memfd_create
+ffffffff812ee460 t __page_reporting_notify
+ffffffff812ee4c0 t page_reporting_register
+ffffffff812ee5d0 t page_reporting_process
+ffffffff812eea70 t page_reporting_unregister
+ffffffff812eead0 t page_reporting_drain
+ffffffff812eeba0 t get_page_bootmem
+ffffffff812eebc0 t put_page_bootmem
+ffffffff812eec40 t do_truncate
+ffffffff812eed70 t vfs_truncate
+ffffffff812eeea0 t do_sys_truncate
+ffffffff812eef90 t __x64_sys_truncate
+ffffffff812eefb0 t do_sys_ftruncate
+ffffffff812ef250 t __x64_sys_ftruncate
+ffffffff812ef270 t vfs_fallocate
+ffffffff812ef440 t file_start_write
+ffffffff812ef4c0 t file_start_write
+ffffffff812ef540 t file_start_write
+ffffffff812ef5c0 t fsnotify_modify
+ffffffff812ef640 t fsnotify_modify
+ffffffff812ef6c0 t file_end_write
+ffffffff812ef740 t file_end_write
+ffffffff812ef7c0 t file_end_write
+ffffffff812ef840 t ksys_fallocate
+ffffffff812ef8b0 t __x64_sys_fallocate
+ffffffff812ef920 t __x64_sys_faccessat
+ffffffff812ef940 t __x64_sys_faccessat2
+ffffffff812ef960 t __x64_sys_access
+ffffffff812ef980 t __x64_sys_chdir
+ffffffff812efaa0 t __x64_sys_fchdir
+ffffffff812efb40 t __x64_sys_chroot
+ffffffff812efc90 t chmod_common
+ffffffff812efe40 t vfs_fchmod
+ffffffff812efe90 t __x64_sys_fchmod
+ffffffff812eff20 t __x64_sys_fchmodat
+ffffffff812eff40 t __x64_sys_chmod
+ffffffff812eff60 t chown_common
+ffffffff812f0170 t do_fchownat
+ffffffff812f02b0 t __x64_sys_fchownat
+ffffffff812f02e0 t __x64_sys_chown
+ffffffff812f0310 t __x64_sys_lchown
+ffffffff812f0340 t vfs_fchown
+ffffffff812f03c0 t ksys_fchown
+ffffffff812f0470 t __x64_sys_fchown
+ffffffff812f0490 t finish_open
+ffffffff812f04b0 t do_dentry_open
+ffffffff812f0850 t finish_no_open
+ffffffff812f0870 t file_path
+ffffffff812f0890 t vfs_open
+ffffffff812f08c0 t dentry_open
+ffffffff812f0930 t dentry_create
+ffffffff812f09d0 t open_with_fake_path
+ffffffff812f0a40 t build_open_how
+ffffffff812f0aa0 t build_open_flags
+ffffffff812f0c20 t file_open_name
+ffffffff812f0ce0 t filp_open
+ffffffff812f0dd0 t filp_open_block
+ffffffff812f0e60 t filp_close
+ffffffff812f0ee0 t file_open_root
+ffffffff812f0fa0 t do_sys_open
+ffffffff812f1020 t do_sys_openat2
+ffffffff812f1270 t __x64_sys_open
+ffffffff812f1310 t __x64_sys_openat
+ffffffff812f13b0 t __x64_sys_openat2
+ffffffff812f14b0 t __x64_sys_creat
+ffffffff812f1520 t __x64_sys_close
+ffffffff812f1560 t __x64_sys_close_range
+ffffffff812f1580 t __x64_sys_vhangup
+ffffffff812f15b0 t generic_file_open
+ffffffff812f15e0 t nonseekable_open
+ffffffff812f1600 t stream_open
+ffffffff812f1620 t do_faccessat
+ffffffff812f18e0 t do_fchmodat
+ffffffff812f19c0 t generic_file_llseek
+ffffffff812f19f0 t vfs_setpos
+ffffffff812f1a40 t generic_file_llseek_size
+ffffffff812f1b40 t fixed_size_llseek
+ffffffff812f1b60 t no_seek_end_llseek
+ffffffff812f1b90 t no_seek_end_llseek_size
+ffffffff812f1bb0 t noop_llseek
+ffffffff812f1bc0 t default_llseek
+ffffffff812f1c90 t vfs_llseek
+ffffffff812f1cc0 t __x64_sys_lseek
+ffffffff812f1d60 t rw_verify_area
+ffffffff812f1dc0 t __kernel_read
+ffffffff812f1fd0 t warn_unsupported
+ffffffff812f2030 t kernel_read
+ffffffff812f20c0 t vfs_read
+ffffffff812f2360 t __kernel_write_iter
+ffffffff812f2500 t __kernel_write
+ffffffff812f25b0 t kernel_write
+ffffffff812f27f0 t vfs_write
+ffffffff812f2ba0 t ksys_read
+ffffffff812f2c80 t __x64_sys_read
+ffffffff812f2ca0 t ksys_write
+ffffffff812f2d80 t __x64_sys_write
+ffffffff812f2da0 t ksys_pread64
+ffffffff812f2e50 t __x64_sys_pread64
+ffffffff812f2f10 t ksys_pwrite64
+ffffffff812f2fc0 t __x64_sys_pwrite64
+ffffffff812f3080 t vfs_iocb_iter_read
+ffffffff812f31f0 t vfs_iter_read
+ffffffff812f3220 t do_iter_read
+ffffffff812f3500 t vfs_iocb_iter_write
+ffffffff812f3680 t vfs_iter_write
+ffffffff812f36b0 t do_iter_write
+ffffffff812f3990 t __x64_sys_readv
+ffffffff812f39c0 t __x64_sys_writev
+ffffffff812f39f0 t __x64_sys_preadv
+ffffffff812f3a20 t __x64_sys_preadv2
+ffffffff812f3a60 t __x64_sys_pwritev
+ffffffff812f3b50 t __x64_sys_pwritev2
+ffffffff812f3c60 t __x64_sys_sendfile
+ffffffff812f3d00 t __x64_sys_sendfile64
+ffffffff812f3dc0 t generic_copy_file_range
+ffffffff812f3e20 t vfs_copy_file_range
+ffffffff812f4430 t __x64_sys_copy_file_range
+ffffffff812f4600 t generic_write_check_limits
+ffffffff812f4690 t generic_write_checks_count
+ffffffff812f4770 t generic_write_checks
+ffffffff812f47e0 t generic_file_rw_checks
+ffffffff812f4860 t do_readv
+ffffffff812f4ab0 t do_writev
+ffffffff812f4bc0 t vfs_writev
+ffffffff812f4e40 t do_preadv
+ffffffff812f5070 t do_sendfile
+ffffffff812f5470 t get_max_files
+ffffffff812f5490 t alloc_empty_file
+ffffffff812f5570 t __alloc_file
+ffffffff812f5640 t alloc_empty_file_noaccount
+ffffffff812f5660 t alloc_file_pseudo
+ffffffff812f5760 t alloc_file
+ffffffff812f58a0 t alloc_file_clone
+ffffffff812f58f0 t flush_delayed_fput
+ffffffff812f5930 t delayed_fput
+ffffffff812f5970 t fput
+ffffffff812f59f0 t ____fput
+ffffffff812f5a00 t __fput_sync
+ffffffff812f5a30 t __fput
+ffffffff812f5c50 t proc_nr_files
+ffffffff812f5c90 t file_free_rcu
+ffffffff812f5cd0 t put_super
+ffffffff812f5d00 t __put_super
+ffffffff812f5da0 t deactivate_locked_super
+ffffffff812f5e20 t deactivate_super
+ffffffff812f5e60 t trylock_super
+ffffffff812f5eb0 t retire_super
+ffffffff812f5f20 t generic_shutdown_super
+ffffffff812f6060 t mount_capable
+ffffffff812f60a0 t sget_fc
+ffffffff812f6320 t alloc_super
+ffffffff812f6640 t destroy_unused_super
+ffffffff812f66d0 t grab_super
+ffffffff812f6760 t sget
+ffffffff812f69b0 t drop_super
+ffffffff812f69f0 t drop_super_exclusive
+ffffffff812f6a30 t iterate_supers
+ffffffff812f6b20 t iterate_supers_type
+ffffffff812f6c00 t get_super
+ffffffff812f6cd0 t get_active_super
+ffffffff812f6d50 t user_get_super
+ffffffff812f6e50 t reconfigure_super
+ffffffff812f7060 t emergency_remount
+ffffffff812f70c0 t do_emergency_remount
+ffffffff812f70f0 t emergency_thaw_all
+ffffffff812f7150 t do_thaw_all
+ffffffff812f7180 t get_anon_bdev
+ffffffff812f71c0 t free_anon_bdev
+ffffffff812f71e0 t set_anon_super
+ffffffff812f7230 t kill_anon_super
+ffffffff812f7260 t kill_litter_super
+ffffffff812f72b0 t set_anon_super_fc
+ffffffff812f7300 t vfs_get_super
+ffffffff812f73e0 t test_single_super
+ffffffff812f73f0 t test_keyed_super
+ffffffff812f7410 t get_tree_nodev
+ffffffff812f74b0 t get_tree_single
+ffffffff812f7550 t get_tree_single_reconf
+ffffffff812f7570 t get_tree_keyed
+ffffffff812f7620 t get_tree_bdev
+ffffffff812f7860 t test_bdev_super_fc
+ffffffff812f7890 t set_bdev_super_fc
+ffffffff812f7920 t mount_bdev
+ffffffff812f7ae0 t test_bdev_super
+ffffffff812f7b00 t set_bdev_super
+ffffffff812f7b80 t kill_block_super
+ffffffff812f7bd0 t mount_nodev
+ffffffff812f7c60 t reconfigure_single
+ffffffff812f7cc0 t mount_single
+ffffffff812f7db0 t compare_single
+ffffffff812f7dc0 t vfs_get_tree
+ffffffff812f7e80 t super_setup_bdi_name
+ffffffff812f7f80 t super_setup_bdi
+ffffffff812f7fb0 t freeze_super
+ffffffff812f8120 t thaw_super
+ffffffff812f8150 t thaw_super_locked.llvm.791657018508587441
+ffffffff812f8230 t destroy_super_rcu
+ffffffff812f8280 t destroy_super_work
+ffffffff812f82d0 t super_cache_scan
+ffffffff812f84e0 t super_cache_count
+ffffffff812f85d0 t __iterate_supers
+ffffffff812f8690 t do_emergency_remount_callback
+ffffffff812f8720 t do_thaw_all_callback
+ffffffff812f8770 t chrdev_show
+ffffffff812f87f0 t register_chrdev_region
+ffffffff812f8950 t __register_chrdev_region
+ffffffff812f8dd0 t alloc_chrdev_region
+ffffffff812f8e10 t __register_chrdev
+ffffffff812f8fe0 t cdev_alloc
+ffffffff812f9030 t cdev_add
+ffffffff812f9090 t unregister_chrdev_region
+ffffffff812f9190 t __unregister_chrdev
+ffffffff812f9280 t cdev_del
+ffffffff812f92b0 t cdev_put
+ffffffff812f92d0 t cd_forget
+ffffffff812f9350 t chrdev_open.llvm.7778121972292407816
+ffffffff812f9540 t exact_match
+ffffffff812f9550 t exact_lock
+ffffffff812f9590 t cdev_set_parent
+ffffffff812f95b0 t cdev_device_add
+ffffffff812f9690 t cdev_device_del
+ffffffff812f96e0 t cdev_init
+ffffffff812f9730 t base_probe.llvm.7778121972292407816
+ffffffff812f9780 t cdev_dynamic_release
+ffffffff812f9810 t cdev_default_release
+ffffffff812f98a0 t generic_fillattr
+ffffffff812f9940 t generic_fill_statx_attr
+ffffffff812f9970 t vfs_getattr_nosec
+ffffffff812f9ab0 t vfs_getattr
+ffffffff812f9af0 t vfs_fstat
+ffffffff812f9c80 t getname_statx_lookup_flags
+ffffffff812f9cb0 t vfs_fstatat
+ffffffff812f9d20 t vfs_statx
+ffffffff812f9f00 t __x64_sys_stat
+ffffffff812f9fc0 t __x64_sys_lstat
+ffffffff812fa080 t __x64_sys_fstat
+ffffffff812fa110 t __x64_sys_newstat
+ffffffff812fa370 t __x64_sys_newlstat
+ffffffff812fa5d0 t __x64_sys_newfstatat
+ffffffff812fa860 t __x64_sys_newfstat
+ffffffff812faa80 t __x64_sys_readlinkat
+ffffffff812faab0 t __x64_sys_readlink
+ffffffff812faae0 t do_statx
+ffffffff812faba0 t cp_statx
+ffffffff812fad60 t __x64_sys_statx
+ffffffff812fae70 t __inode_add_bytes
+ffffffff812faed0 t inode_add_bytes
+ffffffff812faf60 t __inode_sub_bytes
+ffffffff812fafb0 t inode_sub_bytes
+ffffffff812fb030 t inode_get_bytes
+ffffffff812fb080 t inode_set_bytes
+ffffffff812fb0b0 t cp_old_stat
+ffffffff812fb1f0 t do_readlinkat
+ffffffff812fb380 t __register_binfmt
+ffffffff812fb410 t unregister_binfmt
+ffffffff812fb470 t path_noexec
+ffffffff812fb4a0 t copy_string_kernel
+ffffffff812fb5d0 t get_arg_page
+ffffffff812fb710 t setup_arg_pages
+ffffffff812fbd50 t open_exec
+ffffffff812fbda0 t do_open_execat
+ffffffff812fc020 t __get_task_comm
+ffffffff812fc080 t __set_task_comm
+ffffffff812fc120 t begin_new_exec
+ffffffff812fca00 t would_dump
+ffffffff812fcab0 t unshare_sighand
+ffffffff812fcb60 t set_dumpable
+ffffffff812fcbb0 t setup_new_exec
+ffffffff812fcc40 t finalize_exec
+ffffffff812fccb0 t bprm_change_interp
+ffffffff812fcd00 t remove_arg_zero
+ffffffff812fcdd0 t kernel_execve
+ffffffff812fd0a0 t alloc_bprm
+ffffffff812fd330 t bprm_execve
+ffffffff812fd920 t free_bprm
+ffffffff812fda00 t set_binfmt
+ffffffff812fda30 t __x64_sys_execve
+ffffffff812fda80 t __x64_sys_execveat
+ffffffff812fdae0 t cgroup_threadgroup_change_begin
+ffffffff812fdb40 t cgroup_threadgroup_change_end
+ffffffff812fdbb0 t do_execveat_common
+ffffffff812fdf00 t copy_strings
+ffffffff812fe180 t proc_dointvec_minmax_coredump
+ffffffff812fe1a0 t pipe_lock
+ffffffff812fe1c0 t pipe_unlock
+ffffffff812fe1e0 t pipe_double_lock
+ffffffff812fe240 t generic_pipe_buf_try_steal
+ffffffff812fe2b0 t generic_pipe_buf_get
+ffffffff812fe2f0 t generic_pipe_buf_release
+ffffffff812fe320 t account_pipe_buffers
+ffffffff812fe340 t too_many_pipe_buffers_soft
+ffffffff812fe360 t too_many_pipe_buffers_hard
+ffffffff812fe380 t pipe_is_unprivileged_user
+ffffffff812fe3b0 t alloc_pipe_info
+ffffffff812fe5a0 t free_pipe_info
+ffffffff812fe650 t create_pipe_files
+ffffffff812fe850 t do_pipe_flags
+ffffffff812fe8d0 t __do_pipe_flags
+ffffffff812fe980 t __x64_sys_pipe2
+ffffffff812fe9a0 t __x64_sys_pipe
+ffffffff812fe9c0 t pipe_wait_readable
+ffffffff812feab0 t pipe_wait_writable
+ffffffff812feba0 t pipe_read.llvm.17083903144580709757
+ffffffff812fefd0 t pipe_write.llvm.17083903144580709757
+ffffffff812ff640 t pipe_poll.llvm.17083903144580709757
+ffffffff812ff730 t pipe_ioctl.llvm.17083903144580709757
+ffffffff812ff830 t fifo_open.llvm.17083903144580709757
+ffffffff812ffb10 t pipe_release.llvm.17083903144580709757
+ffffffff812ffc00 t pipe_fasync.llvm.17083903144580709757
+ffffffff812ffcb0 t round_pipe_size
+ffffffff812ffd00 t pipe_resize_ring
+ffffffff812ffe60 t get_pipe_info
+ffffffff812ffe90 t pipe_fcntl
+ffffffff81300040 t do_pipe2
+ffffffff81300120 t anon_pipe_buf_release
+ffffffff81300190 t anon_pipe_buf_try_steal
+ffffffff813001f0 t wait_for_partner
+ffffffff813002f0 t pipefs_init_fs_context
+ffffffff81300330 t pipefs_dname
+ffffffff81300360 t proc_dopipe_max_size
+ffffffff81300380 t do_proc_dopipe_max_size_conv
+ffffffff813003e0 t getname_flags
+ffffffff813005c0 t putname
+ffffffff81300620 t getname_uflags
+ffffffff81300640 t getname
+ffffffff81300660 t getname_kernel
+ffffffff81300770 t generic_permission
+ffffffff813008e0 t inode_permission
+ffffffff813009d0 t path_get
+ffffffff81300a00 t path_put
+ffffffff81300a30 t nd_jump_link
+ffffffff81300ae0 t may_linkat
+ffffffff81300b80 t follow_up
+ffffffff81300c10 t follow_down_one
+ffffffff81300c70 t follow_down
+ffffffff81300d00 t full_name_hash
+ffffffff81300d90 t hashlen_string
+ffffffff81300e60 t filename_lookup
+ffffffff81301070 t path_lookupat
+ffffffff81301180 t kern_path_locked
+ffffffff813012e0 t kern_path
+ffffffff81301370 t vfs_path_lookup
+ffffffff81301430 t try_lookup_one_len
+ffffffff81301510 t lookup_one_common
+ffffffff813016a0 t lookup_one_len
+ffffffff81301790 t __lookup_slow
+ffffffff813018c0 t lookup_one
+ffffffff813019a0 t lookup_one_unlocked
+ffffffff81301a90 t lookup_slow
+ffffffff81301ae0 t lookup_one_positive_unlocked
+ffffffff81301b20 t lookup_one_len_unlocked
+ffffffff81301b40 t lookup_positive_unlocked
+ffffffff81301b90 t path_pts
+ffffffff81301c80 t user_path_at_empty
+ffffffff81301d20 t __check_sticky
+ffffffff81301d60 t lock_rename
+ffffffff81301de0 t unlock_rename
+ffffffff81301e30 t vfs_create
+ffffffff81301ff0 t vfs_mkobj
+ffffffff81302180 t may_open_dev
+ffffffff813021b0 t vfs_tmpfile_open
+ffffffff81302210 t vfs_tmpfile
+ffffffff81302390 t do_filp_open
+ffffffff813024f0 t path_openat
+ffffffff813030d0 t do_file_open_root
+ffffffff81303320 t kern_path_create
+ffffffff813033b0 t filename_create
+ffffffff81303530 t done_path_create
+ffffffff81303580 t user_path_create
+ffffffff81303610 t vfs_mknod
+ffffffff81303820 t __x64_sys_mknodat
+ffffffff81303870 t __x64_sys_mknod
+ffffffff813038b0 t vfs_mkdir
+ffffffff81303a80 t do_mkdirat
+ffffffff81303c40 t __x64_sys_mkdirat
+ffffffff81303c80 t __x64_sys_mkdir
+ffffffff81303cc0 t vfs_rmdir
+ffffffff81303e40 t may_delete
+ffffffff81303fc0 t dont_mount
+ffffffff81303ff0 t dont_mount
+ffffffff81304020 t d_delete_notify
+ffffffff813040b0 t do_rmdir
+ffffffff81304350 t filename_parentat
+ffffffff813045d0 t __lookup_hash
+ffffffff813046b0 t __x64_sys_rmdir
+ffffffff813046e0 t vfs_unlink
+ffffffff813048b0 t try_break_deleg
+ffffffff81304920 t fsnotify_link_count
+ffffffff81304970 t do_unlinkat
+ffffffff81304c60 t __x64_sys_unlinkat
+ffffffff81304cc0 t __x64_sys_unlink
+ffffffff81304cf0 t vfs_symlink
+ffffffff81304e60 t do_symlinkat
+ffffffff81305060 t __x64_sys_symlinkat
+ffffffff813050b0 t __x64_sys_symlink
+ffffffff81305100 t vfs_link
+ffffffff81305310 t fsnotify_link
+ffffffff813053d0 t do_linkat
+ffffffff813057e0 t __x64_sys_linkat
+ffffffff81305850 t __x64_sys_link
+ffffffff813058a0 t vfs_rename
+ffffffff81305e40 t fsnotify_move
+ffffffff81306000 t fsnotify_move
+ffffffff81306170 t do_renameat2
+ffffffff81306800 t __x64_sys_renameat2
+ffffffff81306860 t __x64_sys_renameat
+ffffffff813068c0 t __x64_sys_rename
+ffffffff81306910 t readlink_copy
+ffffffff81306990 t vfs_readlink
+ffffffff81306b00 t vfs_get_link
+ffffffff81306b60 t page_get_link
+ffffffff81306c50 t page_put_link
+ffffffff81306c80 t page_readlink
+ffffffff81306d50 t page_symlink
+ffffffff81306ed0 t check_acl
+ffffffff81306fa0 t __traverse_mounts
+ffffffff81307180 t path_init
+ffffffff81307510 t handle_lookup_down
+ffffffff81307550 t link_path_walk
+ffffffff81307a30 t complete_walk
+ffffffff81307af0 t terminate_walk
+ffffffff81307bf0 t nd_jump_root
+ffffffff81307ce0 t set_root
+ffffffff81307dc0 t step_into
+ffffffff813080c0 t pick_link
+ffffffff81308440 t try_to_unlazy_next
+ffffffff81308570 t legitimize_links
+ffffffff813086a0 t drop_links
+ffffffff81308710 t legitimize_path
+ffffffff81308770 t try_to_unlazy
+ffffffff813088a0 t put_link
+ffffffff81308900 t nd_alloc_stack
+ffffffff81308950 t walk_component
+ffffffff81308a30 t handle_dots
+ffffffff81308d10 t lookup_fast
+ffffffff81308e20 t choose_mountpoint_rcu
+ffffffff81308e90 t choose_mountpoint
+ffffffff81308f90 t may_open
+ffffffff81309100 t do_tmpfile
+ffffffff813091f0 t do_o_path
+ffffffff813092b0 t do_mknodat
+ffffffff813095b0 t path_parentat
+ffffffff81309620 t __f_setown
+ffffffff81309660 t f_modown.llvm.16033005334516342117
+ffffffff81309730 t f_setown
+ffffffff813097d0 t f_delown
+ffffffff81309820 t f_getown
+ffffffff813098a0 t __x64_sys_fcntl
+ffffffff8130a150 t send_sigio
+ffffffff8130a270 t send_sigio_to_task
+ffffffff8130a400 t send_sigurg
+ffffffff8130a520 t send_sigurg_to_task
+ffffffff8130a5b0 t fasync_remove_entry
+ffffffff8130a670 t fasync_free_rcu
+ffffffff8130a690 t fasync_alloc
+ffffffff8130a6b0 t fasync_free
+ffffffff8130a6d0 t fasync_insert_entry
+ffffffff8130a7a0 t fasync_helper
+ffffffff8130a830 t kill_fasync
+ffffffff8130a8e0 t vfs_ioctl
+ffffffff8130a920 t fiemap_fill_next_extent
+ffffffff8130aa30 t fiemap_prep
+ffffffff8130aab0 t fileattr_fill_xflags
+ffffffff8130ab20 t fileattr_fill_flags
+ffffffff8130aba0 t vfs_fileattr_get
+ffffffff8130abe0 t copy_fsxattr_to_user
+ffffffff8130ac60 t vfs_fileattr_set
+ffffffff8130ae90 t __x64_sys_ioctl
+ffffffff8130bc00 t iterate_dir
+ffffffff8130bd80 t __x64_sys_old_readdir
+ffffffff8130be40 t __x64_sys_getdents
+ffffffff8130bf40 t __x64_sys_getdents64
+ffffffff8130c040 t fillonedir
+ffffffff8130c190 t filldir
+ffffffff8130c320 t filldir64
+ffffffff8130c4b0 t select_estimate_accuracy
+ffffffff8130c5d0 t poll_initwait
+ffffffff8130c610 t __pollwait
+ffffffff8130c6f0 t poll_freewait
+ffffffff8130c7a0 t poll_select_set_timeout
+ffffffff8130c810 t core_sys_select
+ffffffff8130cb90 t do_select
+ffffffff8130d430 t set_fd_set
+ffffffff8130d490 t __x64_sys_select
+ffffffff8130d610 t __x64_sys_pselect6
+ffffffff8130d7d0 t __x64_sys_poll
+ffffffff8130d900 t __x64_sys_ppoll
+ffffffff8130da60 t pollwake
+ffffffff8130dae0 t poll_select_finish
+ffffffff8130dcc0 t do_sys_poll
+ffffffff8130e3a0 t do_restart_poll
+ffffffff8130e430 t take_dentry_name_snapshot
+ffffffff8130e4a0 t release_dentry_name_snapshot
+ffffffff8130e4e0 t __d_drop
+ffffffff8130e510 t ___d_drop
+ffffffff8130e5f0 t d_drop
+ffffffff8130e640 t d_mark_dontcache
+ffffffff8130e6c0 t dput
+ffffffff8130e790 t retain_dentry
+ffffffff8130e810 t dentry_kill
+ffffffff8130e920 t dput_to_list
+ffffffff8130e9e0 t __dput_to_list
+ffffffff8130ead0 t dget_parent
+ffffffff8130eb80 t d_find_any_alias
+ffffffff8130ebd0 t d_find_alias
+ffffffff8130ecc0 t d_find_alias_rcu
+ffffffff8130ed60 t d_prune_aliases
+ffffffff8130ee50 t lock_parent
+ffffffff8130ee90 t __dentry_kill
+ffffffff8130f090 t shrink_dentry_list
+ffffffff8130f250 t shrink_lock_dentry
+ffffffff8130f350 t prune_dcache_sb
+ffffffff8130f3d0 t dentry_lru_isolate
+ffffffff8130f4d0 t shrink_dcache_sb
+ffffffff8130f560 t dentry_lru_isolate_shrink
+ffffffff8130f5f0 t path_has_submounts
+ffffffff8130f870 t d_set_mounted
+ffffffff8130f940 t shrink_dcache_parent
+ffffffff8130fec0 t select_collect
+ffffffff81310000 t select_collect2
+ffffffff81310160 t shrink_dcache_for_umount
+ffffffff813101e0 t do_one_tree
+ffffffff813104d0 t d_invalidate
+ffffffff813107a0 t d_alloc
+ffffffff81310830 t __d_alloc.llvm.741653512149011007
+ffffffff813109f0 t d_alloc_anon
+ffffffff81310a10 t d_alloc_cursor
+ffffffff81310a60 t d_alloc_pseudo
+ffffffff81310a80 t d_alloc_name
+ffffffff81310b50 t d_set_d_op
+ffffffff81310bd0 t d_set_fallthru
+ffffffff81310c00 t d_instantiate
+ffffffff81310c60 t __d_instantiate
+ffffffff81310de0 t d_instantiate_new
+ffffffff81310e70 t d_make_root
+ffffffff81310ef0 t d_instantiate_anon
+ffffffff81310f10 t __d_instantiate_anon
+ffffffff813111a0 t d_obtain_alias
+ffffffff813111c0 t __d_obtain_alias.llvm.741653512149011007
+ffffffff81311280 t d_obtain_root
+ffffffff813112a0 t d_add_ci
+ffffffff81311460 t d_hash_and_lookup
+ffffffff813114e0 t d_alloc_parallel
+ffffffff81311a40 t d_splice_alias
+ffffffff81311bf0 t d_same_name
+ffffffff81311c90 t __d_lookup_rcu
+ffffffff81311d80 t __d_lookup_rcu_op_compare
+ffffffff81311e60 t d_lookup
+ffffffff81311ec0 t __d_lookup
+ffffffff81312000 t d_delete
+ffffffff81312080 t dentry_unlink_inode
+ffffffff81312190 t d_rehash
+ffffffff813121c0 t __d_rehash.llvm.741653512149011007
+ffffffff813122a0 t hlist_bl_unlock
+ffffffff813122e0 t __d_lookup_unhash_wake
+ffffffff81312330 t __d_lookup_unhash
+ffffffff81312470 t d_add
+ffffffff813124b0 t __d_add
+ffffffff813126c0 t d_exact_alias
+ffffffff81312830 t d_move
+ffffffff81312880 t __d_move
+ffffffff81312d70 t d_exchange
+ffffffff81312e00 t d_ancestor
+ffffffff81312e40 t __d_unalias
+ffffffff81312f10 t is_subdir
+ffffffff81312fa0 t d_genocide
+ffffffff813131a0 t d_tmpfile
+ffffffff81313290 t proc_nr_dentry
+ffffffff813133e0 t d_lru_add
+ffffffff81313440 t __lock_parent
+ffffffff813134b0 t __d_free_external
+ffffffff813134f0 t __d_free
+ffffffff81313510 t get_nr_dirty_inodes
+ffffffff813135e0 t inode_init_always
+ffffffff813137d0 t no_open
+ffffffff813137e0 t free_inode_nonrcu
+ffffffff81313800 t __destroy_inode
+ffffffff813139a0 t drop_nlink
+ffffffff813139e0 t clear_nlink
+ffffffff81313a10 t set_nlink
+ffffffff81313a60 t inc_nlink
+ffffffff81313aa0 t address_space_init_once
+ffffffff81313b10 t inode_init_once
+ffffffff81313c10 t __iget
+ffffffff81313c30 t ihold
+ffffffff81313c60 t inode_add_lru
+ffffffff81313ce0 t inode_sb_list_add
+ffffffff81313d60 t __insert_inode_hash
+ffffffff81313e20 t __remove_inode_hash
+ffffffff81313e90 t dump_mapping
+ffffffff81314050 t clear_inode
+ffffffff813140d0 t evict_inodes
+ffffffff813142e0 t invalidate_inodes
+ffffffff81314520 t prune_icache_sb
+ffffffff813145e0 t inode_lru_isolate
+ffffffff81314790 t get_next_ino
+ffffffff81314810 t new_inode_pseudo
+ffffffff81314860 t alloc_inode
+ffffffff81314920 t new_inode
+ffffffff813149e0 t unlock_new_inode
+ffffffff81314a40 t discard_new_inode
+ffffffff81314ab0 t iput
+ffffffff81314cf0 t lock_two_nondirectories
+ffffffff81314d60 t unlock_two_nondirectories
+ffffffff81314dd0 t inode_insert5
+ffffffff81314fc0 t find_inode
+ffffffff813151a0 t wait_on_inode
+ffffffff813151f0 t iget5_locked
+ffffffff81315280 t ilookup5
+ffffffff813153a0 t destroy_inode
+ffffffff81315420 t iget_locked
+ffffffff813156c0 t find_inode_fast
+ffffffff81315860 t iunique
+ffffffff813159c0 t igrab
+ffffffff81315a10 t ilookup5_nowait
+ffffffff81315ab0 t ilookup
+ffffffff81315be0 t find_inode_nowait
+ffffffff81315ce0 t find_inode_rcu
+ffffffff81315db0 t find_inode_by_ino_rcu
+ffffffff81315e60 t insert_inode_locked
+ffffffff81316030 t insert_inode_locked4
+ffffffff81316070 t generic_delete_inode
+ffffffff81316080 t bmap
+ffffffff813160c0 t generic_update_time
+ffffffff81316170 t inode_update_time
+ffffffff81316240 t atime_needs_update
+ffffffff81316320 t current_time
+ffffffff81316440 t touch_atime
+ffffffff81316600 t dentry_needs_remove_privs
+ffffffff81316650 t file_remove_privs
+ffffffff81316670 t __file_remove_privs.llvm.6858490225343322523
+ffffffff81316800 t file_update_time
+ffffffff813168b0 t __file_update_time
+ffffffff813169e0 t file_modified
+ffffffff81316a00 t file_modified_flags.llvm.6858490225343322523
+ffffffff81316ae0 t kiocb_modified
+ffffffff81316b00 t inode_needs_sync
+ffffffff81316b50 t init_once
+ffffffff81316c50 t init_once
+ffffffff81316c70 t init_once
+ffffffff81316ce0 t init_once
+ffffffff81316d90 t init_once
+ffffffff81316db0 t init_once
+ffffffff81316de0 t init_once
+ffffffff81316e00 t init_special_inode
+ffffffff81316e90 t inode_init_owner
+ffffffff81316ef0 t inode_owner_or_capable
+ffffffff81316f40 t inode_dio_wait
+ffffffff81317030 t inode_set_flags
+ffffffff81317070 t inode_nohighmem
+ffffffff81317090 t timestamp_truncate
+ffffffff81317130 t in_group_or_capable
+ffffffff81317170 t mode_strip_sgid
+ffffffff813171e0 t proc_nr_inodes
+ffffffff813172f0 t evict
+ffffffff81317510 t i_callback
+ffffffff81317550 t setattr_should_drop_sgid
+ffffffff81317590 t setattr_should_drop_suidgid
+ffffffff81317630 t setattr_prepare
+ffffffff813178c0 t inode_newsize_ok
+ffffffff81317940 t setattr_copy
+ffffffff813179f0 t may_setattr
+ffffffff81317a60 t notify_change
+ffffffff81317d80 t fsnotify_change
+ffffffff81317e40 t make_bad_inode
+ffffffff81317eb0 t is_bad_inode
+ffffffff81317ed0 t iget_failed
+ffffffff81317f50 t bad_inode_lookup.llvm.12442993005467917419
+ffffffff81317f70 t bad_inode_get_link.llvm.12442993005467917419
+ffffffff81317f90 t bad_inode_permission.llvm.12442993005467917419
+ffffffff81317fa0 t bad_inode_get_acl.llvm.12442993005467917419
+ffffffff81317fc0 t bad_inode_readlink.llvm.12442993005467917419
+ffffffff81317fd0 t bad_inode_create.llvm.12442993005467917419
+ffffffff81317fe0 t bad_inode_link.llvm.12442993005467917419
+ffffffff81317ff0 t bad_inode_unlink.llvm.12442993005467917419
+ffffffff81318000 t bad_inode_symlink.llvm.12442993005467917419
+ffffffff81318010 t bad_inode_mkdir.llvm.12442993005467917419
+ffffffff81318020 t bad_inode_rmdir.llvm.12442993005467917419
+ffffffff81318030 t bad_inode_mknod.llvm.12442993005467917419
+ffffffff81318040 t bad_inode_rename2.llvm.12442993005467917419
+ffffffff81318050 t bad_inode_setattr.llvm.12442993005467917419
+ffffffff81318060 t bad_inode_getattr.llvm.12442993005467917419
+ffffffff81318070 t bad_inode_listxattr.llvm.12442993005467917419
+ffffffff81318090 t bad_inode_fiemap.llvm.12442993005467917419
+ffffffff813180a0 t bad_inode_update_time.llvm.12442993005467917419
+ffffffff813180b0 t bad_inode_atomic_open.llvm.12442993005467917419
+ffffffff813180c0 t bad_inode_tmpfile.llvm.12442993005467917419
+ffffffff813180d0 t bad_inode_set_acl.llvm.12442993005467917419
+ffffffff813180e0 t bad_file_open
+ffffffff813180f0 t dup_fd
+ffffffff81318460 t __free_fdtable
+ffffffff81318490 t alloc_fdtable
+ffffffff813185b0 t put_files_struct
+ffffffff81318690 t exit_files
+ffffffff813186e0 t __get_unused_fd_flags
+ffffffff81318700 t alloc_fd.llvm.8988232586672220673
+ffffffff81318870 t get_unused_fd_flags
+ffffffff813188a0 t put_unused_fd
+ffffffff81318910 t fd_install
+ffffffff813189d0 t rcu_read_unlock_sched
+ffffffff81318a00 t close_fd
+ffffffff81318ac0 t __close_range
+ffffffff81318d00 t __close_fd_get_file
+ffffffff81318d80 t close_fd_get_file
+ffffffff81318e30 t do_close_on_exec
+ffffffff81318f50 t fget
+ffffffff81318f80 t fget_raw
+ffffffff81318fb0 t fget_task
+ffffffff81319010 t __fget_files
+ffffffff813190c0 t task_lookup_fd_rcu
+ffffffff81319130 t task_lookup_next_fd_rcu
+ffffffff813191d0 t __fdget
+ffffffff81319250 t __fdget_raw
+ffffffff813192c0 t __fdget_pos
+ffffffff81319370 t __f_unlock_pos
+ffffffff81319390 t set_close_on_exec
+ffffffff81319400 t get_close_on_exec
+ffffffff81319440 t replace_fd
+ffffffff813194f0 t expand_files
+ffffffff813197b0 t do_dup2
+ffffffff81319870 t __receive_fd
+ffffffff81319960 t receive_fd_replace
+ffffffff81319a30 t receive_fd
+ffffffff81319aa0 t __x64_sys_dup3
+ffffffff81319ac0 t __x64_sys_dup2
+ffffffff81319b50 t __x64_sys_dup
+ffffffff81319bc0 t f_dupfd
+ffffffff81319c20 t iterate_fd
+ffffffff81319cd0 t free_fdtable_rcu
+ffffffff81319d10 t ksys_dup3
+ffffffff81319e00 t get_filesystem
+ffffffff81319e10 t put_filesystem
+ffffffff81319e20 t register_filesystem
+ffffffff81319ef0 t unregister_filesystem
+ffffffff81319f80 t __x64_sys_sysfs
+ffffffff8131a140 t get_fs_type
+ffffffff8131a2e0 t filesystems_proc_show
+ffffffff8131a360 t mnt_release_group_id
+ffffffff8131a390 t mnt_get_count
+ffffffff8131a400 t __mnt_is_readonly
+ffffffff8131a420 t __mnt_want_write
+ffffffff8131a4c0 t mnt_want_write
+ffffffff8131a5b0 t __mnt_want_write_file
+ffffffff8131a5f0 t mnt_want_write_file
+ffffffff8131a710 t __mnt_drop_write
+ffffffff8131a750 t mnt_drop_write
+ffffffff8131a7f0 t __mnt_drop_write_file
+ffffffff8131a840 t mnt_drop_write_file
+ffffffff8131a8f0 t sb_prepare_remount_readonly
+ffffffff8131aa40 t __legitimize_mnt
+ffffffff8131aaf0 t __lookup_mnt
+ffffffff8131ab60 t lookup_mnt
+ffffffff8131ac60 t __is_local_mountpoint
+ffffffff8131ad00 t mnt_set_mountpoint
+ffffffff8131ad60 t mnt_change_mountpoint
+ffffffff8131af10 t vfs_create_mount
+ffffffff8131b050 t alloc_vfsmnt
+ffffffff8131b210 t fc_mount
+ffffffff8131b250 t vfs_kern_mount
+ffffffff8131b310 t vfs_submount
+ffffffff8131b350 t mntput
+ffffffff8131b390 t mntput_no_expire
+ffffffff8131b5d0 t mntget
+ffffffff8131b5f0 t path_is_mountpoint
+ffffffff8131b6c0 t mnt_clone_internal
+ffffffff8131b700 t clone_mnt
+ffffffff8131ba40 t m_start.llvm.16968001797173734495
+ffffffff8131bae0 t m_stop.llvm.16968001797173734495
+ffffffff8131bbd0 t m_next.llvm.16968001797173734495
+ffffffff8131bc50 t m_show.llvm.16968001797173734495
+ffffffff8131bc70 t mnt_cursor_del
+ffffffff8131bd00 t may_umount_tree
+ffffffff8131be30 t may_umount
+ffffffff8131bea0 t __detach_mounts
+ffffffff8131c070 t umount_tree
+ffffffff8131c440 t namespace_unlock
+ffffffff8131c5a0 t may_mount
+ffffffff8131c5d0 t path_umount
+ffffffff8131cae0 t __x64_sys_umount
+ffffffff8131cb70 t __x64_sys_oldumount
+ffffffff8131cbe0 t from_mnt_ns
+ffffffff8131cbf0 t copy_tree
+ffffffff8131cff0 t collect_mounts
+ffffffff8131d070 t dissolve_on_fput
+ffffffff8131d120 t free_mnt_ns
+ffffffff8131d170 t drop_collected_mounts
+ffffffff8131d1d0 t clone_private_mount
+ffffffff8131d2c0 t iterate_mounts
+ffffffff8131d330 t count_mounts
+ffffffff8131d3b0 t __x64_sys_open_tree
+ffffffff8131d7b0 t finish_automount
+ffffffff8131db40 t get_mountpoint
+ffffffff8131dce0 t mnt_set_expiry
+ffffffff8131dd50 t mark_mounts_for_expiry
+ffffffff8131ded0 t path_mount
+ffffffff8131e400 t do_loopback
+ffffffff8131e5d0 t do_change_type
+ffffffff8131e720 t do_move_mount_old
+ffffffff8131e7c0 t do_new_mount
+ffffffff8131eb40 t do_mount
+ffffffff8131ebf0 t copy_mnt_ns
+ffffffff8131eed0 t alloc_mnt_ns
+ffffffff8131efe0 t lock_mnt_tree
+ffffffff8131f0a0 t mount_subtree
+ffffffff8131f2a0 t put_mnt_ns
+ffffffff8131f350 t __x64_sys_mount
+ffffffff8131f540 t __x64_sys_fsmount
+ffffffff8131f940 t __x64_sys_move_mount
+ffffffff8131fcd0 t is_path_reachable
+ffffffff8131fd20 t path_is_under
+ffffffff8131fda0 t __x64_sys_pivot_root
+ffffffff813205c0 t __x64_sys_mount_setattr
+ffffffff81320d20 t kern_mount
+ffffffff81320d50 t kern_unmount
+ffffffff81320db0 t kern_unmount_array
+ffffffff81320ee0 t our_mnt
+ffffffff81320f10 t current_chrooted
+ffffffff81321000 t mnt_may_suid
+ffffffff81321040 t mntns_get.llvm.16968001797173734495
+ffffffff813210b0 t mntns_put.llvm.16968001797173734495
+ffffffff813210c0 t mntns_install.llvm.16968001797173734495
+ffffffff81321230 t mntns_owner.llvm.16968001797173734495
+ffffffff81321240 t __put_mountpoint
+ffffffff813212d0 t unhash_mnt
+ffffffff81321390 t __cleanup_mnt
+ffffffff813213b0 t cleanup_mnt
+ffffffff81321520 t delayed_mntput
+ffffffff81321550 t delayed_free_vfsmnt
+ffffffff81321590 t __do_loopback
+ffffffff81321670 t graft_tree
+ffffffff813216d0 t attach_recursive_mnt
+ffffffff81321d90 t invent_group_ids
+ffffffff81321ed0 t commit_tree
+ffffffff81322090 t set_mount_attributes
+ffffffff813220e0 t mnt_warn_timestamp_expiry
+ffffffff81322230 t lock_mount
+ffffffff81322330 t do_move_mount
+ffffffff813225b0 t tree_contains_unbindable
+ffffffff81322610 t check_for_nsfs_mounts
+ffffffff813226f0 t mount_too_revealing
+ffffffff813228b0 t seq_open
+ffffffff81322930 t seq_read
+ffffffff81322a30 t seq_read_iter
+ffffffff81322e50 t traverse
+ffffffff81323030 t seq_lseek
+ffffffff813230f0 t seq_release
+ffffffff81323120 t seq_escape_mem
+ffffffff81323190 t seq_vprintf
+ffffffff813231e0 t seq_printf
+ffffffff81323290 t seq_bprintf
+ffffffff813232e0 t mangle_path
+ffffffff81323380 t seq_path
+ffffffff813234c0 t seq_file_path
+ffffffff813234e0 t seq_path_root
+ffffffff81323660 t seq_dentry
+ffffffff813237a0 t single_start
+ffffffff813237c0 t single_open
+ffffffff813238a0 t single_next
+ffffffff813238b0 t single_stop
+ffffffff813238c0 t single_open_size
+ffffffff81323960 t single_release
+ffffffff813239a0 t seq_release_private
+ffffffff81323a00 t __seq_open_private
+ffffffff81323ab0 t seq_open_private
+ffffffff81323ad0 t seq_putc
+ffffffff81323b00 t seq_puts
+ffffffff81323b50 t seq_put_decimal_ull_width
+ffffffff81323c40 t seq_put_decimal_ull
+ffffffff81323c60 t seq_put_hex_ll
+ffffffff81323db0 t seq_put_decimal_ll
+ffffffff81323ed0 t seq_write
+ffffffff81323f20 t seq_pad
+ffffffff81323fa0 t seq_hex_dump
+ffffffff81324120 t seq_list_start
+ffffffff81324150 t seq_list_start_head
+ffffffff81324190 t seq_list_next
+ffffffff813241b0 t seq_list_start_rcu
+ffffffff813241e0 t seq_list_start_head_rcu
+ffffffff81324220 t seq_list_next_rcu
+ffffffff81324240 t seq_hlist_start
+ffffffff81324270 t seq_hlist_start_head
+ffffffff813242b0 t seq_hlist_next
+ffffffff813242d0 t seq_hlist_start_rcu
+ffffffff81324300 t seq_hlist_start_head_rcu
+ffffffff81324340 t seq_hlist_next_rcu
+ffffffff81324360 t seq_hlist_start_percpu
+ffffffff813243f0 t seq_hlist_next_percpu
+ffffffff81324470 t xattr_supported_namespace
+ffffffff81324510 t __vfs_setxattr
+ffffffff81324660 t __vfs_setxattr_noperm
+ffffffff81324930 t __vfs_setxattr_locked
+ffffffff81324a20 t xattr_permission
+ffffffff81324b80 t vfs_setxattr
+ffffffff81324cf0 t vfs_getxattr_alloc
+ffffffff81324ee0 t __vfs_getxattr
+ffffffff81325010 t vfs_getxattr
+ffffffff81325260 t vfs_listxattr
+ffffffff813252e0 t __vfs_removexattr
+ffffffff81325410 t __vfs_removexattr_locked
+ffffffff81325680 t vfs_removexattr
+ffffffff81325780 t setxattr_copy
+ffffffff81325810 t do_setxattr
+ffffffff81325840 t __x64_sys_setxattr
+ffffffff81325870 t __x64_sys_lsetxattr
+ffffffff813258a0 t __x64_sys_fsetxattr
+ffffffff81325a90 t do_getxattr
+ffffffff81325ba0 t __x64_sys_getxattr
+ffffffff81325bd0 t __x64_sys_lgetxattr
+ffffffff81325c00 t __x64_sys_fgetxattr
+ffffffff81325d70 t __x64_sys_listxattr
+ffffffff81325da0 t __x64_sys_llistxattr
+ffffffff81325dd0 t __x64_sys_flistxattr
+ffffffff81325e60 t __x64_sys_removexattr
+ffffffff81325e80 t __x64_sys_lremovexattr
+ffffffff81325ea0 t __x64_sys_fremovexattr
+ffffffff81325ff0 t generic_listxattr
+ffffffff81326130 t xattr_full_name
+ffffffff81326160 t simple_xattr_alloc
+ffffffff813261c0 t simple_xattr_get
+ffffffff81326260 t simple_xattr_set
+ffffffff81326480 t simple_xattr_list
+ffffffff81326640 t simple_xattr_list_add
+ffffffff813266a0 t path_setxattr
+ffffffff813269b0 t path_getxattr
+ffffffff81326c20 t path_listxattr
+ffffffff81326d00 t listxattr
+ffffffff81326e50 t path_removexattr
+ffffffff81327030 t simple_getattr
+ffffffff81327080 t simple_statfs
+ffffffff813270b0 t always_delete_dentry
+ffffffff813270c0 t simple_lookup
+ffffffff81327120 t dcache_dir_open
+ffffffff81327150 t dcache_dir_close
+ffffffff81327170 t dcache_dir_lseek
+ffffffff81327300 t scan_positives
+ffffffff81327490 t dcache_readdir
+ffffffff813276f0 t generic_read_dir
+ffffffff81327710 t noop_fsync
+ffffffff81327720 t simple_recursive_removal
+ffffffff813279e0 t init_pseudo
+ffffffff81327a30 t simple_open
+ffffffff81327a50 t simple_link
+ffffffff81327ac0 t simple_empty
+ffffffff81327b60 t simple_unlink
+ffffffff81327bc0 t simple_rmdir
+ffffffff81327cb0 t simple_rename_exchange
+ffffffff81327d80 t simple_rename
+ffffffff81327fd0 t simple_setattr
+ffffffff81328030 t simple_write_begin
+ffffffff81328180 t simple_read_folio.llvm.15913657401236545631
+ffffffff81328230 t simple_write_end.llvm.15913657401236545631
+ffffffff81328370 t simple_fill_super
+ffffffff81328540 t simple_pin_fs
+ffffffff813285f0 t simple_release_fs
+ffffffff81328640 t simple_read_from_buffer
+ffffffff813286e0 t simple_write_to_buffer
+ffffffff81328780 t memory_read_from_buffer
+ffffffff813287e0 t simple_transaction_set
+ffffffff81328810 t simple_transaction_get
+ffffffff813288e0 t simple_transaction_read
+ffffffff81328990 t simple_transaction_release
+ffffffff813289b0 t simple_attr_open
+ffffffff81328a50 t simple_attr_release
+ffffffff81328a70 t simple_attr_read
+ffffffff81328c00 t simple_attr_write
+ffffffff81328c20 t simple_attr_write_xsigned.llvm.15913657401236545631
+ffffffff81328d40 t simple_attr_write_signed
+ffffffff81328d60 t generic_fh_to_dentry
+ffffffff81328db0 t generic_fh_to_parent
+ffffffff81328e00 t __generic_file_fsync
+ffffffff81328ea0 t generic_file_fsync
+ffffffff81328ed0 t generic_check_addressable
+ffffffff81328f20 t noop_direct_IO
+ffffffff81328f40 t kfree_link
+ffffffff81328f50 t alloc_anon_inode
+ffffffff81328ff0 t simple_nosetlease
+ffffffff81329000 t simple_get_link
+ffffffff81329020 t make_empty_dir_inode
+ffffffff81329080 t is_empty_dir_inode
+ffffffff813290c0 t generic_set_encrypted_ci_d_ops
+ffffffff813290f0 t inode_maybe_inc_iversion
+ffffffff81329150 t pseudo_fs_free
+ffffffff81329170 t pseudo_fs_get_tree
+ffffffff81329190 t pseudo_fs_fill_super
+ffffffff81329270 t empty_dir_lookup
+ffffffff81329290 t empty_dir_setattr
+ffffffff813292a0 t empty_dir_getattr
+ffffffff813292d0 t empty_dir_listxattr
+ffffffff813292f0 t empty_dir_llseek
+ffffffff81329310 t empty_dir_readdir
+ffffffff813293e0 t generic_ci_d_hash
+ffffffff81329440 t generic_ci_d_compare
+ffffffff81329570 t __traceiter_writeback_dirty_folio
+ffffffff813295c0 t __traceiter_folio_wait_writeback
+ffffffff81329610 t __traceiter_writeback_mark_inode_dirty
+ffffffff81329660 t __traceiter_writeback_dirty_inode_start
+ffffffff813296b0 t __traceiter_writeback_dirty_inode
+ffffffff81329700 t __traceiter_inode_foreign_history
+ffffffff81329760 t __traceiter_inode_switch_wbs
+ffffffff813297c0 t __traceiter_track_foreign_dirty
+ffffffff81329810 t __traceiter_flush_foreign
+ffffffff81329870 t __traceiter_writeback_write_inode_start
+ffffffff813298c0 t __traceiter_writeback_write_inode
+ffffffff81329910 t __traceiter_writeback_queue
+ffffffff81329960 t __traceiter_writeback_exec
+ffffffff813299b0 t __traceiter_writeback_start
+ffffffff81329a00 t __traceiter_writeback_written
+ffffffff81329a50 t __traceiter_writeback_wait
+ffffffff81329aa0 t __traceiter_writeback_pages_written
+ffffffff81329af0 t __traceiter_writeback_wake_background
+ffffffff81329b40 t __traceiter_writeback_bdi_register
+ffffffff81329b90 t __traceiter_wbc_writepage
+ffffffff81329be0 t __traceiter_writeback_queue_io
+ffffffff81329c50 t __traceiter_global_dirty_state
+ffffffff81329ca0 t __traceiter_bdi_dirty_ratelimit
+ffffffff81329d00 t __traceiter_balance_dirty_pages
+ffffffff81329d90 t __traceiter_writeback_sb_inodes_requeue
+ffffffff81329de0 t __traceiter_writeback_single_inode_start
+ffffffff81329e40 t __traceiter_writeback_single_inode
+ffffffff81329ea0 t __traceiter_writeback_lazytime
+ffffffff81329ef0 t __traceiter_writeback_lazytime_iput
+ffffffff81329f40 t __traceiter_writeback_dirty_inode_enqueue
+ffffffff81329f90 t __traceiter_sb_mark_inode_writeback
+ffffffff81329fe0 t __traceiter_sb_clear_inode_writeback
+ffffffff8132a030 t trace_event_raw_event_writeback_folio_template
+ffffffff8132a160 t perf_trace_writeback_folio_template
+ffffffff8132a2d0 t trace_event_raw_event_writeback_dirty_inode_template
+ffffffff8132a3e0 t perf_trace_writeback_dirty_inode_template
+ffffffff8132a530 t trace_event_raw_event_inode_foreign_history
+ffffffff8132a660 t perf_trace_inode_foreign_history
+ffffffff8132a7d0 t trace_event_raw_event_inode_switch_wbs
+ffffffff8132a900 t perf_trace_inode_switch_wbs
+ffffffff8132aa70 t trace_event_raw_event_track_foreign_dirty
+ffffffff8132abe0 t perf_trace_track_foreign_dirty
+ffffffff8132ad90 t trace_event_raw_event_flush_foreign
+ffffffff8132aeb0 t perf_trace_flush_foreign
+ffffffff8132b010 t trace_event_raw_event_writeback_write_inode_template
+ffffffff8132b140 t perf_trace_writeback_write_inode_template
+ffffffff8132b2b0 t trace_event_raw_event_writeback_work_class
+ffffffff8132b410 t perf_trace_writeback_work_class
+ffffffff8132b5b0 t trace_event_raw_event_writeback_pages_written
+ffffffff8132b670 t perf_trace_writeback_pages_written
+ffffffff8132b760 t trace_event_raw_event_writeback_class
+ffffffff8132b860 t perf_trace_writeback_class
+ffffffff8132b9a0 t trace_event_raw_event_writeback_bdi_register
+ffffffff8132ba70 t perf_trace_writeback_bdi_register
+ffffffff8132bb90 t trace_event_raw_event_wbc_class
+ffffffff8132bd00 t perf_trace_wbc_class
+ffffffff8132beb0 t trace_event_raw_event_writeback_queue_io
+ffffffff8132c010 t perf_trace_writeback_queue_io
+ffffffff8132c1a0 t trace_event_raw_event_global_dirty_state
+ffffffff8132c2c0 t perf_trace_global_dirty_state
+ffffffff8132c420 t trace_event_raw_event_bdi_dirty_ratelimit
+ffffffff8132c580 t perf_trace_bdi_dirty_ratelimit
+ffffffff8132c720 t trace_event_raw_event_balance_dirty_pages
+ffffffff8132c970 t perf_trace_balance_dirty_pages
+ffffffff8132cc00 t trace_event_raw_event_writeback_sb_inodes_requeue
+ffffffff8132cd30 t perf_trace_writeback_sb_inodes_requeue
+ffffffff8132cea0 t trace_event_raw_event_writeback_single_inode_template
+ffffffff8132d010 t perf_trace_writeback_single_inode_template
+ffffffff8132d1b0 t trace_event_raw_event_writeback_inode_template
+ffffffff8132d290 t perf_trace_writeback_inode_template
+ffffffff8132d3b0 t wb_wait_for_completion
+ffffffff8132d460 t __inode_attach_wb
+ffffffff8132d5c0 t wb_put
+ffffffff8132d630 t cleanup_offline_cgwb
+ffffffff8132d8a0 t inode_switch_wbs_work_fn
+ffffffff8132e030 t wbc_attach_and_unlock_inode
+ffffffff8132e140 t inode_switch_wbs
+ffffffff8132e3b0 t wbc_detach_inode
+ffffffff8132e5c0 t wbc_account_cgroup_owner
+ffffffff8132e640 t cgroup_writeback_by_id
+ffffffff8132e840 t wb_queue_work
+ffffffff8132e980 t cgroup_writeback_umount
+ffffffff8132e9b0 t wb_start_background_writeback
+ffffffff8132ea50 t inode_io_list_del
+ffffffff8132eb40 t sb_mark_inode_writeback
+ffffffff8132ec30 t sb_clear_inode_writeback
+ffffffff8132ed00 t inode_wait_for_writeback
+ffffffff8132ee00 t wb_workfn
+ffffffff8132f320 t trace_writeback_pages_written
+ffffffff8132f380 t writeback_inodes_wb
+ffffffff8132f490 t wakeup_flusher_threads_bdi
+ffffffff8132f4c0 t __wakeup_flusher_threads_bdi.llvm.10221383747980244964
+ffffffff8132f590 t wakeup_flusher_threads
+ffffffff8132f610 t dirtytime_interval_handler
+ffffffff8132f650 t __mark_inode_dirty
+ffffffff8132f9b0 t locked_inode_to_wb_and_lock_list
+ffffffff8132faa0 t inode_io_list_move_locked
+ffffffff8132fbc0 t writeback_inodes_sb_nr
+ffffffff8132fbe0 t __writeback_inodes_sb_nr
+ffffffff8132fd30 t writeback_inodes_sb
+ffffffff8132fd80 t try_to_writeback_inodes_sb
+ffffffff8132fdf0 t sync_inodes_sb
+ffffffff81330110 t bdi_split_work_to_wbs
+ffffffff81330570 t write_inode_now
+ffffffff81330650 t writeback_single_inode
+ffffffff813308e0 t sync_inode_metadata
+ffffffff81330990 t trace_raw_output_writeback_folio_template
+ffffffff813309f0 t trace_raw_output_writeback_dirty_inode_template
+ffffffff81330ab0 t trace_raw_output_inode_foreign_history
+ffffffff81330b10 t trace_raw_output_inode_switch_wbs
+ffffffff81330b70 t trace_raw_output_track_foreign_dirty
+ffffffff81330be0 t trace_raw_output_flush_foreign
+ffffffff81330c40 t trace_raw_output_writeback_write_inode_template
+ffffffff81330ca0 t trace_raw_output_writeback_work_class
+ffffffff81330d80 t trace_raw_output_writeback_pages_written
+ffffffff81330dd0 t trace_raw_output_writeback_class
+ffffffff81330e30 t trace_raw_output_writeback_bdi_register
+ffffffff81330e90 t trace_raw_output_wbc_class
+ffffffff81330f20 t trace_raw_output_writeback_queue_io
+ffffffff81330fc0 t trace_raw_output_global_dirty_state
+ffffffff81331030 t trace_raw_output_bdi_dirty_ratelimit
+ffffffff813310a0 t trace_raw_output_balance_dirty_pages
+ffffffff81331140 t trace_raw_output_writeback_sb_inodes_requeue
+ffffffff813311f0 t trace_raw_output_writeback_single_inode_template
+ffffffff813312b0 t trace_raw_output_writeback_inode_template
+ffffffff81331370 t inode_cgwb_move_to_attached
+ffffffff813314b0 t wb_writeback
+ffffffff81331840 t queue_io
+ffffffff81331960 t queue_io
+ffffffff813319e0 t writeback_sb_inodes
+ffffffff813320d0 t __writeback_inodes_wb
+ffffffff81332210 t move_expired_inodes
+ffffffff81332430 t __writeback_single_inode
+ffffffff81332770 t wakeup_dirtytime_writeback
+ffffffff81332860 t get_dominating_id
+ffffffff81332910 t change_mnt_propagation
+ffffffff81332bb0 t propagate_mnt
+ffffffff81332e60 t propagate_one
+ffffffff81333010 t propagate_mount_busy
+ffffffff81333200 t propagate_mount_unlock
+ffffffff81333380 t propagate_umount
+ffffffff81333930 t umount_one
+ffffffff81333a20 t page_cache_pipe_buf_confirm.llvm.12880523624248257801
+ffffffff81333ae0 t page_cache_pipe_buf_release.llvm.12880523624248257801
+ffffffff81333b20 t page_cache_pipe_buf_try_steal.llvm.12880523624248257801
+ffffffff81333bd0 t splice_to_pipe
+ffffffff81333d00 t add_to_pipe
+ffffffff81333dc0 t splice_grow_spd
+ffffffff81333e40 t splice_shrink_spd
+ffffffff81333e70 t generic_file_splice_read
+ffffffff81333ff0 t __splice_from_pipe
+ffffffff813341f0 t splice_from_pipe_next
+ffffffff81334370 t splice_from_pipe
+ffffffff81334410 t iter_file_splice_write
+ffffffff81334840 t generic_splice_sendpage
+ffffffff813348e0 t pipe_to_sendpage
+ffffffff81334980 t splice_direct_to_actor
+ffffffff81334c50 t do_splice_direct
+ffffffff81334d20 t direct_splice_actor
+ffffffff81334d60 t splice_file_to_pipe
+ffffffff81334f20 t do_splice
+ffffffff81335600 t __x64_sys_vmsplice
+ffffffff81335ec0 t __x64_sys_splice
+ffffffff813360e0 t do_tee
+ffffffff813363d0 t opipe_prep
+ffffffff81336480 t __x64_sys_tee
+ffffffff81336540 t user_page_pipe_buf_try_steal
+ffffffff81336570 t pipe_to_user
+ffffffff813365a0 t sync_filesystem
+ffffffff81336630 t ksys_sync
+ffffffff813366d0 t sync_inodes_one_sb
+ffffffff813366f0 t sync_fs_one_sb
+ffffffff81336720 t __x64_sys_sync
+ffffffff81336740 t emergency_sync
+ffffffff813367a0 t do_sync_work
+ffffffff81336850 t __x64_sys_syncfs
+ffffffff813368f0 t vfs_fsync_range
+ffffffff81336970 t vfs_fsync
+ffffffff813369e0 t __x64_sys_fsync
+ffffffff81336aa0 t __x64_sys_fdatasync
+ffffffff81336b30 t sync_file_range
+ffffffff81336c30 t ksys_sync_file_range
+ffffffff81336ca0 t __x64_sys_sync_file_range
+ffffffff81336d20 t __x64_sys_sync_file_range2
+ffffffff81336da0 t vfs_utimes
+ffffffff81337000 t do_utimes
+ffffffff81337160 t __x64_sys_utimensat
+ffffffff81337260 t __x64_sys_futimesat
+ffffffff81337380 t __x64_sys_utimes
+ffffffff813374a0 t __x64_sys_utime
+ffffffff81337560 t __d_path
+ffffffff813375f0 t prepend_path
+ffffffff81337910 t d_absolute_path
+ffffffff813379b0 t d_path
+ffffffff81337b00 t prepend
+ffffffff81337ba0 t dynamic_dname
+ffffffff81337cd0 t simple_dname
+ffffffff81337de0 t dentry_path_raw
+ffffffff81337e50 t __dentry_path
+ffffffff81337fe0 t dentry_path
+ffffffff81338080 t __x64_sys_getcwd
+ffffffff813382c0 t fsstack_copy_inode_size
+ffffffff813382f0 t fsstack_copy_attr_all
+ffffffff81338370 t set_fs_root
+ffffffff81338410 t set_fs_pwd
+ffffffff813384b0 t chroot_fs_refs
+ffffffff81338680 t free_fs_struct
+ffffffff813386c0 t exit_fs
+ffffffff81338750 t copy_fs_struct
+ffffffff813387f0 t unshare_fs_struct
+ffffffff81338920 t current_umask
+ffffffff81338940 t vfs_get_fsid
+ffffffff81338a50 t vfs_statfs
+ffffffff81338b80 t user_statfs
+ffffffff81338e20 t fd_statfs
+ffffffff81338f90 t __x64_sys_statfs
+ffffffff813390d0 t __x64_sys_statfs64
+ffffffff81339220 t __x64_sys_fstatfs
+ffffffff81339360 t __x64_sys_fstatfs64
+ffffffff813394b0 t __x64_sys_ustat
+ffffffff81339720 t pin_remove
+ffffffff813397d0 t pin_insert
+ffffffff81339850 t pin_kill
+ffffffff81339940 t __add_wait_queue
+ffffffff813399b0 t mnt_pin_kill
+ffffffff813399f0 t group_pin_kill
+ffffffff81339a30 t ns_prune_dentry.llvm.14150694527948361828
+ffffffff81339a60 t ns_dname.llvm.14150694527948361828
+ffffffff81339a90 t ns_get_path_cb
+ffffffff81339af0 t __ns_get_path
+ffffffff81339c40 t ns_get_path
+ffffffff81339ca0 t open_related_ns
+ffffffff81339db0 t ns_get_name
+ffffffff81339e30 t proc_ns_file
+ffffffff81339e50 t proc_ns_fget
+ffffffff81339e90 t ns_match
+ffffffff81339ec0 t ns_ioctl.llvm.14150694527948361828
+ffffffff81339f80 t nsfs_init_fs_context
+ffffffff81339fc0 t nsfs_evict
+ffffffff81339ff0 t nsfs_show_path
+ffffffff8133a020 t fs_ftype_to_dtype
+ffffffff8133a050 t fs_umode_to_ftype
+ffffffff8133a070 t fs_umode_to_dtype
+ffffffff8133a090 t vfs_parse_fs_param_source
+ffffffff8133a120 t logfc
+ffffffff8133a2f0 t vfs_parse_fs_param
+ffffffff8133a440 t vfs_parse_fs_string
+ffffffff8133a4e0 t generic_parse_monolithic
+ffffffff8133a660 t fs_context_for_mount
+ffffffff8133a680 t alloc_fs_context.llvm.8743828570477295505
+ffffffff8133a7d0 t fs_context_for_reconfigure
+ffffffff8133a800 t fs_context_for_submount
+ffffffff8133a820 t fc_drop_locked
+ffffffff8133a860 t vfs_dup_fs_context
+ffffffff8133a970 t put_fs_context
+ffffffff8133ab20 t legacy_fs_context_free.llvm.8743828570477295505
+ffffffff8133ab50 t legacy_fs_context_dup.llvm.8743828570477295505
+ffffffff8133abd0 t legacy_parse_param.llvm.8743828570477295505
+ffffffff8133ae20 t legacy_parse_monolithic.llvm.8743828570477295505
+ffffffff8133ae80 t legacy_get_tree.llvm.8743828570477295505
+ffffffff8133aed0 t legacy_reconfigure.llvm.8743828570477295505
+ffffffff8133af20 t parse_monolithic_mount_data
+ffffffff8133af50 t vfs_clean_context
+ffffffff8133afe0 t finish_clean_context
+ffffffff8133b080 t legacy_init_fs_context
+ffffffff8133b0c0 t lookup_constant
+ffffffff8133b120 t __fs_parse
+ffffffff8133b2c0 t fs_lookup_param
+ffffffff8133b3f0 t fs_param_is_bool
+ffffffff8133b510 t fs_param_is_u32
+ffffffff8133b580 t fs_param_is_s32
+ffffffff8133b5f0 t fs_param_is_u64
+ffffffff8133b660 t fs_param_is_enum
+ffffffff8133b700 t fs_param_is_string
+ffffffff8133b750 t fs_param_is_blob
+ffffffff8133b790 t fs_param_is_fd
+ffffffff8133b820 t fs_param_is_blockdev
+ffffffff8133b830 t fs_param_is_path
+ffffffff8133b840 t fscontext_read.llvm.15683562755848796663
+ffffffff8133b970 t fscontext_release.llvm.15683562755848796663
+ffffffff8133b9a0 t __x64_sys_fsopen
+ffffffff8133bad0 t __x64_sys_fspick
+ffffffff8133bc60 t __x64_sys_fsconfig
+ffffffff8133c190 t kernel_read_file
+ffffffff8133c410 t kernel_read_file_from_path
+ffffffff8133c490 t kernel_read_file_from_path_initns
+ffffffff8133c5b0 t kernel_read_file_from_fd
+ffffffff8133c640 t __generic_remap_file_range_prep
+ffffffff8133c980 t vfs_dedupe_file_range_compare
+ffffffff8133cc40 t generic_remap_check_len
+ffffffff8133ccb0 t generic_remap_file_range_prep
+ffffffff8133ccd0 t do_clone_file_range
+ffffffff8133cdf0 t fsnotify_access
+ffffffff8133ce70 t vfs_clone_file_range
+ffffffff8133cfc0 t vfs_dedupe_file_range_one
+ffffffff8133d160 t vfs_dedupe_file_range
+ffffffff8133d390 t touch_buffer
+ffffffff8133d3f0 t __lock_buffer
+ffffffff8133d430 t unlock_buffer
+ffffffff8133d450 t buffer_check_dirty_writeback
+ffffffff8133d4b0 t __wait_on_buffer
+ffffffff8133d4f0 t end_buffer_read_sync
+ffffffff8133d530 t end_buffer_write_sync
+ffffffff8133d5b0 t mark_buffer_write_io_error
+ffffffff8133d680 t end_buffer_async_write
+ffffffff8133d7b0 t mark_buffer_async_write
+ffffffff8133d7d0 t inode_has_buffers
+ffffffff8133d800 t emergency_thaw_bdev
+ffffffff8133d850 t sync_mapping_buffers
+ffffffff8133dc70 t write_boundary_block
+ffffffff8133dcb0 t __find_get_block
+ffffffff8133e150 t write_dirty_buffer
+ffffffff8133e1e0 t mark_buffer_dirty_inode
+ffffffff8133e2d0 t mark_buffer_dirty
+ffffffff8133e3e0 t block_dirty_folio
+ffffffff8133e490 t invalidate_inode_buffers
+ffffffff8133e530 t remove_inode_buffers
+ffffffff8133e5f0 t alloc_page_buffers
+ffffffff8133e770 t alloc_buffer_head
+ffffffff8133e7f0 t set_bh_page
+ffffffff8133e830 t free_buffer_head
+ffffffff8133e8a0 t __brelse
+ffffffff8133e8d0 t __bforget
+ffffffff8133e960 t __getblk_gfp
+ffffffff8133ec40 t __breadahead
+ffffffff8133ecd0 t __bread_gfp
+ffffffff8133edb0 t has_bh_in_lru
+ffffffff8133ee90 t invalidate_bh_lrus
+ffffffff8133eec0 t invalidate_bh_lru.llvm.16430525843865315513
+ffffffff8133ef70 t invalidate_bh_lrus_cpu
+ffffffff8133f000 t block_invalidate_folio
+ffffffff8133f170 t create_empty_buffers
+ffffffff8133f2d0 t clean_bdev_aliases
+ffffffff8133f570 t __block_write_full_page
+ffffffff8133f9d0 t submit_bh_wbc.llvm.16430525843865315513
+ffffffff8133fb10 t page_zero_new_buffers
+ffffffff8133fca0 t __block_write_begin_int
+ffffffff81340390 t __block_write_begin
+ffffffff813403c0 t block_write_begin
+ffffffff81340450 t block_write_end
+ffffffff813404d0 t __block_commit_write.llvm.16430525843865315513
+ffffffff813405b0 t generic_write_end
+ffffffff813406d0 t block_is_partially_uptodate
+ffffffff81340780 t block_read_full_folio
+ffffffff81340b40 t end_buffer_async_read
+ffffffff81340ca0 t submit_bh
+ffffffff81340cc0 t generic_cont_expand_simple
+ffffffff81340d70 t cont_write_begin
+ffffffff81341160 t block_commit_write
+ffffffff81341180 t block_page_mkwrite
+ffffffff81341290 t block_truncate_page
+ffffffff81341520 t block_write_full_page
+ffffffff81341610 t generic_block_bmap
+ffffffff813416e0 t __sync_dirty_buffer
+ffffffff813417e0 t sync_dirty_buffer
+ffffffff81341800 t try_to_free_buffers
+ffffffff813418e0 t drop_buffers
+ffffffff813419d0 t recalc_bh_state
+ffffffff81341a80 t bh_uptodate_or_lock
+ffffffff81341af0 t __bh_read
+ffffffff81341b80 t __bh_read_batch
+ffffffff81341c50 t buffer_exit_cpu_dead
+ffffffff81341d00 t init_page_buffers
+ffffffff81341de0 t end_buffer_async_read_io
+ffffffff81341df0 t end_bio_bh_io_sync
+ffffffff81341e30 t sb_init_dio_done_wq
+ffffffff81341e90 t __blockdev_direct_IO
+ffffffff813430b0 t dio_zero_block
+ffffffff81343170 t dio_send_cur_page
+ffffffff813433c0 t dio_complete
+ffffffff81343590 t submit_page_section
+ffffffff813437d0 t dio_new_bio
+ffffffff81343990 t dio_bio_end_aio
+ffffffff81343b00 t dio_bio_end_io
+ffffffff81343b80 t dio_aio_complete_work
+ffffffff81343ba0 t mpage_readahead
+ffffffff81343cf0 t do_mpage_readpage
+ffffffff813444c0 t mpage_read_folio
+ffffffff81344570 t clean_page_buffers
+ffffffff813445f0 t mpage_writepages
+ffffffff813446c0 t __mpage_writepage
+ffffffff813450f0 t mpage_end_io
+ffffffff813451e0 t mpage_end_io
+ffffffff81345280 t mounts_poll
+ffffffff813452e0 t mounts_open
+ffffffff81345300 t mounts_release
+ffffffff81345360 t mountinfo_open
+ffffffff81345380 t mountstats_open
+ffffffff813453a0 t mounts_open_common
+ffffffff81345630 t show_vfsmnt
+ffffffff81345810 t show_sb_opts
+ffffffff813458b0 t show_mnt_opts
+ffffffff813459d0 t show_mountinfo
+ffffffff81345cd0 t show_vfsstat
+ffffffff81345ed0 t __fsnotify_inode_delete
+ffffffff81345ef0 t __fsnotify_vfsmount_delete
+ffffffff81345f10 t fsnotify_sb_delete
+ffffffff81346130 t __fsnotify_update_child_dentry_flags
+ffffffff81346250 t __fsnotify_parent
+ffffffff81346520 t fsnotify
+ffffffff81346d10 t fsnotify_handle_inode_event
+ffffffff81346dd0 t fsnotify_get_cookie
+ffffffff81346df0 t fsnotify_destroy_event
+ffffffff81346e60 t fsnotify_insert_event
+ffffffff81346fa0 t fsnotify_remove_queued_event
+ffffffff81346ff0 t fsnotify_peek_first_event
+ffffffff81347020 t fsnotify_remove_first_event
+ffffffff81347090 t fsnotify_flush_notify
+ffffffff813471a0 t fsnotify_group_stop_queueing
+ffffffff813471d0 t fsnotify_destroy_group
+ffffffff813472f0 t fsnotify_put_group
+ffffffff813473a0 t fsnotify_get_group
+ffffffff813473e0 t fsnotify_alloc_group
+ffffffff813474c0 t fsnotify_fasync
+ffffffff813474f0 t fsnotify_get_mark
+ffffffff81347540 t fsnotify_conn_mask
+ffffffff81347570 t fsnotify_recalc_mask
+ffffffff813475c0 t __fsnotify_recalc_mask
+ffffffff81347700 t fsnotify_put_mark
+ffffffff81347920 t fsnotify_detach_connector_from_object
+ffffffff81347a20 t fsnotify_prepare_user_wait
+ffffffff81347b90 t fsnotify_finish_user_wait
+ffffffff81347ce0 t fsnotify_detach_mark
+ffffffff81347d90 t fsnotify_free_mark
+ffffffff81347e00 t fsnotify_destroy_mark
+ffffffff81347ed0 t fsnotify_compare_groups
+ffffffff81347f20 t fsnotify_add_mark_locked
+ffffffff813484a0 t fsnotify_add_mark
+ffffffff81348550 t fsnotify_find_mark
+ffffffff81348660 t fsnotify_clear_marks_by_group
+ffffffff81348900 t fsnotify_destroy_marks
+ffffffff81348ab0 t fsnotify_init_mark
+ffffffff81348b30 t fsnotify_wait_marks_destroyed
+ffffffff81348b50 t fsnotify_connector_destroy_workfn
+ffffffff81348bd0 t fsnotify_mark_destroy_workfn
+ffffffff81348cd0 t inotify_show_fdinfo
+ffffffff81348f30 t inotify_handle_inode_event
+ffffffff813490c0 t inotify_merge
+ffffffff81349110 t inotify_free_group_priv.llvm.8407330483271508345
+ffffffff81349160 t inotify_freeing_mark.llvm.8407330483271508345
+ffffffff81349170 t inotify_free_event.llvm.8407330483271508345
+ffffffff81349190 t inotify_free_mark.llvm.8407330483271508345
+ffffffff813491b0 t idr_callback
+ffffffff81349210 t inotify_ignored_and_remove_idr
+ffffffff81349260 t inotify_remove_from_idr
+ffffffff81349400 t __x64_sys_inotify_init1
+ffffffff81349420 t __x64_sys_inotify_init
+ffffffff81349440 t __x64_sys_inotify_add_watch
+ffffffff81349930 t __x64_sys_inotify_rm_watch
+ffffffff81349a20 t do_inotify_init
+ffffffff81349b80 t inotify_read
+ffffffff81349f40 t inotify_poll
+ffffffff81349fb0 t inotify_ioctl
+ffffffff8134a050 t inotify_release
+ffffffff8134a070 t eventpoll_release_file
+ffffffff8134a100 t ep_remove
+ffffffff8134a2c0 t __x64_sys_epoll_create1
+ffffffff8134a2e0 t __x64_sys_epoll_create
+ffffffff8134a310 t do_epoll_ctl
+ffffffff8134a6e0 t ep_insert
+ffffffff8134ad40 t ep_modify
+ffffffff8134af90 t __x64_sys_epoll_ctl
+ffffffff8134b030 t __x64_sys_epoll_wait
+ffffffff8134b120 t __x64_sys_epoll_pwait
+ffffffff8134b290 t __x64_sys_epoll_pwait2
+ffffffff8134b3c0 t epi_rcu_free
+ffffffff8134b3e0 t do_epoll_create
+ffffffff8134b570 t ep_free
+ffffffff8134b680 t ep_eventpoll_poll
+ffffffff8134b6a0 t ep_eventpoll_release
+ffffffff8134b6c0 t ep_show_fdinfo
+ffffffff8134b760 t __ep_eventpoll_poll
+ffffffff8134b940 t ep_done_scan
+ffffffff8134ba60 t ep_loop_check_proc
+ffffffff8134bb50 t ep_ptable_queue_proc
+ffffffff8134bbf0 t reverse_path_check_proc
+ffffffff8134bca0 t ep_poll_callback
+ffffffff8134bf20 t ep_destroy_wakeup_source
+ffffffff8134bf50 t do_epoll_wait
+ffffffff8134c670 t ep_autoremove_wake_function
+ffffffff8134c6c0 t ep_busy_loop_end
+ffffffff8134c720 t anon_inode_getfile
+ffffffff8134c7d0 t __anon_inode_getfile.llvm.565638761992962720
+ffffffff8134c920 t anon_inode_getfile_secure
+ffffffff8134c940 t anon_inode_getfd
+ffffffff8134ca20 t anon_inode_getfd_secure
+ffffffff8134caa0 t anon_inodefs_init_fs_context
+ffffffff8134cad0 t anon_inodefs_dname
+ffffffff8134caf0 t signalfd_cleanup
+ffffffff8134cb20 t __x64_sys_signalfd4
+ffffffff8134cbb0 t __x64_sys_signalfd
+ffffffff8134cc40 t do_signalfd4
+ffffffff8134cdb0 t signalfd_read
+ffffffff8134d2b0 t signalfd_poll
+ffffffff8134d350 t signalfd_release
+ffffffff8134d370 t signalfd_show_fdinfo
+ffffffff8134d3d0 t timerfd_clock_was_set
+ffffffff8134d470 t timerfd_resume
+ffffffff8134d4a0 t __x64_sys_timerfd_create
+ffffffff8134d5e0 t __x64_sys_timerfd_settime
+ffffffff8134dad0 t __x64_sys_timerfd_gettime
+ffffffff8134dcc0 t timerfd_resume_work
+ffffffff8134dcd0 t timerfd_alarmproc
+ffffffff8134dd30 t timerfd_read
+ffffffff8134df80 t timerfd_poll
+ffffffff8134dff0 t timerfd_release
+ffffffff8134e0c0 t timerfd_show
+ffffffff8134e190 t timerfd_tmrproc
+ffffffff8134e1f0 t eventfd_signal_mask
+ffffffff8134e2b0 t eventfd_signal
+ffffffff8134e360 t eventfd_ctx_put
+ffffffff8134e3b0 t eventfd_ctx_do_read
+ffffffff8134e3e0 t eventfd_ctx_remove_wait_queue
+ffffffff8134e4a0 t eventfd_fget
+ffffffff8134e4e0 t eventfd_ctx_fdget
+ffffffff8134e570 t eventfd_ctx_fileget
+ffffffff8134e5d0 t __x64_sys_eventfd2
+ffffffff8134e5f0 t __x64_sys_eventfd
+ffffffff8134e610 t eventfd_write
+ffffffff8134e890 t eventfd_read
+ffffffff8134eb30 t eventfd_poll
+ffffffff8134eb90 t eventfd_release
+ffffffff8134ec00 t eventfd_show_fdinfo
+ffffffff8134ec60 t do_eventfd
+ffffffff8134ed80 t handle_userfault
+ffffffff8134f290 t userfaultfd_wake_function
+ffffffff8134f310 t dup_userfaultfd
+ffffffff8134f4f0 t dup_userfaultfd_complete
+ffffffff8134f630 t mremap_userfaultfd_prep
+ffffffff8134f700 t mremap_userfaultfd_complete
+ffffffff8134f7f0 t userfaultfd_event_wait_completion
+ffffffff8134fc00 t userfaultfd_remove
+ffffffff8134fd10 t userfaultfd_unmap_prep
+ffffffff8134fe20 t userfaultfd_unmap_complete
+ffffffff8134ff80 t __x64_sys_userfaultfd
+ffffffff8134ffc0 t new_userfaultfd
+ffffffff813500b0 t userfaultfd_read
+ffffffff813507e0 t userfaultfd_poll
+ffffffff81350860 t userfaultfd_ioctl
+ffffffff81351ed0 t userfaultfd_release
+ffffffff81352290 t userfaultfd_show_fdinfo
+ffffffff81352330 t init_once_userfaultfd_ctx
+ffffffff813523a0 t userfaultfd_dev_ioctl
+ffffffff813523d0 t kiocb_set_cancel_fn
+ffffffff81352480 t exit_aio
+ffffffff813525a0 t kill_ioctx
+ffffffff813526a0 t __x64_sys_io_setup
+ffffffff81352fd0 t __x64_sys_io_destroy
+ffffffff813530d0 t __x64_sys_io_submit
+ffffffff81353bc0 t __x64_sys_io_cancel
+ffffffff81353ce0 t __x64_sys_io_getevents
+ffffffff81353db0 t __x64_sys_io_pgetevents
+ffffffff81353f30 t aio_init_fs_context
+ffffffff81353f60 t free_ioctx_users
+ffffffff81354030 t free_ioctx_reqs
+ffffffff81354090 t aio_free_ring
+ffffffff81354180 t free_ioctx
+ffffffff813541d0 t aio_migrate_folio
+ffffffff81354330 t aio_ring_mmap
+ffffffff81354380 t aio_ring_mremap
+ffffffff81354420 t lookup_ioctx
+ffffffff813544e0 t iocb_put
+ffffffff81354760 t refill_reqs_available
+ffffffff81354850 t aio_read
+ffffffff81354a90 t aio_write
+ffffffff81354d60 t aio_prep_rw
+ffffffff81354e20 t aio_complete_rw
+ffffffff81354f60 t aio_fsync_work
+ffffffff81354fd0 t aio_poll_complete_work
+ffffffff81355170 t aio_poll_queue_proc
+ffffffff813551c0 t aio_poll_wake
+ffffffff813553f0 t aio_poll_cancel
+ffffffff81355460 t aio_poll_put_work
+ffffffff81355480 t do_io_getevents
+ffffffff81355770 t aio_read_events
+ffffffff81355a20 t __traceiter_locks_get_lock_context
+ffffffff81355a80 t __traceiter_posix_lock_inode
+ffffffff81355ae0 t __traceiter_fcntl_setlk
+ffffffff81355b40 t __traceiter_locks_remove_posix
+ffffffff81355ba0 t __traceiter_flock_lock_inode
+ffffffff81355c00 t __traceiter_break_lease_noblock
+ffffffff81355c50 t __traceiter_break_lease_block
+ffffffff81355ca0 t __traceiter_break_lease_unblock
+ffffffff81355cf0 t __traceiter_generic_delete_lease
+ffffffff81355d40 t __traceiter_time_out_leases
+ffffffff81355d90 t __traceiter_generic_add_lease
+ffffffff81355de0 t __traceiter_leases_conflict
+ffffffff81355e50 t trace_event_raw_event_locks_get_lock_context
+ffffffff81355f30 t perf_trace_locks_get_lock_context
+ffffffff81356050 t trace_event_raw_event_filelock_lock
+ffffffff813561a0 t perf_trace_filelock_lock
+ffffffff81356330 t trace_event_raw_event_filelock_lease
+ffffffff81356470 t perf_trace_filelock_lease
+ffffffff813565e0 t trace_event_raw_event_generic_add_lease
+ffffffff813566f0 t perf_trace_generic_add_lease
+ffffffff81356830 t trace_event_raw_event_leases_conflict
+ffffffff81356920 t perf_trace_leases_conflict
+ffffffff81356a50 t locks_free_lock_context
+ffffffff81356a80 t locks_check_ctx_lists
+ffffffff81356b20 t locks_alloc_lock
+ffffffff81356ba0 t locks_release_private
+ffffffff81356c60 t locks_owner_has_blockers
+ffffffff81356cc0 t locks_free_lock
+ffffffff81356cf0 t locks_init_lock
+ffffffff81356d50 t locks_copy_conflock
+ffffffff81356de0 t locks_copy_lock
+ffffffff81356ec0 t locks_delete_block
+ffffffff81357050 t posix_test_lock
+ffffffff813571f0 t posix_lock_file
+ffffffff81357210 t posix_lock_inode.llvm.7936892347776165459
+ffffffff81357f80 t lease_modify
+ffffffff81358090 t locks_wake_up_blocks
+ffffffff81358170 t __break_lease
+ffffffff81358a70 t lease_alloc
+ffffffff81358b80 t time_out_leases
+ffffffff81358c80 t leases_conflict
+ffffffff81358d40 t lease_get_mtime
+ffffffff81358dd0 t fcntl_getlease
+ffffffff81358fc0 t generic_setlease
+ffffffff81359700 t lease_register_notifier
+ffffffff81359720 t lease_unregister_notifier
+ffffffff81359740 t vfs_setlease
+ffffffff813597b0 t fcntl_setlease
+ffffffff81359900 t locks_lock_inode_wait
+ffffffff81359af0 t __x64_sys_flock
+ffffffff81359d50 t vfs_test_lock
+ffffffff81359d90 t fcntl_getlk
+ffffffff81359fc0 t posix_lock_to_flock
+ffffffff8135a090 t vfs_lock_file
+ffffffff8135a0d0 t fcntl_setlk
+ffffffff8135a430 t do_lock_file_wait
+ffffffff8135a590 t locks_remove_posix
+ffffffff8135a780 t locks_remove_file
+ffffffff8135ac10 t vfs_cancel_lock
+ffffffff8135ac50 t vfs_inode_has_locks
+ffffffff8135acb0 t show_fd_locks
+ffffffff8135ae90 t trace_raw_output_locks_get_lock_context
+ffffffff8135af30 t trace_raw_output_filelock_lock
+ffffffff8135b030 t trace_raw_output_filelock_lease
+ffffffff8135b130 t trace_raw_output_generic_add_lease
+ffffffff8135b230 t trace_raw_output_leases_conflict
+ffffffff8135b330 t locks_dump_ctx_list
+ffffffff8135b380 t locks_get_lock_context
+ffffffff8135b480 t locks_insert_lock_ctx
+ffffffff8135b530 t locks_unlink_lock_ctx
+ffffffff8135b5e0 t lease_break_callback
+ffffffff8135b610 t lease_setup
+ffffffff8135b680 t check_conflicting_open
+ffffffff8135b700 t flock_lock_inode
+ffffffff8135bdb0 t lock_get_status
+ffffffff8135c070 t locks_start
+ffffffff8135c0c0 t locks_stop
+ffffffff8135c0f0 t locks_next
+ffffffff8135c120 t locks_show
+ffffffff8135c2a0 t __locks_insert_block.20
+ffffffff8135c470 t load_misc_binary
+ffffffff8135c6d0 t bm_init_fs_context
+ffffffff8135c6f0 t bm_get_tree
+ffffffff8135c710 t bm_fill_super
+ffffffff8135c740 t bm_status_read
+ffffffff8135c780 t bm_status_write
+ffffffff8135c8e0 t kill_node
+ffffffff8135c960 t bm_register_write
+ffffffff8135cf90 t scanarg
+ffffffff8135cff0 t bm_entry_read
+ffffffff8135d1b0 t bm_entry_write
+ffffffff8135d300 t bm_evict_inode
+ffffffff8135d350 t load_script
+ffffffff8135d5c0 t load_elf_binary
+ffffffff8135e460 t elf_core_dump
+ffffffff8135f640 t load_elf_phdrs
+ffffffff8135f720 t set_brk
+ffffffff8135f790 t maximum_alignment
+ffffffff8135f800 t total_mapping_size
+ffffffff8135f880 t elf_map
+ffffffff8135f9a0 t padzero
+ffffffff8135f9f0 t load_elf_interp
+ffffffff8135fdb0 t create_elf_tables
+ffffffff81360330 t writenote
+ffffffff81360400 t mb_cache_entry_create
+ffffffff81360690 t mb_cache_shrink
+ffffffff813607e0 t __mb_cache_entry_free
+ffffffff813608e0 t mb_cache_entry_wait_unused
+ffffffff813609e0 t mb_cache_entry_find_first
+ffffffff81360a00 t __entry_find.llvm.9430127789209361654
+ffffffff81360b60 t mb_cache_entry_find_next
+ffffffff81360b80 t mb_cache_entry_get
+ffffffff81360c70 t mb_cache_entry_delete_or_get
+ffffffff81360d00 t mb_cache_entry_touch
+ffffffff81360d10 t mb_cache_create
+ffffffff81360ea0 t mb_cache_count
+ffffffff81360eb0 t mb_cache_scan
+ffffffff81360ed0 t mb_cache_shrink_worker
+ffffffff81360ef0 t mb_cache_destroy
+ffffffff81360fc0 t get_cached_acl
+ffffffff81361070 t get_cached_acl_rcu
+ffffffff813610d0 t set_cached_acl
+ffffffff81361180 t posix_acl_release
+ffffffff813611d0 t forget_cached_acl
+ffffffff81361240 t forget_all_cached_acls
+ffffffff813612e0 t get_acl
+ffffffff81361460 t posix_acl_init
+ffffffff81361480 t posix_acl_alloc
+ffffffff813614c0 t posix_acl_clone
+ffffffff81361500 t posix_acl_valid
+ffffffff81361630 t posix_acl_equiv_mode
+ffffffff81361720 t posix_acl_from_mode
+ffffffff813617c0 t posix_acl_permission
+ffffffff81361960 t __posix_acl_create
+ffffffff81361a40 t posix_acl_create_masq
+ffffffff81361b70 t __posix_acl_chmod
+ffffffff81361d00 t posix_acl_chmod
+ffffffff81361e20 t posix_acl_create
+ffffffff81361f70 t posix_acl_update_mode
+ffffffff813620b0 t posix_acl_getxattr_idmapped_mnt
+ffffffff813620c0 t posix_acl_fix_xattr_from_user
+ffffffff813620d0 t posix_acl_fix_xattr_to_user
+ffffffff813620e0 t vfs_set_acl_prepare
+ffffffff813622c0 t posix_acl_from_xattr
+ffffffff813624a0 t posix_acl_to_xattr
+ffffffff81362530 t set_posix_acl
+ffffffff81362710 t posix_acl_xattr_list
+ffffffff81362730 t posix_acl_xattr_get
+ffffffff81362850 t posix_acl_xattr_set
+ffffffff81362970 t simple_set_acl
+ffffffff81362a10 t simple_acl_create
+ffffffff81362b40 t do_coredump
+ffffffff813639d0 t umh_pipe_setup
+ffffffff81363a80 t get_fs_root
+ffffffff81363ad0 t dump_interrupted
+ffffffff81363b10 t dump_vma_snapshot
+ffffffff81363ec0 t dump_emit
+ffffffff81363fb0 t free_vma_snapshot
+ffffffff81364030 t wait_for_dump_helpers
+ffffffff81364140 t __dump_skip
+ffffffff81364330 t dump_skip_to
+ffffffff81364350 t dump_skip
+ffffffff81364360 t dump_user_range
+ffffffff81364530 t dump_align
+ffffffff81364570 t validate_coredump_safety
+ffffffff813645b0 t cn_printf
+ffffffff81364630 t cn_esc_printf
+ffffffff81364740 t cn_print_exe_file
+ffffffff81364830 t cn_vprintf
+ffffffff81364970 t proc_dostring_coredump
+ffffffff813649c0 t drop_caches_sysctl_handler
+ffffffff81364a70 t drop_pagecache_sb
+ffffffff81364b80 t __x64_sys_name_to_handle_at
+ffffffff81364d70 t __x64_sys_open_by_handle_at
+ffffffff81365150 t vfs_dentry_acceptable
+ffffffff81365160 t __traceiter_iomap_readpage
+ffffffff813651b0 t __traceiter_iomap_readahead
+ffffffff81365200 t __traceiter_iomap_writepage
+ffffffff81365260 t __traceiter_iomap_release_folio
+ffffffff813652c0 t __traceiter_iomap_invalidate_folio
+ffffffff81365320 t __traceiter_iomap_dio_invalidate_fail
+ffffffff81365380 t __traceiter_iomap_iter_dstmap
+ffffffff813653d0 t __traceiter_iomap_iter_srcmap
+ffffffff81365420 t __traceiter_iomap_writepage_map
+ffffffff81365470 t __traceiter_iomap_iter
+ffffffff813654d0 t trace_event_raw_event_iomap_readpage_class
+ffffffff813655a0 t perf_trace_iomap_readpage_class
+ffffffff813656b0 t trace_event_raw_event_iomap_range_class
+ffffffff81365790 t perf_trace_iomap_range_class
+ffffffff813658b0 t trace_event_raw_event_iomap_class
+ffffffff813659c0 t perf_trace_iomap_class
+ffffffff81365b10 t trace_event_raw_event_iomap_iter
+ffffffff81365c50 t perf_trace_iomap_iter
+ffffffff81365dd0 t trace_raw_output_iomap_readpage_class
+ffffffff81365e40 t trace_raw_output_iomap_range_class
+ffffffff81365eb0 t trace_raw_output_iomap_class
+ffffffff81365fc0 t trace_raw_output_iomap_iter
+ffffffff81366090 t iomap_iter
+ffffffff81366340 t iomap_read_folio
+ffffffff813664f0 t iomap_readpage_iter
+ffffffff813668e0 t iomap_readahead
+ffffffff81366be0 t iomap_is_partially_uptodate
+ffffffff81366c70 t iomap_release_folio
+ffffffff81366d10 t iomap_page_release
+ffffffff81366dd0 t iomap_invalidate_folio
+ffffffff81366ed0 t iomap_file_buffered_write
+ffffffff81367220 t iomap_file_unshare
+ffffffff81367400 t iomap_zero_range
+ffffffff813676f0 t iomap_truncate_page
+ffffffff81367730 t iomap_page_mkwrite
+ffffffff813679c0 t iomap_finish_ioends
+ffffffff81367aa0 t iomap_finish_ioend
+ffffffff81367eb0 t iomap_ioend_try_merge
+ffffffff81367fb0 t iomap_sort_ioends
+ffffffff81367fd0 t iomap_ioend_compare
+ffffffff81367ff0 t iomap_writepages
+ffffffff81368080 t iomap_do_writepage
+ffffffff81368960 t iomap_read_inline_data
+ffffffff81368b70 t iomap_adjust_read_range
+ffffffff81368ce0 t iomap_set_range_uptodate
+ffffffff81368db0 t iomap_read_end_io
+ffffffff81369010 t iomap_write_begin
+ffffffff81369850 t iomap_write_end
+ffffffff81369a80 t iomap_writepage_end_bio
+ffffffff81369ab0 t iomap_dio_complete
+ffffffff81369c20 t iomap_dio_bio_end_io
+ffffffff81369d60 t iomap_dio_complete_work
+ffffffff81369da0 t __iomap_dio_rw
+ffffffff8136a5f0 t trace_iomap_dio_invalidate_fail
+ffffffff8136a650 t iomap_dio_rw
+ffffffff8136a6a0 t iomap_dio_bio_iter
+ffffffff8136ab20 t iomap_dio_zero
+ffffffff8136ac90 t iomap_fiemap
+ffffffff8136af60 t iomap_bmap
+ffffffff8136b0a0 t iomap_seek_hole
+ffffffff8136b230 t iomap_seek_data
+ffffffff8136b3b0 t iomap_swapfile_activate
+ffffffff8136ba40 t task_mem
+ffffffff8136bcf0 t task_vsize
+ffffffff8136bd10 t task_statm
+ffffffff8136bda0 t pid_maps_open
+ffffffff8136be20 t proc_map_release
+ffffffff8136be70 t pid_smaps_open
+ffffffff8136bef0 t smaps_rollup_open
+ffffffff8136bf90 t smaps_rollup_release
+ffffffff8136bff0 t clear_refs_write
+ffffffff8136c2e0 t pagemap_read
+ffffffff8136c5c0 t pagemap_open
+ffffffff8136c5f0 t pagemap_release
+ffffffff8136c620 t show_map
+ffffffff8136c640 t show_map_vma
+ffffffff8136c7b0 t show_vma_header_prefix
+ffffffff8136c8f0 t show_smap
+ffffffff8136cb00 t __show_smap
+ffffffff8136cda0 t smaps_pte_range
+ffffffff8136d250 t smaps_account
+ffffffff8136d600 t smaps_pte_hole
+ffffffff8136d660 t show_smaps_rollup
+ffffffff8136dac0 t clear_refs_pte_range
+ffffffff8136dd80 t clear_refs_test_walk
+ffffffff8136ddd0 t pagemap_pmd_range
+ffffffff8136e4a0 t pagemap_pte_hole
+ffffffff8136e5a0 t proc_invalidate_siblings_dcache
+ffffffff8136e6f0 t proc_alloc_inode.llvm.195823796793922884
+ffffffff8136e780 t proc_free_inode.llvm.195823796793922884
+ffffffff8136e7a0 t proc_evict_inode.llvm.195823796793922884
+ffffffff8136e820 t proc_show_options.llvm.195823796793922884
+ffffffff8136e8f0 t proc_entry_rundown
+ffffffff8136e9b0 t close_pdeo
+ffffffff8136eac0 t proc_get_link.llvm.195823796793922884
+ffffffff8136eb00 t proc_get_inode
+ffffffff8136ec40 t proc_put_link
+ffffffff8136ec70 t proc_reg_llseek
+ffffffff8136ecf0 t proc_reg_write
+ffffffff8136ed90 t proc_reg_read_iter
+ffffffff8136ee10 t proc_reg_poll
+ffffffff8136eeb0 t proc_reg_unlocked_ioctl
+ffffffff8136ef50 t proc_reg_mmap
+ffffffff8136eff0 t proc_reg_open
+ffffffff8136f190 t proc_reg_release
+ffffffff8136f210 t proc_reg_get_unmapped_area
+ffffffff8136f2e0 t proc_reg_read
+ffffffff8136f380 t proc_init_fs_context
+ffffffff8136f3e0 t proc_kill_sb
+ffffffff8136f430 t proc_fs_context_free
+ffffffff8136f450 t proc_parse_param
+ffffffff8136f6f0 t proc_get_tree
+ffffffff8136f710 t proc_reconfigure
+ffffffff8136f780 t proc_fill_super
+ffffffff8136f910 t proc_root_lookup
+ffffffff8136f950 t proc_root_getattr
+ffffffff8136f990 t proc_root_readdir
+ffffffff8136f9e0 t proc_setattr
+ffffffff8136fa40 t proc_mem_open
+ffffffff8136fae0 t mem_lseek
+ffffffff8136fb10 t proc_pid_get_link.llvm.11901231412791994721
+ffffffff8136fc10 t proc_pid_readlink.llvm.11901231412791994721
+ffffffff8136fdc0 t task_dump_owner
+ffffffff8136fe80 t proc_pid_evict_inode
+ffffffff8136fef0 t proc_pid_make_inode
+ffffffff81370010 t pid_getattr
+ffffffff81370160 t pid_update_inode
+ffffffff81370220 t pid_delete_dentry
+ffffffff81370240 t pid_revalidate.llvm.11901231412791994721
+ffffffff813702a0 t proc_fill_cache
+ffffffff81370400 t tgid_pidfd_to_pid
+ffffffff81370430 t proc_flush_pid
+ffffffff81370450 t proc_pid_lookup
+ffffffff81370550 t proc_pid_instantiate
+ffffffff81370630 t proc_pid_readdir
+ffffffff81370860 t next_tgid
+ffffffff81370990 t proc_tgid_base_readdir
+ffffffff813709b0 t proc_pident_readdir
+ffffffff81370b70 t proc_pident_instantiate
+ffffffff81370c20 t proc_tgid_base_lookup
+ffffffff81370c40 t proc_pid_permission
+ffffffff81370d10 t proc_pident_lookup
+ffffffff81370de0 t proc_pid_personality
+ffffffff81370e60 t proc_pid_limits
+ffffffff81370fd0 t proc_pid_syscall
+ffffffff81371120 t proc_cwd_link
+ffffffff813711f0 t proc_root_link
+ffffffff813712c0 t proc_exe_link
+ffffffff81371370 t proc_pid_wchan
+ffffffff81371420 t proc_pid_stack
+ffffffff81371530 t proc_pid_schedstat
+ffffffff81371570 t proc_oom_score
+ffffffff81371600 t proc_tid_io_accounting
+ffffffff813716f0 t environ_read
+ffffffff813718e0 t environ_open
+ffffffff81371910 t mem_release
+ffffffff81371940 t auxv_read
+ffffffff81371b90 t auxv_open
+ffffffff81371bc0 t proc_single_open
+ffffffff81371be0 t proc_single_open
+ffffffff81371c10 t proc_single_show
+ffffffff81371cb0 t sched_write
+ffffffff81371d30 t sched_open
+ffffffff81371d50 t sched_show
+ffffffff81371de0 t proc_tid_comm_permission
+ffffffff81371e80 t comm_write
+ffffffff81371fb0 t comm_open
+ffffffff81371fd0 t comm_show
+ffffffff81372060 t proc_pid_cmdline_read
+ffffffff81372460 t mem_read
+ffffffff81372480 t mem_write
+ffffffff813724a0 t mem_open
+ffffffff813724d0 t mem_rw
+ffffffff813726d0 t proc_attr_dir_lookup
+ffffffff813726f0 t proc_pid_attr_read
+ffffffff813727f0 t proc_pid_attr_write
+ffffffff81372950 t proc_pid_attr_open
+ffffffff81372990 t proc_attr_dir_readdir
+ffffffff813729b0 t oom_adj_read
+ffffffff81372ad0 t oom_adj_write
+ffffffff81372bf0 t __set_oom_adj
+ffffffff81372f00 t oom_score_adj_read
+ffffffff81372ff0 t oom_score_adj_write
+ffffffff813730e0 t proc_loginuid_read
+ffffffff813731d0 t proc_loginuid_write
+ffffffff813732a0 t proc_sessionid_read
+ffffffff81373390 t proc_tgid_io_accounting
+ffffffff81373580 t proc_task_lookup
+ffffffff813736d0 t proc_task_getattr
+ffffffff81373760 t proc_task_instantiate
+ffffffff81373840 t proc_tid_base_lookup
+ffffffff81373860 t proc_tid_base_readdir
+ffffffff81373880 t proc_task_readdir
+ffffffff81373c40 t proc_map_files_lookup
+ffffffff81373e60 t proc_map_files_instantiate
+ffffffff81373ef0 t map_files_get_link
+ffffffff81374110 t proc_map_files_get_link
+ffffffff81374170 t map_files_d_revalidate
+ffffffff81374430 t proc_map_files_readdir
+ffffffff813748b0 t proc_coredump_filter_read
+ffffffff813749c0 t proc_coredump_filter_write
+ffffffff81374c30 t timerslack_ns_write
+ffffffff81374d70 t timerslack_ns_open
+ffffffff81374d90 t timerslack_ns_show
+ffffffff81374e80 t pde_free
+ffffffff81374ee0 t proc_alloc_inum
+ffffffff81374f20 t proc_free_inum
+ffffffff81374f40 t proc_lookup_de
+ffffffff81375060 t proc_lookup
+ffffffff81375090 t proc_readdir_de
+ffffffff813752c0 t pde_put
+ffffffff81375350 t proc_readdir
+ffffffff81375380 t proc_net_d_revalidate.llvm.6547391318368070919
+ffffffff81375390 t proc_register
+ffffffff81375530 t proc_symlink
+ffffffff81375620 t __proc_create
+ffffffff81375890 t _proc_mkdir
+ffffffff81375930 t proc_mkdir_data
+ffffffff813759c0 t proc_mkdir_mode
+ffffffff81375a50 t proc_mkdir
+ffffffff81375ad0 t proc_create_mount_point
+ffffffff81375b50 t proc_create_reg
+ffffffff81375bc0 t proc_create_data
+ffffffff81375c80 t proc_create
+ffffffff81375d40 t proc_create_seq_private
+ffffffff81375e10 t proc_create_single_data
+ffffffff81375ed0 t proc_set_size
+ffffffff81375ee0 t proc_set_user
+ffffffff81375f00 t remove_proc_entry
+ffffffff813760f0 t __xlate_proc_name
+ffffffff813761f0 t remove_proc_subtree
+ffffffff81376410 t proc_get_parent_data
+ffffffff81376430 t proc_remove
+ffffffff81376450 t proc_simple_write
+ffffffff813764e0 t proc_misc_d_revalidate
+ffffffff81376510 t proc_misc_d_delete
+ffffffff81376530 t proc_notify_change
+ffffffff813765a0 t proc_getattr
+ffffffff813765f0 t proc_seq_open
+ffffffff81376630 t proc_seq_release
+ffffffff81376660 t proc_task_name
+ffffffff81376760 t render_sigset_t
+ffffffff81376800 t proc_pid_status
+ffffffff81377400 t proc_tid_stat
+ffffffff81377420 t do_task_stat
+ffffffff81378140 t proc_tgid_stat
+ffffffff81378160 t proc_pid_statm
+ffffffff813782b0 t proc_readfd
+ffffffff813782d0 t proc_fd_permission
+ffffffff81378340 t proc_lookupfd
+ffffffff81378360 t proc_lookupfdinfo
+ffffffff81378380 t proc_readfdinfo
+ffffffff813783a0 t proc_open_fdinfo
+ffffffff81378420 t proc_readfd_common
+ffffffff81378680 t proc_fd_instantiate
+ffffffff81378760 t proc_fd_link
+ffffffff81378810 t tid_fd_revalidate
+ffffffff81378930 t proc_lookupfd_common
+ffffffff81378a30 t proc_fdinfo_instantiate
+ffffffff81378ae0 t seq_fdinfo_open
+ffffffff81378b80 t seq_show
+ffffffff81378d50 t proc_tty_register_driver
+ffffffff81378da0 t proc_tty_unregister_driver
+ffffffff81378de0 t show_tty_driver
+ffffffff81378fb0 t show_tty_range
+ffffffff81379120 t cmdline_proc_show
+ffffffff81379150 t c_start
+ffffffff81379190 t c_stop
+ffffffff813791a0 t c_next
+ffffffff813791c0 t show_console_dev
+ffffffff81379340 t cpuinfo_open
+ffffffff81379360 t devinfo_start
+ffffffff81379380 t devinfo_stop
+ffffffff81379390 t devinfo_next
+ffffffff813793c0 t devinfo_show
+ffffffff81379430 t int_seq_start
+ffffffff81379450 t int_seq_stop
+ffffffff81379460 t int_seq_next
+ffffffff81379490 t loadavg_proc_show
+ffffffff813795c0 t meminfo_proc_show
+ffffffff8137a040 t get_idle_time
+ffffffff8137a080 t stat_open
+ffffffff8137a0c0 t show_stat
+ffffffff8137a9d0 t uptime_proc_show
+ffffffff8137ab70 t name_to_int
+ffffffff8137abc0 t version_proc_show
+ffffffff8137ac00 t show_softirqs
+ffffffff8137ad10 t proc_ns_dir_readdir
+ffffffff8137aee0 t proc_ns_dir_lookup
+ffffffff8137b040 t proc_ns_instantiate
+ffffffff8137b0c0 t proc_ns_get_link
+ffffffff8137b1b0 t proc_ns_readlink
+ffffffff8137b2e0 t proc_setup_self
+ffffffff8137b3d0 t proc_self_get_link
+ffffffff8137b480 t proc_setup_thread_self
+ffffffff8137b570 t proc_thread_self_get_link
+ffffffff8137b640 t register_sysctl_mount_point
+ffffffff8137b670 t register_sysctl
+ffffffff8137b690 t proc_sys_poll_notify
+ffffffff8137b6c0 t proc_sys_evict_inode
+ffffffff8137b730 t __register_sysctl_table
+ffffffff8137bf00 t insert_header
+ffffffff8137c3a0 t drop_sysctl_table
+ffffffff8137c510 t __register_sysctl_paths
+ffffffff8137c810 t count_subheaders
+ffffffff8137c880 t register_leaf_sysctl_tables
+ffffffff8137cae0 t unregister_sysctl_table
+ffffffff8137cb70 t register_sysctl_paths
+ffffffff8137cb90 t register_sysctl_table
+ffffffff8137cbc0 t __register_sysctl_base
+ffffffff8137cbf0 t setup_sysctl_set
+ffffffff8137cc60 t retire_sysctl_set
+ffffffff8137cc80 t do_sysctl_args
+ffffffff8137cd30 t process_sysctl_arg
+ffffffff8137d050 t sysctl_err
+ffffffff8137d0f0 t sysctl_print_dir
+ffffffff8137d120 t put_links
+ffffffff8137d2e0 t xlate_dir
+ffffffff8137d400 t get_links
+ffffffff8137d610 t proc_sys_lookup
+ffffffff8137d8c0 t proc_sys_permission
+ffffffff8137da10 t proc_sys_setattr
+ffffffff8137da70 t proc_sys_getattr
+ffffffff8137db50 t sysctl_follow_link
+ffffffff8137dcb0 t proc_sys_make_inode
+ffffffff8137de30 t proc_sys_read
+ffffffff8137de50 t proc_sys_write
+ffffffff8137de70 t proc_sys_poll
+ffffffff8137df90 t proc_sys_open
+ffffffff8137e050 t proc_sys_call_handler
+ffffffff8137e2e0 t proc_sys_revalidate
+ffffffff8137e310 t proc_sys_compare
+ffffffff8137e3a0 t proc_sys_delete
+ffffffff8137e3c0 t proc_sys_readdir
+ffffffff8137e6c0 t proc_sys_link_fill_cache
+ffffffff8137e7b0 t proc_sys_fill_cache
+ffffffff8137e950 t bpf_iter_init_seq_net
+ffffffff8137e960 t bpf_iter_fini_seq_net
+ffffffff8137e970 t proc_create_net_data
+ffffffff8137e9f0 t proc_create_net_data_write
+ffffffff8137ea80 t proc_create_net_single
+ffffffff8137eb00 t proc_create_net_single_write
+ffffffff8137eb80 t proc_tgid_net_lookup
+ffffffff8137ec20 t proc_tgid_net_getattr
+ffffffff8137ecc0 t proc_tgid_net_readdir
+ffffffff8137ed60 t seq_open_net
+ffffffff8137edc0 t seq_release_net
+ffffffff8137ede0 t single_open_net
+ffffffff8137ee20 t single_release_net
+ffffffff8137ee30 t kmsg_open
+ffffffff8137ee50 t kmsg_read
+ffffffff8137eeb0 t kmsg_release
+ffffffff8137eed0 t kmsg_poll
+ffffffff8137ef20 t stable_page_flags
+ffffffff8137f280 t kpagecount_read
+ffffffff8137f3c0 t kpageflags_read
+ffffffff8137f4a0 t kpagecgroup_read
+ffffffff8137f5a0 t boot_config_proc_show
+ffffffff8137f5c0 t kernfs_sop_show_options.llvm.4968707550398574627
+ffffffff8137f610 t kernfs_sop_show_path.llvm.4968707550398574627
+ffffffff8137f670 t kernfs_root_from_sb
+ffffffff8137f6a0 t kernfs_node_dentry
+ffffffff8137f7c0 t kernfs_super_ns
+ffffffff8137f7e0 t kernfs_get_tree
+ffffffff8137f9e0 t kernfs_test_super
+ffffffff8137fa20 t kernfs_set_super
+ffffffff8137fa40 t kernfs_free_fs_context
+ffffffff8137fa70 t kernfs_kill_sb
+ffffffff8137faf0 t kernfs_encode_fh
+ffffffff8137fb30 t kernfs_fh_to_dentry
+ffffffff8137fbc0 t kernfs_fh_to_parent
+ffffffff8137fc60 t kernfs_get_parent_dentry
+ffffffff8137fca0 t __kernfs_setattr
+ffffffff8137fe60 t kernfs_setattr
+ffffffff8137feb0 t kernfs_iop_setattr
+ffffffff8137ff60 t kernfs_iop_listxattr
+ffffffff81380090 t kernfs_iop_getattr
+ffffffff81380180 t kernfs_get_inode
+ffffffff813802f0 t kernfs_evict_inode
+ffffffff81380330 t kernfs_iop_permission
+ffffffff81380430 t kernfs_xattr_get
+ffffffff813804a0 t kernfs_xattr_set
+ffffffff813805d0 t kernfs_vfs_xattr_get
+ffffffff81380650 t kernfs_vfs_xattr_set
+ffffffff813806a0 t kernfs_vfs_user_xattr_set
+ffffffff813808e0 t kernfs_name
+ffffffff81380960 t kernfs_path_from_node
+ffffffff81380d30 t pr_cont_kernfs_name
+ffffffff81380de0 t pr_cont_kernfs_path
+ffffffff81380e70 t kernfs_get_parent
+ffffffff81380ec0 t kernfs_get
+ffffffff81380ee0 t kernfs_get_active
+ffffffff81380f10 t kernfs_put_active
+ffffffff81380f60 t kernfs_put
+ffffffff813810f0 t kernfs_node_from_dentry
+ffffffff81381130 t kernfs_new_node
+ffffffff81381190 t __kernfs_new_node
+ffffffff813813e0 t kernfs_find_and_get_node_by_id
+ffffffff81381450 t kernfs_add_one
+ffffffff81381660 t kernfs_link_sibling
+ffffffff81381740 t kernfs_activate
+ffffffff81381880 t kernfs_find_and_get_ns
+ffffffff813818f0 t kernfs_find_ns
+ffffffff81381ab0 t kernfs_walk_and_get_ns
+ffffffff81381bd0 t kernfs_create_root
+ffffffff81381d00 t kernfs_destroy_root
+ffffffff81381d70 t kernfs_remove
+ffffffff81381dc0 t kernfs_root_to_node
+ffffffff81381dd0 t kernfs_create_dir_ns
+ffffffff81381e80 t kernfs_create_empty_dir
+ffffffff81381f20 t kernfs_dop_revalidate.llvm.15982428029794042210
+ffffffff81382080 t kernfs_iop_lookup.llvm.15982428029794042210
+ffffffff81382150 t kernfs_iop_mkdir.llvm.15982428029794042210
+ffffffff81382200 t kernfs_iop_rmdir.llvm.15982428029794042210
+ffffffff813822b0 t kernfs_iop_rename.llvm.15982428029794042210
+ffffffff81382400 t kernfs_show
+ffffffff813824e0 t kernfs_drain
+ffffffff81382610 t __kernfs_remove
+ffffffff813827f0 t kernfs_break_active_protection
+ffffffff81382840 t kernfs_unbreak_active_protection
+ffffffff81382850 t kernfs_remove_self
+ffffffff813829e0 t kernfs_remove_by_name_ns
+ffffffff81382a90 t kernfs_rename_ns
+ffffffff81382d20 t kernfs_fop_readdir.llvm.15982428029794042210
+ffffffff81382f90 t kernfs_dir_fop_release.llvm.15982428029794042210
+ffffffff81382fb0 t kernfs_dir_pos
+ffffffff81383080 t kernfs_should_drain_open_files
+ffffffff813830d0 t kernfs_drain_open_files
+ffffffff813831c0 t kernfs_generic_poll
+ffffffff81383220 t kernfs_notify
+ffffffff813832d0 t kernfs_notify_workfn
+ffffffff813834d0 t kernfs_fop_read_iter.llvm.17044144545355880435
+ffffffff81383660 t kernfs_fop_write_iter.llvm.17044144545355880435
+ffffffff813837f0 t kernfs_fop_poll.llvm.17044144545355880435
+ffffffff813838c0 t kernfs_fop_mmap.llvm.17044144545355880435
+ffffffff813839c0 t kernfs_fop_open.llvm.17044144545355880435
+ffffffff81383d20 t kernfs_fop_release.llvm.17044144545355880435
+ffffffff81383df0 t __kernfs_create_file
+ffffffff81383e90 t kernfs_vma_open
+ffffffff81383ef0 t kernfs_vma_fault
+ffffffff81383f70 t kernfs_vma_page_mkwrite
+ffffffff81384000 t kernfs_vma_access
+ffffffff813840a0 t kernfs_unlink_open_file
+ffffffff813841b0 t kernfs_seq_start
+ffffffff81384260 t kernfs_seq_stop
+ffffffff813842b0 t kernfs_seq_next
+ffffffff81384330 t kernfs_seq_show
+ffffffff81384360 t kernfs_create_link
+ffffffff813843f0 t kernfs_iop_get_link.llvm.13345044536283971633
+ffffffff81384650 t sysfs_notify
+ffffffff813846d0 t sysfs_add_file_mode_ns
+ffffffff813847d0 t sysfs_add_bin_file_mode_ns
+ffffffff81384880 t sysfs_create_file_ns
+ffffffff81384920 t sysfs_create_files
+ffffffff81384a40 t sysfs_add_file_to_group
+ffffffff81384b00 t sysfs_chmod_file
+ffffffff81384be0 t sysfs_break_active_protection
+ffffffff81384c20 t sysfs_unbreak_active_protection
+ffffffff81384c60 t sysfs_remove_file_ns
+ffffffff81384c80 t sysfs_remove_file_self
+ffffffff81384cd0 t sysfs_remove_files
+ffffffff81384d20 t sysfs_remove_file_from_group
+ffffffff81384d80 t sysfs_create_bin_file
+ffffffff81384e90 t sysfs_remove_bin_file
+ffffffff81384eb0 t sysfs_link_change_owner
+ffffffff81384fe0 t sysfs_file_change_owner
+ffffffff813850e0 t sysfs_change_owner
+ffffffff813851d0 t sysfs_emit
+ffffffff813852a0 t sysfs_emit_at
+ffffffff81385370 t sysfs_kf_read
+ffffffff81385410 t sysfs_kf_write
+ffffffff81385460 t sysfs_kf_seq_show
+ffffffff81385560 t sysfs_kf_bin_open
+ffffffff813855a0 t sysfs_kf_bin_read
+ffffffff81385620 t sysfs_kf_bin_write
+ffffffff813856a0 t sysfs_kf_bin_mmap
+ffffffff813856d0 t sysfs_warn_dup
+ffffffff81385750 t sysfs_create_dir_ns
+ffffffff81385890 t sysfs_remove_dir
+ffffffff813858f0 t sysfs_rename_dir_ns
+ffffffff81385940 t sysfs_move_dir_ns
+ffffffff81385970 t sysfs_create_mount_point
+ffffffff81385a10 t sysfs_remove_mount_point
+ffffffff81385a30 t sysfs_create_link_sd
+ffffffff81385a50 t sysfs_do_create_link_sd.llvm.12133614079414345167
+ffffffff81385b10 t sysfs_create_link
+ffffffff81385b50 t sysfs_create_link_nowarn
+ffffffff81385b90 t sysfs_delete_link
+ffffffff81385c00 t sysfs_remove_link
+ffffffff81385c30 t sysfs_rename_link_ns
+ffffffff81385ce0 t sysfs_init_fs_context
+ffffffff81385d80 t sysfs_kill_sb
+ffffffff81385db0 t sysfs_fs_context_free
+ffffffff81385e00 t sysfs_get_tree
+ffffffff81385e40 t sysfs_create_group
+ffffffff81385e60 t internal_create_group.llvm.542297888574076032
+ffffffff813862b0 t sysfs_create_groups
+ffffffff81386350 t sysfs_update_groups
+ffffffff813863e0 t sysfs_update_group
+ffffffff81386400 t sysfs_remove_group
+ffffffff813864d0 t sysfs_remove_groups
+ffffffff81386530 t sysfs_merge_group
+ffffffff81386640 t sysfs_unmerge_group
+ffffffff813866a0 t sysfs_add_link_to_group
+ffffffff81386700 t sysfs_remove_link_from_group
+ffffffff81386740 t compat_only_sysfs_link_entry_to_kobj
+ffffffff81386810 t sysfs_group_change_owner
+ffffffff81386a00 t sysfs_groups_change_owner
+ffffffff81386a80 t devpts_mntget
+ffffffff81386b90 t devpts_acquire
+ffffffff81386c40 t devpts_release
+ffffffff81386c60 t devpts_new_index
+ffffffff81386cc0 t devpts_kill_index
+ffffffff81386ce0 t devpts_pty_new
+ffffffff81386ea0 t devpts_get_priv
+ffffffff81386ed0 t devpts_pty_kill
+ffffffff81386f70 t devpts_mount
+ffffffff81386f90 t devpts_kill_sb
+ffffffff81386fd0 t devpts_fill_super
+ffffffff81387270 t parse_mount_options
+ffffffff813874d0 t devpts_remount
+ffffffff81387520 t devpts_show_options
+ffffffff813875d0 t ext4_get_group_number
+ffffffff81387630 t ext4_get_group_no_and_offset
+ffffffff81387690 t ext4_free_clusters_after_init
+ffffffff81387930 t ext4_get_group_desc
+ffffffff81387a20 t ext4_read_block_bitmap_nowait
+ffffffff81387de0 t ext4_init_block_bitmap
+ffffffff81388100 t trace_ext4_read_block_bitmap_load
+ffffffff81388160 t ext4_validate_block_bitmap
+ffffffff813884a0 t ext4_wait_block_bitmap
+ffffffff81388560 t ext4_read_block_bitmap
+ffffffff813885b0 t ext4_claim_free_clusters
+ffffffff81388600 t ext4_has_free_clusters
+ffffffff81388750 t ext4_should_retry_alloc
+ffffffff81388800 t ext4_new_meta_blocks
+ffffffff81388920 t ext4_count_free_clusters
+ffffffff81388a30 t ext4_bg_has_super
+ffffffff81388b40 t ext4_bg_num_gdb
+ffffffff81388bd0 t ext4_inode_to_goal_block
+ffffffff81388c90 t ext4_num_base_meta_clusters
+ffffffff81388da0 t ext4_count_free
+ffffffff81388dd0 t ext4_inode_bitmap_csum_verify
+ffffffff81388ec0 t ext4_inode_bitmap_csum_set
+ffffffff81388f90 t ext4_block_bitmap_csum_verify
+ffffffff81389080 t ext4_block_bitmap_csum_set
+ffffffff81389150 t ext4_exit_system_zone
+ffffffff81389170 t ext4_setup_system_zone
+ffffffff813895b0 t add_system_zone
+ffffffff81389740 t ext4_release_system_zone
+ffffffff81389780 t ext4_destroy_system_zone
+ffffffff813897e0 t ext4_sb_block_valid
+ffffffff813898c0 t ext4_inode_block_valid
+ffffffff813899a0 t ext4_check_blockref
+ffffffff81389a60 t __ext4_check_dir_entry
+ffffffff81389c90 t ext4_htree_free_dir_info
+ffffffff81389d10 t ext4_htree_store_dirent
+ffffffff81389e20 t ext4_check_all_de
+ffffffff81389ec0 t ext4_dir_llseek.llvm.14943797498892185815
+ffffffff81389f70 t ext4_readdir.llvm.14943797498892185815
+ffffffff8138ab30 t ext4_release_dir.llvm.14943797498892185815
+ffffffff8138abc0 t ext4_inode_journal_mode
+ffffffff8138ac60 t __ext4_journal_start_sb
+ffffffff8138ade0 t __ext4_journal_stop
+ffffffff8138ae80 t __ext4_journal_start_reserved
+ffffffff8138b020 t __ext4_journal_ensure_credits
+ffffffff8138b0f0 t __ext4_journal_get_write_access
+ffffffff8138b2f0 t ext4_journal_abort_handle
+ffffffff8138b3c0 t __ext4_forget
+ffffffff8138b690 t __ext4_journal_get_create_access
+ffffffff8138b800 t __ext4_handle_dirty_metadata
+ffffffff8138ba20 t ext4_free_ext_path
+ffffffff8138ba90 t ext4_datasem_ensure_credits
+ffffffff8138bb30 t ext4_ext_check_inode
+ffffffff8138bb70 t __ext4_ext_check
+ffffffff8138bf70 t ext4_ext_precache
+ffffffff8138c2a0 t __read_extent_tree_block
+ffffffff8138c4c0 t ext4_ext_tree_init
+ffffffff8138c500 t ext4_find_extent
+ffffffff8138c9c0 t ext4_ext_next_allocated_block
+ffffffff8138ca70 t ext4_ext_insert_extent
+ffffffff8138df60 t ext4_ext_get_access
+ffffffff8138dfb0 t ext4_ext_try_to_merge
+ffffffff8138e100 t ext4_ext_correct_indexes
+ffffffff8138e380 t __ext4_ext_dirty
+ffffffff8138e420 t ext4_ext_calc_credits_for_single_extent
+ffffffff8138e460 t ext4_ext_index_trans_blocks
+ffffffff8138e4b0 t ext4_ext_remove_space
+ffffffff8138fbd0 t ext4_ext_search_right
+ffffffff8138fe90 t ext4_ext_rm_idx
+ffffffff81390190 t ext4_ext_init
+ffffffff813901a0 t ext4_ext_release
+ffffffff813901b0 t ext4_ext_map_blocks
+ffffffff81392170 t get_implied_cluster_alloc
+ffffffff813923a0 t ext4_update_inode_fsync_trans
+ffffffff813923e0 t ext4_update_inode_fsync_trans
+ffffffff81392420 t ext4_update_inode_fsync_trans
+ffffffff81392460 t ext4_ext_truncate
+ffffffff81392550 t ext4_fallocate
+ffffffff81392ea0 t ext4_zero_range
+ffffffff813932e0 t trace_ext4_fallocate_enter
+ffffffff81393340 t ext4_alloc_file_blocks
+ffffffff81393690 t trace_ext4_fallocate_exit
+ffffffff813936f0 t ext4_convert_unwritten_extents
+ffffffff813938a0 t ext4_convert_unwritten_io_end_vec
+ffffffff81393960 t ext4_fiemap
+ffffffff81393a30 t ext4_get_es_cache
+ffffffff81393ca0 t ext4_swap_extents
+ffffffff81394620 t ext4_clu_mapped
+ffffffff81394850 t ext4_ext_replay_update_ex
+ffffffff81394bf0 t ext4_ext_replay_shrink_inode
+ffffffff81394e10 t ext4_ext_replay_set_iblocks
+ffffffff813953b0 t ext4_ext_clear_bb
+ffffffff81395650 t ext4_extent_block_csum_set
+ffffffff81395740 t ext4_ext_insert_index
+ffffffff813959e0 t ext4_ext_try_to_merge_right
+ffffffff81395c40 t ext4_split_extent_at
+ffffffff813962c0 t ext4_ext_zeroout
+ffffffff81396300 t ext4_zeroout_es
+ffffffff81396350 t ext4_split_extent
+ffffffff813964e0 t trace_ext4_ext_convert_to_initialized_fastpath
+ffffffff81396540 t ext4_es_is_delayed
+ffffffff81396560 t ext4_es_is_delayed
+ffffffff81396580 t ext4_update_inode_size
+ffffffff813965f0 t ext4_iomap_xattr_begin
+ffffffff81396720 t ext4_ext_shift_extents
+ffffffff81396ee0 t ext4_exit_es
+ffffffff81396f00 t ext4_es_init_tree
+ffffffff81396f20 t ext4_es_find_extent_range
+ffffffff81397030 t __es_find_extent_range
+ffffffff813971a0 t ext4_es_scan_range
+ffffffff813972a0 t ext4_es_scan_clu
+ffffffff813973b0 t ext4_es_insert_extent
+ffffffff81397e70 t __es_remove_extent
+ffffffff81398610 t __es_insert_extent
+ffffffff81398cc0 t __es_shrink
+ffffffff81398fb0 t ext4_es_cache_extent
+ffffffff81399130 t ext4_es_lookup_extent
+ffffffff81399370 t ext4_es_remove_extent
+ffffffff81399480 t ext4_seq_es_shrinker_info_show
+ffffffff813996b0 t ext4_es_register_shrinker
+ffffffff81399840 t ext4_es_scan
+ffffffff81399bd0 t ext4_es_count
+ffffffff81399c40 t ext4_es_unregister_shrinker
+ffffffff81399c90 t ext4_clear_inode_es
+ffffffff81399d40 t ext4_es_free_extent
+ffffffff81399e60 t ext4_exit_pending
+ffffffff81399e80 t ext4_init_pending_tree
+ffffffff81399ea0 t ext4_remove_pending
+ffffffff81399f50 t ext4_is_pending
+ffffffff81399fe0 t ext4_es_insert_delayed_block
+ffffffff8139a210 t ext4_es_delayed_clu
+ffffffff8139a360 t count_rsvd
+ffffffff8139a470 t es_reclaim_extents
+ffffffff8139a560 t es_do_reclaim_extents
+ffffffff8139a6a0 t ext4_llseek
+ffffffff8139a780 t ext4_file_read_iter.llvm.539876448942256211
+ffffffff8139a8a0 t ext4_file_write_iter.llvm.539876448942256211
+ffffffff8139b110 t ext4_file_mmap.llvm.539876448942256211
+ffffffff8139b170 t ext4_file_open.llvm.539876448942256211
+ffffffff8139b3c0 t ext4_release_file.llvm.539876448942256211
+ffffffff8139b470 t ext4_buffered_write_iter
+ffffffff8139b5f0 t ext4_dio_write_end_io
+ffffffff8139b650 t sb_start_intwrite_trylock
+ffffffff8139b6d0 t lock_buffer
+ffffffff8139b700 t lock_buffer
+ffffffff8139b730 t lock_buffer
+ffffffff8139b760 t lock_buffer
+ffffffff8139b790 t sb_end_intwrite
+ffffffff8139b800 t sb_end_intwrite
+ffffffff8139b870 t ext4_fsmap_from_internal
+ffffffff8139b8d0 t ext4_fsmap_to_internal
+ffffffff8139b910 t ext4_getfsmap
+ffffffff8139be70 t ext4_getfsmap_datadev
+ffffffff8139c800 t ext4_getfsmap_logdev
+ffffffff8139ca00 t ext4_getfsmap_dev_compare
+ffffffff8139ca20 t ext4_getfsmap_datadev_helper
+ffffffff8139cc50 t ext4_getfsmap_helper
+ffffffff8139cf50 t ext4_getfsmap_compare
+ffffffff8139cf70 t ext4_sync_file
+ffffffff8139d2b0 t ext4fs_dirhash
+ffffffff8139d3c0 t __ext4fs_dirhash
+ffffffff8139dab0 t str2hashbuf_signed
+ffffffff8139dbe0 t str2hashbuf_unsigned
+ffffffff8139dd20 t ext4_mark_bitmap_end
+ffffffff8139dd80 t ext4_end_bitmap_read
+ffffffff8139ddb0 t ext4_free_inode
+ffffffff8139e280 t ext4_read_inode_bitmap
+ffffffff8139e840 t ext4_get_group_info
+ffffffff8139e8a0 t ext4_get_group_info
+ffffffff8139e900 t ext4_lock_group
+ffffffff8139e980 t ext4_lock_group
+ffffffff8139ea00 t ext4_mark_inode_used
+ffffffff8139edb0 t ext4_has_group_desc_csum
+ffffffff8139ee10 t ext4_has_group_desc_csum
+ffffffff8139ee70 t ext4_has_group_desc_csum
+ffffffff8139eed0 t __ext4_new_inode
+ffffffff813a01d0 t find_group_orlov
+ffffffff813a0610 t find_inode_bit
+ffffffff813a0790 t ext4_has_metadata_csum
+ffffffff813a07e0 t ext4_has_metadata_csum
+ffffffff813a0830 t ext4_chksum
+ffffffff813a08a0 t ext4_chksum
+ffffffff813a0910 t trace_ext4_allocate_inode
+ffffffff813a0970 t ext4_orphan_get
+ffffffff813a0bc0 t ext4_count_free_inodes
+ffffffff813a0c40 t ext4_count_dirs
+ffffffff813a0cb0 t ext4_init_inode_table
+ffffffff813a1020 t get_orlov_stats
+ffffffff813a10d0 t ext4_ind_map_blocks
+ffffffff813a1e90 t ext4_get_branch
+ffffffff813a2020 t ext4_ind_trans_blocks
+ffffffff813a2060 t ext4_ind_truncate
+ffffffff813a2570 t ext4_find_shared
+ffffffff813a2690 t ext4_free_branches
+ffffffff813a2a20 t ext4_ind_remove_space
+ffffffff813a3770 t ext4_clear_blocks
+ffffffff813a38f0 t ext4_ind_truncate_ensure_credits
+ffffffff813a3ad0 t ext4_get_max_inline_size
+ffffffff813a3ca0 t ext4_find_inline_data_nolock
+ffffffff813a3e00 t ext4_readpage_inline
+ffffffff813a3f40 t ext4_read_inline_page
+ffffffff813a41d0 t ext4_try_to_write_inline_data
+ffffffff813a4830 t ext4_prepare_inline_data
+ffffffff813a48f0 t ext4_write_inline_data_end
+ffffffff813a4d50 t ext4_journalled_write_inline_data
+ffffffff813a4f30 t ext4_da_write_inline_data_begin
+ffffffff813a53a0 t ext4_try_add_inline_entry
+ffffffff813a5720 t ext4_add_dirent_to_inline
+ffffffff813a5850 t ext4_convert_inline_data_nolock
+ffffffff813a5c50 t ext4_inlinedir_to_tree
+ffffffff813a61f0 t ext4_read_inline_dir
+ffffffff813a65d0 t ext4_read_inline_link
+ffffffff813a6760 t ext4_get_first_inline_block
+ffffffff813a67f0 t ext4_try_create_inline_dir
+ffffffff813a68d0 t ext4_find_inline_entry
+ffffffff813a6a50 t ext4_delete_inline_entry
+ffffffff813a6c50 t empty_inline_dir
+ffffffff813a6ed0 t ext4_destroy_inline_data
+ffffffff813a6f40 t ext4_destroy_inline_data_nolock
+ffffffff813a71c0 t ext4_inline_data_iomap
+ffffffff813a72e0 t ext4_inline_data_truncate
+ffffffff813a7730 t ext4_convert_inline_data
+ffffffff813a78e0 t ext4_update_inline_data
+ffffffff813a7b00 t ext4_create_inline_data
+ffffffff813a7d40 t ext4_finish_convert_inline_dir
+ffffffff813a7f10 t ext4_inode_csum_set
+ffffffff813a7fb0 t ext4_inode_csum
+ffffffff813a81e0 t ext4_inode_is_fast_symlink
+ffffffff813a8290 t ext4_evict_inode
+ffffffff813a8930 t ext4_begin_ordered_truncate
+ffffffff813a89c0 t __ext4_mark_inode_dirty
+ffffffff813a8cb0 t ext4_truncate
+ffffffff813a90d0 t ext4_da_update_reserve_space
+ffffffff813a9230 t ext4_issue_zeroout
+ffffffff813a9290 t ext4_map_blocks
+ffffffff813a9900 t ext4_get_block
+ffffffff813a9920 t _ext4_get_block.llvm.16320813406039337633
+ffffffff813a9a60 t ext4_get_block_unwritten
+ffffffff813a9a80 t ext4_getblk
+ffffffff813a9d30 t ext4_bread
+ffffffff813a9d90 t ext4_buffer_uptodate
+ffffffff813a9dc0 t ext4_bread_batch
+ffffffff813a9f30 t wait_on_buffer
+ffffffff813a9f60 t wait_on_buffer
+ffffffff813a9f90 t ext4_walk_page_buffers
+ffffffff813aa040 t do_journal_get_write_access
+ffffffff813aa0c0 t ext4_da_release_space
+ffffffff813aa1c0 t ext4_da_get_block_prep
+ffffffff813aa680 t ext4_alloc_da_blocks
+ffffffff813aa6f0 t ext4_iomap_begin.llvm.16320813406039337633
+ffffffff813aa9b0 t ext4_iomap_end.llvm.16320813406039337633
+ffffffff813aa9d0 t ext4_iomap_overwrite_begin.llvm.16320813406039337633
+ffffffff813aaa00 t ext4_iomap_begin_report.llvm.16320813406039337633
+ffffffff813aac30 t ext4_set_aops
+ffffffff813aaca0 t ext4_zero_partial_blocks
+ffffffff813aad50 t ext4_block_zero_page_range
+ffffffff813ab040 t ext4_can_truncate
+ffffffff813ab100 t ext4_update_disksize_before_punch
+ffffffff813ab200 t ext4_break_layouts
+ffffffff813ab230 t ext4_punch_hole
+ffffffff813ab670 t ext4_inode_attach_jinode
+ffffffff813ab730 t ext4_writepage_trans_blocks
+ffffffff813ab7e0 t ext4_get_inode_loc
+ffffffff813ab870 t __ext4_get_inode_loc.llvm.16320813406039337633
+ffffffff813abcc0 t ext4_get_fc_inode_loc
+ffffffff813abce0 t ext4_set_inode_flags
+ffffffff813abdd0 t ext4_get_projid
+ffffffff813abe00 t __ext4_iget
+ffffffff813ac980 t ext4_inode_csum_verify
+ffffffff813aca40 t ext4_inode_blocks
+ffffffff813acaa0 t ext4_iget_extra_inode
+ffffffff813acb30 t ext4_write_inode
+ffffffff813accf0 t ext4_setattr
+ffffffff813ad260 t ext4_wait_for_tail_page_commit
+ffffffff813ad3d0 t ext4_dio_alignment
+ffffffff813ad420 t ext4_getattr
+ffffffff813ad5b0 t ext4_file_getattr
+ffffffff813ad630 t ext4_chunk_trans_blocks
+ffffffff813ad6a0 t ext4_mark_iloc_dirty
+ffffffff813adc30 t ext4_reserve_inode_write
+ffffffff813add50 t ext4_expand_extra_isize
+ffffffff813adfd0 t ext4_dirty_inode
+ffffffff813ae050 t ext4_change_inode_journal_flag
+ffffffff813ae260 t ext4_page_mkwrite
+ffffffff813aea40 t ext4_da_reserve_space
+ffffffff813aeaf0 t ext4_es_is_delonly
+ffffffff813aeb20 t ext4_es_is_mapped
+ffffffff813aeb50 t ext4_set_iomap
+ffffffff813aecd0 t ext4_writepage
+ffffffff813af430 t ext4_read_folio
+ffffffff813af4d0 t ext4_writepages
+ffffffff813b0610 t ext4_journalled_dirty_folio
+ffffffff813b0630 t ext4_readahead
+ffffffff813b0670 t ext4_write_begin
+ffffffff813b0ce0 t ext4_journalled_write_end
+ffffffff813b1150 t ext4_bmap
+ffffffff813b1260 t ext4_journalled_invalidate_folio
+ffffffff813b1280 t ext4_release_folio
+ffffffff813b1320 t ext4_iomap_swap_activate
+ffffffff813b1340 t mpage_prepare_extent_to_map
+ffffffff813b1720 t mpage_release_unused_pages
+ffffffff813b19b0 t mpage_process_page_bufs
+ffffffff813b1b60 t ext4_print_free_blocks
+ffffffff813b1c70 t ext4_journalled_zero_new_buffers
+ffffffff813b1e10 t __ext4_journalled_invalidate_folio
+ffffffff813b1ee0 t ext4_dirty_folio
+ffffffff813b1f20 t ext4_da_write_begin
+ffffffff813b21f0 t ext4_da_write_end
+ffffffff813b2430 t ext4_invalidate_folio
+ffffffff813b24c0 t ext4_write_end
+ffffffff813b27e0 t ext4_fill_raw_inode
+ffffffff813b2c90 t trace_ext4_load_inode
+ffffffff813b2cf0 t ext4_reset_inode_seed
+ffffffff813b2e10 t ext4_fileattr_get
+ffffffff813b2e80 t ext4_fileattr_set
+ffffffff813b32d0 t ext4_ioctl
+ffffffff813b4eb0 t ext4_update_overhead
+ffffffff813b4f00 t ext4_update_superblocks_fn
+ffffffff813b5510 t set_overhead
+ffffffff813b5530 t ext4_dax_dontcache
+ffffffff813b5570 t ext4_getfsmap_format
+ffffffff813b56a0 t swap_inode_data
+ffffffff813b5860 t ext4_sb_setlabel
+ffffffff813b5880 t ext4_sb_setuuid
+ffffffff813b58a0 t mb_set_bits
+ffffffff813b5910 t ext4_mb_prefetch
+ffffffff813b5b10 t ext4_mb_prefetch_fini
+ffffffff813b5c90 t ext4_mb_init_group
+ffffffff813b5f30 t ext4_mb_seq_groups_start.llvm.16120985233963682752
+ffffffff813b5f70 t ext4_mb_seq_groups_stop.llvm.16120985233963682752
+ffffffff813b5f80 t ext4_mb_seq_groups_next.llvm.16120985233963682752
+ffffffff813b5fd0 t ext4_mb_seq_groups_show.llvm.16120985233963682752
+ffffffff813b64b0 t ext4_seq_mb_stats_show
+ffffffff813b67a0 t ext4_mb_seq_structs_summary_start.llvm.16120985233963682752
+ffffffff813b67e0 t ext4_mb_seq_structs_summary_stop.llvm.16120985233963682752
+ffffffff813b67f0 t ext4_mb_seq_structs_summary_next.llvm.16120985233963682752
+ffffffff813b6840 t ext4_mb_seq_structs_summary_show.llvm.16120985233963682752
+ffffffff813b6990 t ext4_mb_alloc_groupinfo
+ffffffff813b6aa0 t ext4_mb_add_groupinfo
+ffffffff813b6d60 t ext4_mb_init
+ffffffff813b7620 t ext4_discard_work
+ffffffff813b7950 t ext4_mb_release
+ffffffff813b7d30 t ext4_process_freed_data
+ffffffff813b8130 t ext4_exit_mballoc
+ffffffff813b8220 t ext4_mb_mark_bb
+ffffffff813b8710 t mb_clear_bits
+ffffffff813b8780 t ext4_discard_preallocations
+ffffffff813b8cf0 t ext4_mb_load_buddy_gfp
+ffffffff813b9170 t ext4_mb_unload_buddy
+ffffffff813b91e0 t ext4_mb_release_inode_pa
+ffffffff813b94b0 t ext4_mb_pa_callback
+ffffffff813b94e0 t ext4_mb_new_blocks
+ffffffff813ba2b0 t ext4_mb_initialize_context
+ffffffff813ba470 t ext4_mb_use_preallocated
+ffffffff813ba6d0 t ext4_mb_normalize_request
+ffffffff813bab00 t ext4_mb_regular_allocator
+ffffffff813bb8f0 t ext4_mb_pa_free
+ffffffff813bb930 t ext4_discard_allocated_blocks
+ffffffff813bbb00 t ext4_mb_mark_diskspace_used
+ffffffff813bbf90 t ext4_mb_discard_preallocations_should_retry
+ffffffff813bc1e0 t ext4_free_blocks
+ffffffff813bcfb0 t ext4_group_add_blocks
+ffffffff813bd3e0 t mb_free_blocks
+ffffffff813bd8f0 t ext4_trim_fs
+ffffffff813bde80 t ext4_mballoc_query_range
+ffffffff813be220 t ext4_mb_init_cache
+ffffffff813bea60 t ext4_mb_generate_buddy
+ffffffff813bed50 t ext4_mb_generate_from_pa
+ffffffff813beed0 t mb_set_largest_free_order
+ffffffff813bf040 t mb_update_avg_fragment_size
+ffffffff813bf1a0 t ext4_try_to_trim_range
+ffffffff813bf640 t mb_mark_used
+ffffffff813bfb30 t ext4_mb_use_inode_pa
+ffffffff813bfc00 t ext4_mb_find_by_goal
+ffffffff813bfee0 t ext4_mb_good_group
+ffffffff813c0010 t ext4_mb_simple_scan_group
+ffffffff813c01a0 t ext4_mb_scan_aligned
+ffffffff813c0300 t ext4_mb_complex_scan_group
+ffffffff813c06a0 t ext4_mb_try_best_found
+ffffffff813c0850 t mb_find_extent
+ffffffff813c0bc0 t ext4_mb_use_best_found
+ffffffff813c0ce0 t ext4_mb_new_group_pa
+ffffffff813c0f10 t ext4_mb_new_inode_pa
+ffffffff813c11d0 t ext4_mb_discard_group_preallocations
+ffffffff813c1660 t ext4_mb_release_group_pa
+ffffffff813c17d0 t ext4_mb_discard_lg_preallocations
+ffffffff813c1b50 t ext4_mb_free_metadata
+ffffffff813c1d60 t ext4_try_merge_freed_extent
+ffffffff813c1e20 t ext4_ext_migrate
+ffffffff813c2260 t update_ind_extent_range
+ffffffff813c2370 t update_dind_extent_range
+ffffffff813c2430 t update_tind_extent_range
+ffffffff813c25c0 t finish_range
+ffffffff813c26d0 t free_ext_block
+ffffffff813c2740 t ext4_ext_swap_inode_data
+ffffffff813c2a90 t ext4_journal_ensure_credits
+ffffffff813c2ae0 t ext4_ind_migrate
+ffffffff813c2d50 t free_ext_idx
+ffffffff813c2e90 t free_dind_blocks
+ffffffff813c3060 t __dump_mmp_msg
+ffffffff813c30d0 t ext4_stop_mmpd
+ffffffff813c3110 t ext4_multi_mount_protect
+ffffffff813c34c0 t read_mmp_block
+ffffffff813c3670 t write_mmp_block
+ffffffff813c3870 t kmmpd
+ffffffff813c3ca0 t ext4_double_down_write_data_sem
+ffffffff813c3ce0 t ext4_double_up_write_data_sem
+ffffffff813c3d10 t ext4_move_extents
+ffffffff813c40f0 t mext_check_arguments
+ffffffff813c4290 t move_extent_per_page
+ffffffff813c52c0 t ext4_initialize_dirent_tail
+ffffffff813c5310 t ext4_dirblock_csum_verify
+ffffffff813c5440 t ext4_handle_dirty_dirblock
+ffffffff813c55a0 t ext4_htree_fill_tree
+ffffffff813c5b50 t htree_dirblock_to_tree
+ffffffff813c5e20 t dx_probe
+ffffffff813c6460 t ext4_fname_setup_ci_filename
+ffffffff813c6560 t ext4_search_dir
+ffffffff813c6650 t ext4_match
+ffffffff813c6720 t ext4_get_parent
+ffffffff813c68b0 t ext4_find_dest_de
+ffffffff813c69f0 t ext4_insert_dentry
+ffffffff813c6b00 t ext4_generic_delete_entry
+ffffffff813c6c30 t ext4_init_dot_dotdot
+ffffffff813c6ce0 t ext4_init_new_dir
+ffffffff813c6f10 t ext4_append
+ffffffff813c70b0 t ext4_empty_dir
+ffffffff813c7380 t __ext4_read_dirblock
+ffffffff813c7630 t __ext4_unlink
+ffffffff813c7970 t ext4_delete_entry
+ffffffff813c7af0 t ext4_update_dx_flag
+ffffffff813c7b30 t __ext4_link
+ffffffff813c7d10 t ext4_inc_count
+ffffffff813c7d70 t ext4_add_entry
+ffffffff813c8a90 t ext4_lookup.llvm.14736654901149571680
+ffffffff813c8cf0 t ext4_create.llvm.14736654901149571680
+ffffffff813c8e60 t ext4_link.llvm.14736654901149571680
+ffffffff813c8ec0 t ext4_unlink.llvm.14736654901149571680
+ffffffff813c8fc0 t ext4_symlink.llvm.14736654901149571680
+ffffffff813c92c0 t ext4_mkdir.llvm.14736654901149571680
+ffffffff813c9610 t ext4_rmdir.llvm.14736654901149571680
+ffffffff813c9930 t ext4_mknod.llvm.14736654901149571680
+ffffffff813c9ab0 t ext4_rename2.llvm.14736654901149571680
+ffffffff813cac70 t ext4_tmpfile.llvm.14736654901149571680
+ffffffff813cae00 t dx_node_limit
+ffffffff813cae80 t ext4_ci_compare
+ffffffff813caf70 t __ext4_find_entry
+ffffffff813cb880 t ext4_dx_csum_verify
+ffffffff813cb990 t ext4_dx_csum
+ffffffff813cba90 t add_dirent_to_buf
+ffffffff813cbc90 t make_indexed_dir
+ffffffff813cc240 t dx_insert_block
+ffffffff813cc2f0 t ext4_handle_dirty_dx_node
+ffffffff813cc430 t do_split
+ffffffff813ccd00 t ext4_add_nondir
+ffffffff813ccdd0 t ext4_rename_dir_prepare
+ffffffff813cd000 t ext4_setent
+ffffffff813cd110 t ext4_rename_dir_finish
+ffffffff813cd1b0 t ext4_update_dir_count
+ffffffff813cd260 t ext4_rename_delete
+ffffffff813cd410 t ext4_resetent
+ffffffff813cd580 t ext4_exit_pageio
+ffffffff813cd5b0 t ext4_alloc_io_end_vec
+ffffffff813cd620 t ext4_last_io_end_vec
+ffffffff813cd640 t ext4_end_io_rsv_work
+ffffffff813cd7f0 t ext4_init_io_end
+ffffffff813cd840 t ext4_put_io_end_defer
+ffffffff813cd960 t ext4_release_io_end
+ffffffff813cda50 t ext4_put_io_end
+ffffffff813cdb10 t ext4_get_io_end
+ffffffff813cdb50 t ext4_io_submit
+ffffffff813cdb90 t ext4_io_submit_init
+ffffffff813cdbb0 t ext4_bio_write_page
+ffffffff813cdf90 t ext4_finish_bio
+ffffffff813ce1c0 t ext4_end_bio
+ffffffff813ce300 t ext4_mpage_readpages
+ffffffff813cedb0 t ext4_exit_post_read_processing
+ffffffff813cede0 t __read_end_io
+ffffffff813ceef0 t decrypt_work
+ffffffff813cef90 t verity_work
+ffffffff813cefd0 t verity_work
+ffffffff813cf050 t ext4_kvfree_array_rcu
+ffffffff813cf0a0 t ext4_rcu_ptr_callback
+ffffffff813cf0d0 t ext4_resize_begin
+ffffffff813cf1f0 t ext4_resize_end
+ffffffff813cf220 t ext4_list_backups
+ffffffff813cf310 t ext4_group_add
+ffffffff813cf970 t ext4_flex_group_add
+ffffffff813d17c0 t ext4_group_extend
+ffffffff813d19e0 t ext4_group_extend_no_check
+ffffffff813d1c00 t ext4_resize_fs
+ffffffff813d2f60 t update_backups
+ffffffff813d34c0 t set_flexbg_block_bitmap
+ffffffff813d36d0 t verify_reserved_gdb
+ffffffff813d38c0 t __traceiter_ext4_other_inode_update_time
+ffffffff813d3910 t __traceiter_ext4_free_inode
+ffffffff813d3960 t __traceiter_ext4_request_inode
+ffffffff813d39b0 t __traceiter_ext4_allocate_inode
+ffffffff813d3a10 t __traceiter_ext4_evict_inode
+ffffffff813d3a60 t __traceiter_ext4_drop_inode
+ffffffff813d3ab0 t __traceiter_ext4_nfs_commit_metadata
+ffffffff813d3b00 t __traceiter_ext4_mark_inode_dirty
+ffffffff813d3b50 t __traceiter_ext4_begin_ordered_truncate
+ffffffff813d3ba0 t __traceiter_ext4_write_begin
+ffffffff813d3c00 t __traceiter_ext4_da_write_begin
+ffffffff813d3c60 t __traceiter_ext4_write_end
+ffffffff813d3cd0 t __traceiter_ext4_journalled_write_end
+ffffffff813d3d40 t __traceiter_ext4_da_write_end
+ffffffff813d3db0 t __traceiter_ext4_writepages
+ffffffff813d3e00 t __traceiter_ext4_da_write_pages
+ffffffff813d3e60 t __traceiter_ext4_da_write_pages_extent
+ffffffff813d3eb0 t __traceiter_ext4_writepages_result
+ffffffff813d3f20 t __traceiter_ext4_writepage
+ffffffff813d3f70 t __traceiter_ext4_readpage
+ffffffff813d3fc0 t __traceiter_ext4_releasepage
+ffffffff813d4010 t __traceiter_ext4_invalidate_folio
+ffffffff813d4070 t __traceiter_ext4_journalled_invalidate_folio
+ffffffff813d40d0 t __traceiter_ext4_discard_blocks
+ffffffff813d4130 t __traceiter_ext4_mb_new_inode_pa
+ffffffff813d4180 t __traceiter_ext4_mb_new_group_pa
+ffffffff813d41d0 t __traceiter_ext4_mb_release_inode_pa
+ffffffff813d4230 t __traceiter_ext4_mb_release_group_pa
+ffffffff813d4280 t __traceiter_ext4_discard_preallocations
+ffffffff813d42e0 t __traceiter_ext4_mb_discard_preallocations
+ffffffff813d4330 t __traceiter_ext4_request_blocks
+ffffffff813d4380 t __traceiter_ext4_allocate_blocks
+ffffffff813d43d0 t __traceiter_ext4_free_blocks
+ffffffff813d4440 t __traceiter_ext4_sync_file_enter
+ffffffff813d4490 t __traceiter_ext4_sync_file_exit
+ffffffff813d44e0 t __traceiter_ext4_sync_fs
+ffffffff813d4530 t __traceiter_ext4_alloc_da_blocks
+ffffffff813d4580 t __traceiter_ext4_mballoc_alloc
+ffffffff813d45d0 t __traceiter_ext4_mballoc_prealloc
+ffffffff813d4620 t __traceiter_ext4_mballoc_discard
+ffffffff813d4690 t __traceiter_ext4_mballoc_free
+ffffffff813d4700 t __traceiter_ext4_forget
+ffffffff813d4760 t __traceiter_ext4_da_update_reserve_space
+ffffffff813d47c0 t __traceiter_ext4_da_reserve_space
+ffffffff813d4810 t __traceiter_ext4_da_release_space
+ffffffff813d4860 t __traceiter_ext4_mb_bitmap_load
+ffffffff813d48b0 t __traceiter_ext4_mb_buddy_bitmap_load
+ffffffff813d4900 t __traceiter_ext4_load_inode_bitmap
+ffffffff813d4950 t __traceiter_ext4_read_block_bitmap_load
+ffffffff813d49c0 t __traceiter_ext4_fallocate_enter
+ffffffff813d4a30 t __traceiter_ext4_punch_hole
+ffffffff813d4aa0 t __traceiter_ext4_zero_range
+ffffffff813d4b10 t __traceiter_ext4_fallocate_exit
+ffffffff813d4b80 t __traceiter_ext4_unlink_enter
+ffffffff813d4bd0 t __traceiter_ext4_unlink_exit
+ffffffff813d4c20 t __traceiter_ext4_truncate_enter
+ffffffff813d4c70 t __traceiter_ext4_truncate_exit
+ffffffff813d4cc0 t __traceiter_ext4_ext_convert_to_initialized_enter
+ffffffff813d4d20 t __traceiter_ext4_ext_convert_to_initialized_fastpath
+ffffffff813d4d90 t __traceiter_ext4_ext_map_blocks_enter
+ffffffff813d4e00 t __traceiter_ext4_ind_map_blocks_enter
+ffffffff813d4e70 t __traceiter_ext4_ext_map_blocks_exit
+ffffffff813d4ee0 t __traceiter_ext4_ind_map_blocks_exit
+ffffffff813d4f50 t __traceiter_ext4_ext_load_extent
+ffffffff813d4fb0 t __traceiter_ext4_load_inode
+ffffffff813d5000 t __traceiter_ext4_journal_start
+ffffffff813d5070 t __traceiter_ext4_journal_start_reserved
+ffffffff813d50d0 t __traceiter_ext4_trim_extent
+ffffffff813d5140 t __traceiter_ext4_trim_all_free
+ffffffff813d51b0 t __traceiter_ext4_ext_handle_unwritten_extents
+ffffffff813d5220 t __traceiter_ext4_get_implied_cluster_alloc_exit
+ffffffff813d5280 t __traceiter_ext4_ext_show_extent
+ffffffff813d52f0 t __traceiter_ext4_remove_blocks
+ffffffff813d5360 t __traceiter_ext4_ext_rm_leaf
+ffffffff813d53d0 t __traceiter_ext4_ext_rm_idx
+ffffffff813d5420 t __traceiter_ext4_ext_remove_space
+ffffffff813d5490 t __traceiter_ext4_ext_remove_space_done
+ffffffff813d5520 t __traceiter_ext4_es_insert_extent
+ffffffff813d5570 t __traceiter_ext4_es_cache_extent
+ffffffff813d55c0 t __traceiter_ext4_es_remove_extent
+ffffffff813d5620 t __traceiter_ext4_es_find_extent_range_enter
+ffffffff813d5670 t __traceiter_ext4_es_find_extent_range_exit
+ffffffff813d56c0 t __traceiter_ext4_es_lookup_extent_enter
+ffffffff813d5710 t __traceiter_ext4_es_lookup_extent_exit
+ffffffff813d5770 t __traceiter_ext4_es_shrink_count
+ffffffff813d57d0 t __traceiter_ext4_es_shrink_scan_enter
+ffffffff813d5830 t __traceiter_ext4_es_shrink_scan_exit
+ffffffff813d5890 t __traceiter_ext4_collapse_range
+ffffffff813d58f0 t __traceiter_ext4_insert_range
+ffffffff813d5950 t __traceiter_ext4_es_shrink
+ffffffff813d59c0 t __traceiter_ext4_es_insert_delayed_block
+ffffffff813d5a30 t __traceiter_ext4_fsmap_low_key
+ffffffff813d5ab0 t __traceiter_ext4_fsmap_high_key
+ffffffff813d5b30 t __traceiter_ext4_fsmap_mapping
+ffffffff813d5bb0 t __traceiter_ext4_getfsmap_low_key
+ffffffff813d5c00 t __traceiter_ext4_getfsmap_high_key
+ffffffff813d5c50 t __traceiter_ext4_getfsmap_mapping
+ffffffff813d5ca0 t __traceiter_ext4_shutdown
+ffffffff813d5cf0 t __traceiter_ext4_error
+ffffffff813d5d50 t __traceiter_ext4_prefetch_bitmaps
+ffffffff813d5dc0 t __traceiter_ext4_lazy_itable_init
+ffffffff813d5e10 t __traceiter_ext4_fc_replay_scan
+ffffffff813d5e70 t __traceiter_ext4_fc_replay
+ffffffff813d5ee0 t __traceiter_ext4_fc_commit_start
+ffffffff813d5f30 t __traceiter_ext4_fc_commit_stop
+ffffffff813d5fa0 t __traceiter_ext4_fc_stats
+ffffffff813d5ff0 t __traceiter_ext4_fc_track_create
+ffffffff813d6060 t __traceiter_ext4_fc_track_link
+ffffffff813d60d0 t __traceiter_ext4_fc_track_unlink
+ffffffff813d6140 t __traceiter_ext4_fc_track_inode
+ffffffff813d61a0 t __traceiter_ext4_fc_track_range
+ffffffff813d6210 t __traceiter_ext4_fc_cleanup
+ffffffff813d6270 t __traceiter_ext4_update_sb
+ffffffff813d62d0 t trace_event_raw_event_ext4_other_inode_update_time
+ffffffff813d63b0 t perf_trace_ext4_other_inode_update_time
+ffffffff813d64d0 t trace_event_raw_event_ext4_free_inode
+ffffffff813d65b0 t perf_trace_ext4_free_inode
+ffffffff813d66e0 t trace_event_raw_event_ext4_request_inode
+ffffffff813d67b0 t perf_trace_ext4_request_inode
+ffffffff813d68c0 t trace_event_raw_event_ext4_allocate_inode
+ffffffff813d69a0 t perf_trace_ext4_allocate_inode
+ffffffff813d6ac0 t trace_event_raw_event_ext4_evict_inode
+ffffffff813d6b90 t perf_trace_ext4_evict_inode
+ffffffff813d6ca0 t trace_event_raw_event_ext4_drop_inode
+ffffffff813d6d70 t perf_trace_ext4_drop_inode
+ffffffff813d6e80 t trace_event_raw_event_ext4_nfs_commit_metadata
+ffffffff813d6f50 t perf_trace_ext4_nfs_commit_metadata
+ffffffff813d7050 t trace_event_raw_event_ext4_mark_inode_dirty
+ffffffff813d7120 t perf_trace_ext4_mark_inode_dirty
+ffffffff813d7230 t trace_event_raw_event_ext4_begin_ordered_truncate
+ffffffff813d7300 t perf_trace_ext4_begin_ordered_truncate
+ffffffff813d7410 t trace_event_raw_event_ext4__write_begin
+ffffffff813d74f0 t perf_trace_ext4__write_begin
+ffffffff813d7610 t trace_event_raw_event_ext4__write_end
+ffffffff813d7700 t perf_trace_ext4__write_end
+ffffffff813d7820 t trace_event_raw_event_ext4_writepages
+ffffffff813d7940 t perf_trace_ext4_writepages
+ffffffff813d7aa0 t trace_event_raw_event_ext4_da_write_pages
+ffffffff813d7b80 t perf_trace_ext4_da_write_pages
+ffffffff813d7cb0 t trace_event_raw_event_ext4_da_write_pages_extent
+ffffffff813d7d90 t perf_trace_ext4_da_write_pages_extent
+ffffffff813d7eb0 t trace_event_raw_event_ext4_writepages_result
+ffffffff813d7fb0 t perf_trace_ext4_writepages_result
+ffffffff813d80f0 t trace_event_raw_event_ext4__page_op
+ffffffff813d81d0 t perf_trace_ext4__page_op
+ffffffff813d82f0 t trace_event_raw_event_ext4_invalidate_folio_op
+ffffffff813d83f0 t perf_trace_ext4_invalidate_folio_op
+ffffffff813d8530 t trace_event_raw_event_ext4_discard_blocks
+ffffffff813d8600 t perf_trace_ext4_discard_blocks
+ffffffff813d8710 t trace_event_raw_event_ext4__mb_new_pa
+ffffffff813d87f0 t perf_trace_ext4__mb_new_pa
+ffffffff813d8910 t trace_event_raw_event_ext4_mb_release_inode_pa
+ffffffff813d89f0 t perf_trace_ext4_mb_release_inode_pa
+ffffffff813d8b10 t trace_event_raw_event_ext4_mb_release_group_pa
+ffffffff813d8be0 t perf_trace_ext4_mb_release_group_pa
+ffffffff813d8cf0 t trace_event_raw_event_ext4_discard_preallocations
+ffffffff813d8dd0 t perf_trace_ext4_discard_preallocations
+ffffffff813d8ef0 t trace_event_raw_event_ext4_mb_discard_preallocations
+ffffffff813d8fb0 t perf_trace_ext4_mb_discard_preallocations
+ffffffff813d90b0 t trace_event_raw_event_ext4_request_blocks
+ffffffff813d91c0 t perf_trace_ext4_request_blocks
+ffffffff813d9310 t trace_event_raw_event_ext4_allocate_blocks
+ffffffff813d9430 t perf_trace_ext4_allocate_blocks
+ffffffff813d9580 t trace_event_raw_event_ext4_free_blocks
+ffffffff813d9670 t perf_trace_ext4_free_blocks
+ffffffff813d97a0 t trace_event_raw_event_ext4_sync_file_enter
+ffffffff813d9890 t perf_trace_ext4_sync_file_enter
+ffffffff813d99c0 t trace_event_raw_event_ext4_sync_file_exit
+ffffffff813d9a90 t perf_trace_ext4_sync_file_exit
+ffffffff813d9ba0 t trace_event_raw_event_ext4_sync_fs
+ffffffff813d9c60 t perf_trace_ext4_sync_fs
+ffffffff813d9d60 t trace_event_raw_event_ext4_alloc_da_blocks
+ffffffff813d9e30 t perf_trace_ext4_alloc_da_blocks
+ffffffff813d9f40 t trace_event_raw_event_ext4_mballoc_alloc
+ffffffff813da090 t perf_trace_ext4_mballoc_alloc
+ffffffff813da230 t trace_event_raw_event_ext4_mballoc_prealloc
+ffffffff813da340 t perf_trace_ext4_mballoc_prealloc
+ffffffff813da480 t trace_event_raw_event_ext4__mballoc
+ffffffff813da570 t perf_trace_ext4__mballoc
+ffffffff813da6a0 t trace_event_raw_event_ext4_forget
+ffffffff813da780 t perf_trace_ext4_forget
+ffffffff813da8a0 t trace_event_raw_event_ext4_da_update_reserve_space
+ffffffff813da9a0 t perf_trace_ext4_da_update_reserve_space
+ffffffff813daae0 t trace_event_raw_event_ext4_da_reserve_space
+ffffffff813dabc0 t perf_trace_ext4_da_reserve_space
+ffffffff813dace0 t trace_event_raw_event_ext4_da_release_space
+ffffffff813dadd0 t perf_trace_ext4_da_release_space
+ffffffff813daf00 t trace_event_raw_event_ext4__bitmap_load
+ffffffff813dafc0 t perf_trace_ext4__bitmap_load
+ffffffff813db0c0 t trace_event_raw_event_ext4_read_block_bitmap_load
+ffffffff813db190 t perf_trace_ext4_read_block_bitmap_load
+ffffffff813db2a0 t trace_event_raw_event_ext4__fallocate_mode
+ffffffff813db390 t perf_trace_ext4__fallocate_mode
+ffffffff813db4b0 t trace_event_raw_event_ext4_fallocate_exit
+ffffffff813db5a0 t perf_trace_ext4_fallocate_exit
+ffffffff813db6c0 t trace_event_raw_event_ext4_unlink_enter
+ffffffff813db7a0 t perf_trace_ext4_unlink_enter
+ffffffff813db8c0 t trace_event_raw_event_ext4_unlink_exit
+ffffffff813db990 t perf_trace_ext4_unlink_exit
+ffffffff813dbaa0 t trace_event_raw_event_ext4__truncate
+ffffffff813dbb70 t perf_trace_ext4__truncate
+ffffffff813dbc80 t trace_event_raw_event_ext4_ext_convert_to_initialized_enter
+ffffffff813dbda0 t perf_trace_ext4_ext_convert_to_initialized_enter
+ffffffff813dbf00 t trace_event_raw_event_ext4_ext_convert_to_initialized_fastpath
+ffffffff813dc060 t perf_trace_ext4_ext_convert_to_initialized_fastpath
+ffffffff813dc1f0 t trace_event_raw_event_ext4__map_blocks_enter
+ffffffff813dc2e0 t perf_trace_ext4__map_blocks_enter
+ffffffff813dc400 t trace_event_raw_event_ext4__map_blocks_exit
+ffffffff813dc500 t perf_trace_ext4__map_blocks_exit
+ffffffff813dc640 t trace_event_raw_event_ext4_ext_load_extent
+ffffffff813dc720 t perf_trace_ext4_ext_load_extent
+ffffffff813dc840 t trace_event_raw_event_ext4_load_inode
+ffffffff813dc910 t perf_trace_ext4_load_inode
+ffffffff813dca10 t trace_event_raw_event_ext4_journal_start
+ffffffff813dcb00 t perf_trace_ext4_journal_start
+ffffffff813dcc20 t trace_event_raw_event_ext4_journal_start_reserved
+ffffffff813dccf0 t perf_trace_ext4_journal_start_reserved
+ffffffff813dce00 t trace_event_raw_event_ext4__trim
+ffffffff813dcef0 t perf_trace_ext4__trim
+ffffffff813dd020 t trace_event_raw_event_ext4_ext_handle_unwritten_extents
+ffffffff813dd130 t perf_trace_ext4_ext_handle_unwritten_extents
+ffffffff813dd280 t trace_event_raw_event_ext4_get_implied_cluster_alloc_exit
+ffffffff813dd370 t perf_trace_ext4_get_implied_cluster_alloc_exit
+ffffffff813dd4a0 t trace_event_raw_event_ext4_ext_show_extent
+ffffffff813dd590 t perf_trace_ext4_ext_show_extent
+ffffffff813dd6b0 t trace_event_raw_event_ext4_remove_blocks
+ffffffff813dd7f0 t perf_trace_ext4_remove_blocks
+ffffffff813dd960 t trace_event_raw_event_ext4_ext_rm_leaf
+ffffffff813dda90 t perf_trace_ext4_ext_rm_leaf
+ffffffff813ddc00 t trace_event_raw_event_ext4_ext_rm_idx
+ffffffff813ddcd0 t perf_trace_ext4_ext_rm_idx
+ffffffff813ddde0 t trace_event_raw_event_ext4_ext_remove_space
+ffffffff813dded0 t perf_trace_ext4_ext_remove_space
+ffffffff813ddff0 t trace_event_raw_event_ext4_ext_remove_space_done
+ffffffff813de100 t perf_trace_ext4_ext_remove_space_done
+ffffffff813de250 t trace_event_raw_event_ext4__es_extent
+ffffffff813de360 t perf_trace_ext4__es_extent
+ffffffff813de4b0 t trace_event_raw_event_ext4_es_remove_extent
+ffffffff813de590 t perf_trace_ext4_es_remove_extent
+ffffffff813de6b0 t trace_event_raw_event_ext4_es_find_extent_range_enter
+ffffffff813de780 t perf_trace_ext4_es_find_extent_range_enter
+ffffffff813de890 t trace_event_raw_event_ext4_es_find_extent_range_exit
+ffffffff813de9a0 t perf_trace_ext4_es_find_extent_range_exit
+ffffffff813deaf0 t trace_event_raw_event_ext4_es_lookup_extent_enter
+ffffffff813debc0 t perf_trace_ext4_es_lookup_extent_enter
+ffffffff813decd0 t trace_event_raw_event_ext4_es_lookup_extent_exit
+ffffffff813dedf0 t perf_trace_ext4_es_lookup_extent_exit
+ffffffff813def40 t trace_event_raw_event_ext4__es_shrink_enter
+ffffffff813df010 t perf_trace_ext4__es_shrink_enter
+ffffffff813df120 t trace_event_raw_event_ext4_es_shrink_scan_exit
+ffffffff813df1f0 t perf_trace_ext4_es_shrink_scan_exit
+ffffffff813df300 t trace_event_raw_event_ext4_collapse_range
+ffffffff813df3e0 t perf_trace_ext4_collapse_range
+ffffffff813df500 t trace_event_raw_event_ext4_insert_range
+ffffffff813df5e0 t perf_trace_ext4_insert_range
+ffffffff813df700 t trace_event_raw_event_ext4_es_shrink
+ffffffff813df800 t perf_trace_ext4_es_shrink
+ffffffff813df940 t trace_event_raw_event_ext4_es_insert_delayed_block
+ffffffff813dfa60 t perf_trace_ext4_es_insert_delayed_block
+ffffffff813dfbb0 t trace_event_raw_event_ext4_fsmap_class
+ffffffff813dfcd0 t perf_trace_ext4_fsmap_class
+ffffffff813dfe30 t trace_event_raw_event_ext4_getfsmap_class
+ffffffff813dff40 t perf_trace_ext4_getfsmap_class
+ffffffff813e0090 t trace_event_raw_event_ext4_shutdown
+ffffffff813e0150 t perf_trace_ext4_shutdown
+ffffffff813e0250 t trace_event_raw_event_ext4_error
+ffffffff813e0320 t perf_trace_ext4_error
+ffffffff813e0430 t trace_event_raw_event_ext4_prefetch_bitmaps
+ffffffff813e0510 t perf_trace_ext4_prefetch_bitmaps
+ffffffff813e0620 t trace_event_raw_event_ext4_lazy_itable_init
+ffffffff813e06e0 t perf_trace_ext4_lazy_itable_init
+ffffffff813e07e0 t trace_event_raw_event_ext4_fc_replay_scan
+ffffffff813e08b0 t perf_trace_ext4_fc_replay_scan
+ffffffff813e09c0 t trace_event_raw_event_ext4_fc_replay
+ffffffff813e0ab0 t perf_trace_ext4_fc_replay
+ffffffff813e0bd0 t trace_event_raw_event_ext4_fc_commit_start
+ffffffff813e0c90 t perf_trace_ext4_fc_commit_start
+ffffffff813e0d90 t trace_event_raw_event_ext4_fc_commit_stop
+ffffffff813e0eb0 t perf_trace_ext4_fc_commit_stop
+ffffffff813e1000 t trace_event_raw_event_ext4_fc_stats
+ffffffff813e11a0 t perf_trace_ext4_fc_stats
+ffffffff813e1380 t trace_event_raw_event_ext4_fc_track_dentry
+ffffffff813e1470 t perf_trace_ext4_fc_track_dentry
+ffffffff813e15a0 t trace_event_raw_event_ext4_fc_track_inode
+ffffffff813e1690 t perf_trace_ext4_fc_track_inode
+ffffffff813e17c0 t trace_event_raw_event_ext4_fc_track_range
+ffffffff813e18d0 t perf_trace_ext4_fc_track_range
+ffffffff813e1a10 t trace_event_raw_event_ext4_fc_cleanup
+ffffffff813e1af0 t perf_trace_ext4_fc_cleanup
+ffffffff813e1c10 t trace_event_raw_event_ext4_update_sb
+ffffffff813e1ce0 t perf_trace_ext4_update_sb
+ffffffff813e1df0 t ext4_read_bh_nowait
+ffffffff813e1e60 t ext4_read_bh
+ffffffff813e1ef0 t ext4_read_bh_lock
+ffffffff813e1f90 t ext4_sb_bread
+ffffffff813e1fb0 t __ext4_sb_bread_gfp.llvm.6703468930376404938
+ffffffff813e2040 t ext4_sb_bread_unmovable
+ffffffff813e2060 t ext4_sb_breadahead_unmovable
+ffffffff813e20f0 t ext4_superblock_csum
+ffffffff813e2160 t ext4_superblock_csum_set
+ffffffff813e2210 t ext4_block_bitmap
+ffffffff813e2240 t ext4_inode_bitmap
+ffffffff813e2270 t ext4_inode_table
+ffffffff813e22a0 t ext4_free_group_clusters
+ffffffff813e22d0 t ext4_free_inodes_count
+ffffffff813e2300 t ext4_used_dirs_count
+ffffffff813e2330 t ext4_itable_unused_count
+ffffffff813e2360 t ext4_block_bitmap_set
+ffffffff813e2390 t ext4_inode_bitmap_set
+ffffffff813e23c0 t ext4_inode_table_set
+ffffffff813e23f0 t ext4_free_group_clusters_set
+ffffffff813e2420 t ext4_free_inodes_set
+ffffffff813e2450 t ext4_used_dirs_set
+ffffffff813e2480 t ext4_itable_unused_set
+ffffffff813e24b0 t __ext4_error
+ffffffff813e26c0 t ext4_handle_error
+ffffffff813e28f0 t __ext4_error_inode
+ffffffff813e2b30 t __ext4_error_file
+ffffffff813e2e20 t ext4_decode_error
+ffffffff813e2ed0 t __ext4_std_error
+ffffffff813e30c0 t __ext4_msg
+ffffffff813e3220 t __ext4_warning
+ffffffff813e3320 t __ext4_warning_inode
+ffffffff813e3440 t __ext4_grp_locked_error
+ffffffff813e37b0 t ext4_mark_group_bitmap_corrupted
+ffffffff813e38c0 t ext4_update_dynamic_rev
+ffffffff813e3910 t ext4_clear_inode
+ffffffff813e3990 t ext4_seq_options_show
+ffffffff813e39f0 t _ext4_show_options
+ffffffff813e3fb0 t ext4_alloc_flex_bg_array
+ffffffff813e41e0 t ext4_group_desc_csum_verify
+ffffffff813e4250 t ext4_group_desc_csum
+ffffffff813e4490 t ext4_group_desc_csum_set
+ffffffff813e44f0 t ext4_feature_set_ok
+ffffffff813e45d0 t ext4_register_li_request
+ffffffff813e4910 t ext4_calculate_overhead
+ffffffff813e4dc0 t ext4_get_journal_inode
+ffffffff813e4e80 t ext4_force_commit
+ffffffff813e4eb0 t trace_raw_output_ext4_other_inode_update_time
+ffffffff813e4f30 t trace_raw_output_ext4_free_inode
+ffffffff813e4fb0 t trace_raw_output_ext4_request_inode
+ffffffff813e5020 t trace_raw_output_ext4_allocate_inode
+ffffffff813e5090 t trace_raw_output_ext4_evict_inode
+ffffffff813e5100 t trace_raw_output_ext4_drop_inode
+ffffffff813e5170 t trace_raw_output_ext4_nfs_commit_metadata
+ffffffff813e51d0 t trace_raw_output_ext4_mark_inode_dirty
+ffffffff813e5240 t trace_raw_output_ext4_begin_ordered_truncate
+ffffffff813e52b0 t trace_raw_output_ext4__write_begin
+ffffffff813e5320 t trace_raw_output_ext4__write_end
+ffffffff813e5390 t trace_raw_output_ext4_writepages
+ffffffff813e5420 t trace_raw_output_ext4_da_write_pages
+ffffffff813e5490 t trace_raw_output_ext4_da_write_pages_extent
+ffffffff813e5550 t trace_raw_output_ext4_writepages_result
+ffffffff813e55d0 t trace_raw_output_ext4__page_op
+ffffffff813e5640 t trace_raw_output_ext4_invalidate_folio_op
+ffffffff813e56b0 t trace_raw_output_ext4_discard_blocks
+ffffffff813e5720 t trace_raw_output_ext4__mb_new_pa
+ffffffff813e5790 t trace_raw_output_ext4_mb_release_inode_pa
+ffffffff813e5800 t trace_raw_output_ext4_mb_release_group_pa
+ffffffff813e5870 t trace_raw_output_ext4_discard_preallocations
+ffffffff813e58e0 t trace_raw_output_ext4_mb_discard_preallocations
+ffffffff813e5940 t trace_raw_output_ext4_request_blocks
+ffffffff813e5a10 t trace_raw_output_ext4_allocate_blocks
+ffffffff813e5af0 t trace_raw_output_ext4_free_blocks
+ffffffff813e5bc0 t trace_raw_output_ext4_sync_file_enter
+ffffffff813e5c30 t trace_raw_output_ext4_sync_file_exit
+ffffffff813e5ca0 t trace_raw_output_ext4_sync_fs
+ffffffff813e5d00 t trace_raw_output_ext4_alloc_da_blocks
+ffffffff813e5d70 t trace_raw_output_ext4_mballoc_alloc
+ffffffff813e5f00 t trace_raw_output_ext4_mballoc_prealloc
+ffffffff813e5fa0 t trace_raw_output_ext4__mballoc
+ffffffff813e6010 t trace_raw_output_ext4_forget
+ffffffff813e6080 t trace_raw_output_ext4_da_update_reserve_space
+ffffffff813e6100 t trace_raw_output_ext4_da_reserve_space
+ffffffff813e6170 t trace_raw_output_ext4_da_release_space
+ffffffff813e61f0 t trace_raw_output_ext4__bitmap_load
+ffffffff813e6250 t trace_raw_output_ext4_read_block_bitmap_load
+ffffffff813e62c0 t trace_raw_output_ext4__fallocate_mode
+ffffffff813e6380 t trace_raw_output_ext4_fallocate_exit
+ffffffff813e63f0 t trace_raw_output_ext4_unlink_enter
+ffffffff813e6460 t trace_raw_output_ext4_unlink_exit
+ffffffff813e64d0 t trace_raw_output_ext4__truncate
+ffffffff813e6540 t trace_raw_output_ext4_ext_convert_to_initialized_enter
+ffffffff813e65c0 t trace_raw_output_ext4_ext_convert_to_initialized_fastpath
+ffffffff813e6660 t trace_raw_output_ext4__map_blocks_enter
+ffffffff813e6720 t trace_raw_output_ext4__map_blocks_exit
+ffffffff813e6820 t trace_raw_output_ext4_ext_load_extent
+ffffffff813e6890 t trace_raw_output_ext4_load_inode
+ffffffff813e68f0 t trace_raw_output_ext4_journal_start
+ffffffff813e6960 t trace_raw_output_ext4_journal_start_reserved
+ffffffff813e69d0 t trace_raw_output_ext4__trim
+ffffffff813e6a40 t trace_raw_output_ext4_ext_handle_unwritten_extents
+ffffffff813e6b10 t trace_raw_output_ext4_get_implied_cluster_alloc_exit
+ffffffff813e6be0 t trace_raw_output_ext4_ext_show_extent
+ffffffff813e6c50 t trace_raw_output_ext4_remove_blocks
+ffffffff813e6cf0 t trace_raw_output_ext4_ext_rm_leaf
+ffffffff813e6d80 t trace_raw_output_ext4_ext_rm_idx
+ffffffff813e6df0 t trace_raw_output_ext4_ext_remove_space
+ffffffff813e6e60 t trace_raw_output_ext4_ext_remove_space_done
+ffffffff813e6ef0 t trace_raw_output_ext4__es_extent
+ffffffff813e6fc0 t trace_raw_output_ext4_es_remove_extent
+ffffffff813e7030 t trace_raw_output_ext4_es_find_extent_range_enter
+ffffffff813e70a0 t trace_raw_output_ext4_es_find_extent_range_exit
+ffffffff813e7170 t trace_raw_output_ext4_es_lookup_extent_enter
+ffffffff813e71e0 t trace_raw_output_ext4_es_lookup_extent_exit
+ffffffff813e72c0 t trace_raw_output_ext4__es_shrink_enter
+ffffffff813e7330 t trace_raw_output_ext4_es_shrink_scan_exit
+ffffffff813e73a0 t trace_raw_output_ext4_collapse_range
+ffffffff813e7410 t trace_raw_output_ext4_insert_range
+ffffffff813e7480 t trace_raw_output_ext4_es_shrink
+ffffffff813e74f0 t trace_raw_output_ext4_es_insert_delayed_block
+ffffffff813e75c0 t trace_raw_output_ext4_fsmap_class
+ffffffff813e7640 t trace_raw_output_ext4_getfsmap_class
+ffffffff813e76c0 t trace_raw_output_ext4_shutdown
+ffffffff813e7720 t trace_raw_output_ext4_error
+ffffffff813e7790 t trace_raw_output_ext4_prefetch_bitmaps
+ffffffff813e7800 t trace_raw_output_ext4_lazy_itable_init
+ffffffff813e7860 t trace_raw_output_ext4_fc_replay_scan
+ffffffff813e78d0 t trace_raw_output_ext4_fc_replay
+ffffffff813e7940 t trace_raw_output_ext4_fc_commit_start
+ffffffff813e79a0 t trace_raw_output_ext4_fc_commit_stop
+ffffffff813e7a20 t trace_raw_output_ext4_fc_stats
+ffffffff813e7c50 t trace_raw_output_ext4_fc_track_dentry
+ffffffff813e7cc0 t trace_raw_output_ext4_fc_track_inode
+ffffffff813e7d30 t trace_raw_output_ext4_fc_track_range
+ffffffff813e7db0 t trace_raw_output_ext4_fc_cleanup
+ffffffff813e7e20 t trace_raw_output_ext4_update_sb
+ffffffff813e7e90 t ext4_commit_super
+ffffffff813e7fe0 t ext4_update_super
+ffffffff813e8530 t ext4_lazyinit_thread
+ffffffff813e8bd0 t ext4_init_fs_context
+ffffffff813e8c10 t ext4_fc_free
+ffffffff813e8c50 t ext4_parse_param
+ffffffff813e9440 t ext4_get_tree
+ffffffff813e9460 t ext4_reconfigure
+ffffffff813e9b80 t ext4_fill_super
+ffffffff813ebb50 t ext4_check_opt_consistency
+ffffffff813ebcc0 t ext4_apply_options
+ffffffff813ebeb0 t ext4_journal_data_mode_check
+ffffffff813ebf90 t ext4_check_feature_compatibility
+ffffffff813ec0f0 t ext4_max_bitmap_size
+ffffffff813ec1c0 t ext4_handle_clustersize
+ffffffff813ec330 t ext4_geometry_check
+ffffffff813ec520 t ext4_group_desc_init
+ffffffff813ecd40 t print_daily_error_info
+ffffffff813eceb0 t flush_stashed_error_work
+ffffffff813ecfc0 t ext4_get_stripe_size
+ffffffff813ed020 t ext4_fast_commit_init
+ffffffff813ed170 t ext4_load_and_init_journal
+ffffffff813edb80 t ext4_setup_super
+ffffffff813eddd0 t ext4_set_resv_clusters
+ffffffff813ede40 t ext4_journal_commit_callback
+ffffffff813edf10 t ext4_fill_flex_info
+ffffffff813ee060 t ext4_mark_recovery_complete
+ffffffff813ee180 t ext4_unregister_li_request
+ffffffff813ee230 t ext4_group_desc_free
+ffffffff813ee2a0 t ext4_alloc_inode
+ffffffff813ee440 t ext4_destroy_inode
+ffffffff813ee500 t ext4_free_in_core_inode
+ffffffff813ee560 t ext4_drop_inode
+ffffffff813ee5d0 t ext4_put_super
+ffffffff813ee9e0 t ext4_sync_fs
+ffffffff813eeb80 t ext4_freeze
+ffffffff813eec20 t ext4_unfreeze
+ffffffff813eed30 t ext4_statfs
+ffffffff813eeea0 t ext4_show_options
+ffffffff813eeec0 t ext4_fh_to_dentry
+ffffffff813eeee0 t ext4_fh_to_parent
+ffffffff813eef00 t ext4_nfs_commit_metadata
+ffffffff813ef000 t ext4_nfs_get_inode
+ffffffff813ef050 t ext4_journal_submit_inode_data_buffers
+ffffffff813ef160 t ext4_journal_finish_inode_data_buffers
+ffffffff813ef190 t ext4_clear_journal_err
+ffffffff813ef350 t ext4_init_journal_params
+ffffffff813ef3f0 t ext4_journalled_writepage_callback
+ffffffff813ef460 t register_as_ext3
+ffffffff813ef490 t ext4_encrypted_get_link.llvm.438220226162325192
+ffffffff813ef520 t ext4_encrypted_symlink_getattr.llvm.438220226162325192
+ffffffff813ef540 t ext4_get_link.llvm.438220226162325192
+ffffffff813ef670 t ext4_free_link
+ffffffff813ef690 t ext4_notify_error_sysfs
+ffffffff813ef6b0 t ext4_register_sysfs
+ffffffff813ef860 t ext4_unregister_sysfs
+ffffffff813ef8a0 t ext4_exit_sysfs
+ffffffff813ef900 t ext4_sb_release
+ffffffff813ef920 t ext4_attr_show
+ffffffff813efcf0 t ext4_attr_store
+ffffffff813effd0 t ext4_feat_release
+ffffffff813effe0 t ext4_evict_ea_inode
+ffffffff813f00a0 t mb_cache_entry_put
+ffffffff813f00e0 t ext4_xattr_ibody_get
+ffffffff813f0330 t __xattr_check_inode
+ffffffff813f0460 t ext4_xattr_inode_get
+ffffffff813f0680 t ext4_xattr_get
+ffffffff813f0960 t ext4_listxattr
+ffffffff813f0db0 t ext4_get_inode_usage
+ffffffff813f0f90 t __ext4_xattr_check_block
+ffffffff813f11d0 t __ext4_xattr_set_credits
+ffffffff813f12b0 t ext4_xattr_ibody_find
+ffffffff813f1460 t ext4_xattr_ibody_set
+ffffffff813f1510 t ext4_xattr_set_entry
+ffffffff813f2710 t ext4_xattr_set_handle
+ffffffff813f30a0 t ext4_xattr_block_find
+ffffffff813f3230 t ext4_xattr_block_set
+ffffffff813f3f50 t ext4_xattr_value_same
+ffffffff813f3fa0 t ext4_xattr_update_super_block
+ffffffff813f4070 t ext4_xattr_set_credits
+ffffffff813f4240 t ext4_xattr_set
+ffffffff813f4380 t ext4_expand_extra_isize_ea
+ffffffff813f4c50 t ext4_xattr_delete_inode
+ffffffff813f5060 t ext4_xattr_inode_dec_ref_all
+ffffffff813f54a0 t ext4_xattr_inode_iget
+ffffffff813f5640 t ext4_xattr_release_block
+ffffffff813f5950 t ext4_xattr_inode_array_free
+ffffffff813f59a0 t ext4_xattr_create_cache
+ffffffff813f59c0 t ext4_xattr_destroy_cache
+ffffffff813f59e0 t ext4_xattr_inode_read
+ffffffff813f5c70 t ext4_xattr_block_cache_insert
+ffffffff813f5cb0 t ext4_xattr_block_csum
+ffffffff813f5e10 t ext4_xattr_inode_update_ref
+ffffffff813f6020 t ext4_xattr_block_csum_set
+ffffffff813f6090 t ext4_xattr_inode_inc_ref_all
+ffffffff813f6250 t ext4_xattr_hurd_list
+ffffffff813f6270 t ext4_xattr_hurd_get
+ffffffff813f62b0 t ext4_xattr_hurd_set
+ffffffff813f6300 t ext4_xattr_trusted_list
+ffffffff813f6320 t ext4_xattr_trusted_get
+ffffffff813f6350 t ext4_xattr_trusted_set
+ffffffff813f6380 t ext4_xattr_user_list
+ffffffff813f63a0 t ext4_xattr_user_get
+ffffffff813f63e0 t ext4_xattr_user_set
+ffffffff813f6430 t ext4_fc_init_inode
+ffffffff813f64b0 t ext4_fc_start_update
+ffffffff813f6630 t ext4_fc_stop_update
+ffffffff813f6680 t ext4_fc_del
+ffffffff813f68f0 t ext4_fc_mark_ineligible
+ffffffff813f69d0 t __ext4_fc_track_unlink
+ffffffff813f6ac0 t __track_dentry_update
+ffffffff813f6d10 t ext4_fc_track_unlink
+ffffffff813f6d50 t __ext4_fc_track_link
+ffffffff813f6e40 t ext4_fc_track_link
+ffffffff813f6e80 t __ext4_fc_track_create
+ffffffff813f6f70 t ext4_fc_track_create
+ffffffff813f6fb0 t ext4_fc_track_inode
+ffffffff813f7160 t ext4_fc_track_range
+ffffffff813f7370 t ext4_fc_commit
+ffffffff813f7de0 t ext4_fc_record_regions
+ffffffff813f7ec0 t ext4_fc_replay_check_excluded
+ffffffff813f7f40 t ext4_fc_replay_cleanup
+ffffffff813f7f80 t ext4_fc_init
+ffffffff813f7fb0 t ext4_fc_replay
+ffffffff813f9420 t ext4_fc_cleanup
+ffffffff813f9740 t ext4_fc_info_show
+ffffffff813f98f0 t ext4_fc_destroy_dentry_cache
+ffffffff813f9910 t ext4_fc_add_tlv
+ffffffff813f9a50 t ext4_fc_write_inode_data
+ffffffff813f9c40 t ext4_fc_write_inode
+ffffffff813f9e90 t ext4_fc_reserve_space
+ffffffff813fa0c0 t ext4_fc_submit_bh
+ffffffff813fa160 t ext4_end_buffer_io_sync
+ffffffff813fa190 t ext4_fc_add_dentry_tlv
+ffffffff813fa340 t ext4_fc_set_bitmaps_and_counters
+ffffffff813fa510 t ext4_fc_replay_link_internal
+ffffffff813fa630 t ext4_orphan_add
+ffffffff813fab50 t ext4_orphan_del
+ffffffff813faf00 t ext4_orphan_cleanup
+ffffffff813fb270 t ext4_process_orphan
+ffffffff813fb360 t ext4_release_orphan_info
+ffffffff813fb3e0 t ext4_orphan_file_block_trigger
+ffffffff813fb4e0 t ext4_init_orphan_info
+ffffffff813fb950 t ext4_orphan_file_empty
+ffffffff813fb9d0 t ext4_get_acl
+ffffffff813fbc30 t ext4_set_acl
+ffffffff813fbe00 t __ext4_set_acl
+ffffffff813fc050 t ext4_init_acl
+ffffffff813fc1b0 t ext4_init_security
+ffffffff813fc1e0 t ext4_initxattrs.llvm.17817395625734059512
+ffffffff813fc240 t ext4_xattr_security_get
+ffffffff813fc270 t ext4_xattr_security_set
+ffffffff813fc2a0 t jbd2_journal_destroy_transaction_cache
+ffffffff813fc2d0 t jbd2_journal_free_transaction
+ffffffff813fc2f0 t jbd2__journal_start
+ffffffff813fc4d0 t start_this_handle
+ffffffff813fcd70 t jbd2_journal_start
+ffffffff813fcda0 t jbd2_journal_free_reserved
+ffffffff813fce30 t jbd2_journal_start_reserved
+ffffffff813fcf60 t jbd2_journal_stop
+ffffffff813fd230 t jbd2_journal_extend
+ffffffff813fd390 t jbd2__journal_restart
+ffffffff813fd4d0 t stop_this_handle
+ffffffff813fd610 t jbd2_journal_restart
+ffffffff813fd630 t jbd2_journal_wait_updates
+ffffffff813fd720 t jbd2_journal_lock_updates
+ffffffff813fd830 t jbd2_journal_unlock_updates
+ffffffff813fd890 t jbd2_journal_get_write_access
+ffffffff813fd940 t do_get_write_access
+ffffffff813fdd30 t jbd2_journal_get_create_access
+ffffffff813fde60 t __jbd2_journal_file_buffer
+ffffffff813fdfd0 t jbd2_journal_get_undo_access
+ffffffff813fe160 t jbd2_journal_set_triggers
+ffffffff813fe190 t jbd2_buffer_frozen_trigger
+ffffffff813fe1c0 t jbd2_buffer_abort_trigger
+ffffffff813fe1f0 t jbd2_journal_dirty_metadata
+ffffffff813fe4b0 t jbd2_journal_forget
+ffffffff813fe720 t __jbd2_journal_temp_unlink_buffer
+ffffffff813fe820 t jbd2_journal_unfile_buffer
+ffffffff813fe8b0 t jbd2_journal_try_to_free_buffers
+ffffffff813fe9a0 t jbd2_journal_invalidate_folio
+ffffffff813fecf0 t jbd2_journal_file_buffer
+ffffffff813fed60 t __jbd2_journal_refile_buffer
+ffffffff813fee30 t jbd2_journal_refile_buffer
+ffffffff813feea0 t jbd2_journal_inode_ranged_write
+ffffffff813feed0 t jbd2_journal_file_inode.llvm.5297122349352392742
+ffffffff813ff000 t jbd2_journal_inode_ranged_wait
+ffffffff813ff030 t jbd2_journal_begin_ordered_truncate
+ffffffff813ff0e0 t wait_transaction_locked
+ffffffff813ff1b0 t __dispose_buffer
+ffffffff813ff230 t jbd2_journal_submit_inode_data_buffers
+ffffffff813ff320 t jbd2_submit_inode_data
+ffffffff813ff470 t jbd2_wait_inode_data
+ffffffff813ff4b0 t jbd2_journal_finish_inode_data_buffers
+ffffffff813ff4e0 t jbd2_journal_commit_transaction
+ffffffff81400f20 t journal_end_buffer_io_sync
+ffffffff81400f70 t journal_submit_commit_record
+ffffffff81401160 t jbd2_journal_recover
+ffffffff81401260 t do_one_pass
+ffffffff81402010 t jbd2_journal_skip_recovery
+ffffffff814020b0 t jread
+ffffffff81402480 t jbd2_descriptor_block_csum_verify
+ffffffff81402560 t __jbd2_log_wait_for_space
+ffffffff814027c0 t jbd2_log_do_checkpoint
+ffffffff81402da0 t jbd2_cleanup_journal_tail
+ffffffff81402e40 t __jbd2_journal_remove_checkpoint
+ffffffff81402fd0 t jbd2_journal_shrink_checkpoint_list
+ffffffff81403370 t __jbd2_journal_clean_checkpoint_list
+ffffffff81403510 t jbd2_journal_destroy_checkpoint
+ffffffff81403570 t __jbd2_journal_drop_transaction
+ffffffff814036a0 t __jbd2_journal_insert_checkpoint
+ffffffff81403730 t jbd2_journal_destroy_revoke_record_cache
+ffffffff81403760 t jbd2_journal_destroy_revoke_table_cache
+ffffffff81403790 t jbd2_journal_init_revoke
+ffffffff814038d0 t jbd2_journal_init_revoke_table
+ffffffff814039f0 t jbd2_journal_destroy_revoke
+ffffffff81403a90 t jbd2_journal_revoke
+ffffffff81403c70 t jbd2_journal_cancel_revoke
+ffffffff81403db0 t jbd2_clear_buffer_revoked_flags
+ffffffff81403e60 t jbd2_journal_switch_revoke_table
+ffffffff81403ec0 t jbd2_journal_write_revoke_records
+ffffffff814041c0 t jbd2_journal_set_revoke
+ffffffff81404310 t jbd2_journal_test_revoke
+ffffffff814043b0 t jbd2_journal_clear_revoke
+ffffffff81404460 t __traceiter_jbd2_checkpoint
+ffffffff814044b0 t __traceiter_jbd2_start_commit
+ffffffff81404500 t __traceiter_jbd2_commit_locking
+ffffffff81404550 t __traceiter_jbd2_commit_flushing
+ffffffff814045a0 t __traceiter_jbd2_commit_logging
+ffffffff814045f0 t __traceiter_jbd2_drop_transaction
+ffffffff81404640 t __traceiter_jbd2_end_commit
+ffffffff81404690 t __traceiter_jbd2_submit_inode_data
+ffffffff814046e0 t __traceiter_jbd2_handle_start
+ffffffff81404750 t __traceiter_jbd2_handle_restart
+ffffffff814047c0 t __traceiter_jbd2_handle_extend
+ffffffff81404840 t __traceiter_jbd2_handle_stats
+ffffffff814048c0 t __traceiter_jbd2_run_stats
+ffffffff81404920 t __traceiter_jbd2_checkpoint_stats
+ffffffff81404980 t __traceiter_jbd2_update_log_tail
+ffffffff814049f0 t __traceiter_jbd2_write_superblock
+ffffffff81404a40 t __traceiter_jbd2_lock_buffer_stall
+ffffffff81404a90 t __traceiter_jbd2_shrink_count
+ffffffff81404af0 t __traceiter_jbd2_shrink_scan_enter
+ffffffff81404b50 t __traceiter_jbd2_shrink_scan_exit
+ffffffff81404bc0 t __traceiter_jbd2_shrink_checkpoint_list
+ffffffff81404c40 t trace_event_raw_event_jbd2_checkpoint
+ffffffff81404d10 t perf_trace_jbd2_checkpoint
+ffffffff81404e20 t trace_event_raw_event_jbd2_commit
+ffffffff81404f00 t perf_trace_jbd2_commit
+ffffffff81405020 t trace_event_raw_event_jbd2_end_commit
+ffffffff81405110 t perf_trace_jbd2_end_commit
+ffffffff81405230 t trace_event_raw_event_jbd2_submit_inode_data
+ffffffff81405300 t perf_trace_jbd2_submit_inode_data
+ffffffff81405400 t trace_event_raw_event_jbd2_handle_start_class
+ffffffff814054e0 t perf_trace_jbd2_handle_start_class
+ffffffff81405600 t trace_event_raw_event_jbd2_handle_extend
+ffffffff814056f0 t perf_trace_jbd2_handle_extend
+ffffffff81405810 t trace_event_raw_event_jbd2_handle_stats
+ffffffff81405900 t perf_trace_jbd2_handle_stats
+ffffffff81405a30 t trace_event_raw_event_jbd2_run_stats
+ffffffff81405b50 t perf_trace_jbd2_run_stats
+ffffffff81405ca0 t trace_event_raw_event_jbd2_checkpoint_stats
+ffffffff81405d80 t perf_trace_jbd2_checkpoint_stats
+ffffffff81405ea0 t trace_event_raw_event_jbd2_update_log_tail
+ffffffff81405f90 t perf_trace_jbd2_update_log_tail
+ffffffff814060c0 t trace_event_raw_event_jbd2_write_superblock
+ffffffff81406190 t perf_trace_jbd2_write_superblock
+ffffffff814062a0 t trace_event_raw_event_jbd2_lock_buffer_stall
+ffffffff81406360 t perf_trace_jbd2_lock_buffer_stall
+ffffffff81406460 t trace_event_raw_event_jbd2_journal_shrink
+ffffffff81406540 t perf_trace_jbd2_journal_shrink
+ffffffff81406650 t trace_event_raw_event_jbd2_shrink_scan_exit
+ffffffff81406730 t perf_trace_jbd2_shrink_scan_exit
+ffffffff81406850 t trace_event_raw_event_jbd2_shrink_checkpoint_list
+ffffffff81406950 t perf_trace_jbd2_shrink_checkpoint_list
+ffffffff81406a90 t jbd2_journal_flush
+ffffffff81406ed0 t jbd2_journal_init_dev
+ffffffff81406f70 t jbd2_journal_init_inode
+ffffffff814070b0 t jbd2_journal_check_used_features
+ffffffff81407140 t jbd2_journal_check_available_features
+ffffffff81407190 t jbd2_journal_set_features
+ffffffff81407510 t jbd2_journal_load
+ffffffff814078f0 t jbd2_journal_destroy
+ffffffff81407c30 t jbd2_journal_abort
+ffffffff81407d60 t jbd2_journal_errno
+ffffffff81407da0 t jbd2_journal_ack_err
+ffffffff81407de0 t jbd2_journal_clear_err
+ffffffff81407e30 t jbd2_log_wait_commit
+ffffffff81407f90 t jbd2_journal_start_commit
+ffffffff81408040 t jbd2_journal_force_commit_nested
+ffffffff81408060 t jbd2_journal_wipe
+ffffffff81408190 t jbd2_journal_blocks_per_page
+ffffffff814081b0 t jbd2_journal_force_commit
+ffffffff814081e0 t jbd2_journal_init_jbd_inode
+ffffffff81408230 t jbd2_journal_release_jbd_inode
+ffffffff81408380 t jbd2_journal_write_metadata_buffer
+ffffffff81408820 t jbd2_alloc
+ffffffff814088b0 t jbd2_free
+ffffffff81408930 t jbd2_log_start_commit
+ffffffff81408a10 t __jbd2_journal_force_commit.llvm.1054020295119449003
+ffffffff81408ac0 t jbd2_trans_will_send_data_barrier
+ffffffff81408b50 t jbd2_fc_begin_commit
+ffffffff81408c70 t jbd2_fc_end_commit
+ffffffff81408ce0 t jbd2_fc_end_commit_fallback
+ffffffff81408d90 t jbd2_transaction_committed
+ffffffff81408e00 t jbd2_complete_transaction
+ffffffff81408e90 t jbd2_journal_next_log_block
+ffffffff81408fa0 t jbd2_journal_bmap
+ffffffff81409050 t jbd2_fc_get_buf
+ffffffff81409170 t jbd2_fc_wait_bufs
+ffffffff81409220 t jbd2_fc_release_bufs
+ffffffff81409270 t jbd2_journal_get_descriptor_buffer
+ffffffff81409360 t jbd2_descriptor_block_csum_set
+ffffffff81409430 t jbd2_journal_get_log_tail
+ffffffff814094f0 t __jbd2_update_log_tail
+ffffffff814095e0 t jbd2_journal_update_sb_log_tail
+ffffffff814096c0 t jbd2_update_log_tail
+ffffffff81409720 t journal_init_common
+ffffffff81409a50 t jbd2_write_superblock
+ffffffff81409c90 t jbd2_journal_update_sb_errno
+ffffffff81409cf0 t jbd2_mark_journal_empty
+ffffffff81409dc0 t journal_get_superblock
+ffffffff8140a150 t jbd2_journal_clear_features
+ffffffff8140a1d0 t journal_tag_bytes
+ffffffff8140a220 t jbd2_journal_add_journal_head
+ffffffff8140a3e0 t jbd2_journal_grab_journal_head
+ffffffff8140a480 t jbd2_journal_put_journal_head
+ffffffff8140a720 t jbd2_journal_destroy_caches
+ffffffff8140a870 t trace_raw_output_jbd2_checkpoint
+ffffffff8140a8d0 t trace_raw_output_jbd2_commit
+ffffffff8140a940 t trace_raw_output_jbd2_end_commit
+ffffffff8140a9b0 t trace_raw_output_jbd2_submit_inode_data
+ffffffff8140aa10 t trace_raw_output_jbd2_handle_start_class
+ffffffff8140aa80 t trace_raw_output_jbd2_handle_extend
+ffffffff8140ab00 t trace_raw_output_jbd2_handle_stats
+ffffffff8140ab90 t trace_raw_output_jbd2_run_stats
+ffffffff8140ac60 t trace_raw_output_jbd2_checkpoint_stats
+ffffffff8140ace0 t trace_raw_output_jbd2_update_log_tail
+ffffffff8140ad50 t trace_raw_output_jbd2_write_superblock
+ffffffff8140adb0 t trace_raw_output_jbd2_lock_buffer_stall
+ffffffff8140ae10 t trace_raw_output_jbd2_journal_shrink
+ffffffff8140ae80 t trace_raw_output_jbd2_shrink_scan_exit
+ffffffff8140aef0 t trace_raw_output_jbd2_shrink_checkpoint_list
+ffffffff8140af70 t jbd2_journal_shrink_scan
+ffffffff8140b0a0 t jbd2_journal_shrink_count
+ffffffff8140b120 t jbd2_seq_info_open
+ffffffff8140b200 t jbd2_seq_info_release
+ffffffff8140b250 t jbd2_seq_info_start
+ffffffff8140b270 t jbd2_seq_info_stop
+ffffffff8140b280 t jbd2_seq_info_next
+ffffffff8140b290 t jbd2_seq_info_show
+ffffffff8140b4f0 t kjournald2
+ffffffff8140b740 t commit_timeout
+ffffffff8140b760 t ramfs_get_inode
+ffffffff8140b880 t ramfs_init_fs_context
+ffffffff8140b8d0 t ramfs_create
+ffffffff8140b940 t ramfs_symlink
+ffffffff8140ba70 t ramfs_mkdir
+ffffffff8140baf0 t ramfs_mknod
+ffffffff8140bb60 t ramfs_tmpfile
+ffffffff8140bbb0 t ramfs_free_fc
+ffffffff8140bbd0 t ramfs_parse_param
+ffffffff8140bc90 t ramfs_get_tree
+ffffffff8140bcb0 t ramfs_fill_super
+ffffffff8140bd30 t ramfs_show_options
+ffffffff8140bd60 t ramfs_kill_sb
+ffffffff8140bd90 t ramfs_mmu_get_unmapped_area.llvm.16933099080173814510
+ffffffff8140bdc0 t exportfs_encode_inode_fh
+ffffffff8140be50 t exportfs_encode_fh
+ffffffff8140bf40 t exportfs_decode_fh_raw
+ffffffff8140c1e0 t reconnect_path
+ffffffff8140c460 t find_acceptable_alias
+ffffffff8140c560 t exportfs_get_name
+ffffffff8140c750 t exportfs_decode_fh
+ffffffff8140c790 t filldir_one
+ffffffff8140c7f0 t utf8_to_utf32
+ffffffff8140c9c0 t utf32_to_utf8
+ffffffff8140cb10 t utf8s_to_utf16s
+ffffffff8140ccb0 t utf16s_to_utf8s
+ffffffff8140cf20 t __register_nls
+ffffffff8140cfa0 t unregister_nls
+ffffffff8140d020 t load_nls
+ffffffff8140d110 t unload_nls
+ffffffff8140d120 t load_nls_default
+ffffffff8140d150 t uni2char
+ffffffff8140d1a0 t uni2char
+ffffffff8140d1f0 t uni2char
+ffffffff8140d240 t uni2char
+ffffffff8140d290 t uni2char
+ffffffff8140d2e0 t uni2char
+ffffffff8140d330 t uni2char
+ffffffff8140d380 t uni2char
+ffffffff8140d3d0 t uni2char
+ffffffff8140d420 t uni2char
+ffffffff8140d470 t uni2char
+ffffffff8140d4c0 t uni2char
+ffffffff8140d510 t uni2char
+ffffffff8140d560 t uni2char
+ffffffff8140d5b0 t uni2char
+ffffffff8140d600 t uni2char
+ffffffff8140d650 t uni2char
+ffffffff8140d6a0 t uni2char
+ffffffff8140d790 t uni2char
+ffffffff8140da50 t uni2char
+ffffffff8140db20 t uni2char
+ffffffff8140dba0 t uni2char
+ffffffff8140dc20 t uni2char
+ffffffff8140dc70 t uni2char
+ffffffff8140dcc0 t uni2char
+ffffffff8140dd10 t uni2char
+ffffffff8140dd60 t uni2char
+ffffffff8140ddb0 t uni2char
+ffffffff8140de00 t uni2char
+ffffffff8140de50 t uni2char
+ffffffff8140dea0 t uni2char
+ffffffff8140def0 t uni2char
+ffffffff8140df40 t uni2char
+ffffffff8140df90 t uni2char
+ffffffff8140dfe0 t uni2char
+ffffffff8140e030 t uni2char
+ffffffff8140e080 t uni2char
+ffffffff8140e0d0 t uni2char
+ffffffff8140e120 t uni2char
+ffffffff8140e170 t uni2char
+ffffffff8140e200 t uni2char
+ffffffff8140e230 t uni2char
+ffffffff8140e280 t uni2char
+ffffffff8140e2d0 t uni2char
+ffffffff8140e320 t uni2char
+ffffffff8140e370 t uni2char
+ffffffff8140e3c0 t uni2char
+ffffffff8140e410 t uni2char
+ffffffff8140e460 t uni2char
+ffffffff8140e4b0 t uni2char
+ffffffff8140e500 t uni2char
+ffffffff8140e550 t uni2char
+ffffffff8140e5a0 t char2uni
+ffffffff8140e5d0 t char2uni
+ffffffff8140e600 t char2uni
+ffffffff8140e630 t char2uni
+ffffffff8140e660 t char2uni
+ffffffff8140e690 t char2uni
+ffffffff8140e6c0 t char2uni
+ffffffff8140e6f0 t char2uni
+ffffffff8140e720 t char2uni
+ffffffff8140e750 t char2uni
+ffffffff8140e780 t char2uni
+ffffffff8140e7b0 t char2uni
+ffffffff8140e7e0 t char2uni
+ffffffff8140e810 t char2uni
+ffffffff8140e840 t char2uni
+ffffffff8140e870 t char2uni
+ffffffff8140e8a0 t char2uni
+ffffffff8140e8d0 t char2uni
+ffffffff8140e960 t char2uni
+ffffffff8140ec50 t char2uni
+ffffffff8140ecd0 t char2uni
+ffffffff8140ed40 t char2uni
+ffffffff8140edb0 t char2uni
+ffffffff8140ede0 t char2uni
+ffffffff8140ee20 t char2uni
+ffffffff8140ee50 t char2uni
+ffffffff8140ee80 t char2uni
+ffffffff8140eeb0 t char2uni
+ffffffff8140eee0 t char2uni
+ffffffff8140ef10 t char2uni
+ffffffff8140ef40 t char2uni
+ffffffff8140ef70 t char2uni
+ffffffff8140efa0 t char2uni
+ffffffff8140efd0 t char2uni
+ffffffff8140f000 t char2uni
+ffffffff8140f030 t char2uni
+ffffffff8140f060 t char2uni
+ffffffff8140f090 t char2uni
+ffffffff8140f0c0 t char2uni
+ffffffff8140f0f0 t char2uni
+ffffffff8140f140 t char2uni
+ffffffff8140f1c0 t char2uni
+ffffffff8140f1f0 t char2uni
+ffffffff8140f220 t char2uni
+ffffffff8140f250 t char2uni
+ffffffff8140f280 t char2uni
+ffffffff8140f2b0 t char2uni
+ffffffff8140f2e0 t char2uni
+ffffffff8140f310 t char2uni
+ffffffff8140f340 t char2uni
+ffffffff8140f370 t char2uni
+ffffffff8140f3a0 t char2uni
+ffffffff8140f3d0 t sjisibm2euc
+ffffffff8140f470 t utf8version_is_supported
+ffffffff8140f4b0 t utf8nlen
+ffffffff8140f5f0 t utf8nlookup
+ffffffff8140f800 t utf8ncursor
+ffffffff8140f860 t utf8byte
+ffffffff8140fb70 t utf8_validate
+ffffffff8140fb90 t utf8_strncmp
+ffffffff8140fd10 t utf8_strncasecmp
+ffffffff8140fe90 t utf8_strncasecmp_folded
+ffffffff8140ff90 t utf8_casefold
+ffffffff81410080 t utf8_casefold_hash
+ffffffff81410190 t utf8_normalize
+ffffffff81410280 t utf8_load
+ffffffff81410390 t utf8_unload
+ffffffff814103b0 t fuse_set_initialized
+ffffffff814103d0 t fuse_len_args
+ffffffff81410460 t fuse_get_unique
+ffffffff81410480 t fuse_dev_wake_and_unlock.llvm.8514887056761313685
+ffffffff814104e0 t fuse_queue_forget
+ffffffff81410560 t fuse_request_end
+ffffffff81410700 t flush_bg_queue
+ffffffff814108d0 t fuse_put_request
+ffffffff814109b0 t fuse_simple_request
+ffffffff81410ff0 t fuse_get_req
+ffffffff81411290 t fuse_simple_background
+ffffffff81411480 t fuse_dequeue_forget
+ffffffff814114f0 t fuse_abort_conn
+ffffffff814118d0 t __fuse_get_request
+ffffffff81411910 t list_move
+ffffffff81411970 t list_move
+ffffffff814119d0 t list_move
+ffffffff81411a30 t fuse_wait_aborted
+ffffffff81411af0 t fuse_dev_release
+ffffffff81411c40 t fuse_dev_read.llvm.8514887056761313685
+ffffffff81411d00 t fuse_dev_write.llvm.8514887056761313685
+ffffffff81411dc0 t fuse_dev_poll.llvm.8514887056761313685
+ffffffff81411e70 t fuse_dev_ioctl.llvm.8514887056761313685
+ffffffff81411fa0 t fuse_dev_open.llvm.8514887056761313685
+ffffffff81411fc0 t fuse_dev_fasync.llvm.8514887056761313685
+ffffffff81411ff0 t fuse_dev_splice_write.llvm.8514887056761313685
+ffffffff81412540 t fuse_dev_splice_read.llvm.8514887056761313685
+ffffffff814127b0 t fuse_dev_cleanup
+ffffffff814127e0 t queue_interrupt
+ffffffff814128e0 t fuse_dev_do_read
+ffffffff81412dc0 t fuse_read_interrupt
+ffffffff81413050 t fuse_read_forget
+ffffffff81413690 t fuse_copy_one
+ffffffff81413730 t fuse_copy_args
+ffffffff814138e0 t fuse_copy_finish
+ffffffff81413960 t list_move_tail
+ffffffff814139c0 t list_move_tail
+ffffffff81413a20 t list_move_tail
+ffffffff81413a80 t fuse_copy_fill
+ffffffff81413cf0 t fuse_copy_page
+ffffffff81414440 t fuse_dev_do_write
+ffffffff81415e90 t copy_out_args
+ffffffff81415f90 t fuse_retrieve_end
+ffffffff81415fc0 t fuse_init_dentry_root
+ffffffff81415fd0 t fuse_change_entry_timeout
+ffffffff814160d0 t entry_attr_timeout
+ffffffff81416150 t fuse_invalidate_attr_mask
+ffffffff81416180 t fuse_invalidate_attr
+ffffffff814161c0 t fuse_invalidate_atime
+ffffffff81416200 t fuse_invalidate_entry_cache
+ffffffff81416290 t fuse_dentry_revalidate.llvm.10129488179531688627
+ffffffff814166e0 t fuse_dentry_delete.llvm.10129488179531688627
+ffffffff81416700 t fuse_dentry_automount.llvm.10129488179531688627
+ffffffff81416770 t fuse_dentry_canonical_path.llvm.10129488179531688627
+ffffffff81416880 t fuse_valid_type
+ffffffff814168c0 t fuse_invalid_attr
+ffffffff81416900 t fuse_lookup_name
+ffffffff81416c60 t fuse_flush_time_update
+ffffffff81416cd0 t fuse_update_ctime
+ffffffff81416d10 t fuse_update_ctime_in_cache
+ffffffff81416da0 t fuse_fillattr
+ffffffff81416e60 t fuse_update_attributes
+ffffffff81416ec0 t fuse_reverse_inval_entry
+ffffffff81417120 t fuse_dir_changed
+ffffffff81417160 t fuse_allow_current_process
+ffffffff814171f0 t fuse_set_nowrite
+ffffffff81417300 t fuse_release_nowrite
+ffffffff81417350 t __fuse_release_nowrite
+ffffffff81417380 t fuse_flush_times
+ffffffff814175c0 t fuse_do_setattr
+ffffffff81417dd0 t fuse_init_common
+ffffffff81417df0 t fuse_init_dir
+ffffffff81417e40 t fuse_init_symlink
+ffffffff81417e70 t fuse_do_getattr
+ffffffff81418200 t fuse_permission.llvm.10129488179531688627
+ffffffff81418570 t fuse_setattr.llvm.10129488179531688627
+ffffffff81418770 t fuse_getattr.llvm.10129488179531688627
+ffffffff814188f0 t fuse_perm_getattr
+ffffffff81418920 t fuse_lookup
+ffffffff81418b70 t fuse_create
+ffffffff81418c80 t fuse_link
+ffffffff81418db0 t fuse_unlink
+ffffffff81418f70 t fuse_symlink
+ffffffff81419050 t fuse_mkdir
+ffffffff81419150 t fuse_rmdir
+ffffffff81419310 t fuse_mknod
+ffffffff81419440 t fuse_rename2
+ffffffff81419560 t fuse_atomic_open
+ffffffff81419780 t fuse_tmpfile
+ffffffff81419840 t create_new_entry
+ffffffff81419bd0 t get_security_context
+ffffffff81419d70 t fuse_entry_unlinked
+ffffffff81419eb0 t fuse_rename_common
+ffffffff8141a260 t fuse_create_open
+ffffffff8141a900 t fuse_dir_ioctl
+ffffffff8141a940 t fuse_dir_compat_ioctl
+ffffffff8141a980 t fuse_dir_open
+ffffffff8141a9a0 t fuse_dir_release
+ffffffff8141a9c0 t fuse_dir_fsync
+ffffffff8141aa70 t fuse_get_link
+ffffffff8141ab40 t fuse_readlink_page
+ffffffff8141ac80 t fuse_symlink_read_folio
+ffffffff8141acc0 t fuse_file_alloc
+ffffffff8141ada0 t fuse_file_free
+ffffffff8141add0 t fuse_file_open
+ffffffff8141b0b0 t fuse_do_open
+ffffffff8141b0f0 t fuse_finish_open
+ffffffff8141b220 t fuse_open_common
+ffffffff8141b3c0 t fuse_file_release
+ffffffff8141b510 t fuse_prepare_release
+ffffffff8141b620 t fuse_lock_owner_id
+ffffffff8141b6c0 t fuse_file_put
+ffffffff8141b790 t fuse_release_common
+ffffffff8141b7c0 t fuse_sync_release
+ffffffff8141b800 t fuse_fsync_common
+ffffffff8141b8f0 t fuse_read_args_fill
+ffffffff8141b940 t fuse_write_update_attr
+ffffffff8141b9d0 t fuse_direct_io
+ffffffff8141c360 t fuse_flush_writepages
+ffffffff8141c410 t fuse_send_writepage
+ffffffff8141c540 t fuse_write_inode
+ffffffff8141c600 t fuse_file_poll
+ffffffff8141c840 t fuse_notify_poll_wakeup
+ffffffff8141c8b0 t fuse_init_file_inode
+ffffffff8141c930 t fuse_release_end
+ffffffff8141c960 t fuse_async_req_send
+ffffffff8141ca20 t fuse_aio_complete_req
+ffffffff8141cb20 t fuse_aio_complete
+ffffffff8141cc70 t fuse_writepage_finish
+ffffffff8141cd40 t fuse_writepage_free
+ffffffff8141cdf0 t fuse_file_llseek
+ffffffff8141d0a0 t fuse_file_read_iter
+ffffffff8141d240 t fuse_file_write_iter
+ffffffff8141d680 t fuse_file_mmap
+ffffffff8141d790 t fuse_open
+ffffffff8141d7b0 t fuse_flush
+ffffffff8141da50 t fuse_release
+ffffffff8141daa0 t fuse_fsync
+ffffffff8141dbb0 t fuse_file_lock
+ffffffff8141dea0 t fuse_file_flock
+ffffffff8141df00 t fuse_file_fallocate
+ffffffff8141e200 t fuse_copy_file_range
+ffffffff8141e690 t fuse_direct_IO
+ffffffff8141eb80 t fuse_perform_write
+ffffffff8141f310 t fuse_wait_on_page_writeback
+ffffffff8141f4e0 t fuse_vma_close
+ffffffff8141f560 t fuse_page_mkwrite
+ffffffff8141f5f0 t fuse_setlk
+ffffffff8141f850 t fuse_writepage
+ffffffff8141f980 t fuse_read_folio
+ffffffff8141f9d0 t fuse_writepages
+ffffffff8141faf0 t fuse_readahead
+ffffffff8141ffc0 t fuse_write_begin
+ffffffff81420180 t fuse_write_end
+ffffffff814202b0 t fuse_bmap
+ffffffff81420400 t fuse_launder_folio
+ffffffff81420450 t fuse_writepage_locked
+ffffffff81420890 t fuse_writepage_end
+ffffffff81420a30 t tree_insert
+ffffffff81420b20 t fuse_do_readpage
+ffffffff81420d40 t fuse_writepages_fill
+ffffffff81421530 t fuse_writepages_send
+ffffffff814216b0 t fuse_readpages_end
+ffffffff81421880 t fuse_alloc_forget
+ffffffff814218b0 t fuse_change_attributes_common
+ffffffff81421a40 t fuse_get_cache_mask
+ffffffff81421a80 t fuse_change_attributes
+ffffffff81421c40 t fuse_iget_backing
+ffffffff81421e10 t fuse_inode_backing_eq
+ffffffff81421e30 t fuse_inode_backing_set
+ffffffff81421e50 t fuse_init_inode
+ffffffff81421f00 t fuse_iget
+ffffffff81422160 t fuse_inode_eq
+ffffffff81422180 t fuse_inode_set
+ffffffff814221a0 t fuse_ilookup
+ffffffff81422270 t fuse_reverse_inval_inode
+ffffffff814223d0 t fuse_lock_inode
+ffffffff81422430 t fuse_unlock_inode
+ffffffff81422450 t fuse_conn_init
+ffffffff81422680 t fuse_conn_put
+ffffffff81422700 t fuse_conn_get
+ffffffff81422740 t fuse_send_init
+ffffffff814228b0 t process_init_reply
+ffffffff81422f60 t fuse_free_conn
+ffffffff81422fd0 t free_fuse_passthrough
+ffffffff81423000 t fuse_dev_alloc
+ffffffff814230b0 t fuse_dev_install
+ffffffff81423150 t fuse_dev_alloc_install
+ffffffff814232a0 t fuse_dev_free
+ffffffff81423380 t fuse_init_fs_context_submount
+ffffffff814233a0 t fuse_fill_super_common
+ffffffff81423960 t fuse_mount_remove
+ffffffff814239e0 t fuse_conn_destroy
+ffffffff81423b10 t fuse_mount_destroy
+ffffffff81423ba0 t fuse_sysfs_cleanup
+ffffffff81423bf0 t fuse_fs_cleanup
+ffffffff81423c30 t set_global_limit
+ffffffff81423ca0 t fuse_get_tree_submount
+ffffffff81424120 t fuse_alloc_inode
+ffffffff81424200 t fuse_free_inode
+ffffffff81424230 t fuse_evict_inode
+ffffffff814242f0 t fuse_sync_fs
+ffffffff81424590 t fuse_statfs
+ffffffff81424740 t fuse_umount_begin
+ffffffff814247a0 t fuse_show_options
+ffffffff814248d0 t fuse_encode_fh
+ffffffff81424950 t fuse_fh_to_dentry
+ffffffff814249c0 t fuse_fh_to_parent
+ffffffff81424a30 t fuse_get_parent
+ffffffff81424bb0 t fuse_get_dentry
+ffffffff81424db0 t fuse_bpf_show
+ffffffff81424dd0 t bpf_prog_type_fuse_show
+ffffffff81424e00 t fuse_init_fs_context
+ffffffff81424e80 t fuse_kill_sb_anon
+ffffffff81424f20 t fuse_kill_sb_blk
+ffffffff81424fc0 t fuse_free_fsc
+ffffffff81425000 t fuse_parse_param
+ffffffff81425310 t fuse_get_tree
+ffffffff81425490 t fuse_reconfigure
+ffffffff814254c0 t fuse_fill_super
+ffffffff81425540 t fuse_test_super
+ffffffff81425560 t fuse_set_no_super
+ffffffff81425570 t fuse_inode_init_once
+ffffffff81425580 t fuse_ctl_add_conn
+ffffffff81425810 t fuse_ctl_add_dentry
+ffffffff81425930 t fuse_ctl_remove_conn
+ffffffff81425a00 t fuse_ctl_cleanup
+ffffffff81425a20 t fuse_conn_waiting_read
+ffffffff81425b30 t fuse_conn_abort_write
+ffffffff81425bb0 t fuse_conn_max_background_read
+ffffffff81425cb0 t fuse_conn_max_background_write
+ffffffff81425e10 t fuse_conn_congestion_threshold_read
+ffffffff81425f10 t fuse_conn_congestion_threshold_write
+ffffffff81426070 t fuse_ctl_init_fs_context
+ffffffff81426090 t fuse_ctl_kill_sb
+ffffffff81426100 t fuse_ctl_get_tree
+ffffffff81426120 t fuse_ctl_fill_super
+ffffffff814261c0 t fuse_setxattr
+ffffffff81426340 t fuse_getxattr
+ffffffff814264d0 t fuse_listxattr
+ffffffff814266c0 t fuse_removexattr
+ffffffff814267c0 t fuse_xattr_get
+ffffffff814267f0 t fuse_xattr_set
+ffffffff81426930 t no_xattr_list
+ffffffff81426940 t no_xattr_get
+ffffffff81426950 t no_xattr_set
+ffffffff81426960 t fuse_get_acl
+ffffffff81426ab0 t fuse_set_acl
+ffffffff81426c50 t fuse_readdir
+ffffffff81427c20 t fuse_emit
+ffffffff81427e50 t fuse_do_ioctl
+ffffffff81428650 t fuse_ioctl_common
+ffffffff814286c0 t fuse_file_ioctl
+ffffffff81428730 t fuse_file_compat_ioctl
+ffffffff814287a0 t fuse_fileattr_get
+ffffffff81428bb0 t fuse_fileattr_set
+ffffffff81428f50 t fuse_copyattr
+ffffffff81428fb0 t fuse_passthrough_read_iter
+ffffffff81429150 t fuse_aio_rw_complete
+ffffffff81429180 t fuse_aio_cleanup_handler
+ffffffff81429290 t fuse_passthrough_write_iter
+ffffffff81429610 t fuse_passthrough_mmap
+ffffffff81429740 t fuse_passthrough_open
+ffffffff81429920 t fuse_passthrough_release
+ffffffff81429960 t fuse_passthrough_setup
+ffffffff81429a20 t debugfs_lookup
+ffffffff81429aa0 t debugfs_initialized
+ffffffff81429ac0 t debugfs_create_file
+ffffffff81429af0 t __debugfs_create_file.llvm.3529859937250671047
+ffffffff81429cc0 t debugfs_create_file_unsafe
+ffffffff81429cf0 t debugfs_create_file_size
+ffffffff81429d30 t debugfs_create_dir
+ffffffff81429ec0 t start_creating
+ffffffff8142a010 t start_creating
+ffffffff8142a0e0 t failed_creating
+ffffffff8142a120 t debugfs_create_automount
+ffffffff8142a2c0 t debugfs_create_symlink
+ffffffff8142a3f0 t debugfs_remove
+ffffffff8142a450 t remove_one
+ffffffff8142a4c0 t remove_one
+ffffffff8142a4e0 t debugfs_lookup_and_remove
+ffffffff8142a5a0 t debugfs_rename
+ffffffff8142a790 t debugfs_setattr
+ffffffff8142a7d0 t debug_mount
+ffffffff8142a800 t debug_fill_super
+ffffffff8142a8d0 t debugfs_parse_options
+ffffffff8142aa60 t debugfs_free_inode
+ffffffff8142aaa0 t debugfs_remount
+ffffffff8142ab30 t debugfs_show_options
+ffffffff8142abb0 t debugfs_release_dentry
+ffffffff8142abd0 t debugfs_automount
+ffffffff8142ac00 t default_read_file.llvm.9285388265851924803
+ffffffff8142ac10 t default_write_file.llvm.9285388265851924803
+ffffffff8142ac20 t debugfs_real_fops
+ffffffff8142ac50 t debugfs_file_get
+ffffffff8142ad50 t debugfs_file_put
+ffffffff8142ad90 t open_proxy_open.llvm.9285388265851924803
+ffffffff8142aea0 t full_proxy_open.llvm.9285388265851924803
+ffffffff8142b080 t debugfs_attr_read
+ffffffff8142b110 t debugfs_attr_write
+ffffffff8142b190 t debugfs_attr_write_signed
+ffffffff8142b210 t debugfs_create_u8
+ffffffff8142b250 t debugfs_create_u16
+ffffffff8142b290 t debugfs_create_u32
+ffffffff8142b2d0 t debugfs_create_u64
+ffffffff8142b310 t debugfs_create_ulong
+ffffffff8142b350 t debugfs_create_x8
+ffffffff8142b390 t debugfs_create_x16
+ffffffff8142b3d0 t debugfs_create_x32
+ffffffff8142b410 t debugfs_create_x64
+ffffffff8142b450 t debugfs_create_size_t
+ffffffff8142b490 t debugfs_create_atomic_t
+ffffffff8142b4d0 t debugfs_read_file_bool
+ffffffff8142b5b0 t debugfs_write_file_bool
+ffffffff8142b660 t debugfs_create_bool
+ffffffff8142b6a0 t debugfs_read_file_str
+ffffffff8142b7f0 t debugfs_create_str
+ffffffff8142b830 t debugfs_create_blob
+ffffffff8142b860 t debugfs_create_u32_array
+ffffffff8142b880 t debugfs_print_regs32
+ffffffff8142b920 t debugfs_create_regset32
+ffffffff8142b940 t debugfs_create_devm_seqfile
+ffffffff8142b9b0 t full_proxy_release
+ffffffff8142ba30 t full_proxy_llseek
+ffffffff8142bad0 t full_proxy_read
+ffffffff8142bb70 t full_proxy_write
+ffffffff8142bc10 t full_proxy_poll
+ffffffff8142bca0 t full_proxy_unlocked_ioctl
+ffffffff8142bd40 t fops_u8_open
+ffffffff8142bd70 t debugfs_u8_get
+ffffffff8142bd90 t debugfs_u8_set
+ffffffff8142bda0 t fops_u8_ro_open
+ffffffff8142bdc0 t fops_u8_wo_open
+ffffffff8142bde0 t fops_u16_open
+ffffffff8142be10 t debugfs_u16_get
+ffffffff8142be30 t debugfs_u16_set
+ffffffff8142be40 t fops_u16_ro_open
+ffffffff8142be60 t fops_u16_wo_open
+ffffffff8142be80 t fops_u32_open
+ffffffff8142beb0 t debugfs_u32_get
+ffffffff8142bed0 t debugfs_u32_set
+ffffffff8142bee0 t fops_u32_ro_open
+ffffffff8142bf00 t fops_u32_wo_open
+ffffffff8142bf20 t fops_u64_open
+ffffffff8142bf50 t debugfs_u64_get
+ffffffff8142bf70 t debugfs_u64_set
+ffffffff8142bf80 t fops_u64_ro_open
+ffffffff8142bfa0 t fops_u64_wo_open
+ffffffff8142bfc0 t fops_ulong_open
+ffffffff8142bff0 t debugfs_ulong_get
+ffffffff8142c010 t debugfs_ulong_set
+ffffffff8142c020 t fops_ulong_ro_open
+ffffffff8142c040 t fops_ulong_wo_open
+ffffffff8142c060 t fops_x8_open
+ffffffff8142c090 t fops_x8_ro_open
+ffffffff8142c0b0 t fops_x8_wo_open
+ffffffff8142c0d0 t fops_x16_open
+ffffffff8142c100 t fops_x16_ro_open
+ffffffff8142c120 t fops_x16_wo_open
+ffffffff8142c140 t fops_x32_open
+ffffffff8142c170 t fops_x32_ro_open
+ffffffff8142c190 t fops_x32_wo_open
+ffffffff8142c1b0 t fops_x64_open
+ffffffff8142c1e0 t fops_x64_ro_open
+ffffffff8142c200 t fops_x64_wo_open
+ffffffff8142c220 t fops_size_t_open
+ffffffff8142c250 t debugfs_size_t_get
+ffffffff8142c270 t debugfs_size_t_set
+ffffffff8142c280 t fops_size_t_ro_open
+ffffffff8142c2a0 t fops_size_t_wo_open
+ffffffff8142c2c0 t fops_atomic_t_open
+ffffffff8142c2f0 t debugfs_atomic_t_get
+ffffffff8142c310 t debugfs_atomic_t_set
+ffffffff8142c320 t fops_atomic_t_ro_open
+ffffffff8142c340 t fops_atomic_t_wo_open
+ffffffff8142c360 t debugfs_write_file_str
+ffffffff8142c380 t read_file_blob.llvm.9285388265851924803
+ffffffff8142c410 t u32_array_read
+ffffffff8142c460 t u32_array_open
+ffffffff8142c530 t u32_array_release
+ffffffff8142c550 t debugfs_regset32_open
+ffffffff8142c580 t debugfs_regset32_show
+ffffffff8142c650 t debugfs_devm_entry_open
+ffffffff8142c680 t tracefs_create_file
+ffffffff8142c850 t tracefs_create_dir
+ffffffff8142c870 t __create_dir.llvm.12742221174473325756
+ffffffff8142c9f0 t tracefs_remove
+ffffffff8142ca50 t tracefs_initialized
+ffffffff8142ca70 t default_read_file
+ffffffff8142ca80 t default_write_file
+ffffffff8142ca90 t tracefs_syscall_mkdir
+ffffffff8142cb20 t tracefs_syscall_rmdir
+ffffffff8142cbe0 t trace_mount
+ffffffff8142cc00 t trace_fill_super
+ffffffff8142cca0 t tracefs_parse_options
+ffffffff8142ce30 t tracefs_apply_options
+ffffffff8142cfe0 t tracefs_remount
+ffffffff8142d030 t tracefs_show_options
+ffffffff8142d0b0 t __traceiter_erofs_lookup
+ffffffff8142d110 t __traceiter_erofs_fill_inode
+ffffffff8142d160 t __traceiter_erofs_readpage
+ffffffff8142d1b0 t __traceiter_erofs_readpages
+ffffffff8142d220 t __traceiter_erofs_map_blocks_enter
+ffffffff8142d280 t __traceiter_z_erofs_map_blocks_iter_enter
+ffffffff8142d2e0 t __traceiter_erofs_map_blocks_exit
+ffffffff8142d350 t __traceiter_z_erofs_map_blocks_iter_exit
+ffffffff8142d3c0 t __traceiter_erofs_destroy_inode
+ffffffff8142d410 t trace_event_raw_event_erofs_lookup
+ffffffff8142d540 t perf_trace_erofs_lookup
+ffffffff8142d6c0 t trace_event_raw_event_erofs_fill_inode
+ffffffff8142d7d0 t perf_trace_erofs_fill_inode
+ffffffff8142d920 t trace_event_raw_event_erofs_readpage
+ffffffff8142da50 t perf_trace_erofs_readpage
+ffffffff8142dbc0 t trace_event_raw_event_erofs_readpages
+ffffffff8142dcb0 t perf_trace_erofs_readpages
+ffffffff8142ddd0 t trace_event_raw_event_erofs__map_blocks_enter
+ffffffff8142dec0 t perf_trace_erofs__map_blocks_enter
+ffffffff8142dff0 t trace_event_raw_event_erofs__map_blocks_exit
+ffffffff8142e110 t perf_trace_erofs__map_blocks_exit
+ffffffff8142e260 t trace_event_raw_event_erofs_destroy_inode
+ffffffff8142e330 t perf_trace_erofs_destroy_inode
+ffffffff8142e430 t _erofs_err
+ffffffff8142e4d0 t _erofs_info
+ffffffff8142e560 t erofs_init_fs_context
+ffffffff8142e640 t erofs_kill_sb
+ffffffff8142e6f0 t erofs_alloc_inode
+ffffffff8142e770 t erofs_free_inode
+ffffffff8142e7c0 t erofs_put_super
+ffffffff8142e810 t erofs_statfs
+ffffffff8142e8a0 t erofs_show_options
+ffffffff8142e950 t trace_raw_output_erofs_lookup
+ffffffff8142e9c0 t trace_raw_output_erofs_fill_inode
+ffffffff8142ea30 t trace_raw_output_erofs_readpage
+ffffffff8142eae0 t trace_raw_output_erofs_readpages
+ffffffff8142eb60 t trace_raw_output_erofs__map_blocks_enter
+ffffffff8142ec30 t trace_raw_output_erofs__map_blocks_exit
+ffffffff8142ed40 t trace_raw_output_erofs_destroy_inode
+ffffffff8142eda0 t erofs_fc_anon_get_tree
+ffffffff8142edc0 t erofs_fc_fill_pseudo_super
+ffffffff8142ede0 t erofs_fc_free
+ffffffff8142ee40 t erofs_fc_parse_param
+ffffffff8142f040 t erofs_fc_get_tree
+ffffffff8142f060 t erofs_fc_reconfigure
+ffffffff8142f0e0 t erofs_release_device_info
+ffffffff8142f120 t erofs_fc_fill_super
+ffffffff8142f760 t erofs_load_compr_cfgs
+ffffffff8142fa20 t erofs_scan_devices
+ffffffff8142fc90 t erofs_init_device
+ffffffff8142fd90 t erofs_fh_to_dentry
+ffffffff8142fdb0 t erofs_fh_to_parent
+ffffffff8142fdd0 t erofs_get_parent
+ffffffff8142fe60 t erofs_nfs_get_inode
+ffffffff8142fe70 t erofs_managed_cache_invalidate_folio
+ffffffff8142fee0 t erofs_managed_cache_release_folio
+ffffffff8142ff10 t erofs_inode_init_once
+ffffffff8142ff30 t erofs_iget
+ffffffff814306e0 t erofs_ilookup_test_actor
+ffffffff81430700 t erofs_iget_set_actor
+ffffffff81430720 t erofs_getattr
+ffffffff81430760 t erofs_unmap_metabuf
+ffffffff814307b0 t erofs_put_metabuf
+ffffffff81430830 t erofs_bread
+ffffffff814309f0 t erofs_read_metabuf
+ffffffff81430a10 t erofs_map_blocks
+ffffffff81430e50 t erofs_map_dev
+ffffffff81430fe0 t erofs_fiemap
+ffffffff81431010 t erofs_read_folio.llvm.13737529646093542897
+ffffffff81431030 t erofs_readahead.llvm.13737529646093542897
+ffffffff81431050 t erofs_bmap.llvm.13737529646093542897
+ffffffff81431070 t erofs_file_read_iter.llvm.13737529646093542897
+ffffffff81431150 t erofs_iomap_begin
+ffffffff81431330 t erofs_iomap_end
+ffffffff814313b0 t erofs_namei
+ffffffff81431800 t erofs_lookup.llvm.1065094056204495472
+ffffffff814318f0 t erofs_readdir.llvm.13985787806013234937
+ffffffff81431bd0 t erofs_allocpage
+ffffffff81431c10 t erofs_release_pages
+ffffffff81431c60 t erofs_find_workgroup
+ffffffff81431d10 t erofs_insert_workgroup
+ffffffff81431e10 t erofs_workgroup_put
+ffffffff81431e60 t erofs_shrinker_register
+ffffffff81431ef0 t erofs_shrinker_unregister
+ffffffff81431f80 t erofs_shrink_workstation
+ffffffff81432140 t erofs_exit_shrinker
+ffffffff81432160 t erofs_shrink_count
+ffffffff81432180 t erofs_shrink_scan
+ffffffff814322e0 t erofs_get_pcpubuf
+ffffffff81432360 t erofs_put_pcpubuf
+ffffffff814323c0 t erofs_pcpubuf_growsize
+ffffffff814326c0 t erofs_pcpubuf_init
+ffffffff81432720 t erofs_pcpubuf_exit
+ffffffff81432820 t erofs_register_sysfs
+ffffffff814328c0 t erofs_unregister_sysfs
+ffffffff81432910 t erofs_exit_sysfs
+ffffffff81432940 t erofs_attr_show
+ffffffff814329d0 t erofs_attr_store
+ffffffff81432af0 t erofs_sb_release
+ffffffff81432b10 t erofs_getxattr
+ffffffff81432db0 t init_inode_xattrs
+ffffffff81433070 t erofs_xattr_user_list
+ffffffff81433090 t erofs_xattr_generic_get
+ffffffff814330e0 t erofs_xattr_trusted_list
+ffffffff81433100 t erofs_listxattr
+ffffffff81433360 t erofs_get_acl
+ffffffff81433440 t xattr_foreach
+ffffffff81433710 t xattr_entrymatch
+ffffffff81433740 t xattr_namematch
+ffffffff81433770 t xattr_checkbuffer
+ffffffff814337a0 t xattr_copyvalue
+ffffffff814337d0 t xattr_entrylist
+ffffffff814338a0 t xattr_namelist
+ffffffff814338e0 t xattr_skipvalue
+ffffffff81433910 t z_erofs_load_lz4_config
+ffffffff814339b0 t z_erofs_fixup_insize
+ffffffff81433a00 t z_erofs_decompress
+ffffffff81433a30 t z_erofs_lz4_decompress
+ffffffff814343e0 t z_erofs_transform_plain
+ffffffff81434550 t z_erofs_fill_inode
+ffffffff814345a0 t z_erofs_map_blocks_iter
+ffffffff81434ad0 t z_erofs_do_map_blocks
+ffffffff81435110 t z_erofs_iomap_begin_report.llvm.4336291865351678042
+ffffffff81435240 t z_erofs_load_cluster_from_disk
+ffffffff81435780 t z_erofs_exit_zip_subsystem
+ffffffff814357a0 t z_erofs_destroy_pcluster_pool
+ffffffff81435860 t erofs_try_to_free_all_cached_pages
+ffffffff81435950 t erofs_try_to_free_cached_page
+ffffffff81435a90 t erofs_workgroup_free_rcu
+ffffffff81435ab0 t z_erofs_rcu_callback.llvm.7060572411601906074
+ffffffff81435b40 t z_erofs_read_folio.llvm.7060572411601906074
+ffffffff81435d20 t z_erofs_readahead.llvm.7060572411601906074
+ffffffff81436010 t z_erofs_pcluster_readmore
+ffffffff814361d0 t z_erofs_do_read_page
+ffffffff81436f90 t z_erofs_runqueue
+ffffffff814377b0 t z_erofs_decompress_queue
+ffffffff814382a0 t z_erofs_decompressqueue_endio
+ffffffff81438400 t z_erofs_decompress_kickoff
+ffffffff814384f0 t z_erofs_decompressqueue_work
+ffffffff81438560 t cap_capable
+ffffffff814385d0 t cap_settime
+ffffffff814385f0 t cap_ptrace_access_check
+ffffffff81438660 t cap_ptrace_traceme
+ffffffff814386c0 t cap_capget
+ffffffff81438710 t cap_capset
+ffffffff814387c0 t cap_inode_need_killpriv
+ffffffff814387f0 t cap_inode_killpriv
+ffffffff81438810 t cap_inode_getsecurity
+ffffffff814389d0 t cap_convert_nscap
+ffffffff81438b10 t get_vfs_caps_from_disk
+ffffffff81438c50 t cap_bprm_creds_from_file
+ffffffff81439060 t cap_inode_setxattr
+ffffffff814390d0 t cap_inode_removexattr
+ffffffff81439160 t cap_task_fix_setuid
+ffffffff81439270 t cap_task_setscheduler
+ffffffff814392d0 t cap_task_setioprio
+ffffffff81439330 t cap_task_setnice
+ffffffff81439390 t cap_task_prctl
+ffffffff81439630 t cap_vm_enough_memory
+ffffffff814396b0 t cap_mmap_addr
+ffffffff81439740 t cap_mmap_file
+ffffffff81439750 t mmap_min_addr_handler
+ffffffff814397e0 t lsm_append
+ffffffff81439890 t call_blocking_lsm_notifier
+ffffffff814398b0 t register_blocking_lsm_notifier
+ffffffff814398d0 t unregister_blocking_lsm_notifier
+ffffffff814398f0 t lsm_inode_alloc
+ffffffff81439930 t security_binder_set_context_mgr
+ffffffff81439980 t security_binder_transaction
+ffffffff814399d0 t security_binder_transfer_binder
+ffffffff81439a20 t security_binder_transfer_file
+ffffffff81439a80 t security_ptrace_access_check
+ffffffff81439ad0 t security_ptrace_traceme
+ffffffff81439b20 t security_capget
+ffffffff81439b80 t security_capset
+ffffffff81439bf0 t security_capable
+ffffffff81439c50 t security_quotactl
+ffffffff81439cb0 t security_quota_on
+ffffffff81439d00 t security_syslog
+ffffffff81439d40 t security_settime64
+ffffffff81439d90 t security_vm_enough_memory_mm
+ffffffff81439df0 t security_bprm_creds_for_exec
+ffffffff81439e40 t security_bprm_creds_from_file
+ffffffff81439e90 t security_bprm_check
+ffffffff81439ee0 t security_bprm_committing_creds
+ffffffff81439f20 t security_bprm_committed_creds
+ffffffff81439f60 t security_fs_context_dup
+ffffffff81439fb0 t security_fs_context_parse_param
+ffffffff8143a020 t security_sb_alloc
+ffffffff8143a0e0 t security_sb_free
+ffffffff8143a140 t security_sb_delete
+ffffffff8143a180 t security_free_mnt_opts
+ffffffff8143a1d0 t security_sb_eat_lsm_opts
+ffffffff8143a220 t security_sb_mnt_opts_compat
+ffffffff8143a270 t security_sb_remount
+ffffffff8143a2c0 t security_sb_kern_mount
+ffffffff8143a310 t security_sb_show_options
+ffffffff8143a360 t security_sb_statfs
+ffffffff8143a3b0 t security_sb_mount
+ffffffff8143a420 t security_sb_umount
+ffffffff8143a470 t security_sb_pivotroot
+ffffffff8143a4c0 t security_sb_set_mnt_opts
+ffffffff8143a540 t security_sb_clone_mnt_opts
+ffffffff8143a5a0 t security_move_mount
+ffffffff8143a5f0 t security_path_notify
+ffffffff8143a650 t security_inode_alloc
+ffffffff8143a710 t security_inode_free
+ffffffff8143a770 t inode_free_by_rcu
+ffffffff8143a790 t security_dentry_init_security
+ffffffff8143a810 t security_dentry_create_files_as
+ffffffff8143a880 t security_inode_init_security
+ffffffff8143aa30 t security_inode_init_security_anon
+ffffffff8143aa90 t security_old_inode_init_security
+ffffffff8143ab10 t security_inode_create
+ffffffff8143ab80 t security_inode_link
+ffffffff8143abf0 t security_inode_unlink
+ffffffff8143ac50 t security_inode_symlink
+ffffffff8143acc0 t security_inode_mkdir
+ffffffff8143ad30 t security_inode_rmdir
+ffffffff8143ad90 t security_inode_mknod
+ffffffff8143ae00 t security_inode_rename
+ffffffff8143aec0 t security_inode_readlink
+ffffffff8143af10 t security_inode_follow_link
+ffffffff8143af80 t security_inode_permission
+ffffffff8143afd0 t security_inode_setattr
+ffffffff8143b030 t security_inode_getattr
+ffffffff8143b090 t security_inode_setxattr
+ffffffff8143b140 t security_inode_post_setxattr
+ffffffff8143b1c0 t security_inode_getxattr
+ffffffff8143b220 t security_inode_listxattr
+ffffffff8143b270 t security_inode_removexattr
+ffffffff8143b2f0 t security_inode_need_killpriv
+ffffffff8143b340 t security_inode_killpriv
+ffffffff8143b390 t security_inode_getsecurity
+ffffffff8143b420 t security_inode_setsecurity
+ffffffff8143b4a0 t security_inode_listsecurity
+ffffffff8143b510 t security_inode_getsecid
+ffffffff8143b560 t security_inode_copy_up
+ffffffff8143b5b0 t security_inode_copy_up_xattr
+ffffffff8143b600 t security_kernfs_init_security
+ffffffff8143b650 t security_file_permission
+ffffffff8143b6b0 t fsnotify_perm
+ffffffff8143b7e0 t security_file_alloc
+ffffffff8143b8b0 t security_file_free
+ffffffff8143b920 t security_file_ioctl
+ffffffff8143b980 t security_mmap_file
+ffffffff8143ba30 t security_mmap_addr
+ffffffff8143ba80 t security_file_mprotect
+ffffffff8143bae0 t security_file_lock
+ffffffff8143bb30 t security_file_fcntl
+ffffffff8143bb90 t security_file_set_fowner
+ffffffff8143bbd0 t security_file_send_sigiotask
+ffffffff8143bc30 t security_file_receive
+ffffffff8143bc80 t security_file_open
+ffffffff8143bce0 t security_task_alloc
+ffffffff8143bdb0 t security_task_free
+ffffffff8143be10 t security_cred_alloc_blank
+ffffffff8143bee0 t security_cred_free
+ffffffff8143bf30 t security_prepare_creds
+ffffffff8143c000 t security_transfer_creds
+ffffffff8143c050 t security_cred_getsecid
+ffffffff8143c0b0 t security_kernel_act_as
+ffffffff8143c100 t security_kernel_create_files_as
+ffffffff8143c150 t security_kernel_module_request
+ffffffff8143c1a0 t security_kernel_read_file
+ffffffff8143c200 t security_kernel_post_read_file
+ffffffff8143c260 t security_kernel_load_data
+ffffffff8143c2b0 t security_kernel_post_load_data
+ffffffff8143c310 t security_task_fix_setuid
+ffffffff8143c370 t security_task_fix_setgid
+ffffffff8143c3d0 t security_task_fix_setgroups
+ffffffff8143c420 t security_task_setpgid
+ffffffff8143c470 t security_task_getpgid
+ffffffff8143c4c0 t security_task_getsid
+ffffffff8143c510 t security_current_getsecid_subj
+ffffffff8143c550 t security_task_getsecid_obj
+ffffffff8143c5b0 t security_task_setnice
+ffffffff8143c600 t security_task_setioprio
+ffffffff8143c650 t security_task_getioprio
+ffffffff8143c6a0 t security_task_prlimit
+ffffffff8143c700 t security_task_setrlimit
+ffffffff8143c760 t security_task_setscheduler
+ffffffff8143c7b0 t security_task_getscheduler
+ffffffff8143c800 t security_task_movememory
+ffffffff8143c850 t security_task_kill
+ffffffff8143c8b0 t security_task_prctl
+ffffffff8143c950 t security_task_to_inode
+ffffffff8143c9a0 t security_create_user_ns
+ffffffff8143c9f0 t security_ipc_permission
+ffffffff8143ca40 t security_ipc_getsecid
+ffffffff8143caa0 t security_msg_msg_alloc
+ffffffff8143cb60 t security_msg_msg_free
+ffffffff8143cbb0 t security_msg_queue_alloc
+ffffffff8143cc70 t security_msg_queue_free
+ffffffff8143ccc0 t security_msg_queue_associate
+ffffffff8143cd10 t security_msg_queue_msgctl
+ffffffff8143cd60 t security_msg_queue_msgsnd
+ffffffff8143cdc0 t security_msg_queue_msgrcv
+ffffffff8143ce30 t security_shm_alloc
+ffffffff8143cef0 t security_shm_free
+ffffffff8143cf40 t security_shm_associate
+ffffffff8143cf90 t security_shm_shmctl
+ffffffff8143cfe0 t security_shm_shmat
+ffffffff8143d040 t security_sem_alloc
+ffffffff8143d100 t security_sem_free
+ffffffff8143d150 t security_sem_associate
+ffffffff8143d1a0 t security_sem_semctl
+ffffffff8143d1f0 t security_sem_semop
+ffffffff8143d250 t security_d_instantiate
+ffffffff8143d2b0 t security_getprocattr
+ffffffff8143d320 t security_setprocattr
+ffffffff8143d390 t security_netlink_send
+ffffffff8143d3e0 t security_ismaclabel
+ffffffff8143d430 t security_secid_to_secctx
+ffffffff8143d490 t security_secctx_to_secid
+ffffffff8143d500 t security_release_secctx
+ffffffff8143d550 t security_inode_invalidate_secctx
+ffffffff8143d590 t security_inode_notifysecctx
+ffffffff8143d5f0 t security_inode_setsecctx
+ffffffff8143d650 t security_inode_getsecctx
+ffffffff8143d6b0 t security_unix_stream_connect
+ffffffff8143d710 t security_unix_may_send
+ffffffff8143d760 t security_socket_create
+ffffffff8143d7c0 t security_socket_post_create
+ffffffff8143d830 t security_socket_socketpair
+ffffffff8143d880 t security_socket_bind
+ffffffff8143d8e0 t security_socket_connect
+ffffffff8143d940 t security_socket_listen
+ffffffff8143d990 t security_socket_accept
+ffffffff8143d9e0 t security_socket_sendmsg
+ffffffff8143da40 t security_socket_recvmsg
+ffffffff8143daa0 t security_socket_getsockname
+ffffffff8143daf0 t security_socket_getpeername
+ffffffff8143db40 t security_socket_getsockopt
+ffffffff8143dba0 t security_socket_setsockopt
+ffffffff8143dc00 t security_socket_shutdown
+ffffffff8143dc50 t security_sock_rcv_skb
+ffffffff8143dca0 t security_socket_getpeersec_stream
+ffffffff8143dd10 t security_socket_getpeersec_dgram
+ffffffff8143dd70 t security_sk_alloc
+ffffffff8143ddd0 t security_sk_free
+ffffffff8143de10 t security_sk_clone
+ffffffff8143de60 t security_sk_classify_flow
+ffffffff8143deb0 t security_req_classify_flow
+ffffffff8143df00 t security_sock_graft
+ffffffff8143df50 t security_inet_conn_request
+ffffffff8143dfb0 t security_inet_csk_clone
+ffffffff8143e000 t security_inet_conn_established
+ffffffff8143e050 t security_secmark_relabel_packet
+ffffffff8143e090 t security_secmark_refcount_inc
+ffffffff8143e0d0 t security_secmark_refcount_dec
+ffffffff8143e110 t security_tun_dev_alloc_security
+ffffffff8143e160 t security_tun_dev_free_security
+ffffffff8143e1a0 t security_tun_dev_create
+ffffffff8143e1e0 t security_tun_dev_attach_queue
+ffffffff8143e230 t security_tun_dev_attach
+ffffffff8143e280 t security_tun_dev_open
+ffffffff8143e2d0 t security_sctp_assoc_request
+ffffffff8143e320 t security_sctp_bind_connect
+ffffffff8143e380 t security_sctp_sk_clone
+ffffffff8143e3d0 t security_sctp_assoc_established
+ffffffff8143e420 t security_audit_rule_init
+ffffffff8143e480 t security_audit_rule_known
+ffffffff8143e4d0 t security_audit_rule_free
+ffffffff8143e510 t security_audit_rule_match
+ffffffff8143e570 t security_locked_down
+ffffffff8143e5b0 t security_perf_event_open
+ffffffff8143e600 t security_perf_event_alloc
+ffffffff8143e650 t security_perf_event_free
+ffffffff8143e690 t security_perf_event_read
+ffffffff8143e6e0 t security_perf_event_write
+ffffffff8143e730 t security_uring_override_creds
+ffffffff8143e780 t security_uring_sqpoll
+ffffffff8143e7c0 t security_uring_cmd
+ffffffff8143e810 t securityfs_create_file
+ffffffff8143e830 t securityfs_create_dentry.llvm.9090435566503145853
+ffffffff8143ea20 t securityfs_create_dir
+ffffffff8143ea40 t securityfs_create_symlink
+ffffffff8143eac0 t securityfs_remove
+ffffffff8143eb50 t securityfs_init_fs_context
+ffffffff8143eb70 t securityfs_get_tree
+ffffffff8143eb90 t securityfs_fill_super
+ffffffff8143ebc0 t securityfs_free_inode
+ffffffff8143ec00 t lsm_read
+ffffffff8143ec50 t __traceiter_selinux_audited
+ffffffff8143ecc0 t trace_event_raw_event_selinux_audited
+ffffffff8143ee90 t perf_trace_selinux_audited
+ffffffff8143f090 t selinux_avc_init
+ffffffff8143f0e0 t avc_get_cache_threshold
+ffffffff8143f0f0 t avc_set_cache_threshold
+ffffffff8143f100 t avc_get_hash_stats
+ffffffff8143f1c0 t slow_avc_audit
+ffffffff8143f2a0 t avc_audit_pre_callback
+ffffffff8143f3b0 t avc_audit_post_callback
+ffffffff8143f640 t avc_ss_reset
+ffffffff8143f6e0 t avc_flush
+ffffffff8143f7a0 t avc_has_extended_perms
+ffffffff8143fd30 t avc_compute_av
+ffffffff8143ff80 t avc_update_node
+ffffffff81440370 t avc_denied
+ffffffff814403e0 t avc_has_perm_noaudit
+ffffffff81440570 t avc_has_perm
+ffffffff81440650 t avc_policy_seqno
+ffffffff81440670 t avc_disable
+ffffffff814406a0 t trace_raw_output_selinux_audited
+ffffffff81440720 t avc_node_free
+ffffffff81440760 t avc_xperms_free
+ffffffff81440850 t avc_alloc_node
+ffffffff81440a20 t avc_xperms_populate
+ffffffff81440c00 t avc_xperms_decision_alloc
+ffffffff81440cf0 t avc_xperms_allow_perm
+ffffffff81440d50 t selinux_complete_init
+ffffffff81440d70 t delayed_superblock_init.llvm.6381734067464124134
+ffffffff81440d90 t selinux_set_mnt_opts
+ffffffff81441430 t may_context_mount_sb_relabel
+ffffffff814414a0 t may_context_mount_inode_relabel
+ffffffff81441510 t sb_finish_set_opts
+ffffffff81441820 t inode_doinit_with_dentry
+ffffffff81441ba0 t inode_mode_to_security_class
+ffffffff81441bd0 t inode_doinit_use_xattr
+ffffffff81441db0 t selinux_genfs_get_sid
+ffffffff81441ea0 t selinux_netcache_avc_callback
+ffffffff81441ed0 t selinux_lsm_notifier_avc_callback
+ffffffff81441f00 t selinux_binder_set_context_mgr
+ffffffff81441f50 t selinux_binder_transaction
+ffffffff81441fe0 t selinux_binder_transfer_binder
+ffffffff81442020 t selinux_binder_transfer_file
+ffffffff814421c0 t selinux_ptrace_access_check
+ffffffff81442250 t selinux_ptrace_traceme
+ffffffff814422d0 t selinux_capget
+ffffffff81442350 t selinux_capset
+ffffffff81442390 t selinux_capable
+ffffffff81442510 t selinux_quotactl
+ffffffff814425b0 t selinux_quota_on
+ffffffff814426d0 t selinux_syslog
+ffffffff81442750 t selinux_vm_enough_memory
+ffffffff814427f0 t selinux_netlink_send
+ffffffff81442a50 t selinux_bprm_creds_for_exec
+ffffffff81442e40 t selinux_bprm_committing_creds
+ffffffff81443100 t selinux_bprm_committed_creds
+ffffffff81443200 t selinux_free_mnt_opts
+ffffffff81443210 t selinux_sb_mnt_opts_compat
+ffffffff814433c0 t selinux_sb_remount
+ffffffff81443590 t selinux_sb_kern_mount
+ffffffff81443640 t selinux_sb_show_options
+ffffffff81443820 t selinux_sb_statfs
+ffffffff814438d0 t selinux_mount
+ffffffff81443a50 t selinux_umount
+ffffffff81443ab0 t selinux_sb_clone_mnt_opts
+ffffffff81443f30 t selinux_move_mount
+ffffffff81444060 t selinux_dentry_init_security
+ffffffff81444130 t selinux_dentry_create_files_as
+ffffffff814441d0 t selinux_inode_free_security
+ffffffff81444260 t selinux_inode_init_security
+ffffffff81444420 t selinux_inode_init_security_anon
+ffffffff814445a0 t selinux_inode_create
+ffffffff814445c0 t selinux_inode_link
+ffffffff814445e0 t selinux_inode_unlink
+ffffffff81444600 t selinux_inode_symlink
+ffffffff81444620 t selinux_inode_mkdir
+ffffffff81444640 t selinux_inode_rmdir
+ffffffff81444660 t selinux_inode_mknod
+ffffffff814446a0 t selinux_inode_rename
+ffffffff81444a30 t selinux_inode_readlink
+ffffffff81444b50 t selinux_inode_follow_link
+ffffffff81444c80 t selinux_inode_permission
+ffffffff81444e80 t selinux_inode_setattr
+ffffffff814450c0 t selinux_inode_getattr
+ffffffff814451f0 t selinux_inode_setxattr
+ffffffff81445640 t selinux_inode_post_setxattr
+ffffffff814457d0 t selinux_inode_getxattr
+ffffffff814458f0 t selinux_inode_listxattr
+ffffffff81445a10 t selinux_inode_removexattr
+ffffffff81445b70 t selinux_inode_getsecurity
+ffffffff81445d30 t selinux_inode_setsecurity
+ffffffff81445e70 t selinux_inode_listsecurity
+ffffffff81445ec0 t selinux_inode_getsecid
+ffffffff81445ef0 t selinux_inode_copy_up
+ffffffff81445f60 t selinux_inode_copy_up_xattr
+ffffffff81445f90 t selinux_path_notify
+ffffffff814461a0 t selinux_kernfs_init_security
+ffffffff81446390 t selinux_file_permission
+ffffffff81446520 t selinux_file_alloc_security
+ffffffff81446560 t selinux_file_ioctl
+ffffffff81446970 t selinux_mmap_file
+ffffffff81446a70 t selinux_mmap_addr
+ffffffff81446ac0 t selinux_file_mprotect
+ffffffff81446cf0 t selinux_file_lock
+ffffffff81446e00 t selinux_file_fcntl
+ffffffff814470a0 t selinux_file_set_fowner
+ffffffff814470e0 t selinux_file_send_sigiotask
+ffffffff81447180 t selinux_file_receive
+ffffffff814471d0 t selinux_file_open
+ffffffff81447380 t selinux_task_alloc
+ffffffff814473d0 t selinux_cred_prepare
+ffffffff81447410 t selinux_cred_transfer
+ffffffff81447450 t selinux_cred_getsecid
+ffffffff81447470 t selinux_kernel_act_as
+ffffffff814474f0 t selinux_kernel_create_files_as
+ffffffff814475c0 t selinux_kernel_module_request
+ffffffff81447660 t selinux_kernel_load_data
+ffffffff814476b0 t selinux_kernel_read_file
+ffffffff81447840 t selinux_task_setpgid
+ffffffff814478c0 t selinux_task_getpgid
+ffffffff81447940 t selinux_task_getsid
+ffffffff814479c0 t selinux_current_getsecid_subj
+ffffffff814479f0 t selinux_task_getsecid_obj
+ffffffff81447a30 t selinux_task_setnice
+ffffffff81447ab0 t selinux_task_setioprio
+ffffffff81447b30 t selinux_task_getioprio
+ffffffff81447bb0 t selinux_task_prlimit
+ffffffff81447c10 t selinux_task_setrlimit
+ffffffff81447cb0 t selinux_task_setscheduler
+ffffffff81447d30 t selinux_task_getscheduler
+ffffffff81447db0 t selinux_task_movememory
+ffffffff81447e30 t selinux_task_kill
+ffffffff81447f00 t selinux_task_to_inode
+ffffffff81447fa0 t selinux_userns_create
+ffffffff81447ff0 t selinux_ipc_permission
+ffffffff814480c0 t selinux_ipc_getsecid
+ffffffff814480e0 t selinux_msg_queue_associate
+ffffffff81448190 t selinux_msg_queue_msgctl
+ffffffff814482b0 t selinux_msg_queue_msgsnd
+ffffffff81448400 t selinux_msg_queue_msgrcv
+ffffffff81448500 t selinux_shm_associate
+ffffffff814485b0 t selinux_shm_shmctl
+ffffffff814486e0 t selinux_shm_shmat
+ffffffff814487a0 t selinux_sem_associate
+ffffffff81448850 t selinux_sem_semctl
+ffffffff814489d0 t selinux_sem_semop
+ffffffff81448a80 t selinux_d_instantiate
+ffffffff81448aa0 t selinux_getprocattr
+ffffffff81448c30 t selinux_setprocattr
+ffffffff81449040 t selinux_ismaclabel
+ffffffff81449060 t selinux_secctx_to_secid
+ffffffff81449090 t selinux_release_secctx
+ffffffff814490a0 t selinux_inode_invalidate_secctx
+ffffffff814490f0 t selinux_inode_notifysecctx
+ffffffff81449120 t selinux_inode_setsecctx
+ffffffff81449150 t selinux_socket_unix_stream_connect
+ffffffff81449250 t selinux_socket_unix_may_send
+ffffffff81449320 t selinux_socket_create
+ffffffff814493e0 t selinux_socket_post_create
+ffffffff81449500 t selinux_socket_socketpair
+ffffffff81449530 t selinux_socket_bind
+ffffffff814498a0 t selinux_socket_connect
+ffffffff814498b0 t selinux_socket_listen
+ffffffff814499a0 t selinux_socket_accept
+ffffffff81449b10 t selinux_socket_sendmsg
+ffffffff81449c00 t selinux_socket_recvmsg
+ffffffff81449cf0 t selinux_socket_getsockname
+ffffffff81449de0 t selinux_socket_getpeername
+ffffffff81449ed0 t selinux_socket_getsockopt
+ffffffff81449fc0 t selinux_socket_setsockopt
+ffffffff8144a0b0 t selinux_socket_shutdown
+ffffffff8144a1a0 t selinux_socket_sock_rcv_skb
+ffffffff8144a580 t selinux_socket_getpeersec_stream
+ffffffff8144a6b0 t selinux_socket_getpeersec_dgram
+ffffffff8144a780 t selinux_sk_free_security
+ffffffff8144a7b0 t selinux_sk_clone_security
+ffffffff8144a7e0 t selinux_sk_getsecid
+ffffffff8144a810 t selinux_sock_graft
+ffffffff8144a860 t selinux_sctp_assoc_request
+ffffffff8144a8f0 t selinux_sctp_sk_clone
+ffffffff8144a940 t selinux_sctp_bind_connect
+ffffffff8144aa50 t selinux_sctp_assoc_established
+ffffffff8144aa90 t selinux_inet_conn_request
+ffffffff8144ab50 t selinux_inet_csk_clone
+ffffffff8144ab80 t selinux_inet_conn_established
+ffffffff8144abc0 t selinux_secmark_relabel_packet
+ffffffff8144ac10 t selinux_secmark_refcount_inc
+ffffffff8144ac30 t selinux_secmark_refcount_dec
+ffffffff8144ac50 t selinux_req_classify_flow
+ffffffff8144ac70 t selinux_tun_dev_free_security
+ffffffff8144ac80 t selinux_tun_dev_create
+ffffffff8144acd0 t selinux_tun_dev_attach_queue
+ffffffff8144ad20 t selinux_tun_dev_attach
+ffffffff8144ad40 t selinux_tun_dev_open
+ffffffff8144adc0 t selinux_perf_event_open
+ffffffff8144ae20 t selinux_perf_event_free
+ffffffff8144ae50 t selinux_perf_event_read
+ffffffff8144aea0 t selinux_perf_event_write
+ffffffff8144aef0 t selinux_uring_override_creds
+ffffffff8144af40 t selinux_uring_sqpoll
+ffffffff8144af90 t selinux_uring_cmd
+ffffffff8144b050 t selinux_fs_context_dup
+ffffffff8144b0a0 t selinux_fs_context_parse_param
+ffffffff8144b120 t selinux_sb_eat_lsm_opts
+ffffffff8144b480 t selinux_msg_msg_alloc_security
+ffffffff8144b4a0 t selinux_msg_queue_alloc_security
+ffffffff8144b570 t selinux_shm_alloc_security
+ffffffff8144b640 t selinux_sb_alloc_security
+ffffffff8144b6b0 t selinux_inode_alloc_security
+ffffffff8144b720 t selinux_sem_alloc_security
+ffffffff8144b7f0 t selinux_secid_to_secctx
+ffffffff8144b820 t selinux_inode_getsecctx
+ffffffff8144b850 t selinux_sk_alloc_security
+ffffffff8144b8d0 t selinux_tun_dev_alloc_security
+ffffffff8144b930 t selinux_perf_event_alloc
+ffffffff8144b990 t ptrace_parent_sid
+ffffffff8144b9f0 t match_file
+ffffffff8144ba40 t file_has_perm
+ffffffff8144bb50 t show_sid
+ffffffff8144bc60 t selinux_determine_inode_label
+ffffffff8144bd50 t may_create
+ffffffff8144bf10 t may_link
+ffffffff8144c100 t audit_inode_permission
+ffffffff8144c1c0 t has_cap_mac_admin
+ffffffff8144c320 t ioctl_has_perm
+ffffffff8144c4b0 t file_map_prot_check
+ffffffff8144c5a0 t socket_type_to_security_class
+ffffffff8144c740 t selinux_socket_connect_helper
+ffffffff8144c9b0 t selinux_parse_skb
+ffffffff8144ce30 t selinux_sctp_process_new_assoc
+ffffffff8144cf90 t selinux_add_opt
+ffffffff8144d0f0 t sel_init_fs_context
+ffffffff8144d110 t sel_kill_sb
+ffffffff8144d1a0 t sel_get_tree
+ffffffff8144d1c0 t sel_fill_super
+ffffffff8144d840 t sel_make_dir
+ffffffff8144d910 t sel_write_load
+ffffffff8144db40 t sel_make_policy_nodes
+ffffffff8144e300 t sel_remove_old_bool_data
+ffffffff8144e350 t sel_read_bool
+ffffffff8144e480 t sel_write_bool
+ffffffff8144e610 t sel_read_class
+ffffffff8144e6b0 t sel_read_perm
+ffffffff8144e760 t sel_read_enforce
+ffffffff8144e800 t sel_write_enforce
+ffffffff8144e9c0 t selinux_transaction_write
+ffffffff8144ea40 t sel_write_context
+ffffffff8144eb80 t sel_write_access
+ffffffff8144ed80 t sel_write_create
+ffffffff8144f090 t sel_write_relabel
+ffffffff8144f2c0 t sel_write_user
+ffffffff8144f510 t sel_write_member
+ffffffff8144f760 t sel_read_policyvers
+ffffffff8144f7f0 t sel_commit_bools_write
+ffffffff8144f940 t sel_read_mls
+ffffffff8144f9e0 t sel_read_checkreqprot
+ffffffff8144fa80 t sel_write_checkreqprot
+ffffffff8144fc20 t sel_read_handle_unknown
+ffffffff8144fce0 t sel_read_handle_status
+ffffffff8144fd30 t sel_mmap_handle_status
+ffffffff8144fde0 t sel_open_handle_status
+ffffffff8144fe20 t sel_read_policy
+ffffffff8144feb0 t sel_mmap_policy
+ffffffff8144ff50 t sel_open_policy
+ffffffff814500c0 t sel_release_policy
+ffffffff81450100 t sel_mmap_policy_fault
+ffffffff81450170 t sel_write_validatetrans
+ffffffff81450400 t sel_read_avc_cache_threshold
+ffffffff814504a0 t sel_write_avc_cache_threshold
+ffffffff814505c0 t sel_read_avc_hash_stats
+ffffffff81450650 t sel_open_avc_cache_stats
+ffffffff81450670 t sel_avc_stats_seq_start
+ffffffff814506f0 t sel_avc_stats_seq_stop
+ffffffff81450700 t sel_avc_stats_seq_next
+ffffffff81450790 t sel_avc_stats_seq_show
+ffffffff814507e0 t sel_read_sidtab_hash_stats
+ffffffff81450870 t sel_read_initcon
+ffffffff81450930 t sel_read_policycap
+ffffffff814509e0 t selnl_notify_setenforce
+ffffffff81450a30 t selnl_notify.llvm.13288960182011743290
+ffffffff81450b20 t selnl_notify_policyload
+ffffffff81450b70 t selinux_nlmsg_lookup
+ffffffff81450d10 t selinux_nlmsg_init
+ffffffff81451050 t sel_netif_sid
+ffffffff814511f0 t sel_netif_flush
+ffffffff814512a0 t sel_netif_netdev_notifier_handler
+ffffffff81451350 t sel_netnode_sid
+ffffffff81451680 t sel_netnode_flush
+ffffffff81451770 t sel_netport_sid
+ffffffff81451950 t sel_netport_flush
+ffffffff81451a40 t selinux_kernel_status_page
+ffffffff81451ae0 t selinux_status_update_setenforce
+ffffffff81451b40 t selinux_status_update_policyload
+ffffffff81451bc0 t ebitmap_cmp
+ffffffff81451c40 t ebitmap_cpy
+ffffffff81451d40 t ebitmap_destroy
+ffffffff81451d90 t ebitmap_and
+ffffffff81451f30 t ebitmap_get_bit
+ffffffff81451f90 t ebitmap_set_bit
+ffffffff81452150 t ebitmap_contains
+ffffffff81452350 t ebitmap_read
+ffffffff814525b0 t ebitmap_write
+ffffffff814528d0 t ebitmap_hash
+ffffffff81452ae0 t hashtab_init
+ffffffff81452b80 t __hashtab_insert
+ffffffff81452be0 t hashtab_destroy
+ffffffff81452c60 t hashtab_map
+ffffffff81452cf0 t hashtab_stat
+ffffffff81452dd0 t hashtab_duplicate
+ffffffff81452fb0 t symtab_init
+ffffffff81452fd0 t symtab_insert
+ffffffff81453120 t symtab_search
+ffffffff81453220 t sidtab_init
+ffffffff814533b0 t sidtab_set_initial
+ffffffff81453560 t context_to_sid
+ffffffff81453680 t sidtab_hash_stats
+ffffffff81453750 t sidtab_search_entry
+ffffffff81453870 t sidtab_search_entry_force
+ffffffff81453990 t sidtab_context_to_sid
+ffffffff81453c80 t sidtab_do_lookup
+ffffffff81453e90 t context_destroy
+ffffffff81453f10 t context_destroy
+ffffffff81453f90 t sidtab_convert
+ffffffff81454100 t sidtab_convert_tree
+ffffffff81454270 t sidtab_convert_hashtable
+ffffffff814543f0 t sidtab_cancel_convert
+ffffffff81454430 t sidtab_freeze_begin
+ffffffff81454460 t sidtab_freeze_end
+ffffffff81454480 t sidtab_destroy
+ffffffff81454570 t sidtab_destroy_tree
+ffffffff81454660 t sidtab_sid2str_put
+ffffffff81454810 t sidtab_sid2str_get
+ffffffff814548b0 t avtab_insert_nonunique
+ffffffff81454ab0 t avtab_search
+ffffffff81454be0 t avtab_search_node
+ffffffff81454d10 t avtab_search_node_next
+ffffffff81454d70 t avtab_destroy
+ffffffff81454e20 t avtab_init
+ffffffff81454e50 t avtab_alloc
+ffffffff81454ee0 t avtab_alloc_dup
+ffffffff81454f40 t avtab_hash_eval
+ffffffff81454f50 t avtab_read_item
+ffffffff81455440 t avtab_read
+ffffffff81455620 t avtab_insertf
+ffffffff81455860 t avtab_write_item
+ffffffff81455990 t avtab_write
+ffffffff81455a20 t policydb_filenametr_search
+ffffffff81455b10 t policydb_rangetr_search
+ffffffff81455ba0 t policydb_roletr_search
+ffffffff81455c30 t policydb_destroy
+ffffffff81456b70 t role_tr_destroy
+ffffffff81456b90 t filenametr_destroy
+ffffffff81456be0 t range_tr_destroy
+ffffffff81456c20 t policydb_load_isids
+ffffffff81456cf0 t policydb_class_isvalid
+ffffffff81456d10 t policydb_role_isvalid
+ffffffff81456d30 t policydb_type_isvalid
+ffffffff81456d50 t policydb_context_isvalid
+ffffffff81456e10 t string_to_security_class
+ffffffff81456e40 t string_to_av_perm
+ffffffff81456eb0 t policydb_read
+ffffffff81457920 t policydb_lookup_compat
+ffffffff81457950 t hashtab_insert
+ffffffff81457ab0 t filename_trans_read
+ffffffff81458300 t policydb_index
+ffffffff81458410 t ocontext_read
+ffffffff81458990 t genfs_read
+ffffffff81458f10 t range_read
+ffffffff814591b0 t policydb_bounds_sanity_check
+ffffffff81459210 t policydb_write
+ffffffff81459550 t role_trans_write
+ffffffff814595d0 t role_allow_write
+ffffffff81459660 t filename_trans_write
+ffffffff814596d0 t ocontext_write
+ffffffff81459ba0 t genfs_write
+ffffffff81459db0 t range_write
+ffffffff81459e30 t common_destroy
+ffffffff81459e80 t cls_destroy
+ffffffff81459fe0 t role_destroy
+ffffffff8145a020 t type_destroy
+ffffffff8145a040 t user_destroy
+ffffffff8145a090 t sens_destroy
+ffffffff8145a0e0 t cat_destroy
+ffffffff8145a100 t perm_destroy
+ffffffff8145a120 t common_read
+ffffffff8145a2e0 t class_read
+ffffffff8145a640 t role_read
+ffffffff8145a840 t type_read
+ffffffff8145a9f0 t user_read
+ffffffff8145ac20 t sens_read
+ffffffff8145ae00 t cat_read
+ffffffff8145af20 t perm_read
+ffffffff8145b040 t read_cons_helper
+ffffffff8145b320 t mls_read_range_helper
+ffffffff8145b490 t mls_read_level
+ffffffff8145b510 t common_index
+ffffffff8145b540 t class_index
+ffffffff8145b580 t role_index
+ffffffff8145b5d0 t type_index
+ffffffff8145b620 t user_index
+ffffffff8145b670 t sens_index
+ffffffff8145b6b0 t cat_index
+ffffffff8145b6f0 t context_read_and_validate
+ffffffff8145b810 t user_bounds_sanity_check
+ffffffff8145b9d0 t role_bounds_sanity_check
+ffffffff8145bb90 t type_bounds_sanity_check
+ffffffff8145bc40 t common_write
+ffffffff8145bcf0 t class_write
+ffffffff8145bf10 t role_write
+ffffffff8145c010 t type_write
+ffffffff8145c120 t user_write
+ffffffff8145c260 t sens_write
+ffffffff8145c310 t cat_write
+ffffffff8145c3a0 t perm_write
+ffffffff8145c420 t write_cons_helper
+ffffffff8145c570 t mls_write_range_helper
+ffffffff8145c670 t role_trans_write_one
+ffffffff8145c6e0 t filename_write_helper_compat
+ffffffff8145c8c0 t filename_write_helper
+ffffffff8145c9a0 t range_write_helper
+ffffffff8145ca10 t security_mls_enabled
+ffffffff8145ca40 t services_compute_xperms_drivers
+ffffffff8145cae0 t security_validate_transition_user
+ffffffff8145cb00 t security_compute_validatetrans.llvm.11518183025837786690
+ffffffff8145ce80 t security_validate_transition
+ffffffff8145cea0 t security_bounded_transition
+ffffffff8145d0c0 t services_compute_xperms_decision
+ffffffff8145d270 t security_compute_xperms_decision
+ffffffff8145d700 t security_compute_av
+ffffffff8145e0a0 t security_compute_av_user
+ffffffff8145e1d0 t security_sidtab_hash_stats
+ffffffff8145e230 t security_get_initial_sid_context
+ffffffff8145e260 t security_sid_to_context
+ffffffff8145e280 t security_sid_to_context_core.llvm.11518183025837786690
+ffffffff8145e420 t security_sid_to_context_force
+ffffffff8145e440 t security_sid_to_context_inval
+ffffffff8145e460 t security_context_to_sid
+ffffffff8145e480 t security_context_to_sid_core.llvm.11518183025837786690
+ffffffff8145e790 t security_context_str_to_sid
+ffffffff8145e7e0 t security_context_to_sid_default
+ffffffff8145e800 t security_context_to_sid_force
+ffffffff8145e820 t security_transition_sid
+ffffffff8145e860 t security_compute_sid.llvm.11518183025837786690
+ffffffff8145f110 t security_transition_sid_user
+ffffffff8145f140 t security_member_sid
+ffffffff8145f170 t security_change_sid
+ffffffff8145f1a0 t selinux_policy_cancel
+ffffffff8145f200 t selinux_policy_commit
+ffffffff8145f620 t security_load_policy
+ffffffff8145fb50 t convert_context
+ffffffff8145fea0 t security_port_sid
+ffffffff8145ffd0 t security_ib_pkey_sid
+ffffffff81460100 t security_ib_endport_sid
+ffffffff81460210 t security_netif_sid
+ffffffff81460310 t security_node_sid
+ffffffff814604f0 t security_get_user_sids
+ffffffff81460b60 t security_genfs_sid
+ffffffff81460be0 t __security_genfs_sid.llvm.11518183025837786690
+ffffffff81460d70 t selinux_policy_genfs_sid
+ffffffff81460d80 t security_fs_use
+ffffffff81460ee0 t security_get_bools
+ffffffff81461020 t security_set_bools
+ffffffff81461220 t security_get_bool_value
+ffffffff81461280 t security_sid_mls_copy
+ffffffff81461670 t context_struct_to_string
+ffffffff81461820 t security_net_peersid_resolve
+ffffffff81461960 t security_get_classes
+ffffffff81461a10 t get_classes_callback
+ffffffff81461a50 t security_get_permissions
+ffffffff81461b60 t get_permissions_callback
+ffffffff81461ba0 t security_get_reject_unknown
+ffffffff81461be0 t security_get_allow_unknown
+ffffffff81461c20 t security_policycap_supported
+ffffffff81461c60 t selinux_audit_rule_free
+ffffffff81461cf0 t selinux_audit_rule_init
+ffffffff81461f60 t selinux_audit_rule_known
+ffffffff81461fc0 t selinux_audit_rule_match
+ffffffff81462340 t security_read_policy
+ffffffff814623f0 t security_read_state_kernel
+ffffffff814624c0 t constraint_expr_eval
+ffffffff81462a90 t type_attribute_bounds_av
+ffffffff81462c30 t security_dump_masked_av
+ffffffff81462e30 t dump_masked_av_helper
+ffffffff81462e50 t string_to_context_struct
+ffffffff81463040 t aurule_avc_callback
+ffffffff81463060 t context_struct_compute_av.63
+ffffffff814634b0 t evaluate_cond_nodes
+ffffffff814637f0 t cond_policydb_init
+ffffffff81463840 t cond_policydb_destroy
+ffffffff814638f0 t cond_init_bool_indexes
+ffffffff81463940 t cond_destroy_bool
+ffffffff81463960 t cond_index_bool
+ffffffff814639a0 t cond_read_bool
+ffffffff81463ad0 t cond_read_list
+ffffffff81463f10 t cond_write_bool
+ffffffff81463f90 t cond_write_list
+ffffffff814641c0 t cond_compute_xperms
+ffffffff81464230 t cond_compute_av
+ffffffff81464320 t cond_policydb_destroy_dup
+ffffffff81464360 t cond_bools_destroy.llvm.12028974597865017959
+ffffffff81464380 t cond_policydb_dup
+ffffffff81464770 t cond_insertf
+ffffffff814648a0 t cond_bools_copy
+ffffffff814648f0 t cond_bools_index
+ffffffff81464910 t mls_compute_context_len
+ffffffff81464b70 t mls_sid_to_context
+ffffffff81464e90 t mls_level_isvalid
+ffffffff81464f00 t mls_range_isvalid
+ffffffff81464ff0 t mls_context_isvalid
+ffffffff814650a0 t mls_context_to_sid
+ffffffff814653c0 t mls_context_cpy
+ffffffff81465430 t mls_from_string
+ffffffff814654a0 t mls_range_set
+ffffffff814654f0 t mls_setup_user_range
+ffffffff814656c0 t mls_convert_context
+ffffffff814658e0 t mls_compute_sid
+ffffffff81465b80 t mls_context_cpy_low
+ffffffff81465c00 t mls_context_cpy_high
+ffffffff81465c80 t mls_context_glblub
+ffffffff81465d00 t context_compute_hash
+ffffffff81465de0 t ipv4_skb_to_auditdata
+ffffffff81465e90 t ipv6_skb_to_auditdata
+ffffffff81466080 t common_lsm_audit
+ffffffff81466890 t integrity_iint_find
+ffffffff81466900 t integrity_inode_get
+ffffffff81466a50 t integrity_inode_free
+ffffffff81466b20 t integrity_kernel_read
+ffffffff81466b70 t integrity_audit_msg
+ffffffff81466b90 t integrity_audit_message
+ffffffff81466d30 t crypto_mod_get
+ffffffff81466d90 t crypto_mod_put
+ffffffff81466de0 t crypto_larval_alloc
+ffffffff81466e90 t crypto_larval_destroy
+ffffffff81466f00 t crypto_larval_kill
+ffffffff81466fa0 t crypto_wait_for_test
+ffffffff81467020 t crypto_probing_notify
+ffffffff81467070 t crypto_alg_mod_lookup
+ffffffff81467350 t crypto_larval_wait
+ffffffff81467460 t crypto_shoot_alg
+ffffffff81467490 t __crypto_alloc_tfm
+ffffffff814675c0 t crypto_alloc_base
+ffffffff814676d0 t crypto_create_tfm_node
+ffffffff814677f0 t crypto_find_alg
+ffffffff81467820 t crypto_alloc_tfm_node
+ffffffff81467960 t crypto_destroy_tfm
+ffffffff81467a20 t crypto_has_alg
+ffffffff81467a90 t crypto_req_done
+ffffffff81467ab0 t crypto_alg_lookup
+ffffffff81467be0 t __crypto_alg_lookup
+ffffffff81467d80 t crypto_cipher_setkey
+ffffffff81467e70 t crypto_cipher_encrypt_one
+ffffffff81467f50 t crypto_cipher_decrypt_one
+ffffffff81468030 t crypto_comp_compress
+ffffffff81468050 t crypto_comp_decompress
+ffffffff81468070 t crypto_remove_spawns
+ffffffff81468350 t crypto_remove_instance
+ffffffff81468430 t crypto_alg_tested
+ffffffff81468630 t crypto_alg_finish_registration
+ffffffff81468770 t crypto_remove_final
+ffffffff81468810 t crypto_register_alg
+ffffffff814689b0 t __crypto_register_alg
+ffffffff81468ad0 t crypto_unregister_alg
+ffffffff81468c40 t crypto_register_algs
+ffffffff81468cd0 t crypto_unregister_algs
+ffffffff81468d10 t crypto_register_template
+ffffffff81468db0 t crypto_register_templates
+ffffffff81468ec0 t crypto_unregister_template
+ffffffff814690a0 t crypto_unregister_templates
+ffffffff814690f0 t crypto_lookup_template
+ffffffff814691f0 t crypto_register_instance
+ffffffff81469420 t crypto_unregister_instance
+ffffffff81469510 t crypto_grab_spawn
+ffffffff81469620 t crypto_drop_spawn
+ffffffff814696a0 t crypto_spawn_tfm
+ffffffff81469710 t crypto_spawn_alg
+ffffffff814697f0 t crypto_spawn_tfm2
+ffffffff81469840 t crypto_register_notifier
+ffffffff81469860 t crypto_unregister_notifier
+ffffffff81469880 t crypto_get_attr_type
+ffffffff814698d0 t crypto_check_attr_type
+ffffffff81469940 t crypto_attr_alg_name
+ffffffff81469990 t crypto_inst_setname
+ffffffff81469a10 t crypto_init_queue
+ffffffff81469a30 t crypto_enqueue_request
+ffffffff81469ab0 t crypto_enqueue_request_head
+ffffffff81469b00 t crypto_dequeue_request
+ffffffff81469b70 t crypto_inc
+ffffffff81469bc0 t crypto_alg_extsize
+ffffffff81469be0 t crypto_type_has_alg
+ffffffff81469c10 t crypto_destroy_instance
+ffffffff81469c30 t scatterwalk_copychunks
+ffffffff81469da0 t scatterwalk_map_and_copy
+ffffffff81469f30 t scatterwalk_ffwd
+ffffffff81469ff0 t c_start.llvm.2359588137057508239
+ffffffff8146a020 t c_stop.llvm.2359588137057508239
+ffffffff8146a040 t c_next.llvm.2359588137057508239
+ffffffff8146a060 t c_show.llvm.2359588137057508239
+ffffffff8146a210 t crypto_aead_setkey
+ffffffff8146a2f0 t crypto_aead_setauthsize
+ffffffff8146a350 t crypto_aead_encrypt
+ffffffff8146a380 t crypto_aead_decrypt
+ffffffff8146a3c0 t crypto_grab_aead
+ffffffff8146a3e0 t crypto_alloc_aead
+ffffffff8146a410 t crypto_register_aead
+ffffffff8146a470 t crypto_unregister_aead
+ffffffff8146a490 t crypto_register_aeads
+ffffffff8146a580 t crypto_unregister_aeads
+ffffffff8146a5d0 t aead_register_instance
+ffffffff8146a640 t crypto_aead_init_tfm.llvm.14561954872809239465
+ffffffff8146a690 t crypto_aead_show.llvm.14561954872809239465
+ffffffff8146a730 t crypto_aead_report.llvm.14561954872809239465
+ffffffff8146a7f0 t crypto_aead_free_instance.llvm.14561954872809239465
+ffffffff8146a810 t crypto_aead_exit_tfm
+ffffffff8146a830 t aead_geniv_alloc
+ffffffff8146a9e0 t aead_geniv_setkey
+ffffffff8146aa00 t aead_geniv_setauthsize
+ffffffff8146aa20 t aead_geniv_free
+ffffffff8146aa50 t aead_init_geniv
+ffffffff8146ab00 t aead_exit_geniv
+ffffffff8146ab20 t skcipher_walk_done
+ffffffff8146ace0 t skcipher_done_slow
+ffffffff8146ad30 t skcipher_walk_next
+ffffffff8146afe0 t skcipher_walk_complete
+ffffffff8146b150 t skcipher_walk_virt
+ffffffff8146b1a0 t skcipher_walk_skcipher
+ffffffff8146b340 t skcipher_walk_async
+ffffffff8146b370 t skcipher_walk_aead_encrypt
+ffffffff8146b390 t skcipher_walk_aead_common
+ffffffff8146b5b0 t skcipher_walk_aead_decrypt
+ffffffff8146b5d0 t crypto_skcipher_setkey
+ffffffff8146b6c0 t crypto_skcipher_encrypt
+ffffffff8146b6f0 t crypto_skcipher_decrypt
+ffffffff8146b720 t crypto_grab_skcipher
+ffffffff8146b740 t crypto_alloc_skcipher
+ffffffff8146b770 t crypto_alloc_sync_skcipher
+ffffffff8146b7d0 t crypto_has_skcipher
+ffffffff8146b7f0 t crypto_register_skcipher
+ffffffff8146b860 t crypto_unregister_skcipher
+ffffffff8146b880 t crypto_register_skciphers
+ffffffff8146b980 t crypto_unregister_skciphers
+ffffffff8146b9d0 t skcipher_register_instance
+ffffffff8146ba50 t skcipher_alloc_instance_simple
+ffffffff8146bbc0 t skcipher_free_instance_simple
+ffffffff8146bbf0 t skcipher_setkey_simple
+ffffffff8146bc20 t skcipher_init_tfm_simple
+ffffffff8146bc60 t skcipher_exit_tfm_simple
+ffffffff8146bc80 t skcipher_next_slow
+ffffffff8146bdd0 t skcipher_next_copy
+ffffffff8146bf00 t crypto_skcipher_init_tfm.llvm.6977713391590303700
+ffffffff8146bf50 t crypto_skcipher_show.llvm.6977713391590303700
+ffffffff8146c010 t crypto_skcipher_report.llvm.6977713391590303700
+ffffffff8146c0d0 t crypto_skcipher_free_instance.llvm.6977713391590303700
+ffffffff8146c0f0 t crypto_skcipher_exit_tfm
+ffffffff8146c110 t seqiv_aead_create
+ffffffff8146c1a0 t seqiv_aead_encrypt
+ffffffff8146c3c0 t seqiv_aead_decrypt
+ffffffff8146c460 t seqiv_aead_encrypt_complete
+ffffffff8146c4c0 t seqiv_aead_encrypt_complete2
+ffffffff8146c510 t echainiv_aead_create
+ffffffff8146c5a0 t echainiv_encrypt
+ffffffff8146c760 t echainiv_decrypt
+ffffffff8146c800 t crypto_hash_walk_done
+ffffffff8146c9e0 t crypto_hash_walk_first
+ffffffff8146cae0 t crypto_ahash_setkey
+ffffffff8146cbc0 t crypto_ahash_final
+ffffffff8146cbe0 t crypto_ahash_op
+ffffffff8146cd10 t crypto_ahash_finup
+ffffffff8146cd30 t crypto_ahash_digest
+ffffffff8146cd60 t crypto_grab_ahash
+ffffffff8146cd80 t crypto_alloc_ahash
+ffffffff8146cdb0 t crypto_has_ahash
+ffffffff8146cdd0 t crypto_register_ahash
+ffffffff8146ce20 t crypto_unregister_ahash
+ffffffff8146ce40 t crypto_register_ahashes
+ffffffff8146cf20 t crypto_unregister_ahashes
+ffffffff8146cf70 t ahash_register_instance
+ffffffff8146cfd0 t crypto_hash_alg_has_setkey
+ffffffff8146d010 t ahash_nosetkey
+ffffffff8146d020 t ahash_op_unaligned_done
+ffffffff8146d110 t crypto_ahash_extsize.llvm.2951577981208258516
+ffffffff8146d140 t crypto_ahash_init_tfm.llvm.2951577981208258516
+ffffffff8146d210 t crypto_ahash_show.llvm.2951577981208258516
+ffffffff8146d280 t crypto_ahash_report.llvm.2951577981208258516
+ffffffff8146d350 t crypto_ahash_free_instance.llvm.2951577981208258516
+ffffffff8146d370 t ahash_def_finup
+ffffffff8146d4c0 t crypto_ahash_exit_tfm
+ffffffff8146d4e0 t ahash_def_finup_done1
+ffffffff8146d620 t ahash_def_finup_done2
+ffffffff8146d6a0 t crypto_shash_alg_has_setkey
+ffffffff8146d6c0 t shash_no_setkey.llvm.7515470798978635269
+ffffffff8146d6d0 t crypto_shash_setkey
+ffffffff8146d7c0 t crypto_shash_update
+ffffffff8146d970 t crypto_shash_final
+ffffffff8146dae0 t crypto_shash_finup
+ffffffff8146db20 t shash_finup_unaligned
+ffffffff8146de30 t crypto_shash_digest
+ffffffff8146ded0 t shash_digest_unaligned
+ffffffff8146df50 t crypto_shash_tfm_digest
+ffffffff8146e070 t shash_ahash_update
+ffffffff8146e2b0 t shash_ahash_finup
+ffffffff8146e6a0 t shash_ahash_digest
+ffffffff8146e820 t crypto_init_shash_ops_async
+ffffffff8146e8f0 t crypto_exit_shash_ops_async
+ffffffff8146e910 t shash_async_init
+ffffffff8146e950 t shash_async_update
+ffffffff8146e970 t shash_async_final
+ffffffff8146eae0 t shash_async_finup
+ffffffff8146eb00 t shash_async_digest
+ffffffff8146eb20 t shash_async_setkey
+ffffffff8146ec10 t shash_async_export
+ffffffff8146ec40 t shash_async_import
+ffffffff8146ec80 t crypto_grab_shash
+ffffffff8146eca0 t crypto_alloc_shash
+ffffffff8146ecd0 t crypto_has_shash
+ffffffff8146ecf0 t crypto_register_shash
+ffffffff8146edc0 t crypto_unregister_shash
+ffffffff8146ede0 t crypto_register_shashes
+ffffffff8146ef60 t crypto_unregister_shashes
+ffffffff8146efb0 t shash_register_instance
+ffffffff8146f090 t shash_free_singlespawn_instance
+ffffffff8146f0c0 t crypto_shash_init_tfm.llvm.7515470798978635269
+ffffffff8146f160 t crypto_shash_show.llvm.7515470798978635269
+ffffffff8146f1b0 t crypto_shash_report.llvm.7515470798978635269
+ffffffff8146f280 t crypto_shash_free_instance.llvm.7515470798978635269
+ffffffff8146f2a0 t crypto_shash_exit_tfm
+ffffffff8146f2c0 t shash_default_export
+ffffffff8146f2f0 t shash_default_import
+ffffffff8146f310 t crypto_grab_akcipher
+ffffffff8146f330 t crypto_alloc_akcipher
+ffffffff8146f360 t crypto_register_akcipher
+ffffffff8146f400 t akcipher_default_op
+ffffffff8146f410 t akcipher_default_set_key
+ffffffff8146f420 t crypto_unregister_akcipher
+ffffffff8146f440 t akcipher_register_instance
+ffffffff8146f490 t crypto_akcipher_init_tfm
+ffffffff8146f4d0 t crypto_akcipher_show
+ffffffff8146f4f0 t crypto_akcipher_report
+ffffffff8146f5a0 t crypto_akcipher_free_instance
+ffffffff8146f5c0 t crypto_akcipher_exit_tfm
+ffffffff8146f5e0 t crypto_alloc_kpp
+ffffffff8146f610 t crypto_grab_kpp
+ffffffff8146f630 t crypto_has_kpp
+ffffffff8146f650 t crypto_register_kpp
+ffffffff8146f680 t crypto_unregister_kpp
+ffffffff8146f6a0 t kpp_register_instance
+ffffffff8146f6f0 t crypto_kpp_init_tfm
+ffffffff8146f730 t crypto_kpp_show
+ffffffff8146f750 t crypto_kpp_report
+ffffffff8146f800 t crypto_kpp_free_instance
+ffffffff8146f820 t crypto_kpp_exit_tfm
+ffffffff8146f840 t crypto_alloc_acomp
+ffffffff8146f870 t crypto_alloc_acomp_node
+ffffffff8146f890 t acomp_request_alloc
+ffffffff8146f8e0 t acomp_request_free
+ffffffff8146f940 t crypto_register_acomp
+ffffffff8146f970 t crypto_unregister_acomp
+ffffffff8146f990 t crypto_register_acomps
+ffffffff8146fa50 t crypto_unregister_acomps
+ffffffff8146faa0 t crypto_acomp_extsize
+ffffffff8146fad0 t crypto_acomp_init_tfm
+ffffffff8146fb50 t crypto_acomp_show
+ffffffff8146fb70 t crypto_acomp_report
+ffffffff8146fc20 t crypto_acomp_exit_tfm
+ffffffff8146fc40 t crypto_init_scomp_ops_async
+ffffffff8146fcd0 t crypto_exit_scomp_ops_async
+ffffffff8146fd80 t scomp_acomp_compress
+ffffffff8146fda0 t scomp_acomp_decompress
+ffffffff8146fdc0 t crypto_acomp_scomp_alloc_ctx
+ffffffff8146fe10 t crypto_acomp_scomp_free_ctx
+ffffffff8146fe40 t crypto_register_scomp
+ffffffff8146fe70 t crypto_unregister_scomp
+ffffffff8146fe90 t crypto_register_scomps
+ffffffff8146ff50 t crypto_unregister_scomps
+ffffffff8146ffa0 t scomp_acomp_comp_decomp
+ffffffff814700d0 t crypto_scomp_init_tfm
+ffffffff81470220 t crypto_scomp_show
+ffffffff81470240 t crypto_scomp_report
+ffffffff814702f0 t cryptomgr_notify
+ffffffff81470590 t cryptomgr_probe
+ffffffff81470620 t crypto_alg_put
+ffffffff81470670 t alg_test
+ffffffff81470680 t hmac_create
+ffffffff81470890 t hmac_init
+ffffffff814708f0 t hmac_update
+ffffffff81470910 t hmac_final
+ffffffff814709b0 t hmac_finup
+ffffffff81470a50 t hmac_export
+ffffffff81470a80 t hmac_import
+ffffffff81470ae0 t hmac_setkey
+ffffffff81470d50 t hmac_init_tfm
+ffffffff81470dc0 t hmac_exit_tfm
+ffffffff81470e00 t xcbc_create
+ffffffff81470fd0 t xcbc_init_tfm
+ffffffff81471010 t xcbc_exit_tfm
+ffffffff81471030 t crypto_xcbc_digest_init
+ffffffff81471070 t crypto_xcbc_digest_update
+ffffffff81471190 t crypto_xcbc_digest_final
+ffffffff81471270 t crypto_xcbc_digest_setkey
+ffffffff81471340 t crypto_get_default_null_skcipher
+ffffffff814713a0 t crypto_put_default_null_skcipher
+ffffffff814713f0 t null_setkey
+ffffffff81471400 t null_crypt
+ffffffff81471410 t null_compress
+ffffffff81471440 t null_init
+ffffffff81471450 t null_update
+ffffffff81471460 t null_final
+ffffffff81471470 t null_digest
+ffffffff81471480 t null_hash_setkey
+ffffffff81471490 t null_skcipher_setkey
+ffffffff814714a0 t null_skcipher_crypt
+ffffffff81471560 t md5_init
+ffffffff814715a0 t md5_update
+ffffffff814716a0 t md5_final
+ffffffff814717a0 t md5_export
+ffffffff814717d0 t md5_import
+ffffffff814717f0 t md5_transform
+ffffffff81471f30 t crypto_sha1_update
+ffffffff814721a0 t crypto_sha1_finup
+ffffffff81472430 t sha1_final
+ffffffff814726b0 t sha1_base_init
+ffffffff814726f0 t crypto_sha256_update
+ffffffff81472710 t crypto_sha256_finup
+ffffffff81472760 t crypto_sha256_final
+ffffffff81472790 t crypto_sha512_update
+ffffffff81472880 t sha512_generic_block_fn
+ffffffff814730e0 t crypto_sha512_finup
+ffffffff81473200 t sha512_final
+ffffffff81473350 t blake2b_compress_generic
+ffffffff81474c20 t crypto_blake2b_init
+ffffffff81474d40 t crypto_blake2b_update_generic
+ffffffff81474e40 t crypto_blake2b_final_generic
+ffffffff81474ed0 t crypto_blake2b_setkey
+ffffffff81474f10 t gf128mul_x8_ble
+ffffffff81474f50 t gf128mul_lle
+ffffffff814751f0 t gf128mul_bbe
+ffffffff81475470 t gf128mul_init_64k_bbe
+ffffffff814759e0 t gf128mul_free_64k
+ffffffff81475a90 t gf128mul_64k_bbe
+ffffffff81475c00 t gf128mul_init_4k_lle
+ffffffff81475e20 t gf128mul_init_4k_bbe
+ffffffff81476030 t gf128mul_4k_lle
+ffffffff814760b0 t gf128mul_4k_bbe
+ffffffff81476130 t crypto_cbc_create
+ffffffff814761c0 t crypto_cbc_encrypt
+ffffffff81476360 t crypto_cbc_decrypt
+ffffffff814765a0 t crypto_ctr_create
+ffffffff81476630 t crypto_rfc3686_create
+ffffffff81476820 t crypto_ctr_crypt
+ffffffff81476ac0 t crypto_rfc3686_setkey
+ffffffff81476b10 t crypto_rfc3686_crypt
+ffffffff81476ba0 t crypto_rfc3686_init_tfm
+ffffffff81476be0 t crypto_rfc3686_exit_tfm
+ffffffff81476c00 t crypto_rfc3686_free
+ffffffff81476c30 t crypto_xctr_create
+ffffffff81476cc0 t crypto_xctr_crypt
+ffffffff81477000 t hctr2_create_base
+ffffffff81477060 t hctr2_create
+ffffffff81477190 t hctr2_create_common
+ffffffff814775b0 t hctr2_setkey
+ffffffff81477820 t hctr2_encrypt
+ffffffff81477840 t hctr2_decrypt
+ffffffff81477860 t hctr2_init_tfm
+ffffffff81477940 t hctr2_exit_tfm
+ffffffff81477980 t hctr2_free_instance
+ffffffff814779c0 t hctr2_crypt
+ffffffff81477cc0 t hctr2_hash_message
+ffffffff81477e30 t hctr2_xctr_done
+ffffffff81477f30 t adiantum_create
+ffffffff81478230 t adiantum_supported_algorithms
+ffffffff814782c0 t adiantum_setkey
+ffffffff81478490 t adiantum_encrypt
+ffffffff814784b0 t adiantum_decrypt
+ffffffff814784d0 t adiantum_init_tfm
+ffffffff814785a0 t adiantum_exit_tfm
+ffffffff814785e0 t adiantum_free_instance
+ffffffff81478620 t adiantum_crypt
+ffffffff81478810 t adiantum_hash_message
+ffffffff81478980 t adiantum_streamcipher_done
+ffffffff814789b0 t adiantum_finish
+ffffffff81478a90 t crypto_nhpoly1305_setkey
+ffffffff81478b00 t crypto_nhpoly1305_init
+ffffffff81478b30 t crypto_nhpoly1305_update_helper
+ffffffff81478ec0 t crypto_nhpoly1305_update
+ffffffff81479250 t nh_generic
+ffffffff814793a0 t crypto_nhpoly1305_final_helper
+ffffffff814795b0 t crypto_nhpoly1305_final
+ffffffff814797c0 t crypto_gcm_base_create
+ffffffff81479820 t crypto_gcm_create
+ffffffff81479950 t crypto_rfc4106_create
+ffffffff81479b40 t crypto_rfc4543_create
+ffffffff81479d30 t crypto_gcm_create_common
+ffffffff81479fe0 t crypto_gcm_init_tfm
+ffffffff8147a080 t crypto_gcm_exit_tfm
+ffffffff8147a0b0 t crypto_gcm_setkey
+ffffffff8147a220 t crypto_gcm_setauthsize
+ffffffff8147a250 t crypto_gcm_encrypt
+ffffffff8147a3e0 t crypto_gcm_decrypt
+ffffffff8147a4c0 t crypto_gcm_free
+ffffffff8147a4f0 t crypto_gcm_init_common
+ffffffff8147a6c0 t gcm_encrypt_done
+ffffffff8147a7c0 t gcm_enc_copy_hash
+ffffffff8147a820 t gcm_hash_init_done
+ffffffff8147a860 t gcm_hash_init_continue
+ffffffff8147a980 t gcm_hash_assoc_done
+ffffffff8147aa40 t gcm_hash_assoc_remain_continue
+ffffffff8147aba0 t gcm_hash_assoc_remain_done
+ffffffff8147abe0 t gcm_hash_crypt_done
+ffffffff8147ac20 t gcm_hash_crypt_continue
+ffffffff8147ae20 t gcm_hash_crypt_remain_done
+ffffffff8147af30 t gcm_hash_len_done
+ffffffff8147af90 t gcm_dec_hash_continue
+ffffffff8147b0b0 t gcm_decrypt_done
+ffffffff8147b150 t crypto_rfc4106_init_tfm
+ffffffff8147b1a0 t crypto_rfc4106_exit_tfm
+ffffffff8147b1c0 t crypto_rfc4106_setkey
+ffffffff8147b210 t crypto_rfc4106_setauthsize
+ffffffff8147b240 t crypto_rfc4106_encrypt
+ffffffff8147b270 t crypto_rfc4106_decrypt
+ffffffff8147b2a0 t crypto_rfc4106_free
+ffffffff8147b2d0 t crypto_rfc4106_crypt
+ffffffff8147b530 t crypto_rfc4543_init_tfm
+ffffffff8147b5b0 t crypto_rfc4543_exit_tfm
+ffffffff8147b5d0 t crypto_rfc4543_setkey
+ffffffff8147b620 t crypto_rfc4543_setauthsize
+ffffffff8147b650 t crypto_rfc4543_encrypt
+ffffffff8147b680 t crypto_rfc4543_decrypt
+ffffffff8147b6b0 t crypto_rfc4543_free
+ffffffff8147b6e0 t crypto_rfc4543_crypt
+ffffffff8147b8b0 t rfc7539_create
+ffffffff8147b8d0 t rfc7539esp_create
+ffffffff8147b8f0 t chachapoly_create
+ffffffff8147bb80 t chachapoly_init
+ffffffff8147bc30 t chachapoly_exit
+ffffffff8147bc60 t chachapoly_encrypt
+ffffffff8147bd80 t chachapoly_decrypt
+ffffffff8147bdb0 t chachapoly_setkey
+ffffffff8147be20 t chachapoly_setauthsize
+ffffffff8147be40 t chachapoly_free
+ffffffff8147be70 t chacha_encrypt_done
+ffffffff8147beb0 t poly_genkey
+ffffffff8147c000 t poly_genkey_done
+ffffffff8147c040 t poly_init
+ffffffff8147c1a0 t poly_init_done
+ffffffff8147c2e0 t poly_setkey_done
+ffffffff8147c390 t poly_ad_done
+ffffffff8147c3d0 t poly_adpad
+ffffffff8147c520 t poly_adpad_done
+ffffffff8147c5f0 t poly_cipher_done
+ffffffff8147c630 t poly_cipherpad
+ffffffff8147c790 t poly_cipherpad_done
+ffffffff8147c880 t poly_tail_done
+ffffffff8147c8c0 t poly_tail_continue
+ffffffff8147ca80 t chacha_decrypt_done
+ffffffff8147cb50 t cryptd_alloc_skcipher
+ffffffff8147ccb0 t cryptd_skcipher_child
+ffffffff8147ccc0 t cryptd_skcipher_queued
+ffffffff8147cce0 t cryptd_free_skcipher
+ffffffff8147cd20 t cryptd_alloc_ahash
+ffffffff8147ce80 t cryptd_ahash_child
+ffffffff8147ce90 t cryptd_shash_desc
+ffffffff8147cea0 t cryptd_ahash_queued
+ffffffff8147cec0 t cryptd_free_ahash
+ffffffff8147cf00 t cryptd_alloc_aead
+ffffffff8147d060 t cryptd_aead_child
+ffffffff8147d070 t cryptd_aead_queued
+ffffffff8147d090 t cryptd_free_aead
+ffffffff8147d0d0 t cryptd_fini_queue
+ffffffff8147d140 t cryptd_create
+ffffffff8147d670 t cryptd_skcipher_init_tfm
+ffffffff8147d6b0 t cryptd_skcipher_exit_tfm
+ffffffff8147d6d0 t cryptd_skcipher_setkey
+ffffffff8147d710 t cryptd_skcipher_encrypt_enqueue
+ffffffff8147d750 t cryptd_skcipher_decrypt_enqueue
+ffffffff8147d790 t cryptd_skcipher_free
+ffffffff8147d7c0 t cryptd_skcipher_encrypt
+ffffffff8147d8d0 t cryptd_enqueue_request
+ffffffff8147d980 t cryptd_skcipher_decrypt
+ffffffff8147da90 t cryptd_hash_init_tfm
+ffffffff8147dad0 t cryptd_hash_exit_tfm
+ffffffff8147daf0 t cryptd_hash_init_enqueue
+ffffffff8147db30 t cryptd_hash_update_enqueue
+ffffffff8147db70 t cryptd_hash_final_enqueue
+ffffffff8147dbb0 t cryptd_hash_finup_enqueue
+ffffffff8147dbf0 t cryptd_hash_export
+ffffffff8147dc20 t cryptd_hash_import
+ffffffff8147dc60 t cryptd_hash_setkey
+ffffffff8147dca0 t cryptd_hash_digest_enqueue
+ffffffff8147dce0 t cryptd_hash_free
+ffffffff8147dd10 t cryptd_hash_init
+ffffffff8147dde0 t cryptd_hash_update
+ffffffff8147de80 t cryptd_hash_final
+ffffffff8147df30 t cryptd_hash_finup
+ffffffff8147dfd0 t cryptd_hash_digest
+ffffffff8147e080 t cryptd_aead_init_tfm
+ffffffff8147e0c0 t cryptd_aead_exit_tfm
+ffffffff8147e0e0 t cryptd_aead_setkey
+ffffffff8147e100 t cryptd_aead_setauthsize
+ffffffff8147e120 t cryptd_aead_encrypt_enqueue
+ffffffff8147e160 t cryptd_aead_decrypt_enqueue
+ffffffff8147e1a0 t cryptd_aead_free
+ffffffff8147e1d0 t cryptd_aead_encrypt
+ffffffff8147e280 t cryptd_aead_decrypt
+ffffffff8147e330 t cryptd_queue_worker
+ffffffff8147e3c0 t des_setkey
+ffffffff8147e490 t crypto_des_encrypt
+ffffffff8147e4b0 t crypto_des_decrypt
+ffffffff8147e4d0 t des3_ede_setkey
+ffffffff8147e530 t crypto_des3_ede_encrypt
+ffffffff8147e550 t crypto_des3_ede_decrypt
+ffffffff8147e570 t crypto_aes_set_key
+ffffffff8147e590 t crypto_aes_encrypt
+ffffffff8147f2b0 t crypto_aes_decrypt
+ffffffff81480020 t chacha20_setkey
+ffffffff81480070 t crypto_chacha_crypt
+ffffffff81480090 t crypto_xchacha_crypt
+ffffffff814801d0 t chacha12_setkey
+ffffffff81480220 t chacha_stream_xor
+ffffffff814803a0 t crypto_poly1305_init
+ffffffff814803e0 t crypto_poly1305_update
+ffffffff814804f0 t crypto_poly1305_final
+ffffffff81480520 t poly1305_blocks
+ffffffff81480590 t crypto_poly1305_setdesckey
+ffffffff81480610 t deflate_compress
+ffffffff814806a0 t deflate_decompress
+ffffffff814807a0 t deflate_init
+ffffffff814807c0 t deflate_exit
+ffffffff81480800 t __deflate_init
+ffffffff814808f0 t deflate_alloc_ctx
+ffffffff81480950 t deflate_free_ctx
+ffffffff81480990 t deflate_scompress
+ffffffff81480a10 t deflate_sdecompress
+ffffffff81480b00 t zlib_deflate_alloc_ctx
+ffffffff81480b60 t chksum_init
+ffffffff81480b80 t chksum_update
+ffffffff81480ba0 t chksum_final
+ffffffff81480bc0 t chksum_finup
+ffffffff81480be0 t chksum_digest
+ffffffff81480c10 t chksum_setkey
+ffffffff81480c30 t crc32c_cra_init
+ffffffff81480c50 t crypto_authenc_extractkeys
+ffffffff81480cb0 t crypto_authenc_create
+ffffffff81480f10 t crypto_authenc_init_tfm
+ffffffff81480fe0 t crypto_authenc_exit_tfm
+ffffffff81481010 t crypto_authenc_setkey
+ffffffff81481130 t crypto_authenc_encrypt
+ffffffff81481360 t crypto_authenc_decrypt
+ffffffff81481420 t crypto_authenc_free
+ffffffff81481460 t crypto_authenc_encrypt_done
+ffffffff81481550 t authenc_geniv_ahash_done
+ffffffff814815b0 t authenc_verify_ahash_done
+ffffffff814815f0 t crypto_authenc_decrypt_tail
+ffffffff81481700 t crypto_authenc_esn_create
+ffffffff81481950 t crypto_authenc_esn_init_tfm
+ffffffff81481a30 t crypto_authenc_esn_exit_tfm
+ffffffff81481a60 t crypto_authenc_esn_setkey
+ffffffff81481b60 t crypto_authenc_esn_setauthsize
+ffffffff81481b80 t crypto_authenc_esn_encrypt
+ffffffff81481d30 t crypto_authenc_esn_decrypt
+ffffffff81481f80 t crypto_authenc_esn_free
+ffffffff81481fc0 t crypto_authenc_esn_encrypt_done
+ffffffff81482000 t crypto_authenc_esn_genicv
+ffffffff81482220 t authenc_esn_geniv_ahash_done
+ffffffff81482330 t authenc_esn_verify_ahash_done
+ffffffff81482370 t crypto_authenc_esn_decrypt_tail
+ffffffff81482510 t lzo_compress
+ffffffff81482580 t lzo_decompress
+ffffffff814825f0 t lzo_init
+ffffffff81482640 t lzo_exit
+ffffffff81482660 t lzo_alloc_ctx
+ffffffff81482690 t lzo_free_ctx
+ffffffff814826b0 t lzo_scompress
+ffffffff81482720 t lzo_sdecompress
+ffffffff81482790 t lzorle_compress
+ffffffff81482800 t lzorle_decompress
+ffffffff81482870 t lzorle_init
+ffffffff814828c0 t lzorle_exit
+ffffffff814828e0 t lzorle_alloc_ctx
+ffffffff81482910 t lzorle_free_ctx
+ffffffff81482930 t lzorle_scompress
+ffffffff814829a0 t lzorle_sdecompress
+ffffffff81482a10 t lz4_compress_crypto
+ffffffff81482a50 t lz4_decompress_crypto
+ffffffff81482a80 t lz4_init
+ffffffff81482ac0 t lz4_exit
+ffffffff81482ae0 t lz4_alloc_ctx
+ffffffff81482b10 t lz4_free_ctx
+ffffffff81482b30 t lz4_scompress
+ffffffff81482b70 t lz4_sdecompress
+ffffffff81482ba0 t crypto_rng_reset
+ffffffff81482c30 t crypto_alloc_rng
+ffffffff81482c60 t crypto_get_default_rng
+ffffffff81482d70 t crypto_put_default_rng
+ffffffff81482da0 t crypto_del_default_rng
+ffffffff81482e00 t crypto_register_rng
+ffffffff81482e40 t crypto_unregister_rng
+ffffffff81482e60 t crypto_register_rngs
+ffffffff81482f40 t crypto_unregister_rngs
+ffffffff81482f90 t crypto_rng_init_tfm.llvm.6640369945595925547
+ffffffff81482fa0 t crypto_rng_show.llvm.6640369945595925547
+ffffffff81482fe0 t crypto_rng_report.llvm.6640369945595925547
+ffffffff814830a0 t cprng_get_random
+ffffffff81483250 t cprng_reset
+ffffffff81483380 t cprng_init
+ffffffff814834b0 t cprng_exit
+ffffffff814834d0 t _get_more_prng_bytes
+ffffffff81483b00 t drbg_kcapi_init
+ffffffff81483b30 t drbg_kcapi_cleanup
+ffffffff81483c00 t drbg_kcapi_random
+ffffffff814840a0 t drbg_kcapi_seed
+ffffffff814845c0 t drbg_kcapi_set_entropy
+ffffffff81484620 t drbg_seed
+ffffffff814849a0 t drbg_hmac_update
+ffffffff81484d70 t drbg_hmac_generate
+ffffffff81484fa0 t drbg_init_hash_kernel
+ffffffff81485070 t drbg_fini_hash_kernel
+ffffffff814850b0 t jent_read_entropy
+ffffffff814851f0 t jent_gen_entropy
+ffffffff81485280 t jent_health_failure
+ffffffff814852b0 t jent_rct_failure
+ffffffff814852f0 t jent_entropy_init
+ffffffff814856a0 t jent_apt_reset
+ffffffff814856e0 t jent_entropy_collector_alloc
+ffffffff814857b0 t jent_entropy_collector_free
+ffffffff814857f0 t jent_lfsr_time
+ffffffff81485990 t jent_delta
+ffffffff814859e0 t jent_stuck
+ffffffff81485aa0 t jent_measure_jitter
+ffffffff81485b60 t jent_memaccess
+ffffffff81485c80 t jent_loop_shuffle
+ffffffff81485d90 t jent_apt_insert
+ffffffff81485e40 t jent_rct_insert
+ffffffff81485ec0 t jent_zalloc
+ffffffff81485ee0 t jent_zfree
+ffffffff81485ef0 t jent_panic
+ffffffff81485f10 t jent_memcpy
+ffffffff81485f30 t jent_get_nstime
+ffffffff81485f60 t jent_kcapi_random
+ffffffff81486030 t jent_kcapi_reset
+ffffffff81486040 t jent_kcapi_init
+ffffffff81486080 t jent_kcapi_cleanup
+ffffffff814860c0 t ghash_init
+ffffffff814860f0 t ghash_update
+ffffffff814862b0 t ghash_final
+ffffffff81486310 t ghash_setkey
+ffffffff814863b0 t ghash_exit_tfm
+ffffffff814863d0 t polyval_mul_non4k
+ffffffff81486480 t polyval_update_non4k
+ffffffff81486570 t polyval_init
+ffffffff814865a0 t polyval_update
+ffffffff81486780 t polyval_final
+ffffffff814867d0 t polyval_setkey
+ffffffff81486890 t polyval_exit_tfm
+ffffffff814868b0 t zstd_compress
+ffffffff81486970 t zstd_decompress
+ffffffff814869b0 t zstd_init
+ffffffff814869d0 t zstd_exit
+ffffffff81486a20 t __zstd_init
+ffffffff81486b40 t zstd_alloc_ctx
+ffffffff81486ba0 t zstd_free_ctx
+ffffffff81486bf0 t zstd_scompress
+ffffffff81486cb0 t zstd_sdecompress
+ffffffff81486cf0 t essiv_create
+ffffffff81487160 t parse_cipher_name
+ffffffff814871d0 t essiv_supported_algorithms
+ffffffff81487250 t essiv_skcipher_setkey
+ffffffff81487350 t essiv_skcipher_encrypt
+ffffffff814873d0 t essiv_skcipher_decrypt
+ffffffff81487450 t essiv_skcipher_init_tfm
+ffffffff81487520 t essiv_skcipher_exit_tfm
+ffffffff81487560 t essiv_skcipher_free_instance
+ffffffff81487590 t essiv_aead_setkey
+ffffffff81487740 t essiv_aead_setauthsize
+ffffffff81487760 t essiv_aead_encrypt
+ffffffff81487780 t essiv_aead_decrypt
+ffffffff814877a0 t essiv_aead_init_tfm
+ffffffff81487880 t essiv_aead_exit_tfm
+ffffffff814878c0 t essiv_aead_free_instance
+ffffffff814878f0 t essiv_skcipher_done
+ffffffff81487910 t essiv_aead_crypt
+ffffffff81487bb0 t sg_set_buf
+ffffffff81487c20 t essiv_aead_done
+ffffffff81487c60 t simd_skcipher_create_compat
+ffffffff81487e00 t simd_skcipher_init
+ffffffff81487e50 t simd_skcipher_exit
+ffffffff81487e70 t simd_skcipher_setkey
+ffffffff81487eb0 t simd_skcipher_encrypt
+ffffffff81487f30 t simd_skcipher_decrypt
+ffffffff81487fb0 t simd_skcipher_create
+ffffffff814880d0 t simd_skcipher_free
+ffffffff81488100 t simd_register_skciphers_compat
+ffffffff81488220 t simd_unregister_skciphers
+ffffffff81488290 t simd_aead_create_compat
+ffffffff81488430 t simd_aead_init
+ffffffff81488480 t simd_aead_exit
+ffffffff814884a0 t simd_aead_setkey
+ffffffff814884e0 t simd_aead_setauthsize
+ffffffff81488500 t simd_aead_encrypt
+ffffffff81488570 t simd_aead_decrypt
+ffffffff814885e0 t simd_aead_create
+ffffffff81488700 t simd_aead_free
+ffffffff81488730 t simd_register_aeads_compat
+ffffffff81488850 t simd_unregister_aeads
+ffffffff814888c0 t I_BDEV
+ffffffff814888e0 t invalidate_bdev
+ffffffff81488940 t truncate_bdev_range
+ffffffff81488a10 t bd_prepare_to_claim
+ffffffff81488b60 t bd_abort_claiming
+ffffffff81488bc0 t set_blocksize
+ffffffff81488d20 t sync_blockdev
+ffffffff81488d60 t sb_set_blocksize
+ffffffff81488db0 t sb_min_blocksize
+ffffffff81488e30 t sync_blockdev_nowait
+ffffffff81488e60 t sync_blockdev_range
+ffffffff81488e80 t fsync_bdev
+ffffffff81488ee0 t freeze_bdev
+ffffffff81488fb0 t thaw_bdev
+ffffffff81489060 t bdev_read_page
+ffffffff814890e0 t bdev_write_page
+ffffffff81489190 t bdev_alloc
+ffffffff81489260 t bdev_add
+ffffffff81489290 t nr_blockdev_pages
+ffffffff81489300 t bd_may_claim
+ffffffff81489350 t blkdev_get_no_open
+ffffffff814893f0 t blkdev_put_no_open
+ffffffff81489410 t blkdev_get_by_dev
+ffffffff81489730 t blkdev_get_whole
+ffffffff81489840 t blkdev_get_by_path
+ffffffff81489970 t lookup_bdev
+ffffffff81489a30 t blkdev_put
+ffffffff81489c00 t __invalidate_device
+ffffffff81489ca0 t sync_bdevs
+ffffffff81489e00 t bdev_statx_dioalign
+ffffffff81489e70 t bd_init_fs_context
+ffffffff81489eb0 t bdev_alloc_inode
+ffffffff81489f00 t bdev_free_inode
+ffffffff81489fa0 t bdev_evict_inode
+ffffffff81489fd0 t blkdev_flush_mapping
+ffffffff8148a0e0 t blkdev_writepage.llvm.3254752009659121140
+ffffffff8148a100 t blkdev_read_folio.llvm.3254752009659121140
+ffffffff8148a120 t blkdev_writepages.llvm.3254752009659121140
+ffffffff8148a130 t blkdev_readahead.llvm.3254752009659121140
+ffffffff8148a150 t blkdev_write_begin.llvm.3254752009659121140
+ffffffff8148a180 t blkdev_write_end.llvm.3254752009659121140
+ffffffff8148a1e0 t blkdev_direct_IO.llvm.3254752009659121140
+ffffffff8148a690 t blkdev_llseek.llvm.3254752009659121140
+ffffffff8148a6f0 t blkdev_read_iter.llvm.3254752009659121140
+ffffffff8148a830 t blkdev_write_iter.llvm.3254752009659121140
+ffffffff8148a980 t blkdev_open.llvm.3254752009659121140
+ffffffff8148aa10 t blkdev_close.llvm.3254752009659121140
+ffffffff8148aa30 t blkdev_fsync.llvm.3254752009659121140
+ffffffff8148aa60 t blkdev_fallocate.llvm.3254752009659121140
+ffffffff8148abf0 t blkdev_get_block
+ffffffff8148ac20 t __blkdev_direct_IO
+ffffffff8148b020 t blkdev_bio_end_io_async
+ffffffff8148b0a0 t blkdev_bio_end_io
+ffffffff8148b1a0 t generic_write_sync
+ffffffff8148b200 t bvec_free
+ffffffff8148b250 t biovec_slab
+ffffffff8148b290 t bvec_alloc
+ffffffff8148b310 t bio_uninit
+ffffffff8148b380 t bio_init
+ffffffff8148b440 t bio_reset
+ffffffff8148b550 t bio_chain
+ffffffff8148b580 t bio_chain_endio
+ffffffff8148b5b0 t blk_next_bio
+ffffffff8148b620 t bio_alloc_bioset
+ffffffff8148bbd0 t punt_bios_to_rescuer
+ffffffff8148bda0 t bio_kmalloc
+ffffffff8148bdd0 t zero_fill_bio
+ffffffff8148bec0 t guard_bio_eod
+ffffffff8148bf00 t bio_truncate
+ffffffff8148c0d0 t bio_put
+ffffffff8148c240 t bio_free
+ffffffff8148c330 t bio_alloc_clone
+ffffffff8148c3f0 t bio_init_clone
+ffffffff8148c590 t bio_add_hw_page
+ffffffff8148c760 t bio_add_pc_page
+ffffffff8148c7b0 t bio_add_zone_append_page
+ffffffff8148c840 t __bio_add_page
+ffffffff8148c8a0 t bio_add_page
+ffffffff8148c9e0 t bio_add_folio
+ffffffff8148ca10 t __bio_release_pages
+ffffffff8148cb30 t bio_iov_bvec_set
+ffffffff8148cba0 t bio_iov_iter_get_pages
+ffffffff8148d040 t submit_bio_wait
+ffffffff8148d100 t submit_bio_wait_endio
+ffffffff8148d120 t __bio_advance
+ffffffff8148d200 t bio_copy_data_iter
+ffffffff8148d3c0 t bio_copy_data
+ffffffff8148d430 t bio_free_pages
+ffffffff8148d4f0 t bio_set_pages_dirty
+ffffffff8148d5d0 t bio_check_pages_dirty
+ffffffff8148d7f0 t bio_endio
+ffffffff8148d970 t bio_split
+ffffffff8148da00 t bio_trim
+ffffffff8148da60 t biovec_init_pool
+ffffffff8148daa0 t bioset_exit
+ffffffff8148dc50 t bioset_init
+ffffffff8148df50 t bio_alloc_rescue
+ffffffff8148dfd0 t bio_dirty_fn
+ffffffff8148e040 t bio_cpu_dead
+ffffffff8148e0c0 t elv_bio_merge_ok
+ffffffff8148e110 t elevator_alloc
+ffffffff8148e190 t elevator_exit
+ffffffff8148e1f0 t elv_rqhash_del
+ffffffff8148e250 t elv_rqhash_add
+ffffffff8148e2c0 t elv_rqhash_reposition
+ffffffff8148e360 t elv_rqhash_find
+ffffffff8148e480 t elv_rb_add
+ffffffff8148e510 t elv_rb_del
+ffffffff8148e540 t elv_rb_find
+ffffffff8148e5a0 t elv_merge
+ffffffff8148e7e0 t elv_attempt_insert_merge
+ffffffff8148ea20 t elv_merged_request
+ffffffff8148eb00 t elv_merge_requests
+ffffffff8148ebc0 t elv_latter_request
+ffffffff8148ebf0 t elv_former_request
+ffffffff8148ec20 t elv_register_queue
+ffffffff8148ecd0 t elv_unregister_queue
+ffffffff8148ed20 t elv_register
+ffffffff8148eed0 t elv_unregister
+ffffffff8148ef50 t elevator_init_mq
+ffffffff8148f0a0 t elevator_switch
+ffffffff8148f240 t elv_iosched_store
+ffffffff8148f3a0 t elv_iosched_show
+ffffffff8148f520 t elv_rb_former_request
+ffffffff8148f550 t elv_rb_latter_request
+ffffffff8148f580 t elevator_release
+ffffffff8148f5a0 t elv_attr_show
+ffffffff8148f620 t elv_attr_store
+ffffffff8148f6a0 t elevator_get
+ffffffff8148f840 t __traceiter_block_touch_buffer
+ffffffff8148f890 t __traceiter_block_dirty_buffer
+ffffffff8148f8e0 t __traceiter_block_rq_requeue
+ffffffff8148f930 t __traceiter_block_rq_complete
+ffffffff8148f990 t __traceiter_block_rq_error
+ffffffff8148f9f0 t __traceiter_block_rq_insert
+ffffffff8148fa40 t __traceiter_block_rq_issue
+ffffffff8148fa90 t __traceiter_block_rq_merge
+ffffffff8148fae0 t __traceiter_block_bio_complete
+ffffffff8148fb30 t __traceiter_block_bio_bounce
+ffffffff8148fb80 t __traceiter_block_bio_backmerge
+ffffffff8148fbd0 t __traceiter_block_bio_frontmerge
+ffffffff8148fc20 t __traceiter_block_bio_queue
+ffffffff8148fc70 t __traceiter_block_getrq
+ffffffff8148fcc0 t __traceiter_block_plug
+ffffffff8148fd10 t __traceiter_block_unplug
+ffffffff8148fd70 t __traceiter_block_split
+ffffffff8148fdc0 t __traceiter_block_bio_remap
+ffffffff8148fe20 t __traceiter_block_rq_remap
+ffffffff8148fe80 t trace_event_raw_event_block_buffer
+ffffffff8148ff50 t perf_trace_block_buffer
+ffffffff81490060 t trace_event_raw_event_block_rq_requeue
+ffffffff814901a0 t perf_trace_block_rq_requeue
+ffffffff81490320 t trace_event_raw_event_block_rq_completion
+ffffffff81490470 t perf_trace_block_rq_completion
+ffffffff814905f0 t trace_event_raw_event_block_rq
+ffffffff81490750 t perf_trace_block_rq
+ffffffff814908f0 t trace_event_raw_event_block_bio_complete
+ffffffff81490a10 t perf_trace_block_bio_complete
+ffffffff81490b70 t trace_event_raw_event_block_bio
+ffffffff81490c90 t perf_trace_block_bio
+ffffffff81490df0 t trace_event_raw_event_block_plug
+ffffffff81490ec0 t perf_trace_block_plug
+ffffffff81490fd0 t trace_event_raw_event_block_unplug
+ffffffff814910a0 t perf_trace_block_unplug
+ffffffff814911b0 t trace_event_raw_event_block_split
+ffffffff814912d0 t perf_trace_block_split
+ffffffff81491430 t trace_event_raw_event_block_bio_remap
+ffffffff81491540 t perf_trace_block_bio_remap
+ffffffff81491690 t trace_event_raw_event_block_rq_remap
+ffffffff814917c0 t perf_trace_block_rq_remap
+ffffffff81491930 t blk_queue_flag_set
+ffffffff81491950 t blk_queue_flag_clear
+ffffffff81491970 t blk_queue_flag_test_and_set
+ffffffff81491990 t blk_op_str
+ffffffff814919d0 t errno_to_blk_status
+ffffffff81491b00 t blk_status_to_errno
+ffffffff81491b30 t blk_status_to_str
+ffffffff81491b80 t blk_sync_queue
+ffffffff81491bb0 t blk_set_pm_only
+ffffffff81491bc0 t blk_clear_pm_only
+ffffffff81491c00 t blk_put_queue
+ffffffff81491c20 t blk_queue_start_drain
+ffffffff81491c60 t blk_queue_enter
+ffffffff81491ec0 t __bio_queue_enter
+ffffffff81492130 t blk_queue_exit
+ffffffff81492180 t blk_alloc_queue
+ffffffff814923d0 t blk_rq_timed_out_timer
+ffffffff814923f0 t blk_timeout_work
+ffffffff81492400 t blk_queue_usage_counter_release
+ffffffff81492420 t blk_get_queue
+ffffffff81492450 t submit_bio_noacct_nocheck
+ffffffff81492770 t submit_bio_noacct
+ffffffff81492b40 t submit_bio
+ffffffff81492bb0 t bio_poll
+ffffffff81492cd0 t bio_queue_enter
+ffffffff81492d80 t iocb_bio_iopoll
+ffffffff81492dd0 t update_io_ticks
+ffffffff81492e60 t bdev_start_io_acct
+ffffffff81492fd0 t bio_start_io_acct_time
+ffffffff81493000 t bio_start_io_acct
+ffffffff81493030 t bdev_end_io_acct
+ffffffff81493180 t bio_end_io_acct_remapped
+ffffffff814931a0 t blk_lld_busy
+ffffffff814931d0 t kblockd_schedule_work
+ffffffff81493200 t kblockd_mod_delayed_work_on
+ffffffff81493220 t blk_start_plug_nr_ios
+ffffffff81493290 t blk_start_plug
+ffffffff814932f0 t blk_check_plugged
+ffffffff814933c0 t __blk_flush_plug
+ffffffff81493500 t blk_finish_plug
+ffffffff81493530 t blk_io_schedule
+ffffffff81493560 t trace_raw_output_block_buffer
+ffffffff814935d0 t trace_raw_output_block_rq_requeue
+ffffffff81493650 t trace_raw_output_block_rq_completion
+ffffffff814936d0 t trace_raw_output_block_rq
+ffffffff81493750 t trace_raw_output_block_bio_complete
+ffffffff814937c0 t trace_raw_output_block_bio
+ffffffff81493830 t trace_raw_output_block_plug
+ffffffff81493890 t trace_raw_output_block_unplug
+ffffffff814938f0 t trace_raw_output_block_split
+ffffffff81493960 t trace_raw_output_block_bio_remap
+ffffffff814939f0 t trace_raw_output_block_rq_remap
+ffffffff81493a80 t __submit_bio
+ffffffff81493b50 t blk_release_queue
+ffffffff81493c00 t blk_register_queue
+ffffffff81493da0 t blk_unregister_queue
+ffffffff81493eb0 t blk_free_queue_rcu
+ffffffff81493ef0 t queue_attr_show
+ffffffff81493f60 t queue_attr_store
+ffffffff81493fe0 t queue_attr_visible
+ffffffff81494040 t queue_io_timeout_show
+ffffffff81494070 t queue_io_timeout_store
+ffffffff814940f0 t queue_max_open_zones_show
+ffffffff81494130 t queue_max_active_zones_show
+ffffffff81494170 t queue_requests_show
+ffffffff814941a0 t queue_requests_store
+ffffffff81494250 t queue_ra_show
+ffffffff814942a0 t queue_ra_store
+ffffffff81494340 t queue_max_hw_sectors_show
+ffffffff81494370 t queue_max_sectors_show
+ffffffff814943a0 t queue_max_sectors_store
+ffffffff814944a0 t queue_max_segments_show
+ffffffff814944d0 t queue_max_discard_segments_show
+ffffffff81494500 t queue_max_integrity_segments_show
+ffffffff81494530 t queue_max_segment_size_show
+ffffffff81494560 t queue_logical_block_size_show
+ffffffff814945a0 t queue_physical_block_size_show
+ffffffff814945d0 t queue_chunk_sectors_show
+ffffffff81494600 t queue_io_min_show
+ffffffff81494630 t queue_io_opt_show
+ffffffff81494660 t queue_discard_granularity_show
+ffffffff81494690 t queue_discard_max_show
+ffffffff814946c0 t queue_discard_max_store
+ffffffff81494770 t queue_discard_max_hw_show
+ffffffff814947a0 t queue_discard_zeroes_data_show
+ffffffff814947c0 t queue_write_same_max_show
+ffffffff814947e0 t queue_write_zeroes_max_show
+ffffffff81494810 t queue_zone_append_max_show
+ffffffff81494840 t queue_zone_write_granularity_show
+ffffffff81494870 t queue_nonrot_show
+ffffffff814948a0 t queue_nonrot_store
+ffffffff81494940 t queue_zoned_show
+ffffffff814949c0 t queue_nr_zones_show
+ffffffff81494a00 t queue_nomerges_show
+ffffffff81494a40 t queue_nomerges_store
+ffffffff81494b00 t queue_rq_affinity_show
+ffffffff81494b40 t queue_rq_affinity_store
+ffffffff81494c20 t queue_iostats_show
+ffffffff81494c50 t queue_iostats_store
+ffffffff81494cf0 t queue_stable_writes_show
+ffffffff81494d20 t queue_stable_writes_store
+ffffffff81494dc0 t queue_random_show
+ffffffff81494df0 t queue_random_store
+ffffffff81494e90 t queue_poll_show
+ffffffff81494ec0 t queue_poll_store
+ffffffff81494f30 t queue_wc_show
+ffffffff81494f90 t queue_wc_store
+ffffffff81495020 t queue_fua_show
+ffffffff81495050 t queue_dax_show
+ffffffff81495080 t queue_wb_lat_show
+ffffffff814950d0 t queue_wb_lat_store
+ffffffff814951a0 t queue_poll_delay_show
+ffffffff814951f0 t queue_poll_delay_store
+ffffffff814952a0 t queue_virt_boundary_mask_show
+ffffffff814952d0 t queue_dma_alignment_show
+ffffffff81495300 t is_flush_rq
+ffffffff81495320 t flush_end_io.llvm.17044963160383364924
+ffffffff814955b0 t blk_insert_flush
+ffffffff81495700 t mq_flush_data_end_io
+ffffffff81495800 t blk_flush_complete_seq
+ffffffff81495af0 t blkdev_issue_flush
+ffffffff81495b70 t blk_alloc_flush_queue
+ffffffff81495c60 t blk_free_flush_queue
+ffffffff81495c90 t blk_mq_hctx_set_fq_lock_class
+ffffffff81495ca0 t blk_queue_rq_timeout
+ffffffff81495cc0 t blk_set_default_limits
+ffffffff81495d60 t blk_set_stacking_limits
+ffffffff81495e10 t blk_queue_bounce_limit
+ffffffff81495e30 t blk_queue_max_hw_sectors
+ffffffff81495ed0 t blk_queue_chunk_sectors
+ffffffff81495ef0 t blk_queue_max_discard_sectors
+ffffffff81495f10 t blk_queue_max_secure_erase_sectors
+ffffffff81495f30 t blk_queue_max_write_zeroes_sectors
+ffffffff81495f50 t blk_queue_max_zone_append_sectors
+ffffffff81495fa0 t blk_queue_max_segments
+ffffffff81495fe0 t blk_queue_max_discard_segments
+ffffffff81496000 t blk_queue_max_segment_size
+ffffffff81496060 t blk_queue_logical_block_size
+ffffffff814960b0 t blk_queue_physical_block_size
+ffffffff814960e0 t blk_queue_zone_write_granularity
+ffffffff81496120 t blk_queue_alignment_offset
+ffffffff81496150 t disk_update_readahead
+ffffffff814961a0 t blk_limits_io_min
+ffffffff814961c0 t blk_queue_io_min
+ffffffff814961f0 t blk_limits_io_opt
+ffffffff81496200 t blk_queue_io_opt
+ffffffff81496240 t blk_stack_limits
+ffffffff814966e0 t disk_stack_limits
+ffffffff81496770 t blk_queue_update_dma_pad
+ffffffff81496790 t blk_queue_segment_boundary
+ffffffff814967e0 t blk_queue_virt_boundary
+ffffffff81496810 t blk_queue_dma_alignment
+ffffffff81496830 t blk_queue_update_dma_alignment
+ffffffff81496860 t blk_set_queue_depth
+ffffffff81496880 t blk_queue_write_cache
+ffffffff814968d0 t blk_queue_required_elevator_features
+ffffffff814968f0 t blk_queue_can_use_dma_map_merging
+ffffffff81496930 t disk_set_zoned
+ffffffff81496a60 t bdev_alignment_offset
+ffffffff81496ae0 t bdev_discard_alignment
+ffffffff81496b60 t ioc_clear_queue
+ffffffff81496c40 t ioc_destroy_icq
+ffffffff81496d30 t put_io_context
+ffffffff81496db0 t exit_io_context
+ffffffff81496e60 t set_task_ioprio
+ffffffff81496f80 t alloc_io_context
+ffffffff81497010 t __copy_io
+ffffffff81497100 t ioc_lookup_icq
+ffffffff81497170 t ioc_find_get_icq
+ffffffff81497450 t icq_free_icq_rcu
+ffffffff81497470 t ioc_release_fn
+ffffffff81497530 t blk_rq_append_bio
+ffffffff81497630 t blk_rq_map_user_iov
+ffffffff81498280 t blk_rq_unmap_user
+ffffffff814984b0 t blk_rq_map_user
+ffffffff81498570 t blk_rq_map_user_io
+ffffffff81498800 t blk_rq_map_kern
+ffffffff81498c70 t bio_copy_kern_endio_read
+ffffffff81498d90 t bio_copy_kern_endio
+ffffffff81498dc0 t bio_map_kern_endio
+ffffffff81498de0 t __bio_split_to_limits
+ffffffff81499310 t bio_split_to_limits
+ffffffff814993a0 t blk_recalc_rq_segments
+ffffffff814995a0 t __blk_rq_map_sg
+ffffffff81499990 t ll_back_merge_fn
+ffffffff81499b50 t blk_rq_set_mixed_merge
+ffffffff81499bb0 t blk_attempt_req_merge
+ffffffff81499bd0 t attempt_merge.llvm.925315733715017380
+ffffffff81499d80 t blk_rq_merge_ok
+ffffffff81499e30 t blk_try_merge
+ffffffff81499e90 t blk_attempt_plug_merge
+ffffffff81499f20 t blk_attempt_bio_merge
+ffffffff8149a0e0 t blk_bio_list_merge
+ffffffff8149a170 t blk_mq_sched_try_merge
+ffffffff8149a330 t bio_attempt_back_merge
+ffffffff8149a490 t bio_attempt_front_merge
+ffffffff8149a7a0 t bio_attempt_discard_merge
+ffffffff8149a920 t bio_will_gap
+ffffffff8149aab0 t req_attempt_discard_merge
+ffffffff8149ac00 t ll_merge_requests_fn
+ffffffff8149adb0 t blk_account_io_merge_request
+ffffffff8149ae80 t trace_block_rq_merge
+ffffffff8149aee0 t blk_account_io_merge_bio
+ffffffff8149afb0 t blk_abort_request
+ffffffff8149aff0 t blk_rq_timeout
+ffffffff8149b030 t blk_add_timer
+ffffffff8149b0e0 t __blkdev_issue_discard
+ffffffff8149b270 t blkdev_issue_discard
+ffffffff8149b340 t __blkdev_issue_zeroout
+ffffffff8149b480 t __blkdev_issue_zero_pages
+ffffffff8149b600 t blkdev_issue_zeroout
+ffffffff8149b880 t blkdev_issue_secure_erase
+ffffffff8149ba10 t blk_mq_in_flight
+ffffffff8149ba70 t blk_mq_check_inflight
+ffffffff8149bac0 t blk_mq_in_flight_rw
+ffffffff8149bb20 t blk_freeze_queue_start
+ffffffff8149bb90 t blk_mq_run_hw_queues
+ffffffff8149bcb0 t blk_mq_freeze_queue_wait
+ffffffff8149bd80 t blk_mq_freeze_queue_wait_timeout
+ffffffff8149bee0 t blk_freeze_queue
+ffffffff8149bf50 t blk_mq_freeze_queue
+ffffffff8149bf60 t __blk_mq_unfreeze_queue
+ffffffff8149bff0 t blk_mq_unfreeze_queue
+ffffffff8149c070 t blk_mq_quiesce_queue_nowait
+ffffffff8149c0d0 t blk_mq_wait_quiesce_done
+ffffffff8149c100 t blk_mq_quiesce_queue
+ffffffff8149c180 t blk_mq_unquiesce_queue
+ffffffff8149c200 t blk_mq_wake_waiters
+ffffffff8149c2b0 t blk_rq_init
+ffffffff8149c350 t blk_mq_alloc_request
+ffffffff8149c530 t __blk_mq_alloc_requests
+ffffffff8149c7b0 t blk_mq_alloc_request_hctx
+ffffffff8149c9b0 t blk_mq_rq_ctx_init
+ffffffff8149cb20 t blk_mq_free_request
+ffffffff8149cc10 t __blk_mq_free_request
+ffffffff8149ccd0 t blk_mq_free_plug_rqs
+ffffffff8149cd00 t blk_dump_rq_flags
+ffffffff8149cde0 t blk_update_request
+ffffffff8149d120 t blk_print_req_error
+ffffffff8149d1e0 t trace_block_rq_error
+ffffffff8149d240 t blk_account_io_completion
+ffffffff8149d310 t __blk_mq_end_request
+ffffffff8149d400 t blk_mq_end_request
+ffffffff8149d440 t blk_mq_end_request_batch
+ffffffff8149d930 t blk_mq_complete_request_remote
+ffffffff8149dac0 t blk_mq_complete_request
+ffffffff8149daf0 t blk_mq_start_request
+ffffffff8149dbe0 t blk_execute_rq_nowait
+ffffffff8149dd00 t blk_add_rq_to_plug
+ffffffff8149de30 t blk_rq_is_poll
+ffffffff8149de60 t blk_execute_rq
+ffffffff8149e060 t blk_end_sync_rq
+ffffffff8149e080 t blk_mq_requeue_request
+ffffffff8149e170 t __blk_mq_requeue_request
+ffffffff8149e260 t blk_mq_add_to_requeue_list
+ffffffff8149e360 t blk_mq_kick_requeue_list
+ffffffff8149e390 t blk_mq_delay_kick_requeue_list
+ffffffff8149e3d0 t blk_mq_queue_inflight
+ffffffff8149e420 t blk_mq_rq_inflight
+ffffffff8149e440 t blk_mq_put_rq_ref
+ffffffff8149e4b0 t blk_mq_flush_busy_ctxs
+ffffffff8149e680 t blk_mq_dequeue_from_ctx
+ffffffff8149e8d0 t __blk_mq_get_driver_tag
+ffffffff8149e9b0 t blk_mq_dispatch_rq_list
+ffffffff8149f2a0 t blk_mq_run_hw_queue
+ffffffff8149f410 t blk_mq_delay_run_hw_queue
+ffffffff8149f430 t __blk_mq_delay_run_hw_queue.llvm.15173299718638778206
+ffffffff8149f570 t blk_mq_delay_run_hw_queues
+ffffffff8149f6a0 t blk_mq_stop_hw_queue
+ffffffff8149f6c0 t blk_mq_stop_hw_queues
+ffffffff8149f770 t blk_mq_start_hw_queue
+ffffffff8149f790 t blk_mq_start_hw_queues
+ffffffff8149f830 t blk_mq_start_stopped_hw_queue
+ffffffff8149f860 t blk_mq_start_stopped_hw_queues
+ffffffff8149f920 t __blk_mq_insert_request
+ffffffff8149faa0 t blk_mq_request_bypass_insert
+ffffffff8149fb50 t blk_mq_insert_requests
+ffffffff8149fca0 t blk_mq_flush_plug_list
+ffffffff8149ffb0 t blk_mq_plug_issue_direct
+ffffffff814a0280 t blk_mq_try_issue_list_directly
+ffffffff814a03f0 t blk_mq_submit_bio
+ffffffff814a0a10 t blk_mq_try_issue_directly
+ffffffff814a0ac0 t blk_insert_cloned_request
+ffffffff814a0ca0 t blk_account_io_done
+ffffffff814a0df0 t blk_rq_unprep_clone
+ffffffff814a0e30 t blk_rq_prep_clone
+ffffffff814a0fc0 t blk_steal_bios
+ffffffff814a1010 t blk_mq_free_rqs
+ffffffff814a1200 t blk_mq_free_rq_map
+ffffffff814a1250 t blk_mq_alloc_map_and_rqs
+ffffffff814a16b0 t blk_mq_free_map_and_rqs
+ffffffff814a1700 t blk_mq_release
+ffffffff814a1810 t blk_mq_init_queue
+ffffffff814a1880 t blk_mq_destroy_queue
+ffffffff814a19b0 t blk_mq_cancel_work_sync
+ffffffff814a1a60 t blk_mq_exit_queue
+ffffffff814a1bc0 t __blk_mq_alloc_disk
+ffffffff814a1c80 t blk_mq_alloc_disk_for_queue
+ffffffff814a1cd0 t blk_mq_init_allocated_queue
+ffffffff814a2220 t blk_mq_poll_stats_fn
+ffffffff814a2290 t blk_mq_poll_stats_bkt
+ffffffff814a22d0 t blk_mq_realloc_hw_ctxs
+ffffffff814a2510 t blk_mq_timeout_work
+ffffffff814a26c0 t blk_mq_requeue_work
+ffffffff814a2880 t blk_mq_map_swqueue
+ffffffff814a2d10 t blk_mq_alloc_tag_set
+ffffffff814a2f80 t blk_mq_update_queue_map
+ffffffff814a3100 t blk_mq_alloc_set_map_and_rqs
+ffffffff814a3300 t blk_mq_alloc_sq_tag_set
+ffffffff814a3370 t blk_mq_free_tag_set
+ffffffff814a34c0 t blk_mq_update_nr_requests
+ffffffff814a3760 t blk_mq_update_nr_hw_queues
+ffffffff814a3c50 t blk_mq_poll
+ffffffff814a3fa0 t blk_mq_rq_cpu
+ffffffff814a3fc0 t __blk_mq_complete_request_remote
+ffffffff814a3fe0 t __blk_mq_run_hw_queue
+ffffffff814a4070 t __blk_mq_try_issue_directly
+ffffffff814a4230 t blk_mq_exit_hctx
+ffffffff814a43e0 t blk_mq_alloc_and_init_hctx
+ffffffff814a4810 t blk_mq_run_work_fn
+ffffffff814a4830 t blk_mq_dispatch_wake
+ffffffff814a48b0 t blk_mq_check_expired
+ffffffff814a4900 t blk_mq_handle_expired
+ffffffff814a4990 t blk_mq_update_tag_set_shared
+ffffffff814a4b20 t blk_done_softirq
+ffffffff814a4ba0 t blk_softirq_cpu_dead
+ffffffff814a4c20 t blk_mq_hctx_notify_dead
+ffffffff814a4da0 t blk_mq_hctx_notify_online
+ffffffff814a4dd0 t blk_mq_hctx_notify_offline
+ffffffff814a4f50 t blk_mq_has_request
+ffffffff814a4f80 t __blk_mq_tag_busy
+ffffffff814a5000 t blk_mq_tag_wakeup_all
+ffffffff814a5040 t __blk_mq_tag_idle
+ffffffff814a50c0 t blk_mq_get_tags
+ffffffff814a5120 t blk_mq_get_tag
+ffffffff814a53f0 t blk_mq_put_tag
+ffffffff814a5420 t blk_mq_put_tags
+ffffffff814a5440 t blk_mq_all_tag_iter
+ffffffff814a54a0 t blk_mq_tagset_busy_iter
+ffffffff814a5560 t blk_mq_tagset_wait_completed_request
+ffffffff814a5650 t blk_mq_queue_tag_busy_iter
+ffffffff814a5800 t bt_for_each
+ffffffff814a5a30 t blk_mq_init_bitmaps
+ffffffff814a5ae0 t blk_mq_init_tags
+ffffffff814a5be0 t blk_mq_free_tags
+ffffffff814a5c40 t blk_mq_tag_update_depth
+ffffffff814a5ce0 t blk_mq_tag_resize_shared_tags
+ffffffff814a5d00 t blk_mq_tag_update_sched_shared_tags
+ffffffff814a5d30 t blk_mq_unique_tag
+ffffffff814a5d50 t bt_tags_for_each
+ffffffff814a5fb0 t bt_tags_for_each.7
+ffffffff814a61e0 t blk_rq_stat_init
+ffffffff814a6220 t blk_rq_stat_sum
+ffffffff814a6290 t blk_rq_stat_add
+ffffffff814a62c0 t blk_stat_add
+ffffffff814a63d0 t blk_stat_alloc_callback
+ffffffff814a64b0 t blk_stat_timer_fn
+ffffffff814a6660 t blk_stat_add_callback
+ffffffff814a6780 t blk_stat_remove_callback
+ffffffff814a6810 t blk_stat_free_callback
+ffffffff814a6830 t blk_stat_free_callback_rcu
+ffffffff814a6870 t blk_stat_disable_accounting
+ffffffff814a68c0 t blk_stat_enable_accounting
+ffffffff814a6920 t blk_alloc_queue_stats
+ffffffff814a6960 t blk_free_queue_stats
+ffffffff814a6990 t blk_stats_alloc_enable
+ffffffff814a69f0 t blk_mq_hctx_kobj_init
+ffffffff814a6a10 t blk_mq_sysfs_deinit
+ffffffff814a6a90 t blk_mq_sysfs_init
+ffffffff814a6b40 t blk_mq_sysfs_register
+ffffffff814a6d10 t blk_mq_register_hctx
+ffffffff814a6e20 t blk_mq_sysfs_unregister
+ffffffff814a6f40 t blk_mq_sysfs_unregister_hctxs
+ffffffff814a7060 t blk_mq_sysfs_register_hctxs
+ffffffff814a7130 t blk_mq_hw_sysfs_release
+ffffffff814a7190 t blk_mq_hw_sysfs_show
+ffffffff814a7200 t blk_mq_hw_sysfs_store
+ffffffff814a7280 t blk_mq_hw_sysfs_nr_tags_show
+ffffffff814a72b0 t blk_mq_hw_sysfs_nr_reserved_tags_show
+ffffffff814a72e0 t blk_mq_hw_sysfs_cpus_show
+ffffffff814a73d0 t blk_mq_sysfs_release
+ffffffff814a7400 t blk_mq_ctx_sysfs_release
+ffffffff814a7420 t blk_mq_map_queues
+ffffffff814a7570 t blk_mq_hw_queue_to_node
+ffffffff814a75d0 t blk_mq_sched_mark_restart_hctx
+ffffffff814a75f0 t __blk_mq_sched_restart
+ffffffff814a7610 t blk_mq_sched_dispatch_requests
+ffffffff814a7670 t __blk_mq_sched_dispatch_requests
+ffffffff814a77b0 t blk_mq_sched_bio_merge
+ffffffff814a78a0 t blk_mq_sched_try_insert_merge
+ffffffff814a78f0 t blk_mq_sched_insert_request
+ffffffff814a7a30 t blk_mq_sched_insert_requests
+ffffffff814a7b90 t blk_mq_init_sched
+ffffffff814a7ed0 t blk_mq_sched_free_rqs
+ffffffff814a7fa0 t blk_mq_exit_sched
+ffffffff814a81a0 t blk_mq_do_dispatch_sched
+ffffffff814a85a0 t blk_mq_do_dispatch_ctx
+ffffffff814a8780 t sched_rq_cmp
+ffffffff814a87a0 t blkdev_ioctl
+ffffffff814a9950 t set_capacity
+ffffffff814a99a0 t set_capacity_and_notify
+ffffffff814a9aa0 t blkdev_show
+ffffffff814a9b20 t __register_blkdev
+ffffffff814a9cf0 t unregister_blkdev
+ffffffff814a9da0 t blk_alloc_ext_minor
+ffffffff814a9dd0 t blk_free_ext_minor
+ffffffff814a9df0 t disk_uevent
+ffffffff814a9ef0 t disk_scan_partitions
+ffffffff814a9fc0 t device_add_disk
+ffffffff814aa3a0 t blk_mark_disk_dead
+ffffffff814aa3c0 t del_gendisk
+ffffffff814aa670 t invalidate_disk
+ffffffff814aa6e0 t blk_request_module
+ffffffff814aa7a0 t part_size_show
+ffffffff814aa7d0 t part_stat_show
+ffffffff814aaa00 t part_stat_read_all
+ffffffff814aab30 t part_inflight_show
+ffffffff814aac60 t block_uevent
+ffffffff814aac90 t block_devnode.llvm.885230624384216800
+ffffffff814aacc0 t disk_release.llvm.885230624384216800
+ffffffff814aadb0 t part_devt
+ffffffff814aadf0 t blk_lookup_devt
+ffffffff814aaf40 t __alloc_disk_node
+ffffffff814ab110 t inc_diskseq
+ffffffff814ab140 t __blk_alloc_disk
+ffffffff814ab1a0 t put_disk
+ffffffff814ab1c0 t set_disk_ro
+ffffffff814ab290 t disk_visible
+ffffffff814ab2d0 t disk_badblocks_show
+ffffffff814ab310 t disk_badblocks_store
+ffffffff814ab350 t disk_range_show
+ffffffff814ab380 t disk_ext_range_show
+ffffffff814ab3c0 t disk_removable_show
+ffffffff814ab3f0 t disk_hidden_show
+ffffffff814ab430 t disk_ro_show
+ffffffff814ab480 t disk_alignment_offset_show
+ffffffff814ab4c0 t disk_discard_alignment_show
+ffffffff814ab500 t disk_capability_show
+ffffffff814ab530 t diskseq_show
+ffffffff814ab560 t disk_seqf_start
+ffffffff814ab600 t disk_seqf_stop
+ffffffff814ab640 t disk_seqf_next
+ffffffff814ab670 t diskstats_show
+ffffffff814ab960 t show_partition_start
+ffffffff814aba20 t show_partition
+ffffffff814abb10 t ioprio_check_cap
+ffffffff814abb90 t __x64_sys_ioprio_set
+ffffffff814abe70 t __get_task_ioprio
+ffffffff814abef0 t __x64_sys_ioprio_get
+ffffffff814ac2f0 t badblocks_check
+ffffffff814ac430 t badblocks_set
+ffffffff814ac890 t badblocks_clear
+ffffffff814acb60 t ack_all_badblocks
+ffffffff814acbf0 t badblocks_show
+ffffffff814acd00 t badblocks_store
+ffffffff814acdc0 t badblocks_init
+ffffffff814ace30 t devm_init_badblocks
+ffffffff814aceb0 t badblocks_exit
+ffffffff814acef0 t part_uevent
+ffffffff814acf50 t part_release
+ffffffff814acf80 t bdev_add_partition
+ffffffff814ad0d0 t add_partition
+ffffffff814ad400 t bdev_del_partition
+ffffffff814ad470 t delete_partition
+ffffffff814ad500 t bdev_resize_partition
+ffffffff814ad670 t blk_drop_partitions
+ffffffff814ad710 t bdev_disk_changed
+ffffffff814add40 t read_part_sector
+ffffffff814adde0 t part_partition_show
+ffffffff814ade10 t part_start_show
+ffffffff814ade40 t part_ro_show
+ffffffff814ade90 t part_alignment_offset_show
+ffffffff814adec0 t part_discard_alignment_show
+ffffffff814adef0 t xa_insert
+ffffffff814adf40 t whole_disk_show
+ffffffff814adf50 t efi_partition
+ffffffff814ae800 t is_gpt_valid
+ffffffff814aebd0 t alloc_read_gpt_entries
+ffffffff814aed50 t rq_wait_inc_below
+ffffffff814aed80 t __rq_qos_cleanup
+ffffffff814aedc0 t __rq_qos_done
+ffffffff814aee00 t __rq_qos_issue
+ffffffff814aee40 t __rq_qos_requeue
+ffffffff814aee80 t __rq_qos_throttle
+ffffffff814aeec0 t __rq_qos_track
+ffffffff814aef20 t __rq_qos_merge
+ffffffff814aef80 t __rq_qos_done_bio
+ffffffff814aefc0 t __rq_qos_queue_depth_changed
+ffffffff814af000 t rq_depth_calc_max_depth
+ffffffff814af070 t rq_depth_scale_up
+ffffffff814af100 t rq_depth_scale_down
+ffffffff814af190 t rq_qos_wait
+ffffffff814af2f0 t rq_qos_wake_function
+ffffffff814af370 t rq_qos_exit
+ffffffff814af3c0 t disk_block_events
+ffffffff814af450 t disk_unblock_events
+ffffffff814af470 t __disk_unblock_events
+ffffffff814af530 t disk_flush_events
+ffffffff814af590 t bdev_check_media_change
+ffffffff814af700 t disk_force_media_change
+ffffffff814af7e0 t disk_events_show
+ffffffff814af890 t disk_events_async_show
+ffffffff814af8a0 t disk_events_poll_msecs_show
+ffffffff814af8f0 t disk_events_poll_msecs_store
+ffffffff814afa10 t disk_alloc_events
+ffffffff814afb10 t disk_events_workfn
+ffffffff814afb30 t disk_add_events
+ffffffff814afbb0 t disk_del_events
+ffffffff814afc80 t disk_release_events
+ffffffff814afcc0 t disk_check_events
+ffffffff814afe30 t disk_events_set_dfl_poll_msecs
+ffffffff814afee0 t disk_register_independent_access_ranges
+ffffffff814b0010 t disk_unregister_independent_access_ranges
+ffffffff814b0090 t disk_alloc_independent_access_ranges
+ffffffff814b00e0 t disk_set_independent_access_ranges
+ffffffff814b0330 t blk_ia_ranges_sysfs_release
+ffffffff814b0340 t blk_ia_range_sysfs_nop_release
+ffffffff814b0350 t blk_ia_range_sysfs_show
+ffffffff814b0370 t blk_ia_range_sector_show
+ffffffff814b0390 t blk_ia_range_nr_sectors_show
+ffffffff814b03b0 t bio_blkcg_css
+ffffffff814b03e0 t blkg_dev_name
+ffffffff814b0420 t blkcg_print_blkgs
+ffffffff814b0510 t __blkg_prfill_u64
+ffffffff814b0570 t blkcg_conf_open_bdev
+ffffffff814b0650 t blkg_conf_prep
+ffffffff814b0a70 t blkg_alloc
+ffffffff814b0cc0 t blkg_create
+ffffffff814b1160 t radix_tree_preload_end
+ffffffff814b11a0 t blkg_conf_finish
+ffffffff814b11e0 t blkcg_get_cgwb_list
+ffffffff814b1200 t blkcg_pin_online
+ffffffff814b1240 t blkcg_unpin_online
+ffffffff814b1350 t blkcg_init_disk
+ffffffff814b1460 t blkcg_exit_disk
+ffffffff814b1530 t blkcg_css_alloc
+ffffffff814b1880 t blkcg_css_online
+ffffffff814b18d0 t blkcg_css_offline
+ffffffff814b18f0 t blkcg_css_free
+ffffffff814b1a10 t blkcg_rstat_flush
+ffffffff814b1bb0 t blkcg_exit
+ffffffff814b1bf0 t blkcg_bind
+ffffffff814b1ca0 t blkcg_activate_policy
+ffffffff814b1ff0 t blkcg_deactivate_policy
+ffffffff814b2120 t blkcg_policy_register
+ffffffff814b2350 t blkcg_policy_unregister
+ffffffff814b2450 t __blkcg_punt_bio_submit
+ffffffff814b24e0 t blkcg_maybe_throttle_current
+ffffffff814b2820 t blkcg_schedule_throttle
+ffffffff814b28a0 t blkcg_add_delay
+ffffffff814b2950 t bio_associate_blkg_from_css
+ffffffff814b2c60 t bio_associate_blkg
+ffffffff814b2cc0 t bio_clone_blkg_association
+ffffffff814b2cf0 t blk_cgroup_bio_start
+ffffffff814b2db0 t blk_cgroup_congested
+ffffffff814b2e10 t blkg_release
+ffffffff814b2e30 t blkg_async_bio_workfn
+ffffffff814b2f10 t __blkg_release
+ffffffff814b3010 t blkg_free_workfn
+ffffffff814b3110 t blkg_destroy
+ffffffff814b32b0 t blkcg_print_stat
+ffffffff814b3690 t blkcg_reset_stats
+ffffffff814b3910 t blkg_rwstat_init
+ffffffff814b3a50 t blkg_rwstat_exit
+ffffffff814b3a90 t __blkg_prfill_rwstat
+ffffffff814b3b80 t blkg_prfill_rwstat
+ffffffff814b3c60 t blkg_rwstat_recursive_sum
+ffffffff814b3e50 t __traceiter_iocost_iocg_activate
+ffffffff814b3ed0 t __traceiter_iocost_iocg_idle
+ffffffff814b3f50 t __traceiter_iocost_inuse_shortage
+ffffffff814b3fd0 t __traceiter_iocost_inuse_transfer
+ffffffff814b4050 t __traceiter_iocost_inuse_adjust
+ffffffff814b40d0 t __traceiter_iocost_ioc_vrate_adj
+ffffffff814b4150 t __traceiter_iocost_iocg_forgive_debt
+ffffffff814b41d0 t trace_event_raw_event_iocost_iocg_state
+ffffffff814b43c0 t perf_trace_iocost_iocg_state
+ffffffff814b45f0 t trace_event_raw_event_iocg_inuse_update
+ffffffff814b47b0 t perf_trace_iocg_inuse_update
+ffffffff814b49b0 t trace_event_raw_event_iocost_ioc_vrate_adj
+ffffffff814b4b40 t perf_trace_iocost_ioc_vrate_adj
+ffffffff814b4d10 t trace_event_raw_event_iocost_iocg_forgive_debt
+ffffffff814b4ee0 t perf_trace_iocost_iocg_forgive_debt
+ffffffff814b50f0 t trace_raw_output_iocost_iocg_state
+ffffffff814b5180 t trace_raw_output_iocg_inuse_update
+ffffffff814b5200 t trace_raw_output_iocost_ioc_vrate_adj
+ffffffff814b5290 t trace_raw_output_iocost_iocg_forgive_debt
+ffffffff814b5310 t ioc_cpd_alloc
+ffffffff814b5370 t ioc_cpd_free
+ffffffff814b5380 t ioc_pd_alloc
+ffffffff814b5410 t ioc_pd_init
+ffffffff814b5690 t ioc_pd_free
+ffffffff814b5830 t ioc_pd_stat
+ffffffff814b58f0 t ioc_weight_show
+ffffffff814b5980 t ioc_weight_write
+ffffffff814b5e30 t ioc_qos_show
+ffffffff814b5e80 t ioc_qos_write
+ffffffff814b6340 t ioc_cost_model_show
+ffffffff814b6390 t ioc_cost_model_write
+ffffffff814b6750 t ioc_weight_prfill
+ffffffff814b67a0 t __propagate_weights
+ffffffff814b6900 t ioc_qos_prfill
+ffffffff814b6a30 t blk_iocost_init
+ffffffff814b6d40 t ioc_refresh_params
+ffffffff814b7250 t ioc_timer_fn
+ffffffff814b9410 t ioc_rqos_throttle
+ffffffff814b9cd0 t ioc_rqos_merge
+ffffffff814b9f70 t ioc_rqos_done
+ffffffff814ba0e0 t ioc_rqos_done_bio
+ffffffff814ba120 t ioc_rqos_queue_depth_changed
+ffffffff814ba160 t ioc_rqos_exit
+ffffffff814ba1d0 t adjust_inuse_and_calc_cost
+ffffffff814ba5f0 t iocg_commit_bio
+ffffffff814ba660 t iocg_incur_debt
+ffffffff814ba730 t iocg_kick_delay
+ffffffff814baa20 t iocg_wake_fn
+ffffffff814bab30 t iocg_kick_waitq
+ffffffff814baff0 t trace_iocost_iocg_activate
+ffffffff814bb060 t ioc_start_period
+ffffffff814bb0d0 t trace_iocost_inuse_adjust
+ffffffff814bb150 t ioc_cost_model_prfill
+ffffffff814bb1d0 t iocg_waitq_timer_fn
+ffffffff814bb320 t dd_init_sched
+ffffffff814bb4c0 t dd_exit_sched
+ffffffff814bb6c0 t dd_init_hctx
+ffffffff814bb710 t dd_depth_updated
+ffffffff814bb760 t dd_bio_merge
+ffffffff814bb800 t dd_request_merge
+ffffffff814bb8d0 t dd_request_merged
+ffffffff814bb950 t dd_merged_requests
+ffffffff814bba50 t dd_limit_depth
+ffffffff814bba90 t dd_prepare_request
+ffffffff814bbab0 t dd_finish_request
+ffffffff814bbbd0 t dd_insert_requests
+ffffffff814bbef0 t dd_dispatch_request
+ffffffff814bc030 t dd_has_work
+ffffffff814bc160 t deadline_remove_request
+ffffffff814bc210 t __dd_dispatch_request
+ffffffff814bc440 t deadline_next_request
+ffffffff814bc5c0 t deadline_fifo_request
+ffffffff814bc710 t deadline_read_expire_show
+ffffffff814bc740 t deadline_read_expire_store
+ffffffff814bc7c0 t deadline_write_expire_show
+ffffffff814bc7f0 t deadline_write_expire_store
+ffffffff814bc870 t deadline_writes_starved_show
+ffffffff814bc8a0 t deadline_writes_starved_store
+ffffffff814bc910 t deadline_front_merges_show
+ffffffff814bc940 t deadline_front_merges_store
+ffffffff814bc9c0 t deadline_async_depth_show
+ffffffff814bc9f0 t deadline_async_depth_store
+ffffffff814bca70 t deadline_fifo_batch_show
+ffffffff814bcaa0 t deadline_fifo_batch_store
+ffffffff814bcb20 t deadline_prio_aging_expire_show
+ffffffff814bcb50 t deadline_prio_aging_expire_store
+ffffffff814bcbd0 t deadline_read0_next_rq_show
+ffffffff814bcc00 t deadline_write0_next_rq_show
+ffffffff814bcc30 t deadline_read1_next_rq_show
+ffffffff814bcc60 t deadline_write1_next_rq_show
+ffffffff814bcc90 t deadline_read2_next_rq_show
+ffffffff814bccc0 t deadline_write2_next_rq_show
+ffffffff814bccf0 t deadline_batching_show
+ffffffff814bcd20 t deadline_starved_show
+ffffffff814bcd50 t dd_async_depth_show
+ffffffff814bcd80 t dd_owned_by_driver_show
+ffffffff814bce20 t dd_queued_show
+ffffffff814bceb0 t deadline_read0_fifo_start
+ffffffff814bcef0 t deadline_read0_fifo_stop
+ffffffff814bcf20 t deadline_read0_fifo_next
+ffffffff814bcf50 t deadline_write0_fifo_start
+ffffffff814bcf90 t deadline_write0_fifo_stop
+ffffffff814bcfc0 t deadline_write0_fifo_next
+ffffffff814bcff0 t deadline_read1_fifo_start
+ffffffff814bd030 t deadline_read1_fifo_stop
+ffffffff814bd060 t deadline_read1_fifo_next
+ffffffff814bd090 t deadline_write1_fifo_start
+ffffffff814bd0e0 t deadline_write1_fifo_stop
+ffffffff814bd110 t deadline_write1_fifo_next
+ffffffff814bd140 t deadline_read2_fifo_start
+ffffffff814bd190 t deadline_read2_fifo_stop
+ffffffff814bd1c0 t deadline_read2_fifo_next
+ffffffff814bd1f0 t deadline_write2_fifo_start
+ffffffff814bd240 t deadline_write2_fifo_stop
+ffffffff814bd270 t deadline_write2_fifo_next
+ffffffff814bd2a0 t deadline_dispatch0_start
+ffffffff814bd2e0 t deadline_dispatch0_stop
+ffffffff814bd310 t deadline_dispatch0_next
+ffffffff814bd340 t deadline_dispatch1_start
+ffffffff814bd380 t deadline_dispatch1_stop
+ffffffff814bd3b0 t deadline_dispatch1_next
+ffffffff814bd3e0 t deadline_dispatch2_start
+ffffffff814bd430 t deadline_dispatch2_stop
+ffffffff814bd460 t deadline_dispatch2_next
+ffffffff814bd490 t __traceiter_kyber_latency
+ffffffff814bd510 t __traceiter_kyber_adjust
+ffffffff814bd570 t __traceiter_kyber_throttled
+ffffffff814bd5c0 t trace_event_raw_event_kyber_latency
+ffffffff814bd6e0 t perf_trace_kyber_latency
+ffffffff814bd840 t trace_event_raw_event_kyber_adjust
+ffffffff814bd920 t perf_trace_kyber_adjust
+ffffffff814bda40 t trace_event_raw_event_kyber_throttled
+ffffffff814bdb10 t perf_trace_kyber_throttled
+ffffffff814bdc30 t trace_raw_output_kyber_latency
+ffffffff814bdcb0 t trace_raw_output_kyber_adjust
+ffffffff814bdd20 t trace_raw_output_kyber_throttled
+ffffffff814bdd80 t kyber_init_sched
+ffffffff814be030 t kyber_exit_sched
+ffffffff814be110 t kyber_init_hctx
+ffffffff814be4d0 t kyber_exit_hctx
+ffffffff814be590 t kyber_depth_updated
+ffffffff814be5e0 t kyber_bio_merge
+ffffffff814be6b0 t kyber_limit_depth
+ffffffff814be6e0 t kyber_prepare_request
+ffffffff814be700 t kyber_finish_request
+ffffffff814be760 t kyber_insert_requests
+ffffffff814be970 t kyber_dispatch_request
+ffffffff814bea80 t kyber_has_work
+ffffffff814beb40 t kyber_completed_request
+ffffffff814becb0 t kyber_timer_fn
+ffffffff814befb0 t calculate_percentile
+ffffffff814bf160 t kyber_domain_wake
+ffffffff814bf190 t kyber_dispatch_cur_domain
+ffffffff814bf530 t kyber_get_domain_token
+ffffffff814bf680 t kyber_read_lat_show
+ffffffff814bf6b0 t kyber_read_lat_store
+ffffffff814bf730 t kyber_write_lat_show
+ffffffff814bf760 t kyber_write_lat_store
+ffffffff814bf7e0 t kyber_read_tokens_show
+ffffffff814bf800 t kyber_write_tokens_show
+ffffffff814bf820 t kyber_discard_tokens_show
+ffffffff814bf840 t kyber_other_tokens_show
+ffffffff814bf860 t kyber_async_depth_show
+ffffffff814bf890 t kyber_read_waiting_show
+ffffffff814bf8e0 t kyber_write_waiting_show
+ffffffff814bf930 t kyber_discard_waiting_show
+ffffffff814bf980 t kyber_other_waiting_show
+ffffffff814bf9d0 t kyber_cur_domain_show
+ffffffff814bfa10 t kyber_batching_show
+ffffffff814bfa40 t kyber_read_rqs_start
+ffffffff814bfa80 t kyber_read_rqs_stop
+ffffffff814bfaa0 t kyber_read_rqs_next
+ffffffff814bfad0 t kyber_write_rqs_start
+ffffffff814bfb10 t kyber_write_rqs_stop
+ffffffff814bfb30 t kyber_write_rqs_next
+ffffffff814bfb60 t kyber_discard_rqs_start
+ffffffff814bfba0 t kyber_discard_rqs_stop
+ffffffff814bfbc0 t kyber_discard_rqs_next
+ffffffff814bfbf0 t kyber_other_rqs_start
+ffffffff814bfc30 t kyber_other_rqs_stop
+ffffffff814bfc50 t kyber_other_rqs_next
+ffffffff814bfc80 t bfq_mark_bfqq_just_created
+ffffffff814bfca0 t bfq_clear_bfqq_just_created
+ffffffff814bfcc0 t bfq_bfqq_just_created
+ffffffff814bfce0 t bfq_mark_bfqq_busy
+ffffffff814bfd00 t bfq_clear_bfqq_busy
+ffffffff814bfd20 t bfq_bfqq_busy
+ffffffff814bfd40 t bfq_mark_bfqq_wait_request
+ffffffff814bfd60 t bfq_clear_bfqq_wait_request
+ffffffff814bfd80 t bfq_bfqq_wait_request
+ffffffff814bfda0 t bfq_mark_bfqq_non_blocking_wait_rq
+ffffffff814bfdc0 t bfq_clear_bfqq_non_blocking_wait_rq
+ffffffff814bfde0 t bfq_bfqq_non_blocking_wait_rq
+ffffffff814bfe00 t bfq_mark_bfqq_fifo_expire
+ffffffff814bfe20 t bfq_clear_bfqq_fifo_expire
+ffffffff814bfe40 t bfq_bfqq_fifo_expire
+ffffffff814bfe60 t bfq_mark_bfqq_has_short_ttime
+ffffffff814bfe80 t bfq_clear_bfqq_has_short_ttime
+ffffffff814bfea0 t bfq_bfqq_has_short_ttime
+ffffffff814bfec0 t bfq_mark_bfqq_sync
+ffffffff814bfee0 t bfq_clear_bfqq_sync
+ffffffff814bff00 t bfq_bfqq_sync
+ffffffff814bff20 t bfq_mark_bfqq_IO_bound
+ffffffff814bff40 t bfq_clear_bfqq_IO_bound
+ffffffff814bff60 t bfq_bfqq_IO_bound
+ffffffff814bff80 t bfq_mark_bfqq_in_large_burst
+ffffffff814bffa0 t bfq_clear_bfqq_in_large_burst
+ffffffff814bffc0 t bfq_bfqq_in_large_burst
+ffffffff814bffe0 t bfq_mark_bfqq_coop
+ffffffff814c0000 t bfq_clear_bfqq_coop
+ffffffff814c0020 t bfq_bfqq_coop
+ffffffff814c0040 t bfq_mark_bfqq_split_coop
+ffffffff814c0060 t bfq_clear_bfqq_split_coop
+ffffffff814c0080 t bfq_bfqq_split_coop
+ffffffff814c00a0 t bfq_mark_bfqq_softrt_update
+ffffffff814c00c0 t bfq_clear_bfqq_softrt_update
+ffffffff814c00e0 t bfq_bfqq_softrt_update
+ffffffff814c0100 t bic_to_bfqq
+ffffffff814c0120 t bic_set_bfqq
+ffffffff814c0180 t bic_to_bfqd
+ffffffff814c01a0 t bfq_schedule_dispatch
+ffffffff814c01be t bfq_pos_tree_add_move
+ffffffff814c02b0 t bfq_weights_tree_add
+ffffffff814c03d0 t __bfq_weights_tree_remove
+ffffffff814c0450 t bfq_put_queue
+ffffffff814c0590 t bfq_weights_tree_remove
+ffffffff814c0650 t bfq_end_wr_async_queues
+ffffffff814c07d0 t bfq_release_process_ref
+ffffffff814c0850 t bfq_bfqq_expire
+ffffffff814c0c90 t __bfq_bfqq_expire
+ffffffff814c0d40 t bfq_put_cooperator
+ffffffff814c0d80 t bfq_put_async_queues
+ffffffff814c0fc0 t idling_needed_for_service_guarantees
+ffffffff814c10b0 t bfq_init_queue
+ffffffff814c1540 t bfq_exit_queue
+ffffffff814c15f0 t bfq_init_hctx
+ffffffff814c1690 t bfq_depth_updated
+ffffffff814c1730 t bfq_allow_bio_merge
+ffffffff814c17e0 t bfq_bio_merge
+ffffffff814c1920 t bfq_request_merge
+ffffffff814c19b0 t bfq_request_merged
+ffffffff814c1a70 t bfq_requests_merged
+ffffffff814c1b80 t bfq_limit_depth
+ffffffff814c20a0 t bfq_prepare_request
+ffffffff814c20e0 t bfq_finish_request
+ffffffff814c2120 t bfq_insert_requests
+ffffffff814c3540 t bfq_dispatch_request
+ffffffff814c4520 t bfq_has_work
+ffffffff814c4560 t bfq_finish_requeue_request
+ffffffff814c4c10 t bfq_exit_icq
+ffffffff814c4c90 t bfq_idle_slice_timer
+ffffffff814c4d50 t bfq_set_next_ioprio_data
+ffffffff814c4e90 t bfq_setup_cooperator
+ffffffff814c5110 t bfq_merge_bfqqs
+ffffffff814c5360 t idling_boosts_thr_without_issues
+ffffffff814c5420 t bfq_setup_merge
+ffffffff814c5500 t bfq_may_be_close_cooperator
+ffffffff814c5590 t bfq_find_close_cooperator
+ffffffff814c5680 t bfq_bfqq_save_state
+ffffffff814c5840 t bfq_choose_req
+ffffffff814c5970 t bfq_updated_next_req
+ffffffff814c5a80 t bfq_remove_request
+ffffffff814c5c90 t bfq_get_queue
+ffffffff814c60d0 t bfq_add_request
+ffffffff814c6bc0 t bfq_better_to_idle
+ffffffff814c6cb0 t bfq_exit_icq_bfqq
+ffffffff814c6e00 t bfq_fifo_expire_sync_show
+ffffffff814c6e40 t bfq_fifo_expire_sync_store
+ffffffff814c6ee0 t bfq_fifo_expire_async_show
+ffffffff814c6f20 t bfq_fifo_expire_async_store
+ffffffff814c6fc0 t bfq_back_seek_max_show
+ffffffff814c6ff0 t bfq_back_seek_max_store
+ffffffff814c7070 t bfq_back_seek_penalty_show
+ffffffff814c70a0 t bfq_back_seek_penalty_store
+ffffffff814c7130 t bfq_slice_idle_show
+ffffffff814c7170 t bfq_slice_idle_store
+ffffffff814c7200 t bfq_slice_idle_us_show
+ffffffff814c7240 t bfq_slice_idle_us_store
+ffffffff814c72d0 t bfq_max_budget_show
+ffffffff814c7300 t bfq_max_budget_store
+ffffffff814c73c0 t bfq_timeout_sync_show
+ffffffff814c73f0 t bfq_timeout_sync_store
+ffffffff814c74b0 t bfq_strict_guarantees_show
+ffffffff814c74e0 t bfq_strict_guarantees_store
+ffffffff814c7580 t bfq_low_latency_show
+ffffffff814c75b0 t bfq_low_latency_store
+ffffffff814c7740 t bfq_tot_busy_queues
+ffffffff814c7760 t bfq_entity_to_bfqq
+ffffffff814c7780 t bfq_entity_of
+ffffffff814c7790 t bfq_ioprio_to_weight
+ffffffff814c77b0 t bfq_put_idle_entity
+ffffffff814c78b0 t bfq_entity_service_tree
+ffffffff814c7900 t __bfq_entity_update_weight_prio
+ffffffff814c7af0 t bfq_bfqq_served
+ffffffff814c7c50 t bfq_bfqq_charge_time
+ffffffff814c7cc0 t __bfq_deactivate_entity
+ffffffff814c8020 t bfq_active_extract
+ffffffff814c8140 t next_queue_may_preempt
+ffffffff814c8160 t bfq_get_next_queue
+ffffffff814c8230 t bfq_update_next_in_service
+ffffffff814c8450 t __bfq_bfqd_reset_in_service
+ffffffff814c84d0 t bfq_deactivate_bfqq
+ffffffff814c8690 t bfq_activate_bfqq
+ffffffff814c86d0 t bfq_activate_requeue_entity
+ffffffff814c8a20 t bfq_requeue_bfqq
+ffffffff814c8a50 t bfq_del_bfqq_busy
+ffffffff814c8ad0 t bfq_add_bfqq_busy
+ffffffff814c8be0 t bfq_update_active_tree
+ffffffff814c8d20 t bfq_update_fin_time_enqueue
+ffffffff814c8ee0 t bfqg_stats_update_io_remove
+ffffffff814c8ef0 t bfqg_stats_update_io_merged
+ffffffff814c8f00 t bfqg_stats_update_completion
+ffffffff814c8f10 t bfqg_stats_update_dequeue
+ffffffff814c8f20 t bfqg_stats_set_start_idle_time
+ffffffff814c8f30 t bfqg_to_blkg
+ffffffff814c8f50 t bfqq_group
+ffffffff814c8f80 t bfqg_and_blkg_put
+ffffffff814c8ff0 t bfqg_stats_update_legacy_io
+ffffffff814c9120 t bfq_init_entity
+ffffffff814c91b0 t bfq_bio_bfqg
+ffffffff814c9240 t bfq_bfqq_move
+ffffffff814c9440 t bfq_bic_update_cgroup
+ffffffff814c9550 t bfq_link_bfqg
+ffffffff814c95f0 t __bfq_bic_change_cgroup
+ffffffff814c96d0 t bfq_end_wr_async
+ffffffff814c9760 t bfq_create_group_hierarchy
+ffffffff814c97b0 t bfq_cpd_alloc
+ffffffff814c9800 t bfq_cpd_init
+ffffffff814c9820 t bfq_cpd_free
+ffffffff814c9830 t bfq_pd_alloc
+ffffffff814c9900 t bfq_pd_init
+ffffffff814c99d0 t bfq_pd_offline
+ffffffff814c9ba0 t bfq_pd_free
+ffffffff814c9be0 t bfq_pd_reset_stats
+ffffffff814c9bf0 t bfq_io_show_weight_legacy
+ffffffff814c9c50 t bfq_io_set_weight_legacy
+ffffffff814c9d40 t bfq_io_show_weight
+ffffffff814c9dc0 t bfq_io_set_weight
+ffffffff814ca060 t bfqg_print_rwstat
+ffffffff814ca0b0 t bfqg_print_rwstat_recursive
+ffffffff814ca100 t bfqg_prfill_weight_device
+ffffffff814ca130 t bfqg_prfill_rwstat_recursive
+ffffffff814ca1d0 t blk_mq_pci_map_queues
+ffffffff814ca2c0 t blk_mq_virtio_map_queues
+ffffffff814ca370 t blk_zone_cond_str
+ffffffff814ca3b0 t blk_req_needs_zone_write_lock
+ffffffff814ca460 t blk_req_zone_write_trylock
+ffffffff814ca4e0 t __blk_req_zone_write_lock
+ffffffff814ca560 t __blk_req_zone_write_unlock
+ffffffff814ca5d0 t bdev_nr_zones
+ffffffff814ca620 t blkdev_report_zones
+ffffffff814ca680 t blkdev_zone_mgmt
+ffffffff814ca7e0 t blkdev_zone_reset_all_emulated
+ffffffff814ca960 t blkdev_zone_reset_all
+ffffffff814ca9e0 t blkdev_report_zones_ioctl
+ffffffff814cab30 t blkdev_copy_zone_to_user
+ffffffff814cab70 t blkdev_zone_mgmt_ioctl
+ffffffff814cacf0 t blkdev_truncate_zone_range
+ffffffff814cad40 t disk_free_zone_bitmaps
+ffffffff814cad80 t blk_revalidate_disk_zones
+ffffffff814cafc0 t blk_revalidate_zone_cb
+ffffffff814cb170 t disk_clear_zone_settings
+ffffffff814cb210 t blk_zone_need_reset_cb
+ffffffff814cb240 t __blk_mq_debugfs_rq_show
+ffffffff814cb450 t blk_mq_debugfs_rq_show
+ffffffff814cb470 t blk_mq_debugfs_register
+ffffffff814cb7c0 t blk_mq_debugfs_register_sched
+ffffffff814cb870 t blk_mq_debugfs_register_hctx
+ffffffff814cbc80 t blk_mq_debugfs_register_sched_hctx
+ffffffff814cbd30 t blk_mq_debugfs_register_rqos
+ffffffff814cbe20 t blk_mq_debugfs_unregister_hctx
+ffffffff814cbe70 t blk_mq_debugfs_register_hctxs
+ffffffff814cbf10 t blk_mq_debugfs_unregister_hctxs
+ffffffff814cbfe0 t blk_mq_debugfs_unregister_sched
+ffffffff814cc010 t blk_mq_debugfs_unregister_rqos
+ffffffff814cc040 t blk_mq_debugfs_unregister_sched_hctx
+ffffffff814cc080 t blk_mq_debugfs_write
+ffffffff814cc0d0 t blk_mq_debugfs_open
+ffffffff814cc150 t blk_mq_debugfs_release
+ffffffff814cc180 t blk_mq_debugfs_show
+ffffffff814cc1c0 t queue_poll_stat_show
+ffffffff814cc2f0 t queue_pm_only_show
+ffffffff814cc310 t queue_state_show
+ffffffff814cc3b0 t queue_state_write
+ffffffff814cc540 t queue_requeue_list_start
+ffffffff814cc580 t queue_requeue_list_stop
+ffffffff814cc5a0 t queue_requeue_list_next
+ffffffff814cc5d0 t hctx_state_show
+ffffffff814cc6f0 t hctx_flags_show
+ffffffff814cc7e0 t hctx_busy_show
+ffffffff814cc840 t hctx_ctx_map_show
+ffffffff814cc860 t hctx_tags_show
+ffffffff814cc8c0 t hctx_tags_bitmap_show
+ffffffff814cc920 t hctx_sched_tags_show
+ffffffff814cc980 t hctx_sched_tags_bitmap_show
+ffffffff814cc9e0 t hctx_run_show
+ffffffff814cca10 t hctx_run_write
+ffffffff814cca30 t hctx_active_show
+ffffffff814cca70 t hctx_dispatch_busy_show
+ffffffff814ccaa0 t hctx_type_show
+ffffffff814ccae0 t hctx_dispatch_start
+ffffffff814ccb20 t hctx_dispatch_stop
+ffffffff814ccb40 t hctx_dispatch_next
+ffffffff814ccb70 t hctx_show_busy_rq
+ffffffff814ccba0 t blk_mq_debugfs_tags_show
+ffffffff814ccc30 t ctx_default_rq_list_start
+ffffffff814ccc70 t ctx_default_rq_list_stop
+ffffffff814ccc90 t ctx_default_rq_list_next
+ffffffff814cccc0 t ctx_read_rq_list_start
+ffffffff814ccd00 t ctx_read_rq_list_stop
+ffffffff814ccd20 t ctx_read_rq_list_next
+ffffffff814ccd50 t ctx_poll_rq_list_start
+ffffffff814ccd90 t ctx_poll_rq_list_stop
+ffffffff814ccdb0 t ctx_poll_rq_list_next
+ffffffff814ccde0 t queue_zone_wlock_show
+ffffffff814cce60 t blk_pm_runtime_init
+ffffffff814ccea0 t blk_pre_runtime_suspend
+ffffffff814ccf80 t blk_post_runtime_suspend
+ffffffff814cd000 t blk_pre_runtime_resume
+ffffffff814cd040 t blk_post_runtime_resume
+ffffffff814cd0c0 t blk_set_runtime_active
+ffffffff814cd140 t bio_crypt_set_ctx
+ffffffff814cd1a0 t __bio_crypt_free_ctx
+ffffffff814cd1d0 t __bio_crypt_clone
+ffffffff814cd240 t bio_crypt_dun_increment
+ffffffff814cd290 t __bio_crypt_advance
+ffffffff814cd2f0 t bio_crypt_dun_is_contiguous
+ffffffff814cd370 t bio_crypt_rq_ctx_compatible
+ffffffff814cd3b0 t bio_crypt_ctx_mergeable
+ffffffff814cd450 t __blk_crypto_rq_get_keyslot
+ffffffff814cd480 t __blk_crypto_rq_put_keyslot
+ffffffff814cd4b0 t __blk_crypto_free_request
+ffffffff814cd510 t __blk_crypto_bio_prep
+ffffffff814cd640 t blk_crypto_config_supported_natively
+ffffffff814cd660 t __blk_crypto_rq_bio_prep
+ffffffff814cd6d0 t blk_crypto_init_key
+ffffffff814cd820 t blk_crypto_config_supported
+ffffffff814cd850 t blk_crypto_start_using_key
+ffffffff814cd8c0 t blk_crypto_evict_key
+ffffffff814cd940 t blk_crypto_profile_init
+ffffffff814cdba0 t blk_crypto_profile_destroy
+ffffffff814cdbf0 t devm_blk_crypto_profile_init
+ffffffff814cdc70 t blk_crypto_profile_destroy_callback
+ffffffff814cdcc0 t blk_crypto_keyslot_index
+ffffffff814cdce0 t blk_crypto_get_keyslot
+ffffffff814cdff0 t blk_crypto_find_and_grab_keyslot
+ffffffff814ce0d0 t blk_crypto_put_keyslot
+ffffffff814ce1b0 t __blk_crypto_cfg_supported
+ffffffff814ce1f0 t __blk_crypto_evict_key
+ffffffff814ce370 t blk_crypto_reprogram_all_keys
+ffffffff814ce400 t blk_crypto_register
+ffffffff814ce420 t blk_crypto_derive_sw_secret
+ffffffff814ce4d0 t blk_crypto_intersect_capabilities
+ffffffff814ce540 t blk_crypto_has_capabilities
+ffffffff814ce5b0 t blk_crypto_update_capabilities
+ffffffff814ce5e0 t blk_crypto_sysfs_register
+ffffffff814ce680 t blk_crypto_sysfs_unregister
+ffffffff814ce6a0 t blk_crypto_release
+ffffffff814ce6b0 t blk_crypto_attr_show
+ffffffff814ce6d0 t max_dun_bits_show
+ffffffff814ce700 t num_keyslots_show
+ffffffff814ce730 t blk_crypto_mode_is_visible
+ffffffff814ce780 t blk_crypto_mode_show
+ffffffff814ce7d0 t blk_crypto_fallback_bio_prep
+ffffffff814cf050 t blk_crypto_fallback_decrypt_endio
+ffffffff814cf0d0 t blk_crypto_fallback_evict_key
+ffffffff814cf0f0 t blk_crypto_fallback_start_using_mode
+ffffffff814cf280 t blk_crypto_fallback_init
+ffffffff814cf480 t blk_crypto_fallback_encrypt_endio
+ffffffff814cf500 t blk_crypto_fallback_decrypt_bio
+ffffffff814cf8e0 t blk_crypto_fallback_keyslot_program
+ffffffff814cf9b0 t blk_crypto_fallback_keyslot_evict
+ffffffff814cfa10 t bd_link_disk_holder
+ffffffff814cfb70 t bd_unlink_disk_holder
+ffffffff814cfc40 t bd_register_pending_holders
+ffffffff814cfd40 t __traceiter_io_uring_create
+ffffffff814cfdb0 t __traceiter_io_uring_register
+ffffffff814cfe20 t __traceiter_io_uring_file_get
+ffffffff814cfe70 t __traceiter_io_uring_queue_async_work
+ffffffff814cfec0 t __traceiter_io_uring_defer
+ffffffff814cff10 t __traceiter_io_uring_link
+ffffffff814cff60 t __traceiter_io_uring_cqring_wait
+ffffffff814cffb0 t __traceiter_io_uring_fail_link
+ffffffff814d0000 t __traceiter_io_uring_complete
+ffffffff814d0080 t __traceiter_io_uring_submit_sqe
+ffffffff814d00d0 t __traceiter_io_uring_poll_arm
+ffffffff814d0130 t __traceiter_io_uring_task_add
+ffffffff814d0180 t __traceiter_io_uring_req_failed
+ffffffff814d01e0 t __traceiter_io_uring_cqe_overflow
+ffffffff814d0250 t __traceiter_io_uring_task_work_run
+ffffffff814d02b0 t __traceiter_io_uring_short_write
+ffffffff814d0320 t __traceiter_io_uring_local_work_run
+ffffffff814d0380 t trace_event_raw_event_io_uring_create
+ffffffff814d0460 t perf_trace_io_uring_create
+ffffffff814d0580 t trace_event_raw_event_io_uring_register
+ffffffff814d0660 t perf_trace_io_uring_register
+ffffffff814d0780 t trace_event_raw_event_io_uring_file_get
+ffffffff814d0850 t perf_trace_io_uring_file_get
+ffffffff814d0960 t trace_event_raw_event_io_uring_queue_async_work
+ffffffff814d0ad0 t perf_trace_io_uring_queue_async_work
+ffffffff814d0c90 t trace_event_raw_event_io_uring_defer
+ffffffff814d0de0 t perf_trace_io_uring_defer
+ffffffff814d0f80 t trace_event_raw_event_io_uring_link
+ffffffff814d1050 t perf_trace_io_uring_link
+ffffffff814d1150 t trace_event_raw_event_io_uring_cqring_wait
+ffffffff814d1210 t perf_trace_io_uring_cqring_wait
+ffffffff814d1310 t trace_event_raw_event_io_uring_fail_link
+ffffffff814d1470 t perf_trace_io_uring_fail_link
+ffffffff814d1620 t trace_event_raw_event_io_uring_complete
+ffffffff814d1710 t perf_trace_io_uring_complete
+ffffffff814d1840 t trace_event_raw_event_io_uring_submit_sqe
+ffffffff814d19b0 t perf_trace_io_uring_submit_sqe
+ffffffff814d1b70 t trace_event_raw_event_io_uring_poll_arm
+ffffffff814d1ce0 t perf_trace_io_uring_poll_arm
+ffffffff814d1ea0 t trace_event_raw_event_io_uring_task_add
+ffffffff814d2000 t perf_trace_io_uring_task_add
+ffffffff814d21b0 t trace_event_raw_event_io_uring_req_failed
+ffffffff814d2380 t perf_trace_io_uring_req_failed
+ffffffff814d2590 t trace_event_raw_event_io_uring_cqe_overflow
+ffffffff814d2670 t perf_trace_io_uring_cqe_overflow
+ffffffff814d2790 t trace_event_raw_event_io_uring_task_work_run
+ffffffff814d2860 t perf_trace_io_uring_task_work_run
+ffffffff814d2970 t trace_event_raw_event_io_uring_short_write
+ffffffff814d2a50 t perf_trace_io_uring_short_write
+ffffffff814d2b60 t trace_event_raw_event_io_uring_local_work_run
+ffffffff814d2c30 t perf_trace_io_uring_local_work_run
+ffffffff814d2d40 t io_uring_get_socket
+ffffffff814d2d80 t io_is_uring_fops
+ffffffff814d2da0 t io_match_task_safe
+ffffffff814d2e60 t io_queue_iowq
+ffffffff814d2fd0 t __io_commit_cqring_flush
+ffffffff814d3072 t io_queue_deferred
+ffffffff814d3100 t io_cq_unlock_post
+ffffffff814d3170 t __io_put_task
+ffffffff814d3210 t io_task_refs_refill
+ffffffff814d3280 t io_req_cqe_overflow
+ffffffff814d32e0 t io_cqring_event_overflow
+ffffffff814d3440 t __io_get_cqe
+ffffffff814d3510 t io_fill_cqe_aux
+ffffffff814d36e0 t io_post_aux_cqe
+ffffffff814d37a0 t io_req_complete_post
+ffffffff814d3ac0 t __io_fill_cqe_req
+ffffffff814d3ca0 t req_ref_put_and_test
+ffffffff814d3ce0 t io_req_task_queue
+ffffffff814d3d00 t __io_req_complete
+ffffffff814d3d10 t io_req_complete_failed
+ffffffff814d3d92 t __io_alloc_req_refill
+ffffffff814d3f30 t io_free_req
+ffffffff814d4030 t tctx_task_work
+ffffffff814d4170 t handle_tw_list
+ffffffff814d42b0 t ctx_flush_and_put
+ffffffff814d432c t io_uring_drop_tctx_refs
+ffffffff814d43b0 t __io_req_task_work_add
+ffffffff814d45e0 t __io_run_local_work
+ffffffff814d4730 t io_submit_flush_completions
+ffffffff814d4810 t io_run_local_work
+ffffffff814d48a0 t io_req_task_submit
+ffffffff814d4920 t io_req_task_queue_fail
+ffffffff814d4950 t io_req_task_cancel
+ffffffff814d49f0 t io_queue_next
+ffffffff814d4ac0 t io_free_batch_list
+ffffffff814d4d00 t io_clean_op
+ffffffff814d4e90 t io_req_task_complete
+ffffffff814d4f10 t io_file_get_flags
+ffffffff814d4fc0 t io_alloc_async_data
+ffffffff814d5020 t io_req_prep_async
+ffffffff814d50e0 t io_file_get_normal
+ffffffff814d5190 t io_poll_issue
+ffffffff814d51e0 t io_issue_sqe
+ffffffff814d5480 t io_wq_free_work
+ffffffff814d5590 t io_wq_submit_work
+ffffffff814d5710 t io_assign_file
+ffffffff814d5800 t io_file_get_fixed
+ffffffff814d58b0 t io_submit_sqes
+ffffffff814d5e90 t io_run_task_work_sig
+ffffffff814d5ed0 t io_run_task_work_ctx
+ffffffff814d5ff2 t io_uring_cancel_generic
+ffffffff814d62db t io_uring_try_cancel_requests
+ffffffff814d64f0 t __io_uring_cancel
+ffffffff814d6510 t __x64_sys_io_uring_enter
+ffffffff814d6f90 t __x64_sys_io_uring_setup
+ffffffff814d70c0 t __x64_sys_io_uring_register
+ffffffff814d7860 t trace_raw_output_io_uring_create
+ffffffff814d78d0 t trace_raw_output_io_uring_register
+ffffffff814d7940 t trace_raw_output_io_uring_file_get
+ffffffff814d79a0 t trace_raw_output_io_uring_queue_async_work
+ffffffff814d7a30 t trace_raw_output_io_uring_defer
+ffffffff814d7a90 t trace_raw_output_io_uring_link
+ffffffff814d7af0 t trace_raw_output_io_uring_cqring_wait
+ffffffff814d7b50 t trace_raw_output_io_uring_fail_link
+ffffffff814d7bc0 t trace_raw_output_io_uring_complete
+ffffffff814d7c30 t trace_raw_output_io_uring_submit_sqe
+ffffffff814d7cb0 t trace_raw_output_io_uring_poll_arm
+ffffffff814d7d20 t trace_raw_output_io_uring_task_add
+ffffffff814d7d90 t trace_raw_output_io_uring_req_failed
+ffffffff814d7e60 t trace_raw_output_io_uring_cqe_overflow
+ffffffff814d7ed0 t trace_raw_output_io_uring_task_work_run
+ffffffff814d7f30 t trace_raw_output_io_uring_short_write
+ffffffff814d7f90 t trace_raw_output_io_uring_local_work_run
+ffffffff814d7ff0 t __io_prep_linked_timeout
+ffffffff814d8070 t io_prep_async_work
+ffffffff814d8220 t io_eventfd_signal
+ffffffff814d82f0 t io_eventfd_ops
+ffffffff814d8340 t percpu_ref_put
+ffffffff814d8383 t io_move_task_work_from_local
+ffffffff814d83c0 t __io_arm_ltimeout
+ffffffff814d8440 t io_queue_async
+ffffffff814d85e8 t io_submit_fail_init
+ffffffff814d8720 t trace_io_uring_link
+ffffffff814d8780 t io_queue_sqe_fallback
+ffffffff814d87e4 t io_drain_req
+ffffffff814d8a31 t io_uring_try_cancel_iowq
+ffffffff814d8ad0 t io_cancel_task_cb
+ffffffff814d8b96 t io_iopoll_try_reap_events
+ffffffff814d8bff t io_cancel_defer_files
+ffffffff814d8d54 t io_cancel_ctx_cb
+ffffffff814d8d70 t __io_cqring_overflow_flush
+ffffffff814d8ff0 t io_wake_function
+ffffffff814d9040 t io_uring_poll.llvm.9780579022589958211
+ffffffff814d90c0 t io_uring_mmap.llvm.9780579022589958211
+ffffffff814d91a0 t io_uring_release.llvm.9780579022589958211
+ffffffff814d91c4 t io_ring_ctx_wait_and_kill
+ffffffff814d931a t io_ring_exit_work
+ffffffff814d9590 t io_req_caches_free
+ffffffff814d968a t io_tctx_exit_cb
+ffffffff814d96cc t io_ring_ctx_free
+ffffffff814d9a40 t io_mem_free
+ffffffff814d9ab1 t io_uring_create
+ffffffff814d9db1 t io_ring_ctx_alloc
+ffffffff814da147 t io_allocate_scq_urings
+ffffffff814da280 t io_uring_get_file
+ffffffff814da320 t io_uring_install_fd
+ffffffff814da380 t trace_io_uring_create
+ffffffff814da3e0 t io_alloc_hash_table
+ffffffff814da436 t io_ring_ctx_ref_free
+ffffffff814da44d t io_fallback_req_func
+ffffffff814da570 t io_eventfd_register
+ffffffff814da68d t io_probe
+ffffffff814da7dc t io_register_restrictions
+ffffffff814da8e3 t io_register_iowq_aff
+ffffffff814da9c7 t io_unregister_iowq_aff
+ffffffff814da9fb t io_register_iowq_max_workers
+ffffffff814dac20 t io_xattr_cleanup
+ffffffff814dac50 t io_fgetxattr_prep
+ffffffff814dac60 t __io_getxattr_prep
+ffffffff814dad30 t io_getxattr_prep
+ffffffff814dad90 t io_fgetxattr
+ffffffff814dae10 t io_getxattr
+ffffffff814daf30 t io_setxattr_prep
+ffffffff814db000 t io_fsetxattr_prep
+ffffffff814db0a0 t io_fsetxattr
+ffffffff814db130 t io_setxattr
+ffffffff814db290 t io_nop_prep
+ffffffff814db2a0 t io_nop
+ffffffff814db2c0 t io_renameat_prep
+ffffffff814db360 t io_renameat
+ffffffff814db3b0 t io_renameat_cleanup
+ffffffff814db3e0 t io_unlinkat_prep
+ffffffff814db460 t io_unlinkat
+ffffffff814db4b0 t io_unlinkat_cleanup
+ffffffff814db4d0 t io_mkdirat_prep
+ffffffff814db550 t io_mkdirat
+ffffffff814db590 t io_mkdirat_cleanup
+ffffffff814db5b0 t io_symlinkat_prep
+ffffffff814db650 t io_symlinkat
+ffffffff814db690 t io_linkat_prep
+ffffffff814db740 t io_linkat
+ffffffff814db790 t io_link_cleanup
+ffffffff814db7c0 t io_tee_prep
+ffffffff814db810 t io_tee
+ffffffff814db8e0 t io_splice_prep
+ffffffff814db930 t io_splice
+ffffffff814dba20 t io_sfr_prep
+ffffffff814dba60 t io_sync_file_range
+ffffffff814dbaa0 t io_fsync_prep
+ffffffff814dbae0 t io_fsync
+ffffffff814dbb40 t io_fallocate_prep
+ffffffff814dbb90 t io_fallocate
+ffffffff814dbc50 t io_madvise_prep
+ffffffff814dbca0 t io_madvise
+ffffffff814dbcf0 t io_fadvise_prep
+ffffffff814dbd40 t io_fadvise
+ffffffff814dbdb0 t io_alloc_file_tables
+ffffffff814dbe10 t io_free_file_tables
+ffffffff814dbe40 t __io_fixed_fd_install
+ffffffff814dc090 t io_fixed_fd_install
+ffffffff814dc110 t io_fixed_fd_remove
+ffffffff814dc200 t io_register_file_alloc_range
+ffffffff814dc2a0 t io_openat_prep
+ffffffff814dc3c0 t io_openat2_prep
+ffffffff814dc4d0 t io_openat2
+ffffffff814dc800 t io_openat
+ffffffff814dc810 t io_open_cleanup
+ffffffff814dc830 t __io_close_fixed
+ffffffff814dc880 t io_close_prep
+ffffffff814dc8e0 t io_close
+ffffffff814dca30 t io_uring_cmd_complete_in_task
+ffffffff814dca60 t io_uring_cmd_work
+ffffffff814dca90 t io_uring_cmd_done
+ffffffff814dcb10 t io_uring_cmd_prep_async
+ffffffff814dcb40 t io_uring_cmd_prep
+ffffffff814dcbf0 t io_uring_cmd
+ffffffff814dcd20 t io_uring_cmd_import_fixed
+ffffffff814dcd50 t io_epoll_ctl_prep
+ffffffff814dcdf0 t io_epoll_ctl
+ffffffff814dce70 t io_statx_prep
+ffffffff814dcf00 t io_statx
+ffffffff814dcf50 t io_statx_cleanup
+ffffffff814dcf70 t io_shutdown_prep
+ffffffff814dcfb0 t io_shutdown
+ffffffff814dd000 t io_send_prep_async
+ffffffff814dd0c0 t io_sendmsg_prep_async
+ffffffff814dd1a0 t io_sendmsg_recvmsg_cleanup
+ffffffff814dd1c0 t io_sendmsg_prep
+ffffffff814dd250 t io_sendmsg
+ffffffff814dd4b0 t io_setup_async_msg
+ffffffff814dd5e0 t io_send
+ffffffff814dd9d0 t io_setup_async_addr
+ffffffff814ddaa0 t io_recvmsg_prep_async
+ffffffff814ddb50 t io_recvmsg_copy_hdr
+ffffffff814ddcf0 t io_recvmsg_prep
+ffffffff814ddda0 t io_recvmsg
+ffffffff814de4c0 t io_recv
+ffffffff814de940 t io_send_zc_cleanup
+ffffffff814de990 t io_send_zc_prep
+ffffffff814deb30 t io_send_zc
+ffffffff814df030 t io_sg_from_iter
+ffffffff814df250 t io_sg_from_iter_iovec
+ffffffff814df2b0 t io_sendmsg_zc
+ffffffff814df560 t io_sendrecv_fail
+ffffffff814df590 t io_accept_prep
+ffffffff814df640 t io_accept
+ffffffff814df7e0 t io_socket_prep
+ffffffff814df860 t io_socket
+ffffffff814df950 t io_connect_prep_async
+ffffffff814df980 t io_connect_prep
+ffffffff814df9d0 t io_connect
+ffffffff814dfbf0 t io_netmsg_cache_free
+ffffffff814dfc00 t io_msg_ring_prep
+ffffffff814dfc60 t io_msg_ring
+ffffffff814dfe6b t io_flush_timeouts
+ffffffff814dff00 t io_kill_timeout
+ffffffff814dffc0 t io_disarm_next
+ffffffff814e0120 t io_fail_links
+ffffffff814e01f0 t __io_disarm_linked_timeout
+ffffffff814e0280 t io_timeout_cancel
+ffffffff814e0390 t io_timeout_remove_prep
+ffffffff814e0440 t io_timeout_remove
+ffffffff814e07b0 t io_timeout_prep
+ffffffff814e07d0 t __io_timeout_prep
+ffffffff814e0990 t io_link_timeout_prep
+ffffffff814e09b0 t io_timeout
+ffffffff814e0ae0 t io_timeout_fn
+ffffffff814e0ba0 t io_queue_linked_timeout
+ffffffff814e0cb0 t io_link_timeout_fn
+ffffffff814e0da1 t io_kill_timeouts
+ffffffff814e0e80 t io_req_tw_fail_links
+ffffffff814e0f10 t io_req_task_link_timeout
+ffffffff814e1020 t io_sq_thread_unpark
+ffffffff814e1060 t io_sq_thread_park
+ffffffff814e10b0 t io_sq_thread_stop
+ffffffff814e1130 t io_put_sq_data
+ffffffff814e1180 t io_sq_thread_finish
+ffffffff814e12e0 t io_sqpoll_wait_sq
+ffffffff814e13c7 t io_sq_offload_create
+ffffffff814e17a0 t io_sq_thread
+ffffffff814e1d90 t io_run_task_work
+ffffffff814e1e11 t io_uring_show_fdinfo
+ffffffff814e1e98 t __io_uring_show_fdinfo
+ffffffff814e2534 t io_uring_show_cred
+ffffffff814e2700 t __io_uring_free
+ffffffff814e2766 t io_uring_alloc_task_context
+ffffffff814e2940 t __io_uring_add_tctx_node
+ffffffff814e2af0 t __io_uring_add_tctx_node_from_submit
+ffffffff814e2b3d t io_uring_del_tctx_node
+ffffffff814e2bfa t io_uring_clean_tctx
+ffffffff814e2cc0 t io_uring_unreg_ringfd
+ffffffff814e2e50 t io_ringfd_register
+ffffffff814e3030 t io_ringfd_unregister
+ffffffff814e3150 t io_arm_poll_handler
+ffffffff814e33e0 t io_async_queue_proc
+ffffffff814e3410 t __io_arm_poll_handler
+ffffffff814e3a31 t io_poll_remove_all
+ffffffff814e3a7b t io_poll_remove_all_table
+ffffffff814e3b80 t io_poll_cancel
+ffffffff814e3c10 t __io_poll_cancel
+ffffffff814e3d90 t io_poll_remove_prep
+ffffffff814e3e20 t io_poll_add_prep
+ffffffff814e3e80 t io_poll_add
+ffffffff814e3f30 t io_poll_queue_proc
+ffffffff814e3f60 t io_poll_remove
+ffffffff814e4280 t io_poll_disarm
+ffffffff814e4360 t io_apoll_cache_free
+ffffffff814e4370 t __io_queue_proc
+ffffffff814e4490 t io_poll_double_prepare
+ffffffff814e4500 t io_poll_wake
+ffffffff814e46a0 t io_poll_remove_entries
+ffffffff814e47b0 t io_poll_can_finish_inline
+ffffffff814e483c t io_pollfree_wake
+ffffffff814e4890 t io_poll_execute
+ffffffff814e4990 t io_poll_get_ownership_slowpath
+ffffffff814e4a00 t io_poll_task_func
+ffffffff814e4ac0 t io_apoll_task_func
+ffffffff814e4b30 t io_poll_check_events
+ffffffff814e4d20 t io_poll_tw_hash_eject
+ffffffff814e4e00 t io_try_cancel
+ffffffff814e4ef0 t io_async_cancel_prep
+ffffffff814e4f50 t io_async_cancel
+ffffffff814e5050 t __io_async_cancel
+ffffffff814e51d0 t init_hash_table
+ffffffff814e5260 t io_sync_cancel
+ffffffff814e5610 t io_cancel_cb
+ffffffff814e5670 t io_kbuf_recycle_legacy
+ffffffff814e5740 t __io_put_kbuf
+ffffffff814e5890 t io_buffer_select
+ffffffff814e5a40 t io_destroy_buffers
+ffffffff814e5b90 t __io_remove_buffers
+ffffffff814e5cb0 t io_remove_buffers_prep
+ffffffff814e5d30 t io_remove_buffers
+ffffffff814e5e10 t io_provide_buffers_prep
+ffffffff814e5ec0 t io_provide_buffers
+ffffffff814e62ad t io_init_bl_list
+ffffffff814e6320 t io_buffer_add_list
+ffffffff814e63a0 t io_register_pbuf_ring
+ffffffff814e65f0 t io_unregister_pbuf_ring
+ffffffff814e6720 t io_rsrc_refs_drop
+ffffffff814e6790 t __io_account_mem
+ffffffff814e67f0 t io_rsrc_refs_refill
+ffffffff814e6830 t io_rsrc_put_work
+ffffffff814e69b0 t io_wait_rsrc_data
+ffffffff814e69e0 t io_rsrc_node_destroy
+ffffffff814e6a00 t io_rsrc_node_switch
+ffffffff814e6bc0 t io_rsrc_node_switch_start
+ffffffff814e6c70 t io_register_files_update
+ffffffff814e6d10 t __io_register_rsrc_update
+ffffffff814e74d0 t io_register_rsrc_update
+ffffffff814e757c t io_register_rsrc
+ffffffff814e7660 t io_sqe_files_register
+ffffffff814e7950 t io_sqe_buffers_register
+ffffffff814e7c20 t io_files_update_prep
+ffffffff814e7c70 t io_files_update
+ffffffff814e7e50 t io_queue_rsrc_removal
+ffffffff814e7f00 t __io_sqe_files_unregister
+ffffffff814e8050 t io_rsrc_data_free
+ffffffff814e80b0 t io_sqe_files_unregister
+ffffffff814e8105 t io_rsrc_ref_quiesce
+ffffffff814e81e0 t __io_scm_file_account
+ffffffff814e8390 t refcount_add
+ffffffff814e83d0 t refcount_add
+ffffffff814e8410 t refcount_add
+ffffffff814e8450 t refcount_add
+ffffffff814e8488 t io_rsrc_data_alloc
+ffffffff814e85d0 t io_rsrc_file_put
+ffffffff814e87f0 t io_scm_file_account
+ffffffff814e8830 t io_file_bitmap_set
+ffffffff814e8860 t __io_sqe_buffers_unregister
+ffffffff814e89c0 t io_buffer_unmap
+ffffffff814e8a60 t io_sqe_buffers_unregister
+ffffffff814e8ac0 t io_pin_pages
+ffffffff814e8d10 t io_rsrc_buf_put
+ffffffff814e8db0 t io_sqe_buffer_register
+ffffffff814e9280 t io_import_fixed
+ffffffff814e9345 t io_rsrc_node_ref_zero
+ffffffff814e946e t io_alloc_page_table
+ffffffff814e9560 t io_prep_rw
+ffffffff814e96c0 t io_readv_writev_cleanup
+ffffffff814e96e0 t io_readv_prep_async
+ffffffff814e9770 t io_writev_prep_async
+ffffffff814e9810 t io_read
+ffffffff814e9d70 t io_import_iovec
+ffffffff814e9ed0 t io_rw_init_file
+ffffffff814e9fe0 t io_setup_async_rw
+ffffffff814ea110 t kiocb_done
+ffffffff814ea290 t io_write
+ffffffff814ea830 t loop_rw_iter
+ffffffff814ea990 t io_rw_fail
+ffffffff814ea9d0 t io_do_iopoll
+ffffffff814ead80 t io_complete_rw_iopoll
+ffffffff814eae40 t io_complete_rw
+ffffffff814eaf80 t io_rw_should_reissue
+ffffffff814eb020 t io_req_rw_complete
+ffffffff814eb050 t io_req_io_end
+ffffffff814eb1b0 t io_async_buf_func
+ffffffff814eb240 t io_no_issue.llvm.15455593456099979737
+ffffffff814eb260 t io_uring_get_opcode
+ffffffff814eb290 t io_eopnotsupp_prep
+ffffffff814eb2a0 t io_alloc_notif
+ffffffff814eb370 t io_uring_tx_zerocopy_callback
+ffffffff814eb3f0 t io_notif_flush
+ffffffff814eb440 t __io_notif_complete_tw
+ffffffff814eb490 t io_wq_worker_running
+ffffffff814eb4e0 t io_wq_worker_sleeping
+ffffffff814eb510 t io_wqe_dec_running
+ffffffff814eb5d0 t io_wq_enqueue
+ffffffff814eb5f0 t io_wqe_enqueue.llvm.16082851897892449094
+ffffffff814eb890 t io_wq_hash_work
+ffffffff814eb8c0 t io_wq_cancel_cb
+ffffffff814eb9c0 t io_wq_create
+ffffffff814ebc80 t io_wqe_hash_wake
+ffffffff814ebd10 t io_wq_exit_start
+ffffffff814ebd20 t io_wq_put_and_exit
+ffffffff814ebf70 t io_wq_cpu_affinity
+ffffffff814ebfd0 t io_wq_max_workers
+ffffffff814ec090 t io_queue_worker_create
+ffffffff814ec1e0 t create_worker_cb
+ffffffff814ec2c0 t io_wq_cancel_tw_create
+ffffffff814ec350 t io_worker_ref_put
+ffffffff814ec370 t io_task_work_match
+ffffffff814ec3b0 t io_worker_cancel_cb
+ffffffff814ec450 t create_worker_cont
+ffffffff814ec630 t io_wqe_worker
+ffffffff814eca40 t io_init_new_worker
+ffffffff814ecb00 t io_wq_work_match_all
+ffffffff814ecb10 t io_acct_cancel_pending_work
+ffffffff814ecc70 t io_worker_handle_work
+ffffffff814ed140 t io_assign_current_work
+ffffffff814ed200 t io_task_worker_match
+ffffffff814ed230 t create_io_worker
+ffffffff814ed3d0 t io_workqueue_create
+ffffffff814ed420 t io_wqe_activate_free_worker
+ffffffff814ed570 t io_wq_work_match_item
+ffffffff814ed590 t io_wq_for_each_worker
+ffffffff814ed6a0 t io_wq_worker_cancel
+ffffffff814ed760 t io_wq_worker_wake
+ffffffff814ed7a0 t io_wq_cpu_online
+ffffffff814ed7d0 t io_wq_cpu_offline
+ffffffff814ed800 t __io_wq_cpu_online
+ffffffff814ed920 t lockref_get
+ffffffff814ed980 t lockref_get_not_zero
+ffffffff814eda10 t lockref_put_not_zero
+ffffffff814edaa0 t lockref_put_return
+ffffffff814edb00 t lockref_put_or_lock
+ffffffff814edb80 t lockref_mark_dead
+ffffffff814edba0 t lockref_get_not_dead
+ffffffff814edc20 t _bcd2bin
+ffffffff814edc40 t _bin2bcd
+ffffffff814edc70 t sort_r
+ffffffff814ee1b0 t sort
+ffffffff814ee200 t match_token
+ffffffff814ee450 t match_int
+ffffffff814ee500 t match_uint
+ffffffff814ee560 t match_strdup
+ffffffff814ee590 t match_u64
+ffffffff814ee630 t match_octal
+ffffffff814ee6e0 t match_hex
+ffffffff814ee790 t match_wildcard
+ffffffff814ee830 t match_strlcpy
+ffffffff814ee880 t debug_locks_off
+ffffffff814ee8c0 t prandom_u32_state
+ffffffff814ee940 t prandom_bytes_state
+ffffffff814eeaf0 t prandom_seed_full_state
+ffffffff814ef010 t bust_spinlocks
+ffffffff814ef050 t kvasprintf
+ffffffff814ef140 t kvasprintf_const
+ffffffff814ef1d0 t kasprintf
+ffffffff814ef250 t __bitmap_equal
+ffffffff814ef2b0 t __bitmap_or_equal
+ffffffff814ef320 t __bitmap_complement
+ffffffff814ef3c0 t __bitmap_shift_right
+ffffffff814ef4e0 t __bitmap_shift_left
+ffffffff814ef620 t bitmap_cut
+ffffffff814ef780 t __bitmap_and
+ffffffff814ef820 t __bitmap_or
+ffffffff814ef8d0 t __bitmap_xor
+ffffffff814ef980 t __bitmap_andnot
+ffffffff814efa30 t __bitmap_replace
+ffffffff814efac0 t __bitmap_intersects
+ffffffff814efb30 t __bitmap_subset
+ffffffff814efba0 t __bitmap_weight
+ffffffff814efc10 t __bitmap_weight_and
+ffffffff814efc80 t __bitmap_set
+ffffffff814efd40 t __bitmap_clear
+ffffffff814efe00 t bitmap_find_next_zero_area_off
+ffffffff814efe90 t bitmap_parse_user
+ffffffff814efee0 t bitmap_parse
+ffffffff814f0290 t bitmap_print_to_pagebuf
+ffffffff814f02d0 t bitmap_print_bitmask_to_buf
+ffffffff814f0370 t bitmap_print_list_to_buf
+ffffffff814f0410 t bitmap_parselist
+ffffffff814f0970 t bitmap_parselist_user
+ffffffff814f09c0 t bitmap_remap
+ffffffff814f0b50 t bitmap_bitremap
+ffffffff814f0c50 t bitmap_find_free_region
+ffffffff814f0d50 t bitmap_release_region
+ffffffff814f0df0 t bitmap_allocate_region
+ffffffff814f0ec0 t bitmap_alloc
+ffffffff814f0ee0 t bitmap_zalloc
+ffffffff814f0f10 t bitmap_alloc_node
+ffffffff814f0f30 t bitmap_zalloc_node
+ffffffff814f0f60 t bitmap_free
+ffffffff814f0f70 t devm_bitmap_alloc
+ffffffff814f0fd0 t devm_bitmap_free
+ffffffff814f0fe0 t devm_bitmap_zalloc
+ffffffff814f1040 t bitmap_from_arr32
+ffffffff814f10b0 t bitmap_to_arr32
+ffffffff814f1120 t sg_next
+ffffffff814f1160 t sg_nents
+ffffffff814f11a0 t sg_nents_for_len
+ffffffff814f1210 t sg_last
+ffffffff814f1270 t sg_init_table
+ffffffff814f12b0 t sg_init_one
+ffffffff814f1330 t __sg_free_table
+ffffffff814f1420 t sg_free_append_table
+ffffffff814f14b0 t sg_free_table
+ffffffff814f1540 t __sg_alloc_table
+ffffffff814f17a0 t sg_alloc_table
+ffffffff814f17f0 t sg_kmalloc
+ffffffff814f1820 t sg_alloc_append_table_from_pages
+ffffffff814f1be0 t sg_alloc_table_from_pages_segment
+ffffffff814f1c80 t sgl_alloc_order
+ffffffff814f1e30 t sgl_free_order
+ffffffff814f1eb0 t sgl_alloc
+ffffffff814f1ed0 t sgl_free_n_order
+ffffffff814f1f60 t sgl_free
+ffffffff814f1fe0 t __sg_page_iter_start
+ffffffff814f2000 t __sg_page_iter_next
+ffffffff814f2090 t __sg_page_iter_dma_next
+ffffffff814f2120 t sg_miter_start
+ffffffff814f2180 t sg_miter_skip
+ffffffff814f21e0 t sg_miter_stop
+ffffffff814f2280 t sg_miter_get_next_page
+ffffffff814f2380 t sg_miter_next
+ffffffff814f2420 t sg_copy_buffer
+ffffffff814f2690 t sg_copy_from_buffer
+ffffffff814f26b0 t sg_copy_to_buffer
+ffffffff814f26d0 t sg_pcopy_from_buffer
+ffffffff814f26f0 t sg_pcopy_to_buffer
+ffffffff814f2710 t sg_zero_buffer
+ffffffff814f2960 t list_sort
+ffffffff814f2bf0 t generate_random_uuid
+ffffffff814f2c30 t generate_random_guid
+ffffffff814f2c70 t guid_gen
+ffffffff814f2cb0 t uuid_gen
+ffffffff814f2cf0 t uuid_is_valid
+ffffffff814f2d70 t guid_parse
+ffffffff814f2e50 t uuid_parse
+ffffffff814f2f30 t fault_in_iov_iter_readable
+ffffffff814f3030 t fault_in_iov_iter_writeable
+ffffffff814f3130 t iov_iter_init
+ffffffff814f3170 t _copy_to_iter
+ffffffff814f3650 t copy_pipe_to_iter
+ffffffff814f3740 t copyout
+ffffffff814f3770 t xas_next_entry
+ffffffff814f3830 t _copy_mc_to_iter
+ffffffff814f3d90 t copy_mc_pipe_to_iter
+ffffffff814f3ea0 t copyout_mc
+ffffffff814f3ed0 t _copy_from_iter
+ffffffff814f43c0 t copyin
+ffffffff814f43f0 t _copy_from_iter_nocache
+ffffffff814f48c0 t _copy_from_iter_flushcache
+ffffffff814f4d90 t copy_page_to_iter
+ffffffff814f4ed0 t copy_page_to_iter_pipe
+ffffffff814f5000 t copy_page_from_iter
+ffffffff814f5120 t iov_iter_zero
+ffffffff814f5620 t pipe_zero
+ffffffff814f5700 t copy_page_from_iter_atomic
+ffffffff814f5d10 t iov_iter_advance
+ffffffff814f5d80 t iov_iter_iovec_advance
+ffffffff814f5e00 t iov_iter_bvec_advance
+ffffffff814f5e80 t pipe_advance
+ffffffff814f6010 t iov_iter_revert
+ffffffff814f6190 t iov_iter_single_seg_count
+ffffffff814f61e0 t iov_iter_kvec
+ffffffff814f6220 t iov_iter_bvec
+ffffffff814f6260 t iov_iter_pipe
+ffffffff814f62a0 t iov_iter_xarray
+ffffffff814f62e0 t iov_iter_discard
+ffffffff814f6320 t iov_iter_is_aligned
+ffffffff814f63b0 t iov_iter_aligned_iovec
+ffffffff814f6440 t iov_iter_aligned_bvec
+ffffffff814f64d0 t iov_iter_alignment
+ffffffff814f6560 t iov_iter_alignment_iovec
+ffffffff814f65f0 t iov_iter_alignment_bvec
+ffffffff814f6680 t iov_iter_gap_alignment
+ffffffff814f6710 t iov_iter_get_pages2
+ffffffff814f6760 t __iov_iter_get_pages_alloc
+ffffffff814f6a40 t iov_iter_get_pages_alloc2
+ffffffff814f6a90 t csum_and_copy_from_iter
+ffffffff814f70e0 t csum_and_copy_to_iter
+ffffffff814f7790 t csum_and_copy_to_pipe_iter
+ffffffff814f78b0 t hash_and_copy_to_iter
+ffffffff814f7990 t iov_iter_npages
+ffffffff814f7a60 t iov_npages
+ffffffff814f7b10 t bvec_npages
+ffffffff814f7bb0 t sanity
+ffffffff814f7c90 t dup_iter
+ffffffff814f7d00 t iovec_from_user
+ffffffff814f7e80 t __import_iovec
+ffffffff814f7f90 t import_iovec
+ffffffff814f7fb0 t import_single_range
+ffffffff814f8030 t iov_iter_restore
+ffffffff814f8090 t append_pipe
+ffffffff814f81a0 t want_pages_array
+ffffffff814f8200 t pipe_get_pages
+ffffffff814f8380 t iter_xarray_get_pages
+ffffffff814f85f0 t __ctzsi2
+ffffffff814f8610 t __clzsi2
+ffffffff814f8640 t __clzdi2
+ffffffff814f8670 t __ctzdi2
+ffffffff814f8690 t bsearch
+ffffffff814f8720 t _find_first_bit
+ffffffff814f8790 t _find_first_and_bit
+ffffffff814f8800 t _find_first_zero_bit
+ffffffff814f8870 t _find_next_bit
+ffffffff814f88f0 t __find_nth_bit
+ffffffff814f89e0 t __find_nth_and_bit
+ffffffff814f8ae0 t __find_nth_andnot_bit
+ffffffff814f8be0 t _find_next_and_bit
+ffffffff814f8c60 t _find_next_andnot_bit
+ffffffff814f8ce0 t _find_next_zero_bit
+ffffffff814f8d60 t _find_last_bit
+ffffffff814f8dd0 t find_next_clump8
+ffffffff814f8e60 t llist_add_batch
+ffffffff814f8e90 t llist_del_first
+ffffffff814f8ed0 t llist_reverse_order
+ffffffff814f8f10 t memweight
+ffffffff814f8fe0 t __kfifo_alloc
+ffffffff814f9080 t __kfifo_free
+ffffffff814f90b0 t __kfifo_init
+ffffffff814f9170 t __kfifo_in
+ffffffff814f9200 t __kfifo_out_peek
+ffffffff814f9280 t __kfifo_out
+ffffffff814f9310 t __kfifo_from_user
+ffffffff814f9390 t kfifo_copy_from_user
+ffffffff814f94d0 t __kfifo_to_user
+ffffffff814f9550 t kfifo_copy_to_user
+ffffffff814f9690 t __kfifo_dma_in_prepare
+ffffffff814f9730 t __kfifo_dma_out_prepare
+ffffffff814f97d0 t __kfifo_max_r
+ffffffff814f97f0 t __kfifo_len_r
+ffffffff814f9820 t __kfifo_in_r
+ffffffff814f98e0 t __kfifo_out_peek_r
+ffffffff814f9990 t __kfifo_out_r
+ffffffff814f9a60 t __kfifo_skip_r
+ffffffff814f9aa0 t __kfifo_from_user_r
+ffffffff814f9b40 t __kfifo_to_user_r
+ffffffff814f9bd0 t __kfifo_dma_in_prepare_r
+ffffffff814f9ca0 t __kfifo_dma_in_finish_r
+ffffffff814f9cf0 t __kfifo_dma_out_prepare_r
+ffffffff814f9dc0 t __kfifo_dma_out_finish_r
+ffffffff814f9e00 t setup_sgl_buf
+ffffffff814f9fc0 t percpu_ref_init
+ffffffff814fa0e0 t percpu_ref_exit
+ffffffff814fa160 t percpu_ref_switch_to_atomic
+ffffffff814fa1b0 t __percpu_ref_switch_mode
+ffffffff814fa3a0 t percpu_ref_switch_to_atomic_sync
+ffffffff814fa4a0 t percpu_ref_switch_to_percpu
+ffffffff814fa4f0 t percpu_ref_kill_and_confirm
+ffffffff814fa5b0 t percpu_ref_is_zero
+ffffffff814fa610 t percpu_ref_reinit
+ffffffff814fa670 t percpu_ref_resurrect
+ffffffff814fa6f0 t percpu_ref_noop_confirm_switch
+ffffffff814fa700 t percpu_ref_switch_to_atomic_rcu
+ffffffff814fa8a0 t rhashtable_insert_slow
+ffffffff814faea0 t rhashtable_walk_enter
+ffffffff814faf30 t rhashtable_walk_exit
+ffffffff814fafa0 t rhashtable_walk_start_check
+ffffffff814fb160 t rhashtable_walk_next
+ffffffff814fb1d0 t __rhashtable_walk_find_next
+ffffffff814fb300 t rhashtable_walk_peek
+ffffffff814fb340 t rhashtable_walk_stop
+ffffffff814fb3e0 t bucket_table_free_rcu
+ffffffff814fb450 t rhashtable_init
+ffffffff814fb790 t jhash
+ffffffff814fb940 t rhashtable_jhash2
+ffffffff814fba30 t bucket_table_alloc
+ffffffff814fbc10 t rht_deferred_worker
+ffffffff814fc0e0 t rhltable_init
+ffffffff814fc100 t rhashtable_free_and_destroy
+ffffffff814fc350 t rhashtable_destroy
+ffffffff814fc370 t __rht_bucket_nested
+ffffffff814fc3f0 t rht_bucket_nested
+ffffffff814fc490 t rht_bucket_nested_insert
+ffffffff814fc5f0 t rhashtable_rehash_alloc
+ffffffff814fc740 t nested_table_free
+ffffffff814fc7a0 t base64_encode
+ffffffff814fc950 t base64_decode
+ffffffff814fca50 t __do_once_start
+ffffffff814fcaa0 t __do_once_done
+ffffffff814fcb30 t __do_once_sleepable_start
+ffffffff814fcb70 t __do_once_sleepable_done
+ffffffff814fcc00 t once_deferred
+ffffffff814fcc40 t refcount_warn_saturate
+ffffffff814fcd60 t refcount_dec_if_one
+ffffffff814fcd80 t refcount_dec_not_one
+ffffffff814fcde0 t refcount_dec_and_mutex_lock
+ffffffff814fce90 t refcount_dec_and_lock
+ffffffff814fcf40 t refcount_dec_and_lock_irqsave
+ffffffff814fcff0 t _copy_from_user
+ffffffff814fd060 t _copy_to_user
+ffffffff814fd090 t check_zeroed_user
+ffffffff814fd160 t errseq_set
+ffffffff814fd1d0 t errseq_sample
+ffffffff814fd1f0 t errseq_check
+ffffffff814fd220 t errseq_check_and_advance
+ffffffff814fd260 t __alloc_bucket_spinlocks
+ffffffff814fd310 t free_bucket_spinlocks
+ffffffff814fd320 t __genradix_ptr
+ffffffff814fd570 t __genradix_ptr_alloc
+ffffffff814fd6f0 t __genradix_iter_peek
+ffffffff814fd7e0 t __genradix_prealloc
+ffffffff814fd840 t __genradix_free
+ffffffff814fd860 t genradix_free_recurse
+ffffffff814fd8c0 t string_get_size
+ffffffff814fdb20 t parse_int_array_user
+ffffffff814fdbf0 t string_unescape
+ffffffff814fddf0 t string_escape_mem
+ffffffff814fe150 t kstrdup_quotable
+ffffffff814fe320 t kstrdup_quotable_cmdline
+ffffffff814fe410 t kstrdup_quotable_file
+ffffffff814fe4b0 t kasprintf_strarray
+ffffffff814fe560 t kfree_strarray
+ffffffff814fe5b0 t devm_kasprintf_strarray
+ffffffff814fe6e0 t devm_kfree_strarray
+ffffffff814fe730 t strscpy_pad
+ffffffff814fe780 t skip_spaces
+ffffffff814fe7b0 t strim
+ffffffff814fe810 t sysfs_streq
+ffffffff814fe880 t match_string
+ffffffff814fe8f0 t __sysfs_match_string
+ffffffff814fe9a0 t strreplace
+ffffffff814fe9d0 t memcpy_and_pad
+ffffffff814fea30 t hex_to_bin
+ffffffff814fea80 t hex2bin
+ffffffff814feb60 t bin2hex
+ffffffff814fec20 t hex_dump_to_buffer
+ffffffff814ff010 t print_hex_dump
+ffffffff814ff180 t _parse_integer_fixup_radix
+ffffffff814ff1f0 t _parse_integer_limit
+ffffffff814ff2a0 t _parse_integer
+ffffffff814ff2c0 t kstrtoull
+ffffffff814ff370 t kstrtoll
+ffffffff814ff440 t _kstrtoul
+ffffffff814ff4a0 t _kstrtol
+ffffffff814ff500 t kstrtouint
+ffffffff814ff570 t kstrtoint
+ffffffff814ff5e0 t kstrtou16
+ffffffff814ff650 t kstrtos16
+ffffffff814ff6c0 t kstrtou8
+ffffffff814ff730 t kstrtos8
+ffffffff814ff7a0 t kstrtobool
+ffffffff814ff840 t kstrtobool_from_user
+ffffffff814ff8e0 t kstrtoull_from_user
+ffffffff814ff9d0 t kstrtoll_from_user
+ffffffff814ffac0 t kstrtoul_from_user
+ffffffff814ffbb0 t kstrtol_from_user
+ffffffff814ffca0 t kstrtouint_from_user
+ffffffff814ffd70 t kstrtoint_from_user
+ffffffff814ffe40 t kstrtou16_from_user
+ffffffff814fff00 t kstrtos16_from_user
+ffffffff814fffc0 t kstrtou8_from_user
+ffffffff81500070 t kstrtos8_from_user
+ffffffff81500120 t iter_div_u64_rem
+ffffffff81500180 t gcd
+ffffffff81500210 t lcm
+ffffffff81500260 t lcm_not_zero
+ffffffff815002c0 t int_pow
+ffffffff81500310 t int_sqrt
+ffffffff81500380 t reciprocal_value
+ffffffff815003f0 t reciprocal_value_adv
+ffffffff81500510 t rational_best_approximation
+ffffffff81500660 t __crypto_memneq
+ffffffff81500700 t __crypto_xor
+ffffffff81500810 t chacha_block_generic
+ffffffff81500960 t chacha_permute
+ffffffff81500bd0 t hchacha_block_generic
+ffffffff81500c90 t chacha_crypt_generic
+ffffffff81500de0 t aes_expandkey
+ffffffff81501380 t aes_encrypt
+ffffffff815019a0 t aes_decrypt
+ffffffff81502210 t blake2s_update
+ffffffff815022f0 t blake2s_final
+ffffffff815023e0 t blake2s_compress
+ffffffff815023e0 t blake2s_compress_generic
+ffffffff81503980 t des_expand_key
+ffffffff815039b0 t des_ekey
+ffffffff815042e0 t des_encrypt
+ffffffff81504520 t des_decrypt
+ffffffff81504760 t des3_ede_expand_key
+ffffffff815050d0 t des3_ede_encrypt
+ffffffff815055d0 t des3_ede_decrypt
+ffffffff81505ab0 t poly1305_core_setkey
+ffffffff81505b20 t poly1305_core_blocks
+ffffffff81505ce0 t poly1305_core_emit
+ffffffff81505e50 t poly1305_init_generic
+ffffffff81505ec0 t poly1305_update_generic
+ffffffff81505fa0 t poly1305_final_generic
+ffffffff81506030 t sha1_transform
+ffffffff81506320 t sha1_init
+ffffffff81506350 t sha256_update
+ffffffff81506be0 t sha224_update
+ffffffff81506bf0 t sha256_final
+ffffffff81506d20 t sha224_final
+ffffffff81506e50 t sha256
+ffffffff81507020 t ioread8
+ffffffff81507080 t ioread16
+ffffffff815070e0 t ioread16be
+ffffffff81507150 t ioread32
+ffffffff815071b0 t ioread32be
+ffffffff81507210 t ioread64_lo_hi
+ffffffff81507280 t ioread64_hi_lo
+ffffffff815072f0 t ioread64be_lo_hi
+ffffffff81507370 t ioread64be_hi_lo
+ffffffff815073f0 t iowrite8
+ffffffff81507450 t iowrite16
+ffffffff815074b0 t iowrite16be
+ffffffff81507520 t iowrite32
+ffffffff81507580 t iowrite32be
+ffffffff815075e0 t iowrite64_lo_hi
+ffffffff81507650 t iowrite64_hi_lo
+ffffffff815076c0 t iowrite64be_lo_hi
+ffffffff81507730 t iowrite64be_hi_lo
+ffffffff815077a0 t ioread8_rep
+ffffffff81507820 t ioread16_rep
+ffffffff815078a0 t ioread32_rep
+ffffffff81507920 t iowrite8_rep
+ffffffff815079a0 t iowrite16_rep
+ffffffff81507a20 t iowrite32_rep
+ffffffff81507aa0 t ioport_map
+ffffffff81507ac0 t ioport_unmap
+ffffffff81507ad0 t pci_iounmap
+ffffffff81507b30 t pci_iomap_range
+ffffffff81507be0 t pci_iomap_wc_range
+ffffffff81507c70 t pci_iomap
+ffffffff81507d20 t pci_iomap_wc
+ffffffff81507db0 t __ioread32_copy
+ffffffff81507de0 t __iowrite64_copy
+ffffffff81507e10 t devm_ioremap_release
+ffffffff81507e30 t devm_ioremap
+ffffffff81507ec0 t devm_ioremap_uc
+ffffffff81507f50 t devm_ioremap_wc
+ffffffff81507fe0 t devm_iounmap
+ffffffff81508020 t devm_ioremap_match
+ffffffff81508040 t devm_ioremap_resource
+ffffffff81508060 t __devm_ioremap_resource.llvm.4326242669505062453
+ffffffff81508240 t devm_ioremap_resource_wc
+ffffffff81508260 t devm_of_iomap
+ffffffff81508350 t devm_ioport_map
+ffffffff815083c0 t devm_ioport_map_release
+ffffffff815083d0 t devm_ioport_unmap
+ffffffff81508400 t devm_ioport_map_match
+ffffffff81508420 t pcim_iomap_table
+ffffffff81508490 t pcim_iomap_release
+ffffffff81508520 t pcim_iomap
+ffffffff815085f0 t pcim_iounmap
+ffffffff815086c0 t pcim_iomap_regions
+ffffffff81508860 t pcim_iomap_regions_request_all
+ffffffff815088c0 t pcim_iounmap_regions
+ffffffff81508a30 t devm_arch_phys_wc_add
+ffffffff81508ac0 t devm_arch_phys_ac_add_release
+ffffffff81508ae0 t devm_arch_io_reserve_memtype_wc
+ffffffff81508b70 t devm_arch_io_free_memtype_wc_release
+ffffffff81508b90 t __list_add_valid
+ffffffff81508c20 t __list_del_entry_valid
+ffffffff81508cd0 t crc16
+ffffffff81508d60 t crc32_le
+ffffffff81508d60 t crc32_le_base
+ffffffff81508fb0 t __crc32c_le
+ffffffff81508fb0 t __crc32c_le_base
+ffffffff81509200 t crc32_be
+ffffffff81509200 t crc32_be_base
+ffffffff81509450 t crc32_le_shift
+ffffffff81509600 t __crc32c_le_shift
+ffffffff815097b0 t crc32c
+ffffffff81509850 t crc32c_impl
+ffffffff81509870 t crc8_populate_msb
+ffffffff81509b00 t crc8_populate_lsb
+ffffffff81509d90 t crc8
+ffffffff81509e30 t xxh32_copy_state
+ffffffff81509e70 t xxh64_copy_state
+ffffffff81509e90 t xxh32
+ffffffff8150a050 t xxh64
+ffffffff8150a320 t xxh32_reset
+ffffffff8150a370 t xxh64_reset
+ffffffff8150a3f0 t xxh32_update
+ffffffff8150a5b0 t xxh32_digest
+ffffffff8150a680 t xxh64_update
+ffffffff8150a840 t xxh64_digest
+ffffffff8150aa10 t inflate_fast
+ffffffff8150b490 t zlib_inflate_workspacesize
+ffffffff8150b4a0 t zlib_inflateReset
+ffffffff8150b540 t zlib_inflateInit2
+ffffffff8150b630 t zlib_inflate
+ffffffff8150cd80 t zlib_adler32
+ffffffff8150cfa0 t zlib_inflateEnd
+ffffffff8150cfd0 t zlib_inflateIncomp
+ffffffff8150d120 t zlib_inflate_blob
+ffffffff8150d1f0 t zlib_inflate_table
+ffffffff8150db20 t zlib_deflateInit2
+ffffffff8150dcb0 t zlib_deflateReset
+ffffffff8150de30 t zlib_deflate
+ffffffff8150e210 t flush_pending
+ffffffff8150e280 t zlib_deflateEnd
+ffffffff8150e2d0 t zlib_deflate_workspacesize
+ffffffff8150e310 t zlib_deflate_dfltcc_enabled
+ffffffff8150e320 t deflate_stored
+ffffffff8150e600 t deflate_fast
+ffffffff8150e9e0 t deflate_slow
+ffffffff8150ef10 t fill_window
+ffffffff8150f420 t longest_match
+ffffffff8150f660 t zlib_tr_init
+ffffffff8150fb10 t init_block
+ffffffff8150fd30 t zlib_tr_stored_block
+ffffffff8150fea0 t zlib_tr_stored_type_only
+ffffffff8150ff80 t zlib_tr_align
+ffffffff81510280 t zlib_tr_flush_block
+ffffffff81510bd0 t build_tree
+ffffffff815114e0 t compress_block
+ffffffff81511940 t zlib_tr_tally
+ffffffff81511ad0 t gen_codes
+ffffffff81511c70 t send_tree
+ffffffff81512200 t free_rs
+ffffffff815122a0 t init_rs_gfp
+ffffffff815122d0 t init_rs_internal.llvm.15978148049478633650
+ffffffff81512800 t init_rs_non_canonical
+ffffffff81512830 t decode_rs8
+ffffffff81513880 t lzo1x_1_compress
+ffffffff815138a0 t lzogeneric1x_1_compress.llvm.9506917279361050238
+ffffffff81513ba0 t lzorle1x_1_compress
+ffffffff81513bc0 t lzo1x_1_do_compress
+ffffffff815141e0 t lzo1x_decompress_safe
+ffffffff81514960 t LZ4_compress_fast
+ffffffff81514990 t LZ4_compress_fast_extState.llvm.12597211129849657550
+ffffffff81515e40 t LZ4_compress_default
+ffffffff81515e70 t LZ4_compress_destSize
+ffffffff81515f20 t LZ4_resetStream
+ffffffff81515f40 t LZ4_loadDict
+ffffffff81516030 t LZ4_saveDict
+ffffffff81516090 t LZ4_compress_fast_continue
+ffffffff81517d10 t LZ4_compress_destSize_generic
+ffffffff81518470 t LZ4_decompress_safe
+ffffffff815187d0 t LZ4_decompress_safe_partial
+ffffffff81518c60 t LZ4_decompress_fast
+ffffffff81518f10 t LZ4_setStreamDecode
+ffffffff81518f40 t LZ4_decompress_safe_continue
+ffffffff81519570 t LZ4_decompress_safe_withPrefix64k
+ffffffff815198c0 t LZ4_decompress_safe_withSmallPrefix
+ffffffff81519c20 t LZ4_decompress_safe_forceExtDict
+ffffffff8151a180 t LZ4_decompress_fast_continue
+ffffffff8151a670 t LZ4_decompress_fast_extDict
+ffffffff8151aab0 t LZ4_decompress_safe_usingDict
+ffffffff8151ab10 t LZ4_decompress_fast_usingDict
+ffffffff8151ab40 t zstd_min_clevel
+ffffffff8151ab50 t zstd_max_clevel
+ffffffff8151ab60 t zstd_compress_bound
+ffffffff8151ab70 t zstd_get_params
+ffffffff8151ab90 t zstd_cctx_workspace_bound
+ffffffff8151ac00 t zstd_init_cctx
+ffffffff8151ac20 t zstd_compress_cctx
+ffffffff8151ac80 t zstd_cctx_init
+ffffffff8151add0 t zstd_cstream_workspace_bound
+ffffffff8151ae40 t zstd_init_cstream
+ffffffff8151aeb0 t zstd_reset_cstream
+ffffffff8151aec0 t zstd_compress_stream
+ffffffff8151aed0 t zstd_flush_stream
+ffffffff8151aee0 t zstd_end_stream
+ffffffff8151aef0 t FSE_buildCTable_wksp
+ffffffff8151b200 t FSE_NCountWriteBound
+ffffffff8151b230 t FSE_writeNCount
+ffffffff8151b4f0 t FSE_createCTable
+ffffffff8151b500 t FSE_freeCTable
+ffffffff8151b510 t FSE_optimalTableLog_internal
+ffffffff8151b570 t FSE_optimalTableLog
+ffffffff8151b5d0 t FSE_normalizeCount
+ffffffff8151ba60 t FSE_buildCTable_raw
+ffffffff8151bbd0 t FSE_buildCTable_rle
+ffffffff8151bc00 t FSE_compress_usingCTable
+ffffffff8151c180 t FSE_compressBound
+ffffffff8151c1a0 t HIST_isError
+ffffffff8151c1c0 t HIST_count_simple
+ffffffff8151c330 t HIST_countFast_wksp
+ffffffff8151c4e0 t HIST_count_parallel_wksp
+ffffffff8151c7a0 t HIST_count_wksp
+ffffffff8151c960 t HUF_optimalTableLog
+ffffffff8151c980 t HUF_writeCTable_wksp
+ffffffff8151cce0 t HUF_writeCTable
+ffffffff8151cd80 t HUF_readCTable
+ffffffff8151d180 t HUF_getNbBits
+ffffffff8151d1a0 t HUF_buildCTable_wksp
+ffffffff8151dc90 t HUF_estimateCompressedSize
+ffffffff8151dd40 t HUF_validateCTable
+ffffffff8151dde0 t HUF_compressBound
+ffffffff8151de00 t HUF_compress1X_usingCTable
+ffffffff8151de20 t HUF_compress1X_usingCTable_internal.llvm.2742521057739761572
+ffffffff8151dff0 t HUF_compress4X_usingCTable
+ffffffff8151e010 t HUF_compress4X_usingCTable_internal.llvm.2742521057739761572
+ffffffff8151e160 t HUF_compress1X_wksp
+ffffffff8151e190 t HUF_compress_internal.llvm.2742521057739761572
+ffffffff8151e660 t HUF_compress1X_repeat
+ffffffff8151e690 t HUF_compress4X_wksp
+ffffffff8151e6c0 t HUF_compress4X_repeat
+ffffffff8151e6f0 t HUF_compress1X_usingCTable_internal_bmi2
+ffffffff8151e8b0 t HUF_compressCTable_internal
+ffffffff8151e920 t ZSTD_compressBound
+ffffffff8151e960 t ZSTD_createCCtx
+ffffffff8151e9e0 t ZSTD_createCCtx_advanced
+ffffffff8151eab0 t ZSTD_initStaticCCtx
+ffffffff8151ec50 t ZSTD_freeCCtx
+ffffffff8151ef10 t ZSTD_sizeof_CCtx
+ffffffff8151ef90 t ZSTD_sizeof_CStream
+ffffffff8151f010 t ZSTD_getSeqStore
+ffffffff8151f030 t ZSTD_createCCtxParams
+ffffffff8151f0a0 t ZSTD_freeCCtxParams
+ffffffff8151f0e0 t ZSTD_CCtxParams_reset
+ffffffff8151f130 t ZSTD_CCtxParams_init
+ffffffff8151f180 t ZSTD_CCtxParams_init_advanced
+ffffffff8151f250 t ZSTD_checkCParams
+ffffffff8151f2c0 t ZSTD_cParam_getBounds
+ffffffff8151f590 t ZSTD_minCLevel
+ffffffff8151f5a0 t ZSTD_maxCLevel
+ffffffff8151f5b0 t ZSTD_CCtx_setParameter
+ffffffff8151f670 t ZSTD_CCtxParams_setParameter
+ffffffff8151fb50 t ZSTD_CCtx_getParameter
+ffffffff8151fb70 t ZSTD_CCtxParams_getParameter
+ffffffff8151fdd0 t ZSTD_CCtx_setParametersUsingCCtxParams
+ffffffff8151fe10 t ZSTD_CCtx_setPledgedSrcSize
+ffffffff8151fe40 t ZSTD_CCtx_loadDictionary_advanced
+ffffffff815200e0 t ZSTD_CCtx_loadDictionary_byReference
+ffffffff81520100 t ZSTD_CCtx_loadDictionary
+ffffffff81520120 t ZSTD_CCtx_refCDict
+ffffffff81520320 t ZSTD_CCtx_refThreadPool
+ffffffff81520350 t ZSTD_CCtx_refPrefix
+ffffffff81520370 t ZSTD_CCtx_refPrefix_advanced
+ffffffff81520590 t ZSTD_CCtx_reset
+ffffffff815207f0 t ZSTD_cycleLog
+ffffffff81520810 t ZSTD_adjustCParams
+ffffffff815209e0 t ZSTD_getCParamsFromCCtxParams
+ffffffff81520bd0 t ZSTD_getCParams_internal
+ffffffff81520db0 t ZSTD_estimateCCtxSize_usingCCtxParams
+ffffffff81520fa0 t ZSTD_estimateCCtxSize_usingCCtxParams_internal
+ffffffff81521190 t ZSTD_estimateCCtxSize_usingCParams
+ffffffff81521270 t ZSTD_estimateCCtxSize
+ffffffff81521640 t ZSTD_estimateCStreamSize_usingCCtxParams
+ffffffff81521740 t ZSTD_estimateCStreamSize_usingCParams
+ffffffff81521a40 t ZSTD_estimateCStreamSize
+ffffffff81521b70 t ZSTD_getFrameProgression
+ffffffff81521bd0 t ZSTD_toFlushNow
+ffffffff81521be0 t ZSTD_reset_compressedBlockState
+ffffffff81521c30 t ZSTD_invalidateRepCodes
+ffffffff81521c70 t ZSTD_copyCCtx
+ffffffff81521ee0 t ZSTD_seqToCodes
+ffffffff81521fc0 t ZSTD_selectBlockCompressor
+ffffffff81521ff0 t ZSTD_resetSeqStore
+ffffffff81522020 t ZSTD_generateSequences
+ffffffff81522180 t ZSTD_compress2
+ffffffff81522240 t ZSTD_mergeBlockDelimiters
+ffffffff815222a0 t ZSTD_writeSkippableFrame
+ffffffff81522300 t ZSTD_writeLastEmptyBlock
+ffffffff81522330 t ZSTD_referenceExternalSequences
+ffffffff81522390 t ZSTD_compressContinue
+ffffffff815223b0 t ZSTD_compressContinue_internal
+ffffffff81522a60 t ZSTD_getBlockSize
+ffffffff81522a90 t ZSTD_compressBlock
+ffffffff81522ae0 t ZSTD_loadCEntropy
+ffffffff81523160 t ZSTD_compressBegin_advanced_internal
+ffffffff815231f0 t ZSTD_compressBegin_internal
+ffffffff81523720 t ZSTD_compressBegin_advanced
+ffffffff81523970 t ZSTD_compressBegin_usingDict
+ffffffff81523c40 t ZSTD_compressBegin
+ffffffff81523db0 t ZSTD_CCtx_trace
+ffffffff81523dc0 t ZSTD_compressEnd
+ffffffff81523f50 t ZSTD_compress_advanced
+ffffffff81524090 t ZSTD_compress_advanced_internal
+ffffffff81524230 t ZSTD_compress_usingDict
+ffffffff815243c0 t ZSTD_compressCCtx
+ffffffff81524610 t ZSTD_compress
+ffffffff815246e0 t ZSTD_estimateCDictSize_advanced
+ffffffff81524730 t ZSTD_estimateCDictSize
+ffffffff815247e0 t ZSTD_sizeof_CDict
+ffffffff81524820 t ZSTD_createCDict_advanced
+ffffffff81524910 t ZSTD_createCDict_advanced2
+ffffffff81524e20 t ZSTD_initCDict_internal
+ffffffff81524fe0 t ZSTD_freeCDict
+ffffffff81525130 t ZSTD_createCDict
+ffffffff81525270 t ZSTD_createCDict_byReference
+ffffffff815253b0 t ZSTD_initStaticCDict
+ffffffff81525540 t ZSTD_getCParamsFromCDict
+ffffffff81525580 t ZSTD_getDictID_fromCDict
+ffffffff815255a0 t ZSTD_compressBegin_usingCDict_advanced
+ffffffff815257a0 t ZSTD_getCParams
+ffffffff815257d0 t ZSTD_compressBegin_usingCDict
+ffffffff815258b0 t ZSTD_compress_usingCDict_advanced
+ffffffff81525910 t ZSTD_compress_usingCDict
+ffffffff81525970 t ZSTD_createCStream
+ffffffff815259f0 t ZSTD_createCStream_advanced
+ffffffff81525ac0 t ZSTD_initStaticCStream
+ffffffff81525ad0 t ZSTD_freeCStream
+ffffffff81525ae0 t ZSTD_CStreamInSize
+ffffffff81525af0 t ZSTD_CStreamOutSize
+ffffffff81525b00 t ZSTD_resetCStream
+ffffffff81525b30 t ZSTD_initCStream_internal
+ffffffff81525d70 t ZSTD_initCStream_usingCDict_advanced
+ffffffff81525f80 t ZSTD_initCStream_usingCDict
+ffffffff81526180 t ZSTD_initCStream_advanced
+ffffffff81526260 t ZSTD_initCStream_usingDict
+ffffffff815262c0 t ZSTD_initCStream_srcSize
+ffffffff81526520 t ZSTD_initCStream
+ffffffff81526760 t ZSTD_compressStream
+ffffffff815267a0 t ZSTD_compressStream2
+ffffffff81526da0 t ZSTD_CCtx_init_compressStream2
+ffffffff81527070 t ZSTD_compressStream2_simpleArgs
+ffffffff815270f0 t ZSTD_compressSequences
+ffffffff81527590 t ZSTD_writeFrameHeader
+ffffffff81527710 t ZSTD_flushStream
+ffffffff81527770 t ZSTD_endStream
+ffffffff81527810 t ZSTD_getParams
+ffffffff815278c0 t ZSTD_resetCCtx_internal
+ffffffff81528350 t ZSTD_reset_matchState
+ffffffff81528830 t ZSTD_overflowCorrectIfNeeded
+ffffffff81528a00 t ZSTD_compressBlock_internal
+ffffffff81528b80 t ZSTD_reduceTable
+ffffffff81528d20 t ZSTD_buildSeqStore
+ffffffff81528fd0 t ZSTD_isRLE
+ffffffff81529120 t ZSTD_copyBlockSequences
+ffffffff815293a0 t ZSTD_entropyCompressSequences
+ffffffff81529a80 t ZSTD_compress_insertDictionary
+ffffffff81529bb0 t ZSTD_loadDictionaryContent
+ffffffff81529e40 t ZSTD_copySequencesToSeqStoreExplicitBlockDelim
+ffffffff8152a3c0 t ZSTD_copySequencesToSeqStoreNoBlockDelim
+ffffffff8152aa20 t ZSTD_noCompressLiterals
+ffffffff8152aaa0 t ZSTD_compressRleLiteralsBlock
+ffffffff8152ab00 t ZSTD_compressLiterals
+ffffffff8152af50 t ZSTD_fseBitCost
+ffffffff8152b030 t ZSTD_crossEntropyCost
+ffffffff8152b0a0 t ZSTD_selectEncodingType
+ffffffff8152b450 t ZSTD_buildCTable
+ffffffff8152b5e0 t ZSTD_encodeSequences
+ffffffff8152bcd0 t ZSTD_encodeSequences_bmi2
+ffffffff8152c310 t ZSTD_compressSuperBlock
+ffffffff8152da00 t ZSTD_fillDoubleHashTable
+ffffffff8152db90 t ZSTD_compressBlock_doubleFast
+ffffffff81531740 t ZSTD_compressBlock_doubleFast_dictMatchState
+ffffffff81535c40 t ZSTD_compressBlock_doubleFast_extDict
+ffffffff81537c30 t ZSTD_count_2segments
+ffffffff81537dd0 t ZSTD_count_2segments
+ffffffff81537f70 t ZSTD_count_2segments
+ffffffff81538110 t ZSTD_count_2segments
+ffffffff815382b0 t ZSTD_fillHashTable
+ffffffff815384b0 t ZSTD_compressBlock_fast
+ffffffff8153a770 t ZSTD_compressBlock_fast_dictMatchState
+ffffffff8153dca0 t ZSTD_compressBlock_fast_extDict
+ffffffff8153f160 t ZSTD_insertAndFindFirstIndex
+ffffffff8153f2d0 t ZSTD_dedicatedDictSearch_lazy_loadDictionary
+ffffffff8153f760 t ZSTD_compressBlock_btlazy2
+ffffffff81540260 t ZSTD_compressBlock_lazy2
+ffffffff81542b60 t ZSTD_compressBlock_lazy
+ffffffff81544960 t ZSTD_compressBlock_greedy
+ffffffff81545ac0 t ZSTD_compressBlock_btlazy2_dictMatchState
+ffffffff81546360 t ZSTD_compressBlock_lazy2_dictMatchState
+ffffffff81546c00 t ZSTD_compressBlock_lazy_dictMatchState
+ffffffff81547480 t ZSTD_compressBlock_greedy_dictMatchState
+ffffffff81547aa0 t ZSTD_compressBlock_lazy2_dedicatedDictSearch
+ffffffff81548340 t ZSTD_compressBlock_lazy_dedicatedDictSearch
+ffffffff81548bc0 t ZSTD_compressBlock_greedy_dedicatedDictSearch
+ffffffff815491e0 t ZSTD_compressBlock_greedy_extDict
+ffffffff8154a4a0 t ZSTD_compressBlock_lazy_extDict
+ffffffff8154c680 t ZSTD_compressBlock_lazy2_extDict
+ffffffff8154f440 t ZSTD_compressBlock_btlazy2_extDict
+ffffffff8154fda0 t ZSTD_BtFindBestMatch_selectMLS
+ffffffff81551730 t ZSTD_HcFindBestMatch_dictMatchState_selectMLS
+ffffffff81552480 t ZSTD_BtFindBestMatch_dictMatchState_selectMLS
+ffffffff81554490 t ZSTD_HcFindBestMatch_dedicatedDictSearch_selectMLS
+ffffffff815554d0 t ZSTD_BtFindBestMatch_extDict_selectMLS
+ffffffff81557240 t ZSTD_ldm_adjustParameters
+ffffffff815572a0 t ZSTD_ldm_getTableSize
+ffffffff815572e0 t ZSTD_ldm_getMaxNbSeq
+ffffffff81557320 t ZSTD_ldm_fillHashTable
+ffffffff815574d0 t ZSTD_ldm_gear_feed
+ffffffff81557620 t ZSTD_ldm_generateSequences
+ffffffff815583a0 t ZSTD_ldm_skipSequences
+ffffffff81558450 t ZSTD_ldm_skipRawSeqStoreBytes
+ffffffff815584c0 t ZSTD_ldm_blockCompress
+ffffffff81558b00 t ZSTD_updateTree
+ffffffff81558b20 t ZSTD_updateTree_internal.llvm.896845997752628382
+ffffffff815590c0 t ZSTD_compressBlock_btopt
+ffffffff815590e0 t ZSTD_compressBlock_opt_generic
+ffffffff8155ae10 t ZSTD_compressBlock_btultra
+ffffffff8155ae30 t ZSTD_compressBlock_btultra2
+ffffffff8155b080 t ZSTD_compressBlock_btopt_dictMatchState
+ffffffff8155b0a0 t ZSTD_compressBlock_btultra_dictMatchState
+ffffffff8155b0c0 t ZSTD_compressBlock_btopt_extDict
+ffffffff8155b0e0 t ZSTD_compressBlock_btultra_extDict
+ffffffff8155b100 t ZSTD_opt_getNextMatchAndUpdateSeqStore
+ffffffff8155b290 t ZSTD_optLdm_processMatchCandidate
+ffffffff8155b390 t ZSTD_getMatchPrice
+ffffffff8155b4e0 t ZSTD_setBasePrices
+ffffffff8155b5b0 t ZSTD_insertBtAndGetAllMatches
+ffffffff8155c440 t zstd_is_error
+ffffffff8155c460 t zstd_get_error_code
+ffffffff8155c480 t zstd_get_error_name
+ffffffff8155c490 t zstd_dctx_workspace_bound
+ffffffff8155c4a0 t zstd_init_dctx
+ffffffff8155c4c0 t zstd_decompress_dctx
+ffffffff8155c4d0 t zstd_dstream_workspace_bound
+ffffffff8155c500 t zstd_init_dstream
+ffffffff8155c530 t zstd_reset_dstream
+ffffffff8155c540 t zstd_decompress_stream
+ffffffff8155c550 t zstd_find_frame_compressed_size
+ffffffff8155c560 t zstd_get_frame_header
+ffffffff8155c580 t HUF_readDTableX1_wksp
+ffffffff8155c5a0 t HUF_readDTableX1_wksp_bmi2
+ffffffff8155cbd0 t HUF_decompress1X1_usingDTable
+ffffffff8155cc00 t HUF_decompress1X1_usingDTable_internal
+ffffffff8155cf30 t HUF_decompress1X1_DCtx_wksp
+ffffffff8155cfb0 t HUF_decompress4X1_usingDTable
+ffffffff8155cfe0 t HUF_decompress4X1_usingDTable_internal
+ffffffff8155e2d0 t HUF_decompress4X1_DCtx_wksp
+ffffffff8155e350 t HUF_readDTableX2_wksp
+ffffffff8155ed70 t HUF_decompress1X2_usingDTable
+ffffffff8155eda0 t HUF_decompress1X2_usingDTable_internal
+ffffffff8155f170 t HUF_decompress1X2_DCtx_wksp
+ffffffff8155f1f0 t HUF_decompress4X2_usingDTable
+ffffffff8155f220 t HUF_decompress4X2_usingDTable_internal
+ffffffff81560800 t HUF_decompress4X2_DCtx_wksp
+ffffffff81560880 t HUF_decompress1X_usingDTable
+ffffffff815608b0 t HUF_decompress4X_usingDTable
+ffffffff815608e0 t HUF_selectDecoder
+ffffffff81560990 t HUF_decompress4X_hufOnly_wksp
+ffffffff81560b10 t HUF_decompress1X_DCtx_wksp
+ffffffff81560cd0 t HUF_decompress1X_usingDTable_bmi2
+ffffffff81560d00 t HUF_decompress1X1_DCtx_wksp_bmi2
+ffffffff81560d80 t HUF_decompress4X_usingDTable_bmi2
+ffffffff81560db0 t HUF_decompress4X_hufOnly_wksp_bmi2
+ffffffff81560f30 t HUF_decompress1X1_usingDTable_internal_bmi2
+ffffffff81561240 t BIT_initDStream
+ffffffff815613a0 t HUF_decompress4X1_usingDTable_internal_bmi2
+ffffffff81562560 t HUF_decompress1X2_usingDTable_internal_bmi2
+ffffffff81562920 t HUF_decompress4X2_usingDTable_internal_bmi2
+ffffffff81563e40 t ZSTD_DDict_dictContent
+ffffffff81563e50 t ZSTD_DDict_dictSize
+ffffffff81563e60 t ZSTD_copyDDictParameters
+ffffffff81563f20 t ZSTD_createDDict_advanced
+ffffffff815640f0 t ZSTD_freeDDict
+ffffffff81564190 t ZSTD_createDDict
+ffffffff81564200 t ZSTD_createDDict_byReference
+ffffffff81564270 t ZSTD_initStaticDDict
+ffffffff81564360 t ZSTD_estimateDDictSize
+ffffffff81564380 t ZSTD_sizeof_DDict
+ffffffff815643c0 t ZSTD_getDictID_fromDDict
+ffffffff815643f0 t ZSTD_sizeof_DCtx
+ffffffff81564430 t ZSTD_estimateDCtxSize
+ffffffff81564440 t ZSTD_initStaticDCtx
+ffffffff81564560 t ZSTD_createDCtx_advanced
+ffffffff815646c0 t ZSTD_createDCtx
+ffffffff81564800 t ZSTD_freeDCtx
+ffffffff81564960 t ZSTD_copyDCtx
+ffffffff81564980 t ZSTD_isFrame
+ffffffff815649b0 t ZSTD_frameHeaderSize
+ffffffff81564a10 t ZSTD_getFrameHeader_advanced
+ffffffff81564c30 t ZSTD_getFrameHeader
+ffffffff81564c50 t ZSTD_getFrameContentSize
+ffffffff81564ce0 t ZSTD_findDecompressedSize
+ffffffff81564e40 t ZSTD_findFrameCompressedSize
+ffffffff81564e50 t ZSTD_getDecompressedSize
+ffffffff81564ef0 t ZSTD_findFrameSizeInfo.llvm.2566293336278510596
+ffffffff81565090 t ZSTD_decompressBound
+ffffffff815650f0 t ZSTD_insertBlock
+ffffffff81565120 t ZSTD_decompress_usingDict
+ffffffff81565140 t ZSTD_decompressMultiFrame
+ffffffff81565900 t ZSTD_decompressDCtx
+ffffffff815659a0 t ZSTD_decompress_usingDDict
+ffffffff815659c0 t ZSTD_getDDict
+ffffffff81565a30 t ZSTD_decompress
+ffffffff81565c10 t ZSTD_nextSrcSizeToDecompress
+ffffffff81565c30 t ZSTD_nextInputType
+ffffffff81565c60 t ZSTD_decompressContinue
+ffffffff81566240 t ZSTD_decodeFrameHeader
+ffffffff815663f0 t ZSTD_loadDEntropy
+ffffffff815667e0 t ZSTD_decompressBegin
+ffffffff815668c0 t ZSTD_decompressBegin_usingDict
+ffffffff81566a50 t ZSTD_decompressBegin_usingDDict
+ffffffff81566b50 t ZSTD_getDictID_fromDict
+ffffffff81566b70 t ZSTD_getDictID_fromFrame
+ffffffff81566bf0 t ZSTD_createDStream
+ffffffff81566d30 t ZSTD_createDStream_advanced
+ffffffff81566ea0 t ZSTD_initStaticDStream
+ffffffff81566fc0 t ZSTD_freeDStream
+ffffffff81566fd0 t ZSTD_DStreamInSize
+ffffffff81566fe0 t ZSTD_DStreamOutSize
+ffffffff81566ff0 t ZSTD_DCtx_loadDictionary_advanced
+ffffffff815670d0 t ZSTD_DCtx_loadDictionary_byReference
+ffffffff815671a0 t ZSTD_DCtx_loadDictionary
+ffffffff81567270 t ZSTD_DCtx_refPrefix_advanced
+ffffffff81567340 t ZSTD_DCtx_refPrefix
+ffffffff81567410 t ZSTD_initDStream_usingDict
+ffffffff815674e0 t ZSTD_DCtx_reset
+ffffffff81567580 t ZSTD_initDStream
+ffffffff815675f0 t ZSTD_initDStream_usingDDict
+ffffffff81567640 t ZSTD_DCtx_refDDict
+ffffffff81567a00 t ZSTD_resetDStream
+ffffffff81567a40 t ZSTD_DCtx_setMaxWindowSize
+ffffffff81567a90 t ZSTD_dParam_getBounds
+ffffffff81567af0 t ZSTD_DCtx_setFormat
+ffffffff81567b30 t ZSTD_DCtx_setParameter
+ffffffff81567c20 t ZSTD_DCtx_getParameter
+ffffffff81567c90 t ZSTD_sizeof_DStream
+ffffffff81567cd0 t ZSTD_decodingBufferSize_min
+ffffffff81567d00 t ZSTD_estimateDStreamSize
+ffffffff81567d30 t ZSTD_estimateDStreamSize_fromFrame
+ffffffff81567df0 t ZSTD_decompressStream
+ffffffff81568ab0 t ZSTD_decompressStream_simpleArgs
+ffffffff81568b30 t ZSTD_getcBlockSize
+ffffffff81568b90 t ZSTD_decodeLiteralsBlock
+ffffffff81568f30 t ZSTD_buildFSETable
+ffffffff81569290 t ZSTD_buildFSETable_body_bmi2
+ffffffff815695e0 t ZSTD_decodeSeqHeaders
+ffffffff81569820 t ZSTD_buildSeqTable
+ffffffff81569a60 t ZSTD_decompressBlock_internal
+ffffffff8156b3e0 t ZSTD_decompressSequences
+ffffffff8156c0b0 t ZSTD_checkContinuity
+ffffffff8156c100 t ZSTD_decompressBlock
+ffffffff8156c170 t ZSTD_decompressSequencesLong_bmi2
+ffffffff8156d840 t BIT_reloadDStream
+ffffffff8156d8b0 t ZSTD_execSequenceEnd
+ffffffff8156de00 t ZSTD_decompressSequences_bmi2
+ffffffff8156ea70 t FSE_versionNumber
+ffffffff8156ea80 t FSE_isError
+ffffffff8156eaa0 t FSE_getErrorName
+ffffffff8156eac0 t HUF_isError
+ffffffff8156eae0 t HUF_getErrorName
+ffffffff8156eb00 t FSE_readNCount_bmi2
+ffffffff8156ee00 t FSE_readNCount_body_bmi2
+ffffffff8156f110 t FSE_readNCount
+ffffffff8156f130 t HUF_readStats
+ffffffff8156f1e0 t HUF_readStats_wksp
+ffffffff8156f420 t HUF_readStats_body_bmi2
+ffffffff8156f630 t ERR_getErrorString
+ffffffff8156f900 t FSE_createDTable
+ffffffff8156f910 t FSE_freeDTable
+ffffffff8156f920 t FSE_buildDTable_wksp
+ffffffff8156f930 t FSE_buildDTable_internal
+ffffffff8156fc30 t FSE_buildDTable_rle
+ffffffff8156fc60 t FSE_buildDTable_raw
+ffffffff8156fcb0 t FSE_decompress_usingDTable
+ffffffff815706f0 t FSE_decompress_wksp
+ffffffff81570710 t FSE_decompress_wksp_bmi2
+ffffffff815712c0 t FSE_decompress_wksp_body_bmi2
+ffffffff81571e60 t ZSTD_versionNumber
+ffffffff81571e70 t ZSTD_versionString
+ffffffff81571e90 t ZSTD_isError
+ffffffff81571eb0 t ZSTD_getErrorName
+ffffffff81571ed0 t ZSTD_getErrorCode
+ffffffff81571ef0 t ZSTD_getErrorString
+ffffffff81571f00 t ZSTD_customMalloc
+ffffffff81571f30 t ZSTD_customCalloc
+ffffffff81571f80 t ZSTD_customFree
+ffffffff81571fb0 t xz_dec_run
+ffffffff81572930 t xz_dec_reset
+ffffffff815729e0 t xz_dec_init
+ffffffff81572b10 t xz_dec_end
+ffffffff81572b50 t fill_temp
+ffffffff81572bd0 t crc32_validate
+ffffffff81572c40 t dec_index
+ffffffff81572db0 t index_update
+ffffffff81572df0 t dec_stream_footer
+ffffffff81572e70 t xz_dec_lzma2_run
+ffffffff81573650 t xz_dec_lzma2_create
+ffffffff815736d0 t xz_dec_lzma2_reset
+ffffffff81573770 t xz_dec_lzma2_end
+ffffffff815737a0 t lzma_main
+ffffffff815744d0 t lzma_len
+ffffffff815746d0 t xz_dec_bcj_run
+ffffffff81574960 t bcj_apply
+ffffffff81574f00 t xz_dec_bcj_create
+ffffffff81574f30 t xz_dec_bcj_reset
+ffffffff81574f70 t percpu_counter_set
+ffffffff81574ff0 t percpu_counter_add_batch
+ffffffff815750a0 t percpu_counter_sync
+ffffffff81575100 t __percpu_counter_sum
+ffffffff81575180 t __percpu_counter_init
+ffffffff81575230 t percpu_counter_destroy
+ffffffff815752b0 t __percpu_counter_compare
+ffffffff81575380 t compute_batch_value
+ffffffff815753b0 t percpu_counter_cpu_dead
+ffffffff81575460 t task_current_syscall
+ffffffff815754f0 t collect_syscall
+ffffffff81575650 t param_set_dyndbg_classes
+ffffffff81575b60 t ddebug_apply_class_bitmap
+ffffffff81575d60 t param_get_dyndbg_classes
+ffffffff81575dd0 t __dynamic_pr_debug
+ffffffff81575f10 t __dynamic_dev_dbg
+ffffffff81576090 t __dynamic_netdev_dbg
+ffffffff81576350 t ddebug_add_module
+ffffffff81576360 t __ddebug_add_module.llvm.6491102221086308010
+ffffffff815765f0 t ddebug_dyndbg_module_param_cb
+ffffffff81576680 t ddebug_remove_module
+ffffffff81576740 t ddebug_exec_queries
+ffffffff815775e0 t parse_linerange
+ffffffff81577720 t __dynamic_emit_prefix
+ffffffff815778c0 t ddebug_dyndbg_boot_param_cb
+ffffffff81577940 t ddebug_proc_write
+ffffffff815779f0 t ddebug_proc_open
+ffffffff81577a20 t ddebug_proc_start
+ffffffff81577ae0 t ddebug_proc_stop
+ffffffff81577b00 t ddebug_proc_next
+ffffffff81577b90 t ddebug_proc_show
+ffffffff81577d80 t errname
+ffffffff81577df0 t nla_get_range_unsigned
+ffffffff81577eb0 t nla_get_range_signed
+ffffffff81577f40 t __nla_validate
+ffffffff81577f60 t __nla_validate_parse.llvm.6496712554497318312
+ffffffff81578dd0 t nla_policy_len
+ffffffff81578e60 t __nla_parse
+ffffffff81578ea0 t nla_find
+ffffffff81578ef0 t nla_strscpy
+ffffffff81578f80 t nla_strdup
+ffffffff81578ff0 t nla_memcpy
+ffffffff81579050 t nla_memcmp
+ffffffff81579080 t nla_strcmp
+ffffffff815790f0 t __nla_reserve
+ffffffff81579150 t __nla_reserve_64bit
+ffffffff815791b0 t __nla_reserve_nohdr
+ffffffff815791f0 t nla_reserve
+ffffffff81579270 t nla_reserve_64bit
+ffffffff815792f0 t nla_reserve_nohdr
+ffffffff81579340 t __nla_put
+ffffffff815793b0 t __nla_put_64bit
+ffffffff81579420 t __nla_put_nohdr
+ffffffff81579470 t nla_put
+ffffffff81579510 t nla_put_64bit
+ffffffff815795b0 t nla_put_nohdr
+ffffffff81579630 t nla_append
+ffffffff81579690 t alloc_cpu_rmap
+ffffffff81579740 t cpu_rmap_put
+ffffffff81579780 t cpu_rmap_add
+ffffffff815797b0 t cpu_rmap_update
+ffffffff81579a40 t free_irq_cpu_rmap
+ffffffff81579ab0 t irq_cpu_rmap_add
+ffffffff81579bb0 t irq_cpu_rmap_notify
+ffffffff81579bd0 t irq_cpu_rmap_release
+ffffffff81579c20 t dql_completed
+ffffffff81579d70 t dql_reset
+ffffffff81579dc0 t dql_init
+ffffffff81579e10 t glob_match
+ffffffff8157a020 t strncpy_from_user
+ffffffff8157a150 t strnlen_user
+ffffffff8157a290 t mac_pton
+ffffffff8157a4a0 t sg_free_table_chained
+ffffffff8157a4d0 t sg_pool_free
+ffffffff8157a540 t sg_alloc_table_chained
+ffffffff8157a5f0 t sg_pool_alloc
+ffffffff8157a660 t memregion_alloc
+ffffffff8157a680 t memregion_free
+ffffffff8157a6a0 t stack_depot_get_extra_bits
+ffffffff8157a6b0 t stack_depot_init
+ffffffff8157a7a0 t stack_depot_snprint
+ffffffff8157a830 t stack_depot_fetch
+ffffffff8157a8a0 t stack_depot_print
+ffffffff8157a910 t __stack_depot_save
+ffffffff8157ade0 t stack_depot_save
+ffffffff8157ae00 t skip_comment
+ffffffff8157ae30 t find_font
+ffffffff8157ae60 t get_default_font
+ffffffff8157aed0 t ucs2_strnlen
+ffffffff8157af10 t ucs2_strlen
+ffffffff8157af50 t ucs2_strsize
+ffffffff8157af90 t ucs2_strncmp
+ffffffff8157aff0 t ucs2_utf8size
+ffffffff8157b050 t ucs2_as_utf8
+ffffffff8157b150 t sbitmap_init_node
+ffffffff8157b2a0 t sbitmap_resize
+ffffffff8157b310 t sbitmap_get
+ffffffff8157b520 t sbitmap_get_shallow
+ffffffff8157b730 t sbitmap_any_bit_set
+ffffffff8157b7a0 t sbitmap_weight
+ffffffff8157b890 t sbitmap_show
+ffffffff8157b990 t sbitmap_bitmap_show
+ffffffff8157bba0 t sbitmap_queue_init_node
+ffffffff8157bda0 t sbitmap_queue_recalculate_wake_batch
+ffffffff8157bde0 t sbitmap_queue_resize
+ffffffff8157be90 t __sbitmap_queue_get
+ffffffff8157bea0 t __sbitmap_queue_get_batch
+ffffffff8157c090 t sbitmap_queue_get_shallow
+ffffffff8157c0b0 t sbitmap_queue_min_shallow_depth
+ffffffff8157c110 t sbitmap_queue_wake_up
+ffffffff8157c1d0 t sbitmap_queue_clear_batch
+ffffffff8157c2b0 t sbitmap_queue_clear
+ffffffff8157c330 t sbitmap_queue_wake_all
+ffffffff8157c500 t sbitmap_queue_show
+ffffffff8157c7d0 t sbitmap_add_wait_queue
+ffffffff8157c800 t sbitmap_del_wait_queue
+ffffffff8157c850 t sbitmap_prepare_to_wait
+ffffffff8157c880 t sbitmap_finish_wait
+ffffffff8157c8c0 t rdmsr_on_cpu
+ffffffff8157c950 t __rdmsr_on_cpu
+ffffffff8157c9c0 t rdmsrl_on_cpu
+ffffffff8157ca40 t wrmsr_on_cpu
+ffffffff8157cac0 t __wrmsr_on_cpu
+ffffffff8157cb20 t wrmsrl_on_cpu
+ffffffff8157cb90 t rdmsr_on_cpus
+ffffffff8157ccc0 t wrmsr_on_cpus
+ffffffff8157cde0 t rdmsr_safe_on_cpu
+ffffffff8157cef0 t __rdmsr_safe_on_cpu
+ffffffff8157cf50 t wrmsr_safe_on_cpu
+ffffffff8157cfd0 t __wrmsr_safe_on_cpu
+ffffffff8157d020 t wrmsrl_safe_on_cpu
+ffffffff8157d090 t rdmsrl_safe_on_cpu
+ffffffff8157d190 t rdmsr_safe_regs_on_cpu
+ffffffff8157d1f0 t __rdmsr_safe_regs_on_cpu
+ffffffff8157d210 t wrmsr_safe_regs_on_cpu
+ffffffff8157d270 t __wrmsr_safe_regs_on_cpu
+ffffffff8157d290 t wbinvd_on_cpu
+ffffffff8157d2b0 t __wbinvd.llvm.18008803880164908923
+ffffffff8157d2c0 t wbinvd_on_all_cpus
+ffffffff8157d2f0 t __traceiter_read_msr
+ffffffff8157d350 t __traceiter_write_msr
+ffffffff8157d3b0 t __traceiter_rdpmc
+ffffffff8157d410 t trace_event_raw_event_msr_trace_class
+ffffffff8157d4e0 t perf_trace_msr_trace_class
+ffffffff8157d5f0 t msrs_alloc
+ffffffff8157d640 t msrs_free
+ffffffff8157d650 t msr_set_bit
+ffffffff8157d670 t __flip_bit.llvm.12098921109123884358
+ffffffff8157d7b0 t msr_clear_bit
+ffffffff8157d7d0 t do_trace_write_msr
+ffffffff8157d830 t do_trace_read_msr
+ffffffff8157d890 t do_trace_rdpmc
+ffffffff8157d8f0 t trace_raw_output_msr_trace_class
+ffffffff8157d960 t memcpy_fromio
+ffffffff8157d9b0 t memcpy_toio
+ffffffff8157da00 t memset_io
+ffffffff8157da10 t platform_irqchip_probe
+ffffffff8157db10 t simple_pm_bus_probe
+ffffffff8157dbc0 t simple_pm_bus_remove
+ffffffff8157dc00 t __traceiter_gpio_direction
+ffffffff8157dc60 t __traceiter_gpio_value
+ffffffff8157dcc0 t trace_event_raw_event_gpio_direction
+ffffffff8157dd90 t perf_trace_gpio_direction
+ffffffff8157dea0 t trace_event_raw_event_gpio_value
+ffffffff8157df70 t perf_trace_gpio_value
+ffffffff8157e080 t gpio_to_desc
+ffffffff8157e120 t gpiochip_get_desc
+ffffffff8157e160 t desc_to_gpio
+ffffffff8157e190 t gpiod_to_chip
+ffffffff8157e1c0 t gpiod_get_direction
+ffffffff8157e250 t gpiochip_line_is_valid
+ffffffff8157e280 t gpiochip_add_data_with_key
+ffffffff8157edc0 t gpiochip_find_base
+ffffffff8157ee30 t machine_gpiochip_add
+ffffffff8157eea0 t gpiochip_free_hogs
+ffffffff8157ef20 t gpiochip_get_data
+ffffffff8157ef40 t gpiochip_remove
+ffffffff8157f0f0 t gpiochip_is_requested
+ffffffff8157f150 t gpiochip_find
+ffffffff8157f1e0 t gpiochip_generic_request
+ffffffff8157f1f0 t gpiochip_generic_free
+ffffffff8157f200 t gpiochip_generic_config
+ffffffff8157f210 t gpiod_request
+ffffffff8157f2e0 t gpiod_request_commit
+ffffffff8157f4b0 t gpiod_free
+ffffffff8157f4f0 t gpiod_free_commit.llvm.5623178293262042688
+ffffffff8157f610 t gpiochip_request_own_desc
+ffffffff8157f6d0 t gpiod_configure_flags
+ffffffff8157f820 t gpiochip_free_own_desc
+ffffffff8157f840 t gpio_set_debounce_timeout
+ffffffff8157f890 t gpiod_direction_input
+ffffffff8157fb20 t gpiod_direction_output_raw
+ffffffff8157fbc0 t gpiod_direction_output_raw_commit
+ffffffff8157fe00 t gpiod_direction_output
+ffffffff81580090 t gpiod_enable_hw_timestamp_ns
+ffffffff81580210 t gpiod_disable_hw_timestamp_ns
+ffffffff81580390 t gpiod_set_config
+ffffffff81580470 t gpiod_set_debounce
+ffffffff81580550 t gpiod_set_transitory
+ffffffff81580650 t gpiod_is_active_low
+ffffffff815806f0 t gpiod_toggle_active_low
+ffffffff81580770 t gpiod_get_array_value_complex
+ffffffff81580df0 t gpiod_get_raw_value
+ffffffff81580eb0 t gpiod_get_raw_value_commit
+ffffffff81580f70 t gpiod_get_value
+ffffffff81581040 t gpiod_get_raw_array_value
+ffffffff81581080 t gpiod_get_array_value
+ffffffff815810b0 t gpiod_set_array_value_complex
+ffffffff815816b0 t gpio_set_open_drain_value_commit
+ffffffff815817d0 t gpio_set_open_source_value_commit
+ffffffff81581900 t gpiod_set_raw_value
+ffffffff815819b0 t gpiod_set_raw_value_commit
+ffffffff81581a60 t gpiod_set_value
+ffffffff81581b80 t gpiod_set_raw_array_value
+ffffffff81581bc0 t gpiod_set_array_value
+ffffffff81581bf0 t gpiod_cansleep
+ffffffff81581c90 t gpiod_set_consumer_name
+ffffffff81581d60 t gpiod_to_irq
+ffffffff81581dd0 t gpiochip_lock_as_irq
+ffffffff81581f50 t gpiochip_unlock_as_irq
+ffffffff81581fd0 t gpiochip_disable_irq
+ffffffff81582030 t gpiochip_enable_irq
+ffffffff815820a0 t gpiochip_line_is_irq
+ffffffff815820e0 t gpiochip_reqres_irq
+ffffffff81582150 t gpiochip_relres_irq
+ffffffff815821d0 t gpiochip_line_is_open_drain
+ffffffff81582210 t gpiochip_line_is_open_source
+ffffffff81582250 t gpiochip_line_is_persistent
+ffffffff81582290 t gpiod_get_raw_value_cansleep
+ffffffff81582330 t gpiod_get_value_cansleep
+ffffffff815823e0 t gpiod_get_raw_array_value_cansleep
+ffffffff81582420 t gpiod_get_array_value_cansleep
+ffffffff81582460 t gpiod_set_raw_value_cansleep
+ffffffff815824f0 t gpiod_set_value_cansleep
+ffffffff815825e0 t gpiod_set_raw_array_value_cansleep
+ffffffff81582620 t gpiod_add_lookup_tables
+ffffffff815826b0 t gpiod_set_array_value_cansleep
+ffffffff815826f0 t gpiod_add_lookup_table
+ffffffff81582750 t gpiod_remove_lookup_table
+ffffffff815827b0 t gpiod_add_hogs
+ffffffff815828e0 t gpiochip_machine_hog
+ffffffff815829e0 t gpiod_remove_hogs
+ffffffff81582a60 t fwnode_gpiod_get_index
+ffffffff81582cf0 t gpiod_count
+ffffffff81582e60 t gpiod_get
+ffffffff81582e80 t gpiod_get_index
+ffffffff81583320 t gpiod_get_optional
+ffffffff81583340 t gpiod_get_index_optional
+ffffffff81583360 t gpiod_put
+ffffffff815833a0 t gpiod_hog
+ffffffff815834c0 t gpiod_get_array
+ffffffff81583bc0 t gpiod_put_array
+ffffffff81583c30 t gpiod_get_array_optional
+ffffffff81583c50 t trace_raw_output_gpio_direction
+ffffffff81583cc0 t trace_raw_output_gpio_value
+ffffffff81583d30 t gpio_bus_match
+ffffffff81583d60 t gpiodevice_release
+ffffffff81583e10 t gpio_stub_drv_probe
+ffffffff81583e20 t gpiolib_open
+ffffffff81583e70 t gpiolib_seq_start
+ffffffff81583ef0 t gpiolib_seq_stop
+ffffffff81583f00 t gpiolib_seq_next
+ffffffff81583f70 t gpiolib_seq_show
+ffffffff81584270 t devm_gpiod_get
+ffffffff81584290 t devm_gpiod_get_index
+ffffffff81584360 t devm_gpiod_get_optional
+ffffffff81584380 t devm_gpiod_get_index_optional
+ffffffff815843a0 t devm_gpiod_release
+ffffffff815843c0 t devm_gpiod_match
+ffffffff815843e0 t devm_gpiod_get_from_of_node
+ffffffff815844b0 t devm_fwnode_gpiod_get_index
+ffffffff81584560 t devm_gpiod_get_array
+ffffffff815845f0 t devm_gpiod_release_array
+ffffffff81584610 t devm_gpiod_get_array_optional
+ffffffff815846a0 t devm_gpiod_put
+ffffffff81584700 t devm_gpiod_unhinge
+ffffffff81584770 t devm_gpiod_put_array
+ffffffff815847d0 t devm_gpiod_match_array
+ffffffff815847f0 t devm_gpio_request
+ffffffff81584880 t devm_gpio_release
+ffffffff815848a0 t devm_gpio_request_one
+ffffffff81584930 t devm_gpiochip_add_data_with_key
+ffffffff81584990 t devm_gpio_chip_release
+ffffffff815849a0 t gpio_free
+ffffffff815849c0 t gpio_request_one
+ffffffff81584a90 t gpio_request
+ffffffff81584ad0 t gpio_request_array
+ffffffff81584b60 t gpio_free_array
+ffffffff81584bb0 t of_gpio_get_count
+ffffffff81584ce0 t of_gpio_need_valid_mask
+ffffffff81584d10 t of_get_named_gpio_flags
+ffffffff81584e30 t gpiod_get_from_of_node
+ffffffff81584fe0 t of_find_gpio
+ffffffff81585300 t of_mm_gpiochip_add_data
+ffffffff815853e0 t of_mm_gpiochip_remove
+ffffffff81585410 t of_gpiochip_add
+ffffffff815858c0 t of_gpio_simple_xlate
+ffffffff81585910 t of_gpiochip_remove
+ffffffff81585920 t of_gpio_dev_init
+ffffffff815859b0 t of_gpiochip_match_node_and_xlate
+ffffffff815859f0 t gpiolib_cdev_register
+ffffffff81585a50 t gpiolib_cdev_unregister
+ffffffff81585a70 t lineinfo_watch_read
+ffffffff81585e00 t lineinfo_watch_poll
+ffffffff81585eb0 t gpio_ioctl
+ffffffff81586d60 t gpio_chrdev_open
+ffffffff81586ec0 t gpio_chrdev_release
+ffffffff81586f20 t lineinfo_get_v1
+ffffffff81587120 t lineinfo_get
+ffffffff81587280 t linehandle_flags_to_desc_flags
+ffffffff81587300 t linehandle_ioctl
+ffffffff81587770 t linehandle_release
+ffffffff815877f0 t lineevent_irq_handler
+ffffffff81587820 t lineevent_irq_thread
+ffffffff81587910 t lineevent_free
+ffffffff81587960 t lineevent_read
+ffffffff81587b90 t lineevent_poll
+ffffffff81587c40 t lineevent_ioctl
+ffffffff81587d60 t lineevent_release
+ffffffff81587dc0 t gpio_desc_to_lineinfo
+ffffffff81587ff0 t gpio_v2_line_config_validate
+ffffffff815881f0 t debounce_work_func
+ffffffff81588330 t gpio_v2_line_config_flags_to_desc_flags
+ffffffff81588440 t gpio_v2_line_config_output_value
+ffffffff815884b0 t edge_detector_setup
+ffffffff815886e0 t linereq_free
+ffffffff815887e0 t linereq_put_event
+ffffffff81588870 t edge_irq_handler
+ffffffff815888d0 t edge_irq_thread
+ffffffff81588a10 t debounce_irq_handler
+ffffffff81588a60 t linereq_read
+ffffffff81588cc0 t linereq_poll
+ffffffff81588d70 t linereq_ioctl
+ffffffff81589770 t linereq_release
+ffffffff81589790 t linereq_show_fdinfo
+ffffffff81589830 t lineinfo_changed_notify
+ffffffff81589940 t acpi_get_and_request_gpiod
+ffffffff815899f0 t acpi_gpio_get_irq_resource
+ffffffff81589a20 t acpi_gpio_get_io_resource
+ffffffff81589a50 t acpi_gpiochip_request_interrupts
+ffffffff81589b90 t acpi_gpio_chip_dh
+ffffffff81589ba0 t acpi_gpiochip_alloc_event
+ffffffff81589f40 t acpi_gpiochip_request_irqs
+ffffffff8158a040 t acpi_gpiochip_free_interrupts
+ffffffff8158a1e0 t acpi_dev_add_driver_gpios
+ffffffff8158a210 t acpi_dev_remove_driver_gpios
+ffffffff8158a230 t devm_acpi_dev_add_driver_gpios
+ffffffff8158a2b0 t acpi_dev_release_driver_gpios
+ffffffff8158a2d0 t acpi_gpio_update_gpiod_flags
+ffffffff8158a360 t acpi_gpio_update_gpiod_lookup_flags
+ffffffff8158a390 t acpi_find_gpio
+ffffffff8158a990 t acpi_node_get_gpiod
+ffffffff8158ab40 t acpi_gpio_property_lookup
+ffffffff8158ad20 t acpi_dev_gpio_irq_wake_get_by
+ffffffff8158b090 t acpi_gpiochip_add
+ffffffff8158b3b0 t acpi_gpiochip_remove
+ffffffff8158b560 t acpi_gpio_dev_init
+ffffffff8158b5f0 t acpi_gpio_count
+ffffffff8158b920 t acpi_find_gpio_count
+ffffffff8158b940 t acpi_gpiochip_find
+ffffffff8158b970 t acpi_gpio_irq_handler
+ffffffff8158b990 t acpi_gpio_irq_handler_evt
+ffffffff8158b9b0 t acpi_gpio_in_ignore_list
+ffffffff8158bae0 t acpi_populate_gpio_lookup
+ffffffff8158bcd0 t acpi_gpio_adr_space_handler
+ffffffff8158bfe0 t bgpio_init
+ffffffff8158c380 t bgpio_request
+ffffffff8158c3a0 t bgpio_set_set
+ffffffff8158c440 t bgpio_set_with_clear
+ffffffff8158c490 t bgpio_set_multiple_with_clear
+ffffffff8158c570 t bgpio_set_multiple_set
+ffffffff8158c590 t bgpio_set_none
+ffffffff8158c5a0 t bgpio_set
+ffffffff8158c640 t bgpio_set_multiple
+ffffffff8158c660 t bgpio_get_set
+ffffffff8158c6b0 t bgpio_get_set_multiple
+ffffffff8158c730 t bgpio_get
+ffffffff8158c780 t bgpio_get_multiple_be
+ffffffff8158c890 t bgpio_get_multiple
+ffffffff8158c8d0 t bgpio_set_multiple_single_reg
+ffffffff8158c9d0 t bgpio_read8
+ffffffff8158c9e0 t bgpio_write8
+ffffffff8158c9f0 t bgpio_read16be
+ffffffff8158ca10 t bgpio_write16be
+ffffffff8158ca30 t bgpio_read16
+ffffffff8158ca50 t bgpio_write16
+ffffffff8158ca60 t bgpio_read32be
+ffffffff8158ca80 t bgpio_write32be
+ffffffff8158caa0 t bgpio_read32
+ffffffff8158cab0 t bgpio_write32
+ffffffff8158cac0 t bgpio_read64
+ffffffff8158cad0 t bgpio_write64
+ffffffff8158cae0 t bgpio_dir_out_dir_first
+ffffffff8158cba0 t bgpio_dir_out_val_first
+ffffffff8158cc50 t bgpio_dir_in
+ffffffff8158ccf0 t bgpio_get_dir
+ffffffff8158cda0 t bgpio_dir_out_err
+ffffffff8158cdb0 t bgpio_simple_dir_out
+ffffffff8158cdd0 t bgpio_simple_dir_in
+ffffffff8158cde0 t bgpio_pdev_probe
+ffffffff8158d130 t pci_bus_read_config_byte
+ffffffff8158d1a0 t pci_bus_read_config_word
+ffffffff8158d220 t pci_bus_read_config_dword
+ffffffff8158d2a0 t pci_bus_write_config_byte
+ffffffff8158d2d0 t pci_bus_write_config_word
+ffffffff8158d300 t pci_bus_write_config_dword
+ffffffff8158d340 t pci_generic_config_read
+ffffffff8158d3a0 t pci_generic_config_write
+ffffffff8158d3f0 t pci_generic_config_read32
+ffffffff8158d460 t pci_generic_config_write32
+ffffffff8158d550 t pci_bus_set_ops
+ffffffff8158d5a0 t pci_user_read_config_byte
+ffffffff8158d690 t pci_wait_cfg
+ffffffff8158d790 t pci_user_read_config_word
+ffffffff8158d890 t pci_user_read_config_dword
+ffffffff8158d990 t pci_user_write_config_byte
+ffffffff8158da30 t pci_user_write_config_word
+ffffffff8158dad0 t pci_user_write_config_dword
+ffffffff8158db80 t pci_cfg_access_lock
+ffffffff8158dc00 t pci_cfg_access_trylock
+ffffffff8158dc70 t pci_cfg_access_unlock
+ffffffff8158dd10 t pcie_cap_has_lnkctl
+ffffffff8158dd40 t pcie_cap_has_rtctl
+ffffffff8158dd70 t pcie_capability_read_word
+ffffffff8158de40 t pcie_capability_reg_implemented
+ffffffff8158df30 t pci_read_config_word
+ffffffff8158df70 t pcie_capability_read_dword
+ffffffff8158e030 t pci_read_config_dword
+ffffffff8158e070 t pcie_capability_write_word
+ffffffff8158e0d0 t pci_write_config_word
+ffffffff8158e110 t pcie_capability_write_dword
+ffffffff8158e170 t pci_write_config_dword
+ffffffff8158e1a0 t pcie_capability_clear_and_set_word
+ffffffff8158e2d0 t pcie_capability_clear_and_set_dword
+ffffffff8158e400 t pci_read_config_byte
+ffffffff8158e440 t pci_write_config_byte
+ffffffff8158e480 t pci_add_resource_offset
+ffffffff8158e4f0 t pci_add_resource
+ffffffff8158e560 t pci_free_resource_list
+ffffffff8158e570 t pci_bus_add_resource
+ffffffff8158e600 t pci_bus_resource_n
+ffffffff8158e660 t pci_bus_remove_resource
+ffffffff8158e700 t pci_bus_remove_resources
+ffffffff8158e7a0 t devm_request_pci_bus_resources
+ffffffff8158e820 t pci_bus_alloc_resource
+ffffffff8158e8c0 t pci_bus_alloc_from_region
+ffffffff8158eb40 t pci_bus_clip_resource
+ffffffff8158ecb0 t pcibios_bus_add_device
+ffffffff8158ecc0 t pci_bus_add_device
+ffffffff8158ed40 t pci_bus_add_devices
+ffffffff8158edd0 t pci_walk_bus
+ffffffff8158ee70 t pci_bus_get
+ffffffff8158eea0 t pci_bus_put
+ffffffff8158eec0 t no_pci_devices
+ffffffff8158ef00 t __pci_read_base
+ffffffff8158f290 t pci_read_bridge_bases
+ffffffff8158f6e0 t pci_alloc_host_bridge
+ffffffff8158f760 t pci_release_host_bridge_dev
+ffffffff8158f7b0 t devm_pci_alloc_host_bridge
+ffffffff8158f870 t devm_pci_alloc_host_bridge_release
+ffffffff8158f890 t pci_free_host_bridge
+ffffffff8158f8b0 t pci_speed_string
+ffffffff8158f8e0 t pcie_update_link_speed
+ffffffff8158f900 t pci_add_new_bus
+ffffffff8158ff20 t pci_scan_bridge
+ffffffff8158ff40 t pci_scan_bridge_extend
+ffffffff81590720 t set_pcie_port_type
+ffffffff81590870 t set_pcie_hotplug_bridge
+ffffffff815908d0 t pci_cfg_space_size
+ffffffff81590b50 t pci_setup_device
+ffffffff81591690 t pci_configure_extended_tags
+ffffffff81591790 t pcie_relaxed_ordering_enabled
+ffffffff815917f0 t pci_alloc_dev
+ffffffff81591850 t pci_bus_generic_read_dev_vendor_id
+ffffffff815919c0 t pci_bus_read_dev_vendor_id
+ffffffff81591a10 t pcie_report_downtraining
+ffffffff81591a60 t pci_device_add
+ffffffff81592080 t pci_release_dev
+ffffffff81592120 t pci_scan_single_device
+ffffffff81592260 t pci_scan_slot
+ffffffff81592410 t pcie_bus_configure_settings
+ffffffff815924d0 t pcie_find_smpss
+ffffffff81592510 t pcie_bus_configure_set
+ffffffff815926b0 t pci_scan_child_bus
+ffffffff815926d0 t pci_scan_child_bus_extend.llvm.11235229719753489230
+ffffffff81592a50 t pci_create_root_bus
+ffffffff81592b60 t pci_register_host_bridge
+ffffffff81593190 t pci_host_probe
+ffffffff815932e0 t pci_scan_root_bus_bridge
+ffffffff81593470 t pci_bus_insert_busn_res
+ffffffff815935d0 t pci_bus_update_busn_res_end
+ffffffff815936c0 t pci_bus_release_busn_res
+ffffffff81593730 t pci_scan_root_bus
+ffffffff815938a0 t pci_scan_bus
+ffffffff81593960 t pci_rescan_bus_bridge_resize
+ffffffff815939a0 t pci_rescan_bus
+ffffffff815939e0 t pci_lock_rescan_remove
+ffffffff81593a00 t pci_unlock_rescan_remove
+ffffffff81593a20 t pci_hp_add_bridge
+ffffffff81593ae0 t release_pcibus_dev
+ffffffff81593b30 t pci_find_host_bridge
+ffffffff81593b60 t pci_get_host_bridge_device
+ffffffff81593ba0 t pci_put_host_bridge_device
+ffffffff81593bb0 t pci_set_host_bridge_release
+ffffffff81593bd0 t pcibios_resource_to_bus
+ffffffff81593c90 t pcibios_bus_to_resource
+ffffffff81593d30 t pci_remove_bus
+ffffffff81593dd0 t pci_stop_and_remove_bus_device
+ffffffff81593df0 t pci_stop_bus_device.llvm.6912648560284039874
+ffffffff81593e90 t pci_remove_bus_device.llvm.6912648560284039874
+ffffffff81593fb0 t pci_stop_and_remove_bus_device_locked
+ffffffff81593ff0 t pci_stop_root_bus
+ffffffff81594050 t pci_remove_root_bus
+ffffffff815940c0 t pci_reset_supported
+ffffffff815940e0 t pci_ats_disabled
+ffffffff81594100 t pci_bus_max_busnr
+ffffffff81594150 t pci_status_get_and_clear_errors
+ffffffff815941d0 t pci_ioremap_bar
+ffffffff81594250 t pci_ioremap_wc_bar
+ffffffff815942d0 t pci_find_next_capability
+ffffffff815943a0 t pci_find_capability
+ffffffff815944b0 t pci_bus_find_capability
+ffffffff815945d0 t pci_find_next_ext_capability
+ffffffff815946d0 t pci_find_ext_capability
+ffffffff815947b0 t pci_get_dsn
+ffffffff815948d0 t pci_find_next_ht_capability
+ffffffff815948f0 t __pci_find_next_ht_cap.llvm.10931309326443414158
+ffffffff81594ac0 t pci_find_ht_capability
+ffffffff81594b50 t pci_find_vsec_capability
+ffffffff81594ca0 t pci_find_dvsec_capability
+ffffffff81594e70 t pci_find_parent_resource
+ffffffff81594f40 t pci_find_resource
+ffffffff81595170 t pci_wait_for_pending
+ffffffff81595250 t pci_request_acs
+ffffffff81595270 t pci_update_current_state
+ffffffff81595310 t pci_refresh_power_state
+ffffffff815953c0 t pci_platform_power_transition
+ffffffff81595490 t pci_resume_bus
+ffffffff815954b0 t pci_resume_one.llvm.10931309326443414158
+ffffffff815954d0 t pci_power_up
+ffffffff81595680 t pci_bus_set_current_state
+ffffffff815956d0 t __pci_dev_set_current_state
+ffffffff815956f0 t pci_set_power_state
+ffffffff81595ac0 t pci_set_low_power_state
+ffffffff81595d00 t pci_find_saved_cap
+ffffffff81595d40 t pci_find_saved_ext_cap
+ffffffff81595d80 t pci_bridge_reconfigure_ltr
+ffffffff81595e20 t pci_save_state
+ffffffff815961e0 t pci_restore_state
+ffffffff81596db0 t pci_enable_acs
+ffffffff81596f80 t pci_store_saved_state
+ffffffff81597090 t pci_load_saved_state
+ffffffff815971e0 t pci_load_and_free_saved_state
+ffffffff81597370 t pci_reenable_device
+ffffffff815973a0 t do_pci_enable_device
+ffffffff815974c0 t pci_enable_device_io
+ffffffff815974e0 t pci_enable_device_flags.llvm.10931309326443414158
+ffffffff815976a0 t pci_enable_device_mem
+ffffffff815976c0 t pci_enable_device
+ffffffff815976e0 t pcim_enable_device
+ffffffff81597790 t pcim_pin_device
+ffffffff815977f0 t pci_disable_enabled_device
+ffffffff81597870 t pci_disable_device
+ffffffff81597980 t pcibios_set_pcie_reset_state
+ffffffff81597990 t pci_set_pcie_reset_state
+ffffffff815979a0 t pcie_clear_device_status
+ffffffff81597a00 t pcie_clear_root_pme_status
+ffffffff81597a20 t pci_check_pme_status
+ffffffff81597ac0 t pci_pme_wakeup_bus
+ffffffff81597af0 t pci_pme_wakeup.llvm.10931309326443414158
+ffffffff81597be0 t pci_pme_capable
+ffffffff81597c20 t pci_pme_restore
+ffffffff81597cc0 t pci_pme_active
+ffffffff81597ea0 t pci_enable_wake
+ffffffff81597ed0 t __pci_enable_wake
+ffffffff81597f90 t pci_wake_from_d3
+ffffffff81597ff0 t pci_prepare_to_sleep
+ffffffff81598160 t pci_target_state
+ffffffff81598250 t pci_back_from_sleep
+ffffffff815982c0 t pci_finish_runtime_suspend
+ffffffff815983f0 t pci_dev_run_wake
+ffffffff81598480 t pci_dev_need_resume
+ffffffff81598500 t pci_dev_adjust_pme
+ffffffff815985e0 t pci_dev_complete_resume
+ffffffff81598720 t pci_choose_state
+ffffffff815987c0 t pci_config_pm_runtime_get
+ffffffff81598820 t pci_config_pm_runtime_put
+ffffffff81598860 t pci_bridge_d3_possible
+ffffffff81598910 t pci_bridge_d3_update
+ffffffff81598af0 t pci_dev_check_d3cold
+ffffffff81598b60 t pci_d3cold_enable
+ffffffff81598b90 t pci_d3cold_disable
+ffffffff81598bc0 t pci_pm_init
+ffffffff81598ef0 t pci_ea_init
+ffffffff81599260 t pci_add_cap_save_buffer
+ffffffff815992e0 t pci_add_ext_cap_save_buffer
+ffffffff81599410 t pci_allocate_cap_save_buffers
+ffffffff81599550 t pci_free_cap_save_buffers
+ffffffff81599590 t pci_configure_ari
+ffffffff815996e0 t pci_acs_enabled
+ffffffff815997e0 t pci_acs_path_enabled
+ffffffff81599840 t pci_acs_init
+ffffffff81599930 t pci_rebar_get_possible_sizes
+ffffffff815999d0 t pci_rebar_find_pos
+ffffffff81599b20 t pci_rebar_get_current_size
+ffffffff81599b90 t pci_rebar_set_size
+ffffffff81599c20 t pci_enable_atomic_ops_to_root
+ffffffff81599d70 t pci_swizzle_interrupt_pin
+ffffffff81599dc0 t pci_get_interrupt_pin
+ffffffff81599e40 t pci_common_swizzle
+ffffffff81599ed0 t pci_release_region
+ffffffff81599f90 t pci_request_region
+ffffffff81599fb0 t __pci_request_region.llvm.10931309326443414158
+ffffffff8159a0c0 t pci_release_selected_regions
+ffffffff8159a1a0 t pci_request_selected_regions
+ffffffff8159a1c0 t __pci_request_selected_regions.llvm.10931309326443414158
+ffffffff8159a3a0 t pci_request_selected_regions_exclusive
+ffffffff8159a3c0 t pci_release_regions
+ffffffff8159a3e0 t pci_request_regions
+ffffffff8159a400 t pci_request_regions_exclusive
+ffffffff8159a420 t pci_register_io_range
+ffffffff8159a430 t pci_pio_to_address
+ffffffff8159a450 t pci_address_to_pio
+ffffffff8159a470 t pci_remap_iospace
+ffffffff8159a4a0 t pci_unmap_iospace
+ffffffff8159a4b0 t devm_pci_remap_iospace
+ffffffff8159a520 t devm_pci_unmap_iospace
+ffffffff8159a530 t devm_pci_remap_cfgspace
+ffffffff8159a5c0 t devm_pci_remap_cfg_resource
+ffffffff8159a760 t pcibios_set_master
+ffffffff8159a7f0 t pci_set_master
+ffffffff8159a870 t pci_clear_master
+ffffffff8159a8f0 t pci_set_cacheline_size
+ffffffff8159a9a0 t pci_set_mwi
+ffffffff8159aa90 t pcim_set_mwi
+ffffffff8159aaf0 t pci_try_set_mwi
+ffffffff8159ab00 t pci_clear_mwi
+ffffffff8159ab70 t pci_disable_parity
+ffffffff8159abe0 t pci_intx
+ffffffff8159acb0 t pci_check_and_mask_intx
+ffffffff8159ada0 t pci_check_and_unmask_intx
+ffffffff8159ae90 t pci_wait_for_pending_transaction
+ffffffff8159aec0 t pcie_flr
+ffffffff8159af50 t pci_dev_wait
+ffffffff8159b070 t pcie_reset_flr
+ffffffff8159b0a0 t pcie_wait_for_link
+ffffffff8159b1c0 t pcie_wait_for_link_delay
+ffffffff8159b2b0 t pci_bridge_wait_for_secondary_bus
+ffffffff8159b410 t pcie_get_speed_cap
+ffffffff8159b4f0 t pci_reset_secondary_bus
+ffffffff8159b580 t pcibios_reset_secondary_bus
+ffffffff8159b610 t pci_bridge_secondary_bus_reset
+ffffffff8159b640 t pci_dev_lock
+ffffffff8159b670 t pci_dev_trylock
+ffffffff8159b6c0 t pci_dev_unlock
+ffffffff8159b6f0 t pci_dev_reset_method_attr_is_visible
+ffffffff8159b720 t __pci_reset_function_locked
+ffffffff8159b8b0 t pci_init_reset_methods
+ffffffff8159ba10 t pci_reset_function
+ffffffff8159bb00 t pci_reset_function_locked
+ffffffff8159bbc0 t pci_try_reset_function
+ffffffff8159bcd0 t pci_probe_reset_slot
+ffffffff8159bcf0 t pci_slot_reset
+ffffffff8159be90 t pci_bus_error_reset
+ffffffff8159bfa0 t pci_probe_reset_bus
+ffffffff8159bfd0 t pci_reset_bus
+ffffffff8159c310 t pcix_get_max_mmrbc
+ffffffff8159c390 t pcix_get_mmrbc
+ffffffff8159c410 t pcix_set_mmrbc
+ffffffff8159c580 t pcie_get_readrq
+ffffffff8159c5e0 t pcie_set_readrq
+ffffffff8159c770 t pcie_get_mps
+ffffffff8159c7d0 t pcie_set_mps
+ffffffff8159c890 t pcie_bandwidth_available
+ffffffff8159c9d0 t pcie_get_width_cap
+ffffffff8159ca30 t pcie_bandwidth_capable
+ffffffff8159cb70 t __pcie_print_link_status
+ffffffff8159cdc0 t pcie_print_link_status
+ffffffff8159cde0 t pci_select_bars
+ffffffff8159cf10 t pci_set_vga_state
+ffffffff8159d060 t pci_pr3_present
+ffffffff8159d0c0 t pci_add_dma_alias
+ffffffff8159d1a0 t pci_devs_are_dma_aliases
+ffffffff8159d200 t pci_real_dma_dev
+ffffffff8159d210 t pci_device_is_present
+ffffffff8159d290 t pci_ignore_hotplug
+ffffffff8159d2c0 t pcibios_default_alignment
+ffffffff8159d2d0 t pci_resource_to_user
+ffffffff8159d2f0 t pci_reassigndev_resource_alignment
+ffffffff8159d720 t pci_fixup_cardbus
+ffffffff8159d730 t pci_dev_str_match
+ffffffff8159da60 t pci_enable_bridge
+ffffffff8159db70 t pcim_release
+ffffffff8159dd60 t pci_pme_list_scan
+ffffffff8159df40 t reset_method_show
+ffffffff8159e210 t reset_method_store
+ffffffff8159e4c0 t pci_af_flr
+ffffffff8159e5c0 t pci_pm_reset
+ffffffff8159e750 t pci_reset_bus_function
+ffffffff8159e860 t pci_bus_resetable
+ffffffff8159e8d0 t pci_bus_lock
+ffffffff8159e930 t pci_bus_unlock
+ffffffff8159e990 t pci_bus_trylock
+ffffffff8159ea50 t pci_bus_save_and_disable_locked
+ffffffff8159eae0 t pci_bus_restore_locked
+ffffffff8159eb70 t resource_alignment_show
+ffffffff8159ebc0 t resource_alignment_store
+ffffffff8159ec60 t pci_add_dynid
+ffffffff8159ed50 t pci_match_id
+ffffffff8159ede0 t pcibios_alloc_irq
+ffffffff8159edf0 t pcibios_free_irq
+ffffffff8159ee00 t __pci_register_driver
+ffffffff8159ee70 t pci_unregister_driver
+ffffffff8159ef20 t pci_dev_driver
+ffffffff8159ef90 t pci_dev_get
+ffffffff8159efc0 t pci_dev_put
+ffffffff8159efe0 t pci_uevent_ers
+ffffffff8159f090 t pci_bus_match
+ffffffff8159f0e0 t pci_uevent
+ffffffff8159f1f0 t pci_device_probe
+ffffffff8159f360 t pci_device_remove
+ffffffff8159f400 t pci_device_shutdown
+ffffffff8159f460 t pci_bus_num_vf
+ffffffff8159f480 t pci_dma_configure
+ffffffff8159f560 t pci_dma_cleanup
+ffffffff8159f5a0 t pcie_port_bus_match
+ffffffff8159f600 t new_id_store
+ffffffff8159f870 t new_id_store
+ffffffff8159f890 t pci_match_device
+ffffffff8159fa20 t remove_id_store
+ffffffff8159fba0 t remove_id_store
+ffffffff8159fbc0 t pci_pm_prepare
+ffffffff8159fc30 t pci_pm_complete
+ffffffff8159fca0 t pci_pm_suspend
+ffffffff8159ff20 t pci_pm_resume
+ffffffff815a0090 t pci_pm_suspend_late
+ffffffff815a00d0 t pci_pm_resume_early
+ffffffff815a0100 t pci_pm_suspend_noirq
+ffffffff815a0390 t pci_pm_resume_noirq
+ffffffff815a0520 t pci_pm_runtime_suspend
+ffffffff815a0690 t pci_pm_runtime_resume
+ffffffff815a0780 t pci_pm_runtime_idle
+ffffffff815a07e0 t pci_for_each_dma_alias
+ffffffff815a0970 t pci_find_bus
+ffffffff815a0a20 t pci_find_next_bus
+ffffffff815a0a70 t pci_do_find_bus
+ffffffff815a0ac0 t pci_get_slot
+ffffffff815a0b30 t pci_get_domain_bus_and_slot
+ffffffff815a0cb0 t pci_get_device
+ffffffff815a0d60 t pci_get_subsys
+ffffffff815a0e10 t pci_get_class
+ffffffff815a0ec0 t pci_dev_present
+ffffffff815a0f40 t match_pci_dev_by_id
+ffffffff815a0fb0 t pci_mmap_fits
+ffffffff815a1090 t pci_create_sysfs_dev_files
+ffffffff815a10b0 t pci_create_resource_files
+ffffffff815a1150 t pci_remove_sysfs_dev_files
+ffffffff815a1170 t pci_remove_resource_files.llvm.10079066930483942760
+ffffffff815a1340 t rescan_store
+ffffffff815a1410 t bus_rescan_store
+ffffffff815a14f0 t cpuaffinity_show
+ffffffff815a1520 t cpulistaffinity_show
+ffffffff815a1550 t pci_create_attr
+ffffffff815a16d0 t pci_mmap_resource_wc
+ffffffff815a16f0 t pci_read_resource_io
+ffffffff815a17a0 t pci_write_resource_io
+ffffffff815a1860 t pci_mmap_resource_uc
+ffffffff815a1880 t pci_mmap_resource
+ffffffff815a1980 t power_state_show
+ffffffff815a19b0 t power_state_show
+ffffffff815a19e0 t resource_show
+ffffffff815a1ac0 t resource_show
+ffffffff815a1b00 t resource_show
+ffffffff815a1b70 t resource_show
+ffffffff815a1bb0 t vendor_show
+ffffffff815a1be0 t vendor_show
+ffffffff815a1c10 t device_show
+ffffffff815a1c40 t device_show
+ffffffff815a1c70 t subsystem_vendor_show
+ffffffff815a1ca0 t subsystem_device_show
+ffffffff815a1cd0 t revision_show
+ffffffff815a1d00 t class_show
+ffffffff815a1d30 t irq_show
+ffffffff815a1d80 t irq_show
+ffffffff815a1df0 t local_cpus_show
+ffffffff815a1e20 t local_cpulist_show
+ffffffff815a1e50 t modalias_show
+ffffffff815a1eb0 t modalias_show
+ffffffff815a1f80 t modalias_show
+ffffffff815a1fb0 t modalias_show
+ffffffff815a2010 t modalias_show
+ffffffff815a20b0 t modalias_show
+ffffffff815a20d0 t modalias_show
+ffffffff815a2110 t dma_mask_bits_show
+ffffffff815a2150 t consistent_dma_mask_bits_show
+ffffffff815a2190 t enable_show
+ffffffff815a21c0 t enable_store
+ffffffff815a22d0 t broken_parity_status_show
+ffffffff815a2300 t broken_parity_status_store
+ffffffff815a23b0 t msi_bus_show
+ffffffff815a2400 t msi_bus_store
+ffffffff815a2540 t d3cold_allowed_show
+ffffffff815a2570 t d3cold_allowed_store
+ffffffff815a2620 t devspec_show
+ffffffff815a2660 t driver_override_show
+ffffffff815a26b0 t driver_override_show
+ffffffff815a2700 t driver_override_store
+ffffffff815a2730 t driver_override_store
+ffffffff815a2760 t ari_enabled_show
+ffffffff815a27a0 t pci_dev_config_attr_is_visible
+ffffffff815a27e0 t pci_read_config
+ffffffff815a29d0 t pci_write_config
+ffffffff815a2b50 t pci_dev_rom_attr_is_visible
+ffffffff815a2b90 t pci_read_rom
+ffffffff815a2c60 t pci_write_rom
+ffffffff815a2c90 t pci_dev_reset_attr_is_visible
+ffffffff815a2cc0 t reset_store
+ffffffff815a2d70 t reset_store
+ffffffff815a2e70 t reset_store
+ffffffff815a2ef0 t resource_resize_is_visible
+ffffffff815a2f20 t resource0_resize_show
+ffffffff815a2f70 t resource0_resize_store
+ffffffff815a31e0 t resource1_resize_show
+ffffffff815a3240 t resource1_resize_store
+ffffffff815a34b0 t resource2_resize_show
+ffffffff815a3510 t resource2_resize_store
+ffffffff815a3780 t resource3_resize_show
+ffffffff815a37e0 t resource3_resize_store
+ffffffff815a3a50 t resource4_resize_show
+ffffffff815a3ab0 t resource4_resize_store
+ffffffff815a3d20 t resource5_resize_show
+ffffffff815a3d80 t resource5_resize_store
+ffffffff815a3ff0 t pci_dev_attrs_are_visible
+ffffffff815a4030 t boot_vga_show
+ffffffff815a4080 t pci_dev_hp_attrs_are_visible
+ffffffff815a40b0 t remove_store
+ffffffff815a4170 t dev_rescan_store
+ffffffff815a4220 t pci_bridge_attrs_are_visible
+ffffffff815a4250 t subordinate_bus_number_show
+ffffffff815a42d0 t secondary_bus_number_show
+ffffffff815a4350 t pcie_dev_attrs_are_visible
+ffffffff815a4370 t current_link_speed_show
+ffffffff815a4400 t current_link_width_show
+ffffffff815a4480 t max_link_width_show
+ffffffff815a44b0 t max_link_speed_show
+ffffffff815a44f0 t pci_enable_rom
+ffffffff815a45b0 t pci_disable_rom
+ffffffff815a4620 t pci_map_rom
+ffffffff815a4880 t pci_unmap_rom
+ffffffff815a4900 t pci_update_resource
+ffffffff815a4b80 t pci_claim_resource
+ffffffff815a4c90 t pci_disable_bridge_window
+ffffffff815a4cf0 t pci_assign_resource
+ffffffff815a4e70 t _pci_assign_resource
+ffffffff815a4fb0 t pci_revert_fw_address
+ffffffff815a50d0 t pci_reassign_resource
+ffffffff815a5200 t pci_release_resource
+ffffffff815a5280 t pci_resize_resource
+ffffffff815a5440 t pci_enable_resources
+ffffffff815a5590 t pci_request_irq
+ffffffff815a5690 t pci_free_irq
+ffffffff815a56c0 t pci_vpd_init
+ffffffff815a5710 t vpd_attr_is_visible
+ffffffff815a5740 t pci_vpd_alloc
+ffffffff815a5840 t pci_vpd_available
+ffffffff815a5ab0 t pci_read_vpd
+ffffffff815a5b40 t pci_vpd_find_id_string
+ffffffff815a5bb0 t pci_read_vpd_any
+ffffffff815a5c40 t pci_write_vpd
+ffffffff815a5cd0 t pci_write_vpd_any
+ffffffff815a5d60 t pci_vpd_find_ro_info_keyword
+ffffffff815a5e50 t pci_vpd_check_csum
+ffffffff815a5fc0 t __UNIQUE_ID_quirk_f0_vpd_link278
+ffffffff815a6030 t __UNIQUE_ID_quirk_blacklist_vpd280
+ffffffff815a6060 t __UNIQUE_ID_quirk_blacklist_vpd282
+ffffffff815a6090 t __UNIQUE_ID_quirk_blacklist_vpd284
+ffffffff815a60c0 t __UNIQUE_ID_quirk_blacklist_vpd286
+ffffffff815a60f0 t __UNIQUE_ID_quirk_blacklist_vpd288
+ffffffff815a6120 t __UNIQUE_ID_quirk_blacklist_vpd290
+ffffffff815a6150 t __UNIQUE_ID_quirk_blacklist_vpd292
+ffffffff815a6180 t __UNIQUE_ID_quirk_blacklist_vpd294
+ffffffff815a61b0 t __UNIQUE_ID_quirk_blacklist_vpd296
+ffffffff815a61e0 t __UNIQUE_ID_quirk_blacklist_vpd298
+ffffffff815a6210 t __UNIQUE_ID_quirk_blacklist_vpd300
+ffffffff815a6240 t __UNIQUE_ID_quirk_blacklist_vpd302
+ffffffff815a6270 t __UNIQUE_ID_quirk_blacklist_vpd304
+ffffffff815a62a0 t __UNIQUE_ID_quirk_chelsio_extend_vpd306
+ffffffff815a62e0 t vpd_read
+ffffffff815a6380 t vpd_write
+ffffffff815a6420 t pci_vpd_read
+ffffffff815a6720 t pci_vpd_write
+ffffffff815a6960 t pci_setup_cardbus
+ffffffff815a6b40 t pcibios_setup_bridge
+ffffffff815a6b50 t pci_setup_bridge
+ffffffff815a6b80 t __pci_setup_bridge
+ffffffff815a6cc0 t pci_claim_bridge_resource
+ffffffff815a6e00 t pci_setup_bridge_io
+ffffffff815a6f40 t pci_setup_bridge_mmio_pref
+ffffffff815a7060 t pcibios_window_alignment
+ffffffff815a7070 t pci_cardbus_resource_alignment
+ffffffff815a70b0 t __pci_bus_size_bridges
+ffffffff815a7b60 t pbus_size_mem
+ffffffff815a81d0 t pci_bus_size_bridges
+ffffffff815a81f0 t __pci_bus_assign_resources
+ffffffff815a8460 t pci_bus_assign_resources
+ffffffff815a8480 t pci_bus_claim_resources
+ffffffff815a84a0 t pci_bus_allocate_resources.llvm.14964603383255551332
+ffffffff815a8640 t pci_bus_allocate_dev_resources.llvm.14964603383255551332
+ffffffff815a86d0 t pci_assign_unassigned_root_bus_resources
+ffffffff815a89f0 t pci_bus_get_depth
+ffffffff815a8a40 t pci_root_bus_distribute_available_resources
+ffffffff815a8b70 t pci_bus_release_bridge_resources
+ffffffff815a8d50 t pci_bus_dump_resources
+ffffffff815a8e10 t pci_assign_unassigned_bridge_resources
+ffffffff815a9100 t __pci_bridge_assign_resources
+ffffffff815a91f0 t pci_reassign_bridge_resources
+ffffffff815a9690 t add_to_list
+ffffffff815a9730 t pci_assign_unassigned_bus_resources
+ffffffff815a9800 t __dev_sort_resources
+ffffffff815a9a60 t __assign_resources_sorted
+ffffffff815aa370 t assign_requested_resources_sorted
+ffffffff815aa4b0 t pci_bus_distribute_available_resources
+ffffffff815aad20 t pci_save_vc_state
+ffffffff815aae80 t pci_vc_do_save_buffer
+ffffffff815ab5a0 t pci_restore_vc_state
+ffffffff815ab660 t pci_allocate_vc_save_buffers
+ffffffff815ab770 t pci_mmap_resource_range
+ffffffff815ab860 t pci_assign_irq
+ffffffff815ab940 t pci_msi_init
+ffffffff815ab9d0 t pci_msix_init
+ffffffff815aba50 t pci_msi_mask_irq
+ffffffff815abab0 t pci_msi_unmask_irq
+ffffffff815abb10 t __pci_read_msi_msg
+ffffffff815abc00 t msi_desc_to_pci_dev
+ffffffff815abc20 t __pci_write_msi_msg
+ffffffff815abdb0 t pci_write_msi_msg
+ffffffff815abdf0 t pci_restore_msi_state
+ffffffff815ac060 t pci_msi_vec_count
+ffffffff815ac0d0 t pci_disable_msi
+ffffffff815ac250 t pci_msix_vec_count
+ffffffff815ac2b0 t pci_disable_msix
+ffffffff815ac450 t pci_enable_msi
+ffffffff815ac480 t __pci_enable_msi_range
+ffffffff815aca00 t pci_enable_msix_range
+ffffffff815aca20 t __pci_enable_msix_range
+ffffffff815ad1a0 t pci_alloc_irq_vectors_affinity
+ffffffff815ad2d0 t pci_free_irq_vectors
+ffffffff815ad2f0 t pci_irq_vector
+ffffffff815ad340 t pci_irq_get_affinity
+ffffffff815ad3f0 t pci_no_msi
+ffffffff815ad410 t pci_msi_enabled
+ffffffff815ad430 t pci_msi_update_mask
+ffffffff815ad4a0 t pcim_msi_release
+ffffffff815ad4d0 t pci_msi_setup_msi_irqs
+ffffffff815ad510 t pci_msi_teardown_msi_irqs
+ffffffff815ad560 t pci_msi_create_irq_domain
+ffffffff815ad650 t pci_msi_domain_get_msi_rid
+ffffffff815ad700 t get_msi_id_cb
+ffffffff815ad730 t pci_msi_get_device_domain
+ffffffff815ad7b0 t pci_dev_has_special_msi_domain
+ffffffff815ad7f0 t pci_msi_domain_set_desc
+ffffffff815ad840 t pci_msi_domain_check_cap
+ffffffff815ad8e0 t pci_msi_domain_write_msg
+ffffffff815ad910 t pcie_port_device_register
+ffffffff815ade20 t pcie_port_device_iter
+ffffffff815ade70 t pcie_port_device_suspend
+ffffffff815adec0 t pcie_port_device_resume_noirq
+ffffffff815adf10 t pcie_port_device_resume
+ffffffff815adf60 t pcie_port_device_runtime_suspend
+ffffffff815adfb0 t pcie_port_device_runtime_resume
+ffffffff815ae000 t pcie_port_find_device
+ffffffff815ae070 t find_service_iter
+ffffffff815ae0c0 t pcie_port_device_remove
+ffffffff815ae100 t remove_iter.llvm.30009265010301368
+ffffffff815ae130 t pcie_port_service_register
+ffffffff815ae190 t pcie_port_probe_service
+ffffffff815ae1e0 t pcie_port_remove_service
+ffffffff815ae230 t pcie_port_shutdown_service
+ffffffff815ae240 t pcie_port_service_unregister
+ffffffff815ae260 t release_pcie_device
+ffffffff815ae280 t pcie_portdrv_probe
+ffffffff815ae340 t pcie_portdrv_remove
+ffffffff815ae3b0 t pcie_portdrv_error_detected
+ffffffff815ae3d0 t pcie_portdrv_mmio_enabled
+ffffffff815ae3e0 t pcie_portdrv_slot_reset
+ffffffff815ae450 t pcie_port_runtime_suspend
+ffffffff815ae470 t pcie_port_runtime_idle
+ffffffff815ae490 t pcie_link_rcec
+ffffffff815ae580 t link_rcec_helper
+ffffffff815ae610 t pcie_walk_rcec
+ffffffff815ae700 t walk_rcec_helper
+ffffffff815ae790 t pci_rcec_init
+ffffffff815ae880 t pci_rcec_exit
+ffffffff815ae8b0 t pcie_aspm_init_link_state
+ffffffff815af790 t pcie_config_aspm_path
+ffffffff815af800 t pcie_set_clkpm
+ffffffff815af8a0 t pcie_aspm_exit_link_state
+ffffffff815afa80 t pcie_config_aspm_link
+ffffffff815afd60 t pcie_aspm_powersave_config_link
+ffffffff815afed0 t pci_disable_link_state_locked
+ffffffff815afef0 t __pci_disable_link_state.llvm.643982851051149771
+ffffffff815b0130 t pci_disable_link_state
+ffffffff815b0150 t pcie_aspm_enabled
+ffffffff815b01b0 t aspm_ctrl_attrs_are_visible
+ffffffff815b0250 t pcie_no_aspm
+ffffffff815b0280 t pcie_aspm_support_enabled
+ffffffff815b02a0 t pcie_aspm_check_latency
+ffffffff815b04c0 t pcie_aspm_set_policy
+ffffffff815b0690 t pcie_aspm_get_policy
+ffffffff815b0760 t clkpm_show
+ffffffff815b07e0 t clkpm_store
+ffffffff815b0980 t l0s_aspm_show
+ffffffff815b0a00 t l0s_aspm_store
+ffffffff815b0a20 t aspm_attr_store_common
+ffffffff815b0b80 t l1_aspm_show
+ffffffff815b0c00 t l1_aspm_store
+ffffffff815b0c20 t l1_1_aspm_show
+ffffffff815b0ca0 t l1_1_aspm_store
+ffffffff815b0cc0 t l1_2_aspm_show
+ffffffff815b0d40 t l1_2_aspm_store
+ffffffff815b0d60 t l1_1_pcipm_show
+ffffffff815b0de0 t l1_1_pcipm_store
+ffffffff815b0e00 t l1_2_pcipm_show
+ffffffff815b0e80 t l1_2_pcipm_store
+ffffffff815b0ea0 t pci_no_aer
+ffffffff815b0ec0 t pci_aer_available
+ffffffff815b0ee0 t pcie_aer_is_native
+ffffffff815b0f30 t pci_enable_pcie_error_reporting
+ffffffff815b0fb0 t pci_disable_pcie_error_reporting
+ffffffff815b1030 t pci_aer_clear_nonfatal_status
+ffffffff815b1100 t pci_aer_clear_fatal_status
+ffffffff815b11c0 t pci_aer_raw_clear_status
+ffffffff815b12a0 t pci_aer_clear_status
+ffffffff815b12f0 t pci_save_aer_state
+ffffffff815b13a0 t pci_restore_aer_state
+ffffffff815b1440 t pci_aer_init
+ffffffff815b1520 t pci_aer_exit
+ffffffff815b1550 t aer_stats_attrs_are_visible
+ffffffff815b15b0 t aer_print_error
+ffffffff815b19c0 t aer_get_device_error_info
+ffffffff815b1b60 t aer_rootport_total_err_cor_show
+ffffffff815b1b90 t aer_rootport_total_err_fatal_show
+ffffffff815b1bc0 t aer_rootport_total_err_nonfatal_show
+ffffffff815b1bf0 t aer_dev_correctable_show
+ffffffff815b1cc0 t aer_dev_fatal_show
+ffffffff815b1d90 t aer_dev_nonfatal_show
+ffffffff815b1e60 t aer_probe
+ffffffff815b20c0 t aer_remove
+ffffffff815b21b0 t aer_irq
+ffffffff815b2280 t aer_isr
+ffffffff815b25e0 t aer_process_err_devices
+ffffffff815b27b0 t find_device_iter
+ffffffff815b28f0 t aer_root_reset
+ffffffff815b2b00 t set_device_error_reporting
+ffffffff815b2ba0 t pcie_do_recovery
+ffffffff815b2f30 t report_frozen_detected
+ffffffff815b2f50 t report_normal_detected
+ffffffff815b2f70 t report_mmio_enabled
+ffffffff815b3000 t report_slot_reset
+ffffffff815b3090 t report_resume
+ffffffff815b3110 t report_error_detected
+ffffffff815b32a0 t pcie_pme_interrupt_enable
+ffffffff815b32d0 t pcie_pme_probe
+ffffffff815b3450 t pcie_pme_remove
+ffffffff815b34d0 t pcie_pme_suspend
+ffffffff815b3590 t pcie_pme_resume
+ffffffff815b3600 t pcie_pme_work_fn
+ffffffff815b39c0 t pcie_pme_irq
+ffffffff815b3a90 t pcie_pme_walk_bus
+ffffffff815b3b50 t pcie_pme_can_wakeup
+ffffffff815b3b70 t pcie_pme_check_wakeup
+ffffffff815b3bd0 t pci_proc_attach_device
+ffffffff815b3d00 t pci_proc_detach_device
+ffffffff815b3d30 t pci_proc_detach_bus
+ffffffff815b3d50 t proc_bus_pci_open
+ffffffff815b3da0 t proc_bus_pci_read
+ffffffff815b3fd0 t proc_bus_pci_write
+ffffffff815b41c0 t proc_bus_pci_lseek
+ffffffff815b41f0 t proc_bus_pci_release
+ffffffff815b4220 t proc_bus_pci_ioctl
+ffffffff815b42d0 t proc_bus_pci_mmap
+ffffffff815b4540 t pci_seq_start
+ffffffff815b4580 t pci_seq_stop
+ffffffff815b45a0 t pci_seq_next
+ffffffff815b45d0 t show_device
+ffffffff815b4910 t pci_dev_assign_slot
+ffffffff815b4970 t pci_create_slot
+ffffffff815b4bb0 t make_slot_name
+ffffffff815b4cb0 t pci_destroy_slot
+ffffffff815b4cf0 t pci_slot_release
+ffffffff815b4da0 t pci_slot_attr_show
+ffffffff815b4dd0 t pci_slot_attr_store
+ffffffff815b4e10 t address_read_file
+ffffffff815b4e60 t max_speed_read_file
+ffffffff815b4ea0 t cur_speed_read_file
+ffffffff815b4ee0 t acpi_pci_root_get_mcfg_addr
+ffffffff815b4f50 t pci_acpi_program_hp_params
+ffffffff815b5900 t pciehp_is_native
+ffffffff815b5910 t shpchp_is_native
+ffffffff815b5930 t pci_acpi_add_bus_pm_notifier
+ffffffff815b5950 t pci_acpi_wake_bus.llvm.6822492673806448466
+ffffffff815b5980 t pci_acpi_add_pm_notifier
+ffffffff815b59a0 t pci_acpi_wake_dev
+ffffffff815b5a30 t acpi_pci_choose_state
+ffffffff815b5a70 t pci_set_acpi_fwnode
+ffffffff815b5ad0 t acpi_pci_find_companion
+ffffffff815b5bd0 t pci_dev_acpi_reset
+ffffffff815b5c80 t acpi_pci_power_manageable
+ffffffff815b5cc0 t acpi_pci_bridge_d3
+ffffffff815b5e20 t acpi_pci_set_power_state
+ffffffff815b5ec0 t acpi_pci_get_power_state
+ffffffff815b5f20 t acpi_pci_refresh_power_state
+ffffffff815b5f60 t acpi_pci_wakeup
+ffffffff815b6020 t acpi_pci_need_resume
+ffffffff815b60e0 t acpi_pci_add_bus
+ffffffff815b61b0 t acpi_pci_remove_bus
+ffffffff815b61c0 t pci_acpi_set_companion_lookup_hook
+ffffffff815b6220 t pci_acpi_clear_companion_lookup_hook
+ffffffff815b6250 t pci_acpi_setup
+ffffffff815b6470 t pci_acpi_cleanup
+ffffffff815b64c0 t pci_msi_register_fwnode_provider
+ffffffff815b64e0 t pci_host_bridge_acpi_msi_domain
+ffffffff815b6590 t program_hpx_type0
+ffffffff815b66d0 t pci_set_of_node
+ffffffff815b6710 t of_pci_find_child_device
+ffffffff815b68a0 t pci_release_of_node
+ffffffff815b68d0 t pci_set_bus_of_node
+ffffffff815b6980 t pci_release_bus_of_node
+ffffffff815b69b0 t pci_host_bridge_of_msi_domain
+ffffffff815b6b60 t pci_host_of_has_msi_map
+ffffffff815b6ba0 t of_pci_get_devfn
+ffffffff815b6c20 t of_pci_parse_bus_range
+ffffffff815b6cb0 t of_get_pci_domain_nr
+ffffffff815b6d20 t of_pci_check_probe_only
+ffffffff815b6de0 t of_irq_parse_and_map_pci
+ffffffff815b7040 t devm_of_pci_bridge_init
+ffffffff815b7660 t of_pci_get_max_link_speed
+ffffffff815b76d0 t of_pci_get_slot_power_limit
+ffffffff815b7850 t pci_fixup_device
+ffffffff815b7a50 t __UNIQUE_ID_quirk_mmio_always_on330
+ffffffff815b7a70 t __UNIQUE_ID_pci_disable_parity332
+ffffffff815b7a80 t __UNIQUE_ID_pci_disable_parity334
+ffffffff815b7a90 t __UNIQUE_ID_quirk_passive_release336
+ffffffff815b7b50 t __UNIQUE_ID_quirk_passive_release338
+ffffffff815b7c10 t __UNIQUE_ID_quirk_tigerpoint_bm_sts340
+ffffffff815b7ca0 t __UNIQUE_ID_quirk_nopcipci342
+ffffffff815b7ce0 t __UNIQUE_ID_quirk_nopcipci344
+ffffffff815b7d20 t __UNIQUE_ID_quirk_nopciamd346
+ffffffff815b7d90 t __UNIQUE_ID_quirk_triton348
+ffffffff815b7dd0 t __UNIQUE_ID_quirk_triton350
+ffffffff815b7e10 t __UNIQUE_ID_quirk_triton352
+ffffffff815b7e50 t __UNIQUE_ID_quirk_triton354
+ffffffff815b7e90 t __UNIQUE_ID_quirk_vialatency356
+ffffffff815b7ea0 t quirk_vialatency
+ffffffff815b7f80 t __UNIQUE_ID_quirk_vialatency358
+ffffffff815b7f90 t __UNIQUE_ID_quirk_vialatency360
+ffffffff815b7fa0 t __UNIQUE_ID_quirk_vialatency362
+ffffffff815b7fb0 t __UNIQUE_ID_quirk_vialatency364
+ffffffff815b7fc0 t __UNIQUE_ID_quirk_vialatency366
+ffffffff815b7fd0 t __UNIQUE_ID_quirk_viaetbf368
+ffffffff815b8010 t __UNIQUE_ID_quirk_vsfx370
+ffffffff815b8050 t __UNIQUE_ID_quirk_alimagik372
+ffffffff815b8090 t __UNIQUE_ID_quirk_alimagik374
+ffffffff815b80d0 t __UNIQUE_ID_quirk_natoma376
+ffffffff815b8110 t __UNIQUE_ID_quirk_natoma378
+ffffffff815b8150 t __UNIQUE_ID_quirk_natoma380
+ffffffff815b8190 t __UNIQUE_ID_quirk_natoma382
+ffffffff815b81d0 t __UNIQUE_ID_quirk_natoma384
+ffffffff815b8210 t __UNIQUE_ID_quirk_natoma386
+ffffffff815b8250 t __UNIQUE_ID_quirk_citrine388
+ffffffff815b8270 t __UNIQUE_ID_quirk_nfp6000390
+ffffffff815b8290 t __UNIQUE_ID_quirk_nfp6000392
+ffffffff815b82b0 t __UNIQUE_ID_quirk_nfp6000394
+ffffffff815b82d0 t __UNIQUE_ID_quirk_nfp6000396
+ffffffff815b82f0 t __UNIQUE_ID_quirk_extend_bar_to_page398
+ffffffff815b8380 t __UNIQUE_ID_quirk_s3_64M400
+ffffffff815b83d0 t __UNIQUE_ID_quirk_s3_64M402
+ffffffff815b8420 t __UNIQUE_ID_quirk_cs5536_vsa404
+ffffffff815b8670 t __UNIQUE_ID_quirk_ati_exploding_mce406
+ffffffff815b86d0 t __UNIQUE_ID_quirk_amd_nl_class408
+ffffffff815b8700 t __UNIQUE_ID_quirk_synopsys_haps410
+ffffffff815b8750 t __UNIQUE_ID_quirk_ali7101_acpi412
+ffffffff815b87a0 t __UNIQUE_ID_quirk_piix4_acpi414
+ffffffff815b87b0 t quirk_piix4_acpi
+ffffffff815b8c10 t __UNIQUE_ID_quirk_piix4_acpi416
+ffffffff815b8c20 t __UNIQUE_ID_quirk_ich4_lpc_acpi418
+ffffffff815b8cd0 t __UNIQUE_ID_quirk_ich4_lpc_acpi420
+ffffffff815b8d80 t __UNIQUE_ID_quirk_ich4_lpc_acpi422
+ffffffff815b8e30 t __UNIQUE_ID_quirk_ich4_lpc_acpi424
+ffffffff815b8ee0 t __UNIQUE_ID_quirk_ich4_lpc_acpi426
+ffffffff815b8f90 t __UNIQUE_ID_quirk_ich4_lpc_acpi428
+ffffffff815b9040 t __UNIQUE_ID_quirk_ich4_lpc_acpi430
+ffffffff815b90f0 t __UNIQUE_ID_quirk_ich4_lpc_acpi432
+ffffffff815b91a0 t __UNIQUE_ID_quirk_ich4_lpc_acpi434
+ffffffff815b9250 t __UNIQUE_ID_quirk_ich4_lpc_acpi436
+ffffffff815b9300 t __UNIQUE_ID_quirk_ich6_lpc438
+ffffffff815b9310 t quirk_ich6_lpc
+ffffffff815b9450 t __UNIQUE_ID_quirk_ich6_lpc440
+ffffffff815b9460 t __UNIQUE_ID_quirk_ich7_lpc442
+ffffffff815b9470 t quirk_ich7_lpc
+ffffffff815b9670 t __UNIQUE_ID_quirk_ich7_lpc444
+ffffffff815b9680 t __UNIQUE_ID_quirk_ich7_lpc446
+ffffffff815b9690 t __UNIQUE_ID_quirk_ich7_lpc448
+ffffffff815b96a0 t __UNIQUE_ID_quirk_ich7_lpc450
+ffffffff815b96b0 t __UNIQUE_ID_quirk_ich7_lpc452
+ffffffff815b96c0 t __UNIQUE_ID_quirk_ich7_lpc454
+ffffffff815b96d0 t __UNIQUE_ID_quirk_ich7_lpc456
+ffffffff815b96e0 t __UNIQUE_ID_quirk_ich7_lpc458
+ffffffff815b96f0 t __UNIQUE_ID_quirk_ich7_lpc460
+ffffffff815b9700 t __UNIQUE_ID_quirk_ich7_lpc462
+ffffffff815b9710 t __UNIQUE_ID_quirk_ich7_lpc464
+ffffffff815b9720 t __UNIQUE_ID_quirk_ich7_lpc466
+ffffffff815b9730 t __UNIQUE_ID_quirk_vt82c586_acpi468
+ffffffff815b9760 t __UNIQUE_ID_quirk_vt82c686_acpi470
+ffffffff815b97d0 t __UNIQUE_ID_quirk_vt8235_acpi472
+ffffffff815b9820 t __UNIQUE_ID_quirk_xio2000a474
+ffffffff815b98e0 t __UNIQUE_ID_quirk_via_ioapic476
+ffffffff815b9940 t __UNIQUE_ID_quirk_via_ioapic478
+ffffffff815b99a0 t __UNIQUE_ID_quirk_via_vt8237_bypass_apic_deassert480
+ffffffff815b9a20 t __UNIQUE_ID_quirk_via_vt8237_bypass_apic_deassert482
+ffffffff815b9aa0 t __UNIQUE_ID_quirk_amd_ioapic484
+ffffffff815b9ae0 t __UNIQUE_ID_quirk_amd_8131_mmrbc486
+ffffffff815b9b30 t __UNIQUE_ID_quirk_via_acpi488
+ffffffff815b9b90 t __UNIQUE_ID_quirk_via_acpi490
+ffffffff815b9bf0 t __UNIQUE_ID_quirk_via_bridge492
+ffffffff815b9ca0 t __UNIQUE_ID_quirk_via_bridge494
+ffffffff815b9d50 t __UNIQUE_ID_quirk_via_bridge496
+ffffffff815b9e00 t __UNIQUE_ID_quirk_via_bridge498
+ffffffff815b9eb0 t __UNIQUE_ID_quirk_via_bridge500
+ffffffff815b9f60 t __UNIQUE_ID_quirk_via_bridge502
+ffffffff815ba010 t __UNIQUE_ID_quirk_via_bridge504
+ffffffff815ba0c0 t __UNIQUE_ID_quirk_via_bridge506
+ffffffff815ba170 t __UNIQUE_ID_quirk_via_vlink508
+ffffffff815ba240 t __UNIQUE_ID_quirk_vt82c598_id510
+ffffffff815ba270 t __UNIQUE_ID_quirk_cardbus_legacy512
+ffffffff815ba290 t __UNIQUE_ID_quirk_cardbus_legacy514
+ffffffff815ba2b0 t __UNIQUE_ID_quirk_amd_ordering516
+ffffffff815ba2c0 t quirk_amd_ordering
+ffffffff815ba370 t __UNIQUE_ID_quirk_amd_ordering518
+ffffffff815ba380 t __UNIQUE_ID_quirk_dunord520
+ffffffff815ba3b0 t __UNIQUE_ID_quirk_transparent_bridge522
+ffffffff815ba3d0 t __UNIQUE_ID_quirk_transparent_bridge524
+ffffffff815ba3f0 t __UNIQUE_ID_quirk_mediagx_master526
+ffffffff815ba470 t __UNIQUE_ID_quirk_mediagx_master528
+ffffffff815ba4f0 t __UNIQUE_ID_quirk_disable_pxb530
+ffffffff815ba580 t __UNIQUE_ID_quirk_disable_pxb532
+ffffffff815ba610 t __UNIQUE_ID_quirk_amd_ide_mode534
+ffffffff815ba620 t quirk_amd_ide_mode
+ffffffff815ba700 t __UNIQUE_ID_quirk_amd_ide_mode536
+ffffffff815ba710 t __UNIQUE_ID_quirk_amd_ide_mode538
+ffffffff815ba720 t __UNIQUE_ID_quirk_amd_ide_mode540
+ffffffff815ba730 t __UNIQUE_ID_quirk_amd_ide_mode542
+ffffffff815ba740 t __UNIQUE_ID_quirk_amd_ide_mode544
+ffffffff815ba750 t __UNIQUE_ID_quirk_amd_ide_mode546
+ffffffff815ba760 t __UNIQUE_ID_quirk_amd_ide_mode548
+ffffffff815ba770 t __UNIQUE_ID_quirk_svwks_csb5ide550
+ffffffff815ba7e0 t __UNIQUE_ID_quirk_ide_samemode552
+ffffffff815ba870 t __UNIQUE_ID_quirk_no_ata_d3554
+ffffffff815ba890 t __UNIQUE_ID_quirk_no_ata_d3556
+ffffffff815ba8b0 t __UNIQUE_ID_quirk_no_ata_d3558
+ffffffff815ba8d0 t __UNIQUE_ID_quirk_no_ata_d3560
+ffffffff815ba8f0 t __UNIQUE_ID_quirk_eisa_bridge562
+ffffffff815ba910 t __UNIQUE_ID_asus_hides_smbus_hostbridge564
+ffffffff815ba920 t asus_hides_smbus_hostbridge
+ffffffff815bac10 t __UNIQUE_ID_asus_hides_smbus_hostbridge566
+ffffffff815bac20 t __UNIQUE_ID_asus_hides_smbus_hostbridge568
+ffffffff815bac30 t __UNIQUE_ID_asus_hides_smbus_hostbridge570
+ffffffff815bac40 t __UNIQUE_ID_asus_hides_smbus_hostbridge572
+ffffffff815bac50 t __UNIQUE_ID_asus_hides_smbus_hostbridge574
+ffffffff815bac60 t __UNIQUE_ID_asus_hides_smbus_hostbridge576
+ffffffff815bac70 t __UNIQUE_ID_asus_hides_smbus_hostbridge578
+ffffffff815bac80 t __UNIQUE_ID_asus_hides_smbus_hostbridge580
+ffffffff815bac90 t __UNIQUE_ID_asus_hides_smbus_hostbridge582
+ffffffff815baca0 t __UNIQUE_ID_asus_hides_smbus_hostbridge584
+ffffffff815bacb0 t __UNIQUE_ID_asus_hides_smbus_hostbridge586
+ffffffff815bacc0 t __UNIQUE_ID_asus_hides_smbus_hostbridge588
+ffffffff815bacd0 t __UNIQUE_ID_asus_hides_smbus_lpc590
+ffffffff815bace0 t asus_hides_smbus_lpc
+ffffffff815bada0 t __UNIQUE_ID_asus_hides_smbus_lpc592
+ffffffff815badb0 t __UNIQUE_ID_asus_hides_smbus_lpc594
+ffffffff815badc0 t __UNIQUE_ID_asus_hides_smbus_lpc596
+ffffffff815badd0 t __UNIQUE_ID_asus_hides_smbus_lpc598
+ffffffff815bade0 t __UNIQUE_ID_asus_hides_smbus_lpc600
+ffffffff815badf0 t __UNIQUE_ID_asus_hides_smbus_lpc602
+ffffffff815bae00 t __UNIQUE_ID_asus_hides_smbus_lpc604
+ffffffff815bae10 t __UNIQUE_ID_asus_hides_smbus_lpc606
+ffffffff815bae20 t __UNIQUE_ID_asus_hides_smbus_lpc608
+ffffffff815bae30 t __UNIQUE_ID_asus_hides_smbus_lpc610
+ffffffff815bae40 t __UNIQUE_ID_asus_hides_smbus_lpc612
+ffffffff815bae50 t __UNIQUE_ID_asus_hides_smbus_lpc614
+ffffffff815bae60 t __UNIQUE_ID_asus_hides_smbus_lpc616
+ffffffff815bae70 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6618
+ffffffff815baf80 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_suspend620
+ffffffff815bb010 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume622
+ffffffff815bb060 t __UNIQUE_ID_asus_hides_smbus_lpc_ich6_resume_early624
+ffffffff815bb0a0 t __UNIQUE_ID_quirk_sis_96x_smbus626
+ffffffff815bb120 t __UNIQUE_ID_quirk_sis_96x_smbus628
+ffffffff815bb1a0 t __UNIQUE_ID_quirk_sis_96x_smbus630
+ffffffff815bb220 t __UNIQUE_ID_quirk_sis_96x_smbus632
+ffffffff815bb2a0 t __UNIQUE_ID_quirk_sis_96x_smbus634
+ffffffff815bb320 t __UNIQUE_ID_quirk_sis_96x_smbus636
+ffffffff815bb3a0 t __UNIQUE_ID_quirk_sis_96x_smbus638
+ffffffff815bb420 t __UNIQUE_ID_quirk_sis_96x_smbus640
+ffffffff815bb4a0 t __UNIQUE_ID_quirk_sis_503642
+ffffffff815bb4b0 t quirk_sis_503
+ffffffff815bb5a0 t __UNIQUE_ID_quirk_sis_503644
+ffffffff815bb5b0 t __UNIQUE_ID_asus_hides_ac97_lpc646
+ffffffff815bb5c0 t asus_hides_ac97_lpc
+ffffffff815bb680 t __UNIQUE_ID_asus_hides_ac97_lpc648
+ffffffff815bb690 t __UNIQUE_ID_quirk_jmicron_async_suspend650
+ffffffff815bb6e0 t __UNIQUE_ID_quirk_jmicron_async_suspend652
+ffffffff815bb730 t __UNIQUE_ID_quirk_jmicron_async_suspend654
+ffffffff815bb780 t __UNIQUE_ID_quirk_jmicron_async_suspend656
+ffffffff815bb7d0 t __UNIQUE_ID_quirk_alder_ioapic658
+ffffffff815bb840 t __UNIQUE_ID_quirk_no_msi660
+ffffffff815bb870 t __UNIQUE_ID_quirk_no_msi662
+ffffffff815bb8a0 t __UNIQUE_ID_quirk_no_msi664
+ffffffff815bb8d0 t __UNIQUE_ID_quirk_no_msi666
+ffffffff815bb900 t __UNIQUE_ID_quirk_no_msi668
+ffffffff815bb930 t __UNIQUE_ID_quirk_no_msi670
+ffffffff815bb960 t __UNIQUE_ID_quirk_pcie_mch672
+ffffffff815bb980 t __UNIQUE_ID_quirk_pcie_mch674
+ffffffff815bb9a0 t __UNIQUE_ID_quirk_pcie_mch676
+ffffffff815bb9c0 t __UNIQUE_ID_quirk_pcie_mch678
+ffffffff815bb9e0 t __UNIQUE_ID_quirk_huawei_pcie_sva680
+ffffffff815bbad0 t __UNIQUE_ID_quirk_huawei_pcie_sva682
+ffffffff815bbbc0 t __UNIQUE_ID_quirk_huawei_pcie_sva684
+ffffffff815bbcb0 t __UNIQUE_ID_quirk_huawei_pcie_sva686
+ffffffff815bbda0 t __UNIQUE_ID_quirk_huawei_pcie_sva688
+ffffffff815bbe90 t __UNIQUE_ID_quirk_huawei_pcie_sva690
+ffffffff815bbf80 t __UNIQUE_ID_quirk_pcie_pxh692
+ffffffff815bbfb0 t __UNIQUE_ID_quirk_pcie_pxh694
+ffffffff815bbfe0 t __UNIQUE_ID_quirk_pcie_pxh696
+ffffffff815bc010 t __UNIQUE_ID_quirk_pcie_pxh698
+ffffffff815bc040 t __UNIQUE_ID_quirk_pcie_pxh700
+ffffffff815bc070 t __UNIQUE_ID_quirk_intel_pcie_pm702
+ffffffff815bc090 t __UNIQUE_ID_quirk_intel_pcie_pm704
+ffffffff815bc0b0 t __UNIQUE_ID_quirk_intel_pcie_pm706
+ffffffff815bc0d0 t __UNIQUE_ID_quirk_intel_pcie_pm708
+ffffffff815bc0f0 t __UNIQUE_ID_quirk_intel_pcie_pm710
+ffffffff815bc110 t __UNIQUE_ID_quirk_intel_pcie_pm712
+ffffffff815bc130 t __UNIQUE_ID_quirk_intel_pcie_pm714
+ffffffff815bc150 t __UNIQUE_ID_quirk_intel_pcie_pm716
+ffffffff815bc170 t __UNIQUE_ID_quirk_intel_pcie_pm718
+ffffffff815bc190 t __UNIQUE_ID_quirk_intel_pcie_pm720
+ffffffff815bc1b0 t __UNIQUE_ID_quirk_intel_pcie_pm722
+ffffffff815bc1d0 t __UNIQUE_ID_quirk_intel_pcie_pm724
+ffffffff815bc1f0 t __UNIQUE_ID_quirk_intel_pcie_pm726
+ffffffff815bc210 t __UNIQUE_ID_quirk_intel_pcie_pm728
+ffffffff815bc230 t __UNIQUE_ID_quirk_intel_pcie_pm730
+ffffffff815bc250 t __UNIQUE_ID_quirk_intel_pcie_pm732
+ffffffff815bc270 t __UNIQUE_ID_quirk_intel_pcie_pm734
+ffffffff815bc290 t __UNIQUE_ID_quirk_intel_pcie_pm736
+ffffffff815bc2b0 t __UNIQUE_ID_quirk_intel_pcie_pm738
+ffffffff815bc2d0 t __UNIQUE_ID_quirk_intel_pcie_pm740
+ffffffff815bc2f0 t __UNIQUE_ID_quirk_intel_pcie_pm742
+ffffffff815bc310 t __UNIQUE_ID_quirk_radeon_pm744
+ffffffff815bc370 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot746
+ffffffff815bc3b0 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot748
+ffffffff815bc3f0 t __UNIQUE_ID_quirk_ryzen_xhci_d3hot750
+ffffffff815bc430 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel752
+ffffffff815bc4b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel754
+ffffffff815bc530 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel756
+ffffffff815bc5b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel758
+ffffffff815bc630 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel760
+ffffffff815bc6b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel762
+ffffffff815bc730 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel764
+ffffffff815bc7b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel766
+ffffffff815bc830 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel768
+ffffffff815bc8b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel770
+ffffffff815bc930 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel772
+ffffffff815bc9b0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel774
+ffffffff815bca30 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel776
+ffffffff815bcab0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel778
+ffffffff815bcb30 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel780
+ffffffff815bcbb0 t __UNIQUE_ID_quirk_reroute_to_boot_interrupts_intel782
+ffffffff815bcc30 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt784
+ffffffff815bcc40 t quirk_disable_intel_boot_interrupt
+ffffffff815bcd50 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt786
+ffffffff815bcd60 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt788
+ffffffff815bcd70 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt790
+ffffffff815bcd80 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt792
+ffffffff815bcd90 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt794
+ffffffff815bcda0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt796
+ffffffff815bcdb0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt798
+ffffffff815bcdc0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt800
+ffffffff815bcdd0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt802
+ffffffff815bcde0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt804
+ffffffff815bcdf0 t __UNIQUE_ID_quirk_disable_intel_boot_interrupt806
+ffffffff815bce00 t __UNIQUE_ID_quirk_disable_broadcom_boot_interrupt808
+ffffffff815bce10 t quirk_disable_broadcom_boot_interrupt
+ffffffff815bced0 t __UNIQUE_ID_quirk_disable_broadcom_boot_interrupt810
+ffffffff815bcee0 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt812
+ffffffff815bcf80 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt814
+ffffffff815bd020 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt816
+ffffffff815bd0c0 t __UNIQUE_ID_quirk_disable_amd_813x_boot_interrupt818
+ffffffff815bd160 t __UNIQUE_ID_quirk_disable_amd_8111_boot_interrupt820
+ffffffff815bd1f0 t __UNIQUE_ID_quirk_disable_amd_8111_boot_interrupt822
+ffffffff815bd280 t __UNIQUE_ID_quirk_tc86c001_ide824
+ffffffff815bd2c0 t __UNIQUE_ID_quirk_plx_pci9050826
+ffffffff815bd390 t __UNIQUE_ID_quirk_plx_pci9050828
+ffffffff815bd460 t __UNIQUE_ID_quirk_plx_pci9050830
+ffffffff815bd530 t __UNIQUE_ID_quirk_netmos832
+ffffffff815bd5d0 t __UNIQUE_ID_quirk_e100_interrupt834
+ffffffff815bd750 t __UNIQUE_ID_quirk_disable_aspm_l0s836
+ffffffff815bd790 t __UNIQUE_ID_quirk_disable_aspm_l0s838
+ffffffff815bd7d0 t __UNIQUE_ID_quirk_disable_aspm_l0s840
+ffffffff815bd810 t __UNIQUE_ID_quirk_disable_aspm_l0s842
+ffffffff815bd850 t __UNIQUE_ID_quirk_disable_aspm_l0s844
+ffffffff815bd890 t __UNIQUE_ID_quirk_disable_aspm_l0s846
+ffffffff815bd8d0 t __UNIQUE_ID_quirk_disable_aspm_l0s848
+ffffffff815bd910 t __UNIQUE_ID_quirk_disable_aspm_l0s850
+ffffffff815bd950 t __UNIQUE_ID_quirk_disable_aspm_l0s852
+ffffffff815bd990 t __UNIQUE_ID_quirk_disable_aspm_l0s854
+ffffffff815bd9d0 t __UNIQUE_ID_quirk_disable_aspm_l0s856
+ffffffff815bda10 t __UNIQUE_ID_quirk_disable_aspm_l0s858
+ffffffff815bda50 t __UNIQUE_ID_quirk_disable_aspm_l0s860
+ffffffff815bda90 t __UNIQUE_ID_quirk_disable_aspm_l0s862
+ffffffff815bdad0 t __UNIQUE_ID_quirk_disable_aspm_l0s_l1864
+ffffffff815bdb10 t __UNIQUE_ID_quirk_enable_clear_retrain_link866
+ffffffff815bdb40 t __UNIQUE_ID_quirk_enable_clear_retrain_link868
+ffffffff815bdb70 t __UNIQUE_ID_quirk_enable_clear_retrain_link870
+ffffffff815bdba0 t __UNIQUE_ID_fixup_rev1_53c810872
+ffffffff815bdbe0 t __UNIQUE_ID_quirk_p64h2_1k_io874
+ffffffff815bdc50 t __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap876
+ffffffff815bdce0 t __UNIQUE_ID_quirk_nvidia_ck804_pcie_aer_ext_cap878
+ffffffff815bdd70 t __UNIQUE_ID_quirk_via_cx700_pci_parking_caching880
+ffffffff815bde90 t __UNIQUE_ID_quirk_brcm_5719_limit_mrrs882
+ffffffff815bdf10 t __UNIQUE_ID_quirk_unhide_mch_dev6884
+ffffffff815bdf90 t __UNIQUE_ID_quirk_unhide_mch_dev6886
+ffffffff815be010 t __UNIQUE_ID_quirk_disable_all_msi888
+ffffffff815be040 t __UNIQUE_ID_quirk_disable_all_msi890
+ffffffff815be070 t __UNIQUE_ID_quirk_disable_all_msi892
+ffffffff815be0a0 t __UNIQUE_ID_quirk_disable_all_msi894
+ffffffff815be0d0 t __UNIQUE_ID_quirk_disable_all_msi896
+ffffffff815be100 t __UNIQUE_ID_quirk_disable_all_msi898
+ffffffff815be130 t __UNIQUE_ID_quirk_disable_all_msi900
+ffffffff815be160 t __UNIQUE_ID_quirk_disable_all_msi902
+ffffffff815be190 t __UNIQUE_ID_quirk_disable_all_msi904
+ffffffff815be1c0 t __UNIQUE_ID_quirk_disable_msi906
+ffffffff815be200 t __UNIQUE_ID_quirk_disable_msi908
+ffffffff815be240 t __UNIQUE_ID_quirk_disable_msi910
+ffffffff815be280 t __UNIQUE_ID_quirk_amd_780_apc_msi912
+ffffffff815be2f0 t __UNIQUE_ID_quirk_amd_780_apc_msi914
+ffffffff815be360 t __UNIQUE_ID_quirk_msi_ht_cap916
+ffffffff815be3b0 t __UNIQUE_ID_quirk_nvidia_ck804_msi_ht_cap918
+ffffffff815be420 t __UNIQUE_ID_ht_enable_msi_mapping920
+ffffffff815be430 t ht_enable_msi_mapping
+ffffffff815be510 t __UNIQUE_ID_ht_enable_msi_mapping922
+ffffffff815be520 t __UNIQUE_ID_nvenet_msi_disable924
+ffffffff815be590 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi926
+ffffffff815be5b0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi928
+ffffffff815be5d0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi930
+ffffffff815be5f0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi932
+ffffffff815be610 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi934
+ffffffff815be630 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi936
+ffffffff815be650 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi938
+ffffffff815be670 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi940
+ffffffff815be690 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi942
+ffffffff815be6b0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi944
+ffffffff815be6d0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi946
+ffffffff815be6f0 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi948
+ffffffff815be710 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi950
+ffffffff815be730 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi952
+ffffffff815be750 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi954
+ffffffff815be770 t __UNIQUE_ID_pci_quirk_nvidia_tegra_disable_rp_msi956
+ffffffff815be790 t __UNIQUE_ID_nvbridge_check_legacy_irq_routing958
+ffffffff815be820 t __UNIQUE_ID_nvbridge_check_legacy_irq_routing960
+ffffffff815be8b0 t __UNIQUE_ID_nv_msi_ht_cap_quirk_all962
+ffffffff815be8d0 t __UNIQUE_ID_nv_msi_ht_cap_quirk_all964
+ffffffff815be8f0 t __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf966
+ffffffff815be910 t __UNIQUE_ID_nv_msi_ht_cap_quirk_leaf968
+ffffffff815be930 t __UNIQUE_ID_quirk_msi_intx_disable_bug970
+ffffffff815be950 t __UNIQUE_ID_quirk_msi_intx_disable_bug972
+ffffffff815be970 t __UNIQUE_ID_quirk_msi_intx_disable_bug974
+ffffffff815be990 t __UNIQUE_ID_quirk_msi_intx_disable_bug976
+ffffffff815be9b0 t __UNIQUE_ID_quirk_msi_intx_disable_bug978
+ffffffff815be9d0 t __UNIQUE_ID_quirk_msi_intx_disable_bug980
+ffffffff815be9f0 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug982
+ffffffff815bea40 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug984
+ffffffff815bea90 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug986
+ffffffff815beae0 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug988
+ffffffff815beb30 t __UNIQUE_ID_quirk_msi_intx_disable_ati_bug990
+ffffffff815beb80 t __UNIQUE_ID_quirk_msi_intx_disable_bug992
+ffffffff815beba0 t __UNIQUE_ID_quirk_msi_intx_disable_bug994
+ffffffff815bebc0 t __UNIQUE_ID_quirk_msi_intx_disable_bug996
+ffffffff815bebe0 t __UNIQUE_ID_quirk_msi_intx_disable_bug998
+ffffffff815bec00 t __UNIQUE_ID_quirk_msi_intx_disable_bug1000
+ffffffff815bec20 t __UNIQUE_ID_quirk_msi_intx_disable_bug1002
+ffffffff815bec40 t __UNIQUE_ID_quirk_msi_intx_disable_bug1004
+ffffffff815bec60 t __UNIQUE_ID_quirk_msi_intx_disable_bug1006
+ffffffff815bec80 t __UNIQUE_ID_quirk_msi_intx_disable_bug1008
+ffffffff815beca0 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1010
+ffffffff815bece0 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1012
+ffffffff815bed20 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1014
+ffffffff815bed60 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1016
+ffffffff815beda0 t __UNIQUE_ID_quirk_msi_intx_disable_qca_bug1018
+ffffffff815bede0 t __UNIQUE_ID_quirk_al_msi_disable1020
+ffffffff815bee10 t __UNIQUE_ID_quirk_hotplug_bridge1022
+ffffffff815bee30 t __UNIQUE_ID_fixup_ti816x_class1024
+ffffffff815bee60 t __UNIQUE_ID_fixup_mpss_2561026
+ffffffff815bee80 t __UNIQUE_ID_fixup_mpss_2561028
+ffffffff815beea0 t __UNIQUE_ID_fixup_mpss_2561030
+ffffffff815beec0 t __UNIQUE_ID_fixup_mpss_2561032
+ffffffff815beee0 t __UNIQUE_ID_quirk_intel_mc_errata1034
+ffffffff815beef0 t quirk_intel_mc_errata
+ffffffff815befc0 t __UNIQUE_ID_quirk_intel_mc_errata1036
+ffffffff815befd0 t __UNIQUE_ID_quirk_intel_mc_errata1038
+ffffffff815befe0 t __UNIQUE_ID_quirk_intel_mc_errata1040
+ffffffff815beff0 t __UNIQUE_ID_quirk_intel_mc_errata1042
+ffffffff815bf000 t __UNIQUE_ID_quirk_intel_mc_errata1044
+ffffffff815bf010 t __UNIQUE_ID_quirk_intel_mc_errata1046
+ffffffff815bf020 t __UNIQUE_ID_quirk_intel_mc_errata1048
+ffffffff815bf030 t __UNIQUE_ID_quirk_intel_mc_errata1050
+ffffffff815bf040 t __UNIQUE_ID_quirk_intel_mc_errata1052
+ffffffff815bf050 t __UNIQUE_ID_quirk_intel_mc_errata1054
+ffffffff815bf060 t __UNIQUE_ID_quirk_intel_mc_errata1056
+ffffffff815bf070 t __UNIQUE_ID_quirk_intel_mc_errata1058
+ffffffff815bf080 t __UNIQUE_ID_quirk_intel_mc_errata1060
+ffffffff815bf090 t __UNIQUE_ID_quirk_intel_mc_errata1062
+ffffffff815bf0a0 t __UNIQUE_ID_quirk_intel_mc_errata1064
+ffffffff815bf0b0 t __UNIQUE_ID_quirk_intel_mc_errata1066
+ffffffff815bf0c0 t __UNIQUE_ID_quirk_intel_mc_errata1068
+ffffffff815bf0d0 t __UNIQUE_ID_quirk_intel_mc_errata1070
+ffffffff815bf0e0 t __UNIQUE_ID_quirk_intel_mc_errata1072
+ffffffff815bf0f0 t __UNIQUE_ID_quirk_intel_mc_errata1074
+ffffffff815bf100 t __UNIQUE_ID_quirk_intel_mc_errata1076
+ffffffff815bf110 t __UNIQUE_ID_quirk_intel_mc_errata1078
+ffffffff815bf120 t __UNIQUE_ID_quirk_intel_mc_errata1080
+ffffffff815bf130 t __UNIQUE_ID_quirk_intel_mc_errata1082
+ffffffff815bf140 t __UNIQUE_ID_quirk_intel_ntb1084
+ffffffff815bf1f0 t __UNIQUE_ID_quirk_intel_ntb1086
+ffffffff815bf2a0 t __UNIQUE_ID_disable_igfx_irq1088
+ffffffff815bf310 t __UNIQUE_ID_disable_igfx_irq1090
+ffffffff815bf380 t __UNIQUE_ID_disable_igfx_irq1092
+ffffffff815bf3f0 t __UNIQUE_ID_disable_igfx_irq1094
+ffffffff815bf460 t __UNIQUE_ID_disable_igfx_irq1096
+ffffffff815bf4d0 t __UNIQUE_ID_disable_igfx_irq1098
+ffffffff815bf540 t __UNIQUE_ID_disable_igfx_irq1100
+ffffffff815bf5b0 t __UNIQUE_ID_quirk_remove_d3hot_delay1102
+ffffffff815bf5d0 t __UNIQUE_ID_quirk_remove_d3hot_delay1104
+ffffffff815bf5f0 t __UNIQUE_ID_quirk_remove_d3hot_delay1106
+ffffffff815bf610 t __UNIQUE_ID_quirk_remove_d3hot_delay1108
+ffffffff815bf630 t __UNIQUE_ID_quirk_remove_d3hot_delay1110
+ffffffff815bf650 t __UNIQUE_ID_quirk_remove_d3hot_delay1112
+ffffffff815bf670 t __UNIQUE_ID_quirk_remove_d3hot_delay1114
+ffffffff815bf690 t __UNIQUE_ID_quirk_remove_d3hot_delay1116
+ffffffff815bf6b0 t __UNIQUE_ID_quirk_remove_d3hot_delay1118
+ffffffff815bf6d0 t __UNIQUE_ID_quirk_remove_d3hot_delay1120
+ffffffff815bf6f0 t __UNIQUE_ID_quirk_remove_d3hot_delay1122
+ffffffff815bf710 t __UNIQUE_ID_quirk_remove_d3hot_delay1124
+ffffffff815bf730 t __UNIQUE_ID_quirk_remove_d3hot_delay1126
+ffffffff815bf750 t __UNIQUE_ID_quirk_remove_d3hot_delay1128
+ffffffff815bf770 t __UNIQUE_ID_quirk_remove_d3hot_delay1130
+ffffffff815bf790 t __UNIQUE_ID_quirk_remove_d3hot_delay1132
+ffffffff815bf7b0 t __UNIQUE_ID_quirk_remove_d3hot_delay1134
+ffffffff815bf7d0 t __UNIQUE_ID_quirk_remove_d3hot_delay1136
+ffffffff815bf7f0 t __UNIQUE_ID_quirk_remove_d3hot_delay1138
+ffffffff815bf810 t __UNIQUE_ID_quirk_remove_d3hot_delay1140
+ffffffff815bf830 t __UNIQUE_ID_quirk_remove_d3hot_delay1142
+ffffffff815bf850 t __UNIQUE_ID_quirk_remove_d3hot_delay1144
+ffffffff815bf870 t __UNIQUE_ID_quirk_remove_d3hot_delay1146
+ffffffff815bf890 t __UNIQUE_ID_quirk_broken_intx_masking1148
+ffffffff815bf8b0 t __UNIQUE_ID_quirk_broken_intx_masking1150
+ffffffff815bf8d0 t __UNIQUE_ID_quirk_broken_intx_masking1152
+ffffffff815bf8f0 t __UNIQUE_ID_quirk_broken_intx_masking1154
+ffffffff815bf910 t __UNIQUE_ID_quirk_broken_intx_masking1156
+ffffffff815bf930 t __UNIQUE_ID_quirk_broken_intx_masking1158
+ffffffff815bf950 t __UNIQUE_ID_quirk_broken_intx_masking1160
+ffffffff815bf970 t __UNIQUE_ID_quirk_broken_intx_masking1162
+ffffffff815bf990 t __UNIQUE_ID_quirk_broken_intx_masking1164
+ffffffff815bf9b0 t __UNIQUE_ID_quirk_broken_intx_masking1166
+ffffffff815bf9d0 t __UNIQUE_ID_quirk_broken_intx_masking1168
+ffffffff815bf9f0 t __UNIQUE_ID_quirk_broken_intx_masking1170
+ffffffff815bfa10 t __UNIQUE_ID_quirk_broken_intx_masking1172
+ffffffff815bfa30 t __UNIQUE_ID_quirk_broken_intx_masking1174
+ffffffff815bfa50 t __UNIQUE_ID_quirk_broken_intx_masking1176
+ffffffff815bfa70 t __UNIQUE_ID_quirk_broken_intx_masking1178
+ffffffff815bfa90 t __UNIQUE_ID_quirk_broken_intx_masking1180
+ffffffff815bfab0 t __UNIQUE_ID_quirk_broken_intx_masking1182
+ffffffff815bfad0 t __UNIQUE_ID_quirk_broken_intx_masking1184
+ffffffff815bfaf0 t __UNIQUE_ID_quirk_broken_intx_masking1186
+ffffffff815bfb10 t __UNIQUE_ID_mellanox_check_broken_intx_masking1188
+ffffffff815bfc80 t __UNIQUE_ID_quirk_nvidia_no_bus_reset1190
+ffffffff815bfca0 t __UNIQUE_ID_quirk_no_bus_reset1192
+ffffffff815bfcc0 t __UNIQUE_ID_quirk_no_bus_reset1194
+ffffffff815bfce0 t __UNIQUE_ID_quirk_no_bus_reset1196
+ffffffff815bfd00 t __UNIQUE_ID_quirk_no_bus_reset1198
+ffffffff815bfd20 t __UNIQUE_ID_quirk_no_bus_reset1200
+ffffffff815bfd40 t __UNIQUE_ID_quirk_no_bus_reset1202
+ffffffff815bfd60 t __UNIQUE_ID_quirk_no_bus_reset1204
+ffffffff815bfd80 t __UNIQUE_ID_quirk_no_bus_reset1206
+ffffffff815bfda0 t __UNIQUE_ID_quirk_no_pm_reset1208
+ffffffff815bfdc0 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1210
+ffffffff815bfe10 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1212
+ffffffff815bfe60 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1214
+ffffffff815bfeb0 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1216
+ffffffff815bff00 t __UNIQUE_ID_quirk_thunderbolt_hotplug_msi1218
+ffffffff815bff50 t __UNIQUE_ID_quirk_apple_poweroff_thunderbolt1220
+ffffffff815c00b0 t pci_dev_specific_reset
+ffffffff815c0180 t __UNIQUE_ID_quirk_dma_func0_alias1222
+ffffffff815c01b0 t __UNIQUE_ID_quirk_dma_func0_alias1224
+ffffffff815c01e0 t __UNIQUE_ID_quirk_dma_func1_alias1226
+ffffffff815c0210 t __UNIQUE_ID_quirk_dma_func1_alias1228
+ffffffff815c0240 t __UNIQUE_ID_quirk_dma_func1_alias1230
+ffffffff815c0270 t __UNIQUE_ID_quirk_dma_func1_alias1232
+ffffffff815c02a0 t __UNIQUE_ID_quirk_dma_func1_alias1234
+ffffffff815c02d0 t __UNIQUE_ID_quirk_dma_func1_alias1236
+ffffffff815c0300 t __UNIQUE_ID_quirk_dma_func1_alias1238
+ffffffff815c0330 t __UNIQUE_ID_quirk_dma_func1_alias1240
+ffffffff815c0360 t __UNIQUE_ID_quirk_dma_func1_alias1242
+ffffffff815c0390 t __UNIQUE_ID_quirk_dma_func1_alias1244
+ffffffff815c03c0 t __UNIQUE_ID_quirk_dma_func1_alias1246
+ffffffff815c03f0 t __UNIQUE_ID_quirk_dma_func1_alias1248
+ffffffff815c0420 t __UNIQUE_ID_quirk_dma_func1_alias1250
+ffffffff815c0450 t __UNIQUE_ID_quirk_dma_func1_alias1252
+ffffffff815c0480 t __UNIQUE_ID_quirk_dma_func1_alias1254
+ffffffff815c04b0 t __UNIQUE_ID_quirk_dma_func1_alias1256
+ffffffff815c04e0 t __UNIQUE_ID_quirk_dma_func1_alias1258
+ffffffff815c0510 t __UNIQUE_ID_quirk_dma_func1_alias1260
+ffffffff815c0540 t __UNIQUE_ID_quirk_fixed_dma_alias1262
+ffffffff815c0580 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1264
+ffffffff815c05d0 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1266
+ffffffff815c0620 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1268
+ffffffff815c0670 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1270
+ffffffff815c06c0 t __UNIQUE_ID_quirk_use_pcie_bridge_dma_alias1272
+ffffffff815c0710 t __UNIQUE_ID_quirk_mic_x200_dma_alias1274
+ffffffff815c0760 t __UNIQUE_ID_quirk_mic_x200_dma_alias1276
+ffffffff815c07b0 t __UNIQUE_ID_quirk_pex_vca_alias1278
+ffffffff815c07f0 t __UNIQUE_ID_quirk_pex_vca_alias1280
+ffffffff815c0830 t __UNIQUE_ID_quirk_pex_vca_alias1282
+ffffffff815c0870 t __UNIQUE_ID_quirk_pex_vca_alias1284
+ffffffff815c08b0 t __UNIQUE_ID_quirk_pex_vca_alias1286
+ffffffff815c08f0 t __UNIQUE_ID_quirk_pex_vca_alias1288
+ffffffff815c0930 t __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1290
+ffffffff815c0950 t __UNIQUE_ID_quirk_bridge_cavm_thrx2_pcie_root1292
+ffffffff815c0970 t __UNIQUE_ID_quirk_tw686x_class1294
+ffffffff815c09a0 t __UNIQUE_ID_quirk_tw686x_class1296
+ffffffff815c09d0 t __UNIQUE_ID_quirk_tw686x_class1298
+ffffffff815c0a00 t __UNIQUE_ID_quirk_tw686x_class1300
+ffffffff815c0a30 t __UNIQUE_ID_quirk_relaxedordering_disable1302
+ffffffff815c0a60 t __UNIQUE_ID_quirk_relaxedordering_disable1304
+ffffffff815c0a90 t __UNIQUE_ID_quirk_relaxedordering_disable1306
+ffffffff815c0ac0 t __UNIQUE_ID_quirk_relaxedordering_disable1308
+ffffffff815c0af0 t __UNIQUE_ID_quirk_relaxedordering_disable1310
+ffffffff815c0b20 t __UNIQUE_ID_quirk_relaxedordering_disable1312
+ffffffff815c0b50 t __UNIQUE_ID_quirk_relaxedordering_disable1314
+ffffffff815c0b80 t __UNIQUE_ID_quirk_relaxedordering_disable1316
+ffffffff815c0bb0 t __UNIQUE_ID_quirk_relaxedordering_disable1318
+ffffffff815c0be0 t __UNIQUE_ID_quirk_relaxedordering_disable1320
+ffffffff815c0c10 t __UNIQUE_ID_quirk_relaxedordering_disable1322
+ffffffff815c0c40 t __UNIQUE_ID_quirk_relaxedordering_disable1324
+ffffffff815c0c70 t __UNIQUE_ID_quirk_relaxedordering_disable1326
+ffffffff815c0ca0 t __UNIQUE_ID_quirk_relaxedordering_disable1328
+ffffffff815c0cd0 t __UNIQUE_ID_quirk_relaxedordering_disable1330
+ffffffff815c0d00 t __UNIQUE_ID_quirk_relaxedordering_disable1332
+ffffffff815c0d30 t __UNIQUE_ID_quirk_relaxedordering_disable1334
+ffffffff815c0d60 t __UNIQUE_ID_quirk_relaxedordering_disable1336
+ffffffff815c0d90 t __UNIQUE_ID_quirk_relaxedordering_disable1338
+ffffffff815c0dc0 t __UNIQUE_ID_quirk_relaxedordering_disable1340
+ffffffff815c0df0 t __UNIQUE_ID_quirk_relaxedordering_disable1342
+ffffffff815c0e20 t __UNIQUE_ID_quirk_relaxedordering_disable1344
+ffffffff815c0e50 t __UNIQUE_ID_quirk_relaxedordering_disable1346
+ffffffff815c0e80 t __UNIQUE_ID_quirk_relaxedordering_disable1348
+ffffffff815c0eb0 t __UNIQUE_ID_quirk_relaxedordering_disable1350
+ffffffff815c0ee0 t __UNIQUE_ID_quirk_relaxedordering_disable1352
+ffffffff815c0f10 t __UNIQUE_ID_quirk_relaxedordering_disable1354
+ffffffff815c0f40 t __UNIQUE_ID_quirk_relaxedordering_disable1356
+ffffffff815c0f70 t __UNIQUE_ID_quirk_relaxedordering_disable1358
+ffffffff815c0fa0 t __UNIQUE_ID_quirk_relaxedordering_disable1360
+ffffffff815c0fd0 t __UNIQUE_ID_quirk_relaxedordering_disable1362
+ffffffff815c1000 t __UNIQUE_ID_quirk_chelsio_T5_disable_root_port_attributes1364
+ffffffff815c10d0 t pci_dev_specific_acs_enabled
+ffffffff815c1160 t pci_dev_specific_enable_acs
+ffffffff815c13f0 t pci_dev_specific_disable_acs_redir
+ffffffff815c14c0 t __UNIQUE_ID_quirk_intel_qat_vf_cap1366
+ffffffff815c16c0 t __UNIQUE_ID_quirk_no_flr1368
+ffffffff815c16e0 t __UNIQUE_ID_quirk_no_flr1370
+ffffffff815c1700 t __UNIQUE_ID_quirk_no_flr1372
+ffffffff815c1720 t __UNIQUE_ID_quirk_no_flr1374
+ffffffff815c1740 t __UNIQUE_ID_quirk_no_flr1376
+ffffffff815c1760 t __UNIQUE_ID_quirk_no_flr1378
+ffffffff815c1780 t __UNIQUE_ID_quirk_no_ext_tags1380
+ffffffff815c17e0 t __UNIQUE_ID_quirk_no_ext_tags1382
+ffffffff815c1840 t __UNIQUE_ID_quirk_no_ext_tags1384
+ffffffff815c18a0 t __UNIQUE_ID_quirk_no_ext_tags1386
+ffffffff815c1900 t __UNIQUE_ID_quirk_no_ext_tags1388
+ffffffff815c1960 t __UNIQUE_ID_quirk_no_ext_tags1390
+ffffffff815c19c0 t __UNIQUE_ID_quirk_no_ext_tags1392
+ffffffff815c1a20 t __UNIQUE_ID_quirk_amd_harvest_no_ats1394
+ffffffff815c1a90 t __UNIQUE_ID_quirk_amd_harvest_no_ats1396
+ffffffff815c1b00 t __UNIQUE_ID_quirk_amd_harvest_no_ats1398
+ffffffff815c1b70 t __UNIQUE_ID_quirk_amd_harvest_no_ats1400
+ffffffff815c1be0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1402
+ffffffff815c1c50 t __UNIQUE_ID_quirk_amd_harvest_no_ats1404
+ffffffff815c1cc0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1406
+ffffffff815c1d30 t __UNIQUE_ID_quirk_amd_harvest_no_ats1408
+ffffffff815c1da0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1410
+ffffffff815c1e10 t __UNIQUE_ID_quirk_amd_harvest_no_ats1412
+ffffffff815c1e80 t __UNIQUE_ID_quirk_amd_harvest_no_ats1414
+ffffffff815c1ef0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1416
+ffffffff815c1f60 t __UNIQUE_ID_quirk_amd_harvest_no_ats1418
+ffffffff815c1fd0 t __UNIQUE_ID_quirk_amd_harvest_no_ats1420
+ffffffff815c2040 t __UNIQUE_ID_quirk_amd_harvest_no_ats1422
+ffffffff815c20b0 t __UNIQUE_ID_quirk_fsl_no_msi1424
+ffffffff815c20e0 t __UNIQUE_ID_quirk_gpu_hda1426
+ffffffff815c2100 t __UNIQUE_ID_quirk_gpu_hda1428
+ffffffff815c2120 t __UNIQUE_ID_quirk_gpu_hda1430
+ffffffff815c2140 t __UNIQUE_ID_quirk_gpu_usb1432
+ffffffff815c2160 t __UNIQUE_ID_quirk_gpu_usb1434
+ffffffff815c2180 t __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1436
+ffffffff815c21a0 t __UNIQUE_ID_quirk_gpu_usb_typec_ucsi1438
+ffffffff815c21c0 t __UNIQUE_ID_quirk_nvidia_hda1440
+ffffffff815c21d0 t quirk_nvidia_hda
+ffffffff815c22b0 t __UNIQUE_ID_quirk_nvidia_hda1442
+ffffffff815c22c0 t pci_idt_bus_quirk
+ffffffff815c23b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1444
+ffffffff815c23c0 t quirk_switchtec_ntb_dma_alias
+ffffffff815c2580 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1446
+ffffffff815c2590 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1448
+ffffffff815c25a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1450
+ffffffff815c25b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1452
+ffffffff815c25c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1454
+ffffffff815c25d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1456
+ffffffff815c25e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1458
+ffffffff815c25f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1460
+ffffffff815c2600 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1462
+ffffffff815c2610 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1464
+ffffffff815c2620 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1466
+ffffffff815c2630 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1468
+ffffffff815c2640 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1470
+ffffffff815c2650 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1472
+ffffffff815c2660 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1474
+ffffffff815c2670 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1476
+ffffffff815c2680 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1478
+ffffffff815c2690 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1480
+ffffffff815c26a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1482
+ffffffff815c26b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1484
+ffffffff815c26c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1486
+ffffffff815c26d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1488
+ffffffff815c26e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1490
+ffffffff815c26f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1492
+ffffffff815c2700 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1494
+ffffffff815c2710 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1496
+ffffffff815c2720 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1498
+ffffffff815c2730 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1500
+ffffffff815c2740 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1502
+ffffffff815c2750 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1504
+ffffffff815c2760 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1506
+ffffffff815c2770 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1508
+ffffffff815c2780 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1510
+ffffffff815c2790 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1512
+ffffffff815c27a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1514
+ffffffff815c27b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1516
+ffffffff815c27c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1518
+ffffffff815c27d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1520
+ffffffff815c27e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1522
+ffffffff815c27f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1524
+ffffffff815c2800 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1526
+ffffffff815c2810 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1528
+ffffffff815c2820 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1530
+ffffffff815c2830 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1532
+ffffffff815c2840 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1534
+ffffffff815c2850 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1536
+ffffffff815c2860 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1538
+ffffffff815c2870 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1540
+ffffffff815c2880 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1542
+ffffffff815c2890 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1544
+ffffffff815c28a0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1546
+ffffffff815c28b0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1548
+ffffffff815c28c0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1550
+ffffffff815c28d0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1552
+ffffffff815c28e0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1554
+ffffffff815c28f0 t __UNIQUE_ID_quirk_switchtec_ntb_dma_alias1556
+ffffffff815c2900 t __UNIQUE_ID_quirk_plx_ntb_dma_alias1558
+ffffffff815c2940 t __UNIQUE_ID_quirk_plx_ntb_dma_alias1560
+ffffffff815c2980 t __UNIQUE_ID_quirk_reset_lenovo_thinkpad_p50_nvgpu1562
+ffffffff815c2a50 t __UNIQUE_ID_pci_fixup_no_d0_pme1564
+ffffffff815c2a80 t __UNIQUE_ID_pci_fixup_no_msi_no_pme1566
+ffffffff815c2ad0 t __UNIQUE_ID_pci_fixup_no_msi_no_pme1568
+ffffffff815c2b20 t __UNIQUE_ID_apex_pci_fixup_class1570
+ffffffff815c2b40 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1572
+ffffffff815c2b50 t pci_fixup_pericom_acs_store_forward
+ffffffff815c2c30 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1574
+ffffffff815c2c40 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1576
+ffffffff815c2c50 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1578
+ffffffff815c2c60 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1580
+ffffffff815c2c70 t __UNIQUE_ID_pci_fixup_pericom_acs_store_forward1582
+ffffffff815c2c80 t __UNIQUE_ID_nvidia_ion_ahci_fixup1584
+ffffffff815c2ca0 t __UNIQUE_ID_rom_bar_overlap_defect1586
+ffffffff815c2cd0 t __UNIQUE_ID_rom_bar_overlap_defect1588
+ffffffff815c2d00 t __UNIQUE_ID_rom_bar_overlap_defect1590
+ffffffff815c2d30 t __UNIQUE_ID_rom_bar_overlap_defect1592
+ffffffff815c2d60 t __UNIQUE_ID_aspm_l1_acceptable_latency1604
+ffffffff815c2da0 t __UNIQUE_ID_aspm_l1_acceptable_latency1606
+ffffffff815c2de0 t __UNIQUE_ID_aspm_l1_acceptable_latency1608
+ffffffff815c2e20 t __UNIQUE_ID_aspm_l1_acceptable_latency1610
+ffffffff815c2e60 t __UNIQUE_ID_aspm_l1_acceptable_latency1612
+ffffffff815c2ea0 t __UNIQUE_ID_aspm_l1_acceptable_latency1614
+ffffffff815c2ee0 t __UNIQUE_ID_aspm_l1_acceptable_latency1616
+ffffffff815c2f20 t __UNIQUE_ID_aspm_l1_acceptable_latency1618
+ffffffff815c2f60 t __UNIQUE_ID_aspm_l1_acceptable_latency1620
+ffffffff815c2fa0 t __UNIQUE_ID_aspm_l1_acceptable_latency1622
+ffffffff815c2fe0 t __UNIQUE_ID_aspm_l1_acceptable_latency1624
+ffffffff815c3020 t __UNIQUE_ID_aspm_l1_acceptable_latency1626
+ffffffff815c3060 t __UNIQUE_ID_aspm_l1_acceptable_latency1628
+ffffffff815c30a0 t __UNIQUE_ID_aspm_l1_acceptable_latency1630
+ffffffff815c30e0 t __UNIQUE_ID_aspm_l1_acceptable_latency1632
+ffffffff815c3120 t __UNIQUE_ID_aspm_l1_acceptable_latency1634
+ffffffff815c3160 t __UNIQUE_ID_aspm_l1_acceptable_latency1636
+ffffffff815c31a0 t __UNIQUE_ID_aspm_l1_acceptable_latency1638
+ffffffff815c31e0 t __UNIQUE_ID_aspm_l1_acceptable_latency1640
+ffffffff815c3220 t __UNIQUE_ID_aspm_l1_acceptable_latency1642
+ffffffff815c3260 t __UNIQUE_ID_aspm_l1_acceptable_latency1644
+ffffffff815c32a0 t __UNIQUE_ID_aspm_l1_acceptable_latency1646
+ffffffff815c32e0 t __UNIQUE_ID_aspm_l1_acceptable_latency1648
+ffffffff815c3320 t __UNIQUE_ID_aspm_l1_acceptable_latency1650
+ffffffff815c3360 t __UNIQUE_ID_aspm_l1_acceptable_latency1652
+ffffffff815c33a0 t __UNIQUE_ID_aspm_l1_acceptable_latency1654
+ffffffff815c33e0 t quirk_io_region
+ffffffff815c34e0 t dmi_disable_ioapicreroute
+ffffffff815c3510 t msi_ht_cap_enabled
+ffffffff815c35f0 t __nv_msi_ht_cap_quirk
+ffffffff815c39b0 t reset_intel_82599_sfp_virtfn
+ffffffff815c39d0 t reset_ivb_igd
+ffffffff815c3ac0 t nvme_disable_and_flr
+ffffffff815c3c10 t delay_250ms_after_flr
+ffffffff815c3c50 t reset_chelsio_generic_dev
+ffffffff815c3d40 t reset_hinic_vf_dev
+ffffffff815c3e60 t pci_quirk_amd_sb_acs
+ffffffff815c3ef0 t pci_quirk_mf_endpoint_acs
+ffffffff815c3f10 t pci_quirk_rciep_acs
+ffffffff815c3f40 t pci_quirk_qcom_rp_acs
+ffffffff815c3f60 t pci_quirk_intel_pch_acs
+ffffffff815c4010 t pci_quirk_intel_spt_pch_acs
+ffffffff815c40c0 t pci_quirk_cavium_acs
+ffffffff815c4120 t pci_quirk_xgene_acs
+ffffffff815c4140 t pci_quirk_brcm_acs
+ffffffff815c4160 t pci_quirk_al_acs
+ffffffff815c4190 t pci_quirk_nxp_rp_acs
+ffffffff815c41b0 t pci_quirk_zhaoxin_pcie_ports_acs
+ffffffff815c4210 t pci_quirk_wangxun_nic_acs
+ffffffff815c4250 t pci_quirk_intel_spt_pch_acs_match
+ffffffff815c42c0 t pci_create_device_link
+ffffffff815c4390 t pci_ats_init
+ffffffff815c43c0 t pci_ats_supported
+ffffffff815c43f0 t pci_enable_ats
+ffffffff815c4490 t pci_disable_ats
+ffffffff815c4520 t pci_restore_ats_state
+ffffffff815c4580 t pci_ats_queue_depth
+ffffffff815c4600 t pci_ats_page_aligned
+ffffffff815c4660 t pci_iov_virtfn_bus
+ffffffff815c46b0 t pci_iov_virtfn_devfn
+ffffffff815c46f0 t pci_iov_vf_id
+ffffffff815c4750 t pci_iov_get_pf_drvdata
+ffffffff815c4790 t pci_iov_resource_size
+ffffffff815c47d0 t pci_iov_sysfs_link
+ffffffff815c48a0 t sriov_vf_attrs_are_visible
+ffffffff815c48d0 t pci_iov_add_virtfn
+ffffffff815c4cc0 t pci_iov_remove_virtfn
+ffffffff815c4e10 t sriov_pf_attrs_are_visible
+ffffffff815c4e50 t pcibios_sriov_enable
+ffffffff815c4e60 t pcibios_sriov_disable
+ffffffff815c4e70 t pci_iov_init
+ffffffff815c5380 t pci_iov_release
+ffffffff815c53e0 t pci_iov_remove
+ffffffff815c5430 t pci_iov_update_resource
+ffffffff815c55a0 t pcibios_iov_resource_alignment
+ffffffff815c55e0 t pci_sriov_resource_alignment
+ffffffff815c55f0 t pci_restore_iov_state
+ffffffff815c5760 t pci_vf_drivers_autoprobe
+ffffffff815c5790 t pci_iov_bus_range
+ffffffff815c5800 t pci_enable_sriov
+ffffffff815c5840 t sriov_enable
+ffffffff815c5bc0 t pci_disable_sriov
+ffffffff815c5bf0 t sriov_disable
+ffffffff815c5ce0 t pci_num_vf
+ffffffff815c5d10 t pci_vfs_assigned
+ffffffff815c5db0 t pci_sriov_set_totalvfs
+ffffffff815c5e00 t pci_sriov_get_totalvfs
+ffffffff815c5e30 t pci_sriov_configure_simple
+ffffffff815c5f20 t sriov_vf_msix_count_store
+ffffffff815c6050 t sriov_totalvfs_show
+ffffffff815c6090 t sriov_numvfs_show
+ffffffff815c60f0 t sriov_numvfs_store
+ffffffff815c6290 t sriov_offset_show
+ffffffff815c62c0 t sriov_stride_show
+ffffffff815c62f0 t sriov_vf_device_show
+ffffffff815c6320 t sriov_drivers_autoprobe_show
+ffffffff815c6350 t sriov_drivers_autoprobe_store
+ffffffff815c63c0 t sriov_vf_total_msix_show
+ffffffff815c6440 t pci_iov_set_numvfs
+ffffffff815c6490 t sriov_add_vfs
+ffffffff815c6530 t smbios_attr_is_visible
+ffffffff815c6620 t acpi_attr_is_visible
+ffffffff815c6680 t smbios_label_show
+ffffffff815c6740 t index_show
+ffffffff815c6800 t label_show
+ffffffff815c6820 t dsm_get_label
+ffffffff815c6940 t acpi_index_show
+ffffffff815c6960 t vga_default_device
+ffffffff815c6980 t vga_set_default_device
+ffffffff815c69b0 t vga_remove_vgacon
+ffffffff815c6a30 t vga_get
+ffffffff815c6bf0 t __vga_tryget
+ffffffff815c6db0 t vga_put
+ffffffff815c6e30 t __vga_put
+ffffffff815c6ee0 t vga_set_legacy_decoding
+ffffffff815c6f00 t __vga_set_legacy_decoding
+ffffffff815c7080 t vga_client_register
+ffffffff815c70f0 t vga_arbiter_notify_clients
+ffffffff815c7280 t vga_arbiter_add_pci_device
+ffffffff815c7770 t vga_arb_read
+ffffffff815c7960 t vga_arb_write
+ffffffff815c8490 t vga_arb_fpoll
+ffffffff815c84c0 t vga_arb_open
+ffffffff815c8580 t vga_arb_release
+ffffffff815c8830 t vga_str_to_iostate
+ffffffff815c88c0 t vga_tryget
+ffffffff815c8960 t vga_pci_str_to_vars
+ffffffff815c89e0 t pci_notify
+ffffffff815c8b20 t pci_epc_put
+ffffffff815c8b40 t pci_epc_get
+ffffffff815c8c20 t pci_epc_get_first_free_bar
+ffffffff815c8c70 t pci_epc_get_next_free_bar
+ffffffff815c8ce0 t pci_epc_get_features
+ffffffff815c8d90 t pci_epc_stop
+ffffffff815c8df0 t pci_epc_start
+ffffffff815c8e60 t pci_epc_raise_irq
+ffffffff815c8f30 t pci_epc_map_msi_irq
+ffffffff815c9000 t pci_epc_get_msi
+ffffffff815c90b0 t pci_epc_set_msi
+ffffffff815c91a0 t pci_epc_get_msix
+ffffffff815c9240 t pci_epc_set_msix
+ffffffff815c9330 t pci_epc_unmap_addr
+ffffffff815c93d0 t pci_epc_map_addr
+ffffffff815c94a0 t pci_epc_clear_bar
+ffffffff815c9550 t pci_epc_set_bar
+ffffffff815c9640 t pci_epc_write_header
+ffffffff815c9710 t pci_epc_add_epf
+ffffffff815c9880 t pci_epc_remove_epf
+ffffffff815c9960 t pci_epc_linkup
+ffffffff815c9990 t pci_epc_init_notify
+ffffffff815c99c0 t pci_epc_destroy
+ffffffff815c99e0 t devm_pci_epc_destroy
+ffffffff815c9a50 t devm_pci_epc_release
+ffffffff815c9a70 t devm_pci_epc_match
+ffffffff815c9a90 t __pci_epc_create
+ffffffff815c9bb0 t __devm_pci_epc_create
+ffffffff815c9c30 t pci_epf_type_add_cfs
+ffffffff815c9cc0 t pci_epf_unbind
+ffffffff815c9da0 t pci_epf_bind
+ffffffff815c9fb0 t pci_epf_add_vepf
+ffffffff815ca110 t pci_epf_remove_vepf
+ffffffff815ca1c0 t pci_epf_free_space
+ffffffff815ca250 t pci_epf_alloc_space
+ffffffff815ca380 t pci_epf_unregister_driver
+ffffffff815ca3a0 t __pci_epf_register_driver
+ffffffff815ca3f0 t pci_epf_destroy
+ffffffff815ca400 t pci_epf_create
+ffffffff815ca510 t pci_epf_dev_release
+ffffffff815ca540 t pci_epf_device_match
+ffffffff815ca5c0 t pci_epf_device_probe
+ffffffff815ca600 t pci_epf_device_remove
+ffffffff815ca640 t pci_epc_multi_mem_init
+ffffffff815ca820 t pci_epc_mem_init
+ffffffff815ca870 t pci_epc_mem_exit
+ffffffff815ca900 t pci_epc_mem_alloc_addr
+ffffffff815caa40 t pci_epc_mem_free_addr
+ffffffff815cab50 t dw_pcie_version_detect
+ffffffff815cac60 t dw_pcie_find_capability
+ffffffff815cace0 t __dw_pcie_find_next_cap
+ffffffff815cad80 t dw_pcie_find_ext_capability
+ffffffff815caeb0 t dw_pcie_read
+ffffffff815caf00 t dw_pcie_write
+ffffffff815caf40 t dw_pcie_read_dbi
+ffffffff815cafd0 t dw_pcie_write_dbi
+ffffffff815cb060 t dw_pcie_write_dbi2
+ffffffff815cb0f0 t dw_pcie_prog_outbound_atu
+ffffffff815cb120 t __dw_pcie_prog_outbound_atu.llvm.16284440032726877417
+ffffffff815cb540 t dw_pcie_prog_ep_outbound_atu
+ffffffff815cb560 t dw_pcie_prog_inbound_atu
+ffffffff815cb890 t dw_pcie_disable_atu
+ffffffff815cb8b0 t dw_pcie_writel_atu.llvm.16284440032726877417
+ffffffff815cb9a0 t dw_pcie_print_link_status
+ffffffff815cba80 t dw_pcie_wait_for_link
+ffffffff815cbb80 t dw_pcie_link_up
+ffffffff815cbc00 t dw_pcie_upconfig_setup
+ffffffff815cbcc0 t dw_pcie_iatu_detect
+ffffffff815cc0a0 t dw_pcie_setup
+ffffffff815cc820 t dw_pcie_readl_atu
+ffffffff815cc900 t dw_pcie_ep_linkup
+ffffffff815cc920 t dw_pcie_ep_init_notify
+ffffffff815cc940 t dw_pcie_ep_get_func_from_ep
+ffffffff815cc970 t dw_pcie_ep_reset_bar
+ffffffff815cc9d0 t __dw_pcie_ep_reset_bar
+ffffffff815ccad0 t dw_pcie_ep_raise_legacy_irq
+ffffffff815ccb00 t dw_pcie_ep_raise_msi_irq
+ffffffff815ccd80 t dw_pcie_ep_map_addr
+ffffffff815cce60 t dw_pcie_ep_unmap_addr
+ffffffff815ccec0 t dw_pcie_ep_raise_msix_irq_doorbell
+ffffffff815ccf20 t dw_pcie_ep_raise_msix_irq
+ffffffff815cd160 t dw_pcie_ep_exit
+ffffffff815cd1a0 t dw_pcie_ep_init_complete
+ffffffff815cd2e0 t dw_pcie_ep_init
+ffffffff815cd740 t dw_pcie_ep_write_header
+ffffffff815cd8b0 t dw_pcie_ep_set_bar
+ffffffff815cdac0 t dw_pcie_ep_clear_bar
+ffffffff815cdb40 t dw_pcie_ep_set_msi
+ffffffff815cdc60 t dw_pcie_ep_get_msi
+ffffffff815cdd00 t dw_pcie_ep_set_msix
+ffffffff815cde90 t dw_pcie_ep_get_msix
+ffffffff815cdf40 t dw_pcie_ep_raise_irq
+ffffffff815cdf80 t dw_pcie_ep_start
+ffffffff815cdfc0 t dw_pcie_ep_stop
+ffffffff815ce000 t dw_pcie_ep_get_features
+ffffffff815ce030 t __dw_pcie_ep_find_next_cap
+ffffffff815ce0c0 t dw_plat_pcie_probe
+ffffffff815ce190 t dw_plat_pcie_ep_init
+ffffffff815ce200 t dw_plat_pcie_ep_raise_irq
+ffffffff815ce280 t dw_plat_pcie_get_features
+ffffffff815ce2a0 t dummycon_startup.llvm.6523517409596869066
+ffffffff815ce2c0 t dummycon_init.llvm.6523517409596869066
+ffffffff815ce310 t dummycon_deinit.llvm.6523517409596869066
+ffffffff815ce320 t dummycon_clear.llvm.6523517409596869066
+ffffffff815ce330 t dummycon_putc.llvm.6523517409596869066
+ffffffff815ce340 t dummycon_putcs.llvm.6523517409596869066
+ffffffff815ce350 t dummycon_cursor.llvm.6523517409596869066
+ffffffff815ce360 t dummycon_scroll.llvm.6523517409596869066
+ffffffff815ce370 t dummycon_switch.llvm.6523517409596869066
+ffffffff815ce380 t dummycon_blank.llvm.6523517409596869066
+ffffffff815ce390 t vgacon_startup.llvm.17798912337692414418
+ffffffff815ce6f0 t vgacon_init.llvm.17798912337692414418
+ffffffff815ce7f0 t vgacon_deinit.llvm.17798912337692414418
+ffffffff815ce880 t vgacon_clear.llvm.17798912337692414418
+ffffffff815ce890 t vgacon_putc.llvm.17798912337692414418
+ffffffff815ce8a0 t vgacon_putcs.llvm.17798912337692414418
+ffffffff815ce8b0 t vgacon_cursor.llvm.17798912337692414418
+ffffffff815ceae0 t vgacon_scroll.llvm.17798912337692414418
+ffffffff815cec80 t vgacon_switch.llvm.17798912337692414418
+ffffffff815ced60 t vgacon_blank.llvm.17798912337692414418
+ffffffff815cf3b0 t vgacon_font_set.llvm.17798912337692414418
+ffffffff815cf600 t vgacon_font_get.llvm.17798912337692414418
+ffffffff815cf660 t vgacon_resize.llvm.17798912337692414418
+ffffffff815cf710 t vgacon_set_palette.llvm.17798912337692414418
+ffffffff815cf750 t vgacon_scrolldelta.llvm.17798912337692414418
+ffffffff815cf7d0 t vgacon_set_origin.llvm.17798912337692414418
+ffffffff815cf860 t vgacon_save_screen.llvm.17798912337692414418
+ffffffff815cf8e0 t vgacon_build_attr.llvm.17798912337692414418
+ffffffff815cf990 t vgacon_invert_region.llvm.17798912337692414418
+ffffffff815cfa20 t vga_set_mem_top
+ffffffff815cfa80 t vgacon_restore_screen
+ffffffff815cfb10 t vgacon_set_cursor_size
+ffffffff815cfc30 t vgacon_doresize
+ffffffff815cfe50 t vga_set_palette
+ffffffff815cfef0 t vgacon_do_font_op
+ffffffff815d01b0 t acpi_table_print_madt_entry
+ffffffff815d0360 t acpi_os_physical_table_override
+ffffffff815d04c0 t acpi_os_table_override
+ffffffff815d04f0 t acpi_osi_is_win8
+ffffffff815d0510 t acpi_osi_handler
+ffffffff815d0610 t acpi_os_printf
+ffffffff815d06e0 t acpi_os_vprintf
+ffffffff815d0750 t acpi_os_get_iomem
+ffffffff815d07e0 t acpi_os_map_generic_address
+ffffffff815d0820 t acpi_os_unmap_generic_address
+ffffffff815d0920 t acpi_os_predefined_override
+ffffffff815d09c0 t acpi_os_install_interrupt_handler
+ffffffff815d0ac0 t acpi_irq
+ffffffff815d0b00 t acpi_os_remove_interrupt_handler
+ffffffff815d0b50 t acpi_os_sleep
+ffffffff815d0b60 t acpi_os_stall
+ffffffff815d0ba0 t acpi_os_get_timer
+ffffffff815d0bd0 t acpi_os_read_port
+ffffffff815d0c30 t acpi_os_write_port
+ffffffff815d0c70 t acpi_os_read_iomem
+ffffffff815d0cc0 t acpi_os_read_memory
+ffffffff815d0dd0 t acpi_os_write_memory
+ffffffff815d0ed0 t acpi_os_read_pci_configuration
+ffffffff815d0f80 t acpi_os_write_pci_configuration
+ffffffff815d0fe0 t acpi_os_execute
+ffffffff815d10d0 t acpi_os_execute_deferred
+ffffffff815d1100 t acpi_os_wait_events_complete
+ffffffff815d1140 t acpi_hotplug_schedule
+ffffffff815d11e0 t acpi_hotplug_work_fn
+ffffffff815d1230 t acpi_queue_hotplug_work
+ffffffff815d1250 t acpi_os_create_semaphore
+ffffffff815d12f0 t acpi_os_delete_semaphore
+ffffffff815d1330 t acpi_os_wait_semaphore
+ffffffff815d13a0 t acpi_os_signal_semaphore
+ffffffff815d13e0 t acpi_os_get_line
+ffffffff815d13f0 t acpi_os_wait_command_ready
+ffffffff815d1400 t acpi_os_notify_command_complete
+ffffffff815d1410 t acpi_os_signal
+ffffffff815d1440 t acpi_check_resource_conflict
+ffffffff815d14c0 t acpi_check_region
+ffffffff815d1530 t acpi_resources_are_enforced
+ffffffff815d1550 t acpi_os_delete_lock
+ffffffff815d1560 t acpi_os_acquire_lock
+ffffffff815d1570 t acpi_os_release_lock
+ffffffff815d1580 t acpi_os_create_cache
+ffffffff815d15c0 t acpi_os_purge_cache
+ffffffff815d15e0 t acpi_os_delete_cache
+ffffffff815d1600 t acpi_os_release_object
+ffffffff815d1620 t acpi_os_terminate
+ffffffff815d16f0 t acpi_os_prepare_sleep
+ffffffff815d1730 t acpi_os_set_prepare_sleep
+ffffffff815d1750 t acpi_os_prepare_extended_sleep
+ffffffff815d1760 t acpi_os_set_prepare_extended_sleep
+ffffffff815d1770 t acpi_os_enter_sleep
+ffffffff815d17c0 t acpi_os_map_remove
+ffffffff815d1800 t acpi_extract_package
+ffffffff815d1aa0 t acpi_os_allocate_zeroed
+ffffffff815d1b00 t acpi_os_allocate_zeroed
+ffffffff815d1b60 t acpi_evaluate_integer
+ffffffff815d1bf0 t acpi_get_local_address
+ffffffff815d1c80 t acpi_get_subsystem_id
+ffffffff815d1d70 t acpi_handle_printk
+ffffffff815d1e60 t acpi_evaluate_reference
+ffffffff815d1f60 t acpi_get_physical_device_location
+ffffffff815d2020 t acpi_evaluate_ost
+ffffffff815d2110 t acpi_evaluation_failure_warn
+ffffffff815d2150 t acpi_has_method
+ffffffff815d21a0 t acpi_execute_simple_method
+ffffffff815d2210 t acpi_evaluate_ej0
+ffffffff815d22d0 t acpi_evaluate_lck
+ffffffff815d2390 t acpi_evaluate_reg
+ffffffff815d2430 t acpi_evaluate_dsm
+ffffffff815d25b0 t acpi_check_dsm
+ffffffff815d27f0 t acpi_dev_hid_uid_match
+ffffffff815d2850 t acpi_dev_uid_to_integer
+ffffffff815d2890 t acpi_dev_found
+ffffffff815d2900 t acpi_dev_present
+ffffffff815d29e0 t acpi_dev_match_cb
+ffffffff815d2ad0 t acpi_dev_get_next_match_dev
+ffffffff815d2be0 t acpi_dev_get_first_match_dev
+ffffffff815d2cc0 t acpi_reduced_hardware
+ffffffff815d2ce0 t acpi_match_platform_list
+ffffffff815d2e10 t acpi_reboot
+ffffffff815d2f30 t acpi_nvs_register
+ffffffff815d30e0 t acpi_nvs_for_each_region
+ffffffff815d3140 t suspend_nvs_free
+ffffffff815d31b0 t suspend_nvs_alloc
+ffffffff815d3260 t suspend_nvs_save
+ffffffff815d3360 t suspend_nvs_restore
+ffffffff815d33c0 t acpi_enable_wakeup_devices
+ffffffff815d3470 t acpi_disable_wakeup_devices
+ffffffff815d3520 t acpi_register_wakeup_handler
+ffffffff815d35d0 t acpi_unregister_wakeup_handler
+ffffffff815d3670 t acpi_check_wakeup_handlers
+ffffffff815d36d0 t acpi_sleep_state_supported
+ffffffff815d3750 t acpi_target_system_state
+ffffffff815d3770 t acpi_s2idle_begin
+ffffffff815d3790 t acpi_s2idle_prepare
+ffffffff815d37e0 t acpi_s2idle_wake
+ffffffff815d3890 t acpi_s2idle_restore
+ffffffff815d38e0 t acpi_s2idle_end
+ffffffff815d3900 t acpi_s2idle_wakeup
+ffffffff815d3920 t acpi_power_off_prepare
+ffffffff815d3960 t acpi_power_off
+ffffffff815d3980 t acpi_save_bm_rld
+ffffffff815d39a0 t acpi_restore_bm_rld
+ffffffff815d3a00 t acpi_suspend_state_valid
+ffffffff815d3a30 t acpi_suspend_begin_old
+ffffffff815d3aa0 t acpi_pm_pre_suspend
+ffffffff815d3ac0 t acpi_suspend_enter
+ffffffff815d3c80 t acpi_pm_finish
+ffffffff815d3d30 t acpi_pm_end
+ffffffff815d3d90 t acpi_suspend_begin
+ffffffff815d3e50 t acpi_pm_prepare
+ffffffff815d3ed0 t tts_notify_reboot
+ffffffff815d3f10 t __acpi_device_uevent_modalias
+ffffffff815d3fe0 t create_of_modalias
+ffffffff815d4160 t create_pnp_modalias
+ffffffff815d4270 t acpi_device_uevent_modalias
+ffffffff815d4340 t acpi_device_modalias
+ffffffff815d4400 t acpi_device_setup_files
+ffffffff815d46a0 t acpi_expose_nondev_subnodes
+ffffffff815d4770 t acpi_device_remove_files
+ffffffff815d4960 t acpi_hide_nondev_subnodes
+ffffffff815d49b0 t path_show
+ffffffff815d4a40 t hid_show
+ffffffff815d4a70 t description_show
+ffffffff815d4ac0 t description_show
+ffffffff815d4af0 t adr_show
+ffffffff815d4b30 t uid_show
+ffffffff815d4b60 t sun_show
+ffffffff815d4be0 t hrv_show
+ffffffff815d4c60 t status_show
+ffffffff815d4ce0 t status_show
+ffffffff815d4d20 t status_show
+ffffffff815d4d60 t eject_store
+ffffffff815d4e90 t real_power_state_show
+ffffffff815d4f00 t acpi_data_node_release
+ffffffff815d4f20 t acpi_data_node_attr_show
+ffffffff815d4f60 t data_node_show_path
+ffffffff815d5000 t acpi_power_state_string
+ffffffff815d5030 t acpi_device_get_power
+ffffffff815d5180 t acpi_device_set_power
+ffffffff815d5380 t acpi_dev_pm_explicit_set
+ffffffff815d53f0 t acpi_bus_set_power
+ffffffff815d5420 t acpi_bus_init_power
+ffffffff815d54e0 t acpi_device_fix_up_power
+ffffffff815d5560 t acpi_device_fix_up_power_extended
+ffffffff815d55f0 t fix_up_power_if_applicable
+ffffffff815d5670 t acpi_device_update_power
+ffffffff815d5760 t acpi_bus_update_power
+ffffffff815d5790 t acpi_bus_power_manageable
+ffffffff815d57c0 t acpi_dev_power_up_children_with_adr
+ffffffff815d57e0 t acpi_power_up_if_adr_present.llvm.15286682063216637616
+ffffffff815d5810 t acpi_dev_power_state_for_wake
+ffffffff815d5870 t acpi_pm_wakeup_event
+ffffffff815d5890 t acpi_add_pm_notifier
+ffffffff815d5960 t acpi_pm_notify_handler
+ffffffff815d59e0 t acpi_remove_pm_notifier
+ffffffff815d5a80 t acpi_bus_can_wakeup
+ffffffff815d5ab0 t acpi_pm_device_can_wakeup
+ffffffff815d5af0 t acpi_pm_device_sleep_state
+ffffffff815d5c10 t acpi_dev_pm_get_state
+ffffffff815d5e10 t acpi_pm_set_device_wakeup
+ffffffff815d5ec0 t __acpi_device_wakeup_enable
+ffffffff815d5fb0 t acpi_dev_suspend
+ffffffff815d60f0 t acpi_dev_resume
+ffffffff815d6180 t acpi_subsys_runtime_suspend
+ffffffff815d61b0 t acpi_subsys_runtime_resume
+ffffffff815d61e0 t acpi_subsys_prepare
+ffffffff815d6330 t acpi_subsys_complete
+ffffffff815d6370 t acpi_subsys_suspend
+ffffffff815d6480 t acpi_subsys_suspend_late
+ffffffff815d64d0 t acpi_subsys_suspend_noirq
+ffffffff815d6520 t acpi_subsys_freeze
+ffffffff815d6540 t acpi_subsys_restore_early
+ffffffff815d6570 t acpi_subsys_poweroff
+ffffffff815d6680 t acpi_dev_pm_attach
+ffffffff815d67a0 t acpi_pm_notify_work_func
+ffffffff815d67d0 t acpi_dev_pm_detach
+ffffffff815d6960 t acpi_storage_d3
+ffffffff815d6a00 t acpi_dev_state_d0
+ffffffff815d6a40 t acpi_subsys_resume
+ffffffff815d6aa0 t acpi_subsys_resume_early
+ffffffff815d6b10 t acpi_subsys_poweroff_late
+ffffffff815d6b60 t acpi_subsys_resume_noirq
+ffffffff815d6b90 t acpi_subsys_poweroff_noirq
+ffffffff815d6bc0 t acpi_system_wakeup_device_open_fs.llvm.10550883615723952607
+ffffffff815d6bf0 t acpi_system_write_wakeup_device.llvm.10550883615723952607
+ffffffff815d6da0 t acpi_system_wakeup_device_seq_show
+ffffffff815d6fb0 t acpi_bus_get_status_handle
+ffffffff815d6fe0 t acpi_bus_get_status
+ffffffff815d7080 t acpi_bus_private_data_handler
+ffffffff815d7090 t acpi_bus_attach_private_data
+ffffffff815d70c0 t acpi_bus_get_private_data
+ffffffff815d7100 t acpi_bus_detach_private_data
+ffffffff815d7120 t acpi_run_osc
+ffffffff815d7340 t acpi_get_first_physical_node
+ffffffff815d7390 t acpi_device_is_first_physical_node
+ffffffff815d7400 t acpi_companion_match
+ffffffff815d74a0 t acpi_set_modalias
+ffffffff815d7500 t acpi_match_device
+ffffffff815d75e0 t __acpi_match_device.llvm.824741078704202077
+ffffffff815d77c0 t acpi_device_get_match_data
+ffffffff815d79b0 t acpi_match_device_ids
+ffffffff815d79d0 t acpi_driver_match_device
+ffffffff815d7b50 t acpi_of_match_device
+ffffffff815d7c10 t acpi_bus_register_driver
+ffffffff815d7c60 t acpi_bus_unregister_driver
+ffffffff815d7c80 t acpi_bus_match
+ffffffff815d7cb0 t acpi_device_uevent
+ffffffff815d7cd0 t acpi_device_probe
+ffffffff815d7dc0 t acpi_device_remove
+ffffffff815d7e60 t acpi_bus_for_each_dev
+ffffffff815d7e80 t acpi_dev_for_each_child
+ffffffff815d7ee0 t acpi_dev_for_one_check
+ffffffff815d7f20 t acpi_dev_for_each_child_reverse
+ffffffff815d7f80 t acpi_device_fixed_event
+ffffffff815d7fb0 t acpi_notify_device
+ffffffff815d7fd0 t acpi_notify_device_fixed
+ffffffff815d8000 t set_copy_dsdt
+ffffffff815d8030 t acpi_bus_table_handler
+ffffffff815d8070 t acpi_bus_notify
+ffffffff815d8140 t acpi_sb_notify
+ffffffff815d81a0 t sb_notify_work
+ffffffff815d8200 t register_acpi_bus_type
+ffffffff815d82a0 t unregister_acpi_bus_type
+ffffffff815d8320 t acpi_find_child_device
+ffffffff815d8390 t acpi_find_child_by_adr
+ffffffff815d8400 t acpi_bind_one
+ffffffff815d8750 t acpi_unbind_one
+ffffffff815d88f0 t acpi_device_notify
+ffffffff815d8a10 t acpi_device_notify_remove
+ffffffff815d8a80 t check_one_child
+ffffffff815d8c40 t match_any
+ffffffff815d8c50 t acpi_scan_lock_acquire
+ffffffff815d8c70 t acpi_scan_lock_release
+ffffffff815d8c90 t acpi_lock_hp_context
+ffffffff815d8cb0 t acpi_unlock_hp_context
+ffffffff815d8cd0 t acpi_initialize_hp_context
+ffffffff815d8d20 t acpi_scan_add_handler
+ffffffff815d8d80 t acpi_scan_add_handler_with_hotplug
+ffffffff815d8e00 t acpi_scan_is_offline
+ffffffff815d8ef0 t acpi_device_hotplug
+ffffffff815d9490 t acpi_fetch_acpi_dev
+ffffffff815d94f0 t acpi_get_acpi_dev
+ffffffff815d9550 t get_acpi_device
+ffffffff815d9570 t acpi_tie_acpi_dev
+ffffffff815d95c0 t acpi_scan_drop_device
+ffffffff815d9660 t acpi_device_add
+ffffffff815d99e0 t acpi_device_hid
+ffffffff815d9a10 t acpi_bus_get_ejd
+ffffffff815d9ad0 t acpi_ata_match
+ffffffff815d9b40 t acpi_bay_match
+ffffffff815d9c50 t acpi_device_is_battery
+ffffffff815d9ca0 t acpi_dock_match
+ffffffff815d9cc0 t acpi_is_video_device
+ffffffff815d9dd0 t acpi_backlight_cap_match
+ffffffff815d9e20 t acpi_free_pnp_ids
+ffffffff815d9e80 t acpi_dma_supported
+ffffffff815d9ea0 t acpi_get_dma_attr
+ffffffff815d9ed0 t acpi_dma_get_range
+ffffffff815da070 t acpi_iommu_fwspec_init
+ffffffff815da0d0 t acpi_dma_configure_id
+ffffffff815da130 t acpi_init_device_object
+ffffffff815dacc0 t acpi_device_add_finalize
+ffffffff815dacf0 t acpi_device_is_present
+ffffffff815dad10 t acpi_scan_hotplug_enabled
+ffffffff815dad60 t acpi_dev_clear_dependencies
+ffffffff815daf10 t acpi_dev_ready_for_enumeration
+ffffffff815daf40 t acpi_dev_get_next_consumer_dev
+ffffffff815db050 t acpi_bus_scan
+ffffffff815db150 t acpi_bus_check_add
+ffffffff815db800 t acpi_bus_check_add_1
+ffffffff815db820 t acpi_bus_attach
+ffffffff815dbba0 t acpi_bus_check_add_2
+ffffffff815dbbc0 t acpi_bus_trim
+ffffffff815dbc40 t acpi_bus_trim_one
+ffffffff815dbcc0 t acpi_bus_register_early_device
+ffffffff815dbd30 t acpi_add_single_object
+ffffffff815dc3a0 t acpi_scan_table_notify
+ffffffff815dc410 t acpi_table_events_fn
+ffffffff815dc450 t acpi_reconfig_notifier_register
+ffffffff815dc470 t acpi_reconfig_notifier_unregister
+ffffffff815dc490 t acpi_scan_bus_check
+ffffffff815dc520 t acpi_scan_device_not_present
+ffffffff815dc5d0 t acpi_bus_offline
+ffffffff815dc720 t acpi_bus_online
+ffffffff815dc7d0 t acpi_device_del_work_fn
+ffffffff815dca20 t acpi_check_serial_bus_slave
+ffffffff815dca40 t acpi_scan_clear_dep_fn
+ffffffff815dcaa0 t acpi_get_resource_memory
+ffffffff815dcac0 t acpi_device_release
+ffffffff815dcba0 t acpi_generic_device_attach
+ffffffff815dcbf0 t acpi_dev_resource_memory
+ffffffff815dccb0 t acpi_dev_resource_io
+ffffffff815dcdb0 t acpi_dev_resource_address_space
+ffffffff815dce60 t acpi_decode_space
+ffffffff815dcfe0 t acpi_dev_resource_ext_address_space
+ffffffff815dd020 t acpi_dev_irq_flags
+ffffffff815dd070 t acpi_dev_get_irq_type
+ffffffff815dd0c0 t acpi_dev_resource_interrupt
+ffffffff815dd470 t acpi_dev_free_resource_list
+ffffffff815dd480 t acpi_dev_get_resources
+ffffffff815dd550 t acpi_dev_get_dma_resources
+ffffffff815dd620 t is_memory
+ffffffff815dd860 t acpi_dev_get_memory_resources
+ffffffff815dd930 t acpi_dev_filter_resource_type
+ffffffff815dd9b0 t acpi_resource_consumer
+ffffffff815dda10 t acpi_res_consumer_cb
+ffffffff815ddb80 t acpi_dev_process_resource
+ffffffff815de1a0 t acpi_duplicate_processor_id
+ffffffff815de240 t acpi_processor_claim_cst_control
+ffffffff815de290 t acpi_processor_evaluate_cst
+ffffffff815de700 t acpi_processor_add
+ffffffff815ded70 t acpi_processor_remove
+ffffffff815dee60 t acpi_processor_container_attach
+ffffffff815dee70 t map_madt_entry
+ffffffff815defa0 t acpi_get_phys_id
+ffffffff815df180 t acpi_map_cpuid
+ffffffff815df210 t acpi_get_cpuid
+ffffffff815df2a0 t acpi_get_ioapic_id
+ffffffff815df410 t acpi_processor_set_pdc
+ffffffff815df5c0 t acpi_ec_flush_work
+ffffffff815df5f0 t ec_read
+ffffffff815df680 t ec_write
+ffffffff815df700 t ec_transaction
+ffffffff815df780 t acpi_ec_transaction
+ffffffff815dfaa0 t ec_get_handle
+ffffffff815dfad0 t acpi_ec_block_transactions
+ffffffff815dfb10 t acpi_ec_stop
+ffffffff815dfd20 t acpi_ec_unblock_transactions
+ffffffff815dfd80 t acpi_ec_add_query_handler
+ffffffff815dfe40 t acpi_ec_remove_query_handler
+ffffffff815dfe60 t acpi_ec_remove_query_handlers
+ffffffff815dff90 t acpi_ec_alloc
+ffffffff815e0070 t ec_parse_device
+ffffffff815e0150 t acpi_ec_setup
+ffffffff815e0460 t acpi_ec_mark_gpe_for_wake
+ffffffff815e0490 t acpi_ec_set_gpe_wake_mask
+ffffffff815e04d0 t acpi_ec_dispatch_gpe
+ffffffff815e0630 t advance_transaction
+ffffffff815e0aa0 t acpi_ec_unmask_events
+ffffffff815e0b30 t ec_guard
+ffffffff815e0df0 t acpi_ec_event_handler
+ffffffff815e0f30 t acpi_ec_submit_query
+ffffffff815e10e0 t acpi_ec_close_event
+ffffffff815e1180 t acpi_ec_event_processor
+ffffffff815e1230 t ec_parse_io_ports
+ffffffff815e1270 t acpi_ec_space_handler
+ffffffff815e1490 t acpi_ec_register_query_methods
+ffffffff815e15c0 t acpi_ec_enable_event
+ffffffff815e1680 t acpi_ec_gpe_handler
+ffffffff815e16d0 t acpi_ec_irq_handler
+ffffffff815e1720 t ec_correct_ecdt
+ffffffff815e1740 t ec_honor_dsdt_gpe
+ffffffff815e1760 t ec_clear_on_resume
+ffffffff815e1780 t param_set_event_clearing
+ffffffff815e1810 t param_get_event_clearing
+ffffffff815e1890 t acpi_ec_add
+ffffffff815e1cc0 t acpi_ec_remove
+ffffffff815e1e30 t acpi_ec_suspend
+ffffffff815e1eb0 t acpi_ec_resume
+ffffffff815e1ed0 t acpi_ec_suspend_noirq
+ffffffff815e1f60 t acpi_ec_resume_noirq
+ffffffff815e1ff0 t acpi_is_root_bridge
+ffffffff815e2030 t acpi_pci_find_root
+ffffffff815e2080 t acpi_get_pci_dev
+ffffffff815e2110 t acpi_pci_probe_root_resources
+ffffffff815e2240 t acpi_dev_filter_resource_type_cb
+ffffffff815e2250 t acpi_pci_root_validate_resources
+ffffffff815e24c0 t acpi_pci_root_create
+ffffffff815e2880 t acpi_pci_root_release_info
+ffffffff815e2990 t acpi_pci_root_add
+ffffffff815e3600 t acpi_pci_root_remove
+ffffffff815e3680 t acpi_pci_root_scan_dependent
+ffffffff815e3690 t get_root_bridge_busnr_callback
+ffffffff815e3740 t decode_osc_control
+ffffffff815e3a70 t decode_osc_support
+ffffffff815e3db0 t decode_cxl_osc_control
+ffffffff815e3e90 t acpi_pci_link_allocate_irq
+ffffffff815e45f0 t acpi_pci_link_free_irq
+ffffffff815e46b0 t acpi_penalize_isa_irq
+ffffffff815e46e0 t acpi_isa_irq_available
+ffffffff815e4720 t acpi_penalize_sci_irq
+ffffffff815e4750 t acpi_pci_link_set
+ffffffff815e4980 t acpi_pci_link_get_current
+ffffffff815e4aa0 t acpi_pci_link_check_current
+ffffffff815e4ae0 t irqrouter_resume
+ffffffff815e4b30 t acpi_pci_link_add
+ffffffff815e4cc0 t acpi_pci_link_remove
+ffffffff815e4d30 t acpi_pci_link_check_possible
+ffffffff815e4df0 t acpi_pci_irq_enable
+ffffffff815e4fd0 t acpi_pci_irq_lookup
+ffffffff815e5170 t acpi_pci_irq_disable
+ffffffff815e5200 t acpi_pci_irq_find_prt_entry
+ffffffff815e55b0 t acpi_apd_create_device
+ffffffff815e5690 t acpi_create_platform_device
+ffffffff815e5990 t acpi_platform_device_remove_notify
+ffffffff815e59f0 t acpi_is_pnp_device
+ffffffff815e5a30 t acpi_pnp_match
+ffffffff815e5c10 t acpi_pnp_attach
+ffffffff815e5c20 t acpi_power_resources_list_free
+ffffffff815e5ca0 t acpi_extract_power_resources
+ffffffff815e5ef0 t acpi_add_power_resource
+ffffffff815e6170 t acpi_device_power_add_dependent
+ffffffff815e6330 t acpi_device_power_remove_dependent
+ffffffff815e6410 t acpi_power_add_remove_device
+ffffffff815e64c0 t acpi_power_expose_hide
+ffffffff815e65f0 t acpi_power_wakeup_list_init
+ffffffff815e6710 t acpi_power_get_state
+ffffffff815e67a0 t acpi_device_sleep_wake
+ffffffff815e68e0 t acpi_enable_wakeup_device_power
+ffffffff815e69c0 t acpi_power_on_list
+ffffffff815e6aa0 t acpi_power_off_list
+ffffffff815e6b70 t acpi_disable_wakeup_device_power
+ffffffff815e6d00 t acpi_power_get_inferred_state
+ffffffff815e7010 t acpi_power_on_resources
+ffffffff815e7040 t acpi_power_transition
+ffffffff815e7100 t acpi_release_power_resource
+ffffffff815e7190 t __acpi_power_on
+ffffffff815e7220 t acpi_power_sysfs_remove
+ffffffff815e7250 t acpi_power_add_resource_to_list
+ffffffff815e7330 t acpi_resume_power_resources
+ffffffff815e7490 t acpi_turn_off_unused_power_resources
+ffffffff815e7530 t acpi_power_on
+ffffffff815e7600 t resource_in_use_show
+ffffffff815e7630 t acpi_notifier_call_chain
+ffffffff815e7700 t register_acpi_notifier
+ffffffff815e7720 t unregister_acpi_notifier
+ffffffff815e7740 t acpi_bus_generate_netlink_event
+ffffffff815e78d0 t ged_probe
+ffffffff815e7980 t ged_remove
+ffffffff815e7a10 t ged_shutdown
+ffffffff815e7aa0 t acpi_ged_request_interrupt
+ffffffff815e7d30 t acpi_ged_irq_handler
+ffffffff815e7d80 t acpi_sysfs_table_handler
+ffffffff815e7e40 t acpi_table_attr_init
+ffffffff815e7f80 t acpi_irq_stats_init
+ffffffff815e82c0 t acpi_global_event_handler
+ffffffff815e8320 t counter_show
+ffffffff815e8560 t counter_set
+ffffffff815e88f0 t acpi_sysfs_add_hotplug_profile
+ffffffff815e8950 t param_get_acpica_version
+ffffffff815e8970 t acpi_table_show
+ffffffff815e8a10 t acpi_data_show
+ffffffff815e8aa0 t force_remove_show
+ffffffff815e8ac0 t force_remove_store
+ffffffff815e8b30 t pm_profile_show
+ffffffff815e8b60 t acpi_data_add_props
+ffffffff815e8bf0 t acpi_init_properties
+ffffffff815e8f30 t acpi_extract_properties
+ffffffff815e95d0 t acpi_enumerate_nondev_subnodes
+ffffffff815e97e0 t acpi_tie_nondev_subnodes
+ffffffff815e9870 t acpi_untie_nondev_subnodes
+ffffffff815e98c0 t acpi_free_properties
+ffffffff815e99e0 t acpi_destroy_nondev_subnodes
+ffffffff815e9b70 t acpi_dev_get_property
+ffffffff815e9c70 t acpi_node_prop_get
+ffffffff815e9d80 t __acpi_node_get_property_reference
+ffffffff815ea1a0 t acpi_get_next_subnode
+ffffffff815ea350 t is_acpi_device_node
+ffffffff815ea380 t stop_on_next
+ffffffff815ea3b0 t is_acpi_data_node
+ffffffff815ea3e0 t acpi_fwnode_device_is_available.llvm.12292147551705482374
+ffffffff815ea420 t acpi_fwnode_device_get_match_data.llvm.12292147551705482374
+ffffffff815ea440 t acpi_fwnode_device_dma_supported.llvm.12292147551705482374
+ffffffff815ea480 t acpi_fwnode_device_get_dma_attr.llvm.12292147551705482374
+ffffffff815ea4c0 t acpi_fwnode_property_present.llvm.12292147551705482374
+ffffffff815ea5b0 t acpi_fwnode_property_read_int_array.llvm.12292147551705482374
+ffffffff815ea5f0 t acpi_fwnode_property_read_string_array.llvm.12292147551705482374
+ffffffff815ea610 t acpi_fwnode_get_name.llvm.12292147551705482374
+ffffffff815ea680 t acpi_fwnode_get_name_prefix.llvm.12292147551705482374
+ffffffff815ea6c0 t acpi_node_get_parent.llvm.12292147551705482374
+ffffffff815ea730 t acpi_fwnode_get_named_child_node.llvm.12292147551705482374
+ffffffff815ea7f0 t acpi_fwnode_get_reference_args.llvm.12292147551705482374
+ffffffff815ea810 t acpi_graph_get_next_endpoint.llvm.12292147551705482374
+ffffffff815eaa10 t acpi_graph_get_remote_endpoint.llvm.12292147551705482374
+ffffffff815eac20 t acpi_fwnode_get_parent.llvm.12292147551705482374
+ffffffff815eac90 t acpi_fwnode_graph_parse_endpoint.llvm.12292147551705482374
+ffffffff815ead30 t acpi_fwnode_irq_get.llvm.12292147551705482374
+ffffffff815ead40 t acpi_nondev_subnode_extract
+ffffffff815eaee0 t acpi_nondev_subnode_tag
+ffffffff815eaef0 t acpi_node_prop_read
+ffffffff815eb520 t acpi_install_cmos_rtc_space_handler
+ffffffff815eb570 t acpi_remove_cmos_rtc_space_handler
+ffffffff815eb5b0 t acpi_cmos_rtc_space_handler
+ffffffff815eb660 t acpi_extract_apple_properties
+ffffffff815eb9d0 t acpi_device_override_status
+ffffffff815ebb30 t force_storage_d3
+ffffffff815ebb50 t acpi_quirk_skip_acpi_ac_and_battery
+ffffffff815ebc00 t acpi_s2idle_prepare_late
+ffffffff815ebe20 t acpi_s2idle_check
+ffffffff815ebe80 t acpi_s2idle_restore_early
+ffffffff815ec0b0 t acpi_register_lps0_dev
+ffffffff815ec130 t acpi_unregister_lps0_dev
+ffffffff815ec1a0 t lps0_device_attach
+ffffffff815ec8d0 t acpi_lpat_raw_to_temp
+ffffffff815ec960 t acpi_lpat_temp_to_raw
+ffffffff815ec9e0 t acpi_lpat_get_conversion_table
+ffffffff815ecb30 t acpi_lpat_free_conversion_table
+ffffffff815ecb60 t lpit_read_residency_count_address
+ffffffff815ecb90 t acpi_init_lpit
+ffffffff815ecd90 t low_power_idle_system_residency_us_show
+ffffffff815ece30 t low_power_idle_cpu_residency_us_show
+ffffffff815ecef0 t acpi_platformrt_space_handler
+ffffffff815ed220 t efi_pa_va_lookup
+ffffffff815ed2a0 t acpi_pcc_address_space_handler
+ffffffff815ed350 t acpi_pcc_address_space_setup
+ffffffff815ed470 t pcc_rx_callback
+ffffffff815ed490 t acpi_ds_get_buffer_field_arguments
+ffffffff815ed4d0 t acpi_ds_execute_arguments
+ffffffff815ed630 t acpi_ds_get_bank_field_arguments
+ffffffff815ed680 t acpi_ds_get_buffer_arguments
+ffffffff815ed6e0 t acpi_ds_get_package_arguments
+ffffffff815ed740 t acpi_ds_get_region_arguments
+ffffffff815ed7a0 t acpi_ds_exec_begin_control_op
+ffffffff815ed880 t acpi_ds_exec_end_control_op
+ffffffff815edb20 t acpi_ds_dump_method_stack
+ffffffff815edb30 t acpi_ds_create_buffer_field
+ffffffff815edcf0 t acpi_ds_create_field
+ffffffff815ede70 t acpi_ds_get_field_names
+ffffffff815ee100 t acpi_ds_init_field_objects
+ffffffff815ee280 t acpi_ds_create_bank_field
+ffffffff815ee400 t acpi_ds_create_index_field
+ffffffff815ee570 t acpi_ds_initialize_objects
+ffffffff815ee670 t acpi_ds_init_one_object
+ffffffff815ee750 t acpi_ds_auto_serialize_method
+ffffffff815ee820 t acpi_ds_detect_named_opcodes
+ffffffff815ee860 t acpi_ds_method_error
+ffffffff815ee900 t acpi_ds_begin_method_execution
+ffffffff815eeb40 t acpi_ds_call_control_method
+ffffffff815eee50 t acpi_ds_terminate_control_method
+ffffffff815eefa0 t acpi_ds_restart_control_method
+ffffffff815ef020 t acpi_ds_method_data_init
+ffffffff815ef130 t acpi_ds_method_data_delete_all
+ffffffff815ef290 t acpi_ds_method_data_init_args
+ffffffff815ef310 t acpi_ds_method_data_get_node
+ffffffff815ef3d0 t acpi_ds_method_data_get_value
+ffffffff815ef540 t acpi_ds_store_object_to_local
+ffffffff815ef820 t acpi_ds_build_internal_object
+ffffffff815ef9a0 t acpi_ds_init_object_from_op
+ffffffff815efc60 t acpi_ds_build_internal_buffer_obj
+ffffffff815efdb0 t acpi_ds_create_node
+ffffffff815efe60 t acpi_ds_initialize_region
+ffffffff815efe80 t acpi_ds_eval_buffer_field_operands
+ffffffff815eff80 t acpi_ds_init_buffer_field
+ffffffff815f01e0 t acpi_ds_eval_region_operands
+ffffffff815f0300 t acpi_ds_eval_table_region_operands
+ffffffff815f04a0 t acpi_ds_eval_data_object_operands
+ffffffff815f0610 t acpi_ds_eval_bank_field_operands
+ffffffff815f06c0 t acpi_ds_build_internal_package_obj
+ffffffff815f0a00 t acpi_ds_init_package_element
+ffffffff815f0c40 t acpi_ds_clear_implicit_return
+ffffffff815f0c80 t acpi_ds_do_implicit_return
+ffffffff815f0cf0 t acpi_ds_is_result_used
+ffffffff815f0e50 t acpi_ds_delete_result_if_not_used
+ffffffff815f0ee0 t acpi_ds_resolve_operands
+ffffffff815f1030 t acpi_ds_clear_operands
+ffffffff815f1170 t acpi_ds_create_operand
+ffffffff815f13f0 t acpi_ds_create_operands
+ffffffff815f1590 t acpi_ds_evaluate_name_path
+ffffffff815f16b0 t acpi_ds_get_predicate_value
+ffffffff815f1870 t acpi_ds_exec_begin_op
+ffffffff815f19b0 t acpi_ds_exec_end_op
+ffffffff815f1e40 t acpi_ds_init_callbacks
+ffffffff815f1ef0 t acpi_ds_load1_begin_op
+ffffffff815f21a0 t acpi_ds_load1_end_op
+ffffffff815f2370 t acpi_ds_load2_begin_op
+ffffffff815f2740 t acpi_ds_load2_end_op
+ffffffff815f2c20 t acpi_ds_scope_stack_clear
+ffffffff815f2c70 t acpi_ds_scope_stack_push
+ffffffff815f2d10 t acpi_ds_scope_stack_pop
+ffffffff815f2d50 t acpi_ds_result_pop
+ffffffff815f2e60 t acpi_ds_result_push
+ffffffff815f2fa0 t acpi_ds_obj_stack_push
+ffffffff815f3010 t acpi_ds_obj_stack_pop
+ffffffff815f30a0 t acpi_ds_obj_stack_pop_and_delete
+ffffffff815f3110 t acpi_ds_get_current_walk_state
+ffffffff815f3130 t acpi_ds_push_walk_state
+ffffffff815f3150 t acpi_ds_pop_walk_state
+ffffffff815f3170 t acpi_ds_create_walk_state
+ffffffff815f3240 t acpi_ds_init_aml_walk
+ffffffff815f3360 t acpi_ds_delete_walk_state
+ffffffff815f3440 t acpi_ev_initialize_events
+ffffffff815f35b0 t acpi_ev_install_xrupt_handlers
+ffffffff815f3640 t acpi_ev_fixed_event_detect
+ffffffff815f37a0 t acpi_any_fixed_event_status_set
+ffffffff815f38b0 t acpi_ev_update_gpe_enable_mask
+ffffffff815f3900 t acpi_ev_enable_gpe
+ffffffff815f3920 t acpi_ev_mask_gpe
+ffffffff815f39c0 t acpi_ev_add_gpe_reference
+ffffffff815f3a60 t acpi_ev_remove_gpe_reference
+ffffffff815f3af0 t acpi_ev_low_get_gpe_info
+ffffffff815f3b30 t acpi_ev_get_gpe_event_info
+ffffffff815f3bf0 t acpi_ev_gpe_detect
+ffffffff815f3f40 t acpi_ev_detect_gpe
+ffffffff815f4140 t acpi_ev_finish_gpe
+ffffffff815f4180 t acpi_ev_gpe_dispatch
+ffffffff815f42f0 t acpi_ev_asynch_execute_gpe_method
+ffffffff815f4460 t acpi_ev_asynch_enable_gpe
+ffffffff815f44c0 t acpi_ev_delete_gpe_block
+ffffffff815f4590 t acpi_ev_create_gpe_block
+ffffffff815f4a90 t acpi_ev_initialize_gpe_block
+ffffffff815f4bf0 t acpi_ev_gpe_initialize
+ffffffff815f4d60 t acpi_ev_update_gpes
+ffffffff815f4e80 t acpi_ev_match_gpe_method
+ffffffff815f4fb0 t acpi_ev_walk_gpe_list
+ffffffff815f5070 t acpi_ev_get_gpe_device
+ffffffff815f50b0 t acpi_ev_get_gpe_xrupt_block
+ffffffff815f5200 t acpi_ev_delete_gpe_xrupt
+ffffffff815f5290 t acpi_ev_delete_gpe_handlers
+ffffffff815f5380 t acpi_ev_init_global_lock_handler
+ffffffff815f5460 t acpi_ev_global_lock_handler.llvm.97829582021844981
+ffffffff815f54d0 t acpi_ev_remove_global_lock_handler
+ffffffff815f5510 t acpi_ev_acquire_global_lock
+ffffffff815f5600 t acpi_ev_release_global_lock
+ffffffff815f5690 t acpi_ev_install_region_handlers
+ffffffff815f5780 t acpi_ev_install_space_handler
+ffffffff815f5a70 t acpi_ev_has_default_handler
+ffffffff815f5ac0 t acpi_ev_find_region_handler
+ffffffff815f5af0 t acpi_ev_install_handler
+ffffffff815f5bb0 t acpi_ev_is_notify_object
+ffffffff815f5be0 t acpi_ev_queue_notify_request
+ffffffff815f5cd0 t acpi_ev_notify_dispatch
+ffffffff815f5d50 t acpi_ev_terminate
+ffffffff815f5f40 t acpi_ev_initialize_op_regions
+ffffffff815f6030 t acpi_ev_execute_reg_methods
+ffffffff815f61e0 t acpi_ev_address_space_dispatch
+ffffffff815f6510 t acpi_ev_detach_region
+ffffffff815f6680 t acpi_ev_execute_reg_method
+ffffffff815f6880 t acpi_ev_attach_region
+ffffffff815f68c0 t acpi_ev_reg_run
+ffffffff815f6920 t acpi_ev_system_memory_region_setup
+ffffffff815f6a00 t acpi_ev_io_space_region_setup
+ffffffff815f6a20 t acpi_ev_pci_config_region_setup
+ffffffff815f6c50 t acpi_ev_is_pci_root_bridge
+ffffffff815f6d30 t acpi_ev_pci_bar_region_setup
+ffffffff815f6d40 t acpi_ev_cmos_region_setup
+ffffffff815f6d50 t acpi_ev_data_table_region_setup
+ffffffff815f6df0 t acpi_ev_default_region_setup
+ffffffff815f6e10 t acpi_ev_initialize_region
+ffffffff815f6ee0 t acpi_ev_sci_dispatch
+ffffffff815f6f50 t acpi_ev_gpe_xrupt_handler
+ffffffff815f6f60 t acpi_ev_install_sci_handler
+ffffffff815f6f90 t acpi_ev_sci_xrupt_handler.llvm.12061315322590349059
+ffffffff815f7030 t acpi_ev_remove_all_sci_handlers
+ffffffff815f70b0 t acpi_install_notify_handler
+ffffffff815f72e0 t acpi_remove_notify_handler
+ffffffff815f7530 t acpi_install_sci_handler
+ffffffff815f7650 t acpi_remove_sci_handler
+ffffffff815f7710 t acpi_install_global_event_handler
+ffffffff815f7780 t acpi_install_fixed_event_handler
+ffffffff815f7860 t acpi_remove_fixed_event_handler
+ffffffff815f78f0 t acpi_install_gpe_handler
+ffffffff815f7910 t acpi_ev_install_gpe_handler.llvm.7351881508835100396
+ffffffff815f7b00 t acpi_install_gpe_raw_handler
+ffffffff815f7b20 t acpi_remove_gpe_handler
+ffffffff815f7c90 t acpi_acquire_global_lock
+ffffffff815f7cf0 t acpi_release_global_lock
+ffffffff815f7d20 t acpi_enable
+ffffffff815f7e00 t acpi_disable
+ffffffff815f7e60 t acpi_enable_event
+ffffffff815f7f30 t acpi_disable_event
+ffffffff815f7ff0 t acpi_clear_event
+ffffffff815f8030 t acpi_get_event_status
+ffffffff815f80f0 t acpi_update_all_gpes
+ffffffff815f8190 t acpi_enable_gpe
+ffffffff815f8260 t acpi_disable_gpe
+ffffffff815f82c0 t acpi_set_gpe
+ffffffff815f8340 t acpi_mask_gpe
+ffffffff815f83b0 t acpi_mark_gpe_for_wake
+ffffffff815f8410 t acpi_setup_gpe_for_wake
+ffffffff815f85b0 t acpi_set_gpe_wake_mask
+ffffffff815f8670 t acpi_clear_gpe
+ffffffff815f86d0 t acpi_get_gpe_status
+ffffffff815f8740 t acpi_dispatch_gpe
+ffffffff815f8760 t acpi_finish_gpe
+ffffffff815f87c0 t acpi_disable_all_gpes
+ffffffff815f8800 t acpi_enable_all_runtime_gpes
+ffffffff815f8840 t acpi_enable_all_wakeup_gpes
+ffffffff815f8880 t acpi_any_gpe_status_set
+ffffffff815f8930 t acpi_get_gpe_device
+ffffffff815f89c0 t acpi_install_gpe_block
+ffffffff815f8b10 t acpi_remove_gpe_block
+ffffffff815f8ba0 t acpi_install_address_space_handler
+ffffffff815f8c50 t acpi_remove_address_space_handler
+ffffffff815f8d80 t acpi_ex_do_concatenate
+ffffffff815f9120 t acpi_ex_concat_template
+ffffffff815f9210 t acpi_ex_load_table_op
+ffffffff815f9410 t acpi_ex_add_table
+ffffffff815f9460 t acpi_ex_unload_table
+ffffffff815f94f0 t acpi_ex_load_op
+ffffffff815f97b0 t acpi_os_allocate
+ffffffff815f9810 t acpi_ex_region_read
+ffffffff815f98b0 t acpi_ex_convert_to_integer
+ffffffff815f9a10 t acpi_ex_convert_to_buffer
+ffffffff815f9ab0 t acpi_ex_convert_to_string
+ffffffff815f9f70 t acpi_ex_convert_to_target_type
+ffffffff815fa230 t acpi_ex_create_alias
+ffffffff815fa280 t acpi_ex_create_event
+ffffffff815fa300 t acpi_ex_create_mutex
+ffffffff815fa3a0 t acpi_ex_create_region
+ffffffff815fa4d0 t acpi_ex_create_processor
+ffffffff815fa560 t acpi_ex_create_power_resource
+ffffffff815fa5e0 t acpi_ex_create_method
+ffffffff815fa6a0 t acpi_ex_do_debug_object
+ffffffff815faa90 t acpi_ex_get_protocol_buffer_length
+ffffffff815faae0 t acpi_ex_read_data_from_field
+ffffffff815fac70 t acpi_ex_write_data_to_field
+ffffffff815fadc0 t acpi_ex_access_region
+ffffffff815fb010 t acpi_ex_write_with_update_rule
+ffffffff815fb100 t acpi_ex_field_datum_io
+ffffffff815fb2e0 t acpi_ex_extract_from_field
+ffffffff815fb560 t acpi_ex_insert_into_field
+ffffffff815fb8a0 t acpi_ex_get_object_reference
+ffffffff815fb970 t acpi_ex_do_math_op
+ffffffff815fba20 t acpi_ex_do_logical_numeric_op
+ffffffff815fba80 t acpi_ex_do_logical_op
+ffffffff815fbc90 t acpi_ex_unlink_mutex
+ffffffff815fbce0 t acpi_ex_acquire_mutex_object
+ffffffff815fbd60 t acpi_ex_acquire_mutex
+ffffffff815fbec0 t acpi_ex_release_mutex_object
+ffffffff815fbf60 t acpi_ex_release_mutex
+ffffffff815fc150 t acpi_ex_release_all_mutexes
+ffffffff815fc1e0 t acpi_ex_get_name_string
+ffffffff815fc6f0 t acpi_ex_name_segment
+ffffffff815fc830 t acpi_ex_opcode_0A_0T_1R
+ffffffff815fc8d0 t acpi_ex_opcode_1A_0T_0R
+ffffffff815fc9c0 t acpi_ex_opcode_1A_1T_1R
+ffffffff815fcf90 t acpi_ex_opcode_1A_0T_1R
+ffffffff815fd510 t acpi_ex_opcode_2A_0T_0R
+ffffffff815fd5a0 t acpi_ex_opcode_2A_2T_1R
+ffffffff815fd6d0 t acpi_ex_opcode_2A_1T_1R
+ffffffff815fdad0 t acpi_ex_opcode_2A_0T_1R
+ffffffff815fdc40 t acpi_ex_opcode_3A_0T_0R
+ffffffff815fdd50 t acpi_ex_opcode_3A_1T_1R
+ffffffff815fdf30 t acpi_ex_opcode_6A_0T_1R
+ffffffff815fe110 t acpi_ex_do_match
+ffffffff815fe1e0 t acpi_ex_prep_common_field_object
+ffffffff815fe260 t acpi_ex_prep_field_value
+ffffffff815fe560 t acpi_ex_system_memory_space_handler
+ffffffff815fe850 t acpi_ex_system_io_space_handler
+ffffffff815fe8d0 t acpi_ex_pci_config_space_handler
+ffffffff815fe920 t acpi_ex_cmos_space_handler
+ffffffff815fe930 t acpi_ex_pci_bar_space_handler
+ffffffff815fe940 t acpi_ex_data_table_space_handler
+ffffffff815fe980 t acpi_ex_resolve_node_to_value
+ffffffff815fec20 t acpi_ex_resolve_to_value
+ffffffff815feeb0 t acpi_ex_resolve_multiple
+ffffffff815ff170 t acpi_ex_resolve_operands
+ffffffff815ff790 t acpi_ex_read_gpio
+ffffffff815ff7d0 t acpi_ex_write_gpio
+ffffffff815ff830 t acpi_ex_read_serial_bus
+ffffffff815ff9a0 t acpi_ex_write_serial_bus
+ffffffff815ffb60 t acpi_ex_store
+ffffffff815ffc90 t acpi_ex_store_object_to_node
+ffffffff815ffeb0 t acpi_ex_store_object_to_index
+ffffffff81600070 t acpi_ex_resolve_object
+ffffffff81600150 t acpi_ex_store_object_to_object
+ffffffff816002b0 t acpi_ex_store_buffer_to_buffer
+ffffffff81600390 t acpi_ex_store_string_to_string
+ffffffff81600480 t acpi_ex_system_wait_semaphore
+ffffffff816004d0 t acpi_ex_system_wait_mutex
+ffffffff81600520 t acpi_ex_system_do_stall
+ffffffff81600580 t acpi_ex_system_do_sleep
+ffffffff816005c0 t acpi_ex_system_signal_event
+ffffffff816005f0 t acpi_ex_system_wait_event
+ffffffff81600650 t acpi_ex_system_reset_event
+ffffffff816006c0 t acpi_ex_trace_point
+ffffffff816006d0 t acpi_ex_start_trace_method
+ffffffff816007a0 t acpi_ex_stop_trace_method
+ffffffff81600820 t acpi_ex_start_trace_opcode
+ffffffff81600830 t acpi_ex_stop_trace_opcode
+ffffffff81600840 t acpi_ex_enter_interpreter
+ffffffff816008a0 t acpi_ex_exit_interpreter
+ffffffff81600900 t acpi_ex_truncate_for32bit_table
+ffffffff81600950 t acpi_ex_acquire_global_lock
+ffffffff816009a0 t acpi_ex_release_global_lock
+ffffffff816009e0 t acpi_ex_eisa_id_to_string
+ffffffff81600a90 t acpi_ex_integer_to_string
+ffffffff81600b60 t acpi_ex_pci_cls_to_string
+ffffffff81600be0 t acpi_is_valid_space_id
+ffffffff81600c00 t acpi_hw_set_mode
+ffffffff81600cd0 t acpi_hw_get_mode
+ffffffff81600d50 t acpi_hw_execute_sleep_method
+ffffffff81600df0 t acpi_hw_extended_sleep
+ffffffff81600ef0 t acpi_hw_extended_wake_prep
+ffffffff81600f30 t acpi_hw_extended_wake
+ffffffff816010d0 t acpi_hw_gpe_read
+ffffffff81601140 t acpi_hw_gpe_write
+ffffffff81601180 t acpi_hw_get_gpe_register_bit
+ffffffff816011a0 t acpi_hw_low_set_gpe
+ffffffff816012b0 t acpi_hw_clear_gpe
+ffffffff81601310 t acpi_hw_get_gpe_status
+ffffffff81601430 t acpi_hw_disable_gpe_block
+ffffffff816014a0 t acpi_hw_clear_gpe_block
+ffffffff81601510 t acpi_hw_enable_runtime_gpe_block
+ffffffff81601590 t acpi_hw_disable_all_gpes
+ffffffff816015b0 t acpi_hw_enable_all_runtime_gpes
+ffffffff816015d0 t acpi_hw_enable_all_wakeup_gpes
+ffffffff816015f0 t acpi_hw_enable_wakeup_gpe_block.llvm.15136825158969334884
+ffffffff81601660 t acpi_hw_check_all_gpes
+ffffffff81601720 t acpi_hw_get_gpe_block_status
+ffffffff81601840 t acpi_hw_validate_register
+ffffffff81601910 t acpi_hw_get_access_bit_width
+ffffffff816019f0 t acpi_hw_read
+ffffffff81601b80 t acpi_hw_write
+ffffffff81601cb0 t acpi_hw_clear_acpi_status
+ffffffff81601d50 t acpi_hw_register_write
+ffffffff81601f40 t acpi_hw_get_bit_register_info
+ffffffff81601f80 t acpi_hw_write_pm1_control
+ffffffff81601fc0 t acpi_hw_register_read
+ffffffff816021d0 t acpi_hw_legacy_sleep
+ffffffff81602390 t acpi_hw_legacy_wake_prep
+ffffffff81602450 t acpi_hw_legacy_wake
+ffffffff81602520 t acpi_hw_read_port
+ffffffff81602860 t acpi_hw_write_port
+ffffffff81602b40 t acpi_hw_validate_io_block
+ffffffff81602c40 t acpi_reset
+ffffffff81602ca0 t acpi_read
+ffffffff81602cb0 t acpi_write
+ffffffff81602cc0 t acpi_read_bit_register
+ffffffff81602d40 t acpi_write_bit_register
+ffffffff81602e30 t acpi_get_sleep_type_data
+ffffffff81603020 t acpi_set_firmware_waking_vector
+ffffffff81603050 t acpi_enter_sleep_state_s4bios
+ffffffff81603120 t acpi_enter_sleep_state_prep
+ffffffff81603210 t acpi_enter_sleep_state
+ffffffff81603280 t acpi_leave_sleep_state_prep
+ffffffff816032b0 t acpi_leave_sleep_state
+ffffffff816032e0 t acpi_hw_derive_pci_id
+ffffffff81603580 t acpi_ns_root_initialize
+ffffffff81603880 t acpi_ns_lookup
+ffffffff81603cc0 t acpi_ns_create_node
+ffffffff81603d30 t acpi_ns_delete_node
+ffffffff81603dc0 t acpi_ns_remove_node
+ffffffff81603e80 t acpi_ns_install_node
+ffffffff81603ef0 t acpi_ns_delete_children
+ffffffff81603fd0 t acpi_ns_delete_namespace_subtree
+ffffffff81604070 t acpi_ns_delete_namespace_by_owner
+ffffffff81604220 t acpi_ns_check_argument_types
+ffffffff81604310 t acpi_ns_check_acpi_compliance
+ffffffff81604400 t acpi_ns_check_argument_count
+ffffffff816044f0 t acpi_ns_convert_to_integer
+ffffffff81604630 t acpi_ns_convert_to_string
+ffffffff81604720 t acpi_ns_convert_to_buffer
+ffffffff816048b0 t acpi_ns_convert_to_unicode
+ffffffff81604940 t acpi_ns_convert_to_resource
+ffffffff816049a0 t acpi_ns_convert_to_reference
+ffffffff81604b20 t acpi_ns_evaluate
+ffffffff81604dc0 t acpi_ns_initialize_objects
+ffffffff81604e80 t acpi_ns_init_one_object
+ffffffff81605010 t acpi_ns_initialize_devices
+ffffffff81605270 t acpi_ns_find_ini_methods
+ffffffff816052e0 t acpi_ns_init_one_device
+ffffffff81605430 t acpi_ns_init_one_package
+ffffffff81605480 t acpi_ns_load_table
+ffffffff81605510 t acpi_ns_get_external_pathname
+ffffffff816055d0 t acpi_ns_get_normalized_pathname
+ffffffff816056a0 t acpi_ns_get_pathname_length
+ffffffff816056f0 t acpi_ns_build_normalized_path
+ffffffff81605830 t acpi_ns_handle_to_name
+ffffffff81605890 t acpi_ns_handle_to_pathname
+ffffffff81605910 t acpi_ns_build_prefixed_pathname
+ffffffff81605b00 t acpi_ns_normalize_pathname
+ffffffff81605c60 t acpi_ns_attach_object
+ffffffff81605d60 t acpi_ns_detach_object
+ffffffff81605e00 t acpi_ns_get_attached_object
+ffffffff81605e50 t acpi_ns_get_secondary_object
+ffffffff81605e90 t acpi_ns_attach_data
+ffffffff81605f30 t acpi_ns_detach_data
+ffffffff81605f90 t acpi_ns_get_attached_data
+ffffffff81605fd0 t acpi_ns_execute_table
+ffffffff81606170 t acpi_ns_one_complete_parse
+ffffffff816062e0 t acpi_ns_parse_table
+ffffffff816062f0 t acpi_ns_check_return_value
+ffffffff816063c0 t acpi_ns_check_object_type
+ffffffff81606640 t acpi_ns_check_package
+ffffffff81606e30 t acpi_ns_check_package_list
+ffffffff816072e0 t acpi_ns_simple_repair
+ffffffff81607610 t acpi_ns_repair_null_element
+ffffffff81607690 t acpi_ns_wrap_with_package
+ffffffff816076e0 t acpi_ns_remove_null_elements
+ffffffff81607790 t acpi_ns_complex_repairs
+ffffffff81607860 t acpi_ns_repair_ALR
+ffffffff81607970 t acpi_ns_repair_CID
+ffffffff81607a10 t acpi_ns_repair_CST
+ffffffff81607c80 t acpi_ns_repair_FDE
+ffffffff81607d50 t acpi_ns_repair_HID
+ffffffff81607e30 t acpi_ns_repair_PRT
+ffffffff81607ed0 t acpi_ns_repair_PSS
+ffffffff81608070 t acpi_ns_repair_TSS
+ffffffff816081e0 t acpi_ns_search_one_scope
+ffffffff81608230 t acpi_ns_search_and_enter
+ffffffff81608440 t acpi_ns_print_node_pathname
+ffffffff816084e0 t acpi_ns_get_type
+ffffffff81608520 t acpi_ns_local
+ffffffff81608560 t acpi_ns_get_internal_name_length
+ffffffff81608610 t acpi_ns_build_internal_name
+ffffffff816087a0 t acpi_ns_internalize_name
+ffffffff81608930 t acpi_ns_externalize_name
+ffffffff81608bb0 t acpi_ns_validate_handle
+ffffffff81608be0 t acpi_ns_terminate
+ffffffff81608c30 t acpi_ns_opens_scope
+ffffffff81608c70 t acpi_ns_get_node_unlocked
+ffffffff81608da0 t acpi_ns_get_node
+ffffffff81608f00 t acpi_ns_get_next_node
+ffffffff81608f20 t acpi_ns_get_next_node_typed
+ffffffff81608f60 t acpi_ns_walk_namespace
+ffffffff816091b0 t acpi_evaluate_object_typed
+ffffffff81609320 t acpi_evaluate_object
+ffffffff81609600 t acpi_walk_namespace
+ffffffff816096e0 t acpi_get_devices
+ffffffff81609790 t acpi_ns_get_device_callback
+ffffffff81609960 t acpi_attach_data
+ffffffff816099e0 t acpi_detach_data
+ffffffff81609a50 t acpi_get_data_full
+ffffffff81609af0 t acpi_get_data
+ffffffff81609b70 t acpi_get_handle
+ffffffff81609c40 t acpi_get_name
+ffffffff81609cd0 t acpi_get_object_info
+ffffffff8160a0c0 t acpi_install_method
+ffffffff8160a360 t acpi_get_type
+ffffffff8160a3d0 t acpi_get_parent
+ffffffff8160a450 t acpi_get_next_object
+ffffffff8160a500 t acpi_ps_get_next_package_end
+ffffffff8160a590 t acpi_ps_get_next_namestring
+ffffffff8160a600 t acpi_ps_get_next_namepath
+ffffffff8160a880 t acpi_ps_get_next_simple_arg
+ffffffff8160a9f0 t acpi_ps_get_next_arg
+ffffffff8160b0f0 t acpi_ps_parse_loop
+ffffffff8160b750 t acpi_ps_build_named_op
+ffffffff8160b8e0 t acpi_ps_create_op
+ffffffff8160bb30 t acpi_ps_complete_op
+ffffffff8160bdf0 t acpi_ps_complete_final_op
+ffffffff8160bf90 t acpi_ps_get_opcode_info
+ffffffff8160c000 t acpi_ps_get_opcode_name
+ffffffff8160c020 t acpi_ps_get_argument_count
+ffffffff8160c050 t acpi_ps_get_opcode_size
+ffffffff8160c070 t acpi_ps_peek_opcode
+ffffffff8160c0a0 t acpi_ps_complete_this_op
+ffffffff8160c250 t acpi_ps_next_parse_state
+ffffffff8160c380 t acpi_ps_parse_aml
+ffffffff8160c6f0 t acpi_ps_get_parent_scope
+ffffffff8160c710 t acpi_ps_has_completed_scope
+ffffffff8160c740 t acpi_ps_init_scope
+ffffffff8160c7a0 t acpi_ps_push_scope
+ffffffff8160c810 t acpi_ps_pop_scope
+ffffffff8160c890 t acpi_ps_cleanup_scope
+ffffffff8160c8d0 t acpi_ps_get_arg
+ffffffff8160c930 t acpi_ps_append_arg
+ffffffff8160c9c0 t acpi_ps_get_depth_next
+ffffffff8160ca90 t acpi_ps_create_scope_op
+ffffffff8160cb60 t acpi_ps_alloc_op
+ffffffff8160cc30 t acpi_ps_init_op
+ffffffff8160cc50 t acpi_ps_free_op
+ffffffff8160cc80 t acpi_ps_is_leading_char
+ffffffff8160cca0 t acpi_ps_get_name
+ffffffff8160ccc0 t acpi_ps_set_name
+ffffffff8160cce0 t acpi_ps_delete_parse_tree
+ffffffff8160cd50 t acpi_debug_trace
+ffffffff8160cdc0 t acpi_ps_execute_method
+ffffffff8160cfd0 t acpi_ps_execute_table
+ffffffff8160d0d0 t acpi_rs_get_address_common
+ffffffff8160d150 t acpi_rs_set_address_common
+ffffffff8160d1c0 t acpi_rs_get_aml_length
+ffffffff8160d470 t acpi_rs_get_list_length
+ffffffff8160d810 t acpi_rs_get_pci_routing_table_length
+ffffffff8160d8f0 t acpi_buffer_to_resource
+ffffffff8160d9f0 t acpi_rs_create_resource_list
+ffffffff8160da90 t acpi_rs_create_pci_routing_table
+ffffffff8160dd30 t acpi_rs_create_aml_resources
+ffffffff8160ddb0 t acpi_rs_convert_aml_to_resources
+ffffffff8160deb0 t acpi_rs_convert_resources_to_aml
+ffffffff8160e010 t acpi_rs_convert_aml_to_resource
+ffffffff8160e620 t acpi_rs_convert_resource_to_aml
+ffffffff8160ead0 t acpi_rs_decode_bitmask
+ffffffff8160eb10 t acpi_rs_encode_bitmask
+ffffffff8160eba0 t acpi_rs_move_data
+ffffffff8160ec20 t acpi_rs_set_resource_length
+ffffffff8160ec60 t acpi_rs_set_resource_header
+ffffffff8160eca0 t acpi_rs_get_resource_source
+ffffffff8160ed80 t acpi_rs_set_resource_source
+ffffffff8160edc0 t acpi_rs_get_prt_method_data
+ffffffff8160ee40 t acpi_rs_get_crs_method_data
+ffffffff8160eec0 t acpi_rs_get_prs_method_data
+ffffffff8160ef40 t acpi_rs_get_aei_method_data
+ffffffff8160efc0 t acpi_rs_get_method_data
+ffffffff8160f040 t acpi_rs_set_srs_method_data
+ffffffff8160f1a0 t acpi_get_irq_routing_table
+ffffffff8160f200 t acpi_get_current_resources
+ffffffff8160f260 t acpi_get_possible_resources
+ffffffff8160f2c0 t acpi_set_current_resources
+ffffffff8160f330 t acpi_get_event_resources
+ffffffff8160f390 t acpi_resource_to_address64
+ffffffff8160f4d0 t acpi_get_vendor_resource
+ffffffff8160f540 t acpi_walk_resources
+ffffffff8160f670 t acpi_rs_match_vendor_resource
+ffffffff8160f700 t acpi_walk_resource_buffer
+ffffffff8160f7b0 t acpi_tb_init_table_descriptor
+ffffffff8160f7f0 t acpi_tb_acquire_table
+ffffffff8160f870 t acpi_tb_release_table
+ffffffff8160f890 t acpi_tb_acquire_temp_table
+ffffffff8160f990 t acpi_tb_release_temp_table
+ffffffff8160f9e0 t acpi_tb_invalidate_table
+ffffffff8160fa30 t acpi_tb_validate_table
+ffffffff8160fa80 t acpi_tb_validate_temp_table
+ffffffff8160faf0 t acpi_tb_verify_temp_table
+ffffffff8160fdb0 t acpi_tb_resize_root_table_list
+ffffffff8160ffd0 t acpi_tb_get_next_table_descriptor
+ffffffff81610030 t acpi_tb_terminate
+ffffffff816100c0 t acpi_tb_delete_namespace_by_owner
+ffffffff81610150 t acpi_tb_allocate_owner_id
+ffffffff816101b0 t acpi_tb_release_owner_id
+ffffffff81610210 t acpi_tb_get_owner_id
+ffffffff81610270 t acpi_tb_is_table_loaded
+ffffffff816102c0 t acpi_tb_set_table_loaded_flag
+ffffffff81610320 t acpi_tb_load_table
+ffffffff81610400 t acpi_tb_notify_table
+ffffffff81610430 t acpi_tb_install_and_load_table
+ffffffff816104a0 t acpi_tb_unload_table
+ffffffff816105d0 t acpi_tb_parse_fadt
+ffffffff816106e0 t acpi_tb_create_local_fadt
+ffffffff81610bd0 t acpi_tb_find_table
+ffffffff81610d80 t acpi_tb_install_table_with_override
+ffffffff81610e30 t acpi_tb_override_table
+ffffffff81610fc0 t acpi_tb_install_standard_table
+ffffffff81611170 t acpi_tb_uninstall_table
+ffffffff816111b0 t acpi_tb_print_table_header
+ffffffff81611580 t acpi_tb_verify_checksum
+ffffffff81611640 t acpi_tb_checksum
+ffffffff816116c0 t acpi_tb_initialize_facs
+ffffffff81611750 t acpi_tb_check_dsdt_header
+ffffffff816117e0 t acpi_tb_copy_dsdt
+ffffffff816118e0 t acpi_tb_get_table
+ffffffff81611950 t acpi_tb_put_table
+ffffffff816119b0 t acpi_allocate_root_table
+ffffffff816119d0 t acpi_get_table_header
+ffffffff81611ae0 t acpi_get_table
+ffffffff81611b80 t acpi_put_table
+ffffffff81611be0 t acpi_get_table_by_index
+ffffffff81611c50 t acpi_install_table_handler
+ffffffff81611cc0 t acpi_remove_table_handler
+ffffffff81611d10 t acpi_tb_load_namespace
+ffffffff81611f70 t acpi_load_table
+ffffffff81612000 t acpi_unload_parent_table
+ffffffff816120c0 t acpi_unload_table
+ffffffff816120e0 t acpi_tb_get_rsdp_length
+ffffffff81612120 t acpi_tb_validate_rsdp
+ffffffff81612190 t acpi_tb_scan_memory_for_rsdp
+ffffffff81612210 t acpi_ut_add_address_range
+ffffffff816122e0 t acpi_ut_remove_address_range
+ffffffff81612360 t acpi_ut_check_address_range
+ffffffff81612480 t acpi_ut_delete_address_lists
+ffffffff81612500 t acpi_ut_create_caches
+ffffffff816125c0 t acpi_ut_delete_caches
+ffffffff81612640 t acpi_ut_validate_buffer
+ffffffff81612680 t acpi_ut_initialize_buffer
+ffffffff81612770 t acpi_ut_valid_nameseg
+ffffffff816127f0 t acpi_ut_valid_name_char
+ffffffff81612830 t acpi_ut_check_and_repair_ascii
+ffffffff81612870 t acpi_ut_dump_buffer
+ffffffff81612ac0 t acpi_ut_debug_dump_buffer
+ffffffff81612af0 t acpi_ut_copy_iobject_to_eobject
+ffffffff81612ba0 t acpi_ut_copy_isimple_to_esimple
+ffffffff81612cf0 t acpi_ut_copy_eobject_to_iobject
+ffffffff81612f70 t acpi_ut_copy_iobject_to_iobject
+ffffffff816130a0 t acpi_ut_copy_simple_object
+ffffffff81613250 t acpi_ut_copy_ielement_to_eelement
+ffffffff81613300 t acpi_ut_copy_ielement_to_ielement
+ffffffff816133d0 t acpi_format_exception
+ffffffff816134e0 t acpi_ut_validate_exception
+ffffffff816135d0 t acpi_ut_get_region_name
+ffffffff81613630 t acpi_ut_get_event_name
+ffffffff81613660 t acpi_ut_get_type_name
+ffffffff81613690 t acpi_ut_get_object_type_name
+ffffffff816136e0 t acpi_ut_get_node_name
+ffffffff81613730 t acpi_ut_get_descriptor_name
+ffffffff81613770 t acpi_ut_get_reference_name
+ffffffff816137d0 t acpi_ut_get_mutex_name
+ffffffff81613800 t acpi_ut_valid_object_type
+ffffffff81613820 t acpi_ut_delete_internal_object_list
+ffffffff81613890 t acpi_ut_remove_reference
+ffffffff816138d0 t acpi_ut_update_object_reference
+ffffffff81613b30 t acpi_ut_update_ref_count
+ffffffff81613f00 t acpi_ut_add_reference
+ffffffff81613f30 t acpi_ut_predefined_warning
+ffffffff81614000 t acpi_ut_predefined_info
+ffffffff816140d0 t acpi_ut_predefined_bios_error
+ffffffff816141a0 t acpi_ut_prefixed_namespace_error
+ffffffff81614270 t acpi_ut_method_error
+ffffffff81614340 t acpi_ut_evaluate_object
+ffffffff81614500 t acpi_ut_evaluate_numeric_object
+ffffffff81614580 t acpi_ut_execute_STA
+ffffffff81614600 t acpi_ut_execute_power_methods
+ffffffff816146d0 t acpi_ut_hex_to_ascii_char
+ffffffff81614730 t acpi_ut_ascii_to_hex_byte
+ffffffff81614790 t acpi_ut_ascii_char_to_hex
+ffffffff816147c0 t acpi_ut_execute_HID
+ffffffff816148c0 t acpi_ut_execute_UID
+ffffffff816149c0 t acpi_ut_execute_CID
+ffffffff81614ba0 t acpi_ut_execute_CLS
+ffffffff81614cd0 t acpi_ut_init_globals
+ffffffff81614f90 t acpi_ut_subsystem_shutdown
+ffffffff81615060 t acpi_ut_create_rw_lock
+ffffffff816150a0 t acpi_ut_delete_rw_lock
+ffffffff816150e0 t acpi_ut_acquire_read_lock
+ffffffff81615150 t acpi_ut_release_read_lock
+ffffffff816151b0 t acpi_ut_acquire_write_lock
+ffffffff816151d0 t acpi_ut_release_write_lock
+ffffffff816151f0 t acpi_ut_short_multiply
+ffffffff81615210 t acpi_ut_short_shift_left
+ffffffff81615230 t acpi_ut_short_shift_right
+ffffffff81615250 t acpi_ut_short_divide
+ffffffff816152d0 t acpi_ut_divide
+ffffffff81615360 t acpi_ut_is_pci_root_bridge
+ffffffff816153a0 t acpi_ut_dword_byte_swap
+ffffffff816153b0 t acpi_ut_set_integer_width
+ffffffff816153f0 t acpi_ut_create_update_state_and_push
+ffffffff81615430 t acpi_ut_walk_package_tree
+ffffffff816155a0 t acpi_ut_mutex_initialize
+ffffffff816158a0 t acpi_ut_mutex_terminate
+ffffffff816159c0 t acpi_ut_acquire_mutex
+ffffffff81615a60 t acpi_ut_release_mutex
+ffffffff81615ae0 t acpi_ut_strlwr
+ffffffff81615b30 t acpi_ut_strupr
+ffffffff81615b80 t acpi_ut_stricmp
+ffffffff81615be0 t acpi_ut_create_internal_object_dbg
+ffffffff81615d00 t acpi_ut_allocate_object_desc_dbg
+ffffffff81615da0 t acpi_ut_delete_object_desc
+ffffffff81615df0 t acpi_ut_create_package_object
+ffffffff81615ee0 t acpi_ut_create_integer_object
+ffffffff81615f80 t acpi_ut_create_buffer_object
+ffffffff81616080 t acpi_ut_create_string_object
+ffffffff81616180 t acpi_ut_valid_internal_object
+ffffffff816161a0 t acpi_ut_get_object_size
+ffffffff81616240 t acpi_ut_get_simple_object_size
+ffffffff81616390 t acpi_ut_get_element_length
+ffffffff81616410 t acpi_ut_initialize_interfaces
+ffffffff81616590 t acpi_ut_interface_terminate
+ffffffff81616630 t acpi_ut_install_interface
+ffffffff81616730 t acpi_ut_remove_interface
+ffffffff816167e0 t acpi_ut_update_interfaces
+ffffffff81616840 t acpi_ut_get_interface
+ffffffff81616890 t acpi_ut_osi_implementation
+ffffffff816169d0 t acpi_ut_allocate_owner_id
+ffffffff81616af0 t acpi_ut_release_owner_id
+ffffffff81616b90 t acpi_ut_get_next_predefined_method
+ffffffff81616bd0 t acpi_ut_match_predefined_method
+ffffffff81616c30 t acpi_ut_get_expected_return_types
+ffffffff81616d00 t acpi_ut_walk_aml_resources
+ffffffff81616e70 t acpi_ut_validate_resource
+ffffffff81616fa0 t acpi_ut_get_descriptor_length
+ffffffff81616fd0 t acpi_ut_get_resource_type
+ffffffff81616ff0 t acpi_ut_get_resource_length
+ffffffff81617020 t acpi_ut_get_resource_header_length
+ffffffff81617040 t acpi_ut_get_resource_end_tag
+ffffffff816171e0 t acpi_ut_push_generic_state
+ffffffff81617200 t acpi_ut_pop_generic_state
+ffffffff81617220 t acpi_ut_create_generic_state
+ffffffff81617290 t acpi_ut_create_thread_state
+ffffffff81617340 t acpi_ut_create_update_state
+ffffffff816173c0 t acpi_ut_create_pkg_state
+ffffffff81617450 t acpi_ut_create_control_state
+ffffffff816174c0 t acpi_ut_delete_generic_state
+ffffffff816174e0 t acpi_ut_print_string
+ffffffff81617680 t acpi_ut_repair_name
+ffffffff81617740 t acpi_ut_convert_octal_string
+ffffffff81617870 t acpi_ut_convert_decimal_string
+ffffffff816179a0 t acpi_ut_convert_hex_string
+ffffffff81617ad0 t acpi_ut_remove_leading_zeros
+ffffffff81617b10 t acpi_ut_remove_whitespace
+ffffffff81617b50 t acpi_ut_detect_hex_prefix
+ffffffff81617b90 t acpi_ut_remove_hex_prefix
+ffffffff81617bd0 t acpi_ut_detect_octal_prefix
+ffffffff81617c00 t acpi_ut_strtoul64
+ffffffff81617d00 t acpi_ut_implicit_strtoul64
+ffffffff81617d80 t acpi_ut_explicit_strtoul64
+ffffffff81617e10 t acpi_purge_cached_objects
+ffffffff81617e50 t acpi_install_interface
+ffffffff81617ee0 t acpi_remove_interface
+ffffffff81617f40 t acpi_install_interface_handler
+ffffffff81617fb0 t acpi_update_interfaces
+ffffffff81618000 t acpi_check_address_range
+ffffffff81618060 t acpi_decode_pld_buffer
+ffffffff81618200 t acpi_error
+ffffffff816182d0 t acpi_exception
+ffffffff816183b0 t acpi_warning
+ffffffff81618480 t acpi_info
+ffffffff81618540 t acpi_bios_error
+ffffffff81618610 t acpi_bios_exception
+ffffffff816186f0 t acpi_bios_warning
+ffffffff816187c0 t acpi_acquire_mutex
+ffffffff81618860 t acpi_release_mutex
+ffffffff816188f0 t acpi_ac_add
+ffffffff81618b20 t acpi_ac_remove
+ffffffff81618b70 t acpi_ac_notify
+ffffffff81618c70 t get_ac_property
+ffffffff81618d20 t acpi_ac_battery_notify
+ffffffff81618dd0 t acpi_ac_resume
+ffffffff81618ea0 t acpi_lid_open
+ffffffff81618f20 t param_set_lid_init_state
+ffffffff81618f80 t param_get_lid_init_state
+ffffffff81619050 t acpi_button_add
+ffffffff816194a0 t acpi_button_remove
+ffffffff81619540 t acpi_button_notify
+ffffffff816196d0 t acpi_lid_input_open
+ffffffff816197c0 t acpi_lid_notify_state
+ffffffff816198f0 t acpi_button_state_seq_show
+ffffffff81619990 t acpi_button_suspend
+ffffffff816199b0 t acpi_button_resume
+ffffffff81619ab0 t acpi_fan_get_fst
+ffffffff81619bb0 t acpi_fan_probe
+ffffffff8161a140 t acpi_fan_remove
+ffffffff8161a1c0 t acpi_fan_speed_cmp
+ffffffff8161a1e0 t fan_get_max_state
+ffffffff8161a230 t fan_get_cur_state
+ffffffff8161a340 t fan_set_cur_state
+ffffffff8161a400 t acpi_fan_resume
+ffffffff8161a470 t acpi_fan_suspend
+ffffffff8161a4b0 t acpi_fan_create_attributes
+ffffffff8161a660 t show_fine_grain_control
+ffffffff8161a690 t show_fan_speed
+ffffffff8161a710 t show_state
+ffffffff8161a860 t acpi_fan_delete_attributes
+ffffffff8161a8f0 t acpi_processor_notifier
+ffffffff8161a930 t acpi_processor_start
+ffffffff8161a980 t acpi_processor_stop
+ffffffff8161a9f0 t __acpi_processor_start
+ffffffff8161aad0 t acpi_processor_notify
+ffffffff8161abb0 t acpi_soft_cpu_online
+ffffffff8161ac60 t acpi_soft_cpu_dead
+ffffffff8161acb0 t acpi_thermal_cpufreq_init
+ffffffff8161ad50 t acpi_thermal_cpufreq_exit
+ffffffff8161add0 t processor_get_max_state
+ffffffff8161ae50 t processor_get_cur_state
+ffffffff8161af60 t processor_set_cur_state
+ffffffff8161b090 t acpi_processor_thermal_init
+ffffffff8161b170 t acpi_processor_thermal_exit
+ffffffff8161b1d0 t cpufreq_set_cur_state
+ffffffff8161b430 t cpufreq_set_cur_state
+ffffffff8161b4a0 t acpi_processor_ffh_lpi_probe
+ffffffff8161b4b0 t acpi_processor_ffh_lpi_enter
+ffffffff8161b4c0 t acpi_processor_hotplug
+ffffffff8161b560 t acpi_processor_get_power_info
+ffffffff8161c000 t acpi_processor_setup_cpuidle_dev
+ffffffff8161c140 t acpi_processor_power_state_has_changed
+ffffffff8161c2c0 t acpi_processor_setup_cpuidle_states
+ffffffff8161c5c0 t acpi_processor_power_init
+ffffffff8161c760 t acpi_processor_power_exit
+ffffffff8161c7d0 t acpi_processor_evaluate_lpi
+ffffffff8161cb50 t acpi_cst_latency_cmp
+ffffffff8161cb80 t acpi_cst_latency_swap
+ffffffff8161cbb0 t __lapic_timer_propagate_broadcast
+ffffffff8161cbe0 t acpi_idle_lpi_enter
+ffffffff8161cc30 t acpi_idle_play_dead
+ffffffff8161ccd0 t set_max_cstate
+ffffffff8161cd20 t acpi_processor_throttling_init
+ffffffff8161d040 t acpi_processor_tstate_has_changed
+ffffffff8161d160 t acpi_processor_set_throttling
+ffffffff8161d180 t acpi_processor_reevaluate_tstate
+ffffffff8161d260 t __acpi_processor_set_throttling.llvm.14416767318259376516
+ffffffff8161d590 t acpi_processor_get_throttling_info
+ffffffff8161dc40 t acpi_processor_get_throttling_fadt
+ffffffff8161dcf0 t acpi_processor_set_throttling_fadt
+ffffffff8161ddb0 t acpi_processor_get_throttling_ptc
+ffffffff8161df40 t acpi_processor_set_throttling_ptc
+ffffffff8161e080 t __acpi_processor_get_throttling
+ffffffff8161e0a0 t acpi_processor_throttling_fn
+ffffffff8161e0d0 t acpi_processor_ppc_has_changed
+ffffffff8161e190 t acpi_processor_get_platform_limit
+ffffffff8161e2a0 t acpi_processor_get_bios_limit
+ffffffff8161e300 t acpi_processor_ignore_ppc_init
+ffffffff8161e330 t acpi_processor_ppc_init
+ffffffff8161e3d0 t acpi_processor_ppc_exit
+ffffffff8161e450 t acpi_processor_get_performance_info
+ffffffff8161e9e0 t acpi_processor_pstate_control
+ffffffff8161ea50 t acpi_processor_notify_smm
+ffffffff8161eb00 t acpi_processor_get_psd
+ffffffff8161ec30 t acpi_processor_preregister_performance
+ffffffff8161f080 t acpi_processor_register_performance
+ffffffff8161f140 t acpi_processor_unregister_performance
+ffffffff8161f1b0 t container_device_attach
+ffffffff8161f290 t container_device_detach
+ffffffff8161f2c0 t container_device_online
+ffffffff8161f2e0 t acpi_container_offline
+ffffffff8161f320 t acpi_container_release
+ffffffff8161f330 t check_offline
+ffffffff8161f350 t acpi_thermal_add
+ffffffff8161f8f0 t acpi_thermal_remove
+ffffffff8161f990 t acpi_thermal_notify
+ffffffff8161fab0 t acpi_thermal_check_fn
+ffffffff8161fb30 t acpi_thermal_trips_update
+ffffffff81620470 t acpi_thermal_bind_cooling_device
+ffffffff81620490 t acpi_thermal_unbind_cooling_device
+ffffffff816204b0 t thermal_get_temp
+ffffffff81620560 t thermal_get_trip_type
+ffffffff81620680 t thermal_get_trip_temp
+ffffffff816207a0 t thermal_get_crit_temp
+ffffffff816207d0 t thermal_get_trend
+ffffffff816208c0 t acpi_thermal_zone_device_hot
+ffffffff81620900 t acpi_thermal_zone_device_critical
+ffffffff81620970 t acpi_thermal_cooling_device_cb
+ffffffff81620b50 t acpi_thermal_suspend
+ffffffff81620b70 t acpi_thermal_resume
+ffffffff81620cb0 t thermal_act
+ffffffff81620cf0 t thermal_psv
+ffffffff81620d30 t thermal_tzp
+ffffffff81620d70 t thermal_nocrt
+ffffffff81620da0 t acpi_ioapic_add
+ffffffff81620e20 t handle_ioapic_add
+ffffffff81621210 t pci_ioapic_remove
+ffffffff816212a0 t acpi_ioapic_remove
+ffffffff816213d0 t setup_res
+ffffffff816214f0 t battery_hook_unregister
+ffffffff816215a0 t battery_hook_register
+ffffffff816216e0 t acpi_battery_add
+ffffffff816218c0 t acpi_battery_remove
+ffffffff81621940 t acpi_battery_notify
+ffffffff81621a30 t battery_notify
+ffffffff81621ad0 t sysfs_remove_battery
+ffffffff81621bd0 t acpi_battery_update
+ffffffff81621e70 t acpi_battery_get_info
+ffffffff81622300 t acpi_battery_init_alarm
+ffffffff816223a0 t acpi_battery_get_state
+ffffffff81622630 t sysfs_add_battery
+ffffffff816228e0 t find_battery
+ffffffff81622950 t acpi_battery_get_property
+ffffffff81622d50 t acpi_battery_alarm_show
+ffffffff81622d90 t acpi_battery_alarm_store
+ffffffff81622e70 t acpi_battery_resume
+ffffffff81622ef0 t acpi_cpc_valid
+ffffffff81622f60 t cppc_allow_fast_switch
+ffffffff81622fd0 t acpi_get_psd_map
+ffffffff81623140 t acpi_cppc_processor_probe
+ffffffff81623710 t pcc_data_alloc
+ffffffff81623760 t acpi_get_psd
+ffffffff81623880 t register_pcc_channel
+ffffffff81623940 t acpi_cppc_processor_exit
+ffffffff81623a40 t cppc_get_desired_perf
+ffffffff81623a60 t cppc_get_perf
+ffffffff81623b50 t cppc_get_nominal_perf
+ffffffff81623b70 t cppc_get_perf_caps
+ffffffff81623ed0 t send_pcc_cmd
+ffffffff81624170 t cpc_read
+ffffffff816242c0 t cppc_perf_ctrs_in_pcc
+ffffffff816243d0 t cppc_get_perf_ctrs
+ffffffff81624670 t cppc_set_enable
+ffffffff81624740 t cpc_write
+ffffffff81624840 t cppc_set_perf
+ffffffff81624a40 t check_pcc_chan
+ffffffff81624b30 t cppc_get_transition_latency
+ffffffff81624be0 t cppc_chan_tx_done
+ffffffff81624bf0 t show_feedback_ctrs
+ffffffff81624c80 t show_reference_perf
+ffffffff81624d10 t show_wraparound_time
+ffffffff81624da0 t show_highest_perf
+ffffffff81624e30 t show_lowest_perf
+ffffffff81624ec0 t show_lowest_nonlinear_perf
+ffffffff81624f50 t show_nominal_perf
+ffffffff81624fe0 t show_nominal_freq
+ffffffff81625070 t show_lowest_freq
+ffffffff81625100 t int340x_thermal_handler_attach
+ffffffff81625110 t pnp_register_protocol
+ffffffff81625250 t pnp_unregister_protocol
+ffffffff816252c0 t pnp_free_resource
+ffffffff81625310 t pnp_free_resources
+ffffffff816253a0 t pnp_alloc_dev
+ffffffff816254a0 t pnp_release_device
+ffffffff81625560 t __pnp_add_device
+ffffffff81625710 t pnp_add_device
+ffffffff81625850 t __pnp_remove_device
+ffffffff81625900 t pnp_alloc_card
+ffffffff81625a80 t pnp_add_card
+ffffffff81625c30 t pnp_release_card
+ffffffff81625c80 t card_probe
+ffffffff81625f30 t pnp_remove_card
+ffffffff81626080 t pnp_remove_card_device
+ffffffff81626100 t pnp_add_card_device
+ffffffff816261c0 t pnp_request_card_device
+ffffffff816262c0 t pnp_release_card_device
+ffffffff81626300 t card_remove
+ffffffff81626320 t card_remove_first
+ffffffff81626390 t pnp_register_card_driver
+ffffffff81626490 t card_suspend
+ffffffff816264c0 t card_resume
+ffffffff816264f0 t pnp_unregister_card_driver
+ffffffff81626560 t card_id_show
+ffffffff816265c0 t compare_pnp_id
+ffffffff81626750 t pnp_device_attach
+ffffffff816267a0 t pnp_device_detach
+ffffffff816267e0 t pnp_bus_match
+ffffffff81626830 t pnp_device_probe
+ffffffff81626970 t pnp_device_remove
+ffffffff81626a00 t pnp_device_shutdown
+ffffffff81626a30 t pnp_register_driver
+ffffffff81626a60 t pnp_unregister_driver
+ffffffff81626a80 t pnp_add_id
+ffffffff81626b70 t pnp_bus_suspend
+ffffffff81626b90 t pnp_bus_resume
+ffffffff81626c30 t pnp_bus_freeze
+ffffffff81626c50 t pnp_bus_poweroff
+ffffffff81626c70 t __pnp_bus_suspend
+ffffffff81626d80 t pnp_register_irq_resource
+ffffffff81626e90 t pnp_register_dma_resource
+ffffffff81626f40 t pnp_register_port_resource
+ffffffff81627010 t pnp_register_mem_resource
+ffffffff816270e0 t pnp_free_options
+ffffffff81627170 t pnp_check_port
+ffffffff81627440 t pnp_get_resource
+ffffffff81627490 t pnp_check_mem
+ffffffff81627760 t pnp_check_irq
+ffffffff81627b40 t pnp_test_handler
+ffffffff81627b50 t pnp_check_dma
+ffffffff81627d40 t pnp_resource_type
+ffffffff81627d60 t pnp_add_resource
+ffffffff81627e10 t pnp_add_irq_resource
+ffffffff81627ec0 t pnp_add_dma_resource
+ffffffff81627f90 t pnp_add_io_resource
+ffffffff81628070 t pnp_add_mem_resource
+ffffffff81628150 t pnp_add_bus_resource
+ffffffff81628220 t pnp_possible_config
+ffffffff816282d0 t pnp_range_reserved
+ffffffff81628330 t pnp_init_resources
+ffffffff81628340 t pnp_auto_config_dev
+ffffffff816283f0 t pnp_assign_resources
+ffffffff81629000 t pnp_start_dev
+ffffffff816290b0 t pnp_stop_dev
+ffffffff81629150 t pnp_activate_dev
+ffffffff81629220 t pnp_disable_dev
+ffffffff81629320 t pnp_is_active
+ffffffff81629410 t pnp_eisa_id_to_string
+ffffffff81629490 t pnp_resource_type_name
+ffffffff81629520 t dbg_pnp_show_resources
+ffffffff816295e0 t pnp_option_priority_name
+ffffffff81629610 t dbg_pnp_show_option
+ffffffff81629bd0 t resources_show
+ffffffff81629d70 t resources_store
+ffffffff8162a1e0 t pnp_printf
+ffffffff8162a2c0 t options_show
+ffffffff8162aa70 t id_show
+ffffffff8162aad0 t id_show
+ffffffff8162ab00 t id_show
+ffffffff8162ab30 t id_show
+ffffffff8162ab60 t pnp_fixup_device
+ffffffff8162ac10 t quirk_awe32_resources
+ffffffff8162ac90 t quirk_cmi8330_resources
+ffffffff8162ad70 t quirk_sb16audio_resources
+ffffffff8162ae20 t quirk_ad1815_mpu_resources
+ffffffff8162ae90 t quirk_add_irq_optional_dependent_sets
+ffffffff8162b0d0 t quirk_system_pci_resources
+ffffffff8162b260 t quirk_amd_mmconfig_area
+ffffffff8162b3b0 t quirk_intel_mch
+ffffffff8162b5d0 t quirk_awe32_add_ports
+ffffffff8162b690 t system_pnp_probe
+ffffffff8162b760 t reserve_range
+ffffffff8162b850 t pnpacpi_get_resources
+ffffffff8162b890 t pnpacpi_set_resources
+ffffffff8162b9e0 t pnpacpi_disable_resources
+ffffffff8162ba50 t pnpacpi_can_wakeup
+ffffffff8162ba90 t pnpacpi_suspend
+ffffffff8162bb30 t pnpacpi_resume
+ffffffff8162bba0 t pnpacpi_parse_allocated_resource
+ffffffff8162bc30 t pnpacpi_allocated_resource
+ffffffff8162bfc0 t pnpacpi_build_resource_template
+ffffffff8162c100 t pnpacpi_count_resources
+ffffffff8162c120 t pnpacpi_type_resources
+ffffffff8162c160 t pnpacpi_encode_resources
+ffffffff8162c9a0 t dma_flags
+ffffffff8162ca50 t pnpacpi_parse_allocated_vendor
+ffffffff8162cad0 t virtio_check_driver_offered_feature
+ffffffff8162cb40 t virtio_config_changed
+ffffffff8162cbb0 t virtio_add_status
+ffffffff8162cc00 t virtio_reset_device
+ffffffff8162cc20 t register_virtio_driver
+ffffffff8162cc50 t unregister_virtio_driver
+ffffffff8162cc60 t register_virtio_device
+ffffffff8162ced0 t is_virtio_device
+ffffffff8162cef0 t unregister_virtio_device
+ffffffff8162cf20 t virtio_device_freeze
+ffffffff8162cf90 t virtio_device_restore
+ffffffff8162d170 t virtio_features_ok
+ffffffff8162d250 t virtio_device_ready
+ffffffff8162d2a0 t virtio_dev_match
+ffffffff8162d300 t virtio_uevent
+ffffffff8162d330 t virtio_dev_probe
+ffffffff8162d590 t virtio_dev_remove
+ffffffff8162d630 t virtio_max_dma_size
+ffffffff8162d660 t virtqueue_add_sgs
+ffffffff8162d710 t virtqueue_add.llvm.16202407278625088755
+ffffffff8162e4a0 t virtqueue_add_outbuf
+ffffffff8162e500 t virtqueue_add_inbuf
+ffffffff8162e560 t virtqueue_add_inbuf_ctx
+ffffffff8162e5c0 t virtqueue_kick_prepare
+ffffffff8162e690 t virtqueue_notify
+ffffffff8162e6d0 t virtqueue_kick
+ffffffff8162e7c0 t virtqueue_get_buf_ctx
+ffffffff8162e9f0 t virtqueue_get_buf
+ffffffff8162ea10 t virtqueue_disable_cb
+ffffffff8162ea90 t virtqueue_enable_cb_prepare
+ffffffff8162eb20 t virtqueue_poll
+ffffffff8162eba0 t virtqueue_enable_cb
+ffffffff8162ec90 t virtqueue_enable_cb_delayed
+ffffffff8162ede0 t virtqueue_detach_unused_buf
+ffffffff8162eea0 t vring_interrupt
+ffffffff8162ef20 t vring_create_virtqueue
+ffffffff8162f390 t virtqueue_resize
+ffffffff8162f490 t virtqueue_resize_packed
+ffffffff8162f760 t virtqueue_resize_split
+ffffffff8162fa70 t vring_new_virtqueue
+ffffffff8162fb70 t __vring_new_virtqueue
+ffffffff8162fde0 t vring_del_virtqueue
+ffffffff8162fe50 t vring_free
+ffffffff8162ffe0 t vring_transport_features
+ffffffff81630000 t virtqueue_get_vring_size
+ffffffff81630010 t __virtqueue_break
+ffffffff81630020 t __virtqueue_unbreak
+ffffffff81630030 t virtqueue_is_broken
+ffffffff81630040 t virtio_break_device
+ffffffff81630090 t __virtio_unbreak_device
+ffffffff816300e0 t virtqueue_get_desc_addr
+ffffffff81630100 t virtqueue_get_avail_addr
+ffffffff81630140 t virtqueue_get_used_addr
+ffffffff81630180 t virtqueue_get_vring
+ffffffff81630190 t virtqueue_disable_dma_api_for_buffers
+ffffffff816301a0 t vring_unmap_extra_packed
+ffffffff816301e0 t vring_map_single
+ffffffff816302f0 t detach_buf_packed
+ffffffff81630460 t detach_buf_split
+ffffffff81630690 t vring_alloc_queue_packed
+ffffffff816308b0 t vring_free_packed
+ffffffff816309b0 t vring_alloc_queue_split
+ffffffff81630c30 t virtio_require_restricted_mem_acc
+ffffffff81630c40 t virtio_no_restricted_mem_acc
+ffffffff81630c50 t vp_modern_probe
+ffffffff81631220 t vp_modern_map_capability
+ffffffff816314b0 t vp_modern_remove
+ffffffff81631510 t vp_modern_get_features
+ffffffff81631560 t vp_modern_get_driver_features
+ffffffff816315c0 t vp_modern_set_features
+ffffffff81631620 t vp_modern_generation
+ffffffff81631640 t vp_modern_get_status
+ffffffff81631660 t vp_modern_set_status
+ffffffff81631680 t vp_modern_get_queue_reset
+ffffffff816316b0 t vp_modern_set_queue_reset
+ffffffff81631730 t vp_modern_queue_vector
+ffffffff81631770 t vp_modern_config_vector
+ffffffff816317a0 t vp_modern_queue_address
+ffffffff81631840 t vp_modern_set_queue_enable
+ffffffff81631880 t vp_modern_get_queue_enable
+ffffffff816318c0 t vp_modern_set_queue_size
+ffffffff81631900 t vp_modern_get_queue_size
+ffffffff81631930 t vp_modern_get_num_queues
+ffffffff81631950 t vp_modern_map_vq_notify
+ffffffff81631a20 t vp_legacy_probe
+ffffffff81631b20 t vp_legacy_remove
+ffffffff81631b50 t vp_legacy_get_features
+ffffffff81631b70 t vp_legacy_get_driver_features
+ffffffff81631b90 t vp_legacy_set_features
+ffffffff81631bb0 t vp_legacy_get_status
+ffffffff81631bd0 t vp_legacy_set_status
+ffffffff81631bf0 t vp_legacy_queue_vector
+ffffffff81631c40 t vp_legacy_config_vector
+ffffffff81631c70 t vp_legacy_set_queue_address
+ffffffff81631cb0 t vp_legacy_get_queue_enable
+ffffffff81631cf0 t vp_legacy_get_queue_size
+ffffffff81631d20 t virtio_pci_modern_probe
+ffffffff81631db0 t vp_config_vector
+ffffffff81631dd0 t vp_config_vector
+ffffffff81631df0 t setup_vq
+ffffffff81631f50 t setup_vq
+ffffffff816320c0 t del_vq
+ffffffff81632120 t del_vq
+ffffffff81632190 t virtio_pci_modern_remove
+ffffffff816321b0 t vp_get
+ffffffff81632250 t vp_get
+ffffffff816322c0 t vp_set
+ffffffff81632360 t vp_set
+ffffffff816323d0 t vp_generation
+ffffffff816323f0 t vp_get_status
+ffffffff81632410 t vp_get_status
+ffffffff81632430 t vp_set_status
+ffffffff81632460 t vp_set_status
+ffffffff81632490 t vp_reset
+ffffffff816324f0 t vp_reset
+ffffffff81632530 t vp_modern_find_vqs
+ffffffff816325a0 t vp_get_features
+ffffffff816325c0 t vp_get_features
+ffffffff816325e0 t vp_finalize_features
+ffffffff816326a0 t vp_finalize_features
+ffffffff816326f0 t vp_get_shm_region
+ffffffff81632920 t vp_modern_disable_vq_and_reset
+ffffffff81632a10 t vp_modern_enable_vq_after_reset
+ffffffff81632b50 t vp_active_vq
+ffffffff81632bf0 t vp_synchronize_vectors
+ffffffff81632c60 t vp_notify
+ffffffff81632c80 t vp_del_vqs
+ffffffff81632ed0 t vp_find_vqs
+ffffffff81633090 t vp_find_vqs_msix
+ffffffff81633560 t vp_bus_name
+ffffffff81633590 t vp_set_vq_affinity
+ffffffff81633640 t vp_get_vq_affinity
+ffffffff81633690 t vp_setup_vq
+ffffffff816337d0 t vp_config_changed
+ffffffff816337f0 t vp_vring_interrupt
+ffffffff81633870 t vp_interrupt
+ffffffff81633920 t virtio_pci_probe
+ffffffff81633a90 t virtio_pci_remove
+ffffffff81633b40 t virtio_pci_sriov_configure
+ffffffff81633bd0 t virtio_pci_release_dev
+ffffffff81633bf0 t virtio_pci_freeze
+ffffffff81633c30 t virtio_pci_restore
+ffffffff81633c80 t virtio_pci_legacy_probe
+ffffffff81633d00 t virtio_pci_legacy_remove
+ffffffff81633d20 t virtballoon_validate
+ffffffff81633d60 t virtballoon_probe
+ffffffff816341f0 t virtballoon_remove
+ffffffff81634300 t virtballoon_changed
+ffffffff816343a0 t virtballoon_freeze
+ffffffff816343c0 t virtballoon_restore
+ffffffff816344d0 t update_balloon_stats_func
+ffffffff81634740 t update_balloon_size_func
+ffffffff81634a80 t init_vqs
+ffffffff81634f20 t init_vqs
+ffffffff81635310 t virtballoon_migratepage
+ffffffff81635550 t report_free_page_func
+ffffffff81635a90 t virtio_balloon_oom_notify
+ffffffff81635b20 t virtballoon_free_page_report
+ffffffff81635c80 t leak_balloon
+ffffffff81635ec0 t tell_host
+ffffffff81636040 t balloon_ack
+ffffffff81636070 t stats_request
+ffffffff816360d0 t virtio_balloon_shrinker_scan
+ffffffff816361f0 t virtio_balloon_shrinker_count
+ffffffff81636210 t remove_common
+ffffffff816363a0 t tty_alloc_file
+ffffffff816363e0 t tty_add_file
+ffffffff81636460 t tty_free_file
+ffffffff81636490 t tty_name
+ffffffff816364b0 t tty_driver_name
+ffffffff816364e0 t tty_dev_name_to_number
+ffffffff81636630 t tty_wakeup
+ffffffff816366b0 t tty_hangup
+ffffffff816366e0 t tty_vhangup
+ffffffff81636700 t __tty_hangup.llvm.15206213235599339089
+ffffffff81636b20 t tty_vhangup_self
+ffffffff81636bb0 t tty_kref_put
+ffffffff81636c30 t tty_vhangup_session
+ffffffff81636c50 t tty_hung_up_p
+ffffffff81636c80 t __stop_tty
+ffffffff81636cc0 t stop_tty
+ffffffff81636d20 t __start_tty
+ffffffff81636dd0 t start_tty
+ffffffff81636ea0 t tty_write_message
+ffffffff81636fb0 t redirected_tty_write
+ffffffff81637030 t file_tty_write
+ffffffff81637330 t tty_write.llvm.15206213235599339089
+ffffffff81637350 t tty_send_xchar
+ffffffff816374f0 t tty_init_termios
+ffffffff81637600 t tty_standard_install
+ffffffff81637750 t tty_init_dev
+ffffffff81637a30 t alloc_tty_struct
+ffffffff81637ca0 t release_tty
+ffffffff81637f10 t tty_save_termios
+ffffffff81637fb0 t tty_kclose
+ffffffff81638040 t tty_release_struct
+ffffffff816380c0 t tty_release
+ffffffff81638710 t check_tty_count
+ffffffff81638800 t tty_kopen_exclusive
+ffffffff81638820 t tty_kopen
+ffffffff816389f0 t tty_kopen_shared
+ffffffff81638a10 t tty_do_resize
+ffffffff81638a90 t tty_get_icount
+ffffffff81638b10 t tty_ioctl
+ffffffff816395e0 t tioccons
+ffffffff816396d0 t tiocsetd
+ffffffff81639700 t tty_devnum
+ffffffff81639720 t send_break
+ffffffff81639850 t hung_up_tty_ioctl
+ffffffff81639880 t __do_SAK
+ffffffff81639b80 t this_tty
+ffffffff81639bc0 t do_SAK
+ffffffff81639bf0 t do_tty_hangup
+ffffffff81639c10 t do_SAK_work
+ffffffff81639c30 t tty_put_char
+ffffffff81639ca0 t tty_register_device
+ffffffff81639cc0 t tty_register_device_attr
+ffffffff81639f80 t tty_device_create_release
+ffffffff81639f90 t tty_unregister_device
+ffffffff81639ff0 t __tty_alloc_driver
+ffffffff8163a140 t tty_driver_kref_put
+ffffffff8163a260 t tty_register_driver
+ffffffff8163a500 t tty_unregister_driver
+ffffffff8163a580 t tty_default_fops
+ffffffff8163a5a0 t console_sysfs_notify
+ffffffff8163a5d0 t hung_up_tty_read
+ffffffff8163a5e0 t hung_up_tty_write
+ffffffff8163a600 t hung_up_tty_poll
+ffffffff8163a610 t hung_up_tty_compat_ioctl
+ffffffff8163a640 t hung_up_tty_fasync
+ffffffff8163a650 t release_one_tty
+ffffffff8163a720 t tty_lookup_driver
+ffffffff8163a8a0 t tty_read.llvm.15206213235599339089
+ffffffff8163ab70 t tty_poll.llvm.15206213235599339089
+ffffffff8163ac20 t tty_open.llvm.15206213235599339089
+ffffffff8163b470 t tty_fasync.llvm.15206213235599339089
+ffffffff8163b670 t tty_show_fdinfo.llvm.15206213235599339089
+ffffffff8163b6b0 t tty_reopen
+ffffffff8163b780 t tty_devnode
+ffffffff8163b7b0 t show_cons_active
+ffffffff8163ba10 t n_tty_inherit_ops
+ffffffff8163ba40 t n_tty_open
+ffffffff8163baf0 t n_tty_close
+ffffffff8163bb90 t n_tty_flush_buffer
+ffffffff8163bc80 t n_tty_read
+ffffffff8163c4b0 t n_tty_write
+ffffffff8163c970 t n_tty_ioctl
+ffffffff8163ca70 t n_tty_set_termios
+ffffffff8163cdb0 t n_tty_poll
+ffffffff8163cf90 t n_tty_receive_buf
+ffffffff8163cfb0 t n_tty_write_wakeup
+ffffffff8163cfe0 t n_tty_receive_buf2
+ffffffff8163d000 t n_tty_lookahead_flow_ctrl
+ffffffff8163d090 t n_tty_kick_worker
+ffffffff8163d150 t canon_copy_from_read_buf
+ffffffff8163d3e0 t n_tty_check_unthrottle
+ffffffff8163d4a0 t __process_echoes
+ffffffff8163d7b0 t do_output_char
+ffffffff8163d9a0 t n_tty_receive_buf_common
+ffffffff8163df20 t n_tty_receive_buf_closing
+ffffffff8163e0c0 t n_tty_receive_buf_standard
+ffffffff8163f2f0 t n_tty_receive_char_flagged
+ffffffff8163f4b0 t isig
+ffffffff8163f660 t n_tty_receive_char_flow_ctrl
+ffffffff8163f720 t n_tty_receive_char
+ffffffff8163f9a0 t n_tty_receive_signal_char
+ffffffff8163fb20 t commit_echoes
+ffffffff8163fbc0 t echo_char
+ffffffff8163fc60 t tty_chars_in_buffer
+ffffffff8163fc90 t tty_write_room
+ffffffff8163fcc0 t tty_driver_flush_buffer
+ffffffff8163fcf0 t tty_unthrottle
+ffffffff8163fd50 t tty_throttle_safe
+ffffffff8163fdc0 t tty_unthrottle_safe
+ffffffff8163fe40 t tty_wait_until_sent
+ffffffff8163ffc0 t tty_termios_copy_hw
+ffffffff8163fff0 t tty_termios_hw_change
+ffffffff81640030 t tty_get_char_size
+ffffffff81640050 t tty_get_frame_size
+ffffffff81640080 t tty_set_termios
+ffffffff81640530 t user_termio_to_kernel_termios
+ffffffff816405d0 t kernel_termios_to_user_termio
+ffffffff81640650 t user_termios_to_kernel_termios
+ffffffff81640670 t kernel_termios_to_user_termios
+ffffffff81640690 t user_termios_to_kernel_termios_1
+ffffffff816406b0 t kernel_termios_to_user_termios_1
+ffffffff816406d0 t tty_mode_ioctl
+ffffffff81640c00 t set_termios
+ffffffff81640d80 t tty_change_softcar
+ffffffff81640e80 t tty_perform_flush
+ffffffff81640ee0 t __tty_perform_flush
+ffffffff81641010 t n_tty_ioctl_helper
+ffffffff81641120 t tty_register_ldisc
+ffffffff81641170 t tty_unregister_ldisc
+ffffffff816411c0 t tty_ldiscs_seq_start.llvm.9499103308063362964
+ffffffff816411e0 t tty_ldiscs_seq_stop.llvm.9499103308063362964
+ffffffff816411f0 t tty_ldiscs_seq_next.llvm.9499103308063362964
+ffffffff81641210 t tty_ldiscs_seq_show.llvm.9499103308063362964
+ffffffff816412d0 t tty_ldisc_ref_wait
+ffffffff81641310 t tty_ldisc_ref
+ffffffff81641350 t tty_ldisc_deref
+ffffffff81641370 t tty_ldisc_lock
+ffffffff816413f0 t tty_ldisc_unlock
+ffffffff81641420 t tty_ldisc_flush
+ffffffff81641480 t tty_set_ldisc
+ffffffff816416f0 t tty_ldisc_get
+ffffffff81641840 t tty_ldisc_put
+ffffffff81641880 t tty_ldisc_restore
+ffffffff81641900 t tty_ldisc_reinit
+ffffffff81641a60 t tty_ldisc_hangup
+ffffffff81641c80 t tty_ldisc_kill
+ffffffff81641d10 t tty_ldisc_setup
+ffffffff81641df0 t tty_ldisc_release
+ffffffff81641f10 t tty_ldisc_init
+ffffffff81641f40 t tty_ldisc_deinit
+ffffffff81641f90 t tty_sysctl_init
+ffffffff81641fc0 t tty_ldisc_failto
+ffffffff816420a0 t tty_buffer_lock_exclusive
+ffffffff816420c0 t tty_buffer_unlock_exclusive
+ffffffff81642110 t tty_buffer_space_avail
+ffffffff81642130 t tty_buffer_free_all
+ffffffff81642200 t tty_buffer_flush
+ffffffff816422f0 t tty_buffer_request_room
+ffffffff81642310 t __tty_buffer_request_room.llvm.8741149805863514422
+ffffffff81642420 t tty_insert_flip_string_fixed_flag
+ffffffff81642500 t tty_insert_flip_string_flags
+ffffffff816425f0 t __tty_insert_flip_char
+ffffffff81642660 t tty_prepare_flip_string
+ffffffff816426d0 t tty_ldisc_receive_buf
+ffffffff81642730 t tty_flip_buffer_push
+ffffffff81642760 t tty_insert_flip_string_and_push_buffer
+ffffffff81642880 t tty_buffer_init
+ffffffff81642930 t flush_to_ldisc
+ffffffff81642b10 t tty_buffer_set_limit
+ffffffff81642b30 t tty_buffer_set_lock_subclass
+ffffffff81642b40 t tty_buffer_restart_work
+ffffffff81642b60 t tty_buffer_cancel_work
+ffffffff81642b80 t tty_buffer_flush_work
+ffffffff81642ba0 t tty_port_default_receive_buf
+ffffffff81642c10 t tty_port_default_lookahead_buf
+ffffffff81642c80 t tty_port_default_wakeup
+ffffffff81642d10 t tty_port_init
+ffffffff81642dd0 t tty_port_link_device
+ffffffff81642e00 t tty_port_register_device
+ffffffff81642e40 t tty_port_register_device_attr
+ffffffff81642e80 t tty_port_register_device_attr_serdev
+ffffffff81642ec0 t tty_port_register_device_serdev
+ffffffff81642f00 t tty_port_unregister_device
+ffffffff81642f20 t tty_port_alloc_xmit_buf
+ffffffff81642fa0 t tty_port_free_xmit_buf
+ffffffff81643010 t tty_port_destroy
+ffffffff81643040 t tty_port_put
+ffffffff816430e0 t tty_port_tty_get
+ffffffff81643150 t tty_port_tty_set
+ffffffff816431d0 t tty_port_hangup
+ffffffff816432f0 t tty_port_tty_hangup
+ffffffff816433a0 t tty_port_tty_wakeup
+ffffffff816433c0 t tty_port_carrier_raised
+ffffffff816433f0 t tty_port_raise_dtr_rts
+ffffffff81643420 t tty_port_lower_dtr_rts
+ffffffff81643450 t tty_port_block_til_ready
+ffffffff81643700 t tty_port_close_start
+ffffffff81643880 t tty_port_close_end
+ffffffff81643920 t tty_port_close
+ffffffff81643a20 t tty_port_install
+ffffffff81643a40 t tty_port_open
+ffffffff81643b60 t tty_lock
+ffffffff81643bb0 t tty_lock_interruptible
+ffffffff81643c10 t tty_unlock
+ffffffff81643c40 t tty_lock_slave
+ffffffff81643ca0 t tty_unlock_slave
+ffffffff81643ce0 t tty_set_lock_subclass
+ffffffff81643cf0 t __init_ldsem
+ffffffff81643d30 t ldsem_down_read_trylock
+ffffffff81643d60 t ldsem_down_write_trylock
+ffffffff81643da0 t ldsem_up_read
+ffffffff81643e40 t ldsem_up_write
+ffffffff81643ec0 t __ldsem_wake_readers
+ffffffff81643f90 t tty_termios_baud_rate
+ffffffff81643fe0 t tty_termios_input_baud_rate
+ffffffff81644060 t tty_termios_encode_baud_rate
+ffffffff816441b0 t tty_encode_baud_rate
+ffffffff816441d0 t __tty_check_change
+ffffffff81644320 t tty_check_change
+ffffffff81644340 t proc_clear_tty
+ffffffff81644390 t tty_open_proc_set_tty
+ffffffff81644420 t __proc_set_tty
+ffffffff816445a0 t get_current_tty
+ffffffff81644620 t session_clear_tty
+ffffffff816446a0 t tty_signal_session_leader
+ffffffff816448b0 t disassociate_ctty
+ffffffff81644c30 t tty_get_pgrp
+ffffffff81644ca0 t no_tty
+ffffffff81644d00 t tty_jobctrl_ioctl
+ffffffff81645180 t session_of_pgrp
+ffffffff816451d0 t n_null_open
+ffffffff816451e0 t n_null_close
+ffffffff816451f0 t n_null_read
+ffffffff81645210 t n_null_write
+ffffffff81645230 t n_null_receivebuf
+ffffffff81645240 t ptm_open_peer
+ffffffff81645330 t ptmx_open
+ffffffff816454d0 t ptm_unix98_lookup
+ffffffff816454f0 t pty_unix98_install
+ffffffff81645780 t pty_unix98_remove
+ffffffff816457d0 t pty_open
+ffffffff81645860 t pty_close
+ffffffff816459b0 t pty_cleanup
+ffffffff816459d0 t pty_write
+ffffffff81645a00 t pty_write_room
+ffffffff81645a30 t pty_unix98_ioctl
+ffffffff81645bd0 t pty_unthrottle
+ffffffff81645c00 t pty_flush_buffer
+ffffffff81645c80 t pty_resize
+ffffffff81645d50 t pty_show_fdinfo
+ffffffff81645d70 t pts_unix98_lookup
+ffffffff81645dc0 t pty_set_termios
+ffffffff81645ee0 t pty_stop
+ffffffff81645f60 t pty_start
+ffffffff81645fe0 t tty_audit_exit
+ffffffff81646050 t tty_audit_fork
+ffffffff81646080 t tty_audit_tiocsti
+ffffffff81646110 t tty_audit_push
+ffffffff816461b0 t tty_audit_log
+ffffffff81646300 t tty_audit_add_data
+ffffffff816465b0 t sysrq_mask
+ffffffff816465d0 t __handle_sysrq
+ffffffff81646750 t handle_sysrq
+ffffffff81646780 t sysrq_toggle_support
+ffffffff816467d0 t sysrq_register_handler
+ffffffff816468f0 t register_sysrq_key
+ffffffff81646980 t __sysrq_swap_key_ops.llvm.5504090233345026817
+ffffffff81646a20 t unregister_sysrq_key
+ffffffff81646ab0 t sysrq_handle_reboot
+ffffffff81646ad0 t sysrq_handle_loglevel
+ffffffff81646b00 t sysrq_handle_crash
+ffffffff81646b20 t sysrq_handle_term
+ffffffff81646bb0 t sysrq_handle_moom
+ffffffff81646be0 t moom_callback
+ffffffff81646c90 t sysrq_handle_kill
+ffffffff81646d20 t sysrq_handle_thaw
+ffffffff81646d30 t sysrq_handle_SAK
+ffffffff81646d70 t sysrq_handle_showallcpus
+ffffffff81646d90 t sysrq_handle_showmem
+ffffffff81646db0 t sysrq_handle_unrt
+ffffffff81646dc0 t sysrq_handle_showregs
+ffffffff81646e00 t sysrq_handle_show_timers
+ffffffff81646e10 t sysrq_handle_unraw
+ffffffff81646e30 t sysrq_handle_sync
+ffffffff81646e40 t sysrq_handle_showstate
+ffffffff81646e60 t sysrq_handle_mountro
+ffffffff81646e70 t sysrq_handle_showstate_blocked
+ffffffff81646e90 t sysrq_ftrace_dump
+ffffffff81646eb0 t sysrq_reset_seq_param_set
+ffffffff81646f30 t sysrq_filter
+ffffffff81647300 t sysrq_connect
+ffffffff816473f0 t sysrq_disconnect
+ffffffff81647440 t sysrq_do_reset
+ffffffff81647470 t sysrq_reinject_alt_sysrq
+ffffffff81647530 t write_sysrq_trigger
+ffffffff81647570 t vt_event_post
+ffffffff81647630 t vt_waitactive
+ffffffff81647880 t vt_ioctl
+ffffffff81648690 t vt_setactivate
+ffffffff816487d0 t vt_reldisp
+ffffffff81648840 t vt_disallocate_all
+ffffffff81648970 t vt_disallocate
+ffffffff81648a30 t vt_resizex
+ffffffff81648be0 t vt_event_wait_ioctl
+ffffffff81648e00 t reset_vc
+ffffffff81648e60 t vc_SAK
+ffffffff81648ee0 t change_console
+ffffffff81648fd0 t complete_change_console
+ffffffff81649190 t vt_move_to_console
+ffffffff81649220 t pm_set_vt_switch
+ffffffff81649250 t vt_kdsetmode
+ffffffff816492b0 t vcs_make_sysfs
+ffffffff81649340 t vcs_remove_sysfs
+ffffffff816493a0 t vcs_lseek
+ffffffff816494b0 t vcs_read
+ffffffff81649b00 t vcs_write
+ffffffff8164a1c0 t vcs_poll
+ffffffff8164a230 t vcs_open
+ffffffff8164a290 t vcs_release
+ffffffff8164a2d0 t vcs_fasync
+ffffffff8164a330 t vcs_poll_data_get
+ffffffff8164a420 t vcs_notifier
+ffffffff8164a4b0 t clear_selection
+ffffffff8164a510 t vc_is_sel
+ffffffff8164a530 t sel_loadlut
+ffffffff8164a5c0 t set_selection_user
+ffffffff8164a640 t set_selection_kernel
+ffffffff8164af80 t paste_selection
+ffffffff8164b160 t register_keyboard_notifier
+ffffffff8164b180 t unregister_keyboard_notifier
+ffffffff8164b1a0 t kd_mksound
+ffffffff8164b220 t kd_sound_helper
+ffffffff8164b2a0 t kbd_rate
+ffffffff8164b310 t kbd_rate_helper
+ffffffff8164b380 t vt_set_leds_compute_shiftstate
+ffffffff8164b480 t do_compute_shiftstate
+ffffffff8164b540 t setledstate
+ffffffff8164b5c0 t vt_get_leds
+ffffffff8164b620 t vt_set_led_state
+ffffffff8164b6b0 t vt_kbd_con_start
+ffffffff8164b710 t vt_kbd_con_stop
+ffffffff8164b770 t vt_do_diacrit
+ffffffff8164bb30 t vt_do_kdskbmode
+ffffffff8164bd70 t vt_do_kdskbmeta
+ffffffff8164bde0 t vt_do_kbkeycode_ioctl
+ffffffff8164bf50 t vt_do_kdsk_ioctl
+ffffffff8164c300 t vt_do_kdgkb_ioctl
+ffffffff8164c4a0 t vt_kdskbsent
+ffffffff8164c510 t vt_do_kdskled
+ffffffff8164c6c0 t vt_do_kdgkbmode
+ffffffff8164c700 t vt_do_kdgkbmeta
+ffffffff8164c730 t vt_reset_unicode
+ffffffff8164c790 t vt_get_shift_state
+ffffffff8164c7b0 t vt_reset_keyboard
+ffffffff8164c850 t vt_get_kbd_mode_bit
+ffffffff8164c880 t vt_set_kbd_mode_bit
+ffffffff8164c8e0 t vt_clr_kbd_mode_bit
+ffffffff8164c940 t kd_nosound
+ffffffff8164c970 t kbd_event
+ffffffff8164d450 t kbd_match
+ffffffff8164d4c0 t kbd_connect
+ffffffff8164d550 t kbd_disconnect
+ffffffff8164d580 t kbd_start
+ffffffff8164d5d0 t k_unicode
+ffffffff8164d690 t handle_diacr
+ffffffff8164d7b0 t to_utf8
+ffffffff8164d970 t k_self
+ffffffff8164d9a0 t k_fn
+ffffffff8164da20 t k_spec
+ffffffff8164da80 t k_pad
+ffffffff8164dcd0 t k_dead
+ffffffff8164dd20 t k_cons
+ffffffff8164dd40 t k_cur
+ffffffff8164ddc0 t k_shift
+ffffffff8164df30 t k_meta
+ffffffff8164e000 t k_ascii
+ffffffff8164e060 t k_lock
+ffffffff8164e090 t k_lowercase
+ffffffff8164e0b0 t k_slock
+ffffffff8164e110 t k_dead2
+ffffffff8164e140 t k_brl
+ffffffff8164e380 t k_ignore
+ffffffff8164e390 t fn_null
+ffffffff8164e450 t fn_enter
+ffffffff8164e590 t fn_show_ptregs
+ffffffff8164e5c0 t fn_show_mem
+ffffffff8164e5e0 t fn_show_state
+ffffffff8164e600 t fn_send_intr
+ffffffff8164e660 t fn_lastcons
+ffffffff8164e680 t fn_caps_toggle
+ffffffff8164e6b0 t fn_num
+ffffffff8164e710 t fn_hold
+ffffffff8164e750 t fn_scroll_forw
+ffffffff8164e770 t fn_scroll_back
+ffffffff8164e780 t fn_boot_it
+ffffffff8164e790 t fn_caps_on
+ffffffff8164e7c0 t fn_compose
+ffffffff8164e7e0 t fn_SAK
+ffffffff8164e820 t fn_dec_console
+ffffffff8164e890 t fn_inc_console
+ffffffff8164e900 t fn_spawn_con
+ffffffff8164e960 t fn_bare_num
+ffffffff8164e990 t applkey
+ffffffff8164e9f0 t kbd_update_leds_helper
+ffffffff8164ea70 t kbd_bh
+ffffffff8164eb50 t getkeycode_helper
+ffffffff8164eb80 t setkeycode_helper
+ffffffff8164ebb0 t set_translate
+ffffffff8164ebf0 t inverse_translate
+ffffffff8164ec70 t con_set_trans_old
+ffffffff8164ed30 t update_user_maps
+ffffffff8164ee80 t con_get_trans_old
+ffffffff8164eff0 t conv_uni_to_pc
+ffffffff8164f0b0 t con_set_trans_new
+ffffffff8164f150 t con_get_trans_new
+ffffffff8164f1e0 t con_free_unimap
+ffffffff8164f220 t con_release_unimap
+ffffffff8164f450 t con_clear_unimap
+ffffffff8164f4f0 t con_set_unimap
+ffffffff8164fb10 t con_unify_unimap
+ffffffff8164fc70 t set_inverse_transl
+ffffffff8164fdb0 t con_set_default_unimap
+ffffffff816501c0 t con_copy_unimap
+ffffffff81650250 t con_get_unimap
+ffffffff81650400 t conv_8bit_to_uni
+ffffffff81650420 t conv_uni_to_8bit
+ffffffff816504a0 t register_vt_notifier
+ffffffff816504c0 t unregister_vt_notifier
+ffffffff816504e0 t schedule_console_callback
+ffffffff81650510 t vc_uniscr_check
+ffffffff816506e0 t vc_uniscr_copy_line
+ffffffff81650830 t update_region
+ffffffff81650aa0 t hide_cursor
+ffffffff81650b50 t do_update_region
+ffffffff81650d90 t invert_screen
+ffffffff81651100 t complement_pos
+ffffffff81651330 t clear_buffer_attributes
+ffffffff81651390 t redraw_screen
+ffffffff816518e0 t con_is_visible
+ffffffff81651920 t set_origin
+ffffffff81651a10 t set_palette
+ffffffff81651a70 t update_attr
+ffffffff81651c80 t vc_cons_allocated
+ffffffff81651cb0 t vc_allocate
+ffffffff81651fb0 t vc_init
+ffffffff816520b0 t vc_resize
+ffffffff816520d0 t vc_do_resize.llvm.1374852128680100967
+ffffffff816527b0 t vc_deallocate
+ffffffff816528d0 t scrollback
+ffffffff81652910 t scrollfront
+ffffffff81652950 t mouse_report
+ffffffff816529f0 t mouse_reporting
+ffffffff81652a30 t set_console
+ffffffff81652ab0 t vt_kmsg_redirect
+ffffffff81652ae0 t tioclinux
+ffffffff81652da0 t unblank_screen
+ffffffff81652dc0 t do_blank_screen
+ffffffff81653170 t con_is_bound
+ffffffff816531e0 t con_debug_enter
+ffffffff81653260 t con_debug_leave
+ffffffff816532f0 t do_unregister_con_driver
+ffffffff81653570 t do_take_over_console
+ffffffff81653da0 t give_up_console
+ffffffff81653dd0 t do_unblank_screen
+ffffffff81654090 t poke_blanked_console
+ffffffff81654160 t con_set_cmap
+ffffffff81654340 t con_get_cmap
+ffffffff81654430 t reset_palette
+ffffffff816544e0 t con_font_op
+ffffffff816548e0 t screen_glyph
+ffffffff81654930 t screen_glyph_unicode
+ffffffff816549b0 t screen_pos
+ffffffff81654a00 t getconsxy
+ffffffff81654a40 t putconsxy
+ffffffff81654ca0 t gotoxy
+ffffffff81654d30 t vcs_scr_readw
+ffffffff81654d60 t vcs_scr_writew
+ffffffff81654d90 t add_softcursor
+ffffffff81654e70 t vcs_scr_updated
+ffffffff81654ed0 t vc_scrolldelta_helper
+ffffffff81654fc0 t console_callback
+ffffffff816551f0 t vc_port_destruct
+ffffffff81655200 t reset_terminal
+ffffffff81655590 t csi_J
+ffffffff81655960 t vt_console_print
+ffffffff81655ee0 t vt_console_device
+ffffffff81655f10 t lf
+ffffffff81655fc0 t cr
+ffffffff81656040 t con_scroll
+ffffffff81656270 t show_tty_active
+ffffffff816562a0 t con_install
+ffffffff816563f0 t con_open
+ffffffff81656400 t con_close
+ffffffff81656410 t con_shutdown
+ffffffff81656440 t con_cleanup
+ffffffff81656460 t con_write
+ffffffff81656490 t con_put_char
+ffffffff816564e0 t con_flush_chars
+ffffffff81656640 t con_write_room
+ffffffff81656660 t con_throttle
+ffffffff81656670 t con_unthrottle
+ffffffff816566a0 t con_stop
+ffffffff816566d0 t con_start
+ffffffff81656700 t vt_resize
+ffffffff81656750 t do_con_write
+ffffffff81658330 t ri
+ffffffff81658390 t respond_ID
+ffffffff816583d0 t restore_cur
+ffffffff816584c0 t set_mode
+ffffffff81658790 t status_report
+ffffffff816587d0 t cursor_report
+ffffffff816588a0 t gotoxay
+ffffffff81658940 t csi_K
+ffffffff81658a30 t csi_L
+ffffffff81658a80 t csi_M
+ffffffff81658ad0 t csi_P
+ffffffff81658c20 t csi_m
+ffffffff81658f60 t csi_X
+ffffffff81659030 t setterm_command
+ffffffff81659350 t vc_setGx
+ffffffff816593c0 t vc_t416_color
+ffffffff816595a0 t rgb_foreground
+ffffffff81659630 t rgb_background
+ffffffff81659670 t insert_char
+ffffffff81659770 t ucs_cmp
+ffffffff81659790 t con_driver_unregister_callback
+ffffffff816598a0 t show_bind
+ffffffff81659940 t store_bind
+ffffffff81659970 t show_name
+ffffffff816599b0 t blank_screen_t
+ffffffff816599e0 t hvc_instantiate
+ffffffff81659a70 t hvc_get_by_index
+ffffffff81659b40 t hvc_kick
+ffffffff81659b70 t hvc_poll
+ffffffff81659b90 t __hvc_poll.llvm.8653731392714374528
+ffffffff81659f60 t __hvc_resize
+ffffffff81659f90 t hvc_alloc
+ffffffff8165a490 t hvc_set_winsz
+ffffffff8165a520 t hvc_remove
+ffffffff8165a5c0 t hvc_console_print
+ffffffff8165a7b0 t hvc_console_device
+ffffffff8165a7f0 t hvc_console_setup
+ffffffff8165a820 t hvc_port_destruct
+ffffffff8165a8c0 t khvcd
+ffffffff8165a9f0 t hvc_install
+ffffffff8165aa60 t hvc_open
+ffffffff8165ab50 t hvc_close
+ffffffff8165ac60 t hvc_cleanup
+ffffffff8165ac80 t hvc_write
+ffffffff8165ae90 t hvc_write_room
+ffffffff8165aec0 t hvc_chars_in_buffer
+ffffffff8165aef0 t hvc_unthrottle
+ffffffff8165af20 t hvc_hangup
+ffffffff8165afc0 t hvc_tiocmget
+ffffffff8165b000 t hvc_tiocmset
+ffffffff8165b040 t uart_write_wakeup
+ffffffff8165b060 t uart_update_timeout
+ffffffff8165b0b0 t uart_get_baud_rate
+ffffffff8165b1f0 t uart_get_divisor
+ffffffff8165b240 t uart_xchar_out
+ffffffff8165b270 t uart_console_write
+ffffffff8165b2f0 t uart_parse_earlycon
+ffffffff8165b450 t uart_parse_options
+ffffffff8165b4c0 t uart_set_options
+ffffffff8165b620 t uart_suspend_port
+ffffffff8165b8d0 t serial_match_port
+ffffffff8165b900 t uart_resume_port
+ffffffff8165bd70 t uart_change_speed
+ffffffff8165beb0 t uart_shutdown
+ffffffff8165c070 t uart_register_driver
+ffffffff8165c240 t uart_unregister_driver
+ffffffff8165c2d0 t uart_console_device
+ffffffff8165c2f0 t uart_add_one_port
+ffffffff8165c980 t uart_remove_one_port
+ffffffff8165cbe0 t uart_match_port
+ffffffff8165cc50 t uart_handle_dcd_change
+ffffffff8165cd10 t uart_handle_cts_change
+ffffffff8165cda0 t uart_insert_char
+ffffffff8165cea0 t uart_try_toggle_sysrq
+ffffffff8165ceb0 t uart_get_rs485_mode
+ffffffff8165d010 t uart_sanitize_serial_rs485_delays
+ffffffff8165d170 t uart_sanitize_serial_rs485
+ffffffff8165d240 t uart_install
+ffffffff8165d270 t uart_open
+ffffffff8165d2a0 t uart_close
+ffffffff8165d310 t uart_write
+ffffffff8165d5b0 t uart_put_char
+ffffffff8165d6c0 t uart_flush_chars
+ffffffff8165d6d0 t uart_write_room
+ffffffff8165d780 t uart_chars_in_buffer
+ffffffff8165d830 t uart_ioctl
+ffffffff8165dd70 t uart_set_termios
+ffffffff8165df10 t uart_throttle
+ffffffff8165e040 t uart_unthrottle
+ffffffff8165e170 t uart_stop
+ffffffff8165e210 t uart_start
+ffffffff8165e310 t uart_hangup
+ffffffff8165e470 t uart_break_ctl
+ffffffff8165e4f0 t uart_flush_buffer
+ffffffff8165e5b0 t uart_set_ldisc
+ffffffff8165e630 t uart_wait_until_sent
+ffffffff8165e7e0 t uart_send_xchar
+ffffffff8165e8c0 t uart_tiocmget
+ffffffff8165e950 t uart_tiocmset
+ffffffff8165ea20 t uart_get_icount
+ffffffff8165eb70 t uart_get_info_user
+ffffffff8165ec90 t uart_set_info_user
+ffffffff8165f220 t uart_proc_show
+ffffffff8165f6c0 t uart_get_lsr_info
+ffffffff8165f750 t uart_get_rs485_config
+ffffffff8165f7f0 t uart_set_rs485_config
+ffffffff8165f9d0 t uart_set_iso7816_config
+ffffffff8165fb00 t uart_get_iso7816_config
+ffffffff8165fbc0 t uart_startup
+ffffffff8165fe90 t uart_carrier_raised
+ffffffff8165ff50 t uart_dtr_rts
+ffffffff81660020 t uart_tty_port_shutdown
+ffffffff81660140 t uart_port_activate
+ffffffff81660190 t uartclk_show
+ffffffff81660200 t line_show
+ffffffff81660270 t port_show
+ffffffff816602f0 t flags_show
+ffffffff81660360 t flags_show
+ffffffff816603c0 t flags_show
+ffffffff81660420 t xmit_fifo_size_show
+ffffffff81660490 t close_delay_show
+ffffffff81660510 t closing_wait_show
+ffffffff816605a0 t custom_divisor_show
+ffffffff81660610 t io_type_show
+ffffffff81660680 t iomem_base_show
+ffffffff816606f0 t iomem_reg_shift_show
+ffffffff81660760 t console_show
+ffffffff816607f0 t console_store
+ffffffff81660900 t serial8250_get_port
+ffffffff81660930 t serial8250_set_isa_configurator
+ffffffff81660950 t serial8250_suspend_port
+ffffffff81660a20 t serial8250_resume_port
+ffffffff81660af0 t serial8250_register_8250_port
+ffffffff816611c0 t serial_8250_overrun_backoff_work
+ffffffff81661220 t serial8250_unregister_port
+ffffffff81661310 t univ8250_console_write
+ffffffff81661340 t univ8250_console_setup
+ffffffff816613a0 t univ8250_console_exit
+ffffffff816613d0 t univ8250_console_match
+ffffffff816615d0 t serial8250_timeout
+ffffffff81661650 t univ8250_setup_irq
+ffffffff816617d0 t univ8250_release_irq
+ffffffff81661870 t univ8250_setup_timer
+ffffffff81661950 t serial8250_interrupt
+ffffffff81661a00 t serial_do_unlink
+ffffffff81661ad0 t serial8250_backup_timeout
+ffffffff81661c70 t serial8250_probe
+ffffffff81661e70 t serial8250_remove
+ffffffff81661f20 t serial8250_suspend
+ffffffff81661fd0 t serial8250_resume
+ffffffff81662310 t serial8250_pnp_init
+ffffffff81662330 t serial8250_pnp_exit
+ffffffff81662350 t serial_pnp_probe
+ffffffff81662660 t serial_pnp_remove
+ffffffff81662690 t check_name
+ffffffff816628d0 t serial_pnp_suspend
+ffffffff81662900 t serial_pnp_resume
+ffffffff81662930 t serial8250_clear_and_reinit_fifos
+ffffffff816629b0 t serial8250_rpm_get
+ffffffff816629e0 t serial8250_rpm_put
+ffffffff81662a30 t serial8250_em485_destroy
+ffffffff81662a80 t serial8250_em485_config
+ffffffff81662bd0 t serial8250_rpm_get_tx
+ffffffff81662c10 t serial8250_rpm_put_tx
+ffffffff81662c60 t serial8250_em485_stop_tx
+ffffffff81662dc0 t serial8250_em485_start_tx
+ffffffff81662f10 t serial8250_stop_rx
+ffffffff81662fa0 t serial8250_read_char
+ffffffff816630e0 t uart_handle_break
+ffffffff81663180 t serial8250_rx_chars
+ffffffff816631f0 t serial8250_tx_chars
+ffffffff81663380 t serial8250_stop_tx
+ffffffff81663430 t __stop_tx
+ffffffff81663580 t serial8250_modem_status
+ffffffff81663640 t serial8250_handle_irq
+ffffffff81663810 t serial8250_do_get_mctrl
+ffffffff816638e0 t serial8250_do_set_mctrl
+ffffffff81663940 t serial8250_do_startup
+ffffffff816642f0 t serial8250_tx_threshold_handle_irq
+ffffffff81664360 t wait_for_xmitr
+ffffffff81664460 t serial8250_set_mctrl
+ffffffff816644f0 t serial8250_do_shutdown
+ffffffff816646e0 t serial8250_do_set_divisor
+ffffffff81664740 t serial8250_update_uartclk
+ffffffff81664a50 t serial8250_do_set_termios
+ffffffff81664ff0 t serial8250_do_set_ldisc
+ffffffff81665090 t serial8250_enable_ms
+ffffffff81665130 t serial8250_do_pm
+ffffffff816652a0 t serial8250_init_port
+ffffffff816652d0 t serial8250_set_defaults
+ffffffff81665410 t serial8250_tx_dma
+ffffffff81665420 t serial8250_rx_dma
+ffffffff81665430 t serial8250_console_write
+ffffffff816659e0 t serial8250_console_putchar
+ffffffff81665a20 t serial8250_console_setup
+ffffffff81665bc0 t serial8250_console_exit
+ffffffff81665bf0 t serial8250_em485_handle_stop_tx
+ffffffff81665c90 t serial8250_em485_handle_start_tx
+ffffffff81665dc0 t default_serial_dl_read
+ffffffff81665e10 t default_serial_dl_write
+ffffffff81665e50 t hub6_serial_in
+ffffffff81665e80 t hub6_serial_out
+ffffffff81665eb0 t mem_serial_in
+ffffffff81665ee0 t mem_serial_out
+ffffffff81665f00 t mem16_serial_in
+ffffffff81665f30 t mem16_serial_out
+ffffffff81665f50 t mem32be_serial_in
+ffffffff81665f80 t mem32be_serial_out
+ffffffff81665fb0 t serial8250_default_handle_irq
+ffffffff81666040 t serial8250_tx_empty
+ffffffff81666100 t serial8250_get_mctrl
+ffffffff81666130 t serial8250_start_tx
+ffffffff81666310 t serial8250_throttle
+ffffffff81666330 t serial8250_unthrottle
+ffffffff81666350 t serial8250_break_ctl
+ffffffff81666400 t serial8250_startup
+ffffffff81666430 t serial8250_shutdown
+ffffffff81666460 t serial8250_set_termios
+ffffffff81666490 t serial8250_set_ldisc
+ffffffff816664c0 t serial8250_pm
+ffffffff816664f0 t serial8250_type
+ffffffff81666520 t serial8250_release_port
+ffffffff816665e0 t serial8250_request_port
+ffffffff816665f0 t serial8250_config_port
+ffffffff81667910 t serial8250_verify_port
+ffffffff81667960 t serial8250_request_std_resource
+ffffffff81667aa0 t size_fifo
+ffffffff81667df0 t rx_trig_bytes_show
+ffffffff81667eb0 t rx_trig_bytes_store
+ffffffff816680a0 t dw8250_do_set_termios
+ffffffff816680f0 t dw8250_setup_port
+ffffffff81668360 t dw8250_rs485_config
+ffffffff81668620 t dw8250_get_divisor
+ffffffff81668660 t dw8250_set_divisor
+ffffffff816686c0 t serial8250_early_in
+ffffffff81668770 t serial8250_early_out
+ffffffff81668820 t early_serial8250_write
+ffffffff81668840 t serial_putc
+ffffffff81668960 t lpss8250_probe
+ffffffff81668c00 t lpss8250_remove
+ffffffff81668c50 t qrk_serial_setup
+ffffffff81668c60 t qrk_serial_exit
+ffffffff81668c70 t ehl_serial_setup
+ffffffff81668ca0 t ehl_serial_exit
+ffffffff81668cc0 t byt_serial_setup
+ffffffff81668da0 t byt_serial_exit
+ffffffff81668dc0 t byt_set_termios
+ffffffff81668ed0 t byt_get_mctrl
+ffffffff81668ef0 t lpss8250_dma_filter
+ffffffff81668f20 t mid8250_probe
+ffffffff81669180 t mid8250_remove
+ffffffff816691b0 t pnw_setup
+ffffffff81669210 t pnw_exit
+ffffffff81669230 t tng_setup
+ffffffff81669290 t tng_exit
+ffffffff816692b0 t tng_handle_irq
+ffffffff816692f0 t dnv_setup
+ffffffff816693d0 t dnv_exit
+ffffffff816693e0 t mid8250_set_termios
+ffffffff81669550 t mid8250_dma_filter
+ffffffff81669580 t pericom8250_probe
+ffffffff816697b0 t pericom8250_remove
+ffffffff816697f0 t pericom_do_set_divisor
+ffffffff81669900 t of_platform_serial_probe
+ffffffff81669fb0 t of_platform_serial_remove
+ffffffff8166a010 t of_serial_suspend
+ffffffff8166a080 t of_serial_resume
+ffffffff8166a0f0 t mctrl_gpio_set
+ffffffff8166a1e0 t mctrl_gpio_to_gpiod
+ffffffff8166a210 t mctrl_gpio_get
+ffffffff8166a2c0 t mctrl_gpio_get_outputs
+ffffffff8166a320 t mctrl_gpio_init_noauto
+ffffffff8166a420 t mctrl_gpio_init
+ffffffff8166a540 t mctrl_gpio_irq_handle
+ffffffff8166a660 t mctrl_gpio_free
+ffffffff8166a790 t mctrl_gpio_enable_ms
+ffffffff8166a810 t mctrl_gpio_disable_ms
+ffffffff8166a880 t mctrl_gpio_enable_irq_wake
+ffffffff8166a910 t mctrl_gpio_disable_irq_wake
+ffffffff8166a980 t ttynull_device
+ffffffff8166a9a0 t ttynull_open
+ffffffff8166a9c0 t ttynull_close
+ffffffff8166a9e0 t ttynull_write
+ffffffff8166a9f0 t ttynull_write_room
+ffffffff8166aa00 t ttynull_hangup
+ffffffff8166aa20 t mem_devnode
+ffffffff8166aa80 t memory_open
+ffffffff8166ab00 t null_lseek
+ffffffff8166ab20 t read_null
+ffffffff8166ab30 t write_null
+ffffffff8166ab40 t read_iter_null
+ffffffff8166ab50 t write_iter_null
+ffffffff8166ab70 t splice_write_null
+ffffffff8166ab90 t uring_cmd_null
+ffffffff8166aba0 t pipe_to_null
+ffffffff8166abb0 t read_zero
+ffffffff8166ac60 t read_iter_zero
+ffffffff8166ad30 t mmap_zero
+ffffffff8166ad60 t get_unmapped_area_zero
+ffffffff8166ada0 t write_full
+ffffffff8166adc0 t rng_is_initialized
+ffffffff8166ade0 t wait_for_random_bytes
+ffffffff8166af15 t try_to_generate_entropy
+ffffffff8166b050 t get_random_bytes
+ffffffff8166b060 t _get_random_bytes.llvm.16516136116802074300
+ffffffff8166b270 t get_random_u8
+ffffffff8166b4c0 t get_random_u16
+ffffffff8166b720 t get_random_u32
+ffffffff8166b980 t get_random_u64
+ffffffff8166bbe0 t __get_random_u32_below
+ffffffff8166bc30 t random_prepare_cpu
+ffffffff8166bca0 t crng_reseed
+ffffffff8166bdae t _credit_init_bits
+ffffffff8166beda t crng_set_ready
+ffffffff8166bf00 t add_device_randomness
+ffffffff8166bfa0 t add_hwgenerator_randomness
+ffffffff8166c070 t mix_pool_bytes
+ffffffff8166c0bb t random_online_cpu
+ffffffff8166c0f0 t add_interrupt_randomness
+ffffffff8166c250 t add_input_randomness
+ffffffff8166c290 t add_timer_randomness
+ffffffff8166c4d0 t add_disk_randomness
+ffffffff8166c502 t rand_initialize_disk
+ffffffff8166c540 t __x64_sys_getrandom
+ffffffff8166c620 t random_read_iter
+ffffffff8166c670 t random_write_iter
+ffffffff8166c690 t random_poll
+ffffffff8166c6e0 t random_ioctl
+ffffffff8166ca20 t random_fasync
+ffffffff8166ca40 t urandom_read_iter
+ffffffff8166cae0 t crng_make_state
+ffffffff8166cf10 t extract_entropy
+ffffffff8166d470 t crng_fast_key_erasure
+ffffffff8166d600 t random_pm_notification
+ffffffff8166d7f0 t mix_interrupt_randomness
+ffffffff8166d90c t entropy_timer
+ffffffff8166d950 t get_random_bytes_user
+ffffffff8166dba0 t write_pool_user
+ffffffff8166dd20 t proc_do_rointvec
+ffffffff8166dd60 t proc_do_uuid
+ffffffff8166dec0 t misc_register
+ffffffff8166e020 t misc_deregister
+ffffffff8166e0c0 t misc_devnode
+ffffffff8166e100 t misc_seq_start
+ffffffff8166e130 t misc_seq_stop
+ffffffff8166e150 t misc_seq_next
+ffffffff8166e170 t misc_seq_show
+ffffffff8166e1a0 t misc_open
+ffffffff8166e2c0 t reclaim_dma_bufs
+ffffffff8166e490 t get_chars
+ffffffff8166e540 t put_chars
+ffffffff8166e750 t notifier_add_vio
+ffffffff8166e850 t notifier_del_vio
+ffffffff8166e870 t fill_readbuf
+ffffffff8166eac0 t reclaim_consumed_buffers
+ffffffff8166ebd0 t free_buf
+ffffffff8166ec50 t virtcons_probe
+ffffffff8166eff0 t virtcons_remove
+ffffffff8166f110 t config_intr
+ffffffff8166f150 t virtcons_freeze
+ffffffff8166f250 t virtcons_restore
+ffffffff8166f3a0 t config_work_handler
+ffffffff8166f510 t control_work_handler
+ffffffff8166fa70 t fill_queue
+ffffffff8166fc10 t __send_control_msg
+ffffffff8166fd70 t add_port
+ffffffff816700f0 t in_intr
+ffffffff81670290 t out_intr
+ffffffff81670330 t control_intr
+ffffffff81670360 t flush_bufs
+ffffffff81670460 t discard_port_data
+ffffffff816706a0 t unplug_port
+ffffffff81670870 t init_port_console
+ffffffff81670970 t show_port_name
+ffffffff816709a0 t port_fops_read
+ffffffff81670c00 t port_fops_write
+ffffffff81670e30 t port_fops_poll
+ffffffff81670ef0 t port_fops_open
+ffffffff816710d0 t port_fops_release
+ffffffff81671180 t port_fops_fasync
+ffffffff816711a0 t port_fops_splice_write
+ffffffff81671400 t will_read_block
+ffffffff816714d0 t wait_port_writable
+ffffffff816716a0 t pipe_to_sg
+ffffffff81671870 t port_debugfs_open
+ffffffff816718a0 t port_debugfs_show
+ffffffff816719a0 t remove_vqs
+ffffffff81671ad0 t hpet_alloc
+ffffffff81671fc0 t hpet_read
+ffffffff81672120 t hpet_poll
+ffffffff81672190 t hpet_ioctl
+ffffffff81672640 t hpet_mmap
+ffffffff816726c0 t hpet_open
+ffffffff816728d0 t hpet_release
+ffffffff81672970 t hpet_fasync
+ffffffff816729a0 t hpet_interrupt
+ffffffff81672ad0 t hpet_acpi_add
+ffffffff81672ba0 t hpet_resources
+ffffffff81672d70 t hwrng_register
+ffffffff81672f70 t set_current_rng
+ffffffff81673110 t add_early_randomness
+ffffffff816731c0 t hwrng_unregister
+ffffffff816733d0 t enable_best_rng
+ffffffff816734b0 t devm_hwrng_register
+ffffffff81673530 t devm_hwrng_release
+ffffffff81673550 t devm_hwrng_unregister
+ffffffff81673580 t devm_hwrng_match
+ffffffff816735b0 t hwrng_msleep
+ffffffff816735e0 t rng_dev_read
+ffffffff81673960 t rng_dev_open
+ffffffff81673990 t rng_current_show
+ffffffff81673ad0 t rng_current_store
+ffffffff81673c70 t rng_available_show
+ffffffff81673d20 t rng_selected_show
+ffffffff81673d50 t rng_quality_show
+ffffffff81673e80 t rng_quality_store
+ffffffff81673f70 t hwrng_fillfn
+ffffffff81674200 t intel_rng_init
+ffffffff81674240 t intel_rng_cleanup
+ffffffff81674270 t intel_rng_data_present
+ffffffff816742c0 t intel_rng_data_read
+ffffffff816742e0 t amd_rng_init
+ffffffff81674380 t amd_rng_cleanup
+ffffffff816743f0 t amd_rng_read
+ffffffff81674490 t via_rng_init
+ffffffff816745c0 t via_rng_data_present
+ffffffff81674680 t via_rng_data_read
+ffffffff816746a0 t virtrng_probe
+ffffffff816746b0 t virtrng_scan
+ffffffff816746e0 t virtrng_remove
+ffffffff81674760 t virtrng_freeze
+ffffffff816747f0 t virtrng_restore
+ffffffff81674830 t probe_common
+ffffffff81674b10 t virtio_cleanup
+ffffffff81674b30 t virtio_read
+ffffffff81674dc0 t random_recv_done
+ffffffff81674e10 t iommu_device_register
+ffffffff81674f90 t bus_iommu_probe
+ffffffff816753e0 t iommu_device_unregister
+ffffffff81675470 t remove_iommu_group
+ffffffff816754a0 t iommu_probe_device
+ffffffff816756e0 t __iommu_probe_device
+ffffffff816759e0 t iommu_group_get
+ffffffff81675a10 t __iommu_attach_device
+ffffffff81675a90 t iommu_group_put
+ffffffff81675ab0 t iommu_create_device_direct_mappings
+ffffffff81675d10 t iommu_release_device
+ffffffff81675da0 t iommu_group_remove_device
+ffffffff81675f00 t iommu_set_dma_strict
+ffffffff81675f30 t iommu_get_group_resv_regions
+ffffffff816762f0 t iommu_get_resv_regions
+ffffffff81676320 t iommu_put_resv_regions
+ffffffff81676380 t iommu_group_alloc
+ffffffff816764e0 t iommu_group_get_by_id
+ffffffff81676560 t iommu_group_get_iommudata
+ffffffff81676580 t iommu_group_set_iommudata
+ffffffff816765a0 t iommu_group_set_name
+ffffffff81676650 t iommu_group_add_device
+ffffffff81676920 t trace_add_device_to_group
+ffffffff81676980 t iommu_group_for_each_dev
+ffffffff81676a00 t iommu_group_ref_get
+ffffffff81676a20 t iommu_register_device_fault_handler
+ffffffff81676b00 t iommu_unregister_device_fault_handler
+ffffffff81676b80 t iommu_report_device_fault
+ffffffff81676cf0 t iommu_page_response
+ffffffff81676e90 t iommu_group_id
+ffffffff81676eb0 t generic_device_group
+ffffffff81676ec0 t pci_device_group
+ffffffff81677020 t get_pci_alias_or_group
+ffffffff81677060 t get_pci_alias_group
+ffffffff81677140 t get_pci_function_alias_group
+ffffffff81677220 t fsl_mc_device_group
+ffffffff81677260 t iommu_group_default_domain
+ffffffff81677280 t probe_iommu_group
+ffffffff816772c0 t iommu_present
+ffffffff816772e0 t device_iommu_capable
+ffffffff81677320 t iommu_set_fault_handler
+ffffffff81677340 t iommu_domain_alloc
+ffffffff816773b0 t __iommu_domain_alloc
+ffffffff81677470 t iommu_domain_free
+ffffffff816774b0 t iommu_attach_device
+ffffffff81677540 t __iommu_attach_group
+ffffffff81677670 t iommu_deferred_attach
+ffffffff81677720 t iommu_detach_device
+ffffffff816777e0 t iommu_get_domain_for_dev
+ffffffff81677820 t iommu_get_dma_domain
+ffffffff81677840 t iommu_attach_group
+ffffffff81677890 t iommu_detach_group
+ffffffff816778f0 t iommu_iova_to_phys
+ffffffff81677930 t iommu_map
+ffffffff816779b0 t iommu_map_atomic
+ffffffff81677a10 t iommu_unmap
+ffffffff81677ab0 t __iommu_unmap.llvm.15732399134578047663
+ffffffff81677cb0 t iommu_unmap_fast
+ffffffff81677cc0 t iommu_map_sg
+ffffffff81677d10 t __iommu_map_sg.llvm.15732399134578047663
+ffffffff81677ec0 t iommu_map_sg_atomic
+ffffffff81677ee0 t report_iommu_fault
+ffffffff81677f80 t iommu_enable_nesting
+ffffffff81677fb0 t iommu_set_pgtable_quirks
+ffffffff81677fe0 t iommu_alloc_resv_region
+ffffffff81678070 t iommu_set_default_passthrough
+ffffffff81678090 t iommu_set_default_translated
+ffffffff816780b0 t iommu_default_passthrough
+ffffffff816780d0 t iommu_ops_from_fwnode
+ffffffff81678130 t iommu_fwspec_init
+ffffffff816781f0 t iommu_fwspec_free
+ffffffff81678240 t iommu_fwspec_add_ids
+ffffffff81678380 t iommu_dev_enable_feature
+ffffffff816783c0 t iommu_dev_disable_feature
+ffffffff81678400 t iommu_device_use_default_domain
+ffffffff816784b0 t iommu_device_unuse_default_domain
+ffffffff81678520 t iommu_group_claim_dma_owner
+ffffffff816786b0 t __iommu_group_set_domain
+ffffffff81678850 t iommu_group_release_dma_owner
+ffffffff816788e0 t iommu_group_dma_owner_claimed
+ffffffff81678920 t iommu_attach_device_pasid
+ffffffff81678ab0 t iommu_detach_device_pasid
+ffffffff81678b70 t iommu_get_domain_for_dev_pasid
+ffffffff81678bf0 t iommu_sva_domain_alloc
+ffffffff81678c40 t iommu_sva_handle_iopf
+ffffffff81678c50 t iommu_bus_notifier
+ffffffff81678c90 t iommu_group_release
+ffffffff81678d60 t iommu_group_attr_show
+ffffffff81678d90 t iommu_group_attr_store
+ffffffff81678dc0 t iommu_group_show_resv_regions
+ffffffff81678e90 t iommu_group_show_type
+ffffffff81678f00 t iommu_group_store_type
+ffffffff81679410 t iommu_group_alloc_default_domain
+ffffffff816794a0 t iommu_group_show_name
+ffffffff816794d0 t __iommu_map
+ffffffff81679800 t __traceiter_add_device_to_group
+ffffffff81679850 t __traceiter_remove_device_from_group
+ffffffff816798a0 t __traceiter_attach_device_to_domain
+ffffffff816798f0 t __traceiter_detach_device_from_domain
+ffffffff81679940 t __traceiter_map
+ffffffff816799a0 t __traceiter_unmap
+ffffffff81679a00 t __traceiter_io_page_fault
+ffffffff81679a60 t trace_event_raw_event_iommu_group_event
+ffffffff81679b90 t perf_trace_iommu_group_event
+ffffffff81679d00 t trace_event_raw_event_iommu_device_event
+ffffffff81679e20 t perf_trace_iommu_device_event
+ffffffff81679f90 t trace_event_raw_event_map
+ffffffff8167a060 t perf_trace_map
+ffffffff8167a170 t trace_event_raw_event_unmap
+ffffffff8167a240 t perf_trace_unmap
+ffffffff8167a350 t trace_event_raw_event_iommu_error
+ffffffff8167a510 t perf_trace_iommu_error
+ffffffff8167a720 t trace_raw_output_iommu_group_event
+ffffffff8167a780 t trace_raw_output_iommu_device_event
+ffffffff8167a7e0 t trace_raw_output_map
+ffffffff8167a840 t trace_raw_output_unmap
+ffffffff8167a8a0 t trace_raw_output_iommu_error
+ffffffff8167a910 t iommu_device_sysfs_add
+ffffffff8167aa50 t iommu_device_sysfs_remove
+ffffffff8167aa80 t iommu_device_link
+ffffffff8167ab20 t iommu_device_unlink
+ffffffff8167ab70 t release_device
+ffffffff8167ab80 t iommu_dma_init_fq
+ffffffff8167ace0 t fq_flush_timeout
+ffffffff8167ae50 t iommu_get_dma_cookie
+ffffffff8167aee0 t iommu_get_msi_cookie
+ffffffff8167af60 t iommu_put_dma_cookie
+ffffffff8167b110 t iommu_dma_get_resv_regions
+ffffffff8167b120 t iommu_setup_dma_ops
+ffffffff8167b620 t iommu_dma_prepare_msi
+ffffffff8167b7e0 t iommu_dma_compose_msi_msg
+ffffffff8167b840 t iommu_dma_ranges_sort
+ffffffff8167b860 t iommu_dma_alloc
+ffffffff8167ba60 t iommu_dma_free
+ffffffff8167ba90 t iommu_dma_alloc_noncontiguous
+ffffffff8167bb30 t iommu_dma_free_noncontiguous
+ffffffff8167bbb0 t iommu_dma_mmap
+ffffffff8167bc90 t iommu_dma_get_sgtable
+ffffffff8167bd90 t iommu_dma_map_page
+ffffffff8167bf90 t iommu_dma_unmap_page
+ffffffff8167c020 t iommu_dma_map_sg
+ffffffff8167c390 t iommu_dma_unmap_sg
+ffffffff8167c470 t iommu_dma_map_resource
+ffffffff8167c4d0 t iommu_dma_unmap_resource
+ffffffff8167c4e0 t iommu_dma_sync_single_for_cpu
+ffffffff8167c560 t iommu_dma_sync_single_for_device
+ffffffff8167c5e0 t iommu_dma_sync_sg_for_cpu
+ffffffff8167c6b0 t iommu_dma_sync_sg_for_device
+ffffffff8167c780 t iommu_dma_opt_mapping_size
+ffffffff8167c790 t iommu_dma_get_merge_boundary
+ffffffff8167c7d0 t __iommu_dma_map
+ffffffff8167c8f0 t __iommu_dma_free
+ffffffff8167ca00 t __iommu_dma_alloc_noncontiguous
+ffffffff8167cd80 t __iommu_dma_unmap
+ffffffff8167d1b0 t iommu_dma_alloc_iova
+ffffffff8167d2a0 t __finalise_sg
+ffffffff8167d440 t iommu_dma_unmap_sg_swiotlb
+ffffffff8167d510 t iova_rcache_range
+ffffffff8167d520 t init_iova_domain
+ffffffff8167d640 t iova_cache_get
+ffffffff8167d740 t iova_cpuhp_dead
+ffffffff8167d760 t iova_cache_put
+ffffffff8167d7c0 t alloc_iova
+ffffffff8167da40 t find_iova
+ffffffff8167dab0 t __free_iova
+ffffffff8167db00 t remove_iova
+ffffffff8167db90 t free_iova
+ffffffff8167dc30 t alloc_iova_fast
+ffffffff8167df00 t free_cpu_cached_iovas
+ffffffff8167e100 t free_iova_fast
+ffffffff8167e280 t put_iova_domain
+ffffffff8167e300 t reserve_iova
+ffffffff8167e470 t iova_domain_init_rcaches
+ffffffff8167e600 t free_iova_rcaches
+ffffffff8167e760 t iova_magazine_free_pfns
+ffffffff8167e830 t of_iommu_configure
+ffffffff8167eb70 t of_pci_iommu_init
+ffffffff8167ebc0 t of_iommu_configure_dev_id
+ffffffff8167ed20 t component_compare_of
+ffffffff8167ed40 t component_release_of
+ffffffff8167ed50 t component_compare_dev
+ffffffff8167ed70 t component_compare_dev_name
+ffffffff8167ed80 t component_match_add_release
+ffffffff8167eda0 t __component_match_add
+ffffffff8167ef50 t component_match_add_typed
+ffffffff8167ef70 t component_master_add_with_match
+ffffffff8167f0f0 t try_to_bring_up_aggregate_device
+ffffffff8167f2d0 t free_aggregate_device
+ffffffff8167f380 t component_master_del
+ffffffff8167f420 t component_unbind_all
+ffffffff8167f510 t component_bind_all
+ffffffff8167f750 t component_add_typed
+ffffffff8167f780 t __component_add
+ffffffff8167f8f0 t component_add
+ffffffff8167f910 t component_del
+ffffffff8167fa40 t devm_component_match_release
+ffffffff8167fab0 t component_devices_open
+ffffffff8167fae0 t component_devices_show
+ffffffff8167fc30 t fwnode_link_add
+ffffffff8167fc70 t __fwnode_link_add
+ffffffff8167fd70 t fwnode_links_purge
+ffffffff8167fd90 t fwnode_links_purge_suppliers
+ffffffff8167fe60 t fwnode_links_purge_consumers
+ffffffff8167ff30 t fw_devlink_purge_absent_suppliers
+ffffffff8167ff90 t device_links_read_lock
+ffffffff8167ffb0 t device_links_read_unlock
+ffffffff8167ffe0 t device_links_read_lock_held
+ffffffff8167fff0 t device_is_dependent
+ffffffff81680130 t device_for_each_child
+ffffffff816801e0 t device_pm_move_to_tail
+ffffffff81680240 t device_reorder_to_tail
+ffffffff816803b0 t device_link_add
+ffffffff816808c0 t kref_get
+ffffffff81680900 t kref_get
+ffffffff81680940 t device_link_init_status
+ffffffff816809d0 t get_device
+ffffffff816809f0 t dev_set_name
+ffffffff81680a70 t device_register
+ffffffff81680a90 t put_device
+ffffffff81680ab0 t device_link_del
+ffffffff81680ae0 t device_link_put_kref
+ffffffff81680bb0 t device_link_remove
+ffffffff81680c20 t device_links_check_suppliers
+ffffffff81680e40 t dev_err_probe
+ffffffff81680ef0 t device_links_supplier_sync_state_pause
+ffffffff81680f20 t device_links_supplier_sync_state_resume
+ffffffff81681020 t __device_links_queue_sync_state
+ffffffff81681110 t device_links_flush_sync_list
+ffffffff816811f0 t device_links_force_bind
+ffffffff81681280 t device_link_drop_managed
+ffffffff81681340 t device_links_driver_bound
+ffffffff816816e0 t __fw_devlink_pickup_dangling_consumers
+ffffffff81681830 t __fw_devlink_link_to_consumers
+ffffffff816819a0 t device_remove_file
+ffffffff816819c0 t device_links_no_driver
+ffffffff81681ac0 t device_links_driver_cleanup
+ffffffff81681c30 t device_links_busy
+ffffffff81681cc0 t device_links_unbind_consumers
+ffffffff81681dd0 t fw_devlink_is_strict
+ffffffff81681e00 t fw_devlink_drivers_done
+ffffffff81681e50 t fw_devlink_no_driver.llvm.1475585395194520759
+ffffffff81681ea0 t lock_device_hotplug
+ffffffff81681ec0 t unlock_device_hotplug
+ffffffff81681ee0 t lock_device_hotplug_sysfs
+ffffffff81681f30 t dev_driver_string
+ffffffff81681f70 t device_store_ulong
+ffffffff81681fe0 t device_show_ulong
+ffffffff81682010 t device_store_int
+ffffffff81682090 t device_show_int
+ffffffff816820c0 t device_store_bool
+ffffffff816820f0 t device_show_bool
+ffffffff81682120 t device_add_groups
+ffffffff81682130 t device_remove_groups
+ffffffff81682140 t devm_device_add_group
+ffffffff816821d0 t devm_attr_group_remove
+ffffffff816821f0 t devm_device_remove_group
+ffffffff81682220 t devm_attr_group_match
+ffffffff81682240 t devm_device_add_groups
+ffffffff816822d0 t devm_attr_groups_remove
+ffffffff816822f0 t devm_device_remove_groups
+ffffffff81682320 t devices_kset_move_last
+ffffffff816823b0 t device_create_file
+ffffffff81682430 t device_remove_file_self
+ffffffff81682450 t device_create_bin_file
+ffffffff81682470 t device_remove_bin_file
+ffffffff81682490 t device_initialize
+ffffffff816825a0 t virtual_device_parent
+ffffffff816825e0 t device_add
+ffffffff81682b80 t get_device_parent
+ffffffff81682d30 t device_add_attrs
+ffffffff81682f20 t device_create_sys_dev_entry
+ffffffff81682fd0 t fw_devlink_link_device
+ffffffff81683030 t fw_devlink_unblock_consumers
+ffffffff816830c0 t device_remove_attrs
+ffffffff816831b0 t device_remove_class_symlinks
+ffffffff81683240 t cleanup_glue_dir
+ffffffff816832d0 t kill_device
+ffffffff81683300 t device_del
+ffffffff81683760 t device_unregister
+ffffffff81683790 t device_get_devnode
+ffffffff81683860 t device_for_each_child_reverse
+ffffffff81683920 t device_find_child
+ffffffff816839f0 t device_find_child_by_name
+ffffffff81683ac0 t device_find_any_child
+ffffffff81683b60 t device_offline
+ffffffff81683c80 t device_check_offline
+ffffffff81683d60 t device_online
+ffffffff81683df0 t __root_device_register
+ffffffff81683ec0 t root_device_release
+ffffffff81683ed0 t root_device_unregister
+ffffffff81683f10 t device_create
+ffffffff81684050 t device_create_with_groups
+ffffffff81684190 t device_destroy
+ffffffff81684200 t device_rename
+ffffffff816842c0 t device_move
+ffffffff81684500 t devices_kset_move_after
+ffffffff81684590 t devices_kset_move_before
+ffffffff81684630 t device_change_owner
+ffffffff816847a0 t device_shutdown
+ffffffff816849b9 t _dev_info
+ffffffff81684a41 t dev_vprintk_emit
+ffffffff81684ba1 t dev_printk_emit
+ffffffff81684c0c t _dev_printk
+ffffffff81684c90 t __dev_printk
+ffffffff81684d0c t _dev_emerg
+ffffffff81684d94 t _dev_alert
+ffffffff81684e1c t _dev_crit
+ffffffff81684ea4 t _dev_err
+ffffffff81684f2c t _dev_warn
+ffffffff81684fb4 t _dev_notice
+ffffffff81685040 t set_primary_fwnode
+ffffffff816850d0 t set_secondary_fwnode
+ffffffff81685110 t device_set_of_node_from_dev
+ffffffff81685130 t device_set_node
+ffffffff81685170 t device_match_name
+ffffffff816851a0 t device_match_of_node
+ffffffff816851c0 t device_match_fwnode
+ffffffff816851e0 t device_match_devt
+ffffffff81685200 t device_match_acpi_dev
+ffffffff81685240 t device_match_acpi_handle
+ffffffff81685280 t device_match_any
+ffffffff81685290 t devlink_add_symlinks
+ffffffff81685550 t devlink_remove_symlinks
+ffffffff81685710 t devlink_dev_release
+ffffffff81685770 t auto_remove_on_show
+ffffffff816857c0 t runtime_pm_show
+ffffffff816857f0 t sync_state_only_show
+ffffffff81685820 t device_link_release_fn
+ffffffff816858b0 t waiting_for_supplier_show
+ffffffff81685950 t fw_devlink_create_devlink
+ffffffff81685b60 t __fw_devlink_relax_cycles
+ffffffff81685d90 t device_release
+ffffffff81685e20 t device_namespace
+ffffffff81685e60 t device_get_ownership
+ffffffff81685e90 t dev_attr_show
+ffffffff81685ee0 t dev_attr_store
+ffffffff81685f10 t klist_children_get
+ffffffff81685f30 t klist_children_put
+ffffffff81685f50 t class_dir_release
+ffffffff81685f60 t class_dir_child_ns_type
+ffffffff81685f80 t uevent_show
+ffffffff81686090 t uevent_store
+ffffffff816860e0 t uevent_store
+ffffffff81686110 t online_show
+ffffffff81686170 t online_store
+ffffffff816862b0 t removable_show
+ffffffff81686300 t removable_show
+ffffffff81686330 t dev_show
+ffffffff81686360 t fw_devlink_parse_fwtree
+ffffffff816863f0 t __fw_devlink_link_to_suppliers
+ffffffff81686550 t dev_uevent_filter
+ffffffff81686590 t dev_uevent_name
+ffffffff816865c0 t dev_uevent
+ffffffff81686790 t device_create_release
+ffffffff816867a0 t device_create_release
+ffffffff816867b0 t device_create_release
+ffffffff816867c0 t bus_create_file
+ffffffff81686830 t bus_remove_file
+ffffffff81686890 t bus_for_each_dev
+ffffffff81686960 t bus_find_device
+ffffffff81686a50 t subsys_find_device_by_id
+ffffffff81686b80 t bus_for_each_drv
+ffffffff81686c70 t bus_add_device
+ffffffff81686da0 t bus_probe_device
+ffffffff81686e60 t bus_remove_device
+ffffffff81686f80 t bus_add_driver
+ffffffff81687210 t bus_remove_driver
+ffffffff816872c0 t bus_rescan_devices
+ffffffff816873e0 t device_reprobe
+ffffffff81687480 t bus_register
+ffffffff81687730 t klist_devices_get
+ffffffff81687750 t klist_devices_put
+ffffffff81687770 t add_probe_files
+ffffffff81687870 t remove_probe_files
+ffffffff81687910 t bus_unregister
+ffffffff816879d0 t bus_register_notifier
+ffffffff81687a00 t bus_unregister_notifier
+ffffffff81687a20 t bus_get_kset
+ffffffff81687a40 t bus_get_device_klist
+ffffffff81687a60 t bus_sort_breadthfirst
+ffffffff81687c40 t subsys_dev_iter_init
+ffffffff81687c80 t subsys_dev_iter_next
+ffffffff81687cc0 t subsys_dev_iter_exit
+ffffffff81687cd0 t subsys_interface_register
+ffffffff81687e40 t subsys_interface_unregister
+ffffffff81687f80 t subsys_system_register
+ffffffff81687fa0 t subsys_register.llvm.1433001412085596008
+ffffffff81688070 t subsys_virtual_register
+ffffffff816880b0 t driver_release
+ffffffff816880c0 t drv_attr_show
+ffffffff81688100 t drv_attr_store
+ffffffff81688140 t unbind_store
+ffffffff816882a0 t bind_store
+ffffffff81688420 t bus_release
+ffffffff81688450 t bus_attr_show
+ffffffff81688480 t bus_attr_store
+ffffffff816884b0 t bus_uevent_store
+ffffffff816884e0 t drivers_probe_store
+ffffffff81688660 t drivers_autoprobe_show
+ffffffff81688690 t drivers_autoprobe_store
+ffffffff816886c0 t system_root_device_release
+ffffffff816886d0 t bus_uevent_filter
+ffffffff816886f0 t driver_deferred_probe_add
+ffffffff81688780 t driver_deferred_probe_del
+ffffffff81688820 t driver_deferred_probe_trigger
+ffffffff816888c0 t device_block_probing
+ffffffff816888e0 t wait_for_device_probe
+ffffffff816889c0 t device_unblock_probing
+ffffffff81688a70 t device_set_deferred_probe_reason
+ffffffff81688ae0 t driver_deferred_probe_check_state
+ffffffff81688b20 t deferred_probe_extend_timeout
+ffffffff81688b60 t device_is_bound
+ffffffff81688b90 t device_bind_driver
+ffffffff81688c60 t driver_bound
+ffffffff81688e10 t driver_probe_done
+ffffffff81688e30 t driver_allows_async_probing
+ffffffff81688e90 t device_attach
+ffffffff81688eb0 t __device_attach.llvm.3092248548741608916
+ffffffff81689020 t device_initial_probe
+ffffffff81689040 t device_driver_attach
+ffffffff816890f0 t __driver_probe_device
+ffffffff816891d0 t driver_attach
+ffffffff816891f0 t __driver_attach.llvm.3092248548741608916
+ffffffff816893d0 t device_release_driver_internal
+ffffffff816896d0 t device_release_driver
+ffffffff816896f0 t device_driver_detach
+ffffffff81689710 t driver_detach
+ffffffff816897e0 t deferred_probe_work_func
+ffffffff816898d0 t deferred_probe_timeout_work_func
+ffffffff81689a00 t deferred_devs_open
+ffffffff81689a30 t deferred_devs_show
+ffffffff81689ad0 t __device_attach_driver
+ffffffff81689c10 t __device_attach_async_helper
+ffffffff81689ce0 t driver_probe_device
+ffffffff81689e70 t really_probe
+ffffffff8168a240 t device_remove
+ffffffff8168a2c0 t state_synced_show
+ffffffff8168a320 t coredump_store
+ffffffff8168a370 t __driver_attach_async_helper
+ffffffff8168a420 t register_syscore_ops
+ffffffff8168a480 t unregister_syscore_ops
+ffffffff8168a4e0 t syscore_suspend
+ffffffff8168a6f0 t syscore_resume
+ffffffff8168a890 t syscore_shutdown
+ffffffff8168a910 t driver_set_override
+ffffffff8168aa10 t driver_for_each_device
+ffffffff8168aaf0 t driver_find_device
+ffffffff8168abe0 t driver_create_file
+ffffffff8168ac10 t driver_remove_file
+ffffffff8168ac40 t driver_add_groups
+ffffffff8168ac60 t driver_remove_groups
+ffffffff8168ac80 t driver_register
+ffffffff8168adb0 t driver_find
+ffffffff8168ae00 t driver_unregister
+ffffffff8168ae50 t class_create_file_ns
+ffffffff8168ae80 t class_remove_file_ns
+ffffffff8168aea0 t __class_register
+ffffffff8168b020 t klist_class_dev_get
+ffffffff8168b040 t klist_class_dev_put
+ffffffff8168b060 t class_unregister
+ffffffff8168b090 t __class_create
+ffffffff8168b110 t class_create_release
+ffffffff8168b120 t class_destroy
+ffffffff8168b160 t class_dev_iter_init
+ffffffff8168b1b0 t class_dev_iter_next
+ffffffff8168b1f0 t class_dev_iter_exit
+ffffffff8168b200 t class_for_each_device
+ffffffff8168b310 t class_find_device
+ffffffff8168b430 t class_interface_register
+ffffffff8168b590 t class_interface_unregister
+ffffffff8168b6b0 t show_class_attr_string
+ffffffff8168b6d0 t class_compat_register
+ffffffff8168b730 t class_compat_unregister
+ffffffff8168b750 t class_compat_create_link
+ffffffff8168b7d0 t class_compat_remove_link
+ffffffff8168b810 t class_release
+ffffffff8168b850 t class_child_ns_type
+ffffffff8168b870 t class_attr_show
+ffffffff8168b8a0 t class_attr_store
+ffffffff8168b8d0 t platform_get_resource
+ffffffff8168b920 t platform_get_mem_or_io
+ffffffff8168b970 t devm_platform_get_and_ioremap_resource
+ffffffff8168b9e0 t devm_platform_ioremap_resource
+ffffffff8168ba40 t devm_platform_ioremap_resource_byname
+ffffffff8168bad0 t platform_get_resource_byname
+ffffffff8168bb50 t platform_get_irq_optional
+ffffffff8168bce0 t platform_get_irq
+ffffffff8168bd20 t platform_irq_count
+ffffffff8168bd60 t devm_platform_get_irqs_affinity
+ffffffff8168bf60 t devm_platform_get_irqs_affinity_release
+ffffffff8168c020 t platform_get_irq_byname
+ffffffff8168c060 t __platform_get_irq_byname
+ffffffff8168c120 t platform_get_irq_byname_optional
+ffffffff8168c130 t platform_add_devices
+ffffffff8168c2c0 t platform_device_register
+ffffffff8168c340 t platform_device_unregister
+ffffffff8168c3f0 t platform_device_put
+ffffffff8168c420 t platform_device_alloc
+ffffffff8168c4f0 t platform_device_release
+ffffffff8168c540 t platform_device_add_resources
+ffffffff8168c5b0 t platform_device_add_data
+ffffffff8168c610 t platform_device_add
+ffffffff8168c820 t platform_device_del
+ffffffff8168c8c0 t platform_device_register_full
+ffffffff8168cb00 t __platform_driver_register
+ffffffff8168cb30 t platform_driver_unregister
+ffffffff8168cb50 t __platform_driver_probe
+ffffffff8168cc30 t platform_probe_fail
+ffffffff8168cc40 t __platform_create_bundle
+ffffffff8168ce90 t __platform_register_drivers
+ffffffff8168cf40 t platform_unregister_drivers
+ffffffff8168cf90 t platform_pm_suspend
+ffffffff8168cfe0 t platform_pm_resume
+ffffffff8168d030 t platform_match
+ffffffff8168d0f0 t platform_uevent
+ffffffff8168d140 t platform_probe
+ffffffff8168d1f0 t platform_remove
+ffffffff8168d240 t platform_shutdown
+ffffffff8168d270 t platform_dma_configure
+ffffffff8168d310 t platform_dma_cleanup
+ffffffff8168d340 t platform_find_device_by_driver
+ffffffff8168d370 t __platform_match
+ffffffff8168d380 t platform_dev_attrs_visible
+ffffffff8168d3b0 t numa_node_show
+ffffffff8168d3e0 t numa_node_show
+ffffffff8168d410 t numa_node_show
+ffffffff8168d440 t unregister_cpu
+ffffffff8168d480 t cpu_subsys_match
+ffffffff8168d4a0 t cpu_subsys_online
+ffffffff8168d4c0 t cpu_subsys_offline
+ffffffff8168d4d0 t register_cpu
+ffffffff8168d5f0 t cpu_device_release
+ffffffff8168d600 t cpu_uevent
+ffffffff8168d660 t get_cpu_device
+ffffffff8168d6b0 t cpu_device_create
+ffffffff8168d7c0 t cpu_is_hotpluggable
+ffffffff8168d810 t print_cpu_modalias
+ffffffff8168d8d0 t show_cpus_attr
+ffffffff8168d900 t print_cpus_kernel_max
+ffffffff8168d930 t print_cpus_offline
+ffffffff8168da40 t print_cpus_isolated
+ffffffff8168dad0 t kobj_map
+ffffffff8168dd00 t kobj_unmap
+ffffffff8168ddf0 t kobj_lookup
+ffffffff8168df20 t kobj_map_init
+ffffffff8168dff0 t __devres_alloc_node
+ffffffff8168e050 t devres_for_each_res
+ffffffff8168e120 t devres_free
+ffffffff8168e150 t devres_add
+ffffffff8168e1a0 t add_dr
+ffffffff8168e260 t devres_find
+ffffffff8168e310 t devres_get
+ffffffff8168e400 t devres_remove
+ffffffff8168e540 t devres_destroy
+ffffffff8168e580 t devres_release
+ffffffff8168e5e0 t devres_release_all
+ffffffff8168e6b0 t remove_nodes
+ffffffff8168e900 t release_nodes
+ffffffff8168e9b0 t devres_open_group
+ffffffff8168eab0 t group_open_release
+ffffffff8168eac0 t group_close_release
+ffffffff8168ead0 t devres_close_group
+ffffffff8168eb70 t devres_remove_group
+ffffffff8168ecc0 t devres_release_group
+ffffffff8168edc0 t devm_add_action
+ffffffff8168ee70 t devm_action_release
+ffffffff8168ee90 t devm_remove_action
+ffffffff8168ef10 t devm_action_match
+ffffffff8168ef40 t devm_release_action
+ffffffff8168efd0 t devm_kmalloc
+ffffffff8168f080 t devm_kmalloc_release
+ffffffff8168f090 t devm_krealloc
+ffffffff8168f2f0 t devm_kfree
+ffffffff8168f360 t devm_kmalloc_match
+ffffffff8168f380 t devm_kstrdup
+ffffffff8168f460 t devm_kstrdup_const
+ffffffff8168f4a0 t devm_kvasprintf
+ffffffff8168f5e0 t devm_kasprintf
+ffffffff8168f660 t devm_kmemdup
+ffffffff8168f730 t devm_get_free_pages
+ffffffff8168f800 t devm_pages_release
+ffffffff8168f820 t devm_free_pages
+ffffffff8168f8b0 t devm_pages_match
+ffffffff8168f8d0 t __devm_alloc_percpu
+ffffffff8168f990 t devm_percpu_release
+ffffffff8168f9b0 t devm_free_percpu
+ffffffff8168fa00 t devm_percpu_match
+ffffffff8168fa20 t attribute_container_classdev_to_container
+ffffffff8168fa30 t attribute_container_register
+ffffffff8168fab0 t internal_container_klist_get
+ffffffff8168fad0 t internal_container_klist_put
+ffffffff8168faf0 t attribute_container_unregister
+ffffffff8168fb80 t attribute_container_add_device
+ffffffff8168fd60 t attribute_container_release
+ffffffff8168fd90 t attribute_container_add_class_device
+ffffffff8168fe30 t attribute_container_remove_device
+ffffffff8168ffe0 t attribute_container_remove_attrs
+ffffffff81690060 t attribute_container_device_trigger_safe
+ffffffff81690320 t attribute_container_device_trigger
+ffffffff81690450 t attribute_container_trigger
+ffffffff816904d0 t attribute_container_add_attrs
+ffffffff81690560 t attribute_container_add_class_device_adapter
+ffffffff81690600 t attribute_container_class_device_del
+ffffffff81690690 t attribute_container_find_class_device
+ffffffff81690720 t transport_class_register
+ffffffff81690740 t transport_class_unregister
+ffffffff81690750 t anon_transport_class_register
+ffffffff816907a0 t anon_transport_dummy_function
+ffffffff816907b0 t anon_transport_class_unregister
+ffffffff816907d0 t transport_setup_device
+ffffffff816907f0 t transport_setup_classdev
+ffffffff81690820 t transport_add_device
+ffffffff81690840 t transport_add_class_device
+ffffffff816908c0 t transport_remove_classdev
+ffffffff81690930 t transport_configure_device
+ffffffff81690950 t transport_configure
+ffffffff81690980 t transport_remove_device
+ffffffff816909a0 t transport_destroy_device
+ffffffff816909c0 t transport_destroy_classdev
+ffffffff816909f0 t topology_add_dev
+ffffffff81690a20 t topology_remove_dev
+ffffffff81690a50 t topology_is_visible
+ffffffff81690aa0 t ppin_show
+ffffffff81690ae0 t physical_package_id_show
+ffffffff81690b20 t die_id_show
+ffffffff81690b60 t cluster_id_show
+ffffffff81690ba0 t core_id_show
+ffffffff81690be0 t core_cpus_read
+ffffffff81690c30 t core_cpus_list_read
+ffffffff81690c80 t thread_siblings_read
+ffffffff81690cd0 t thread_siblings_list_read
+ffffffff81690d20 t core_siblings_read
+ffffffff81690d70 t core_siblings_list_read
+ffffffff81690dc0 t cluster_cpus_read
+ffffffff81690e10 t cluster_cpus_list_read
+ffffffff81690e60 t die_cpus_read
+ffffffff81690eb0 t die_cpus_list_read
+ffffffff81690f00 t package_cpus_read
+ffffffff81690f50 t package_cpus_list_read
+ffffffff81690fa0 t trivial_online
+ffffffff81690fb0 t container_offline
+ffffffff81690fe0 t dev_fwnode
+ffffffff81691010 t device_property_present
+ffffffff816910b0 t fwnode_property_present
+ffffffff81691130 t device_property_read_u8_array
+ffffffff81691200 t fwnode_property_read_u8_array
+ffffffff816912c0 t device_property_read_u16_array
+ffffffff81691390 t fwnode_property_read_u16_array
+ffffffff81691450 t device_property_read_u32_array
+ffffffff81691520 t fwnode_property_read_u32_array
+ffffffff816915e0 t device_property_read_u64_array
+ffffffff816916b0 t fwnode_property_read_u64_array
+ffffffff81691770 t device_property_read_string_array
+ffffffff81691840 t fwnode_property_read_string_array
+ffffffff816918e0 t device_property_read_string
+ffffffff816919b0 t fwnode_property_read_string
+ffffffff81691a60 t device_property_match_string
+ffffffff81691a90 t fwnode_property_match_string
+ffffffff81691c50 t fwnode_property_get_reference_args
+ffffffff81691d10 t fwnode_find_reference
+ffffffff81691e40 t fwnode_get_name
+ffffffff81691e80 t fwnode_get_name_prefix
+ffffffff81691ec0 t fwnode_get_parent
+ffffffff81691f00 t fwnode_get_next_parent
+ffffffff81691f70 t fwnode_handle_put
+ffffffff81691fb0 t fwnode_get_next_parent_dev
+ffffffff816920a0 t fwnode_count_parents
+ffffffff81692160 t fwnode_get_nth_parent
+ffffffff81692260 t fwnode_handle_get
+ffffffff816922a0 t fwnode_is_ancestor_of
+ffffffff816923a0 t fwnode_get_next_child_node
+ffffffff816923e0 t fwnode_get_next_available_child_node
+ffffffff81692480 t fwnode_device_is_available
+ffffffff816924c0 t device_get_next_child_node
+ffffffff81692560 t fwnode_get_named_child_node
+ffffffff816925a0 t device_get_named_child_node
+ffffffff81692600 t device_get_child_node_count
+ffffffff81692780 t device_dma_supported
+ffffffff816927f0 t device_get_dma_attr
+ffffffff81692860 t fwnode_get_phy_mode
+ffffffff81692a10 t device_get_phy_mode
+ffffffff81692a40 t fwnode_iomap
+ffffffff81692a80 t fwnode_irq_get
+ffffffff81692ac0 t fwnode_irq_get_byname
+ffffffff81692b30 t fwnode_graph_get_next_endpoint
+ffffffff81692c70 t fwnode_graph_get_port_parent
+ffffffff81692d10 t fwnode_graph_get_remote_port_parent
+ffffffff81692e00 t fwnode_graph_get_remote_endpoint
+ffffffff81692e40 t fwnode_graph_get_remote_port
+ffffffff81692ee0 t fwnode_graph_get_endpoint_by_id
+ffffffff816931f0 t fwnode_graph_parse_endpoint
+ffffffff81693240 t fwnode_graph_get_endpoint_count
+ffffffff81693410 t device_get_match_data
+ffffffff81693490 t fwnode_connection_find_match
+ffffffff81693530 t fwnode_graph_devcon_matches
+ffffffff816937b0 t fwnode_devcon_matches
+ffffffff816939f0 t fwnode_connection_find_matches
+ffffffff81693a80 t get_cpu_cacheinfo
+ffffffff81693ab0 t last_level_cache_is_valid
+ffffffff81693b10 t last_level_cache_is_shared
+ffffffff81693bc0 t cache_setup_acpi
+ffffffff81693bd0 t detect_cache_attributes
+ffffffff81694140 t free_cache_attributes
+ffffffff816942c0 t cacheinfo_cpu_online
+ffffffff816944a0 t cacheinfo_cpu_pre_down
+ffffffff816944d0 t cpu_cache_sysfs_exit
+ffffffff816945a0 t cache_default_attrs_is_visible
+ffffffff816946d0 t level_show
+ffffffff81694700 t shared_cpu_map_show
+ffffffff81694730 t shared_cpu_list_show
+ffffffff81694760 t coherency_line_size_show
+ffffffff81694790 t ways_of_associativity_show
+ffffffff816947c0 t number_of_sets_show
+ffffffff816947f0 t size_show
+ffffffff81694820 t size_show
+ffffffff816948a0 t size_show
+ffffffff81694930 t size_show
+ffffffff816949b0 t size_show
+ffffffff81694a80 t size_show
+ffffffff81694ab0 t write_policy_show
+ffffffff81694af0 t allocation_policy_show
+ffffffff81694b50 t physical_line_partition_show
+ffffffff81694b80 t is_software_node
+ffffffff81694bb0 t to_software_node
+ffffffff81694bf0 t software_node_fwnode
+ffffffff81694c60 t property_entries_dup
+ffffffff81695050 t property_entries_free
+ffffffff81695110 t software_node_find_by_name
+ffffffff816951d0 t software_node_register_nodes
+ffffffff816952a0 t software_node_register
+ffffffff816953a0 t software_node_unregister_nodes
+ffffffff81695490 t software_node_unregister
+ffffffff81695520 t software_node_register_node_group
+ffffffff81695590 t software_node_unregister_node_group
+ffffffff81695670 t swnode_register
+ffffffff81695860 t fwnode_remove_software_node
+ffffffff816958a0 t fwnode_create_software_node
+ffffffff81695990 t device_add_software_node
+ffffffff81695b80 t software_node_notify
+ffffffff81695c30 t device_remove_software_node
+ffffffff81695cb0 t software_node_notify_remove
+ffffffff81695d60 t device_create_managed_software_node
+ffffffff81695e50 t software_node_get
+ffffffff81695ea0 t software_node_put
+ffffffff81695ee0 t software_node_property_present
+ffffffff81695f60 t software_node_read_int_array
+ffffffff81696120 t software_node_read_string_array
+ffffffff81696280 t software_node_get_name
+ffffffff816962c0 t software_node_get_name_prefix
+ffffffff81696350 t software_node_get_parent
+ffffffff816963a0 t software_node_get_next_child
+ffffffff81696440 t software_node_get_named_child_node
+ffffffff816964e0 t software_node_get_reference_args
+ffffffff816967c0 t software_node_graph_get_next_endpoint
+ffffffff81696aa0 t software_node_graph_get_remote_endpoint
+ffffffff81696bc0 t software_node_graph_get_port_parent
+ffffffff81696c60 t software_node_graph_parse_endpoint
+ffffffff81696d20 t swnode_graph_find_next_port
+ffffffff81696e50 t software_node_release
+ffffffff81696f20 t dpm_sysfs_add
+ffffffff81697010 t dpm_sysfs_change_owner
+ffffffff816970f0 t wakeup_sysfs_add
+ffffffff81697130 t wakeup_sysfs_remove
+ffffffff81697160 t pm_qos_sysfs_add_resume_latency
+ffffffff81697180 t pm_qos_sysfs_remove_resume_latency
+ffffffff816971a0 t pm_qos_sysfs_add_flags
+ffffffff816971c0 t pm_qos_sysfs_remove_flags
+ffffffff816971e0 t pm_qos_sysfs_add_latency_tolerance
+ffffffff81697200 t pm_qos_sysfs_remove_latency_tolerance
+ffffffff81697220 t rpm_sysfs_remove
+ffffffff81697240 t dpm_sysfs_remove
+ffffffff816972a0 t runtime_status_show
+ffffffff81697300 t runtime_suspended_time_show
+ffffffff81697340 t runtime_active_time_show
+ffffffff81697380 t autosuspend_delay_ms_show
+ffffffff816973c0 t autosuspend_delay_ms_store
+ffffffff81697470 t wakeup_store
+ffffffff816974f0 t wakeup_active_count_show
+ffffffff81697570 t wakeup_abort_count_show
+ffffffff816975f0 t wakeup_expire_count_show
+ffffffff81697670 t wakeup_active_show
+ffffffff816976f0 t wakeup_total_time_ms_show
+ffffffff81697780 t wakeup_max_time_ms_show
+ffffffff81697810 t wakeup_last_time_ms_show
+ffffffff816978a0 t pm_qos_latency_tolerance_us_show
+ffffffff81697900 t pm_qos_latency_tolerance_us_store
+ffffffff816979d0 t pm_qos_resume_latency_us_show
+ffffffff81697a20 t pm_qos_resume_latency_us_store
+ffffffff81697b10 t pm_qos_no_power_off_show
+ffffffff81697b50 t pm_qos_no_power_off_store
+ffffffff81697be0 t pm_generic_runtime_suspend
+ffffffff81697c20 t pm_generic_runtime_resume
+ffffffff81697c60 t pm_generic_prepare
+ffffffff81697c90 t pm_generic_suspend_noirq
+ffffffff81697cd0 t pm_generic_suspend_late
+ffffffff81697d10 t pm_generic_suspend
+ffffffff81697d50 t pm_generic_freeze_noirq
+ffffffff81697d90 t pm_generic_freeze_late
+ffffffff81697dd0 t pm_generic_freeze
+ffffffff81697e10 t pm_generic_poweroff_noirq
+ffffffff81697e50 t pm_generic_poweroff_late
+ffffffff81697e90 t pm_generic_poweroff
+ffffffff81697ed0 t pm_generic_thaw_noirq
+ffffffff81697f10 t pm_generic_thaw_early
+ffffffff81697f50 t pm_generic_thaw
+ffffffff81697f90 t pm_generic_resume_noirq
+ffffffff81697fd0 t pm_generic_resume_early
+ffffffff81698010 t pm_generic_resume
+ffffffff81698050 t pm_generic_restore_noirq
+ffffffff81698090 t pm_generic_restore_early
+ffffffff816980d0 t pm_generic_restore
+ffffffff81698110 t pm_generic_complete
+ffffffff81698140 t dev_pm_get_subsys_data
+ffffffff816981d0 t dev_pm_put_subsys_data
+ffffffff81698230 t dev_pm_domain_attach
+ffffffff81698260 t dev_pm_domain_attach_by_id
+ffffffff81698280 t dev_pm_domain_attach_by_name
+ffffffff816982a0 t dev_pm_domain_detach
+ffffffff816982d0 t dev_pm_domain_start
+ffffffff81698300 t dev_pm_domain_set
+ffffffff81698350 t __dev_pm_qos_flags
+ffffffff816983a0 t dev_pm_qos_flags
+ffffffff81698420 t __dev_pm_qos_resume_latency
+ffffffff81698450 t dev_pm_qos_read_value
+ffffffff81698510 t dev_pm_qos_constraints_destroy
+ffffffff81698900 t apply_constraint
+ffffffff816989d0 t dev_pm_qos_add_request
+ffffffff81698a20 t __dev_pm_qos_add_request
+ffffffff81698b90 t dev_pm_qos_update_request
+ffffffff81698bd0 t __dev_pm_qos_update_request.llvm.14738229075806529406
+ffffffff81698ce0 t dev_pm_qos_remove_request
+ffffffff81698d20 t __dev_pm_qos_remove_request
+ffffffff81698e50 t dev_pm_qos_add_notifier
+ffffffff81698f20 t dev_pm_qos_constraints_allocate
+ffffffff81699040 t dev_pm_qos_remove_notifier
+ffffffff816990e0 t dev_pm_qos_add_ancestor_request
+ffffffff81699190 t dev_pm_qos_expose_latency_limit
+ffffffff81699300 t dev_pm_qos_hide_latency_limit
+ffffffff81699390 t dev_pm_qos_expose_flags
+ffffffff81699510 t dev_pm_qos_hide_flags
+ffffffff816995c0 t dev_pm_qos_update_flags
+ffffffff81699660 t dev_pm_qos_get_user_latency_tolerance
+ffffffff816996c0 t dev_pm_qos_update_user_latency_tolerance
+ffffffff816997b0 t dev_pm_qos_expose_latency_tolerance
+ffffffff81699800 t dev_pm_qos_hide_latency_tolerance
+ffffffff816998b0 t pm_runtime_active_time
+ffffffff81699930 t pm_runtime_suspended_time
+ffffffff816999b0 t pm_runtime_autosuspend_expiration
+ffffffff81699a00 t pm_runtime_set_memalloc_noio
+ffffffff81699af0 t dev_memalloc_noio
+ffffffff81699b10 t pm_runtime_release_supplier
+ffffffff81699b70 t pm_schedule_suspend
+ffffffff81699cd0 t rpm_suspend
+ffffffff8169a4a0 t __pm_runtime_idle
+ffffffff8169a550 t trace_rpm_usage_rcuidle
+ffffffff8169a600 t rpm_idle
+ffffffff8169a930 t __pm_runtime_suspend
+ffffffff8169a9e0 t __pm_runtime_resume
+ffffffff8169aa60 t rpm_resume
+ffffffff8169b1c0 t pm_runtime_get_if_active
+ffffffff8169b270 t __pm_runtime_set_status
+ffffffff8169b700 t pm_runtime_enable
+ffffffff8169b7c0 t pm_runtime_barrier
+ffffffff8169b840 t __pm_runtime_barrier
+ffffffff8169b9a0 t __pm_runtime_disable
+ffffffff8169bab0 t devm_pm_runtime_enable
+ffffffff8169bb50 t pm_runtime_disable_action
+ffffffff8169bbd0 t pm_runtime_forbid
+ffffffff8169bc30 t pm_runtime_allow
+ffffffff8169bcc0 t pm_runtime_no_callbacks
+ffffffff8169bd10 t pm_runtime_irq_safe
+ffffffff8169bda0 t pm_runtime_set_autosuspend_delay
+ffffffff8169be50 t __pm_runtime_use_autosuspend
+ffffffff8169bf00 t pm_runtime_init
+ffffffff8169bfd0 t pm_runtime_work
+ffffffff8169c070 t pm_suspend_timer_fn
+ffffffff8169c0e0 t pm_runtime_reinit
+ffffffff8169c1d0 t pm_runtime_remove
+ffffffff8169c1f0 t pm_runtime_get_suppliers
+ffffffff8169c2b0 t pm_runtime_put_suppliers
+ffffffff8169c390 t pm_runtime_new_link
+ffffffff8169c3d0 t pm_runtime_drop_link
+ffffffff8169c4b0 t pm_runtime_force_suspend
+ffffffff8169c650 t pm_runtime_force_resume
+ffffffff8169c7c0 t trace_rpm_return_int_rcuidle
+ffffffff8169c870 t __rpm_callback
+ffffffff8169cba0 t dev_pm_set_wake_irq
+ffffffff8169cc20 t dev_pm_attach_wake_irq
+ffffffff8169cce0 t dev_pm_clear_wake_irq
+ffffffff8169cd60 t dev_pm_set_dedicated_wake_irq
+ffffffff8169cd80 t __dev_pm_set_dedicated_wake_irq
+ffffffff8169ce90 t dev_pm_set_dedicated_wake_irq_reverse
+ffffffff8169ceb0 t dev_pm_enable_wake_irq
+ffffffff8169cee0 t dev_pm_disable_wake_irq
+ffffffff8169cf10 t dev_pm_enable_wake_irq_check
+ffffffff8169cf60 t dev_pm_disable_wake_irq_check
+ffffffff8169cfa0 t dev_pm_enable_wake_irq_complete
+ffffffff8169cfd0 t dev_pm_arm_wake_irq
+ffffffff8169d020 t dev_pm_disarm_wake_irq
+ffffffff8169d070 t handle_threaded_wake_irq
+ffffffff8169d0e0 t device_pm_sleep_init
+ffffffff8169d150 t device_pm_lock
+ffffffff8169d170 t device_pm_unlock
+ffffffff8169d190 t device_pm_add
+ffffffff8169d250 t device_pm_check_callbacks
+ffffffff8169d4a0 t device_pm_remove
+ffffffff8169d550 t device_pm_move_before
+ffffffff8169d5e0 t device_pm_move_after
+ffffffff8169d660 t device_pm_move_last
+ffffffff8169d6e0 t dev_pm_skip_resume
+ffffffff8169d720 t dev_pm_skip_suspend
+ffffffff8169d750 t dpm_resume_noirq
+ffffffff8169db20 t dpm_resume_early
+ffffffff8169dee0 t async_resume_early
+ffffffff8169dfd0 t device_resume_early
+ffffffff8169e1d0 t dpm_resume_start
+ffffffff8169e1f0 t dpm_resume
+ffffffff8169e5e0 t async_resume
+ffffffff8169e6d0 t device_resume
+ffffffff8169e8e0 t dpm_complete
+ffffffff8169ec70 t dpm_resume_end
+ffffffff8169ec90 t dpm_suspend_noirq
+ffffffff8169f0d0 t dpm_suspend_late
+ffffffff8169f4c0 t dpm_suspend_end
+ffffffff8169f520 t dpm_suspend
+ffffffff8169f930 t dpm_prepare
+ffffffff8169fe30 t dpm_suspend_start
+ffffffff8169fec0 t __suspend_report_result
+ffffffff8169fef0 t device_pm_wait_for_dev
+ffffffff8169ff30 t dpm_for_each_dev
+ffffffff8169ffb0 t async_resume_noirq
+ffffffff816a00a0 t device_resume_noirq
+ffffffff816a02c0 t dpm_wait_for_superior
+ffffffff816a03e0 t dpm_run_callback
+ffffffff816a04f0 t async_suspend_noirq
+ffffffff816a0640 t __device_suspend_noirq
+ffffffff816a0a30 t dpm_wait_fn
+ffffffff816a0a70 t async_suspend_late
+ffffffff816a0bc0 t __device_suspend_late
+ffffffff816a0f50 t dpm_propagate_wakeup_to_parent
+ffffffff816a0fb0 t async_suspend
+ffffffff816a1100 t __device_suspend
+ffffffff816a1640 t legacy_suspend
+ffffffff816a1740 t wakeup_source_create
+ffffffff816a17c0 t wakeup_source_destroy
+ffffffff816a18d0 t __pm_relax
+ffffffff816a1920 t wakeup_source_add
+ffffffff816a19d0 t pm_wakeup_timer_fn
+ffffffff816a1a40 t wakeup_source_remove
+ffffffff816a1ad0 t wakeup_source_register
+ffffffff816a1c10 t wakeup_source_unregister
+ffffffff816a1cb0 t wakeup_sources_read_lock
+ffffffff816a1cd0 t wakeup_sources_read_unlock
+ffffffff816a1d00 t wakeup_sources_walk_start
+ffffffff816a1d20 t wakeup_sources_walk_next
+ffffffff816a1d50 t device_wakeup_enable
+ffffffff816a1e10 t device_wakeup_attach_irq
+ffffffff816a1e50 t device_wakeup_detach_irq
+ffffffff816a1e70 t device_wakeup_arm_wake_irqs
+ffffffff816a1ee0 t device_wakeup_disarm_wake_irqs
+ffffffff816a1f50 t device_wakeup_disable
+ffffffff816a1fb0 t device_set_wakeup_capable
+ffffffff816a2040 t device_set_wakeup_enable
+ffffffff816a20b0 t __pm_stay_awake
+ffffffff816a2110 t wakeup_source_report_event
+ffffffff816a2210 t pm_stay_awake
+ffffffff816a22a0 t wakeup_source_deactivate
+ffffffff816a23b0 t pm_relax
+ffffffff816a2430 t pm_wakeup_ws_event
+ffffffff816a24d0 t pm_wakeup_dev_event
+ffffffff816a2530 t pm_get_active_wakeup_sources
+ffffffff816a2650 t pm_print_active_wakeup_sources
+ffffffff816a26b0 t pm_wakeup_pending
+ffffffff816a27f0 t pm_system_wakeup
+ffffffff816a2810 t pm_system_cancel_wakeup
+ffffffff816a2840 t pm_wakeup_clear
+ffffffff816a28a0 t pm_system_irq_wakeup
+ffffffff816a2970 t pm_wakeup_irq
+ffffffff816a2990 t pm_get_wakeup_count
+ffffffff816a2ad0 t pm_save_wakeup_count
+ffffffff816a2b30 t wakeup_sources_stats_open
+ffffffff816a2b60 t wakeup_sources_stats_seq_start
+ffffffff816a2be0 t wakeup_sources_stats_seq_stop
+ffffffff816a2c10 t wakeup_sources_stats_seq_next
+ffffffff816a2c50 t wakeup_sources_stats_seq_show
+ffffffff816a2c70 t print_wakeup_source_stats
+ffffffff816a2de0 t wakeup_source_sysfs_add
+ffffffff816a2ec0 t pm_wakeup_source_sysfs_add
+ffffffff816a2ef0 t wakeup_source_sysfs_remove
+ffffffff816a2f10 t active_count_show
+ffffffff816a2f40 t event_count_show
+ffffffff816a2f70 t expire_count_show
+ffffffff816a2fa0 t active_time_ms_show
+ffffffff816a3010 t total_time_ms_show
+ffffffff816a3080 t max_time_ms_show
+ffffffff816a30f0 t last_change_ms_show
+ffffffff816a3140 t prevent_suspend_time_ms_show
+ffffffff816a31c0 t register_firmware_config_sysctl
+ffffffff816a3200 t unregister_firmware_config_sysctl
+ffffffff816a3230 t fw_state_init
+ffffffff816a3270 t alloc_lookup_fw_priv
+ffffffff816a3490 t free_fw_priv
+ffffffff816a35c0 t fw_is_paged_buf
+ffffffff816a35d0 t fw_free_paged_buf
+ffffffff816a3650 t fw_grow_paged_buf
+ffffffff816a3760 t fw_map_paged_buf
+ffffffff816a37c0 t assign_fw
+ffffffff816a3830 t request_firmware
+ffffffff816a3850 t _request_firmware.llvm.15869462049139244002
+ffffffff816a3d80 t firmware_request_nowarn
+ffffffff816a3da0 t request_firmware_direct
+ffffffff816a3dc0 t firmware_request_platform
+ffffffff816a3de0 t firmware_request_cache
+ffffffff816a3e10 t request_firmware_into_buf
+ffffffff816a3e30 t request_partial_firmware_into_buf
+ffffffff816a3e50 t release_firmware
+ffffffff816a3e90 t request_firmware_nowait
+ffffffff816a3ff0 t request_firmware_work_func
+ffffffff816a4090 t firmware_param_path_set
+ffffffff816a4170 t firmware_param_path_get
+ffffffff816a4320 t fw_shutdown_notify
+ffffffff816a4340 t fw_fallback_set_cache_timeout
+ffffffff816a4370 t fw_fallback_set_default_timeout
+ffffffff816a4390 t kill_pending_fw_fallback_reqs
+ffffffff816a4410 t firmware_fallback_sysfs
+ffffffff816a4740 t __fw_load_abort
+ffffffff816a47b0 t register_sysfs_loader
+ffffffff816a4810 t unregister_sysfs_loader
+ffffffff816a4840 t firmware_loading_show
+ffffffff816a48a0 t firmware_loading_store
+ffffffff816a4ab0 t fw_create_instance
+ffffffff816a4b50 t firmware_uevent
+ffffffff816a4bf0 t fw_dev_release
+ffffffff816a4c10 t timeout_show
+ffffffff816a4c40 t timeout_store
+ffffffff816a4c80 t firmware_data_read
+ffffffff816a4d90 t firmware_data_write
+ffffffff816a4f70 t firmware_request_builtin
+ffffffff816a4fe0 t firmware_request_builtin_buf
+ffffffff816a5080 t firmware_is_builtin
+ffffffff816a50e0 t mhp_online_type_from_str
+ffffffff816a5160 t register_memory_notifier
+ffffffff816a5180 t unregister_memory_notifier
+ffffffff816a51a0 t memory_notify
+ffffffff816a51c0 t arch_get_memory_phys_device
+ffffffff816a51d0 t find_memory_block
+ffffffff816a5230 t create_memory_block_devices
+ffffffff816a5360 t remove_memory_block
+ffffffff816a5420 t remove_memory_block_devices
+ffffffff816a5500 t walk_memory_blocks
+ffffffff816a55f0 t for_each_memory_block
+ffffffff816a5650 t for_each_memory_block_cb
+ffffffff816a5670 t memory_group_register_static
+ffffffff816a5720 t memory_group_register
+ffffffff816a5870 t memory_group_register_dynamic
+ffffffff816a5950 t memory_group_unregister
+ffffffff816a59c0 t memory_group_find_by_id
+ffffffff816a59e0 t walk_dynamic_memory_groups
+ffffffff816a5ab0 t add_memory_block
+ffffffff816a5e00 t memory_block_release
+ffffffff816a5e20 t phys_index_show
+ffffffff816a5e70 t phys_device_show
+ffffffff816a5ea0 t valid_zones_show
+ffffffff816a6010 t memory_subsys_online
+ffffffff816a6050 t memory_subsys_offline
+ffffffff816a6080 t memory_block_change_state
+ffffffff816a6280 t block_size_bytes_show
+ffffffff816a62b0 t auto_online_blocks_show
+ffffffff816a62f0 t auto_online_blocks_store
+ffffffff816a6380 t module_add_driver
+ffffffff816a6480 t module_remove_driver
+ffffffff816a6520 t __traceiter_regmap_reg_write
+ffffffff816a6580 t __traceiter_regmap_reg_read
+ffffffff816a65e0 t __traceiter_regmap_reg_read_cache
+ffffffff816a6640 t __traceiter_regmap_bulk_write
+ffffffff816a66b0 t __traceiter_regmap_bulk_read
+ffffffff816a6720 t __traceiter_regmap_hw_read_start
+ffffffff816a6780 t __traceiter_regmap_hw_read_done
+ffffffff816a67e0 t __traceiter_regmap_hw_write_start
+ffffffff816a6840 t __traceiter_regmap_hw_write_done
+ffffffff816a68a0 t __traceiter_regcache_sync
+ffffffff816a6900 t __traceiter_regmap_cache_only
+ffffffff816a6950 t __traceiter_regmap_cache_bypass
+ffffffff816a69a0 t __traceiter_regmap_async_write_start
+ffffffff816a6a00 t __traceiter_regmap_async_io_complete
+ffffffff816a6a50 t __traceiter_regmap_async_complete_start
+ffffffff816a6aa0 t __traceiter_regmap_async_complete_done
+ffffffff816a6af0 t __traceiter_regcache_drop_region
+ffffffff816a6b50 t trace_event_raw_event_regmap_reg
+ffffffff816a6cb0 t perf_trace_regmap_reg
+ffffffff816a6e60 t trace_event_raw_event_regmap_bulk
+ffffffff816a7000 t perf_trace_regmap_bulk
+ffffffff816a71e0 t trace_event_raw_event_regmap_block
+ffffffff816a7340 t perf_trace_regmap_block
+ffffffff816a74f0 t trace_event_raw_event_regcache_sync
+ffffffff816a76f0 t perf_trace_regcache_sync
+ffffffff816a7920 t trace_event_raw_event_regmap_bool
+ffffffff816a7a80 t perf_trace_regmap_bool
+ffffffff816a7c20 t trace_event_raw_event_regmap_async
+ffffffff816a7d70 t perf_trace_regmap_async
+ffffffff816a7f00 t trace_event_raw_event_regcache_drop_region
+ffffffff816a8060 t perf_trace_regcache_drop_region
+ffffffff816a8210 t regmap_reg_in_ranges
+ffffffff816a8260 t regmap_check_range_table
+ffffffff816a82f0 t regmap_writeable
+ffffffff816a83a0 t regmap_cached
+ffffffff816a8450 t regmap_readable
+ffffffff816a8510 t regmap_volatile
+ffffffff816a86c0 t regmap_precious
+ffffffff816a8830 t regmap_writeable_noinc
+ffffffff816a88e0 t regmap_readable_noinc
+ffffffff816a8990 t regmap_attach_dev
+ffffffff816a8a40 t dev_get_regmap_release
+ffffffff816a8a50 t regmap_get_val_endian
+ffffffff816a8af0 t __regmap_init
+ffffffff816a9a20 t regmap_lock_unlock_none
+ffffffff816a9a30 t regmap_lock_hwlock_irqsave
+ffffffff816a9a40 t regmap_unlock_hwlock_irqrestore
+ffffffff816a9a50 t regmap_lock_hwlock_irq
+ffffffff816a9a60 t regmap_unlock_hwlock_irq
+ffffffff816a9a70 t regmap_lock_hwlock
+ffffffff816a9a80 t regmap_unlock_hwlock
+ffffffff816a9a90 t regmap_lock_raw_spinlock
+ffffffff816a9ab0 t regmap_unlock_raw_spinlock
+ffffffff816a9ad0 t regmap_lock_spinlock
+ffffffff816a9af0 t regmap_unlock_spinlock
+ffffffff816a9b10 t regmap_lock_mutex
+ffffffff816a9b20 t regmap_unlock_mutex
+ffffffff816a9b30 t _regmap_bus_read
+ffffffff816a9ba0 t _regmap_bus_reg_read
+ffffffff816a9bd0 t _regmap_bus_reg_write
+ffffffff816a9c00 t regmap_format_2_6_write
+ffffffff816a9c20 t regmap_format_4_12_write
+ffffffff816a9c40 t regmap_format_7_9_write
+ffffffff816a9c60 t regmap_format_7_17_write
+ffffffff816a9c90 t regmap_format_10_14_write
+ffffffff816a9cc0 t regmap_format_12_20_write
+ffffffff816a9cf0 t regmap_format_8
+ffffffff816a9d10 t regmap_format_16_be
+ffffffff816a9d30 t regmap_format_16_le
+ffffffff816a9d50 t regmap_format_16_native
+ffffffff816a9d70 t regmap_format_24_be
+ffffffff816a9d90 t regmap_format_32_be
+ffffffff816a9db0 t regmap_format_32_le
+ffffffff816a9dd0 t regmap_format_32_native
+ffffffff816a9df0 t regmap_format_64_be
+ffffffff816a9e10 t regmap_format_64_le
+ffffffff816a9e30 t regmap_format_64_native
+ffffffff816a9e50 t regmap_parse_inplace_noop
+ffffffff816a9e60 t regmap_parse_8
+ffffffff816a9e70 t regmap_parse_16_be
+ffffffff816a9e90 t regmap_parse_16_be_inplace
+ffffffff816a9ea0 t regmap_parse_16_le
+ffffffff816a9eb0 t regmap_parse_16_le_inplace
+ffffffff816a9ec0 t regmap_parse_16_native
+ffffffff816a9ed0 t regmap_parse_24_be
+ffffffff816a9ef0 t regmap_parse_32_be
+ffffffff816a9f00 t regmap_parse_32_be_inplace
+ffffffff816a9f20 t regmap_parse_32_le
+ffffffff816a9f30 t regmap_parse_32_le_inplace
+ffffffff816a9f40 t regmap_parse_32_native
+ffffffff816a9f50 t regmap_parse_64_be
+ffffffff816a9f70 t regmap_parse_64_be_inplace
+ffffffff816a9f90 t regmap_parse_64_le
+ffffffff816a9fa0 t regmap_parse_64_le_inplace
+ffffffff816a9fb0 t regmap_parse_64_native
+ffffffff816a9fc0 t _regmap_bus_formatted_write
+ffffffff816aa180 t _regmap_bus_raw_write
+ffffffff816aa1f0 t __devm_regmap_init
+ffffffff816aa290 t devm_regmap_release
+ffffffff816aa2b0 t devm_regmap_field_alloc
+ffffffff816aa360 t regmap_field_bulk_alloc
+ffffffff816aa490 t devm_regmap_field_bulk_alloc
+ffffffff816aa5b0 t regmap_field_bulk_free
+ffffffff816aa5c0 t devm_regmap_field_bulk_free
+ffffffff816aa5d0 t devm_regmap_field_free
+ffffffff816aa5e0 t regmap_field_alloc
+ffffffff816aa690 t regmap_field_free
+ffffffff816aa6a0 t regmap_reinit_cache
+ffffffff816aa780 t regmap_exit
+ffffffff816aa8f0 t dev_get_regmap
+ffffffff816aa930 t dev_get_regmap_match
+ffffffff816aa980 t regmap_get_device
+ffffffff816aa990 t regmap_can_raw_write
+ffffffff816aa9d0 t regmap_get_raw_read_max
+ffffffff816aa9f0 t regmap_get_raw_write_max
+ffffffff816aaa10 t _regmap_write
+ffffffff816aabd0 t regmap_write
+ffffffff816aac40 t regmap_write_async
+ffffffff816aacc0 t _regmap_raw_write
+ffffffff816aae40 t _regmap_raw_write_impl
+ffffffff816ab930 t regmap_raw_write
+ffffffff816abb60 t regmap_noinc_write
+ffffffff816abfa0 t regmap_field_update_bits_base
+ffffffff816abfe0 t regmap_update_bits_base
+ffffffff816ac110 t regmap_field_test_bits
+ffffffff816ac1e0 t regmap_field_read
+ffffffff816ac2a0 t regmap_fields_update_bits_base
+ffffffff816ac2f0 t regmap_bulk_write
+ffffffff816ac510 t regmap_multi_reg_write
+ffffffff816ac560 t _regmap_multi_reg_write
+ffffffff816aca10 t regmap_multi_reg_write_bypassed
+ffffffff816aca80 t regmap_raw_write_async
+ffffffff816acca0 t regmap_read
+ffffffff816acd10 t _regmap_read
+ffffffff816acee0 t regmap_raw_read
+ffffffff816ad1f0 t _regmap_raw_read
+ffffffff816ad4b0 t regmap_noinc_read
+ffffffff816ad6c0 t regmap_fields_read
+ffffffff816ad790 t regmap_bulk_read
+ffffffff816ada50 t regmap_test_bits
+ffffffff816adaf0 t regmap_async_complete_cb
+ffffffff816adc10 t regmap_async_complete
+ffffffff816ade30 t regmap_register_patch
+ffffffff816adf60 t regmap_get_val_bytes
+ffffffff816adf90 t regmap_get_max_register
+ffffffff816adfb0 t regmap_get_reg_stride
+ffffffff816adfd0 t regmap_parse_val
+ffffffff816ae000 t trace_raw_output_regmap_reg
+ffffffff816ae060 t trace_raw_output_regmap_bulk
+ffffffff816ae0f0 t trace_raw_output_regmap_block
+ffffffff816ae150 t trace_raw_output_regcache_sync
+ffffffff816ae1c0 t trace_raw_output_regmap_bool
+ffffffff816ae220 t trace_raw_output_regmap_async
+ffffffff816ae280 t trace_raw_output_regcache_drop_region
+ffffffff816ae2e0 t _regmap_select_page
+ffffffff816ae440 t _regmap_raw_multi_reg_write
+ffffffff816ae670 t regcache_init
+ffffffff816aebb0 t regcache_exit
+ffffffff816aec10 t regcache_read
+ffffffff816aece0 t regcache_write
+ffffffff816aed50 t regcache_sync
+ffffffff816aef70 t regcache_default_sync
+ffffffff816af0e0 t regcache_sync_region
+ffffffff816af260 t regcache_drop_region
+ffffffff816af330 t regcache_cache_only
+ffffffff816af3d0 t regcache_mark_dirty
+ffffffff816af410 t regcache_cache_bypass
+ffffffff816af4b0 t regcache_set_val
+ffffffff816af5d0 t regcache_get_val
+ffffffff816af660 t regcache_lookup_reg
+ffffffff816af6e0 t regcache_default_cmp
+ffffffff816af6f0 t regcache_sync_block
+ffffffff816afb90 t regcache_rbtree_init
+ffffffff816afc30 t regcache_rbtree_exit
+ffffffff816afcd0 t rbtree_debugfs_init
+ffffffff816afd10 t regcache_rbtree_read
+ffffffff816afe00 t regcache_rbtree_write
+ffffffff816b02f0 t regcache_rbtree_sync
+ffffffff816b03b0 t regcache_rbtree_drop
+ffffffff816b0460 t rbtree_open
+ffffffff816b0490 t rbtree_show
+ffffffff816b05d0 t regcache_flat_init
+ffffffff816b0670 t regcache_flat_exit
+ffffffff816b06a0 t regcache_flat_read
+ffffffff816b06d0 t regcache_flat_write
+ffffffff816b0700 t regmap_debugfs_init
+ffffffff816b0a80 t regmap_debugfs_exit
+ffffffff816b0be0 t regmap_debugfs_initcall
+ffffffff816b0cb0 t regmap_name_read_file
+ffffffff816b0d70 t regmap_reg_ranges_read_file
+ffffffff816b0f90 t regmap_debugfs_get_dump_start
+ffffffff816b1310 t regmap_map_read_file
+ffffffff816b1340 t regmap_read_debugfs
+ffffffff816b16e0 t regmap_access_open
+ffffffff816b1710 t regmap_access_show
+ffffffff816b1830 t regmap_cache_only_write_file
+ffffffff816b1990 t regmap_cache_bypass_write_file
+ffffffff816b1a90 t regmap_range_read_file
+ffffffff816b1ac0 t __regmap_init_mmio_clk
+ffffffff816b1b10 t regmap_mmio_gen_context
+ffffffff816b1e20 t __devm_regmap_init_mmio_clk
+ffffffff816b1e70 t regmap_mmio_attach_clk
+ffffffff816b1ea0 t regmap_mmio_detach_clk
+ffffffff816b1ed0 t regmap_mmio_ioread8
+ffffffff816b1ef0 t regmap_mmio_iowrite8
+ffffffff816b1f10 t regmap_mmio_read8_relaxed
+ffffffff816b1f30 t regmap_mmio_write8_relaxed
+ffffffff816b1f50 t regmap_mmio_read8
+ffffffff816b1f70 t regmap_mmio_write8
+ffffffff816b1f90 t regmap_mmio_ioread16le
+ffffffff816b1fb0 t regmap_mmio_iowrite16le
+ffffffff816b1fd0 t regmap_mmio_read16le_relaxed
+ffffffff816b1ff0 t regmap_mmio_write16le_relaxed
+ffffffff816b2010 t regmap_mmio_read16le
+ffffffff816b2030 t regmap_mmio_write16le
+ffffffff816b2050 t regmap_mmio_ioread32le
+ffffffff816b2070 t regmap_mmio_iowrite32le
+ffffffff816b2090 t regmap_mmio_read32le_relaxed
+ffffffff816b20b0 t regmap_mmio_write32le_relaxed
+ffffffff816b20d0 t regmap_mmio_read32le
+ffffffff816b20f0 t regmap_mmio_write32le
+ffffffff816b2110 t regmap_mmio_ioread16be
+ffffffff816b2130 t regmap_mmio_iowrite16be
+ffffffff816b2150 t regmap_mmio_read16be
+ffffffff816b2170 t regmap_mmio_write16be
+ffffffff816b2190 t regmap_mmio_ioread32be
+ffffffff816b21b0 t regmap_mmio_iowrite32be
+ffffffff816b21d0 t regmap_mmio_read32be
+ffffffff816b21f0 t regmap_mmio_write32be
+ffffffff816b2210 t regmap_mmio_write
+ffffffff816b2230 t regmap_mmio_noinc_write
+ffffffff816b2430 t regmap_mmio_read
+ffffffff816b2450 t regmap_mmio_noinc_read
+ffffffff816b26e0 t regmap_mmio_free_context
+ffffffff816b2710 t platform_msi_create_irq_domain
+ffffffff816b2860 t platform_msi_domain_alloc_irqs
+ffffffff816b28d0 t platform_msi_alloc_priv_data
+ffffffff816b29d0 t platform_msi_domain_free_irqs
+ffffffff816b2a20 t platform_msi_get_host_data
+ffffffff816b2a40 t __platform_msi_create_device_domain
+ffffffff816b2b20 t platform_msi_device_domain_free
+ffffffff816b2b90 t platform_msi_device_domain_alloc
+ffffffff816b2bc0 t platform_msi_write_msg
+ffffffff816b2bf0 t dev_add_physical_location
+ffffffff816b2cd0 t panel_show
+ffffffff816b2d10 t vertical_position_show
+ffffffff816b2d50 t horizontal_position_show
+ffffffff816b2d90 t dock_show
+ffffffff816b2dd0 t lid_show
+ffffffff816b2e10 t __traceiter_devres_log
+ffffffff816b2e80 t trace_event_raw_event_devres
+ffffffff816b2fd0 t perf_trace_devres
+ffffffff816b3170 t trace_raw_output_devres
+ffffffff816b31e0 t brd_cleanup
+ffffffff816b3450 t brd_alloc
+ffffffff816b36d0 t brd_probe
+ffffffff816b3700 t brd_submit_bio
+ffffffff816b3850 t brd_rw_page
+ffffffff816b38b0 t brd_do_bvec
+ffffffff816b3cb0 t brd_insert_page
+ffffffff816b3de0 t loop_set_hw_queue_depth
+ffffffff816b3e20 t loop_control_ioctl
+ffffffff816b4090 t loop_add
+ffffffff816b43a0 t loop_free_idle_workers_timer
+ffffffff816b43c0 t loop_rootcg_workfn
+ffffffff816b43e0 t loop_free_idle_workers
+ffffffff816b4550 t loop_queue_rq
+ffffffff816b4870 t lo_complete_rq
+ffffffff816b4920 t loop_workfn
+ffffffff816b4940 t loop_process_work
+ffffffff816b52e0 t lo_rw_aio
+ffffffff816b55f0 t lo_rw_aio_complete
+ffffffff816b5630 t lo_release
+ffffffff816b5690 t lo_ioctl
+ffffffff816b61a0 t lo_free_disk
+ffffffff816b61f0 t __loop_clr_fd
+ffffffff816b6420 t loop_attr_do_show_backing_file
+ffffffff816b64b0 t loop_attr_do_show_offset
+ffffffff816b64e0 t loop_attr_do_show_sizelimit
+ffffffff816b6510 t loop_attr_do_show_autoclear
+ffffffff816b6550 t loop_attr_do_show_partscan
+ffffffff816b6590 t loop_attr_do_show_dio
+ffffffff816b65d0 t loop_configure
+ffffffff816b6b50 t loop_set_status_from_info
+ffffffff816b6c10 t loop_config_discard
+ffffffff816b6d70 t loop_update_rotational
+ffffffff816b6dd0 t loop_set_size
+ffffffff816b6e10 t loop_reread_partitions
+ffffffff816b6e90 t __loop_update_dio
+ffffffff816b6fa0 t loop_set_status
+ffffffff816b7230 t loop_get_status
+ffffffff816b73f0 t loop_probe
+ffffffff816b7430 t virtblk_probe
+ffffffff816b7e40 t virtblk_remove
+ffffffff816b7ed0 t virtblk_config_changed
+ffffffff816b7f00 t virtblk_freeze
+ffffffff816b7f60 t virtblk_restore
+ffffffff816b7fe0 t virtblk_config_changed_work
+ffffffff816b8000 t init_vq
+ffffffff816b8460 t virtblk_update_cache_mode
+ffffffff816b8520 t virtblk_update_capacity
+ffffffff816b8770 t virtblk_done
+ffffffff816b88a0 t virtio_queue_rq
+ffffffff816b8a30 t virtio_commit_rqs
+ffffffff816b8aa0 t virtio_queue_rqs
+ffffffff816b8cc0 t virtblk_poll
+ffffffff816b8e40 t virtblk_request_done
+ffffffff816b8ec0 t virtblk_map_queues
+ffffffff816b8f70 t virtblk_prep_rq
+ffffffff816b9240 t virtblk_add_req
+ffffffff816b9380 t virtblk_fail_to_queue
+ffffffff816b93c0 t virtblk_complete_batch
+ffffffff816b9450 t virtblk_getgeo
+ffffffff816b95b0 t virtblk_free_disk
+ffffffff816b95e0 t virtblk_attrs_are_visible
+ffffffff816b9630 t cache_type_show
+ffffffff816b9700 t cache_type_store
+ffffffff816b97c0 t serial_show
+ffffffff816b9890 t zcomp_available_algorithm
+ffffffff816b98b0 t zcomp_available_show
+ffffffff816b9a50 t zcomp_stream_get
+ffffffff816b9aa0 t zcomp_stream_put
+ffffffff816b9ae0 t zcomp_compress
+ffffffff816b9b10 t zcomp_decompress
+ffffffff816b9b60 t zcomp_cpu_up_prepare
+ffffffff816b9c20 t zcomp_cpu_dead
+ffffffff816b9c90 t zcomp_destroy
+ffffffff816b9cd0 t zcomp_create
+ffffffff816b9da0 t destroy_devices
+ffffffff816b9e00 t zram_remove_cb
+ffffffff816b9e20 t hot_add_show
+ffffffff816b9e80 t zram_add
+ffffffff816ba0c0 t zram_submit_bio
+ffffffff816ba3b0 t zram_open
+ffffffff816ba3f0 t zram_rw_page
+ffffffff816ba540 t zram_slot_free_notify
+ffffffff816ba5f0 t zram_bvec_rw
+ffffffff816bae00 t zram_slot_lock
+ffffffff816bae80 t zram_free_page
+ffffffff816baf80 t disksize_show
+ffffffff816bafc0 t disksize_store
+ffffffff816bb110 t zram_meta_free
+ffffffff816bb160 t initstate_show
+ffffffff816bb1d0 t zram_reset_device
+ffffffff816bb380 t compact_store
+ffffffff816bb3e0 t mem_limit_store
+ffffffff816bb490 t mem_used_max_store
+ffffffff816bb540 t idle_store
+ffffffff816bb660 t max_comp_streams_show
+ffffffff816bb690 t max_comp_streams_store
+ffffffff816bb6a0 t comp_algorithm_show
+ffffffff816bb6f0 t comp_algorithm_store
+ffffffff816bb890 t io_stat_show
+ffffffff816bb910 t mm_stat_show
+ffffffff816bb9e0 t debug_stat_show
+ffffffff816bba50 t hot_remove_store
+ffffffff816bbb30 t zram_remove
+ffffffff816bbc10 t device_node_to_regmap
+ffffffff816bbc20 t device_node_get_regmap
+ffffffff816bbf60 t syscon_node_to_regmap
+ffffffff816bbfd0 t syscon_regmap_lookup_by_compatible
+ffffffff816bc050 t syscon_regmap_lookup_by_phandle
+ffffffff816bc170 t syscon_regmap_lookup_by_phandle_args
+ffffffff816bc2c0 t syscon_regmap_lookup_by_phandle_optional
+ffffffff816bc3e0 t syscon_probe
+ffffffff816bc530 t nvdimm_bus_lock
+ffffffff816bc560 t nvdimm_bus_unlock
+ffffffff816bc590 t is_nvdimm_bus_locked
+ffffffff816bc5c0 t devm_nvdimm_memremap
+ffffffff816bc8a0 t nvdimm_map_put
+ffffffff816bc990 t nd_fletcher64
+ffffffff816bc9e0 t to_nd_desc
+ffffffff816bc9f0 t to_nvdimm_bus_dev
+ffffffff816bca00 t nd_uuid_store
+ffffffff816bcaa0 t nd_size_select_show
+ffffffff816bcb30 t nd_size_select_store
+ffffffff816bcbe0 t nvdimm_bus_add_badrange
+ffffffff816bcc00 t nd_integrity_init
+ffffffff816bcc10 t commands_show
+ffffffff816bccd0 t commands_show
+ffffffff816bcdd0 t wait_probe_show
+ffffffff816bce40 t flush_regions_dimms
+ffffffff816bce80 t flush_namespaces
+ffffffff816bceb0 t provider_show
+ffffffff816bcf10 t nvdimm_bus_firmware_visible
+ffffffff816bcf50 t activate_show
+ffffffff816bd030 t activate_show
+ffffffff816bd100 t activate_store
+ffffffff816bd1d0 t activate_store
+ffffffff816bd2a0 t capability_show
+ffffffff816bd310 t nd_device_notify
+ffffffff816bd370 t nvdimm_region_notify
+ffffffff816bd430 t walk_to_nvdimm_bus
+ffffffff816bd4b0 t nvdimm_clear_poison
+ffffffff816bd6e0 t nvdimm_account_cleared_poison
+ffffffff816bd760 t is_nvdimm_bus
+ffffffff816bd780 t to_nvdimm_bus
+ffffffff816bd7b0 t nvdimm_to_bus
+ffffffff816bd7e0 t nvdimm_bus_register
+ffffffff816bd940 t nvdimm_bus_unregister
+ffffffff816bd960 t nd_synchronize
+ffffffff816bd980 t nd_device_register
+ffffffff816bd9a0 t __nd_device_register.llvm.10714734933821872331
+ffffffff816bda70 t nd_device_register_sync
+ffffffff816bda90 t nd_device_unregister
+ffffffff816bdb30 t nd_async_device_unregister
+ffffffff816bdb70 t __nd_driver_register
+ffffffff816bdbb0 t nvdimm_check_and_set_ro
+ffffffff816bdc60 t nd_numa_attr_visible
+ffffffff816bdc70 t nvdimm_bus_create_ndctl
+ffffffff816bdd40 t ndctl_release
+ffffffff816bdd50 t nvdimm_bus_destroy_ndctl
+ffffffff816bdd80 t nd_cmd_dimm_desc
+ffffffff816bddb0 t nd_cmd_bus_desc
+ffffffff816bdde0 t nd_cmd_in_size
+ffffffff816bde50 t nd_cmd_out_size
+ffffffff816bdef0 t wait_nvdimm_bus_probe_idle
+ffffffff816be080 t nvdimm_bus_exit
+ffffffff816be0f0 t nvdimm_clear_badblocks_region
+ffffffff816be180 t nvdimm_bus_release
+ffffffff816be1b0 t nvdimm_bus_match
+ffffffff816be260 t nvdimm_bus_uevent
+ffffffff816be2f0 t nvdimm_bus_probe
+ffffffff816be450 t nvdimm_bus_remove
+ffffffff816be4f0 t nvdimm_bus_shutdown
+ffffffff816be580 t to_bus_provider
+ffffffff816be620 t nd_async_device_register
+ffffffff816be680 t devtype_show
+ffffffff816be6b0 t target_node_show
+ffffffff816be740 t target_node_show
+ffffffff816be770 t bus_ioctl
+ffffffff816be790 t nd_open
+ffffffff816be7b0 t nd_ioctl
+ffffffff816bf380 t match_dimm
+ffffffff816bf3c0 t nd_ns_forget_poison_check
+ffffffff816bf3e0 t nd_pmem_forget_poison_check
+ffffffff816bf480 t dimm_ioctl
+ffffffff816bf4a0 t nd_bus_probe
+ffffffff816bf540 t nd_bus_remove
+ffffffff816bf760 t child_unregister
+ffffffff816bf7f0 t child_unregister
+ffffffff816bf810 t nvdimm_check_config_data
+ffffffff816bf860 t to_nvdimm
+ffffffff816bf890 t nvdimm_init_nsarea
+ffffffff816bf990 t nvdimm_get_config_data
+ffffffff816bfb90 t nvdimm_set_config_data
+ffffffff816bfd90 t nvdimm_set_labeling
+ffffffff816bfdc0 t nvdimm_set_locked
+ffffffff816bfdf0 t nvdimm_clear_locked
+ffffffff816bfe20 t is_nvdimm
+ffffffff816bfe40 t to_ndd
+ffffffff816bfe70 t nvdimm_drvdata_release
+ffffffff816bff30 t nvdimm_free_dpa
+ffffffff816bff80 t get_ndd
+ffffffff816bffc0 t put_ndd
+ffffffff816c0010 t nvdimm_name
+ffffffff816c0040 t nvdimm_kobj
+ffffffff816c0050 t nvdimm_cmd_mask
+ffffffff816c0060 t nvdimm_provider_data
+ffffffff816c0080 t security_show
+ffffffff816c0150 t __nvdimm_create
+ffffffff816c0400 t nvdimm_security_overwrite_query
+ffffffff816c0410 t nvdimm_delete
+ffffffff816c0480 t nvdimm_security_setup_events
+ffffffff816c0530 t shutdown_security_notify
+ffffffff816c0550 t nvdimm_in_overwrite
+ffffffff816c0570 t nvdimm_security_freeze
+ffffffff816c0690 t nd_pmem_max_contiguous_dpa
+ffffffff816c07a0 t dpa_align
+ffffffff816c08d0 t nd_pmem_available_dpa
+ffffffff816c09d0 t nvdimm_allocate_dpa
+ffffffff816c0a50 t nvdimm_allocated_dpa
+ffffffff816c0ab0 t nvdimm_bus_check_dimm_count
+ffffffff816c0b30 t count_dimms
+ffffffff816c0b50 t nvdimm_release.llvm.16457450038437133464
+ffffffff816c0b90 t nvdimm_visible
+ffffffff816c0c40 t security_store
+ffffffff816c0c90 t frozen_show
+ffffffff816c0cd0 t available_slots_show
+ffffffff816c0da0 t nvdimm_firmware_visible
+ffffffff816c0e20 t result_show
+ffffffff816c0f40 t nvdimm_events_sysfs_show
+ffffffff816c0f60 t register_nvdimm_pmu
+ffffffff816c1240 t unregister_nvdimm_pmu
+ffffffff816c12c0 t nvdimm_pmu_cpu_online
+ffffffff816c12f0 t nvdimm_pmu_cpu_offline
+ffffffff816c1390 t nvdimm_pmu_cpumask_show
+ffffffff816c13e0 t nvdimm_exit
+ffffffff816c1400 t nvdimm_probe
+ffffffff816c1560 t nvdimm_remove
+ffffffff816c15a0 t nd_region_activate
+ffffffff816c18d0 t to_nd_region
+ffffffff816c1900 t nd_region_release.llvm.3745560375144724132
+ffffffff816c19b0 t nd_region_dev
+ffffffff816c19c0 t nd_region_provider_data
+ffffffff816c19e0 t nd_region_to_nstype
+ffffffff816c1ab0 t nd_region_available_dpa
+ffffffff816c1b30 t nd_region_allocatable_dpa
+ffffffff816c1bc0 t is_nd_pmem
+ffffffff816c1bf0 t is_nd_volatile
+ffffffff816c1c20 t nd_region_interleave_set_cookie
+ffffffff816c1c60 t nd_region_interleave_set_altcookie
+ffffffff816c1c90 t nd_mapping_free_labels
+ffffffff816c1d10 t nd_region_advance_seeds
+ffffffff816c1d90 t nd_region_acquire_lane
+ffffffff816c1e30 t nd_region_release_lane
+ffffffff816c1ef0 t nvdimm_pmem_region_create
+ffffffff816c1f20 t nd_region_create.llvm.3745560375144724132
+ffffffff816c2400 t nvdimm_volatile_region_create
+ffffffff816c2430 t nvdimm_region_delete
+ffffffff816c2450 t nvdimm_flush
+ffffffff816c2530 t generic_nvdimm_flush
+ffffffff816c25e0 t nvdimm_has_flush
+ffffffff816c2660 t nvdimm_has_cache
+ffffffff816c26a0 t is_nvdimm_sync
+ffffffff816c26f0 t nd_region_conflict
+ffffffff816c2760 t region_conflict
+ffffffff816c27f0 t region_visible
+ffffffff816c2ab0 t pfn_seed_show
+ffffffff816c2b30 t dax_seed_show
+ffffffff816c2bb0 t region_badblocks_show
+ffffffff816c2c30 t deep_flush_show
+ffffffff816c2cd0 t deep_flush_store
+ffffffff816c2e20 t persistence_domain_show
+ffffffff816c2ec0 t align_store
+ffffffff816c3070 t align_store
+ffffffff816c31e0 t set_cookie_show
+ffffffff816c3350 t available_size_show
+ffffffff816c3440 t available_size_show
+ffffffff816c34d0 t nstype_show
+ffffffff816c35d0 t nstype_show
+ffffffff816c3610 t mappings_show
+ffffffff816c3650 t btt_seed_show
+ffffffff816c36d0 t read_only_show
+ffffffff816c3710 t read_only_store
+ffffffff816c37a0 t revalidate_read_only
+ffffffff816c37c0 t max_available_extent_show
+ffffffff816c38d0 t namespace_seed_show
+ffffffff816c3950 t init_namespaces_show
+ffffffff816c39b0 t mapping_visible
+ffffffff816c39f0 t mapping0_show
+ffffffff816c3a70 t mapping1_show
+ffffffff816c3af0 t mapping2_show
+ffffffff816c3b70 t mapping3_show
+ffffffff816c3bf0 t mapping4_show
+ffffffff816c3c70 t mapping5_show
+ffffffff816c3cf0 t mapping6_show
+ffffffff816c3d70 t mapping7_show
+ffffffff816c3df0 t mapping8_show
+ffffffff816c3e70 t mapping9_show
+ffffffff816c3ef0 t mapping10_show
+ffffffff816c3f70 t mapping11_show
+ffffffff816c3ff0 t mapping12_show
+ffffffff816c4070 t mapping13_show
+ffffffff816c40f0 t mapping14_show
+ffffffff816c4170 t mapping15_show
+ffffffff816c41f0 t mapping16_show
+ffffffff816c4270 t mapping17_show
+ffffffff816c42f0 t mapping18_show
+ffffffff816c4370 t mapping19_show
+ffffffff816c43f0 t mapping20_show
+ffffffff816c4470 t mapping21_show
+ffffffff816c44f0 t mapping22_show
+ffffffff816c4570 t mapping23_show
+ffffffff816c45f0 t mapping24_show
+ffffffff816c4670 t mapping25_show
+ffffffff816c46f0 t mapping26_show
+ffffffff816c4770 t mapping27_show
+ffffffff816c47f0 t mapping28_show
+ffffffff816c4870 t mapping29_show
+ffffffff816c48f0 t mapping30_show
+ffffffff816c4970 t mapping31_show
+ffffffff816c49f0 t nd_region_exit
+ffffffff816c4a10 t nd_region_probe
+ffffffff816c4bd0 t nd_region_remove
+ffffffff816c4c60 t nd_region_notify
+ffffffff816c4d20 t child_notify
+ffffffff816c4d40 t nd_is_uuid_unique
+ffffffff816c4d90 t is_namespace_uuid_busy
+ffffffff816c4de0 t pmem_should_map_pages
+ffffffff816c4e00 t pmem_sector_size
+ffffffff816c4e90 t nvdimm_namespace_disk_name
+ffffffff816c4f60 t nd_dev_to_uuid
+ffffffff816c4fa0 t __reserve_free_pmem
+ffffffff816c5130 t scan_allocate
+ffffffff816c5660 t release_free_pmem
+ffffffff816c56c0 t __nvdimm_namespace_capacity
+ffffffff816c5730 t nvdimm_namespace_capacity
+ffffffff816c57c0 t nvdimm_namespace_locked
+ffffffff816c5860 t nvdimm_namespace_common_probe
+ffffffff816c5af0 t devm_namespace_enable
+ffffffff816c5b00 t devm_namespace_disable
+ffffffff816c5b10 t nd_region_create_ns_seed
+ffffffff816c5c50 t nd_region_create_dax_seed
+ffffffff816c5c90 t nd_region_create_pfn_seed
+ffffffff816c5cd0 t nd_region_create_btt_seed
+ffffffff816c5d20 t nd_region_register_namespaces
+ffffffff816c6cc0 t is_uuid_busy
+ffffffff816c6d40 t namespace_pmem_release
+ffffffff816c6da0 t namespace_visible
+ffffffff816c6e40 t size_store
+ffffffff816c71c0 t size_store
+ffffffff816c7930 t nd_namespace_label_update
+ffffffff816c7a10 t shrink_dpa_allocation
+ffffffff816c7b20 t grow_dpa_allocation
+ffffffff816c7cd0 t nd_namespace_pmem_set_resource
+ffffffff816c7e00 t holder_show
+ffffffff816c7e70 t holder_class_show
+ffffffff816c7f30 t holder_class_store
+ffffffff816c8160 t force_raw_show
+ffffffff816c8190 t force_raw_store
+ffffffff816c8200 t uuid_show
+ffffffff816c8270 t uuid_show
+ffffffff816c82c0 t uuid_store
+ffffffff816c8720 t uuid_store
+ffffffff816c8790 t alt_name_show
+ffffffff816c87f0 t alt_name_store
+ffffffff816c8960 t sector_size_show
+ffffffff816c89a0 t sector_size_show
+ffffffff816c89d0 t sector_size_store
+ffffffff816c8aa0 t sector_size_store
+ffffffff816c8b20 t dpa_extents_show
+ffffffff816c8c90 t namespace_io_release
+ffffffff816c8cb0 t deactivate_labels
+ffffffff816c8d50 t cmp_dpa
+ffffffff816c8da0 t has_uuid_at_pos
+ffffffff816c8f50 t sizeof_namespace_label
+ffffffff816c8f60 t nvdimm_num_label_slots
+ffffffff816c8fb0 t sizeof_namespace_index
+ffffffff816c9040 t nd_label_gen_id
+ffffffff816c9080 t nd_label_reserve_dpa
+ffffffff816c92d0 t nd_label_data_init
+ffffffff816c95e0 t nd_label_validate
+ffffffff816c9d00 t to_current_namespace_index
+ffffffff816c9db0 t nd_label_copy
+ffffffff816c9e60 t to_next_namespace_index
+ffffffff816c9f10 t nd_label_active_count
+ffffffff816ca0b0 t nd_label_active
+ffffffff816ca260 t nd_label_alloc_slot
+ffffffff816ca350 t nd_label_free_slot
+ffffffff816ca430 t nd_label_nfree
+ffffffff816ca540 t nsl_validate_type_guid
+ffffffff816ca580 t nsl_get_claim_class
+ffffffff816ca740 t nd_pmem_namespace_label_update
+ffffffff816cadd0 t __pmem_label_update
+ffffffff816cb530 t nd_label_base
+ffffffff816cb640 t nd_label_write_index
+ffffffff816cbe10 t badrange_init
+ffffffff816cbe30 t badrange_add
+ffffffff816cbf30 t badrange_forget
+ffffffff816cc100 t nvdimm_badblocks_populate
+ffffffff816cc3c0 t __nd_detach_ndns
+ffffffff816cc460 t nd_detach_ndns
+ffffffff816cc530 t __nd_attach_ndns
+ffffffff816cc5d0 t nd_attach_ndns
+ffffffff816cc680 t to_nd_pfn_safe
+ffffffff816cc690 t nd_namespace_store
+ffffffff816cc920 t namespace_match
+ffffffff816cc950 t nd_sb_checksum
+ffffffff816cc990 t devm_nsio_enable
+ffffffff816ccab0 t nsio_rw_bytes
+ffffffff816cccf0 t devm_nsio_disable
+ffffffff816ccd90 t to_nd_btt
+ffffffff816ccdc0 t is_nd_btt
+ffffffff816ccde0 t nd_btt_create
+ffffffff816cce90 t nd_btt_arena_is_valid
+ffffffff816ccf90 t nd_btt_version
+ffffffff816cd080 t nd_btt_probe
+ffffffff816cd290 t nd_btt_release.llvm.18421582928704709732
+ffffffff816cd300 t namespace_show
+ffffffff816cd370 t namespace_store
+ffffffff816cd3f0 t log_zero_flags_show
+ffffffff816cd410 t __pmem_direct_access
+ffffffff816cd530 t nd_pmem_probe
+ffffffff816cd970 t nd_pmem_remove
+ffffffff816cd9d0 t nd_pmem_shutdown
+ffffffff816cd9f0 t nd_pmem_notify
+ffffffff816cdb50 t devm_add_action_or_reset
+ffffffff816cdbb0 t pmem_release_disk
+ffffffff816cdbf0 t pmem_submit_bio
+ffffffff816cdde0 t pmem_rw_page
+ffffffff816cde80 t pmem_do_write
+ffffffff816ce060 t pmem_do_read
+ffffffff816ce260 t pmem_clear_poison
+ffffffff816ce300 t pmem_dax_direct_access
+ffffffff816ce350 t pmem_dax_zero_page_range
+ffffffff816ce3e0 t pmem_recovery_write
+ffffffff816ce580 t dax_visible
+ffffffff816ce590 t write_cache_show
+ffffffff816ce5d0 t write_cache_store
+ffffffff816ce650 t nvdimm_namespace_attach_btt
+ffffffff816cfb20 t nvdimm_namespace_detach_btt
+ffffffff816cfb70 t btt_freelist_init
+ffffffff816cff40 t free_arenas
+ffffffff816cfff0 t arena_clear_freelist_error
+ffffffff816d0140 t btt_map_read
+ffffffff816d0290 t btt_submit_bio
+ffffffff816d04a0 t btt_rw_page
+ffffffff816d0510 t btt_getgeo
+ffffffff816d0540 t btt_do_bvec
+ffffffff816d1000 t of_pmem_region_probe
+ffffffff816d1240 t of_pmem_region_remove
+ffffffff816d1270 t dax_read_lock
+ffffffff816d1290 t dax_read_unlock
+ffffffff816d12c0 t dax_direct_access
+ffffffff816d1330 t dax_alive
+ffffffff816d1350 t dax_copy_from_iter
+ffffffff816d13b0 t dax_copy_to_iter
+ffffffff816d1410 t dax_zero_page_range
+ffffffff816d1450 t dax_recovery_write
+ffffffff816d1480 t dax_holder_notify_failure
+ffffffff816d1520 t dax_flush
+ffffffff816d1550 t dax_write_cache_enabled
+ffffffff816d1570 t dax_write_cache
+ffffffff816d15a0 t dax_synchronous
+ffffffff816d15c0 t set_dax_synchronous
+ffffffff816d15e0 t set_dax_nocache
+ffffffff816d1600 t set_dax_nomc
+ffffffff816d1620 t kill_dax
+ffffffff816d16d0 t run_dax
+ffffffff816d16f0 t alloc_dax
+ffffffff816d1830 t put_dax
+ffffffff816d1850 t dax_holder
+ffffffff816d1870 t inode_dax
+ffffffff816d1890 t dax_inode
+ffffffff816d18a0 t dax_get_private
+ffffffff816d18d0 t dax_fs_exit
+ffffffff816d1900 t dax_test
+ffffffff816d1920 t dax_set
+ffffffff816d1940 t dax_init_fs_context
+ffffffff816d1970 t dax_alloc_inode
+ffffffff816d19b0 t dax_destroy_inode
+ffffffff816d19f0 t dax_free_inode
+ffffffff816d1a30 t static_dev_dax
+ffffffff816d1a50 t kill_dev_dax
+ffffffff816d1aa0 t dax_region_put
+ffffffff816d1ae0 t alloc_dax_region
+ffffffff816d1c90 t dax_region_unregister
+ffffffff816d1ce0 t devm_create_dev_dax
+ffffffff816d2130 t alloc_dev_dax_range
+ffffffff816d2390 t unregister_dev_dax
+ffffffff816d2460 t devm_register_dax_mapping
+ffffffff816d2600 t __dax_driver_register
+ffffffff816d26e0 t dax_driver_unregister
+ffffffff816d27a0 t dax_region_visible
+ffffffff816d27f0 t create_show
+ffffffff816d2880 t create_store
+ffffffff816d29d0 t seed_show
+ffffffff816d2a60 t delete_store
+ffffffff816d2c20 t region_size_show
+ffffffff816d2c60 t region_align_show
+ffffffff816d2c90 t dax_bus_match
+ffffffff816d2d20 t dax_bus_uevent
+ffffffff816d2d40 t dax_bus_probe
+ffffffff816d2e20 t dax_bus_remove
+ffffffff816d2e50 t do_id_store
+ffffffff816d3090 t dev_dax_release
+ffffffff816d3140 t dev_dax_visible
+ffffffff816d31b0 t mapping_store
+ffffffff816d3350 t unregister_dax_mapping
+ffffffff816d33a0 t dax_mapping_release
+ffffffff816d33d0 t start_show
+ffffffff816d3480 t start_show
+ffffffff816d34b0 t end_show
+ffffffff816d3560 t end_show
+ffffffff816d3590 t pgoff_show
+ffffffff816d3640 t dma_buf_get_each
+ffffffff816d36d0 t is_dma_buf_file
+ffffffff816d36f0 t dma_buf_export
+ffffffff816d39e0 t dma_buf_fd
+ffffffff816d3a20 t dma_buf_get
+ffffffff816d3a70 t dma_buf_put
+ffffffff816d3aa0 t dma_buf_dynamic_attach
+ffffffff816d3d20 t dma_buf_detach
+ffffffff816d3e30 t dma_buf_attach
+ffffffff816d3e50 t dma_buf_pin
+ffffffff816d3e90 t dma_buf_unpin
+ffffffff816d3ec0 t dma_buf_map_attachment
+ffffffff816d4010 t dma_buf_unmap_attachment
+ffffffff816d40a0 t dma_buf_move_notify
+ffffffff816d40f0 t dma_buf_begin_cpu_access
+ffffffff816d4160 t dma_buf_begin_cpu_access_partial
+ffffffff816d41d0 t dma_buf_end_cpu_access
+ffffffff816d4200 t dma_buf_end_cpu_access_partial
+ffffffff816d4230 t dma_buf_mmap
+ffffffff816d42c0 t dma_buf_vmap
+ffffffff816d43f0 t dma_buf_vunmap
+ffffffff816d4480 t dma_buf_get_flags
+ffffffff816d44c0 t dma_buf_llseek
+ffffffff816d4520 t dma_buf_poll
+ffffffff816d4750 t dma_buf_ioctl
+ffffffff816d4890 t dma_buf_mmap_internal
+ffffffff816d48f0 t dma_buf_file_release
+ffffffff816d4980 t dma_buf_show_fdinfo
+ffffffff816d4a10 t dma_buf_poll_add_cb
+ffffffff816d4b30 t dma_buf_poll_cb
+ffffffff816d4bc0 t dma_buf_fs_init_context
+ffffffff816d4bf0 t dma_buf_release
+ffffffff816d4c80 t dmabuffs_dname
+ffffffff816d4d60 t dma_buf_debug_open
+ffffffff816d4d90 t dma_buf_debug_show
+ffffffff816d4f90 t __traceiter_dma_fence_emit
+ffffffff816d4fe0 t __traceiter_dma_fence_init
+ffffffff816d5030 t __traceiter_dma_fence_destroy
+ffffffff816d5080 t __traceiter_dma_fence_enable_signal
+ffffffff816d50d0 t __traceiter_dma_fence_signaled
+ffffffff816d5120 t __traceiter_dma_fence_wait_start
+ffffffff816d5170 t __traceiter_dma_fence_wait_end
+ffffffff816d51c0 t trace_event_raw_event_dma_fence
+ffffffff816d53c0 t perf_trace_dma_fence
+ffffffff816d5610 t dma_fence_get_stub
+ffffffff816d56b0 t dma_fence_init
+ffffffff816d5760 t dma_fence_signal_locked
+ffffffff816d5780 t dma_fence_allocate_private_stub
+ffffffff816d5810 t dma_fence_signal
+ffffffff816d5870 t dma_fence_context_alloc
+ffffffff816d5890 t dma_fence_signal_timestamp_locked
+ffffffff816d5990 t dma_fence_signal_timestamp
+ffffffff816d59e0 t dma_fence_wait_timeout
+ffffffff816d5b00 t dma_fence_enable_sw_signaling
+ffffffff816d5b40 t dma_fence_default_wait
+ffffffff816d5d60 t dma_fence_release
+ffffffff816d5e90 t dma_fence_free
+ffffffff816d5eb0 t __dma_fence_enable_signaling
+ffffffff816d5f60 t dma_fence_add_callback
+ffffffff816d6030 t dma_fence_get_status
+ffffffff816d60b0 t dma_fence_remove_callback
+ffffffff816d6120 t dma_fence_default_wait_cb
+ffffffff816d6140 t dma_fence_wait_any_timeout
+ffffffff816d6460 t dma_fence_describe
+ffffffff816d6530 t trace_raw_output_dma_fence
+ffffffff816d65a0 t dma_fence_stub_get_name
+ffffffff816d65c0 t dma_fence_array_get_driver_name.llvm.5985292377608844196
+ffffffff816d65e0 t dma_fence_array_get_timeline_name.llvm.5985292377608844196
+ffffffff816d6600 t dma_fence_array_enable_signaling.llvm.5985292377608844196
+ffffffff816d6730 t dma_fence_array_signaled.llvm.5985292377608844196
+ffffffff816d6770 t dma_fence_array_release.llvm.5985292377608844196
+ffffffff816d6810 t dma_fence_array_create
+ffffffff816d6960 t irq_dma_fence_array_work
+ffffffff816d69c0 t dma_fence_match_context
+ffffffff816d6a50 t dma_fence_array_first
+ffffffff816d6a90 t dma_fence_array_next
+ffffffff816d6ad0 t dma_fence_array_cb_func
+ffffffff816d6b50 t dma_fence_chain_walk
+ffffffff816d6d50 t dma_fence_chain_get_prev
+ffffffff816d6e10 t dma_fence_chain_find_seqno
+ffffffff816d6f20 t dma_fence_chain_get_driver_name.llvm.1420802118661819134
+ffffffff816d6f40 t dma_fence_chain_get_timeline_name.llvm.1420802118661819134
+ffffffff816d6f60 t dma_fence_chain_enable_signaling.llvm.1420802118661819134
+ffffffff816d7140 t dma_fence_chain_signaled.llvm.1420802118661819134
+ffffffff816d7230 t dma_fence_chain_release.llvm.1420802118661819134
+ffffffff816d7330 t dma_fence_chain_init
+ffffffff816d7410 t dma_fence_chain_cb
+ffffffff816d7480 t dma_fence_chain_irq_work
+ffffffff816d74e0 t dma_fence_unwrap_first
+ffffffff816d7560 t dma_fence_unwrap_next
+ffffffff816d75c0 t __dma_fence_unwrap_merge
+ffffffff816d7be0 t dma_resv_init
+ffffffff816d7c20 t dma_resv_fini
+ffffffff816d7c90 t dma_resv_reserve_fences
+ffffffff816d7ea0 t dma_resv_add_fence
+ffffffff816d8040 t dma_resv_replace_fences
+ffffffff816d8130 t dma_resv_iter_first_unlocked
+ffffffff816d81a0 t dma_resv_iter_walk_unlocked
+ffffffff816d8320 t dma_resv_iter_next_unlocked
+ffffffff816d8390 t dma_resv_iter_first
+ffffffff816d8400 t dma_resv_iter_next
+ffffffff816d8470 t dma_resv_copy_fences
+ffffffff816d87d0 t dma_resv_get_fences
+ffffffff816d8a40 t dma_resv_get_singleton
+ffffffff816d8b60 t dma_resv_wait_timeout
+ffffffff816d8d10 t dma_resv_test_signaled
+ffffffff816d8e10 t dma_resv_describe
+ffffffff816d8f10 t dma_heap_find
+ffffffff816d8fb0 t dma_heap_buffer_free
+ffffffff816d8fc0 t dma_heap_buffer_alloc
+ffffffff816d9010 t dma_heap_bufferfd_alloc
+ffffffff816d9080 t dma_heap_get_drvdata
+ffffffff816d9090 t dma_heap_put
+ffffffff816d9160 t dma_heap_get_dev
+ffffffff816d9180 t dma_heap_get_name
+ffffffff816d9190 t dma_heap_add
+ffffffff816d9460 t dma_heap_ioctl
+ffffffff816d9730 t dma_heap_open
+ffffffff816d9790 t dma_heap_devnode
+ffffffff816d97c0 t total_pools_kb_show
+ffffffff816d9850 t dma_buf_stats_teardown
+ffffffff816d9880 t dma_buf_init_sysfs_statistics
+ffffffff816d9900 t dma_buf_uninit_sysfs_statistics
+ffffffff816d9930 t dma_buf_stats_setup
+ffffffff816d99f0 t dmabuf_sysfs_uevent_filter
+ffffffff816d9a00 t dma_buf_sysfs_release
+ffffffff816d9a10 t dma_buf_stats_attribute_show
+ffffffff816d9a40 t exporter_name_show
+ffffffff816d9a70 t dev_lstats_read
+ffffffff816d9b00 t loopback_setup
+ffffffff816d9bc0 t loopback_dev_free
+ffffffff816d9bf0 t always_on
+ffffffff816d9c00 t loopback_dev_init
+ffffffff816d9c90 t loopback_xmit
+ffffffff816d9dd0 t loopback_get_stats64
+ffffffff816d9e60 t blackhole_netdev_setup
+ffffffff816d9f20 t blackhole_netdev_xmit
+ffffffff816d9f70 t uio_event_notify
+ffffffff816d9fc0 t __uio_register_device
+ffffffff816da240 t uio_device_release
+ffffffff816da260 t uio_dev_add_attributes
+ffffffff816da9e0 t uio_interrupt
+ffffffff816daa60 t uio_dev_del_attributes
+ffffffff816dabb0 t __devm_uio_register_device
+ffffffff816dac40 t devm_uio_unregister_device
+ffffffff816dac60 t uio_unregister_device
+ffffffff816dad40 t map_release
+ffffffff816dad50 t map_release
+ffffffff816dad70 t map_type_show
+ffffffff816dada0 t map_name_show
+ffffffff816dade0 t map_addr_show
+ffffffff816dae00 t map_size_show
+ffffffff816dae20 t map_offset_show
+ffffffff816dae40 t portio_release
+ffffffff816dae50 t portio_type_show
+ffffffff816dae80 t portio_name_show
+ffffffff816daec0 t portio_start_show
+ffffffff816daee0 t portio_size_show
+ffffffff816daf00 t portio_porttype_show
+ffffffff816daf40 t uio_read
+ffffffff816db0f0 t uio_write
+ffffffff816db1f0 t uio_poll
+ffffffff816db2a0 t uio_mmap
+ffffffff816db3b0 t uio_open
+ffffffff816db510 t uio_release
+ffffffff816db5a0 t uio_fasync
+ffffffff816db5c0 t uio_mmap_physical
+ffffffff816db690 t uio_mmap_logical
+ffffffff816db6e0 t uio_vma_fault
+ffffffff816db7e0 t serio_rescan
+ffffffff816db800 t serio_queue_event
+ffffffff816db950 t serio_reconnect
+ffffffff816db970 t __serio_register_port
+ffffffff816dba80 t serio_unregister_port
+ffffffff816dbb50 t serio_destroy_port
+ffffffff816dbe00 t serio_unregister_child_port
+ffffffff816dbf00 t __serio_register_driver
+ffffffff816dbf90 t serio_unregister_driver
+ffffffff816dc190 t serio_open
+ffffffff816dc210 t serio_close
+ffffffff816dc260 t serio_interrupt
+ffffffff816dc2f0 t serio_bus_match
+ffffffff816dc380 t serio_uevent
+ffffffff816dc470 t serio_driver_probe
+ffffffff816dc4d0 t serio_driver_remove
+ffffffff816dc520 t serio_shutdown
+ffffffff816dc570 t serio_release_port
+ffffffff816dc590 t proto_show
+ffffffff816dc5c0 t extra_show
+ffffffff816dc5f0 t serio_show_description
+ffffffff816dc620 t drvctl_store
+ffffffff816dcb60 t serio_reconnect_port
+ffffffff816dcc90 t serio_disconnect_driver
+ffffffff816dcce0 t serio_show_bind_mode
+ffffffff816dcd20 t serio_set_bind_mode
+ffffffff816dcd90 t firmware_id_show
+ffffffff816dcdc0 t bind_mode_show
+ffffffff816dce00 t bind_mode_store
+ffffffff816dce60 t serio_suspend
+ffffffff816dceb0 t serio_resume
+ffffffff816dcf50 t serio_handle_event
+ffffffff816dd390 t i8042_lock_chip
+ffffffff816dd3b0 t i8042_unlock_chip
+ffffffff816dd3d0 t i8042_install_filter
+ffffffff816dd420 t i8042_remove_filter
+ffffffff816dd470 t i8042_command
+ffffffff816dd4d0 t __i8042_command
+ffffffff816dd740 t i8042_set_reset
+ffffffff816dd7a0 t i8042_probe
+ffffffff816de400 t i8042_remove
+ffffffff816de500 t i8042_shutdown
+ffffffff816de520 t i8042_controller_selftest
+ffffffff816de630 t i8042_controller_reset
+ffffffff816de740 t i8042_flush
+ffffffff816de810 t i8042_create_aux_port
+ffffffff816de990 t i8042_enable_aux_port
+ffffffff816dea20 t i8042_enable_mux_ports
+ffffffff816dec10 t i8042_interrupt
+ffffffff816def60 t i8042_toggle_aux
+ffffffff816df070 t i8042_kbd_write
+ffffffff816df130 t i8042_aux_test_irq
+ffffffff816df200 t i8042_set_mux_mode
+ffffffff816df370 t i8042_aux_write
+ffffffff816df410 t i8042_start
+ffffffff816df480 t i8042_stop
+ffffffff816df4d0 t i8042_port_close
+ffffffff816df5f0 t i8042_pm_suspend
+ffffffff816df730 t i8042_pm_resume
+ffffffff816df860 t i8042_pm_thaw
+ffffffff816df880 t i8042_pm_reset
+ffffffff816df8a0 t i8042_pm_restore
+ffffffff816df8c0 t i8042_pm_resume_noirq
+ffffffff816df8e0 t i8042_controller_resume
+ffffffff816dfc10 t i8042_pnp_kbd_probe
+ffffffff816dfe10 t i8042_pnp_aux_probe
+ffffffff816dfff0 t i8042_kbd_bind_notifier
+ffffffff816e0030 t i8042_panic_blink
+ffffffff816e02e0 t serport_ldisc_open
+ffffffff816e0370 t serport_ldisc_close
+ffffffff816e0390 t serport_ldisc_read
+ffffffff816e0570 t serport_ldisc_ioctl
+ffffffff816e05c0 t serport_ldisc_hangup
+ffffffff816e0610 t serport_ldisc_receive
+ffffffff816e06d0 t serport_ldisc_write_wakeup
+ffffffff816e0730 t serport_serio_write
+ffffffff816e07a0 t serport_serio_open
+ffffffff816e07e0 t serport_serio_close
+ffffffff816e0820 t input_handle_event
+ffffffff816e0cc0 t input_event_dispose
+ffffffff816e0e00 t input_event
+ffffffff816e0e70 t input_inject_event
+ffffffff816e0f00 t input_alloc_absinfo
+ffffffff816e0f70 t input_set_abs_params
+ffffffff816e1040 t input_copy_abs
+ffffffff816e10d0 t input_set_capability
+ffffffff816e1260 t input_grab_device
+ffffffff816e12c0 t input_release_device
+ffffffff816e1350 t input_open_device
+ffffffff816e1420 t input_flush_device
+ffffffff816e1490 t input_close_device
+ffffffff816e1580 t input_scancode_to_scalar
+ffffffff816e15c0 t input_get_keycode
+ffffffff816e1620 t input_set_keycode
+ffffffff816e1810 t input_match_device_id
+ffffffff816e1960 t input_reset_device
+ffffffff816e1a30 t input_dev_toggle
+ffffffff816e1c00 t input_dev_release_keys
+ffffffff816e1d60 t input_devnode
+ffffffff816e1d90 t input_allocate_device
+ffffffff816e1e80 t devm_input_allocate_device
+ffffffff816e1f00 t devm_input_device_release
+ffffffff816e1f30 t input_free_device
+ffffffff816e1f90 t devm_input_device_match
+ffffffff816e1fb0 t input_set_timestamp
+ffffffff816e2000 t input_get_timestamp
+ffffffff816e2060 t input_enable_softrepeat
+ffffffff816e2090 t input_repeat_key
+ffffffff816e2220 t input_device_enabled
+ffffffff816e2250 t input_register_device
+ffffffff816e2840 t devm_input_device_unregister
+ffffffff816e2860 t input_default_getkeycode
+ffffffff816e2910 t input_default_setkeycode
+ffffffff816e2a70 t input_unregister_device
+ffffffff816e2ae0 t __input_unregister_device
+ffffffff816e2c90 t input_register_handler
+ffffffff816e2df0 t input_unregister_handler
+ffffffff816e2eb0 t input_handler_for_each_handle
+ffffffff816e2f20 t input_register_handle
+ffffffff816e3040 t input_unregister_handle
+ffffffff816e30d0 t input_get_new_minor
+ffffffff816e3120 t input_free_minor
+ffffffff816e3140 t input_proc_exit
+ffffffff816e3180 t input_pass_values
+ffffffff816e34e0 t input_dev_uevent
+ffffffff816e3880 t input_dev_release
+ffffffff816e38e0 t input_dev_show_name
+ffffffff816e3920 t input_dev_show_phys
+ffffffff816e3960 t input_dev_show_uniq
+ffffffff816e39a0 t input_dev_show_modalias
+ffffffff816e39e0 t input_print_modalias
+ffffffff816e42c0 t input_dev_show_properties
+ffffffff816e4300 t input_print_bitmap
+ffffffff816e44b0 t inhibited_show
+ffffffff816e44e0 t inhibited_store
+ffffffff816e46d0 t input_dev_show_id_bustype
+ffffffff816e4700 t input_dev_show_id_vendor
+ffffffff816e4730 t input_dev_show_id_product
+ffffffff816e4760 t input_dev_show_id_version
+ffffffff816e4790 t input_dev_show_cap_ev
+ffffffff816e47d0 t input_dev_show_cap_key
+ffffffff816e4810 t input_dev_show_cap_rel
+ffffffff816e4850 t input_dev_show_cap_abs
+ffffffff816e4890 t input_dev_show_cap_msc
+ffffffff816e48d0 t input_dev_show_cap_led
+ffffffff816e4910 t input_dev_show_cap_snd
+ffffffff816e4950 t input_dev_show_cap_ff
+ffffffff816e4990 t input_dev_show_cap_sw
+ffffffff816e49d0 t input_add_uevent_bm_var
+ffffffff816e4a70 t input_add_uevent_modalias_var
+ffffffff816e4b00 t input_dev_suspend
+ffffffff816e4bc0 t input_dev_resume
+ffffffff816e4c00 t input_dev_freeze
+ffffffff816e4cb0 t input_dev_poweroff
+ffffffff816e4cf0 t input_proc_devices_open
+ffffffff816e4d10 t input_proc_devices_poll
+ffffffff816e4d60 t input_devices_seq_start
+ffffffff816e4db0 t input_seq_stop
+ffffffff816e4dd0 t input_devices_seq_next
+ffffffff816e4df0 t input_devices_seq_show
+ffffffff816e5120 t input_seq_print_bitmap
+ffffffff816e5240 t input_proc_handlers_open
+ffffffff816e5260 t input_handlers_seq_start
+ffffffff816e52c0 t input_handlers_seq_next
+ffffffff816e52f0 t input_handlers_seq_show
+ffffffff816e5360 t input_event_from_user
+ffffffff816e5390 t input_event_to_user
+ffffffff816e53c0 t input_ff_effect_from_user
+ffffffff816e5400 t input_mt_init_slots
+ffffffff816e56c0 t input_mt_destroy_slots
+ffffffff816e5700 t input_mt_report_slot_state
+ffffffff816e5790 t input_mt_report_finger_count
+ffffffff816e5830 t input_mt_report_pointer_emulation
+ffffffff816e5a60 t input_mt_drop_unused
+ffffffff816e5b30 t input_mt_release_slots
+ffffffff816e5c00 t input_mt_sync_frame
+ffffffff816e5cf0 t input_mt_assign_slots
+ffffffff816e61b0 t input_mt_get_slot_by_key
+ffffffff816e6240 t input_dev_poller_finalize
+ffffffff816e6280 t input_dev_poller_start
+ffffffff816e62e0 t input_dev_poller_stop
+ffffffff816e6300 t input_setup_polling
+ffffffff816e63d0 t input_dev_poller_work
+ffffffff816e6420 t input_set_poll_interval
+ffffffff816e6470 t input_set_min_poll_interval
+ffffffff816e64c0 t input_set_max_poll_interval
+ffffffff816e6510 t input_get_poll_interval
+ffffffff816e6540 t input_poller_attrs_visible
+ffffffff816e6570 t input_dev_get_poll_interval
+ffffffff816e65a0 t input_dev_set_poll_interval
+ffffffff816e66b0 t input_dev_get_poll_max
+ffffffff816e66e0 t input_dev_get_poll_min
+ffffffff816e6710 t input_ff_upload
+ffffffff816e6980 t input_ff_erase
+ffffffff816e69f0 t erase_effect
+ffffffff816e6af0 t input_ff_flush
+ffffffff816e6b60 t input_ff_event
+ffffffff816e6c00 t input_ff_create
+ffffffff816e6d70 t input_ff_destroy
+ffffffff816e6dd0 t touchscreen_parse_properties
+ffffffff816e72f0 t touchscreen_set_mt_pos
+ffffffff816e7330 t touchscreen_report_pos
+ffffffff816e73b0 t rtc_month_days
+ffffffff816e7410 t rtc_year_days
+ffffffff816e7480 t rtc_time64_to_tm
+ffffffff816e75d0 t rtc_valid_tm
+ffffffff816e7680 t rtc_tm_to_time64
+ffffffff816e76b0 t rtc_tm_to_ktime
+ffffffff816e7710 t rtc_ktime_to_tm
+ffffffff816e7880 t devm_rtc_allocate_device
+ffffffff816e7af0 t devm_rtc_release_device
+ffffffff816e7b10 t __devm_rtc_register_device
+ffffffff816e7e40 t devm_rtc_unregister_device
+ffffffff816e7ea0 t devm_rtc_device_register
+ffffffff816e7ef0 t rtc_device_release
+ffffffff816e7f70 t rtc_suspend
+ffffffff816e8100 t rtc_resume
+ffffffff816e8280 t __traceiter_rtc_set_time
+ffffffff816e82d0 t __traceiter_rtc_read_time
+ffffffff816e8320 t __traceiter_rtc_set_alarm
+ffffffff816e8370 t __traceiter_rtc_read_alarm
+ffffffff816e83c0 t __traceiter_rtc_irq_set_freq
+ffffffff816e8410 t __traceiter_rtc_irq_set_state
+ffffffff816e8460 t __traceiter_rtc_alarm_irq_enable
+ffffffff816e84b0 t __traceiter_rtc_set_offset
+ffffffff816e8500 t __traceiter_rtc_read_offset
+ffffffff816e8550 t __traceiter_rtc_timer_enqueue
+ffffffff816e85a0 t __traceiter_rtc_timer_dequeue
+ffffffff816e85f0 t __traceiter_rtc_timer_fired
+ffffffff816e8640 t trace_event_raw_event_rtc_time_alarm_class
+ffffffff816e8700 t perf_trace_rtc_time_alarm_class
+ffffffff816e8800 t trace_event_raw_event_rtc_irq_set_freq
+ffffffff816e88c0 t perf_trace_rtc_irq_set_freq
+ffffffff816e89c0 t trace_event_raw_event_rtc_irq_set_state
+ffffffff816e8a80 t perf_trace_rtc_irq_set_state
+ffffffff816e8b80 t trace_event_raw_event_rtc_alarm_irq_enable
+ffffffff816e8c40 t perf_trace_rtc_alarm_irq_enable
+ffffffff816e8d40 t trace_event_raw_event_rtc_offset_class
+ffffffff816e8e00 t perf_trace_rtc_offset_class
+ffffffff816e8f00 t trace_event_raw_event_rtc_timer_class
+ffffffff816e8fd0 t perf_trace_rtc_timer_class
+ffffffff816e90d0 t rtc_read_time
+ffffffff816e9170 t __rtc_read_time
+ffffffff816e9250 t rtc_set_time
+ffffffff816e9490 t rtc_update_irq_enable
+ffffffff816e95e0 t __rtc_read_alarm
+ffffffff816e9a40 t rtc_read_alarm
+ffffffff816e9ba0 t rtc_set_alarm
+ffffffff816e9d60 t rtc_timer_remove
+ffffffff816e9eb0 t rtc_timer_enqueue
+ffffffff816ea150 t rtc_initialize_alarm
+ffffffff816ea2d0 t trace_rtc_timer_enqueue
+ffffffff816ea330 t rtc_alarm_irq_enable
+ffffffff816ea430 t rtc_handle_legacy_irq
+ffffffff816ea4c0 t rtc_aie_update_irq
+ffffffff816ea540 t rtc_uie_update_irq
+ffffffff816ea5c0 t rtc_pie_update_irq
+ffffffff816ea680 t rtc_update_irq
+ffffffff816ea6d0 t rtc_class_open
+ffffffff816ea720 t rtc_class_close
+ffffffff816ea740 t rtc_irq_set_state
+ffffffff816ea7f0 t rtc_irq_set_freq
+ffffffff816ea8d0 t rtc_timer_do_work
+ffffffff816eacc0 t __rtc_set_alarm
+ffffffff816eae50 t rtc_alarm_disable
+ffffffff816eaee0 t rtc_timer_init
+ffffffff816eaf00 t rtc_timer_start
+ffffffff816eaf70 t rtc_timer_cancel
+ffffffff816eafc0 t rtc_read_offset
+ffffffff816eb080 t rtc_set_offset
+ffffffff816eb140 t trace_raw_output_rtc_time_alarm_class
+ffffffff816eb1a0 t trace_raw_output_rtc_irq_set_freq
+ffffffff816eb200 t trace_raw_output_rtc_irq_set_state
+ffffffff816eb270 t trace_raw_output_rtc_alarm_irq_enable
+ffffffff816eb2e0 t trace_raw_output_rtc_offset_class
+ffffffff816eb340 t trace_raw_output_rtc_timer_class
+ffffffff816eb3a0 t devm_rtc_nvmem_register
+ffffffff816eb410 t rtc_dev_prepare
+ffffffff816eb470 t rtc_dev_read
+ffffffff816eb640 t rtc_dev_poll
+ffffffff816eb690 t rtc_dev_ioctl
+ffffffff816ebdc0 t rtc_dev_open
+ffffffff816ebe20 t rtc_dev_release
+ffffffff816ebe80 t rtc_dev_fasync
+ffffffff816ebea0 t rtc_proc_add_device
+ffffffff816ebf40 t rtc_proc_show
+ffffffff816ec130 t rtc_proc_del_device
+ffffffff816ec1b0 t rtc_get_dev_attribute_groups
+ffffffff816ec1d0 t rtc_add_groups
+ffffffff816ec310 t rtc_add_group
+ffffffff816ec480 t rtc_attr_is_visible
+ffffffff816ec500 t wakealarm_show
+ffffffff816ec5a0 t wakealarm_store
+ffffffff816ec740 t offset_show
+ffffffff816ec7b0 t offset_show
+ffffffff816ec7f0 t offset_store
+ffffffff816ec870 t offset_store
+ffffffff816ec900 t range_show
+ffffffff816ec930 t date_show
+ffffffff816ec9c0 t time_show
+ffffffff816eca50 t since_epoch_show
+ffffffff816ecae0 t max_user_freq_show
+ffffffff816ecb10 t max_user_freq_store
+ffffffff816ecba0 t hctosys_show
+ffffffff816ecc00 t mc146818_avoid_UIP
+ffffffff816ecd20 t mc146818_does_rtc_work
+ffffffff816ecd40 t mc146818_get_time
+ffffffff816ece60 t mc146818_get_time_callback
+ffffffff816ecf10 t mc146818_set_time
+ffffffff816ed140 t cmos_do_probe
+ffffffff816ed6c0 t cmos_nvram_read
+ffffffff816ed750 t cmos_nvram_write
+ffffffff816ed820 t cmos_irq_disable
+ffffffff816ed8e0 t cmos_interrupt
+ffffffff816ed9e0 t acpi_rtc_event_setup
+ffffffff816eda30 t rtc_wake_on
+ffffffff816eda60 t rtc_wake_off
+ffffffff816eda80 t cmos_read_time
+ffffffff816edad0 t cmos_set_time
+ffffffff816edaf0 t cmos_read_alarm
+ffffffff816edc20 t cmos_set_alarm
+ffffffff816edf60 t cmos_procfs
+ffffffff816ee070 t cmos_alarm_irq_enable
+ffffffff816ee0d0 t cmos_read_alarm_callback
+ffffffff816ee180 t cmos_set_alarm_callback
+ffffffff816ee230 t cmos_irq_enable
+ffffffff816ee330 t rtc_handler
+ffffffff816ee400 t cmos_pnp_probe
+ffffffff816ee4a0 t cmos_pnp_remove
+ffffffff816ee4b0 t cmos_pnp_shutdown
+ffffffff816ee520 t cmos_do_remove
+ffffffff816ee600 t cmos_aie_poweroff
+ffffffff816ee760 t cmos_suspend
+ffffffff816ee8c0 t cmos_resume
+ffffffff816eec60 t cmos_platform_remove
+ffffffff816eec80 t cmos_platform_shutdown
+ffffffff816eecf0 t power_supply_changed
+ffffffff816eed50 t power_supply_am_i_supplied
+ffffffff816eedc0 t __power_supply_am_i_supplied
+ffffffff816eef10 t power_supply_is_system_supplied
+ffffffff816eef80 t __power_supply_is_system_supplied
+ffffffff816eeff0 t power_supply_get_property_from_supplier
+ffffffff816ef070 t __power_supply_get_supplier_property
+ffffffff816ef190 t power_supply_set_battery_charged
+ffffffff816ef1d0 t power_supply_get_by_name
+ffffffff816ef210 t power_supply_match_device_by_name
+ffffffff816ef240 t power_supply_put
+ffffffff816ef270 t power_supply_get_by_phandle
+ffffffff816ef350 t power_supply_match_device_node
+ffffffff816ef370 t power_supply_get_by_phandle_array
+ffffffff816ef470 t power_supply_match_device_node_array
+ffffffff816ef4d0 t devm_power_supply_get_by_phandle
+ffffffff816ef640 t devm_power_supply_put
+ffffffff816ef670 t power_supply_get_battery_info
+ffffffff816f0210 t power_supply_put_battery_info
+ffffffff816f0280 t power_supply_temp2resist_simple
+ffffffff816f0310 t power_supply_vbat2ri
+ffffffff816f0400 t power_supply_get_maintenance_charging_setting
+ffffffff816f0430 t power_supply_ocv2cap_simple
+ffffffff816f04c0 t power_supply_find_ocv2cap_table
+ffffffff816f0580 t power_supply_batinfo_ocv2cap
+ffffffff816f06d0 t power_supply_battery_bti_in_range
+ffffffff816f0730 t power_supply_get_property
+ffffffff816f0770 t power_supply_set_property
+ffffffff816f07a0 t power_supply_property_is_writeable
+ffffffff816f07d0 t power_supply_external_power_changed
+ffffffff816f0800 t power_supply_powers
+ffffffff816f0820 t power_supply_reg_notifier
+ffffffff816f0840 t power_supply_unreg_notifier
+ffffffff816f0860 t power_supply_register
+ffffffff816f0880 t __power_supply_register.llvm.2821514064478626482
+ffffffff816f0cb0 t power_supply_register_no_ws
+ffffffff816f0cd0 t devm_power_supply_register
+ffffffff816f0d60 t devm_power_supply_release
+ffffffff816f0d80 t devm_power_supply_register_no_ws
+ffffffff816f0e10 t power_supply_unregister
+ffffffff816f0eb0 t device_init_wakeup
+ffffffff816f0f00 t power_supply_get_drvdata
+ffffffff816f0f10 t power_supply_dev_release
+ffffffff816f0f30 t power_supply_changed_work
+ffffffff816f0ff0 t power_supply_deferred_register_work
+ffffffff816f10b0 t psy_register_thermal
+ffffffff816f1170 t __power_supply_changed_work
+ffffffff816f1290 t __power_supply_find_supply_from_node
+ffffffff816f12b0 t __power_supply_populate_supplied_from
+ffffffff816f13b0 t power_supply_read_temp
+ffffffff816f1450 t power_supply_init_attrs
+ffffffff816f1550 t power_supply_show_property
+ffffffff816f1770 t power_supply_store_property
+ffffffff816f1840 t power_supply_uevent
+ffffffff816f1a50 t power_supply_charge_behaviour_show
+ffffffff816f1bc0 t power_supply_charge_behaviour_parse
+ffffffff816f1c00 t power_supply_attr_is_visible
+ffffffff816f1c90 t __traceiter_thermal_temperature
+ffffffff816f1ce0 t __traceiter_cdev_update
+ffffffff816f1d30 t __traceiter_thermal_zone_trip
+ffffffff816f1d90 t __traceiter_thermal_power_cpu_get_power_simple
+ffffffff816f1de0 t __traceiter_thermal_power_cpu_limit
+ffffffff816f1e50 t trace_event_raw_event_thermal_temperature
+ffffffff816f1f70 t perf_trace_thermal_temperature
+ffffffff816f20d0 t trace_event_raw_event_cdev_update
+ffffffff816f21f0 t perf_trace_cdev_update
+ffffffff816f2350 t trace_event_raw_event_thermal_zone_trip
+ffffffff816f2470 t perf_trace_thermal_zone_trip
+ffffffff816f25e0 t trace_event_raw_event_thermal_power_cpu_get_power_simple
+ffffffff816f26a0 t perf_trace_thermal_power_cpu_get_power_simple
+ffffffff816f27a0 t trace_event_raw_event_thermal_power_cpu_limit
+ffffffff816f28e0 t perf_trace_thermal_power_cpu_limit
+ffffffff816f2a70 t thermal_register_governor
+ffffffff816f2c80 t __find_governor
+ffffffff816f2d00 t thermal_set_governor
+ffffffff816f2dc0 t thermal_unregister_governor
+ffffffff816f2f00 t thermal_zone_device_set_policy
+ffffffff816f3080 t thermal_build_list_of_policies
+ffffffff816f3120 t thermal_zone_device_critical
+ffffffff816f3160 t thermal_zone_device_enable
+ffffffff816f31f0 t thermal_zone_device_disable
+ffffffff816f3280 t thermal_zone_device_is_enabled
+ffffffff816f32a0 t thermal_zone_device_update
+ffffffff816f3680 t for_each_thermal_governor
+ffffffff816f3700 t for_each_thermal_cooling_device
+ffffffff816f3780 t for_each_thermal_zone
+ffffffff816f3800 t thermal_zone_get_by_id
+ffffffff816f3870 t thermal_zone_bind_cooling_device
+ffffffff816f3c70 t thermal_zone_unbind_cooling_device
+ffffffff816f3de0 t thermal_cooling_device_register
+ffffffff816f3e00 t __thermal_cooling_device_register.llvm.16700326276042832944
+ffffffff816f40d0 t thermal_of_cooling_device_register
+ffffffff816f40e0 t devm_thermal_of_cooling_device_register
+ffffffff816f4180 t thermal_cooling_device_release
+ffffffff816f41a0 t thermal_cooling_device_unregister
+ffffffff816f43c0 t thermal_zone_device_register_with_trips
+ffffffff816f48a0 t bind_tz
+ffffffff816f4b20 t thermal_zone_device_check
+ffffffff816f4b40 t thermal_zone_device_register
+ffffffff816f4b70 t thermal_zone_device_unregister
+ffffffff816f4dc0 t thermal_zone_get_zone_by_name
+ffffffff816f4eb0 t trace_raw_output_thermal_temperature
+ffffffff816f4f10 t trace_raw_output_cdev_update
+ffffffff816f4f70 t trace_raw_output_thermal_zone_trip
+ffffffff816f5000 t trace_raw_output_thermal_power_cpu_get_power_simple
+ffffffff816f5060 t trace_raw_output_thermal_power_cpu_limit
+ffffffff816f50e0 t bind_cdev
+ffffffff816f5310 t thermal_release
+ffffffff816f5380 t thermal_pm_notify
+ffffffff816f5450 t thermal_zone_create_device_groups
+ffffffff816f5840 t thermal_zone_destroy_device_groups
+ffffffff816f58b0 t thermal_cooling_device_stats_update
+ffffffff816f5920 t thermal_cooling_device_setup_sysfs
+ffffffff816f5a00 t thermal_cooling_device_destroy_sysfs
+ffffffff816f5a30 t trip_point_show
+ffffffff816f5a50 t weight_show
+ffffffff816f5a70 t weight_store
+ffffffff816f5ae0 t temp_show
+ffffffff816f5b50 t emul_temp_store
+ffffffff816f5c20 t policy_show
+ffffffff816f5c50 t policy_store
+ffffffff816f5cf0 t available_policies_show
+ffffffff816f5d10 t sustainable_power_show
+ffffffff816f5d50 t sustainable_power_store
+ffffffff816f5de0 t k_po_show
+ffffffff816f5e20 t k_po_store
+ffffffff816f5eb0 t k_pu_show
+ffffffff816f5ef0 t k_pu_store
+ffffffff816f5f80 t k_i_show
+ffffffff816f5fc0 t k_i_store
+ffffffff816f6050 t k_d_show
+ffffffff816f6090 t k_d_store
+ffffffff816f6120 t integral_cutoff_show
+ffffffff816f6160 t integral_cutoff_store
+ffffffff816f61f0 t slope_show
+ffffffff816f6230 t slope_store
+ffffffff816f62c0 t trip_point_type_show
+ffffffff816f6400 t trip_point_temp_show
+ffffffff816f64c0 t trip_point_temp_store
+ffffffff816f6640 t trip_point_hyst_show
+ffffffff816f6700 t trip_point_hyst_store
+ffffffff816f6800 t total_trans_show
+ffffffff816f6850 t time_in_state_ms_show
+ffffffff816f6910 t trans_table_show
+ffffffff816f6b60 t cdev_type_show
+ffffffff816f6b90 t max_state_show
+ffffffff816f6bc0 t cur_state_show
+ffffffff816f6c40 t cur_state_store
+ffffffff816f6d90 t get_tz_trend
+ffffffff816f6e20 t get_thermal_instance
+ffffffff816f6ec0 t __thermal_zone_get_temp
+ffffffff816f6fe0 t thermal_zone_get_temp
+ffffffff816f7150 t __thermal_zone_set_trips
+ffffffff816f72d0 t thermal_zone_set_trips
+ffffffff816f7310 t __thermal_cdev_update
+ffffffff816f73f0 t thermal_cdev_update
+ffffffff816f7440 t thermal_zone_get_slope
+ffffffff816f7470 t thermal_zone_get_offset
+ffffffff816f74a0 t thermal_genl_sampling_temp
+ffffffff816f7610 t thermal_genl_event_tz
+ffffffff816f7610 t thermal_genl_event_tz_delete
+ffffffff816f7610 t thermal_genl_event_tz_disable
+ffffffff816f7610 t thermal_genl_event_tz_enable
+ffffffff816f7670 t thermal_genl_event_tz_trip_down
+ffffffff816f7670 t thermal_genl_event_tz_trip_up
+ffffffff816f7720 t thermal_genl_event_tz_trip_add
+ffffffff816f7720 t thermal_genl_event_tz_trip_change
+ffffffff816f7820 t thermal_notify_tz_create
+ffffffff816f78c0 t thermal_genl_send_event
+ffffffff816f79e0 t thermal_notify_tz_delete
+ffffffff816f7a80 t thermal_notify_tz_enable
+ffffffff816f7b20 t thermal_notify_tz_disable
+ffffffff816f7bc0 t thermal_notify_tz_trip_down
+ffffffff816f7c60 t thermal_notify_tz_trip_up
+ffffffff816f7d00 t thermal_notify_tz_trip_add
+ffffffff816f7db0 t thermal_notify_tz_trip_delete
+ffffffff816f7e50 t thermal_notify_tz_trip_change
+ffffffff816f7f00 t thermal_notify_cdev_state_update
+ffffffff816f7fa0 t thermal_notify_cdev_add
+ffffffff816f8040 t thermal_notify_cdev_delete
+ffffffff816f80e0 t thermal_notify_tz_gov_change
+ffffffff816f8180 t thermal_genl_cpu_capability_event
+ffffffff816f8220 t thermal_genl_event_tz_create
+ffffffff816f82c0 t thermal_genl_event_tz_trip_delete
+ffffffff816f8350 t thermal_genl_event_cdev_add
+ffffffff816f8410 t thermal_genl_event_cdev_delete
+ffffffff816f8470 t thermal_genl_event_cdev_state_update
+ffffffff816f8500 t thermal_genl_event_gov_change
+ffffffff816f85a0 t thermal_genl_event_cpu_capability_change
+ffffffff816f86f0 t thermal_genl_cmd_dumpit
+ffffffff816f8820 t thermal_genl_cmd_doit
+ffffffff816f89b0 t thermal_genl_cmd_tz_get_id
+ffffffff816f8a50 t thermal_genl_cmd_tz_get_trip
+ffffffff816f8c50 t thermal_genl_cmd_tz_get_temp
+ffffffff816f8d20 t thermal_genl_cmd_tz_get_gov
+ffffffff816f8e00 t thermal_genl_cmd_cdev_get
+ffffffff816f8ea0 t __thermal_genl_cmd_tz_get_id
+ffffffff816f8f40 t __thermal_genl_cmd_cdev_get
+ffffffff816f8fe0 t of_thermal_get_ntrips
+ffffffff816f9000 t of_thermal_is_trip_valid
+ffffffff816f9020 t of_thermal_get_trip_points
+ffffffff816f9040 t thermal_of_zone_unregister
+ffffffff816f90a0 t thermal_of_zone_register
+ffffffff816f98d0 t of_thermal_get_trip_type
+ffffffff816f9910 t of_thermal_get_trip_temp
+ffffffff816f9940 t of_thermal_get_trip_hyst
+ffffffff816f9980 t of_thermal_set_trip_hyst
+ffffffff816f99b0 t of_thermal_get_crit_temp
+ffffffff816f9a10 t thermal_of_bind
+ffffffff816f9a30 t thermal_of_unbind
+ffffffff816f9a50 t devm_thermal_of_zone_register
+ffffffff816f9af0 t devm_thermal_of_zone_release
+ffffffff816f9b50 t devm_thermal_of_zone_unregister
+ffffffff816f9b80 t devm_thermal_of_zone_match
+ffffffff816f9bb0 t thermal_of_for_each_cooling_maps
+ffffffff816f9e70 t __thermal_of_bind
+ffffffff816f9fe0 t __thermal_of_unbind
+ffffffff816fa110 t step_wise_throttle
+ffffffff816fa3f0 t user_space_bind
+ffffffff816fa420 t notify_user_space
+ffffffff816fa520 t cpufreq_cooling_register
+ffffffff816fa540 t __cpufreq_cooling_register
+ffffffff816fa750 t of_cpufreq_cooling_register
+ffffffff816fa7e0 t cpufreq_cooling_unregister
+ffffffff816fa810 t cpufreq_get_max_state
+ffffffff816fa830 t cpufreq_get_cur_state
+ffffffff816fa850 t intel_thermal_interrupt
+ffffffff816fab30 t therm_throt_process
+ffffffff816fac90 t x86_thermal_enabled
+ffffffff816facb0 t intel_init_thermal
+ffffffff816fb0b0 t thermal_throttle_online
+ffffffff816fb2d0 t thermal_throttle_offline
+ffffffff816fb380 t throttle_active_work
+ffffffff816fb5d0 t therm_throt_device_show_core_throttle_count
+ffffffff816fb650 t therm_throt_device_show_core_throttle_max_time_ms
+ffffffff816fb6d0 t therm_throt_device_show_core_throttle_total_time_ms
+ffffffff816fb750 t therm_throt_device_show_core_power_limit_count
+ffffffff816fb7d0 t therm_throt_device_show_package_throttle_count
+ffffffff816fb850 t therm_throt_device_show_package_throttle_max_time_ms
+ffffffff816fb8d0 t therm_throt_device_show_package_throttle_total_time_ms
+ffffffff816fb950 t therm_throt_device_show_package_power_limit_count
+ffffffff816fb9d0 t __traceiter_watchdog_start
+ffffffff816fba20 t __traceiter_watchdog_ping
+ffffffff816fba70 t __traceiter_watchdog_stop
+ffffffff816fbac0 t __traceiter_watchdog_set_timeout
+ffffffff816fbb20 t trace_event_raw_event_watchdog_template
+ffffffff816fbbe0 t perf_trace_watchdog_template
+ffffffff816fbce0 t trace_event_raw_event_watchdog_set_timeout
+ffffffff816fbdb0 t perf_trace_watchdog_set_timeout
+ffffffff816fbec0 t watchdog_init_timeout
+ffffffff816fc050 t watchdog_set_restart_priority
+ffffffff816fc060 t watchdog_register_device
+ffffffff816fc140 t __watchdog_register_device
+ffffffff816fc3c0 t watchdog_unregister_device
+ffffffff816fc4b0 t devm_watchdog_register_device
+ffffffff816fc530 t devm_watchdog_unregister_device
+ffffffff816fc550 t trace_raw_output_watchdog_template
+ffffffff816fc5b0 t trace_raw_output_watchdog_set_timeout
+ffffffff816fc610 t watchdog_reboot_notifier
+ffffffff816fc6b0 t watchdog_restart_notifier
+ffffffff816fc6e0 t watchdog_pm_notifier
+ffffffff816fc730 t watchdog_dev_register
+ffffffff816fca10 t watchdog_dev_unregister
+ffffffff816fcae0 t watchdog_set_last_hw_keepalive
+ffffffff816fcb50 t __watchdog_ping
+ffffffff816fcd50 t watchdog_dev_suspend
+ffffffff816fce10 t watchdog_dev_resume
+ffffffff816fcea0 t watchdog_core_data_release
+ffffffff816fceb0 t watchdog_ping_work
+ffffffff816fcf20 t watchdog_timer_expired
+ffffffff816fcf40 t watchdog_write
+ffffffff816fd040 t watchdog_ioctl
+ffffffff816fd330 t watchdog_open
+ffffffff816fd400 t watchdog_release
+ffffffff816fd600 t watchdog_ping
+ffffffff816fd660 t watchdog_stop
+ffffffff816fd830 t watchdog_start
+ffffffff816fda10 t watchdog_set_timeout
+ffffffff816fdbd0 t watchdog_set_pretimeout
+ffffffff816fdc20 t dm_send_uevents
+ffffffff816fdd70 t dm_path_uevent
+ffffffff816fdf30 t dm_uevent_init
+ffffffff816fdf90 t dm_uevent_exit
+ffffffff816fdfb0 t dm_blk_report_zones
+ffffffff816fe0f0 t dm_report_zones
+ffffffff816fe120 t dm_report_zones_cb.llvm.409681553338960060
+ffffffff816fe1a0 t dm_is_zone_write
+ffffffff816fe1f0 t dm_cleanup_zoned_dev
+ffffffff816fe270 t dm_set_zones_restrictions
+ffffffff816fe630 t dm_zone_map_bio
+ffffffff816feb80 t dm_zone_map_bio_end
+ffffffff816fec60 t dm_zone_endio
+ffffffff816fedb0 t device_not_zone_append_capable
+ffffffff816fedf0 t dm_zone_revalidate_cb
+ffffffff816fef20 t dm_update_zone_wp_offset_cb
+ffffffff816fef50 t dm_issue_global_event
+ffffffff816fef80 t dm_per_bio_data
+ffffffff816fefa0 t dm_bio_from_per_bio_data
+ffffffff816fefe0 t dm_bio_get_target_bio_nr
+ffffffff816feff0 t __dm_get_module_param
+ffffffff816ff020 t dm_get_reserved_bio_based_ios
+ffffffff816ff060 t dm_deleting_md
+ffffffff816ff080 t dm_open_count
+ffffffff816ff0a0 t dm_lock_for_deletion
+ffffffff816ff120 t dm_cancel_deferred_remove
+ffffffff816ff170 t dm_start_time_ns_from_clone
+ffffffff816ff190 t dm_get_live_table
+ffffffff816ff1c0 t dm_put_live_table
+ffffffff816ff1e0 t dm_sync_table
+ffffffff816ff200 t dm_get_table_device
+ffffffff816ff3f0 t dm_put_table_device
+ffffffff816ff4c0 t dm_get_geometry
+ffffffff816ff4f0 t dm_set_geometry
+ffffffff816ff550 t disable_discard
+ffffffff816ff580 t dm_get_queue_limits
+ffffffff816ff5b0 t disable_write_zeroes
+ffffffff816ff5e0 t dm_set_target_max_io_len
+ffffffff816ff620 t dm_accept_partial_bio
+ffffffff816ff6a0 t dm_submit_bio_remap
+ffffffff816ff7a0 t dm_create
+ffffffff816ffce0 t dm_lock_md_type
+ffffffff816ffd00 t dm_unlock_md_type
+ffffffff816ffd20 t dm_set_md_type
+ffffffff816ffd40 t dm_get_md_type
+ffffffff816ffd60 t dm_get_immutable_target_type
+ffffffff816ffd80 t dm_setup_md_queue
+ffffffff816fff50 t dm_get_md
+ffffffff816ffff0 t dm_disk
+ffffffff81700010 t dm_get
+ffffffff81700030 t dm_get_mdptr
+ffffffff81700050 t dm_set_mdptr
+ffffffff81700070 t dm_hold
+ffffffff817000d0 t dm_device_name
+ffffffff817000f0 t dm_destroy
+ffffffff81700110 t __dm_destroy.llvm.16953176627867130035
+ffffffff81700320 t dm_destroy_immediate
+ffffffff81700340 t dm_put
+ffffffff81700360 t dm_swap_table
+ffffffff81700570 t dm_suspended_md
+ffffffff81700590 t dm_suspend
+ffffffff81700660 t dm_suspended_internally_md
+ffffffff81700680 t __dm_suspend
+ffffffff81700820 t dm_resume
+ffffffff81700960 t dm_internal_suspend_noflush
+ffffffff817009e0 t dm_internal_resume
+ffffffff81700ab0 t dm_internal_suspend_fast
+ffffffff81700b10 t dm_wait_for_completion
+ffffffff81700cd0 t dm_internal_resume_fast
+ffffffff81700d20 t dm_kobject_uevent
+ffffffff81700e40 t dm_next_uevent_seq
+ffffffff81700e60 t dm_get_event_nr
+ffffffff81700e80 t dm_wait_event
+ffffffff81700f70 t dm_uevent_add
+ffffffff81700fe0 t dm_kobject
+ffffffff81701000 t dm_get_from_kobject
+ffffffff81701070 t dm_test_deferred_remove_flag
+ffffffff81701090 t dm_suspended
+ffffffff817010b0 t dm_post_suspending
+ffffffff817010d0 t dm_noflush_suspending
+ffffffff817010f0 t dm_free_md_mempools
+ffffffff81701120 t local_exit
+ffffffff81701170 t dm_io_acct
+ffffffff81701260 t dm_wq_work
+ffffffff817012f0 t dm_wq_requeue_work
+ffffffff81701380 t cleanup_mapped_device
+ffffffff81701500 t __dm_io_complete
+ffffffff81701770 t dm_submit_bio
+ffffffff81701ef0 t dm_poll_bio
+ffffffff81701ff0 t dm_blk_open
+ffffffff81702060 t dm_blk_close
+ffffffff817020d0 t dm_blk_ioctl
+ffffffff817021b0 t dm_blk_getgeo
+ffffffff817021e0 t __send_duplicate_bios
+ffffffff81702430 t alloc_tio
+ffffffff81702530 t __map_bio
+ffffffff817027a0 t clone_endio
+ffffffff817029c0 t __set_swap_bios_limit
+ffffffff81702a70 t __process_abnormal_io
+ffffffff81702b30 t dm_io_set_error
+ffffffff81702b80 t do_deferred_remove
+ffffffff81702ba0 t dm_prepare_ioctl
+ffffffff81702cb0 t dm_pr_register
+ffffffff81702e90 t dm_pr_reserve
+ffffffff81702fb0 t dm_pr_release
+ffffffff817030e0 t dm_pr_preempt
+ffffffff81703200 t dm_pr_clear
+ffffffff817032c0 t __dm_pr_register
+ffffffff81703330 t __dm_pr_reserve
+ffffffff81703390 t __dm_pr_release
+ffffffff817033f0 t __dm_pr_preempt
+ffffffff81703460 t event_callback
+ffffffff81703560 t dm_table_create
+ffffffff81703680 t dm_table_destroy
+ffffffff817037e0 t dm_get_dev_t
+ffffffff81703840 t dm_get_device
+ffffffff81703a90 t dm_put_device
+ffffffff81703b50 t dm_split_args
+ffffffff81703d10 t dm_table_add_target
+ffffffff81704120 t dm_read_arg
+ffffffff817041c0 t dm_read_arg_group
+ffffffff81704270 t dm_shift_arg
+ffffffff817042a0 t dm_consume_args
+ffffffff817042c0 t dm_table_set_type
+ffffffff817042d0 t dm_table_get_type
+ffffffff817042e0 t dm_table_get_immutable_target_type
+ffffffff81704300 t dm_table_get_immutable_target
+ffffffff81704340 t dm_table_get_wildcard_target
+ffffffff81704380 t dm_table_bio_based
+ffffffff817043a0 t dm_table_request_based
+ffffffff817043c0 t dm_destroy_crypto_profile
+ffffffff817043f0 t dm_table_complete
+ffffffff81704d10 t dm_table_event_callback
+ffffffff81704d60 t dm_table_event
+ffffffff81704db0 t dm_table_get_size
+ffffffff81704de0 t dm_table_find_target
+ffffffff81704ef0 t dm_table_has_no_data_devices
+ffffffff81704fb0 t count_device
+ffffffff81704fc0 t dm_calculate_queue_limits
+ffffffff81705470 t dm_set_device_limits
+ffffffff81705520 t device_area_is_invalid
+ffffffff81705640 t dm_table_set_restrictions
+ffffffff81705da0 t device_not_dax_capable
+ffffffff81705dc0 t device_not_dax_synchronous_capable
+ffffffff81705df0 t device_dax_write_cache_enabled
+ffffffff81705e20 t device_is_rotational
+ffffffff81705e50 t device_requires_stable_pages
+ffffffff81705e70 t device_is_not_random
+ffffffff81705ea0 t dm_table_get_devices
+ffffffff81705ec0 t dm_table_get_mode
+ffffffff81705ee0 t dm_table_presuspend_targets
+ffffffff81705f50 t dm_table_presuspend_undo_targets
+ffffffff81705fc0 t dm_table_postsuspend_targets
+ffffffff81706030 t dm_table_resume_targets
+ffffffff81706130 t dm_table_get_md
+ffffffff81706140 t dm_table_device_name
+ffffffff81706160 t dm_table_run_md_queue_async
+ffffffff81706190 t device_is_rq_stackable
+ffffffff817061d0 t dm_keyslot_evict
+ffffffff817062b0 t dm_derive_sw_secret
+ffffffff817063b0 t device_intersect_crypto_capabilities
+ffffffff817063e0 t dm_keyslot_evict_callback
+ffffffff81706400 t dm_derive_sw_secret_callback
+ffffffff81706430 t device_not_matches_zone_sectors
+ffffffff81706470 t device_not_zoned_model
+ffffffff817064a0 t device_not_nowait_capable
+ffffffff817064d0 t device_not_discard_capable
+ffffffff81706500 t device_not_secure_erase_capable
+ffffffff81706530 t device_flush_capable
+ffffffff81706550 t device_not_write_zeroes_capable
+ffffffff81706580 t device_not_poll_capable
+ffffffff817065b0 t dm_get_target_type
+ffffffff817066c0 t dm_put_target_type
+ffffffff817066f0 t dm_target_iterate
+ffffffff81706760 t dm_register_target
+ffffffff81706820 t dm_unregister_target
+ffffffff817068e0 t dm_target_exit
+ffffffff81706900 t io_err_ctr
+ffffffff81706920 t io_err_dtr
+ffffffff81706930 t io_err_map
+ffffffff81706940 t io_err_clone_and_map_rq
+ffffffff81706950 t io_err_release_clone_rq
+ffffffff81706960 t io_err_dax_direct_access
+ffffffff81706980 t dm_linear_exit
+ffffffff817069a0 t linear_ctr
+ffffffff81706ac0 t linear_dtr
+ffffffff81706af0 t linear_map
+ffffffff81706b60 t linear_status
+ffffffff81706c20 t linear_prepare_ioctl
+ffffffff81706c60 t linear_report_zones
+ffffffff81706ca0 t linear_iterate_devices
+ffffffff81706cd0 t dm_stripe_exit
+ffffffff81706cf0 t stripe_ctr
+ffffffff81707060 t stripe_dtr
+ffffffff817070c0 t stripe_map
+ffffffff817071f0 t stripe_end_io
+ffffffff81707310 t stripe_status
+ffffffff817076b0 t stripe_iterate_devices
+ffffffff81707730 t stripe_io_hints
+ffffffff81707770 t trigger_event
+ffffffff81707790 t stripe_map_range
+ffffffff817079f0 t dm_deferred_remove
+ffffffff81707a10 t dm_hash_remove_all.llvm.17604016613247658939
+ffffffff81707b90 t dm_interface_exit
+ffffffff81707bc0 t dm_copy_name_and_uuid
+ffffffff81707c60 t dm_hash_insert
+ffffffff81707f90 t __hash_remove
+ffffffff81708090 t dm_poll
+ffffffff817080d0 t dm_ctl_ioctl
+ffffffff81708700 t dm_open
+ffffffff81708750 t dm_release
+ffffffff81708770 t remove_all
+ffffffff817087a0 t list_devices
+ffffffff81708a10 t dev_create
+ffffffff81708b20 t dev_remove
+ffffffff81708c50 t dev_rename
+ffffffff81709150 t dev_suspend
+ffffffff81709390 t dev_status
+ffffffff81709400 t dev_wait
+ffffffff81709550 t table_load
+ffffffff81709880 t table_clear
+ffffffff81709930 t table_deps
+ffffffff81709b10 t table_status
+ffffffff81709c40 t list_versions
+ffffffff81709d10 t target_message
+ffffffff8170a020 t dev_set_geometry
+ffffffff8170a1f0 t dev_arm_poll
+ffffffff8170a210 t get_target_version
+ffffffff8170a3b0 t filter_device
+ffffffff8170a450 t __dev_status
+ffffffff8170a610 t __find_device_hash_cell
+ffffffff8170a7c0 t retrieve_status
+ffffffff8170a9c0 t list_version_get_needed
+ffffffff8170aa00 t list_version_get_info
+ffffffff8170aac0 t dm_io_client_create
+ffffffff8170ab70 t dm_io_client_destroy
+ffffffff8170aba0 t dm_io
+ffffffff8170aef0 t dm_io_exit
+ffffffff8170af20 t list_get_page
+ffffffff8170af50 t list_next_page
+ffffffff8170af70 t bio_get_page
+ffffffff8170afe0 t bio_next_page
+ffffffff8170b080 t vm_get_page
+ffffffff8170b0d0 t vm_next_page
+ffffffff8170b100 t km_get_page
+ffffffff8170b160 t km_next_page
+ffffffff8170b190 t sync_io_complete
+ffffffff8170b1b0 t dispatch_io
+ffffffff8170b5b0 t endio
+ffffffff8170b660 t dm_kcopyd_exit
+ffffffff8170b690 t dm_kcopyd_copy
+ffffffff8170ba60 t dispatch_job
+ffffffff8170bb70 t dm_kcopyd_zero
+ffffffff8170bba0 t dm_kcopyd_prepare_callback
+ffffffff8170bc10 t dm_kcopyd_do_callback
+ffffffff8170bcc0 t push
+ffffffff8170bd40 t dm_kcopyd_client_create
+ffffffff8170c070 t do_work
+ffffffff8170c180 t dm_kcopyd_client_destroy
+ffffffff8170c330 t dm_kcopyd_client_flush
+ffffffff8170c350 t segment_complete
+ffffffff8170c580 t process_jobs
+ffffffff8170c790 t run_complete_job
+ffffffff8170c890 t run_pages_job
+ffffffff8170ca00 t run_io_job
+ffffffff8170cbd0 t complete_io
+ffffffff8170cd90 t dm_sysfs_init
+ffffffff8170cdd0 t dm_sysfs_exit
+ffffffff8170ce00 t dm_attr_show
+ffffffff8170ce60 t dm_attr_store
+ffffffff8170ced0 t dm_attr_name_show
+ffffffff8170cf10 t dm_attr_uuid_show
+ffffffff8170cf50 t dm_attr_suspended_show
+ffffffff8170cf80 t dm_attr_use_blk_mq_show
+ffffffff8170cfb0 t dm_stats_init
+ffffffff8170d070 t dm_stats_cleanup
+ffffffff8170d180 t dm_stat_free
+ffffffff8170d3a0 t dm_stats_account_io
+ffffffff8170d7f0 t dm_stats_message
+ffffffff8170e410 t message_stats_print
+ffffffff8170eb00 t dm_statistics_exit
+ffffffff8170eb40 t dm_stats_create
+ffffffff8170f050 t dm_kvzalloc
+ffffffff8170f160 t __dm_stat_clear
+ffffffff8170f300 t __dm_stat_init_temporary_percpu_totals
+ffffffff8170f510 t dm_get_reserved_rq_based_ios
+ffffffff8170f540 t dm_request_based
+ffffffff8170f560 t dm_start_queue
+ffffffff8170f590 t dm_stop_queue
+ffffffff8170f5a0 t dm_mq_kick_requeue_list
+ffffffff8170f5c0 t dm_attr_rq_based_seq_io_merge_deadline_show
+ffffffff8170f5e0 t dm_attr_rq_based_seq_io_merge_deadline_store
+ffffffff8170f5f0 t dm_mq_init_request_queue
+ffffffff8170f740 t dm_mq_cleanup_mapped_device
+ffffffff8170f780 t dm_mq_queue_rq
+ffffffff8170fb80 t dm_softirq_done
+ffffffff8170fdd0 t dm_mq_init_request
+ffffffff8170fe00 t dm_requeue_original_request
+ffffffff8170fee0 t dm_rq_bio_constructor
+ffffffff8170ff00 t end_clone_request
+ffffffff8170ff30 t end_clone_bio
+ffffffff8170ffa0 t dm_io_rewind
+ffffffff81710160 t dm_kobject_release
+ffffffff81710180 t dm_bufio_get
+ffffffff817101a0 t new_read.llvm.9546885282293655265
+ffffffff81710390 t dm_bufio_read
+ffffffff817103c0 t dm_bufio_new
+ffffffff817103f0 t dm_bufio_prefetch
+ffffffff817105a0 t dm_bufio_lock
+ffffffff817105d0 t __bufio_new
+ffffffff81710990 t dm_bufio_unlock
+ffffffff817109c0 t __flush_write_list
+ffffffff81710ab0 t submit_io
+ffffffff81710da0 t read_endio
+ffffffff81710dd0 t dm_bufio_release
+ffffffff81710f20 t __unlink_buffer
+ffffffff81711040 t dm_bufio_mark_partial_buffer_dirty
+ffffffff817111a0 t dm_bufio_mark_buffer_dirty
+ffffffff817111c0 t dm_bufio_write_dirty_buffers_async
+ffffffff81711340 t __write_dirty_buffers_async
+ffffffff81711530 t dm_bufio_write_dirty_buffers
+ffffffff817119e0 t dm_bufio_issue_flush
+ffffffff81711a90 t dm_bufio_issue_discard
+ffffffff81711b70 t dm_bufio_release_move
+ffffffff81711e40 t __wait_for_free_buffer
+ffffffff81711f20 t __make_buffer_clean
+ffffffff81711ff0 t __link_buffer
+ffffffff817121c0 t write_endio
+ffffffff81712230 t dm_bufio_forget
+ffffffff817122c0 t forget_buffer_locked
+ffffffff81712370 t dm_bufio_forget_buffers
+ffffffff81712450 t dm_bufio_set_minimum_buffers
+ffffffff81712470 t dm_bufio_get_block_size
+ffffffff81712480 t dm_bufio_get_device_size
+ffffffff817124e0 t dm_bufio_get_dm_io_client
+ffffffff81712500 t dm_bufio_get_block_number
+ffffffff81712510 t dm_bufio_get_block_data
+ffffffff81712520 t dm_bufio_get_aux_data
+ffffffff81712540 t dm_bufio_get_client
+ffffffff81712550 t dm_bufio_client_create
+ffffffff81712bf0 t alloc_buffer
+ffffffff81712cd0 t shrink_work
+ffffffff81712e90 t dm_bufio_shrink_count
+ffffffff81712f00 t dm_bufio_shrink_scan
+ffffffff81712f40 t free_buffer
+ffffffff81712fc0 t dm_bufio_client_destroy
+ffffffff817133b0 t dm_bufio_set_sector_offset
+ffffffff817133d0 t __get_unclaimed_buffer
+ffffffff817134b0 t bio_complete
+ffffffff81713500 t dmio_complete
+ffffffff81713530 t __try_evict_buffer
+ffffffff81713620 t work_fn
+ffffffff817139b0 t do_global_cleanup
+ffffffff81713c20 t dm_bufio_trylock
+ffffffff81713c50 t crypt_ctr
+ffffffff81714ee0 t crypt_dtr
+ffffffff81715090 t crypt_map
+ffffffff817152d0 t crypt_postsuspend
+ffffffff817152f0 t crypt_preresume
+ffffffff81715330 t crypt_resume
+ffffffff81715350 t crypt_status
+ffffffff81715a70 t crypt_message
+ffffffff81715c30 t crypt_report_zones
+ffffffff81715c70 t crypt_iterate_devices
+ffffffff81715ca0 t crypt_io_hints
+ffffffff81715d00 t crypt_page_alloc
+ffffffff81715d70 t crypt_page_free
+ffffffff81715da0 t dmcrypt_write
+ffffffff81715f00 t crypt_set_key
+ffffffff81715fd0 t crypt_alloc_tfms
+ffffffff81716100 t crypt_free_tfms
+ffffffff817161e0 t crypt_iv_plain_gen
+ffffffff81716220 t crypt_iv_plain64_gen
+ffffffff81716260 t crypt_iv_plain64be_gen
+ffffffff817162b0 t crypt_iv_essiv_gen
+ffffffff817162f0 t crypt_iv_benbi_ctr
+ffffffff81716370 t crypt_iv_benbi_dtr
+ffffffff81716380 t crypt_iv_benbi_gen
+ffffffff817163e0 t crypt_iv_null_gen
+ffffffff81716400 t crypt_iv_eboiv_ctr
+ffffffff81716450 t crypt_iv_eboiv_gen
+ffffffff81716680 t crypt_iv_elephant_ctr
+ffffffff81716720 t crypt_iv_elephant_dtr
+ffffffff81716750 t crypt_iv_elephant_init
+ffffffff81716790 t crypt_iv_elephant_wipe
+ffffffff81716830 t crypt_iv_elephant_gen
+ffffffff81716880 t crypt_iv_elephant_post
+ffffffff817168b0 t crypt_iv_elephant
+ffffffff817171f0 t crypt_iv_lmk_ctr
+ffffffff81717300 t crypt_iv_lmk_dtr
+ffffffff81717350 t crypt_iv_lmk_init
+ffffffff817173a0 t crypt_iv_lmk_wipe
+ffffffff81717400 t crypt_iv_lmk_gen
+ffffffff817174f0 t crypt_iv_lmk_post
+ffffffff81717600 t crypt_iv_lmk_one
+ffffffff817177c0 t crypt_iv_tcw_ctr
+ffffffff81717910 t crypt_iv_tcw_dtr
+ffffffff81717980 t crypt_iv_tcw_init
+ffffffff817179f0 t crypt_iv_tcw_wipe
+ffffffff81717a30 t crypt_iv_tcw_gen
+ffffffff81717b80 t crypt_iv_tcw_post
+ffffffff81717c50 t crypt_iv_tcw_whitening
+ffffffff81717ef0 t crypt_iv_random_gen
+ffffffff81717f10 t crypt_setkey
+ffffffff81718100 t kcryptd_io_read
+ffffffff817181b0 t kcryptd_queue_crypt
+ffffffff817182b0 t crypt_endio
+ffffffff817183f0 t crypt_dec_pending
+ffffffff817184e0 t crypt_free_buffer_pages
+ffffffff817185c0 t kcryptd_io_bio_endio
+ffffffff817185e0 t kcryptd_io_read_work
+ffffffff81718620 t kcryptd_crypt_tasklet
+ffffffff81718630 t kcryptd_crypt
+ffffffff81718c30 t crypt_convert
+ffffffff81719d80 t kcryptd_crypt_read_continue
+ffffffff81719df0 t kcryptd_async_done
+ffffffff81719f90 t kcryptd_crypt_write_io_submit
+ffffffff8171a0f0 t kcryptd_crypt_write_continue
+ffffffff8171a1a0 t verity_fec_is_enabled
+ffffffff8171a1d0 t verity_fec_decode
+ffffffff8171a380 t fec_decode_rsb
+ffffffff8171ae10 t fec_bv_copy
+ffffffff8171ae60 t verity_fec_finish_io
+ffffffff8171af40 t verity_fec_init_io
+ffffffff8171afb0 t verity_fec_status_table
+ffffffff8171b010 t verity_fec_dtr
+ffffffff8171b0b0 t verity_is_fec_opt_arg
+ffffffff8171b120 t verity_fec_parse_opt_args
+ffffffff8171b330 t verity_fec_ctr_alloc
+ffffffff8171b380 t verity_fec_ctr
+ffffffff8171b730 t fec_rs_alloc
+ffffffff8171b770 t fec_rs_free
+ffffffff8171b790 t verity_hash
+ffffffff8171b8c0 t verity_hash_init
+ffffffff8171b9a0 t verity_hash_update
+ffffffff8171bb30 t verity_hash_for_block
+ffffffff8171bc20 t verity_verify_level
+ffffffff8171be30 t verity_for_bv_block
+ffffffff8171c000 t dm_is_verity_target
+ffffffff8171c020 t dm_verity_get_mode
+ffffffff8171c050 t dm_verity_get_root_digest
+ffffffff8171c0b0 t verity_handle_err
+ffffffff8171c270 t verity_ctr
+ffffffff8171c9d0 t verity_dtr
+ffffffff8171caa0 t verity_map
+ffffffff8171cd00 t verity_status
+ffffffff8171d4a0 t verity_prepare_ioctl
+ffffffff8171d4e0 t verity_iterate_devices
+ffffffff8171d510 t verity_io_hints
+ffffffff8171d560 t verity_parse_opt_args
+ffffffff8171d8e0 t dm_bufio_alloc_callback
+ffffffff8171d900 t verity_end_io
+ffffffff8171da00 t verity_tasklet
+ffffffff8171dab0 t verity_verify_io
+ffffffff8171e1a0 t verity_bv_zero
+ffffffff8171e1c0 t verity_prefetch_io
+ffffffff8171e2b0 t user_ctr
+ffffffff8171e430 t user_dtr
+ffffffff8171e490 t user_map
+ffffffff8171ea10 t dev_read
+ffffffff8171ef00 t dev_write
+ffffffff8171f210 t dev_open
+ffffffff8171f2e0 t dev_open
+ffffffff8171f3c0 t dev_release
+ffffffff8171f4e0 t msg_copy_from_iov
+ffffffff8171f6b0 t target_put
+ffffffff8171f880 t process_delayed_work
+ffffffff8171f940 t edac_dimm_info_location
+ffffffff8171fa60 t edac_mc_alloc
+ffffffff81720080 t mci_release
+ffffffff817201c0 t edac_mc_free
+ffffffff817201e0 t edac_has_mcs
+ffffffff81720220 t find_mci_by_dev
+ffffffff81720290 t edac_mc_reset_delay_period
+ffffffff81720310 t edac_mc_find
+ffffffff81720370 t edac_get_owner
+ffffffff81720390 t edac_mc_add_mc_with_groups
+ffffffff81720670 t edac_mc_workq_function
+ffffffff81720700 t edac_mc_del_mc
+ffffffff81720820 t edac_mc_find_csrow_by_page
+ffffffff81720980 t edac_raw_mc_handle_error
+ffffffff81720f00 t edac_mc_handle_error
+ffffffff817214b0 t edac_device_alloc_ctl_info
+ffffffff817218d0 t edac_device_free_ctl_info
+ffffffff817218f0 t edac_device_reset_delay_period
+ffffffff81721940 t edac_device_alloc_index
+ffffffff81721960 t edac_device_add_device
+ffffffff81721bc0 t edac_device_del_device
+ffffffff81721cc0 t edac_device_handle_ce_count
+ffffffff81721d90 t edac_device_handle_ue_count
+ffffffff81721ee0 t edac_device_workq_function
+ffffffff81721f80 t edac_mc_get_log_ue
+ffffffff81721fa0 t edac_mc_get_log_ce
+ffffffff81721fc0 t edac_mc_get_panic_on_ue
+ffffffff81721fe0 t edac_mc_get_poll_msec
+ffffffff81722000 t edac_create_sysfs_mci_device
+ffffffff817222d0 t edac_remove_sysfs_mci_device
+ffffffff81722390 t mc_attr_release
+ffffffff817223a0 t edac_mc_sysfs_exit
+ffffffff817223c0 t edac_set_poll_msec
+ffffffff81722440 t mci_attr_is_visible
+ffffffff81722490 t mci_sdram_scrub_rate_show
+ffffffff817224e0 t mci_sdram_scrub_rate_store
+ffffffff81722580 t mci_reset_counters_store
+ffffffff81722670 t mci_ctl_name_show
+ffffffff817226a0 t mci_size_mb_show
+ffffffff817227d0 t mci_seconds_show
+ffffffff81722810 t mci_ue_noinfo_show
+ffffffff81722840 t mci_ce_noinfo_show
+ffffffff81722870 t mci_ue_count_show
+ffffffff817228a0 t mci_ce_count_show
+ffffffff817228d0 t mci_max_location_show
+ffffffff81722990 t dimm_release
+ffffffff817229a0 t dimmdev_label_show
+ffffffff817229e0 t dimmdev_label_store
+ffffffff81722a50 t dimmdev_location_show
+ffffffff81722aa0 t dimmdev_size_show
+ffffffff81722ad0 t dimmdev_mem_type_show
+ffffffff81722b00 t dimmdev_dev_type_show
+ffffffff81722b40 t dimmdev_edac_mode_show
+ffffffff81722b80 t dimmdev_ce_count_show
+ffffffff81722bb0 t dimmdev_ue_count_show
+ffffffff81722be0 t csrow_release
+ffffffff81722bf0 t csrow_dev_type_show
+ffffffff81722c40 t csrow_mem_type_show
+ffffffff81722c80 t csrow_edac_mode_show
+ffffffff81722cd0 t csrow_size_show
+ffffffff81722dc0 t csrow_ue_count_show
+ffffffff81722df0 t csrow_ce_count_show
+ffffffff81722e20 t csrow_dev_is_visible
+ffffffff81722e90 t channel_dimm_label_show
+ffffffff81722ee0 t channel_dimm_label_store
+ffffffff81722f60 t channel_ce_count_show
+ffffffff81722f90 t edac_op_state_to_string
+ffffffff81723020 t edac_get_sysfs_subsys
+ffffffff81723040 t edac_device_register_sysfs_main_kobj
+ffffffff81723130 t edac_device_unregister_sysfs_main_kobj
+ffffffff81723150 t edac_device_create_sysfs
+ffffffff81723690 t edac_device_remove_sysfs
+ffffffff81723820 t edac_device_ctrl_master_release
+ffffffff81723870 t edac_dev_ctl_info_show
+ffffffff817238b0 t edac_dev_ctl_info_store
+ffffffff817238f0 t edac_device_ctl_panic_on_ue_show
+ffffffff81723910 t edac_device_ctl_panic_on_ue_store
+ffffffff81723950 t edac_device_ctl_log_ue_show
+ffffffff81723970 t edac_device_ctl_log_ue_store
+ffffffff817239b0 t edac_device_ctl_log_ce_show
+ffffffff817239d0 t edac_device_ctl_log_ce_store
+ffffffff81723a10 t edac_device_ctl_poll_msec_show
+ffffffff81723a30 t edac_device_ctl_poll_msec_store
+ffffffff81723a70 t edac_device_ctrl_instance_release
+ffffffff81723a90 t edac_dev_instance_show
+ffffffff81723ac0 t edac_dev_instance_store
+ffffffff81723b00 t instance_ce_count_show
+ffffffff81723b20 t instance_ue_count_show
+ffffffff81723b40 t edac_device_ctrl_block_release
+ffffffff81723b60 t edac_dev_block_show
+ffffffff81723b90 t edac_dev_block_store
+ffffffff81723bc0 t block_ce_count_show
+ffffffff81723bf0 t block_ue_count_show
+ffffffff81723c20 t edac_queue_work
+ffffffff81723c50 t edac_mod_work
+ffffffff81723c80 t edac_stop_work
+ffffffff81723cb0 t edac_workqueue_setup
+ffffffff81723cf0 t edac_workqueue_teardown
+ffffffff81723d20 t edac_pci_alloc_ctl_info
+ffffffff81723dc0 t edac_pci_free_ctl_info
+ffffffff81723dd0 t edac_pci_alloc_index
+ffffffff81723df0 t edac_pci_add_device
+ffffffff81724020 t edac_pci_workq_function
+ffffffff81724090 t edac_pci_del_device
+ffffffff81724180 t edac_pci_create_generic_ctl
+ffffffff817242a0 t edac_pci_generic_check
+ffffffff817242b0 t edac_pci_release_generic_ctl
+ffffffff817242e0 t edac_pci_get_check_errors
+ffffffff81724300 t edac_pci_get_poll_msec
+ffffffff81724310 t edac_pci_create_sysfs
+ffffffff81724470 t edac_pci_remove_sysfs
+ffffffff817244c0 t edac_pci_do_parity_check
+ffffffff81724840 t edac_pci_clear_parity_errors
+ffffffff817249c0 t edac_pci_handle_pe
+ffffffff81724a00 t edac_pci_handle_npe
+ffffffff81724a40 t edac_pci_release_main_kobj
+ffffffff81724a50 t edac_pci_dev_show
+ffffffff81724a80 t edac_pci_dev_store
+ffffffff81724ac0 t edac_pci_int_show
+ffffffff81724ae0 t edac_pci_int_store
+ffffffff81724b20 t edac_pci_instance_release
+ffffffff81724b50 t edac_pci_instance_show
+ffffffff81724b90 t edac_pci_instance_store
+ffffffff81724bd0 t instance_pe_count_show
+ffffffff81724c00 t instance_npe_count_show
+ffffffff81724c30 t cpufreq_supports_freq_invariance
+ffffffff81724c50 t disable_cpufreq
+ffffffff81724c70 t have_governor_per_policy
+ffffffff81724c90 t get_governor_parent_kobj
+ffffffff81724cc0 t get_cpu_idle_time
+ffffffff81724db0 t cpufreq_generic_init
+ffffffff81724de0 t cpufreq_cpu_get_raw
+ffffffff81724e20 t cpufreq_generic_get
+ffffffff81724e90 t cpufreq_cpu_get
+ffffffff81724f20 t cpufreq_cpu_put
+ffffffff81724f40 t cpufreq_cpu_release
+ffffffff81724f80 t cpufreq_cpu_acquire
+ffffffff81725060 t cpufreq_freq_transition_begin
+ffffffff81725200 t cpufreq_notify_transition
+ffffffff81725330 t cpufreq_freq_transition_end
+ffffffff81725430 t cpufreq_enable_fast_switch
+ffffffff817254e0 t cpufreq_disable_fast_switch
+ffffffff81725530 t cpufreq_driver_resolve_freq
+ffffffff81725550 t __resolve_freq.llvm.1939128671329929729
+ffffffff81725850 t cpufreq_policy_transition_delay_us
+ffffffff817258a0 t cpufreq_show_cpus
+ffffffff81725930 t refresh_frequency_limits
+ffffffff81725970 t cpufreq_set_policy
+ffffffff81725ed0 t cpufreq_quick_get
+ffffffff81725fd0 t cpufreq_quick_get_max
+ffffffff81726080 t cpufreq_get_hw_max_freq
+ffffffff81726130 t cpufreq_get
+ffffffff81726240 t cpufreq_generic_suspend
+ffffffff817262a0 t __cpufreq_driver_target
+ffffffff817264e0 t cpufreq_suspend
+ffffffff81726630 t cpufreq_stop_governor
+ffffffff81726660 t cpufreq_resume
+ffffffff81726800 t cpufreq_start_governor
+ffffffff81726880 t cpufreq_driver_test_flags
+ffffffff817268a0 t cpufreq_get_current_driver
+ffffffff817268c0 t cpufreq_get_driver_data
+ffffffff817268f0 t cpufreq_register_notifier
+ffffffff81726990 t cpufreq_unregister_notifier
+ffffffff81726a20 t cpufreq_driver_fast_switch
+ffffffff81726af0 t cpufreq_driver_adjust_perf
+ffffffff81726b10 t cpufreq_driver_has_adjust_perf
+ffffffff81726b30 t cpufreq_driver_target
+ffffffff81726b80 t cpufreq_verify_current_freq
+ffffffff81726cc0 t cpufreq_register_governor
+ffffffff81726da0 t cpufreq_unregister_governor
+ffffffff81726eb0 t cpufreq_get_policy
+ffffffff81726f80 t cpufreq_update_policy
+ffffffff81727020 t cpufreq_update_limits
+ffffffff81727050 t cpufreq_boost_trigger_state
+ffffffff81727180 t cpufreq_enable_boost_support
+ffffffff81727200 t cpufreq_boost_set_sw
+ffffffff81727260 t create_boost_sysfs_file
+ffffffff817272a0 t cpufreq_boost_enabled
+ffffffff817272c0 t cpufreq_register_driver
+ffffffff817274d0 t cpuhp_cpufreq_online
+ffffffff817274f0 t cpuhp_cpufreq_offline
+ffffffff81727550 t cpufreq_unregister_driver
+ffffffff81727600 t show_boost
+ffffffff81727630 t store_boost
+ffffffff817276d0 t cpufreq_add_dev
+ffffffff81727770 t cpufreq_remove_dev
+ffffffff81727850 t cpufreq_online
+ffffffff81728410 t cpufreq_policy_free
+ffffffff817285e0 t cpufreq_notifier_min
+ffffffff81728610 t cpufreq_notifier_max
+ffffffff81728640 t handle_update
+ffffffff817286a0 t cpufreq_sysfs_release
+ffffffff817286c0 t show
+ffffffff81728750 t store
+ffffffff817287f0 t show_cpuinfo_min_freq
+ffffffff81728810 t show_cpuinfo_max_freq
+ffffffff81728830 t show_cpuinfo_transition_latency
+ffffffff81728850 t show_scaling_min_freq
+ffffffff81728870 t store_scaling_min_freq
+ffffffff81728900 t show_scaling_max_freq
+ffffffff81728920 t store_scaling_max_freq
+ffffffff817289b0 t show_affected_cpus
+ffffffff81728a40 t show_related_cpus
+ffffffff81728ad0 t show_scaling_governor
+ffffffff81728b60 t store_scaling_governor
+ffffffff81728d80 t show_scaling_driver
+ffffffff81728db0 t show_scaling_available_governors
+ffffffff81728e90 t show_scaling_setspeed
+ffffffff81728ee0 t store_scaling_setspeed
+ffffffff81728f80 t show_cpuinfo_cur_freq
+ffffffff81728ff0 t show_scaling_cur_freq
+ffffffff81729050 t show_bios_limit
+ffffffff817290e0 t __cpufreq_offline
+ffffffff817292d0 t policy_has_boost_freq
+ffffffff81729320 t cpufreq_frequency_table_cpuinfo
+ffffffff817293a0 t cpufreq_frequency_table_verify
+ffffffff817294a0 t cpufreq_generic_frequency_table_verify
+ffffffff817295a0 t cpufreq_table_index_unsorted
+ffffffff817296e0 t cpufreq_frequency_table_get_index
+ffffffff81729740 t scaling_available_frequencies_show
+ffffffff817297c0 t scaling_boost_frequencies_show
+ffffffff81729840 t cpufreq_table_validate_and_sort
+ffffffff81729930 t cpufreq_stats_free_table
+ffffffff81729980 t cpufreq_stats_create_table
+ffffffff81729b30 t cpufreq_stats_record_transition
+ffffffff81729c00 t cpufreq_stats_reset_table
+ffffffff81729c90 t show_total_trans
+ffffffff81729cd0 t show_time_in_state
+ffffffff81729dd0 t store_reset
+ffffffff81729e10 t show_trans_table
+ffffffff8172a060 t cpufreq_task_times_init
+ffffffff8172a0a0 t cpufreq_task_times_alloc
+ffffffff8172a110 t cpufreq_task_times_exit
+ffffffff8172a170 t proc_time_in_state_show
+ffffffff8172a2a0 t cpufreq_acct_update_power
+ffffffff8172a380 t cpufreq_times_create_policy
+ffffffff8172a4f0 t cpufreq_times_record_transition
+ffffffff8172a550 t cpufreq_fallback_governor
+ffffffff8172a570 t cpufreq_gov_performance_limits
+ffffffff8172a590 t cpufreq_gov_powersave_limits
+ffffffff8172a5b0 t cs_dbs_update
+ffffffff8172a700 t cs_alloc
+ffffffff8172a730 t cs_free
+ffffffff8172a740 t cs_init
+ffffffff8172a7b0 t cs_exit
+ffffffff8172a7d0 t cs_start
+ffffffff8172a800 t sampling_rate_show
+ffffffff8172a830 t sampling_down_factor_show
+ffffffff8172a860 t sampling_down_factor_store
+ffffffff8172a8e0 t up_threshold_show
+ffffffff8172a910 t up_threshold_store
+ffffffff8172a9a0 t down_threshold_show
+ffffffff8172a9d0 t down_threshold_store
+ffffffff8172aa60 t ignore_nice_load_show
+ffffffff8172aa90 t ignore_nice_load_store
+ffffffff8172ab30 t freq_step_show
+ffffffff8172ab60 t freq_step_store
+ffffffff8172abf0 t sampling_rate_store
+ffffffff8172acc0 t gov_update_cpu_data
+ffffffff8172ad90 t dbs_update
+ffffffff8172af70 t cpufreq_dbs_governor_init
+ffffffff8172b280 t cpufreq_dbs_data_release
+ffffffff8172b2b0 t cpufreq_dbs_governor_exit
+ffffffff8172b3a0 t cpufreq_dbs_governor_start
+ffffffff8172b550 t cpufreq_dbs_governor_stop
+ffffffff8172b5d0 t cpufreq_dbs_governor_limits
+ffffffff8172b650 t dbs_irq_work
+ffffffff8172b680 t dbs_work_handler
+ffffffff8172b6f0 t dbs_update_util_handler
+ffffffff8172b770 t governor_show.llvm.14087261980282459418
+ffffffff8172b790 t governor_store.llvm.14087261980282459418
+ffffffff8172b800 t gov_attr_set_init
+ffffffff8172b870 t gov_attr_set_get
+ffffffff8172b8e0 t gov_attr_set_put
+ffffffff8172b960 t notify_hwp_interrupt
+ffffffff8172ba50 t intel_cpufreq_adjust_perf
+ffffffff8172bc10 t hybrid_get_cpu_scaling
+ffffffff8172bc70 t intel_pstate_register_driver
+ffffffff8172bd20 t set_power_ctl_ee_state
+ffffffff8172bdc0 t core_get_max_pstate
+ffffffff8172bed0 t core_get_max_pstate_physical
+ffffffff8172bf20 t core_get_min_pstate
+ffffffff8172bf80 t core_get_turbo_pstate
+ffffffff8172bfe0 t core_get_scaling
+ffffffff8172bff0 t core_get_val
+ffffffff8172c030 t show_energy_performance_preference
+ffffffff8172c1a0 t store_energy_performance_preference
+ffffffff8172c500 t show_energy_performance_available_preferences
+ffffffff8172c5b0 t show_base_frequency
+ffffffff8172c690 t intel_pstate_cpu_init
+ffffffff8172c770 t intel_pstate_verify_policy
+ffffffff8172c7a0 t intel_pstate_set_policy
+ffffffff8172cca0 t intel_pstate_update_limits
+ffffffff8172cdc0 t intel_pstate_cpu_online
+ffffffff8172ce10 t intel_pstate_cpu_offline
+ffffffff8172ce60 t intel_pstate_cpu_exit
+ffffffff8172ce80 t intel_pstate_suspend
+ffffffff8172cf00 t intel_pstate_resume
+ffffffff8172d060 t __intel_pstate_cpu_init
+ffffffff8172d3f0 t intel_pstate_init_acpi_perf_limits
+ffffffff8172d590 t intel_pstate_hwp_enable
+ffffffff8172d780 t intel_pstate_notify_work
+ffffffff8172d890 t intel_pstate_set_pstate
+ffffffff8172d920 t intel_pstste_sched_itmt_work_fn
+ffffffff8172d930 t intel_pstate_verify_cpu_policy
+ffffffff8172dae0 t intel_pstate_update_util_hwp
+ffffffff8172dc40 t intel_pstate_update_util
+ffffffff8172df60 t intel_pstate_sample
+ffffffff8172e0d0 t intel_cpufreq_cpu_offline
+ffffffff8172e230 t intel_cpufreq_cpu_init
+ffffffff8172e500 t intel_cpufreq_verify_policy
+ffffffff8172e620 t intel_cpufreq_target
+ffffffff8172e770 t intel_cpufreq_fast_switch
+ffffffff8172e810 t intel_cpufreq_cpu_exit
+ffffffff8172e850 t intel_cpufreq_suspend
+ffffffff8172e920 t intel_cpufreq_update_pstate
+ffffffff8172ea70 t intel_cpufreq_trace
+ffffffff8172eb40 t hybrid_get_type
+ffffffff8172eb60 t atom_get_max_pstate
+ffffffff8172eba0 t atom_get_min_pstate
+ffffffff8172ebe0 t atom_get_turbo_pstate
+ffffffff8172ec20 t silvermont_get_scaling
+ffffffff8172ec70 t atom_get_val
+ffffffff8172ed00 t atom_get_vid
+ffffffff8172edc0 t airmont_get_scaling
+ffffffff8172ee10 t knl_get_turbo_pstate
+ffffffff8172ee70 t knl_get_aperf_mperf_shift
+ffffffff8172ee80 t show_status
+ffffffff8172ef00 t store_status
+ffffffff8172f160 t intel_pstate_driver_cleanup
+ffffffff8172f250 t show_hwp_dynamic_boost
+ffffffff8172f280 t store_hwp_dynamic_boost
+ffffffff8172f340 t show_no_turbo
+ffffffff8172f400 t store_no_turbo
+ffffffff8172f5d0 t show_turbo_pct
+ffffffff8172f690 t show_num_pstates
+ffffffff8172f710 t show_max_perf_pct
+ffffffff8172f740 t store_max_perf_pct
+ffffffff8172f870 t update_qos_request
+ffffffff8172fa00 t show_min_perf_pct
+ffffffff8172fa30 t store_min_perf_pct
+ffffffff8172fb70 t show_energy_efficiency
+ffffffff8172fbd0 t store_energy_efficiency
+ffffffff8172fc30 t cpuidle_disabled
+ffffffff8172fc50 t disable_cpuidle
+ffffffff8172fc70 t cpuidle_not_available
+ffffffff8172fca0 t cpuidle_play_dead
+ffffffff8172fd10 t cpuidle_use_deepest_state
+ffffffff8172fd70 t cpuidle_find_deepest_state
+ffffffff8172fe90 t cpuidle_enter_s2idle
+ffffffff81730020 t cpuidle_enter_state
+ffffffff81730460 t cpuidle_select
+ffffffff81730480 t cpuidle_enter
+ffffffff817304c0 t cpuidle_reflect
+ffffffff817304f0 t cpuidle_poll_time
+ffffffff81730670 t cpuidle_install_idle_handler
+ffffffff81730690 t cpuidle_uninstall_idle_handler
+ffffffff817306c0 t cpuidle_pause_and_lock
+ffffffff81730700 t cpuidle_resume_and_unlock
+ffffffff81730730 t cpuidle_pause
+ffffffff81730770 t cpuidle_resume
+ffffffff817307b0 t cpuidle_enable_device
+ffffffff81730850 t cpuidle_disable_device
+ffffffff817308b0 t cpuidle_register_device
+ffffffff81730b20 t cpuidle_unregister_device
+ffffffff81730c40 t cpuidle_unregister
+ffffffff81730cc0 t cpuidle_register
+ffffffff81730de0 t cpuidle_register_driver
+ffffffff81731000 t cpuidle_get_driver
+ffffffff81731050 t cpuidle_unregister_driver
+ffffffff81731140 t cpuidle_get_cpu_driver
+ffffffff81731160 t cpuidle_driver_state_disabled
+ffffffff81731270 t cpuidle_setup_broadcast_timer
+ffffffff81731290 t cpuidle_find_governor
+ffffffff817312f0 t cpuidle_switch_governor
+ffffffff817313b0 t cpuidle_register_governor
+ffffffff817314f0 t cpuidle_governor_latency_req
+ffffffff81731540 t cpuidle_add_interface
+ffffffff81731560 t cpuidle_remove_interface
+ffffffff81731580 t cpuidle_add_device_sysfs
+ffffffff81731780 t cpuidle_remove_device_sysfs
+ffffffff81731840 t cpuidle_add_sysfs
+ffffffff81731910 t cpuidle_remove_sysfs
+ffffffff81731940 t show_available_governors
+ffffffff817319e0 t show_current_driver
+ffffffff81731a40 t show_current_governor
+ffffffff81731aa0 t store_current_governor
+ffffffff81731bb0 t cpuidle_state_sysfs_release
+ffffffff81731bd0 t cpuidle_state_show
+ffffffff81731c10 t cpuidle_state_store
+ffffffff81731c50 t show_state_name
+ffffffff81731c90 t show_state_desc
+ffffffff81731ce0 t show_state_exit_latency
+ffffffff81731d20 t show_state_target_residency
+ffffffff81731d60 t show_state_power_usage
+ffffffff81731d90 t show_state_usage
+ffffffff81731db0 t show_state_rejected
+ffffffff81731dd0 t show_state_time
+ffffffff81731e10 t show_state_disable
+ffffffff81731e40 t store_state_disable
+ffffffff81731ee0 t show_state_above
+ffffffff81731f00 t show_state_below
+ffffffff81731f20 t show_state_default_status
+ffffffff81731f60 t show_state_s2idle_usage
+ffffffff81731f80 t show_state_s2idle_time
+ffffffff81731fa0 t cpuidle_sysfs_release
+ffffffff81731fc0 t cpuidle_show
+ffffffff81732020 t cpuidle_store
+ffffffff81732090 t menu_enable_device
+ffffffff81732150 t menu_select
+ffffffff817329a0 t menu_reflect
+ffffffff81732a00 t cpuidle_poll_state_init
+ffffffff81732a70 t haltpoll_uninit
+ffffffff81732ac0 t default_enter_idle
+ffffffff81732af0 t haltpoll_cpu_online
+ffffffff81732b60 t haltpoll_cpu_offline
+ffffffff81732ba0 t dmi_check_system
+ffffffff81732c10 t dmi_matches
+ffffffff81732d20 t dmi_first_match
+ffffffff81732d60 t dmi_get_system_info
+ffffffff81732d80 t dmi_name_in_serial
+ffffffff81732dc0 t dmi_name_in_vendors
+ffffffff81732e20 t dmi_find_device
+ffffffff81732e90 t dmi_get_date
+ffffffff81733030 t dmi_get_bios_year
+ffffffff817330a0 t dmi_walk
+ffffffff817331f0 t dmi_match
+ffffffff81733230 t dmi_memdev_name
+ffffffff81733290 t dmi_memdev_size
+ffffffff817332f0 t dmi_memdev_type
+ffffffff81733340 t dmi_memdev_handle
+ffffffff81733380 t raw_table_read
+ffffffff817333b0 t sys_dmi_field_show
+ffffffff817333f0 t sys_dmi_modalias_show
+ffffffff81733420 t get_modalias
+ffffffff81733560 t dmi_dev_uevent
+ffffffff817335f0 t firmware_map_add_entry
+ffffffff81733690 t add_sysfs_fw_map_entry
+ffffffff81733710 t memmap_attr_show
+ffffffff81733730 t efi_runtime_disabled
+ffffffff81733750 t __efi_soft_reserve_enabled
+ffffffff81733770 t efi_mem_desc_lookup
+ffffffff81733880 t efi_mem_attributes
+ffffffff81733910 t efi_mem_type
+ffffffff817339a0 t efi_status_to_err
+ffffffff81733aa0 t systab_show
+ffffffff81733b60 t fw_platform_size_show
+ffffffff81733b90 t efivars_kobject
+ffffffff81733bc0 t efivars_register
+ffffffff81733c20 t efivars_unregister
+ffffffff81733ca0 t efivar_supports_writes
+ffffffff81733cd0 t efivar_lock
+ffffffff81733d20 t efivar_trylock
+ffffffff81733d70 t efivar_unlock
+ffffffff81733d90 t efivar_get_variable
+ffffffff81733db0 t efivar_get_next_variable
+ffffffff81733dd0 t efivar_set_variable_locked
+ffffffff81733ec0 t efivar_set_variable
+ffffffff81734000 t efi_reboot
+ffffffff81734050 t efi_power_off
+ffffffff81734080 t esrt_attr_is_visible
+ffffffff817340b0 t fw_resource_count_show
+ffffffff817340e0 t fw_resource_count_max_show
+ffffffff81734110 t fw_resource_version_show
+ffffffff81734140 t esre_release
+ffffffff81734190 t esre_attr_show
+ffffffff817341e0 t fw_class_show
+ffffffff81734220 t fw_type_show
+ffffffff81734250 t fw_version_show
+ffffffff81734280 t lowest_supported_fw_version_show
+ffffffff817342b0 t capsule_flags_show
+ffffffff817342e0 t last_attempt_version_show
+ffffffff81734310 t last_attempt_status_show
+ffffffff81734340 t efi_get_runtime_map_size
+ffffffff81734360 t efi_get_runtime_map_desc_size
+ffffffff81734380 t efi_runtime_map_copy
+ffffffff817343b0 t map_attr_show
+ffffffff817343d0 t phys_addr_show
+ffffffff81734400 t virt_addr_show
+ffffffff81734430 t num_pages_show
+ffffffff81734460 t attribute_show
+ffffffff81734490 t efi_call_virt_save_flags
+ffffffff817344e0 t efi_call_virt_check_flags
+ffffffff817345a0 t efi_native_runtime_setup
+ffffffff81734650 t virt_efi_get_time
+ffffffff817347d0 t virt_efi_set_time
+ffffffff81734950 t virt_efi_get_wakeup_time
+ffffffff81734ad0 t virt_efi_set_wakeup_time
+ffffffff81734c80 t virt_efi_get_variable
+ffffffff81734e20 t virt_efi_get_next_variable
+ffffffff81734fa0 t virt_efi_set_variable
+ffffffff81735150 t virt_efi_set_variable_nonblocking
+ffffffff81735310 t virt_efi_get_next_high_mono_count
+ffffffff81735490 t virt_efi_reset_system
+ffffffff81735650 t virt_efi_query_variable_info
+ffffffff81735820 t virt_efi_query_variable_info_nonblocking
+ffffffff817359f0 t virt_efi_update_capsule
+ffffffff81735bb0 t virt_efi_query_capsule_caps
+ffffffff81735d80 t efi_call_rts
+ffffffff81736c00 t efi_earlycon_scroll_up
+ffffffff81736cd0 t efi_earlycon_write
+ffffffff81736ff0 t acpi_pm_read_verified
+ffffffff81737050 t __UNIQUE_ID_acpi_pm_check_blacklist273
+ffffffff817370a0 t __UNIQUE_ID_acpi_pm_check_graylist275
+ffffffff817370e0 t __UNIQUE_ID_acpi_pm_check_graylist277
+ffffffff81737120 t acpi_pm_read_slow
+ffffffff81737180 t acpi_pm_read
+ffffffff817371a0 t pit_next_event
+ffffffff817371f0 t pit_set_periodic
+ffffffff81737240 t pit_shutdown
+ffffffff817372a0 t pit_set_oneshot
+ffffffff817372d0 t of_node_name_eq
+ffffffff81737340 t of_node_name_prefix
+ffffffff817373a0 t of_bus_n_addr_cells
+ffffffff81737440 t of_n_addr_cells
+ffffffff817374e0 t of_bus_n_size_cells
+ffffffff81737580 t of_n_size_cells
+ffffffff81737620 t __of_phandle_cache_inv_entry
+ffffffff81737660 t __of_find_all_nodes
+ffffffff817376b0 t of_find_property
+ffffffff81737740 t of_find_all_nodes
+ffffffff817377b0 t __of_get_property
+ffffffff81737830 t of_get_property
+ffffffff817378d0 t of_get_cpu_hwid
+ffffffff81737a60 t arch_find_n_match_cpu_physical_id
+ffffffff81737c90 t of_get_cpu_node
+ffffffff81737d00 t of_get_next_cpu_node
+ffffffff81737ed0 t of_cpu_node_to_id
+ffffffff81737f80 t of_get_cpu_state_node
+ffffffff81738160 t of_device_is_compatible
+ffffffff817381b0 t __of_device_is_compatible.llvm.11421107052983696796
+ffffffff81738370 t of_device_compatible_match
+ffffffff81738400 t of_machine_is_compatible
+ffffffff81738470 t of_device_is_available
+ffffffff81738520 t of_device_is_big_endian
+ffffffff81738590 t of_get_parent
+ffffffff817385d0 t of_get_next_parent
+ffffffff81738610 t of_get_next_child
+ffffffff81738670 t of_get_next_available_child
+ffffffff81738750 t of_get_compatible_child
+ffffffff81738800 t of_get_child_by_name
+ffffffff817388d0 t __of_find_node_by_path
+ffffffff81738970 t __of_find_node_by_full_path
+ffffffff81738a90 t of_find_node_opts_by_path
+ffffffff81738bd0 t of_find_node_by_name
+ffffffff81738ce0 t of_find_node_by_type
+ffffffff81738df0 t of_find_compatible_node
+ffffffff81738ed0 t of_find_node_with_property
+ffffffff81738fb0 t of_match_node
+ffffffff81739060 t of_find_matching_node_and_match
+ffffffff817391c0 t of_modalias_node
+ffffffff817392a0 t of_find_node_by_phandle
+ffffffff81739360 t of_print_phandle_args
+ffffffff817393e0 t of_phandle_iterator_init
+ffffffff81739500 t of_phandle_iterator_next
+ffffffff81739740 t of_phandle_iterator_args
+ffffffff817397d0 t __of_parse_phandle_with_args
+ffffffff81739a40 t of_parse_phandle_with_args_map
+ffffffff8173a150 t of_count_phandle_with_args
+ffffffff8173a320 t __of_add_property
+ffffffff8173a380 t of_add_property
+ffffffff8173a450 t __of_remove_property
+ffffffff8173a4b0 t of_remove_property
+ffffffff8173a560 t __of_update_property
+ffffffff8173a610 t of_update_property
+ffffffff8173a710 t of_alias_scan
+ffffffff8173a9b0 t of_alias_get_id
+ffffffff8173aa40 t of_alias_get_highest_id
+ffffffff8173aac0 t of_console_check
+ffffffff8173ab10 t of_find_next_cache_node
+ffffffff8173ac40 t of_find_last_cache_level
+ffffffff8173ae20 t of_map_id
+ffffffff8173b170 t of_match_device
+ffffffff8173b1b0 t of_device_add
+ffffffff8173b1f0 t of_dma_configure_id
+ffffffff8173b430 t of_device_register
+ffffffff8173b480 t of_device_unregister
+ffffffff8173b4a0 t of_device_get_match_data
+ffffffff8173b4f0 t of_device_request_module
+ffffffff8173b570 t of_device_get_modalias
+ffffffff8173b6d0 t of_device_modalias
+ffffffff8173b720 t of_device_uevent
+ffffffff8173b890 t of_device_uevent_modalias
+ffffffff8173b940 t of_find_device_by_node
+ffffffff8173b970 t of_device_alloc
+ffffffff8173bca0 t of_platform_device_create
+ffffffff8173bcc0 t of_platform_device_create_pdata
+ffffffff8173bd90 t of_platform_bus_probe
+ffffffff8173be60 t of_platform_bus_create
+ffffffff8173c1a0 t of_platform_populate
+ffffffff8173c250 t of_platform_default_populate
+ffffffff8173c270 t of_platform_device_destroy
+ffffffff8173c300 t of_platform_depopulate
+ffffffff8173c350 t devm_of_platform_populate
+ffffffff8173c3f0 t devm_of_platform_populate_release
+ffffffff8173c440 t devm_of_platform_depopulate
+ffffffff8173c470 t devm_of_platform_match
+ffffffff8173c4a0 t of_graph_is_present
+ffffffff8173c4e0 t of_property_count_elems_of_size
+ffffffff8173c550 t of_property_read_u32_index
+ffffffff8173c5c0 t of_property_read_u64_index
+ffffffff8173c640 t of_property_read_variable_u8_array
+ffffffff8173c760 t of_property_read_variable_u16_array
+ffffffff8173c880 t of_property_read_variable_u32_array
+ffffffff8173c980 t of_property_read_u64
+ffffffff8173c9e0 t of_property_read_variable_u64_array
+ffffffff8173cad0 t of_property_read_string
+ffffffff8173cb30 t of_property_match_string
+ffffffff8173cbd0 t of_property_read_string_helper
+ffffffff8173ccb0 t of_prop_next_u32
+ffffffff8173ccf0 t of_prop_next_string
+ffffffff8173cd40 t of_graph_parse_endpoint
+ffffffff8173ce10 t of_graph_get_port_by_id
+ffffffff8173ced0 t of_graph_get_next_endpoint
+ffffffff8173cff0 t of_graph_get_endpoint_by_regs
+ffffffff8173d0b0 t of_graph_get_remote_endpoint
+ffffffff8173d160 t of_graph_get_port_parent
+ffffffff8173d1c0 t of_graph_get_remote_port_parent
+ffffffff8173d2b0 t of_graph_get_remote_port
+ffffffff8173d370 t of_graph_get_endpoint_count
+ffffffff8173d3b0 t of_graph_get_remote_node
+ffffffff8173d490 t of_fwnode_get.llvm.10614578960623779156
+ffffffff8173d4d0 t of_fwnode_put.llvm.10614578960623779156
+ffffffff8173d4e0 t of_fwnode_device_is_available.llvm.10614578960623779156
+ffffffff8173d520 t of_fwnode_device_get_match_data.llvm.10614578960623779156
+ffffffff8173d540 t of_fwnode_device_dma_supported.llvm.10614578960623779156
+ffffffff8173d550 t of_fwnode_device_get_dma_attr.llvm.10614578960623779156
+ffffffff8173d590 t of_fwnode_property_present.llvm.10614578960623779156
+ffffffff8173d5d0 t of_fwnode_property_read_int_array.llvm.10614578960623779156
+ffffffff8173da30 t of_fwnode_property_read_string_array.llvm.10614578960623779156
+ffffffff8173dbc0 t of_fwnode_get_name.llvm.10614578960623779156
+ffffffff8173dc20 t of_fwnode_get_name_prefix.llvm.10614578960623779156
+ffffffff8173dc70 t of_fwnode_get_parent.llvm.10614578960623779156
+ffffffff8173dcc0 t of_fwnode_get_next_child_node.llvm.10614578960623779156
+ffffffff8173dd30 t of_fwnode_get_named_child_node.llvm.10614578960623779156
+ffffffff8173ddc0 t of_fwnode_get_reference_args.llvm.10614578960623779156
+ffffffff8173df80 t of_fwnode_graph_get_next_endpoint.llvm.10614578960623779156
+ffffffff8173dff0 t of_fwnode_graph_get_remote_endpoint.llvm.10614578960623779156
+ffffffff8173e0d0 t of_fwnode_graph_get_port_parent.llvm.10614578960623779156
+ffffffff8173e150 t of_fwnode_graph_parse_endpoint.llvm.10614578960623779156
+ffffffff8173e210 t of_fwnode_iomap.llvm.10614578960623779156
+ffffffff8173e250 t of_fwnode_irq_get.llvm.10614578960623779156
+ffffffff8173e290 t of_fwnode_add_links.llvm.10614578960623779156
+ffffffff8173e2a0 t of_node_is_attached
+ffffffff8173e2d0 t of_node_release
+ffffffff8173e2e0 t __of_add_property_sysfs
+ffffffff8173e3c0 t safe_name
+ffffffff8173e470 t of_node_property_read
+ffffffff8173e4d0 t __of_sysfs_remove_bin_file
+ffffffff8173e500 t __of_remove_property_sysfs
+ffffffff8173e550 t __of_update_property_sysfs
+ffffffff8173e5b0 t __of_attach_node_sysfs
+ffffffff8173e6a0 t __of_detach_node_sysfs
+ffffffff8173e720 t of_pci_address_to_resource
+ffffffff8173e740 t __of_address_to_resource.llvm.9136860624919709071
+ffffffff8173e900 t of_pci_range_to_resource
+ffffffff8173e990 t of_translate_address
+ffffffff8173e9f0 t __of_get_dma_parent
+ffffffff8173ead0 t of_translate_dma_address
+ffffffff8173f010 t __of_get_address
+ffffffff8173f280 t of_pci_range_parser_init
+ffffffff8173f2a0 t parser_init.llvm.9136860624919709071
+ffffffff8173f3d0 t of_pci_dma_range_parser_init
+ffffffff8173f3f0 t of_pci_range_parser_one
+ffffffff8173f800 t of_address_to_resource
+ffffffff8173f820 t of_iomap
+ffffffff8173f8f0 t of_io_request_and_map
+ffffffff8173fa30 t of_dma_get_range
+ffffffff8173fe30 t of_dma_is_coherent
+ffffffff8173ff80 t of_translate_one
+ffffffff81740150 t of_bus_pci_match
+ffffffff81740270 t of_bus_pci_count_cells
+ffffffff817402a0 t of_bus_pci_map
+ffffffff81740470 t of_bus_pci_translate
+ffffffff81740550 t of_bus_pci_get_flags
+ffffffff81740590 t of_bus_isa_match
+ffffffff817405b0 t of_bus_isa_count_cells
+ffffffff817405e0 t of_bus_isa_map
+ffffffff81740760 t of_bus_isa_translate
+ffffffff81740840 t of_bus_isa_get_flags
+ffffffff81740860 t of_bus_default_count_cells
+ffffffff817408a0 t of_bus_default_map
+ffffffff817409f0 t of_bus_default_translate
+ffffffff81740ab0 t of_bus_default_get_flags
+ffffffff81740ac0 t __of_translate_address.28
+ffffffff81740e00 t irq_of_parse_and_map
+ffffffff81740ea0 t of_irq_parse_one
+ffffffff81741030 t of_irq_find_parent
+ffffffff817410e0 t of_irq_parse_raw
+ffffffff81741c70 t of_irq_to_resource
+ffffffff81741f30 t of_irq_get
+ffffffff817420d0 t of_irq_get_byname
+ffffffff817422a0 t of_irq_count
+ffffffff81742360 t of_irq_to_resource_table
+ffffffff817423c0 t of_msi_map_id
+ffffffff81742460 t of_msi_map_get_device_domain
+ffffffff81742580 t of_msi_get_domain
+ffffffff81742800 t of_msi_configure
+ffffffff81742830 t mbox_chan_received_data
+ffffffff81742850 t mbox_chan_txdone
+ffffffff81742900 t mbox_client_txdone
+ffffffff817429b0 t mbox_client_peek_data
+ffffffff817429e0 t mbox_send_message
+ffffffff81742b30 t msg_submit
+ffffffff81742c20 t mbox_flush
+ffffffff81742ce0 t mbox_bind_client
+ffffffff81742d20 t __mbox_bind_client
+ffffffff81742e20 t mbox_request_channel
+ffffffff81742fb0 t mbox_request_channel_byname
+ffffffff817430b0 t mbox_free_channel
+ffffffff81743120 t mbox_controller_register
+ffffffff81743290 t txdone_hrtimer
+ffffffff81743400 t of_mbox_index_xlate
+ffffffff81743430 t mbox_controller_unregister
+ffffffff81743570 t devm_mbox_controller_register
+ffffffff817435f0 t __devm_mbox_controller_unregister
+ffffffff81743610 t devm_mbox_controller_unregister
+ffffffff81743640 t devm_mbox_controller_match
+ffffffff81743670 t pcc_mbox_request_channel
+ffffffff817437e0 t pcc_mbox_irq
+ffffffff81743a10 t pcc_mbox_free_channel
+ffffffff81743a80 t pcc_chan_reg_read_modify_write
+ffffffff81743b80 t pcc_mbox_probe
+ffffffff81744310 t parse_pcc_subspace
+ffffffff81744330 t pcc_send_data
+ffffffff81744360 t __traceiter_mc_event
+ffffffff81744410 t __traceiter_arm_event
+ffffffff81744460 t __traceiter_non_standard_event
+ffffffff817444e0 t __traceiter_aer_event
+ffffffff81744550 t trace_event_raw_event_mc_event
+ffffffff81744740 t perf_trace_mc_event
+ffffffff81744970 t trace_event_raw_event_arm_event
+ffffffff81744a80 t perf_trace_arm_event
+ffffffff81744bc0 t trace_event_raw_event_non_standard_event
+ffffffff81744d30 t perf_trace_non_standard_event
+ffffffff81744ef0 t trace_event_raw_event_aer_event
+ffffffff81745040 t perf_trace_aer_event
+ffffffff817451d0 t log_non_standard_event
+ffffffff81745240 t log_arm_hw_error
+ffffffff817452a0 t trace_raw_output_mc_event
+ffffffff817453d0 t trace_raw_output_arm_event
+ffffffff81745440 t trace_raw_output_non_standard_event
+ffffffff81745500 t trace_raw_output_aer_event
+ffffffff81745600 t ras_userspace_consumers
+ffffffff81745620 t trace_open
+ffffffff81745650 t trace_release
+ffffffff81745670 t nvmem_register_notifier
+ffffffff81745690 t nvmem_unregister_notifier
+ffffffff817456b0 t nvmem_register
+ffffffff81745c50 t nvmem_add_cells
+ffffffff81745ec0 t nvmem_add_cells_from_table
+ffffffff817460e0 t nvmem_add_cells_from_of
+ffffffff81746340 t nvmem_unregister
+ffffffff81746400 t devm_nvmem_register
+ffffffff81746450 t devm_nvmem_unregister
+ffffffff81746460 t of_nvmem_device_get
+ffffffff81746550 t __nvmem_device_get
+ffffffff81746620 t nvmem_device_get
+ffffffff81746740 t nvmem_device_find
+ffffffff81746750 t devm_nvmem_device_put
+ffffffff81746780 t devm_nvmem_device_release
+ffffffff817467a0 t devm_nvmem_device_match
+ffffffff817467d0 t nvmem_device_put
+ffffffff817467e0 t __nvmem_device_put
+ffffffff817468b0 t devm_nvmem_device_get
+ffffffff81746930 t of_nvmem_cell_get
+ffffffff81746b20 t nvmem_cell_get
+ffffffff81746cf0 t devm_nvmem_cell_get
+ffffffff81746d70 t devm_nvmem_cell_release
+ffffffff81746db0 t devm_nvmem_cell_put
+ffffffff81746de0 t devm_nvmem_cell_match
+ffffffff81746e10 t nvmem_cell_put
+ffffffff81746e50 t nvmem_cell_read
+ffffffff81746ed0 t __nvmem_cell_read
+ffffffff81747040 t nvmem_cell_write
+ffffffff81747060 t __nvmem_cell_entry_write
+ffffffff81747320 t nvmem_cell_read_u8
+ffffffff81747340 t nvmem_cell_read_common
+ffffffff817474c0 t nvmem_cell_read_u16
+ffffffff817474e0 t nvmem_cell_read_u32
+ffffffff81747500 t nvmem_cell_read_u64
+ffffffff81747520 t nvmem_cell_read_variable_le_u32
+ffffffff817475c0 t nvmem_cell_read_variable_common
+ffffffff817476d0 t nvmem_cell_read_variable_le_u64
+ffffffff81747770 t nvmem_device_cell_read
+ffffffff81747870 t nvmem_device_cell_write
+ffffffff81747960 t nvmem_device_read
+ffffffff81747990 t nvmem_reg_read
+ffffffff81747b10 t nvmem_device_write
+ffffffff81747bb0 t nvmem_add_cell_table
+ffffffff81747c20 t nvmem_del_cell_table
+ffffffff81747c80 t nvmem_add_cell_lookups
+ffffffff81747d30 t nvmem_del_cell_lookups
+ffffffff81747df0 t nvmem_dev_name
+ffffffff81747e10 t nvmem_release
+ffffffff81747e50 t nvmem_bin_attr_is_visible
+ffffffff81747eb0 t bin_attr_nvmem_read
+ffffffff81747f50 t bin_attr_nvmem_write
+ffffffff81748060 t nvmem_cell_entry_drop
+ffffffff817480e0 t nvmem_access_with_keepouts
+ffffffff81748290 t devm_alloc_etherdev_mqs
+ffffffff81748330 t devm_free_netdev
+ffffffff81748350 t devm_register_netdev
+ffffffff817483f0 t netdev_devres_match
+ffffffff81748410 t devm_unregister_netdev
+ffffffff81748430 t move_addr_to_kernel
+ffffffff817484c0 t sock_alloc_file
+ffffffff817485b0 t sock_release
+ffffffff81748630 t sock_from_file
+ffffffff81748660 t sockfd_lookup
+ffffffff817486b0 t sock_alloc
+ffffffff81748730 t __sock_tx_timestamp
+ffffffff81748770 t sock_sendmsg
+ffffffff817487f0 t kernel_sendmsg
+ffffffff81748880 t kernel_sendmsg_locked
+ffffffff817488e0 t __sock_recv_timestamp
+ffffffff81748d30 t __sock_recv_wifi_status
+ffffffff81748da0 t __sock_recv_cmsgs
+ffffffff81748f10 t sock_recvmsg
+ffffffff81748f90 t sock_recvmsg_nosec
+ffffffff81748ff0 t kernel_recvmsg
+ffffffff81749090 t brioctl_set
+ffffffff817490c0 t br_ioctl_call
+ffffffff81749150 t vlan_ioctl_set
+ffffffff81749180 t sock_create_lite
+ffffffff817492e0 t sock_wake_async
+ffffffff81749350 t __sock_create
+ffffffff817495e0 t sock_create
+ffffffff81749610 t sock_create_kern
+ffffffff81749630 t __sys_socket_file
+ffffffff817496e0 t __sys_socket
+ffffffff81749840 t __x64_sys_socket
+ffffffff81749860 t __sys_socketpair
+ffffffff81749b10 t __x64_sys_socketpair
+ffffffff81749b40 t __sys_bind
+ffffffff81749d30 t __x64_sys_bind
+ffffffff81749d50 t __sys_listen
+ffffffff81749e00 t __x64_sys_listen
+ffffffff81749e20 t do_accept
+ffffffff8174a0a0 t move_addr_to_user
+ffffffff8174a170 t __sys_accept4
+ffffffff8174a230 t __x64_sys_accept4
+ffffffff8174a260 t __x64_sys_accept
+ffffffff8174a290 t __sys_connect_file
+ffffffff8174a300 t __sys_connect
+ffffffff8174a500 t __x64_sys_connect
+ffffffff8174a520 t __sys_getsockname
+ffffffff8174a6a0 t __x64_sys_getsockname
+ffffffff8174a6c0 t __sys_getpeername
+ffffffff8174a840 t __x64_sys_getpeername
+ffffffff8174a860 t __sys_sendto
+ffffffff8174ac20 t __x64_sys_sendto
+ffffffff8174ac50 t __x64_sys_send
+ffffffff8174ac80 t __sys_recvfrom
+ffffffff8174af70 t __x64_sys_recvfrom
+ffffffff8174afa0 t __x64_sys_recv
+ffffffff8174afd0 t __sys_setsockopt
+ffffffff8174b0f0 t __x64_sys_setsockopt
+ffffffff8174b120 t __sys_getsockopt
+ffffffff8174b220 t __x64_sys_getsockopt
+ffffffff8174b250 t __sys_shutdown_sock
+ffffffff8174b290 t __sys_shutdown
+ffffffff8174b330 t __x64_sys_shutdown
+ffffffff8174b3e0 t __copy_msghdr
+ffffffff8174b510 t sendmsg_copy_msghdr
+ffffffff8174b600 t __sys_sendmsg_sock
+ffffffff8174b620 t ____sys_sendmsg.llvm.13512692476664480012
+ffffffff8174b8d0 t __sys_sendmsg
+ffffffff8174ba00 t ___sys_sendmsg
+ffffffff8174bcc0 t __x64_sys_sendmsg
+ffffffff8174bdf0 t __sys_sendmmsg
+ffffffff8174c040 t __x64_sys_sendmmsg
+ffffffff8174c070 t recvmsg_copy_msghdr
+ffffffff8174c160 t __sys_recvmsg_sock
+ffffffff8174c180 t ____sys_recvmsg.llvm.13512692476664480012
+ffffffff8174c3a0 t __sys_recvmsg
+ffffffff8174c4c0 t ___sys_recvmsg
+ffffffff8174c750 t __x64_sys_recvmsg
+ffffffff8174c880 t __sys_recvmmsg
+ffffffff8174c9c0 t do_recvmmsg
+ffffffff8174ccf0 t __x64_sys_recvmmsg
+ffffffff8174cdd0 t __x64_sys_socketcall
+ffffffff8174d500 t sock_register
+ffffffff8174d5a0 t sock_unregister
+ffffffff8174d600 t sock_is_registered
+ffffffff8174d630 t socket_seq_show
+ffffffff8174d660 t get_user_ifreq
+ffffffff8174d6b0 t put_user_ifreq
+ffffffff8174d6e0 t kernel_bind
+ffffffff8174d700 t kernel_listen
+ffffffff8174d720 t kernel_accept
+ffffffff8174d810 t kernel_connect
+ffffffff8174d830 t kernel_getsockname
+ffffffff8174d850 t kernel_getpeername
+ffffffff8174d870 t kernel_sendpage
+ffffffff8174d960 t kernel_sendpage_locked
+ffffffff8174d9a0 t kernel_sock_shutdown
+ffffffff8174d9c0 t kernel_sock_ip_overhead
+ffffffff8174da40 t sock_read_iter
+ffffffff8174dc00 t sock_write_iter
+ffffffff8174ddb0 t sock_poll
+ffffffff8174de80 t sock_ioctl
+ffffffff8174e2b0 t sock_mmap
+ffffffff8174e2e0 t sock_close
+ffffffff8174e3a0 t sock_fasync
+ffffffff8174e420 t sock_sendpage
+ffffffff8174e520 t sock_splice_read
+ffffffff8174e560 t sock_show_fdinfo
+ffffffff8174e590 t get_net_ns
+ffffffff8174e5b0 t sockfs_setattr
+ffffffff8174e600 t sockfs_listxattr
+ffffffff8174e680 t sockfs_init_fs_context
+ffffffff8174e6c0 t sock_alloc_inode
+ffffffff8174e750 t sock_free_inode
+ffffffff8174e770 t sockfs_dname
+ffffffff8174e7a0 t sockfs_xattr_get
+ffffffff8174e7e0 t sockfs_security_xattr_set
+ffffffff8174e7f0 t sk_ns_capable
+ffffffff8174e830 t sk_capable
+ffffffff8174e870 t sk_net_capable
+ffffffff8174e8c0 t sk_set_memalloc
+ffffffff8174e8f0 t sk_clear_memalloc
+ffffffff8174e980 t __sk_backlog_rcv
+ffffffff8174ea00 t sk_error_report
+ffffffff8174ea70 t sock_get_timeout
+ffffffff8174ead0 t sock_copy_user_timeval
+ffffffff8174ebb0 t __sock_queue_rcv_skb
+ffffffff8174ee00 t sock_queue_rcv_skb_reason
+ffffffff8174ee70 t __sk_receive_skb
+ffffffff8174f050 t sk_backlog_rcv
+ffffffff8174f110 t __sk_dst_check
+ffffffff8174f1a0 t sk_dst_check
+ffffffff8174f270 t sock_bindtoindex
+ffffffff8174f2a0 t release_sock
+ffffffff8174f3c0 t sk_mc_loop
+ffffffff8174f440 t sock_set_reuseaddr
+ffffffff8174f470 t sock_set_reuseport
+ffffffff8174f4a0 t sock_no_linger
+ffffffff8174f4d0 t sock_set_priority
+ffffffff8174f500 t sock_set_sndtimeo
+ffffffff8174f560 t sock_enable_timestamps
+ffffffff8174f5b0 t sock_set_timestamp
+ffffffff8174f710 t sock_set_timestamping
+ffffffff8174f950 t sock_enable_timestamp
+ffffffff8174f990 t sock_set_keepalive
+ffffffff8174f9d0 t sock_set_rcvbuf
+ffffffff8174fa20 t sock_set_mark
+ffffffff8174fa80 t __sock_set_mark
+ffffffff8174fac0 t sockopt_lock_sock
+ffffffff8174fad0 t sockopt_release_sock
+ffffffff8174fae0 t sockopt_ns_capable
+ffffffff8174faf0 t sockopt_capable
+ffffffff8174fb00 t sk_setsockopt
+ffffffff81750a20 t sock_set_timeout
+ffffffff81750be0 t dst_negative_advice
+ffffffff81750c60 t sock_release_reserved_memory
+ffffffff81750cf0 t sock_reserve_memory
+ffffffff81750ec0 t sock_setsockopt
+ffffffff81750ee0 t sk_getsockopt
+ffffffff81751b20 t copy_to_sockptr
+ffffffff81751b90 t copy_to_sockptr
+ffffffff81751c00 t copy_to_sockptr
+ffffffff81751c70 t copy_to_sockptr
+ffffffff81751ce0 t sk_get_peer_cred
+ffffffff81751d30 t groups_to_user
+ffffffff81751df0 t sk_get_meminfo
+ffffffff81751e80 t sock_gen_cookie
+ffffffff81751ed0 t sock_gen_cookie
+ffffffff81751fa0 t sock_getsockopt
+ffffffff81752000 t sk_alloc
+ffffffff81752160 t sk_prot_alloc
+ffffffff817522b0 t sk_destruct
+ffffffff81752310 t __sk_destruct
+ffffffff81752440 t sk_free
+ffffffff81752480 t __sk_free
+ffffffff81752580 t sk_clone_lock
+ffffffff81752920 t sk_free_unlock_clone
+ffffffff81752980 t sk_setup_caps
+ffffffff81752ae0 t sock_wfree
+ffffffff81752c70 t sock_def_write_space
+ffffffff81752d00 t __sock_wfree
+ffffffff81752d50 t skb_set_owner_w
+ffffffff81752e30 t skb_orphan_partial
+ffffffff81752f10 t sock_rfree
+ffffffff81752fa0 t sock_efree
+ffffffff81753000 t sock_pfree
+ffffffff81753030 t sock_i_uid
+ffffffff81753080 t sock_i_ino
+ffffffff817530d0 t sock_wmalloc
+ffffffff81753130 t sock_omalloc
+ffffffff817531a0 t sock_ofree
+ffffffff817531c0 t sock_kmalloc
+ffffffff81753210 t sock_kfree_s
+ffffffff81753240 t sock_kzfree_s
+ffffffff81753270 t sock_alloc_send_pskb
+ffffffff817534b0 t __sock_cmsg_send
+ffffffff81753580 t sock_cmsg_send
+ffffffff81753630 t skb_page_frag_refill
+ffffffff817536f0 t sk_page_frag_refill
+ffffffff81753750 t sk_stream_moderate_sndbuf
+ffffffff817537b0 t sk_stream_moderate_sndbuf
+ffffffff81753810 t __lock_sock
+ffffffff817538d0 t __release_sock
+ffffffff81753970 t __sk_flush_backlog
+ffffffff81753a30 t sk_wait_data
+ffffffff81753b50 t __sk_mem_raise_allocated
+ffffffff81754090 t __sk_mem_schedule
+ffffffff817540e0 t __sk_mem_reduce_allocated
+ffffffff81754280 t __sk_mem_reclaim
+ffffffff817542b0 t sk_set_peek_off
+ffffffff817542d0 t sock_no_bind
+ffffffff817542e0 t sock_no_connect
+ffffffff817542f0 t sock_no_socketpair
+ffffffff81754300 t sock_no_accept
+ffffffff81754310 t sock_no_getname
+ffffffff81754320 t sock_no_ioctl
+ffffffff81754330 t sock_no_listen
+ffffffff81754340 t sock_no_shutdown
+ffffffff81754350 t sock_no_sendmsg
+ffffffff81754360 t sock_no_sendmsg_locked
+ffffffff81754370 t sock_no_recvmsg
+ffffffff81754380 t sock_no_mmap
+ffffffff81754390 t __receive_sock
+ffffffff817543f0 t sock_no_sendpage
+ffffffff81754510 t sock_no_sendpage_locked
+ffffffff81754630 t sock_def_readable
+ffffffff817546b0 t sk_send_sigurg
+ffffffff81754710 t sk_reset_timer
+ffffffff81754760 t sk_stop_timer
+ffffffff817547a0 t sk_stop_timer_sync
+ffffffff817547e0 t sock_init_data_uid
+ffffffff81754a20 t sock_def_wakeup
+ffffffff81754a70 t sock_def_error_report
+ffffffff81754af0 t sock_def_destruct
+ffffffff81754b00 t sock_init_data
+ffffffff81754b20 t lock_sock_nested
+ffffffff81754c10 t __lock_sock_fast
+ffffffff81754d10 t sock_gettstamp
+ffffffff81754e00 t sock_recv_errqueue
+ffffffff81754f40 t sock_common_getsockopt
+ffffffff81754f60 t sock_common_recvmsg
+ffffffff81754fc0 t sock_common_setsockopt
+ffffffff81754fe0 t sk_common_release
+ffffffff817550f0 t sock_prot_inuse_get
+ffffffff81755170 t sock_inuse_get
+ffffffff817551e0 t proto_register
+ffffffff817554f0 t proto_unregister
+ffffffff817555f0 t sock_load_diag_module
+ffffffff81755690 t sk_busy_loop_end
+ffffffff817556e0 t sock_bind_add
+ffffffff81755710 t proto_seq_start
+ffffffff81755740 t proto_seq_stop
+ffffffff81755760 t proto_seq_next
+ffffffff81755780 t proto_seq_show
+ffffffff81755af0 t reqsk_queue_alloc
+ffffffff81755b30 t reqsk_fastopen_remove
+ffffffff81755c90 t napi_get_frags_check
+ffffffff81755ce0 t __napi_alloc_frag_align
+ffffffff81755d30 t __netdev_alloc_frag_align
+ffffffff81755e20 t __build_skb
+ffffffff81755f10 t build_skb
+ffffffff81756070 t virt_to_head_page
+ffffffff817560d0 t build_skb_around
+ffffffff81756210 t napi_build_skb
+ffffffff817562b0 t __napi_build_skb
+ffffffff81756400 t __alloc_skb
+ffffffff81756690 t __netdev_alloc_skb
+ffffffff81756920 t __napi_alloc_skb
+ffffffff81756ac0 t skb_add_rx_frag
+ffffffff81756b30 t skb_fill_page_desc
+ffffffff81756b90 t skb_coalesce_rx_frag
+ffffffff81756bc0 t skb_release_head_state
+ffffffff81756c20 t __kfree_skb
+ffffffff81756d00 t kfree_skb_reason
+ffffffff81756e60 t kfree_skb_list_reason
+ffffffff81756e90 t skb_dump
+ffffffff81757490 t skb_tx_error
+ffffffff81757570 t consume_skb
+ffffffff81757610 t __consume_stateless_skb
+ffffffff817576f0 t skb_release_data
+ffffffff81757850 t __kfree_skb_defer
+ffffffff81757920 t napi_skb_free_stolen_head
+ffffffff81757a10 t napi_consume_skb
+ffffffff81757b80 t alloc_skb_for_msg
+ffffffff81757c00 t __copy_skb_header
+ffffffff81757d10 t skb_morph
+ffffffff81757d90 t __skb_clone
+ffffffff81757eb0 t mm_account_pinned_pages
+ffffffff81757fa0 t mm_unaccount_pinned_pages
+ffffffff81757fd0 t msg_zerocopy_realloc
+ffffffff81758170 t msg_zerocopy_callback
+ffffffff81758310 t net_zcopy_get
+ffffffff81758350 t refcount_dec_and_test
+ffffffff81758390 t refcount_dec_and_test
+ffffffff817583d0 t refcount_dec_and_test
+ffffffff81758410 t msg_zerocopy_put_abort
+ffffffff81758440 t skb_zerocopy_iter_stream
+ffffffff81758590 t ___pskb_trim
+ffffffff817588c0 t __skb_zcopy_downgrade_managed
+ffffffff81758950 t skb_copy_ubufs
+ffffffff81758eb0 t skb_clone
+ffffffff81758f70 t skb_headers_offset_update
+ffffffff81758fd0 t skb_copy_header
+ffffffff81759060 t skb_copy
+ffffffff817591a0 t skb_put
+ffffffff817591e0 t skb_copy_bits
+ffffffff81759450 t __pskb_copy_fclone
+ffffffff81759750 t skb_zerocopy_clone
+ffffffff81759880 t pskb_expand_head
+ffffffff81759c40 t skb_realloc_headroom
+ffffffff81759cc0 t __skb_unclone_keeptruesize
+ffffffff81759d40 t skb_expand_head
+ffffffff81759ed0 t skb_copy_expand
+ffffffff8175a080 t __skb_pad
+ffffffff8175a1b0 t pskb_put
+ffffffff8175a210 t skb_over_panic
+ffffffff8175a270 t skb_push
+ffffffff8175a2b0 t skb_under_panic
+ffffffff8175a310 t skb_pull
+ffffffff8175a350 t skb_pull_data
+ffffffff8175a390 t skb_trim
+ffffffff8175a3d0 t skb_condense
+ffffffff8175a430 t pskb_trim_rcsum_slow
+ffffffff8175a510 t skb_checksum
+ffffffff8175a530 t __pskb_pull_tail
+ffffffff8175a970 t skb_splice_bits
+ffffffff8175aa70 t sock_spd_release
+ffffffff8175aab0 t __skb_splice_bits
+ffffffff8175ac60 t skb_send_sock_locked
+ffffffff8175af40 t skb_send_sock
+ffffffff8175b240 t skb_store_bits
+ffffffff8175b4b0 t __skb_checksum
+ffffffff8175b800 t csum_partial_ext.llvm.15827670776272453262
+ffffffff8175b810 t csum_block_add_ext.llvm.15827670776272453262
+ffffffff8175b840 t skb_copy_and_csum_bits
+ffffffff8175bb20 t __skb_checksum_complete_head
+ffffffff8175bbc0 t __skb_checksum_complete
+ffffffff8175bc80 t skb_zerocopy_headlen
+ffffffff8175bcd0 t skb_zerocopy
+ffffffff8175c030 t skb_copy_and_csum_dev
+ffffffff8175c0e0 t skb_dequeue
+ffffffff8175c150 t skb_dequeue_tail
+ffffffff8175c1c0 t skb_queue_purge
+ffffffff8175c240 t skb_rbtree_purge
+ffffffff8175c2b0 t skb_queue_head
+ffffffff8175c300 t skb_queue_tail
+ffffffff8175c350 t skb_unlink
+ffffffff8175c3b0 t skb_append
+ffffffff8175c400 t skb_split
+ffffffff8175c750 t skb_shift
+ffffffff8175ccb0 t skb_prepare_for_shift
+ffffffff8175cd50 t skb_prepare_seq_read
+ffffffff8175cd80 t skb_seq_read
+ffffffff8175d010 t skb_abort_seq_read
+ffffffff8175d060 t skb_find_text
+ffffffff8175d130 t skb_ts_get_next_block
+ffffffff8175d150 t skb_ts_finish
+ffffffff8175d1a0 t skb_append_pagefrags
+ffffffff8175d2f0 t skb_pull_rcsum
+ffffffff8175d370 t skb_segment_list
+ffffffff8175d7d0 t skb_segment
+ffffffff8175e640 t skb_to_sgvec
+ffffffff8175e680 t __skb_to_sgvec
+ffffffff8175e950 t skb_to_sgvec_nomark
+ffffffff8175e970 t skb_cow_data
+ffffffff8175ec20 t sock_queue_err_skb
+ffffffff8175ed60 t sock_rmem_free
+ffffffff8175ed80 t sock_dequeue_err_skb
+ffffffff8175ee70 t skb_clone_sk
+ffffffff8175ef30 t skb_complete_tx_timestamp
+ffffffff8175f110 t __skb_tstamp_tx
+ffffffff8175f3c0 t skb_tstamp_tx
+ffffffff8175f3e0 t skb_complete_wifi_ack
+ffffffff8175f4f0 t skb_partial_csum_set
+ffffffff8175f5a0 t skb_checksum_setup
+ffffffff8175f9a0 t skb_checksum_trimmed
+ffffffff8175fb70 t __skb_warn_lro_forwarding
+ffffffff8175fbb0 t kfree_skb_partial
+ffffffff8175fc30 t skb_try_coalesce
+ffffffff8175ff60 t skb_scrub_packet
+ffffffff8175ffe0 t skb_gso_validate_network_len
+ffffffff817600b0 t skb_gso_validate_mac_len
+ffffffff81760180 t skb_vlan_untag
+ffffffff817603d0 t skb_ensure_writable
+ffffffff81760480 t __skb_vlan_pop
+ffffffff817606a0 t skb_vlan_pop
+ffffffff81760780 t skb_vlan_push
+ffffffff81760950 t skb_eth_pop
+ffffffff81760a90 t skb_eth_push
+ffffffff81760c00 t skb_mpls_push
+ffffffff81760e30 t skb_mpls_pop
+ffffffff81761060 t skb_mpls_update_lse
+ffffffff817611c0 t skb_mpls_dec_ttl
+ffffffff81761270 t alloc_skb_with_frags
+ffffffff81761430 t pskb_extract
+ffffffff817614c0 t pskb_carve
+ffffffff81761b30 t __skb_ext_alloc
+ffffffff81761b60 t __skb_ext_set
+ffffffff81761bc0 t skb_ext_add
+ffffffff81761ec0 t __skb_ext_del
+ffffffff81761f80 t __skb_ext_put
+ffffffff81762050 t skb_attempt_defer_free
+ffffffff81762150 t __splice_segment
+ffffffff81762360 t warn_crc32c_csum_update
+ffffffff817623a0 t warn_crc32c_csum_combine
+ffffffff817623e0 t skb_checksum_setup_ip
+ffffffff817625f0 t __skb_wait_for_more_packets
+ffffffff81762750 t receiver_wake_function
+ffffffff81762780 t __skb_try_recv_from_queue
+ffffffff81762920 t __skb_try_recv_datagram
+ffffffff81762ab0 t __skb_recv_datagram
+ffffffff81762b80 t skb_recv_datagram
+ffffffff81762c60 t skb_free_datagram
+ffffffff81762c80 t __skb_free_datagram_locked
+ffffffff81762d80 t __sk_queue_drop_skb
+ffffffff81762e50 t skb_kill_datagram
+ffffffff81762f00 t skb_copy_and_hash_datagram_iter
+ffffffff81762f30 t __skb_datagram_iter
+ffffffff81763240 t skb_copy_datagram_iter
+ffffffff817632d0 t simple_copy_to_iter
+ffffffff81763320 t skb_copy_datagram_from_iter
+ffffffff81763510 t __zerocopy_sg_from_iter
+ffffffff81763930 t zerocopy_sg_from_iter
+ffffffff81763980 t skb_copy_and_csum_datagram_msg
+ffffffff81763b40 t datagram_poll
+ffffffff81763c30 t sk_stream_write_space
+ffffffff81763d30 t sk_stream_wait_connect
+ffffffff81763ef0 t sk_stream_wait_close
+ffffffff81763ff0 t sk_stream_wait_memory
+ffffffff81764390 t sk_stream_error
+ffffffff817643f0 t sk_stream_kill_queues
+ffffffff817644c0 t __scm_destroy
+ffffffff81764530 t __scm_send
+ffffffff81764930 t put_cmsg
+ffffffff81764ad0 t put_cmsg_scm_timestamping64
+ffffffff81764b50 t put_cmsg_scm_timestamping
+ffffffff81764bd0 t scm_detach_fds
+ffffffff81764d80 t scm_fp_dup
+ffffffff81764e20 t gnet_stats_start_copy_compat
+ffffffff81764f50 t gnet_stats_start_copy
+ffffffff81764f80 t gnet_stats_basic_sync_init
+ffffffff81764fa0 t gnet_stats_add_basic
+ffffffff81765050 t gnet_stats_copy_basic
+ffffffff81765070 t ___gnet_stats_copy_basic.llvm.10219604708986353946
+ffffffff817651e0 t gnet_stats_copy_basic_hw
+ffffffff81765200 t gnet_stats_copy_rate_est
+ffffffff81765310 t gnet_stats_add_queue
+ffffffff817653c0 t gnet_stats_copy_queue
+ffffffff81765550 t gnet_stats_copy_app
+ffffffff81765600 t gnet_stats_finish_copy
+ffffffff81765700 t gen_new_estimator
+ffffffff81765950 t est_timer
+ffffffff81765a70 t gen_kill_estimator
+ffffffff81765ab0 t gen_replace_estimator
+ffffffff81765ac0 t gen_estimator_active
+ffffffff81765ae0 t gen_estimator_read
+ffffffff81765b40 t peernet2id_alloc
+ffffffff81765c10 t rtnl_net_notifyid
+ffffffff81765d10 t peernet2id
+ffffffff81765d60 t peernet_has_id
+ffffffff81765db0 t get_net_ns_by_id
+ffffffff81765df0 t get_net_ns_by_pid
+ffffffff81765e60 t register_pernet_subsys
+ffffffff81765ea0 t rtnl_net_newid
+ffffffff817661e0 t rtnl_net_getid
+ffffffff81766630 t rtnl_net_dumpid
+ffffffff817668e0 t register_pernet_operations.llvm.9729805271779603795
+ffffffff817669c0 t unregister_pernet_subsys
+ffffffff817669f0 t unregister_pernet_operations.llvm.9729805271779603795
+ffffffff81766ba0 t register_pernet_device
+ffffffff81766c00 t unregister_pernet_device
+ffffffff81766c50 t net_eq_idr
+ffffffff81766c70 t rtnl_net_fill
+ffffffff81766da0 t ops_init
+ffffffff81766f00 t rtnl_net_dumpid_one
+ffffffff81766f70 t secure_tcpv6_ts_off
+ffffffff81767030 t secure_tcpv6_seq
+ffffffff81767110 t secure_ipv6_port_ephemeral
+ffffffff817671f0 t secure_tcp_ts_off
+ffffffff817672a0 t secure_tcp_seq
+ffffffff81767370 t secure_ipv4_port_ephemeral
+ffffffff81767440 t skb_flow_dissector_init
+ffffffff817674f0 t __skb_flow_get_ports
+ffffffff817675d0 t skb_flow_get_icmp_tci
+ffffffff81767690 t skb_flow_dissect_meta
+ffffffff817676b0 t skb_flow_dissect_ct
+ffffffff817676c0 t skb_flow_dissect_tunnel_info
+ffffffff81767870 t skb_flow_dissect_hash
+ffffffff81767890 t bpf_flow_dissect
+ffffffff817679d0 t __skb_flow_dissect
+ffffffff81769b90 t flow_get_u32_src
+ffffffff81769bd0 t flow_get_u32_dst
+ffffffff81769c10 t flow_hash_from_keys
+ffffffff81769d80 t make_flow_keys_digest
+ffffffff81769dc0 t __skb_get_hash_symmetric
+ffffffff81769fa0 t __skb_get_hash
+ffffffff8176a0d0 t ___skb_get_hash
+ffffffff8176a240 t skb_get_hash_perturb
+ffffffff8176a2d0 t __skb_get_poff
+ffffffff8176a3c0 t skb_get_poff
+ffffffff8176a460 t __get_hash_from_flowi6
+ffffffff8176a510 t proc_do_dev_weight
+ffffffff8176a5b0 t proc_do_rss_key
+ffffffff8176a6b0 t rps_sock_flow_sysctl
+ffffffff8176a910 t flow_limit_cpu_sysctl
+ffffffff8176ac30 t flow_limit_table_len_sysctl
+ffffffff8176ace0 t netdev_name_in_use
+ffffffff8176ad50 t netdev_name_node_alt_create
+ffffffff8176ae90 t netdev_name_node_alt_destroy
+ffffffff8176af80 t dev_add_pack
+ffffffff8176b030 t __dev_remove_pack
+ffffffff8176b100 t dev_remove_pack
+ffffffff8176b1e0 t synchronize_net
+ffffffff8176b210 t dev_get_iflink
+ffffffff8176b250 t dev_fill_metadata_dst
+ffffffff8176b390 t dev_fill_forward_path
+ffffffff8176b4e0 t __dev_get_by_name
+ffffffff8176b560 t dev_get_by_name_rcu
+ffffffff8176b5e0 t dev_get_by_name
+ffffffff8176b680 t __dev_get_by_index
+ffffffff8176b6e0 t dev_get_by_index_rcu
+ffffffff8176b740 t dev_get_by_index
+ffffffff8176b7c0 t dev_get_by_napi_id
+ffffffff8176b820 t netdev_get_name
+ffffffff8176b8b0 t dev_getbyhwaddr_rcu
+ffffffff8176b930 t dev_getfirstbyhwtype
+ffffffff8176b990 t __dev_get_by_flags
+ffffffff8176ba20 t dev_valid_name
+ffffffff8176baa0 t dev_alloc_name
+ffffffff8176bab0 t dev_alloc_name_ns
+ffffffff8176bdf0 t dev_change_name
+ffffffff8176c1a0 t dev_get_valid_name
+ffffffff8176c2cf t netdev_info
+ffffffff8176c360 t netdev_adjacent_rename_links
+ffffffff8176c570 t call_netdevice_notifiers
+ffffffff8176c619 t netdev_err
+ffffffff8176c6b0 t dev_set_alias
+ffffffff8176c750 t dev_get_alias
+ffffffff8176c7a0 t netdev_features_change
+ffffffff8176c850 t netdev_state_change
+ffffffff8176c930 t call_netdevice_notifiers_info
+ffffffff8176c9b0 t __netdev_notify_peers
+ffffffff8176cb20 t netdev_notify_peers
+ffffffff8176cb50 t __dev_open
+ffffffff8176cd10 t dev_close_many
+ffffffff8176cea0 t __dev_close_many
+ffffffff8176d000 t dev_close
+ffffffff8176d0b0 t dev_disable_lro
+ffffffff8176d160 t netdev_update_features
+ffffffff8176d220 t netdev_reg_state
+ffffffff8176d280 t netdev_lower_get_next
+ffffffff8176d2b0 t netdev_cmd_to_name
+ffffffff8176d2e0 t register_netdevice_notifier
+ffffffff8176d490 t call_netdevice_register_net_notifiers
+ffffffff8176d620 t unregister_netdevice_notifier
+ffffffff8176d780 t register_netdevice_notifier_net
+ffffffff8176d800 t unregister_netdevice_notifier_net
+ffffffff8176d920 t register_netdevice_notifier_dev_net
+ffffffff8176d9e0 t unregister_netdevice_notifier_dev_net
+ffffffff8176db30 t net_enable_timestamp
+ffffffff8176db90 t net_disable_timestamp
+ffffffff8176dbf0 t is_skb_forwardable
+ffffffff8176dc40 t __dev_forward_skb
+ffffffff8176dc60 t __dev_forward_skb2
+ffffffff8176de00 t dev_forward_skb
+ffffffff8176de40 t netif_rx_internal
+ffffffff8176df50 t dev_forward_skb_nomtu
+ffffffff8176df80 t dev_nit_active
+ffffffff8176dfc0 t dev_queue_xmit_nit
+ffffffff8176e2a0 t netdev_txq_to_tc
+ffffffff8176e4a0 t __netif_set_xps_queue
+ffffffff8176ed70 t netif_set_xps_queue
+ffffffff8176edb0 t netdev_reset_tc
+ffffffff8176ef70 t netif_reset_xps_queues_gt
+ffffffff8176eff0 t netdev_set_tc_queue
+ffffffff8176f0a0 t netdev_set_num_tc
+ffffffff8176f210 t netdev_unbind_sb_channel
+ffffffff8176f300 t netdev_bind_sb_channel_queue
+ffffffff8176f400 t netdev_set_sb_channel
+ffffffff8176f440 t netif_set_real_num_tx_queues
+ffffffff8176f680 t netif_set_real_num_rx_queues
+ffffffff8176f710 t netif_set_real_num_queues
+ffffffff8176f930 t netif_set_tso_max_size
+ffffffff8176f960 t netif_set_tso_max_segs
+ffffffff8176f990 t netif_inherit_tso_max
+ffffffff8176f9f0 t netif_get_num_default_rss_queues
+ffffffff8176fae0 t __netif_schedule
+ffffffff8176fb90 t netif_schedule_queue
+ffffffff8176fc50 t netif_tx_wake_queue
+ffffffff8176fd20 t __dev_kfree_skb_irq
+ffffffff8176fde0 t __dev_kfree_skb_any
+ffffffff8176fe60 t netif_device_detach
+ffffffff8176fec0 t netif_tx_stop_all_queues
+ffffffff8176ff10 t netif_device_attach
+ffffffff8176ff80 t skb_checksum_help
+ffffffff81770100 t skb_warn_bad_offload
+ffffffff817701d0 t skb_crc32c_csum_help
+ffffffff817702c0 t skb_network_protocol
+ffffffff81770460 t __skb_gso_segment
+ffffffff81770580 t skb_cow_head
+ffffffff817705c0 t netdev_rx_csum_fault
+ffffffff817705f0 t do_netdev_rx_csum_fault
+ffffffff81770630 t passthru_features_check
+ffffffff81770640 t netif_skb_features
+ffffffff81770880 t dev_hard_start_xmit
+ffffffff81770a70 t skb_csum_hwoffload_help
+ffffffff81770ac0 t validate_xmit_skb_list
+ffffffff81770b30 t validate_xmit_skb
+ffffffff81770e70 t dev_loopback_xmit
+ffffffff81770f50 t netif_rx
+ffffffff81771030 t dev_pick_tx_zero
+ffffffff81771040 t dev_pick_tx_cpu_id
+ffffffff81771060 t netdev_pick_tx
+ffffffff81771380 t netdev_core_pick_tx
+ffffffff81771450 t __dev_queue_xmit
+ffffffff81771ef0 t __dev_direct_xmit
+ffffffff81772130 t rps_may_expire_flow
+ffffffff817721c0 t bpf_prog_run_generic_xdp
+ffffffff81772510 t generic_xdp_tx
+ffffffff817726c0 t do_xdp_generic
+ffffffff817728f0 t __netif_rx
+ffffffff817729a0 t netdev_is_rx_handler_busy
+ffffffff81772a00 t netdev_rx_handler_register
+ffffffff81772a90 t netdev_rx_handler_unregister
+ffffffff81772b10 t netif_receive_skb_core
+ffffffff81772bd0 t netif_receive_skb_list_internal
+ffffffff81772eb0 t get_rps_cpu
+ffffffff817730b0 t enqueue_to_backlog
+ffffffff81773340 t netif_receive_skb
+ffffffff817734a0 t netif_receive_skb_list
+ffffffff81773570 t __napi_schedule
+ffffffff81773660 t napi_schedule_prep
+ffffffff817736b0 t __napi_schedule_irqoff
+ffffffff81773750 t napi_complete_done
+ffffffff817738f0 t napi_busy_loop
+ffffffff81773ba0 t busy_poll_stop
+ffffffff81773d20 t dev_set_threaded
+ffffffff81773e60 t netif_napi_add_weight
+ffffffff817741a0 t napi_watchdog
+ffffffff817741dd t netdev_printk
+ffffffff81774260 t napi_disable
+ffffffff817742e0 t napi_enable
+ffffffff81774350 t __netif_napi_del
+ffffffff817745f0 t netdev_has_upper_dev
+ffffffff817747b0 t netdev_walk_all_upper_dev_rcu
+ffffffff81774960 t netdev_has_upper_dev_all_rcu
+ffffffff81774ad0 t netdev_has_any_upper_dev
+ffffffff81774b30 t netdev_master_upper_dev_get
+ffffffff81774ba0 t netdev_adjacent_get_private
+ffffffff81774bb0 t netdev_upper_get_next_dev_rcu
+ffffffff81774be0 t netdev_lower_get_next_private
+ffffffff81774c10 t netdev_lower_get_next_private_rcu
+ffffffff81774c40 t netdev_walk_all_lower_dev
+ffffffff81774df0 t netdev_next_lower_dev_rcu
+ffffffff81774e20 t netdev_walk_all_lower_dev_rcu
+ffffffff81774fd0 t netdev_lower_get_first_private_rcu
+ffffffff81775010 t netdev_master_upper_dev_get_rcu
+ffffffff81775060 t netdev_upper_dev_link
+ffffffff81775080 t __netdev_upper_dev_link
+ffffffff817756b0 t netdev_master_upper_dev_link
+ffffffff817756d0 t netdev_upper_dev_unlink
+ffffffff817756e0 t __netdev_upper_dev_unlink
+ffffffff81775d10 t netdev_adjacent_change_prepare
+ffffffff81775e30 t netdev_adjacent_change_commit
+ffffffff81775eb0 t netdev_adjacent_change_abort
+ffffffff81775f30 t netdev_bonding_info_change
+ffffffff81776000 t netdev_offload_xstats_enable
+ffffffff817761d0 t netdev_offload_xstats_enabled
+ffffffff81776240 t netdev_offload_xstats_disable
+ffffffff817763d0 t netdev_offload_xstats_get
+ffffffff81776710 t netdev_offload_xstats_report_delta
+ffffffff81776770 t netdev_offload_xstats_report_used
+ffffffff81776780 t netdev_offload_xstats_push_delta
+ffffffff81776840 t netdev_get_xmit_slave
+ffffffff81776870 t netdev_sk_get_lowest_dev
+ffffffff817768d0 t netdev_lower_dev_get_private
+ffffffff81776920 t netdev_lower_state_changed
+ffffffff81776a10 t dev_set_promiscuity
+ffffffff81776a60 t __dev_set_promiscuity
+ffffffff81776c10 t dev_set_rx_mode
+ffffffff81776cc0 t dev_set_allmulti
+ffffffff81776ce0 t __dev_set_allmulti.llvm.1021418273301669317
+ffffffff81776e00 t __dev_set_rx_mode
+ffffffff81776e90 t dev_get_flags
+ffffffff81776f00 t __dev_change_flags
+ffffffff81777100 t __dev_notify_flags
+ffffffff817772f0 t dev_change_flags
+ffffffff81777350 t __dev_set_mtu
+ffffffff81777390 t dev_validate_mtu
+ffffffff817773f0 t dev_set_mtu_ext
+ffffffff817775f0 t call_netdevice_notifiers_mtu
+ffffffff817776b0 t dev_set_mtu
+ffffffff81777770 t dev_change_tx_queue_len
+ffffffff817778b0 t dev_set_group
+ffffffff817778d0 t dev_pre_changeaddr_notify
+ffffffff817779a0 t dev_set_mac_address
+ffffffff81777b70 t dev_set_mac_address_user
+ffffffff81777bc0 t dev_get_mac_address
+ffffffff81777cc0 t dev_change_carrier
+ffffffff81777d10 t dev_get_phys_port_id
+ffffffff81777d40 t dev_get_phys_port_name
+ffffffff81777d70 t dev_get_port_parent_id
+ffffffff81777ed0 t netdev_port_same_parent_id
+ffffffff81777fa0 t dev_change_proto_down
+ffffffff81777ff0 t dev_change_proto_down_reason
+ffffffff81778080 t dev_xdp_prog_count
+ffffffff817780f0 t dev_xdp_prog_id
+ffffffff81778150 t bpf_xdp_link_attach
+ffffffff81778240 t dev_change_xdp_fd
+ffffffff81778620 t __netdev_update_features
+ffffffff817790f0 t netdev_change_features
+ffffffff817791b0 t netif_stacked_transfer_operstate
+ffffffff81779230 t register_netdevice
+ffffffff81779850 t list_netdevice
+ffffffff817799a0 t unregister_netdevice_queue
+ffffffff81779ab0 t init_dummy_netdev
+ffffffff81779af0 t register_netdev
+ffffffff81779b30 t netdev_refcnt_read
+ffffffff81779ba0 t netdev_run_todo
+ffffffff8177a170 t free_netdev
+ffffffff8177a320 t netdev_stats_to_stats64
+ffffffff8177a430 t netdev_core_stats_alloc
+ffffffff8177a480 t dev_get_stats
+ffffffff8177a790 t dev_fetch_sw_netstats
+ffffffff8177a820 t dev_get_tstats64
+ffffffff8177a9d0 t dev_ingress_queue_create
+ffffffff8177a9f0 t netdev_set_default_ethtool_ops
+ffffffff8177aa20 t netdev_freemem
+ffffffff8177aa40 t alloc_netdev_mqs
+ffffffff8177ae20 t unregister_netdevice_many
+ffffffff8177b7b0 t unregister_netdev
+ffffffff8177b880 t __dev_change_net_namespace
+ffffffff8177b8f0 t netdev_increment_features
+ffffffff8177b940 t netdev_drivername
+ffffffff8177b980 t __netdev_printk
+ffffffff8177bb2d t netdev_emerg
+ffffffff8177bbb5 t netdev_alert
+ffffffff8177bc3d t netdev_crit
+ffffffff8177bcc5 t netdev_warn
+ffffffff8177bd4d t netdev_notice
+ffffffff8177bde0 t netstamp_clear
+ffffffff8177be30 t clean_xps_maps
+ffffffff8177bfe0 t skb_header_pointer
+ffffffff8177c030 t skb_header_pointer
+ffffffff8177c080 t skb_header_pointer
+ffffffff8177c0d0 t skb_header_pointer
+ffffffff8177c110 t dev_qdisc_enqueue
+ffffffff8177c190 t qdisc_run_end
+ffffffff8177c1e0 t qdisc_run
+ffffffff8177c320 t __netif_receive_skb_core
+ffffffff8177cd00 t deliver_ptype_list_skb
+ffffffff8177ce00 t set_rps_cpu
+ffffffff8177cf30 t __netif_receive_skb_list_core
+ffffffff8177d1f0 t __netif_receive_skb
+ffffffff8177d360 t napi_threaded_poll
+ffffffff8177d470 t __napi_poll
+ffffffff8177d620 t napi_schedule
+ffffffff8177d670 t __netdev_update_upper_level
+ffffffff8177d6e0 t __netdev_walk_all_lower_dev
+ffffffff8177d8c0 t __netdev_update_lower_level
+ffffffff8177d930 t __netdev_walk_all_upper_dev
+ffffffff8177db10 t __netdev_adjacent_dev_unlink_neighbour
+ffffffff8177db50 t __netdev_adjacent_dev_insert
+ffffffff8177dde0 t __netdev_adjacent_dev_remove
+ffffffff8177df50 t generic_xdp_install
+ffffffff8177e030 t flush_backlog
+ffffffff8177e170 t rps_trigger_softirq
+ffffffff8177e200 t trigger_rx_softirq
+ffffffff8177e230 t process_backlog
+ffffffff8177e3c0 t net_tx_action
+ffffffff8177e550 t net_rx_action
+ffffffff8177e820 t dev_cpu_dead
+ffffffff8177ea70 t trace_kfree_skb
+ffffffff8177ead0 t __hw_addr_sync
+ffffffff8177eb70 t __hw_addr_unsync_one
+ffffffff8177ec00 t __hw_addr_unsync
+ffffffff8177ec50 t __hw_addr_sync_dev
+ffffffff8177eda0 t __hw_addr_ref_sync_dev
+ffffffff8177ef00 t __hw_addr_ref_unsync_dev
+ffffffff8177eff0 t __hw_addr_unsync_dev
+ffffffff8177f0d0 t __hw_addr_init
+ffffffff8177f100 t dev_addr_check
+ffffffff8177f1f0 t dev_addr_flush
+ffffffff8177f2a0 t dev_addr_init
+ffffffff8177f370 t dev_addr_mod
+ffffffff8177f490 t dev_addr_add
+ffffffff8177f540 t dev_addr_del
+ffffffff8177f610 t dev_uc_add_excl
+ffffffff8177f690 t __hw_addr_add_ex
+ffffffff8177f840 t dev_uc_add
+ffffffff8177f8c0 t dev_uc_del
+ffffffff8177f930 t dev_uc_sync
+ffffffff8177fa50 t dev_uc_sync_multiple
+ffffffff8177fb50 t dev_uc_unsync
+ffffffff8177fc20 t dev_uc_flush
+ffffffff8177fcf0 t dev_uc_init
+ffffffff8177fd30 t dev_mc_add_excl
+ffffffff8177fdb0 t dev_mc_add
+ffffffff8177fe30 t dev_mc_add_global
+ffffffff8177feb0 t dev_mc_del
+ffffffff8177ff20 t dev_mc_del_global
+ffffffff8177ffa0 t dev_mc_sync
+ffffffff817800c0 t dev_mc_sync_multiple
+ffffffff817801c0 t dev_mc_unsync
+ffffffff81780290 t dev_mc_flush
+ffffffff81780360 t dev_mc_init
+ffffffff817803a0 t __hw_addr_del_ex
+ffffffff817804f0 t dst_discard_out
+ffffffff81780510 t dst_init
+ffffffff817805c0 t dst_discard
+ffffffff817805e0 t dst_discard
+ffffffff81780600 t dst_discard
+ffffffff81780620 t dst_discard
+ffffffff81780640 t dst_alloc
+ffffffff81780790 t dst_destroy
+ffffffff817808d0 t metadata_dst_free
+ffffffff81780900 t dst_release_immediate
+ffffffff81780990 t dst_dev_put
+ffffffff81780a10 t dst_release
+ffffffff81780ab0 t dst_destroy_rcu
+ffffffff81780ad0 t dst_cow_metrics_generic
+ffffffff81780b90 t __dst_destroy_metrics_generic
+ffffffff81780bc0 t dst_blackhole_check
+ffffffff81780bd0 t dst_blackhole_cow_metrics
+ffffffff81780be0 t dst_blackhole_neigh_lookup
+ffffffff81780bf0 t dst_blackhole_update_pmtu
+ffffffff81780c00 t dst_blackhole_redirect
+ffffffff81780c10 t dst_blackhole_mtu
+ffffffff81780c40 t metadata_dst_alloc
+ffffffff81780d10 t metadata_dst_alloc_percpu
+ffffffff81780e60 t metadata_dst_free_percpu
+ffffffff81780ef0 t register_netevent_notifier
+ffffffff81780f10 t unregister_netevent_notifier
+ffffffff81780f30 t call_netevent_notifiers
+ffffffff81780f50 t neigh_rand_reach_time
+ffffffff81780f80 t neigh_remove_one
+ffffffff817810c0 t neigh_changeaddr
+ffffffff81781100 t neigh_flush_dev.llvm.12878022069031703224
+ffffffff81781350 t neigh_carrier_down
+ffffffff81781370 t __neigh_ifdown.llvm.12878022069031703224
+ffffffff817814a0 t neigh_ifdown
+ffffffff817814c0 t neigh_lookup
+ffffffff817815c0 t neigh_lookup_nodev
+ffffffff817816d0 t __neigh_create
+ffffffff817816f0 t ___neigh_create.llvm.12878022069031703224
+ffffffff81781ed0 t __pneigh_lookup
+ffffffff81781f70 t pneigh_lookup
+ffffffff81782120 t pneigh_delete
+ffffffff81782220 t neigh_destroy
+ffffffff817823c0 t neigh_del_timer
+ffffffff81782420 t __skb_queue_purge
+ffffffff81782470 t __neigh_event_send
+ffffffff81782880 t neigh_add_timer
+ffffffff81782940 t neigh_update
+ffffffff81782960 t __neigh_update.llvm.12878022069031703224
+ffffffff81783310 t __neigh_set_probe_once
+ffffffff81783380 t neigh_event_ns
+ffffffff81783430 t neigh_resolve_output
+ffffffff817835f0 t neigh_event_send
+ffffffff81783640 t neigh_event_send
+ffffffff81783690 t neigh_connected_output
+ffffffff817837b0 t neigh_direct_output
+ffffffff817837d0 t pneigh_enqueue
+ffffffff817838f0 t neigh_parms_alloc
+ffffffff81783a20 t neigh_parms_release
+ffffffff81783ac0 t neigh_rcu_free_parms
+ffffffff81783b00 t neigh_table_init
+ffffffff81783df0 t neigh_hash_alloc
+ffffffff81783ed0 t neigh_periodic_work
+ffffffff81784190 t neigh_managed_work
+ffffffff81784250 t neigh_proxy_process
+ffffffff81784420 t neigh_table_clear
+ffffffff81784510 t pneigh_queue_purge
+ffffffff817846a0 t neigh_hash_free_rcu
+ffffffff81784700 t neigh_for_each
+ffffffff817847b0 t __neigh_for_each_release
+ffffffff81784920 t neigh_cleanup_and_release
+ffffffff817849d0 t neigh_xmit
+ffffffff81784bc0 t neigh_seq_start
+ffffffff81784e80 t neigh_seq_next
+ffffffff817850c0 t pneigh_get_first
+ffffffff817851e0 t neigh_seq_stop
+ffffffff81785210 t neigh_app_ns
+ffffffff81785230 t __neigh_notify.llvm.12878022069031703224
+ffffffff817852f0 t neigh_proc_dointvec
+ffffffff81785340 t neigh_proc_update.llvm.12878022069031703224
+ffffffff81785440 t neigh_proc_dointvec_jiffies
+ffffffff81785490 t neigh_proc_dointvec_ms_jiffies
+ffffffff817854e0 t neigh_sysctl_register
+ffffffff81785700 t neigh_proc_base_reachable_time
+ffffffff817857e0 t neigh_sysctl_unregister
+ffffffff81785810 t neigh_blackhole
+ffffffff81785830 t neigh_release
+ffffffff81785870 t neigh_release
+ffffffff817858b0 t neigh_release
+ffffffff817858f0 t neigh_release
+ffffffff81785930 t neigh_release
+ffffffff81785970 t neigh_timer_handler
+ffffffff81785c90 t neigh_invalidate
+ffffffff81785d90 t neigh_stat_seq_start
+ffffffff81785e40 t neigh_stat_seq_stop
+ffffffff81785e50 t neigh_stat_seq_next
+ffffffff81785ef0 t neigh_stat_seq_show
+ffffffff81785f60 t neigh_fill_info
+ffffffff817862d0 t neigh_proc_dointvec_zero_intmax
+ffffffff81786370 t neigh_proc_dointvec_userhz_jiffies
+ffffffff817863c0 t neigh_proc_dointvec_ms_jiffies_positive
+ffffffff81786470 t neigh_proc_dointvec_unres_qlen
+ffffffff81786560 t neigh_add
+ffffffff81786a10 t neigh_delete
+ffffffff81786c00 t neigh_get
+ffffffff81787180 t neigh_dump_info
+ffffffff81787790 t neightbl_dump_info
+ffffffff81787f70 t neightbl_set
+ffffffff81788630 t nlmsg_parse_deprecated_strict
+ffffffff817886a0 t nlmsg_parse_deprecated_strict
+ffffffff81788710 t nlmsg_parse_deprecated_strict
+ffffffff81788780 t nlmsg_parse_deprecated_strict
+ffffffff817887f0 t nlmsg_parse_deprecated_strict
+ffffffff81788860 t nlmsg_parse_deprecated_strict
+ffffffff817888d0 t nlmsg_parse_deprecated_strict
+ffffffff81788940 t pneigh_fill_info
+ffffffff81788ae0 t neightbl_fill_parms
+ffffffff81788eb0 t rtnl_lock
+ffffffff81788ed0 t rtnl_lock_killable
+ffffffff81788ef0 t rtnl_kfree_skbs
+ffffffff81788f20 t __rtnl_unlock
+ffffffff81788f90 t rtnl_unlock
+ffffffff81788fa0 t rtnl_trylock
+ffffffff81788fc0 t rtnl_is_locked
+ffffffff81788fe0 t refcount_dec_and_rtnl_lock
+ffffffff81789000 t rtnl_register_module
+ffffffff81789010 t rtnl_register_internal.llvm.4300115734004119168
+ffffffff817891b0 t rtnl_register
+ffffffff81789200 t rtnl_unregister
+ffffffff81789280 t rtnl_unregister_all
+ffffffff81789310 t __rtnl_link_register
+ffffffff817893c0 t rtnl_link_register
+ffffffff817894a0 t __rtnl_link_unregister
+ffffffff81789590 t rtnl_link_unregister
+ffffffff81789780 t rtnl_af_register
+ffffffff817897e0 t rtnl_af_unregister
+ffffffff81789830 t rtnetlink_send
+ffffffff81789860 t rtnl_unicast
+ffffffff81789890 t rtnl_notify
+ffffffff817898d0 t rtnl_set_sk_err
+ffffffff817898f0 t rtnetlink_put_metrics
+ffffffff81789ae0 t nla_put_string
+ffffffff81789b20 t nla_put_string
+ffffffff81789b60 t nla_put_string
+ffffffff81789ba0 t nla_put_string
+ffffffff81789be0 t nla_nest_cancel
+ffffffff81789c10 t nla_nest_cancel
+ffffffff81789c40 t rtnl_put_cacheinfo
+ffffffff81789d30 t rtnl_get_net_ns_capable
+ffffffff81789d80 t rtnl_nla_parse_ifla
+ffffffff81789dc0 t rtnl_link_get_net
+ffffffff81789e00 t rtnl_delete_link
+ffffffff81789e80 t rtnl_configure_link
+ffffffff81789f20 t rtnl_create_link
+ffffffff8178a250 t set_operstate
+ffffffff8178a300 t rtmsg_ifinfo_build_skb
+ffffffff8178a3d0 t if_nlmsg_size
+ffffffff8178a660 t rtnl_fill_ifinfo
+ffffffff8178ae40 t rtmsg_ifinfo_send
+ffffffff8178ae70 t rtmsg_ifinfo
+ffffffff8178aec0 t rtmsg_ifinfo_newnet
+ffffffff8178af10 t ndo_dflt_fdb_add
+ffffffff8178afb0 t ndo_dflt_fdb_del
+ffffffff8178b020 t ndo_dflt_fdb_dump
+ffffffff8178b190 t ndo_dflt_bridge_getlink
+ffffffff8178b6e0 t rtnl_offload_xstats_notify
+ffffffff8178b840 t if_nlmsg_stats_size
+ffffffff8178ba20 t rtnl_fill_statsinfo
+ffffffff8178c350 t rtnl_getlink
+ffffffff8178c810 t rtnl_dump_ifinfo
+ffffffff8178ce90 t rtnl_setlink
+ffffffff8178d120 t rtnl_newlink
+ffffffff8178def0 t rtnl_dellink
+ffffffff8178e310 t rtnl_dump_all
+ffffffff8178e420 t rtnl_newlinkprop
+ffffffff8178e440 t rtnl_dellinkprop
+ffffffff8178e460 t rtnl_fdb_add
+ffffffff8178e780 t rtnl_fdb_del
+ffffffff8178eb80 t rtnl_fdb_get
+ffffffff8178eff0 t rtnl_fdb_dump
+ffffffff8178f4c0 t rtnl_bridge_getlink
+ffffffff8178f7e0 t rtnl_bridge_dellink
+ffffffff8178f9b0 t rtnl_bridge_setlink
+ffffffff8178fb90 t rtnl_stats_get
+ffffffff8178fda0 t rtnl_stats_dump
+ffffffff81790030 t rtnl_stats_set
+ffffffff81790250 t put_master_ifindex
+ffffffff817902d0 t nla_put_ifalias
+ffffffff81790380 t rtnl_fill_proto_down
+ffffffff81790490 t rtnl_fill_link_ifmap
+ffffffff81790530 t rtnl_phys_port_id_fill
+ffffffff817905d0 t rtnl_phys_port_name_fill
+ffffffff81790670 t rtnl_phys_switch_id_fill
+ffffffff81790720 t rtnl_fill_stats
+ffffffff81790840 t rtnl_fill_vf
+ffffffff81790990 t rtnl_port_fill
+ffffffff81790c30 t rtnl_xdp_fill
+ffffffff81790e70 t rtnl_have_link_slave_info
+ffffffff81790eb0 t rtnl_link_fill
+ffffffff81791140 t rtnl_fill_link_netnsid
+ffffffff817911d0 t rtnl_fill_link_af
+ffffffff81791300 t rtnl_fill_prop_list
+ffffffff81791420 t rtnl_fill_vfinfo
+ffffffff81791c50 t nlmsg_populate_fdb_fill
+ffffffff81791d90 t rtnetlink_rcv
+ffffffff81791db0 t rtnetlink_bind
+ffffffff81791de0 t rtnetlink_rcv_msg
+ffffffff81792210 t rtnetlink_event
+ffffffff81792290 t do_setlink
+ffffffff817934c0 t validate_linkmsg
+ffffffff81793640 t rtnl_af_lookup
+ffffffff817936b0 t do_set_proto_down
+ffffffff81793810 t rtnl_linkprop
+ffffffff81793c40 t fdb_vid_parse
+ffffffff81793cb0 t rtnl_fdb_notify
+ffffffff81793d80 t rtnl_bridge_notify
+ffffffff81793e80 t rtnl_stats_get_parse
+ffffffff817940c0 t net_ratelimit
+ffffffff817940e0 t in_aton
+ffffffff81794240 t in4_pton
+ffffffff817943d0 t in6_pton
+ffffffff817947c0 t inet_pton_with_scope
+ffffffff81794920 t inet6_pton
+ffffffff81794a80 t inet_addr_is_any
+ffffffff81794b10 t inet_proto_csum_replace4
+ffffffff81794bd0 t inet_proto_csum_replace16
+ffffffff81794cb0 t inet_proto_csum_replace_by_diff
+ffffffff81794d50 t linkwatch_init_dev
+ffffffff81794e30 t linkwatch_forget_dev
+ffffffff81794ed0 t linkwatch_do_dev
+ffffffff81795000 t linkwatch_run_queue
+ffffffff81795020 t __linkwatch_run_queue.llvm.18443148408692830395
+ffffffff81795280 t linkwatch_fire_event
+ffffffff817953a0 t linkwatch_urgent_event
+ffffffff817954a0 t linkwatch_event
+ffffffff817954e0 t copy_bpf_fprog_from_user
+ffffffff81795530 t sk_filter_trim_cap
+ffffffff81795770 t bpf_skb_get_pay_offset
+ffffffff81795790 t bpf_skb_get_nlattr
+ffffffff817957e0 t bpf_skb_get_nlattr_nest
+ffffffff81795840 t bpf_skb_load_helper_8
+ffffffff817958d0 t bpf_skb_load_helper_8_no_cache
+ffffffff81795970 t bpf_skb_load_helper_16
+ffffffff81795a10 t bpf_skb_load_helper_16_no_cache
+ffffffff81795ab0 t bpf_skb_load_helper_32
+ffffffff81795b40 t bpf_skb_load_helper_32_no_cache
+ffffffff81795be0 t sk_filter_uncharge
+ffffffff81795c40 t sk_filter_charge
+ffffffff81795d00 t bpf_prog_create
+ffffffff81795db0 t bpf_prepare_filter
+ffffffff817962f0 t bpf_prog_create_from_user
+ffffffff81796460 t bpf_prog_destroy
+ffffffff817964a0 t sk_attach_filter
+ffffffff817965c0 t __get_filter
+ffffffff81796710 t sk_reuseport_attach_filter
+ffffffff817967a0 t sk_attach_bpf
+ffffffff817967c0 t sk_reuseport_attach_bpf
+ffffffff817967e0 t sk_reuseport_prog_free
+ffffffff81796830 t bpf_skb_store_bytes
+ffffffff817969b0 t bpf_skb_load_bytes
+ffffffff81796a30 t bpf_flow_dissector_load_bytes
+ffffffff81796ab0 t bpf_skb_load_bytes_relative
+ffffffff81796b40 t bpf_skb_pull_data
+ffffffff81796ba0 t bpf_sk_fullsock
+ffffffff81796bc0 t sk_skb_pull_data
+ffffffff81796be0 t bpf_l3_csum_replace
+ffffffff81796d50 t bpf_l4_csum_replace
+ffffffff81796eb0 t bpf_csum_diff
+ffffffff81796fe0 t bpf_csum_update
+ffffffff81797020 t bpf_csum_level
+ffffffff81797110 t bpf_clone_redirect
+ffffffff817971e0 t skb_do_redirect
+ffffffff81797d10 t __bpf_redirect
+ffffffff81798020 t bpf_redirect
+ffffffff81798070 t bpf_redirect_peer
+ffffffff817980d0 t bpf_redirect_neigh
+ffffffff81798160 t bpf_msg_apply_bytes
+ffffffff81798180 t bpf_msg_cork_bytes
+ffffffff817981a0 t bpf_msg_pull_data
+ffffffff81798510 t bpf_msg_push_data
+ffffffff81798ad0 t bpf_msg_pop_data
+ffffffff81799040 t bpf_get_cgroup_classid
+ffffffff81799050 t bpf_get_route_realm
+ffffffff81799060 t bpf_get_hash_recalc
+ffffffff81799090 t bpf_set_hash_invalid
+ffffffff817990b0 t bpf_set_hash
+ffffffff817990d0 t bpf_skb_vlan_push
+ffffffff81799130 t bpf_skb_vlan_pop
+ffffffff81799180 t bpf_skb_change_proto
+ffffffff81799410 t bpf_skb_change_type
+ffffffff81799450 t sk_skb_adjust_room
+ffffffff817995a0 t bpf_skb_adjust_room
+ffffffff81799b10 t bpf_skb_change_tail
+ffffffff81799b60 t sk_skb_change_tail
+ffffffff81799b80 t bpf_skb_change_head
+ffffffff81799cc0 t sk_skb_change_head
+ffffffff81799dd0 t bpf_xdp_get_buff_len
+ffffffff81799e00 t bpf_xdp_adjust_head
+ffffffff81799e80 t bpf_xdp_load_bytes
+ffffffff8179a080 t bpf_xdp_store_bytes
+ffffffff8179a290 t bpf_xdp_adjust_tail
+ffffffff8179a340 t bpf_xdp_adjust_meta
+ffffffff8179a3a0 t xdp_do_flush
+ffffffff8179a3b0 t bpf_clear_redirect_map
+ffffffff8179a440 t xdp_master_redirect
+ffffffff8179a4d0 t xdp_do_redirect
+ffffffff8179a850 t xdp_do_redirect_frame
+ffffffff8179aab0 t xdp_do_generic_redirect
+ffffffff8179ade0 t bpf_xdp_redirect
+ffffffff8179ae30 t bpf_xdp_redirect_map
+ffffffff8179ae50 t bpf_skb_event_output
+ffffffff8179aec0 t bpf_skb_get_tunnel_key
+ffffffff8179b0e0 t bpf_skb_get_tunnel_opt
+ffffffff8179b1c0 t bpf_skb_set_tunnel_key
+ffffffff8179b4c0 t bpf_skb_set_tunnel_opt
+ffffffff8179b590 t bpf_skb_under_cgroup
+ffffffff8179b640 t bpf_skb_cgroup_id
+ffffffff8179b690 t bpf_skb_ancestor_cgroup_id
+ffffffff8179b700 t bpf_sk_cgroup_id
+ffffffff8179b750 t bpf_sk_ancestor_cgroup_id
+ffffffff8179b7c0 t bpf_xdp_event_output
+ffffffff8179b840 t bpf_get_socket_cookie
+ffffffff8179b870 t bpf_get_socket_cookie_sock_addr
+ffffffff8179b890 t bpf_get_socket_cookie_sock
+ffffffff8179b8a0 t bpf_get_socket_ptr_cookie
+ffffffff8179b8f0 t bpf_get_socket_cookie_sock_ops
+ffffffff8179b910 t bpf_get_netns_cookie_sock
+ffffffff8179b930 t bpf_get_netns_cookie_sock_addr
+ffffffff8179b950 t bpf_get_netns_cookie_sock_ops
+ffffffff8179b970 t bpf_get_netns_cookie_sk_msg
+ffffffff8179b990 t bpf_get_socket_uid
+ffffffff8179b9f0 t bpf_sk_setsockopt
+ffffffff8179ba10 t bpf_sk_getsockopt
+ffffffff8179ba30 t bpf_unlocked_sk_setsockopt
+ffffffff8179ba50 t bpf_unlocked_sk_getsockopt
+ffffffff8179ba70 t bpf_sock_addr_setsockopt
+ffffffff8179ba90 t bpf_sock_addr_getsockopt
+ffffffff8179bab0 t bpf_sock_ops_setsockopt
+ffffffff8179bad0 t bpf_sock_ops_getsockopt
+ffffffff8179bcb0 t bpf_sock_ops_cb_flags_set
+ffffffff8179bcf0 t bpf_bind
+ffffffff8179bd70 t bpf_skb_get_xfrm_state
+ffffffff8179be30 t bpf_xdp_fib_lookup
+ffffffff8179be90 t bpf_skb_fib_lookup
+ffffffff8179bf50 t bpf_skb_check_mtu
+ffffffff8179c030 t bpf_xdp_check_mtu
+ffffffff8179c0b0 t bpf_lwt_in_push_encap
+ffffffff8179c0d0 t bpf_lwt_xmit_push_encap
+ffffffff8179c0f0 t bpf_skc_lookup_tcp
+ffffffff8179c190 t bpf_sk_lookup_tcp
+ffffffff8179c1b0 t bpf_sk_lookup_udp
+ffffffff8179c1d0 t bpf_sk_release
+ffffffff8179c200 t bpf_xdp_sk_lookup_udp
+ffffffff8179c230 t bpf_xdp_skc_lookup_tcp
+ffffffff8179c2b0 t bpf_xdp_sk_lookup_tcp
+ffffffff8179c2e0 t bpf_sock_addr_skc_lookup_tcp
+ffffffff8179c360 t bpf_sock_addr_sk_lookup_tcp
+ffffffff8179c390 t bpf_sock_addr_sk_lookup_udp
+ffffffff8179c3c0 t bpf_tcp_sock_is_valid_access
+ffffffff8179c400 t bpf_tcp_sock_convert_ctx_access
+ffffffff8179c460 t bpf_tcp_sock
+ffffffff8179c490 t bpf_get_listener_sock
+ffffffff8179c4d0 t bpf_skb_ecn_set_ce
+ffffffff8179c830 t bpf_xdp_sock_is_valid_access
+ffffffff8179c860 t bpf_xdp_sock_convert_ctx_access
+ffffffff8179c8a0 t bpf_tcp_check_syncookie
+ffffffff8179c8c0 t bpf_tcp_gen_syncookie
+ffffffff8179c8e0 t bpf_sk_assign
+ffffffff8179c910 t bpf_sock_ops_load_hdr_opt
+ffffffff8179cb30 t bpf_sock_ops_store_hdr_opt
+ffffffff8179ccc0 t bpf_sock_ops_reserve_hdr_opt
+ffffffff8179cd00 t bpf_skb_set_tstamp
+ffffffff8179cd60 t bpf_helper_changes_pkt_data
+ffffffff8179cee0 t bpf_sock_common_is_valid_access
+ffffffff8179cf00 t bpf_sock_is_valid_access
+ffffffff8179cfa0 t bpf_warn_invalid_xdp_action
+ffffffff8179d010 t bpf_sock_convert_ctx_access
+ffffffff8179d300 t sk_filter_func_proto
+ffffffff8179d440 t sk_filter_is_valid_access
+ffffffff8179d4a0 t bpf_gen_ld_abs
+ffffffff8179d580 t bpf_convert_ctx_access
+ffffffff8179de60 t bpf_prog_test_run_skb
+ffffffff8179de70 t tc_cls_act_func_proto
+ffffffff8179e520 t tc_cls_act_is_valid_access
+ffffffff8179e5d0 t tc_cls_act_prologue
+ffffffff8179e650 t tc_cls_act_convert_ctx_access
+ffffffff8179e6c0 t tc_cls_act_btf_struct_access
+ffffffff8179e760 t xdp_func_proto
+ffffffff8179ea20 t xdp_is_valid_access
+ffffffff8179ea90 t bpf_noop_prologue
+ffffffff8179eaa0 t xdp_convert_ctx_access
+ffffffff8179ec00 t xdp_btf_struct_access
+ffffffff8179eca0 t bpf_prog_test_run_xdp
+ffffffff8179ecb0 t cg_skb_func_proto
+ffffffff8179ee40 t cg_skb_is_valid_access
+ffffffff8179ef30 t lwt_in_func_proto
+ffffffff8179ef50 t lwt_is_valid_access
+ffffffff8179efd0 t lwt_out_func_proto
+ffffffff8179f180 t lwt_xmit_func_proto
+ffffffff8179f370 t lwt_seg6local_func_proto
+ffffffff8179f380 t sock_filter_func_proto
+ffffffff8179f400 t sock_filter_is_valid_access
+ffffffff8179f4a0 t sock_addr_func_proto
+ffffffff8179f6e0 t sock_addr_is_valid_access
+ffffffff8179f8b0 t sock_addr_convert_ctx_access
+ffffffff8179ffe0 t sock_ops_func_proto
+ffffffff817a0210 t sock_ops_is_valid_access
+ffffffff817a02e0 t sock_ops_convert_ctx_access
+ffffffff817a27d0 t sk_skb_func_proto
+ffffffff817a2a10 t sk_skb_is_valid_access
+ffffffff817a2aa0 t sk_skb_prologue
+ffffffff817a2b20 t sk_skb_convert_ctx_access
+ffffffff817a2d00 t sk_msg_func_proto
+ffffffff817a2f40 t sk_msg_is_valid_access
+ffffffff817a2fb0 t sk_msg_convert_ctx_access
+ffffffff817a3250 t flow_dissector_func_proto
+ffffffff817a3330 t flow_dissector_is_valid_access
+ffffffff817a33a0 t flow_dissector_convert_ctx_access
+ffffffff817a3400 t bpf_prog_test_run_flow_dissector
+ffffffff817a3410 t sk_detach_filter
+ffffffff817a34a0 t sk_get_filter
+ffffffff817a3570 t bpf_run_sk_reuseport
+ffffffff817a3670 t sk_select_reuseport
+ffffffff817a3760 t sk_reuseport_load_bytes
+ffffffff817a37e0 t sk_reuseport_load_bytes_relative
+ffffffff817a3870 t sk_reuseport_func_proto
+ffffffff817a38e0 t sk_reuseport_is_valid_access
+ffffffff817a3990 t sk_reuseport_convert_ctx_access
+ffffffff817a3bd0 t bpf_sk_lookup_assign
+ffffffff817a3cd0 t bpf_prog_test_run_sk_lookup
+ffffffff817a3ce0 t sk_lookup_func_proto
+ffffffff817a3df0 t sk_lookup_is_valid_access
+ffffffff817a3e80 t sk_lookup_convert_ctx_access
+ffffffff817a40b0 t bpf_prog_change_xdp
+ffffffff817a40c0 t bpf_skc_to_tcp6_sock
+ffffffff817a4100 t bpf_skc_to_tcp_sock
+ffffffff817a4140 t bpf_skc_to_tcp_timewait_sock
+ffffffff817a4190 t bpf_skc_to_tcp_request_sock
+ffffffff817a41e0 t bpf_skc_to_udp6_sock
+ffffffff817a4230 t bpf_skc_to_unix_sock
+ffffffff817a4270 t bpf_skc_to_mptcp_sock
+ffffffff817a4280 t bpf_sock_from_file
+ffffffff817a4290 t sk_filter_release_rcu
+ffffffff817a42f0 t bpf_convert_filter
+ffffffff817a4f10 t convert_bpf_ld_abs
+ffffffff817a5110 t neigh_output
+ffffffff817a5260 t __ipv6_neigh_lookup_noref_stub
+ffffffff817a5330 t bpf_skb_net_hdr_pop
+ffffffff817a5460 t __bpf_skb_change_tail
+ffffffff817a5650 t bpf_xdp_frags_shrink_tail
+ffffffff817a57a0 t bpf_xdp_frags_increase_tail
+ffffffff817a5850 t bpf_skb_copy
+ffffffff817a58c0 t bpf_xdp_copy
+ffffffff817a59b0 t __bpf_setsockopt
+ffffffff817a5b00 t sol_tcp_sockopt
+ffffffff817a5d00 t bpf_sol_tcp_setsockopt
+ffffffff817a5dc0 t __bpf_getsockopt
+ffffffff817a5fa0 t bpf_ipv4_fib_lookup
+ffffffff817a63f0 t bpf_ipv6_fib_lookup
+ffffffff817a6820 t sk_lookup
+ffffffff817a69e0 t bpf_sk_lookup
+ffffffff817a6af0 t __bpf_sk_lookup
+ffffffff817a6be0 t bpf_skb_is_valid_access
+ffffffff817a6d30 t bpf_convert_tstamp_type_read
+ffffffff817a6db0 t bpf_convert_shinfo_access
+ffffffff817a6e10 t __sock_gen_cookie
+ffffffff817a6eb0 t sock_diag_check_cookie
+ffffffff817a6ef0 t sock_diag_save_cookie
+ffffffff817a6f10 t sock_diag_put_meminfo
+ffffffff817a6fb0 t sock_diag_put_filterinfo
+ffffffff817a7050 t sock_diag_broadcast_destroy
+ffffffff817a70d0 t sock_diag_broadcast_destroy_work
+ffffffff817a7250 t sock_diag_register_inet_compat
+ffffffff817a7280 t sock_diag_unregister_inet_compat
+ffffffff817a72b0 t sock_diag_register
+ffffffff817a7320 t sock_diag_unregister
+ffffffff817a7370 t sock_diag_destroy
+ffffffff817a73d0 t sock_diag_rcv
+ffffffff817a7410 t sock_diag_bind
+ffffffff817a7460 t sock_diag_rcv_msg
+ffffffff817a7590 t dev_ifconf
+ffffffff817a76c0 t dev_load
+ffffffff817a7740 t dev_ioctl
+ffffffff817a7c40 t dev_ifsioc
+ffffffff817a80d0 t tso_count_descs
+ffffffff817a8100 t tso_build_hdr
+ffffffff817a8210 t tso_build_data
+ffffffff817a8280 t tso_start
+ffffffff817a84b0 t reuseport_has_conns_set
+ffffffff817a8500 t reuseport_update_incoming_cpu
+ffffffff817a8570 t reuseport_alloc
+ffffffff817a8680 t reuseport_resurrect
+ffffffff817a88a0 t reuseport_add_sock
+ffffffff817a89d0 t reuseport_grow
+ffffffff817a8b70 t reuseport_free_rcu
+ffffffff817a8ba0 t reuseport_detach_sock
+ffffffff817a8cb0 t reuseport_stop_listen_sock
+ffffffff817a8d80 t reuseport_select_sock
+ffffffff817a90a0 t reuseport_migrate_sock
+ffffffff817a9260 t reuseport_attach_prog
+ffffffff817a92e0 t reuseport_detach_prog
+ffffffff817a9370 t call_fib_notifier
+ffffffff817a93a0 t call_fib_notifiers
+ffffffff817a9410 t register_fib_notifier
+ffffffff817a9550 t fib_seq_sum
+ffffffff817a95f0 t unregister_fib_notifier
+ffffffff817a9640 t fib_notifier_ops_register
+ffffffff817a9700 t fib_notifier_ops_unregister
+ffffffff817a9750 t xdp_unreg_mem_model
+ffffffff817a97f0 t rhashtable_lookup
+ffffffff817a9940 t rhashtable_lookup
+ffffffff817a9ab0 t xdp_rxq_info_unreg_mem_model
+ffffffff817a9b60 t xdp_rxq_info_unreg
+ffffffff817a9c30 t __xdp_rxq_info_reg
+ffffffff817a9d00 t xdp_rxq_info_unused
+ffffffff817a9d20 t xdp_rxq_info_is_reg
+ffffffff817a9d40 t xdp_reg_mem_model
+ffffffff817a9d60 t __xdp_reg_mem_model
+ffffffff817a9f90 t xdp_rxq_info_reg_mem_model
+ffffffff817aa030 t __xdp_return
+ffffffff817aa140 t xdp_return_frame
+ffffffff817aa200 t xdp_return_frame_rx_napi
+ffffffff817aa2c0 t xdp_flush_frame_bulk
+ffffffff817aa2e0 t xdp_return_frame_bulk
+ffffffff817aa530 t xdp_return_buff
+ffffffff817aa5d0 t __xdp_release_frame
+ffffffff817aa670 t xdp_attachment_setup
+ffffffff817aa690 t xdp_convert_zc_to_xdp_frame
+ffffffff817aa7b0 t xdp_warn
+ffffffff817aa7d0 t xdp_alloc_skb_bulk
+ffffffff817aa810 t __xdp_build_skb_from_frame
+ffffffff817aaa60 t xdp_update_skb_shared_info
+ffffffff817aaab0 t xdp_build_skb_from_frame
+ffffffff817aab10 t xdpf_clone
+ffffffff817aabc0 t xdp_mem_id_hashfn
+ffffffff817aabd0 t xdp_mem_id_cmp
+ffffffff817aabf0 t flow_rule_alloc
+ffffffff817aac70 t offload_action_alloc
+ffffffff817aacf0 t flow_rule_match_meta
+ffffffff817aad20 t flow_rule_match_basic
+ffffffff817aad50 t flow_rule_match_control
+ffffffff817aad80 t flow_rule_match_eth_addrs
+ffffffff817aadb0 t flow_rule_match_vlan
+ffffffff817aade0 t flow_rule_match_cvlan
+ffffffff817aae10 t flow_rule_match_ipv4_addrs
+ffffffff817aae40 t flow_rule_match_ipv6_addrs
+ffffffff817aae70 t flow_rule_match_ip
+ffffffff817aaea0 t flow_rule_match_ports
+ffffffff817aaed0 t flow_rule_match_ports_range
+ffffffff817aaf00 t flow_rule_match_tcp
+ffffffff817aaf30 t flow_rule_match_icmp
+ffffffff817aaf60 t flow_rule_match_mpls
+ffffffff817aaf90 t flow_rule_match_enc_control
+ffffffff817aafc0 t flow_rule_match_enc_ipv4_addrs
+ffffffff817aaff0 t flow_rule_match_enc_ipv6_addrs
+ffffffff817ab020 t flow_rule_match_enc_ip
+ffffffff817ab050 t flow_rule_match_enc_ports
+ffffffff817ab080 t flow_rule_match_enc_keyid
+ffffffff817ab0b0 t flow_rule_match_enc_opts
+ffffffff817ab0e0 t flow_action_cookie_create
+ffffffff817ab130 t flow_action_cookie_destroy
+ffffffff817ab140 t flow_rule_match_ct
+ffffffff817ab170 t flow_rule_match_pppoe
+ffffffff817ab1a0 t flow_rule_match_l2tpv3
+ffffffff817ab1d0 t flow_block_cb_alloc
+ffffffff817ab230 t flow_block_cb_free
+ffffffff817ab260 t flow_block_cb_lookup
+ffffffff817ab2a0 t flow_block_cb_priv
+ffffffff817ab2b0 t flow_block_cb_incref
+ffffffff817ab2d0 t flow_block_cb_decref
+ffffffff817ab2f0 t flow_block_cb_is_busy
+ffffffff817ab330 t flow_block_cb_setup_simple
+ffffffff817ab520 t flow_indr_dev_register
+ffffffff817ab760 t flow_indr_dev_unregister
+ffffffff817ab980 t flow_indr_block_cb_alloc
+ffffffff817aba70 t flow_indr_dev_setup_offload
+ffffffff817abcd0 t flow_indr_dev_exists
+ffffffff817abcf0 t dev_add_offload
+ffffffff817abd80 t dev_remove_offload
+ffffffff817abe20 t skb_eth_gso_segment
+ffffffff817abe90 t skb_mac_gso_segment
+ffffffff817abfa0 t skb_gro_receive
+ffffffff817ac400 t napi_gro_flush
+ffffffff817ac510 t gro_find_receive_by_type
+ffffffff817ac560 t gro_find_complete_by_type
+ffffffff817ac5b0 t napi_gro_receive
+ffffffff817ac7b0 t dev_gro_receive
+ffffffff817ace70 t napi_get_frags
+ffffffff817aced0 t napi_gro_frags
+ffffffff817ad290 t __skb_gro_checksum_complete
+ffffffff817ad330 t napi_gro_complete
+ffffffff817ad490 t gro_flush_oldest
+ffffffff817ad4e0 t skb_metadata_dst_cmp
+ffffffff817ad5c0 t skb_frag_unref
+ffffffff817ad610 t napi_reuse_skb
+ffffffff817ad710 t net_rx_queue_update_kobjects
+ffffffff817ad860 t netdev_queue_update_kobjects
+ffffffff817ad9e0 t net_current_may_mount
+ffffffff817ada10 t net_grab_current_ns
+ffffffff817ada30 t net_netlink_ns
+ffffffff817ada50 t net_initial_ns
+ffffffff817ada70 t of_find_net_device_by_node
+ffffffff817adab0 t of_dev_node_match
+ffffffff817adaf0 t netdev_unregister_kobject
+ffffffff817adb90 t netdev_register_kobject
+ffffffff817adce0 t netdev_change_owner
+ffffffff817adcf0 t netdev_class_create_file_ns
+ffffffff817add10 t netdev_class_remove_file_ns
+ffffffff817add30 t rx_queue_release
+ffffffff817ade00 t rx_queue_namespace
+ffffffff817ade40 t rx_queue_get_ownership
+ffffffff817ade90 t rps_dev_flow_table_release
+ffffffff817adeb0 t rx_queue_attr_show
+ffffffff817adee0 t rx_queue_attr_store
+ffffffff817adf20 t show_rps_map
+ffffffff817adff0 t store_rps_map
+ffffffff817ae230 t show_rps_dev_flow_table_cnt
+ffffffff817ae280 t store_rps_dev_flow_table_cnt
+ffffffff817ae400 t netdev_queue_release
+ffffffff817ae480 t netdev_queue_namespace
+ffffffff817ae4c0 t netdev_queue_get_ownership
+ffffffff817ae510 t netdev_queue_attr_show
+ffffffff817ae540 t netdev_queue_attr_store
+ffffffff817ae580 t tx_timeout_show
+ffffffff817ae5b0 t traffic_class_show
+ffffffff817ae6b0 t xps_cpus_show
+ffffffff817ae7b0 t xps_cpus_store
+ffffffff817ae8e0 t xps_queue_show
+ffffffff817aea10 t xps_rxqs_show
+ffffffff817aeab0 t xps_rxqs_store
+ffffffff817aebe0 t tx_maxrate_show
+ffffffff817aec00 t tx_maxrate_store
+ffffffff817aed40 t bql_show_limit
+ffffffff817aed70 t bql_set_limit
+ffffffff817aee30 t bql_show_limit_max
+ffffffff817aee60 t bql_set_limit_max
+ffffffff817aef20 t bql_show_limit_min
+ffffffff817aef50 t bql_set_limit_min
+ffffffff817af010 t bql_show_hold_time
+ffffffff817af040 t bql_set_hold_time
+ffffffff817af0c0 t bql_show_inflight
+ffffffff817af0f0 t netdev_uevent
+ffffffff817af140 t netdev_release
+ffffffff817af180 t net_namespace
+ffffffff817af1a0 t net_get_ownership
+ffffffff817af1c0 t group_show
+ffffffff817af220 t group_store
+ffffffff817af2f0 t dev_id_show
+ffffffff817af350 t dev_port_show
+ffffffff817af3b0 t iflink_show
+ffffffff817af3e0 t ifindex_show
+ffffffff817af440 t name_assign_type_show
+ffffffff817af4b0 t addr_assign_type_show
+ffffffff817af510 t addr_len_show
+ffffffff817af570 t link_mode_show
+ffffffff817af5d0 t address_show
+ffffffff817af640 t broadcast_show
+ffffffff817af680 t speed_show
+ffffffff817af7e0 t duplex_show
+ffffffff817af950 t dormant_show
+ffffffff817af990 t testing_show
+ffffffff817af9d0 t operstate_show
+ffffffff817afa50 t carrier_changes_show
+ffffffff817afa80 t ifalias_show
+ffffffff817afb20 t ifalias_store
+ffffffff817afbe0 t carrier_show
+ffffffff817afc30 t carrier_store
+ffffffff817afd40 t mtu_show
+ffffffff817afda0 t mtu_store
+ffffffff817afe80 t flags_store
+ffffffff817aff60 t tx_queue_len_show
+ffffffff817affc0 t tx_queue_len_store
+ffffffff817b00b0 t gro_flush_timeout_show
+ffffffff817b0110 t gro_flush_timeout_store
+ffffffff817b01f0 t napi_defer_hard_irqs_show
+ffffffff817b0250 t napi_defer_hard_irqs_store
+ffffffff817b0330 t phys_port_id_show
+ffffffff817b0430 t phys_port_name_show
+ffffffff817b0520 t phys_switch_id_show
+ffffffff817b0620 t proto_down_show
+ffffffff817b0680 t proto_down_store
+ffffffff817b0760 t carrier_up_count_show
+ffffffff817b0790 t carrier_down_count_show
+ffffffff817b07c0 t threaded_show
+ffffffff817b0840 t threaded_store
+ffffffff817b0940 t rx_packets_show
+ffffffff817b09f0 t tx_packets_show
+ffffffff817b0ab0 t rx_bytes_show
+ffffffff817b0b70 t tx_bytes_show
+ffffffff817b0c30 t rx_errors_show
+ffffffff817b0cf0 t tx_errors_show
+ffffffff817b0db0 t rx_dropped_show
+ffffffff817b0e70 t tx_dropped_show
+ffffffff817b0f30 t multicast_show
+ffffffff817b0ff0 t collisions_show
+ffffffff817b10b0 t rx_length_errors_show
+ffffffff817b1170 t rx_over_errors_show
+ffffffff817b1230 t rx_crc_errors_show
+ffffffff817b12f0 t rx_frame_errors_show
+ffffffff817b13b0 t rx_fifo_errors_show
+ffffffff817b1470 t rx_missed_errors_show
+ffffffff817b1530 t tx_aborted_errors_show
+ffffffff817b15f0 t tx_carrier_errors_show
+ffffffff817b16b0 t tx_fifo_errors_show
+ffffffff817b1770 t tx_heartbeat_errors_show
+ffffffff817b1830 t tx_window_errors_show
+ffffffff817b18f0 t rx_compressed_show
+ffffffff817b19b0 t tx_compressed_show
+ffffffff817b1a70 t rx_nohandler_show
+ffffffff817b1b30 t dev_seq_start
+ffffffff817b1be0 t dev_seq_stop
+ffffffff817b1bf0 t dev_seq_next
+ffffffff817b1c80 t dev_seq_show
+ffffffff817b1d90 t softnet_seq_start
+ffffffff817b1e10 t softnet_seq_stop
+ffffffff817b1e20 t softnet_seq_next
+ffffffff817b1ea0 t softnet_seq_show
+ffffffff817b1f30 t ptype_seq_start
+ffffffff817b2060 t ptype_seq_stop
+ffffffff817b2070 t ptype_seq_next
+ffffffff817b2300 t ptype_seq_show
+ffffffff817b2390 t dev_mc_seq_show
+ffffffff817b2440 t fib_rule_matchall
+ffffffff817b24c0 t fib_default_rule_add
+ffffffff817b2580 t fib_rules_register
+ffffffff817b26a0 t fib_rules_unregister
+ffffffff817b27c0 t fib_rules_lookup
+ffffffff817b2a20 t fib_rules_dump
+ffffffff817b2b10 t fib_rules_seq_read
+ffffffff817b2bc0 t fib_nl_newrule
+ffffffff817b3130 t fib_nl2rule
+ffffffff817b3630 t notify_rule_change
+ffffffff817b3730 t fib_nl_delrule
+ffffffff817b3c90 t fib_rule_put
+ffffffff817b3ce0 t fib_nl_fill_rule
+ffffffff817b4100 t nla_put_uid_range
+ffffffff817b4170 t fib_nl_dumprule
+ffffffff817b4470 t fib_rules_event
+ffffffff817b46c0 t __traceiter_kfree_skb
+ffffffff817b4720 t __traceiter_consume_skb
+ffffffff817b4770 t __traceiter_skb_copy_datagram_iovec
+ffffffff817b47c0 t trace_event_raw_event_kfree_skb
+ffffffff817b48a0 t perf_trace_kfree_skb
+ffffffff817b49c0 t trace_event_raw_event_consume_skb
+ffffffff817b4a80 t perf_trace_consume_skb
+ffffffff817b4b70 t trace_event_raw_event_skb_copy_datagram_iovec
+ffffffff817b4c30 t perf_trace_skb_copy_datagram_iovec
+ffffffff817b4d30 t __traceiter_net_dev_start_xmit
+ffffffff817b4d80 t __traceiter_net_dev_xmit
+ffffffff817b4df0 t __traceiter_net_dev_xmit_timeout
+ffffffff817b4e40 t __traceiter_net_dev_queue
+ffffffff817b4e90 t __traceiter_netif_receive_skb
+ffffffff817b4ee0 t __traceiter_netif_rx
+ffffffff817b4f30 t __traceiter_napi_gro_frags_entry
+ffffffff817b4f80 t __traceiter_napi_gro_receive_entry
+ffffffff817b4fd0 t __traceiter_netif_receive_skb_entry
+ffffffff817b5020 t __traceiter_netif_receive_skb_list_entry
+ffffffff817b5070 t __traceiter_netif_rx_entry
+ffffffff817b50c0 t __traceiter_napi_gro_frags_exit
+ffffffff817b5110 t __traceiter_napi_gro_receive_exit
+ffffffff817b5160 t __traceiter_netif_receive_skb_exit
+ffffffff817b51b0 t __traceiter_netif_rx_exit
+ffffffff817b5200 t __traceiter_netif_receive_skb_list_exit
+ffffffff817b5250 t trace_event_raw_event_net_dev_start_xmit
+ffffffff817b5450 t perf_trace_net_dev_start_xmit
+ffffffff817b56c0 t trace_event_raw_event_net_dev_xmit
+ffffffff817b57e0 t perf_trace_net_dev_xmit
+ffffffff817b5940 t trace_event_raw_event_net_dev_xmit_timeout
+ffffffff817b5ad0 t perf_trace_net_dev_xmit_timeout
+ffffffff817b5c90 t trace_event_raw_event_net_dev_template
+ffffffff817b5db0 t perf_trace_net_dev_template
+ffffffff817b5f10 t trace_event_raw_event_net_dev_rx_verbose_template
+ffffffff817b6110 t perf_trace_net_dev_rx_verbose_template
+ffffffff817b6380 t trace_event_raw_event_net_dev_rx_exit_template
+ffffffff817b6440 t perf_trace_net_dev_rx_exit_template
+ffffffff817b6530 t __traceiter_napi_poll
+ffffffff817b6590 t trace_event_raw_event_napi_poll
+ffffffff817b66c0 t perf_trace_napi_poll
+ffffffff817b6830 t __traceiter_sock_rcvqueue_full
+ffffffff817b6880 t __traceiter_sock_exceed_buf_limit
+ffffffff817b68f0 t __traceiter_inet_sock_set_state
+ffffffff817b6950 t __traceiter_inet_sk_error_report
+ffffffff817b69a0 t trace_event_raw_event_sock_rcvqueue_full
+ffffffff817b6a80 t perf_trace_sock_rcvqueue_full
+ffffffff817b6ba0 t trace_event_raw_event_sock_exceed_buf_limit
+ffffffff817b6d30 t perf_trace_sock_exceed_buf_limit
+ffffffff817b6f00 t trace_event_raw_event_inet_sock_set_state
+ffffffff817b7070 t perf_trace_inet_sock_set_state
+ffffffff817b7220 t trace_event_raw_event_inet_sk_error_report
+ffffffff817b7380 t perf_trace_inet_sk_error_report
+ffffffff817b7520 t __traceiter_udp_fail_queue_rcv_skb
+ffffffff817b7570 t trace_event_raw_event_udp_fail_queue_rcv_skb
+ffffffff817b7640 t perf_trace_udp_fail_queue_rcv_skb
+ffffffff817b7740 t __traceiter_tcp_retransmit_skb
+ffffffff817b7790 t __traceiter_tcp_send_reset
+ffffffff817b77e0 t __traceiter_tcp_receive_reset
+ffffffff817b7830 t __traceiter_tcp_destroy_sock
+ffffffff817b7880 t __traceiter_tcp_rcv_space_adjust
+ffffffff817b78d0 t __traceiter_tcp_retransmit_synack
+ffffffff817b7920 t __traceiter_tcp_probe
+ffffffff817b7970 t __traceiter_tcp_bad_csum
+ffffffff817b79c0 t __traceiter_tcp_cong_state_set
+ffffffff817b7a10 t trace_event_raw_event_tcp_event_sk_skb
+ffffffff817b7b80 t perf_trace_tcp_event_sk_skb
+ffffffff817b7d20 t trace_event_raw_event_tcp_event_sk
+ffffffff817b7eb0 t perf_trace_tcp_event_sk
+ffffffff817b8090 t trace_event_raw_event_tcp_retransmit_synack
+ffffffff817b81e0 t perf_trace_tcp_retransmit_synack
+ffffffff817b8370 t trace_event_raw_event_tcp_probe
+ffffffff817b8600 t perf_trace_tcp_probe
+ffffffff817b88e0 t trace_event_raw_event_tcp_event_skb
+ffffffff817b8aa0 t perf_trace_tcp_event_skb
+ffffffff817b8ca0 t trace_event_raw_event_tcp_cong_state_set
+ffffffff817b8e00 t perf_trace_tcp_cong_state_set
+ffffffff817b8f90 t __traceiter_fib_table_lookup
+ffffffff817b9000 t trace_event_raw_event_fib_table_lookup
+ffffffff817b91e0 t perf_trace_fib_table_lookup
+ffffffff817b9410 t __traceiter_qdisc_dequeue
+ffffffff817b9480 t __traceiter_qdisc_enqueue
+ffffffff817b94e0 t __traceiter_qdisc_reset
+ffffffff817b9530 t __traceiter_qdisc_destroy
+ffffffff817b9580 t __traceiter_qdisc_create
+ffffffff817b95e0 t trace_event_raw_event_qdisc_dequeue
+ffffffff817b9700 t perf_trace_qdisc_dequeue
+ffffffff817b9850 t trace_event_raw_event_qdisc_enqueue
+ffffffff817b9940 t perf_trace_qdisc_enqueue
+ffffffff817b9a70 t trace_event_raw_event_qdisc_reset
+ffffffff817b9bd0 t perf_trace_qdisc_reset
+ffffffff817b9d80 t trace_event_raw_event_qdisc_destroy
+ffffffff817b9ee0 t perf_trace_qdisc_destroy
+ffffffff817ba090 t trace_event_raw_event_qdisc_create
+ffffffff817ba1e0 t perf_trace_qdisc_create
+ffffffff817ba380 t __traceiter_br_fdb_add
+ffffffff817ba3f0 t __traceiter_br_fdb_external_learn_add
+ffffffff817ba460 t __traceiter_fdb_delete
+ffffffff817ba4b0 t __traceiter_br_fdb_update
+ffffffff817ba520 t trace_event_raw_event_br_fdb_add
+ffffffff817ba670 t perf_trace_br_fdb_add
+ffffffff817ba7f0 t trace_event_raw_event_br_fdb_external_learn_add
+ffffffff817ba9b0 t perf_trace_br_fdb_external_learn_add
+ffffffff817baba0 t trace_event_raw_event_fdb_delete
+ffffffff817bad50 t perf_trace_fdb_delete
+ffffffff817baf40 t trace_event_raw_event_br_fdb_update
+ffffffff817bb0d0 t perf_trace_br_fdb_update
+ffffffff817bb2a0 t __traceiter_neigh_create
+ffffffff817bb310 t __traceiter_neigh_update
+ffffffff817bb380 t __traceiter_neigh_update_done
+ffffffff817bb3d0 t __traceiter_neigh_timer_handler
+ffffffff817bb420 t __traceiter_neigh_event_send_done
+ffffffff817bb470 t __traceiter_neigh_event_send_dead
+ffffffff817bb4c0 t __traceiter_neigh_cleanup_and_release
+ffffffff817bb510 t trace_event_raw_event_neigh_create
+ffffffff817bb670 t perf_trace_neigh_create
+ffffffff817bb810 t trace_event_raw_event_neigh_update
+ffffffff817bba50 t perf_trace_neigh_update
+ffffffff817bbcf0 t trace_event_raw_event_neigh__update
+ffffffff817bbef0 t perf_trace_neigh__update
+ffffffff817bc140 t trace_raw_output_kfree_skb
+ffffffff817bc1d0 t trace_raw_output_consume_skb
+ffffffff817bc220 t trace_raw_output_skb_copy_datagram_iovec
+ffffffff817bc280 t trace_raw_output_net_dev_start_xmit
+ffffffff817bc370 t trace_raw_output_net_dev_xmit
+ffffffff817bc3d0 t trace_raw_output_net_dev_xmit_timeout
+ffffffff817bc430 t trace_raw_output_net_dev_template
+ffffffff817bc490 t trace_raw_output_net_dev_rx_verbose_template
+ffffffff817bc590 t trace_raw_output_net_dev_rx_exit_template
+ffffffff817bc5e0 t trace_raw_output_napi_poll
+ffffffff817bc640 t trace_raw_output_sock_rcvqueue_full
+ffffffff817bc6a0 t trace_raw_output_sock_exceed_buf_limit
+ffffffff817bc780 t trace_raw_output_inet_sock_set_state
+ffffffff817bc8a0 t trace_raw_output_inet_sk_error_report
+ffffffff817bc970 t trace_raw_output_udp_fail_queue_rcv_skb
+ffffffff817bc9d0 t trace_raw_output_tcp_event_sk_skb
+ffffffff817bcab0 t trace_raw_output_tcp_event_sk
+ffffffff817bcb40 t trace_raw_output_tcp_retransmit_synack
+ffffffff817bcbd0 t trace_raw_output_tcp_probe
+ffffffff817bccb0 t trace_raw_output_tcp_event_skb
+ffffffff817bcd10 t trace_raw_output_tcp_cong_state_set
+ffffffff817bcd90 t trace_raw_output_fib_table_lookup
+ffffffff817bce70 t trace_raw_output_qdisc_dequeue
+ffffffff817bcee0 t trace_raw_output_qdisc_enqueue
+ffffffff817bcf40 t trace_raw_output_qdisc_reset
+ffffffff817bcfc0 t trace_raw_output_qdisc_destroy
+ffffffff817bd040 t trace_raw_output_qdisc_create
+ffffffff817bd0b0 t trace_raw_output_br_fdb_add
+ffffffff817bd150 t trace_raw_output_br_fdb_external_learn_add
+ffffffff817bd1e0 t trace_raw_output_fdb_delete
+ffffffff817bd270 t trace_raw_output_br_fdb_update
+ffffffff817bd310 t trace_raw_output_neigh_create
+ffffffff817bd390 t trace_raw_output_neigh_update
+ffffffff817bd500 t trace_raw_output_neigh__update
+ffffffff817bd600 t cgrp_css_alloc
+ffffffff817bd630 t cgrp_css_online
+ffffffff817bd6e0 t cgrp_css_free
+ffffffff817bd6f0 t net_prio_attach
+ffffffff817bd7b0 t netprio_set_prio
+ffffffff817bd8f0 t update_netprio
+ffffffff817bd920 t read_prioidx
+ffffffff817bd930 t read_priomap
+ffffffff817bd9c0 t write_priomap
+ffffffff817bdac0 t netprio_device_event
+ffffffff817bdb00 t dst_cache_get
+ffffffff817bdb50 t dst_cache_per_cpu_get
+ffffffff817bdbe0 t dst_cache_get_ip4
+ffffffff817bdc40 t dst_cache_set_ip4
+ffffffff817bdcc0 t dst_cache_set_ip6
+ffffffff817bddb0 t dst_cache_get_ip6
+ffffffff817bde10 t dst_cache_init
+ffffffff817bde60 t dst_cache_destroy
+ffffffff817bdee0 t dst_cache_reset_now
+ffffffff817bdf70 t gro_cells_receive
+ffffffff817be0a0 t gro_cells_init
+ffffffff817be180 t gro_cell_poll
+ffffffff817be210 t gro_cells_destroy
+ffffffff817be350 t percpu_free_defer_callback
+ffffffff817be380 t of_get_phy_mode
+ffffffff817be450 t of_get_mac_address
+ffffffff817be610 t of_get_ethdev_address
+ffffffff817be680 t eth_header
+ffffffff817be720 t eth_get_headlen
+ffffffff817be7d0 t eth_type_trans
+ffffffff817be8e0 t eth_header_parse
+ffffffff817be910 t eth_header_cache
+ffffffff817be970 t eth_header_cache_update
+ffffffff817be990 t eth_header_parse_protocol
+ffffffff817be9b0 t eth_prepare_mac_addr_change
+ffffffff817be9f0 t eth_commit_mac_addr_change
+ffffffff817bea10 t eth_mac_addr
+ffffffff817bea60 t eth_validate_addr
+ffffffff817bea90 t ether_setup
+ffffffff817beb10 t alloc_etherdev_mqs
+ffffffff817beb40 t sysfs_format_mac
+ffffffff817beb70 t eth_gro_receive
+ffffffff817bed00 t eth_gro_complete
+ffffffff817bed90 t arch_get_platform_mac_address
+ffffffff817beda0 t eth_platform_get_mac_address
+ffffffff817bedf0 t platform_get_ethdev_address
+ffffffff817bee90 t nvmem_get_mac_address
+ffffffff817bef60 t fwnode_get_mac_address
+ffffffff817bf000 t device_get_mac_address
+ffffffff817bf020 t device_get_ethdev_address
+ffffffff817bf0a0 t sch_direct_xmit
+ffffffff817bf320 t __qdisc_run
+ffffffff817bfa90 t dev_trans_start
+ffffffff817bfb60 t netif_tx_lock
+ffffffff817bfc00 t netif_tx_unlock
+ffffffff817bfc70 t __netdev_watchdog_up
+ffffffff817bfcf0 t netif_carrier_on
+ffffffff817bfda0 t netif_carrier_off
+ffffffff817bfdd0 t netif_carrier_event
+ffffffff817bfe00 t noop_enqueue
+ffffffff817bfe20 t noop_dequeue
+ffffffff817bfe30 t noqueue_init
+ffffffff817bfe50 t pfifo_fast_enqueue
+ffffffff817bff60 t pfifo_fast_dequeue
+ffffffff817c04a0 t pfifo_fast_peek
+ffffffff817c0530 t pfifo_fast_init
+ffffffff817c06b0 t pfifo_fast_reset
+ffffffff817c0930 t pfifo_fast_destroy
+ffffffff817c0980 t pfifo_fast_change_tx_queue_len
+ffffffff817c0c70 t pfifo_fast_dump
+ffffffff817c0cf0 t qdisc_alloc
+ffffffff817c0ee0 t qdisc_create_dflt
+ffffffff817c1000 t qdisc_put
+ffffffff817c1050 t qdisc_reset
+ffffffff817c1180 t qdisc_free
+ffffffff817c11b0 t qdisc_destroy
+ffffffff817c1260 t qdisc_put_unlocked
+ffffffff817c12a0 t dev_graft_qdisc
+ffffffff817c1300 t dev_activate
+ffffffff817c1720 t dev_deactivate_many
+ffffffff817c1a30 t dev_reset_queue
+ffffffff817c1ac0 t dev_deactivate
+ffffffff817c1b60 t dev_qdisc_change_real_num_tx
+ffffffff817c1b90 t mq_change_real_num_tx
+ffffffff817c1ba0 t dev_qdisc_change_tx_queue_len
+ffffffff817c1cd0 t dev_init_scheduler
+ffffffff817c1d60 t dev_watchdog
+ffffffff817c2030 t dev_shutdown
+ffffffff817c2170 t psched_ratecfg_precompute
+ffffffff817c2220 t psched_ppscfg_precompute
+ffffffff817c2290 t mini_qdisc_pair_swap
+ffffffff817c2310 t mini_qdisc_pair_block_init
+ffffffff817c2330 t mini_qdisc_pair_init
+ffffffff817c2380 t qdisc_free_cb
+ffffffff817c23c0 t mq_init
+ffffffff817c2550 t mq_destroy
+ffffffff817c2640 t mq_attach
+ffffffff817c26d0 t mq_dump
+ffffffff817c27f0 t mq_select_queue
+ffffffff817c2830 t mq_graft
+ffffffff817c28c0 t mq_leaf
+ffffffff817c2900 t mq_find
+ffffffff817c2950 t mq_walk
+ffffffff817c29e0 t mq_dump_class
+ffffffff817c2a30 t mq_dump_class_stats
+ffffffff817c2b20 t sch_frag_xmit_hook
+ffffffff817c3250 t sch_frag_xmit
+ffffffff817c3440 t sch_frag_dst_get_mtu
+ffffffff817c3460 t __traceiter_netlink_extack
+ffffffff817c34b0 t trace_event_raw_event_netlink_extack
+ffffffff817c35a0 t perf_trace_netlink_extack
+ffffffff817c36e0 t do_trace_netlink_extack
+ffffffff817c3740 t netlink_add_tap
+ffffffff817c37e0 t netlink_remove_tap
+ffffffff817c38a0 t netlink_table_grab
+ffffffff817c39a0 t netlink_table_ungrab
+ffffffff817c39d0 t __netlink_ns_capable
+ffffffff817c3a20 t netlink_ns_capable
+ffffffff817c3a70 t netlink_capable
+ffffffff817c3ac0 t netlink_net_capable
+ffffffff817c3b10 t netlink_getsockbyfilp
+ffffffff817c3b80 t netlink_attachskb
+ffffffff817c3df0 t netlink_sendskb
+ffffffff817c3ea0 t __netlink_sendskb
+ffffffff817c3f20 t netlink_detachskb
+ffffffff817c3f70 t netlink_unicast
+ffffffff817c42a0 t netlink_trim
+ffffffff817c4350 t netlink_has_listeners
+ffffffff817c43c0 t netlink_strict_get_check
+ffffffff817c43e0 t netlink_broadcast
+ffffffff817c4900 t netlink_lock_table
+ffffffff817c4930 t netlink_unlock_table
+ffffffff817c4960 t netlink_set_err
+ffffffff817c4a70 t __netlink_kernel_create
+ffffffff817c4d80 t netlink_data_ready
+ffffffff817c4d90 t netlink_insert
+ffffffff817c51c0 t netlink_kernel_release
+ffffffff817c51f0 t __netlink_change_ngroups
+ffffffff817c52d0 t netlink_change_ngroups
+ffffffff817c53e0 t __netlink_clear_multicast_users
+ffffffff817c5450 t netlink_update_socket_mc
+ffffffff817c55b0 t __nlmsg_put
+ffffffff817c5640 t __netlink_dump_start
+ffffffff817c5950 t netlink_dump
+ffffffff817c5d80 t netlink_ack
+ffffffff817c6150 t netlink_rcv_skb
+ffffffff817c6290 t nlmsg_notify
+ffffffff817c6370 t netlink_register_notifier
+ffffffff817c6390 t netlink_unregister_notifier
+ffffffff817c63b0 t trace_raw_output_netlink_extack
+ffffffff817c6410 t netlink_skb_destructor
+ffffffff817c6480 t __netlink_deliver_tap
+ffffffff817c6650 t netlink_sock_destruct
+ffffffff817c6700 t netlink_release
+ffffffff817c6dc0 t netlink_bind
+ffffffff817c7160 t netlink_connect
+ffffffff817c7250 t netlink_getname
+ffffffff817c7310 t netlink_ioctl
+ffffffff817c7320 t netlink_setsockopt
+ffffffff817c7650 t netlink_getsockopt
+ffffffff817c7910 t netlink_sendmsg
+ffffffff817c7d40 t netlink_recvmsg
+ffffffff817c8030 t deferred_put_nlk_sk
+ffffffff817c80e0 t netlink_hash
+ffffffff817c8140 t netlink_compare
+ffffffff817c8160 t netlink_sock_destruct_work
+ffffffff817c8180 t netlink_allowed
+ffffffff817c81d0 t netlink_realloc_groups
+ffffffff817c82c0 t netlink_undo_bind
+ffffffff817c8350 t netlink_autobind
+ffffffff817c8450 t __netlink_lookup
+ffffffff817c8550 t netlink_create
+ffffffff817c87d0 t netlink_seq_start
+ffffffff817c88a0 t netlink_seq_stop
+ffffffff817c88d0 t netlink_seq_next
+ffffffff817c8960 t netlink_seq_show
+ffffffff817c8a40 t genl_lock
+ffffffff817c8a60 t genl_unlock
+ffffffff817c8a80 t genl_register_family
+ffffffff817c91b0 t genl_ctrl_event
+ffffffff817c9550 t genl_unregister_family
+ffffffff817c9790 t genlmsg_put
+ffffffff817c9800 t genlmsg_multicast_allns
+ffffffff817c9950 t genl_notify
+ffffffff817c99a0 t ctrl_fill_info
+ffffffff817c9e60 t ctrl_getfamily
+ffffffff817ca090 t ctrl_dumpfamily
+ffffffff817ca160 t ctrl_dumppolicy_start
+ffffffff817ca4d0 t ctrl_dumppolicy
+ffffffff817caab0 t ctrl_dumppolicy_done
+ffffffff817caad0 t genl_get_cmd
+ffffffff817cac90 t genl_rcv
+ffffffff817cacd0 t genl_bind
+ffffffff817cadc0 t genl_rcv_msg
+ffffffff817cb1d0 t genl_start
+ffffffff817cb330 t genl_lock_dumpit
+ffffffff817cb380 t genl_lock_done
+ffffffff817cb3e0 t genl_parallel_done
+ffffffff817cb420 t genl_family_rcv_msg_attrs_parse
+ffffffff817cb510 t netlink_policy_dump_get_policy_idx
+ffffffff817cb560 t netlink_policy_dump_add_policy
+ffffffff817cb6d0 t add_policy
+ffffffff817cb7f0 t netlink_policy_dump_free
+ffffffff817cb800 t netlink_policy_dump_loop
+ffffffff817cb830 t netlink_policy_dump_attr_size_estimate
+ffffffff817cb860 t netlink_policy_dump_write_attr
+ffffffff817cb880 t __netlink_policy_dump_write_attr.llvm.7642813159568357384
+ffffffff817cbce0 t netlink_policy_dump_write
+ffffffff817cbe50 t ethtool_op_get_link
+ffffffff817cbe70 t ethtool_op_get_ts_info
+ffffffff817cbe90 t ethtool_intersect_link_masks
+ffffffff817cbec0 t ethtool_convert_legacy_u32_to_link_mode
+ffffffff817cbee0 t ethtool_convert_link_mode_to_legacy_u32
+ffffffff817cbf10 t __ethtool_get_link_ksettings
+ffffffff817cc010 t ethtool_virtdev_validate_cmd
+ffffffff817cc0e0 t ethtool_virtdev_set_link_ksettings
+ffffffff817cc1f0 t netdev_rss_key_fill
+ffffffff817cc2a0 t ethtool_sprintf
+ffffffff817cc330 t ethtool_get_module_info_call
+ffffffff817cc3a0 t ethtool_get_module_eeprom_call
+ffffffff817cc410 t dev_ethtool
+ffffffff817ccfe0 t ethtool_rx_flow_rule_create
+ffffffff817cd550 t ethtool_rx_flow_rule_destroy
+ffffffff817cd570 t ethtool_get_settings
+ffffffff817cd780 t ethtool_set_settings
+ffffffff817cd960 t ethtool_get_drvinfo
+ffffffff817cdaf0 t ethtool_get_regs
+ffffffff817cdc40 t ethtool_get_wol
+ffffffff817cdce0 t ethtool_set_wol
+ffffffff817cddb0 t ethtool_set_value_void
+ffffffff817cde30 t ethtool_get_eee
+ffffffff817cdee0 t ethtool_set_eee
+ffffffff817cdfb0 t ethtool_get_link
+ffffffff817ce020 t ethtool_get_eeprom
+ffffffff817ce0a0 t ethtool_set_eeprom
+ffffffff817ce230 t ethtool_get_coalesce
+ffffffff817ce320 t ethtool_set_coalesce
+ffffffff817ce590 t ethtool_get_ringparam
+ffffffff817ce660 t ethtool_set_ringparam
+ffffffff817ce7c0 t ethtool_get_pauseparam
+ffffffff817ce860 t ethtool_set_pauseparam
+ffffffff817ce920 t ethtool_self_test
+ffffffff817ceab0 t ethtool_get_strings
+ffffffff817ced80 t ethtool_phys_id
+ffffffff817cef50 t ethtool_get_stats
+ffffffff817cf100 t ethtool_get_perm_addr
+ffffffff817cf1e0 t ethtool_set_value
+ffffffff817cf260 t __ethtool_set_flags
+ffffffff817cf2f0 t ethtool_get_rxnfc
+ffffffff817cf530 t ethtool_set_rxnfc
+ffffffff817cf660 t ethtool_reset
+ffffffff817cf720 t ethtool_get_sset_info
+ffffffff817cf990 t ethtool_get_rxfh_indir
+ffffffff817cfb20 t ethtool_set_rxfh_indir
+ffffffff817cfd40 t ethtool_get_rxfh
+ffffffff817cffa0 t ethtool_set_rxfh
+ffffffff817d03c0 t ethtool_get_features
+ffffffff817d04e0 t ethtool_set_features
+ffffffff817d0630 t ethtool_get_one_feature
+ffffffff817d06c0 t ethtool_set_one_feature
+ffffffff817d0780 t ethtool_get_channels
+ffffffff817d0830 t ethtool_set_channels
+ffffffff817d09e0 t ethtool_set_dump
+ffffffff817d0a80 t ethtool_get_dump_flag
+ffffffff817d0b40 t ethtool_get_dump_data
+ffffffff817d0ce0 t ethtool_get_ts_info
+ffffffff817d0d80 t ethtool_get_module_info
+ffffffff817d0e90 t ethtool_get_module_eeprom
+ffffffff817d0f80 t ethtool_get_tunable
+ffffffff817d10e0 t ethtool_set_tunable
+ffffffff817d11f0 t ethtool_get_phy_stats
+ffffffff817d1400 t ethtool_set_per_queue
+ffffffff817d14d0 t ethtool_get_link_ksettings
+ffffffff817d1790 t ethtool_set_link_ksettings
+ffffffff817d1a60 t get_phy_tunable
+ffffffff817d1c40 t set_phy_tunable
+ffffffff817d1dd0 t ethtool_get_fecparam
+ffffffff817d1e70 t ethtool_set_fecparam
+ffffffff817d1f30 t ethtool_get_any_eeprom
+ffffffff817d2100 t ethtool_copy_validate_indir
+ffffffff817d21b0 t ethtool_get_per_queue_coalesce
+ffffffff817d2370 t ethtool_set_per_queue_coalesce
+ffffffff817d2750 t convert_legacy_settings_to_link_ksettings
+ffffffff817d2840 t __ethtool_get_link
+ffffffff817d2890 t ethtool_get_max_rxfh_channel
+ffffffff817d2990 t ethtool_check_ops
+ffffffff817d29c0 t __ethtool_get_ts_info
+ffffffff817d2a50 t ethtool_get_phc_vclocks
+ffffffff817d2b00 t ethtool_set_ethtool_phy_ops
+ffffffff817d2b30 t ethtool_params_from_link_mode
+ffffffff817d2ba0 t ethnl_ops_begin
+ffffffff817d2c40 t ethnl_ops_complete
+ffffffff817d2c90 t ethnl_parse_header_dev_get
+ffffffff817d2ee0 t ethnl_fill_reply_header
+ffffffff817d2ff0 t ethnl_reply_init
+ffffffff817d30c0 t ethnl_dump_put
+ffffffff817d30f0 t ethnl_bcastmsg_put
+ffffffff817d3120 t ethnl_multicast
+ffffffff817d3170 t ethtool_notify
+ffffffff817d3260 t ethnl_default_notify
+ffffffff817d34b0 t ethnl_default_doit
+ffffffff817d3880 t ethnl_default_start
+ffffffff817d3a00 t ethnl_default_dumpit
+ffffffff817d3d30 t ethnl_default_done
+ffffffff817d3d60 t ethnl_netdev_event
+ffffffff817d3d90 t ethnl_bitset32_size
+ffffffff817d3ed0 t ethnl_put_bitset32
+ffffffff817d4290 t ethnl_bitset_is_compact
+ffffffff817d43a0 t ethnl_update_bitset32
+ffffffff817d4950 t ethnl_compact_sanity_checks
+ffffffff817d4b80 t ethnl_parse_bitset
+ffffffff817d4f10 t ethnl_parse_bit
+ffffffff817d51c0 t ethnl_bitset_size
+ffffffff817d5300 t ethnl_put_bitset
+ffffffff817d5320 t ethnl_update_bitset
+ffffffff817d5330 t strset_parse_request
+ffffffff817d5550 t strset_prepare_data
+ffffffff817d5820 t strset_reply_size
+ffffffff817d5930 t strset_fill_reply
+ffffffff817d5d30 t strset_cleanup_data
+ffffffff817d5d90 t linkinfo_prepare_data
+ffffffff817d5e10 t linkinfo_reply_size
+ffffffff817d5e20 t linkinfo_fill_reply
+ffffffff817d5f30 t ethnl_set_linkinfo
+ffffffff817d61a0 t linkmodes_prepare_data
+ffffffff817d6250 t linkmodes_reply_size
+ffffffff817d62f0 t linkmodes_fill_reply
+ffffffff817d64c0 t ethnl_set_linkmodes
+ffffffff817d6a20 t linkstate_prepare_data
+ffffffff817d6b80 t linkstate_reply_size
+ffffffff817d6bc0 t linkstate_fill_reply
+ffffffff817d6cf0 t debug_prepare_data
+ffffffff817d6d50 t debug_reply_size
+ffffffff817d6d80 t debug_fill_reply
+ffffffff817d6dc0 t ethnl_set_debug
+ffffffff817d6f30 t wol_prepare_data
+ffffffff817d6fb0 t wol_reply_size
+ffffffff817d7000 t wol_fill_reply
+ffffffff817d7080 t ethnl_set_wol
+ffffffff817d72f0 t features_prepare_data
+ffffffff817d7340 t features_reply_size
+ffffffff817d7410 t features_fill_reply
+ffffffff817d74e0 t ethnl_set_features
+ffffffff817d7870 t privflags_prepare_data
+ffffffff817d7950 t privflags_reply_size
+ffffffff817d79b0 t privflags_fill_reply
+ffffffff817d7a20 t privflags_cleanup_data
+ffffffff817d7a40 t ethnl_set_privflags
+ffffffff817d7c40 t ethnl_get_priv_flags_info
+ffffffff817d7d30 t rings_prepare_data
+ffffffff817d7db0 t rings_reply_size
+ffffffff817d7dc0 t rings_fill_reply
+ffffffff817d8020 t ethnl_set_rings
+ffffffff817d8380 t channels_prepare_data
+ffffffff817d83f0 t channels_reply_size
+ffffffff817d8400 t channels_fill_reply
+ffffffff817d8590 t ethnl_set_channels
+ffffffff817d88a0 t coalesce_prepare_data
+ffffffff817d8930 t coalesce_reply_size
+ffffffff817d8940 t coalesce_fill_reply
+ffffffff817d8e30 t ethnl_set_coalesce
+ffffffff817d9340 t coalesce_put_bool
+ffffffff817d93b0 t pause_prepare_data
+ffffffff817d9460 t pause_reply_size
+ffffffff817d9480 t pause_fill_reply
+ffffffff817d9610 t ethnl_set_pause
+ffffffff817d97f0 t eee_prepare_data
+ffffffff817d9870 t eee_reply_size
+ffffffff817d98e0 t eee_fill_reply
+ffffffff817d9a30 t ethnl_set_eee
+ffffffff817d9c50 t tsinfo_prepare_data
+ffffffff817d9ca0 t tsinfo_reply_size
+ffffffff817d9d70 t tsinfo_fill_reply
+ffffffff817d9e90 t ethnl_act_cable_test
+ffffffff817d9fb0 t ethnl_cable_test_started
+ffffffff817da0d0 t ethnl_cable_test_alloc
+ffffffff817da210 t ethnl_cable_test_free
+ffffffff817da240 t ethnl_cable_test_finished
+ffffffff817da2b0 t ethnl_cable_test_result
+ffffffff817da3c0 t ethnl_cable_test_fault_length
+ffffffff817da4d0 t ethnl_act_cable_test_tdr
+ffffffff817da8a0 t ethnl_cable_test_amplitude
+ffffffff817da9b0 t ethnl_cable_test_pulse
+ffffffff817daa90 t ethnl_cable_test_step
+ffffffff817dabd0 t ethnl_tunnel_info_doit
+ffffffff817dafa0 t ethnl_tunnel_info_fill_reply
+ffffffff817db300 t ethnl_tunnel_info_start
+ffffffff817db370 t ethnl_tunnel_info_dumpit
+ffffffff817db5c0 t fec_prepare_data
+ffffffff817db840 t fec_reply_size
+ffffffff817db890 t fec_fill_reply
+ffffffff817dba40 t ethnl_set_fec
+ffffffff817dbd90 t fec_stats_recalc
+ffffffff817dbec0 t eeprom_parse_request
+ffffffff817dbfd0 t eeprom_prepare_data
+ffffffff817dc1f0 t eeprom_reply_size
+ffffffff817dc210 t eeprom_fill_reply
+ffffffff817dc230 t eeprom_cleanup_data
+ffffffff817dc250 t stats_parse_request
+ffffffff817dc2e0 t stats_prepare_data
+ffffffff817dc3f0 t stats_reply_size
+ffffffff817dc480 t stats_fill_reply
+ffffffff817dc650 t stats_put_stats
+ffffffff817dc760 t stats_put_mac_stats
+ffffffff817dc9b0 t stats_put_ctrl_stats
+ffffffff817dca20 t stats_put_rmon_stats
+ffffffff817dcae0 t stat_put
+ffffffff817dcbd0 t stats_put_rmon_hist
+ffffffff817dcd80 t phc_vclocks_prepare_data
+ffffffff817dcdd0 t phc_vclocks_reply_size
+ffffffff817dce00 t phc_vclocks_fill_reply
+ffffffff817dce90 t phc_vclocks_cleanup_data
+ffffffff817dceb0 t module_prepare_data
+ffffffff817dcf30 t module_reply_size
+ffffffff817dcf60 t module_fill_reply
+ffffffff817dd000 t ethnl_set_module
+ffffffff817dd1a0 t pse_prepare_data
+ffffffff817dd260 t pse_reply_size
+ffffffff817dd290 t pse_fill_reply
+ffffffff817dd330 t ethnl_set_pse
+ffffffff817dd460 t rt_cache_flush
+ffffffff817dd480 t __ip_select_ident
+ffffffff817dd530 t ip_rt_send_redirect
+ffffffff817dd710 t ipv4_update_pmtu
+ffffffff817dd860 t __ip_rt_update_pmtu
+ffffffff817dda80 t ipv4_sk_update_pmtu
+ffffffff817de110 t ip_route_output_flow
+ffffffff817de200 t ipv4_redirect
+ffffffff817de330 t __ip_do_redirect
+ffffffff817de5b0 t ipv4_sk_redirect
+ffffffff817de740 t ipv4_dst_check
+ffffffff817de770 t ip_rt_get_source
+ffffffff817de9b0 t fib_lookup
+ffffffff817dea50 t fib_lookup
+ffffffff817deaf0 t ipv4_mtu
+ffffffff817deb70 t ip_mtu_from_fib_result
+ffffffff817debe0 t find_exception
+ffffffff817dedf0 t rt_add_uncached_list
+ffffffff817dee70 t rt_del_uncached_list
+ffffffff817deef0 t rt_flush_dev
+ffffffff817df050 t rt_dst_alloc
+ffffffff817df0f0 t rt_dst_clone
+ffffffff817df210 t ip_mc_validate_source
+ffffffff817df2c0 t ip_route_use_hint
+ffffffff817df400 t ip_route_input_noref
+ffffffff817df4b0 t ip_route_input_rcu
+ffffffff817dfed0 t ip_route_output_key_hash
+ffffffff817dff90 t ip_route_output_key_hash_rcu
+ffffffff817e0750 t ipv4_blackhole_route
+ffffffff817e0890 t ip_route_output_tunnel
+ffffffff817e0a80 t fib_dump_info_fnhe
+ffffffff817e0c60 t ip_rt_multicast_event
+ffffffff817e0c80 t inet_rtm_getroute
+ffffffff817e1570 t update_or_create_fnhe
+ffffffff817e19b0 t __ipv4_neigh_lookup
+ffffffff817e1a80 t ipv4_default_advmss
+ffffffff817e1b10 t ipv4_cow_metrics
+ffffffff817e1b20 t ipv4_dst_destroy
+ffffffff817e1bd0 t ipv4_negative_advice
+ffffffff817e1c00 t ipv4_link_failure
+ffffffff817e1da0 t ip_rt_update_pmtu
+ffffffff817e1fe0 t ip_do_redirect
+ffffffff817e2110 t ipv4_neigh_lookup
+ffffffff817e22a0 t ipv4_confirm_neigh
+ffffffff817e2450 t ip_neigh_gw4
+ffffffff817e2500 t ip_neigh_gw4
+ffffffff817e25b0 t ip_neigh_gw6
+ffffffff817e2680 t ip_neigh_gw6
+ffffffff817e2750 t ip_rt_bug
+ffffffff817e2770 t ip_mkroute_input
+ffffffff817e2a70 t ip_error
+ffffffff817e2c60 t rt_cache_route
+ffffffff817e2d50 t rt_set_nexthop
+ffffffff817e2f00 t rt_bind_exception
+ffffffff817e30b0 t rt_fill_info
+ffffffff817e3530 t rt_cache_seq_start
+ffffffff817e3550 t rt_cache_seq_stop
+ffffffff817e3560 t rt_cache_seq_next
+ffffffff817e3570 t rt_cache_seq_show
+ffffffff817e35a0 t rt_cpu_seq_start
+ffffffff817e3640 t rt_cpu_seq_stop
+ffffffff817e3650 t rt_cpu_seq_next
+ffffffff817e36e0 t rt_cpu_seq_show
+ffffffff817e3790 t ipv4_sysctl_rtcache_flush
+ffffffff817e37c0 t inet_peer_base_init
+ffffffff817e37f0 t inet_getpeer
+ffffffff817e3c40 t inet_putpeer
+ffffffff817e3ca0 t inetpeer_free_rcu
+ffffffff817e3cc0 t inet_peer_xrlim_allow
+ffffffff817e3d10 t inetpeer_invalidate_tree
+ffffffff817e3dc0 t inet_add_protocol
+ffffffff817e3df0 t inet_add_offload
+ffffffff817e3e20 t inet_del_protocol
+ffffffff817e3e50 t inet_del_offload
+ffffffff817e3e80 t ip_call_ra_chain
+ffffffff817e3f90 t ip_protocol_deliver_rcu
+ffffffff817e4150 t ip_local_deliver
+ffffffff817e4210 t ip_rcv
+ffffffff817e42a0 t ip_rcv_core
+ffffffff817e4620 t ip_list_rcv
+ffffffff817e4780 t ip_sublist_rcv
+ffffffff817e49e0 t ip_rcv_finish_core
+ffffffff817e4db0 t ip_defrag
+ffffffff817e5600 t ip_check_defrag
+ffffffff817e57c0 t pskb_may_pull
+ffffffff817e5800 t pskb_may_pull
+ffffffff817e5840 t pskb_may_pull
+ffffffff817e5880 t pskb_may_pull
+ffffffff817e58c0 t pskb_may_pull
+ffffffff817e5910 t ip4_frag_init
+ffffffff817e59c0 t ip4_frag_free
+ffffffff817e59e0 t ip_expire
+ffffffff817e5b80 t ip4_key_hashfn
+ffffffff817e5c40 t ip4_obj_hashfn
+ffffffff817e5d00 t ip4_obj_cmpfn
+ffffffff817e5d30 t ip_forward
+ffffffff817e60f0 t ip_forward_finish
+ffffffff817e61b0 t ip_options_build
+ffffffff817e62a0 t __ip_options_echo
+ffffffff817e65a0 t ip_options_fragment
+ffffffff817e6630 t __ip_options_compile
+ffffffff817e6df0 t ip_options_compile
+ffffffff817e6e60 t ip_options_undo
+ffffffff817e6f20 t ip_options_get
+ffffffff817e70c0 t ip_forward_options
+ffffffff817e7270 t ip_options_rcv_srr
+ffffffff817e74a0 t ip_send_check
+ffffffff817e74f0 t __ip_local_out
+ffffffff817e7580 t ip_local_out
+ffffffff817e7680 t ip_build_and_send_pkt
+ffffffff817e7860 t ip_mc_output
+ffffffff817e7a00 t ip_finish_output
+ffffffff817e7c00 t ip_output
+ffffffff817e7c40 t __ip_queue_xmit
+ffffffff817e8020 t ip_queue_xmit
+ffffffff817e8040 t ip_fraglist_init
+ffffffff817e81a0 t ip_fraglist_prepare
+ffffffff817e82d0 t ip_copy_metadata
+ffffffff817e8470 t ip_frag_init
+ffffffff817e84d0 t ip_frag_next
+ffffffff817e8690 t ip_do_fragment
+ffffffff817e8e70 t ip_generic_getfrag
+ffffffff817e8f70 t ip_append_data
+ffffffff817e9050 t ip_setup_cork
+ffffffff817e9210 t __ip_append_data
+ffffffff817ea030 t ip_append_page
+ffffffff817ea490 t __ip_make_skb
+ffffffff817ea8c0 t ip_send_skb
+ffffffff817ea900 t ip_push_pending_frames
+ffffffff817ea960 t ip_flush_pending_frames
+ffffffff817eaa00 t ip_make_skb
+ffffffff817eab80 t ip_send_unicast_reply
+ffffffff817eb000 t ip_reply_glue_bits
+ffffffff817eb050 t ip_fragment
+ffffffff817eb0e0 t ip_finish_output2
+ffffffff817eb440 t ip_cmsg_recv_offset
+ffffffff817eb860 t ip_cmsg_send
+ffffffff817eba90 t ip_ra_control
+ffffffff817ebc10 t ip_ra_destroy_rcu
+ffffffff817ebc60 t ip_icmp_error
+ffffffff817ebd90 t ip_local_error
+ffffffff817ebec0 t ip_recv_error
+ffffffff817ec140 t __ip_sock_set_tos
+ffffffff817ec1c0 t ip_sock_set_tos
+ffffffff817ec250 t ip_sock_set_freebind
+ffffffff817ec280 t ip_sock_set_recverr
+ffffffff817ec2b0 t ip_sock_set_mtu_discover
+ffffffff817ec2f0 t ip_sock_set_pktinfo
+ffffffff817ec320 t do_ip_setsockopt
+ffffffff817ed3f0 t memdup_sockptr
+ffffffff817ed4a0 t ip_mcast_join_leave
+ffffffff817ed5a0 t ip_set_mcast_msfilter
+ffffffff817ed700 t ipv4_pktinfo_prepare
+ffffffff817ed7b0 t ip_setsockopt
+ffffffff817ed7e0 t do_ip_getsockopt
+ffffffff817ee1c0 t sk_dst_get
+ffffffff817ee210 t dst_mtu
+ffffffff817ee260 t dst_mtu
+ffffffff817ee2b0 t dst_mtu
+ffffffff817ee300 t dst_mtu
+ffffffff817ee350 t dst_mtu
+ffffffff817ee3a0 t ip_get_mcast_msfilter
+ffffffff817ee510 t ip_getsockopt
+ffffffff817ee570 t set_mcast_msfilter
+ffffffff817ee640 t inet_bind_bucket_create
+ffffffff817ee6b0 t inet_bind_bucket_destroy
+ffffffff817ee6f0 t inet_bind_bucket_match
+ffffffff817ee710 t inet_bind2_bucket_create
+ffffffff817ee7b0 t inet_bind2_bucket_destroy
+ffffffff817ee7f0 t inet_bind_hash
+ffffffff817ee860 t inet_put_port
+ffffffff817eea10 t __inet_inherit_port
+ffffffff817eee50 t inet_bind2_bucket_find
+ffffffff817eeef0 t __inet_lookup_listener
+ffffffff817ef2f0 t inet_lhash2_lookup
+ffffffff817ef420 t sock_gen_put
+ffffffff817ef4f0 t sock_edemux
+ffffffff817ef510 t __inet_lookup_established
+ffffffff817ef680 t inet_ehashfn
+ffffffff817ef7a0 t inet_ehash_insert
+ffffffff817efa20 t inet_ehash_nolisten
+ffffffff817efa80 t __inet_hash
+ffffffff817efd80 t inet_hash
+ffffffff817efda0 t inet_unhash
+ffffffff817eff20 t inet_bind2_bucket_match_addr_any
+ffffffff817eff80 t inet_bhash2_addr_any_hashbucket
+ffffffff817f0040 t ipv6_portaddr_hash
+ffffffff817f01a0 t ipv6_portaddr_hash
+ffffffff817f0300 t ipv6_portaddr_hash
+ffffffff817f0460 t inet_bhash2_update_saddr
+ffffffff817f0480 t __inet_bhash2_update_saddr.llvm.12401701415537205624
+ffffffff817f0990 t inet_bhash2_reset_saddr
+ffffffff817f09c0 t __inet_hash_connect
+ffffffff817f0ff0 t inet_hash_connect
+ffffffff817f1040 t __inet_check_established
+ffffffff817f1280 t inet_hashinfo2_init_mod
+ffffffff817f1310 t inet_ehash_locks_alloc
+ffffffff817f1410 t inet_pernet_hashinfo_alloc
+ffffffff817f15d0 t inet_pernet_hashinfo_free
+ffffffff817f1610 t inet_twsk_bind_unhash
+ffffffff817f16c0 t inet_twsk_free
+ffffffff817f1710 t inet_twsk_put
+ffffffff817f1780 t inet_twsk_hashdance
+ffffffff817f1960 t inet_bhashfn_portaddr
+ffffffff817f1b60 t inet_bhashfn_portaddr
+ffffffff817f1d60 t inet_twsk_alloc
+ffffffff817f1e90 t tw_timer_handler
+ffffffff817f1eb0 t inet_twsk_deschedule_put
+ffffffff817f1f40 t inet_twsk_kill
+ffffffff817f2140 t __inet_twsk_schedule
+ffffffff817f2200 t inet_twsk_purge
+ffffffff817f2460 t inet_rcv_saddr_equal
+ffffffff817f25b0 t ipv6_rcv_saddr_equal
+ffffffff817f2670 t inet_rcv_saddr_any
+ffffffff817f26a0 t inet_get_local_port_range
+ffffffff817f26e0 t inet_sk_get_local_port_range
+ffffffff817f2750 t inet_csk_update_fastreuse
+ffffffff817f28a0 t inet_csk_get_port
+ffffffff817f2fc0 t inet_bhash2_addr_any_conflict
+ffffffff817f30c0 t inet_csk_bind_conflict
+ffffffff817f31e0 t inet_csk_accept
+ffffffff817f3490 t reqsk_put.llvm.13911330215301886215
+ffffffff817f3530 t inet_csk_init_xmit_timers
+ffffffff817f35a0 t inet_csk_clear_xmit_timers
+ffffffff817f35f0 t inet_csk_delete_keepalive_timer
+ffffffff817f3610 t inet_csk_reset_keepalive_timer
+ffffffff817f3640 t inet_csk_route_req
+ffffffff817f37a0 t inet_csk_route_child_sock
+ffffffff817f3920 t inet_rtx_syn_ack
+ffffffff817f3950 t inet_csk_reqsk_queue_drop
+ffffffff817f3a20 t inet_csk_reqsk_queue_drop_and_put
+ffffffff817f3a40 t inet_csk_reqsk_queue_hash_add
+ffffffff817f3ac0 t inet_csk_clone_lock
+ffffffff817f3c20 t inet_csk_destroy_sock
+ffffffff817f3d40 t inet_csk_prepare_forced_close
+ffffffff817f3db0 t inet_csk_listen_start
+ffffffff817f3eb0 t inet_csk_reqsk_queue_add
+ffffffff817f3f50 t inet_child_forget
+ffffffff817f4010 t inet_csk_complete_hashdance
+ffffffff817f4330 t inet_reqsk_clone
+ffffffff817f4430 t inet_csk_listen_stop
+ffffffff817f47d0 t inet_csk_addr2sockaddr
+ffffffff817f47f0 t inet_csk_update_pmtu
+ffffffff817f4870 t inet_csk_rebuild_route
+ffffffff817f49f0 t inet_bhash2_conflict
+ffffffff817f4b10 t inet_bind_conflict
+ffffffff817f4bc0 t reqsk_timer_handler
+ffffffff817f4f80 t tcp_enter_memory_pressure
+ffffffff817f4fd0 t tcp_leave_memory_pressure
+ffffffff817f5010 t tcp_init_sock
+ffffffff817f5170 t tcp_poll
+ffffffff817f5480 t tcp_ioctl
+ffffffff817f5650 t tcp_mark_push
+ffffffff817f5670 t tcp_skb_entail
+ffffffff817f5770 t tcp_push
+ffffffff817f5870 t tcp_splice_read
+ffffffff817f5b30 t tcp_stream_alloc_skb
+ffffffff817f5c10 t sk_wmem_schedule
+ffffffff817f5c50 t tcp_send_mss
+ffffffff817f5d00 t tcp_remove_empty_skb
+ffffffff817f5e70 t do_tcp_sendpages
+ffffffff817f6650 t tcp_sendpage_locked
+ffffffff817f66c0 t tcp_sendpage
+ffffffff817f6740 t tcp_free_fastopen_req
+ffffffff817f6770 t tcp_sendmsg_fastopen
+ffffffff817f6970 t tcp_set_state
+ffffffff817f6a20 t tcp_sendmsg_locked
+ffffffff817f7810 t tcp_downgrade_zcopy_pure
+ffffffff817f7890 t tcp_sendmsg
+ffffffff817f78d0 t tcp_cleanup_rbuf
+ffffffff817f7930 t __tcp_cleanup_rbuf
+ffffffff817f7a00 t tcp_recv_skb
+ffffffff817f7b40 t tcp_read_sock
+ffffffff817f7e20 t tcp_read_skb
+ffffffff817f7ff0 t tcp_read_done
+ffffffff817f81d0 t tcp_peek_len
+ffffffff817f8260 t tcp_set_rcvlowat
+ffffffff817f8300 t tcp_update_recv_tstamps
+ffffffff817f8360 t tcp_mmap
+ffffffff817f8400 t tcp_recv_timestamp
+ffffffff817f85d0 t tcp_recvmsg
+ffffffff817f87f0 t tcp_recvmsg_locked
+ffffffff817f9080 t tcp_inq_hint
+ffffffff817f90f0 t tcp_shutdown
+ffffffff817f9150 t tcp_orphan_count_sum
+ffffffff817f91b0 t tcp_check_oom
+ffffffff817f9270 t __tcp_close
+ffffffff817f9840 t tcp_close
+ffffffff817f98a0 t tcp_write_queue_purge
+ffffffff817f9be0 t tcp_disconnect
+ffffffff817fa1d0 t __tcp_sock_set_cork
+ffffffff817fa260 t tcp_sock_set_cork
+ffffffff817fa300 t __tcp_sock_set_nodelay
+ffffffff817fa370 t tcp_sock_set_nodelay
+ffffffff817fa3d0 t tcp_sock_set_quickack
+ffffffff817fa480 t __tcp_sock_set_quickack
+ffffffff817fa520 t tcp_sock_set_syncnt
+ffffffff817fa570 t tcp_sock_set_user_timeout
+ffffffff817fa5a0 t tcp_sock_set_keepidle_locked
+ffffffff817fa620 t tcp_sock_set_keepidle
+ffffffff817fa6d0 t tcp_sock_set_keepintvl
+ffffffff817fa720 t tcp_sock_set_keepcnt
+ffffffff817fa770 t tcp_set_window_clamp
+ffffffff817fa7c0 t do_tcp_setsockopt
+ffffffff817fb250 t copy_from_sockptr
+ffffffff817fb2c0 t copy_from_sockptr
+ffffffff817fb310 t copy_from_sockptr
+ffffffff817fb380 t tcp_repair_options_est
+ffffffff817fb530 t tcp_repair_set_window
+ffffffff817fb630 t tcp_enable_tx_delay
+ffffffff817fb680 t tcp_setsockopt
+ffffffff817fb6c0 t tcp_get_info
+ffffffff817fbb70 t tcp_get_timestamping_opt_stats
+ffffffff817fc0b0 t do_tcp_getsockopt
+ffffffff817fcff0 t check_zeroed_sockptr
+ffffffff817fd030 t tcp_zerocopy_receive
+ffffffff817fd930 t tcp_bpf_bypass_getsockopt
+ffffffff817fd950 t tcp_getsockopt
+ffffffff817fd9c0 t tcp_done
+ffffffff817fdb20 t tcp_abort
+ffffffff817fdce0 t tcp_orphan_update
+ffffffff817fdd60 t tcp_splice_data_recv
+ffffffff817fddb0 t tcp_fast_path_check
+ffffffff817fde20 t tcp_peek_sndq
+ffffffff817fdee0 t tcp_zerocopy_vm_insert_batch
+ffffffff817fdfa0 t tcp_zc_handle_leftover
+ffffffff817fe170 t tcp_zerocopy_vm_insert_batch_error
+ffffffff817fe240 t tcp_enter_quickack_mode
+ffffffff817fe2a0 t tcp_initialize_rcv_mss
+ffffffff817fe2f0 t tcp_rcv_space_adjust
+ffffffff817fe4c0 t tcp_init_cwnd
+ffffffff817fe4f0 t tcp_mark_skb_lost
+ffffffff817fe580 t tcp_skb_shift
+ffffffff817fe5c0 t tcp_clear_retrans
+ffffffff817fe600 t tcp_enter_loss
+ffffffff817fe960 t tcp_cwnd_reduction
+ffffffff817fea50 t tcp_enter_cwr
+ffffffff817feaf0 t tcp_simple_retransmit
+ffffffff817fecd0 t tcp_enter_recovery
+ffffffff817fede0 t tcp_synack_rtt_meas
+ffffffff817fee90 t tcp_ack_update_rtt
+ffffffff817ff100 t tcp_rearm_rto
+ffffffff817ff200 t tcp_oow_rate_limited
+ffffffff817ff270 t tcp_parse_mss_option
+ffffffff817ff310 t tcp_parse_options
+ffffffff817ff7c0 t tcp_reset
+ffffffff817ff870 t tcp_fin
+ffffffff817ff9e0 t sk_wake_async
+ffffffff817ffa20 t tcp_send_rcvq
+ffffffff817ffba0 t tcp_try_rmem_schedule
+ffffffff818006f0 t tcp_queue_rcv
+ffffffff818007d0 t tcp_data_ready
+ffffffff81800890 t tcp_rbtree_insert
+ffffffff81800910 t tcp_check_space
+ffffffff81800b30 t tcp_rcv_established
+ffffffff81801190 t tcp_ack
+ffffffff81802600 t tcp_data_snd_check
+ffffffff81802650 t tcp_event_data_recv
+ffffffff818028c0 t __tcp_ack_snd_check
+ffffffff81802a90 t tcp_validate_incoming
+ffffffff81802fa0 t tcp_urg
+ffffffff81803080 t tcp_data_queue
+ffffffff81804110 t tcp_drop_reason
+ffffffff81804150 t tcp_init_transfer
+ffffffff818043b0 t tcp_finish_connect
+ffffffff818044c0 t tcp_rcv_state_process
+ffffffff81805130 t tcp_send_challenge_ack
+ffffffff81805200 t tcp_rcv_synrecv_state_fastopen
+ffffffff81805260 t tcp_update_pacing_rate
+ffffffff818052e0 t inet_reqsk_alloc
+ffffffff81805410 t tcp_get_syncookie_mss
+ffffffff818054c0 t tcp_conn_request
+ffffffff81805d80 t tcp_prune_ofo_queue
+ffffffff81805f10 t tcp_try_coalesce
+ffffffff81806010 t tcp_sacktag_write_queue
+ffffffff81806c80 t tcp_process_tlp_ack
+ffffffff81806e20 t tcp_fastretrans_alert
+ffffffff81807cf0 t tcp_sacktag_walk
+ffffffff81808330 t tcp_sacktag_one
+ffffffff818084d0 t tcp_shifted_skb
+ffffffff818086d0 t tcp_rtx_queue_unlink_and_free
+ffffffff81808810 t tcp_rtx_queue_unlink_and_free
+ffffffff81808950 t tcp_mtup_probe_success
+ffffffff81808a70 t tcp_try_undo_recovery
+ffffffff81808bd0 t tcp_try_undo_loss
+ffffffff81808e60 t tcp_mark_head_lost
+ffffffff81808fe0 t tcp_ecn_check_ce
+ffffffff81809130 t tcp_grow_window
+ffffffff81809350 t tcp_gro_dev_warn
+ffffffff818093c0 t tcp_send_dupack
+ffffffff81809530 t tcp_check_urg
+ffffffff81809640 t tcp_rcv_fastopen_synack
+ffffffff818098a0 t tcp_mstamp_refresh
+ffffffff818098e0 t tcp_cwnd_restart
+ffffffff818099d0 t tcp_select_initial_window
+ffffffff81809ac0 t tcp_release_cb
+ffffffff81809c00 t tcp_tsq_write
+ffffffff81809ca0 t tcp_tasklet_func
+ffffffff81809e30 t tcp_wfree
+ffffffff81809fc0 t tcp_pace_kick
+ffffffff8180a080 t tcp_fragment
+ffffffff8180a420 t tcp_adjust_pcount
+ffffffff8180a4e0 t tcp_trim_head
+ffffffff8180a600 t __pskb_trim_head
+ffffffff8180a750 t tcp_mtu_to_mss
+ffffffff8180a7c0 t tcp_mss_to_mtu
+ffffffff8180a810 t tcp_mtup_init
+ffffffff8180a8d0 t tcp_sync_mss
+ffffffff8180aa00 t tcp_current_mss
+ffffffff8180aae0 t tcp_chrono_start
+ffffffff8180ab40 t tcp_chrono_stop
+ffffffff8180ac00 t tcp_schedule_loss_probe
+ffffffff8180ad50 t tcp_send_loss_probe
+ffffffff8180af70 t tcp_write_xmit
+ffffffff8180c130 t __tcp_retransmit_skb
+ffffffff8180c730 t __tcp_push_pending_frames
+ffffffff8180c800 t tcp_push_one
+ffffffff8180c840 t __tcp_select_window
+ffffffff8180ca40 t tcp_skb_collapse_tstamp
+ffffffff8180caa0 t tcp_update_skb_after_send
+ffffffff8180cb90 t tcp_retransmit_skb
+ffffffff8180cc20 t tcp_xmit_retransmit_queue
+ffffffff8180d020 t sk_forced_mem_schedule
+ffffffff8180d120 t tcp_send_fin
+ffffffff8180d3c0 t tcp_send_active_reset
+ffffffff8180d520 t tcp_send_synack
+ffffffff8180d700 t tcp_make_synack
+ffffffff8180dad0 t tcp_options_write
+ffffffff8180dc80 t tcp_connect
+ffffffff8180e7a0 t tcp_send_delayed_ack
+ffffffff8180e880 t tcp_send_ack
+ffffffff8180e8a0 t __tcp_send_ack
+ffffffff8180e9d0 t __tcp_transmit_skb
+ffffffff8180f3b0 t tcp_send_window_probe
+ffffffff8180f480 t tcp_write_wakeup
+ffffffff8180f740 t tcp_event_new_data_sent
+ffffffff8180f7f0 t tcp_send_probe0
+ffffffff8180f910 t tcp_rtx_synack
+ffffffff8180fa90 t tcp_init_tso_segs
+ffffffff8180fad0 t tcp_mtu_check_reprobe
+ffffffff8180fb50 t tcp_can_coalesce_send_queue_head
+ffffffff8180fbd0 t tcp_wmem_free_skb
+ffffffff8180fcc0 t tcp_syn_options
+ffffffff8180fe40 t tcp_clamp_probe0_to_user_timeout
+ffffffff8180fea0 t tcp_delack_timer_handler
+ffffffff8180ff70 t tcp_retransmit_timer
+ffffffff818108b0 t tcp_write_err
+ffffffff81810910 t tcp_write_timer_handler
+ffffffff81810b40 t tcp_syn_ack_timeout
+ffffffff81810b70 t tcp_set_keepalive
+ffffffff81810be0 t tcp_init_xmit_timers
+ffffffff81810c50 t tcp_write_timer
+ffffffff81810d10 t tcp_delack_timer
+ffffffff81810df0 t tcp_keepalive_timer
+ffffffff81811060 t tcp_compressed_ack_kick
+ffffffff81811140 t tcp_out_of_resources
+ffffffff81811200 t tcp_twsk_unique
+ffffffff81811380 t tcp_v4_connect
+ffffffff818117c0 t ip_route_newports
+ffffffff81811840 t tcp_v4_mtu_reduced
+ffffffff81811970 t tcp_req_err
+ffffffff818119e0 t reqsk_put
+ffffffff81811a80 t reqsk_put
+ffffffff81811b20 t tcp_ld_RTO_revert
+ffffffff81811c60 t tcp_v4_err
+ffffffff818120d0 t sock_put
+ffffffff81812110 t sock_put
+ffffffff81812150 t sock_put
+ffffffff81812190 t sock_put
+ffffffff818121d0 t sock_put
+ffffffff81812210 t __tcp_v4_send_check
+ffffffff81812290 t tcp_v4_send_check
+ffffffff81812310 t tcp_v4_reqsk_send_ack
+ffffffff818123e0 t tcp_v4_send_reset
+ffffffff818127a0 t tcp_v4_reqsk_destructor
+ffffffff818127c0 t tcp_v4_route_req
+ffffffff818128b0 t tcp_v4_init_seq
+ffffffff818128f0 t tcp_v4_init_ts_off
+ffffffff81812920 t tcp_v4_send_synack
+ffffffff81812ad0 t tcp_v4_conn_request
+ffffffff81812b30 t tcp_v4_syn_recv_sock
+ffffffff81812e90 t inet_sk_rx_dst_set
+ffffffff81812ed0 t tcp_v4_get_syncookie
+ffffffff81812ee0 t tcp_v4_do_rcv
+ffffffff818130e0 t tcp_checksum_complete
+ffffffff81813140 t tcp_checksum_complete
+ffffffff818131a0 t trace_tcp_bad_csum
+ffffffff81813200 t tcp_v4_early_demux
+ffffffff81813360 t tcp_add_backlog
+ffffffff818137d0 t tcp_filter
+ffffffff818137f0 t tcp_v4_rcv
+ffffffff81814400 t xfrm4_policy_check
+ffffffff81814470 t xfrm4_policy_check
+ffffffff818144c0 t tcp_v4_fill_cb
+ffffffff81814570 t tcp_segs_in
+ffffffff818145d0 t tcp_segs_in
+ffffffff81814630 t tcp_v4_destroy_sock
+ffffffff818147a0 t tcp_seq_start
+ffffffff81814ab0 t tcp_get_idx
+ffffffff81814cd0 t tcp_seq_next
+ffffffff81814e20 t listening_get_next
+ffffffff81814f70 t established_get_next
+ffffffff818150b0 t tcp_seq_stop
+ffffffff81815110 t tcp4_proc_exit
+ffffffff81815140 t tcp_stream_memory_free
+ffffffff81815180 t tcp_v4_pre_connect
+ffffffff818151a0 t tcp_v4_init_sock
+ffffffff818151d0 t tcp_v4_send_ack
+ffffffff81815430 t tcp4_seq_show
+ffffffff81815860 t tcp_timewait_state_process
+ffffffff81815bc0 t tcp_time_wait
+ffffffff81815dd0 t tcp_twsk_destructor
+ffffffff81815de0 t tcp_twsk_purge
+ffffffff81815e50 t tcp_openreq_init_rwin
+ffffffff81815fb0 t tcp_ca_openreq_child
+ffffffff81816070 t tcp_create_openreq_child
+ffffffff81816400 t tcp_check_req
+ffffffff818168f0 t tcp_child_process
+ffffffff81816a80 t tcp_ca_find
+ffffffff81816ad0 t tcp_set_ca_state
+ffffffff81816b70 t tcp_ca_find_key
+ffffffff81816bb0 t tcp_register_congestion_control
+ffffffff81816d60 t tcp_unregister_congestion_control
+ffffffff81816dc0 t tcp_ca_get_key_by_name
+ffffffff81816e10 t tcp_ca_find_autoload
+ffffffff81816ed0 t tcp_ca_get_name_by_key
+ffffffff81816f30 t tcp_assign_congestion_control
+ffffffff81817090 t tcp_init_congestion_control
+ffffffff81817160 t tcp_cleanup_congestion_control
+ffffffff81817190 t tcp_set_default_congestion_control
+ffffffff81817200 t tcp_get_available_congestion_control
+ffffffff81817290 t tcp_get_default_congestion_control
+ffffffff818172d0 t tcp_get_allowed_congestion_control
+ffffffff81817370 t tcp_set_allowed_congestion_control
+ffffffff81817510 t tcp_set_congestion_control
+ffffffff81817770 t tcp_slow_start
+ffffffff818177b0 t tcp_cong_avoid_ai
+ffffffff81817840 t tcp_reno_cong_avoid
+ffffffff81817920 t tcp_reno_ssthresh
+ffffffff81817940 t tcp_reno_undo_cwnd
+ffffffff81817960 t tcp_update_metrics
+ffffffff81817b50 t tcp_get_metrics
+ffffffff81818060 t tcp_init_metrics
+ffffffff818181a0 t tcp_peer_is_proven
+ffffffff81818370 t tcp_fastopen_cache_get
+ffffffff81818420 t tcp_fastopen_cache_set
+ffffffff81818550 t tcp_metrics_nl_cmd_get
+ffffffff81818870 t tcp_metrics_nl_dump
+ffffffff818189d0 t tcp_metrics_nl_cmd_del
+ffffffff81818d00 t tcp_metrics_fill_info
+ffffffff81819080 t tcp_fastopen_init_key_once
+ffffffff81819150 t tcp_fastopen_reset_cipher
+ffffffff81819200 t tcp_fastopen_destroy_cipher
+ffffffff81819230 t tcp_fastopen_ctx_free
+ffffffff81819250 t tcp_fastopen_ctx_destroy
+ffffffff81819280 t tcp_fastopen_get_cipher
+ffffffff81819310 t tcp_fastopen_add_skb
+ffffffff818194c0 t tcp_try_fastopen
+ffffffff81819b80 t tcp_fastopen_cookie_check
+ffffffff81819c40 t tcp_fastopen_active_should_disable
+ffffffff81819ca0 t tcp_fastopen_defer_connect
+ffffffff81819e50 t tcp_fastopen_active_disable
+ffffffff81819e90 t tcp_fastopen_active_disable_ofo_check
+ffffffff81819f80 t tcp_fastopen_active_detect_blackhole
+ffffffff81819ff0 t tcp_rate_skb_sent
+ffffffff8181a080 t tcp_rate_skb_delivered
+ffffffff8181a130 t tcp_rate_gen
+ffffffff8181a240 t tcp_rate_check_app_limited
+ffffffff8181a2b0 t tcp_rack_skb_timeout
+ffffffff8181a300 t tcp_rack_mark_lost
+ffffffff8181a3b0 t tcp_rack_detect_loss
+ffffffff8181a540 t tcp_rack_advance
+ffffffff8181a5b0 t tcp_rack_reo_timeout
+ffffffff8181a6a0 t tcp_rack_update_reo_wnd
+ffffffff8181a730 t tcp_newreno_mark_lost
+ffffffff8181a7c0 t tcp_register_ulp
+ffffffff8181a870 t tcp_unregister_ulp
+ffffffff8181a8d0 t tcp_get_available_ulp
+ffffffff8181a960 t tcp_update_ulp
+ffffffff8181a990 t tcp_cleanup_ulp
+ffffffff8181a9d0 t tcp_set_ulp
+ffffffff8181ab00 t tcp_gso_segment
+ffffffff8181afc0 t refcount_sub_and_test
+ffffffff8181b010 t refcount_sub_and_test
+ffffffff8181b060 t tcp_gro_receive
+ffffffff8181b400 t tcp_gro_complete
+ffffffff8181b470 t tcp4_gro_receive
+ffffffff8181b5e0 t tcp4_gro_complete
+ffffffff8181b6f0 t tcp4_gso_segment.llvm.5580130562379775080
+ffffffff8181b7a0 t __ip4_datagram_connect
+ffffffff8181ba50 t ip4_datagram_connect
+ffffffff8181ba90 t ip4_datagram_release_cb
+ffffffff8181bca0 t raw_hash_sk
+ffffffff8181bdc0 t raw_unhash_sk
+ffffffff8181be60 t raw_v4_match
+ffffffff8181bea0 t raw_local_deliver
+ffffffff8181c0a0 t raw_icmp_error
+ffffffff8181c2a0 t raw_rcv
+ffffffff8181c380 t raw_rcv_skb
+ffffffff8181c3d0 t raw_abort
+ffffffff8181c410 t raw_close
+ffffffff8181c440 t raw_ioctl
+ffffffff8181c4e0 t raw_sk_init
+ffffffff8181c500 t raw_destroy
+ffffffff8181c530 t raw_setsockopt
+ffffffff8181c5d0 t raw_getsockopt
+ffffffff8181c690 t raw_sendmsg
+ffffffff8181cd80 t raw_recvmsg
+ffffffff8181cf50 t raw_bind
+ffffffff8181d040 t raw_seq_start
+ffffffff8181d160 t raw_seq_next
+ffffffff8181d250 t raw_seq_stop
+ffffffff8181d270 t raw_send_hdrinc
+ffffffff8181d6b0 t raw_getfrag
+ffffffff8181d7a0 t ip_select_ident
+ffffffff8181d7f0 t raw_seq_show
+ffffffff8181d8e0 t udp_lib_get_port
+ffffffff8181de70 t udp_lib_lport_inuse
+ffffffff8181df80 t udp_lib_lport_inuse2
+ffffffff8181e060 t udp_v4_get_port
+ffffffff8181e120 t __udp4_lib_lookup
+ffffffff8181e530 t udp4_lib_lookup2
+ffffffff8181e6c0 t udp4_lib_lookup_skb
+ffffffff8181e730 t udp_encap_enable
+ffffffff8181e760 t udp_encap_disable
+ffffffff8181e780 t __udp4_lib_err
+ffffffff8181ebd0 t udp_err
+ffffffff8181ebf0 t udp_flush_pending_frames
+ffffffff8181ec20 t udp4_hwcsum
+ffffffff8181ed60 t udp_set_csum
+ffffffff8181eed0 t udp_push_pending_frames
+ffffffff8181ef40 t udp_send_skb
+ffffffff8181f290 t udp_cmsg_send
+ffffffff8181f340 t udp_sendmsg
+ffffffff8181fd80 t udplite_getfrag
+ffffffff8181fdf0 t udplite_getfrag
+ffffffff8181fe60 t dst_clone
+ffffffff8181fe90 t udp_sendpage
+ffffffff818200f0 t udp_skb_destructor
+ffffffff81820110 t udp_rmem_release
+ffffffff81820220 t __udp_enqueue_schedule_skb
+ffffffff81820470 t udp_destruct_common
+ffffffff818205e0 t udp_init_sock
+ffffffff81820630 t udp_destruct_sock
+ffffffff81820650 t skb_consume_udp
+ffffffff81820700 t udp_ioctl
+ffffffff81820760 t first_packet_length
+ffffffff818208a0 t __skb_recv_udp
+ffffffff81820c10 t udp_read_skb
+ffffffff81820e50 t udp_lib_checksum_complete
+ffffffff81820ec0 t udp_lib_checksum_complete
+ffffffff81820f30 t udp_recvmsg
+ffffffff818213c0 t udp_pre_connect
+ffffffff818213e0 t __udp_disconnect
+ffffffff818214e0 t udp_disconnect
+ffffffff818215f0 t udp_lib_unhash
+ffffffff81821750 t udp_lib_rehash
+ffffffff818218a0 t udp_v4_rehash
+ffffffff81821900 t udp_sk_rx_dst_set
+ffffffff81821950 t __udp4_lib_rcv
+ffffffff81822310 t udp_unicast_rcv_skb
+ffffffff818223c0 t udp_v4_early_demux
+ffffffff81822810 t udp_rcv
+ffffffff81822830 t udp_destroy_sock
+ffffffff818228d0 t udp_lib_setsockopt
+ffffffff81822c40 t udp_setsockopt
+ffffffff81822c80 t udp_lib_getsockopt
+ffffffff81822dd0 t udp_getsockopt
+ffffffff81822e00 t udp_poll
+ffffffff81822e90 t udp_abort
+ffffffff81822fc0 t udp_lib_close
+ffffffff81822fd0 t udp_lib_close
+ffffffff81822fe0 t udp_lib_close
+ffffffff81822ff0 t udp_lib_close
+ffffffff81823000 t udp_lib_hash
+ffffffff81823010 t udp_lib_hash
+ffffffff81823020 t udp_lib_hash
+ffffffff81823030 t udp_lib_hash
+ffffffff81823040 t udp_seq_start
+ffffffff81823150 t udp_seq_next
+ffffffff81823200 t udp_seq_stop
+ffffffff81823250 t udp4_seq_show
+ffffffff81823370 t udp4_proc_exit
+ffffffff818233a0 t udp_flow_hashrnd
+ffffffff81823430 t lookup_reuseport
+ffffffff81823580 t lookup_reuseport
+ffffffff81823780 t __first_packet_length
+ffffffff81823930 t udp_queue_rcv_skb
+ffffffff81823b20 t udp_queue_rcv_one_skb
+ffffffff81823fb0 t udp_get_first
+ffffffff81824080 t udplite_sk_init
+ffffffff818240a0 t udplite_rcv
+ffffffff818240c0 t udplite_err
+ffffffff818240e0 t skb_udp_tunnel_segment
+ffffffff81824600 t __udp_gso_segment
+ffffffff81824b20 t udp_gro_receive
+ffffffff81824ef0 t udp4_gro_receive
+ffffffff818251f0 t udp_gro_complete
+ffffffff81825350 t udp4_gro_complete
+ffffffff81825480 t __udpv4_gso_segment_csum
+ffffffff81825590 t skb_gro_receive_list
+ffffffff81825620 t udp4_ufo_fragment.llvm.599750845429973911
+ffffffff818257d0 t arp_hash
+ffffffff818257f0 t arp_key_eq
+ffffffff81825810 t arp_constructor
+ffffffff81825a40 t parp_redo
+ffffffff81825a50 t arp_is_multicast
+ffffffff81825a70 t arp_mc_map
+ffffffff81825b90 t arp_send
+ffffffff81825bd0 t arp_send_dst
+ffffffff81825c70 t arp_create
+ffffffff81825e40 t arp_xmit
+ffffffff81825e60 t arp_invalidate
+ffffffff81825f90 t arp_ioctl
+ffffffff818261b0 t arp_req_delete
+ffffffff81826310 t arp_req_set
+ffffffff818265b0 t arp_req_get
+ffffffff818266e0 t arp_ifdown
+ffffffff81826700 t arp_solicit
+ffffffff818269f0 t arp_error_report
+ffffffff81826a40 t arp_process
+ffffffff81827030 t arp_ignore
+ffffffff818270b0 t arp_filter
+ffffffff81827190 t arp_fwd_proxy
+ffffffff81827200 t __neigh_lookup
+ffffffff81827270 t __neigh_lookup
+ffffffff818272e0 t arp_accept
+ffffffff81827340 t arp_is_garp
+ffffffff818273b0 t arp_rcv
+ffffffff818274c0 t arp_seq_start
+ffffffff818274e0 t arp_seq_show
+ffffffff818278c0 t arp_netdev_event
+ffffffff81827990 t icmp_global_allow
+ffffffff81827a80 t icmp_out_count
+ffffffff81827ab0 t __icmp_send
+ffffffff81828060 t icmp_route_lookup
+ffffffff818283c0 t icmpv4_xrlim_allow
+ffffffff81828480 t icmp_push_reply
+ffffffff818285a0 t icmp_build_probe
+ffffffff81828910 t icmp_rcv
+ffffffff81828e20 t icmp_echo
+ffffffff81828f10 t ip_icmp_error_rfc4884
+ffffffff818290c0 t icmp_err
+ffffffff81829140 t ip_route_input
+ffffffff81829200 t icmp_glue_bits
+ffffffff81829260 t icmp_reply
+ffffffff81829660 t icmp_discard
+ffffffff81829670 t icmp_unreach
+ffffffff81829870 t icmp_redirect
+ffffffff818298f0 t icmp_timestamp
+ffffffff81829a40 t icmp_tag_validation
+ffffffff81829a70 t icmp_socket_deliver
+ffffffff81829b10 t __ip_dev_find
+ffffffff81829c80 t inet_lookup_ifaddr_rcu
+ffffffff81829cc0 t in_dev_finish_destroy
+ffffffff81829d30 t inet_addr_onlink
+ffffffff81829da0 t inetdev_by_index
+ffffffff81829de0 t inet_ifa_byprefix
+ffffffff81829e60 t devinet_ioctl
+ffffffff8182a470 t inet_abc_len
+ffffffff8182a4e0 t inet_set_ifa
+ffffffff8182a5e0 t inet_gifconf
+ffffffff8182a740 t inet_select_addr
+ffffffff8182a860 t inet_confirm_addr
+ffffffff8182a900 t confirm_addr_indev
+ffffffff8182aa40 t register_inetaddr_notifier
+ffffffff8182aa60 t unregister_inetaddr_notifier
+ffffffff8182aa80 t register_inetaddr_validator_notifier
+ffffffff8182aaa0 t unregister_inetaddr_validator_notifier
+ffffffff8182aac0 t inet_netconf_notify_devconf
+ffffffff8182ac10 t inet_netconf_fill_devconf
+ffffffff8182ae80 t inet_rtm_newaddr
+ffffffff8182b410 t inet_rtm_deladdr
+ffffffff8182b690 t inet_dump_ifaddr
+ffffffff8182bc50 t inet_netconf_get_devconf
+ffffffff8182bf30 t inet_netconf_dump_devconf
+ffffffff8182c1a0 t __inet_del_ifa
+ffffffff8182c520 t rtmsg_ifa
+ffffffff8182c620 t inet_fill_ifaddr
+ffffffff8182c920 t put_cacheinfo
+ffffffff8182c9b0 t inet_rcu_free_ifa
+ffffffff8182ca60 t __inet_insert_ifa
+ffffffff8182cd30 t __devinet_sysctl_register
+ffffffff8182ce90 t __devinet_sysctl_unregister
+ffffffff8182cee0 t devinet_sysctl_forward
+ffffffff8182d150 t devinet_conf_proc
+ffffffff8182d3c0 t ipv4_doint_and_flush
+ffffffff8182d430 t inetdev_event
+ffffffff8182da20 t inetdev_init
+ffffffff8182dc00 t devinet_sysctl_register
+ffffffff8182dca0 t in_dev_rcu_put
+ffffffff8182dd50 t check_lifetime
+ffffffff8182dfa0 t inet_fill_link_af
+ffffffff8182e120 t inet_get_link_af_size
+ffffffff8182e140 t inet_validate_link_af
+ffffffff8182e240 t inet_set_link_af
+ffffffff8182e350 t ip_mc_autojoin_config
+ffffffff8182e420 t inet_sock_destruct
+ffffffff8182e5c0 t inet_listen
+ffffffff8182e680 t inet_release
+ffffffff8182e6f0 t inet_bind
+ffffffff8182e730 t __inet_bind
+ffffffff8182e960 t inet_dgram_connect
+ffffffff8182ea20 t __inet_stream_connect
+ffffffff8182ed10 t inet_stream_connect
+ffffffff8182ed60 t inet_accept
+ffffffff8182eef0 t inet_getname
+ffffffff8182efa0 t inet_send_prepare
+ffffffff8182f070 t inet_sendmsg
+ffffffff8182f100 t inet_sendpage
+ffffffff8182f190 t inet_recvmsg
+ffffffff8182f2b0 t inet_shutdown
+ffffffff8182f3a0 t inet_ioctl
+ffffffff8182f5f0 t inet_register_protosw
+ffffffff8182f6b0 t inet_unregister_protosw
+ffffffff8182f720 t inet_sk_rebuild_header
+ffffffff8182fb80 t inet_sk_set_state
+ffffffff8182fbf0 t inet_sk_state_store
+ffffffff8182fc60 t inet_gso_segment
+ffffffff81830020 t inet_gro_receive
+ffffffff81830300 t inet_current_timestamp
+ffffffff81830390 t inet_recv_error
+ffffffff818303d0 t inet_gro_complete
+ffffffff818304c0 t inet_ctl_sock_create
+ffffffff81830550 t snmp_fold_field
+ffffffff818305c0 t ipip_gso_segment
+ffffffff818305f0 t ipip_gro_receive
+ffffffff81830620 t ipip_gro_complete
+ffffffff81830650 t inet_create
+ffffffff81830a00 t igmp_rcv
+ffffffff81831200 t __ip_mc_inc_group
+ffffffff81831220 t ____ip_mc_inc_group
+ffffffff81831480 t ip_mc_inc_group
+ffffffff818314a0 t ip_mc_check_igmp
+ffffffff81831800 t __ip_mc_dec_group
+ffffffff81831a00 t __igmp_group_dropped
+ffffffff81831bc0 t ip_mc_unmap
+ffffffff81831c40 t ip_mc_remap
+ffffffff81831cc0 t igmpv3_del_delrec
+ffffffff81831e50 t igmp_group_added
+ffffffff81832010 t ip_mc_down
+ffffffff81832100 t ip_mc_init_dev
+ffffffff818321a0 t igmp_gq_timer_expire
+ffffffff81832200 t igmp_ifc_timer_expire
+ffffffff81832690 t ip_mc_up
+ffffffff81832740 t ip_mc_destroy_dev
+ffffffff818328d0 t igmpv3_clear_delrec
+ffffffff81832ab0 t ip_mc_join_group
+ffffffff81832ad0 t __ip_mc_join_group.llvm.5855894635218517833
+ffffffff81832c20 t ip_mc_join_group_ssm
+ffffffff81832c30 t ip_mc_leave_group
+ffffffff81832dd0 t ip_mc_find_dev
+ffffffff81832ee0 t ip_mc_source
+ffffffff818333e0 t ip_mc_add_src
+ffffffff818336b0 t ip_mc_del_src
+ffffffff81833880 t ip_mc_msfilter
+ffffffff81833be0 t ip_mc_msfget
+ffffffff81833eb0 t copy_to_sockptr_offset
+ffffffff81833f20 t ip_mc_gsfget
+ffffffff81834160 t ip_mc_sf_allow
+ffffffff81834270 t ip_mc_drop_socket
+ffffffff818343a0 t ip_check_mc_rcu
+ffffffff81834480 t igmp_gq_start_timer
+ffffffff81834500 t igmp_timer_expire
+ffffffff81834720 t igmp_send_report
+ffffffff818349d0 t igmpv3_send_report
+ffffffff81834b00 t add_grec
+ffffffff81835050 t add_grec
+ffffffff81835550 t igmpv3_sendpack
+ffffffff818355b0 t igmpv3_newpack
+ffffffff818358c0 t is_in
+ffffffff818359d0 t is_in
+ffffffff81835ad0 t ip_mc_validate_checksum
+ffffffff81835bc0 t igmpv3_add_delrec
+ffffffff81835d20 t igmp_ifc_event
+ffffffff81835df0 t ip_mc_del1_src
+ffffffff81835f20 t sf_setstate
+ffffffff81836090 t sf_setstate
+ffffffff81836260 t igmp_mc_seq_start
+ffffffff81836370 t igmp_mc_seq_stop
+ffffffff818363a0 t igmp_mc_seq_next
+ffffffff81836480 t igmp_mc_seq_show
+ffffffff818365e0 t igmp_mcf_seq_start
+ffffffff818367c0 t igmp_mcf_seq_stop
+ffffffff81836810 t igmp_mcf_seq_next
+ffffffff818369b0 t igmp_mcf_seq_show
+ffffffff81836a10 t igmp_netdev_event
+ffffffff81836b30 t fib_new_table
+ffffffff81836c00 t fib_get_table
+ffffffff81836c40 t fib_unmerge
+ffffffff81836d40 t fib_flush
+ffffffff81836dc0 t inet_addr_type_table
+ffffffff81836f50 t inet_addr_type
+ffffffff818370d0 t inet_dev_addr_type
+ffffffff81837270 t inet_addr_type_dev_table
+ffffffff818373f0 t fib_compute_spec_dst
+ffffffff81837700 t fib_info_nh_uses_dev
+ffffffff81837760 t fib_validate_source
+ffffffff81837c10 t ip_rt_ioctl
+ffffffff81838150 t fib_gw_from_via
+ffffffff81838230 t ip_valid_fib_dump_req
+ffffffff81838470 t fib_add_ifaddr
+ffffffff81838a50 t fib_modify_prefix_metric
+ffffffff81838d70 t fib_del_ifaddr
+ffffffff81839740 t inet_rtm_newroute
+ffffffff81839870 t inet_rtm_delroute
+ffffffff818399f0 t inet_dump_fib
+ffffffff81839c70 t ip_fib_net_exit
+ffffffff81839de0 t nl_fib_input
+ffffffff81839fe0 t fib_netdev_event
+ffffffff8183a210 t fib_disable_ip
+ffffffff8183a2b0 t fib_inetaddr_event
+ffffffff8183a3b0 t rtm_to_fib_config
+ffffffff8183a7d0 t fib_nh_common_release
+ffffffff8183a8b0 t rt_fibinfo_free_cpus
+ffffffff8183a940 t fib_nh_release
+ffffffff8183a960 t free_fib_info
+ffffffff8183a9a0 t free_fib_info_rcu
+ffffffff8183aa40 t fib_release_info
+ffffffff8183abb0 t ip_fib_check_default
+ffffffff8183ac30 t fib_nlmsg_size
+ffffffff8183ae00 t fib_info_nhc
+ffffffff8183ae60 t rtmsg_fib
+ffffffff8183afd0 t fib_dump_info
+ffffffff8183b2e0 t fib_nh_common_init
+ffffffff8183b380 t fib_nh_init
+ffffffff8183b470 t fib_nh_match
+ffffffff8183b540 t fib_metrics_match
+ffffffff8183b6a0 t fib_check_nh
+ffffffff8183bcd0 t fib_info_update_nhc_saddr
+ffffffff8183bd20 t fib_result_prefsrc
+ffffffff8183bd90 t fib_create_info
+ffffffff8183c4b0 t fib_info_hash_move
+ffffffff8183c680 t nexthop_get
+ffffffff8183c6c0 t nexthop_get
+ffffffff8183c700 t fib_valid_prefsrc
+ffffffff8183c780 t fib_find_info
+ffffffff8183c960 t fib_info_hashfn
+ffffffff8183c9c0 t fib_nexthop_info
+ffffffff8183cb70 t fib_add_nexthop
+ffffffff8183cc70 t fib_sync_down_addr
+ffffffff8183ccf0 t fib_nhc_update_mtu
+ffffffff8183cd80 t fib_sync_mtu
+ffffffff8183ce50 t fib_sync_down_dev
+ffffffff8183d030 t fib_sync_up
+ffffffff8183d220 t fib_select_path
+ffffffff8183d630 t fib_detect_death
+ffffffff8183d7a0 t fib_alias_hw_flags_set
+ffffffff8183d990 t fib_table_insert
+ffffffff8183df80 t call_fib_entry_notifiers
+ffffffff8183e010 t fib_insert_alias
+ffffffff8183e580 t fib_remove_alias
+ffffffff8183e820 t fib_lookup_good_nhc
+ffffffff8183e880 t fib_table_lookup
+ffffffff8183ed70 t trace_fib_table_lookup
+ffffffff8183edd0 t nexthop_get_nhc_lookup
+ffffffff8183eee0 t fib_table_delete
+ffffffff8183f280 t fib_trie_unmerge
+ffffffff8183f710 t fib_trie_table
+ffffffff8183f780 t fib_table_flush_external
+ffffffff8183f9c0 t resize
+ffffffff81840880 t __node_free_rcu
+ffffffff818408b0 t fib_table_flush
+ffffffff81840c80 t fib_info_notify_update
+ffffffff81840dd0 t fib_notify
+ffffffff81841010 t fib_free_table
+ffffffff81841030 t __trie_free_rcu.llvm.13468429765488858648
+ffffffff81841050 t fib_table_dump
+ffffffff81841430 t fib_triestat_seq_show
+ffffffff81841a60 t __alias_free_mem
+ffffffff81841a80 t put_child
+ffffffff81841b70 t replace
+ffffffff81841c90 t update_children
+ffffffff81841ce0 t fib_trie_seq_start
+ffffffff81841e40 t fib_trie_seq_stop
+ffffffff81841e50 t fib_trie_seq_next
+ffffffff81841fd0 t fib_trie_seq_show
+ffffffff81842300 t fib_route_seq_start
+ffffffff81842490 t fib_route_seq_stop
+ffffffff818424a0 t fib_route_seq_next
+ffffffff818425a0 t fib_route_seq_show
+ffffffff818427f0 t call_fib4_notifier
+ffffffff81842810 t call_fib4_notifiers
+ffffffff81842890 t fib4_seq_read
+ffffffff81842900 t fib4_dump
+ffffffff81842940 t inet_frags_init
+ffffffff818429b0 t inet_frags_fini
+ffffffff81842a10 t fqdir_init
+ffffffff81842ac0 t fqdir_exit
+ffffffff81842b20 t fqdir_work_fn
+ffffffff81842b80 t inet_frag_kill
+ffffffff81842e80 t inet_frag_rbtree_purge
+ffffffff81842f00 t inet_frag_destroy
+ffffffff81843000 t inet_frag_destroy_rcu
+ffffffff81843050 t inet_frag_find
+ffffffff818435e0 t inet_frag_queue_insert
+ffffffff81843760 t inet_frag_reasm_prepare
+ffffffff81843a30 t inet_frag_reasm_finish
+ffffffff81843c60 t inet_frag_pull_head
+ffffffff81843cf0 t inet_frags_free_cb
+ffffffff81843d90 t fqdir_free_fn
+ffffffff81843e10 t ping_hash
+ffffffff81843e20 t ping_get_port
+ffffffff81843fa0 t ping_unhash
+ffffffff81844040 t ping_init_sock
+ffffffff818440f0 t ping_close
+ffffffff81844100 t ping_bind
+ffffffff81844460 t ping_err
+ffffffff81844700 t ping_lookup
+ffffffff81844800 t ping_getfrag
+ffffffff818448a0 t ping_common_sendmsg
+ffffffff81844990 t ping_recvmsg
+ffffffff81844cc0 t ping_queue_rcv_skb
+ffffffff81844d30 t ping_rcv
+ffffffff81844e00 t ping_pre_connect
+ffffffff81844e20 t ping_v4_sendmsg
+ffffffff818454a0 t ping_seq_start
+ffffffff818454f0 t ping_get_idx
+ffffffff818455e0 t ping_seq_next
+ffffffff818456c0 t ping_seq_stop
+ffffffff818456e0 t ping_proc_exit
+ffffffff81845710 t ping_v4_push_pending_frames
+ffffffff818457b0 t ping_v4_seq_start
+ffffffff81845800 t ping_v4_seq_show
+ffffffff81845920 t iptunnel_xmit
+ffffffff81845b30 t __iptunnel_pull_header
+ffffffff81845cc0 t iptunnel_metadata_reply
+ffffffff81845da0 t iptunnel_handle_offloads
+ffffffff81845e60 t skb_tunnel_check_pmtu
+ffffffff81846140 t ip_tunnel_need_metadata
+ffffffff81846170 t ip_tunnel_unneed_metadata
+ffffffff81846190 t ip_tunnel_parse_protocol
+ffffffff818461f0 t ip_tunnel_netlink_encap_parms
+ffffffff81846270 t ip_tunnel_netlink_parms
+ffffffff81846310 t iptunnel_pmtud_build_icmp
+ffffffff81846600 t iptunnel_pmtud_build_icmpv6
+ffffffff81846930 t gre_gso_segment
+ffffffff81846d60 t gre_gro_receive
+ffffffff81847030 t gre_gro_complete
+ffffffff818470d0 t __skb_gro_checksum_validate_complete
+ffffffff81847120 t skb_gro_incr_csum_unnecessary
+ffffffff81847190 t ip_fib_metrics_init
+ffffffff81847420 t rtm_getroute_parse_ip_proto
+ffffffff81847480 t nexthop_free_rcu
+ffffffff81847580 t nexthop_find_by_id
+ffffffff818475d0 t nexthop_select_path
+ffffffff81847830 t nexthop_for_each_fib6_nh
+ffffffff818478c0 t fib6_check_nexthop
+ffffffff81847960 t fib_check_nexthop
+ffffffff81847a30 t register_nexthop_notifier
+ffffffff81847aa0 t nexthops_dump
+ffffffff81847bd0 t unregister_nexthop_notifier
+ffffffff81847c30 t nexthop_set_hw_flags
+ffffffff81847cc0 t nexthop_bucket_set_hw_flags
+ffffffff81847d90 t nexthop_res_grp_activity_update
+ffffffff81847e50 t nh_notifier_info_init
+ffffffff81848030 t nh_notifier_mpath_info_init
+ffffffff81848170 t rtm_new_nexthop
+ffffffff8184a6a0 t rtm_del_nexthop
+ffffffff8184a760 t rtm_get_nexthop
+ffffffff8184a8a0 t rtm_dump_nexthop
+ffffffff8184abb0 t rtm_get_nexthop_bucket
+ffffffff8184afe0 t rtm_dump_nexthop_bucket
+ffffffff8184b4a0 t remove_nexthop
+ffffffff8184b6b0 t call_nexthop_notifiers
+ffffffff8184b810 t nexthop_notify
+ffffffff8184b980 t __remove_nexthop
+ffffffff8184bb00 t nh_fill_node
+ffffffff8184bf60 t remove_nexthop_from_groups
+ffffffff8184c440 t replace_nexthop_grp_res
+ffffffff8184c590 t nh_res_group_rebalance
+ffffffff8184c750 t nh_res_table_upkeep
+ffffffff8184cb30 t __call_nexthop_res_bucket_notifiers
+ffffffff8184cd50 t nh_fill_res_bucket
+ffffffff8184cf80 t nh_netdev_event
+ffffffff8184d110 t nh_res_table_upkeep_dw
+ffffffff8184d130 t replace_nexthop_single_notify
+ffffffff8184d2a0 t nh_valid_get_del_req
+ffffffff8184d3c0 t rtm_dump_nexthop_bucket_nh
+ffffffff8184d570 t ip_tunnel_lookup
+ffffffff8184d810 t ip_tunnel_rcv
+ffffffff8184dfe0 t ip_tunnel_encap_add_ops
+ffffffff8184e010 t ip_tunnel_encap_del_ops
+ffffffff8184e050 t ip_tunnel_encap_setup
+ffffffff8184e130 t ip_md_tunnel_xmit
+ffffffff8184e740 t tnl_update_pmtu
+ffffffff8184ea90 t ip_tunnel_xmit
+ffffffff8184f690 t ip_tunnel_ctl
+ffffffff8184fcd0 t ip_tunnel_update
+ffffffff8184fe70 t ip_tunnel_siocdevprivate
+ffffffff8184ff60 t __ip_tunnel_change_mtu
+ffffffff8184ffb0 t ip_tunnel_change_mtu
+ffffffff8184fff0 t ip_tunnel_dellink
+ffffffff81850090 t ip_tunnel_get_link_net
+ffffffff818500b0 t ip_tunnel_get_iflink
+ffffffff818500d0 t ip_tunnel_init_net
+ffffffff818502f0 t __ip_tunnel_create
+ffffffff818504c0 t ip_tunnel_bind_dev
+ffffffff81850690 t ip_tunnel_delete_nets
+ffffffff81850770 t ip_tunnel_newlink
+ffffffff81850ab0 t ip_tunnel_changelink
+ffffffff81850c60 t ip_tunnel_init
+ffffffff81850d90 t ip_tunnel_dev_free
+ffffffff81850dd0 t ip_tunnel_uninit
+ffffffff81850e70 t ip_tunnel_setup
+ffffffff81850e90 t proc_tcp_available_ulp
+ffffffff81850f80 t ipv4_ping_group_range
+ffffffff818510e0 t ipv4_local_port_range
+ffffffff81851240 t ipv4_fwd_update_priority
+ffffffff81851290 t proc_tcp_congestion_control
+ffffffff81851390 t proc_tcp_available_congestion_control
+ffffffff81851480 t proc_allowed_congestion_control
+ffffffff81851580 t proc_tcp_fastopen_key
+ffffffff818519f0 t proc_tfo_blackhole_detect_timeout
+ffffffff81851a20 t ipv4_privileged_ports
+ffffffff81851b00 t proc_tcp_ehash_entries
+ffffffff81851bc0 t sockstat_seq_show
+ffffffff81851d10 t netstat_seq_show
+ffffffff818522b0 t snmp_seq_show
+ffffffff81853d20 t fib4_rule_default
+ffffffff81853d80 t fib4_rules_dump
+ffffffff81853da0 t fib4_rules_seq_read
+ffffffff81853dc0 t __fib_lookup
+ffffffff81853e40 t fib4_rule_action
+ffffffff81853ec0 t fib4_rule_suppress
+ffffffff81853f90 t fib4_rule_match
+ffffffff81854050 t fib4_rule_configure
+ffffffff818541e0 t fib4_rule_delete
+ffffffff81854260 t fib4_rule_compare
+ffffffff818542e0 t fib4_rule_fill
+ffffffff818543b0 t fib4_rule_nlmsg_payload
+ffffffff818543c0 t fib4_rule_flush_cache
+ffffffff818543e0 t fib_empty_table
+ffffffff81854430 t ipip_tunnel_setup
+ffffffff818544b0 t ipip_tunnel_validate
+ffffffff818544f0 t ipip_newlink
+ffffffff81854600 t ipip_changelink
+ffffffff81854740 t ipip_get_size
+ffffffff81854750 t ipip_fill_info
+ffffffff818549a0 t ipip_tunnel_init
+ffffffff818549f0 t ipip_tunnel_xmit
+ffffffff81854b00 t ipip_tunnel_ctl
+ffffffff81854b70 t ipip_rcv
+ffffffff81854d60 t ipip_rcv
+ffffffff81854e50 t ipip_err
+ffffffff81854f90 t gre_add_protocol
+ffffffff81854fd0 t gre_del_protocol
+ffffffff81855020 t gre_parse_header
+ffffffff818554a0 t gre_rcv
+ffffffff81855540 t gre_rcv
+ffffffff81855960 t gre_rcv
+ffffffff81855dd0 t gre_err
+ffffffff81855e50 t gre_err
+ffffffff818560c0 t gretap_fb_dev_create
+ffffffff81856240 t ipgre_newlink
+ffffffff81856380 t ipgre_tap_setup
+ffffffff818563e0 t ipgre_tap_validate
+ffffffff81856490 t ipgre_changelink
+ffffffff818566c0 t ipgre_get_size
+ffffffff818566d0 t ipgre_fill_info
+ffffffff81856a70 t gre_tap_init
+ffffffff81856b60 t gre_tap_xmit
+ffffffff81856d00 t gre_fill_metadata_dst
+ffffffff81856e70 t gre_fb_xmit
+ffffffff81857020 t gre_build_header
+ffffffff818571d0 t gre_build_header
+ffffffff81857380 t ipgre_tunnel_validate
+ffffffff818573e0 t ipgre_netlink_parms
+ffffffff81857620 t ipgre_tunnel_setup
+ffffffff81857650 t ipgre_tunnel_init
+ffffffff81857790 t ipgre_xmit
+ffffffff818579d0 t ipgre_tunnel_ctl
+ffffffff81857cd0 t ipgre_header
+ffffffff81857dc0 t ipgre_header_parse
+ffffffff81857df0 t erspan_setup
+ffffffff81857e50 t erspan_validate
+ffffffff81857f60 t erspan_newlink
+ffffffff818581b0 t erspan_changelink
+ffffffff81858420 t erspan_fill_info
+ffffffff81858540 t erspan_tunnel_init
+ffffffff818585d0 t erspan_xmit
+ffffffff81858ca0 t pskb_trim
+ffffffff81858ce0 t erspan_build_header
+ffffffff81858dc0 t erspan_build_header
+ffffffff81858ea0 t erspan_build_header_v2
+ffffffff81858ff0 t erspan_build_header_v2
+ffffffff81859140 t __ipgre_rcv
+ffffffff81859330 t vti_tunnel_setup
+ffffffff81859370 t vti_tunnel_validate
+ffffffff81859380 t vti_newlink
+ffffffff81859470 t vti_changelink
+ffffffff81859550 t vti_get_size
+ffffffff81859560 t vti_fill_info
+ffffffff81859690 t vti_tunnel_init
+ffffffff818596f0 t vti_tunnel_xmit
+ffffffff81859d10 t vti_tunnel_ctl
+ffffffff81859da0 t vti_rcv_proto
+ffffffff81859de0 t vti_input_proto
+ffffffff81859df0 t vti_rcv_cb
+ffffffff81859f80 t vti4_err
+ffffffff8185a140 t vti_input
+ffffffff8185a230 t esp_output_head
+ffffffff8185a7b0 t __skb_fill_page_desc
+ffffffff8185a800 t __skb_fill_page_desc
+ffffffff8185a850 t esp_output_tail
+ffffffff8185ad40 t esp_output_done_esn
+ffffffff8185ad90 t esp_output_done_esn
+ffffffff8185ade0 t esp_output_done
+ffffffff8185af20 t esp_output_done
+ffffffff8185b110 t esp_ssg_unref
+ffffffff8185b1d0 t esp_ssg_unref
+ffffffff8185b290 t esp_input_done2
+ffffffff8185b580 t esp4_rcv_cb
+ffffffff8185b590 t esp4_err
+ffffffff8185b6b0 t esp_init_state
+ffffffff8185bd10 t esp_destroy
+ffffffff8185bd30 t esp_input
+ffffffff8185c060 t esp_output
+ffffffff8185c1e0 t esp_input_done_esn
+ffffffff8185c250 t esp_input_done_esn
+ffffffff8185c2c0 t esp_input_done
+ffffffff8185c2f0 t esp_input_done
+ffffffff8185c320 t xfrm4_tunnel_register
+ffffffff8185c3d0 t xfrm4_tunnel_deregister
+ffffffff8185c470 t tunnel64_rcv
+ffffffff8185c510 t tunnel64_err
+ffffffff8185c580 t tunnel4_rcv
+ffffffff8185c620 t tunnel4_err
+ffffffff8185c690 t inet_diag_msg_common_fill
+ffffffff8185c730 t inet_diag_msg_attrs_fill
+ffffffff8185c970 t inet_sk_diag_fill
+ffffffff8185ce20 t inet_diag_find_one_icsk
+ffffffff8185d090 t inet_diag_dump_one_icsk
+ffffffff8185d1d0 t sk_diag_fill
+ffffffff8185d590 t inet_diag_bc_sk
+ffffffff8185d9b0 t inet_diag_dump_icsk
+ffffffff8185dfe0 t inet_diag_register
+ffffffff8185e050 t inet_diag_unregister
+ffffffff8185e0a0 t inet_diag_rcv_msg_compat
+ffffffff8185e1d0 t inet_diag_handler_cmd
+ffffffff8185e290 t inet_diag_handler_get_info
+ffffffff8185e590 t inet_diag_dump_start
+ffffffff8185e5b0 t inet_diag_dump
+ffffffff8185e5d0 t inet_diag_dump_done
+ffffffff8185e5f0 t inet_diag_cmd_exact
+ffffffff8185e850 t __inet_diag_dump_start
+ffffffff8185eb30 t __inet_diag_dump
+ffffffff8185ec50 t inet_diag_dump_start_compat
+ffffffff8185ec70 t inet_diag_dump_compat
+ffffffff8185ed20 t tcp_diag_dump
+ffffffff8185ed40 t tcp_diag_dump_one
+ffffffff8185ed60 t tcp_diag_get_info
+ffffffff8185edd0 t tcp_diag_get_aux
+ffffffff8185eec0 t tcp_diag_get_aux_size
+ffffffff8185ef20 t tcp_diag_destroy
+ffffffff8185ef70 t udplite_diag_dump
+ffffffff8185ef90 t udplite_diag_dump_one
+ffffffff8185efb0 t udp_diag_get_info
+ffffffff8185efe0 t udplite_diag_destroy
+ffffffff8185f000 t udp_dump
+ffffffff8185f190 t udp_dump_one
+ffffffff8185f390 t __udp_diag_destroy
+ffffffff8185f530 t udp_diag_dump
+ffffffff8185f550 t udp_diag_dump_one
+ffffffff8185f570 t udp_diag_destroy
+ffffffff8185f590 t cubictcp_recalc_ssthresh
+ffffffff8185f5f0 t cubictcp_cong_avoid
+ffffffff8185f8f0 t cubictcp_state
+ffffffff8185f970 t cubictcp_cwnd_event
+ffffffff8185f9b0 t cubictcp_acked
+ffffffff8185fbe0 t cubictcp_init
+ffffffff8185fc80 t xfrm4_dst_lookup
+ffffffff8185fd20 t xfrm4_get_saddr
+ffffffff8185fdd0 t xfrm4_fill_dst
+ffffffff8185feb0 t xfrm4_dst_destroy
+ffffffff8185ff70 t xfrm4_dst_ifdown
+ffffffff8185ff90 t xfrm4_update_pmtu
+ffffffff8185ffb0 t xfrm4_redirect
+ffffffff8185ffd0 t xfrm4_transport_finish
+ffffffff81860130 t xfrm4_udp_encap_rcv
+ffffffff818602d0 t xfrm4_rcv
+ffffffff81860310 t xfrm4_rcv_encap_finish2
+ffffffff81860370 t xfrm4_output
+ffffffff81860390 t xfrm4_local_error
+ffffffff818603e0 t xfrm4_rcv_encap
+ffffffff81860500 t xfrm4_protocol_register
+ffffffff81860620 t xfrm4_protocol_deregister
+ffffffff81860770 t xfrm4_esp_rcv
+ffffffff818607f0 t xfrm4_esp_err
+ffffffff81860860 t xfrm4_ah_rcv
+ffffffff818608e0 t xfrm4_ah_err
+ffffffff81860950 t xfrm4_ipcomp_rcv
+ffffffff818609d0 t xfrm4_ipcomp_err
+ffffffff81860a40 t xfrm4_rcv_cb.llvm.9130646183775884454
+ffffffff81860ad0 t xfrm_selector_match
+ffffffff81860e30 t __xfrm_dst_lookup
+ffffffff81860ec0 t xfrm_policy_alloc
+ffffffff81860fe0 t xfrm_policy_timer
+ffffffff81861290 t xfrm_policy_queue_process
+ffffffff81861810 t xfrm_policy_destroy
+ffffffff81861860 t xfrm_policy_destroy_rcu
+ffffffff81861880 t xfrm_spd_getinfo
+ffffffff818618d0 t xfrm_policy_hash_rebuild
+ffffffff81861900 t xfrm_policy_insert
+ffffffff81861cd0 t policy_hash_bysel
+ffffffff81861e60 t xfrm_policy_insert_list
+ffffffff81862060 t xfrm_policy_inexact_insert
+ffffffff81862370 t xfrm_policy_requeue
+ffffffff81862580 t xfrm_policy_kill
+ffffffff81862720 t xfrm_policy_bysel_ctx
+ffffffff81862b90 t __xfrm_policy_bysel_ctx
+ffffffff81862cb0 t xfrm_policy_byid
+ffffffff81862ef0 t xfrm_policy_flush
+ffffffff81863110 t xfrm_audit_policy_delete
+ffffffff818631e0 t xfrm_policy_walk
+ffffffff81863340 t xfrm_policy_walk_init
+ffffffff81863370 t xfrm_policy_walk_done
+ffffffff818633e0 t xfrm_policy_delete
+ffffffff81863510 t xfrm_sk_policy_insert
+ffffffff818637a0 t __xfrm_sk_clone_policy
+ffffffff81863b80 t xfrm_lookup_with_ifid
+ffffffff81864600 t xfrm_sk_policy_lookup
+ffffffff818646f0 t xfrm_resolve_and_create_bundle
+ffffffff81865490 t xfrm_pols_put
+ffffffff81865510 t xfrm_lookup
+ffffffff81865530 t xfrm_lookup_route
+ffffffff818655d0 t __xfrm_decode_session
+ffffffff81865ce0 t __xfrm_policy_check
+ffffffff818666f0 t xfrm_policy_lookup
+ffffffff81866b40 t xfrm_secpath_reject
+ffffffff81866b90 t __xfrm_route_forward
+ffffffff81866d40 t xfrm_dst_ifdown
+ffffffff81866db0 t xfrm_policy_register_afinfo
+ffffffff81866ea0 t xfrm_dst_check
+ffffffff81867250 t xfrm_default_advmss
+ffffffff818672a0 t xfrm_mtu
+ffffffff81867320 t xfrm_negative_advice
+ffffffff81867350 t xfrm_link_failure
+ffffffff81867360 t xfrm_neigh_lookup
+ffffffff818673f0 t xfrm_confirm_neigh
+ffffffff81867480 t xfrm_policy_unregister_afinfo
+ffffffff81867580 t xfrm_if_register_cb
+ffffffff818675b0 t xfrm_if_unregister_cb
+ffffffff818675d0 t xfrm_audit_policy_add
+ffffffff818676a0 t xfrm_audit_common_policyinfo
+ffffffff818677c0 t xfrm_migrate
+ffffffff818685d0 t __xfrm6_pref_hash
+ffffffff81868700 t xfrm_policy_inexact_alloc_bin
+ffffffff81868c90 t xfrm_policy_inexact_alloc_chain
+ffffffff81868e90 t __xfrm_policy_inexact_prune_bin
+ffffffff818691a0 t xfrm_pol_bin_key
+ffffffff81869200 t xfrm_pol_bin_obj
+ffffffff81869260 t xfrm_pol_bin_cmp
+ffffffff818692b0 t xfrm_policy_inexact_insert_node
+ffffffff81869900 t xfrm_policy_inexact_list_reinsert
+ffffffff81869c40 t xfrm_policy_inexact_gc_tree
+ffffffff81869ce0 t xfrm_policy_lookup_inexact_addr
+ffffffff81869e40 t xdst_queue_output
+ffffffff8186a060 t policy_hash_direct
+ffffffff8186a1b0 t xfrm_policy_fini
+ffffffff8186a360 t xfrm_hash_resize
+ffffffff8186a7a0 t xfrm_hash_resize
+ffffffff8186ab80 t xfrm_hash_rebuild
+ffffffff8186afe0 t xfrm_register_type
+ffffffff8186b100 t xfrm_state_get_afinfo
+ffffffff8186b140 t xfrm_unregister_type
+ffffffff8186b250 t xfrm_register_type_offload
+ffffffff8186b2c0 t xfrm_unregister_type_offload
+ffffffff8186b320 t xfrm_state_free
+ffffffff8186b340 t xfrm_state_alloc
+ffffffff8186b460 t xfrm_timer_handler
+ffffffff8186b780 t xfrm_replay_timer_handler
+ffffffff8186b810 t __xfrm_state_destroy
+ffffffff8186b8a0 t ___xfrm_state_destroy
+ffffffff8186b980 t __xfrm_state_delete
+ffffffff8186bb50 t xfrm_state_delete
+ffffffff8186bb90 t xfrm_state_flush
+ffffffff8186be10 t xfrm_state_hold
+ffffffff8186be50 t xfrm_audit_state_delete
+ffffffff8186bf90 t xfrm_dev_state_flush
+ffffffff8186c180 t xfrm_sad_getinfo
+ffffffff8186c1d0 t xfrm_state_find
+ffffffff8186d2b0 t __xfrm_state_lookup.llvm.16903622493477125495
+ffffffff8186d4f0 t km_query
+ffffffff8186d580 t xfrm_stateonly_find
+ffffffff8186d760 t xfrm_state_lookup_byspi
+ffffffff8186d810 t xfrm_state_insert
+ffffffff8186d850 t __xfrm_state_bump_genids.llvm.16903622493477125495
+ffffffff8186d990 t __xfrm_state_insert.llvm.16903622493477125495
+ffffffff8186dc70 t xfrm_state_add
+ffffffff8186e080 t __find_acq_core.llvm.16903622493477125495
+ffffffff8186e550 t xfrm_migrate_state_find
+ffffffff8186e7d0 t xfrm_state_migrate
+ffffffff8186ef20 t xfrm_init_state
+ffffffff8186ef50 t xfrm_state_update
+ffffffff8186f4a0 t xfrm_state_check_expire
+ffffffff8186f5f0 t km_state_expired
+ffffffff8186f6b0 t xfrm_state_lookup
+ffffffff8186f710 t xfrm_state_lookup_byaddr
+ffffffff8186f780 t __xfrm_state_lookup_byaddr.llvm.16903622493477125495
+ffffffff8186f8f0 t xfrm_find_acq
+ffffffff8186f980 t xfrm_find_acq_byseq
+ffffffff8186fa60 t xfrm_get_acqseq
+ffffffff8186fa90 t verify_spi_info
+ffffffff8186fad0 t xfrm_alloc_spi
+ffffffff8186fed0 t xfrm_state_walk
+ffffffff81870150 t xfrm_state_walk_init
+ffffffff81870180 t xfrm_state_walk_done
+ffffffff818701f0 t km_policy_notify
+ffffffff81870260 t km_state_notify
+ffffffff818702d0 t km_new_mapping
+ffffffff81870420 t km_policy_expired
+ffffffff818704e0 t km_migrate
+ffffffff81870590 t km_report
+ffffffff81870620 t xfrm_user_policy
+ffffffff81870850 t xfrm_register_km
+ffffffff818708b0 t xfrm_unregister_km
+ffffffff81870910 t xfrm_state_register_afinfo
+ffffffff81870980 t xfrm_state_unregister_afinfo
+ffffffff81870a10 t xfrm_state_afinfo_get_rcu
+ffffffff81870a40 t xfrm_flush_gc
+ffffffff81870a60 t xfrm_state_delete_tunnel
+ffffffff81870b10 t xfrm_state_mtu
+ffffffff81870bc0 t __xfrm_init_state
+ffffffff818710a0 t xfrm_state_fini
+ffffffff81871190 t xfrm_audit_state_add
+ffffffff818712d0 t xfrm_audit_state_replay_overflow
+ffffffff818713e0 t xfrm_audit_state_replay
+ffffffff81871500 t xfrm_audit_state_notfound_simple
+ffffffff81871600 t xfrm_audit_state_notfound
+ffffffff81871730 t xfrm_audit_state_icvfail
+ffffffff818718a0 t xfrm_state_gc_task
+ffffffff81871930 t __xfrm_dst_hash
+ffffffff81871b00 t __xfrm_src_hash
+ffffffff81871cc0 t xfrm_hash_alloc
+ffffffff81871d10 t xfrm_hash_free
+ffffffff81871d50 t xfrm_input_register_afinfo
+ffffffff81871dd0 t xfrm_input_unregister_afinfo
+ffffffff81871e50 t secpath_set
+ffffffff81871ec0 t xfrm_parse_spi
+ffffffff81871ff0 t xfrm_input
+ffffffff818734b0 t xfrm_offload
+ffffffff81873500 t xfrm_input_resume
+ffffffff81873520 t xfrm_trans_queue_net
+ffffffff818735d0 t xfrm_trans_queue
+ffffffff81873680 t xfrm_trans_reinject
+ffffffff81873780 t pktgen_xfrm_outer_mode_output
+ffffffff81873790 t xfrm_outer_mode_output
+ffffffff81874070 t xfrm_output_resume
+ffffffff818744b0 t xfrm_output
+ffffffff81874630 t xfrm_local_error
+ffffffff81874690 t xfrm_inner_extract_output
+ffffffff81874c10 t xfrm6_hdr_offset
+ffffffff81874d90 t xfrm_replay_seqhi
+ffffffff81874de0 t xfrm_replay_notify
+ffffffff81875010 t xfrm_replay_advance
+ffffffff81875310 t xfrm_replay_check
+ffffffff81875400 t xfrm_replay_check_esn
+ffffffff818754e0 t xfrm_replay_recheck
+ffffffff81875640 t xfrm_replay_overflow
+ffffffff818757b0 t xfrm_init_replay
+ffffffff81875850 t xfrm_dev_event
+ffffffff818758c0 t xfrm_statistics_seq_show
+ffffffff818759f0 t xfrm_proc_fini
+ffffffff81875a10 t xfrm_aalg_get_byid
+ffffffff81875b30 t xfrm_ealg_get_byid
+ffffffff81875c70 t xfrm_calg_get_byid
+ffffffff81875d10 t xfrm_aalg_get_byname
+ffffffff81875dd0 t xfrm_ealg_get_byname
+ffffffff81875e90 t xfrm_calg_get_byname
+ffffffff81875fc0 t xfrm_aead_get_byname
+ffffffff81876200 t xfrm_aalg_get_byidx
+ffffffff81876230 t xfrm_ealg_get_byidx
+ffffffff81876260 t xfrm_probe_algs
+ffffffff818763e0 t xfrm_count_pfkey_auth_supported
+ffffffff81876490 t xfrm_count_pfkey_enc_supported
+ffffffff81876550 t xfrm_send_state_notify
+ffffffff81876cf0 t xfrm_send_acquire
+ffffffff81877180 t xfrm_compile_policy
+ffffffff81877370 t xfrm_send_mapping
+ffffffff818774e0 t xfrm_send_policy_notify
+ffffffff81877d30 t xfrm_send_report
+ffffffff81877ed0 t xfrm_send_migrate
+ffffffff81878220 t xfrm_is_alive
+ffffffff81878260 t build_aevent
+ffffffff81878500 t copy_to_user_state_extra
+ffffffff81878c00 t xfrm_smark_put
+ffffffff81878c90 t copy_user_offload
+ffffffff81878cf0 t copy_sec_ctx
+ffffffff81878d70 t copy_to_user_tmpl
+ffffffff81878ee0 t verify_newpolicy_info
+ffffffff81878fd0 t validate_tmpl
+ffffffff81879370 t copy_templates
+ffffffff81879450 t xfrm_netlink_rcv
+ffffffff81879490 t xfrm_user_rcv_msg
+ffffffff81879760 t xfrm_add_sa
+ffffffff8187a3b0 t xfrm_del_sa
+ffffffff8187a5a0 t xfrm_get_sa
+ffffffff8187a7b0 t xfrm_dump_sa
+ffffffff8187a940 t xfrm_dump_sa_done
+ffffffff8187a970 t xfrm_add_policy
+ffffffff8187ab20 t xfrm_get_policy
+ffffffff8187ae20 t xfrm_dump_policy_start
+ffffffff8187ae40 t xfrm_dump_policy
+ffffffff8187aec0 t xfrm_dump_policy_done
+ffffffff8187aee0 t xfrm_alloc_userspi
+ffffffff8187b1a0 t xfrm_add_acquire
+ffffffff8187b470 t xfrm_add_sa_expire
+ffffffff8187b590 t xfrm_add_pol_expire
+ffffffff8187b7b0 t xfrm_flush_sa
+ffffffff8187b850 t xfrm_flush_policy
+ffffffff8187b920 t xfrm_new_ae
+ffffffff8187bc20 t xfrm_get_ae
+ffffffff8187be00 t xfrm_do_migrate
+ffffffff8187c420 t xfrm_get_sadinfo
+ffffffff8187c5b0 t xfrm_set_spdinfo
+ffffffff8187c6b0 t xfrm_get_spdinfo
+ffffffff8187c8e0 t xfrm_set_default
+ffffffff8187ca20 t xfrm_get_default
+ffffffff8187cb10 t verify_aead
+ffffffff8187cb70 t verify_auth_trunc
+ffffffff8187cbd0 t verify_one_alg
+ffffffff8187cc30 t verify_sec_ctx_len
+ffffffff8187cc90 t verify_replay
+ffffffff8187cd60 t xfrm_alloc_replay_state_esn
+ffffffff8187ce30 t xfrm_update_ae_params
+ffffffff8187cee0 t dump_one_state
+ffffffff8187cfb0 t xfrm_policy_construct
+ffffffff8187d290 t dump_one_policy
+ffffffff8187d5b0 t ipcomp_input
+ffffffff8187d840 t ipcomp_output
+ffffffff8187da30 t ipcomp_destroy
+ffffffff8187da80 t ipcomp_free_data
+ffffffff8187db20 t ipcomp_init_state
+ffffffff8187de60 t ipcomp_free_tfms
+ffffffff8187df50 t xfrmi4_fini
+ffffffff8187df90 t xfrmi6_fini
+ffffffff8187dff0 t xfrmi_dev_setup
+ffffffff8187e070 t xfrmi_validate
+ffffffff8187e080 t xfrmi_newlink
+ffffffff8187e270 t xfrmi_changelink
+ffffffff8187e460 t xfrmi_dellink
+ffffffff8187e470 t xfrmi_get_size
+ffffffff8187e480 t xfrmi_fill_info
+ffffffff8187e540 t xfrmi_get_link_net
+ffffffff8187e560 t xfrmi_dev_free
+ffffffff8187e590 t xfrmi_dev_init
+ffffffff8187e7a0 t xfrmi_dev_uninit
+ffffffff8187e830 t xfrmi_xmit
+ffffffff8187ee80 t xfrmi_get_iflink
+ffffffff8187eea0 t xfrmi_rcv_cb
+ffffffff8187f060 t xfrmi4_err
+ffffffff8187f260 t xfrmi6_rcv_tunnel
+ffffffff8187f2b0 t xfrmi6_err
+ffffffff8187f480 t xfrmi_decode_session
+ffffffff8187f520 t unix_peer_get
+ffffffff8187f590 t unix_close
+ffffffff8187f5a0 t unix_unhash
+ffffffff8187f5b0 t __unix_dgram_recvmsg
+ffffffff8187f980 t scm_recv
+ffffffff8187fac0 t __unix_stream_recvmsg
+ffffffff8187fb30 t unix_stream_read_actor
+ffffffff8187fb60 t unix_stream_read_generic
+ffffffff81880590 t unix_inq_len
+ffffffff81880630 t unix_outq_len
+ffffffff81880650 t scm_destroy
+ffffffff81880680 t unix_stream_recv_urg
+ffffffff81880760 t unix_seq_start
+ffffffff81880830 t unix_seq_stop
+ffffffff81880860 t unix_seq_next
+ffffffff81880a30 t unix_seq_show
+ffffffff81880bb0 t unix_create
+ffffffff81880c50 t unix_create1
+ffffffff81880ea0 t unix_release
+ffffffff81880ef0 t unix_bind
+ffffffff818813c0 t unix_stream_connect
+ffffffff818818d0 t unix_socketpair
+ffffffff81881990 t unix_accept
+ffffffff81881b20 t unix_getname
+ffffffff81881c50 t unix_poll
+ffffffff81881d50 t unix_ioctl
+ffffffff81881f90 t unix_listen
+ffffffff81882040 t unix_shutdown
+ffffffff81882200 t unix_show_fdinfo
+ffffffff818822e0 t unix_stream_sendmsg
+ffffffff81882a80 t unix_stream_recvmsg
+ffffffff81882af0 t unix_stream_sendpage
+ffffffff81882fd0 t unix_stream_splice_read
+ffffffff81883070 t unix_set_peek_off
+ffffffff818830c0 t unix_stream_read_skb
+ffffffff81883180 t unix_release_sock
+ffffffff81883570 t unix_autobind
+ffffffff81883810 t unix_table_double_lock
+ffffffff81883850 t unix_table_double_unlock
+ffffffff81883890 t __unix_set_addr_hash
+ffffffff81883960 t unix_insert_bsd_socket
+ffffffff818839e0 t unix_find_other
+ffffffff81883cd0 t unix_wait_for_peer
+ffffffff81883dc0 t init_peercred
+ffffffff81883ea0 t copy_peercred
+ffffffff81883f90 t unix_scm_to_skb
+ffffffff81884010 t maybe_add_creds
+ffffffff818840b0 t unix_stream_splice_actor
+ffffffff818840e0 t unix_read_skb
+ffffffff81884190 t unix_dgram_connect
+ffffffff818845b0 t unix_dgram_poll
+ffffffff81884750 t unix_dgram_sendmsg
+ffffffff81884fa0 t unix_dgram_recvmsg
+ffffffff81884fc0 t unix_state_double_lock
+ffffffff81885010 t unix_dgram_peer_wake_disconnect_wakeup
+ffffffff818850c0 t unix_dgram_disconnected
+ffffffff81885130 t unix_dgram_peer_wake_me
+ffffffff81885290 t unix_seqpacket_sendmsg
+ffffffff818852e0 t unix_seqpacket_recvmsg
+ffffffff81885310 t unix_write_space
+ffffffff818853a0 t unix_sock_destructor
+ffffffff81885430 t unix_dgram_peer_wake_relay
+ffffffff818854a0 t wait_for_unix_gc
+ffffffff81885580 t unix_gc
+ffffffff81885a60 t scan_children
+ffffffff81885bc0 t dec_inflight
+ffffffff81885be0 t inc_inflight_move_tail
+ffffffff81885c70 t inc_inflight
+ffffffff81885c90 t scan_inflight
+ffffffff81885dd0 t unix_sysctl_unregister
+ffffffff81885df0 t unix_get_socket
+ffffffff81885e50 t unix_inflight
+ffffffff81885f60 t unix_notinflight
+ffffffff81886060 t unix_attach_fds
+ffffffff81886120 t unix_detach_fds
+ffffffff81886180 t unix_destruct_scm
+ffffffff81886270 t ipv6_mod_enabled
+ffffffff81886290 t inet6_sock_destruct
+ffffffff818862b0 t inet6_cleanup_sock
+ffffffff818862c0 t inet6_bind
+ffffffff81886300 t __inet6_bind
+ffffffff81886770 t inet6_release
+ffffffff818867b0 t inet6_destroy_sock
+ffffffff81886860 t inet6_getname
+ffffffff81886990 t inet6_ioctl
+ffffffff81886ae0 t inet6_sendmsg
+ffffffff81886b70 t inet6_recvmsg
+ffffffff81886c90 t inet6_register_protosw
+ffffffff81886d80 t inet6_unregister_protosw
+ffffffff81886df0 t inet6_sk_rebuild_header
+ffffffff81887010 t ipv6_opt_accepted
+ffffffff818870c0 t inet6_create
+ffffffff818874d0 t ipv6_route_input
+ffffffff81887500 t ipv6_sock_ac_join
+ffffffff81887750 t __ipv6_dev_ac_inc
+ffffffff81887a80 t ipv6_sock_ac_drop
+ffffffff81887bb0 t __ipv6_sock_ac_close
+ffffffff81887ca0 t ipv6_sock_ac_close
+ffffffff81887cf0 t __ipv6_dev_ac_dec
+ffffffff81887e90 t ipv6_ac_destroy_dev
+ffffffff81887f90 t ipv6_chk_acast_addr
+ffffffff81888120 t ipv6_chk_acast_addr_src
+ffffffff81888160 t ac6_proc_exit
+ffffffff81888180 t ipv6_anycast_cleanup
+ffffffff818881d0 t aca_free_rcu
+ffffffff81888230 t ac6_seq_start
+ffffffff818883b0 t ac6_seq_stop
+ffffffff818883f0 t ac6_seq_next
+ffffffff818884b0 t ac6_seq_show
+ffffffff818884e0 t ip6_output
+ffffffff81888750 t ip6_autoflowlabel
+ffffffff81888790 t ip6_xmit
+ffffffff81888d20 t ip6_forward
+ffffffff818894b0 t ip6_call_ra_chain
+ffffffff81889580 t skb_cow
+ffffffff818895e0 t ip6_forward_finish
+ffffffff818896e0 t ip6_fraglist_init
+ffffffff818898e0 t ip6_fraglist_prepare
+ffffffff818899e0 t ip6_copy_metadata
+ffffffff81889b70 t ip6_frag_init
+ffffffff81889bc0 t ip6_frag_next
+ffffffff81889db0 t ip6_fragment
+ffffffff8188a7c0 t ip6_dst_lookup
+ffffffff8188a7e0 t ip6_dst_lookup_tail.llvm.9707760389945686993
+ffffffff8188ac10 t ip6_dst_lookup_flow
+ffffffff8188acb0 t ip6_sk_dst_lookup_flow
+ffffffff8188ae60 t ip6_dst_lookup_tunnel
+ffffffff8188b010 t ip6_append_data
+ffffffff8188b180 t ip6_setup_cork
+ffffffff8188b520 t __ip6_append_data
+ffffffff8188c3d0 t __ip6_make_skb
+ffffffff8188c9c0 t ip6_cork_release
+ffffffff8188ca30 t ip6_send_skb
+ffffffff8188caa0 t ip6_push_pending_frames
+ffffffff8188cb50 t ip6_flush_pending_frames
+ffffffff8188cc20 t ip6_make_skb
+ffffffff8188ce20 t ip6_finish_output2
+ffffffff8188d2c0 t skb_zcopy_set
+ffffffff8188d360 t ip6_rcv_finish
+ffffffff8188d4a0 t ipv6_rcv
+ffffffff8188d4d0 t ip6_rcv_core
+ffffffff8188da00 t ipv6_list_rcv
+ffffffff8188db60 t ip6_sublist_rcv
+ffffffff8188de10 t ip6_protocol_deliver_rcu
+ffffffff8188e300 t ip6_input
+ffffffff8188e360 t ip6_mc_input
+ffffffff8188e470 t ip6_sublist_rcv_finish
+ffffffff8188e550 t inet6_netconf_notify_devconf
+ffffffff8188e660 t inet6_netconf_fill_devconf
+ffffffff8188e810 t inet6_ifa_finish_destroy
+ffffffff8188e8c0 t in6_dev_put
+ffffffff8188e900 t ipv6_dev_get_saddr
+ffffffff8188eb00 t __ipv6_dev_get_saddr
+ffffffff8188ec80 t ipv6_get_lladdr
+ffffffff8188ed30 t ipv6_chk_addr
+ffffffff8188ed60 t ipv6_chk_addr_and_flags
+ffffffff8188ed80 t __ipv6_chk_addr_and_flags.llvm.17032380467912426127
+ffffffff8188ee80 t ipv6_chk_custom_prefix
+ffffffff8188ef50 t ipv6_chk_prefix
+ffffffff8188f000 t ipv6_dev_find
+ffffffff8188f030 t ipv6_get_ifaddr
+ffffffff8188f130 t in6_ifa_hold
+ffffffff8188f170 t addrconf_dad_failure
+ffffffff8188f460 t in6_ifa_put
+ffffffff8188f4a0 t ipv6_generate_stable_address
+ffffffff8188f700 t ipv6_add_addr
+ffffffff8188fa70 t addrconf_mod_dad_work
+ffffffff8188fb00 t addrconf_join_solict
+ffffffff8188fb70 t addrconf_leave_solict
+ffffffff8188fbe0 t addrconf_rt_table
+ffffffff8188fca0 t addrconf_prefix_rcv_add_addr
+ffffffff8188ffe0 t addrconf_dad_start
+ffffffff81890030 t manage_tempaddrs
+ffffffff818901e0 t addrconf_prefix_rcv
+ffffffff818907c0 t addrconf_get_prefix_route
+ffffffff81890910 t addrconf_prefix_route
+ffffffff81890a40 t fib6_info_release
+ffffffff81890a90 t fib6_info_release
+ffffffff81890ae0 t ipv6_generate_eui64
+ffffffff81890dd0 t ipv6_inherit_eui64
+ffffffff81890e60 t addrconf_set_dstaddr
+ffffffff81890fd0 t addrconf_add_ifaddr
+ffffffff818910d0 t inet6_addr_add
+ffffffff81891360 t addrconf_del_ifaddr
+ffffffff81891420 t inet6_addr_del
+ffffffff81891600 t addrconf_add_linklocal
+ffffffff81891820 t if6_proc_exit
+ffffffff81891850 t ipv6_chk_home_addr
+ffffffff818918f0 t ipv6_chk_rpl_srh_loop
+ffffffff818919e0 t inet6_ifinfo_notify
+ffffffff81891a90 t inet6_fill_ifinfo
+ffffffff81891ce0 t ipv6_add_dev
+ffffffff81892180 t inet6_dump_ifinfo
+ffffffff81892310 t inet6_rtm_newaddr
+ffffffff81892d30 t inet6_rtm_deladdr
+ffffffff81892eb0 t inet6_rtm_getaddr
+ffffffff818932b0 t inet6_dump_ifaddr
+ffffffff818932d0 t inet6_dump_ifmcaddr
+ffffffff818932f0 t inet6_dump_ifacaddr
+ffffffff81893310 t inet6_netconf_get_devconf
+ffffffff818936d0 t inet6_netconf_dump_devconf
+ffffffff81893940 t addrconf_cleanup
+ffffffff81893a20 t addrconf_ifdown
+ffffffff81894270 t ipv6_get_saddr_eval
+ffffffff81894560 t addrconf_dad_work
+ffffffff81894aa0 t in6_dev_hold
+ffffffff81894ae0 t ipv6_add_addr_hash
+ffffffff81894bd0 t ipv6_link_dev_addr
+ffffffff81894c80 t addrconf_dad_stop
+ffffffff81894e10 t addrconf_dad_completed
+ffffffff81895210 t addrconf_dad_kick
+ffffffff818952f0 t ipv6_create_tempaddr
+ffffffff81895920 t ipv6_del_addr
+ffffffff81895c20 t check_cleanup_prefix_route
+ffffffff81895d60 t cleanup_prefix_route
+ffffffff81895e10 t addrconf_mod_rs_timer
+ffffffff81895e80 t addrconf_verify_rtnl
+ffffffff818963d0 t addrconf_add_dev
+ffffffff81896580 t ipv6_mc_config
+ffffffff81896620 t if6_seq_start
+ffffffff818966d0 t if6_seq_stop
+ffffffff818966e0 t if6_seq_next
+ffffffff81896750 t if6_seq_show
+ffffffff818967a0 t inet6_fill_ifla6_attrs
+ffffffff81896db0 t snmp6_fill_stats
+ffffffff81896e10 t __ipv6_ifa_notify
+ffffffff818972f0 t inet6_fill_ifaddr
+ffffffff81897620 t addrconf_verify_work
+ffffffff81897650 t __addrconf_sysctl_register
+ffffffff81897830 t addrconf_sysctl_forward
+ffffffff81897a90 t addrconf_sysctl_mtu
+ffffffff81897b30 t addrconf_sysctl_proxy_ndp
+ffffffff81897c30 t addrconf_sysctl_disable
+ffffffff81897e70 t addrconf_sysctl_stable_secret
+ffffffff81898110 t addrconf_sysctl_ignore_routes_with_linkdown
+ffffffff81898340 t addrconf_sysctl_addr_gen_mode
+ffffffff81898540 t addrconf_sysctl_disable_policy
+ffffffff818986c0 t dev_forward_change
+ffffffff818989e0 t addrconf_notify
+ffffffff81898e90 t addrconf_permanent_addr
+ffffffff81899250 t addrconf_link_ready
+ffffffff818992e0 t addrconf_dad_run
+ffffffff81899470 t addrconf_init_auto_addrs
+ffffffff81899920 t addrconf_sysctl_unregister
+ffffffff81899990 t addrconf_sysctl_register
+ffffffff81899a30 t addrconf_addr_gen
+ffffffff81899c00 t add_v4_addrs
+ffffffff81899ff0 t add_addr
+ffffffff8189a100 t addrconf_disable_policy_idev
+ffffffff8189a240 t addrconf_rs_timer
+ffffffff8189a430 t rfc3315_s14_backoff_update
+ffffffff8189a4c0 t inet6_fill_link_af
+ffffffff8189a4f0 t inet6_get_link_af_size
+ffffffff8189a510 t inet6_validate_link_af
+ffffffff8189a670 t inet6_set_link_af
+ffffffff8189a9f0 t modify_prefix_route
+ffffffff8189ac00 t inet6_dump_addr
+ffffffff8189b090 t in6_dump_addrs
+ffffffff8189b630 t ipv6_addr_label
+ffffffff8189b710 t ipv6_addr_label_cleanup
+ffffffff8189b740 t ip6addrlbl_newdel
+ffffffff8189b8b0 t ip6addrlbl_get
+ffffffff8189bbe0 t ip6addrlbl_dump
+ffffffff8189bd10 t ip6addrlbl_add
+ffffffff8189bfe0 t addrlbl_ifindex_exists
+ffffffff8189c010 t ip6addrlbl_del
+ffffffff8189c170 t ip6addrlbl_fill
+ffffffff8189c2b0 t __traceiter_fib6_table_lookup
+ffffffff8189c320 t trace_event_raw_event_fib6_table_lookup
+ffffffff8189c520 t perf_trace_fib6_table_lookup
+ffffffff8189c760 t rt6_uncached_list_add
+ffffffff8189c7e0 t rt6_uncached_list_del
+ffffffff8189c860 t ip6_neigh_lookup
+ffffffff8189c9d0 t ip6_dst_alloc
+ffffffff8189cad0 t fib6_select_path
+ffffffff8189cbd0 t rt6_multipath_hash
+ffffffff8189d710 t nexthop_path_fib6_result
+ffffffff8189d790 t rt6_score_route
+ffffffff8189d910 t rt6_route_rcv
+ffffffff8189db80 t rt6_get_dflt_router
+ffffffff8189dc70 t rt6_get_route_info
+ffffffff8189ddc0 t ip6_del_rt
+ffffffff8189de20 t rt6_add_route_info
+ffffffff8189df50 t ip6_pol_route_lookup
+ffffffff8189e550 t ip6_create_rt_rcu
+ffffffff8189e740 t ip6_route_lookup
+ffffffff8189e760 t rt6_lookup
+ffffffff8189e850 t ip6_ins_rt
+ffffffff8189e8e0 t rt6_flush_exceptions
+ffffffff8189e920 t rt6_nh_flush_exceptions
+ffffffff8189e940 t fib6_nh_flush_exceptions
+ffffffff8189ea10 t rt6_age_exceptions
+ffffffff8189ea80 t rt6_nh_age_exceptions
+ffffffff8189eaa0 t fib6_nh_age_exceptions
+ffffffff8189ec80 t fib6_table_lookup
+ffffffff8189ef30 t ip6_pol_route
+ffffffff8189f480 t ip6_rt_cache_alloc
+ffffffff8189f700 t ip6_pol_route_input
+ffffffff8189f720 t ip6_route_input_lookup
+ffffffff8189f790 t ip6_multipath_l3_keys
+ffffffff8189f910 t ip6_route_input
+ffffffff8189fc60 t ip6_pol_route_output
+ffffffff8189fc80 t ip6_route_output_flags_noref
+ffffffff8189fd60 t ip6_route_output_flags
+ffffffff8189fdf0 t ip6_blackhole_route
+ffffffff818a0030 t ip6_dst_check
+ffffffff818a0110 t ip6_update_pmtu
+ffffffff818a0240 t __ip6_rt_update_pmtu
+ffffffff818a0530 t ip6_sk_update_pmtu
+ffffffff818a0700 t ip6_sk_dst_store_flow
+ffffffff818a07d0 t __ip6_route_redirect
+ffffffff818a0a70 t fib6_nh_redirect_match
+ffffffff818a0aa0 t ip6_redirect_nh_match
+ffffffff818a0bb0 t ip6_redirect
+ffffffff818a0d00 t rt6_do_redirect
+ffffffff818a1090 t ip6_redirect_no_header
+ffffffff818a1210 t ip6_sk_redirect
+ffffffff818a1370 t ip6_mtu
+ffffffff818a13c0 t ip6_mtu_from_fib6
+ffffffff818a14d0 t icmp6_dst_alloc
+ffffffff818a17a0 t fib6_nh_init
+ffffffff818a2330 t fib6_nh_release
+ffffffff818a2480 t fib6_nh_release_dsts
+ffffffff818a2510 t ip6_route_add
+ffffffff818a25d0 t ip6_route_info_create
+ffffffff818a2b20 t __ip6_del_rt
+ffffffff818a2bc0 t rt6_add_dflt_router
+ffffffff818a2ce0 t rt6_purge_dflt_routers
+ffffffff818a2d00 t rt6_addrconf_purge.llvm.6271490715578439129
+ffffffff818a2da0 t ipv6_route_ioctl
+ffffffff818a2fe0 t ip6_route_del
+ffffffff818a3340 t addrconf_f6i_alloc
+ffffffff818a3490 t rt6_remove_prefsrc
+ffffffff818a3500 t fib6_remove_prefsrc
+ffffffff818a3570 t rt6_clean_tohost
+ffffffff818a3590 t fib6_clean_tohost.llvm.6271490715578439129
+ffffffff818a36a0 t rt6_multipath_rebalance
+ffffffff818a3890 t rt6_sync_up
+ffffffff818a3910 t fib6_ifup
+ffffffff818a3970 t rt6_sync_down_dev
+ffffffff818a39f0 t fib6_ifdown
+ffffffff818a3b50 t rt6_disable_ip
+ffffffff818a3df0 t rt6_mtu_change
+ffffffff818a3e60 t rt6_mtu_change_route
+ffffffff818a3ec0 t rt6_dump_route
+ffffffff818a40f0 t rt6_fill_node
+ffffffff818a4720 t rt6_nh_dump_exceptions
+ffffffff818a4840 t inet6_rt_notify
+ffffffff818a4a00 t fib6_rt_update
+ffffffff818a4bc0 t fib6_info_hw_flags_set
+ffffffff818a4da0 t inet6_rtm_newroute
+ffffffff818a56b0 t inet6_rtm_delroute
+ffffffff818a58d0 t inet6_rtm_getroute
+ffffffff818a5f30 t ip6_route_cleanup
+ffffffff818a6040 t trace_raw_output_fib6_table_lookup
+ffffffff818a6110 t __rt6_nh_dev_match
+ffffffff818a6180 t ip6_rt_copy_init
+ffffffff818a6390 t ip6_pkt_prohibit_out
+ffffffff818a63c0 t ip6_pkt_prohibit
+ffffffff818a63e0 t ip6_pkt_discard_out
+ffffffff818a6410 t ip6_pkt_discard
+ffffffff818a6430 t ip6_pkt_drop
+ffffffff818a6590 t rt6_remove_exception
+ffffffff818a6660 t __rt6_find_exception_rcu
+ffffffff818a6790 t __find_rr_leaf
+ffffffff818a6970 t rt6_nh_find_match
+ffffffff818a69a0 t find_match
+ffffffff818a6d00 t rt6_probe_deferred
+ffffffff818a6d90 t ip6_default_advmss
+ffffffff818a6e30 t ip6_dst_destroy
+ffffffff818a6f70 t ip6_dst_neigh_lookup
+ffffffff818a6fc0 t rt6_do_update_pmtu
+ffffffff818a7080 t fib6_nh_find_match
+ffffffff818a70d0 t rt6_insert_exception
+ffffffff818a7300 t __rt6_find_exception_spinlock
+ffffffff818a7430 t ip_fib_metrics_put
+ffffffff818a7480 t ip6_del_cached_rt
+ffffffff818a7580 t __ip6_del_rt_siblings
+ffffffff818a7860 t fib6_nh_del_cached_rt
+ffffffff818a7890 t rt6_remove_exception_rt
+ffffffff818a79b0 t rt6_nh_remove_exception_rt
+ffffffff818a7a60 t rt6_multipath_dead_count
+ffffffff818a7ac0 t rt6_multipath_nh_flags_set
+ffffffff818a7b10 t fib6_nh_mtu_change
+ffffffff818a7d10 t fib6_info_nh_uses_dev
+ffffffff818a7d30 t rt6_fill_node_nexthop
+ffffffff818a7e70 t rt6_nh_nlmsg_size
+ffffffff818a7e90 t ipv6_sysctl_rtcache_flush
+ffffffff818a7f00 t ip6_dst_gc
+ffffffff818a7ff0 t ip6_dst_ifdown
+ffffffff818a80b0 t ip6_negative_advice
+ffffffff818a8130 t ip6_link_failure
+ffffffff818a81b0 t ip6_rt_update_pmtu
+ffffffff818a81e0 t ip6_confirm_neigh
+ffffffff818a8310 t rt6_stats_seq_show
+ffffffff818a83b0 t rtm_to_fib6_config
+ffffffff818a88d0 t ip6_route_dev_notify
+ffffffff818a8b60 t fib6_update_sernum
+ffffffff818a8bb0 t fib6_info_alloc
+ffffffff818a8c00 t fib6_info_destroy_rcu
+ffffffff818a8cb0 t fib6_new_table
+ffffffff818a8da0 t fib6_get_table
+ffffffff818a8e00 t fib6_tables_seq_read
+ffffffff818a8e80 t call_fib6_entry_notifiers
+ffffffff818a8ef0 t call_fib6_multipath_entry_notifiers
+ffffffff818a8f60 t call_fib6_entry_notifiers_replace
+ffffffff818a8fd0 t fib6_tables_dump
+ffffffff818a90f0 t fib6_node_dump
+ffffffff818a91b0 t fib6_metric_set
+ffffffff818a9220 t fib6_force_start_gc
+ffffffff818a9260 t fib6_update_sernum_upto_root
+ffffffff818a92c0 t fib6_update_sernum_stub
+ffffffff818a9340 t fib6_add
+ffffffff818aa2d0 t fib6_repair_tree
+ffffffff818aa570 t fib6_node_lookup
+ffffffff818aa640 t fib6_locate
+ffffffff818aa730 t fib6_del
+ffffffff818aab00 t fib6_clean_all
+ffffffff818aac50 t fib6_clean_all_skip_notify
+ffffffff818aada0 t fib6_run_gc
+ffffffff818aafb0 t fib6_age
+ffffffff818aaff0 t inet6_dump_fib
+ffffffff818ab320 t fib6_flush_trees
+ffffffff818ab4a0 t fib6_gc_cleanup
+ffffffff818ab4e0 t ipv6_route_seq_start.llvm.13561019142282245390
+ffffffff818ab630 t ipv6_route_seq_stop.llvm.13561019142282245390
+ffffffff818ab6b0 t ipv6_route_seq_next.llvm.13561019142282245390
+ffffffff818ab8f0 t ipv6_route_seq_show.llvm.13561019142282245390
+ffffffff818aba10 t fib6_walk
+ffffffff818abae0 t fib6_walk_continue
+ffffffff818abc40 t fib6_purge_rt
+ffffffff818abe00 t fib6_nh_drop_pcpu_from
+ffffffff818abe20 t __fib6_drop_pcpu_from
+ffffffff818abf00 t node_free_rcu
+ffffffff818abf20 t fib6_clean_node
+ffffffff818ac040 t fib6_net_exit
+ffffffff818ac140 t fib6_gc_timer_cb
+ffffffff818ac160 t fib6_dump_done
+ffffffff818ac210 t fib6_dump_node
+ffffffff818ac290 t fib6_dump_table
+ffffffff818ac3d0 t ipv6_route_yield
+ffffffff818ac430 t ip6_ra_control
+ffffffff818ac5b0 t ipv6_update_options
+ffffffff818ac660 t do_ipv6_setsockopt
+ffffffff818adee0 t sock_prot_inuse_add
+ffffffff818adf00 t txopt_put
+ffffffff818adf40 t ipv6_set_mcast_msfilter
+ffffffff818ae090 t __ip6_sock_set_addr_preferences
+ffffffff818ae180 t ipv6_setsockopt
+ffffffff818ae1d0 t do_ipv6_getsockopt
+ffffffff818aeef0 t ipv6_get_msfilter
+ffffffff818af0a0 t ipv6_getsockopt
+ffffffff818af120 t ndisc_hash
+ffffffff818af160 t ndisc_key_eq
+ffffffff818af1a0 t ndisc_constructor
+ffffffff818af410 t pndisc_constructor
+ffffffff818af490 t pndisc_destructor
+ffffffff818af500 t pndisc_redo
+ffffffff818af530 t ndisc_is_multicast
+ffffffff818af550 t ndisc_allow_add
+ffffffff818af5a0 t __ndisc_fill_addr_option
+ffffffff818af650 t ndisc_parse_options
+ffffffff818af840 t ndisc_mc_map
+ffffffff818af950 t ndisc_send_skb
+ffffffff818afd00 t ndisc_send_na
+ffffffff818b0000 t ndisc_alloc_skb
+ffffffff818b00e0 t ndisc_ns_create
+ffffffff818b0310 t ndisc_send_ns
+ffffffff818b03c0 t ndisc_send_rs
+ffffffff818b05f0 t ndisc_update
+ffffffff818b0660 t ndisc_send_redirect
+ffffffff818b0b20 t ndisc_redirect_opt_addr_space
+ffffffff818b0b90 t ndisc_fill_redirect_addr_option
+ffffffff818b0c90 t ndisc_fill_redirect_hdr_option
+ffffffff818b0cf0 t ndisc_rcv
+ffffffff818b0e10 t ndisc_recv_ns
+ffffffff818b1410 t ndisc_recv_na
+ffffffff818b1860 t ndisc_recv_rs
+ffffffff818b1aa0 t ndisc_router_discovery
+ffffffff818b2750 t ndisc_redirect_rcv
+ffffffff818b28b0 t ndisc_ifinfo_sysctl_change
+ffffffff818b2b40 t ndisc_late_cleanup
+ffffffff818b2b60 t ndisc_cleanup
+ffffffff818b2bb0 t ndisc_solicit
+ffffffff818b2d60 t ndisc_error_report
+ffffffff818b2db0 t pndisc_is_router
+ffffffff818b2e10 t accept_untracked_na
+ffffffff818b2e60 t ndisc_netdev_event
+ffffffff818b3100 t ndisc_send_unsol_na
+ffffffff818b3230 t udpv6_init_sock
+ffffffff818b3280 t udpv6_destruct_sock
+ffffffff818b32b0 t udp_v6_get_port
+ffffffff818b3310 t udp_v6_rehash
+ffffffff818b3340 t __udp6_lib_lookup
+ffffffff818b3700 t udp6_lib_lookup2
+ffffffff818b38b0 t udp6_lib_lookup_skb
+ffffffff818b3900 t udpv6_recvmsg
+ffffffff818b3e90 t udpv6_encap_enable
+ffffffff818b3ec0 t __udp6_lib_err
+ffffffff818b4460 t __udp6_lib_rcv
+ffffffff818b4be0 t udp6_sk_rx_dst_set
+ffffffff818b4c40 t udp6_unicast_rcv_skb
+ffffffff818b4ce0 t xfrm6_policy_check
+ffffffff818b4d40 t xfrm6_policy_check
+ffffffff818b4dc0 t udp_v6_early_demux
+ffffffff818b5010 t udpv6_rcv
+ffffffff818b5030 t udpv6_sendmsg
+ffffffff818b5cc0 t txopt_get
+ffffffff818b5d30 t udp_v6_send_skb
+ffffffff818b6140 t udp_v6_push_pending_frames
+ffffffff818b61e0 t udpv6_destroy_sock
+ffffffff818b6280 t udpv6_setsockopt
+ffffffff818b62c0 t udpv6_getsockopt
+ffffffff818b62f0 t udp6_seq_show
+ffffffff818b6350 t udp6_proc_exit
+ffffffff818b6370 t udpv6_pre_connect
+ffffffff818b63c0 t udpv6_exit
+ffffffff818b63f0 t udpv6_queue_rcv_skb
+ffffffff818b65f0 t udpv6_queue_rcv_one_skb
+ffffffff818b6a40 t udpv6_err.llvm.6596198281680024860
+ffffffff818b6a60 t udplitev6_sk_init
+ffffffff818b6a80 t udplitev6_exit
+ffffffff818b6ab0 t udplite6_proc_exit
+ffffffff818b6ae0 t udplitev6_rcv.llvm.4618968079149398189
+ffffffff818b6b00 t udplitev6_err.llvm.4618968079149398189
+ffffffff818b6b20 t raw_v6_match
+ffffffff818b6ba0 t rawv6_mh_filter_register
+ffffffff818b6bc0 t rawv6_mh_filter_unregister
+ffffffff818b6be0 t raw6_local_deliver
+ffffffff818b6e40 t raw6_icmp_error
+ffffffff818b7080 t rawv6_rcv
+ffffffff818b7360 t rawv6_rcv_skb
+ffffffff818b7420 t rawv6_close
+ffffffff818b7450 t rawv6_ioctl
+ffffffff818b74f0 t rawv6_init_sk
+ffffffff818b7530 t raw6_destroy
+ffffffff818b7560 t rawv6_setsockopt
+ffffffff818b7740 t rawv6_getsockopt
+ffffffff818b78c0 t rawv6_sendmsg
+ffffffff818b81e0 t rawv6_recvmsg
+ffffffff818b84c0 t rawv6_bind
+ffffffff818b86b0 t raw6_proc_exit
+ffffffff818b86e0 t rawv6_exit
+ffffffff818b8700 t rawv6_probe_proto_opt
+ffffffff818b87b0 t rawv6_send_hdrinc
+ffffffff818b8bc0 t raw6_getfrag
+ffffffff818b8cb0 t rawv6_push_pending_frames
+ffffffff818b8ed0 t raw6_seq_show
+ffffffff818b8f10 t icmpv6_push_pending_frames
+ffffffff818b9000 t icmp6_send
+ffffffff818b9870 t icmpv6_rt_has_prefsrc
+ffffffff818b98e0 t icmpv6_xrlim_allow
+ffffffff818b9a10 t icmpv6_route_lookup
+ffffffff818b9c30 t icmpv6_getfrag
+ffffffff818b9c80 t icmpv6_param_prob_reason
+ffffffff818b9cc0 t ip6_err_gen_icmpv6_unreach
+ffffffff818b9f10 t icmpv6_notify
+ffffffff818ba0b0 t icmpv6_flow_init
+ffffffff818ba150 t icmpv6_cleanup
+ffffffff818ba170 t icmpv6_err_convert
+ffffffff818ba1f0 t icmpv6_rcv.llvm.15350070132518310992
+ffffffff818ba790 t icmpv6_err.llvm.15350070132518310992
+ffffffff818ba830 t icmpv6_echo_reply
+ffffffff818bad70 t ipv6_sock_mc_join
+ffffffff818bad90 t __ipv6_sock_mc_join.llvm.17779412827458804697
+ffffffff818baf70 t ipv6_sock_mc_join_ssm
+ffffffff818baf80 t ipv6_sock_mc_drop
+ffffffff818bb100 t ip6_mc_leave_src
+ffffffff818bb1b0 t __ipv6_dev_mc_dec
+ffffffff818bb380 t __ipv6_sock_mc_close
+ffffffff818bb4b0 t ipv6_sock_mc_close
+ffffffff818bb520 t ip6_mc_source
+ffffffff818bb9d0 t ip6_mc_add_src
+ffffffff818bbd80 t ip6_mc_del_src
+ffffffff818bbff0 t ip6_mc_msfilter
+ffffffff818bc300 t ip6_mc_msfget
+ffffffff818bc520 t inet6_mc_check
+ffffffff818bc620 t ipv6_dev_mc_inc
+ffffffff818bc640 t __ipv6_dev_mc_inc.llvm.17779412827458804697
+ffffffff818bca10 t igmp6_group_dropped
+ffffffff818bccf0 t ipv6_dev_mc_dec
+ffffffff818bcd60 t ipv6_chk_mcast_addr
+ffffffff818bce20 t igmp6_event_query
+ffffffff818bcf10 t igmp6_event_report
+ffffffff818bd000 t ipv6_mc_dad_complete
+ffffffff818bd190 t ipv6_mc_unmap
+ffffffff818bd1e0 t ipv6_mc_remap
+ffffffff818bd290 t ipv6_mc_up
+ffffffff818bd340 t ipv6_mc_down
+ffffffff818bd4e0 t mld_del_delrec
+ffffffff818bd660 t igmp6_group_added
+ffffffff818bd820 t ipv6_mc_init_dev
+ffffffff818bda60 t mld_gq_work
+ffffffff818bdb20 t mld_ifc_work
+ffffffff818bdf20 t mld_dad_work
+ffffffff818be0e0 t mld_query_work
+ffffffff818bec10 t mld_report_work
+ffffffff818bf180 t ipv6_mc_destroy_dev
+ffffffff818bf3e0 t mld_clear_delrec
+ffffffff818bf530 t igmp6_cleanup
+ffffffff818bf570 t igmp6_late_cleanup
+ffffffff818bf590 t mld_mca_work
+ffffffff818bf740 t mld_in_v1_mode
+ffffffff818bf7a0 t igmp6_send
+ffffffff818bfc60 t mld_sendpack
+ffffffff818bff60 t mld_newpack
+ffffffff818c0190 t mld_ifc_event
+ffffffff818c0240 t ip6_mc_del1_src
+ffffffff818c0330 t igmp6_join_group
+ffffffff818c0460 t igmp6_group_queried
+ffffffff818c0550 t igmp6_mc_seq_start
+ffffffff818c0650 t igmp6_mc_seq_stop
+ffffffff818c0680 t igmp6_mc_seq_next
+ffffffff818c0700 t igmp6_mc_seq_show
+ffffffff818c0780 t igmp6_mcf_seq_start
+ffffffff818c08e0 t igmp6_mcf_seq_stop
+ffffffff818c0920 t igmp6_mcf_seq_next
+ffffffff818c0a40 t igmp6_mcf_seq_show
+ffffffff818c0aa0 t ipv6_mc_netdev_event
+ffffffff818c0be0 t ip6frag_init
+ffffffff818c0c20 t ip6_frag_expire
+ffffffff818c0dc0 t ipv6_frag_exit
+ffffffff818c0e20 t ip6frag_key_hashfn
+ffffffff818c0e40 t ip6frag_obj_hashfn
+ffffffff818c0e60 t ip6frag_obj_cmpfn
+ffffffff818c0e90 t jhash2
+ffffffff818c0ff0 t ipv6_frag_rcv
+ffffffff818c1920 t ip6_frag_reasm
+ffffffff818c1c10 t tcp_v6_reqsk_send_ack
+ffffffff818c1cf0 t tcp_v6_send_reset
+ffffffff818c1ee0 t tcp_v6_reqsk_destructor
+ffffffff818c1f10 t tcp_v6_route_req
+ffffffff818c2030 t tcp_v6_init_seq
+ffffffff818c2070 t tcp_v6_init_ts_off
+ffffffff818c20a0 t tcp_v6_send_synack
+ffffffff818c2260 t tcp_v6_get_syncookie
+ffffffff818c2270 t tcp_v6_do_rcv
+ffffffff818c26a0 t tcp_v6_rcv
+ffffffff818c3210 t tcp_v6_fill_cb
+ffffffff818c32c0 t tcp_v6_early_demux
+ffffffff818c3430 t tcp_v6_send_check
+ffffffff818c3490 t inet6_sk_rx_dst_set
+ffffffff818c3520 t tcp_v6_conn_request
+ffffffff818c35e0 t tcp_v6_syn_recv_sock
+ffffffff818c3db0 t tcp_v6_mtu_reduced
+ffffffff818c3ea0 t tcp6_proc_exit
+ffffffff818c3ec0 t tcp_v6_pre_connect
+ffffffff818c3ee0 t tcp_v6_connect
+ffffffff818c4470 t tcp_v6_init_sock
+ffffffff818c44a0 t tcpv6_exit
+ffffffff818c44f0 t tcp_v6_send_response
+ffffffff818c49e0 t ip6_dst_store
+ffffffff818c4a60 t tcp6_seq_show
+ffffffff818c4f40 t tcp_v6_err.llvm.5268515325539988706
+ffffffff818c5350 t ip6_sk_accept_pmtu
+ffffffff818c53b0 t ping_v6_pre_connect
+ffffffff818c53d0 t ping_v6_sendmsg
+ffffffff818c5940 t pingv6_exit
+ffffffff818c59c0 t dummy_ipv6_recv_error
+ffffffff818c59d0 t dummy_ip6_datagram_recv_ctl
+ffffffff818c59e0 t dummy_icmpv6_err_convert
+ffffffff818c59f0 t dummy_ipv6_icmp_error
+ffffffff818c5a00 t dummy_ipv6_chk_addr
+ffffffff818c5a10 t ping_v6_seq_start
+ffffffff818c5a30 t ping_v6_seq_show
+ffffffff818c5a90 t ipv6_exthdrs_exit
+ffffffff818c5ad0 t ipv6_parse_hopopts
+ffffffff818c5bd0 t ip6_parse_tlv
+ffffffff818c61f0 t ipv6_push_nfrag_opts
+ffffffff818c63f0 t ipv6_push_frag_opts
+ffffffff818c6450 t ipv6_dup_options
+ffffffff818c64e0 t ipv6_renew_options
+ffffffff818c67a0 t __ipv6_fixup_options
+ffffffff818c6830 t fl6_update_dst
+ffffffff818c68a0 t ipv6_rthdr_rcv.llvm.9155213877904528973
+ffffffff818c7cd0 t dst_input
+ffffffff818c7d20 t ipv6_destopt_rcv.llvm.9155213877904528973
+ffffffff818c7ed0 t dst_discard.llvm.9155213877904528973
+ffffffff818c7ef0 t ip6_datagram_dst_update
+ffffffff818c81b0 t ip6_datagram_release_cb
+ffffffff818c8230 t __ip6_datagram_connect
+ffffffff818c8550 t ip6_datagram_connect
+ffffffff818c8590 t ip6_datagram_connect_v6_only
+ffffffff818c85f0 t ipv6_icmp_error
+ffffffff818c8790 t ipv6_local_error
+ffffffff818c88f0 t ipv6_local_rxpmtu
+ffffffff818c8a20 t ipv6_recv_error
+ffffffff818c8ea0 t ip6_datagram_recv_common_ctl
+ffffffff818c8f70 t ip6_datagram_recv_specific_ctl
+ffffffff818c94c0 t ipv6_recv_rxpmtu
+ffffffff818c96a0 t ip6_datagram_recv_ctl
+ffffffff818c9790 t ip6_datagram_send_ctl
+ffffffff818c9d20 t __ip6_dgram_sock_seq_show
+ffffffff818c9e20 t __fl6_sock_lookup
+ffffffff818c9eb0 t fl6_free_socklist
+ffffffff818c9f40 t fl_release
+ffffffff818c9fe0 t fl6_merge_options
+ffffffff818ca080 t ipv6_flowlabel_opt_get
+ffffffff818ca1b0 t ipv6_flowlabel_opt
+ffffffff818cacb0 t ip6_flowlabel_init
+ffffffff818cacf0 t ip6_flowlabel_cleanup
+ffffffff818cad40 t fl6_renew
+ffffffff818cae20 t fl_lookup
+ffffffff818cae90 t fl_link
+ffffffff818caee0 t fl_free
+ffffffff818caf30 t mem_check
+ffffffff818caff0 t fl_intern
+ffffffff818cb0d0 t fl_free_rcu
+ffffffff818cb110 t ip6fl_seq_start
+ffffffff818cb240 t ip6fl_seq_stop
+ffffffff818cb250 t ip6fl_seq_next
+ffffffff818cb320 t ip6fl_seq_show
+ffffffff818cb420 t ip6_fl_gc
+ffffffff818cb570 t inet6_csk_route_req
+ffffffff818cb6f0 t inet6_csk_addr2sockaddr
+ffffffff818cb760 t inet6_csk_xmit
+ffffffff818cb8f0 t inet6_csk_route_socket
+ffffffff818cbb20 t inet6_csk_update_pmtu
+ffffffff818cbc20 t udp6_gro_receive
+ffffffff818cbef0 t udp6_gro_complete
+ffffffff818cc000 t udpv6_offload_init
+ffffffff818cc020 t udpv6_offload_exit
+ffffffff818cc040 t udp6_ufo_fragment.llvm.1297971558248055
+ffffffff818cc300 t seg6_validate_srh
+ffffffff818cc390 t seg6_get_srh
+ffffffff818cc510 t seg6_icmp_srh
+ffffffff818cc570 t seg6_exit
+ffffffff818cc5b0 t seg6_genl_sethmac
+ffffffff818cc5c0 t seg6_genl_dumphmac_start
+ffffffff818cc5d0 t seg6_genl_dumphmac
+ffffffff818cc5e0 t seg6_genl_dumphmac_done
+ffffffff818cc5f0 t seg6_genl_set_tunsrc
+ffffffff818cc670 t seg6_genl_get_tunsrc
+ffffffff818cc760 t call_fib6_notifier
+ffffffff818cc780 t call_fib6_notifiers
+ffffffff818cc7a0 t fib6_seq_read
+ffffffff818cc7d0 t fib6_dump
+ffffffff818cc810 t ipv6_rpl_srh_size
+ffffffff818cc840 t ipv6_rpl_srh_decompress
+ffffffff818cc990 t ipv6_rpl_srh_compress
+ffffffff818cccf0 t ioam6_namespace
+ffffffff818ccd70 t rhashtable_lookup_fast
+ffffffff818cced0 t ioam6_fill_trace_data
+ffffffff818cd4e0 t ioam6_exit
+ffffffff818cd520 t ioam6_ns_cmpfn
+ffffffff818cd540 t ioam6_sc_cmpfn
+ffffffff818cd560 t ioam6_free_ns
+ffffffff818cd580 t ioam6_free_sc
+ffffffff818cd5a0 t ioam6_genl_addns
+ffffffff818cd750 t ioam6_genl_delns
+ffffffff818cd890 t ioam6_genl_dumpns_start
+ffffffff818cd8f0 t ioam6_genl_dumpns
+ffffffff818cdb00 t ioam6_genl_dumpns_done
+ffffffff818cdb30 t ioam6_genl_addsc
+ffffffff818cdcd0 t ioam6_genl_delsc
+ffffffff818cde10 t ioam6_genl_dumpsc_start
+ffffffff818cde70 t ioam6_genl_dumpsc
+ffffffff818ce020 t ioam6_genl_dumpsc_done
+ffffffff818ce050 t ioam6_genl_ns_set_schema
+ffffffff818ce1d0 t rhashtable_lookup_insert_fast
+ffffffff818ce590 t rhashtable_remove_fast
+ffffffff818ce810 t ipv6_sysctl_register
+ffffffff818ce890 t ipv6_sysctl_unregister
+ffffffff818ce8d0 t proc_rt6_multipath_hash_policy
+ffffffff818ce920 t proc_rt6_multipath_hash_fields
+ffffffff818ce970 t xfrm6_fini
+ffffffff818ce9d0 t xfrm6_dst_lookup.llvm.17827822419562766634
+ffffffff818ceab0 t xfrm6_get_saddr.llvm.17827822419562766634
+ffffffff818cebe0 t xfrm6_fill_dst.llvm.17827822419562766634
+ffffffff818ced70 t xfrm6_dst_destroy
+ffffffff818cee80 t xfrm6_dst_ifdown
+ffffffff818cf010 t xfrm6_update_pmtu
+ffffffff818cf030 t xfrm6_redirect
+ffffffff818cf050 t xfrm6_state_fini
+ffffffff818cf070 t xfrm6_rcv_spi
+ffffffff818cf0a0 t xfrm6_transport_finish
+ffffffff818cf220 t xfrm6_udp_encap_rcv
+ffffffff818cf3c0 t xfrm6_rcv_tnl
+ffffffff818cf400 t xfrm6_rcv
+ffffffff818cf440 t xfrm6_input_addr
+ffffffff818cf7e0 t xfrm6_local_rxpmtu
+ffffffff818cf8b0 t xfrm6_local_error
+ffffffff818cf9a0 t xfrm6_output
+ffffffff818cfc50 t __xfrm6_output_finish
+ffffffff818cfc70 t xfrm6_rcv_encap
+ffffffff818cfea0 t xfrm6_protocol_register
+ffffffff818cffc0 t xfrm6_protocol_deregister
+ffffffff818d0110 t xfrm6_protocol_fini
+ffffffff818d0130 t xfrm6_esp_rcv
+ffffffff818d01b0 t xfrm6_esp_err
+ffffffff818d0240 t xfrm6_ah_rcv
+ffffffff818d02c0 t xfrm6_ah_err
+ffffffff818d0350 t xfrm6_ipcomp_rcv
+ffffffff818d03d0 t xfrm6_ipcomp_err
+ffffffff818d0460 t xfrm6_rcv_cb.llvm.4373962254236574637
+ffffffff818d04f0 t fib6_rule_default
+ffffffff818d0550 t fib6_rules_dump
+ffffffff818d0570 t fib6_rules_seq_read
+ffffffff818d0590 t fib6_lookup
+ffffffff818d0690 t fib6_rule_lookup
+ffffffff818d0930 t fib6_rule_action
+ffffffff818d0bd0 t fib6_rule_suppress
+ffffffff818d0c50 t fib6_rule_match
+ffffffff818d0de0 t fib6_rules_cleanup
+ffffffff818d0e10 t fib6_rule_saddr
+ffffffff818d0f10 t fib6_rule_configure
+ffffffff818d10d0 t fib6_rule_delete
+ffffffff818d1130 t fib6_rule_compare
+ffffffff818d11e0 t fib6_rule_fill
+ffffffff818d1280 t fib6_rule_nlmsg_payload
+ffffffff818d1290 t snmp6_register_dev
+ffffffff818d12f0 t snmp6_dev_seq_show
+ffffffff818d14e0 t snmp6_unregister_dev
+ffffffff818d1530 t ipv6_misc_proc_exit
+ffffffff818d1560 t snmp6_seq_show_item
+ffffffff818d1720 t snmp6_seq_show_icmpv6msg
+ffffffff818d1880 t sockstat6_seq_show
+ffffffff818d1940 t snmp6_seq_show
+ffffffff818d1ac0 t esp6_output_head
+ffffffff818d2040 t esp6_output_tail
+ffffffff818d25b0 t esp6_input_done2
+ffffffff818d2970 t esp6_rcv_cb
+ffffffff818d2980 t esp6_err
+ffffffff818d2a80 t esp6_init_state
+ffffffff818d30e0 t esp6_destroy
+ffffffff818d3100 t esp6_input
+ffffffff818d3420 t esp6_output
+ffffffff818d35a0 t ipcomp6_rcv_cb
+ffffffff818d35b0 t ipcomp6_err
+ffffffff818d36c0 t ipcomp6_init_state
+ffffffff818d3990 t xfrm6_tunnel_spi_lookup
+ffffffff818d3a30 t xfrm6_tunnel_alloc_spi
+ffffffff818d3cf0 t xfrm6_tunnel_rcv
+ffffffff818d3dc0 t xfrm6_tunnel_err
+ffffffff818d3dd0 t xfrm6_tunnel_init_state
+ffffffff818d3e40 t xfrm6_tunnel_destroy
+ffffffff818d3f50 t xfrm6_tunnel_input
+ffffffff818d3f80 t xfrm6_tunnel_output
+ffffffff818d3fb0 t x6spi_destroy_rcu
+ffffffff818d3fd0 t xfrm6_tunnel_register
+ffffffff818d4080 t xfrm6_tunnel_deregister
+ffffffff818d4120 t tunnel6_rcv_cb
+ffffffff818d41a0 t tunnel46_rcv
+ffffffff818d4240 t tunnel46_err
+ffffffff818d42d0 t tunnel6_rcv
+ffffffff818d4370 t tunnel6_err
+ffffffff818d4400 t mip6_mh_filter
+ffffffff818d4530 t mip6_rthdr_init_state
+ffffffff818d45a0 t mip6_rthdr_destroy
+ffffffff818d45b0 t mip6_rthdr_input
+ffffffff818d4640 t mip6_rthdr_output
+ffffffff818d4720 t mip6_destopt_init_state
+ffffffff818d4790 t mip6_destopt_destroy
+ffffffff818d47a0 t mip6_destopt_input
+ffffffff818d4830 t mip6_destopt_output
+ffffffff818d4930 t mip6_destopt_reject
+ffffffff818d4cb0 t vti6_dev_setup
+ffffffff818d4d40 t vti6_validate
+ffffffff818d4d50 t vti6_newlink
+ffffffff818d4f10 t vti6_changelink
+ffffffff818d51b0 t vti6_dellink
+ffffffff818d5200 t vti6_get_size
+ffffffff818d5210 t vti6_fill_info
+ffffffff818d5330 t vti6_dev_free
+ffffffff818d5350 t vti6_dev_init
+ffffffff818d5410 t vti6_dev_uninit
+ffffffff818d5500 t vti6_tnl_xmit
+ffffffff818d5cc0 t vti6_siocdevprivate
+ffffffff818d6320 t vti6_link_config
+ffffffff818d6470 t vti6_locate
+ffffffff818d6640 t vti6_update
+ffffffff818d67d0 t vti6_tnl_create2
+ffffffff818d68a0 t vti6_rcv_tunnel
+ffffffff818d68f0 t vti6_rcv_cb
+ffffffff818d6a80 t vti6_err
+ffffffff818d6bf0 t vti6_input_proto
+ffffffff818d6d30 t vti6_tnl_lookup
+ffffffff818d6ea0 t vti6_rcv
+ffffffff818d6ed0 t ipip6_tunnel_setup
+ffffffff818d6f80 t ipip6_validate
+ffffffff818d6fc0 t ipip6_newlink
+ffffffff818d71a0 t ipip6_changelink
+ffffffff818d73b0 t ipip6_dellink
+ffffffff818d7400 t ipip6_get_size
+ffffffff818d7410 t ipip6_fill_info
+ffffffff818d7660 t ipip6_dev_free
+ffffffff818d7690 t ipip6_tunnel_init
+ffffffff818d7790 t ipip6_tunnel_uninit
+ffffffff818d78e0 t sit_tunnel_xmit
+ffffffff818d8170 t ipip6_tunnel_siocdevprivate
+ffffffff818d8590 t ipip6_tunnel_ctl
+ffffffff818d8ab0 t ipip6_tunnel_bind_dev
+ffffffff818d8c00 t ipip6_tunnel_del_prl
+ffffffff818d8ce0 t prl_list_destroy_rcu
+ffffffff818d8d10 t ipip6_tunnel_locate
+ffffffff818d8f00 t ipip6_tunnel_create
+ffffffff818d8fd0 t ipip6_tunnel_update
+ffffffff818d9160 t ipip6_rcv
+ffffffff818d99e0 t ipip6_err
+ffffffff818d9b60 t ipip6_tunnel_lookup
+ffffffff818d9ce0 t ip6_tnl_parse_tlv_enc_lim
+ffffffff818d9ea0 t ip6_tnl_get_cap
+ffffffff818d9f20 t ip6_tnl_rcv_ctl
+ffffffff818da050 t ip6_tnl_rcv
+ffffffff818da080 t ip6ip6_dscp_ecn_decapsulate
+ffffffff818da0d0 t ip4ip6_dscp_ecn_decapsulate
+ffffffff818da160 t __ip6_tnl_rcv
+ffffffff818da480 t ip6_tnl_xmit_ctl
+ffffffff818da620 t ip6_tnl_xmit
+ffffffff818db3f0 t skb_clone_writable
+ffffffff818db440 t ip6_tnl_change_mtu
+ffffffff818db4b0 t ip6_tnl_get_iflink
+ffffffff818db4d0 t ip6_tnl_encap_add_ops
+ffffffff818db500 t ip6_tnl_encap_del_ops
+ffffffff818db540 t ip6_tnl_encap_setup
+ffffffff818db620 t ip6_tnl_get_link_net
+ffffffff818db640 t IP6_ECN_decapsulate
+ffffffff818dbb70 t ip6_tnl_dev_setup
+ffffffff818dbc20 t ip6_tnl_validate
+ffffffff818dbc60 t ip6_tnl_newlink
+ffffffff818dbe70 t ip6_tnl_changelink
+ffffffff818dc150 t ip6_tnl_dellink
+ffffffff818dc1a0 t ip6_tnl_get_size
+ffffffff818dc1b0 t ip6_tnl_fill_info
+ffffffff818dc420 t ip6_dev_free
+ffffffff818dc460 t ip6_tnl_dev_init
+ffffffff818dc610 t ip6_tnl_dev_uninit
+ffffffff818dc710 t ip6_tnl_start_xmit
+ffffffff818dccc0 t ip6_tnl_siocdevprivate
+ffffffff818dd380 t ip6_tnl_link_config
+ffffffff818dd5a0 t ip6_tnl_locate
+ffffffff818dd790 t ip6_tnl_update
+ffffffff818dd950 t ip6_tnl_create2
+ffffffff818dda30 t ip6_tnl_netlink_parms
+ffffffff818ddbc0 t ip4ip6_rcv
+ffffffff818ddbf0 t ip4ip6_err
+ffffffff818de050 t ipxip6_rcv
+ffffffff818de270 t ip6_tnl_lookup
+ffffffff818de450 t ip6_tnl_err
+ffffffff818de640 t ip6ip6_rcv
+ffffffff818de670 t ip6ip6_err
+ffffffff818de800 t ip6gre_tap_setup
+ffffffff818de860 t ip6gre_tap_validate
+ffffffff818de940 t ip6gre_newlink
+ffffffff818deb20 t ip6gre_changelink
+ffffffff818ded30 t ip6gre_get_size
+ffffffff818ded40 t ip6gre_fill_info
+ffffffff818df1a0 t ip6gre_dev_free
+ffffffff818df1e0 t ip6gre_tap_init
+ffffffff818df200 t ip6gre_tunnel_uninit
+ffffffff818df320 t ip6gre_tunnel_xmit
+ffffffff818dfa30 t ip6gre_tunnel_init_common
+ffffffff818dfca0 t ip6gre_tunnel_unlink
+ffffffff818dfd20 t prepare_ip6gre_xmit_ipv4
+ffffffff818dfdc0 t __gre6_xmit
+ffffffff818e0170 t prepare_ip6gre_xmit_ipv6
+ffffffff818e02d0 t ip6gre_tunnel_validate
+ffffffff818e0320 t ip6gre_netlink_parms
+ffffffff818e0580 t ip6gre_tunnel_find
+ffffffff818e0690 t ip6gre_newlink_common
+ffffffff818e0800 t ip6gre_tunnel_link
+ffffffff818e0870 t ip6gre_tnl_link_config_common
+ffffffff818e0990 t ip6gre_tnl_link_config_route
+ffffffff818e0a70 t ip6gre_changelink_common
+ffffffff818e0bd0 t ip6gre_tnl_change
+ffffffff818e0cf0 t ip6gre_tunnel_locate
+ffffffff818e0f50 t ip6gre_tunnel_setup
+ffffffff818e0fd0 t ip6gre_tunnel_init
+ffffffff818e1040 t ip6gre_tunnel_siocdevprivate
+ffffffff818e1870 t ip6gre_header
+ffffffff818e1a80 t ip6gre_tnl_parm_from_user
+ffffffff818e1ba0 t ip6gre_tnl_parm_to_user
+ffffffff818e1cc0 t ip6gre_dellink
+ffffffff818e1d10 t ip6erspan_tap_setup
+ffffffff818e1d70 t ip6erspan_tap_validate
+ffffffff818e1f20 t ip6erspan_newlink
+ffffffff818e2150 t ip6erspan_changelink
+ffffffff818e2490 t ip6erspan_tap_init
+ffffffff818e26b0 t ip6erspan_tunnel_uninit
+ffffffff818e27b0 t ip6erspan_tunnel_xmit
+ffffffff818e2ee0 t ip6gre_err
+ffffffff818e3070 t ip6gre_tunnel_lookup
+ffffffff818e3400 t __ipv6_addr_type
+ffffffff818e3500 t register_inet6addr_notifier
+ffffffff818e3520 t unregister_inet6addr_notifier
+ffffffff818e3540 t inet6addr_notifier_call_chain
+ffffffff818e3560 t register_inet6addr_validator_notifier
+ffffffff818e3580 t unregister_inet6addr_validator_notifier
+ffffffff818e35a0 t inet6addr_validator_notifier_call_chain
+ffffffff818e35c0 t eafnosupport_ipv6_dst_lookup_flow
+ffffffff818e35e0 t eafnosupport_ipv6_route_input
+ffffffff818e35f0 t eafnosupport_fib6_get_table
+ffffffff818e3600 t eafnosupport_fib6_lookup
+ffffffff818e3610 t eafnosupport_fib6_table_lookup
+ffffffff818e3620 t eafnosupport_fib6_select_path
+ffffffff818e3630 t eafnosupport_ip6_mtu_from_fib6
+ffffffff818e3640 t eafnosupport_fib6_nh_init
+ffffffff818e3670 t eafnosupport_ip6_del_rt
+ffffffff818e3680 t eafnosupport_ipv6_fragment
+ffffffff818e36a0 t eafnosupport_ipv6_dev_find
+ffffffff818e36c0 t in6_dev_finish_destroy
+ffffffff818e3750 t in6_dev_finish_destroy_rcu
+ffffffff818e3790 t ipv6_ext_hdr
+ffffffff818e37c0 t ipv6_skip_exthdr
+ffffffff818e39a0 t ipv6_find_tlv
+ffffffff818e3a40 t ipv6_find_hdr
+ffffffff818e3ec0 t udp6_csum_init
+ffffffff818e4100 t udp6_set_csum
+ffffffff818e41f0 t ipv6_proxy_select_ident
+ffffffff818e42c0 t ipv6_select_ident
+ffffffff818e42f0 t ip6_find_1stfragopt
+ffffffff818e4410 t ip6_dst_hoplimit
+ffffffff818e4460 t __ip6_local_out
+ffffffff818e44b0 t ip6_local_out
+ffffffff818e4540 t inet6_add_protocol
+ffffffff818e4570 t inet6_del_protocol
+ffffffff818e45a0 t inet6_add_offload
+ffffffff818e45d0 t inet6_del_offload
+ffffffff818e4600 t ipv6_gro_receive
+ffffffff818e4a20 t ipv6_gso_pull_exthdrs
+ffffffff818e4b00 t ipv6_gro_complete
+ffffffff818e4c90 t ipv6_gso_segment
+ffffffff818e5110 t sit_gso_segment
+ffffffff818e5140 t sit_ip6ip6_gro_receive
+ffffffff818e5170 t sit_gro_complete
+ffffffff818e51a0 t ip6ip6_gso_segment
+ffffffff818e51d0 t ip6ip6_gro_complete
+ffffffff818e5200 t ip4ip6_gso_segment
+ffffffff818e5230 t ip4ip6_gro_receive
+ffffffff818e5260 t ip4ip6_gro_complete
+ffffffff818e5290 t tcp6_gro_receive
+ffffffff818e53f0 t tcp6_gro_complete
+ffffffff818e5470 t tcp6_gso_segment.llvm.1773059960791754521
+ffffffff818e5530 t __tcp_v6_send_check
+ffffffff818e5590 t inet6_ehashfn
+ffffffff818e5780 t __inet6_lookup_established
+ffffffff818e5940 t inet6_lookup_listener
+ffffffff818e5ce0 t inet6_lhash2_lookup
+ffffffff818e5e10 t inet6_lookup
+ffffffff818e5f00 t inet6_hash_connect
+ffffffff818e5f50 t __inet6_check_established
+ffffffff818e61c0 t inet6_hash
+ffffffff818e61e0 t ipv6_mc_check_mld
+ffffffff818e6610 t ipv6_mc_validate_checksum
+ffffffff818e6750 t packet_notifier
+ffffffff818e69a0 t __unregister_prot_hook
+ffffffff818e6a90 t __register_prot_hook
+ffffffff818e6b40 t __fanout_link
+ffffffff818e6ba0 t packet_seq_start
+ffffffff818e6bd0 t packet_seq_stop
+ffffffff818e6be0 t packet_seq_next
+ffffffff818e6c00 t packet_seq_show
+ffffffff818e6ce0 t packet_create
+ffffffff818e6f70 t dev_queue_xmit
+ffffffff818e6f90 t packet_sock_destruct
+ffffffff818e6ff0 t packet_rcv
+ffffffff818e7330 t packet_rcv_spkt
+ffffffff818e7430 t packet_release
+ffffffff818e7850 t packet_bind
+ffffffff818e7890 t packet_getname
+ffffffff818e7940 t packet_poll
+ffffffff818e7a90 t packet_ioctl
+ffffffff818e7b60 t packet_setsockopt
+ffffffff818e8480 t packet_getsockopt
+ffffffff818e8820 t packet_sendmsg
+ffffffff818e9db0 t packet_recvmsg
+ffffffff818ea1c0 t packet_mmap
+ffffffff818ea3c0 t packet_set_ring
+ffffffff818eadd0 t tpacket_rcv
+ffffffff818eb940 t free_pg_vec
+ffffffff818eb9b0 t prb_retire_rx_blk_timer_expired
+ffffffff818ebc30 t prb_retire_current_block
+ffffffff818ebd30 t prb_dispatch_next_block
+ffffffff818ebe50 t run_filter
+ffffffff818ebf20 t __packet_rcv_has_room
+ffffffff818ec0a0 t skb_csum_unnecessary
+ffffffff818ec0f0 t skb_get
+ffffffff818ec140 t skb_set_owner_r
+ffffffff818ec1b0 t packet_increment_rx_head
+ffffffff818ec1f0 t skb_clear_delivery_time
+ffffffff818ec230 t __packet_set_status
+ffffffff818ec290 t __packet_get_status
+ffffffff818ec2e0 t packet_do_bind
+ffffffff818ec520 t packet_mc_add
+ffffffff818ec740 t packet_mc_drop
+ffffffff818ec890 t fanout_add
+ffffffff818ecc90 t fanout_set_data
+ffffffff818ecdd0 t packet_direct_xmit
+ffffffff818ecea0 t packet_rcv_fanout
+ffffffff818ed4a0 t match_fanout_group
+ffffffff818ed4d0 t virtio_net_hdr_to_skb
+ffffffff818ed8f0 t tpacket_destruct_skb
+ffffffff818eda90 t packet_parse_headers
+ffffffff818edce0 t packet_mm_open
+ffffffff818edd10 t packet_mm_close
+ffffffff818edd40 t packet_bind_spkt
+ffffffff818eddb0 t packet_getname_spkt
+ffffffff818ede30 t packet_sendmsg_spkt
+ffffffff818ee340 t pfkey_send_notify
+ffffffff818ee5e0 t pfkey_send_acquire
+ffffffff818eed30 t pfkey_compile_policy
+ffffffff818eeef0 t pfkey_send_new_mapping
+ffffffff818ef180 t pfkey_send_policy_notify
+ffffffff818ef490 t pfkey_send_migrate
+ffffffff818ef4a0 t pfkey_is_alive
+ffffffff818ef510 t pfkey_broadcast
+ffffffff818ef870 t __pfkey_xfrm_state2msg
+ffffffff818f0070 t parse_ipsecrequests
+ffffffff818f0400 t pfkey_sadb2xfrm_user_sec_ctx
+ffffffff818f0470 t check_reqid
+ffffffff818f04f0 t pfkey_xfrm_policy2msg
+ffffffff818f0bb0 t pfkey_seq_start
+ffffffff818f0bf0 t pfkey_seq_stop
+ffffffff818f0c00 t pfkey_seq_next
+ffffffff818f0c50 t pfkey_seq_show
+ffffffff818f0cf0 t pfkey_create
+ffffffff818f0ed0 t pfkey_sock_destruct
+ffffffff818f0fa0 t pfkey_release
+ffffffff818f10c0 t pfkey_sendmsg
+ffffffff818f1530 t pfkey_recvmsg
+ffffffff818f1680 t pfkey_reserved
+ffffffff818f1690 t pfkey_getspi
+ffffffff818f19c0 t pfkey_add
+ffffffff818f2180 t pfkey_delete
+ffffffff818f2320 t pfkey_get
+ffffffff818f24e0 t pfkey_acquire
+ffffffff818f2590 t pfkey_register
+ffffffff818f27a0 t pfkey_flush
+ffffffff818f28f0 t pfkey_dump
+ffffffff818f2a60 t pfkey_promisc
+ffffffff818f2b10 t pfkey_spdadd
+ffffffff818f2ef0 t pfkey_spddelete
+ffffffff818f31d0 t pfkey_spdget
+ffffffff818f3500 t pfkey_spddump
+ffffffff818f3590 t pfkey_spdflush
+ffffffff818f36a0 t pfkey_migrate
+ffffffff818f36b0 t xfrm_state_put
+ffffffff818f36f0 t pfkey_dump_sa
+ffffffff818f3720 t pfkey_dump_sa_done
+ffffffff818f3740 t pfkey_do_dump
+ffffffff818f3830 t dump_sa
+ffffffff818f3920 t xfrm_pol_put
+ffffffff818f3960 t pfkey_dump_sp
+ffffffff818f3990 t pfkey_dump_sp_done
+ffffffff818f39b0 t dump_sp
+ffffffff818f3c00 t register_net_sysctl
+ffffffff818f3c20 t unregister_net_sysctl_table
+ffffffff818f3c30 t is_seen
+ffffffff818f3c60 t net_ctl_header_lookup
+ffffffff818f3c90 t net_ctl_set_ownership
+ffffffff818f3cb0 t net_ctl_permissions
+ffffffff818f3cf0 t vsock_insert_connected
+ffffffff818f3db0 t vsock_remove_bound
+ffffffff818f3e50 t vsock_remove_connected
+ffffffff818f3ef0 t vsock_find_bound_socket
+ffffffff818f4000 t vsock_find_connected_socket
+ffffffff818f4110 t vsock_remove_sock
+ffffffff818f4130 t vsock_for_each_connected_socket
+ffffffff818f41d0 t vsock_add_pending
+ffffffff818f4290 t vsock_remove_pending
+ffffffff818f4340 t vsock_enqueue_accept
+ffffffff818f4400 t vsock_assign_transport
+ffffffff818f4590 t vsock_find_cid
+ffffffff818f45f0 t vsock_create_connected
+ffffffff818f4620 t __vsock_create.llvm.11508138782072270821
+ffffffff818f48c0 t vsock_stream_has_data
+ffffffff818f48e0 t vsock_stream_has_space
+ffffffff818f4900 t vsock_data_ready
+ffffffff818f4950 t vsock_core_get_transport
+ffffffff818f4970 t vsock_core_register
+ffffffff818f4a40 t vsock_core_unregister
+ffffffff818f4ae0 t vsock_sk_destruct
+ffffffff818f4b60 t vsock_queue_rcv_skb
+ffffffff818f4ba0 t vsock_connect_timeout
+ffffffff818f4c60 t vsock_pending_work
+ffffffff818f4da0 t vsock_dev_ioctl
+ffffffff818f4e10 t vsock_create
+ffffffff818f4fa0 t vsock_release
+ffffffff818f4fd0 t vsock_bind
+ffffffff818f5060 t vsock_dgram_connect
+ffffffff818f51b0 t vsock_getname
+ffffffff818f5240 t vsock_poll
+ffffffff818f5460 t vsock_shutdown
+ffffffff818f5520 t vsock_dgram_sendmsg
+ffffffff818f56d0 t vsock_dgram_recvmsg
+ffffffff818f56f0 t __vsock_release
+ffffffff818f58c0 t __vsock_bind
+ffffffff818f5cd0 t vsock_auto_bind
+ffffffff818f5d50 t vsock_connect
+ffffffff818f60e0 t vsock_accept
+ffffffff818f6400 t vsock_listen
+ffffffff818f6480 t vsock_connectible_setsockopt
+ffffffff818f67b0 t vsock_connectible_getsockopt
+ffffffff818f6910 t vsock_connectible_sendmsg
+ffffffff818f6cb0 t vsock_connectible_recvmsg
+ffffffff818f7040 t vsock_set_rcvlowat
+ffffffff818f70a0 t vsock_connectible_wait_data
+ffffffff818f7240 t vsock_add_tap
+ffffffff818f72d0 t vsock_remove_tap
+ffffffff818f7370 t vsock_deliver_tap
+ffffffff818f73d0 t __vsock_deliver_tap
+ffffffff818f7480 t vsock_addr_init
+ffffffff818f74b0 t vsock_addr_validate
+ffffffff818f74f0 t vsock_addr_bound
+ffffffff818f7510 t vsock_addr_unbind
+ffffffff818f7540 t vsock_addr_equals_addr
+ffffffff818f7570 t vsock_addr_cast
+ffffffff818f75b0 t vsock_diag_handler_dump
+ffffffff818f7660 t vsock_diag_dump
+ffffffff818f79e0 t virtio_vsock_probe
+ffffffff818f7bc0 t virtio_vsock_remove
+ffffffff818f7c50 t virtio_vsock_freeze
+ffffffff818f7ca0 t virtio_vsock_restore
+ffffffff818f7d00 t virtio_transport_rx_work
+ffffffff818f7e50 t virtio_transport_tx_work
+ffffffff818f7f60 t virtio_transport_event_work
+ffffffff818f8100 t virtio_transport_send_pkt_work
+ffffffff818f84f0 t virtio_vsock_vqs_init
+ffffffff818f89f0 t virtio_vsock_rx_fill
+ffffffff818f8b90 t virtio_vsock_reset_sock
+ffffffff818f8bb0 t virtio_vsock_rx_done
+ffffffff818f8be0 t virtio_vsock_tx_done
+ffffffff818f8c10 t virtio_vsock_event_done
+ffffffff818f8c40 t virtio_vsock_vqs_del
+ffffffff818f8e20 t virtio_transport_cancel_pkt
+ffffffff818f9000 t virtio_transport_seqpacket_allow
+ffffffff818f9040 t virtio_transport_get_local_cid
+ffffffff818f9080 t virtio_transport_send_pkt
+ffffffff818f9170 t __traceiter_virtio_transport_alloc_pkt
+ffffffff818f9200 t __traceiter_virtio_transport_recv_pkt
+ffffffff818f92a0 t trace_event_raw_event_virtio_transport_alloc_pkt
+ffffffff818f93a0 t perf_trace_virtio_transport_alloc_pkt
+ffffffff818f94d0 t trace_event_raw_event_virtio_transport_recv_pkt
+ffffffff818f95e0 t perf_trace_virtio_transport_recv_pkt
+ffffffff818f9730 t virtio_transport_deliver_tap_pkt
+ffffffff818f9760 t virtio_transport_build_skb
+ffffffff818f9870 t virtio_transport_inc_tx_pkt
+ffffffff818f98c0 t virtio_transport_get_credit
+ffffffff818f9920 t virtio_transport_put_credit
+ffffffff818f9960 t virtio_transport_stream_dequeue
+ffffffff818f9c70 t virtio_transport_seqpacket_dequeue
+ffffffff818f9ed0 t virtio_transport_seqpacket_enqueue
+ffffffff818f9f80 t virtio_transport_stream_enqueue
+ffffffff818f9ff0 t virtio_transport_dgram_dequeue
+ffffffff818fa000 t virtio_transport_stream_has_data
+ffffffff818fa040 t virtio_transport_seqpacket_has_data
+ffffffff818fa080 t virtio_transport_stream_has_space
+ffffffff818fa0d0 t virtio_transport_do_socket_init
+ffffffff818fa170 t virtio_transport_notify_buffer_size
+ffffffff818fa200 t virtio_transport_notify_poll_in
+ffffffff818fa230 t virtio_transport_notify_poll_out
+ffffffff818fa260 t virtio_transport_notify_recv_init
+ffffffff818fa270 t virtio_transport_notify_recv_pre_block
+ffffffff818fa280 t virtio_transport_notify_recv_pre_dequeue
+ffffffff818fa290 t virtio_transport_notify_recv_post_dequeue
+ffffffff818fa2a0 t virtio_transport_notify_send_init
+ffffffff818fa2b0 t virtio_transport_notify_send_pre_block
+ffffffff818fa2c0 t virtio_transport_notify_send_pre_enqueue
+ffffffff818fa2d0 t virtio_transport_notify_send_post_enqueue
+ffffffff818fa2e0 t virtio_transport_stream_rcvhiwat
+ffffffff818fa300 t virtio_transport_stream_is_active
+ffffffff818fa310 t virtio_transport_stream_allow
+ffffffff818fa320 t virtio_transport_dgram_bind
+ffffffff818fa330 t virtio_transport_dgram_allow
+ffffffff818fa340 t virtio_transport_connect
+ffffffff818fa3b0 t virtio_transport_send_pkt_info
+ffffffff818fa530 t virtio_transport_shutdown
+ffffffff818fa5a0 t virtio_transport_dgram_enqueue
+ffffffff818fa5b0 t virtio_transport_destruct
+ffffffff818fa5d0 t virtio_transport_release
+ffffffff818fa8f0 t virtio_transport_recv_pkt
+ffffffff818fb470 t virtio_transport_free_pkt
+ffffffff818fb4a0 t trace_raw_output_virtio_transport_alloc_pkt
+ffffffff818fb580 t trace_raw_output_virtio_transport_recv_pkt
+ffffffff818fb670 t virtio_transport_alloc_pkt
+ffffffff818fb890 t virtio_transport_close_timeout
+ffffffff818fb9b0 t virtio_transport_do_close
+ffffffff818fbb00 t vsock_loopback_cancel_pkt
+ffffffff818fbc60 t vsock_loopback_seqpacket_allow
+ffffffff818fbc70 t vsock_loopback_get_local_cid
+ffffffff818fbc80 t vsock_loopback_send_pkt
+ffffffff818fbd10 t vsock_loopback_work
+ffffffff818fbdf0 t pcibios_retrieve_fw_addr
+ffffffff818fbe70 t pcibios_align_resource
+ffffffff818fbee0 t pcibios_resource_survey_bus
+ffffffff818fbf40 t pcibios_allocate_bus_resources
+ffffffff818fc0c0 t pcibios_allocate_resources
+ffffffff818fc410 t pcibios_allocate_rom_resources
+ffffffff818fc4a0 t pci_mmcfg_read.llvm.9170060999803348632
+ffffffff818fc570 t pci_mmcfg_write.llvm.9170060999803348632
+ffffffff818fc640 t pci_mmcfg_arch_map
+ffffffff818fc6d0 t pci_mmcfg_arch_unmap
+ffffffff818fc710 t pci_conf1_read
+ffffffff818fc800 t pci_conf1_write
+ffffffff818fc8f0 t pci_conf2_read
+ffffffff818fca00 t pci_conf2_write
+ffffffff818fcb00 t pci_mmconfig_alloc
+ffffffff818fcbd0 t list_add_sorted
+ffffffff818fcc90 t pci_mmconfig_lookup
+ffffffff818fccf0 t pci_mmconfig_insert
+ffffffff818fcef0 t pci_mmconfig_delete
+ffffffff818fcfc0 t is_acpi_reserved
+ffffffff818fd0a0 t find_mboard_resource
+ffffffff818fd0e0 t check_mcfg_resource
+ffffffff818fd1d0 t __UNIQUE_ID_pci_fixup_i450nx270
+ffffffff818fd2e0 t __UNIQUE_ID_pci_fixup_i450gx272
+ffffffff818fd360 t __UNIQUE_ID_pci_fixup_umc_ide274
+ffffffff818fd3a0 t __UNIQUE_ID_pci_fixup_latency276
+ffffffff818fd3c0 t __UNIQUE_ID_pci_fixup_latency278
+ffffffff818fd3e0 t __UNIQUE_ID_pci_fixup_piix4_acpi280
+ffffffff818fd400 t __UNIQUE_ID_pci_fixup_via_northbridge_bug282
+ffffffff818fd410 t pci_fixup_via_northbridge_bug
+ffffffff818fd510 t __UNIQUE_ID_pci_fixup_via_northbridge_bug284
+ffffffff818fd520 t __UNIQUE_ID_pci_fixup_via_northbridge_bug286
+ffffffff818fd530 t __UNIQUE_ID_pci_fixup_via_northbridge_bug288
+ffffffff818fd540 t __UNIQUE_ID_pci_fixup_via_northbridge_bug290
+ffffffff818fd550 t __UNIQUE_ID_pci_fixup_via_northbridge_bug292
+ffffffff818fd560 t __UNIQUE_ID_pci_fixup_via_northbridge_bug294
+ffffffff818fd570 t __UNIQUE_ID_pci_fixup_via_northbridge_bug296
+ffffffff818fd580 t __UNIQUE_ID_pci_fixup_transparent_bridge298
+ffffffff818fd5a0 t __UNIQUE_ID_pci_fixup_nforce2300
+ffffffff818fd630 t __UNIQUE_ID_pci_fixup_nforce2302
+ffffffff818fd6c0 t __UNIQUE_ID_pcie_rootport_aspm_quirk304
+ffffffff818fd6d0 t pcie_rootport_aspm_quirk
+ffffffff818fd860 t __UNIQUE_ID_pcie_rootport_aspm_quirk306
+ffffffff818fd870 t __UNIQUE_ID_pcie_rootport_aspm_quirk308
+ffffffff818fd880 t __UNIQUE_ID_pcie_rootport_aspm_quirk310
+ffffffff818fd890 t __UNIQUE_ID_pcie_rootport_aspm_quirk312
+ffffffff818fd8a0 t __UNIQUE_ID_pcie_rootport_aspm_quirk314
+ffffffff818fd8b0 t __UNIQUE_ID_pci_fixup_video316
+ffffffff818fd9d0 t __UNIQUE_ID_pci_fixup_msi_k8t_onboard_sound318
+ffffffff818fd9e0 t pci_fixup_msi_k8t_onboard_sound
+ffffffff818fda90 t __UNIQUE_ID_pci_fixup_msi_k8t_onboard_sound320
+ffffffff818fdaa0 t __UNIQUE_ID_pci_pre_fixup_toshiba_ohci1394322
+ffffffff818fdae0 t __UNIQUE_ID_pci_post_fixup_toshiba_ohci1394324
+ffffffff818fdb50 t __UNIQUE_ID_pci_early_fixup_cyrix_5530326
+ffffffff818fdbc0 t __UNIQUE_ID_pci_early_fixup_cyrix_5530328
+ffffffff818fdc30 t __UNIQUE_ID_pci_siemens_interrupt_controller330
+ffffffff818fdc50 t __UNIQUE_ID_sb600_disable_hpet_bar332
+ffffffff818fdcc0 t __UNIQUE_ID_sb600_hpet_quirk334
+ffffffff818fdd10 t __UNIQUE_ID_twinhead_reserve_killing_zone336
+ffffffff818fdd70 t __UNIQUE_ID_pci_invalid_bar338
+ffffffff818fdd90 t __UNIQUE_ID_pci_invalid_bar340
+ffffffff818fddb0 t __UNIQUE_ID_pci_invalid_bar342
+ffffffff818fddd0 t __UNIQUE_ID_pci_invalid_bar344
+ffffffff818fddf0 t __UNIQUE_ID_pci_invalid_bar346
+ffffffff818fde10 t __UNIQUE_ID_pci_invalid_bar348
+ffffffff818fde30 t __UNIQUE_ID_pci_invalid_bar350
+ffffffff818fde50 t __UNIQUE_ID_pci_invalid_bar352
+ffffffff818fde70 t __UNIQUE_ID_pci_fixup_amd_ehci_pme354
+ffffffff818fdea0 t __UNIQUE_ID_pci_fixup_amd_fch_xhci_pme356
+ffffffff818fded0 t __UNIQUE_ID_quirk_apple_mbp_poweroff358
+ffffffff818fdf80 t __UNIQUE_ID_quirk_no_aersid360
+ffffffff818fdf90 t __UNIQUE_ID_quirk_intel_th_dnv362
+ffffffff818fdfd0 t __UNIQUE_ID_pci_amd_enable_64bit_bar364
+ffffffff818fdfe0 t pci_amd_enable_64bit_bar
+ffffffff818fe210 t __UNIQUE_ID_pci_amd_enable_64bit_bar366
+ffffffff818fe220 t __UNIQUE_ID_pci_amd_enable_64bit_bar368
+ffffffff818fe230 t __UNIQUE_ID_pci_amd_enable_64bit_bar370
+ffffffff818fe240 t __UNIQUE_ID_pci_amd_enable_64bit_bar372
+ffffffff818fe250 t __UNIQUE_ID_pci_amd_enable_64bit_bar374
+ffffffff818fe260 t __UNIQUE_ID_pci_amd_enable_64bit_bar376
+ffffffff818fe270 t __UNIQUE_ID_pci_amd_enable_64bit_bar378
+ffffffff818fe280 t __UNIQUE_ID_pci_amd_enable_64bit_bar380
+ffffffff818fe290 t __UNIQUE_ID_pci_amd_enable_64bit_bar382
+ffffffff818fe2a0 t __UNIQUE_ID_rs690_fix_64bit_dma384
+ffffffff818fe3c0 t __UNIQUE_ID_quirk_clear_strap_no_soft_reset_dev2_f0386
+ffffffff818fe470 t quirk_pcie_aspm_read
+ffffffff818fe4a0 t quirk_pcie_aspm_write
+ffffffff818fe510 t pci_acpi_scan_root
+ffffffff818fe650 t pcibios_root_bridge_prepare
+ffffffff818fe690 t pci_acpi_root_init_info
+ffffffff818fe7a0 t pci_acpi_root_release_info
+ffffffff818fe7e0 t pci_acpi_root_prepare_resources
+ffffffff818fe930 t pcibios_scan_specific_bus
+ffffffff818fe9f0 t pirq_enable_irq
+ffffffff818fec20 t pirq_disable_irq
+ffffffff818fec90 t elcr_set_level_irq
+ffffffff818fed00 t pcibios_lookup_irq
+ffffffff818ff1f0 t pcibios_penalize_isa_irq
+ffffffff818ff250 t mp_should_keep_irq
+ffffffff818ff270 t pirq_get_info
+ffffffff818ff440 t pirq_esc_get
+ffffffff818ff4b0 t pirq_esc_set
+ffffffff818ff520 t pirq_piix_get
+ffffffff818ff580 t pirq_piix_set
+ffffffff818ff5a0 t pirq_ib_get
+ffffffff818ff600 t pirq_ib_set
+ffffffff818ff630 t pirq_finali_get
+ffffffff818ff6a0 t pirq_finali_set
+ffffffff818ff740 t pirq_finali_lvl
+ffffffff818ff810 t pirq_ali_get
+ffffffff818ff880 t pirq_ali_set
+ffffffff818ff950 t pirq_ite_get
+ffffffff818ff9d0 t pirq_ite_set
+ffffffff818ffa80 t pirq_via586_get
+ffffffff818ffb00 t pirq_via586_set
+ffffffff818ffbc0 t pirq_via_get
+ffffffff818ffc30 t pirq_via_set
+ffffffff818ffcd0 t pirq_opti_get
+ffffffff818ffd40 t pirq_opti_set
+ffffffff818ffde0 t pirq_sis497_get
+ffffffff818ffe50 t pirq_sis497_set
+ffffffff818ffef0 t pirq_sis503_get
+ffffffff818fff60 t pirq_sis503_set
+ffffffff818ffff0 t pirq_cyrix_get
+ffffffff81900050 t pirq_cyrix_set
+ffffffff819000f0 t pirq_vlsi_get
+ffffffff81900180 t pirq_vlsi_set
+ffffffff81900240 t pirq_serverworks_get
+ffffffff81900260 t pirq_serverworks_set
+ffffffff81900280 t pirq_amd756_get
+ffffffff81900330 t pirq_amd756_set
+ffffffff819003f0 t pirq_pico_get
+ffffffff81900420 t pirq_pico_set
+ffffffff81900460 t raw_pci_read
+ffffffff819004b0 t raw_pci_write
+ffffffff81900500 t pci_read
+ffffffff81900570 t pci_write
+ffffffff819005e0 t pcibios_fixup_bus
+ffffffff81900790 t pcibios_add_bus
+ffffffff819007a0 t pcibios_remove_bus
+ffffffff819007b0 t pcibios_scan_root
+ffffffff81900890 t pcibios_assign_all_busses
+ffffffff819008b0 t pcibios_device_add
+ffffffff819009d0 t pcibios_enable_device
+ffffffff81900a10 t pcibios_disable_device
+ffffffff81900a40 t pcibios_release_device
+ffffffff81900a80 t pci_ext_cfg_avail
+ffffffff81900aa0 t read_pci_config
+ffffffff81900ad0 t read_pci_config_byte
+ffffffff81900b00 t read_pci_config_16
+ffffffff81900b30 t write_pci_config
+ffffffff81900b60 t write_pci_config_byte
+ffffffff81900ba0 t write_pci_config_16
+ffffffff81900be0 t early_pci_allowed
+ffffffff81900c00 t x86_pci_root_bus_node
+ffffffff81900c40 t x86_pci_root_bus_resources
+ffffffff81900d10 t update_res
+ffffffff81900e10 t amd_bus_cpu_online
+ffffffff81900e90 t argv_free
+ffffffff81900ec0 t argv_split
+ffffffff81900fe0 t module_bug_finalize
+ffffffff819010d0 t module_bug_cleanup
+ffffffff81901120 t bug_get_file_line
+ffffffff81901140 t find_bug
+ffffffff81901210 t report_bug
+ffffffff81901470 t generic_bug_clear_once
+ffffffff81901510 t build_id_parse
+ffffffff819018b0 t build_id_parse_buf
+ffffffff81901990 t get_option
+ffffffff81901a30 t get_options
+ffffffff81901bc0 t memparse
+ffffffff81901c90 t parse_option_str
+ffffffff81901d40 t next_arg
+ffffffff81901e60 t cpumask_next_wrap
+ffffffff81901ed0 t cpumask_local_spread
+ffffffff81901f80 t cpumask_any_and_distribute
+ffffffff81902020 t cpumask_any_distribute
+ffffffff819020b0 t _atomic_dec_and_lock
+ffffffff81902100 t _atomic_dec_and_lock_irqsave
+ffffffff81902160 t dump_stack_print_info
+ffffffff81902250 t show_regs_print_info
+ffffffff81902260 t dump_stack_lvl
+ffffffff819022f8 t dump_stack
+ffffffff81902310 t find_cpio_data
+ffffffff81902730 t sort_extable
+ffffffff81902770 t cmp_ex_sort
+ffffffff819027a0 t swap_ex
+ffffffff819027e0 t trim_init_extable
+ffffffff81902890 t search_extable
+ffffffff819028f0 t cmp_ex_search.llvm.11718728313058937736
+ffffffff81902920 t fprop_global_init
+ffffffff81902960 t fprop_global_destroy
+ffffffff81902970 t fprop_new_period
+ffffffff819029d0 t fprop_local_init_single
+ffffffff819029f0 t fprop_local_destroy_single
+ffffffff81902a00 t __fprop_inc_single
+ffffffff81902a80 t fprop_fraction_single
+ffffffff81902b50 t fprop_local_init_percpu
+ffffffff81902b80 t fprop_local_destroy_percpu
+ffffffff81902b90 t __fprop_add_percpu
+ffffffff81902bf0 t fprop_reflect_period_percpu
+ffffffff81902cc0 t fprop_fraction_percpu
+ffffffff81902d50 t __fprop_add_percpu_max
+ffffffff81902e70 t idr_alloc_u32
+ffffffff81902f50 t idr_alloc
+ffffffff81903050 t idr_alloc_cyclic
+ffffffff81903210 t idr_remove
+ffffffff81903230 t idr_find
+ffffffff81903250 t idr_for_each
+ffffffff81903360 t idr_get_next_ul
+ffffffff81903490 t idr_get_next
+ffffffff819035e0 t idr_replace
+ffffffff81903690 t ida_alloc_range
+ffffffff81903b00 t ida_free
+ffffffff81903c50 t ida_destroy
+ffffffff81903d90 t current_is_single_threaded
+ffffffff81903e80 t klist_init
+ffffffff81903eb0 t klist_add_head
+ffffffff81903f40 t klist_add_tail
+ffffffff81903fd0 t klist_add_behind
+ffffffff81904060 t klist_add_before
+ffffffff81904100 t klist_del
+ffffffff81904170 t klist_remove
+ffffffff819042c0 t klist_node_attached
+ffffffff819042e0 t klist_iter_init_node
+ffffffff81904350 t klist_iter_init
+ffffffff81904370 t klist_iter_exit
+ffffffff819043e0 t klist_prev
+ffffffff819044c0 t klist_dec_and_del
+ffffffff81904610 t klist_next
+ffffffff819046f0 t kobject_namespace
+ffffffff81904740 t kobj_ns_ops
+ffffffff81904780 t kobject_get_ownership
+ffffffff819047b0 t kobject_get_path
+ffffffff819048a0 t kobject_set_name_vargs
+ffffffff81904940 t kobject_set_name
+ffffffff819049c0 t kobject_init
+ffffffff81904a60 t kobject_add
+ffffffff81904b60 t kobject_init_and_add
+ffffffff81904cc0 t kobject_rename
+ffffffff81904ed0 t kobject_get
+ffffffff81904f30 t kobject_put
+ffffffff81904ff0 t kobject_move
+ffffffff81905260 t kobject_del
+ffffffff81905290 t __kobject_del
+ffffffff81905350 t kobject_get_unless_zero
+ffffffff819053b0 t kobject_create_and_add
+ffffffff81905480 t kset_init
+ffffffff819054c0 t kobj_attr_show
+ffffffff819054f0 t kobj_attr_store
+ffffffff81905520 t kset_register
+ffffffff81905590 t kobject_add_internal
+ffffffff81905990 t kset_unregister
+ffffffff819059d0 t kset_find_obj
+ffffffff81905a90 t kset_create_and_add
+ffffffff81905b60 t kobj_ns_type_register
+ffffffff81905bc0 t kobj_ns_type_registered
+ffffffff81905c00 t kobj_child_ns_ops
+ffffffff81905c40 t kobj_ns_current_may_mount
+ffffffff81905c90 t kobj_ns_grab_current
+ffffffff81905ce0 t kobj_ns_netlink
+ffffffff81905d40 t kobj_ns_initial
+ffffffff81905d90 t kobj_ns_drop
+ffffffff81905df0 t dynamic_kobj_release
+ffffffff81905e00 t kset_release
+ffffffff81905e20 t kset_get_ownership
+ffffffff81905e60 t kobject_synth_uevent
+ffffffff81906390 t kobject_uevent_env
+ffffffff81906650 t add_uevent_var
+ffffffff819067b0 t zap_modalias_env
+ffffffff81906900 t kobject_uevent_net_broadcast
+ffffffff81906b10 t kobject_uevent
+ffffffff81906b30 t alloc_uevent_skb
+ffffffff81906c00 t uevent_net_init
+ffffffff81906d50 t uevent_net_exit
+ffffffff81906dd0 t uevent_net_rcv
+ffffffff81906df0 t uevent_net_rcv_skb
+ffffffff81906fd0 t logic_pio_register_range
+ffffffff819071a0 t logic_pio_unregister_range
+ffffffff81907200 t find_io_range_by_fwnode
+ffffffff81907250 t logic_pio_to_hwaddr
+ffffffff819072d0 t logic_pio_trans_hwaddr
+ffffffff819073a0 t logic_pio_trans_cpuaddr
+ffffffff81907460 t __traceiter_ma_op
+ffffffff819074b0 t __traceiter_ma_read
+ffffffff81907500 t __traceiter_ma_write
+ffffffff81907570 t trace_event_raw_event_ma_op
+ffffffff81907660 t perf_trace_ma_op
+ffffffff81907780 t trace_event_raw_event_ma_read
+ffffffff81907870 t perf_trace_ma_read
+ffffffff81907990 t trace_event_raw_event_ma_write
+ffffffff81907a90 t perf_trace_ma_write
+ffffffff81907bd0 t mas_is_err
+ffffffff81907c00 t mas_next_slot
+ffffffff81907f50 t mas_next_node
+ffffffff81908160 t mas_walk
+ffffffff81908200 t mas_state_walk
+ffffffff81908500 t mas_empty_area
+ffffffff819086f0 t mas_skip_node
+ffffffff81908880 t mas_awalk
+ffffffff81908b60 t mas_empty_area_rev
+ffffffff819091b0 t mas_store
+ffffffff819092f0 t mas_wr_store_entry
+ffffffff819095b0 t mas_store_gfp
+ffffffff81909740 t mas_nomem
+ffffffff819097d0 t mas_store_prealloc
+ffffffff81909930 t mas_destroy
+ffffffff8190a9d0 t mas_preallocate
+ffffffff8190ae90 t mas_wr_walk
+ffffffff8190b0d0 t mas_expected_entries
+ffffffff8190b1d0 t mas_next
+ffffffff8190b2c0 t mas_next_range
+ffffffff8190b3b0 t mt_next
+ffffffff8190b440 t mas_prev
+ffffffff8190b530 t mas_prev_slot
+ffffffff8190b7a0 t mas_prev_range
+ffffffff8190b890 t mt_prev
+ffffffff8190b920 t mas_pause
+ffffffff8190b940 t mas_find
+ffffffff8190ba90 t mas_find_range
+ffffffff8190bbe0 t mas_find_rev
+ffffffff8190bd10 t mas_find_range_rev
+ffffffff8190be40 t mas_erase
+ffffffff8190bf90 t mas_alloc_nodes
+ffffffff8190c1a0 t mtree_load
+ffffffff8190c4c0 t mtree_store_range
+ffffffff8190c6a0 t mtree_store
+ffffffff8190c6c0 t mtree_insert_range
+ffffffff8190c9d0 t mtree_insert
+ffffffff8190c9f0 t mtree_alloc_range
+ffffffff8190cf30 t mtree_alloc_rrange
+ffffffff8190d240 t mtree_erase
+ffffffff8190d330 t __mt_destroy
+ffffffff8190d3a0 t mtree_destroy
+ffffffff8190d420 t mt_find
+ffffffff8190d5c0 t mt_find_after
+ffffffff8190d5e0 t trace_raw_output_ma_op
+ffffffff8190d650 t trace_raw_output_ma_read
+ffffffff8190d6c0 t trace_raw_output_ma_write
+ffffffff8190d730 t mas_ascend
+ffffffff8190d9c0 t mas_is_span_wr
+ffffffff8190da70 t mas_wr_spanning_store
+ffffffff8190e500 t mas_new_root
+ffffffff8190e710 t mas_wr_modify
+ffffffff81910460 t mas_root_expand
+ffffffff81910630 t mas_store_b_node
+ffffffff81910a40 t mas_mab_cp
+ffffffff81910cb0 t mas_spanning_rebalance
+ffffffff819122d0 t mast_spanning_rebalance
+ffffffff81912f80 t mast_ascend_free
+ffffffff81913260 t mast_topiary
+ffffffff81913780 t mab_mas_cp
+ffffffff81913a40 t mas_wmb_replace
+ffffffff81914580 t mab_calc_split
+ffffffff81914760 t mas_leaf_max_gap
+ffffffff819148f0 t mas_leaf_set_meta
+ffffffff81914950 t mas_replace
+ffffffff81914c70 t mas_update_gap
+ffffffff81914f50 t mt_free_rcu
+ffffffff81914f70 t mas_next_sibling
+ffffffff819151a0 t mas_split_final_node
+ffffffff819153b0 t mas_push_data
+ffffffff81915b60 t mast_split_data
+ffffffff81915df0 t mast_fill_bnode
+ffffffff819162e0 t mas_prev_node
+ffffffff81916570 t mt_destroy_walk
+ffffffff819168e0 t mt_free_walk
+ffffffff81916af0 t __memcat_p
+ffffffff81916bd0 t nmi_trigger_cpumask_backtrace
+ffffffff81916d50 t nmi_cpu_backtrace
+ffffffff81916ea0 t plist_add
+ffffffff81916fb0 t plist_del
+ffffffff81917060 t plist_requeue
+ffffffff819171b0 t radix_tree_node_rcu_free
+ffffffff819171f0 t radix_tree_preload
+ffffffff81917220 t __radix_tree_preload
+ffffffff81917360 t radix_tree_maybe_preload
+ffffffff819173b0 t radix_tree_insert
+ffffffff81917580 t __radix_tree_lookup
+ffffffff81917640 t radix_tree_lookup_slot
+ffffffff819176f0 t radix_tree_lookup
+ffffffff81917770 t __radix_tree_replace
+ffffffff81917830 t delete_node
+ffffffff81917a90 t radix_tree_replace_slot
+ffffffff81917af0 t radix_tree_iter_replace
+ffffffff81917b10 t radix_tree_tag_set
+ffffffff81917bd0 t radix_tree_tag_clear
+ffffffff81917cd0 t radix_tree_iter_tag_clear
+ffffffff81917d60 t radix_tree_tag_get
+ffffffff81917e00 t radix_tree_iter_resume
+ffffffff81917e30 t radix_tree_next_chunk
+ffffffff81918080 t radix_tree_gang_lookup
+ffffffff81918190 t radix_tree_gang_lookup_tag
+ffffffff819182f0 t radix_tree_gang_lookup_tag_slot
+ffffffff81918420 t radix_tree_iter_delete
+ffffffff81918450 t __radix_tree_delete
+ffffffff819185e0 t radix_tree_delete_item
+ffffffff819186e0 t radix_tree_delete
+ffffffff81918700 t radix_tree_tagged
+ffffffff81918720 t idr_preload
+ffffffff81918760 t idr_get_free
+ffffffff81918a60 t radix_tree_extend
+ffffffff81918bd0 t radix_tree_node_alloc
+ffffffff81918cb0 t idr_destroy
+ffffffff81918d90 t radix_tree_node_ctor
+ffffffff81918dc0 t radix_tree_cpu_dead
+ffffffff81918e20 t ___ratelimit
+ffffffff81918f40 t __rb_erase_color
+ffffffff81919190 t rb_insert_color
+ffffffff819192d0 t rb_erase
+ffffffff819195d0 t __rb_insert_augmented
+ffffffff81919750 t rb_first
+ffffffff81919780 t rb_last
+ffffffff819197b0 t rb_next
+ffffffff81919810 t rb_prev
+ffffffff81919870 t rb_replace_node
+ffffffff819198e0 t rb_replace_node_rcu
+ffffffff81919950 t rb_next_postorder
+ffffffff81919990 t rb_first_postorder
+ffffffff819199d0 t seq_buf_print_seq
+ffffffff81919a00 t seq_buf_vprintf
+ffffffff81919a60 t seq_buf_printf
+ffffffff81919b30 t seq_buf_bprintf
+ffffffff81919bc0 t seq_buf_puts
+ffffffff81919c30 t seq_buf_putc
+ffffffff81919c80 t seq_buf_putmem
+ffffffff81919ce0 t seq_buf_putmem_hex
+ffffffff81919fb0 t seq_buf_path
+ffffffff8191a060 t seq_buf_to_user
+ffffffff8191a100 t seq_buf_hex_dump
+ffffffff8191a2a0 t __show_mem
+ffffffff8191a370 t __siphash_unaligned
+ffffffff8191a5b0 t siphash_1u64
+ffffffff8191a7a0 t siphash_2u64
+ffffffff8191a9f0 t siphash_3u64
+ffffffff8191acb0 t siphash_4u64
+ffffffff8191afd0 t siphash_1u32
+ffffffff8191b160 t siphash_3u32
+ffffffff8191b360 t __hsiphash_unaligned
+ffffffff8191b510 t hsiphash_1u32
+ffffffff8191b630 t hsiphash_2u32
+ffffffff8191b790 t hsiphash_3u32
+ffffffff8191b8f0 t hsiphash_4u32
+ffffffff8191ba90 t strncasecmp
+ffffffff8191bb20 t strcasecmp
+ffffffff8191bb80 t strcpy
+ffffffff8191bbb0 t strncpy
+ffffffff8191bc70 t strlcpy
+ffffffff8191bcd0 t strlen
+ffffffff8191bd00 t strscpy
+ffffffff8191be10 t stpcpy
+ffffffff8191be40 t strcat
+ffffffff8191be80 t strncat
+ffffffff8191bed0 t strlcat
+ffffffff8191bf50 t strcmp
+ffffffff8191bf90 t strncmp
+ffffffff8191bff0 t strchr
+ffffffff8191c030 t strchrnul
+ffffffff8191c070 t strnchrnul
+ffffffff8191c0b0 t strrchr
+ffffffff8191c0e0 t strnchr
+ffffffff8191c110 t strnlen
+ffffffff8191c150 t strspn
+ffffffff8191c1b0 t strcspn
+ffffffff8191c210 t strpbrk
+ffffffff8191c280 t strsep
+ffffffff8191c300 t memcmp
+ffffffff8191c360 t bcmp
+ffffffff8191c3c0 t memscan
+ffffffff8191c3f0 t strstr
+ffffffff8191c4c0 t strnstr
+ffffffff8191c570 t memchr
+ffffffff8191c5b0 t memchr_inv
+ffffffff8191c800 t timerqueue_add
+ffffffff8191c8c0 t timerqueue_del
+ffffffff8191c910 t timerqueue_iterate_next
+ffffffff8191c930 t simple_strtoull
+ffffffff8191c950 t simple_strntoull
+ffffffff8191ca00 t simple_strtoul
+ffffffff8191ca10 t simple_strtol
+ffffffff8191ca40 t simple_strtoll
+ffffffff8191ca80 t num_to_str
+ffffffff8191cbd0 t put_dec
+ffffffff8191cc70 t ptr_to_hashval
+ffffffff8191ccb0 t vsnprintf
+ffffffff8191d410 t format_decode
+ffffffff8191d930 t string
+ffffffff8191da50 t pointer
+ffffffff8191e200 t number
+ffffffff8191e6d0 t vscnprintf
+ffffffff8191e700 t snprintf
+ffffffff8191e780 t scnprintf
+ffffffff8191e810 t vsprintf
+ffffffff8191e830 t sprintf
+ffffffff8191e8c0 t vbin_printf
+ffffffff8191ee10 t bstr_printf
+ffffffff8191f3f0 t bprintf
+ffffffff8191f470 t vsscanf
+ffffffff8191fc40 t skip_atoi
+ffffffff8191fc80 t sscanf
+ffffffff8191fd00 t put_dec_full8
+ffffffff8191fd90 t put_dec_trunc8
+ffffffff8191fe60 t fill_ptr_key_workfn
+ffffffff8191feb0 t string_nocheck
+ffffffff81920000 t widen_string
+ffffffff81920110 t symbol_string
+ffffffff81920280 t resource_string
+ffffffff81920950 t hex_string
+ffffffff81920b00 t bitmap_list_string
+ffffffff81920d50 t bitmap_string
+ffffffff81920f20 t mac_address_string
+ffffffff81921280 t ip_addr_string
+ffffffff819215d0 t escaped_string
+ffffffff819217a0 t uuid_string
+ffffffff81921a70 t restricted_pointer
+ffffffff81921ca0 t netdev_bits
+ffffffff81921e80 t fourcc_string
+ffffffff819221e0 t address_val
+ffffffff819222d0 t dentry_name
+ffffffff819226c0 t time_and_date
+ffffffff819227f0 t clock
+ffffffff819228f0 t file_dentry_name
+ffffffff819229e0 t bdev_name
+ffffffff81922b70 t flags_string
+ffffffff81922fb0 t device_node_string
+ffffffff81923600 t fwnode_string
+ffffffff81923840 t pointer_string
+ffffffff819238a0 t default_pointer
+ffffffff81923b70 t err_ptr
+ffffffff81923c30 t ip6_addr_string
+ffffffff81923d70 t ip4_addr_string
+ffffffff81923e70 t ip4_addr_string_sa
+ffffffff81924030 t ip6_addr_string_sa
+ffffffff819242f0 t ip6_compressed_string
+ffffffff81924670 t ip6_string
+ffffffff81924930 t ip4_string
+ffffffff81924be0 t special_hex_number
+ffffffff81924c10 t rtc_str
+ffffffff81924dd0 t time64_str
+ffffffff81924ea0 t date_str
+ffffffff81924f30 t time_str
+ffffffff81924fa0 t fwnode_full_name_string
+ffffffff81925050 t minmax_running_max
+ffffffff81925160 t minmax_running_min
+ffffffff81925270 t xas_load
+ffffffff81925400 t xas_destroy
+ffffffff81925450 t xas_nomem
+ffffffff819254e0 t xas_create_range
+ffffffff819255f0 t xas_create
+ffffffff81925b00 t xas_store
+ffffffff81926120 t xas_init_marks
+ffffffff81926220 t xas_get_mark
+ffffffff81926270 t xas_set_mark
+ffffffff819262d0 t xas_clear_mark
+ffffffff81926340 t xas_split_alloc
+ffffffff81926490 t xas_split
+ffffffff81926740 t xas_pause
+ffffffff819267c0 t __xas_prev
+ffffffff819268b0 t __xas_next
+ffffffff81926980 t xas_find
+ffffffff81926b40 t xas_find_marked
+ffffffff81926dd0 t xas_find_conflict
+ffffffff819270b0 t xa_load
+ffffffff81927170 t __xa_erase
+ffffffff81927220 t xa_erase
+ffffffff819272f0 t __xa_store
+ffffffff81927480 t __xas_nomem
+ffffffff819275a0 t xa_store
+ffffffff819275f0 t __xa_cmpxchg
+ffffffff81927780 t __xa_insert
+ffffffff81927900 t xa_store_range
+ffffffff81927c50 t xa_get_order
+ffffffff81927d20 t __xa_alloc
+ffffffff81927ed0 t __xa_alloc_cyclic
+ffffffff81927f90 t __xa_set_mark
+ffffffff81928060 t __xa_clear_mark
+ffffffff81928140 t xa_get_mark
+ffffffff81928260 t xa_set_mark
+ffffffff81928350 t xa_clear_mark
+ffffffff81928460 t xa_find
+ffffffff81928550 t xa_find_after
+ffffffff81928670 t xa_extract
+ffffffff81928960 t xa_delete_node
+ffffffff819289f0 t xa_destroy
+ffffffff81928b90 t cmdline_find_option_bool
+ffffffff81928c40 t cmdline_find_option
+ffffffff81928d40 t enable_copy_mc_fragile
+ffffffff81928d50 t copy_mc_to_kernel
+ffffffff81928d80 t copy_mc_to_user
+ffffffff81928db0 t x86_family
+ffffffff81928de0 t x86_model
+ffffffff81928e20 t x86_stepping
+ffffffff81928e30 t csum_partial
+ffffffff81928f60 t ip_compute_csum
+ffffffff81928f90 t csum_and_copy_from_user
+ffffffff81928ff0 t csum_and_copy_to_user
+ffffffff81929050 t csum_partial_copy_nocheck
+ffffffff81929060 t csum_ipv6_magic
+ffffffff819290c0 t delay_loop
+ffffffff819290f0 t delay_tsc
+ffffffff819291e0 t delay_halt_tpause
+ffffffff81929200 t delay_halt
+ffffffff81929260 t use_mwaitx_delay
+ffffffff81929290 t delay_halt_mwaitx
+ffffffff819292d0 t read_current_timer
+ffffffff81929310 t __delay
+ffffffff81929330 t __const_udelay
+ffffffff81929380 t __udelay
+ffffffff819293a0 t __ndelay
+ffffffff819293c0 t inat_get_opcode_attribute
+ffffffff819293e0 t inat_get_last_prefix_id
+ffffffff81929400 t inat_get_escape_attribute
+ffffffff81929460 t inat_get_group_attribute
+ffffffff819294e0 t inat_get_avx_attribute
+ffffffff81929540 t insn_has_rep_prefix
+ffffffff819295a0 t pt_regs_offset
+ffffffff819295c0 t insn_get_seg_base
+ffffffff81929810 t insn_get_code_seg_params
+ffffffff81929930 t insn_get_modrm_rm_off
+ffffffff819299b0 t get_reg_offset
+ffffffff81929a90 t insn_get_modrm_reg_off
+ffffffff81929b00 t insn_get_modrm_reg_ptr
+ffffffff81929b70 t insn_get_addr_ref
+ffffffff81929e50 t insn_get_effective_ip
+ffffffff81929eb0 t insn_fetch_from_user
+ffffffff81929f10 t insn_fetch_from_user_inatomic
+ffffffff81929f80 t insn_decode_from_regs
+ffffffff81929ff0 t insn_decode_mmio
+ffffffff8192a1a0 t get_eff_addr_reg
+ffffffff8192a290 t get_seg_base_limit
+ffffffff8192a7d0 t get_eff_addr_sib
+ffffffff8192a8f0 t get_eff_addr_modrm
+ffffffff8192aa10 t insn_init
+ffffffff8192aab0 t insn_get_prefixes
+ffffffff8192ade0 t insn_get_opcode
+ffffffff8192afa0 t insn_get_modrm
+ffffffff8192b0b0 t insn_rip_relative
+ffffffff8192b100 t insn_get_sib
+ffffffff8192b180 t insn_get_displacement
+ffffffff8192b2d0 t insn_get_immediate
+ffffffff8192b530 t __get_immptr
+ffffffff8192b5b0 t __get_immv32
+ffffffff8192b610 t __get_immv
+ffffffff8192b6b0 t insn_get_length
+ffffffff8192b6f0 t insn_decode
+ffffffff8192b840 t kaslr_get_random_long
+ffffffff8192b9d0 t num_digits
+ffffffff8192ba10 t copy_from_user_nmi
+ffffffff8192ba80 t arch_wb_cache_pmem
+ffffffff8192bac0 t __copy_user_flushcache
+ffffffff8192bbc0 t __memcpy_flushcache
+ffffffff8192bd00 t memcpy_page_flushcache
+ffffffff8192bd88 T __noinstr_text_start
+ffffffff8192bd90 T entry_ibpb
+ffffffff8192bdb0 T native_save_fl
+ffffffff8192bdc0 T __memcpy
+ffffffff8192bdc0 W memcpy
+ffffffff8192bde0 t memcpy_erms
+ffffffff8192bdf0 t memcpy_orig
+ffffffff8192bf20 t do_syscall_64
+ffffffff8192bfb0 t __rdgsbase_inactive
+ffffffff8192bfe0 t __wrgsbase_inactive
+ffffffff8192c010 t exc_divide_error
+ffffffff8192c0b0 t exc_overflow
+ffffffff8192c140 t exc_invalid_op
+ffffffff8192c190 t handle_bug
+ffffffff8192c200 t exc_coproc_segment_overrun
+ffffffff8192c290 t exc_invalid_tss
+ffffffff8192c330 t exc_segment_not_present
+ffffffff8192c3d0 t exc_stack_segment
+ffffffff8192c470 t exc_alignment_check
+ffffffff8192c520 t exc_double_fault
+ffffffff8192c6d0 t exc_bounds
+ffffffff8192c780 t exc_general_protection
+ffffffff8192cc60 t exc_int3
+ffffffff8192cce0 t sync_regs
+ffffffff8192cd20 t fixup_bad_iret
+ffffffff8192cde0 t exc_debug
+ffffffff8192cf60 t noist_exc_debug
+ffffffff8192d080 t exc_coprocessor_error
+ffffffff8192d0c0 t exc_simd_coprocessor_error
+ffffffff8192d100 t exc_spurious_interrupt_bug
+ffffffff8192d120 t exc_device_not_available
+ffffffff8192d230 t common_interrupt
+ffffffff8192d300 t sysvec_x86_platform_ipi
+ffffffff8192d3c0 t sysvec_kvm_posted_intr_ipi
+ffffffff8192d420 t sysvec_kvm_posted_intr_wakeup_ipi
+ffffffff8192d4d0 t sysvec_kvm_posted_intr_nested_ipi
+ffffffff8192d530 t sysvec_thermal
+ffffffff8192d5e0 t get_stack_info_noinstr
+ffffffff8192d730 t in_task_stack
+ffffffff8192d770 t in_entry_stack
+ffffffff8192d7d0 t exc_nmi
+ffffffff8192d900 t default_do_nmi
+ffffffff8192da70 t sysvec_irq_work
+ffffffff8192db20 t poke_int3_handler
+ffffffff8192dd00 t fpu_idle_fpregs
+ffffffff8192dd40 t sysvec_reboot
+ffffffff8192ddf0 t sysvec_reschedule_ipi
+ffffffff8192df00 t sysvec_call_function
+ffffffff8192dfb0 t sysvec_call_function_single
+ffffffff8192e060 t sysvec_apic_timer_interrupt
+ffffffff8192e120 t spurious_interrupt
+ffffffff8192e1f0 t sysvec_spurious_apic_interrupt
+ffffffff8192e2a0 t sysvec_error_interrupt
+ffffffff8192e350 t sysvec_irq_move_cleanup
+ffffffff8192e400 t kvm_read_and_reset_apf_flags
+ffffffff8192e460 t __kvm_handle_async_pf
+ffffffff8192e510 t sysvec_kvm_asyncpf_interrupt
+ffffffff8192e5d0 t paravirt_BUG
+ffffffff8192e5e0 t exc_page_fault
+ffffffff8192ed60 t get_cpu_entry_area
+ffffffff8192ed90 t __stack_chk_fail
+ffffffff8192edb0 t enter_from_user_mode
+ffffffff8192edc0 t syscall_enter_from_user_mode
+ffffffff8192ef30 t syscall_enter_from_user_mode_prepare
+ffffffff8192ef40 t exit_to_user_mode
+ffffffff8192ef60 t syscall_exit_to_user_mode
+ffffffff8192f0a0 t irqentry_enter_from_user_mode
+ffffffff8192f0b0 t irqentry_exit_to_user_mode
+ffffffff8192f0d0 t irqentry_enter
+ffffffff8192f110 t irqentry_exit
+ffffffff8192f160 t irqentry_nmi_enter
+ffffffff8192f190 t irqentry_nmi_exit
+ffffffff8192f1c0 t __ktime_get_real_seconds
+ffffffff8192f1e0 t ct_nmi_exit
+ffffffff8192f370 t ct_kernel_exit_state
+ffffffff8192f3a0 t ct_nmi_enter
+ffffffff8192f4d0 t ct_kernel_enter_state
+ffffffff8192f500 t ct_idle_enter
+ffffffff8192f510 t ct_kernel_exit
+ffffffff8192f610 t ct_idle_exit
+ffffffff8192f670 t ct_kernel_enter
+ffffffff8192f760 t ct_irq_enter
+ffffffff8192f770 t ct_irq_exit
+ffffffff8192f780 t debug_smp_processor_id
+ffffffff8192f7a0 t check_preemption_disabled
+ffffffff8192f8c0 t __this_cpu_preempt_check
+ffffffff8192f8da T __noinstr_text_end
+ffffffff8192f8e0 t rest_init
+ffffffff8192f9a0 t kernel_init
+ffffffff8192fb40 t jump_label_transform
+ffffffff8192fba0 t text_poke_queue
+ffffffff8192fc70 t text_poke_bp
+ffffffff8192fd00 t __static_call_transform
+ffffffff8192fed0 t check_enable_amd_mmconf_dmi
+ffffffff8192fef0 t alloc_low_pages
+ffffffff81930050 t init_memory_mapping
+ffffffff81930270 t free_initmem
+ffffffff81930390 t adjust_range_page_size_mask
+ffffffff81930480 t vmemmap_free
+ffffffff819304a0 t arch_remove_memory
+ffffffff819304e0 t spp_getpage
+ffffffff81930560 t _cpu_down
+ffffffff819308f0 t __irq_alloc_descs
+ffffffff81930b80 t profile_init
+ffffffff81930c70 t create_proc_profile
+ffffffff81930d80 t audit_net_exit
+ffffffff81930dc0 t build_all_zonelists
+ffffffff81930ea0 t free_area_init_core_hotplug
+ffffffff819310f0 t __add_pages
+ffffffff81931210 t remove_pfn_range_from_zone
+ffffffff81931530 t move_pfn_range_to_zone
+ffffffff81931650 t online_pages
+ffffffff81931860 t add_memory_resource
+ffffffff81931b00 t __add_memory
+ffffffff81931b70 t offline_pages
+ffffffff819323f0 t try_remove_memory
+ffffffff81932600 t hotadd_init_pgdat
+ffffffff81932670 t sparse_index_alloc
+ffffffff819326e0 t __earlyonly_bootmem_alloc
+ffffffff81932700 t mem_cgroup_css_alloc
+ffffffff81932cd0 t proc_net_ns_exit
+ffffffff81932d00 t acpi_os_map_iomem
+ffffffff81932ec0 t acpi_os_map_memory
+ffffffff81932ed0 t acpi_os_unmap_iomem
+ffffffff81933000 t acpi_os_unmap_memory
+ffffffff81933010 t efi_mem_reserve_persistent
+ffffffff81933340 t efi_earlycon_map
+ffffffff819333b0 t efi_earlycon_unmap
+ffffffff819333e0 t sock_inuse_exit_net
+ffffffff81933400 t proto_exit_net
+ffffffff81933420 t net_ns_net_exit
+ffffffff81933450 t sysctl_core_net_exit
+ffffffff81933490 t netdev_exit
+ffffffff819334e0 t default_device_exit_batch
+ffffffff81933680 t default_device_exit_net
+ffffffff81933870 t rtnetlink_net_exit
+ffffffff819338a0 t diag_net_exit
+ffffffff819338d0 t fib_notifier_net_exit
+ffffffff81933910 t dev_proc_net_exit
+ffffffff81933960 t dev_mc_net_exit
+ffffffff81933980 t fib_rules_net_exit
+ffffffff819339b0 t netlink_net_exit
+ffffffff819339d0 t genl_pernet_exit
+ffffffff81933a00 t ip_rt_do_proc_exit
+ffffffff81933a40 t sysctl_route_net_exit
+ffffffff81933a80 t ipv4_inetpeer_exit
+ffffffff81933ab0 t ipv4_frags_pre_exit_net
+ffffffff81933ad0 t ipv4_frags_exit_net
+ffffffff81933b00 t ip4_frags_ns_ctl_unregister
+ffffffff81933b30 t tcp4_proc_exit_net
+ffffffff81933b50 t tcp_sk_exit
+ffffffff81933b60 t tcp_sk_exit_batch
+ffffffff81933be0 t tcp_net_metrics_exit_batch
+ffffffff81933c80 t raw_exit_net
+ffffffff81933ca0 t udp4_proc_exit_net
+ffffffff81933cc0 t udplite4_proc_exit_net
+ffffffff81933ce0 t arp_net_exit
+ffffffff81933d00 t devinet_exit_net
+ffffffff81933dd0 t ipv4_mib_exit_net
+ffffffff81933e40 t igmp_net_exit
+ffffffff81933e90 t fib_net_exit
+ffffffff81933ec0 t fib_net_exit_batch
+ffffffff81933f00 t fib_proc_exit
+ffffffff81933f50 t fib4_notifier_exit
+ffffffff81933f70 t ping_v4_proc_exit_net
+ffffffff81933f90 t nexthop_net_exit_batch
+ffffffff81934020 t ipv4_sysctl_exit_net
+ffffffff81934060 t ip_proc_exit_net
+ffffffff819340b0 t fib4_rules_exit
+ffffffff819340d0 t ipip_exit_batch_net
+ffffffff819340f0 t ipgre_tap_exit_batch_net
+ffffffff81934110 t ipgre_exit_batch_net
+ffffffff81934130 t erspan_exit_batch_net
+ffffffff81934150 t vti_exit_batch_net
+ffffffff81934170 t xfrm4_net_exit
+ffffffff819341a0 t xfrm4_net_sysctl_exit
+ffffffff819341c0 t xfrm_net_exit
+ffffffff81934210 t xfrm_sysctl_fini
+ffffffff81934240 t xfrm_user_net_pre_exit
+ffffffff81934260 t xfrm_user_net_exit
+ffffffff819342a0 t xfrmi_exit_batch_net
+ffffffff819343c0 t unix_net_exit
+ffffffff81934410 t inet6_net_exit
+ffffffff819344a0 t if6_proc_net_exit
+ffffffff819344c0 t addrconf_exit_net
+ffffffff819345f0 t ip6addrlbl_net_exit
+ffffffff81934690 t ipv6_inetpeer_exit
+ffffffff819346c0 t ip6_route_net_exit
+ffffffff81934710 t ip6_route_net_exit_late
+ffffffff81934750 t ndisc_net_exit
+ffffffff81934780 t udplite6_proc_exit_net
+ffffffff819347a0 t raw6_exit_net
+ffffffff819347c0 t igmp6_net_exit
+ffffffff81934810 t igmp6_proc_exit
+ffffffff81934850 t ipv6_frags_pre_exit_net
+ffffffff81934870 t ipv6_frags_exit_net
+ffffffff819348a0 t ip6_frags_ns_sysctl_unregister
+ffffffff819348c0 t tcpv6_net_exit
+ffffffff819348f0 t tcpv6_net_exit_batch
+ffffffff81934910 t ping_v6_proc_exit_net
+ffffffff81934930 t ip6_flowlabel_net_exit
+ffffffff81934950 t ip6_fl_purge
+ffffffff81934a30 t ip6_flowlabel_proc_fini
+ffffffff81934a50 t seg6_net_exit
+ffffffff81934a80 t fib6_notifier_exit
+ffffffff81934aa0 t ioam6_net_exit
+ffffffff81934af0 t ipv6_sysctl_net_exit
+ffffffff81934b70 t xfrm6_net_exit
+ffffffff81934ba0 t xfrm6_net_sysctl_exit
+ffffffff81934bc0 t fib6_rules_net_exit_batch
+ffffffff81934c10 t ipv6_proc_exit_net
+ffffffff81934c60 t xfrm6_tunnel_net_exit
+ffffffff81934d00 t vti6_exit_batch_net
+ffffffff81934dc0 t vti6_destroy_tunnels
+ffffffff81934e40 t sit_exit_batch_net
+ffffffff81934ee0 t sit_destroy_tunnels
+ffffffff81934f50 t ip6_tnl_exit_batch_net
+ffffffff81934ff0 t ip6_tnl_destroy_tunnels
+ffffffff81935060 t ip6gre_exit_batch_net
+ffffffff81935160 t packet_net_exit
+ffffffff819351a0 t pfkey_net_exit
+ffffffff819351f0 t pfkey_exit_proc
+ffffffff81935210 t sysctl_net_exit
+ffffffff81935230 t pci_mmcfg_check_reserved
+ffffffff819352d0 t is_mmconf_reserved
+ffffffff81935470 t is_mmconf_reserved.15
+ffffffff81935605 t split_mem_range
+ffffffff819357e3 t save_mr
+ffffffff81935825 t kernel_physical_mapping_init
+ffffffff8193583b t __kernel_physical_mapping_init
+ffffffff81935b5b t kernel_physical_mapping_change
+ffffffff81935b7f t remove_pagetable
+ffffffff81935c4f t vmemmap_populate
+ffffffff81935c9e t vmemmap_populate_hugepages
+ffffffff81935f6a t vmemmap_populate_print_last
+ffffffff81935f99 t phys_p4d_init
+ffffffff81936277 t phys_pud_init
+ffffffff81936627 t phys_pmd_init
+ffffffff819369e8 t phys_pte_init
+ffffffff81936b6a t remove_p4d_table
+ffffffff81936c7f t remove_pud_table
+ffffffff81936dc2 t free_pud_table
+ffffffff81936e5a t remove_pmd_table
+ffffffff81937074 t free_pmd_table
+ffffffff8193710c t vmemmap_pmd_is_unused
+ffffffff8193718e t remove_pte_table
+ffffffff819372ad t free_pte_table
+ffffffff81937345 t free_pagetable
+ffffffff819373e5 t vmemmap_use_new_sub_pmd
+ffffffff8193747f t init_trampoline_kaslr
+ffffffff81937633 t mm_compute_batch_notifier
+ffffffff8193765a t init_reserve_notifier
+ffffffff8193768c t reserve_bootmem_region
+ffffffff81937763 t alloc_pages_exact_nid
+ffffffff81937857 t memmap_init_range
+ffffffff8193796d t overlap_memmap_init
+ffffffff81937a15 t setup_zone_pageset
+ffffffff81937ab9 t init_currently_empty_zone
+ffffffff81937b81 t pgdat_init_internals
+ffffffff81937c69 t init_per_zone_wmark_min
+ffffffff81937c8f t __shuffle_zone
+ffffffff81937ea4 t shuffle_valid_page
+ffffffff81937efc t __shuffle_free_memory
+ffffffff81937f36 t shuffle_param_set
+ffffffff81937f7b t memblock_overlaps_region
+ffffffff81937fea t memblock_add_node
+ffffffff81938087 t memblock_add_range
+ffffffff81938243 t memblock_add
+ffffffff819382d1 t memblock_remove
+ffffffff8193835d t memblock_remove_range
+ffffffff819383d8 t memblock_free
+ffffffff81938419 t memblock_phys_free
+ffffffff819384a5 t memblock_reserve
+ffffffff81938533 t memblock_mark_hotplug
+ffffffff8193854d t memblock_setclr_flag
+ffffffff81938605 t memblock_clear_hotplug
+ffffffff8193861c t memblock_mark_mirror
+ffffffff8193864a t memblock_mark_nomap
+ffffffff81938664 t memblock_clear_nomap
+ffffffff8193867b t __next_mem_range_rev
+ffffffff819388d2 t __next_mem_pfn_range
+ffffffff81938953 t memblock_set_node
+ffffffff81938960 t memblock_find_in_range_node
+ffffffff819389b9 t memblock_phys_mem_size
+ffffffff819389cb t memblock_reserved_size
+ffffffff819389dd t memblock_start_of_DRAM
+ffffffff819389f2 t memblock_end_of_DRAM
+ffffffff81938a1b t memblock_isolate_range
+ffffffff81938b69 t memblock_remove_region
+ffffffff81938be2 t memblock_is_reserved
+ffffffff81938c2a t memblock_is_memory
+ffffffff81938c72 t memblock_is_map_memory
+ffffffff81938cc6 t memblock_search_pfn_nid
+ffffffff81938d44 t memblock_is_region_memory
+ffffffff81938da3 t memblock_is_region_reserved
+ffffffff81938dc0 t memblock_trim_memory
+ffffffff81938e84 t memblock_set_current_limit
+ffffffff81938e96 t memblock_get_current_limit
+ffffffff81938ea8 t memblock_dump_all
+ffffffff81938ec3 t __memblock_dump_all
+ffffffff81938f0c t memblock_insert_region
+ffffffff81938f7d t memblock_double_array
+ffffffff8193921c t memblock_merge_regions
+ffffffff819392d3 t memblock_find_in_range
+ffffffff819393a3 t __memblock_find_range_bottom_up
+ffffffff819394bd t __memblock_find_range_top_down
+ffffffff819395d2 t memblock_dump
+ffffffff819396da t sparse_buffer_alloc
+ffffffff8193973a t sparse_buffer_free
+ffffffff81939764 t sparse_add_section
+ffffffff8193988a t section_activate
+ffffffff81939a65 t mminit_validate_memmodel_limits
+ffffffff81939aec t vmemmap_alloc_block
+ffffffff81939bdd t vmemmap_alloc_block_buf
+ffffffff81939c20 t altmap_alloc_block_buf
+ffffffff81939cf4 t vmemmap_verify
+ffffffff81939d2a t vmemmap_pte_populate
+ffffffff81939e5a t vmemmap_pmd_populate
+ffffffff81939f0d t vmemmap_pud_populate
+ffffffff81939fb0 t vmemmap_p4d_populate
+ffffffff8193a083 t vmemmap_pgd_populate
+ffffffff8193a141 t vmemmap_populate_basepages
+ffffffff8193a197 t __populate_section_memmap
+ffffffff8193a206 t vmemmap_populate_compound_pages
+ffffffff8193a3c8 t vmemmap_populate_address
+ffffffff8193a482 t compound_section_tail_page
+ffffffff8193a550 t init_section_page_ext
+ffffffff8193a60c t page_ext_callback
+ffffffff8193a65f t pgdat_page_ext_init
+ffffffff8193a66a t alloc_page_ext
+ffffffff8193a69e t online_page_ext
+ffffffff8193a727 t offline_page_ext
+ffffffff8193a7e9 t firmware_map_add_hotplug
+ffffffff8193a8ec t firmware_map_remove
+ffffffff8193a995 t firmware_map_find_entry_in_list
+ffffffff8193a9f5 t release_firmware_map_entry
+ffffffff8193aaa8 T __sched_text_start
+ffffffff8193aab0 t __schedule
+ffffffff8193b2a0 t schedule
+ffffffff8193b360 t schedule_idle
+ffffffff8193b3a0 t schedule_preempt_disabled
+ffffffff8193b3d0 t preempt_schedule
+ffffffff8193b430 t preempt_schedule_common
+ffffffff8193b4e0 t preempt_schedule_notrace
+ffffffff8193b570 t preempt_schedule_irq
+ffffffff8193b610 t __cond_resched
+ffffffff8193b6d0 t yield
+ffffffff8193b6f0 t yield_to
+ffffffff8193b8b0 t io_schedule_timeout
+ffffffff8193b920 t io_schedule
+ffffffff8193b980 t wait_for_completion
+ffffffff8193b9a0 t wait_for_common
+ffffffff8193bb60 t wait_for_completion_timeout
+ffffffff8193bb80 t wait_for_completion_io
+ffffffff8193bba0 t wait_for_common_io
+ffffffff8193bd00 t wait_for_completion_io_timeout
+ffffffff8193bd10 t wait_for_completion_interruptible
+ffffffff8193bd50 t wait_for_completion_interruptible_timeout
+ffffffff8193bd70 t wait_for_completion_killable
+ffffffff8193bdb0 t wait_for_completion_state
+ffffffff8193bdf0 t wait_for_completion_killable_timeout
+ffffffff8193be10 t __wait_on_bit
+ffffffff8193bf70 t out_of_line_wait_on_bit
+ffffffff8193c020 t out_of_line_wait_on_bit_timeout
+ffffffff8193c0d0 t __wait_on_bit_lock
+ffffffff8193c2a0 t out_of_line_wait_on_bit_lock
+ffffffff8193c350 t bit_wait
+ffffffff8193c3b0 t bit_wait_io
+ffffffff8193c410 t bit_wait_timeout
+ffffffff8193c480 t bit_wait_io_timeout
+ffffffff8193c4f0 t mutex_lock
+ffffffff8193c530 t __mutex_lock_slowpath
+ffffffff8193c550 t mutex_unlock
+ffffffff8193c580 t __mutex_unlock_slowpath
+ffffffff8193c6a0 t ww_mutex_unlock
+ffffffff8193c6f0 t mutex_trylock
+ffffffff8193c740 t mutex_lock_interruptible
+ffffffff8193c780 t __mutex_lock_interruptible_slowpath
+ffffffff8193c7a0 t mutex_lock_killable
+ffffffff8193c7e0 t __mutex_lock_killable_slowpath
+ffffffff8193c800 t mutex_lock_io
+ffffffff8193c850 t ww_mutex_lock
+ffffffff8193c8e0 t __ww_mutex_lock_slowpath
+ffffffff8193c900 t ww_mutex_lock_interruptible
+ffffffff8193c990 t __ww_mutex_lock_interruptible_slowpath
+ffffffff8193c9b0 t __mutex_lock
+ffffffff8193d050 t __ww_mutex_lock
+ffffffff8193da20 t down
+ffffffff8193da70 t __down
+ffffffff8193da90 t down_interruptible
+ffffffff8193daf0 t __down_interruptible
+ffffffff8193db10 t down_killable
+ffffffff8193db70 t __down_killable
+ffffffff8193db90 t down_trylock
+ffffffff8193dbd0 t down_timeout
+ffffffff8193dc30 t __down_timeout
+ffffffff8193dc50 t up
+ffffffff8193dca0 t __up
+ffffffff8193dd00 t __down_common
+ffffffff8193df00 t down_read
+ffffffff8193e2c0 t down_read_interruptible
+ffffffff8193e800 t down_read_killable
+ffffffff8193ed30 t down_write
+ffffffff8193edb0 t down_write_killable
+ffffffff8193ee40 t rwsem_down_write_slowpath
+ffffffff8193f500 t __percpu_down_read
+ffffffff8193f630 t percpu_down_write
+ffffffff8193f7c0 t rt_mutex_lock
+ffffffff8193f810 t rt_mutex_lock_interruptible
+ffffffff8193f860 t rt_mutex_lock_killable
+ffffffff8193f8b0 t rt_mutex_trylock
+ffffffff8193f8f0 t rt_mutex_unlock
+ffffffff8193f920 t rt_mutex_futex_trylock
+ffffffff8193f990 t rt_mutex_slowtrylock
+ffffffff8193fa00 t __rt_mutex_futex_trylock
+ffffffff8193fa40 t __rt_mutex_futex_unlock
+ffffffff8193fa80 t mark_wakeup_next_waiter
+ffffffff8193fb70 t rt_mutex_futex_unlock
+ffffffff8193fc40 t rt_mutex_postunlock
+ffffffff8193fc80 t __rt_mutex_init
+ffffffff8193fcb0 t rt_mutex_init_proxy_locked
+ffffffff8193fcf0 t rt_mutex_proxy_unlock
+ffffffff8193fd10 t __rt_mutex_start_proxy_lock
+ffffffff8193fd70 t try_to_take_rt_mutex
+ffffffff8193ff70 t task_blocks_on_rt_mutex
+ffffffff819402c0 t rt_mutex_start_proxy_lock
+ffffffff81940350 t remove_waiter
+ffffffff819405c0 t rt_mutex_wait_proxy_lock
+ffffffff81940630 t rt_mutex_slowlock_block
+ffffffff81940790 t rt_mutex_cleanup_proxy_lock
+ffffffff81940810 t rt_mutex_adjust_pi
+ffffffff819408d0 t rt_mutex_adjust_prio_chain
+ffffffff819410e0 t rt_mutex_slowlock
+ffffffff81941310 t rt_mutex_slowunlock
+ffffffff81941410 t console_conditional_schedule
+ffffffff81941430 t schedule_timeout
+ffffffff819415e0 t schedule_timeout_interruptible
+ffffffff81941600 t schedule_timeout_killable
+ffffffff81941620 t schedule_timeout_uninterruptible
+ffffffff81941640 t schedule_timeout_idle
+ffffffff81941660 t usleep_range_state
+ffffffff81941700 t do_nanosleep
+ffffffff81941830 t hrtimer_nanosleep_restart
+ffffffff819418f0 t schedule_hrtimeout_range_clock
+ffffffff81941a60 t schedule_hrtimeout_range
+ffffffff81941a80 t schedule_hrtimeout
+ffffffff81941aa0 t alarm_timer_nsleep_restart
+ffffffff81941bd0 t ldsem_down_read
+ffffffff81941e60 t ldsem_down_write
+ffffffff81942067 T __sched_text_end
+ffffffff81942068 T __cpuidle_text_start
+ffffffff81942070 t default_idle
+ffffffff81942090 t mwait_idle
+ffffffff81942100 t acpi_processor_ffh_cstate_enter
+ffffffff819421d0 t default_idle_call
+ffffffff819422b0 t cpu_idle_poll
+ffffffff819423a0 t acpi_idle_enter
+ffffffff819424f0 t acpi_idle_enter_s2idle
+ffffffff819425f0 t acpi_idle_enter_bm
+ffffffff81942840 t poll_idle
+ffffffff81942909 T __cpuidle_text_end
+ffffffff81942910 T __lock_text_start
+ffffffff81942910 t _raw_spin_trylock
+ffffffff81942970 t _raw_spin_trylock_bh
+ffffffff819429c0 t _raw_spin_lock
+ffffffff81942a00 t _raw_spin_lock_irqsave
+ffffffff81942a80 t _raw_spin_lock_irq
+ffffffff81942ac0 t _raw_spin_lock_bh
+ffffffff81942b00 t _raw_spin_unlock
+ffffffff81942b30 t _raw_spin_unlock_irqrestore
+ffffffff81942b70 t _raw_spin_unlock_irq
+ffffffff81942ba0 t _raw_spin_unlock_bh
+ffffffff81942bc0 t _raw_read_trylock
+ffffffff81942c30 t _raw_read_lock
+ffffffff81942c70 t _raw_read_lock_irqsave
+ffffffff81942cf0 t _raw_read_lock_irq
+ffffffff81942d30 t _raw_read_lock_bh
+ffffffff81942d70 t _raw_read_unlock
+ffffffff81942db0 t _raw_read_unlock_irqrestore
+ffffffff81942df0 t _raw_read_unlock_irq
+ffffffff81942e30 t _raw_read_unlock_bh
+ffffffff81942e60 t _raw_write_trylock
+ffffffff81942ec0 t _raw_write_lock
+ffffffff81942f00 t _raw_write_lock_nested
+ffffffff81942f40 t _raw_write_lock_irqsave
+ffffffff81942fc0 t _raw_write_lock_irq
+ffffffff81943000 t _raw_write_lock_bh
+ffffffff81943040 t _raw_write_unlock
+ffffffff81943070 t _raw_write_unlock_irqrestore
+ffffffff819430b0 t _raw_write_unlock_irq
+ffffffff819430e0 t _raw_write_unlock_bh
+ffffffff81943100 t queued_spin_lock_slowpath
+ffffffff819433c0 t queued_read_lock_slowpath
+ffffffff819434d0 t queued_write_lock_slowpath
+ffffffff819435f1 T __lock_text_end
+ffffffff819435f8 T __kprobes_text_end
+ffffffff819435f8 T __kprobes_text_start
 ffffffff81a00000 T __entry_text_start
 ffffffff81a00000 T entry_SYSCALL_64
 ffffffff81a00029 T entry_SYSCALL_64_safe_stack
@@ -34468,534 +34634,537 @@
 ffffffff81c008a8 T __SCT__tp_func_sys_enter
 ffffffff81c008b0 T __SCT__tp_func_sys_exit
 ffffffff81c008b8 T __SCT__irqentry_exit_cond_resched
-ffffffff81c008c0 T __SCT__tp_func_timer_init
-ffffffff81c008c8 T __SCT__tp_func_timer_start
-ffffffff81c008d0 T __SCT__tp_func_timer_expire_entry
-ffffffff81c008d8 T __SCT__tp_func_timer_expire_exit
-ffffffff81c008e0 T __SCT__tp_func_timer_cancel
-ffffffff81c008e8 T __SCT__tp_func_hrtimer_init
-ffffffff81c008f0 T __SCT__tp_func_hrtimer_start
-ffffffff81c008f8 T __SCT__tp_func_hrtimer_expire_entry
-ffffffff81c00900 T __SCT__tp_func_hrtimer_expire_exit
-ffffffff81c00908 T __SCT__tp_func_hrtimer_cancel
-ffffffff81c00910 T __SCT__tp_func_itimer_state
-ffffffff81c00918 T __SCT__tp_func_itimer_expire
-ffffffff81c00920 T __SCT__tp_func_tick_stop
-ffffffff81c00928 T __SCT__tp_func_alarmtimer_suspend
-ffffffff81c00930 T __SCT__tp_func_alarmtimer_fired
-ffffffff81c00938 T __SCT__tp_func_alarmtimer_start
-ffffffff81c00940 T __SCT__tp_func_alarmtimer_cancel
-ffffffff81c00948 T __SCT__tp_func_cgroup_setup_root
-ffffffff81c00950 T __SCT__tp_func_cgroup_destroy_root
-ffffffff81c00958 T __SCT__tp_func_cgroup_remount
-ffffffff81c00960 T __SCT__tp_func_cgroup_mkdir
-ffffffff81c00968 T __SCT__tp_func_cgroup_rmdir
-ffffffff81c00970 T __SCT__tp_func_cgroup_release
-ffffffff81c00978 T __SCT__tp_func_cgroup_rename
-ffffffff81c00980 T __SCT__tp_func_cgroup_freeze
-ffffffff81c00988 T __SCT__tp_func_cgroup_unfreeze
-ffffffff81c00990 T __SCT__tp_func_cgroup_attach_task
-ffffffff81c00998 T __SCT__tp_func_cgroup_transfer_tasks
-ffffffff81c009a0 T __SCT__tp_func_cgroup_notify_populated
-ffffffff81c009a8 T __SCT__tp_func_cgroup_notify_frozen
-ffffffff81c009b0 T __SCT__tp_func_error_report_end
-ffffffff81c009b8 T __SCT__tp_func_cpu_idle
-ffffffff81c009c0 T __SCT__tp_func_cpu_idle_miss
-ffffffff81c009c8 T __SCT__tp_func_powernv_throttle
-ffffffff81c009d0 T __SCT__tp_func_pstate_sample
-ffffffff81c009d8 T __SCT__tp_func_cpu_frequency
-ffffffff81c009e0 T __SCT__tp_func_cpu_frequency_limits
-ffffffff81c009e8 T __SCT__tp_func_device_pm_callback_start
-ffffffff81c009f0 T __SCT__tp_func_device_pm_callback_end
-ffffffff81c009f8 T __SCT__tp_func_suspend_resume
-ffffffff81c00a00 T __SCT__tp_func_wakeup_source_activate
-ffffffff81c00a08 T __SCT__tp_func_wakeup_source_deactivate
-ffffffff81c00a10 T __SCT__tp_func_clock_enable
-ffffffff81c00a18 T __SCT__tp_func_clock_disable
-ffffffff81c00a20 T __SCT__tp_func_clock_set_rate
-ffffffff81c00a28 T __SCT__tp_func_power_domain_target
-ffffffff81c00a30 T __SCT__tp_func_pm_qos_add_request
-ffffffff81c00a38 T __SCT__tp_func_pm_qos_update_request
-ffffffff81c00a40 T __SCT__tp_func_pm_qos_remove_request
-ffffffff81c00a48 T __SCT__tp_func_pm_qos_update_target
-ffffffff81c00a50 T __SCT__tp_func_pm_qos_update_flags
-ffffffff81c00a58 T __SCT__tp_func_dev_pm_qos_add_request
-ffffffff81c00a60 T __SCT__tp_func_dev_pm_qos_update_request
-ffffffff81c00a68 T __SCT__tp_func_dev_pm_qos_remove_request
-ffffffff81c00a70 T __SCT__tp_func_guest_halt_poll_ns
-ffffffff81c00a78 T __SCT__tp_func_rpm_suspend
-ffffffff81c00a80 T __SCT__tp_func_rpm_resume
-ffffffff81c00a88 T __SCT__tp_func_rpm_idle
-ffffffff81c00a90 T __SCT__tp_func_rpm_usage
-ffffffff81c00a98 T __SCT__tp_func_rpm_return_int
-ffffffff81c00aa0 T __SCT__tp_func_xdp_exception
-ffffffff81c00aa8 T __SCT__tp_func_xdp_bulk_tx
-ffffffff81c00ab0 T __SCT__tp_func_xdp_redirect
-ffffffff81c00ab8 T __SCT__tp_func_xdp_redirect_err
-ffffffff81c00ac0 T __SCT__tp_func_xdp_redirect_map
-ffffffff81c00ac8 T __SCT__tp_func_xdp_redirect_map_err
-ffffffff81c00ad0 T __SCT__tp_func_xdp_cpumap_kthread
-ffffffff81c00ad8 T __SCT__tp_func_xdp_cpumap_enqueue
-ffffffff81c00ae0 T __SCT__tp_func_xdp_devmap_xmit
-ffffffff81c00ae8 T __SCT__tp_func_mem_disconnect
-ffffffff81c00af0 T __SCT__tp_func_mem_connect
-ffffffff81c00af8 T __SCT__tp_func_mem_return_failed
-ffffffff81c00b00 T __SCT__perf_snapshot_branch_stack
-ffffffff81c00b08 T __SCT__tp_func_rseq_update
-ffffffff81c00b10 T __SCT__tp_func_rseq_ip_fixup
-ffffffff81c00b18 T __SCT__tp_func_mm_filemap_delete_from_page_cache
-ffffffff81c00b20 T __SCT__tp_func_mm_filemap_add_to_page_cache
-ffffffff81c00b28 T __SCT__tp_func_filemap_set_wb_err
-ffffffff81c00b30 T __SCT__tp_func_file_check_and_advance_wb_err
-ffffffff81c00b38 T __SCT__tp_func_oom_score_adj_update
-ffffffff81c00b40 T __SCT__tp_func_reclaim_retry_zone
-ffffffff81c00b48 T __SCT__tp_func_mark_victim
-ffffffff81c00b50 T __SCT__tp_func_wake_reaper
-ffffffff81c00b58 T __SCT__tp_func_start_task_reaping
-ffffffff81c00b60 T __SCT__tp_func_finish_task_reaping
-ffffffff81c00b68 T __SCT__tp_func_skip_task_reaping
-ffffffff81c00b70 T __SCT__tp_func_compact_retry
-ffffffff81c00b78 T __SCT__tp_func_mm_lru_insertion
-ffffffff81c00b80 T __SCT__tp_func_mm_lru_activate
-ffffffff81c00b88 T __SCT__tp_func_mm_vmscan_kswapd_sleep
-ffffffff81c00b90 T __SCT__tp_func_mm_vmscan_kswapd_wake
-ffffffff81c00b98 T __SCT__tp_func_mm_vmscan_wakeup_kswapd
-ffffffff81c00ba0 T __SCT__tp_func_mm_vmscan_direct_reclaim_begin
-ffffffff81c00ba8 T __SCT__tp_func_mm_vmscan_memcg_reclaim_begin
-ffffffff81c00bb0 T __SCT__tp_func_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff81c00bb8 T __SCT__tp_func_mm_vmscan_direct_reclaim_end
-ffffffff81c00bc0 T __SCT__tp_func_mm_vmscan_memcg_reclaim_end
-ffffffff81c00bc8 T __SCT__tp_func_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff81c00bd0 T __SCT__tp_func_mm_shrink_slab_start
-ffffffff81c00bd8 T __SCT__tp_func_mm_shrink_slab_end
-ffffffff81c00be0 T __SCT__tp_func_mm_vmscan_lru_isolate
-ffffffff81c00be8 T __SCT__tp_func_mm_vmscan_write_folio
-ffffffff81c00bf0 T __SCT__tp_func_mm_vmscan_lru_shrink_inactive
-ffffffff81c00bf8 T __SCT__tp_func_mm_vmscan_lru_shrink_active
-ffffffff81c00c00 T __SCT__tp_func_mm_vmscan_node_reclaim_begin
-ffffffff81c00c08 T __SCT__tp_func_mm_vmscan_node_reclaim_end
-ffffffff81c00c10 T __SCT__tp_func_mm_vmscan_throttled
-ffffffff81c00c18 T __SCT__tp_func_percpu_alloc_percpu
-ffffffff81c00c20 T __SCT__tp_func_percpu_free_percpu
-ffffffff81c00c28 T __SCT__tp_func_percpu_alloc_percpu_fail
-ffffffff81c00c30 T __SCT__tp_func_percpu_create_chunk
-ffffffff81c00c38 T __SCT__tp_func_percpu_destroy_chunk
-ffffffff81c00c40 T __SCT__tp_func_kmem_cache_alloc
-ffffffff81c00c48 T __SCT__tp_func_kmalloc
-ffffffff81c00c50 T __SCT__tp_func_kfree
-ffffffff81c00c58 T __SCT__tp_func_kmem_cache_free
-ffffffff81c00c60 T __SCT__tp_func_mm_page_free
-ffffffff81c00c68 T __SCT__tp_func_mm_page_free_batched
-ffffffff81c00c70 T __SCT__tp_func_mm_page_alloc
-ffffffff81c00c78 T __SCT__tp_func_mm_page_alloc_zone_locked
-ffffffff81c00c80 T __SCT__tp_func_mm_page_pcpu_drain
-ffffffff81c00c88 T __SCT__tp_func_mm_page_alloc_extfrag
-ffffffff81c00c90 T __SCT__tp_func_rss_stat
-ffffffff81c00c98 T __SCT__tp_func_mm_compaction_isolate_migratepages
-ffffffff81c00ca0 T __SCT__tp_func_mm_compaction_isolate_freepages
-ffffffff81c00ca8 T __SCT__tp_func_mm_compaction_migratepages
-ffffffff81c00cb0 T __SCT__tp_func_mm_compaction_begin
-ffffffff81c00cb8 T __SCT__tp_func_mm_compaction_end
-ffffffff81c00cc0 T __SCT__tp_func_mm_compaction_try_to_compact_pages
-ffffffff81c00cc8 T __SCT__tp_func_mm_compaction_finished
-ffffffff81c00cd0 T __SCT__tp_func_mm_compaction_suitable
-ffffffff81c00cd8 T __SCT__tp_func_mm_compaction_deferred
-ffffffff81c00ce0 T __SCT__tp_func_mm_compaction_defer_compaction
-ffffffff81c00ce8 T __SCT__tp_func_mm_compaction_defer_reset
-ffffffff81c00cf0 T __SCT__tp_func_mm_compaction_kcompactd_sleep
-ffffffff81c00cf8 T __SCT__tp_func_mm_compaction_wakeup_kcompactd
-ffffffff81c00d00 T __SCT__tp_func_mm_compaction_kcompactd_wake
-ffffffff81c00d08 T __SCT__tp_func_mmap_lock_start_locking
-ffffffff81c00d10 T __SCT__tp_func_mmap_lock_released
-ffffffff81c00d18 T __SCT__tp_func_mmap_lock_acquire_returned
-ffffffff81c00d20 T __SCT__tp_func_vm_unmapped_area
-ffffffff81c00d28 T __SCT__tp_func_vma_mas_szero
-ffffffff81c00d30 T __SCT__tp_func_vma_store
-ffffffff81c00d38 T __SCT__tp_func_exit_mmap
-ffffffff81c00d40 T __SCT__tp_func_tlb_flush
-ffffffff81c00d48 T __SCT__tp_func_mm_migrate_pages
-ffffffff81c00d50 T __SCT__tp_func_mm_migrate_pages_start
-ffffffff81c00d58 T __SCT__tp_func_set_migration_pte
-ffffffff81c00d60 T __SCT__tp_func_remove_migration_pte
-ffffffff81c00d68 T __SCT__tp_func_hugepage_set_pmd
-ffffffff81c00d70 T __SCT__tp_func_hugepage_update
-ffffffff81c00d78 T __SCT__tp_func_set_migration_pmd
-ffffffff81c00d80 T __SCT__tp_func_remove_migration_pmd
-ffffffff81c00d88 T __SCT__tp_func_mm_khugepaged_scan_pmd
-ffffffff81c00d90 T __SCT__tp_func_mm_collapse_huge_page
-ffffffff81c00d98 T __SCT__tp_func_mm_collapse_huge_page_isolate
-ffffffff81c00da0 T __SCT__tp_func_mm_collapse_huge_page_swapin
-ffffffff81c00da8 T __SCT__tp_func_mm_khugepaged_scan_file
-ffffffff81c00db0 T __SCT__tp_func_test_pages_isolated
-ffffffff81c00db8 T __SCT__tp_func_damon_aggregated
-ffffffff81c00dc0 T __SCT__tp_func_writeback_dirty_folio
-ffffffff81c00dc8 T __SCT__tp_func_folio_wait_writeback
-ffffffff81c00dd0 T __SCT__tp_func_writeback_mark_inode_dirty
-ffffffff81c00dd8 T __SCT__tp_func_writeback_dirty_inode_start
-ffffffff81c00de0 T __SCT__tp_func_writeback_dirty_inode
-ffffffff81c00de8 T __SCT__tp_func_inode_foreign_history
-ffffffff81c00df0 T __SCT__tp_func_inode_switch_wbs
-ffffffff81c00df8 T __SCT__tp_func_track_foreign_dirty
-ffffffff81c00e00 T __SCT__tp_func_flush_foreign
-ffffffff81c00e08 T __SCT__tp_func_writeback_write_inode_start
-ffffffff81c00e10 T __SCT__tp_func_writeback_write_inode
-ffffffff81c00e18 T __SCT__tp_func_writeback_queue
-ffffffff81c00e20 T __SCT__tp_func_writeback_exec
-ffffffff81c00e28 T __SCT__tp_func_writeback_start
-ffffffff81c00e30 T __SCT__tp_func_writeback_written
-ffffffff81c00e38 T __SCT__tp_func_writeback_wait
-ffffffff81c00e40 T __SCT__tp_func_writeback_pages_written
-ffffffff81c00e48 T __SCT__tp_func_writeback_wake_background
-ffffffff81c00e50 T __SCT__tp_func_writeback_bdi_register
-ffffffff81c00e58 T __SCT__tp_func_wbc_writepage
-ffffffff81c00e60 T __SCT__tp_func_writeback_queue_io
-ffffffff81c00e68 T __SCT__tp_func_global_dirty_state
-ffffffff81c00e70 T __SCT__tp_func_bdi_dirty_ratelimit
-ffffffff81c00e78 T __SCT__tp_func_balance_dirty_pages
-ffffffff81c00e80 T __SCT__tp_func_writeback_sb_inodes_requeue
-ffffffff81c00e88 T __SCT__tp_func_writeback_single_inode_start
-ffffffff81c00e90 T __SCT__tp_func_writeback_single_inode
-ffffffff81c00e98 T __SCT__tp_func_writeback_lazytime
-ffffffff81c00ea0 T __SCT__tp_func_writeback_lazytime_iput
-ffffffff81c00ea8 T __SCT__tp_func_writeback_dirty_inode_enqueue
-ffffffff81c00eb0 T __SCT__tp_func_sb_mark_inode_writeback
-ffffffff81c00eb8 T __SCT__tp_func_sb_clear_inode_writeback
-ffffffff81c00ec0 T __SCT__tp_func_locks_get_lock_context
-ffffffff81c00ec8 T __SCT__tp_func_posix_lock_inode
-ffffffff81c00ed0 T __SCT__tp_func_fcntl_setlk
-ffffffff81c00ed8 T __SCT__tp_func_locks_remove_posix
-ffffffff81c00ee0 T __SCT__tp_func_flock_lock_inode
-ffffffff81c00ee8 T __SCT__tp_func_break_lease_noblock
-ffffffff81c00ef0 T __SCT__tp_func_break_lease_block
-ffffffff81c00ef8 T __SCT__tp_func_break_lease_unblock
-ffffffff81c00f00 T __SCT__tp_func_generic_delete_lease
-ffffffff81c00f08 T __SCT__tp_func_time_out_leases
-ffffffff81c00f10 T __SCT__tp_func_generic_add_lease
-ffffffff81c00f18 T __SCT__tp_func_leases_conflict
-ffffffff81c00f20 T __SCT__tp_func_iomap_readpage
-ffffffff81c00f28 T __SCT__tp_func_iomap_readahead
-ffffffff81c00f30 T __SCT__tp_func_iomap_writepage
-ffffffff81c00f38 T __SCT__tp_func_iomap_release_folio
-ffffffff81c00f40 T __SCT__tp_func_iomap_invalidate_folio
-ffffffff81c00f48 T __SCT__tp_func_iomap_dio_invalidate_fail
-ffffffff81c00f50 T __SCT__tp_func_iomap_iter_dstmap
-ffffffff81c00f58 T __SCT__tp_func_iomap_iter_srcmap
-ffffffff81c00f60 T __SCT__tp_func_iomap_writepage_map
-ffffffff81c00f68 T __SCT__tp_func_iomap_iter
-ffffffff81c00f70 T __SCT__tp_func_ext4_other_inode_update_time
-ffffffff81c00f78 T __SCT__tp_func_ext4_free_inode
-ffffffff81c00f80 T __SCT__tp_func_ext4_request_inode
-ffffffff81c00f88 T __SCT__tp_func_ext4_allocate_inode
-ffffffff81c00f90 T __SCT__tp_func_ext4_evict_inode
-ffffffff81c00f98 T __SCT__tp_func_ext4_drop_inode
-ffffffff81c00fa0 T __SCT__tp_func_ext4_nfs_commit_metadata
-ffffffff81c00fa8 T __SCT__tp_func_ext4_mark_inode_dirty
-ffffffff81c00fb0 T __SCT__tp_func_ext4_begin_ordered_truncate
-ffffffff81c00fb8 T __SCT__tp_func_ext4_write_begin
-ffffffff81c00fc0 T __SCT__tp_func_ext4_da_write_begin
-ffffffff81c00fc8 T __SCT__tp_func_ext4_write_end
-ffffffff81c00fd0 T __SCT__tp_func_ext4_journalled_write_end
-ffffffff81c00fd8 T __SCT__tp_func_ext4_da_write_end
-ffffffff81c00fe0 T __SCT__tp_func_ext4_writepages
-ffffffff81c00fe8 T __SCT__tp_func_ext4_da_write_pages
-ffffffff81c00ff0 T __SCT__tp_func_ext4_da_write_pages_extent
-ffffffff81c00ff8 T __SCT__tp_func_ext4_writepages_result
-ffffffff81c01000 T __SCT__tp_func_ext4_writepage
-ffffffff81c01008 T __SCT__tp_func_ext4_readpage
-ffffffff81c01010 T __SCT__tp_func_ext4_releasepage
-ffffffff81c01018 T __SCT__tp_func_ext4_invalidate_folio
-ffffffff81c01020 T __SCT__tp_func_ext4_journalled_invalidate_folio
-ffffffff81c01028 T __SCT__tp_func_ext4_discard_blocks
-ffffffff81c01030 T __SCT__tp_func_ext4_mb_new_inode_pa
-ffffffff81c01038 T __SCT__tp_func_ext4_mb_new_group_pa
-ffffffff81c01040 T __SCT__tp_func_ext4_mb_release_inode_pa
-ffffffff81c01048 T __SCT__tp_func_ext4_mb_release_group_pa
-ffffffff81c01050 T __SCT__tp_func_ext4_discard_preallocations
-ffffffff81c01058 T __SCT__tp_func_ext4_mb_discard_preallocations
-ffffffff81c01060 T __SCT__tp_func_ext4_request_blocks
-ffffffff81c01068 T __SCT__tp_func_ext4_allocate_blocks
-ffffffff81c01070 T __SCT__tp_func_ext4_free_blocks
-ffffffff81c01078 T __SCT__tp_func_ext4_sync_file_enter
-ffffffff81c01080 T __SCT__tp_func_ext4_sync_file_exit
-ffffffff81c01088 T __SCT__tp_func_ext4_sync_fs
-ffffffff81c01090 T __SCT__tp_func_ext4_alloc_da_blocks
-ffffffff81c01098 T __SCT__tp_func_ext4_mballoc_alloc
-ffffffff81c010a0 T __SCT__tp_func_ext4_mballoc_prealloc
-ffffffff81c010a8 T __SCT__tp_func_ext4_mballoc_discard
-ffffffff81c010b0 T __SCT__tp_func_ext4_mballoc_free
-ffffffff81c010b8 T __SCT__tp_func_ext4_forget
-ffffffff81c010c0 T __SCT__tp_func_ext4_da_update_reserve_space
-ffffffff81c010c8 T __SCT__tp_func_ext4_da_reserve_space
-ffffffff81c010d0 T __SCT__tp_func_ext4_da_release_space
-ffffffff81c010d8 T __SCT__tp_func_ext4_mb_bitmap_load
-ffffffff81c010e0 T __SCT__tp_func_ext4_mb_buddy_bitmap_load
-ffffffff81c010e8 T __SCT__tp_func_ext4_load_inode_bitmap
-ffffffff81c010f0 T __SCT__tp_func_ext4_read_block_bitmap_load
-ffffffff81c010f8 T __SCT__tp_func_ext4_fallocate_enter
-ffffffff81c01100 T __SCT__tp_func_ext4_punch_hole
-ffffffff81c01108 T __SCT__tp_func_ext4_zero_range
-ffffffff81c01110 T __SCT__tp_func_ext4_fallocate_exit
-ffffffff81c01118 T __SCT__tp_func_ext4_unlink_enter
-ffffffff81c01120 T __SCT__tp_func_ext4_unlink_exit
-ffffffff81c01128 T __SCT__tp_func_ext4_truncate_enter
-ffffffff81c01130 T __SCT__tp_func_ext4_truncate_exit
-ffffffff81c01138 T __SCT__tp_func_ext4_ext_convert_to_initialized_enter
-ffffffff81c01140 T __SCT__tp_func_ext4_ext_convert_to_initialized_fastpath
-ffffffff81c01148 T __SCT__tp_func_ext4_ext_map_blocks_enter
-ffffffff81c01150 T __SCT__tp_func_ext4_ind_map_blocks_enter
-ffffffff81c01158 T __SCT__tp_func_ext4_ext_map_blocks_exit
-ffffffff81c01160 T __SCT__tp_func_ext4_ind_map_blocks_exit
-ffffffff81c01168 T __SCT__tp_func_ext4_ext_load_extent
-ffffffff81c01170 T __SCT__tp_func_ext4_load_inode
-ffffffff81c01178 T __SCT__tp_func_ext4_journal_start
-ffffffff81c01180 T __SCT__tp_func_ext4_journal_start_reserved
-ffffffff81c01188 T __SCT__tp_func_ext4_trim_extent
-ffffffff81c01190 T __SCT__tp_func_ext4_trim_all_free
-ffffffff81c01198 T __SCT__tp_func_ext4_ext_handle_unwritten_extents
-ffffffff81c011a0 T __SCT__tp_func_ext4_get_implied_cluster_alloc_exit
-ffffffff81c011a8 T __SCT__tp_func_ext4_ext_show_extent
-ffffffff81c011b0 T __SCT__tp_func_ext4_remove_blocks
-ffffffff81c011b8 T __SCT__tp_func_ext4_ext_rm_leaf
-ffffffff81c011c0 T __SCT__tp_func_ext4_ext_rm_idx
-ffffffff81c011c8 T __SCT__tp_func_ext4_ext_remove_space
-ffffffff81c011d0 T __SCT__tp_func_ext4_ext_remove_space_done
-ffffffff81c011d8 T __SCT__tp_func_ext4_es_insert_extent
-ffffffff81c011e0 T __SCT__tp_func_ext4_es_cache_extent
-ffffffff81c011e8 T __SCT__tp_func_ext4_es_remove_extent
-ffffffff81c011f0 T __SCT__tp_func_ext4_es_find_extent_range_enter
-ffffffff81c011f8 T __SCT__tp_func_ext4_es_find_extent_range_exit
-ffffffff81c01200 T __SCT__tp_func_ext4_es_lookup_extent_enter
-ffffffff81c01208 T __SCT__tp_func_ext4_es_lookup_extent_exit
-ffffffff81c01210 T __SCT__tp_func_ext4_es_shrink_count
-ffffffff81c01218 T __SCT__tp_func_ext4_es_shrink_scan_enter
-ffffffff81c01220 T __SCT__tp_func_ext4_es_shrink_scan_exit
-ffffffff81c01228 T __SCT__tp_func_ext4_collapse_range
-ffffffff81c01230 T __SCT__tp_func_ext4_insert_range
-ffffffff81c01238 T __SCT__tp_func_ext4_es_shrink
-ffffffff81c01240 T __SCT__tp_func_ext4_es_insert_delayed_block
-ffffffff81c01248 T __SCT__tp_func_ext4_fsmap_low_key
-ffffffff81c01250 T __SCT__tp_func_ext4_fsmap_high_key
-ffffffff81c01258 T __SCT__tp_func_ext4_fsmap_mapping
-ffffffff81c01260 T __SCT__tp_func_ext4_getfsmap_low_key
-ffffffff81c01268 T __SCT__tp_func_ext4_getfsmap_high_key
-ffffffff81c01270 T __SCT__tp_func_ext4_getfsmap_mapping
-ffffffff81c01278 T __SCT__tp_func_ext4_shutdown
-ffffffff81c01280 T __SCT__tp_func_ext4_error
-ffffffff81c01288 T __SCT__tp_func_ext4_prefetch_bitmaps
-ffffffff81c01290 T __SCT__tp_func_ext4_lazy_itable_init
-ffffffff81c01298 T __SCT__tp_func_ext4_fc_replay_scan
-ffffffff81c012a0 T __SCT__tp_func_ext4_fc_replay
-ffffffff81c012a8 T __SCT__tp_func_ext4_fc_commit_start
-ffffffff81c012b0 T __SCT__tp_func_ext4_fc_commit_stop
-ffffffff81c012b8 T __SCT__tp_func_ext4_fc_stats
-ffffffff81c012c0 T __SCT__tp_func_ext4_fc_track_create
-ffffffff81c012c8 T __SCT__tp_func_ext4_fc_track_link
-ffffffff81c012d0 T __SCT__tp_func_ext4_fc_track_unlink
-ffffffff81c012d8 T __SCT__tp_func_ext4_fc_track_inode
-ffffffff81c012e0 T __SCT__tp_func_ext4_fc_track_range
-ffffffff81c012e8 T __SCT__tp_func_ext4_fc_cleanup
-ffffffff81c012f0 T __SCT__tp_func_ext4_update_sb
-ffffffff81c012f8 T __SCT__tp_func_jbd2_checkpoint
-ffffffff81c01300 T __SCT__tp_func_jbd2_start_commit
-ffffffff81c01308 T __SCT__tp_func_jbd2_commit_locking
-ffffffff81c01310 T __SCT__tp_func_jbd2_commit_flushing
-ffffffff81c01318 T __SCT__tp_func_jbd2_commit_logging
-ffffffff81c01320 T __SCT__tp_func_jbd2_drop_transaction
-ffffffff81c01328 T __SCT__tp_func_jbd2_end_commit
-ffffffff81c01330 T __SCT__tp_func_jbd2_submit_inode_data
-ffffffff81c01338 T __SCT__tp_func_jbd2_handle_start
-ffffffff81c01340 T __SCT__tp_func_jbd2_handle_restart
-ffffffff81c01348 T __SCT__tp_func_jbd2_handle_extend
-ffffffff81c01350 T __SCT__tp_func_jbd2_handle_stats
-ffffffff81c01358 T __SCT__tp_func_jbd2_run_stats
-ffffffff81c01360 T __SCT__tp_func_jbd2_checkpoint_stats
-ffffffff81c01368 T __SCT__tp_func_jbd2_update_log_tail
-ffffffff81c01370 T __SCT__tp_func_jbd2_write_superblock
-ffffffff81c01378 T __SCT__tp_func_jbd2_lock_buffer_stall
-ffffffff81c01380 T __SCT__tp_func_jbd2_shrink_count
-ffffffff81c01388 T __SCT__tp_func_jbd2_shrink_scan_enter
-ffffffff81c01390 T __SCT__tp_func_jbd2_shrink_scan_exit
-ffffffff81c01398 T __SCT__tp_func_jbd2_shrink_checkpoint_list
-ffffffff81c013a0 T __SCT__tp_func_erofs_lookup
-ffffffff81c013a8 T __SCT__tp_func_erofs_fill_inode
-ffffffff81c013b0 T __SCT__tp_func_erofs_readpage
-ffffffff81c013b8 T __SCT__tp_func_erofs_readpages
-ffffffff81c013c0 T __SCT__tp_func_erofs_map_blocks_enter
-ffffffff81c013c8 T __SCT__tp_func_z_erofs_map_blocks_iter_enter
-ffffffff81c013d0 T __SCT__tp_func_erofs_map_blocks_exit
-ffffffff81c013d8 T __SCT__tp_func_z_erofs_map_blocks_iter_exit
-ffffffff81c013e0 T __SCT__tp_func_erofs_destroy_inode
-ffffffff81c013e8 T __SCT__tp_func_selinux_audited
-ffffffff81c013f0 T __SCT__tp_func_block_touch_buffer
-ffffffff81c013f8 T __SCT__tp_func_block_dirty_buffer
-ffffffff81c01400 T __SCT__tp_func_block_rq_requeue
-ffffffff81c01408 T __SCT__tp_func_block_rq_complete
-ffffffff81c01410 T __SCT__tp_func_block_rq_error
-ffffffff81c01418 T __SCT__tp_func_block_rq_insert
-ffffffff81c01420 T __SCT__tp_func_block_rq_issue
-ffffffff81c01428 T __SCT__tp_func_block_rq_merge
-ffffffff81c01430 T __SCT__tp_func_block_bio_complete
-ffffffff81c01438 T __SCT__tp_func_block_bio_bounce
-ffffffff81c01440 T __SCT__tp_func_block_bio_backmerge
-ffffffff81c01448 T __SCT__tp_func_block_bio_frontmerge
-ffffffff81c01450 T __SCT__tp_func_block_bio_queue
-ffffffff81c01458 T __SCT__tp_func_block_getrq
-ffffffff81c01460 T __SCT__tp_func_block_plug
-ffffffff81c01468 T __SCT__tp_func_block_unplug
-ffffffff81c01470 T __SCT__tp_func_block_split
-ffffffff81c01478 T __SCT__tp_func_block_bio_remap
-ffffffff81c01480 T __SCT__tp_func_block_rq_remap
-ffffffff81c01488 T __SCT__tp_func_iocost_iocg_activate
-ffffffff81c01490 T __SCT__tp_func_iocost_iocg_idle
-ffffffff81c01498 T __SCT__tp_func_iocost_inuse_shortage
-ffffffff81c014a0 T __SCT__tp_func_iocost_inuse_transfer
-ffffffff81c014a8 T __SCT__tp_func_iocost_inuse_adjust
-ffffffff81c014b0 T __SCT__tp_func_iocost_ioc_vrate_adj
-ffffffff81c014b8 T __SCT__tp_func_iocost_iocg_forgive_debt
-ffffffff81c014c0 T __SCT__tp_func_kyber_latency
-ffffffff81c014c8 T __SCT__tp_func_kyber_adjust
-ffffffff81c014d0 T __SCT__tp_func_kyber_throttled
-ffffffff81c014d8 T __SCT__tp_func_io_uring_create
-ffffffff81c014e0 T __SCT__tp_func_io_uring_register
-ffffffff81c014e8 T __SCT__tp_func_io_uring_file_get
-ffffffff81c014f0 T __SCT__tp_func_io_uring_queue_async_work
-ffffffff81c014f8 T __SCT__tp_func_io_uring_defer
-ffffffff81c01500 T __SCT__tp_func_io_uring_link
-ffffffff81c01508 T __SCT__tp_func_io_uring_cqring_wait
-ffffffff81c01510 T __SCT__tp_func_io_uring_fail_link
-ffffffff81c01518 T __SCT__tp_func_io_uring_complete
-ffffffff81c01520 T __SCT__tp_func_io_uring_submit_sqe
-ffffffff81c01528 T __SCT__tp_func_io_uring_poll_arm
-ffffffff81c01530 T __SCT__tp_func_io_uring_task_add
-ffffffff81c01538 T __SCT__tp_func_io_uring_req_failed
-ffffffff81c01540 T __SCT__tp_func_io_uring_cqe_overflow
-ffffffff81c01548 T __SCT__tp_func_io_uring_task_work_run
-ffffffff81c01550 T __SCT__tp_func_io_uring_short_write
-ffffffff81c01558 T __SCT__tp_func_io_uring_local_work_run
-ffffffff81c01560 T __SCT__tp_func_read_msr
-ffffffff81c01568 T __SCT__tp_func_write_msr
-ffffffff81c01570 T __SCT__tp_func_rdpmc
-ffffffff81c01578 T __SCT__tp_func_gpio_direction
-ffffffff81c01580 T __SCT__tp_func_gpio_value
-ffffffff81c01588 T __SCT__tp_func_add_device_to_group
-ffffffff81c01590 T __SCT__tp_func_remove_device_from_group
-ffffffff81c01598 T __SCT__tp_func_attach_device_to_domain
-ffffffff81c015a0 T __SCT__tp_func_detach_device_from_domain
-ffffffff81c015a8 T __SCT__tp_func_map
-ffffffff81c015b0 T __SCT__tp_func_unmap
-ffffffff81c015b8 T __SCT__tp_func_io_page_fault
-ffffffff81c015c0 T __SCT__tp_func_regmap_reg_write
-ffffffff81c015c8 T __SCT__tp_func_regmap_reg_read
-ffffffff81c015d0 T __SCT__tp_func_regmap_reg_read_cache
-ffffffff81c015d8 T __SCT__tp_func_regmap_bulk_write
-ffffffff81c015e0 T __SCT__tp_func_regmap_bulk_read
-ffffffff81c015e8 T __SCT__tp_func_regmap_hw_read_start
-ffffffff81c015f0 T __SCT__tp_func_regmap_hw_read_done
-ffffffff81c015f8 T __SCT__tp_func_regmap_hw_write_start
-ffffffff81c01600 T __SCT__tp_func_regmap_hw_write_done
-ffffffff81c01608 T __SCT__tp_func_regcache_sync
-ffffffff81c01610 T __SCT__tp_func_regmap_cache_only
-ffffffff81c01618 T __SCT__tp_func_regmap_cache_bypass
-ffffffff81c01620 T __SCT__tp_func_regmap_async_write_start
-ffffffff81c01628 T __SCT__tp_func_regmap_async_io_complete
-ffffffff81c01630 T __SCT__tp_func_regmap_async_complete_start
-ffffffff81c01638 T __SCT__tp_func_regmap_async_complete_done
-ffffffff81c01640 T __SCT__tp_func_regcache_drop_region
-ffffffff81c01648 T __SCT__tp_func_devres_log
-ffffffff81c01650 T __SCT__tp_func_dma_fence_emit
-ffffffff81c01658 T __SCT__tp_func_dma_fence_init
-ffffffff81c01660 T __SCT__tp_func_dma_fence_destroy
-ffffffff81c01668 T __SCT__tp_func_dma_fence_enable_signal
-ffffffff81c01670 T __SCT__tp_func_dma_fence_signaled
-ffffffff81c01678 T __SCT__tp_func_dma_fence_wait_start
-ffffffff81c01680 T __SCT__tp_func_dma_fence_wait_end
-ffffffff81c01688 T __SCT__tp_func_rtc_set_time
-ffffffff81c01690 T __SCT__tp_func_rtc_read_time
-ffffffff81c01698 T __SCT__tp_func_rtc_set_alarm
-ffffffff81c016a0 T __SCT__tp_func_rtc_read_alarm
-ffffffff81c016a8 T __SCT__tp_func_rtc_irq_set_freq
-ffffffff81c016b0 T __SCT__tp_func_rtc_irq_set_state
-ffffffff81c016b8 T __SCT__tp_func_rtc_alarm_irq_enable
-ffffffff81c016c0 T __SCT__tp_func_rtc_set_offset
-ffffffff81c016c8 T __SCT__tp_func_rtc_read_offset
-ffffffff81c016d0 T __SCT__tp_func_rtc_timer_enqueue
-ffffffff81c016d8 T __SCT__tp_func_rtc_timer_dequeue
-ffffffff81c016e0 T __SCT__tp_func_rtc_timer_fired
-ffffffff81c016e8 T __SCT__tp_func_thermal_temperature
-ffffffff81c016f0 T __SCT__tp_func_cdev_update
-ffffffff81c016f8 T __SCT__tp_func_thermal_zone_trip
-ffffffff81c01700 T __SCT__tp_func_thermal_power_cpu_get_power_simple
-ffffffff81c01708 T __SCT__tp_func_thermal_power_cpu_limit
-ffffffff81c01710 T __SCT__tp_func_watchdog_start
-ffffffff81c01718 T __SCT__tp_func_watchdog_ping
-ffffffff81c01720 T __SCT__tp_func_watchdog_stop
-ffffffff81c01728 T __SCT__tp_func_watchdog_set_timeout
-ffffffff81c01730 T __SCT__tp_func_mc_event
-ffffffff81c01738 T __SCT__tp_func_arm_event
-ffffffff81c01740 T __SCT__tp_func_non_standard_event
-ffffffff81c01748 T __SCT__tp_func_aer_event
-ffffffff81c01750 T __SCT__tp_func_kfree_skb
-ffffffff81c01758 T __SCT__tp_func_consume_skb
-ffffffff81c01760 T __SCT__tp_func_skb_copy_datagram_iovec
-ffffffff81c01768 T __SCT__tp_func_net_dev_start_xmit
-ffffffff81c01770 T __SCT__tp_func_net_dev_xmit
-ffffffff81c01778 T __SCT__tp_func_net_dev_xmit_timeout
-ffffffff81c01780 T __SCT__tp_func_net_dev_queue
-ffffffff81c01788 T __SCT__tp_func_netif_receive_skb
-ffffffff81c01790 T __SCT__tp_func_netif_rx
-ffffffff81c01798 T __SCT__tp_func_napi_gro_frags_entry
-ffffffff81c017a0 T __SCT__tp_func_napi_gro_receive_entry
-ffffffff81c017a8 T __SCT__tp_func_netif_receive_skb_entry
-ffffffff81c017b0 T __SCT__tp_func_netif_receive_skb_list_entry
-ffffffff81c017b8 T __SCT__tp_func_netif_rx_entry
-ffffffff81c017c0 T __SCT__tp_func_napi_gro_frags_exit
-ffffffff81c017c8 T __SCT__tp_func_napi_gro_receive_exit
-ffffffff81c017d0 T __SCT__tp_func_netif_receive_skb_exit
-ffffffff81c017d8 T __SCT__tp_func_netif_rx_exit
-ffffffff81c017e0 T __SCT__tp_func_netif_receive_skb_list_exit
-ffffffff81c017e8 T __SCT__tp_func_napi_poll
-ffffffff81c017f0 T __SCT__tp_func_sock_rcvqueue_full
-ffffffff81c017f8 T __SCT__tp_func_sock_exceed_buf_limit
-ffffffff81c01800 T __SCT__tp_func_inet_sock_set_state
-ffffffff81c01808 T __SCT__tp_func_inet_sk_error_report
-ffffffff81c01810 T __SCT__tp_func_udp_fail_queue_rcv_skb
-ffffffff81c01818 T __SCT__tp_func_tcp_retransmit_skb
-ffffffff81c01820 T __SCT__tp_func_tcp_send_reset
-ffffffff81c01828 T __SCT__tp_func_tcp_receive_reset
-ffffffff81c01830 T __SCT__tp_func_tcp_destroy_sock
-ffffffff81c01838 T __SCT__tp_func_tcp_rcv_space_adjust
-ffffffff81c01840 T __SCT__tp_func_tcp_retransmit_synack
-ffffffff81c01848 T __SCT__tp_func_tcp_probe
-ffffffff81c01850 T __SCT__tp_func_tcp_bad_csum
-ffffffff81c01858 T __SCT__tp_func_tcp_cong_state_set
-ffffffff81c01860 T __SCT__tp_func_fib_table_lookup
-ffffffff81c01868 T __SCT__tp_func_qdisc_dequeue
-ffffffff81c01870 T __SCT__tp_func_qdisc_enqueue
-ffffffff81c01878 T __SCT__tp_func_qdisc_reset
-ffffffff81c01880 T __SCT__tp_func_qdisc_destroy
-ffffffff81c01888 T __SCT__tp_func_qdisc_create
-ffffffff81c01890 T __SCT__tp_func_br_fdb_add
-ffffffff81c01898 T __SCT__tp_func_br_fdb_external_learn_add
-ffffffff81c018a0 T __SCT__tp_func_fdb_delete
-ffffffff81c018a8 T __SCT__tp_func_br_fdb_update
-ffffffff81c018b0 T __SCT__tp_func_neigh_create
-ffffffff81c018b8 T __SCT__tp_func_neigh_update
-ffffffff81c018c0 T __SCT__tp_func_neigh_update_done
-ffffffff81c018c8 T __SCT__tp_func_neigh_timer_handler
-ffffffff81c018d0 T __SCT__tp_func_neigh_event_send_done
-ffffffff81c018d8 T __SCT__tp_func_neigh_event_send_dead
-ffffffff81c018e0 T __SCT__tp_func_neigh_cleanup_and_release
-ffffffff81c018e8 T __SCT__tp_func_netlink_extack
-ffffffff81c018f0 T __SCT__tp_func_fib6_table_lookup
-ffffffff81c018f8 T __SCT__tp_func_virtio_transport_alloc_pkt
-ffffffff81c01900 T __SCT__tp_func_virtio_transport_recv_pkt
-ffffffff81c01908 T __SCT__tp_func_ma_op
-ffffffff81c01910 T __SCT__tp_func_ma_read
-ffffffff81c01918 T __SCT__tp_func_ma_write
-ffffffff81c01920 T __indirect_thunk_end
-ffffffff81c01920 T __indirect_thunk_start
-ffffffff81c01920 T __static_call_text_end
-ffffffff81c01920 T _etext
+ffffffff81c008c0 T __SCT__tp_func_module_load
+ffffffff81c008c8 T __SCT__tp_func_module_free
+ffffffff81c008d0 T __SCT__tp_func_module_request
+ffffffff81c008d8 T __SCT__tp_func_timer_init
+ffffffff81c008e0 T __SCT__tp_func_timer_start
+ffffffff81c008e8 T __SCT__tp_func_timer_expire_entry
+ffffffff81c008f0 T __SCT__tp_func_timer_expire_exit
+ffffffff81c008f8 T __SCT__tp_func_timer_cancel
+ffffffff81c00900 T __SCT__tp_func_hrtimer_init
+ffffffff81c00908 T __SCT__tp_func_hrtimer_start
+ffffffff81c00910 T __SCT__tp_func_hrtimer_expire_entry
+ffffffff81c00918 T __SCT__tp_func_hrtimer_expire_exit
+ffffffff81c00920 T __SCT__tp_func_hrtimer_cancel
+ffffffff81c00928 T __SCT__tp_func_itimer_state
+ffffffff81c00930 T __SCT__tp_func_itimer_expire
+ffffffff81c00938 T __SCT__tp_func_tick_stop
+ffffffff81c00940 T __SCT__tp_func_alarmtimer_suspend
+ffffffff81c00948 T __SCT__tp_func_alarmtimer_fired
+ffffffff81c00950 T __SCT__tp_func_alarmtimer_start
+ffffffff81c00958 T __SCT__tp_func_alarmtimer_cancel
+ffffffff81c00960 T __SCT__tp_func_cgroup_setup_root
+ffffffff81c00968 T __SCT__tp_func_cgroup_destroy_root
+ffffffff81c00970 T __SCT__tp_func_cgroup_remount
+ffffffff81c00978 T __SCT__tp_func_cgroup_mkdir
+ffffffff81c00980 T __SCT__tp_func_cgroup_rmdir
+ffffffff81c00988 T __SCT__tp_func_cgroup_release
+ffffffff81c00990 T __SCT__tp_func_cgroup_rename
+ffffffff81c00998 T __SCT__tp_func_cgroup_freeze
+ffffffff81c009a0 T __SCT__tp_func_cgroup_unfreeze
+ffffffff81c009a8 T __SCT__tp_func_cgroup_attach_task
+ffffffff81c009b0 T __SCT__tp_func_cgroup_transfer_tasks
+ffffffff81c009b8 T __SCT__tp_func_cgroup_notify_populated
+ffffffff81c009c0 T __SCT__tp_func_cgroup_notify_frozen
+ffffffff81c009c8 T __SCT__tp_func_error_report_end
+ffffffff81c009d0 T __SCT__tp_func_cpu_idle
+ffffffff81c009d8 T __SCT__tp_func_cpu_idle_miss
+ffffffff81c009e0 T __SCT__tp_func_powernv_throttle
+ffffffff81c009e8 T __SCT__tp_func_pstate_sample
+ffffffff81c009f0 T __SCT__tp_func_cpu_frequency
+ffffffff81c009f8 T __SCT__tp_func_cpu_frequency_limits
+ffffffff81c00a00 T __SCT__tp_func_device_pm_callback_start
+ffffffff81c00a08 T __SCT__tp_func_device_pm_callback_end
+ffffffff81c00a10 T __SCT__tp_func_suspend_resume
+ffffffff81c00a18 T __SCT__tp_func_wakeup_source_activate
+ffffffff81c00a20 T __SCT__tp_func_wakeup_source_deactivate
+ffffffff81c00a28 T __SCT__tp_func_clock_enable
+ffffffff81c00a30 T __SCT__tp_func_clock_disable
+ffffffff81c00a38 T __SCT__tp_func_clock_set_rate
+ffffffff81c00a40 T __SCT__tp_func_power_domain_target
+ffffffff81c00a48 T __SCT__tp_func_pm_qos_add_request
+ffffffff81c00a50 T __SCT__tp_func_pm_qos_update_request
+ffffffff81c00a58 T __SCT__tp_func_pm_qos_remove_request
+ffffffff81c00a60 T __SCT__tp_func_pm_qos_update_target
+ffffffff81c00a68 T __SCT__tp_func_pm_qos_update_flags
+ffffffff81c00a70 T __SCT__tp_func_dev_pm_qos_add_request
+ffffffff81c00a78 T __SCT__tp_func_dev_pm_qos_update_request
+ffffffff81c00a80 T __SCT__tp_func_dev_pm_qos_remove_request
+ffffffff81c00a88 T __SCT__tp_func_guest_halt_poll_ns
+ffffffff81c00a90 T __SCT__tp_func_rpm_suspend
+ffffffff81c00a98 T __SCT__tp_func_rpm_resume
+ffffffff81c00aa0 T __SCT__tp_func_rpm_idle
+ffffffff81c00aa8 T __SCT__tp_func_rpm_usage
+ffffffff81c00ab0 T __SCT__tp_func_rpm_return_int
+ffffffff81c00ab8 T __SCT__tp_func_xdp_exception
+ffffffff81c00ac0 T __SCT__tp_func_xdp_bulk_tx
+ffffffff81c00ac8 T __SCT__tp_func_xdp_redirect
+ffffffff81c00ad0 T __SCT__tp_func_xdp_redirect_err
+ffffffff81c00ad8 T __SCT__tp_func_xdp_redirect_map
+ffffffff81c00ae0 T __SCT__tp_func_xdp_redirect_map_err
+ffffffff81c00ae8 T __SCT__tp_func_xdp_cpumap_kthread
+ffffffff81c00af0 T __SCT__tp_func_xdp_cpumap_enqueue
+ffffffff81c00af8 T __SCT__tp_func_xdp_devmap_xmit
+ffffffff81c00b00 T __SCT__tp_func_mem_disconnect
+ffffffff81c00b08 T __SCT__tp_func_mem_connect
+ffffffff81c00b10 T __SCT__tp_func_mem_return_failed
+ffffffff81c00b18 T __SCT__perf_snapshot_branch_stack
+ffffffff81c00b20 T __SCT__tp_func_rseq_update
+ffffffff81c00b28 T __SCT__tp_func_rseq_ip_fixup
+ffffffff81c00b30 T __SCT__tp_func_mm_filemap_delete_from_page_cache
+ffffffff81c00b38 T __SCT__tp_func_mm_filemap_add_to_page_cache
+ffffffff81c00b40 T __SCT__tp_func_filemap_set_wb_err
+ffffffff81c00b48 T __SCT__tp_func_file_check_and_advance_wb_err
+ffffffff81c00b50 T __SCT__tp_func_oom_score_adj_update
+ffffffff81c00b58 T __SCT__tp_func_reclaim_retry_zone
+ffffffff81c00b60 T __SCT__tp_func_mark_victim
+ffffffff81c00b68 T __SCT__tp_func_wake_reaper
+ffffffff81c00b70 T __SCT__tp_func_start_task_reaping
+ffffffff81c00b78 T __SCT__tp_func_finish_task_reaping
+ffffffff81c00b80 T __SCT__tp_func_skip_task_reaping
+ffffffff81c00b88 T __SCT__tp_func_compact_retry
+ffffffff81c00b90 T __SCT__tp_func_mm_lru_insertion
+ffffffff81c00b98 T __SCT__tp_func_mm_lru_activate
+ffffffff81c00ba0 T __SCT__tp_func_mm_vmscan_kswapd_sleep
+ffffffff81c00ba8 T __SCT__tp_func_mm_vmscan_kswapd_wake
+ffffffff81c00bb0 T __SCT__tp_func_mm_vmscan_wakeup_kswapd
+ffffffff81c00bb8 T __SCT__tp_func_mm_vmscan_direct_reclaim_begin
+ffffffff81c00bc0 T __SCT__tp_func_mm_vmscan_memcg_reclaim_begin
+ffffffff81c00bc8 T __SCT__tp_func_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff81c00bd0 T __SCT__tp_func_mm_vmscan_direct_reclaim_end
+ffffffff81c00bd8 T __SCT__tp_func_mm_vmscan_memcg_reclaim_end
+ffffffff81c00be0 T __SCT__tp_func_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff81c00be8 T __SCT__tp_func_mm_shrink_slab_start
+ffffffff81c00bf0 T __SCT__tp_func_mm_shrink_slab_end
+ffffffff81c00bf8 T __SCT__tp_func_mm_vmscan_lru_isolate
+ffffffff81c00c00 T __SCT__tp_func_mm_vmscan_write_folio
+ffffffff81c00c08 T __SCT__tp_func_mm_vmscan_lru_shrink_inactive
+ffffffff81c00c10 T __SCT__tp_func_mm_vmscan_lru_shrink_active
+ffffffff81c00c18 T __SCT__tp_func_mm_vmscan_node_reclaim_begin
+ffffffff81c00c20 T __SCT__tp_func_mm_vmscan_node_reclaim_end
+ffffffff81c00c28 T __SCT__tp_func_mm_vmscan_throttled
+ffffffff81c00c30 T __SCT__tp_func_percpu_alloc_percpu
+ffffffff81c00c38 T __SCT__tp_func_percpu_free_percpu
+ffffffff81c00c40 T __SCT__tp_func_percpu_alloc_percpu_fail
+ffffffff81c00c48 T __SCT__tp_func_percpu_create_chunk
+ffffffff81c00c50 T __SCT__tp_func_percpu_destroy_chunk
+ffffffff81c00c58 T __SCT__tp_func_kmem_cache_alloc
+ffffffff81c00c60 T __SCT__tp_func_kmalloc
+ffffffff81c00c68 T __SCT__tp_func_kfree
+ffffffff81c00c70 T __SCT__tp_func_kmem_cache_free
+ffffffff81c00c78 T __SCT__tp_func_mm_page_free
+ffffffff81c00c80 T __SCT__tp_func_mm_page_free_batched
+ffffffff81c00c88 T __SCT__tp_func_mm_page_alloc
+ffffffff81c00c90 T __SCT__tp_func_mm_page_alloc_zone_locked
+ffffffff81c00c98 T __SCT__tp_func_mm_page_pcpu_drain
+ffffffff81c00ca0 T __SCT__tp_func_mm_page_alloc_extfrag
+ffffffff81c00ca8 T __SCT__tp_func_rss_stat
+ffffffff81c00cb0 T __SCT__tp_func_mm_compaction_isolate_migratepages
+ffffffff81c00cb8 T __SCT__tp_func_mm_compaction_isolate_freepages
+ffffffff81c00cc0 T __SCT__tp_func_mm_compaction_migratepages
+ffffffff81c00cc8 T __SCT__tp_func_mm_compaction_begin
+ffffffff81c00cd0 T __SCT__tp_func_mm_compaction_end
+ffffffff81c00cd8 T __SCT__tp_func_mm_compaction_try_to_compact_pages
+ffffffff81c00ce0 T __SCT__tp_func_mm_compaction_finished
+ffffffff81c00ce8 T __SCT__tp_func_mm_compaction_suitable
+ffffffff81c00cf0 T __SCT__tp_func_mm_compaction_deferred
+ffffffff81c00cf8 T __SCT__tp_func_mm_compaction_defer_compaction
+ffffffff81c00d00 T __SCT__tp_func_mm_compaction_defer_reset
+ffffffff81c00d08 T __SCT__tp_func_mm_compaction_kcompactd_sleep
+ffffffff81c00d10 T __SCT__tp_func_mm_compaction_wakeup_kcompactd
+ffffffff81c00d18 T __SCT__tp_func_mm_compaction_kcompactd_wake
+ffffffff81c00d20 T __SCT__tp_func_mmap_lock_start_locking
+ffffffff81c00d28 T __SCT__tp_func_mmap_lock_released
+ffffffff81c00d30 T __SCT__tp_func_mmap_lock_acquire_returned
+ffffffff81c00d38 T __SCT__tp_func_vm_unmapped_area
+ffffffff81c00d40 T __SCT__tp_func_vma_mas_szero
+ffffffff81c00d48 T __SCT__tp_func_vma_store
+ffffffff81c00d50 T __SCT__tp_func_exit_mmap
+ffffffff81c00d58 T __SCT__tp_func_tlb_flush
+ffffffff81c00d60 T __SCT__tp_func_mm_migrate_pages
+ffffffff81c00d68 T __SCT__tp_func_mm_migrate_pages_start
+ffffffff81c00d70 T __SCT__tp_func_set_migration_pte
+ffffffff81c00d78 T __SCT__tp_func_remove_migration_pte
+ffffffff81c00d80 T __SCT__tp_func_hugepage_set_pmd
+ffffffff81c00d88 T __SCT__tp_func_hugepage_update
+ffffffff81c00d90 T __SCT__tp_func_set_migration_pmd
+ffffffff81c00d98 T __SCT__tp_func_remove_migration_pmd
+ffffffff81c00da0 T __SCT__tp_func_mm_khugepaged_scan_pmd
+ffffffff81c00da8 T __SCT__tp_func_mm_collapse_huge_page
+ffffffff81c00db0 T __SCT__tp_func_mm_collapse_huge_page_isolate
+ffffffff81c00db8 T __SCT__tp_func_mm_collapse_huge_page_swapin
+ffffffff81c00dc0 T __SCT__tp_func_mm_khugepaged_scan_file
+ffffffff81c00dc8 T __SCT__tp_func_test_pages_isolated
+ffffffff81c00dd0 T __SCT__tp_func_damon_aggregated
+ffffffff81c00dd8 T __SCT__tp_func_writeback_dirty_folio
+ffffffff81c00de0 T __SCT__tp_func_folio_wait_writeback
+ffffffff81c00de8 T __SCT__tp_func_writeback_mark_inode_dirty
+ffffffff81c00df0 T __SCT__tp_func_writeback_dirty_inode_start
+ffffffff81c00df8 T __SCT__tp_func_writeback_dirty_inode
+ffffffff81c00e00 T __SCT__tp_func_inode_foreign_history
+ffffffff81c00e08 T __SCT__tp_func_inode_switch_wbs
+ffffffff81c00e10 T __SCT__tp_func_track_foreign_dirty
+ffffffff81c00e18 T __SCT__tp_func_flush_foreign
+ffffffff81c00e20 T __SCT__tp_func_writeback_write_inode_start
+ffffffff81c00e28 T __SCT__tp_func_writeback_write_inode
+ffffffff81c00e30 T __SCT__tp_func_writeback_queue
+ffffffff81c00e38 T __SCT__tp_func_writeback_exec
+ffffffff81c00e40 T __SCT__tp_func_writeback_start
+ffffffff81c00e48 T __SCT__tp_func_writeback_written
+ffffffff81c00e50 T __SCT__tp_func_writeback_wait
+ffffffff81c00e58 T __SCT__tp_func_writeback_pages_written
+ffffffff81c00e60 T __SCT__tp_func_writeback_wake_background
+ffffffff81c00e68 T __SCT__tp_func_writeback_bdi_register
+ffffffff81c00e70 T __SCT__tp_func_wbc_writepage
+ffffffff81c00e78 T __SCT__tp_func_writeback_queue_io
+ffffffff81c00e80 T __SCT__tp_func_global_dirty_state
+ffffffff81c00e88 T __SCT__tp_func_bdi_dirty_ratelimit
+ffffffff81c00e90 T __SCT__tp_func_balance_dirty_pages
+ffffffff81c00e98 T __SCT__tp_func_writeback_sb_inodes_requeue
+ffffffff81c00ea0 T __SCT__tp_func_writeback_single_inode_start
+ffffffff81c00ea8 T __SCT__tp_func_writeback_single_inode
+ffffffff81c00eb0 T __SCT__tp_func_writeback_lazytime
+ffffffff81c00eb8 T __SCT__tp_func_writeback_lazytime_iput
+ffffffff81c00ec0 T __SCT__tp_func_writeback_dirty_inode_enqueue
+ffffffff81c00ec8 T __SCT__tp_func_sb_mark_inode_writeback
+ffffffff81c00ed0 T __SCT__tp_func_sb_clear_inode_writeback
+ffffffff81c00ed8 T __SCT__tp_func_locks_get_lock_context
+ffffffff81c00ee0 T __SCT__tp_func_posix_lock_inode
+ffffffff81c00ee8 T __SCT__tp_func_fcntl_setlk
+ffffffff81c00ef0 T __SCT__tp_func_locks_remove_posix
+ffffffff81c00ef8 T __SCT__tp_func_flock_lock_inode
+ffffffff81c00f00 T __SCT__tp_func_break_lease_noblock
+ffffffff81c00f08 T __SCT__tp_func_break_lease_block
+ffffffff81c00f10 T __SCT__tp_func_break_lease_unblock
+ffffffff81c00f18 T __SCT__tp_func_generic_delete_lease
+ffffffff81c00f20 T __SCT__tp_func_time_out_leases
+ffffffff81c00f28 T __SCT__tp_func_generic_add_lease
+ffffffff81c00f30 T __SCT__tp_func_leases_conflict
+ffffffff81c00f38 T __SCT__tp_func_iomap_readpage
+ffffffff81c00f40 T __SCT__tp_func_iomap_readahead
+ffffffff81c00f48 T __SCT__tp_func_iomap_writepage
+ffffffff81c00f50 T __SCT__tp_func_iomap_release_folio
+ffffffff81c00f58 T __SCT__tp_func_iomap_invalidate_folio
+ffffffff81c00f60 T __SCT__tp_func_iomap_dio_invalidate_fail
+ffffffff81c00f68 T __SCT__tp_func_iomap_iter_dstmap
+ffffffff81c00f70 T __SCT__tp_func_iomap_iter_srcmap
+ffffffff81c00f78 T __SCT__tp_func_iomap_writepage_map
+ffffffff81c00f80 T __SCT__tp_func_iomap_iter
+ffffffff81c00f88 T __SCT__tp_func_ext4_other_inode_update_time
+ffffffff81c00f90 T __SCT__tp_func_ext4_free_inode
+ffffffff81c00f98 T __SCT__tp_func_ext4_request_inode
+ffffffff81c00fa0 T __SCT__tp_func_ext4_allocate_inode
+ffffffff81c00fa8 T __SCT__tp_func_ext4_evict_inode
+ffffffff81c00fb0 T __SCT__tp_func_ext4_drop_inode
+ffffffff81c00fb8 T __SCT__tp_func_ext4_nfs_commit_metadata
+ffffffff81c00fc0 T __SCT__tp_func_ext4_mark_inode_dirty
+ffffffff81c00fc8 T __SCT__tp_func_ext4_begin_ordered_truncate
+ffffffff81c00fd0 T __SCT__tp_func_ext4_write_begin
+ffffffff81c00fd8 T __SCT__tp_func_ext4_da_write_begin
+ffffffff81c00fe0 T __SCT__tp_func_ext4_write_end
+ffffffff81c00fe8 T __SCT__tp_func_ext4_journalled_write_end
+ffffffff81c00ff0 T __SCT__tp_func_ext4_da_write_end
+ffffffff81c00ff8 T __SCT__tp_func_ext4_writepages
+ffffffff81c01000 T __SCT__tp_func_ext4_da_write_pages
+ffffffff81c01008 T __SCT__tp_func_ext4_da_write_pages_extent
+ffffffff81c01010 T __SCT__tp_func_ext4_writepages_result
+ffffffff81c01018 T __SCT__tp_func_ext4_writepage
+ffffffff81c01020 T __SCT__tp_func_ext4_readpage
+ffffffff81c01028 T __SCT__tp_func_ext4_releasepage
+ffffffff81c01030 T __SCT__tp_func_ext4_invalidate_folio
+ffffffff81c01038 T __SCT__tp_func_ext4_journalled_invalidate_folio
+ffffffff81c01040 T __SCT__tp_func_ext4_discard_blocks
+ffffffff81c01048 T __SCT__tp_func_ext4_mb_new_inode_pa
+ffffffff81c01050 T __SCT__tp_func_ext4_mb_new_group_pa
+ffffffff81c01058 T __SCT__tp_func_ext4_mb_release_inode_pa
+ffffffff81c01060 T __SCT__tp_func_ext4_mb_release_group_pa
+ffffffff81c01068 T __SCT__tp_func_ext4_discard_preallocations
+ffffffff81c01070 T __SCT__tp_func_ext4_mb_discard_preallocations
+ffffffff81c01078 T __SCT__tp_func_ext4_request_blocks
+ffffffff81c01080 T __SCT__tp_func_ext4_allocate_blocks
+ffffffff81c01088 T __SCT__tp_func_ext4_free_blocks
+ffffffff81c01090 T __SCT__tp_func_ext4_sync_file_enter
+ffffffff81c01098 T __SCT__tp_func_ext4_sync_file_exit
+ffffffff81c010a0 T __SCT__tp_func_ext4_sync_fs
+ffffffff81c010a8 T __SCT__tp_func_ext4_alloc_da_blocks
+ffffffff81c010b0 T __SCT__tp_func_ext4_mballoc_alloc
+ffffffff81c010b8 T __SCT__tp_func_ext4_mballoc_prealloc
+ffffffff81c010c0 T __SCT__tp_func_ext4_mballoc_discard
+ffffffff81c010c8 T __SCT__tp_func_ext4_mballoc_free
+ffffffff81c010d0 T __SCT__tp_func_ext4_forget
+ffffffff81c010d8 T __SCT__tp_func_ext4_da_update_reserve_space
+ffffffff81c010e0 T __SCT__tp_func_ext4_da_reserve_space
+ffffffff81c010e8 T __SCT__tp_func_ext4_da_release_space
+ffffffff81c010f0 T __SCT__tp_func_ext4_mb_bitmap_load
+ffffffff81c010f8 T __SCT__tp_func_ext4_mb_buddy_bitmap_load
+ffffffff81c01100 T __SCT__tp_func_ext4_load_inode_bitmap
+ffffffff81c01108 T __SCT__tp_func_ext4_read_block_bitmap_load
+ffffffff81c01110 T __SCT__tp_func_ext4_fallocate_enter
+ffffffff81c01118 T __SCT__tp_func_ext4_punch_hole
+ffffffff81c01120 T __SCT__tp_func_ext4_zero_range
+ffffffff81c01128 T __SCT__tp_func_ext4_fallocate_exit
+ffffffff81c01130 T __SCT__tp_func_ext4_unlink_enter
+ffffffff81c01138 T __SCT__tp_func_ext4_unlink_exit
+ffffffff81c01140 T __SCT__tp_func_ext4_truncate_enter
+ffffffff81c01148 T __SCT__tp_func_ext4_truncate_exit
+ffffffff81c01150 T __SCT__tp_func_ext4_ext_convert_to_initialized_enter
+ffffffff81c01158 T __SCT__tp_func_ext4_ext_convert_to_initialized_fastpath
+ffffffff81c01160 T __SCT__tp_func_ext4_ext_map_blocks_enter
+ffffffff81c01168 T __SCT__tp_func_ext4_ind_map_blocks_enter
+ffffffff81c01170 T __SCT__tp_func_ext4_ext_map_blocks_exit
+ffffffff81c01178 T __SCT__tp_func_ext4_ind_map_blocks_exit
+ffffffff81c01180 T __SCT__tp_func_ext4_ext_load_extent
+ffffffff81c01188 T __SCT__tp_func_ext4_load_inode
+ffffffff81c01190 T __SCT__tp_func_ext4_journal_start
+ffffffff81c01198 T __SCT__tp_func_ext4_journal_start_reserved
+ffffffff81c011a0 T __SCT__tp_func_ext4_trim_extent
+ffffffff81c011a8 T __SCT__tp_func_ext4_trim_all_free
+ffffffff81c011b0 T __SCT__tp_func_ext4_ext_handle_unwritten_extents
+ffffffff81c011b8 T __SCT__tp_func_ext4_get_implied_cluster_alloc_exit
+ffffffff81c011c0 T __SCT__tp_func_ext4_ext_show_extent
+ffffffff81c011c8 T __SCT__tp_func_ext4_remove_blocks
+ffffffff81c011d0 T __SCT__tp_func_ext4_ext_rm_leaf
+ffffffff81c011d8 T __SCT__tp_func_ext4_ext_rm_idx
+ffffffff81c011e0 T __SCT__tp_func_ext4_ext_remove_space
+ffffffff81c011e8 T __SCT__tp_func_ext4_ext_remove_space_done
+ffffffff81c011f0 T __SCT__tp_func_ext4_es_insert_extent
+ffffffff81c011f8 T __SCT__tp_func_ext4_es_cache_extent
+ffffffff81c01200 T __SCT__tp_func_ext4_es_remove_extent
+ffffffff81c01208 T __SCT__tp_func_ext4_es_find_extent_range_enter
+ffffffff81c01210 T __SCT__tp_func_ext4_es_find_extent_range_exit
+ffffffff81c01218 T __SCT__tp_func_ext4_es_lookup_extent_enter
+ffffffff81c01220 T __SCT__tp_func_ext4_es_lookup_extent_exit
+ffffffff81c01228 T __SCT__tp_func_ext4_es_shrink_count
+ffffffff81c01230 T __SCT__tp_func_ext4_es_shrink_scan_enter
+ffffffff81c01238 T __SCT__tp_func_ext4_es_shrink_scan_exit
+ffffffff81c01240 T __SCT__tp_func_ext4_collapse_range
+ffffffff81c01248 T __SCT__tp_func_ext4_insert_range
+ffffffff81c01250 T __SCT__tp_func_ext4_es_shrink
+ffffffff81c01258 T __SCT__tp_func_ext4_es_insert_delayed_block
+ffffffff81c01260 T __SCT__tp_func_ext4_fsmap_low_key
+ffffffff81c01268 T __SCT__tp_func_ext4_fsmap_high_key
+ffffffff81c01270 T __SCT__tp_func_ext4_fsmap_mapping
+ffffffff81c01278 T __SCT__tp_func_ext4_getfsmap_low_key
+ffffffff81c01280 T __SCT__tp_func_ext4_getfsmap_high_key
+ffffffff81c01288 T __SCT__tp_func_ext4_getfsmap_mapping
+ffffffff81c01290 T __SCT__tp_func_ext4_shutdown
+ffffffff81c01298 T __SCT__tp_func_ext4_error
+ffffffff81c012a0 T __SCT__tp_func_ext4_prefetch_bitmaps
+ffffffff81c012a8 T __SCT__tp_func_ext4_lazy_itable_init
+ffffffff81c012b0 T __SCT__tp_func_ext4_fc_replay_scan
+ffffffff81c012b8 T __SCT__tp_func_ext4_fc_replay
+ffffffff81c012c0 T __SCT__tp_func_ext4_fc_commit_start
+ffffffff81c012c8 T __SCT__tp_func_ext4_fc_commit_stop
+ffffffff81c012d0 T __SCT__tp_func_ext4_fc_stats
+ffffffff81c012d8 T __SCT__tp_func_ext4_fc_track_create
+ffffffff81c012e0 T __SCT__tp_func_ext4_fc_track_link
+ffffffff81c012e8 T __SCT__tp_func_ext4_fc_track_unlink
+ffffffff81c012f0 T __SCT__tp_func_ext4_fc_track_inode
+ffffffff81c012f8 T __SCT__tp_func_ext4_fc_track_range
+ffffffff81c01300 T __SCT__tp_func_ext4_fc_cleanup
+ffffffff81c01308 T __SCT__tp_func_ext4_update_sb
+ffffffff81c01310 T __SCT__tp_func_jbd2_checkpoint
+ffffffff81c01318 T __SCT__tp_func_jbd2_start_commit
+ffffffff81c01320 T __SCT__tp_func_jbd2_commit_locking
+ffffffff81c01328 T __SCT__tp_func_jbd2_commit_flushing
+ffffffff81c01330 T __SCT__tp_func_jbd2_commit_logging
+ffffffff81c01338 T __SCT__tp_func_jbd2_drop_transaction
+ffffffff81c01340 T __SCT__tp_func_jbd2_end_commit
+ffffffff81c01348 T __SCT__tp_func_jbd2_submit_inode_data
+ffffffff81c01350 T __SCT__tp_func_jbd2_handle_start
+ffffffff81c01358 T __SCT__tp_func_jbd2_handle_restart
+ffffffff81c01360 T __SCT__tp_func_jbd2_handle_extend
+ffffffff81c01368 T __SCT__tp_func_jbd2_handle_stats
+ffffffff81c01370 T __SCT__tp_func_jbd2_run_stats
+ffffffff81c01378 T __SCT__tp_func_jbd2_checkpoint_stats
+ffffffff81c01380 T __SCT__tp_func_jbd2_update_log_tail
+ffffffff81c01388 T __SCT__tp_func_jbd2_write_superblock
+ffffffff81c01390 T __SCT__tp_func_jbd2_lock_buffer_stall
+ffffffff81c01398 T __SCT__tp_func_jbd2_shrink_count
+ffffffff81c013a0 T __SCT__tp_func_jbd2_shrink_scan_enter
+ffffffff81c013a8 T __SCT__tp_func_jbd2_shrink_scan_exit
+ffffffff81c013b0 T __SCT__tp_func_jbd2_shrink_checkpoint_list
+ffffffff81c013b8 T __SCT__tp_func_erofs_lookup
+ffffffff81c013c0 T __SCT__tp_func_erofs_fill_inode
+ffffffff81c013c8 T __SCT__tp_func_erofs_readpage
+ffffffff81c013d0 T __SCT__tp_func_erofs_readpages
+ffffffff81c013d8 T __SCT__tp_func_erofs_map_blocks_enter
+ffffffff81c013e0 T __SCT__tp_func_z_erofs_map_blocks_iter_enter
+ffffffff81c013e8 T __SCT__tp_func_erofs_map_blocks_exit
+ffffffff81c013f0 T __SCT__tp_func_z_erofs_map_blocks_iter_exit
+ffffffff81c013f8 T __SCT__tp_func_erofs_destroy_inode
+ffffffff81c01400 T __SCT__tp_func_selinux_audited
+ffffffff81c01408 T __SCT__tp_func_block_touch_buffer
+ffffffff81c01410 T __SCT__tp_func_block_dirty_buffer
+ffffffff81c01418 T __SCT__tp_func_block_rq_requeue
+ffffffff81c01420 T __SCT__tp_func_block_rq_complete
+ffffffff81c01428 T __SCT__tp_func_block_rq_error
+ffffffff81c01430 T __SCT__tp_func_block_rq_insert
+ffffffff81c01438 T __SCT__tp_func_block_rq_issue
+ffffffff81c01440 T __SCT__tp_func_block_rq_merge
+ffffffff81c01448 T __SCT__tp_func_block_bio_complete
+ffffffff81c01450 T __SCT__tp_func_block_bio_bounce
+ffffffff81c01458 T __SCT__tp_func_block_bio_backmerge
+ffffffff81c01460 T __SCT__tp_func_block_bio_frontmerge
+ffffffff81c01468 T __SCT__tp_func_block_bio_queue
+ffffffff81c01470 T __SCT__tp_func_block_getrq
+ffffffff81c01478 T __SCT__tp_func_block_plug
+ffffffff81c01480 T __SCT__tp_func_block_unplug
+ffffffff81c01488 T __SCT__tp_func_block_split
+ffffffff81c01490 T __SCT__tp_func_block_bio_remap
+ffffffff81c01498 T __SCT__tp_func_block_rq_remap
+ffffffff81c014a0 T __SCT__tp_func_iocost_iocg_activate
+ffffffff81c014a8 T __SCT__tp_func_iocost_iocg_idle
+ffffffff81c014b0 T __SCT__tp_func_iocost_inuse_shortage
+ffffffff81c014b8 T __SCT__tp_func_iocost_inuse_transfer
+ffffffff81c014c0 T __SCT__tp_func_iocost_inuse_adjust
+ffffffff81c014c8 T __SCT__tp_func_iocost_ioc_vrate_adj
+ffffffff81c014d0 T __SCT__tp_func_iocost_iocg_forgive_debt
+ffffffff81c014d8 T __SCT__tp_func_kyber_latency
+ffffffff81c014e0 T __SCT__tp_func_kyber_adjust
+ffffffff81c014e8 T __SCT__tp_func_kyber_throttled
+ffffffff81c014f0 T __SCT__tp_func_io_uring_create
+ffffffff81c014f8 T __SCT__tp_func_io_uring_register
+ffffffff81c01500 T __SCT__tp_func_io_uring_file_get
+ffffffff81c01508 T __SCT__tp_func_io_uring_queue_async_work
+ffffffff81c01510 T __SCT__tp_func_io_uring_defer
+ffffffff81c01518 T __SCT__tp_func_io_uring_link
+ffffffff81c01520 T __SCT__tp_func_io_uring_cqring_wait
+ffffffff81c01528 T __SCT__tp_func_io_uring_fail_link
+ffffffff81c01530 T __SCT__tp_func_io_uring_complete
+ffffffff81c01538 T __SCT__tp_func_io_uring_submit_sqe
+ffffffff81c01540 T __SCT__tp_func_io_uring_poll_arm
+ffffffff81c01548 T __SCT__tp_func_io_uring_task_add
+ffffffff81c01550 T __SCT__tp_func_io_uring_req_failed
+ffffffff81c01558 T __SCT__tp_func_io_uring_cqe_overflow
+ffffffff81c01560 T __SCT__tp_func_io_uring_task_work_run
+ffffffff81c01568 T __SCT__tp_func_io_uring_short_write
+ffffffff81c01570 T __SCT__tp_func_io_uring_local_work_run
+ffffffff81c01578 T __SCT__tp_func_read_msr
+ffffffff81c01580 T __SCT__tp_func_write_msr
+ffffffff81c01588 T __SCT__tp_func_rdpmc
+ffffffff81c01590 T __SCT__tp_func_gpio_direction
+ffffffff81c01598 T __SCT__tp_func_gpio_value
+ffffffff81c015a0 T __SCT__tp_func_add_device_to_group
+ffffffff81c015a8 T __SCT__tp_func_remove_device_from_group
+ffffffff81c015b0 T __SCT__tp_func_attach_device_to_domain
+ffffffff81c015b8 T __SCT__tp_func_detach_device_from_domain
+ffffffff81c015c0 T __SCT__tp_func_map
+ffffffff81c015c8 T __SCT__tp_func_unmap
+ffffffff81c015d0 T __SCT__tp_func_io_page_fault
+ffffffff81c015d8 T __SCT__tp_func_regmap_reg_write
+ffffffff81c015e0 T __SCT__tp_func_regmap_reg_read
+ffffffff81c015e8 T __SCT__tp_func_regmap_reg_read_cache
+ffffffff81c015f0 T __SCT__tp_func_regmap_bulk_write
+ffffffff81c015f8 T __SCT__tp_func_regmap_bulk_read
+ffffffff81c01600 T __SCT__tp_func_regmap_hw_read_start
+ffffffff81c01608 T __SCT__tp_func_regmap_hw_read_done
+ffffffff81c01610 T __SCT__tp_func_regmap_hw_write_start
+ffffffff81c01618 T __SCT__tp_func_regmap_hw_write_done
+ffffffff81c01620 T __SCT__tp_func_regcache_sync
+ffffffff81c01628 T __SCT__tp_func_regmap_cache_only
+ffffffff81c01630 T __SCT__tp_func_regmap_cache_bypass
+ffffffff81c01638 T __SCT__tp_func_regmap_async_write_start
+ffffffff81c01640 T __SCT__tp_func_regmap_async_io_complete
+ffffffff81c01648 T __SCT__tp_func_regmap_async_complete_start
+ffffffff81c01650 T __SCT__tp_func_regmap_async_complete_done
+ffffffff81c01658 T __SCT__tp_func_regcache_drop_region
+ffffffff81c01660 T __SCT__tp_func_devres_log
+ffffffff81c01668 T __SCT__tp_func_dma_fence_emit
+ffffffff81c01670 T __SCT__tp_func_dma_fence_init
+ffffffff81c01678 T __SCT__tp_func_dma_fence_destroy
+ffffffff81c01680 T __SCT__tp_func_dma_fence_enable_signal
+ffffffff81c01688 T __SCT__tp_func_dma_fence_signaled
+ffffffff81c01690 T __SCT__tp_func_dma_fence_wait_start
+ffffffff81c01698 T __SCT__tp_func_dma_fence_wait_end
+ffffffff81c016a0 T __SCT__tp_func_rtc_set_time
+ffffffff81c016a8 T __SCT__tp_func_rtc_read_time
+ffffffff81c016b0 T __SCT__tp_func_rtc_set_alarm
+ffffffff81c016b8 T __SCT__tp_func_rtc_read_alarm
+ffffffff81c016c0 T __SCT__tp_func_rtc_irq_set_freq
+ffffffff81c016c8 T __SCT__tp_func_rtc_irq_set_state
+ffffffff81c016d0 T __SCT__tp_func_rtc_alarm_irq_enable
+ffffffff81c016d8 T __SCT__tp_func_rtc_set_offset
+ffffffff81c016e0 T __SCT__tp_func_rtc_read_offset
+ffffffff81c016e8 T __SCT__tp_func_rtc_timer_enqueue
+ffffffff81c016f0 T __SCT__tp_func_rtc_timer_dequeue
+ffffffff81c016f8 T __SCT__tp_func_rtc_timer_fired
+ffffffff81c01700 T __SCT__tp_func_thermal_temperature
+ffffffff81c01708 T __SCT__tp_func_cdev_update
+ffffffff81c01710 T __SCT__tp_func_thermal_zone_trip
+ffffffff81c01718 T __SCT__tp_func_thermal_power_cpu_get_power_simple
+ffffffff81c01720 T __SCT__tp_func_thermal_power_cpu_limit
+ffffffff81c01728 T __SCT__tp_func_watchdog_start
+ffffffff81c01730 T __SCT__tp_func_watchdog_ping
+ffffffff81c01738 T __SCT__tp_func_watchdog_stop
+ffffffff81c01740 T __SCT__tp_func_watchdog_set_timeout
+ffffffff81c01748 T __SCT__tp_func_mc_event
+ffffffff81c01750 T __SCT__tp_func_arm_event
+ffffffff81c01758 T __SCT__tp_func_non_standard_event
+ffffffff81c01760 T __SCT__tp_func_aer_event
+ffffffff81c01768 T __SCT__tp_func_kfree_skb
+ffffffff81c01770 T __SCT__tp_func_consume_skb
+ffffffff81c01778 T __SCT__tp_func_skb_copy_datagram_iovec
+ffffffff81c01780 T __SCT__tp_func_net_dev_start_xmit
+ffffffff81c01788 T __SCT__tp_func_net_dev_xmit
+ffffffff81c01790 T __SCT__tp_func_net_dev_xmit_timeout
+ffffffff81c01798 T __SCT__tp_func_net_dev_queue
+ffffffff81c017a0 T __SCT__tp_func_netif_receive_skb
+ffffffff81c017a8 T __SCT__tp_func_netif_rx
+ffffffff81c017b0 T __SCT__tp_func_napi_gro_frags_entry
+ffffffff81c017b8 T __SCT__tp_func_napi_gro_receive_entry
+ffffffff81c017c0 T __SCT__tp_func_netif_receive_skb_entry
+ffffffff81c017c8 T __SCT__tp_func_netif_receive_skb_list_entry
+ffffffff81c017d0 T __SCT__tp_func_netif_rx_entry
+ffffffff81c017d8 T __SCT__tp_func_napi_gro_frags_exit
+ffffffff81c017e0 T __SCT__tp_func_napi_gro_receive_exit
+ffffffff81c017e8 T __SCT__tp_func_netif_receive_skb_exit
+ffffffff81c017f0 T __SCT__tp_func_netif_rx_exit
+ffffffff81c017f8 T __SCT__tp_func_netif_receive_skb_list_exit
+ffffffff81c01800 T __SCT__tp_func_napi_poll
+ffffffff81c01808 T __SCT__tp_func_sock_rcvqueue_full
+ffffffff81c01810 T __SCT__tp_func_sock_exceed_buf_limit
+ffffffff81c01818 T __SCT__tp_func_inet_sock_set_state
+ffffffff81c01820 T __SCT__tp_func_inet_sk_error_report
+ffffffff81c01828 T __SCT__tp_func_udp_fail_queue_rcv_skb
+ffffffff81c01830 T __SCT__tp_func_tcp_retransmit_skb
+ffffffff81c01838 T __SCT__tp_func_tcp_send_reset
+ffffffff81c01840 T __SCT__tp_func_tcp_receive_reset
+ffffffff81c01848 T __SCT__tp_func_tcp_destroy_sock
+ffffffff81c01850 T __SCT__tp_func_tcp_rcv_space_adjust
+ffffffff81c01858 T __SCT__tp_func_tcp_retransmit_synack
+ffffffff81c01860 T __SCT__tp_func_tcp_probe
+ffffffff81c01868 T __SCT__tp_func_tcp_bad_csum
+ffffffff81c01870 T __SCT__tp_func_tcp_cong_state_set
+ffffffff81c01878 T __SCT__tp_func_fib_table_lookup
+ffffffff81c01880 T __SCT__tp_func_qdisc_dequeue
+ffffffff81c01888 T __SCT__tp_func_qdisc_enqueue
+ffffffff81c01890 T __SCT__tp_func_qdisc_reset
+ffffffff81c01898 T __SCT__tp_func_qdisc_destroy
+ffffffff81c018a0 T __SCT__tp_func_qdisc_create
+ffffffff81c018a8 T __SCT__tp_func_br_fdb_add
+ffffffff81c018b0 T __SCT__tp_func_br_fdb_external_learn_add
+ffffffff81c018b8 T __SCT__tp_func_fdb_delete
+ffffffff81c018c0 T __SCT__tp_func_br_fdb_update
+ffffffff81c018c8 T __SCT__tp_func_neigh_create
+ffffffff81c018d0 T __SCT__tp_func_neigh_update
+ffffffff81c018d8 T __SCT__tp_func_neigh_update_done
+ffffffff81c018e0 T __SCT__tp_func_neigh_timer_handler
+ffffffff81c018e8 T __SCT__tp_func_neigh_event_send_done
+ffffffff81c018f0 T __SCT__tp_func_neigh_event_send_dead
+ffffffff81c018f8 T __SCT__tp_func_neigh_cleanup_and_release
+ffffffff81c01900 T __SCT__tp_func_netlink_extack
+ffffffff81c01908 T __SCT__tp_func_fib6_table_lookup
+ffffffff81c01910 T __SCT__tp_func_virtio_transport_alloc_pkt
+ffffffff81c01918 T __SCT__tp_func_virtio_transport_recv_pkt
+ffffffff81c01920 T __SCT__tp_func_ma_op
+ffffffff81c01928 T __SCT__tp_func_ma_read
+ffffffff81c01930 T __SCT__tp_func_ma_write
+ffffffff81c01938 T __indirect_thunk_end
+ffffffff81c01938 T __indirect_thunk_start
+ffffffff81c01938 T __static_call_text_end
+ffffffff81c01938 T _etext
 ffffffff81e00000 d SHIFT_MASK
 ffffffff81e00000 D __start_rodata
 ffffffff81e00010 d ALL_F
@@ -35017,7011 +35186,15642 @@
 ffffffff81e059a8 D kexec_purgatory_size
 ffffffff81e059b0 d msr_save_dmi_table
 ffffffff81e05c60 d msr_save_cpu_table
-ffffffff81e05cf6 D kernel_config_data
-ffffffff81e0aafb D kernel_config_data_end
-ffffffff81e0ab03 D kernel_headers_data
-ffffffff81e28eb3 D kernel_headers_data_end
-ffffffff81e28eb8 D kallsyms_offsets
-ffffffff81e4d6c0 D kallsyms_relative_base
-ffffffff81e4d6c8 D kallsyms_num_syms
-ffffffff81e4d6d0 D kallsyms_names
-ffffffff81ec52c8 D kallsyms_markers
-ffffffff81ec5518 D kallsyms_token_table
-ffffffff81ec58a0 D kallsyms_token_index
-ffffffff81ec5aa0 d SHUF_MASK
-ffffffff81ec5aa0 d SHUF_MASK
-ffffffff81ec5ab0 d mld2_all_mcr
-ffffffff81ec5ac0 d kyber_batch_size
-ffffffff81ec5ad0 d nd_inc_seq.next
-ffffffff81ec5ad0 d nd_inc_seq.next
-ffffffff81ec5ae0 d hswep_uncore_irp_ctrs
-ffffffff81ec5af0 d acpi_protocol_lengths
-ffffffff81ec5b10 d enc
-ffffffff81ec5b40 d pirq_finali_get.irqmap
-ffffffff81ec5b50 d new_state
-ffffffff81ec5b60 d memcg1_events
-ffffffff81ec5b70 d ONE
-ffffffff81ec5b70 d ONE
-ffffffff81ec5b70 d dec
-ffffffff81ec5b80 d ivbep_uncore_irp_ctls
-ffffffff81ec5b90 d pcix_bus_speed
-ffffffff81ec5ba0 d MASK1
-ffffffff81ec5bb0 d MASK2
-ffffffff81ec5bd0 d pirq_ali_set.irqmap
-ffffffff81ec5c30 d ext4_type_by_mode
-ffffffff81ec5c30 d fs_ftype_by_dtype
-ffffffff81ec5c40 d F_MIN_MASK
-ffffffff81ec5c50 d _SHUF_00BA
-ffffffff81ec5c50 d _SHUF_00BA
-ffffffff81ec5c70 d TWOONE
-ffffffff81ec5c70 d TWOONE
-ffffffff81ec5c80 d XMM_QWORD_BSWAP
-ffffffff81ec5c80 d XMM_QWORD_BSWAP
-ffffffff81ec5c90 d prio2band
-ffffffff81ec5ca0 d POLY
-ffffffff81ec5ca0 d POLY
-ffffffff81ec5cb0 d kyber_depth
-ffffffff81ec5cc0 d __uuid_parse.si
-ffffffff81ec5ce0 d ONEf
-ffffffff81ec5cf0 d lbr_spec_map
-ffffffff81ec5d20 d ioprio_class_to_prio
-ffffffff81ec5d50 d _SHUF_DC00
-ffffffff81ec5d50 d _SHUF_DC00
-ffffffff81ec5d60 d cache_type_map
-ffffffff81ec5d70 d acpi_gbl_hex_to_ascii
-ffffffff81ec5d90 d PSHUFFLE_BYTE_FLIP_MASK
-ffffffff81ec5d90 d PSHUFFLE_BYTE_FLIP_MASK
-ffffffff81ec5d90 d PSHUFFLE_BYTE_FLIP_MASK
-ffffffff81ec5da0 d pirq_ali_get.irqmap
-ffffffff81ec5db0 d ivbep_uncore_irp_ctrs
-ffffffff81ec5dc0 d POLY2
-ffffffff81ec5dd0 d pirq_finali_set.irqmap
-ffffffff81ec5e00 d K256
-ffffffff81ec5e00 d K256
-ffffffff81ec5e00 d K256
-ffffffff81ec5f00 d K256
-ffffffff81ec6100 d ZSTD_estimateCCtxSize_internal.srcSizeTiers
-ffffffff81ec6140 d PSHUFFLE_BYTE_FLIP_MASK
-ffffffff81ec61a0 d ZSTD_fcs_fieldSize
-ffffffff81ec61e0 d fixed_range_blocks
-ffffffff81ec6200 d audit_ops
-ffffffff81ec6220 d ZSTD_overlapCopy8.dec64table
-ffffffff81ec6260 d nlmsg_tcpdiag_perms
-ffffffff81ec6280 d LZ4_decompress_generic.dec64table
-ffffffff81ec62a0 d get_reg_offset_16.regoff1
-ffffffff81ec6300 d _SHUF_00BA
-ffffffff81ec6340 d _SHUF_DC00
-ffffffff81ec6360 d dw8250_rs485_supported
-ffffffff81ec6380 d PSHUFFLE_BYTE_FLIP_MASK
-ffffffff81ec63a0 d ZSTD_overlapCopy8.dec32table
-ffffffff81ec63c0 d pnp_assign_irq.xtab
-ffffffff81ec6400 d MASK_YMM_LO
-ffffffff81ec6420 d LZ4_decompress_generic.inc32table
-ffffffff81ec6440 d get_reg_offset_16.regoff2
-ffffffff81ec6460 d FSE_normalizeCount.rtbTable
-ffffffff81ec6480 d assocs
-ffffffff81ec64a0 d ZSTD_did_fieldSize
-ffffffff81ec6500 d bcj_ia64.branch_table
-ffffffff81ec65c0 d K512
-ffffffff81ec65c0 d K512
-ffffffff81ec65c0 d K512
-ffffffff81ec6cf9 d .str.293.llvm.10036450558225303816
-ffffffff81ec6d6b d .str.24.llvm.10036450558225303816
-ffffffff81ec6d70 d .str.29.llvm.10036450558225303816
-ffffffff81ec6d74 d .str.76.llvm.10036450558225303816
-ffffffff81ec6d7a d .str.100.llvm.10036450558225303816
-ffffffff81ec6d81 d .str.144.llvm.10036450558225303816
-ffffffff81ec6d8c d .str.175.llvm.10036450558225303816
-ffffffff81ec6d94 d .str.186.llvm.10036450558225303816
-ffffffff81ec6d9d d .str.213.llvm.10036450558225303816
-ffffffff81ec6da1 d .str.248.llvm.10036450558225303816
-ffffffff81ec6db2 d .str.285.llvm.10036450558225303816
-ffffffff81ec7933 d .str.138.llvm.5938111673735109013
-ffffffff81ec7cb4 d .str.28.llvm.3737345636867362837
-ffffffff81ec7ccc d .str.96.llvm.3737345636867362837
-ffffffff81ec7ce9 d .str.98.llvm.3737345636867362837
-ffffffff81ec7cf4 d .str.132.llvm.3737345636867362837
-ffffffff81ec7dfe d .str.10.llvm.13859926886492732677
-ffffffff81ec7e06 d .str.18.llvm.13859926886492732677
-ffffffff81ec7e0b d .str.90.llvm.13859926886492732677
-ffffffff81ec88fe d .str.22.llvm.5965983425263956140
-ffffffff81ec890d d .str.28.llvm.5965983425263956140
-ffffffff81ec893a d .str.81.llvm.5938111673735109013
-ffffffff81ec8947 d .str.132.llvm.5938111673735109013
-ffffffff81ec8950 d .str.188.llvm.5938111673735109013
-ffffffff81ec8969 d .str.193.llvm.5938111673735109013
-ffffffff81ec8987 d .str.230.llvm.5938111673735109013
-ffffffff81ec8993 d .str.240.llvm.5938111673735109013
-ffffffff81ec8d22 d .str.24.llvm.16652187581604470142
-ffffffff81ec8d2a d .str.38.llvm.16652187581604470142
-ffffffff81ec96a0 d .str.llvm.3910776340376622018
-ffffffff81eca725 d .str.2.llvm.7322257829810352664
-ffffffff81ecaa90 d .str.7.llvm.10036450558225303816
-ffffffff81ecaa94 d .str.85.llvm.10036450558225303816
-ffffffff81ecaa9b d .str.93.llvm.10036450558225303816
-ffffffff81ecaa9f d .str.132.llvm.10036450558225303816
-ffffffff81ecaaa6 d .str.171.llvm.10036450558225303816
-ffffffff81ecaaaa d .str.173.llvm.10036450558225303816
-ffffffff81ecaaae d .str.193.llvm.10036450558225303816
-ffffffff81ecaab5 d .str.236.llvm.10036450558225303816
-ffffffff81ecaac0 d .str.291.llvm.10036450558225303816
-ffffffff81ecae15 d .str.16.llvm.13859926886492732677
-ffffffff81ecae1c d .str.10.llvm.14578701573217428013
-ffffffff81ecaebb d .str.1.llvm.70612449467024088
-ffffffff81ecb6d8 d .str.40.llvm.13859926886492732677
-ffffffff81ecb6eb d .str.49.llvm.13859926886492732677
-ffffffff81ecb6f6 d .str.55.llvm.13859926886492732677
-ffffffff81ecb73d d .str.11.llvm.13859926886492732677
-ffffffff81ecb84f d .str.7.llvm.3737345636867362837
-ffffffff81ecb863 d .str.24.llvm.13859926886492732677
-ffffffff81ecb8c7 d .str.17.llvm.13859926886492732677
-ffffffff81ecb8d2 d .str.19.llvm.13859926886492732677
-ffffffff81ecc49d d .str.45.llvm.5938111673735109013
-ffffffff81ecc4a7 d .str.76.llvm.5938111673735109013
-ffffffff81ecc4b2 d .str.87.llvm.5938111673735109013
-ffffffff81ecc4c0 d .str.89.llvm.5938111673735109013
-ffffffff81ecc4cb d .str.136.llvm.5938111673735109013
-ffffffff81ecc4d2 d .str.140.llvm.5938111673735109013
-ffffffff81ecc4d9 d .str.219.llvm.5938111673735109013
-ffffffff81ecc4e8 d .str.250.llvm.5938111673735109013
-ffffffff81ecc684 d .str.2.llvm.7181964455342960733
-ffffffff81ecc8b6 d .str.4.llvm.9574308037829731951
-ffffffff81ecc8bf d .str.19.llvm.16652187581604470142
-ffffffff81ecd04e d .str.llvm.2142385460000878250
-ffffffff81ecd333 d .str.llvm.526792861259136917
-ffffffff81ecdb11 d .str.23.llvm.2833527440845793170
-ffffffff81ecdb24 d .str.27.llvm.2833527440845793170
-ffffffff81ece536 d .str.12.llvm.3555903745249184706
-ffffffff81ece72a d .str.44.llvm.17836075378730734924
-ffffffff81ece79c d .str.10.llvm.10036450558225303816
-ffffffff81ece7a0 d .str.35.llvm.10036450558225303816
-ffffffff81ece7a8 d .str.46.llvm.10036450558225303816
-ffffffff81ece7b4 d .str.118.llvm.10036450558225303816
-ffffffff81ece7b8 d .str.136.llvm.10036450558225303816
-ffffffff81ece7bc d .str.139.llvm.10036450558225303816
-ffffffff81ece7c3 d .str.145.llvm.10036450558225303816
-ffffffff81ece7ca d .str.165.llvm.10036450558225303816
-ffffffff81ece7ce d .str.190.llvm.10036450558225303816
-ffffffff81ece7d7 d .str.195.llvm.10036450558225303816
-ffffffff81ece7e5 d .str.208.llvm.10036450558225303816
-ffffffff81ece7ea d .str.219.llvm.10036450558225303816
-ffffffff81ece7f6 d .str.220.llvm.10036450558225303816
-ffffffff81ece7fa d .str.229.llvm.10036450558225303816
-ffffffff81ece806 d .str.230.llvm.10036450558225303816
-ffffffff81ece812 d .str.252.llvm.10036450558225303816
-ffffffff81ece81b d .str.254.llvm.10036450558225303816
-ffffffff81ece825 d .str.271.llvm.10036450558225303816
-ffffffff81ece831 d .str.298.llvm.10036450558225303816
-ffffffff81ece838 d .str.313.llvm.10036450558225303816
-ffffffff81ecf542 d .str.65.llvm.13859926886492732677
-ffffffff81ecf71a d .str.12.llvm.3737345636867362837
-ffffffff81ecf725 d .str.20.llvm.3737345636867362837
-ffffffff81ecf73b d .str.44.llvm.3737345636867362837
-ffffffff81ecf757 d .str.75.llvm.3737345636867362837
-ffffffff81ecf764 d .str.92.llvm.3737345636867362837
-ffffffff81ecf771 d .str.95.llvm.3737345636867362837
-ffffffff81ecf783 d .str.104.llvm.3737345636867362837
-ffffffff81ecf792 d .str.136.llvm.3737345636867362837
-ffffffff81ecf7a0 d .str.148.llvm.3737345636867362837
-ffffffff81ecf82e d .str.30.llvm.13859926886492732677
-ffffffff81ed01a0 d .str.17.llvm.5938111673735109013
-ffffffff81ed01a8 d .str.31.llvm.5938111673735109013
-ffffffff81ed01b0 d .str.256.llvm.5938111673735109013
-ffffffff81ed01bd d .str.257.llvm.5938111673735109013
-ffffffff81ed01c8 d .str.269.llvm.5938111673735109013
-ffffffff81ed05cd d .str.41.llvm.16652187581604470142
-ffffffff81ed0a9a d .str.llvm.18030808463967220952
-ffffffff81ed27b4 d .str.60.llvm.10036450558225303816
-ffffffff81ed27ba d .str.106.llvm.10036450558225303816
-ffffffff81ed27c1 d .str.115.llvm.10036450558225303816
-ffffffff81ed27cf d .str.125.llvm.10036450558225303816
-ffffffff81ed27d3 d .str.135.llvm.10036450558225303816
-ffffffff81ed27d3 d .str.9.llvm.1863568750661663964
-ffffffff81ed27d7 d .str.251.llvm.10036450558225303816
-ffffffff81ed27e7 d .str.296.llvm.10036450558225303816
-ffffffff81ed27eb d .str.307.llvm.10036450558225303816
-ffffffff81ed27fc d .str.6.llvm.1863568750661663964
-ffffffff81ed2eca d .str.3.llvm.16138215867792224083
-ffffffff81ed347c d .str.63.llvm.13859926886492732677
-ffffffff81ed3616 d .str.29.llvm.13859926886492732677
-ffffffff81ed3622 d .str.35.llvm.3737345636867362837
-ffffffff81ed3644 d .str.61.llvm.3737345636867362837
-ffffffff81ed3650 d .str.64.llvm.3737345636867362837
-ffffffff81ed3660 d .str.69.llvm.3737345636867362837
-ffffffff81ed366b d .str.76.llvm.3737345636867362837
-ffffffff81ed4280 d .str.24.llvm.5965983425263956140
-ffffffff81ed42a3 d .str.9.llvm.5938111673735109013
-ffffffff81ed42ab d .str.131.llvm.5938111673735109013
-ffffffff81ed42b4 d .str.139.llvm.5938111673735109013
-ffffffff81ed42bb d .str.158.llvm.5938111673735109013
-ffffffff81ed42c6 d .str.198.llvm.5938111673735109013
-ffffffff81ed57f4 d .str.7.llvm.2833527440845793170
-ffffffff81ed5803 d .str.25.llvm.2833527440845793170
-ffffffff81ed5ea3 d .str.llvm.11236680327676305523
-ffffffff81ed679c d .str.150.llvm.10036450558225303816
-ffffffff81ed6853 d .str.80.llvm.10036450558225303816
-ffffffff81ed6858 d .str.108.llvm.10036450558225303816
-ffffffff81ed6863 d .str.111.llvm.10036450558225303816
-ffffffff81ed686e d .str.151.llvm.10036450558225303816
-ffffffff81ed6874 d .str.155.llvm.10036450558225303816
-ffffffff81ed6881 d .str.279.llvm.10036450558225303816
-ffffffff81ed73a1 d .str.46.llvm.13859926886492732677
-ffffffff81ed74ee d .str.16.llvm.3737345636867362837
-ffffffff81ed74ff d .str.110.llvm.3737345636867362837
-ffffffff81ed7510 d .str.130.llvm.3737345636867362837
-ffffffff81ed7601 d .str.86.llvm.13859926886492732677
-ffffffff81ed760a d .str.96.llvm.13859926886492732677
-ffffffff81ed8153 d .str.1.llvm.5938111673735109013
-ffffffff81ed815e d .str.51.llvm.5938111673735109013
-ffffffff81ed816a d .str.61.llvm.5938111673735109013
-ffffffff81ed8171 d .str.63.llvm.5938111673735109013
-ffffffff81ed8178 d .str.97.llvm.5938111673735109013
-ffffffff81ed8181 d .str.167.llvm.5938111673735109013
-ffffffff81ed8186 d .str.173.llvm.5938111673735109013
-ffffffff81ed819b d .str.199.llvm.5938111673735109013
-ffffffff81ed81a2 d .str.218.llvm.5938111673735109013
-ffffffff81ed81b5 d .str.220.llvm.5938111673735109013
-ffffffff81ed81c5 d .str.251.llvm.5938111673735109013
-ffffffff81ed8279 d .str.7.llvm.7181964455342960733
-ffffffff81ed8589 d .str.8.llvm.16652187581604470142
-ffffffff81ed8599 d .str.40.llvm.16652187581604470142
-ffffffff81ed939b d k_cur.cur_chars
-ffffffff81ed9723 d .str.9.llvm.13749472731363974932
-ffffffff81ed9a01 d .str.9.llvm.8179560354648126384
-ffffffff81eda80f d .str.4.llvm.8111555963742068270
-ffffffff81edabc3 d .str.34.llvm.10036450558225303816
-ffffffff81edabcc d .str.41.llvm.10036450558225303816
-ffffffff81edabd4 d .str.54.llvm.10036450558225303816
-ffffffff81edabdf d .str.72.llvm.10036450558225303816
-ffffffff81edabe3 d .str.88.llvm.10036450558225303816
-ffffffff81edabe9 d .str.90.llvm.10036450558225303816
-ffffffff81edabfc d .str.126.llvm.10036450558225303816
-ffffffff81edac04 d .str.128.llvm.10036450558225303816
-ffffffff81edac0f d .str.159.llvm.10036450558225303816
-ffffffff81edac16 d .str.203.llvm.10036450558225303816
-ffffffff81edac21 d .str.234.llvm.10036450558225303816
-ffffffff81edac28 d .str.263.llvm.10036450558225303816
-ffffffff81edac3c d .str.323.llvm.10036450558225303816
-ffffffff81edac40 d .str.10.llvm.1863568750661663964
-ffffffff81edb00f d .str.31.llvm.13859926886492732677
-ffffffff81edb597 d .str.46.llvm.17836075378730734924
-ffffffff81edb944 d .str.69.llvm.13859926886492732677
-ffffffff81edbb18 d .str.118.llvm.3737345636867362837
-ffffffff81edbb30 d .str.149.llvm.3737345636867362837
-ffffffff81edbbd6 d .str.26.llvm.13859926886492732677
-ffffffff81edc2ae d .str.123.llvm.5938111673735109013
-ffffffff81edc42f d .str.2.llvm.642446843317415093
-ffffffff81edc486 d .str.12.llvm.5965983425263956140
-ffffffff81edc4ef d .str.32.llvm.5938111673735109013
-ffffffff81edc4f7 d .str.54.llvm.5938111673735109013
-ffffffff81edc506 d .str.57.llvm.5938111673735109013
-ffffffff81edc50c d .str.96.llvm.5938111673735109013
-ffffffff81edc515 d .str.114.llvm.5938111673735109013
-ffffffff81edc522 d .str.144.llvm.5938111673735109013
-ffffffff81edc52b d .str.162.llvm.5938111673735109013
-ffffffff81edc52f d .str.203.llvm.5938111673735109013
-ffffffff81edc533 d .str.235.llvm.5938111673735109013
-ffffffff81edc892 d .str.12.llvm.16652187581604470142
-ffffffff81edc8a1 d .str.45.llvm.16652187581604470142
-ffffffff81eddba4 d .str.17.llvm.2833527440845793170
-ffffffff81ede73e d .str.8.llvm.10036450558225303816
-ffffffff81ede742 d .str.37.llvm.10036450558225303816
-ffffffff81ede745 d .str.39.llvm.10036450558225303816
-ffffffff81ede74b d .str.68.llvm.10036450558225303816
-ffffffff81ede755 d .str.73.llvm.10036450558225303816
-ffffffff81ede759 d .str.148.llvm.10036450558225303816
-ffffffff81ede764 d .str.192.llvm.10036450558225303816
-ffffffff81ede76c d .str.206.llvm.10036450558225303816
-ffffffff81ede775 d .str.215.llvm.10036450558225303816
-ffffffff81ede779 d .str.225.llvm.10036450558225303816
-ffffffff81ede783 d .str.284.llvm.10036450558225303816
-ffffffff81ede788 d .str.290.llvm.10036450558225303816
-ffffffff81ede791 d .str.306.llvm.10036450558225303816
-ffffffff81ede799 d .str.308.llvm.10036450558225303816
-ffffffff81ede7a5 d .str.317.llvm.10036450558225303816
-ffffffff81edec74 d .str.12.llvm.14578701573217428013
-ffffffff81edef9b d trunc_msg
-ffffffff81edf5a8 d .str.48.llvm.13859926886492732677
-ffffffff81edf7a2 d .str.37.llvm.3737345636867362837
-ffffffff81edf7ab d .str.57.llvm.3737345636867362837
-ffffffff81edf7b2 d .str.100.llvm.3737345636867362837
-ffffffff81edf7c1 d .str.101.llvm.3737345636867362837
-ffffffff81edf7cb d .str.103.llvm.3737345636867362837
-ffffffff81edf7dd d .str.119.llvm.3737345636867362837
-ffffffff81edf7f5 d .str.129.llvm.3737345636867362837
-ffffffff81edf804 d .str.141.llvm.3737345636867362837
-ffffffff81edf8cf d .str.88.llvm.13859926886492732677
-ffffffff81edf8da d .str.97.llvm.13859926886492732677
-ffffffff81ee02dd d .str.5.llvm.5965983425263956140
-ffffffff81ee02e9 d .str.8.llvm.5965983425263956140
-ffffffff81ee02f8 d .str.25.llvm.5965983425263956140
-ffffffff81ee030b d .str.6.llvm.5938111673735109013
-ffffffff81ee031b d .str.16.llvm.5938111673735109013
-ffffffff81ee0326 d .str.94.llvm.5938111673735109013
-ffffffff81ee0330 d .str.118.llvm.5938111673735109013
-ffffffff81ee0339 d .str.210.llvm.5938111673735109013
-ffffffff81ee0346 d .str.216.llvm.5938111673735109013
-ffffffff81ee034e d .str.217.llvm.5938111673735109013
-ffffffff81ee0352 d .str.252.llvm.5938111673735109013
-ffffffff81ee0453 d .str.3.llvm.7181964455342960733
-ffffffff81ee14e1 d .str.9.llvm.2833527440845793170
-ffffffff81ee14f0 d .str.24.llvm.2833527440845793170
-ffffffff81ee1e90 d .str.101.llvm.5938111673735109013
-ffffffff81ee1e90 d .str.71.llvm.13859926886492732677
-ffffffff81ee1edb d .str.5.llvm.10036450558225303816
-ffffffff81ee2375 d .str.33.llvm.10036450558225303816
-ffffffff81ee237c d .str.42.llvm.10036450558225303816
-ffffffff81ee2381 d .str.58.llvm.10036450558225303816
-ffffffff81ee238e d .str.110.llvm.10036450558225303816
-ffffffff81ee2396 d .str.164.llvm.10036450558225303816
-ffffffff81ee239b d .str.204.llvm.10036450558225303816
-ffffffff81ee23a1 d .str.221.llvm.10036450558225303816
-ffffffff81ee23a5 d .str.247.llvm.10036450558225303816
-ffffffff81ee23a9 d .str.304.llvm.10036450558225303816
-ffffffff81ee2fa8 d .str.36.llvm.13859926886492732677
-ffffffff81ee2fbc d .str.67.llvm.13859926886492732677
-ffffffff81ee3215 d .str.18.llvm.3737345636867362837
-ffffffff81ee3224 d .str.19.llvm.3737345636867362837
-ffffffff81ee3238 d .str.21.llvm.3737345636867362837
-ffffffff81ee3249 d .str.48.llvm.3737345636867362837
-ffffffff81ee3264 d .str.63.llvm.3737345636867362837
-ffffffff81ee3273 d .str.67.llvm.3737345636867362837
-ffffffff81ee3285 d .str.78.llvm.3737345636867362837
-ffffffff81ee3290 d .str.102.llvm.3737345636867362837
-ffffffff81ee3299 d .str.124.llvm.3737345636867362837
-ffffffff81ee32a9 d .str.128.llvm.3737345636867362837
-ffffffff81ee3397 d .str.80.llvm.13859926886492732677
-ffffffff81ee3fa0 d .str.56.llvm.5938111673735109013
-ffffffff81ee3fab d .str.11.llvm.5938111673735109013
-ffffffff81ee3fbb d .str.15.llvm.5938111673735109013
-ffffffff81ee3fc0 d .str.35.llvm.5938111673735109013
-ffffffff81ee3fc7 d .str.40.llvm.5938111673735109013
-ffffffff81ee3fcf d .str.115.llvm.5938111673735109013
-ffffffff81ee3fd4 d .str.121.llvm.5938111673735109013
-ffffffff81ee3fe5 d .str.125.llvm.5938111673735109013
-ffffffff81ee3ff1 d .str.143.llvm.5938111673735109013
-ffffffff81ee3ffa d .str.146.llvm.5938111673735109013
-ffffffff81ee4004 d .str.185.llvm.5938111673735109013
-ffffffff81ee4014 d .str.197.llvm.5938111673735109013
-ffffffff81ee402a d .str.207.llvm.5938111673735109013
-ffffffff81ee492e d .str.23.llvm.18345722538901306362
-ffffffff81ee5430 d .str.8.llvm.2833527440845793170
-ffffffff81ee543f d .str.21.llvm.2833527440845793170
-ffffffff81ee5e14 d .str.26.llvm.10036450558225303816
-ffffffff81ee6195 d .str.2.llvm.10036450558225303816
-ffffffff81ee6198 d .str.116.llvm.10036450558225303816
-ffffffff81ee619d d .str.140.llvm.10036450558225303816
-ffffffff81ee61ac d .str.161.llvm.10036450558225303816
-ffffffff81ee61b5 d .str.287.llvm.10036450558225303816
-ffffffff81ee61c5 d .str.318.llvm.10036450558225303816
-ffffffff81ee649b d .str.18.llvm.14578701573217428013
-ffffffff81ee6b6e d .str.39.llvm.13859926886492732677
-ffffffff81ee6b77 d .str.44.llvm.13859926886492732677
-ffffffff81ee6cf5 d .str.34.llvm.3737345636867362837
-ffffffff81ee6d1f d .str.15.llvm.3737345636867362837
-ffffffff81ee6d2e d .str.27.llvm.3737345636867362837
-ffffffff81ee6d47 d .str.68.llvm.3737345636867362837
-ffffffff81ee6d5a d .str.84.llvm.3737345636867362837
-ffffffff81ee6e33 d .str.91.llvm.13859926886492732677
-ffffffff81ee7248 d .str.129.llvm.5938111673735109013
-ffffffff81ee7946 d .str.16.llvm.5965983425263956140
-ffffffff81ee7958 d .str.17.llvm.5965983425263956140
-ffffffff81ee7975 d .str.26.llvm.5938111673735109013
-ffffffff81ee797d d .str.44.llvm.5938111673735109013
-ffffffff81ee798b d .str.53.llvm.5938111673735109013
-ffffffff81ee799a d .str.142.llvm.5938111673735109013
-ffffffff81ee79a1 d .str.180.llvm.5938111673735109013
-ffffffff81ee79b5 d .str.204.llvm.5938111673735109013
-ffffffff81ee79ba d .str.236.llvm.5938111673735109013
-ffffffff81ee7d12 d .str.18.llvm.16652187581604470142
-ffffffff81ee8530 d .str.19.llvm.18345722538901306362
-ffffffff81ee8f39 d .str.16.llvm.2833527440845793170
-ffffffff81ee8f49 d .str.22.llvm.2833527440845793170
-ffffffff81ee960a d .str.1.llvm.8864556368208849951
-ffffffff81ee9ac7 d .str.llvm.10036450558225303816
-ffffffff81ee9ccd d .str.149.llvm.10036450558225303816
-ffffffff81ee9d0c d .str.86.llvm.10036450558225303816
-ffffffff81ee9d13 d .str.113.llvm.10036450558225303816
-ffffffff81ee9d19 d .str.162.llvm.10036450558225303816
-ffffffff81ee9d24 d .str.185.llvm.10036450558225303816
-ffffffff81ee9d2d d .str.222.llvm.10036450558225303816
-ffffffff81ee9d32 d .str.228.llvm.10036450558225303816
-ffffffff81ee9d40 d .str.232.llvm.10036450558225303816
-ffffffff81ee9d50 d .str.278.llvm.10036450558225303816
-ffffffff81ee9d57 d .str.305.llvm.10036450558225303816
-ffffffff81ee9d63 d .str.3.llvm.1863568750661663964
-ffffffff81eeadae d .str.47.llvm.3737345636867362837
-ffffffff81eeadc3 d .str.70.llvm.3737345636867362837
-ffffffff81eeadd0 d .str.116.llvm.3737345636867362837
-ffffffff81eebbfe d .str.1.llvm.5965983425263956140
-ffffffff81eebc16 d .str.43.llvm.5938111673735109013
-ffffffff81eebc23 d .str.122.llvm.5938111673735109013
-ffffffff81eebc2e d .str.156.llvm.5938111673735109013
-ffffffff81eebc3d d .str.159.llvm.5938111673735109013
-ffffffff81eebc50 d .str.191.llvm.5938111673735109013
-ffffffff81eebc5b d .str.205.llvm.5938111673735109013
-ffffffff81eebc67 d .str.206.llvm.5938111673735109013
-ffffffff81eebc97 d .str.6.llvm.12064840473626432479
-ffffffff81eebf29 d .str.7.llvm.9574308037829731951
-ffffffff81eeda35 d .str.5.llvm.714033031531569554
-ffffffff81eee002 d .str.2.llvm.2674452769887003429
-ffffffff81eee002 d .str.4.llvm.997005082218000707
-ffffffff81eee002 d .str.8.llvm.1863568750661663964
-ffffffff81eee0af d .str.183.llvm.10036450558225303816
-ffffffff81eee373 d .str.14.llvm.10036450558225303816
-ffffffff81eee378 d .str.97.llvm.10036450558225303816
-ffffffff81eee37c d .str.127.llvm.10036450558225303816
-ffffffff81eee389 d .str.141.llvm.10036450558225303816
-ffffffff81eee393 d .str.198.llvm.10036450558225303816
-ffffffff81eee3a5 d .str.257.llvm.10036450558225303816
-ffffffff81eee3b4 d .str.268.llvm.10036450558225303816
-ffffffff81eee3bd d .str.302.llvm.10036450558225303816
-ffffffff81eee3cd d .str.309.llvm.10036450558225303816
-ffffffff81eef1b6 d .str.43.llvm.13859926886492732677
-ffffffff81eef1c1 d .str.50.llvm.13859926886492732677
-ffffffff81eef1ce d .str.56.llvm.13859926886492732677
-ffffffff81eef1dc d .str.58.llvm.13859926886492732677
-ffffffff81eef3b0 d .str.6.llvm.3737345636867362837
-ffffffff81eef3c6 d .str.90.llvm.3737345636867362837
-ffffffff81eef3d2 d .str.93.llvm.3737345636867362837
-ffffffff81eef489 d .str.93.llvm.13859926886492732677
-ffffffff81eef4e3 d .str.14.llvm.13859926886492732677
-ffffffff81eef4e9 d .str.34.llvm.13859926886492732677
-ffffffff81eeff00 d .str.10.llvm.5965983425263956140
-ffffffff81eeff1f d .str.27.llvm.5965983425263956140
-ffffffff81eeff78 d .str.18.llvm.5938111673735109013
-ffffffff81eeff80 d .str.19.llvm.5938111673735109013
-ffffffff81eeff88 d .str.23.llvm.5938111673735109013
-ffffffff81eeff91 d .str.93.llvm.5938111673735109013
-ffffffff81eeff9d d .str.116.llvm.5938111673735109013
-ffffffff81eeffa5 d .str.119.llvm.5938111673735109013
-ffffffff81eeffb5 d .str.128.llvm.5938111673735109013
-ffffffff81eeffbb d .str.150.llvm.5938111673735109013
-ffffffff81eeffc6 d .str.181.llvm.5938111673735109013
-ffffffff81eeffdd d .str.222.llvm.5938111673735109013
-ffffffff81eeffe8 d .str.246.llvm.5938111673735109013
-ffffffff81ef0318 d .str.1.llvm.9574308037829731951
-ffffffff81ef0321 d .str.5.llvm.9574308037829731951
-ffffffff81ef0339 d .str.25.llvm.16652187581604470142
-ffffffff81ef0341 d .str.39.llvm.16652187581604470142
-ffffffff81ef14ba d .str.5.llvm.2833527440845793170
-ffffffff81ef2363 d .str.12.llvm.1863568750661663964
-ffffffff81ef2363 d .str.55.llvm.10036450558225303816
-ffffffff81ef236d d .str.78.llvm.10036450558225303816
-ffffffff81ef2372 d .str.11.llvm.1863568750661663964
-ffffffff81ef2372 d .str.142.llvm.10036450558225303816
-ffffffff81ef2380 d .str.179.llvm.10036450558225303816
-ffffffff81ef2385 d .str.191.llvm.10036450558225303816
-ffffffff81ef238c d .str.238.llvm.10036450558225303816
-ffffffff81ef2390 d .str.245.llvm.10036450558225303816
-ffffffff81ef239c d .str.294.llvm.10036450558225303816
-ffffffff81ef23ae d .str.301.llvm.10036450558225303816
-ffffffff81ef23b4 d .str.324.llvm.10036450558225303816
-ffffffff81ef30dc d .str.271.llvm.5938111673735109013
-ffffffff81ef324a d .str.11.llvm.3737345636867362837
-ffffffff81ef3254 d .str.30.llvm.3737345636867362837
-ffffffff81ef326b d .str.150.llvm.3737345636867362837
-ffffffff81ef3388 d .str.76.llvm.13859926886492732677
-ffffffff81ef35af d .str.10.llvm.17123673701578408723
-ffffffff81ef3e7b d .str.20.llvm.5938111673735109013
-ffffffff81ef3e83 d .str.24.llvm.5938111673735109013
-ffffffff81ef3e8c d .str.36.llvm.5938111673735109013
-ffffffff81ef3e96 d .str.37.llvm.5938111673735109013
-ffffffff81ef3ea0 d .str.66.llvm.5938111673735109013
-ffffffff81ef3eb0 d .str.161.llvm.5938111673735109013
-ffffffff81ef3ec2 d .str.200.llvm.5938111673735109013
-ffffffff81ef3ec7 d .str.213.llvm.5938111673735109013
-ffffffff81ef40e2 d .str.2.llvm.16652187581604470142
-ffffffff81ef40e9 d .str.30.llvm.16652187581604470142
-ffffffff81ef5330 d .str.28.llvm.2833527440845793170
-ffffffff81ef6074 d .str.llvm.16302409588099365232
-ffffffff81ef6140 d .str.44.llvm.10036450558225303816
-ffffffff81ef6148 d .str.47.llvm.10036450558225303816
-ffffffff81ef6155 d .str.50.llvm.10036450558225303816
-ffffffff81ef6162 d .str.57.llvm.10036450558225303816
-ffffffff81ef616c d .str.71.llvm.10036450558225303816
-ffffffff81ef6173 d .str.99.llvm.10036450558225303816
-ffffffff81ef6177 d .str.104.llvm.10036450558225303816
-ffffffff81ef617e d .str.174.llvm.10036450558225303816
-ffffffff81ef6184 d .str.197.llvm.10036450558225303816
-ffffffff81ef6192 d .str.235.llvm.10036450558225303816
-ffffffff81ef619e d .str.246.llvm.10036450558225303816
-ffffffff81ef61ac d .str.255.llvm.10036450558225303816
-ffffffff81ef61b3 d .str.2.llvm.1863568750661663964
-ffffffff81ef61b3 d .str.320.llvm.10036450558225303816
-ffffffff81ef6694 d .str.llvm.11205866996379258926
-ffffffff81ef6b44 d .str.22.llvm.13859926886492732677
-ffffffff81ef7015 d .str.13.llvm.3737345636867362837
-ffffffff81ef7021 d .str.36.llvm.3737345636867362837
-ffffffff81ef7033 d .str.88.llvm.3737345636867362837
-ffffffff81ef704a d .str.120.llvm.3737345636867362837
-ffffffff81ef7062 d .str.145.llvm.3737345636867362837
-ffffffff81ef70e3 d .str.79.llvm.13859926886492732677
-ffffffff81ef70ed d .str.92.llvm.13859926886492732677
-ffffffff81ef7cf2 d .str.33.llvm.5938111673735109013
-ffffffff81ef7cfe d .str.41.llvm.5938111673735109013
-ffffffff81ef7d08 d .str.83.llvm.5938111673735109013
-ffffffff81ef7d17 d .str.84.llvm.5938111673735109013
-ffffffff81ef7d1d d .str.141.llvm.5938111673735109013
-ffffffff81ef7d24 d .str.179.llvm.5938111673735109013
-ffffffff81ef800e d .str.6.llvm.16652187581604470142
-ffffffff81ef8017 d .str.16.llvm.16652187581604470142
-ffffffff81ef870d d .str.24.llvm.18345722538901306362
-ffffffff81ef9e1c d .str.21.llvm.13859926886492732677
-ffffffff81ef9f77 d .str.103.llvm.10036450558225303816
-ffffffff81ef9f7b d .str.129.llvm.10036450558225303816
-ffffffff81ef9f81 d .str.177.llvm.10036450558225303816
-ffffffff81ef9f88 d .str.256.llvm.10036450558225303816
-ffffffff81ef9f8f d .str.264.llvm.10036450558225303816
-ffffffff81ef9f98 d .str.314.llvm.10036450558225303816
-ffffffff81ef9fa3 d .str.319.llvm.10036450558225303816
-ffffffff81efa44e d .str.14.llvm.14578701573217428013
-ffffffff81efa454 d .str.19.llvm.14578701573217428013
-ffffffff81efaee4 d .str.43.llvm.3737345636867362837
-ffffffff81efaef4 d .str.73.llvm.3737345636867362837
-ffffffff81efaefb d .str.74.llvm.3737345636867362837
-ffffffff81efaf06 d .str.89.llvm.3737345636867362837
-ffffffff81efaf12 d .str.117.llvm.3737345636867362837
-ffffffff81efaf29 d .str.135.llvm.3737345636867362837
-ffffffff81efaf41 d .str.137.llvm.3737345636867362837
-ffffffff81efb036 d .str.78.llvm.13859926886492732677
-ffffffff81efb03f d .str.81.llvm.13859926886492732677
-ffffffff81efb04a d .str.95.llvm.13859926886492732677
-ffffffff81efb079 d .str.1.llvm.5012294349769297491
-ffffffff81efb083 d .str.4.llvm.5012294349769297491
-ffffffff81efb558 d .str.llvm.3182768809261060338
-ffffffff81efba02 d .str.5.llvm.8396475704076135201
-ffffffff81efbbd0 d .str.13.llvm.5938111673735109013
-ffffffff81efbbdf d .str.29.llvm.5938111673735109013
-ffffffff81efbbe6 d .str.42.llvm.5938111673735109013
-ffffffff81efbbef d .str.69.llvm.5938111673735109013
-ffffffff81efbbf9 d .str.82.llvm.5938111673735109013
-ffffffff81efbc02 d .str.110.llvm.5938111673735109013
-ffffffff81efbc09 d .str.174.llvm.5938111673735109013
-ffffffff81efbc14 d .str.211.llvm.5938111673735109013
-ffffffff81efbc1e d .str.223.llvm.5938111673735109013
-ffffffff81efbc2b d .str.254.llvm.5938111673735109013
-ffffffff81efbc36 d .str.276.llvm.5938111673735109013
-ffffffff81efbd02 d .str.5.llvm.7181964455342960733
-ffffffff81efbf30 d .str.27.llvm.16652187581604470142
-ffffffff81efc7bb d .str.18.llvm.18345722538901306362
-ffffffff81efd3a0 d .str.26.llvm.2833527440845793170
-ffffffff81efdc5e d .str.4.llvm.10036450558225303816
-ffffffff81efe13d d .str.3.llvm.10036450558225303816
-ffffffff81efe141 d .str.40.llvm.10036450558225303816
-ffffffff81efe14a d .str.43.llvm.10036450558225303816
-ffffffff81efe150 d .str.49.llvm.10036450558225303816
-ffffffff81efe154 d .str.61.llvm.10036450558225303816
-ffffffff81efe160 d .str.117.llvm.10036450558225303816
-ffffffff81efe164 d .str.152.llvm.10036450558225303816
-ffffffff81efe172 d .str.172.llvm.10036450558225303816
-ffffffff81efe176 d .str.265.llvm.10036450558225303816
-ffffffff81efe180 d .str.316.llvm.10036450558225303816
-ffffffff81efe184 d .str.llvm.1863568750661663964
-ffffffff81efe4fb d .str.13.llvm.14578701573217428013
-ffffffff81efedc7 d .str.99.llvm.5938111673735109013
-ffffffff81efedcf d .str.59.llvm.13859926886492732677
-ffffffff81efef9a d .str.115.llvm.3737345636867362837
-ffffffff81eff1c9 d .str.13.llvm.13859926886492732677
-ffffffff81eff223 d .str.5.llvm.5012294349769297491
-ffffffff81effd2b d .str.6.llvm.5965983425263956140
-ffffffff81effd3d d .str.21.llvm.5965983425263956140
-ffffffff81effd6f d .str.4.llvm.5938111673735109013
-ffffffff81effd7d d .str.59.llvm.5938111673735109013
-ffffffff81effd8d d .str.111.llvm.5938111673735109013
-ffffffff81effd95 d .str.196.llvm.5938111673735109013
-ffffffff81effda9 d .str.201.llvm.5938111673735109013
-ffffffff81effdb4 d .str.268.llvm.5938111673735109013
-ffffffff81f00117 d .str.35.llvm.16652187581604470142
-ffffffff81f00120 d .str.36.llvm.16652187581604470142
-ffffffff81f00626 d .str.16.llvm.1691433165837039950
-ffffffff81f00d90 d __func__.nvdimm_volatile_region_create.llvm.2848778896877633854
-ffffffff81f00f6a d .str.8.llvm.8179560354648126384
-ffffffff81f01c25 d .str.38.llvm.10036450558225303816
-ffffffff81f01c2e d .str.48.llvm.10036450558225303816
-ffffffff81f01c31 d .str.63.llvm.10036450558225303816
-ffffffff81f01c3c d .str.82.llvm.10036450558225303816
-ffffffff81f01c41 d .str.102.llvm.10036450558225303816
-ffffffff81f01c49 d .str.216.llvm.10036450558225303816
-ffffffff81f01c54 d .str.226.llvm.10036450558225303816
-ffffffff81f01c5f d .str.258.llvm.10036450558225303816
-ffffffff81f01c66 d .str.299.llvm.10036450558225303816
-ffffffff81f01c6a d .str.310.llvm.10036450558225303816
-ffffffff81f020d7 d .str.20.llvm.9761402500010473794
-ffffffff81f028a1 d .str.61.llvm.13859926886492732677
-ffffffff81f029cf d .str.274.llvm.5938111673735109013
-ffffffff81f02ba5 d .str.3.llvm.3737345636867362837
-ffffffff81f02bb3 d .str.49.llvm.3737345636867362837
-ffffffff81f02bc8 d .str.66.llvm.3737345636867362837
-ffffffff81f02bd9 d .str.99.llvm.3737345636867362837
-ffffffff81f02c9a d .str.9.llvm.13859926886492732677
-ffffffff81f02ca1 d .str.100.llvm.13859926886492732677
-ffffffff81f038ef d .str.29.llvm.5965983425263956140
-ffffffff81f038ff d .str.38.llvm.5938111673735109013
-ffffffff81f0390d d .str.70.llvm.5938111673735109013
-ffffffff81f03915 d .str.208.llvm.5938111673735109013
-ffffffff81f0391a d .str.215.llvm.5938111673735109013
-ffffffff81f03925 d .str.224.llvm.5938111673735109013
-ffffffff81f0392c d .str.263.llvm.5938111673735109013
-ffffffff81f0393a d .str.277.llvm.5938111673735109013
-ffffffff81f03949 d .str.279.llvm.5938111673735109013
-ffffffff81f048dd d .str.3.llvm.17839109793716951103
-ffffffff81f04dae d .str.4.llvm.2833527440845793170
-ffffffff81f04db2 d .str.18.llvm.2833527440845793170
-ffffffff81f04dd9 d .str.llvm.8044566205871360426
-ffffffff81f04fc2 d .str.8.llvm.14330798830013879553
-ffffffff81f055e8 d .str.llvm.5965983425263956140
-ffffffff81f05a22 d .str.22.llvm.10036450558225303816
-ffffffff81f05a27 d .str.77.llvm.10036450558225303816
-ffffffff81f05a2b d .str.84.llvm.10036450558225303816
-ffffffff81f05a2f d .str.95.llvm.10036450558225303816
-ffffffff81f05a36 d .str.167.llvm.10036450558225303816
-ffffffff81f05a3b d .str.169.llvm.10036450558225303816
-ffffffff81f05a40 d .str.211.llvm.10036450558225303816
-ffffffff81f05a44 d .str.270.llvm.10036450558225303816
-ffffffff81f05a4d d .str.326.llvm.10036450558225303816
-ffffffff81f05fb5 d .str.11.llvm.14578701573217428013
-ffffffff81f06778 d .str.41.llvm.13859926886492732677
-ffffffff81f06986 d .str.72.llvm.3737345636867362837
-ffffffff81f06995 d .str.91.llvm.3737345636867362837
-ffffffff81f06a52 d .str.87.llvm.13859926886492732677
-ffffffff81f06a90 d .str.3.llvm.5012294349769297491
-ffffffff81f07669 d .str.9.llvm.5965983425263956140
-ffffffff81f076cc d .str.12.llvm.5938111673735109013
-ffffffff81f076d8 d .str.71.llvm.5938111673735109013
-ffffffff81f076e1 d .str.75.llvm.5938111673735109013
-ffffffff81f076ec d .str.79.llvm.5938111673735109013
-ffffffff81f076f5 d .str.92.llvm.5938111673735109013
-ffffffff81f076fd d .str.145.llvm.5938111673735109013
-ffffffff81f07704 d .str.147.llvm.5938111673735109013
-ffffffff81f0770f d .str.176.llvm.5938111673735109013
-ffffffff81f0771e d .str.192.llvm.5938111673735109013
-ffffffff81f07727 d .str.225.llvm.5938111673735109013
-ffffffff81f07733 d .str.244.llvm.5938111673735109013
-ffffffff81f0773e d .str.260.llvm.5938111673735109013
-ffffffff81f07b69 d .str.3.llvm.16652187581604470142
-ffffffff81f07b6f d .str.4.llvm.16652187581604470142
-ffffffff81f07b7a d .str.37.llvm.16652187581604470142
-ffffffff81f08e15 d .str.1.llvm.2833527440845793170
-ffffffff81f08e1b d .str.14.llvm.2833527440845793170
-ffffffff81f09423 d .str.1.llvm.11236680327676305523
-ffffffff81f09755 d .str.1.llvm.12049738637075140058
-ffffffff81f097c8 d .str.1.llvm.7322257829810352664
-ffffffff81f0985d d .str.102.llvm.5938111673735109013
-ffffffff81f0985d d .str.72.llvm.13859926886492732677
-ffffffff81f09961 d .str.107.llvm.5938111673735109013
-ffffffff81f09d4c d .str.45.llvm.10036450558225303816
-ffffffff81f09d56 d .str.62.llvm.10036450558225303816
-ffffffff81f09d5e d .str.91.llvm.10036450558225303816
-ffffffff81f09d62 d .str.92.llvm.10036450558225303816
-ffffffff81f09d68 d .str.96.llvm.10036450558225303816
-ffffffff81f09d73 d .str.112.llvm.10036450558225303816
-ffffffff81f09d77 d .str.122.llvm.10036450558225303816
-ffffffff81f09d7c d .str.156.llvm.10036450558225303816
-ffffffff81f09d80 d .str.178.llvm.10036450558225303816
-ffffffff81f09d84 d .str.253.llvm.10036450558225303816
-ffffffff81f09d8c d .str.276.llvm.10036450558225303816
-ffffffff81f09d90 d .str.297.llvm.10036450558225303816
-ffffffff81f09d9b d .str.321.llvm.10036450558225303816
-ffffffff81f0a138 d .str.17.llvm.14578701573217428013
-ffffffff81f0a3da d .str.166.llvm.5938111673735109013
-ffffffff81f0ab15 d .str.38.llvm.13859926886492732677
-ffffffff81f0ab22 d .str.45.llvm.13859926886492732677
-ffffffff81f0ab2d d .str.54.llvm.13859926886492732677
-ffffffff81f0ab41 d .str.62.llvm.13859926886492732677
-ffffffff81f0ad9e d .str.8.llvm.3737345636867362837
-ffffffff81f0adb2 d .str.38.llvm.3737345636867362837
-ffffffff81f0adc5 d .str.41.llvm.3737345636867362837
-ffffffff81f0add7 d .str.50.llvm.3737345636867362837
-ffffffff81f0adec d .str.51.llvm.3737345636867362837
-ffffffff81f0adfc d .str.54.llvm.3737345636867362837
-ffffffff81f0ae0a d .str.65.llvm.3737345636867362837
-ffffffff81f0ae19 d .str.97.llvm.3737345636867362837
-ffffffff81f0ae37 d .str.122.llvm.3737345636867362837
-ffffffff81f0ae4f d .str.126.llvm.3737345636867362837
-ffffffff81f0ae69 d .str.144.llvm.3737345636867362837
-ffffffff81f0ae7d d .str.151.llvm.3737345636867362837
-ffffffff81f0af07 d .str.73.llvm.13859926886492732677
-ffffffff81f0af0c d .str.74.llvm.13859926886492732677
-ffffffff81f0af13 d .str.75.llvm.13859926886492732677
-ffffffff81f0b9b6 d .str.3.llvm.5965983425263956140
-ffffffff81f0b9cb d .str.4.llvm.5965983425263956140
-ffffffff81f0b9e4 d .str.7.llvm.5965983425263956140
-ffffffff81f0ba0e d .str.90.llvm.5938111673735109013
-ffffffff81f0ba14 d .str.95.llvm.5938111673735109013
-ffffffff81f0ba1e d .str.117.llvm.5938111673735109013
-ffffffff81f0ba2a d .str.195.llvm.5938111673735109013
-ffffffff81f0ba47 d .str.261.llvm.5938111673735109013
-ffffffff81f0ba4e d .str.280.llvm.5938111673735109013
-ffffffff81f0bb7a d .str.llvm.10832948479470173249
-ffffffff81f0bdc5 d .str.3.llvm.9574308037829731951
-ffffffff81f0be25 d .str.5.llvm.16652187581604470142
-ffffffff81f0be31 d .str.21.llvm.16652187581604470142
-ffffffff81f0bf25 d .str.llvm.18055006762818712642
-ffffffff81f0d1c0 d .str.llvm.9757328158468781712
-ffffffff81f0d1c7 d .str.5.llvm.9757328158468781712
-ffffffff81f0d689 d .str.llvm.13859402143853076122
-ffffffff81f0dab1 d .str.202.llvm.10036450558225303816
-ffffffff81f0dfd7 d .str.16.llvm.10036450558225303816
-ffffffff81f0dfdd d .str.53.llvm.10036450558225303816
-ffffffff81f0dfe6 d .str.79.llvm.10036450558225303816
-ffffffff81f0dfea d .str.83.llvm.10036450558225303816
-ffffffff81f0dfef d .str.158.llvm.10036450558225303816
-ffffffff81f0dff7 d .str.196.llvm.10036450558225303816
-ffffffff81f0e005 d .str.242.llvm.10036450558225303816
-ffffffff81f0e00a d .str.282.llvm.10036450558225303816
-ffffffff81f0e015 d .str.300.llvm.10036450558225303816
-ffffffff81f0e3b0 d .str.16.llvm.14578701573217428013
-ffffffff81f0ec12 d .str.53.llvm.3737345636867362837
-ffffffff81f0ec2a d .str.94.llvm.3737345636867362837
-ffffffff81f0ec38 d .str.139.llvm.3737345636867362837
-ffffffff81f0ec52 d .str.140.llvm.3737345636867362837
-ffffffff81f0ecb9 d .str.83.llvm.13859926886492732677
-ffffffff81f0f6aa d .str.18.llvm.5965983425263956140
-ffffffff81f0f730 d .str.88.llvm.5938111673735109013
-ffffffff81f0f738 d .str.154.llvm.5938111673735109013
-ffffffff81f0f740 d .str.163.llvm.5938111673735109013
-ffffffff81f0f7fc d .str.6.llvm.7181964455342960733
-ffffffff81f0f9cd d .str.1.llvm.16652187581604470142
-ffffffff81f0f9d3 d .str.47.llvm.16652187581604470142
-ffffffff81f106d8 d .str.llvm.10075264112113527747
-ffffffff81f1076a d .str.62.llvm.2848778896877633854
-ffffffff81f116e7 d .str.25.llvm.10036450558225303816
-ffffffff81f11746 d .str.9.llvm.10036450558225303816
-ffffffff81f1174b d .str.21.llvm.10036450558225303816
-ffffffff81f1174f d .str.189.llvm.10036450558225303816
-ffffffff81f11758 d .str.201.llvm.10036450558225303816
-ffffffff81f1175f d .str.217.llvm.10036450558225303816
-ffffffff81f1176e d .str.272.llvm.10036450558225303816
-ffffffff81f11c88 d .str.49.llvm.5938111673735109013
-ffffffff81f11d5c d .str.25.llvm.4630098836650264748
-ffffffff81f121d0 d .str.84.llvm.13859926886492732677
-ffffffff81f1239f d .str.64.llvm.13859926886492732677
-ffffffff81f125ce d .str.1.llvm.4668271086945465988
-ffffffff81f12637 d .str.10.llvm.3737345636867362837
-ffffffff81f12640 d .str.26.llvm.3737345636867362837
-ffffffff81f12659 d .str.32.llvm.3737345636867362837
-ffffffff81f12663 d .str.114.llvm.3737345636867362837
-ffffffff81f12677 d .str.133.llvm.3737345636867362837
-ffffffff81f12686 d .str.146.llvm.3737345636867362837
-ffffffff81f12722 d .str.82.llvm.13859926886492732677
-ffffffff81f134fe d .str.19.llvm.5965983425263956140
-ffffffff81f13513 d .str.26.llvm.5965983425263956140
-ffffffff81f13577 d .str.8.llvm.5938111673735109013
-ffffffff81f13582 d .str.148.llvm.5938111673735109013
-ffffffff81f1358c d .str.178.llvm.5938111673735109013
-ffffffff81f135a3 d .str.194.llvm.5938111673735109013
-ffffffff81f135ba d .str.214.llvm.5938111673735109013
-ffffffff81f135c8 d .str.227.llvm.5938111673735109013
-ffffffff81f135d8 d .str.229.llvm.5938111673735109013
-ffffffff81f135e3 d .str.264.llvm.5938111673735109013
-ffffffff81f139a1 d .str.14.llvm.16652187581604470142
-ffffffff81f139ae d .str.28.llvm.16652187581604470142
-ffffffff81f139b6 d .str.44.llvm.16652187581604470142
-ffffffff81f139bf d .str.46.llvm.16652187581604470142
-ffffffff81f13ea1 d .str.20.llvm.18345722538901306362
-ffffffff81f14c42 d .str.13.llvm.2833527440845793170
-ffffffff81f152c9 d .str.3.llvm.3078323922797927899
-ffffffff81f15ab2 d .str.12.llvm.10036450558225303816
-ffffffff81f15ab6 d .str.13.llvm.10036450558225303816
-ffffffff81f15aba d .str.20.llvm.10036450558225303816
-ffffffff81f15aba d .str.llvm.14280149293377004373
-ffffffff81f15abf d .str.23.llvm.10036450558225303816
-ffffffff81f15ac3 d .str.67.llvm.10036450558225303816
-ffffffff81f15ac7 d .str.133.llvm.10036450558225303816
-ffffffff81f15ad2 d .str.146.llvm.10036450558225303816
-ffffffff81f15ad7 d .str.181.llvm.10036450558225303816
-ffffffff81f15ae2 d .str.259.llvm.10036450558225303816
-ffffffff81f15ae7 d .str.269.llvm.10036450558225303816
-ffffffff81f15aeb d .str.275.llvm.10036450558225303816
-ffffffff81f15afd d .str.286.llvm.10036450558225303816
-ffffffff81f15b0d d .str.322.llvm.10036450558225303816
-ffffffff81f15b19 d .str.327.llvm.10036450558225303816
-ffffffff81f169aa d .str.71.llvm.3737345636867362837
-ffffffff81f169b8 d .str.83.llvm.3737345636867362837
-ffffffff81f169c7 d .str.142.llvm.3737345636867362837
-ffffffff81f16b67 d .str.17.llvm.3294496444446440601
-ffffffff81f175c9 d .str.2.llvm.5938111673735109013
-ffffffff81f175d8 d .str.27.llvm.5938111673735109013
-ffffffff81f175e0 d .str.98.llvm.5938111673735109013
-ffffffff81f175e6 d .str.104.llvm.5938111673735109013
-ffffffff81f175ee d .str.113.llvm.5938111673735109013
-ffffffff81f175f6 d .str.151.llvm.5938111673735109013
-ffffffff81f17603 d .str.155.llvm.5938111673735109013
-ffffffff81f1760a d .str.169.llvm.5938111673735109013
-ffffffff81f1760f d .str.175.llvm.5938111673735109013
-ffffffff81f1761b d .str.177.llvm.5938111673735109013
-ffffffff81f1762a d .str.184.llvm.5938111673735109013
-ffffffff81f17636 d .str.189.llvm.5938111673735109013
-ffffffff81f1764a d .str.231.llvm.5938111673735109013
-ffffffff81f182a0 d .str.17.llvm.18345722538901306362
-ffffffff81f18c7d d .str.12.llvm.2833527440845793170
-ffffffff81f197fd d .str.30.llvm.10036450558225303816
-ffffffff81f19805 d .str.66.llvm.10036450558225303816
-ffffffff81f19814 d .str.109.llvm.10036450558225303816
-ffffffff81f19818 d .str.153.llvm.10036450558225303816
-ffffffff81f19823 d .str.209.llvm.10036450558225303816
-ffffffff81f19827 d .str.231.llvm.10036450558225303816
-ffffffff81f1982c d .str.262.llvm.10036450558225303816
-ffffffff81f19831 d .str.273.llvm.10036450558225303816
-ffffffff81f1983a d .str.281.llvm.10036450558225303816
-ffffffff81f1983f d .str.1.llvm.1863568750661663964
-ffffffff81f19e39 d .str.1.llvm.4835704885480306601
-ffffffff81f1a67a d .str.33.llvm.3737345636867362837
-ffffffff81f1a688 d .str.42.llvm.3737345636867362837
-ffffffff81f1a6a6 d .str.56.llvm.3737345636867362837
-ffffffff81f1a6c4 d .str.79.llvm.3737345636867362837
-ffffffff81f1a6d0 d .str.86.llvm.3737345636867362837
-ffffffff81f1a6de d .str.105.llvm.3737345636867362837
-ffffffff81f1a6f4 d .str.131.llvm.3737345636867362837
-ffffffff81f1ae7f d .str.llvm.4773943801090845047
-ffffffff81f1b5ab d .str.13.llvm.5965983425263956140
-ffffffff81f1b5c4 d .str.23.llvm.5965983425263956140
-ffffffff81f1b5e6 d .str.10.llvm.5938111673735109013
-ffffffff81f1b5f2 d .str.47.llvm.5938111673735109013
-ffffffff81f1b601 d .str.55.llvm.5938111673735109013
-ffffffff81f1b60d d .str.72.llvm.5938111673735109013
-ffffffff81f1b617 d .str.130.llvm.5938111673735109013
-ffffffff81f1b61b d .str.134.llvm.5938111673735109013
-ffffffff81f1b625 d .str.221.llvm.5938111673735109013
-ffffffff81f1b635 d .str.232.llvm.5938111673735109013
-ffffffff81f1b641 d .str.267.llvm.5938111673735109013
-ffffffff81f1b6d0 d .str.llvm.7181964455342960733
-ffffffff81f1b94f d .str.9.llvm.16652187581604470142
-ffffffff81f1b957 d .str.48.llvm.16652187581604470142
-ffffffff81f1c858 d .str.6.llvm.2833527440845793170
-ffffffff81f1d471 d .str.1.llvm.10036450558225303816
-ffffffff81f1d475 d .str.52.llvm.10036450558225303816
-ffffffff81f1d479 d .str.59.llvm.10036450558225303816
-ffffffff81f1d485 d .str.65.llvm.10036450558225303816
-ffffffff81f1d494 d .str.134.llvm.10036450558225303816
-ffffffff81f1d4a0 d .str.157.llvm.10036450558225303816
-ffffffff81f1d4a5 d .str.244.llvm.10036450558225303816
-ffffffff81f1d4b0 d .str.280.llvm.10036450558225303816
-ffffffff81f1d4b5 d .str.7.llvm.1863568750661663964
-ffffffff81f1d9d9 d .str.4.llvm.1936834131351336716
-ffffffff81f1dbd9 d .str.212.llvm.5938111673735109013
-ffffffff81f1e2ef d .str.llvm.4668271086945465988
-ffffffff81f1e385 d .str.23.llvm.3737345636867362837
-ffffffff81f1e396 d .str.55.llvm.3737345636867362837
-ffffffff81f1e3a9 d .str.58.llvm.3737345636867362837
-ffffffff81f1e3b1 d .str.77.llvm.3737345636867362837
-ffffffff81f1e3b9 d .str.121.llvm.3737345636867362837
-ffffffff81f1e3d3 d .str.125.llvm.3737345636867362837
-ffffffff81f1e503 d .str.99.llvm.13859926886492732677
-ffffffff81f1efd3 d .str.126.llvm.5938111673735109013
-ffffffff81f1efdc d .str.153.llvm.5938111673735109013
-ffffffff81f1efe2 d .str.242.llvm.5938111673735109013
-ffffffff81f1efee d .str.247.llvm.5938111673735109013
-ffffffff81f1f376 d .str.13.llvm.16652187581604470142
-ffffffff81f1f37d d .str.15.llvm.16652187581604470142
-ffffffff81f1f949 d .str.15.llvm.18345722538901306362
-ffffffff81f20097 d .str.llvm.18283442251517041340
-ffffffff81f20097 d .str.llvm.9282635206396556747
-ffffffff81f2132a d .str.6.llvm.10036450558225303816
-ffffffff81f2132e d .str.18.llvm.10036450558225303816
-ffffffff81f21336 d .str.19.llvm.10036450558225303816
-ffffffff81f2133a d .str.36.llvm.10036450558225303816
-ffffffff81f21341 d .str.56.llvm.10036450558225303816
-ffffffff81f21346 d .str.69.llvm.10036450558225303816
-ffffffff81f2134d d .str.119.llvm.10036450558225303816
-ffffffff81f21354 d .str.123.llvm.10036450558225303816
-ffffffff81f21358 d .str.124.llvm.10036450558225303816
-ffffffff81f21363 d .str.194.llvm.10036450558225303816
-ffffffff81f2136b d .str.311.llvm.10036450558225303816
-ffffffff81f2196d d task_index_to_char.state_char
-ffffffff81f2196d d task_index_to_char.state_char
-ffffffff81f2196d d task_index_to_char.state_char
-ffffffff81f2196d d task_index_to_char.state_char
-ffffffff81f22135 d .str.35.llvm.13859926886492732677
-ffffffff81f22143 d .str.37.llvm.13859926886492732677
-ffffffff81f22158 d .str.42.llvm.13859926886492732677
-ffffffff81f22161 d .str.47.llvm.13859926886492732677
-ffffffff81f2216f d .str.66.llvm.13859926886492732677
-ffffffff81f223cd d .str.9.llvm.3737345636867362837
-ffffffff81f223e3 d .str.22.llvm.3737345636867362837
-ffffffff81f223f4 d .str.24.llvm.3737345636867362837
-ffffffff81f224b5 d .str.32.llvm.13859926886492732677
-ffffffff81f22a18 d .str.13.llvm.3182768809261060338
-ffffffff81f22f82 d .str.15.llvm.5965983425263956140
-ffffffff81f22f91 d .str.28.llvm.5938111673735109013
-ffffffff81f22f98 d .str.168.llvm.5938111673735109013
-ffffffff81f22fa0 d .str.182.llvm.5938111673735109013
-ffffffff81f22fb5 d .str.183.llvm.5938111673735109013
-ffffffff81f22fca d .str.209.llvm.5938111673735109013
-ffffffff81f22fd6 d .str.238.llvm.5938111673735109013
-ffffffff81f22fe2 d .str.266.llvm.5938111673735109013
-ffffffff81f232e3 d .str.2.llvm.9574308037829731951
-ffffffff81f23400 d .str.llvm.16652187581604470142
-ffffffff81f23404 d .str.7.llvm.16652187581604470142
-ffffffff81f23410 d .str.20.llvm.16652187581604470142
-ffffffff81f2341d d .str.29.llvm.16652187581604470142
-ffffffff81f23423 d .str.34.llvm.16652187581604470142
-ffffffff81f2576f d .str.121.llvm.10036450558225303816
-ffffffff81f25773 d .str.160.llvm.10036450558225303816
-ffffffff81f2577d d .str.170.llvm.10036450558225303816
-ffffffff81f25785 d .str.188.llvm.10036450558225303816
-ffffffff81f2578e d .str.312.llvm.10036450558225303816
-ffffffff81f26001 d .str.llvm.580029301833864819
-ffffffff81f26534 d .str.53.llvm.13859926886492732677
-ffffffff81f2679d d .str.40.llvm.3737345636867362837
-ffffffff81f267af d .str.80.llvm.3737345636867362837
-ffffffff81f267b8 d .str.112.llvm.3737345636867362837
-ffffffff81f26860 d .str.45.llvm.17836075378730734924
-ffffffff81f26944 d .str.23.llvm.13859926886492732677
-ffffffff81f2694e d .str.89.llvm.13859926886492732677
-ffffffff81f27307 d .str.14.llvm.5965983425263956140
-ffffffff81f27335 d .str.7.llvm.5938111673735109013
-ffffffff81f27342 d .str.22.llvm.5938111673735109013
-ffffffff81f27349 d .str.50.llvm.5938111673735109013
-ffffffff81f27352 d .str.133.llvm.5938111673735109013
-ffffffff81f2735b d .str.171.llvm.5938111673735109013
-ffffffff81f2735f d .str.190.llvm.5938111673735109013
-ffffffff81f2736b d .str.237.llvm.5938111673735109013
-ffffffff81f27376 d .str.245.llvm.5938111673735109013
-ffffffff81f27381 d .str.258.llvm.5938111673735109013
-ffffffff81f276ef d .str.11.llvm.16652187581604470142
-ffffffff81f276f7 d .str.32.llvm.16652187581604470142
-ffffffff81f28274 d .str.llvm.11709016535296654066
-ffffffff81f285b9 d .str.15.llvm.2833527440845793170
-ffffffff81f28cee d .str.272.llvm.5938111673735109013
-ffffffff81f290ad d .str.114.llvm.10036450558225303816
-ffffffff81f290b9 d .str.187.llvm.10036450558225303816
-ffffffff81f290c0 d .str.207.llvm.10036450558225303816
-ffffffff81f290ca d .str.274.llvm.10036450558225303816
-ffffffff81f290d4 d .str.288.llvm.10036450558225303816
-ffffffff81f290dd d .str.295.llvm.10036450558225303816
-ffffffff81f290e2 d .str.315.llvm.10036450558225303816
-ffffffff81f290e7 d .str.328.llvm.10036450558225303816
-ffffffff81f297fe d .str.22.llvm.16652187581604470142
-ffffffff81f29937 d .str.llvm.5074490897747803762
-ffffffff81f29d18 d .str.60.llvm.13859926886492732677
-ffffffff81f29ec7 d .str.29.llvm.3737345636867362837
-ffffffff81f29edf d .str.52.llvm.3737345636867362837
-ffffffff81f29ef3 d .str.62.llvm.3737345636867362837
-ffffffff81f29f01 d .str.107.llvm.3737345636867362837
-ffffffff81f29f15 d .str.108.llvm.3737345636867362837
-ffffffff81f29f2d d .str.134.llvm.3737345636867362837
-ffffffff81f29f43 d .str.138.llvm.3737345636867362837
-ffffffff81f29fca d .str.77.llvm.13859926886492732677
-ffffffff81f2aaab d .str.2.llvm.5965983425263956140
-ffffffff81f2aabe d .str.20.llvm.5965983425263956140
-ffffffff81f2aac8 d .str.48.llvm.5938111673735109013
-ffffffff81f2aada d .str.62.llvm.5938111673735109013
-ffffffff81f2aadf d .str.109.llvm.5938111673735109013
-ffffffff81f2aae4 d .str.120.llvm.5938111673735109013
-ffffffff81f2aaf0 d .str.160.llvm.5938111673735109013
-ffffffff81f2aafa d .str.172.llvm.5938111673735109013
-ffffffff81f2aafe d .str.226.llvm.5938111673735109013
-ffffffff81f2ab03 d .str.243.llvm.5938111673735109013
-ffffffff81f2ab10 d .str.248.llvm.5938111673735109013
-ffffffff81f2ab1c d .str.255.llvm.5938111673735109013
-ffffffff81f2abc7 d .str.4.llvm.7181964455342960733
-ffffffff81f2adb7 d .str.33.llvm.16652187581604470142
-ffffffff81f2adbb d .str.42.llvm.16652187581604470142
-ffffffff81f2adc4 d .str.43.llvm.16652187581604470142
-ffffffff81f2b55d d .str.22.llvm.18345722538901306362
-ffffffff81f2ba40 d __func__.nvdimm_pmem_region_create.llvm.2848778896877633854
-ffffffff81f2c058 d .str.1.llvm.7809056837580489629
-ffffffff81f2cc37 d .str.15.llvm.10036450558225303816
-ffffffff81f2cc37 d .str.94.llvm.13859926886492732677
-ffffffff81f2cc3b d .str.87.llvm.10036450558225303816
-ffffffff81f2cc42 d .str.89.llvm.10036450558225303816
-ffffffff81f2cc49 d .str.98.llvm.10036450558225303816
-ffffffff81f2cc50 d .str.107.llvm.10036450558225303816
-ffffffff81f2cc58 d .str.120.llvm.10036450558225303816
-ffffffff81f2cc5c d .str.168.llvm.10036450558225303816
-ffffffff81f2cc61 d .str.176.llvm.10036450558225303816
-ffffffff81f2cc6a d .str.184.llvm.10036450558225303816
-ffffffff81f2cc73 d .str.210.llvm.10036450558225303816
-ffffffff81f2cc7a d .str.218.llvm.10036450558225303816
-ffffffff81f2cc82 d .str.223.llvm.10036450558225303816
-ffffffff81f2cc8b d .str.227.llvm.10036450558225303816
-ffffffff81f2cc97 d .str.249.llvm.10036450558225303816
-ffffffff81f2cc9c d .str.260.llvm.10036450558225303816
-ffffffff81f2ccaa d .str.261.llvm.10036450558225303816
-ffffffff81f2ccb8 d .str.267.llvm.10036450558225303816
-ffffffff81f2ccc0 d .str.283.llvm.10036450558225303816
-ffffffff81f2ccc9 d .str.325.llvm.10036450558225303816
-ffffffff81f2dc61 d .str.57.llvm.13859926886492732677
-ffffffff81f2de65 d .str.4.llvm.3737345636867362837
-ffffffff81f2de7b d .str.25.llvm.3737345636867362837
-ffffffff81f2de93 d .str.45.llvm.3737345636867362837
-ffffffff81f2de9e d .str.85.llvm.3737345636867362837
-ffffffff81f2deae d .str.106.llvm.3737345636867362837
-ffffffff81f2dec1 d .str.111.llvm.3737345636867362837
-ffffffff81f2e0c8 d .str.12.llvm.13859926886492732677
-ffffffff81f2e0d3 d .str.25.llvm.13859926886492732677
-ffffffff81f2ed3c d .str.11.llvm.5965983425263956140
-ffffffff81f2ed78 d .str.30.llvm.5938111673735109013
-ffffffff81f2ed7e d .str.39.llvm.5938111673735109013
-ffffffff81f2ed89 d .str.67.llvm.5938111673735109013
-ffffffff81f2ed9a d .str.80.llvm.5938111673735109013
-ffffffff81f2eda3 d .str.106.llvm.5938111673735109013
-ffffffff81f2edaa d .str.149.llvm.5938111673735109013
-ffffffff81f2edb7 d .str.165.llvm.5938111673735109013
-ffffffff81f2edc2 d .str.234.llvm.5938111673735109013
-ffffffff81f2edcd d .str.241.llvm.5938111673735109013
-ffffffff81f2edd8 d .str.259.llvm.5938111673735109013
-ffffffff81f2ede3 d .str.278.llvm.5938111673735109013
-ffffffff81f2ef5a d .str.1.llvm.7181964455342960733
-ffffffff81f2f1e4 d .str.31.llvm.16652187581604470142
-ffffffff81f306ac d __func__.net_ratelimit.llvm.1904350924662093295
-ffffffff81f30f00 d .str.2.llvm.2833527440845793170
-ffffffff81f30f99 d .str.27.llvm.10036450558225303816
-ffffffff81f30f99 d .str.4.llvm.1863568750661663964
-ffffffff81f30f9c d .str.28.llvm.10036450558225303816
-ffffffff81f30fa1 d .str.74.llvm.10036450558225303816
-ffffffff81f30fa5 d .str.147.llvm.10036450558225303816
-ffffffff81f30fa9 d .str.154.llvm.10036450558225303816
-ffffffff81f30fae d .str.182.llvm.10036450558225303816
-ffffffff81f30fb3 d .str.224.llvm.10036450558225303816
-ffffffff81f30fbd d .str.292.llvm.10036450558225303816
-ffffffff81f30fc8 d .str.303.llvm.10036450558225303816
-ffffffff81f314b6 d .str.15.llvm.14578701573217428013
-ffffffff81f3160c d .str.1.llvm.1755043206215399025
-ffffffff81f31719 d .str.llvm.2207631519674298359
-ffffffff81f31b58 d .str.15.llvm.13859926886492732677
-ffffffff81f31ed5 d .str.2.llvm.5012294349769297491
-ffffffff81f31f13 d .str.5.llvm.3737345636867362837
-ffffffff81f31f27 d .str.127.llvm.3737345636867362837
-ffffffff81f31f3a d .str.143.llvm.3737345636867362837
-ffffffff81f31f45 d .str.147.llvm.3737345636867362837
-ffffffff81f32b03 d .str.46.llvm.5938111673735109013
-ffffffff81f32b0c d .str.58.llvm.5938111673735109013
-ffffffff81f32b19 d .str.64.llvm.5938111673735109013
-ffffffff81f32b20 d .str.68.llvm.5938111673735109013
-ffffffff81f32b2e d .str.100.llvm.5938111673735109013
-ffffffff81f32b34 d .str.124.llvm.5938111673735109013
-ffffffff81f32b3d d .str.135.llvm.5938111673735109013
-ffffffff81f32b47 d .str.137.llvm.5938111673735109013
-ffffffff81f32b4c d .str.157.llvm.5938111673735109013
-ffffffff81f32b5a d .str.164.llvm.5938111673735109013
-ffffffff81f32b64 d .str.186.llvm.5938111673735109013
-ffffffff81f32b7e d .str.202.llvm.5938111673735109013
-ffffffff81f32e24 d .str.10.llvm.16652187581604470142
-ffffffff81f338cd d .str.2.llvm.2848778896877633854
-ffffffff81f33c24 d .str.10.llvm.2833527440845793170
-ffffffff81f33c33 d .str.11.llvm.2833527440845793170
-ffffffff81f33c38 d .str.20.llvm.2833527440845793170
-ffffffff81f34ade d .str.64.llvm.10036450558225303816
-ffffffff81f34ae3 d .str.81.llvm.10036450558225303816
-ffffffff81f34ae8 d .str.94.llvm.10036450558225303816
-ffffffff81f34aed d .str.101.llvm.10036450558225303816
-ffffffff81f34af2 d .str.199.llvm.10036450558225303816
-ffffffff81f34afb d .str.240.llvm.10036450558225303816
-ffffffff81f34b03 d .str.241.llvm.10036450558225303816
-ffffffff81f34b10 d .str.243.llvm.10036450558225303816
-ffffffff81f34b15 d .str.266.llvm.10036450558225303816
-ffffffff81f34b1e d .str.289.llvm.10036450558225303816
-ffffffff81f351b0 d .str.23.llvm.16652187581604470142
-ffffffff81f351ca d .str.2.llvm.2207631519674298359
-ffffffff81f358eb d .str.59.llvm.3737345636867362837
-ffffffff81f358f2 d .str.123.llvm.3737345636867362837
-ffffffff81f35ab9 d .str.20.llvm.13859926886492732677
-ffffffff81f364a2 d .str.3.llvm.5938111673735109013
-ffffffff81f364b1 d .str.21.llvm.5938111673735109013
-ffffffff81f364b8 d .str.25.llvm.5938111673735109013
-ffffffff81f364c3 d .str.60.llvm.5938111673735109013
-ffffffff81f364ca d .str.73.llvm.5938111673735109013
-ffffffff81f364d5 d .str.78.llvm.5938111673735109013
-ffffffff81f364df d .str.91.llvm.5938111673735109013
-ffffffff81f364e7 d .str.105.llvm.5938111673735109013
-ffffffff81f364ec d .str.127.llvm.5938111673735109013
-ffffffff81f364f3 d .str.249.llvm.5938111673735109013
-ffffffff81f36500 d .str.270.llvm.5938111673735109013
-ffffffff81f3650c d .str.275.llvm.5938111673735109013
-ffffffff81f3693c d .str.17.llvm.16652187581604470142
-ffffffff81f373c7 d .str.22.llvm.6731220630752008821
-ffffffff81f37753 d .str.19.llvm.2833527440845793170
-ffffffff81f37ffa d .str.273.llvm.5938111673735109013
-ffffffff81f37ffa d .str.llvm.4835704885480306601
-ffffffff81f384e1 d .str.11.llvm.10036450558225303816
-ffffffff81f384e6 d .str.32.llvm.10036450558225303816
-ffffffff81f384e9 d .str.51.llvm.10036450558225303816
-ffffffff81f384ee d .str.70.llvm.10036450558225303816
-ffffffff81f384f6 d .str.75.llvm.10036450558225303816
-ffffffff81f384fa d .str.138.llvm.10036450558225303816
-ffffffff81f38501 d .str.163.llvm.10036450558225303816
-ffffffff81f38505 d .str.166.llvm.10036450558225303816
-ffffffff81f3850a d .str.200.llvm.10036450558225303816
-ffffffff81f38516 d .str.205.llvm.10036450558225303816
-ffffffff81f3851f d .str.212.llvm.10036450558225303816
-ffffffff81f38524 d .str.214.llvm.10036450558225303816
-ffffffff81f38528 d .str.239.llvm.10036450558225303816
-ffffffff81f38f87 d .str.51.llvm.13859926886492732677
-ffffffff81f38f90 d .str.68.llvm.13859926886492732677
-ffffffff81f39157 d .str.31.llvm.3737345636867362837
-ffffffff81f39165 d .str.39.llvm.3737345636867362837
-ffffffff81f39178 d .str.46.llvm.3737345636867362837
-ffffffff81f39183 d .str.81.llvm.3737345636867362837
-ffffffff81f3918b d .str.82.llvm.3737345636867362837
-ffffffff81f39255 d .str.27.llvm.13859926886492732677
-ffffffff81f3925d d .str.33.llvm.13859926886492732677
-ffffffff81f3927d d .str.18.llvm.3294496444446440601
-ffffffff81f39eb3 d .str.5.llvm.5938111673735109013
-ffffffff81f39ebf d .str.34.llvm.5938111673735109013
-ffffffff81f39eca d .str.253.llvm.5938111673735109013
-ffffffff81f3a127 d .str.26.llvm.16652187581604470142
-ffffffff81f3a618 d .str.21.llvm.18345722538901306362
-ffffffff81f3b321 d .str.29.llvm.2833527440845793170
-ffffffff81f3c076 d .str.17.llvm.10036450558225303816
-ffffffff81f3c079 d .str.31.llvm.10036450558225303816
-ffffffff81f3c07c d .str.105.llvm.10036450558225303816
-ffffffff81f3c080 d .str.143.llvm.10036450558225303816
-ffffffff81f3c084 d .str.180.llvm.10036450558225303816
-ffffffff81f3c08f d .str.237.llvm.10036450558225303816
-ffffffff81f3c094 d .str.250.llvm.10036450558225303816
-ffffffff81f3c09a d .str.5.llvm.1863568750661663964
-ffffffff81f3c747 d .str.11.llvm.2207631519674298359
-ffffffff81f3cc13 d .str.1.llvm.9260688940639328602
-ffffffff81f3ce95 d .str.52.llvm.13859926886492732677
-ffffffff81f3d056 d .str.14.llvm.3737345636867362837
-ffffffff81f3d067 d .str.17.llvm.3737345636867362837
-ffffffff81f3d076 d .str.60.llvm.3737345636867362837
-ffffffff81f3d07e d .str.87.llvm.3737345636867362837
-ffffffff81f3d08c d .str.109.llvm.3737345636867362837
-ffffffff81f3d0a1 d .str.113.llvm.3737345636867362837
-ffffffff81f3d1c7 d .str.28.llvm.13859926886492732677
-ffffffff81f3d1d2 d .str.85.llvm.13859926886492732677
-ffffffff81f3d1da d .str.98.llvm.13859926886492732677
-ffffffff81f3d4db d .str.85.llvm.5938111673735109013
-ffffffff81f3dac1 d .str.llvm.12260266652785594741
-ffffffff81f3dbc9 d .str.llvm.5938111673735109013
-ffffffff81f3dbd2 d .str.74.llvm.5938111673735109013
-ffffffff81f3dbdc d .str.86.llvm.5938111673735109013
-ffffffff81f3dbe8 d .str.112.llvm.5938111673735109013
-ffffffff81f3dbf0 d .str.228.llvm.5938111673735109013
-ffffffff81f3dbf9 d .str.239.llvm.5938111673735109013
-ffffffff81f3dc07 d .str.265.llvm.5938111673735109013
-ffffffff81f3dddb d .str.llvm.9574308037829731951
-ffffffff81f3dde7 d .str.6.llvm.9574308037829731951
-ffffffff81f3e31e d .str.10.llvm.8111555963742068270
-ffffffff81f3faf0 d .str.130.llvm.10036450558225303816
-ffffffff81f3ff28 d .str.3.llvm.2833527440845793170
-ffffffff81f40011 d .str.131.llvm.10036450558225303816
-ffffffff81f4001d d .str.137.llvm.10036450558225303816
-ffffffff81f40024 d .str.233.llvm.10036450558225303816
-ffffffff81f40029 d .str.277.llvm.10036450558225303816
-ffffffff81f407d2 d .str.152.llvm.5938111673735109013
-ffffffff81f40cc2 d .str.70.llvm.13859926886492732677
-ffffffff81f41a9d d .str.14.llvm.5938111673735109013
-ffffffff81f41aa5 d .str.52.llvm.5938111673735109013
-ffffffff81f41ab0 d .str.65.llvm.5938111673735109013
-ffffffff81f41ab8 d .str.77.llvm.5938111673735109013
-ffffffff81f41ac2 d .str.103.llvm.5938111673735109013
-ffffffff81f41ac9 d .str.108.llvm.5938111673735109013
-ffffffff81f41ad0 d .str.170.llvm.5938111673735109013
-ffffffff81f41ad8 d .str.187.llvm.5938111673735109013
-ffffffff81f41af1 d .str.233.llvm.5938111673735109013
-ffffffff81f41afd d .str.262.llvm.5938111673735109013
-ffffffff81f426d8 d .str.16.llvm.18345722538901306362
-ffffffff81f432b1 d .str.2.llvm.536057326884867110
-ffffffff81f435a0 d str__initcall__trace_system_name
-ffffffff81f435a9 d __param_str_initcall_debug
-ffffffff81f435c0 d linux_proc_banner
-ffffffff81f43808 d mt_min_slots
-ffffffff81f43810 d types
-ffffffff81f43818 d mt_pivots
-ffffffff81f4381c d pirq_ite_set.pirqmap
-ffffffff81f43828 d levels
-ffffffff81f4382c d mt_slots
-ffffffff81f43830 d sys_call_table
-ffffffff81f44648 d _vdso_data_offset
-ffffffff81f44650 d vdso_mapping
-ffffffff81f44670 d vvar_mapping
-ffffffff81f44690 d vdso_image_64
-ffffffff81f44728 d str__vsyscall__trace_system_name
-ffffffff81f44738 d gate_vma_ops
-ffffffff81f447b0 d branch_map
-ffffffff81f447f0 d amd_f17h_perfmon_event_map
-ffffffff81f44840 d amd_perfmon_event_map
-ffffffff81f44890 d lbr_select_map
-ffffffff81f448f0 d string_get_size.divisor
-ffffffff81f448f8 d ref_rate
-ffffffff81f44900 d resource_string.mem_spec
-ffffffff81f44910 d ext4_filetype_table
-ffffffff81f44910 d ext4_filetype_table
-ffffffff81f44910 d fs_dtype_by_ftype
-ffffffff81f44918 d bcj_x86.mask_to_bit_num
-ffffffff81f44920 d resource_string.io_spec
-ffffffff81f44928 d resource_string.bus_spec
-ffffffff81f44930 d pci_default_type0
-ffffffff81f44950 d pebs_ucodes
-ffffffff81f44970 d isolation_ucodes
-ffffffff81f44a60 d knc_perfmon_event_map
-ffffffff81f44a90 d nhm_lbr_sel_map
-ffffffff81f44ae0 d snb_lbr_sel_map
-ffffffff81f44b30 d hsw_lbr_sel_map
-ffffffff81f44b80 d arch_lbr_br_type_map
-ffffffff81f44bc0 d p4_event_bind_map
-ffffffff81f450d0 d p4_pebs_bind_map
-ffffffff81f45120 d p4_escr_table
-ffffffff81f45230 d p4_general_events
-ffffffff81f45280 d p6_perfmon_event_map
-ffffffff81f452c0 d pt_caps
-ffffffff81f45470 d pt_address_ranges
-ffffffff81f454d0 d __param_str_uncore_no_discover
-ffffffff81f454f0 d uncore_pmu_attr_group
-ffffffff81f45518 d nhmex_uncore_mbox_format_group
-ffffffff81f45540 d nhmex_uncore_mbox_extra_regs
-ffffffff81f45760 d nhmex_uncore_cbox_format_group
-ffffffff81f45788 d nhmex_uncore_ubox_format_group
-ffffffff81f457b0 d nhmex_uncore_bbox_format_group
-ffffffff81f457d8 d nhmex_uncore_sbox_format_group
-ffffffff81f45800 d nhmex_uncore_rbox_format_group
-ffffffff81f45828 d snb_uncore_format_group
-ffffffff81f45850 d adl_uncore_format_group
-ffffffff81f45880 d desktop_imc_pci_ids
-ffffffff81f45bf0 d snb_uncore_pci_ids
-ffffffff81f45c40 d ivb_uncore_pci_ids
-ffffffff81f45cc0 d hsw_uncore_pci_ids
-ffffffff81f45d40 d bdw_uncore_pci_ids
-ffffffff81f45d90 d skl_uncore_pci_ids
-ffffffff81f464a0 d icl_uncore_pci_ids
-ffffffff81f46568 d snb_uncore_imc_format_group
-ffffffff81f46590 d nhm_uncore_format_group
-ffffffff81f465b8 d tgl_uncore_imc_format_group
-ffffffff81f465e0 d tgl_uncore_pci_ids
-ffffffff81f47008 d adl_uncore_imc_format_group
-ffffffff81f47058 d snbep_uncore_cbox_format_group
-ffffffff81f47080 d snbep_uncore_cbox_extra_regs
-ffffffff81f473a0 d snbep_uncore_ubox_format_group
-ffffffff81f473c8 d snbep_uncore_pcu_format_group
-ffffffff81f473f0 d snbep_uncore_format_group
-ffffffff81f47418 d snbep_uncore_qpi_format_group
-ffffffff81f47440 d snbep_uncore_pci_ids
-ffffffff81f47648 d ivbep_uncore_cbox_format_group
-ffffffff81f47670 d ivbep_uncore_cbox_extra_regs
-ffffffff81f47b10 d ivbep_uncore_ubox_format_group
-ffffffff81f47b38 d ivbep_uncore_pcu_format_group
-ffffffff81f47b60 d ivbep_uncore_format_group
-ffffffff81f47b88 d ivbep_uncore_qpi_format_group
-ffffffff81f47bb0 d ivbep_uncore_pci_ids
-ffffffff81f47ef8 d knl_uncore_ubox_format_group
-ffffffff81f47f20 d knl_uncore_cha_format_group
-ffffffff81f47f48 d knl_uncore_pcu_format_group
-ffffffff81f47f70 d knl_uncore_irp_format_group
-ffffffff81f47fa0 d knl_uncore_pci_ids
-ffffffff81f483d8 d hswep_uncore_cbox_format_group
-ffffffff81f48400 d hswep_uncore_cbox_extra_regs
-ffffffff81f488c0 d hswep_uncore_sbox_format_group
-ffffffff81f488e8 d hswep_uncore_ubox_format_group
-ffffffff81f48910 d hswep_uncore_pci_ids
-ffffffff81f48c60 d bdx_uncore_pci_ids
-ffffffff81f48fd0 d skx_uncore_chabox_format_group
-ffffffff81f48ff8 d skx_uncore_iio_format_group
-ffffffff81f49020 d skx_uncore_iio_freerunning_format_group
-ffffffff81f49048 d skx_uncore_format_group
-ffffffff81f49070 d skx_upi_uncore_format_group
-ffffffff81f490a0 d skx_uncore_pci_ids
-ffffffff81f49398 d snr_uncore_chabox_format_group
-ffffffff81f493c0 d snr_uncore_iio_format_group
-ffffffff81f493e8 d snr_m2m_uncore_format_group
-ffffffff81f49410 d snr_uncore_pci_ids
-ffffffff81f49460 d snr_uncore_pci_sub_ids
-ffffffff81f494b0 d icx_upi_uncore_format_group
-ffffffff81f494e0 d icx_uncore_pci_ids
-ffffffff81f496a0 d spr_uncores
-ffffffff81f49700 d spr_uncore_chabox_format_group
-ffffffff81f49728 d uncore_alias_group
-ffffffff81f49750 d spr_uncore_raw_format_group
-ffffffff81f497a0 d generic_uncore_format_group
-ffffffff81f4983c d idt_invalidate.idt.llvm.2173180118462341273
-ffffffff81f49846 d str__irq_vectors__trace_system_name
-ffffffff81f49860 d exception_stack_names
-ffffffff81f498c0 d estack_pages
-ffffffff81f49978 d str__nmi__trace_system_name
-ffffffff81f4997c d mds_clear_cpu_buffers.ds
-ffffffff81f4997e d mds_clear_cpu_buffers.ds
-ffffffff81f49980 d mds_clear_cpu_buffers.ds
-ffffffff81f49982 d mds_clear_cpu_buffers.ds
-ffffffff81f49984 d mds_clear_cpu_buffers.ds
-ffffffff81f49986 d mds_clear_cpu_buffers.ds
-ffffffff81f49988 d mds_clear_cpu_buffers.ds
-ffffffff81f4998a d mds_clear_cpu_buffers.ds
-ffffffff81f49990 d boot_params_attr_group
-ffffffff81f499b8 d setup_data_attr_group
-ffffffff81f499e0 d x86nops.llvm.9443601068199367704
-ffffffff81f49a10 d x86_nops
-ffffffff81f49a60 d int3_emulate_jcc.jcc_mask
-ffffffff81f49a90 d tsc_msr_cpu_ids
-ffffffff81f49b50 d freq_desc_cht
-ffffffff81f49c18 d freq_desc_lgm
-ffffffff81f49ce0 d freq_desc_pnw
-ffffffff81f49da8 d freq_desc_clv
-ffffffff81f49e70 d freq_desc_byt
-ffffffff81f49f38 d freq_desc_tng
-ffffffff81f4a000 d freq_desc_ann
-ffffffff81f4a0c8 d tramp_ud
-ffffffff81f4a0cb d xor5rax
-ffffffff81f4a0d0 d retinsn
-ffffffff81f4a0d5 d str__x86_fpu__trace_system_name
-ffffffff81f4a0e0 d xfeature_names
-ffffffff81f4a180 d xstate_prctl_req
-ffffffff81f4a220 d regoffset_table
-ffffffff81f4a380 d user_x86_64_view.llvm.36301853563914745
-ffffffff81f4a450 d cache_table
-ffffffff81f4a580 d cpuid_bits
-ffffffff81f4a698 d default_cpu
-ffffffff81f4a6e0 d ppin_cpuids
-ffffffff81f4a820 d mds_strings
-ffffffff81f4a840 d taa_strings
-ffffffff81f4a860 d mmio_strings
-ffffffff81f4a880 d srbds_strings
-ffffffff81f4a8b0 d spectre_v1_strings
-ffffffff81f4a8c0 d retbleed_strings
-ffffffff81f4a8f0 d spectre_v2_user_strings
-ffffffff81f4a920 d spectre_v2_strings
-ffffffff81f4a960 d ssb_strings
-ffffffff81f4a980 d cpuid_deps
-ffffffff81f4ab58 d cpuinfo_op
-ffffffff81f4ab80 d x86_cap_flags
-ffffffff81f4bf80 d x86_bug_flags
-ffffffff81f4c080 d x86_vmx_flags
-ffffffff81f4c580 d x86_power_flags
-ffffffff81f4c680 d intel_cpu_dev
-ffffffff81f4c6d0 d spectre_bad_microcodes
-ffffffff81f4c770 d intel_tlb_table
-ffffffff81f4db20 d intel_epb_normal
-ffffffff81f4db50 d intel_epb_attr_group
-ffffffff81f4db80 d energy_perf_strings
-ffffffff81f4dbb0 d energy_perf_strings
-ffffffff81f4dbe0 d amd_cpu_dev
-ffffffff81f4dc30 d amd_erratum_400
-ffffffff81f4dc40 d amd_erratum_383
-ffffffff81f4dc4c d amd_erratum_1054
-ffffffff81f4dc70 d hygon_cpu_dev
-ffffffff81f4dcb8 d centaur_cpu_dev
-ffffffff81f4dd00 d zhaoxin_cpu_dev
-ffffffff81f4dd70 d mtrr_strings
-ffffffff81f4dda8 d mtrr_proc_ops
-ffffffff81f4de00 d generic_mtrr_ops
-ffffffff81f4de40 d pt_regoff
-ffffffff81f4de80 d final_levels
-ffffffff81f4de90 d pt_regs_offset
-ffffffff81f4def0 d cpu_root_microcode_group
-ffffffff81f4df18 d mc_attr_group
-ffffffff81f4df40 d ucode_path
-ffffffff81f4dff0 d intel_cod_cpu
-ffffffff81f4e070 d __sysvec_error_interrupt.error_interrupt_reason
-ffffffff81f4e0b0 d multi_dmi_table
-ffffffff81f4e360 d x86_vector_domain_ops
-ffffffff81f4e3b0 d mp_ioapic_irqdomain_ops
-ffffffff81f4e400 d kexec_file_loaders
-ffffffff81f4e410 d kexec_bzImage64_ops
-ffffffff81f4e428 d hpet_msi_domain_info
-ffffffff81f4e490 d amd_nb_misc_ids
-ffffffff81f4e800 d hygon_nb_misc_ids
-ffffffff81f4e850 d amd_nb_link_ids
-ffffffff81f4eb00 d amd_root_ids
-ffffffff81f4ec90 d hygon_root_ids
-ffffffff81f4ece0 d hygon_nb_link_ids
-ffffffff81f4ed40 d ioapic_irq_domain_ops
-ffffffff81f4ed90 d of_ioapic_type
-ffffffff81f4edc0 d default_xol_ops
-ffffffff81f4ede0 d branch_xol_ops
-ffffffff81f4ee00 d push_xol_ops
-ffffffff81f4ee20 d umip_insns
-ffffffff81f4ee48 d str__exceptions__trace_system_name
-ffffffff81f4ee60 d errata93_warning
-ffffffff81f4ef48 d fops_tlbflush
-ffffffff81f4f060 d check_conflict.lvltxt
-ffffffff81f4f078 d memtype_fops
-ffffffff81f4f188 d memtype_seq_ops
-ffffffff81f4f248 d fops_init_pkru
-ffffffff81f4f360 d aesni_cpu_id
-ffffffff81f4f3d0 d module_cpu_ids
-ffffffff81f4f430 d pcmul_cpu_id
-ffffffff81f4f460 d efi_dummy_name
-ffffffff81f4f46c d str__task__trace_system_name
-ffffffff81f4f478 d pidfd_fops
-ffffffff81f4f608 d vma_init.dummy_vm_ops
-ffffffff81f4f678 d vma_init.dummy_vm_ops
-ffffffff81f4f6f0 d taint_flags
-ffffffff81f4f729 d __param_str_panic_print
-ffffffff81f4f735 d __param_str_pause_on_oops
-ffffffff81f4f743 d __param_str_panic_on_warn
-ffffffff81f4f760 d __param_str_crash_kexec_post_notifiers
-ffffffff81f4f780 d clear_warn_once_fops
-ffffffff81f4f896 d str__cpuhp__trace_system_name
-ffffffff81f4f8a0 d cpuhp_cpu_root_attr_group
-ffffffff81f4f8c8 d cpuhp_cpu_attr_group
-ffffffff81f4f8f0 d cpuhp_smt_attr_group
-ffffffff81f4f920 d smt_states
-ffffffff81f4f948 d cpu_all_bits
-ffffffff81f4f950 d cpu_bit_bitmap
-ffffffff81f4fb60 d softirq_to_name
-ffffffff81f4fbc0 d trace_raw_output_softirq.symbols
-ffffffff81f4fc70 d resource_op
-ffffffff81f4fc90 d sysctl_long_vals
-ffffffff81f4fcab d proc_wspace_sep
-ffffffff81f4fcb0 d ngroups_max
-ffffffff81f4fcb4 d cap_last_cap
-ffffffff81f4fcb8 d six_hundred_forty_kb
-ffffffff81f4fcc0 d sysctl_vals
-ffffffff81f4fcf0 d __cap_empty_set
-ffffffff81f4fcf8 d str__signal__trace_system_name
-ffffffff81f4fd00 d sig_sicodes
-ffffffff81f4fd50 d __param_str_disable_numa
-ffffffff81f4fd70 d __param_str_power_efficient
-ffffffff81f4fd90 d __param_str_debug_force_rr_cpu
-ffffffff81f4fdb0 d __param_str_watchdog_thresh
-ffffffff81f4fdd0 d wq_watchdog_thresh_ops
-ffffffff81f4fe00 d wq_sysfs_group
-ffffffff81f4fe28 d param_ops_byte
-ffffffff81f4fe48 d param_ops_short
-ffffffff81f4fe68 d param_ops_ushort
-ffffffff81f4fe88 d param_ops_int
-ffffffff81f4fea8 d param_ops_uint
-ffffffff81f4fec8 d param_ops_long
-ffffffff81f4fee8 d param_ops_ulong
-ffffffff81f4ff08 d param_ops_ullong
-ffffffff81f4ff28 d param_ops_hexint
-ffffffff81f4ff48 d param_ops_charp
-ffffffff81f4ff68 d param_ops_bool
-ffffffff81f4ff88 d param_ops_bool_enable_only
-ffffffff81f4ffa8 d param_ops_invbool
-ffffffff81f4ffc8 d param_ops_bint
-ffffffff81f4ffe8 d param_array_ops
-ffffffff81f50008 d param_ops_string
-ffffffff81f50028 d module_sysfs_ops
-ffffffff81f50038 d module_uevent_ops
-ffffffff81f50050 d kthread.param
-ffffffff81f50058 d kernel_attr_group
-ffffffff81f50080 d reboot_cmd
-ffffffff81f50090 d reboot_attr_group
-ffffffff81f500e0 d str__sched__trace_system_name
-ffffffff81f500f0 d trace_raw_output_sched_switch.__flags
-ffffffff81f501a0 d sched_prio_to_weight
-ffffffff81f50240 d sched_prio_to_wmult
-ffffffff81f50350 d runnable_avg_yN_inv
-ffffffff81f503d0 d sched_feat_names
-ffffffff81f504a0 d sd_flag_debug
-ffffffff81f50580 d sugov_group
-ffffffff81f505a8 d sched_feat_fops
-ffffffff81f506b8 d sched_dynamic_fops
-ffffffff81f507c8 d sched_scaling_fops
-ffffffff81f508d8 d sched_debug_fops
-ffffffff81f509e8 d sched_debug_sops
-ffffffff81f50a08 d sd_flags_fops
-ffffffff81f50b20 d sched_tunable_scaling_names
-ffffffff81f50b38 d schedstat_sops
-ffffffff81f50b58 d psi_io_proc_ops
-ffffffff81f50bb0 d psi_memory_proc_ops
-ffffffff81f50c08 d psi_cpu_proc_ops
-ffffffff81f50c60 d psi_irq_proc_ops
-ffffffff81f50cb8 d str__lock__trace_system_name
-ffffffff81f50cc0 d trace_raw_output_contention_begin.__flags
-ffffffff81f50d30 d cpu_latency_qos_fops
-ffffffff81f50e40 d suspend_stats_fops
-ffffffff81f50f50 d attr_group
-ffffffff81f50f78 d suspend_attr_group
-ffffffff81f50fe0 d pm_labels
-ffffffff81f51000 d mem_sleep_labels
-ffffffff81f51020 d sysrq_poweroff_op
-ffffffff81f51040 d str__printk__trace_system_name
-ffffffff81f51048 d kmsg_fops
-ffffffff81f51160 d __param_str_ignore_loglevel
-ffffffff81f51177 d __param_str_time
-ffffffff81f51190 d __param_str_console_suspend
-ffffffff81f511b0 d __param_str_console_no_auto_verbose
-ffffffff81f511d0 d __param_str_always_kmsg_dump
-ffffffff81f51208 d ten_thousand
-ffffffff81f51210 d irq_group
-ffffffff81f51240 d __param_str_noirqdebug
-ffffffff81f51260 d __param_str_irqfixup
-ffffffff81f51278 d irqchip_fwnode_ops
-ffffffff81f51328 d irq_domain_simple_ops
-ffffffff81f51378 d irq_affinity_proc_ops
-ffffffff81f513d0 d irq_affinity_list_proc_ops
-ffffffff81f51428 d default_affinity_proc_ops
-ffffffff81f51480 d msi_domain_ops
-ffffffff81f514d0 d msi_irqs_group
-ffffffff81f514f8 d str__irq_matrix__trace_system_name
-ffffffff81f51503 d str__rcu__trace_system_name
-ffffffff81f51510 d __param_str_rcu_expedited
-ffffffff81f51530 d __param_str_rcu_normal
-ffffffff81f51550 d __param_str_rcu_normal_after_boot
-ffffffff81f51570 d __param_str_rcu_cpu_stall_ftrace_dump
-ffffffff81f515a0 d __param_str_rcu_cpu_stall_suppress
-ffffffff81f515c0 d __param_str_rcu_cpu_stall_timeout
-ffffffff81f515e0 d __param_str_rcu_exp_cpu_stall_timeout
-ffffffff81f51610 d __param_str_rcu_cpu_stall_suppress_at_boot
-ffffffff81f51640 d __param_str_rcu_task_ipi_delay
-ffffffff81f51660 d __param_str_rcu_task_stall_timeout
-ffffffff81f51680 d __param_str_rcu_task_stall_info
-ffffffff81f516a0 d __param_str_rcu_task_stall_info_mult
-ffffffff81f516d0 d __param_str_rcu_task_enqueue_lim
-ffffffff81f516f0 d __param_str_rcu_task_contend_lim
-ffffffff81f51710 d __param_str_rcu_task_collapse_lim
-ffffffff81f51730 d rcu_tasks_gp_state_names
-ffffffff81f51790 d __param_str_exp_holdoff
-ffffffff81f517b0 d __param_str_counter_wrap_check
-ffffffff81f517d0 d __param_str_convert_to_big
-ffffffff81f517f0 d __param_str_big_cpu_lim
-ffffffff81f51810 d __param_str_small_contention_lim
-ffffffff81f51830 d __param_str_srcu_retry_check_delay
-ffffffff81f51850 d __param_str_srcu_max_nodelay_phase
-ffffffff81f51870 d __param_str_srcu_max_nodelay
-ffffffff81f51890 d srcu_size_state_name
-ffffffff81f518e0 d __param_str_dump_tree
-ffffffff81f51900 d __param_str_use_softirq
-ffffffff81f51920 d __param_str_rcu_fanout_exact
-ffffffff81f51940 d __param_str_rcu_fanout_leaf
-ffffffff81f51960 d __param_str_kthread_prio
-ffffffff81f51980 d __param_str_gp_preinit_delay
-ffffffff81f519a0 d __param_str_gp_init_delay
-ffffffff81f519c0 d __param_str_gp_cleanup_delay
-ffffffff81f519e0 d __param_str_rcu_min_cached_objs
-ffffffff81f51a00 d __param_str_rcu_delay_page_cache_fill_msec
-ffffffff81f51a27 d __param_str_blimit
-ffffffff81f51a40 d __param_str_qhimark
-ffffffff81f51a50 d __param_str_qlowmark
-ffffffff81f51a61 d __param_str_qovld
-ffffffff81f51a70 d __param_str_rcu_divisor
-ffffffff81f51a90 d __param_str_rcu_resched_ns
-ffffffff81f51ab0 d __param_str_jiffies_till_sched_qs
-ffffffff81f51ad0 d __param_str_jiffies_to_sched_qs
-ffffffff81f51af0 d __param_str_jiffies_till_first_fqs
-ffffffff81f51b10 d first_fqs_jiffies_ops
-ffffffff81f51b30 d __param_str_jiffies_till_next_fqs
-ffffffff81f51b50 d next_fqs_jiffies_ops
-ffffffff81f51b70 d __param_str_rcu_kick_kthreads
-ffffffff81f51b90 d __param_str_sysrq_rcu
-ffffffff81f51bb0 d __param_str_nocb_nobypass_lim_per_jiffy
-ffffffff81f51be0 d __param_str_rcu_nocb_gp_stride
-ffffffff81f51c00 d gp_state_names
-ffffffff81f51c48 d sysrq_rcudump_op
-ffffffff81f51c68 d dma_dummy_ops
-ffffffff81f51d38 d fops_io_tlb_used
-ffffffff81f51e48 d str__raw_syscalls__trace_system_name
-ffffffff81f51e55 d profile_setup.schedstr
-ffffffff81f51e5e d profile_setup.sleepstr
-ffffffff81f51e64 d profile_setup.kvmstr
-ffffffff81f51e68 d prof_cpu_mask_proc_ops
-ffffffff81f51ec0 d profile_proc_ops
-ffffffff81f51f30 d trace_raw_output_timer_start.__flags
-ffffffff81f51f80 d trace_raw_output_hrtimer_init.symbols
-ffffffff81f51fd0 d trace_raw_output_hrtimer_init.symbols.40
-ffffffff81f52060 d trace_raw_output_hrtimer_start.symbols
-ffffffff81f520f0 d trace_raw_output_tick_stop.symbols
-ffffffff81f52160 d hrtimer_clock_to_base_table
-ffffffff81f521a0 d offsets
-ffffffff81f521c0 d __param_str_max_cswd_read_retries
-ffffffff81f521f0 d __param_str_verify_n_cpus
-ffffffff81f52210 d clocksource_group
-ffffffff81f52238 d timer_list_sops
-ffffffff81f52258 d alarm_clock
-ffffffff81f522e0 d trace_raw_output_alarmtimer_suspend.__flags
-ffffffff81f52330 d trace_raw_output_alarm_class.__flags
-ffffffff81f52390 d alarmtimer_pm_ops
-ffffffff81f52450 d posix_clocks
-ffffffff81f524b0 d clock_realtime
-ffffffff81f52530 d clock_monotonic
-ffffffff81f525b0 d clock_monotonic_raw
-ffffffff81f52630 d clock_realtime_coarse
-ffffffff81f526b0 d clock_monotonic_coarse
-ffffffff81f52730 d clock_boottime
-ffffffff81f527b0 d clock_tai
-ffffffff81f52830 d clock_posix_cpu
-ffffffff81f528b0 d clock_process
-ffffffff81f52930 d clock_thread
-ffffffff81f529b0 d posix_clock_file_operations
-ffffffff81f52ac0 d clock_posix_dynamic
-ffffffff81f52b40 d tk_debug_sleep_time_fops
-ffffffff81f52c50 d futex_q_init
-ffffffff81f52cc0 d kallsyms_proc_ops
-ffffffff81f52d18 d kallsyms_op
-ffffffff81f52d40 d cgroup_subsys_enabled_key
-ffffffff81f52d80 d cgroup_subsys_on_dfl_key
-ffffffff81f52dc0 d cgroup_subsys_name
-ffffffff81f52df8 d cgroup_fs_context_ops
-ffffffff81f52e28 d cgroup1_fs_context_ops
-ffffffff81f52e60 d cgroup2_fs_parameters
-ffffffff81f52f00 d cpuset_fs_context_ops
-ffffffff81f52f30 d cgroup_sysfs_attr_group
-ffffffff81f52f58 d cgroupns_operations
-ffffffff81f52fa0 d cgroup1_fs_parameters
-ffffffff81f53100 d perr_strings
-ffffffff81f53140 d config_gz_proc_ops
-ffffffff81f531d0 d audit_feature_names
-ffffffff81f53210 d audit_nfcfgs
-ffffffff81f53350 d audit_log_time.ntp_name
-ffffffff81f533a0 d audit_watch_fsnotify_ops
-ffffffff81f533d0 d audit_mark_fsnotify_ops
-ffffffff81f53400 d audit_tree_ops
-ffffffff81f53430 d hung_task_timeout_max
-ffffffff81f53438 d sixty
-ffffffff81f53440 d seccomp_notify_ops
-ffffffff81f53560 d seccomp_actions_avail
-ffffffff81f535a0 d seccomp_log_names
-ffffffff81f53630 d taskstats_ops
-ffffffff81f53690 d taskstats_cmd_get_policy
-ffffffff81f536e0 d cgroupstats_cmd_get_policy
-ffffffff81f53700 d trace_clocks
-ffffffff81f537f0 d trace_min_max_fops
-ffffffff81f53900 d print_func_help_header_irq.space
-ffffffff81f53910 d trace_options_fops
-ffffffff81f53a20 d show_traces_fops
-ffffffff81f53b30 d set_tracer_fops
-ffffffff81f53c40 d tracing_cpumask_fops
-ffffffff81f53d50 d tracing_iter_fops
-ffffffff81f53e60 d tracing_fops
-ffffffff81f53f70 d tracing_pipe_fops
-ffffffff81f54080 d tracing_entries_fops
-ffffffff81f54190 d tracing_total_entries_fops
-ffffffff81f542a0 d tracing_free_buffer_fops
-ffffffff81f543b0 d tracing_mark_fops
-ffffffff81f544c0 d tracing_mark_raw_fops
-ffffffff81f545d0 d trace_clock_fops
-ffffffff81f546e0 d rb_simple_fops
-ffffffff81f547f0 d trace_time_stamp_mode_fops
-ffffffff81f54900 d buffer_percent_fops
-ffffffff81f54a10 d tracing_err_log_fops
-ffffffff81f54b20 d show_traces_seq_ops
-ffffffff81f54b40 d tracer_seq_ops
-ffffffff81f54b60 d trace_options_core_fops
-ffffffff81f54c70 d tracing_err_log_seq_ops
-ffffffff81f54c90 d tracing_buffers_fops
-ffffffff81f54da0 d tracing_stats_fops
-ffffffff81f54eb0 d buffer_pipe_buf_ops
-ffffffff81f54ed0 d tracing_thresh_fops
-ffffffff81f54fe0 d tracing_readme_fops
-ffffffff81f550f0 d tracing_saved_cmdlines_fops
-ffffffff81f55200 d tracing_saved_cmdlines_size_fops
-ffffffff81f55310 d tracing_saved_tgids_fops
-ffffffff81f55420 d readme_msg
-ffffffff81f57898 d tracing_saved_cmdlines_seq_ops
-ffffffff81f578b8 d tracing_saved_tgids_seq_ops
-ffffffff81f578e0 d mark
-ffffffff81f57940 d tracing_stat_fops
-ffffffff81f57a50 d trace_stat_seq_ops
-ffffffff81f57a70 d ftrace_formats_fops
-ffffffff81f57b80 d show_format_seq_ops
-ffffffff81f57ba0 d ftrace_avail_fops
-ffffffff81f57cb0 d ftrace_enable_fops
-ffffffff81f57dc0 d ftrace_event_id_fops
-ffffffff81f57ed0 d ftrace_event_filter_fops
-ffffffff81f57fe0 d ftrace_event_format_fops
-ffffffff81f580f0 d ftrace_subsystem_filter_fops
-ffffffff81f58200 d ftrace_system_enable_fops
-ffffffff81f58310 d trace_format_seq_ops
-ffffffff81f58330 d ftrace_set_event_fops
-ffffffff81f58440 d ftrace_tr_enable_fops
-ffffffff81f58550 d ftrace_set_event_pid_fops
-ffffffff81f58660 d ftrace_set_event_notrace_pid_fops
-ffffffff81f58770 d ftrace_show_header_fops
-ffffffff81f58880 d show_set_event_seq_ops
-ffffffff81f588a0 d show_set_pid_seq_ops
-ffffffff81f588c0 d show_set_no_pid_seq_ops
-ffffffff81f588e0 d show_event_seq_ops
-ffffffff81f58920 d event_triggers_seq_ops
-ffffffff81f58940 d event_trigger_fops
-ffffffff81f58ca0 d synth_events_fops
-ffffffff81f58db0 d synth_events_seq_op
-ffffffff81f58dd0 d event_hist_fops
-ffffffff81f58ee0 d hist_trigger_elt_data_ops
-ffffffff81f58f00 d no_comm
-ffffffff81f58f20 d str__error_report__trace_system_name
-ffffffff81f58f30 d trace_raw_output_error_report_template.symbols
-ffffffff81f58f70 d str__power__trace_system_name
-ffffffff81f58f80 d trace_raw_output_device_pm_callback_start.symbols
-ffffffff81f59010 d trace_raw_output_pm_qos_update.symbols
-ffffffff81f59050 d trace_raw_output_pm_qos_update_flags.symbols
-ffffffff81f59090 d trace_raw_output_dev_pm_qos_request.symbols
-ffffffff81f590c0 d str__rpm__trace_system_name
-ffffffff81f590c8 d dynamic_events_ops
-ffffffff81f591d8 d dyn_event_seq_op
-ffffffff81f591f8 d print_type_format_u8
-ffffffff81f591fb d print_type_format_u16
-ffffffff81f591fe d print_type_format_u32
-ffffffff81f59201 d print_type_format_u64
-ffffffff81f59205 d print_type_format_s8
-ffffffff81f59208 d print_type_format_s16
-ffffffff81f5920b d print_type_format_s32
-ffffffff81f5920e d print_type_format_s64
-ffffffff81f59212 d print_type_format_x8
-ffffffff81f59217 d print_type_format_x16
-ffffffff81f5921c d print_type_format_x32
-ffffffff81f59221 d print_type_format_x64
-ffffffff81f59227 d print_type_format_symbol
-ffffffff81f5922b d print_type_format_string
-ffffffff81f59240 d probe_fetch_types
-ffffffff81f595b0 d uprobe_events_ops
-ffffffff81f596c0 d uprobe_profile_ops
-ffffffff81f597d0 d probes_seq_op
-ffffffff81f597f0 d profile_seq_op
-ffffffff81f59810 d bpf_opcode_in_insntable.public_insntable
-ffffffff81f59910 d interpreters_args
-ffffffff81f59990 d bpf_tail_call_proto
-ffffffff81f599f0 d str__xdp__trace_system_name
-ffffffff81f599f8 d bpf_map_lookup_elem_proto
-ffffffff81f59a58 d bpf_map_update_elem_proto
-ffffffff81f59ab8 d bpf_map_delete_elem_proto
-ffffffff81f59b18 d bpf_map_push_elem_proto
-ffffffff81f59b78 d bpf_map_pop_elem_proto
-ffffffff81f59bd8 d bpf_map_peek_elem_proto
-ffffffff81f59c38 d bpf_map_lookup_percpu_elem_proto
-ffffffff81f59c98 d bpf_spin_lock_proto
-ffffffff81f59cf8 d bpf_spin_unlock_proto
-ffffffff81f59d58 d bpf_jiffies64_proto
-ffffffff81f59db8 d bpf_get_prandom_u32_proto
-ffffffff81f59e18 d bpf_get_smp_processor_id_proto
-ffffffff81f59e78 d bpf_get_numa_node_id_proto
-ffffffff81f59ed8 d bpf_ktime_get_ns_proto
-ffffffff81f59f38 d bpf_ktime_get_boot_ns_proto
-ffffffff81f59f98 d bpf_ktime_get_coarse_ns_proto
-ffffffff81f59ff8 d bpf_ktime_get_tai_ns_proto
-ffffffff81f5a058 d bpf_get_current_pid_tgid_proto
-ffffffff81f5a0b8 d bpf_get_current_uid_gid_proto
-ffffffff81f5a118 d bpf_get_current_comm_proto
-ffffffff81f5a178 d bpf_get_current_cgroup_id_proto
-ffffffff81f5a1d8 d bpf_get_current_ancestor_cgroup_id_proto
-ffffffff81f5a238 d bpf_get_local_storage_proto
-ffffffff81f5a298 d bpf_get_ns_current_pid_tgid_proto
-ffffffff81f5a2f8 d bpf_snprintf_btf_proto
-ffffffff81f5a358 d bpf_seq_printf_btf_proto
-ffffffff81f5a3b8 d bpf_set_retval_proto
-ffffffff81f5a418 d bpf_get_retval_proto
-ffffffff81f5a480 d ___bpf_prog_run.jumptable
-ffffffff81f5ac80 d interpreters
-ffffffff81f5ad00 d trace_raw_output_xdp_exception.symbols
-ffffffff81f5ad70 d trace_raw_output_xdp_bulk_tx.symbols
-ffffffff81f5ade0 d trace_raw_output_xdp_redirect_template.symbols
-ffffffff81f5ae50 d trace_raw_output_xdp_cpumap_kthread.symbols
-ffffffff81f5aec0 d trace_raw_output_xdp_cpumap_enqueue.symbols
-ffffffff81f5af30 d trace_raw_output_xdp_devmap_xmit.symbols
-ffffffff81f5afa0 d trace_raw_output_mem_disconnect.symbols
-ffffffff81f5b000 d trace_raw_output_mem_connect.symbols
-ffffffff81f5b060 d trace_raw_output_mem_return_failed.symbols
-ffffffff81f5b0c0 d perf_fops
-ffffffff81f5b1d0 d pmu_dev_group
-ffffffff81f5b1f8 d perf_event_parse_addr_filter.actions
-ffffffff81f5b210 d if_tokens
-ffffffff81f5b290 d perf_mmap_vmops
-ffffffff81f5b300 d task_bps_ht_params
-ffffffff81f5b32d d str__filemap__trace_system_name
-ffffffff81f5b338 d generic_file_vm_ops
-ffffffff81f5b3a8 d str__oom__trace_system_name
-ffffffff81f5b3b0 d trace_raw_output_reclaim_retry_zone.symbols
-ffffffff81f5b400 d trace_raw_output_compact_retry.symbols
-ffffffff81f5b440 d trace_raw_output_compact_retry.symbols.59
-ffffffff81f5b480 d oom_constraint_text
-ffffffff81f5b518 d dirty_bytes_min
-ffffffff81f5b520 d str__pagemap__trace_system_name
-ffffffff81f5b528 d str__vmscan__trace_system_name
-ffffffff81f5b530 d trace_raw_output_mm_vmscan_wakeup_kswapd.__flags
-ffffffff81f5b780 d trace_raw_output_mm_vmscan_direct_reclaim_begin_template.__flags
-ffffffff81f5b9d0 d trace_raw_output_mm_shrink_slab_start.__flags
-ffffffff81f5bc20 d trace_raw_output_mm_vmscan_lru_isolate.symbols
-ffffffff81f5bc80 d trace_raw_output_mm_vmscan_write_folio.__flags
-ffffffff81f5bce0 d trace_raw_output_mm_vmscan_lru_shrink_inactive.__flags
-ffffffff81f5bd40 d trace_raw_output_mm_vmscan_lru_shrink_active.__flags
-ffffffff81f5bda0 d trace_raw_output_mm_vmscan_node_reclaim_begin.__flags
-ffffffff81f5bff0 d trace_raw_output_mm_vmscan_throttled.__flags
-ffffffff81f5c040 d lru_gen_rw_fops
-ffffffff81f5c150 d lru_gen_ro_fops
-ffffffff81f5c260 d walk_mm.mm_walk_ops
-ffffffff81f5c2b0 d lru_gen_seq_ops
-ffffffff81f5c2d0 d shmem_vm_ops.llvm.16562044943732629692
-ffffffff81f5c340 d shmem_param_enums_huge
-ffffffff81f5c390 d shmem_fs_parameters
-ffffffff81f5c4f0 d shmem_fs_context_ops
-ffffffff81f5c520 d shmem_export_ops
-ffffffff81f5c578 d shmem_ops
-ffffffff81f5c628 d shmem_security_xattr_handler
-ffffffff81f5c658 d shmem_trusted_xattr_handler
-ffffffff81f5c6c0 d shmem_special_inode_operations
-ffffffff81f5c780 d shmem_inode_operations
-ffffffff81f5c840 d shmem_file_operations
-ffffffff81f5c980 d shmem_dir_inode_operations
-ffffffff81f5ca40 d shmem_short_symlink_operations
-ffffffff81f5cb00 d shmem_symlink_inode_operations
-ffffffff81f5cbc0 d shmem_aops
-ffffffff81f5cc60 d vmstat_text
-ffffffff81f5d108 d fragmentation_op
-ffffffff81f5d128 d pagetypeinfo_op
-ffffffff81f5d148 d vmstat_op
-ffffffff81f5d168 d zoneinfo_op
-ffffffff81f5d188 d unusable_fops
-ffffffff81f5d298 d extfrag_fops
-ffffffff81f5d3a8 d unusable_sops
-ffffffff81f5d3c8 d extfrag_sops
-ffffffff81f5d3e8 d bdi_dev_group
-ffffffff81f5d410 d bdi_debug_stats_fops
-ffffffff81f5d520 d str__percpu__trace_system_name
-ffffffff81f5d530 d trace_raw_output_percpu_alloc_percpu.__flags
-ffffffff81f5d780 d str__kmem__trace_system_name
-ffffffff81f5d790 d trace_raw_output_kmem_cache_alloc.__flags
-ffffffff81f5d9e0 d trace_raw_output_kmalloc.__flags
-ffffffff81f5dc30 d trace_raw_output_mm_page_alloc.__flags
-ffffffff81f5de80 d trace_raw_output_rss_stat.symbols
-ffffffff81f5ded0 d slabinfo_proc_ops
-ffffffff81f5df28 d slabinfo_op
-ffffffff81f5df48 d str__compaction__trace_system_name
-ffffffff81f5df60 d trace_raw_output_mm_compaction_end.symbols
-ffffffff81f5e000 d trace_raw_output_mm_compaction_try_to_compact_pages.__flags
-ffffffff81f5e250 d trace_raw_output_mm_compaction_suitable_template.symbols
-ffffffff81f5e2a0 d trace_raw_output_mm_compaction_suitable_template.symbols.103
-ffffffff81f5e340 d trace_raw_output_mm_compaction_defer_template.symbols
-ffffffff81f5e390 d trace_raw_output_kcompactd_wake_template.symbols
-ffffffff81f5e3e0 d pageflag_names
-ffffffff81f5e590 d gfpflag_names
-ffffffff81f5e7e0 d vmaflag_names
-ffffffff81f5e9f8 d str__mmap_lock__trace_system_name
-ffffffff81f5ea08 d fault_around_bytes_fops
-ffffffff81f5eb18 d mincore_walk_ops
-ffffffff81f5eb68 d mlock_vma_pages_range.mlock_walk_ops
-ffffffff81f5ebb8 d str__mmap__trace_system_name
-ffffffff81f5ebc0 d mmap_rnd_bits_min
-ffffffff81f5ebc4 d mmap_rnd_bits_max
-ffffffff81f5ebd0 d __param_str_ignore_rlimit_data
-ffffffff81f5ebe8 d special_mapping_vmops.llvm.302550460852299470
-ffffffff81f5ec58 d legacy_special_mapping_vmops
-ffffffff81f5ecc8 d prot_none_walk_ops
-ffffffff81f5ed18 d str__tlb__trace_system_name
-ffffffff81f5ed1c d str__migrate__trace_system_name
-ffffffff81f5ed30 d trace_raw_output_tlb_flush.symbols
-ffffffff81f5ed90 d trace_raw_output_mm_migrate_pages.symbols
-ffffffff81f5edd0 d trace_raw_output_mm_migrate_pages.symbols.38
-ffffffff81f5ee70 d trace_raw_output_mm_migrate_pages_start.symbols
-ffffffff81f5eeb0 d trace_raw_output_mm_migrate_pages_start.symbols.49
-ffffffff81f5ef50 d vmalloc_op
-ffffffff81f5ef70 d compound_page_dtors
-ffffffff81f5ef90 d fallbacks
-ffffffff81f5efd0 d zone_names
-ffffffff81f5eff0 d migratetype_names
-ffffffff81f5f020 d __param_str_shuffle
-ffffffff81f5f038 d shuffle_param_ops
-ffffffff81f5f060 d __param_str_memmap_on_memory
-ffffffff81f5f080 d __param_str_online_policy
-ffffffff81f5f0a0 d online_policy_ops
-ffffffff81f5f0c0 d __param_str_auto_movable_ratio
-ffffffff81f5f0f0 d online_policy_to_str
-ffffffff81f5f100 d swapin_walk_ops
-ffffffff81f5f150 d cold_walk_ops
-ffffffff81f5f1a0 d madvise_free_walk_ops
-ffffffff81f5f1f0 d swap_aops
-ffffffff81f5f290 d swap_attr_group
-ffffffff81f5f2c0 d Bad_file
-ffffffff81f5f2e0 d Bad_offset
-ffffffff81f5f300 d Unused_offset
-ffffffff81f5f320 d Unused_file
-ffffffff81f5f338 d swaps_proc_ops
-ffffffff81f5f390 d swaps_op
-ffffffff81f5f3b0 d slab_attr_group
-ffffffff81f5f3d8 d slab_sysfs_ops
-ffffffff81f5f3e8 d slab_debugfs_fops
-ffffffff81f5f4f8 d slab_debugfs_sops
-ffffffff81f5f520 d __param_str_sample_interval
-ffffffff81f5f540 d __param_str_sample_interval
-ffffffff81f5f560 d sample_interval_param_ops
-ffffffff81f5f580 d __param_str_skip_covered_thresh
-ffffffff81f5f5a0 d __param_str_deferrable
-ffffffff81f5f5c0 d __param_str_check_on_panic
-ffffffff81f5f5d8 d stats_fops
-ffffffff81f5f6e8 d objects_fops
-ffffffff81f5f7f8 d objects_sops
-ffffffff81f5f818 d str__thp__trace_system_name
-ffffffff81f5f820 d hugepage_attr_group
-ffffffff81f5f848 d split_huge_pages_fops
-ffffffff81f5f958 d str__huge_memory__trace_system_name
-ffffffff81f5f970 d trace_raw_output_mm_khugepaged_scan_pmd.symbols
-ffffffff81f5fb50 d trace_raw_output_mm_collapse_huge_page.symbols
-ffffffff81f5fd30 d trace_raw_output_mm_collapse_huge_page_isolate.symbols
-ffffffff81f5ff10 d trace_raw_output_mm_khugepaged_scan_file.symbols
-ffffffff81f60120 d memory_stats
-ffffffff81f60310 d memcg_vm_event_stat
-ffffffff81f60350 d precharge_walk_ops
-ffffffff81f603a0 d charge_walk_ops
-ffffffff81f603f0 d memcg1_stats
-ffffffff81f60420 d memcg1_stat_names
-ffffffff81f60470 d vmpressure_str_levels
-ffffffff81f60490 d vmpressure_str_modes
-ffffffff81f604a8 d proc_page_owner_operations
-ffffffff81f605b8 d str__page_isolation__trace_system_name
-ffffffff81f605c8 d zsmalloc_mops
-ffffffff81f605e0 d balloon_mops
-ffffffff81f60600 d __param_str_enable
-ffffffff81f60618 d secretmem_vm_ops.llvm.13904012485532120066
-ffffffff81f60688 d secretmem_aops
-ffffffff81f60728 d secretmem_fops
-ffffffff81f60840 d secretmem_iops
-ffffffff81f60900 d str__damon__trace_system_name
-ffffffff81f60990 d __param_str_commit_inputs
-ffffffff81f609b0 d __param_str_min_age
-ffffffff81f609d0 d __param_str_quota_ms
-ffffffff81f609f0 d __param_str_quota_reset_interval_ms
-ffffffff81f60a20 d __param_str_quota_sz
-ffffffff81f60a40 d __param_str_wmarks_interval
-ffffffff81f60a60 d __param_str_wmarks_high
-ffffffff81f60a80 d __param_str_wmarks_mid
-ffffffff81f60aa0 d __param_str_wmarks_low
-ffffffff81f60ac0 d __param_str_aggr_interval
-ffffffff81f60ae0 d __param_str_min_nr_regions
-ffffffff81f60b00 d __param_str_max_nr_regions
-ffffffff81f60b20 d __param_str_monitor_region_start
-ffffffff81f60b50 d __param_str_monitor_region_end
-ffffffff81f60b80 d __param_str_kdamond_pid
-ffffffff81f60ba0 d __param_str_nr_reclaim_tried_regions
-ffffffff81f60bd0 d __param_str_bytes_reclaim_tried_regions
-ffffffff81f60c00 d __param_str_nr_reclaimed_regions
-ffffffff81f60c30 d __param_str_bytes_reclaimed_regions
-ffffffff81f60c60 d __param_str_nr_quota_exceeds
-ffffffff81f60c80 d __param_str_enabled
-ffffffff81f60c98 d enabled_param_ops
-ffffffff81f60cc0 d __param_str_page_reporting_order
-ffffffff81f60ce8 d do_dentry_open.empty_fops
-ffffffff81f60df8 d generic_ro_fops
-ffffffff81f60f40 d alloc_file_pseudo.anon_ops
-ffffffff81f60fc0 d alloc_super.default_op
-ffffffff81f61090 d def_chr_fops
-ffffffff81f611b8 d pipefifo_fops
-ffffffff81f612c8 d anon_pipe_buf_ops
-ffffffff81f612e8 d pipefs_ops
-ffffffff81f613c0 d pipefs_dentry_operations
-ffffffff81f61480 d page_symlink_inode_operations
-ffffffff81f61550 d band_table
-ffffffff81f615a0 d empty_name
-ffffffff81f615b0 d slash_name
-ffffffff81f615c0 d dotdot_name
-ffffffff81f615d0 d empty_aops
-ffffffff81f61680 d inode_init_always.empty_iops
-ffffffff81f61740 d inode_init_always.no_open_fops
-ffffffff81f61880 d bad_inode_ops.llvm.6672885061779265810
-ffffffff81f61940 d bad_file_ops
-ffffffff81f61a50 d mounts_op
-ffffffff81f61a70 d mntns_operations
-ffffffff81f61ac0 d simple_dentry_operations
-ffffffff81f61b40 d simple_dir_operations
-ffffffff81f61c80 d simple_dir_inode_operations
-ffffffff81f61d40 d pseudo_fs_context_ops
-ffffffff81f61d70 d ram_aops
-ffffffff81f61e10 d simple_super_operations
-ffffffff81f61ec0 d alloc_anon_inode.anon_aops
-ffffffff81f61f80 d simple_symlink_inode_operations
-ffffffff81f62040 d empty_dir_inode_operations
-ffffffff81f62100 d empty_dir_operations
-ffffffff81f62240 d generic_ci_dentry_ops
-ffffffff81f622c0 d str__writeback__trace_system_name
-ffffffff81f622d0 d trace_raw_output_writeback_dirty_inode_template.__flags
-ffffffff81f62380 d trace_raw_output_writeback_dirty_inode_template.__flags.31
-ffffffff81f62430 d trace_raw_output_writeback_work_class.symbols
-ffffffff81f624c0 d trace_raw_output_writeback_queue_io.symbols
-ffffffff81f62550 d trace_raw_output_writeback_sb_inodes_requeue.__flags
-ffffffff81f62600 d trace_raw_output_writeback_single_inode_template.__flags
-ffffffff81f626b0 d trace_raw_output_writeback_inode_template.__flags
-ffffffff81f62760 d nosteal_pipe_buf_ops
-ffffffff81f62780 d user_page_pipe_buf_ops
-ffffffff81f627a0 d default_pipe_buf_ops
-ffffffff81f627c0 d page_cache_pipe_buf_ops
-ffffffff81f62800 d ns_dentry_operations
-ffffffff81f62880 d ns_file_operations.llvm.3947638570192195277
-ffffffff81f62990 d nsfs_ops
-ffffffff81f62a40 d legacy_fs_context_ops
-ffffffff81f62a70 d common_set_sb_flag
-ffffffff81f62ad0 d common_clear_sb_flag
-ffffffff81f62b20 d bool_names
-ffffffff81f62b90 d fscontext_fops
-ffffffff81f62ca0 d proc_mounts_operations
-ffffffff81f62db0 d proc_mountinfo_operations
-ffffffff81f62ec0 d proc_mountstats_operations
-ffffffff81f62fe8 d inotify_fsnotify_ops
-ffffffff81f63018 d inotify_fops
-ffffffff81f63128 d eventpoll_fops
-ffffffff81f63240 d path_limits
-ffffffff81f63280 d anon_inodefs_dentry_operations
-ffffffff81f63300 d signalfd_fops
-ffffffff81f63410 d timerfd_fops
-ffffffff81f63520 d eventfd_fops
-ffffffff81f63630 d userfaultfd_fops
-ffffffff81f63740 d userfaultfd_dev_fops
-ffffffff81f63850 d aio_ctx_aops
-ffffffff81f638f0 d aio_ring_fops
-ffffffff81f63a00 d aio_ring_vm_ops
-ffffffff81f63a70 d str__filelock__trace_system_name
-ffffffff81f63a80 d trace_raw_output_locks_get_lock_context.symbols
-ffffffff81f63ac0 d trace_raw_output_filelock_lock.__flags
-ffffffff81f63b80 d trace_raw_output_filelock_lock.symbols
-ffffffff81f63bc0 d trace_raw_output_filelock_lease.__flags
-ffffffff81f63c80 d trace_raw_output_filelock_lease.symbols
-ffffffff81f63cc0 d trace_raw_output_generic_add_lease.__flags
-ffffffff81f63d80 d trace_raw_output_generic_add_lease.symbols
-ffffffff81f63dc0 d trace_raw_output_leases_conflict.__flags
-ffffffff81f63e80 d trace_raw_output_leases_conflict.symbols
-ffffffff81f63ec0 d trace_raw_output_leases_conflict.__flags.61
-ffffffff81f63f80 d trace_raw_output_leases_conflict.symbols.62
-ffffffff81f63fc0 d lease_manager_ops
-ffffffff81f64018 d locks_seq_operations
-ffffffff81f64038 d bm_context_ops
-ffffffff81f64070 d bm_fill_super.bm_files
-ffffffff81f640e8 d bm_status_operations
-ffffffff81f641f8 d bm_register_operations
-ffffffff81f64308 d s_ops
-ffffffff81f643b8 d bm_entry_operations
-ffffffff81f644c8 d posix_acl_access_xattr_handler
-ffffffff81f644f8 d posix_acl_default_xattr_handler
-ffffffff81f64528 d str__iomap__trace_system_name
-ffffffff81f64530 d trace_raw_output_iomap_class.symbols
-ffffffff81f64590 d trace_raw_output_iomap_class.__flags
-ffffffff81f64600 d trace_raw_output_iomap_iter.__flags
-ffffffff81f64670 d proc_pid_maps_operations
-ffffffff81f64780 d proc_pid_smaps_operations
-ffffffff81f64890 d proc_pid_smaps_rollup_operations
-ffffffff81f649a0 d proc_clear_refs_operations
-ffffffff81f64ab0 d proc_pagemap_operations
-ffffffff81f64bc0 d proc_pid_maps_op
-ffffffff81f64be0 d proc_pid_smaps_op
-ffffffff81f64c00 d smaps_walk_ops
-ffffffff81f64c50 d smaps_shmem_walk_ops
-ffffffff81f64ca0 d show_smap_vma_flags.mnemonics
-ffffffff81f64d20 d clear_refs_walk_ops
-ffffffff81f64d70 d pagemap_ops
-ffffffff81f64dc0 d proc_sops
-ffffffff81f64e70 d proc_iter_file_ops
-ffffffff81f64f80 d proc_reg_file_ops
-ffffffff81f650c0 d proc_link_inode_operations
-ffffffff81f65180 d proc_root_inode_operations
-ffffffff81f65240 d proc_root_operations
-ffffffff81f65350 d proc_fs_parameters
-ffffffff81f653d0 d proc_fs_context_ops
-ffffffff81f65440 d proc_pid_link_inode_operations
-ffffffff81f65500 d proc_def_inode_operations
-ffffffff81f655c0 d pid_dentry_operations
-ffffffff81f65640 d proc_tgid_base_operations
-ffffffff81f65750 d tid_base_stuff
-ffffffff81f65d90 d tgid_base_stuff
-ffffffff81f664c0 d proc_tgid_base_inode_operations
-ffffffff81f66580 d proc_environ_operations
-ffffffff81f66690 d proc_auxv_operations
-ffffffff81f667a0 d proc_single_file_operations
-ffffffff81f668b0 d proc_pid_sched_operations
-ffffffff81f669c0 d proc_tid_comm_inode_operations
-ffffffff81f66a80 d proc_pid_set_comm_operations
-ffffffff81f66b90 d proc_pid_cmdline_ops
-ffffffff81f66ca0 d proc_mem_operations
-ffffffff81f66dc0 d proc_attr_dir_inode_operations
-ffffffff81f66e80 d proc_attr_dir_operations
-ffffffff81f66f90 d proc_oom_adj_operations
-ffffffff81f670a0 d proc_oom_score_adj_operations
-ffffffff81f671b0 d proc_loginuid_operations
-ffffffff81f672c0 d proc_sessionid_operations
-ffffffff81f673d0 d lnames
-ffffffff81f674d0 d attr_dir_stuff
-ffffffff81f675c0 d proc_pid_attr_operations
-ffffffff81f67700 d proc_task_inode_operations
-ffffffff81f677c0 d proc_task_operations
-ffffffff81f67900 d proc_map_files_inode_operations
-ffffffff81f679c0 d proc_map_files_operations
-ffffffff81f67ad0 d proc_coredump_filter_operations
-ffffffff81f67be0 d proc_pid_set_timerslack_ns_operations
-ffffffff81f67d00 d proc_tid_base_inode_operations
-ffffffff81f67dc0 d proc_tid_base_operations
-ffffffff81f67f00 d proc_map_files_link_inode_operations
-ffffffff81f67fc0 d tid_map_files_dentry_operations
-ffffffff81f68040 d proc_net_dentry_ops
-ffffffff81f680c0 d proc_dir_operations
-ffffffff81f68200 d proc_dir_inode_operations
-ffffffff81f682c0 d proc_file_inode_operations
-ffffffff81f68380 d proc_seq_ops
-ffffffff81f683d8 d proc_single_ops
-ffffffff81f68440 d proc_misc_dentry_ops
-ffffffff81f684c0 d task_state_array
-ffffffff81f68540 d tid_fd_dentry_operations
-ffffffff81f685c0 d proc_fdinfo_file_operations
-ffffffff81f68700 d proc_fd_inode_operations
-ffffffff81f687c0 d proc_fd_operations
-ffffffff81f68900 d proc_fdinfo_inode_operations
-ffffffff81f689c0 d proc_fdinfo_operations
-ffffffff81f68ad0 d tty_drivers_op
-ffffffff81f68af0 d consoles_op
-ffffffff81f68b10 d cpuinfo_proc_ops
-ffffffff81f68b68 d devinfo_ops
-ffffffff81f68b88 d int_seq_ops
-ffffffff81f68ba8 d stat_proc_ops
-ffffffff81f68c00 d show_irq_gap.zeros
-ffffffff81f68c30 d ns_entries
-ffffffff81f68c40 d proc_ns_link_inode_operations
-ffffffff81f68d00 d proc_ns_dir_inode_operations
-ffffffff81f68dc0 d proc_ns_dir_operations
-ffffffff81f68f00 d proc_self_inode_operations
-ffffffff81f68fc0 d proc_thread_self_inode_operations
-ffffffff81f69080 d register_sysctl_table.null_path.llvm.15577098170544345035
-ffffffff81f690c0 d proc_sys_dir_operations
-ffffffff81f69180 d proc_sys_dir_file_operations
-ffffffff81f692c0 d proc_sys_dentry_operations
-ffffffff81f69340 d proc_sys_inode_operations
-ffffffff81f69400 d proc_sys_file_operations
-ffffffff81f69510 d sysctl_aliases
-ffffffff81f69570 d proc_net_seq_ops
-ffffffff81f695c8 d proc_net_single_ops
-ffffffff81f69640 d proc_net_inode_operations
-ffffffff81f69700 d proc_net_operations
-ffffffff81f69810 d kmsg_proc_ops
-ffffffff81f69868 d kpagecount_proc_ops
-ffffffff81f698c0 d kpageflags_proc_ops
-ffffffff81f69918 d kpagecgroup_proc_ops
-ffffffff81f69970 d kernfs_export_ops
-ffffffff81f699c8 d kernfs_sops
-ffffffff81f69a78 d kernfs_trusted_xattr_handler
-ffffffff81f69aa8 d kernfs_security_xattr_handler
-ffffffff81f69ad8 d kernfs_user_xattr_handler
-ffffffff81f69b40 d kernfs_iops
-ffffffff81f69c00 d kernfs_dir_iops
-ffffffff81f69cc0 d kernfs_dir_fops
-ffffffff81f69e00 d kernfs_dops
-ffffffff81f69e80 d kernfs_file_fops
-ffffffff81f69f90 d kernfs_vm_ops
-ffffffff81f6a000 d kernfs_seq_ops
-ffffffff81f6a040 d kernfs_symlink_iops
-ffffffff81f6a100 d sysfs_prealloc_kfops_rw
-ffffffff81f6a160 d sysfs_prealloc_kfops_ro
-ffffffff81f6a1c0 d sysfs_prealloc_kfops_wo
-ffffffff81f6a220 d sysfs_file_kfops_rw
-ffffffff81f6a280 d sysfs_file_kfops_ro
-ffffffff81f6a2e0 d sysfs_file_kfops_wo
-ffffffff81f6a340 d sysfs_file_kfops_empty
-ffffffff81f6a3a0 d sysfs_bin_kfops_mmap
-ffffffff81f6a400 d sysfs_bin_kfops_rw
-ffffffff81f6a460 d sysfs_bin_kfops_ro
-ffffffff81f6a4c0 d sysfs_bin_kfops_wo
-ffffffff81f6a520 d sysfs_fs_context_ops
-ffffffff81f6a550 d devpts_sops
-ffffffff81f6a600 d tokens
-ffffffff81f6a670 d tokens
-ffffffff81f6a6b0 d tokens
-ffffffff81f6a6f0 d tokens
-ffffffff81f6a768 d ext4_dir_operations
-ffffffff81f6a878 d ext4_iomap_xattr_ops
-ffffffff81f6a888 d ext4_dio_write_ops
-ffffffff81f6a8a0 d ext4_file_vm_ops
-ffffffff81f6a940 d ext4_file_inode_operations
-ffffffff81f6aa00 d ext4_file_operations
-ffffffff81f6ab30 d ext4_journalled_aops
-ffffffff81f6abd0 d ext4_da_aops
-ffffffff81f6ac70 d ext4_aops
-ffffffff81f6ad10 d ext4_iomap_report_ops
-ffffffff81f6ad20 d ext4_iomap_ops
-ffffffff81f6ad30 d ext4_iomap_overwrite_ops
-ffffffff81f6ad40 d ext4_mb_seq_groups_ops
-ffffffff81f6ad60 d ext4_mb_seq_structs_summary_ops
-ffffffff81f6ad80 d ext4_groupinfo_slab_names
-ffffffff81f6adc0 d ext4_dir_inode_operations
-ffffffff81f6ae80 d ext4_special_inode_operations
-ffffffff81f6af40 d trace_raw_output_ext4_da_write_pages_extent.__flags
-ffffffff81f6af90 d trace_raw_output_ext4_request_blocks.__flags
-ffffffff81f6b090 d trace_raw_output_ext4_allocate_blocks.__flags
-ffffffff81f6b190 d trace_raw_output_ext4_free_blocks.__flags
-ffffffff81f6b200 d trace_raw_output_ext4_mballoc_alloc.__flags
-ffffffff81f6b300 d trace_raw_output_ext4__fallocate_mode.__flags
-ffffffff81f6b360 d trace_raw_output_ext4__map_blocks_enter.__flags
-ffffffff81f6b420 d trace_raw_output_ext4__map_blocks_exit.__flags
-ffffffff81f6b4e0 d trace_raw_output_ext4__map_blocks_exit.__flags.252
-ffffffff81f6b530 d trace_raw_output_ext4_ext_handle_unwritten_extents.__flags
-ffffffff81f6b5f0 d trace_raw_output_ext4_get_implied_cluster_alloc_exit.__flags
-ffffffff81f6b640 d trace_raw_output_ext4__es_extent.__flags
-ffffffff81f6b6a0 d trace_raw_output_ext4_es_find_extent_range_exit.__flags
-ffffffff81f6b700 d trace_raw_output_ext4_es_lookup_extent_exit.__flags
-ffffffff81f6b760 d trace_raw_output_ext4_es_insert_delayed_block.__flags
-ffffffff81f6b7c0 d trace_raw_output_ext4_fc_stats.symbols
-ffffffff81f6b870 d trace_raw_output_ext4_fc_stats.symbols.355
-ffffffff81f6b920 d trace_raw_output_ext4_fc_stats.symbols.356
-ffffffff81f6b9d0 d trace_raw_output_ext4_fc_stats.symbols.357
-ffffffff81f6ba80 d trace_raw_output_ext4_fc_stats.symbols.358
-ffffffff81f6bb30 d trace_raw_output_ext4_fc_stats.symbols.359
-ffffffff81f6bbe0 d trace_raw_output_ext4_fc_stats.symbols.360
-ffffffff81f6bc90 d trace_raw_output_ext4_fc_stats.symbols.361
-ffffffff81f6bd40 d trace_raw_output_ext4_fc_stats.symbols.362
-ffffffff81f6bdf0 d trace_raw_output_ext4_fc_stats.symbols.363
-ffffffff81f6bea0 d err_translation
-ffffffff81f6bf20 d ext4_mount_opts
-ffffffff81f6c140 d ext4_param_specs
-ffffffff81f6cba0 d ext4_param_errors
-ffffffff81f6cbe0 d ext4_param_data
-ffffffff81f6cc20 d ext4_param_data_err
-ffffffff81f6cc50 d ext4_param_jqfmt
-ffffffff81f6cc90 d ext4_param_dax
-ffffffff81f6ccd0 d ext4_context_ops
-ffffffff81f6cd00 d ext4_sops
-ffffffff81f6cdb0 d ext4_export_ops
-ffffffff81f6ce40 d ext4_encrypted_symlink_inode_operations
-ffffffff81f6cf00 d ext4_symlink_inode_operations
-ffffffff81f6cfc0 d ext4_fast_symlink_inode_operations
-ffffffff81f6d080 d proc_dirname
-ffffffff81f6d088 d ext4_attr_ops
-ffffffff81f6d098 d ext4_group
-ffffffff81f6d0c0 d ext4_feat_group
-ffffffff81f6d0f0 d ext4_xattr_handler_map
-ffffffff81f6d148 d ext4_xattr_hurd_handler
-ffffffff81f6d178 d ext4_xattr_trusted_handler
-ffffffff81f6d1a8 d ext4_xattr_user_handler
-ffffffff81f6d1d8 d ext4_xattr_security_handler
-ffffffff81f6d208 d str__jbd2__trace_system_name
-ffffffff81f6d210 d jbd2_info_proc_ops
-ffffffff81f6d268 d jbd2_seq_info_ops
-ffffffff81f6d290 d jbd2_slab_names
-ffffffff81f6d300 d ramfs_dir_inode_operations
-ffffffff81f6d3c0 d ramfs_fs_parameters
-ffffffff81f6d400 d ramfs_context_ops
-ffffffff81f6d430 d ramfs_ops
-ffffffff81f6d4e0 d ramfs_file_operations
-ffffffff81f6d600 d ramfs_file_inode_operations
-ffffffff81f6d6c0 d utf8_table
-ffffffff81f6d7a0 d charset2lower
-ffffffff81f6d8a0 d charset2lower
-ffffffff81f6d9a0 d charset2lower
-ffffffff81f6daa0 d charset2lower
-ffffffff81f6dba0 d charset2lower
-ffffffff81f6dca0 d charset2lower
-ffffffff81f6dda0 d charset2lower
-ffffffff81f6dea0 d charset2lower
-ffffffff81f6dfa0 d charset2lower
-ffffffff81f6e0a0 d charset2lower
-ffffffff81f6e1a0 d charset2lower
-ffffffff81f6e2a0 d charset2lower
-ffffffff81f6e3a0 d charset2lower
-ffffffff81f6e4a0 d charset2lower
-ffffffff81f6e5a0 d charset2lower
-ffffffff81f6e6a0 d charset2lower
-ffffffff81f6e7a0 d charset2lower
-ffffffff81f6e8a0 d charset2lower
-ffffffff81f6e9a0 d charset2lower
-ffffffff81f6eaa0 d charset2lower
-ffffffff81f6eba0 d charset2lower
-ffffffff81f6eca0 d charset2lower
-ffffffff81f6eda0 d charset2lower
-ffffffff81f6eea0 d charset2lower
-ffffffff81f6efa0 d charset2lower
-ffffffff81f6f0a0 d charset2lower
-ffffffff81f6f1a0 d charset2lower
-ffffffff81f6f2a0 d charset2lower
-ffffffff81f6f3a0 d charset2lower
-ffffffff81f6f4a0 d charset2lower
-ffffffff81f6f5a0 d charset2lower
-ffffffff81f6f6a0 d charset2lower
-ffffffff81f6f7a0 d charset2lower
-ffffffff81f6f8a0 d charset2lower
-ffffffff81f6f9a0 d charset2lower
-ffffffff81f6faa0 d charset2lower
-ffffffff81f6fba0 d charset2lower
-ffffffff81f6fca0 d charset2lower
-ffffffff81f6fda0 d charset2lower
-ffffffff81f6fea0 d charset2lower
-ffffffff81f6ffa0 d charset2lower
-ffffffff81f700a0 d charset2lower
-ffffffff81f701a0 d charset2lower
-ffffffff81f702a0 d charset2lower
-ffffffff81f703a0 d charset2lower
-ffffffff81f704a0 d charset2lower
-ffffffff81f705a0 d charset2lower
-ffffffff81f706a0 d charset2lower
-ffffffff81f707a0 d charset2lower
-ffffffff81f708a0 d charset2upper
-ffffffff81f709a0 d charset2upper
-ffffffff81f70aa0 d charset2upper
-ffffffff81f70ba0 d charset2upper
-ffffffff81f70ca0 d charset2upper
-ffffffff81f70da0 d charset2upper
-ffffffff81f70ea0 d charset2upper
-ffffffff81f70fa0 d charset2upper
-ffffffff81f710a0 d charset2upper
-ffffffff81f711a0 d charset2upper
-ffffffff81f712a0 d charset2upper
-ffffffff81f713a0 d charset2upper
-ffffffff81f714a0 d charset2upper
-ffffffff81f715a0 d charset2upper
-ffffffff81f716a0 d charset2upper
-ffffffff81f717a0 d charset2upper
-ffffffff81f718a0 d charset2upper
-ffffffff81f719a0 d charset2upper
-ffffffff81f71aa0 d charset2upper
-ffffffff81f71ba0 d charset2upper
-ffffffff81f71ca0 d charset2upper
-ffffffff81f71da0 d charset2upper
-ffffffff81f71ea0 d charset2upper
-ffffffff81f71fa0 d charset2upper
-ffffffff81f720a0 d charset2upper
-ffffffff81f721a0 d charset2upper
-ffffffff81f722a0 d charset2upper
-ffffffff81f723a0 d charset2upper
-ffffffff81f724a0 d charset2upper
-ffffffff81f725a0 d charset2upper
-ffffffff81f726a0 d charset2upper
-ffffffff81f727a0 d charset2upper
-ffffffff81f728a0 d charset2upper
-ffffffff81f729a0 d charset2upper
-ffffffff81f72aa0 d charset2upper
-ffffffff81f72ba0 d charset2upper
-ffffffff81f72ca0 d charset2upper
-ffffffff81f72da0 d charset2upper
-ffffffff81f72ea0 d charset2upper
-ffffffff81f72fa0 d charset2upper
-ffffffff81f730a0 d charset2upper
-ffffffff81f731a0 d charset2upper
-ffffffff81f732a0 d charset2upper
-ffffffff81f733a0 d charset2upper
-ffffffff81f734a0 d charset2upper
-ffffffff81f735a0 d charset2upper
-ffffffff81f736a0 d charset2upper
-ffffffff81f737a0 d charset2upper
-ffffffff81f738a0 d charset2upper
-ffffffff81f739a0 d page00
-ffffffff81f73aa0 d page00
-ffffffff81f73ba0 d page00
-ffffffff81f73ca0 d page00
-ffffffff81f73da0 d page00
-ffffffff81f73ea0 d page00
-ffffffff81f73fa0 d page00
-ffffffff81f740a0 d page00
-ffffffff81f741a0 d page00
-ffffffff81f742a0 d page00
-ffffffff81f743a0 d page00
-ffffffff81f744a0 d page00
-ffffffff81f745a0 d page00
-ffffffff81f746a0 d page00
-ffffffff81f747a0 d page00
-ffffffff81f748a0 d page00
-ffffffff81f749a0 d page00
-ffffffff81f74aa0 d page00
-ffffffff81f74ba0 d page00
-ffffffff81f74ca0 d page00
-ffffffff81f74da0 d page00
-ffffffff81f74ea0 d page00
-ffffffff81f74fa0 d page00
-ffffffff81f750a0 d page00
-ffffffff81f751a0 d page00
-ffffffff81f752a0 d page00
-ffffffff81f753a0 d page00
-ffffffff81f754a0 d page00
-ffffffff81f755a0 d page00
-ffffffff81f756a0 d page00
-ffffffff81f757a0 d page00
-ffffffff81f758a0 d page00
-ffffffff81f759a0 d page00
-ffffffff81f75aa0 d page00
-ffffffff81f75ba0 d page00
-ffffffff81f75ca0 d page00
-ffffffff81f75da0 d page00
-ffffffff81f75ea0 d page00
-ffffffff81f75fa0 d page00
-ffffffff81f760a0 d page00
-ffffffff81f761a0 d page00
-ffffffff81f762a0 d page00
-ffffffff81f763a0 d page00
-ffffffff81f764a0 d page00
-ffffffff81f765a0 d page00
-ffffffff81f766a0 d page_uni2charset
-ffffffff81f76ea0 d page_uni2charset
-ffffffff81f776a0 d page_uni2charset
-ffffffff81f77ea0 d page_uni2charset
-ffffffff81f786a0 d page_uni2charset
-ffffffff81f78ea0 d page_uni2charset
-ffffffff81f796a0 d page_uni2charset
-ffffffff81f79ea0 d page_uni2charset
-ffffffff81f7a6a0 d page_uni2charset
-ffffffff81f7aea0 d page_uni2charset
-ffffffff81f7b6a0 d page_uni2charset
-ffffffff81f7bea0 d page_uni2charset
-ffffffff81f7c6a0 d page_uni2charset
-ffffffff81f7cea0 d page_uni2charset
-ffffffff81f7d6a0 d page_uni2charset
-ffffffff81f7dea0 d page_uni2charset
-ffffffff81f7e6a0 d page_uni2charset
-ffffffff81f7eea0 d page_uni2charset
-ffffffff81f7f6a0 d page_uni2charset
-ffffffff81f7fea0 d page_uni2charset
-ffffffff81f806a0 d page_uni2charset
-ffffffff81f80ea0 d page_uni2charset
-ffffffff81f816a0 d page_uni2charset
-ffffffff81f81ea0 d page_uni2charset
-ffffffff81f826a0 d page_uni2charset
-ffffffff81f82ea0 d page_uni2charset
-ffffffff81f836a0 d page_uni2charset
-ffffffff81f83ea0 d page_uni2charset
-ffffffff81f846a0 d page_uni2charset
-ffffffff81f84ea0 d page_uni2charset
-ffffffff81f856a0 d page_uni2charset
-ffffffff81f85ea0 d page_uni2charset
-ffffffff81f866a0 d page_uni2charset
-ffffffff81f86ea0 d page_uni2charset
-ffffffff81f876a0 d page_uni2charset
-ffffffff81f87ea0 d page_uni2charset
-ffffffff81f886a0 d page_uni2charset
-ffffffff81f88ea0 d page_uni2charset
-ffffffff81f896a0 d page_uni2charset
-ffffffff81f89ea0 d page_uni2charset
-ffffffff81f8a6a0 d page_uni2charset
-ffffffff81f8aea0 d page_uni2charset
-ffffffff81f8b6a0 d page_uni2charset
-ffffffff81f8bea0 d page_uni2charset
-ffffffff81f8c6a0 d page_uni2charset
-ffffffff81f8cea0 d page_uni2charset
-ffffffff81f8d6a0 d page_uni2charset
-ffffffff81f8dea0 d page_uni2charset
-ffffffff81f8e6a0 d page_uni2charset
-ffffffff81f8eea0 d charset2uni
-ffffffff81f8f0a0 d charset2uni
-ffffffff81f8f2a0 d charset2uni
-ffffffff81f8f4a0 d charset2uni
-ffffffff81f8f6a0 d charset2uni
-ffffffff81f8f8a0 d charset2uni
-ffffffff81f8faa0 d charset2uni
-ffffffff81f8fca0 d charset2uni
-ffffffff81f8fea0 d charset2uni
-ffffffff81f900a0 d charset2uni
-ffffffff81f902a0 d charset2uni
-ffffffff81f904a0 d charset2uni
-ffffffff81f906a0 d charset2uni
-ffffffff81f908a0 d charset2uni
-ffffffff81f90aa0 d charset2uni
-ffffffff81f90ca0 d charset2uni
-ffffffff81f90ea0 d charset2uni
-ffffffff81f910a0 d charset2uni
-ffffffff81f912a0 d charset2uni
-ffffffff81f914a0 d charset2uni
-ffffffff81f916a0 d charset2uni
-ffffffff81f918a0 d charset2uni
-ffffffff81f91aa0 d charset2uni
-ffffffff81f91ca0 d charset2uni
-ffffffff81f91ea0 d charset2uni
-ffffffff81f920a0 d charset2uni
-ffffffff81f922a0 d charset2uni
-ffffffff81f924a0 d charset2uni
-ffffffff81f926a0 d charset2uni
-ffffffff81f928a0 d charset2uni
-ffffffff81f92aa0 d charset2uni
-ffffffff81f92ca0 d charset2uni
-ffffffff81f92ea0 d charset2uni
-ffffffff81f930a0 d charset2uni
-ffffffff81f932a0 d charset2uni
-ffffffff81f934a0 d charset2uni
-ffffffff81f936a0 d charset2uni
-ffffffff81f938a0 d charset2uni
-ffffffff81f93aa0 d charset2uni
-ffffffff81f93ca0 d charset2uni
-ffffffff81f93ea0 d charset2uni
-ffffffff81f940a0 d charset2uni
-ffffffff81f942a0 d charset2uni
-ffffffff81f944a0 d charset2uni
-ffffffff81f946a0 d charset2uni
-ffffffff81f948a0 d page01
-ffffffff81f949a0 d page01
-ffffffff81f94aa0 d page01
-ffffffff81f94ba0 d page01
-ffffffff81f94ca0 d page01
-ffffffff81f94da0 d page01
-ffffffff81f94ea0 d page01
-ffffffff81f94fa0 d page01
-ffffffff81f950a0 d page01
-ffffffff81f951a0 d page01
-ffffffff81f952a0 d page01
-ffffffff81f953a0 d page01
-ffffffff81f954a0 d page01
-ffffffff81f955a0 d page01
-ffffffff81f956a0 d page01
-ffffffff81f957a0 d page01
-ffffffff81f958a0 d page01
-ffffffff81f959a0 d page01
-ffffffff81f95aa0 d page01
-ffffffff81f95ba0 d page01
-ffffffff81f95ca0 d page01
-ffffffff81f95da0 d page01
-ffffffff81f95ea0 d page01
-ffffffff81f95fa0 d page01
-ffffffff81f960a0 d page01
-ffffffff81f961a0 d page01
-ffffffff81f962a0 d page01
-ffffffff81f963a0 d page01
-ffffffff81f964a0 d page01
-ffffffff81f965a0 d page03
-ffffffff81f966a0 d page03
-ffffffff81f967a0 d page03
-ffffffff81f968a0 d page03
-ffffffff81f969a0 d page03
-ffffffff81f96aa0 d page03
-ffffffff81f96ba0 d page03
-ffffffff81f96ca0 d page03
-ffffffff81f96da0 d page03
-ffffffff81f96ea0 d page03
-ffffffff81f96fa0 d page03
-ffffffff81f970a0 d page03
-ffffffff81f971a0 d page03
-ffffffff81f972a0 d page03
-ffffffff81f973a0 d page03
-ffffffff81f974a0 d page03
-ffffffff81f975a0 d page03
-ffffffff81f976a0 d page20
-ffffffff81f977a0 d page20
-ffffffff81f978a0 d page20
-ffffffff81f979a0 d page20
-ffffffff81f97aa0 d page20
-ffffffff81f97ba0 d page20
-ffffffff81f97ca0 d page20
-ffffffff81f97da0 d page20
-ffffffff81f97ea0 d page20
-ffffffff81f97fa0 d page20
-ffffffff81f980a0 d page20
-ffffffff81f981a0 d page20
-ffffffff81f982a0 d page20
-ffffffff81f983a0 d page20
-ffffffff81f984a0 d page20
-ffffffff81f985a0 d page20
-ffffffff81f986a0 d page20
-ffffffff81f987a0 d page20
-ffffffff81f988a0 d page20
-ffffffff81f989a0 d page20
-ffffffff81f98aa0 d page20
-ffffffff81f98ba0 d page20
-ffffffff81f98ca0 d page20
-ffffffff81f98da0 d page20
-ffffffff81f98ea0 d page20
-ffffffff81f98fa0 d page20
-ffffffff81f990a0 d page20
-ffffffff81f991a0 d page20
-ffffffff81f992a0 d page22
-ffffffff81f993a0 d page22
-ffffffff81f994a0 d page22
-ffffffff81f995a0 d page22
-ffffffff81f996a0 d page22
-ffffffff81f997a0 d page22
-ffffffff81f998a0 d page22
-ffffffff81f999a0 d page22
-ffffffff81f99aa0 d page22
-ffffffff81f99ba0 d page22
-ffffffff81f99ca0 d page22
-ffffffff81f99da0 d page22
-ffffffff81f99ea0 d page22
-ffffffff81f99fa0 d page22
-ffffffff81f9a0a0 d page22
-ffffffff81f9a1a0 d page22
-ffffffff81f9a2a0 d page22
-ffffffff81f9a3a0 d page22
-ffffffff81f9a4a0 d page22
-ffffffff81f9a5a0 d page22
-ffffffff81f9a6a0 d page22
-ffffffff81f9a7a0 d page22
-ffffffff81f9a8a0 d page23
-ffffffff81f9a9a0 d page23
-ffffffff81f9aaa0 d page23
-ffffffff81f9aba0 d page23
-ffffffff81f9aca0 d page23
-ffffffff81f9ada0 d page23
-ffffffff81f9aea0 d page23
-ffffffff81f9afa0 d page23
-ffffffff81f9b0a0 d page25
-ffffffff81f9b1a0 d page25
-ffffffff81f9b2a0 d page25
-ffffffff81f9b3a0 d page25
-ffffffff81f9b4a0 d page25
-ffffffff81f9b5a0 d page25
-ffffffff81f9b6a0 d page25
-ffffffff81f9b7a0 d page25
-ffffffff81f9b8a0 d page25
-ffffffff81f9b9a0 d page25
-ffffffff81f9baa0 d page25
-ffffffff81f9bba0 d page25
-ffffffff81f9bca0 d page25
-ffffffff81f9bda0 d page25
-ffffffff81f9bea0 d page25
-ffffffff81f9bfa0 d page25
-ffffffff81f9c0a0 d page25
-ffffffff81f9c1a0 d page25
-ffffffff81f9c2a0 d page25
-ffffffff81f9c3a0 d page25
-ffffffff81f9c4a0 d page25
-ffffffff81f9c5a0 d page25
-ffffffff81f9c6a0 d page25
-ffffffff81f9c7a0 d page25
-ffffffff81f9c8a0 d page02
-ffffffff81f9c9a0 d page02
-ffffffff81f9caa0 d page02
-ffffffff81f9cba0 d page02
-ffffffff81f9cca0 d page02
-ffffffff81f9cda0 d page02
-ffffffff81f9cea0 d page02
-ffffffff81f9cfa0 d page02
-ffffffff81f9d0a0 d page02
-ffffffff81f9d1a0 d page02
-ffffffff81f9d2a0 d page02
-ffffffff81f9d3a0 d page02
-ffffffff81f9d4a0 d page02
-ffffffff81f9d5a0 d page02
-ffffffff81f9d6a0 d page04
-ffffffff81f9d7a0 d page04
-ffffffff81f9d8a0 d page04
-ffffffff81f9d9a0 d page04
-ffffffff81f9daa0 d page04
-ffffffff81f9dba0 d page04
-ffffffff81f9dca0 d page04
-ffffffff81f9dda0 d page21
-ffffffff81f9dea0 d page21
-ffffffff81f9dfa0 d page21
-ffffffff81f9e0a0 d page21
-ffffffff81f9e1a0 d page21
-ffffffff81f9e2a0 d page21
-ffffffff81f9e3a0 d page21
-ffffffff81f9e4a0 d page21
-ffffffff81f9e5a0 d page21
-ffffffff81f9e6a0 d page21
-ffffffff81f9e7a0 d page21
-ffffffff81f9e8a0 d page21
-ffffffff81f9e9a0 d page21
-ffffffff81f9eaa0 d page21
-ffffffff81f9eba0 d page21
-ffffffff81f9eca0 d page21
-ffffffff81f9eda0 d page21
-ffffffff81f9eea0 d page05
-ffffffff81f9efa0 d page05
-ffffffff81f9f0a0 d pagefe
-ffffffff81f9f1a0 d page06
-ffffffff81f9f2a0 d page06
-ffffffff81f9f3a0 d page0e
-ffffffff81f9f4a0 d u2c_30
-ffffffff81f9f6a0 d u2c_30
-ffffffff81f9f8a0 d u2c_30
-ffffffff81f9faa0 d u2c_30
-ffffffff81f9fca0 d u2c_4E
-ffffffff81f9fea0 d u2c_4E
-ffffffff81fa00a0 d u2c_4E
-ffffffff81fa02a0 d u2c_4E
-ffffffff81fa04a0 d u2c_4F
-ffffffff81fa06a0 d u2c_4F
-ffffffff81fa08a0 d u2c_4F
-ffffffff81fa0aa0 d u2c_4F
-ffffffff81fa0ca0 d u2c_51
-ffffffff81fa0ea0 d u2c_51
-ffffffff81fa10a0 d u2c_51
-ffffffff81fa12a0 d u2c_51
-ffffffff81fa14a0 d u2c_52
-ffffffff81fa16a0 d u2c_52
-ffffffff81fa18a0 d u2c_52
-ffffffff81fa1aa0 d u2c_52
-ffffffff81fa1ca0 d u2c_54
-ffffffff81fa1ea0 d u2c_54
-ffffffff81fa20a0 d u2c_54
-ffffffff81fa22a0 d u2c_54
-ffffffff81fa24a0 d u2c_55
-ffffffff81fa26a0 d u2c_55
-ffffffff81fa28a0 d u2c_55
-ffffffff81fa2aa0 d u2c_55
-ffffffff81fa2ca0 d u2c_56
-ffffffff81fa2ea0 d u2c_56
-ffffffff81fa30a0 d u2c_56
-ffffffff81fa32a0 d u2c_56
-ffffffff81fa34a0 d u2c_57
-ffffffff81fa36a0 d u2c_57
-ffffffff81fa38a0 d u2c_57
-ffffffff81fa3aa0 d u2c_57
-ffffffff81fa3ca0 d u2c_58
-ffffffff81fa3ea0 d u2c_58
-ffffffff81fa40a0 d u2c_58
-ffffffff81fa42a0 d u2c_58
-ffffffff81fa44a0 d u2c_59
-ffffffff81fa46a0 d u2c_59
-ffffffff81fa48a0 d u2c_59
-ffffffff81fa4aa0 d u2c_59
-ffffffff81fa4ca0 d u2c_5B
-ffffffff81fa4ea0 d u2c_5B
-ffffffff81fa50a0 d u2c_5B
-ffffffff81fa52a0 d u2c_5B
-ffffffff81fa54a0 d u2c_5C
-ffffffff81fa56a0 d u2c_5C
-ffffffff81fa58a0 d u2c_5C
-ffffffff81fa5aa0 d u2c_5C
-ffffffff81fa5ca0 d u2c_5D
-ffffffff81fa5ea0 d u2c_5D
-ffffffff81fa60a0 d u2c_5D
-ffffffff81fa62a0 d u2c_5D
-ffffffff81fa64a0 d u2c_5E
-ffffffff81fa66a0 d u2c_5E
-ffffffff81fa68a0 d u2c_5E
-ffffffff81fa6aa0 d u2c_5E
-ffffffff81fa6ca0 d u2c_5F
-ffffffff81fa6ea0 d u2c_5F
-ffffffff81fa70a0 d u2c_5F
-ffffffff81fa72a0 d u2c_5F
-ffffffff81fa74a0 d u2c_61
-ffffffff81fa76a0 d u2c_61
-ffffffff81fa78a0 d u2c_61
-ffffffff81fa7aa0 d u2c_61
-ffffffff81fa7ca0 d u2c_62
-ffffffff81fa7ea0 d u2c_62
-ffffffff81fa80a0 d u2c_62
-ffffffff81fa82a0 d u2c_62
-ffffffff81fa84a0 d u2c_64
-ffffffff81fa86a0 d u2c_64
-ffffffff81fa88a0 d u2c_64
-ffffffff81fa8aa0 d u2c_64
-ffffffff81fa8ca0 d u2c_66
-ffffffff81fa8ea0 d u2c_66
-ffffffff81fa90a0 d u2c_66
-ffffffff81fa92a0 d u2c_66
-ffffffff81fa94a0 d u2c_67
-ffffffff81fa96a0 d u2c_67
-ffffffff81fa98a0 d u2c_67
-ffffffff81fa9aa0 d u2c_67
-ffffffff81fa9ca0 d u2c_69
-ffffffff81fa9ea0 d u2c_69
-ffffffff81faa0a0 d u2c_69
-ffffffff81faa2a0 d u2c_69
-ffffffff81faa4a0 d u2c_6D
-ffffffff81faa6a0 d u2c_6D
-ffffffff81faa8a0 d u2c_6D
-ffffffff81faaaa0 d u2c_6D
-ffffffff81faaca0 d u2c_6E
-ffffffff81faaea0 d u2c_6E
-ffffffff81fab0a0 d u2c_6E
-ffffffff81fab2a0 d u2c_6E
-ffffffff81fab4a0 d u2c_6F
-ffffffff81fab6a0 d u2c_6F
-ffffffff81fab8a0 d u2c_6F
-ffffffff81fabaa0 d u2c_6F
-ffffffff81fabca0 d u2c_70
-ffffffff81fabea0 d u2c_70
-ffffffff81fac0a0 d u2c_70
-ffffffff81fac2a0 d u2c_70
-ffffffff81fac4a0 d u2c_71
-ffffffff81fac6a0 d u2c_71
-ffffffff81fac8a0 d u2c_71
-ffffffff81facaa0 d u2c_71
-ffffffff81facca0 d u2c_72
-ffffffff81facea0 d u2c_72
-ffffffff81fad0a0 d u2c_72
-ffffffff81fad2a0 d u2c_72
-ffffffff81fad4a0 d u2c_73
-ffffffff81fad6a0 d u2c_73
-ffffffff81fad8a0 d u2c_73
-ffffffff81fadaa0 d u2c_73
-ffffffff81fadca0 d u2c_75
-ffffffff81fadea0 d u2c_75
-ffffffff81fae0a0 d u2c_75
-ffffffff81fae2a0 d u2c_75
-ffffffff81fae4a0 d u2c_76
-ffffffff81fae6a0 d u2c_76
-ffffffff81fae8a0 d u2c_76
-ffffffff81faeaa0 d u2c_76
-ffffffff81faeca0 d u2c_77
-ffffffff81faeea0 d u2c_77
-ffffffff81faf0a0 d u2c_77
-ffffffff81faf2a0 d u2c_77
-ffffffff81faf4a0 d u2c_78
-ffffffff81faf6a0 d u2c_78
-ffffffff81faf8a0 d u2c_78
-ffffffff81fafaa0 d u2c_78
-ffffffff81fafca0 d u2c_7A
-ffffffff81fafea0 d u2c_7A
-ffffffff81fb00a0 d u2c_7A
-ffffffff81fb02a0 d u2c_7A
-ffffffff81fb04a0 d u2c_7C
-ffffffff81fb06a0 d u2c_7C
-ffffffff81fb08a0 d u2c_7C
-ffffffff81fb0aa0 d u2c_7C
-ffffffff81fb0ca0 d u2c_7F
-ffffffff81fb0ea0 d u2c_7F
-ffffffff81fb10a0 d u2c_7F
-ffffffff81fb12a0 d u2c_7F
-ffffffff81fb14a0 d u2c_80
-ffffffff81fb16a0 d u2c_80
-ffffffff81fb18a0 d u2c_80
-ffffffff81fb1aa0 d u2c_80
-ffffffff81fb1ca0 d u2c_81
-ffffffff81fb1ea0 d u2c_81
-ffffffff81fb20a0 d u2c_81
-ffffffff81fb22a0 d u2c_81
-ffffffff81fb24a0 d u2c_83
-ffffffff81fb26a0 d u2c_83
-ffffffff81fb28a0 d u2c_83
-ffffffff81fb2aa0 d u2c_83
-ffffffff81fb2ca0 d u2c_84
-ffffffff81fb2ea0 d u2c_84
-ffffffff81fb30a0 d u2c_84
-ffffffff81fb32a0 d u2c_84
-ffffffff81fb34a0 d u2c_85
-ffffffff81fb36a0 d u2c_85
-ffffffff81fb38a0 d u2c_85
-ffffffff81fb3aa0 d u2c_85
-ffffffff81fb3ca0 d u2c_86
-ffffffff81fb3ea0 d u2c_86
-ffffffff81fb40a0 d u2c_86
-ffffffff81fb42a0 d u2c_86
-ffffffff81fb44a0 d u2c_87
-ffffffff81fb46a0 d u2c_87
-ffffffff81fb48a0 d u2c_87
-ffffffff81fb4aa0 d u2c_87
-ffffffff81fb4ca0 d u2c_88
-ffffffff81fb4ea0 d u2c_88
-ffffffff81fb50a0 d u2c_88
-ffffffff81fb52a0 d u2c_88
-ffffffff81fb54a0 d u2c_8A
-ffffffff81fb56a0 d u2c_8A
-ffffffff81fb58a0 d u2c_8A
-ffffffff81fb5aa0 d u2c_8A
-ffffffff81fb5ca0 d u2c_8C
-ffffffff81fb5ea0 d u2c_8C
-ffffffff81fb60a0 d u2c_8C
-ffffffff81fb62a0 d u2c_8C
-ffffffff81fb64a0 d u2c_8D
-ffffffff81fb66a0 d u2c_8D
-ffffffff81fb68a0 d u2c_8D
-ffffffff81fb6aa0 d u2c_8D
-ffffffff81fb6ca0 d u2c_8E
-ffffffff81fb6ea0 d u2c_8E
-ffffffff81fb70a0 d u2c_8E
-ffffffff81fb72a0 d u2c_8E
-ffffffff81fb74a0 d u2c_8F
-ffffffff81fb76a0 d u2c_8F
-ffffffff81fb78a0 d u2c_8F
-ffffffff81fb7aa0 d u2c_8F
-ffffffff81fb7ca0 d u2c_90
-ffffffff81fb7ea0 d u2c_90
-ffffffff81fb80a0 d u2c_90
-ffffffff81fb82a0 d u2c_90
-ffffffff81fb84a0 d u2c_91
-ffffffff81fb86a0 d u2c_91
-ffffffff81fb88a0 d u2c_91
-ffffffff81fb8aa0 d u2c_91
-ffffffff81fb8ca0 d u2c_92
-ffffffff81fb8ea0 d u2c_92
-ffffffff81fb90a0 d u2c_92
-ffffffff81fb92a0 d u2c_92
-ffffffff81fb94a0 d u2c_97
-ffffffff81fb96a0 d u2c_97
-ffffffff81fb98a0 d u2c_97
-ffffffff81fb9aa0 d u2c_97
-ffffffff81fb9ca0 d u2c_98
-ffffffff81fb9ea0 d u2c_98
-ffffffff81fba0a0 d u2c_98
-ffffffff81fba2a0 d u2c_98
-ffffffff81fba4a0 d u2c_99
-ffffffff81fba6a0 d u2c_99
-ffffffff81fba8a0 d u2c_99
-ffffffff81fbaaa0 d u2c_99
-ffffffff81fbaca0 d u2c_9D
-ffffffff81fbaea0 d u2c_9D
-ffffffff81fbb0a0 d u2c_9D
-ffffffff81fbb2a0 d u2c_9D
-ffffffff81fbb4a0 d u2c_9E
-ffffffff81fbb6a0 d u2c_9E
-ffffffff81fbb8a0 d u2c_9E
-ffffffff81fbbaa0 d u2c_9E
-ffffffff81fbbca0 d u2c_DC
-ffffffff81fbbea0 d u2c_DC
-ffffffff81fbc0a0 d u2c_DC
-ffffffff81fbc2a0 d u2c_DC
-ffffffff81fbc4a0 d u2c_03
-ffffffff81fbc6a0 d u2c_03
-ffffffff81fbc8a0 d u2c_03
-ffffffff81fbcaa0 d u2c_03
-ffffffff81fbcca0 d u2c_04
-ffffffff81fbcea0 d u2c_04
-ffffffff81fbd0a0 d u2c_04
-ffffffff81fbd2a0 d u2c_20
-ffffffff81fbd4a0 d u2c_20
-ffffffff81fbd6a0 d u2c_20
-ffffffff81fbd8a0 d u2c_20
-ffffffff81fbdaa0 d u2c_21
-ffffffff81fbdca0 d u2c_21
-ffffffff81fbdea0 d u2c_21
-ffffffff81fbe0a0 d u2c_21
-ffffffff81fbe2a0 d u2c_22
-ffffffff81fbe4a0 d u2c_22
-ffffffff81fbe6a0 d u2c_22
-ffffffff81fbe8a0 d u2c_22
-ffffffff81fbeaa0 d u2c_23
-ffffffff81fbeca0 d u2c_23
-ffffffff81fbeea0 d u2c_23
-ffffffff81fbf0a0 d u2c_23
-ffffffff81fbf2a0 d u2c_24
-ffffffff81fbf4a0 d u2c_24
-ffffffff81fbf6a0 d u2c_24
-ffffffff81fbf8a0 d u2c_25
-ffffffff81fbfaa0 d u2c_25
-ffffffff81fbfca0 d u2c_25
-ffffffff81fbfea0 d u2c_25
-ffffffff81fc00a0 d u2c_26
-ffffffff81fc02a0 d u2c_26
-ffffffff81fc04a0 d u2c_26
-ffffffff81fc06a0 d u2c_26
-ffffffff81fc08a0 d u2c_32
-ffffffff81fc0aa0 d u2c_32
-ffffffff81fc0ca0 d u2c_32
-ffffffff81fc0ea0 d u2c_32
-ffffffff81fc10a0 d u2c_33
-ffffffff81fc12a0 d u2c_33
-ffffffff81fc14a0 d u2c_33
-ffffffff81fc16a0 d u2c_33
-ffffffff81fc18a0 d u2c_50
-ffffffff81fc1aa0 d u2c_50
-ffffffff81fc1ca0 d u2c_50
-ffffffff81fc1ea0 d u2c_50
-ffffffff81fc20a0 d u2c_53
-ffffffff81fc22a0 d u2c_53
-ffffffff81fc24a0 d u2c_53
-ffffffff81fc26a0 d u2c_53
-ffffffff81fc28a0 d u2c_5A
-ffffffff81fc2aa0 d u2c_5A
-ffffffff81fc2ca0 d u2c_5A
-ffffffff81fc2ea0 d u2c_5A
-ffffffff81fc30a0 d u2c_60
-ffffffff81fc32a0 d u2c_60
-ffffffff81fc34a0 d u2c_60
-ffffffff81fc36a0 d u2c_60
-ffffffff81fc38a0 d u2c_63
-ffffffff81fc3aa0 d u2c_63
-ffffffff81fc3ca0 d u2c_63
-ffffffff81fc3ea0 d u2c_63
-ffffffff81fc40a0 d u2c_65
-ffffffff81fc42a0 d u2c_65
-ffffffff81fc44a0 d u2c_65
-ffffffff81fc46a0 d u2c_65
-ffffffff81fc48a0 d u2c_68
-ffffffff81fc4aa0 d u2c_68
-ffffffff81fc4ca0 d u2c_68
-ffffffff81fc4ea0 d u2c_68
-ffffffff81fc50a0 d u2c_6A
-ffffffff81fc52a0 d u2c_6A
-ffffffff81fc54a0 d u2c_6A
-ffffffff81fc56a0 d u2c_6A
-ffffffff81fc58a0 d u2c_6B
-ffffffff81fc5aa0 d u2c_6B
-ffffffff81fc5ca0 d u2c_6B
-ffffffff81fc5ea0 d u2c_6B
-ffffffff81fc60a0 d u2c_6C
-ffffffff81fc62a0 d u2c_6C
-ffffffff81fc64a0 d u2c_6C
-ffffffff81fc66a0 d u2c_6C
-ffffffff81fc68a0 d u2c_74
-ffffffff81fc6aa0 d u2c_74
-ffffffff81fc6ca0 d u2c_74
-ffffffff81fc6ea0 d u2c_74
-ffffffff81fc70a0 d u2c_79
-ffffffff81fc72a0 d u2c_79
-ffffffff81fc74a0 d u2c_79
-ffffffff81fc76a0 d u2c_79
-ffffffff81fc78a0 d u2c_7B
-ffffffff81fc7aa0 d u2c_7B
-ffffffff81fc7ca0 d u2c_7B
-ffffffff81fc7ea0 d u2c_7B
-ffffffff81fc80a0 d u2c_7D
-ffffffff81fc82a0 d u2c_7D
-ffffffff81fc84a0 d u2c_7D
-ffffffff81fc86a0 d u2c_7D
-ffffffff81fc88a0 d u2c_7E
-ffffffff81fc8aa0 d u2c_7E
-ffffffff81fc8ca0 d u2c_7E
-ffffffff81fc8ea0 d u2c_7E
-ffffffff81fc90a0 d u2c_82
-ffffffff81fc92a0 d u2c_82
-ffffffff81fc94a0 d u2c_82
-ffffffff81fc96a0 d u2c_82
-ffffffff81fc98a0 d u2c_89
-ffffffff81fc9aa0 d u2c_89
-ffffffff81fc9ca0 d u2c_89
-ffffffff81fc9ea0 d u2c_89
-ffffffff81fca0a0 d u2c_8B
-ffffffff81fca2a0 d u2c_8B
-ffffffff81fca4a0 d u2c_8B
-ffffffff81fca6a0 d u2c_8B
-ffffffff81fca8a0 d u2c_93
-ffffffff81fcaaa0 d u2c_93
-ffffffff81fcaca0 d u2c_93
-ffffffff81fcaea0 d u2c_93
-ffffffff81fcb0a0 d u2c_94
-ffffffff81fcb2a0 d u2c_94
-ffffffff81fcb4a0 d u2c_94
-ffffffff81fcb6a0 d u2c_94
-ffffffff81fcb8a0 d u2c_95
-ffffffff81fcbaa0 d u2c_95
-ffffffff81fcbca0 d u2c_95
-ffffffff81fcbea0 d u2c_95
-ffffffff81fcc0a0 d u2c_96
-ffffffff81fcc2a0 d u2c_96
-ffffffff81fcc4a0 d u2c_96
-ffffffff81fcc6a0 d u2c_96
-ffffffff81fcc8a0 d u2c_9A
-ffffffff81fccaa0 d u2c_9A
-ffffffff81fccca0 d u2c_9A
-ffffffff81fccea0 d u2c_9A
-ffffffff81fcd0a0 d u2c_9B
-ffffffff81fcd2a0 d u2c_9B
-ffffffff81fcd4a0 d u2c_9B
-ffffffff81fcd6a0 d u2c_9B
-ffffffff81fcd8a0 d u2c_9C
-ffffffff81fcdaa0 d u2c_9C
-ffffffff81fcdca0 d u2c_9C
-ffffffff81fcdea0 d u2c_9C
-ffffffff81fce0a0 d u2c_9F
-ffffffff81fce2a0 d u2c_9F
-ffffffff81fce4a0 d u2c_9F
-ffffffff81fce6a0 d u2c_9F
-ffffffff81fce8a0 d u2c_F9
-ffffffff81fceaa0 d u2c_F9
-ffffffff81fceca0 d u2c_F9
-ffffffff81fceea0 d u2c_F9
-ffffffff81fcf0a0 d u2c_FA
-ffffffff81fcf2a0 d u2c_FA
-ffffffff81fcf4a0 d u2c_FA
-ffffffff81fcf6a0 d u2c_FA
-ffffffff81fcf8a0 d u2c_FF
-ffffffff81fcfaa0 d u2c_FF
-ffffffff81fcfca0 d u2c_FF
-ffffffff81fcfea0 d u2c_FF
-ffffffff81fd00a0 d u2c_00hi
-ffffffff81fd0160 d page_charset2uni
-ffffffff81fd0960 d page_charset2uni
-ffffffff81fd1160 d page_charset2uni
-ffffffff81fd1960 d page_charset2uni
-ffffffff81fd2160 d c2u_81
-ffffffff81fd2360 d c2u_81
-ffffffff81fd2560 d c2u_81
-ffffffff81fd2760 d c2u_88
-ffffffff81fd2960 d c2u_88
-ffffffff81fd2b60 d c2u_88
-ffffffff81fd2d60 d c2u_89
-ffffffff81fd2f60 d c2u_89
-ffffffff81fd3160 d c2u_89
-ffffffff81fd3360 d c2u_8A
-ffffffff81fd3560 d c2u_8A
-ffffffff81fd3760 d c2u_8A
-ffffffff81fd3960 d c2u_8B
-ffffffff81fd3b60 d c2u_8B
-ffffffff81fd3d60 d c2u_8B
-ffffffff81fd3f60 d c2u_8C
-ffffffff81fd4160 d c2u_8C
-ffffffff81fd4360 d c2u_8C
-ffffffff81fd4560 d c2u_8D
-ffffffff81fd4760 d c2u_8D
-ffffffff81fd4960 d c2u_8D
-ffffffff81fd4b60 d c2u_8E
-ffffffff81fd4d60 d c2u_8E
-ffffffff81fd4f60 d c2u_8E
-ffffffff81fd5160 d c2u_8F
-ffffffff81fd5360 d c2u_8F
-ffffffff81fd5560 d c2u_8F
-ffffffff81fd5760 d c2u_90
-ffffffff81fd5960 d c2u_90
-ffffffff81fd5b60 d c2u_90
-ffffffff81fd5d60 d c2u_91
-ffffffff81fd5f60 d c2u_91
-ffffffff81fd6160 d c2u_91
-ffffffff81fd6360 d c2u_92
-ffffffff81fd6560 d c2u_92
-ffffffff81fd6760 d c2u_92
-ffffffff81fd6960 d c2u_93
-ffffffff81fd6b60 d c2u_93
-ffffffff81fd6d60 d c2u_93
-ffffffff81fd6f60 d c2u_94
-ffffffff81fd7160 d c2u_94
-ffffffff81fd7360 d c2u_94
-ffffffff81fd7560 d c2u_95
-ffffffff81fd7760 d c2u_95
-ffffffff81fd7960 d c2u_95
-ffffffff81fd7b60 d c2u_96
-ffffffff81fd7d60 d c2u_96
-ffffffff81fd7f60 d c2u_96
-ffffffff81fd8160 d c2u_97
-ffffffff81fd8360 d c2u_97
-ffffffff81fd8560 d c2u_97
-ffffffff81fd8760 d c2u_98
-ffffffff81fd8960 d c2u_98
-ffffffff81fd8b60 d c2u_98
-ffffffff81fd8d60 d c2u_99
-ffffffff81fd8f60 d c2u_99
-ffffffff81fd9160 d c2u_99
-ffffffff81fd9360 d c2u_9A
-ffffffff81fd9560 d c2u_9A
-ffffffff81fd9760 d c2u_9A
-ffffffff81fd9960 d c2u_9B
-ffffffff81fd9b60 d c2u_9B
-ffffffff81fd9d60 d c2u_9B
-ffffffff81fd9f60 d c2u_9C
-ffffffff81fda160 d c2u_9C
-ffffffff81fda360 d c2u_9C
-ffffffff81fda560 d c2u_9D
-ffffffff81fda760 d c2u_9D
-ffffffff81fda960 d c2u_9D
-ffffffff81fdab60 d c2u_9E
-ffffffff81fdad60 d c2u_9E
-ffffffff81fdaf60 d c2u_9E
-ffffffff81fdb160 d c2u_9F
-ffffffff81fdb360 d c2u_9F
-ffffffff81fdb560 d c2u_9F
-ffffffff81fdb760 d c2u_E0
-ffffffff81fdb960 d c2u_E0
-ffffffff81fdbb60 d c2u_E0
-ffffffff81fdbd60 d c2u_E0
-ffffffff81fdbf60 d c2u_E1
-ffffffff81fdc160 d c2u_E1
-ffffffff81fdc360 d c2u_E1
-ffffffff81fdc560 d c2u_E1
-ffffffff81fdc760 d c2u_E2
-ffffffff81fdc960 d c2u_E2
-ffffffff81fdcb60 d c2u_E2
-ffffffff81fdcd60 d c2u_E2
-ffffffff81fdcf60 d c2u_E3
-ffffffff81fdd160 d c2u_E3
-ffffffff81fdd360 d c2u_E3
-ffffffff81fdd560 d c2u_E3
-ffffffff81fdd760 d c2u_E4
-ffffffff81fdd960 d c2u_E4
-ffffffff81fddb60 d c2u_E4
-ffffffff81fddd60 d c2u_E4
-ffffffff81fddf60 d c2u_E5
-ffffffff81fde160 d c2u_E5
-ffffffff81fde360 d c2u_E5
-ffffffff81fde560 d c2u_E5
-ffffffff81fde760 d c2u_E6
-ffffffff81fde960 d c2u_E6
-ffffffff81fdeb60 d c2u_E6
-ffffffff81fded60 d c2u_E6
-ffffffff81fdef60 d c2u_E7
-ffffffff81fdf160 d c2u_E7
-ffffffff81fdf360 d c2u_E7
-ffffffff81fdf560 d c2u_E7
-ffffffff81fdf760 d c2u_E8
-ffffffff81fdf960 d c2u_E8
-ffffffff81fdfb60 d c2u_E8
-ffffffff81fdfd60 d c2u_E8
-ffffffff81fdff60 d c2u_E9
-ffffffff81fe0160 d c2u_E9
-ffffffff81fe0360 d c2u_E9
-ffffffff81fe0560 d c2u_E9
-ffffffff81fe0760 d c2u_ED
-ffffffff81fe0960 d c2u_ED
-ffffffff81fe0b60 d c2u_ED
-ffffffff81fe0d60 d c2u_ED
-ffffffff81fe0f60 d c2u_EE
-ffffffff81fe1160 d c2u_EE
-ffffffff81fe1360 d c2u_EE
-ffffffff81fe1560 d c2u_EE
-ffffffff81fe1760 d c2u_FA
-ffffffff81fe1960 d c2u_FA
-ffffffff81fe1b60 d c2u_FA
-ffffffff81fe1d60 d c2u_FB
-ffffffff81fe1f60 d c2u_FB
-ffffffff81fe2160 d c2u_FB
-ffffffff81fe2360 d c2u_82
-ffffffff81fe2560 d c2u_82
-ffffffff81fe2760 d c2u_82
-ffffffff81fe2960 d c2u_83
-ffffffff81fe2b60 d c2u_83
-ffffffff81fe2d60 d c2u_83
-ffffffff81fe2f60 d c2u_84
-ffffffff81fe3160 d c2u_84
-ffffffff81fe3360 d c2u_84
-ffffffff81fe3560 d c2u_87
-ffffffff81fe3760 d c2u_87
-ffffffff81fe3960 d c2u_87
-ffffffff81fe3b60 d c2u_EA
-ffffffff81fe3d60 d c2u_EA
-ffffffff81fe3f60 d c2u_EA
-ffffffff81fe4160 d c2u_EA
-ffffffff81fe4360 d c2u_FC
-ffffffff81fe4560 d c2u_FC
-ffffffff81fe4760 d c2u_FC
-ffffffff81fe4960 d sjisibm2euc_map
-ffffffff81fe4c70 d euc2sjisibm_g3upper_map
-ffffffff81fe4d50 d euc2sjisibm_jisx0212_map
-ffffffff81fe51b0 d u2c_00
-ffffffff81fe53b0 d u2c_01
-ffffffff81fe55b0 d u2c_01
-ffffffff81fe57b0 d u2c_02
-ffffffff81fe59b0 d u2c_02
-ffffffff81fe5bb0 d u2c_02
-ffffffff81fe5db0 d u2c_31
-ffffffff81fe5fb0 d u2c_31
-ffffffff81fe61b0 d u2c_31
-ffffffff81fe63b0 d u2c_FE
-ffffffff81fe65b0 d u2c_FE
-ffffffff81fe67b0 d c2u_85
-ffffffff81fe69b0 d c2u_85
-ffffffff81fe6bb0 d c2u_86
-ffffffff81fe6db0 d c2u_86
-ffffffff81fe6fb0 d c2u_A0
-ffffffff81fe71b0 d c2u_A0
-ffffffff81fe73b0 d c2u_A1
-ffffffff81fe75b0 d c2u_A1
-ffffffff81fe77b0 d c2u_A1
-ffffffff81fe79b0 d c2u_A2
-ffffffff81fe7bb0 d c2u_A2
-ffffffff81fe7db0 d c2u_A2
-ffffffff81fe7fb0 d c2u_A3
-ffffffff81fe81b0 d c2u_A3
-ffffffff81fe83b0 d c2u_A3
-ffffffff81fe85b0 d c2u_B0
-ffffffff81fe87b0 d c2u_B0
-ffffffff81fe89b0 d c2u_B0
-ffffffff81fe8bb0 d c2u_B1
-ffffffff81fe8db0 d c2u_B1
-ffffffff81fe8fb0 d c2u_B1
-ffffffff81fe91b0 d c2u_B2
-ffffffff81fe93b0 d c2u_B2
-ffffffff81fe95b0 d c2u_B2
-ffffffff81fe97b0 d c2u_B3
-ffffffff81fe99b0 d c2u_B3
-ffffffff81fe9bb0 d c2u_B3
-ffffffff81fe9db0 d c2u_B4
-ffffffff81fe9fb0 d c2u_B4
-ffffffff81fea1b0 d c2u_B4
-ffffffff81fea3b0 d c2u_B5
-ffffffff81fea5b0 d c2u_B5
-ffffffff81fea7b0 d c2u_B5
-ffffffff81fea9b0 d c2u_B6
-ffffffff81feabb0 d c2u_B6
-ffffffff81feadb0 d c2u_B6
-ffffffff81feafb0 d c2u_B7
-ffffffff81feb1b0 d c2u_B7
-ffffffff81feb3b0 d c2u_B7
-ffffffff81feb5b0 d c2u_B8
-ffffffff81feb7b0 d c2u_B8
-ffffffff81feb9b0 d c2u_B8
-ffffffff81febbb0 d c2u_B9
-ffffffff81febdb0 d c2u_B9
-ffffffff81febfb0 d c2u_B9
-ffffffff81fec1b0 d c2u_BA
-ffffffff81fec3b0 d c2u_BA
-ffffffff81fec5b0 d c2u_BA
-ffffffff81fec7b0 d c2u_BB
-ffffffff81fec9b0 d c2u_BB
-ffffffff81fecbb0 d c2u_BB
-ffffffff81fecdb0 d c2u_BC
-ffffffff81fecfb0 d c2u_BC
-ffffffff81fed1b0 d c2u_BC
-ffffffff81fed3b0 d c2u_BD
-ffffffff81fed5b0 d c2u_BD
-ffffffff81fed7b0 d c2u_BD
-ffffffff81fed9b0 d c2u_BE
-ffffffff81fedbb0 d c2u_BE
-ffffffff81feddb0 d c2u_BE
-ffffffff81fedfb0 d c2u_BF
-ffffffff81fee1b0 d c2u_BF
-ffffffff81fee3b0 d c2u_BF
-ffffffff81fee5b0 d c2u_C0
-ffffffff81fee7b0 d c2u_C0
-ffffffff81fee9b0 d c2u_C0
-ffffffff81feebb0 d c2u_C1
-ffffffff81feedb0 d c2u_C1
-ffffffff81feefb0 d c2u_C1
-ffffffff81fef1b0 d c2u_C2
-ffffffff81fef3b0 d c2u_C2
-ffffffff81fef5b0 d c2u_C2
-ffffffff81fef7b0 d c2u_C3
-ffffffff81fef9b0 d c2u_C3
-ffffffff81fefbb0 d c2u_C3
-ffffffff81fefdb0 d c2u_C4
-ffffffff81feffb0 d c2u_C4
-ffffffff81ff01b0 d c2u_C4
-ffffffff81ff03b0 d c2u_C5
-ffffffff81ff05b0 d c2u_C5
-ffffffff81ff07b0 d c2u_C5
-ffffffff81ff09b0 d c2u_C6
-ffffffff81ff0bb0 d c2u_C6
-ffffffff81ff0db0 d c2u_C6
-ffffffff81ff0fb0 d c2u_C7
-ffffffff81ff11b0 d c2u_C7
-ffffffff81ff13b0 d c2u_C8
-ffffffff81ff15b0 d c2u_C8
-ffffffff81ff17b0 d c2u_C9
-ffffffff81ff19b0 d c2u_C9
-ffffffff81ff1bb0 d c2u_CA
-ffffffff81ff1db0 d c2u_CA
-ffffffff81ff1fb0 d c2u_CA
-ffffffff81ff21b0 d c2u_CB
-ffffffff81ff23b0 d c2u_CB
-ffffffff81ff25b0 d c2u_CB
-ffffffff81ff27b0 d c2u_CC
-ffffffff81ff29b0 d c2u_CC
-ffffffff81ff2bb0 d c2u_CC
-ffffffff81ff2db0 d c2u_CD
-ffffffff81ff2fb0 d c2u_CD
-ffffffff81ff31b0 d c2u_CD
-ffffffff81ff33b0 d c2u_CE
-ffffffff81ff35b0 d c2u_CE
-ffffffff81ff37b0 d c2u_CE
-ffffffff81ff39b0 d c2u_CF
-ffffffff81ff3bb0 d c2u_CF
-ffffffff81ff3db0 d c2u_CF
-ffffffff81ff3fb0 d c2u_D0
-ffffffff81ff41b0 d c2u_D0
-ffffffff81ff43b0 d c2u_D0
-ffffffff81ff45b0 d c2u_D1
-ffffffff81ff47b0 d c2u_D1
-ffffffff81ff49b0 d c2u_D1
-ffffffff81ff4bb0 d c2u_D2
-ffffffff81ff4db0 d c2u_D2
-ffffffff81ff4fb0 d c2u_D2
-ffffffff81ff51b0 d c2u_D3
-ffffffff81ff53b0 d c2u_D3
-ffffffff81ff55b0 d c2u_D3
-ffffffff81ff57b0 d c2u_D4
-ffffffff81ff59b0 d c2u_D4
-ffffffff81ff5bb0 d c2u_D4
-ffffffff81ff5db0 d c2u_D5
-ffffffff81ff5fb0 d c2u_D5
-ffffffff81ff61b0 d c2u_D5
-ffffffff81ff63b0 d c2u_D6
-ffffffff81ff65b0 d c2u_D6
-ffffffff81ff67b0 d c2u_D6
-ffffffff81ff69b0 d c2u_D7
-ffffffff81ff6bb0 d c2u_D7
-ffffffff81ff6db0 d c2u_D7
-ffffffff81ff6fb0 d c2u_D8
-ffffffff81ff71b0 d c2u_D8
-ffffffff81ff73b0 d c2u_D8
-ffffffff81ff75b0 d c2u_D9
-ffffffff81ff77b0 d c2u_D9
-ffffffff81ff79b0 d c2u_D9
-ffffffff81ff7bb0 d c2u_DA
-ffffffff81ff7db0 d c2u_DA
-ffffffff81ff7fb0 d c2u_DA
-ffffffff81ff81b0 d c2u_DB
-ffffffff81ff83b0 d c2u_DB
-ffffffff81ff85b0 d c2u_DB
-ffffffff81ff87b0 d c2u_DC
-ffffffff81ff89b0 d c2u_DC
-ffffffff81ff8bb0 d c2u_DC
-ffffffff81ff8db0 d c2u_DD
-ffffffff81ff8fb0 d c2u_DD
-ffffffff81ff91b0 d c2u_DD
-ffffffff81ff93b0 d c2u_DE
-ffffffff81ff95b0 d c2u_DE
-ffffffff81ff97b0 d c2u_DE
-ffffffff81ff99b0 d c2u_DF
-ffffffff81ff9bb0 d c2u_DF
-ffffffff81ff9db0 d c2u_DF
-ffffffff81ff9fb0 d c2u_EB
-ffffffff81ffa1b0 d c2u_EB
-ffffffff81ffa3b0 d c2u_EB
-ffffffff81ffa5b0 d c2u_EC
-ffffffff81ffa7b0 d c2u_EC
-ffffffff81ffa9b0 d c2u_EC
-ffffffff81ffabb0 d c2u_EF
-ffffffff81ffadb0 d c2u_EF
-ffffffff81ffafb0 d c2u_EF
-ffffffff81ffb1b0 d c2u_F0
-ffffffff81ffb3b0 d c2u_F0
-ffffffff81ffb5b0 d c2u_F0
-ffffffff81ffb7b0 d c2u_F1
-ffffffff81ffb9b0 d c2u_F1
-ffffffff81ffbbb0 d c2u_F1
-ffffffff81ffbdb0 d c2u_F2
-ffffffff81ffbfb0 d c2u_F2
-ffffffff81ffc1b0 d c2u_F2
-ffffffff81ffc3b0 d c2u_F3
-ffffffff81ffc5b0 d c2u_F3
-ffffffff81ffc7b0 d c2u_F3
-ffffffff81ffc9b0 d c2u_F4
-ffffffff81ffcbb0 d c2u_F4
-ffffffff81ffcdb0 d c2u_F4
-ffffffff81ffcfb0 d c2u_F5
-ffffffff81ffd1b0 d c2u_F5
-ffffffff81ffd3b0 d c2u_F5
-ffffffff81ffd5b0 d c2u_F6
-ffffffff81ffd7b0 d c2u_F6
-ffffffff81ffd9b0 d c2u_F6
-ffffffff81ffdbb0 d c2u_F7
-ffffffff81ffddb0 d c2u_F7
-ffffffff81ffdfb0 d c2u_F7
-ffffffff81ffe1b0 d c2u_A4
-ffffffff81ffe3b0 d c2u_A4
-ffffffff81ffe5b0 d c2u_A4
-ffffffff81ffe7b0 d c2u_A5
-ffffffff81ffe9b0 d c2u_A5
-ffffffff81ffebb0 d c2u_A5
-ffffffff81ffedb0 d c2u_A6
-ffffffff81ffefb0 d c2u_A6
-ffffffff81fff1b0 d c2u_A6
-ffffffff81fff3b0 d c2u_A7
-ffffffff81fff5b0 d c2u_A7
-ffffffff81fff7b0 d c2u_A7
-ffffffff81fff9b0 d c2u_A8
-ffffffff81fffbb0 d c2u_A8
-ffffffff81fffdb0 d c2u_A8
-ffffffff81ffffb0 d c2u_A9
-ffffffff820001b0 d c2u_A9
-ffffffff820003b0 d c2u_A9
-ffffffff820005b0 d c2u_AA
-ffffffff820007b0 d c2u_AA
-ffffffff820009b0 d c2u_AA
-ffffffff82000bb0 d c2u_AB
-ffffffff82000db0 d c2u_AB
-ffffffff82000fb0 d c2u_AB
-ffffffff820011b0 d c2u_AC
-ffffffff820013b0 d c2u_AC
-ffffffff820015b0 d c2u_AC
-ffffffff820017b0 d c2u_AD
-ffffffff820019b0 d c2u_AD
-ffffffff82001bb0 d c2u_AD
-ffffffff82001db0 d c2u_AE
-ffffffff82001fb0 d c2u_AE
-ffffffff820021b0 d c2u_AE
-ffffffff820023b0 d c2u_AF
-ffffffff820025b0 d c2u_AF
-ffffffff820027b0 d c2u_AF
-ffffffff820029b0 d c2u_F8
-ffffffff82002bb0 d c2u_F8
-ffffffff82002db0 d c2u_F8
-ffffffff82002fb0 d c2u_F9
-ffffffff820031b0 d c2u_F9
-ffffffff820033b0 d c2u_F9
-ffffffff820035b0 d c2u_FD
-ffffffff820037b0 d c2u_FD
-ffffffff820039b0 d c2u_FE
-ffffffff82003bb0 d u2c_AC
-ffffffff82003db0 d u2c_AD
-ffffffff82003fb0 d u2c_AE
-ffffffff820041b0 d u2c_AF
-ffffffff820043b0 d u2c_B0
-ffffffff820045b0 d u2c_B1
-ffffffff820047b0 d u2c_B2
-ffffffff820049b0 d u2c_B3
-ffffffff82004bb0 d u2c_B4
-ffffffff82004db0 d u2c_B5
-ffffffff82004fb0 d u2c_B6
-ffffffff820051b0 d u2c_B7
-ffffffff820053b0 d u2c_B8
-ffffffff820055b0 d u2c_B9
-ffffffff820057b0 d u2c_BA
-ffffffff820059b0 d u2c_BB
-ffffffff82005bb0 d u2c_BC
-ffffffff82005db0 d u2c_BD
-ffffffff82005fb0 d u2c_BE
-ffffffff820061b0 d u2c_BF
-ffffffff820063b0 d u2c_C0
-ffffffff820065b0 d u2c_C1
-ffffffff820067b0 d u2c_C2
-ffffffff820069b0 d u2c_C3
-ffffffff82006bb0 d u2c_C4
-ffffffff82006db0 d u2c_C5
-ffffffff82006fb0 d u2c_C6
-ffffffff820071b0 d u2c_C7
-ffffffff820073b0 d u2c_C8
-ffffffff820075b0 d u2c_C9
-ffffffff820077b0 d u2c_CA
-ffffffff820079b0 d u2c_CB
-ffffffff82007bb0 d u2c_CC
-ffffffff82007db0 d u2c_CD
-ffffffff82007fb0 d u2c_CE
-ffffffff820081b0 d u2c_CF
-ffffffff820083b0 d u2c_D0
-ffffffff820085b0 d u2c_D1
-ffffffff820087b0 d u2c_D2
-ffffffff820089b0 d u2c_D3
-ffffffff82008bb0 d u2c_D4
-ffffffff82008db0 d u2c_D5
-ffffffff82008fb0 d u2c_D6
-ffffffff820091b0 d u2c_11
-ffffffff820093b0 d u2c_D7
-ffffffff820095b0 d page1e
-ffffffff820096b0 d page1e
-ffffffff820097b0 d page1e
-ffffffff820098b0 d page26
-ffffffff820099b0 d page26
-ffffffff82009ab0 d pagef8
-ffffffff82009bb0 d pagef8
-ffffffff82009cb0 d pagef8
-ffffffff82009db0 d pagef8
-ffffffff82009eb0 d pagef8
-ffffffff82009fb0 d page14
-ffffffff8200a0b0 d page15
-ffffffff8200a1b0 d page16
-ffffffff8200a2b0 d pagefb
-ffffffff8200a3b0 d utf8agetab
-ffffffff8200a410 d utf8nfdicfdata
-ffffffff8200a4d0 d utf8nfdidata
-ffffffff8200a590 d utf8data
-ffffffff8201a090 d fuse_dev_fiq_ops
-ffffffff8201a0b0 d fuse_dev_operations
-ffffffff8201a1c0 d __param_str_allow_sys_admin_access
-ffffffff8201a200 d fuse_common_inode_operations.llvm.4905078679939807016
-ffffffff8201a2c0 d fuse_dir_inode_operations
-ffffffff8201a380 d fuse_dir_operations
-ffffffff8201a4c0 d fuse_symlink_inode_operations
-ffffffff8201a580 d fuse_symlink_aops
-ffffffff8201a640 d fuse_root_dentry_operations
-ffffffff8201a6c0 d fuse_dentry_operations
-ffffffff8201a740 d fuse_file_operations
-ffffffff8201a850 d fuse_file_aops
-ffffffff8201a8f0 d fuse_file_vm_ops
-ffffffff8201a960 d __param_str_max_user_bgreq
-ffffffff8201a978 d __param_ops_max_user_bgreq
-ffffffff8201a9a0 d __param_str_max_user_congthresh
-ffffffff8201a9c0 d __param_ops_max_user_congthresh
-ffffffff8201a9e0 d fuse_context_submount_ops
-ffffffff8201aa10 d fuse_super_operations
-ffffffff8201aac0 d fuse_export_operations
-ffffffff8201ab38 d bpf_features_group
-ffffffff8201ab60 d bpf_attr_group
-ffffffff8201ab90 d fuse_fs_parameters
-ffffffff8201ad50 d fuse_context_ops
-ffffffff8201ad80 d fuse_ctl_waiting_ops
-ffffffff8201ae90 d fuse_ctl_abort_ops
-ffffffff8201afa0 d fuse_conn_max_background_ops
-ffffffff8201b0b0 d fuse_conn_congestion_threshold_ops
-ffffffff8201b1c0 d fuse_ctl_context_ops
-ffffffff8201b1f0 d fuse_ctl_fill_super.empty_descr
-ffffffff8201b208 d fuse_xattr_handler
-ffffffff8201b238 d fuse_no_acl_access_xattr_handler
-ffffffff8201b268 d fuse_no_acl_default_xattr_handler
-ffffffff8201b2c0 d debugfs_dir_inode_operations
-ffffffff8201b380 d debugfs_symlink_inode_operations
-ffffffff8201b440 d debugfs_file_inode_operations
-ffffffff8201b500 d debug_fill_super.debug_files
-ffffffff8201b518 d debugfs_super_operations
-ffffffff8201b600 d debugfs_dops
-ffffffff8201b680 d fops_u8
-ffffffff8201b790 d fops_u8_ro
-ffffffff8201b8a0 d fops_u8_wo
-ffffffff8201b9b0 d fops_u16
-ffffffff8201bac0 d fops_u16_ro
-ffffffff8201bbd0 d fops_u16_wo
-ffffffff8201bce0 d fops_u32
-ffffffff8201bdf0 d fops_u32_ro
-ffffffff8201bf00 d fops_u32_wo
-ffffffff8201c010 d fops_u64
-ffffffff8201c120 d fops_u64_ro
-ffffffff8201c230 d fops_u64_wo
-ffffffff8201c340 d fops_ulong
-ffffffff8201c450 d fops_ulong_ro
-ffffffff8201c560 d fops_ulong_wo
-ffffffff8201c670 d fops_x8
-ffffffff8201c780 d fops_x8_ro
-ffffffff8201c890 d fops_x8_wo
-ffffffff8201c9a0 d fops_x16
-ffffffff8201cab0 d fops_x16_ro
-ffffffff8201cbc0 d fops_x16_wo
-ffffffff8201ccd0 d fops_x32
-ffffffff8201cde0 d fops_x32_ro
-ffffffff8201cef0 d fops_x32_wo
-ffffffff8201d000 d fops_x64
-ffffffff8201d110 d fops_x64_ro
-ffffffff8201d220 d fops_x64_wo
-ffffffff8201d330 d fops_size_t
-ffffffff8201d440 d fops_size_t_ro
-ffffffff8201d550 d fops_size_t_wo
-ffffffff8201d660 d fops_atomic_t
-ffffffff8201d770 d fops_atomic_t_ro
-ffffffff8201d880 d fops_atomic_t_wo
-ffffffff8201d990 d fops_bool
-ffffffff8201daa0 d fops_bool_ro
-ffffffff8201dbb0 d fops_bool_wo
-ffffffff8201dcc0 d fops_str
-ffffffff8201ddd0 d fops_str_ro
-ffffffff8201dee0 d fops_str_wo
-ffffffff8201dff0 d fops_blob.llvm.15759758112425818765
-ffffffff8201e100 d u32_array_fops
-ffffffff8201e210 d debugfs_regset32_fops
-ffffffff8201e320 d debugfs_devm_entry_ops
-ffffffff8201e430 d debugfs_full_proxy_file_operations
-ffffffff8201e540 d debugfs_noop_file_operations
-ffffffff8201e650 d debugfs_open_proxy_file_operations
-ffffffff8201e760 d tracefs_file_operations
-ffffffff8201e880 d tracefs_dir_inode_operations
-ffffffff8201e940 d trace_fill_super.trace_files
-ffffffff8201e958 d tracefs_super_operations
-ffffffff8201ea18 d erofs_sops
-ffffffff8201ead0 d trace_raw_output_erofs_readpage.symbols
-ffffffff8201eb00 d trace_raw_output_erofs__map_blocks_enter.__flags
-ffffffff8201eb20 d trace_raw_output_erofs__map_blocks_exit.__flags
-ffffffff8201eb40 d trace_raw_output_erofs__map_blocks_exit.__flags.43
-ffffffff8201eb80 d erofs_anon_context_ops
-ffffffff8201ebb0 d erofs_context_ops
-ffffffff8201ebe0 d erofs_fc_fill_pseudo_super.empty_descr
-ffffffff8201ec00 d erofs_fs_parameters
-ffffffff8201ed20 d erofs_param_cache_strategy
-ffffffff8201ed60 d erofs_dax_param_enums
-ffffffff8201ed90 d erofs_export_ops
-ffffffff8201ede8 d managed_cache_aops
-ffffffff8201eec0 d erofs_generic_iops
-ffffffff8201ef80 d erofs_symlink_iops
-ffffffff8201f040 d erofs_fast_symlink_iops
-ffffffff8201f100 d erofs_iomap_ops
-ffffffff8201f110 d erofs_raw_access_aops
-ffffffff8201f1b0 d erofs_file_fops
-ffffffff8201f2c0 d erofs_dir_iops
-ffffffff8201f380 d erofs_dir_fops
-ffffffff8201f490 d erofs_attr_ops
-ffffffff8201f4a0 d erofs_group
-ffffffff8201f4c8 d erofs_feat_group
-ffffffff8201f4f0 d erofs_xattr_user_handler
-ffffffff8201f520 d erofs_xattr_trusted_handler
-ffffffff8201f550 d erofs_xattr_security_handler
-ffffffff8201f580 d find_xattr_handlers
-ffffffff8201f5a0 d list_xattr_handlers
-ffffffff8201f5c0 d erofs_xattr_handler.xattr_handler_map
-ffffffff8201f600 d decompressors
-ffffffff8201f640 d z_erofs_iomap_report_ops
-ffffffff8201f650 d z_erofs_aops
-ffffffff8201f6f0 d lockdown_reasons
-ffffffff8201f7e0 d securityfs_context_ops
-ffffffff8201f810 d securityfs_fill_super.files
-ffffffff8201f828 d securityfs_super_operations
-ffffffff8201f8d8 d lsm_ops
-ffffffff8201f9e8 d str__avc__trace_system_name
-ffffffff8201f9f0 d secclass_map
-ffffffff82026210 d selinux_fs_parameters
-ffffffff82026390 d sel_context_ops
-ffffffff820263c0 d sel_fill_super.selinux_files
-ffffffff820265e8 d sel_load_ops
-ffffffff820266f8 d sel_enforce_ops
-ffffffff82026808 d transaction_ops
-ffffffff82026918 d sel_policyvers_ops
-ffffffff82026a28 d sel_commit_bools_ops
-ffffffff82026b38 d sel_mls_ops
-ffffffff82026c48 d sel_disable_ops
-ffffffff82026d58 d sel_checkreqprot_ops
-ffffffff82026e68 d sel_handle_unknown_ops
-ffffffff82026f78 d sel_handle_status_ops
-ffffffff82027088 d sel_policy_ops
-ffffffff82027198 d sel_transition_ops
-ffffffff820272a8 d sel_bool_ops
-ffffffff820273b8 d sel_class_ops
-ffffffff820274c8 d sel_perm_ops
-ffffffff820275e0 d write_op
-ffffffff82027658 d sel_mmap_policy_ops
-ffffffff820276c8 d sel_avc_cache_threshold_ops
-ffffffff820277d8 d sel_avc_hash_stats_ops
-ffffffff820278e8 d sel_avc_cache_stats_ops
-ffffffff820279f8 d sel_avc_cache_stats_seq_ops
-ffffffff82027a18 d sel_sidtab_hash_stats_ops
-ffffffff82027b28 d sel_initcon_ops
-ffffffff82027c38 d sel_policycap_ops
-ffffffff82027d50 d nlmsg_xfrm_perms
-ffffffff82027e20 d nlmsg_audit_perms
-ffffffff82027f40 d spec_order
-ffffffff82027f60 d read_f
-ffffffff82027fa0 d write_f
-ffffffff82027fe0 d policydb_compat
-ffffffff820280d0 d index_f
-ffffffff820281b0 d selinux_policycap_names
-ffffffff820281f0 d initial_sid_to_string
-ffffffff820282d0 d crypto_seq_ops.llvm.10832948479470173249
-ffffffff820282f0 d crypto_aead_type.llvm.15281575547612354064
-ffffffff82028338 d crypto_skcipher_type.llvm.18332678875427598193
-ffffffff82028380 d crypto_ahash_type.llvm.4935176195753504177
-ffffffff820283c8 d crypto_shash_type.llvm.5295427923844861501
-ffffffff82028410 d crypto_akcipher_type
-ffffffff82028458 d crypto_kpp_type
-ffffffff820284a0 d crypto_acomp_type
-ffffffff820284e8 d crypto_scomp_type
-ffffffff82028530 d __param_str_notests
-ffffffff82028550 d __param_str_panic_on_fail
-ffffffff82028570 d md5_zero_message_hash
-ffffffff82028580 d sha1_zero_message_hash
-ffffffff820285a0 d sha224_zero_message_hash
-ffffffff820285c0 d sha256_zero_message_hash
-ffffffff820285e0 d sha384_zero_message_hash
-ffffffff82028610 d sha512_zero_message_hash
-ffffffff82028650 d sha512_K
-ffffffff820288d0 d gf128mul_table_be
-ffffffff82028ad0 d gf128mul_table_le
-ffffffff82028cd0 d hctr2_hash_message.padding
-ffffffff82028d20 d __param_str_cryptd_max_cpu_qlen
-ffffffff82028d40 d crypto_ft_tab
-ffffffff82029d40 d crypto_it_tab
-ffffffff8202ad40 d crypto_fl_tab
-ffffffff8202bd40 d crypto_il_tab
-ffffffff8202cd40 d crypto_rng_type.llvm.8691435919611435104
-ffffffff8202cd88 d __param_str_dbg
-ffffffff8202cda0 d drbg_cores
-ffffffff8202d1c0 d drbg_hmac_ops
-ffffffff8202d1e0 d bdev_sops
-ffffffff8202d290 d def_blk_fops
-ffffffff8202d3a0 d def_blk_aops
-ffffffff8202d820 d elv_sysfs_ops
-ffffffff8202d830 d blk_op_name
-ffffffff8202d950 d blk_errors
-ffffffff8202da78 d queue_sysfs_ops
-ffffffff8202da88 d blk_mq_hw_sysfs_ops
-ffffffff8202da98 d default_hw_ctx_group
-ffffffff8202dad0 d disk_type
-ffffffff8202db00 d diskstats_op
-ffffffff8202db20 d partitions_op
-ffffffff8202db40 d __param_str_events_dfl_poll_msecs
-ffffffff8202db60 d disk_events_dfl_poll_msecs_param_ops
-ffffffff8202db80 d blk_ia_range_sysfs_ops
-ffffffff8202db90 d blk_ia_range_group
-ffffffff8202dbb8 d blkcg_root_css
-ffffffff8202dbc0 d __param_str_blkcg_debug_stats
-ffffffff8202dbdd d str__iocost__trace_system_name
-ffffffff8202dbf0 d qos_ctrl_tokens
-ffffffff8202dc20 d qos_tokens
-ffffffff8202dc90 d vrate_adj_pct
-ffffffff8202dd70 d autop
-ffffffff8202dff0 d cost_ctrl_tokens
-ffffffff8202e020 d i_lcoef_tokens
-ffffffff8202e090 d deadline_queue_debugfs_attrs
-ffffffff8202e3d8 d deadline_read0_fifo_seq_ops
-ffffffff8202e3f8 d deadline_write0_fifo_seq_ops
-ffffffff8202e418 d deadline_read1_fifo_seq_ops
-ffffffff8202e438 d deadline_write1_fifo_seq_ops
-ffffffff8202e458 d deadline_read2_fifo_seq_ops
-ffffffff8202e478 d deadline_write2_fifo_seq_ops
-ffffffff8202e498 d deadline_dispatch0_seq_ops
-ffffffff8202e4b8 d deadline_dispatch1_seq_ops
-ffffffff8202e4d8 d deadline_dispatch2_seq_ops
-ffffffff8202e500 d kyber_queue_debugfs_attrs
-ffffffff8202e5f0 d kyber_hctx_debugfs_attrs
-ffffffff8202e7b0 d kyber_latency_targets
-ffffffff8202e7d0 d kyber_domain_names
-ffffffff8202e7f0 d kyber_latency_type_names
-ffffffff8202e800 d kyber_read_rqs_seq_ops
-ffffffff8202e820 d kyber_write_rqs_seq_ops
-ffffffff8202e840 d kyber_discard_rqs_seq_ops
-ffffffff8202e860 d kyber_other_rqs_seq_ops
-ffffffff8202e880 d bfq_timeout
-ffffffff8202e890 d zone_cond_name
-ffffffff8202e910 d cmd_flag_name
-ffffffff8202e9f0 d rqf_name
-ffffffff8202eab0 d blk_mq_debugfs_queue_attrs
-ffffffff8202eba0 d blk_mq_debugfs_hctx_attrs
-ffffffff8202edd0 d blk_mq_rq_state_name_array
-ffffffff8202ede8 d blk_mq_debugfs_fops
-ffffffff8202eef8 d queue_requeue_list_seq_ops
-ffffffff8202ef20 d blk_queue_flag_name
-ffffffff8202f010 d hctx_dispatch_seq_ops
-ffffffff8202f030 d alloc_policy_name
-ffffffff8202f040 d hctx_flag_name
-ffffffff8202f080 d hctx_types
-ffffffff8202f0a0 d blk_mq_debugfs_ctx_attrs
-ffffffff8202f140 d ctx_default_rq_list_seq_ops
-ffffffff8202f160 d ctx_read_rq_list_seq_ops
-ffffffff8202f180 d ctx_poll_rq_list_seq_ops
-ffffffff8202f1c0 d __param_str_num_prealloc_crypt_ctxs
-ffffffff8202f1f0 d blk_crypto_modes
-ffffffff8202f290 d blk_crypto_attr_ops
-ffffffff8202f2a0 d blk_crypto_attr_group
-ffffffff8202f2c8 d blk_crypto_modes_attr_group
-ffffffff8202f2f0 d __param_str_num_prealloc_bounce_pg
-ffffffff8202f320 d __param_str_num_keyslots
-ffffffff8202f350 d __param_str_num_prealloc_fallback_crypt_ctxs
-ffffffff8202f388 d blk_crypto_fallback_ll_ops
-ffffffff8202f3a0 d str__io_uring__trace_system_name
-ffffffff8202f3b0 d io_uring_fops.llvm.5055127521332534324
-ffffffff8202f4c0 d io_op_defs
-ffffffff8202ffa0 d guid_index
-ffffffff8202ffb0 d uuid_index
-ffffffff8202ffc0 d guid_null
-ffffffff8202ffd0 d uuid_null
-ffffffff8202ffe0 d base64_table
-ffffffff82030030 d string_get_size.units_10
-ffffffff82030080 d string_get_size.units_2
-ffffffff820300d0 d string_get_size.units_str
-ffffffff820300e0 d string_get_size.rounding
-ffffffff82030100 d hex_asc
-ffffffff82030120 d hex_asc_upper
-ffffffff82030140 d S8
-ffffffff82030240 d S6
-ffffffff82030340 d S7
-ffffffff82030440 d S5
-ffffffff82030540 d S4
-ffffffff82030640 d S2
-ffffffff82030740 d S3
-ffffffff82030840 d S1
-ffffffff82030940 d pc2
-ffffffff82031940 d pc1
-ffffffff82031a40 d rs
-ffffffff82031b40 d SHA256_K
-ffffffff82031c40 d __sha256_final.padding
-ffffffff82031c90 d byte_rev_table
-ffffffff82031d90 d crc16_table
-ffffffff82031fc0 d crc32table_le
-ffffffff82033fc0 d crc32ctable_le
-ffffffff82035fc0 d crc32table_be
-ffffffff82037fc0 d zlib_inflate.order
-ffffffff82037ff0 d zlib_fixedtables.lenfix
-ffffffff820387f0 d zlib_fixedtables.distfix
-ffffffff82038870 d zlib_inflate_table.lbase
-ffffffff820388b0 d zlib_inflate_table.lext
-ffffffff820388f0 d zlib_inflate_table.dbase
-ffffffff82038930 d zlib_inflate_table.dext
-ffffffff82038970 d configuration_table
-ffffffff82038a10 d extra_dbits
-ffffffff82038a90 d extra_lbits
-ffffffff82038b10 d extra_blbits
-ffffffff82038b60 d bl_order
-ffffffff82038b80 d BIT_mask
-ffffffff82038c00 d BIT_mask
-ffffffff82038c80 d BIT_mask
-ffffffff82038d00 d BIT_mask
-ffffffff82038d80 d ZSTD_defaultCMem
-ffffffff82038d98 d ZSTD_defaultCMem
-ffffffff82038db0 d repStartValue
-ffffffff82038dbc d repStartValue
-ffffffff82038dd0 d ZSTD_selectBlockCompressor.blockCompressor
-ffffffff82038f10 d ZSTD_LLcode.LL_Code
-ffffffff82038f50 d ZSTD_LLcode.LL_Code
-ffffffff82038f90 d ZSTD_MLcode.ML_Code
-ffffffff82039010 d ZSTD_MLcode.ML_Code
-ffffffff82039090 d LL_defaultNorm
-ffffffff820390e0 d LL_defaultNorm
-ffffffff82039130 d OF_defaultNorm
-ffffffff82039170 d OF_defaultNorm
-ffffffff820391b0 d ML_defaultNorm
-ffffffff82039220 d ML_defaultNorm
-ffffffff82039290 d attachDictSizeCutoffs
-ffffffff820392e0 d ZSTD_defaultCParameters
-ffffffff82039cf0 d kInverseProbabilityLog256
-ffffffff8203a0f0 d LL_bits
-ffffffff8203a180 d LL_bits
-ffffffff8203a210 d LL_bits
-ffffffff8203a2a0 d LL_bits
-ffffffff8203a330 d LL_bits
-ffffffff8203a3c0 d ML_bits
-ffffffff8203a4a0 d ML_bits
-ffffffff8203a580 d ML_bits
-ffffffff8203a660 d ML_bits
-ffffffff8203a740 d ML_bits
-ffffffff8203a820 d ZSTD_ldm_gearTab
-ffffffff8203b040 d algoTime
-ffffffff8203b1c0 d OF_base
-ffffffff8203b240 d OF_base
-ffffffff8203b2c0 d OF_bits
-ffffffff8203b340 d OF_bits
-ffffffff8203b3c0 d ML_base
-ffffffff8203b4a0 d ML_base
-ffffffff8203b580 d LL_base
-ffffffff8203b610 d LL_base
-ffffffff8203b6c0 d LL_defaultDTable
-ffffffff8203b8d0 d OF_defaultDTable
-ffffffff8203b9e0 d ML_defaultDTable
-ffffffff8203bbf0 d __param_str_verbose
-ffffffff8203bc08 d param_ops_dyndbg_classes
-ffffffff8203bc30 d opt_array
-ffffffff8203bc48 d ddebug_proc_fops
-ffffffff8203bd58 d proc_fops
-ffffffff8203bdb0 d ddebug_proc_seqops
-ffffffff8203be00 d names_0
-ffffffff8203c230 d names_512
-ffffffff8203c2d0 d nla_attr_len
-ffffffff8203c2f0 d nla_attr_minlen
-ffffffff8203c310 d __nla_validate_parse.__msg
-ffffffff8203c340 d __nla_validate_parse.__msg.1
-ffffffff8203c360 d __nla_validate_parse.__msg.3
-ffffffff8203c390 d validate_nla.__msg
-ffffffff8203c3b0 d validate_nla.__msg.5
-ffffffff8203c3d0 d validate_nla.__msg.6
-ffffffff8203c3f0 d validate_nla.__msg.7
-ffffffff8203c410 d validate_nla.__msg.8
-ffffffff8203c440 d nla_validate_array.__msg
-ffffffff8203c460 d nla_validate_range_unsigned.__msg
-ffffffff8203c480 d nla_validate_range_unsigned.__msg.9
-ffffffff8203c4b0 d nla_validate_range_unsigned.__msg.10
-ffffffff8203c4d0 d nla_validate_int_range_signed.__msg
-ffffffff8203c4f0 d nla_validate_mask.__msg
-ffffffff8203c5a0 d font_vga_8x16
-ffffffff8203c5d0 d fontdata_8x16.llvm.18055006762818712642
-ffffffff8203d5e0 d simple_pm_bus_of_match
-ffffffff8203da90 d gpio_suffixes
-ffffffff8203daa8 d gpiolib_fops
-ffffffff8203dbb8 d gpiolib_sops
-ffffffff8203dbd8 d gpio_fileops
-ffffffff8203dce8 d linehandle_fileops
-ffffffff8203ddf8 d lineevent_fileops
-ffffffff8203df08 d line_fileops
-ffffffff8203e020 d __param_str_run_edge_events_on_boot
-ffffffff8203e050 d __param_str_ignore_wake
-ffffffff8203e070 d __param_str_ignore_interrupt
-ffffffff8203e0b0 d bgpio_of_match
-ffffffff8203e3d0 d bgpio_id_table
-ffffffff8203e460 d pci_speed_string.speed_strings
-ffffffff8203e530 d agp_speeds
-ffffffff8203e540 d pcie_link_speed
-ffffffff8203e550 d bridge_d3_blacklist
-ffffffff8203e958 d pci_dev_reset_method_attr_group
-ffffffff8203e980 d pci_reset_fn_methods
-ffffffff8203ea50 d pci_dev_pm_ops
-ffffffff8203eb08 d pci_drv_group
-ffffffff8203eb30 d pci_device_id_any
-ffffffff8203eb58 d pci_bus_group
-ffffffff8203eb80 d pcibus_group
-ffffffff8203eba8 d pci_dev_group
-ffffffff8203ebd0 d pci_dev_config_attr_group
-ffffffff8203ebf8 d pci_dev_rom_attr_group
-ffffffff8203ec20 d pci_dev_reset_attr_group
-ffffffff8203ec48 d pci_dev_resource_resize_group
-ffffffff8203ec70 d pci_dev_attr_group
-ffffffff8203ec98 d pci_dev_hp_attr_group
-ffffffff8203ecc0 d pci_bridge_attr_group
-ffffffff8203ece8 d pcie_dev_attr_group
-ffffffff8203ed10 d pci_dev_type
-ffffffff8203ed40 d pci_dev_vpd_attr_group
-ffffffff8203ed70 d vc_caps
-ffffffff8203eda0 d pci_phys_vm_ops
-ffffffff8203ee10 d port_pci_ids
-ffffffff8203eeb0 d pcie_portdrv_err_handler
-ffffffff8203eee0 d pcie_portdrv_pm_ops
-ffffffff8203efa0 d __param_str_policy
-ffffffff8203efb8 d __param_ops_policy
-ffffffff8203efd8 d aspm_ctrl_attr_group
-ffffffff8203f000 d aspm_ctrl_attrs_are_visible.aspm_state_map
-ffffffff8203f008 d aer_stats_attr_group
-ffffffff8203f030 d aer_error_severity_string
-ffffffff8203f050 d aer_error_layer
-ffffffff8203f070 d aer_agent_string
-ffffffff8203f090 d aer_correctable_error_string
-ffffffff8203f190 d aer_uncorrectable_error_string
-ffffffff8203f2b8 d proc_bus_pci_ops
-ffffffff8203f310 d proc_bus_pci_devices_op
-ffffffff8203f330 d pci_slot_sysfs_ops
-ffffffff8203f340 d pci_slot_default_group
-ffffffff8203f368 d pci_acpi_dsm_guid
-ffffffff8203f378 d acpi_pci_set_power_state.state_conv
-ffffffff8203f380 d acpi_pci_get_power_state.state_conv
-ffffffff8203f3a0 d hpx3_device_type.pcie_to_hpx3_type
-ffffffff8203f3d0 d pci_dev_acs_enabled
-ffffffff8203fb50 d boot_interrupt_dmi_table
-ffffffff8203fe00 d fixed_dma_alias_tbl
-ffffffff8203fe80 d pci_quirk_intel_pch_acs_ids
-ffffffff8203ff70 d sriov_vf_dev_attr_group
-ffffffff8203ff98 d sriov_pf_dev_attr_group
-ffffffff8203ffc0 d pci_dev_smbios_attr_group
-ffffffff8203ffe8 d pci_dev_acpi_attr_group
-ffffffff82040010 d vga_arb_device_fops
-ffffffff82040138 d pci_epf_type
-ffffffff82040168 d epc_ops
-ffffffff820401e0 d dw_plat_pcie_of_match
-ffffffff82040438 d pcie_ep_ops
-ffffffff82040458 d dw_plat_pcie_epc_features
-ffffffff82040498 d dw_plat_pcie_rc_of_data
-ffffffff8204049c d dw_plat_pcie_ep_of_data
-ffffffff820404a0 d dummy_con
-ffffffff82040570 d vga_con
-ffffffff82040640 d mps_inti_flags_polarity
-ffffffff82040660 d mps_inti_flags_trigger
-ffffffff82040698 d acpi_suspend_ops_old
-ffffffff820406e8 d acpi_suspend_ops
-ffffffff82040740 d acpi_suspend_states
-ffffffff82040758 d acpi_data_node_sysfs_ops
-ffffffff82040768 d acpi_data_node_default_group
-ffffffff82040790 d acpi_dev_pm_attach.special_pm_ids
-ffffffff82040898 d acpi_system_wakeup_device_proc_ops.llvm.5074490897747803762
-ffffffff82040940 d acpi_device_enumeration_by_parent.ignore_serial_bus_ids
-ffffffff82040aa0 d acpi_is_indirect_io_slave.indirect_io_hosts
-ffffffff82040ae0 d acpi_ignore_dep_ids
-ffffffff82040b00 d acpi_honor_dep_ids
-ffffffff82040b10 d acpi_wakeup_gpe_init.button_device_ids
-ffffffff82040b90 d generic_device_ids
-ffffffff82040bd0 d medion_laptop
-ffffffff82041130 d asus_laptop
-ffffffff82041aa0 d lenovo_laptop
-ffffffff82041eb0 d tongfang_gm_rg
-ffffffff82042160 d maingear_laptop
-ffffffff82042590 d k_pad.app_map
-ffffffff820425b0 d pty_line_name.ptychar
-ffffffff820425f0 d k_pad.pad_chars
-ffffffff82042640 d processor_device_ids
-ffffffff820426a0 d processor_device_ids
-ffffffff82042700 d processor_container_ids
-ffffffff82042740 d __param_str_ec_delay
-ffffffff82042750 d __param_str_ec_max_queries
-ffffffff82042770 d __param_str_ec_busy_polling
-ffffffff82042790 d __param_str_ec_polling_guard
-ffffffff820427b0 d __param_str_ec_storm_threshold
-ffffffff820427d0 d __param_str_ec_freeze_events
-ffffffff820427f0 d __param_str_ec_no_wakeup
-ffffffff82042810 d ec_device_ids
-ffffffff82042870 d __param_str_ec_event_clearing
-ffffffff82042888 d __param_ops_ec_event_clearing
-ffffffff820428b0 d acpi_ec_no_wakeup
-ffffffff82042e28 d acpi_ec_pm
-ffffffff82042ee0 d root_device_ids
-ffffffff82042f20 d link_device_ids
-ffffffff82042f60 d medion_md9580
-ffffffff82043210 d dell_optiplex
-ffffffff820434c0 d hp_t5710
-ffffffff82043770 d acpi_lpss_device_ids
-ffffffff82043b70 d acpi_apd_device_ids
-ffffffff82043b90 d forbidden_id_list
-ffffffff82043c70 d acpi_pnp_device_ids
-ffffffff82045d50 d is_cmos_rtc_device.ids
-ffffffff82045dd0 d wakeup_attr_group
-ffffffff82045e00 d attr_groups
-ffffffff82045ea0 d acpi_event_mcgrps
-ffffffff82045ec0 d ged_acpi_ids
-ffffffff82045f00 d __param_str_aml_debug_output
-ffffffff82045f20 d __param_str_acpica_version
-ffffffff82045f38 d __param_ops_acpica_version
-ffffffff82045f58 d force_remove_attr
-ffffffff82045f78 d pm_profile_attr
-ffffffff82045f98 d hotplug_profile_group
-ffffffff82045fc0 d acpi_data_fwnode_ops
-ffffffff82046070 d acpi_static_fwnode_ops
-ffffffff82046120 d buffer_prop_guid
-ffffffff82046130 d prp_guids
-ffffffff82046190 d ads_guid
-ffffffff820461a0 d acpi_device_fwnode_ops
-ffffffff82046250 d acpi_cmos_rtc_ids
-ffffffff820462d0 d apple_prp_guid
-ffffffff820462e0 d override_status_ids
-ffffffff82048310 d storage_d3_cpu_ids.llvm.14788760954015599562
-ffffffff82048370 d acpi_quirk_skip_dmi_ids
-ffffffff82048780 d __param_str_sleep_no_lps0
-ffffffff82048798 d acpi_s2idle_ops_lps0
-ffffffff820487e0 d lps0_device_ids
-ffffffff82048820 d amd_hid_ids
-ffffffff820488c0 d amd_cezanne
-ffffffff820488c1 d amd_picasso
-ffffffff820488c2 d _acpi_module_name
-ffffffff820488c9 d _acpi_module_name
-ffffffff820488d3 d _acpi_module_name
-ffffffff820488db d _acpi_module_name
-ffffffff820488e2 d _acpi_module_name
-ffffffff820488eb d _acpi_module_name
-ffffffff820488f4 d _acpi_module_name
-ffffffff820488fd d _acpi_module_name
-ffffffff82048906 d _acpi_module_name
-ffffffff82048910 d _acpi_module_name
-ffffffff82048918 d _acpi_module_name
-ffffffff82048920 d _acpi_module_name
-ffffffff82048928 d _acpi_module_name
-ffffffff82048931 d _acpi_module_name
-ffffffff8204893a d _acpi_module_name
-ffffffff82048943 d _acpi_module_name
-ffffffff8204894b d _acpi_module_name
-ffffffff82048951 d _acpi_module_name
-ffffffff8204895a d _acpi_module_name
-ffffffff82048964 d _acpi_module_name
-ffffffff8204896e d _acpi_module_name
-ffffffff82048976 d _acpi_module_name
-ffffffff82048980 d _acpi_module_name
-ffffffff82048987 d _acpi_module_name
-ffffffff82048990 d _acpi_module_name
-ffffffff82048999 d _acpi_module_name
-ffffffff820489a1 d _acpi_module_name
-ffffffff820489aa d _acpi_module_name
-ffffffff820489b2 d _acpi_module_name
-ffffffff820489bb d _acpi_module_name
-ffffffff820489c4 d _acpi_module_name
-ffffffff820489cd d _acpi_module_name
-ffffffff820489d6 d _acpi_module_name
-ffffffff820489de d _acpi_module_name
-ffffffff820489e6 d _acpi_module_name
-ffffffff820489ed d _acpi_module_name
-ffffffff820489f5 d _acpi_module_name
-ffffffff820489fd d _acpi_module_name
-ffffffff82048a06 d _acpi_module_name
-ffffffff82048a0f d _acpi_module_name
-ffffffff82048a18 d _acpi_module_name
-ffffffff82048a21 d _acpi_module_name
-ffffffff82048a28 d _acpi_module_name
-ffffffff82048a31 d _acpi_module_name
-ffffffff82048a3a d _acpi_module_name
-ffffffff82048a43 d _acpi_module_name
-ffffffff82048a4b d _acpi_module_name
-ffffffff82048a54 d _acpi_module_name
-ffffffff82048a5c d _acpi_module_name
-ffffffff82048a65 d _acpi_module_name
-ffffffff82048a6e d _acpi_module_name
-ffffffff82048a76 d _acpi_module_name
-ffffffff82048a7d d _acpi_module_name
-ffffffff82048a86 d _acpi_module_name
-ffffffff82048a8c d _acpi_module_name
-ffffffff82048a93 d _acpi_module_name
-ffffffff82048a9b d _acpi_module_name
-ffffffff82048aa3 d _acpi_module_name
-ffffffff82048aad d _acpi_module_name
-ffffffff82048ab6 d _acpi_module_name
-ffffffff82048abe d _acpi_module_name
-ffffffff82048aca d _acpi_module_name
-ffffffff82048ad4 d _acpi_module_name
-ffffffff82048adb d _acpi_module_name
-ffffffff82048ae2 d _acpi_module_name
-ffffffff82048aea d _acpi_module_name
-ffffffff82048af3 d _acpi_module_name
-ffffffff82048afb d _acpi_module_name
-ffffffff82048b04 d _acpi_module_name
-ffffffff82048b0d d _acpi_module_name
-ffffffff82048b16 d _acpi_module_name
-ffffffff82048b20 d _acpi_module_name
-ffffffff82048b29 d _acpi_module_name
-ffffffff82048b31 d _acpi_module_name
-ffffffff82048b3a d _acpi_module_name
-ffffffff82048b43 d _acpi_module_name
-ffffffff82048b4a d _acpi_module_name
-ffffffff82048b51 d _acpi_module_name
-ffffffff82048b5a d _acpi_module_name
-ffffffff82048b62 d _acpi_module_name
-ffffffff82048b69 d _acpi_module_name
-ffffffff82048b72 d _acpi_module_name
-ffffffff82048b79 d _acpi_module_name
-ffffffff82048b80 d _acpi_module_name
-ffffffff82048b88 d _acpi_module_name
-ffffffff82048b8f d _acpi_module_name
-ffffffff82048b96 d _acpi_module_name
-ffffffff82048b9f d _acpi_module_name
-ffffffff82048ba7 d _acpi_module_name
-ffffffff82048baf d _acpi_module_name
-ffffffff82048bb7 d _acpi_module_name
-ffffffff82048bc0 d _acpi_module_name
-ffffffff82048bc9 d _acpi_module_name
-ffffffff82048bd3 d _acpi_module_name
-ffffffff82048bda d _acpi_module_name
-ffffffff82048be2 d _acpi_module_name
-ffffffff82048beb d _acpi_module_name
-ffffffff82048bf2 d _acpi_module_name
-ffffffff82048bf9 d _acpi_module_name
-ffffffff82048c00 d _acpi_module_name
-ffffffff82048c08 d _acpi_module_name
-ffffffff82048c11 d _acpi_module_name
-ffffffff82048c17 d _acpi_module_name
-ffffffff82048c21 d _acpi_module_name
-ffffffff82048c29 d _acpi_module_name
-ffffffff82048c31 d _acpi_module_name
-ffffffff82048c3a d _acpi_module_name
-ffffffff82048c50 d acpi_gbl_op_type_dispatch
-ffffffff82048cd0 d acpi_protected_ports
-ffffffff82048e00 d acpi_gbl_predefined_methods
-ffffffff82049750 d acpi_object_repair_info
-ffffffff82049800 d acpi_ns_repairable_names
-ffffffff820498a0 d acpi_gbl_aml_op_info
-ffffffff8204a0d0 d acpi_gbl_argument_count
-ffffffff8204a0e0 d acpi_gbl_short_op_index
-ffffffff8204a1e0 d acpi_gbl_long_op_index
-ffffffff8204a270 d acpi_gbl_aml_resource_sizes
-ffffffff8204a290 d acpi_gbl_resource_struct_sizes
-ffffffff8204a2b3 d acpi_gbl_aml_resource_serial_bus_sizes
-ffffffff8204a2b8 d acpi_gbl_resource_struct_serial_bus_sizes
-ffffffff8204a2c0 d fadt_info_table
-ffffffff8204a340 d acpi_gbl_exception_names_env
-ffffffff8204a460 d acpi_gbl_exception_names_pgm
-ffffffff8204a4b0 d acpi_gbl_exception_names_tbl
-ffffffff8204a4e0 d acpi_gbl_exception_names_aml
-ffffffff8204a610 d acpi_gbl_exception_names_ctrl
-ffffffff8204a680 d acpi_gbl_ns_properties
-ffffffff8204a6a0 d acpi_gbl_event_types
-ffffffff8204a6c8 d acpi_gbl_bad_type
-ffffffff8204a6e0 d acpi_gbl_ns_type_names
-ffffffff8204a7e0 d acpi_gbl_desc_type_names
-ffffffff8204a860 d acpi_gbl_ref_class_names
-ffffffff8204a8a0 d acpi_gbl_mutex_names
-ffffffff8204a8d0 d acpi_gbl_lower_hex_digits
-ffffffff8204a8f0 d acpi_gbl_upper_hex_digits
-ffffffff8204a910 d acpi_gbl_pre_defined_names
-ffffffff8204aa00 d acpi_gbl_resource_aml_sizes
-ffffffff8204aa23 d acpi_gbl_resource_aml_serial_bus_sizes
-ffffffff8204aa30 d acpi_gbl_resource_types
-ffffffff8204aa60 d ac_device_ids
-ffffffff8204aaa0 d acpi_ac_pm
-ffffffff8204ab60 d __param_str_lid_report_interval
-ffffffff8204ab80 d __param_str_lid_init_state
-ffffffff8204ab98 d __param_ops_lid_init_state
-ffffffff8204abc0 d lid_init_state_str
-ffffffff8204abe0 d dmi_lid_quirks
-ffffffff8204b3f0 d button_device_ids
-ffffffff8204b4b0 d acpi_button_pm
-ffffffff8204b570 d fan_device_ids
-ffffffff8204b650 d acpi_fan_pm
-ffffffff8204b708 d fan_cooling_ops
-ffffffff8204b758 d processor_cooling_ops
-ffffffff8204b790 d __param_str_max_cstate
-ffffffff8204b7b0 d __param_str_nocst
-ffffffff8204b7c0 d __param_str_bm_check_disable
-ffffffff8204b7e0 d __param_str_latency_factor
-ffffffff8204b800 d processor_power_dmi_table
-ffffffff8204bd60 d __param_str_ignore_tpc
-ffffffff8204bd90 d __param_str_ignore_ppc
-ffffffff8204bde0 d container_device_ids
-ffffffff8204be60 d __param_str_act
-ffffffff8204be6c d __param_str_crt
-ffffffff8204be78 d __param_str_tzp
-ffffffff8204be84 d __param_str_nocrt
-ffffffff8204be92 d __param_str_off
-ffffffff8204be9e d __param_str_off
-ffffffff8204beaa d __param_str_off
-ffffffff8204beb6 d __param_str_psv
-ffffffff8204bed0 d thermal_device_ids
-ffffffff8204bf10 d acpi_thermal_pm
-ffffffff8204bfd0 d memory_device_ids
-ffffffff8204c010 d __param_str_cache_time
-ffffffff8204c030 d battery_device_ids
-ffffffff8204c090 d acpi_battery_pm
-ffffffff8204c150 d extended_info_offsets
-ffffffff8204c290 d info_offsets
-ffffffff8204c360 d alarm_attr
-ffffffff8204c390 d cppc_group
-ffffffff8204c3d0 d int340x_thermal_device_ids
-ffffffff8204c870 d __param_str_debug
-ffffffff8204c87a d __param_str_debug
-ffffffff8204c888 d pnp_bus_dev_pm_ops
-ffffffff8204c958 d pnp_dev_group
-ffffffff8204c980 d pnp_dev_table
-ffffffff8204c9b0 d pnp_dev_table
-ffffffff8204d3d0 d virtio_dev_group
-ffffffff8204d3f8 d virtio_pci_config_ops
-ffffffff8204d480 d virtio_pci_config_ops
-ffffffff8204d508 d virtio_pci_config_nodev_ops
-ffffffff8204d590 d __param_str_force_legacy
-ffffffff8204d5b0 d virtio_pci_id_table
-ffffffff8204d600 d virtio_pci_pm_ops
-ffffffff8204d6c0 d id_table
-ffffffff8204d6d0 d id_table
-ffffffff8204d6e0 d id_table
-ffffffff8204d6f0 d id_table
-ffffffff8204d700 d hung_up_tty_fops
-ffffffff8204d810 d tty_fops.llvm.3910776340376622018
-ffffffff8204d920 d console_fops
-ffffffff8204da30 d cons_dev_group
-ffffffff8204da58 d tty_ldiscs_seq_ops
-ffffffff8204da78 d tty_port_default_client_ops
-ffffffff8204da90 d baud_table
-ffffffff8204db10 d baud_bits
-ffffffff8204db90 d ptm_unix98_ops
-ffffffff8204dc98 d pty_unix98_ops
-ffffffff8204dda0 d sysrq_reboot_op
-ffffffff8204ddc0 d __param_str_reset_seq
-ffffffff8204ddd0 d __param_arr_reset_seq
-ffffffff8204ddf0 d __param_str_sysrq_downtime_ms
-ffffffff8204de08 d sysrq_loglevel_op
-ffffffff8204de28 d sysrq_crash_op
-ffffffff8204de48 d sysrq_term_op
-ffffffff8204de68 d sysrq_moom_op
-ffffffff8204de88 d sysrq_kill_op
-ffffffff8204dea8 d sysrq_thaw_op
-ffffffff8204dec8 d sysrq_SAK_op
-ffffffff8204dee8 d sysrq_showallcpus_op
-ffffffff8204df08 d sysrq_showmem_op
-ffffffff8204df28 d sysrq_unrt_op
-ffffffff8204df48 d sysrq_showregs_op
-ffffffff8204df68 d sysrq_show_timers_op
-ffffffff8204df88 d sysrq_unraw_op
-ffffffff8204dfa8 d sysrq_sync_op
-ffffffff8204dfc8 d sysrq_showstate_op
-ffffffff8204dfe8 d sysrq_mountro_op
-ffffffff8204e008 d sysrq_showstate_blocked_op
-ffffffff8204e028 d sysrq_ftrace_dump_op
-ffffffff8204e048 d param_ops_sysrq_reset_seq
-ffffffff8204e070 d sysrq_xlate
-ffffffff8204e370 d sysrq_ids
-ffffffff8204e500 d sysrq_trigger_proc_ops
-ffffffff8204e558 d vcs_fops
-ffffffff8204e680 d __param_str_brl_timeout
-ffffffff8204e6a0 d __param_str_brl_nbchords
-ffffffff8204e6c0 d kbd_ids
-ffffffff8204e920 d k_handler
-ffffffff8204e9a0 d x86_keycodes
-ffffffff8204eba0 d fn_handler
-ffffffff8204ec40 d k_dead.ret_diacr
-ffffffff8204ec5b d max_vals
-ffffffff8204ec70 d __param_str_default_utf8
-ffffffff8204ec80 d __param_str_global_cursor_default
-ffffffff8204ec99 d __param_str_cur_default
-ffffffff8204eca8 d __param_str_consoleblank
-ffffffff8204ecb8 d vc_port_ops
-ffffffff8204ece0 d color_table
-ffffffff8204ecf0 d __param_str_default_red
-ffffffff8204ed00 d __param_arr_default_red
-ffffffff8204ed20 d __param_str_default_grn
-ffffffff8204ed30 d __param_arr_default_grn
-ffffffff8204ed50 d __param_str_default_blu
-ffffffff8204ed60 d __param_arr_default_blu
-ffffffff8204ed80 d __param_str_color
-ffffffff8204ed89 d __param_str_italic
-ffffffff8204ed93 d __param_str_underline
-ffffffff8204eda0 d con_ops
-ffffffff8204eea8 d vt_dev_group
-ffffffff8204eed0 d vc_translate_unicode.utf8_length_changes
-ffffffff8204eee8 d respond_ID.vt102_id
-ffffffff8204eeee d status_report.teminal_ok
-ffffffff8204ef00 d is_double_width.double_width
-ffffffff8204ef60 d con_dev_group
-ffffffff8204ef88 d hvc_port_ops
-ffffffff8204efb0 d hvc_ops
-ffffffff8204f0b8 d uart_ops
-ffffffff8204f1c0 d uart_port_ops
-ffffffff8204f1e8 d tty_dev_attr_group
-ffffffff8204f210 d __param_str_share_irqs
-ffffffff8204f220 d __param_str_nr_uarts
-ffffffff8204f230 d __param_str_skip_txen_test
-ffffffff8204f248 d univ8250_driver_ops
-ffffffff8204f260 d old_serial_port
-ffffffff8204f320 d serial_pnp_pm_ops
-ffffffff8204f3e0 d uart_config
-ffffffff8204ff50 d serial8250_pops
-ffffffff82050080 d pci_ids
-ffffffff820502b0 d pci_ids
-ffffffff820503c8 d qrk_board
-ffffffff820503e8 d ehl_board
-ffffffff82050408 d byt_board
-ffffffff82050428 d pnw_board
-ffffffff82050450 d tng_board
-ffffffff82050478 d dnv_board
-ffffffff820504a0 d pericom8250_pci_ids
-ffffffff82050a90 d of_platform_serial_table
-ffffffff82051968 d of_serial_pm_ops
-ffffffff82051a20 d mctrl_gpios_desc
-ffffffff82051a80 d ttynull_port_ops
-ffffffff82051aa8 d ttynull_ops
-ffffffff82051bb0 d memory_fops
-ffffffff82051cc0 d devlist
-ffffffff82051e40 d null_fops
-ffffffff82051f50 d zero_fops
-ffffffff82052060 d full_fops
-ffffffff82052170 d __param_str_ratelimit_disable
-ffffffff82052190 d random_fops
-ffffffff820522a0 d urandom_fops
-ffffffff820523b0 d misc_seq_ops
-ffffffff820523d0 d misc_fops
-ffffffff820524e0 d hv_ops
-ffffffff82052528 d features
-ffffffff82052530 d portdev_fops
-ffffffff82052640 d port_attribute_group
-ffffffff82052668 d port_fops
-ffffffff82052778 d port_debugfs_fops
-ffffffff82052888 d rproc_serial_id_table
-ffffffff82052890 d hpet_fops
-ffffffff82052890 d rproc_serial_features
-ffffffff820529a0 d hpet_device_ids
-ffffffff820529e0 d __param_str_current_quality
-ffffffff82052a00 d __param_str_default_quality
-ffffffff82052a20 d rng_chrdev_ops
-ffffffff82052b30 d rng_dev_group
-ffffffff82052b60 d __param_str_no_fwh_detect
-ffffffff82052b80 d pci_tbl
-ffffffff820530b0 d pci_tbl
-ffffffff82053128 d iommu_group_sysfs_ops
-ffffffff82053140 d iommu_group_resv_type_string
-ffffffff82053228 d str__iommu__trace_system_name
-ffffffff82053230 d devices_attr_group
-ffffffff82053258 d iommu_dma_ops
-ffffffff82053320 d component_devices_fops
-ffffffff82053430 d device_uevent_ops
-ffffffff82053448 d devlink_group
-ffffffff82053470 d dev_sysfs_ops
-ffffffff820534b0 d bus_uevent_ops
-ffffffff820534c8 d driver_sysfs_ops
-ffffffff820534d8 d bus_sysfs_ops
-ffffffff820534e8 d deferred_devs_fops
-ffffffff820535f8 d class_sysfs_ops
-ffffffff82053608 d platform_dev_pm_ops
-ffffffff820536c0 d platform_dev_group
-ffffffff820536e8 d cpu_root_attr_group
-ffffffff82053710 d cpu_root_vulnerabilities_group
-ffffffff82053738 d topology_attr_group
-ffffffff82053860 d cache_type_info
-ffffffff820538c0 d cache_default_group
-ffffffff820538e8 d software_node_ops
-ffffffff82053998 d power_group_name
-ffffffff820539a0 d pm_attr_group
-ffffffff820539c8 d pm_runtime_attr_group.llvm.8071123969191757284
-ffffffff820539f0 d pm_wakeup_attr_group.llvm.8071123969191757284
-ffffffff82053a18 d pm_qos_latency_tolerance_attr_group.llvm.8071123969191757284
-ffffffff82053a40 d pm_qos_resume_latency_attr_group.llvm.8071123969191757284
-ffffffff82053a68 d pm_qos_flags_attr_group.llvm.8071123969191757284
-ffffffff82053a90 d ctrl_on
-ffffffff82053a93 d _enabled
-ffffffff82053a9b d _disabled
-ffffffff82053ad0 d wakeup_sources_stats_fops
-ffffffff82053be0 d wakeup_sources_stats_seq_ops
-ffffffff82053c00 d wakeup_source_group
-ffffffff82053c30 d __param_str_path
-ffffffff82053c48 d firmware_param_ops
-ffffffff82053c70 d fw_path
-ffffffff82053ce0 d firmware_class_group
-ffffffff82053d08 d fw_dev_attr_group
-ffffffff82053d30 d online_type_to_str
-ffffffff82053d50 d memory_memblk_attr_group
-ffffffff82053d78 d memory_root_attr_group
-ffffffff82053da0 d str__regmap__trace_system_name
-ffffffff82053db0 d cache_types
-ffffffff82053dc0 d rbtree_fops
-ffffffff82053ed0 d regmap_name_fops
-ffffffff82053fe0 d regmap_reg_ranges_fops
-ffffffff820540f0 d regmap_map_fops
-ffffffff82054200 d regmap_access_fops
-ffffffff82054310 d regmap_cache_only_fops
-ffffffff82054420 d regmap_cache_bypass_fops
-ffffffff82054530 d regmap_range_fops
-ffffffff82054640 d regmap_mmio
-ffffffff820546c8 d dev_attr_physical_location_group
-ffffffff82054750 d __param_str_rd_nr
-ffffffff8205475a d __param_str_rd_size
-ffffffff82054766 d __param_str_max_part
-ffffffff82054773 d __param_str_max_part
-ffffffff82054788 d brd_fops
-ffffffff82054820 d __param_str_max_loop
-ffffffff82054830 d __param_str_hw_queue_depth
-ffffffff82054848 d loop_hw_qdepth_param_ops
-ffffffff82054868 d loop_ctl_fops
-ffffffff82054978 d loop_mq_ops
-ffffffff82054a08 d lo_fops
-ffffffff82054aa0 d __param_str_num_request_queues
-ffffffff82054ac0 d __param_str_poll_queues
-ffffffff82054ae0 d __param_str_queue_depth
-ffffffff82054af8 d virtio_mq_ops
-ffffffff82054b88 d virtblk_fops
-ffffffff82054c20 d virtblk_attr_group
-ffffffff82054c50 d virtblk_cache_types
-ffffffff82054c60 d __param_str_num_devices
-ffffffff82054c78 d zram_control_class_group
-ffffffff82054ca0 d zram_devops
-ffffffff82054d38 d zram_disk_group
-ffffffff82054d60 d syscon_regmap_config
-ffffffff82054ea0 d syscon_ids
-ffffffff82054ee0 d nvdimm_bus_attribute_group
-ffffffff82054f08 d nvdimm_bus_firmware_attribute_group
-ffffffff82054fd0 d nvdimm_bus_dev_type
-ffffffff82055000 d __nd_cmd_dimm_descs
-ffffffff82055210 d __nd_cmd_bus_descs
-ffffffff82055420 d nvdimm_bus_fops
-ffffffff82055530 d nvdimm_fops
-ffffffff82055640 d nd_numa_attribute_group
-ffffffff82055668 d nd_device_attribute_group
-ffffffff82055730 d nvdimm_device_type.llvm.13749472731363974932
-ffffffff82055760 d nvdimm_attribute_group
-ffffffff82055788 d nvdimm_firmware_attribute_group
-ffffffff820557b0 d nd_pmem_device_type.llvm.2848778896877633854
-ffffffff820557e0 d nd_volatile_device_type.llvm.2848778896877633854
-ffffffff82055810 d nd_region_attribute_group
-ffffffff82055838 d nd_mapping_attribute_group
-ffffffff82055860 d namespace_pmem_device_type
-ffffffff82055890 d pmem_lbasize_supported
-ffffffff820558a8 d namespace_io_device_type
-ffffffff820558e0 d NSINDEX_SIGNATURE
-ffffffff820558f8 d nd_btt_device_type.llvm.17839109793716951103
-ffffffff82055930 d btt_lbasize_supported
-ffffffff82055970 d pmem_fops
-ffffffff82055a08 d pmem_dax_ops
-ffffffff82055a28 d dax_attribute_group
-ffffffff82055a50 d btt_fops
-ffffffff82055af0 d of_pmem_region_match
-ffffffff82055d48 d dax_sops
-ffffffff82055df8 d dev_dax_type
-ffffffff82055e28 d dax_region_attribute_group
-ffffffff82055e50 d dax_drv_group
-ffffffff82055e78 d dev_dax_attribute_group
-ffffffff82055ea0 d dax_mapping_attribute_group
-ffffffff82055ec8 d dma_buf_fops
-ffffffff82056000 d dma_buf_dentry_ops
-ffffffff82056080 d dma_buf_debug_fops
-ffffffff82056190 d str__dma_fence__trace_system_name
-ffffffff820561a0 d dma_fence_stub_ops
-ffffffff820561e8 d dma_fence_array_ops
-ffffffff82056230 d dma_fence_chain_ops
-ffffffff82056280 d dma_resv_describe.usage
-ffffffff820562a0 d dma_heap_fops
-ffffffff820563b0 d dma_heap_sysfs_group
-ffffffff820563d8 d dmabuf_sysfs_no_uevent_ops
-ffffffff820563f0 d dma_buf_stats_sysfs_ops
-ffffffff82056400 d dma_buf_stats_default_group
-ffffffff82056428 d loopback_ethtool_ops
-ffffffff82056658 d loopback_ops
-ffffffff820568b8 d blackhole_netdev_ops
-ffffffff82056b20 d uio_group
-ffffffff82056b48 d map_sysfs_ops
-ffffffff82056b58 d map_group
-ffffffff82056b80 d portio_sysfs_ops
-ffffffff82056b90 d portio_group
-ffffffff82056be0 d uio_fops
-ffffffff82056cf0 d uio_physical_vm_ops
-ffffffff82056d60 d uio_logical_vm_ops
-ffffffff82056dd0 d serio_pm_ops
-ffffffff82056e88 d serio_id_attr_group
-ffffffff82056eb0 d serio_device_attr_group
-ffffffff82056ed8 d serio_driver_group
-ffffffff82056f00 d __param_str_nokbd
-ffffffff82056f0c d __param_str_noaux
-ffffffff82056f18 d __param_str_nomux
-ffffffff82056f24 d __param_str_unlock
-ffffffff82056f40 d __param_str_probe_defer
-ffffffff82056f52 d __param_str_reset
-ffffffff82056f60 d param_ops_reset_param
-ffffffff82056f80 d __param_str_direct
-ffffffff82056f8d d __param_str_dumbkbd
-ffffffff82056f9b d __param_str_noloop
-ffffffff82056fb0 d __param_str_notimeout
-ffffffff82056fc0 d __param_str_kbdreset
-ffffffff82056fcf d __param_str_dritek
-ffffffff82056fdc d __param_str_nopnp
-ffffffff82056ff0 d __param_str_unmask_kbd_data
-ffffffff82057008 d i8042_pm_ops
-ffffffff820570c0 d pnp_kbd_devids
-ffffffff820571c0 d pnp_aux_devids
-ffffffff82057280 d input_dev_type
-ffffffff820572b0 d input_dev_pm_ops
-ffffffff82057368 d input_dev_attr_group
-ffffffff82057390 d input_dev_id_attr_group
-ffffffff820573b8 d input_dev_caps_attr_group
-ffffffff820573e0 d input_max_code
-ffffffff82057460 d input_devices_proc_ops
-ffffffff820574b8 d input_handlers_proc_ops
-ffffffff82057510 d input_devices_seq_ops
-ffffffff82057530 d input_handlers_seq_ops
-ffffffff82057550 d rtc_days_in_month
-ffffffff82057560 d rtc_ydays
-ffffffff82057598 d rtc_class_dev_pm_ops
-ffffffff82057650 d str__rtc__trace_system_name
-ffffffff82057658 d rtc_dev_fops
-ffffffff82057770 d __param_str_use_acpi_alarm
-ffffffff82057820 d driver_name
-ffffffff82057830 d cmos_rtc_ops
-ffffffff82057890 d rtc_ids
-ffffffff820578d0 d cmos_pm_ops
-ffffffff82057990 d of_cmos_match
-ffffffff82057b20 d POWER_SUPPLY_CHARGE_BEHAVIOUR_TEXT
-ffffffff82057b38 d power_supply_attr_group
-ffffffff82057b60 d POWER_SUPPLY_STATUS_TEXT
-ffffffff82057b90 d POWER_SUPPLY_CHARGE_TYPE_TEXT
-ffffffff82057d30 d POWER_SUPPLY_HEALTH_TEXT
-ffffffff82057db0 d POWER_SUPPLY_TECHNOLOGY_TEXT
-ffffffff82057df0 d POWER_SUPPLY_CAPACITY_LEVEL_TEXT
-ffffffff82057e20 d POWER_SUPPLY_TYPE_TEXT
-ffffffff82057e90 d POWER_SUPPLY_SCOPE_TEXT
-ffffffff82057eb0 d POWER_SUPPLY_USB_TYPE_TEXT
-ffffffff82057f00 d trace_raw_output_thermal_zone_trip.symbols
-ffffffff82057f60 d thermal_zone_attribute_groups
-ffffffff82057f70 d thermal_zone_attribute_group
-ffffffff82057f98 d thermal_zone_mode_attribute_group
-ffffffff82057fc0 d cooling_device_stats_attr_group
-ffffffff82057fe8 d cooling_device_attr_group
-ffffffff82058010 d event_cb
-ffffffff82058090 d thermal_genl_policy
-ffffffff82058210 d thermal_genl_ops
-ffffffff82058290 d thermal_genl_mcgrps
-ffffffff820582c0 d cmd_cb
-ffffffff820582f8 d thermal_attr_group
-ffffffff82058320 d __param_str_stop_on_reboot
-ffffffff82058340 d __param_str_handle_boot_enabled
-ffffffff82058360 d __param_str_open_timeout
-ffffffff82058378 d watchdog_fops
-ffffffff82058488 d __param_str_create
-ffffffff820584a0 d _dm_uevent_type_names
-ffffffff820584c0 d _exits
-ffffffff82058500 d dm_rq_blk_dops
-ffffffff82058598 d __param_str_major
-ffffffff820585b0 d __param_str_reserved_bio_based_ios
-ffffffff820585d0 d __param_str_dm_numa_node
-ffffffff820585f0 d __param_str_swap_bios
-ffffffff82058608 d dm_blk_dops
-ffffffff820586a0 d dm_pr_ops
-ffffffff820586c8 d _ctl_fops
-ffffffff820587e0 d lookup_ioctl._ioctls
-ffffffff82058900 d __param_str_kcopyd_subjob_size_kb
-ffffffff82058920 d dm_sysfs_ops
-ffffffff82058930 d dm_group
-ffffffff82058960 d __param_str_stats_current_allocated_bytes
-ffffffff82058988 d dm_mq_ops
-ffffffff82058a20 d __param_str_reserved_rq_based_ios
-ffffffff82058a40 d __param_str_use_blk_mq
-ffffffff82058a60 d __param_str_dm_mq_nr_hw_queues
-ffffffff82058a80 d __param_str_dm_mq_queue_depth
-ffffffff82058aa0 d __param_str_max_cache_size_bytes
-ffffffff82058ac0 d __param_str_max_age_seconds
-ffffffff82058ae0 d __param_str_retain_bytes
-ffffffff82058b00 d __param_str_peak_allocated_bytes
-ffffffff82058b20 d __param_str_allocated_kmem_cache_bytes
-ffffffff82058b50 d __param_str_allocated_get_free_pages_bytes
-ffffffff82058b80 d __param_str_allocated_vmalloc_bytes
-ffffffff82058bb0 d __param_str_current_allocated_bytes
-ffffffff82058be0 d adjust_total_allocated.class_ptr
-ffffffff82058c00 d crypt_ctr_optional._args
-ffffffff82058c10 d crypt_iv_plain_ops
-ffffffff82058c40 d crypt_iv_plain64_ops
-ffffffff82058c70 d crypt_iv_plain64be_ops
-ffffffff82058ca0 d crypt_iv_essiv_ops
-ffffffff82058cd0 d crypt_iv_benbi_ops
-ffffffff82058d00 d crypt_iv_null_ops
-ffffffff82058d30 d crypt_iv_eboiv_ops
-ffffffff82058d60 d crypt_iv_elephant_ops
-ffffffff82058d90 d crypt_iv_lmk_ops
-ffffffff82058dc0 d crypt_iv_tcw_ops
-ffffffff82058df0 d crypt_iv_random_ops
-ffffffff82058e20 d __param_str_prefetch_cluster
-ffffffff82058e40 d verity_parse_opt_args._args
-ffffffff82058e50 d __param_str_dm_user_daemon_timeout_msec
-ffffffff82058e78 d file_operations
-ffffffff82058fe0 d edac_mem_types
-ffffffff820590d0 d __param_str_edac_mc_panic_on_ue
-ffffffff820590f0 d __param_str_edac_mc_log_ue
-ffffffff82059110 d __param_str_edac_mc_log_ce
-ffffffff82059130 d __param_str_edac_mc_poll_msec
-ffffffff82059150 d __param_ops_edac_mc_poll_msec
-ffffffff82059170 d mci_attr_type
-ffffffff820591a0 d mci_attr_grp
-ffffffff820591c8 d dimm_attr_type
-ffffffff820591f8 d dimm_attr_grp
-ffffffff82059220 d dev_types
-ffffffff82059260 d edac_caps
-ffffffff820592b0 d csrow_attr_type
-ffffffff820592e0 d csrow_attr_grp
-ffffffff82059308 d csrow_dev_dimm_group
-ffffffff82059330 d csrow_dev_ce_count_group
-ffffffff82059358 d device_ctl_info_ops
-ffffffff82059368 d device_ctrl_group
-ffffffff82059390 d device_instance_ops
-ffffffff820593a0 d device_instance_group
-ffffffff820593c8 d device_block_ops
-ffffffff820593d8 d device_block_group
-ffffffff82059400 d __param_str_check_pci_errors
-ffffffff82059420 d __param_str_edac_pci_panic_on_pe
-ffffffff82059440 d edac_pci_sysfs_ops
-ffffffff82059450 d edac_pci_group
-ffffffff82059478 d pci_instance_ops
-ffffffff82059488 d pci_instance_group
-ffffffff820594b0 d __param_str_default_governor
-ffffffff820594d0 d __param_string_default_governor
-ffffffff820594e0 d sysfs_ops
-ffffffff820594f0 d cpufreq_group
-ffffffff82059530 d stats_attr_group
-ffffffff82059558 d cs_group
-ffffffff82059580 d governor_sysfs_ops
-ffffffff82059590 d intel_pstate_cpu_ids
-ffffffff820597f0 d intel_epp_balance_perf
-ffffffff82059820 d intel_pstate_cpu_ee_disable_ids
-ffffffff82059850 d intel_pstate_hwp_boost_ids
-ffffffff82059898 d silvermont_funcs
-ffffffff820598e0 d airmont_funcs
-ffffffff82059928 d knl_funcs
-ffffffff82059970 d silvermont_get_scaling.silvermont_freq_table
-ffffffff82059990 d airmont_get_scaling.airmont_freq_table
-ffffffff820599b8 d intel_pstate_attr_group
-ffffffff820599e0 d __param_str_governor
-ffffffff820599f8 d __param_string_governor
-ffffffff82059a08 d cpuidle_state_sysfs_ops
-ffffffff82059a18 d cpuidle_state_default_group
-ffffffff82059a40 d cpuidle_state_s2idle_group
-ffffffff82059a68 d cpuidle_sysfs_ops
-ffffffff82059a80 d __param_str_force
-ffffffff82059a97 d dmi_empty_string
-ffffffff82059aa0 d get_modalias.fields
-ffffffff82059ba0 d memmap_attr_ops
-ffffffff82059bb0 d def_group
-ffffffff82059bd8 d def_group
-ffffffff82059c68 d efi_subsys_attr_group
-ffffffff82059c90 d esrt_attr_group
-ffffffff82059cb8 d esre_attr_ops
-ffffffff82059cc8 d esre1_group
-ffffffff82059cf0 d map_attr_ops
-ffffffff82059d00 d of_parse_phandle_with_args_map.dummy_mask
-ffffffff82059d50 d of_parse_phandle_with_args_map.dummy_pass
-ffffffff82059da0 d of_default_bus_match_table
-ffffffff8205a0c0 d of_skipped_node_table
-ffffffff8205a250 d reserved_mem_matches
-ffffffff8205a890 d of_fwnode_ops
-ffffffff8205a950 d of_irq_imap_abusers
-ffffffff8205a990 d pcc_chan_ops
-ffffffff8205a9c0 d str__ras__trace_system_name
-ffffffff8205a9d0 d trace_raw_output_aer_event.__flags
-ffffffff8205aa60 d trace_raw_output_aer_event.__flags.62
-ffffffff8205aba0 d trace_fops
-ffffffff8205acb0 d nvmem_provider_type
-ffffffff8205ace0 d nvmem_bin_group
-ffffffff8205ad10 d nvmem_type_str
-ffffffff8205ad38 d socket_file_ops
-ffffffff8205ae80 d sockfs_inode_ops
-ffffffff8205af40 d pf_family_names
-ffffffff8205b0b0 d nargs
-ffffffff8205b0c8 d sockfs_ops
-ffffffff8205b180 d sockfs_dentry_operations
-ffffffff8205b200 d sockfs_xattr_handler
-ffffffff8205b230 d sockfs_security_xattr_handler
-ffffffff8205b260 d proto_seq_ops
-ffffffff8205b280 d drop_reasons
-ffffffff8205b490 d __const.skb_checksum.ops.llvm.13914390606543108028
-ffffffff8205b4a0 d default_crc32c_ops
-ffffffff8205b4b0 d rtnl_net_policy
-ffffffff8205b510 d rtnl_net_newid.__msg
-ffffffff8205b520 d rtnl_net_newid.__msg.10
-ffffffff8205b540 d rtnl_net_newid.__msg.11
-ffffffff8205b560 d rtnl_net_newid.__msg.12
-ffffffff8205b590 d rtnl_net_newid.__msg.13
-ffffffff8205b5c0 d __nlmsg_parse.__msg
-ffffffff8205b5e0 d __nlmsg_parse.__msg
-ffffffff8205b600 d __nlmsg_parse.__msg
-ffffffff8205b620 d __nlmsg_parse.__msg
-ffffffff8205b640 d __nlmsg_parse.__msg
-ffffffff8205b660 d __nlmsg_parse.__msg
-ffffffff8205b680 d __nlmsg_parse.__msg
-ffffffff8205b6a0 d __nlmsg_parse.__msg
-ffffffff8205b6c0 d __nlmsg_parse.__msg
-ffffffff8205b6e0 d __nlmsg_parse.__msg
-ffffffff8205b700 d __nlmsg_parse.__msg
-ffffffff8205b720 d __nlmsg_parse.__msg
-ffffffff8205b740 d __nlmsg_parse.__msg
-ffffffff8205b760 d rtnl_net_getid.__msg
-ffffffff8205b780 d rtnl_net_getid.__msg.14
-ffffffff8205b7a0 d rtnl_net_getid.__msg.15
-ffffffff8205b7d0 d rtnl_net_valid_getid_req.__msg
-ffffffff8205b810 d rtnl_valid_dump_net_req.__msg
-ffffffff8205b840 d rtnl_valid_dump_net_req.__msg.16
-ffffffff8205b870 d flow_keys_dissector_keys
-ffffffff8205b900 d flow_keys_dissector_symmetric_keys
-ffffffff8205b950 d flow_keys_basic_dissector_keys
-ffffffff8205b970 d dev_validate_mtu.__msg
-ffffffff8205b990 d dev_validate_mtu.__msg.57
-ffffffff8205b9b0 d default_ethtool_ops
-ffffffff8205bbe0 d skb_warn_bad_offload.null_features
-ffffffff8205bbf0 d dev_xdp_attach.__msg.118
-ffffffff8205bc20 d dev_xdp_attach.__msg.119
-ffffffff8205bc60 d dev_xdp_attach.__msg.121
-ffffffff8205bc90 d dev_xdp_attach.__msg.122
-ffffffff8205bcd0 d dev_xdp_attach.__msg.124
-ffffffff8205bd00 d dev_xdp_attach.__msg.130
-ffffffff8205bec8 d dst_default_metrics
-ffffffff8205bf10 d neigh_stat_seq_ops
-ffffffff8205bf30 d __neigh_update.__msg
-ffffffff8205bf50 d __neigh_update.__msg.19
-ffffffff8205bf70 d neigh_add.__msg
-ffffffff8205bf90 d neigh_add.__msg.44
-ffffffff8205bfb0 d neigh_add.__msg.45
-ffffffff8205bfd0 d neigh_add.__msg.46
-ffffffff8205bff0 d neigh_add.__msg.47
-ffffffff8205c010 d neigh_add.__msg.48
-ffffffff8205c040 d neigh_delete.__msg
-ffffffff8205c060 d neigh_delete.__msg.49
-ffffffff8205c080 d neigh_get.__msg
-ffffffff8205c0a0 d neigh_get.__msg.50
-ffffffff8205c0c0 d neigh_get.__msg.51
-ffffffff8205c0e0 d neigh_get.__msg.52
-ffffffff8205c100 d neigh_get.__msg.53
-ffffffff8205c120 d neigh_valid_get_req.__msg
-ffffffff8205c150 d neigh_valid_get_req.__msg.54
-ffffffff8205c190 d neigh_valid_get_req.__msg.55
-ffffffff8205c1d0 d neigh_valid_get_req.__msg.56
-ffffffff8205c210 d neigh_valid_get_req.__msg.57
-ffffffff8205c240 d neigh_valid_get_req.__msg.58
-ffffffff8205c270 d neigh_valid_dump_req.__msg
-ffffffff8205c2a0 d neigh_valid_dump_req.__msg.59
-ffffffff8205c2e0 d neigh_valid_dump_req.__msg.60
-ffffffff8205c320 d neigh_valid_dump_req.__msg.61
-ffffffff8205c350 d neightbl_valid_dump_info.__msg
-ffffffff8205c380 d neightbl_valid_dump_info.__msg.62
-ffffffff8205c3c0 d neightbl_valid_dump_info.__msg.63
-ffffffff8205c400 d nl_neightbl_policy
-ffffffff8205c4a0 d nl_ntbl_parm_policy
-ffffffff8205c5e0 d nda_policy
-ffffffff8205c700 d rtnl_create_link.__msg
-ffffffff8205c730 d rtnl_create_link.__msg.2
-ffffffff8205c760 d ifla_policy
-ffffffff8205cb70 d rtnetlink_rcv_msg.__msg
-ffffffff8205cb90 d rtnl_valid_getlink_req.__msg
-ffffffff8205cbb0 d rtnl_valid_getlink_req.__msg.11
-ffffffff8205cbe0 d rtnl_valid_getlink_req.__msg.12
-ffffffff8205cc10 d rtnl_ensure_unique_netns.__msg
-ffffffff8205cc40 d rtnl_ensure_unique_netns.__msg.13
-ffffffff8205cc70 d rtnl_dump_ifinfo.__msg
-ffffffff8205cca0 d rtnl_dump_ifinfo.__msg.14
-ffffffff8205ccd0 d rtnl_valid_dump_ifinfo_req.__msg
-ffffffff8205ccf0 d rtnl_valid_dump_ifinfo_req.__msg.15
-ffffffff8205cd20 d rtnl_valid_dump_ifinfo_req.__msg.16
-ffffffff8205cd60 d ifla_info_policy
-ffffffff8205cdc0 d ifla_vf_policy
-ffffffff8205cea0 d ifla_port_policy
-ffffffff8205cf20 d do_set_proto_down.__msg
-ffffffff8205cf50 d ifla_proto_down_reason_policy
-ffffffff8205cf80 d do_set_proto_down.__msg.18
-ffffffff8205cfa0 d do_set_proto_down.__msg.19
-ffffffff8205cfd0 d ifla_xdp_policy
-ffffffff8205d060 d __rtnl_newlink.__msg
-ffffffff8205d080 d rtnl_newlink_create.__msg
-ffffffff8205d0a0 d rtnl_alt_ifname.__msg
-ffffffff8205d0d0 d rtnl_fdb_add.__msg
-ffffffff8205d0e0 d rtnl_fdb_add.__msg.22
-ffffffff8205d0f0 d rtnl_fdb_add.__msg.23
-ffffffff8205d100 d rtnl_fdb_add.__msg.24
-ffffffff8205d130 d fdb_vid_parse.__msg
-ffffffff8205d150 d fdb_vid_parse.__msg.25
-ffffffff8205d160 d rtnl_fdb_del.__msg
-ffffffff8205d170 d rtnl_fdb_del.__msg.26
-ffffffff8205d180 d rtnl_fdb_del.__msg.27
-ffffffff8205d190 d rtnl_fdb_del.__msg.28
-ffffffff8205d1c0 d fdb_del_bulk_policy
-ffffffff8205d2e0 d rtnl_fdb_get.__msg
-ffffffff8205d310 d rtnl_fdb_get.__msg.30
-ffffffff8205d330 d rtnl_fdb_get.__msg.31
-ffffffff8205d360 d rtnl_fdb_get.__msg.32
-ffffffff8205d380 d rtnl_fdb_get.__msg.33
-ffffffff8205d3a0 d rtnl_fdb_get.__msg.34
-ffffffff8205d3c0 d rtnl_fdb_get.__msg.35
-ffffffff8205d3e0 d rtnl_fdb_get.__msg.36
-ffffffff8205d400 d rtnl_fdb_get.__msg.37
-ffffffff8205d430 d valid_fdb_get_strict.__msg
-ffffffff8205d460 d valid_fdb_get_strict.__msg.38
-ffffffff8205d490 d valid_fdb_get_strict.__msg.39
-ffffffff8205d4c0 d valid_fdb_get_strict.__msg.40
-ffffffff8205d4f0 d valid_fdb_get_strict.__msg.41
-ffffffff8205d520 d valid_fdb_dump_strict.__msg
-ffffffff8205d550 d valid_fdb_dump_strict.__msg.42
-ffffffff8205d580 d valid_fdb_dump_strict.__msg.43
-ffffffff8205d5b0 d valid_fdb_dump_strict.__msg.44
-ffffffff8205d5e0 d valid_fdb_dump_strict.__msg.45
-ffffffff8205d610 d valid_bridge_getlink_req.__msg
-ffffffff8205d640 d valid_bridge_getlink_req.__msg.46
-ffffffff8205d680 d valid_bridge_getlink_req.__msg.47
-ffffffff8205d6c0 d rtnl_bridge_dellink.__msg
-ffffffff8205d6d0 d rtnl_bridge_setlink.__msg
-ffffffff8205d6e0 d rtnl_stats_get.__msg
-ffffffff8205d710 d rtnl_valid_stats_req.__msg
-ffffffff8205d730 d rtnl_valid_stats_req.__msg.48
-ffffffff8205d760 d rtnl_valid_stats_req.__msg.49
-ffffffff8205d790 d rtnl_stats_get_policy
-ffffffff8205d7c0 d rtnl_stats_get_policy_filters
-ffffffff8205d820 d rtnl_stats_get_parse_filters.__msg
-ffffffff8205d850 d nla_parse_nested.__msg
-ffffffff8205d870 d nla_parse_nested.__msg
-ffffffff8205d890 d nla_parse_nested.__msg
-ffffffff8205d8b0 d nla_parse_nested.__msg
-ffffffff8205d8d0 d nla_parse_nested.__msg
-ffffffff8205d8f0 d nla_parse_nested.__msg
-ffffffff8205d910 d rtnl_stats_dump.__msg
-ffffffff8205d940 d rtnl_stats_set.__msg
-ffffffff8205d970 d rtnl_stats_set.__msg.51
-ffffffff8205d9a0 d ifla_stats_set_policy
-ffffffff8205da40 d bpf_xdp_get_buff_len_trace_proto
-ffffffff8205daa0 d bpf_skb_output_proto
-ffffffff8205db00 d bpf_xdp_output_proto
-ffffffff8205db60 d bpf_get_socket_ptr_cookie_proto
-ffffffff8205dbc0 d bpf_sk_setsockopt_proto
-ffffffff8205dc20 d bpf_sk_getsockopt_proto
-ffffffff8205dc80 d bpf_unlocked_sk_setsockopt_proto
-ffffffff8205dce0 d bpf_unlocked_sk_getsockopt_proto
-ffffffff8205dd40 d bpf_tcp_sock_proto
-ffffffff8205dda0 d sk_filter_verifier_ops
-ffffffff8205ddd0 d sk_filter_prog_ops
-ffffffff8205ddd8 d tc_cls_act_verifier_ops
-ffffffff8205de08 d tc_cls_act_prog_ops
-ffffffff8205de10 d xdp_verifier_ops
-ffffffff8205de40 d xdp_prog_ops
-ffffffff8205de48 d cg_skb_verifier_ops
-ffffffff8205de78 d cg_skb_prog_ops
-ffffffff8205de80 d lwt_in_verifier_ops
-ffffffff8205deb0 d lwt_in_prog_ops
-ffffffff8205deb8 d lwt_out_verifier_ops
-ffffffff8205dee8 d lwt_out_prog_ops
-ffffffff8205def0 d lwt_xmit_verifier_ops
-ffffffff8205df20 d lwt_xmit_prog_ops
-ffffffff8205df28 d lwt_seg6local_verifier_ops
-ffffffff8205df58 d lwt_seg6local_prog_ops
-ffffffff8205df60 d cg_sock_verifier_ops
-ffffffff8205df90 d cg_sock_prog_ops
-ffffffff8205df98 d cg_sock_addr_verifier_ops
-ffffffff8205dfc8 d cg_sock_addr_prog_ops
-ffffffff8205dfd0 d sock_ops_verifier_ops
-ffffffff8205e000 d sock_ops_prog_ops
-ffffffff8205e008 d sk_skb_verifier_ops
-ffffffff8205e038 d sk_skb_prog_ops
-ffffffff8205e040 d sk_msg_verifier_ops
-ffffffff8205e070 d sk_msg_prog_ops
-ffffffff8205e078 d flow_dissector_verifier_ops
-ffffffff8205e0a8 d flow_dissector_prog_ops
-ffffffff8205e0b0 d sk_reuseport_verifier_ops
-ffffffff8205e0e0 d sk_reuseport_prog_ops
-ffffffff8205e0e8 d sk_lookup_prog_ops
-ffffffff8205e0f0 d sk_lookup_verifier_ops
-ffffffff8205e120 d bpf_skc_to_tcp6_sock_proto
-ffffffff8205e180 d bpf_skc_to_tcp_sock_proto
-ffffffff8205e1e0 d bpf_skc_to_tcp_timewait_sock_proto
-ffffffff8205e240 d bpf_skc_to_tcp_request_sock_proto
-ffffffff8205e2a0 d bpf_skc_to_udp6_sock_proto
-ffffffff8205e300 d bpf_skc_to_unix_sock_proto
-ffffffff8205e360 d bpf_skc_to_mptcp_sock_proto
-ffffffff8205e3c0 d bpf_sock_from_file_proto
-ffffffff8205e420 d bpf_event_output_data_proto
-ffffffff8205e480 d bpf_sk_storage_get_cg_sock_proto
-ffffffff8205e4e0 d bpf_sk_storage_get_proto
-ffffffff8205e540 d bpf_sk_storage_delete_proto
-ffffffff8205e5a0 d bpf_sock_map_update_proto
-ffffffff8205e600 d bpf_sock_hash_update_proto
-ffffffff8205e660 d bpf_msg_redirect_map_proto
-ffffffff8205e6c0 d bpf_msg_redirect_hash_proto
-ffffffff8205e720 d bpf_sk_redirect_map_proto
-ffffffff8205e780 d bpf_sk_redirect_hash_proto
-ffffffff8205e7e0 d chk_code_allowed.codes
-ffffffff8205e898 d bpf_skb_load_bytes_proto
-ffffffff8205e8f8 d bpf_skb_load_bytes_relative_proto
-ffffffff8205e958 d bpf_get_socket_cookie_proto
-ffffffff8205e9b8 d bpf_get_socket_uid_proto
-ffffffff8205ea18 d bpf_skb_event_output_proto
-ffffffff8205ea78 d bpf_skb_store_bytes_proto
-ffffffff8205ead8 d bpf_skb_pull_data_proto
-ffffffff8205eb38 d bpf_csum_diff_proto
-ffffffff8205eb98 d bpf_csum_update_proto
-ffffffff8205ebf8 d bpf_csum_level_proto
-ffffffff8205ec58 d bpf_l3_csum_replace_proto
-ffffffff8205ecb8 d bpf_l4_csum_replace_proto
-ffffffff8205ed18 d bpf_clone_redirect_proto
-ffffffff8205ed78 d bpf_get_cgroup_classid_proto
-ffffffff8205edd8 d bpf_skb_vlan_push_proto
-ffffffff8205ee38 d bpf_skb_vlan_pop_proto
-ffffffff8205ee98 d bpf_skb_change_proto_proto
-ffffffff8205eef8 d bpf_skb_change_type_proto
-ffffffff8205ef58 d bpf_skb_adjust_room_proto
-ffffffff8205efb8 d bpf_skb_change_tail_proto
-ffffffff8205f018 d bpf_skb_change_head_proto
-ffffffff8205f078 d bpf_skb_get_tunnel_key_proto
-ffffffff8205f0d8 d bpf_skb_get_tunnel_opt_proto
-ffffffff8205f138 d bpf_redirect_proto
-ffffffff8205f198 d bpf_redirect_neigh_proto
-ffffffff8205f1f8 d bpf_redirect_peer_proto
-ffffffff8205f258 d bpf_get_route_realm_proto
-ffffffff8205f2b8 d bpf_get_hash_recalc_proto
-ffffffff8205f318 d bpf_set_hash_invalid_proto
-ffffffff8205f378 d bpf_set_hash_proto
-ffffffff8205f3d8 d bpf_skb_under_cgroup_proto
-ffffffff8205f438 d bpf_skb_fib_lookup_proto
-ffffffff8205f498 d bpf_skb_check_mtu_proto
-ffffffff8205f4f8 d bpf_sk_fullsock_proto
-ffffffff8205f558 d bpf_skb_get_xfrm_state_proto
-ffffffff8205f5b8 d bpf_skb_cgroup_id_proto
-ffffffff8205f618 d bpf_skb_ancestor_cgroup_id_proto
-ffffffff8205f678 d bpf_sk_lookup_tcp_proto
-ffffffff8205f6d8 d bpf_sk_lookup_udp_proto
-ffffffff8205f738 d bpf_sk_release_proto
-ffffffff8205f798 d bpf_get_listener_sock_proto
-ffffffff8205f7f8 d bpf_skc_lookup_tcp_proto
-ffffffff8205f858 d bpf_tcp_check_syncookie_proto
-ffffffff8205f8b8 d bpf_skb_ecn_set_ce_proto
-ffffffff8205f918 d bpf_tcp_gen_syncookie_proto
-ffffffff8205f978 d bpf_sk_assign_proto
-ffffffff8205f9d8 d bpf_skb_set_tstamp_proto
-ffffffff8205fa38 d bpf_skb_set_tunnel_key_proto
-ffffffff8205fa98 d bpf_skb_set_tunnel_opt_proto
-ffffffff8205faf8 d bpf_xdp_event_output_proto
-ffffffff8205fb58 d bpf_xdp_adjust_head_proto
-ffffffff8205fbb8 d bpf_xdp_adjust_meta_proto
-ffffffff8205fc18 d bpf_xdp_redirect_proto
-ffffffff8205fc78 d bpf_xdp_redirect_map_proto
-ffffffff8205fcd8 d bpf_xdp_adjust_tail_proto
-ffffffff8205fd38 d bpf_xdp_get_buff_len_proto
-ffffffff8205fd98 d bpf_xdp_load_bytes_proto
-ffffffff8205fdf8 d bpf_xdp_store_bytes_proto
-ffffffff8205fe58 d bpf_xdp_fib_lookup_proto
-ffffffff8205feb8 d bpf_xdp_check_mtu_proto
-ffffffff8205ff18 d bpf_xdp_sk_lookup_udp_proto
-ffffffff8205ff78 d bpf_xdp_sk_lookup_tcp_proto
-ffffffff8205ffd8 d bpf_xdp_skc_lookup_tcp_proto
-ffffffff82060038 d bpf_sk_cgroup_id_proto
-ffffffff82060098 d bpf_sk_ancestor_cgroup_id_proto
-ffffffff820600f8 d bpf_lwt_in_push_encap_proto
-ffffffff82060158 d bpf_lwt_xmit_push_encap_proto
-ffffffff820601b8 d bpf_get_socket_cookie_sock_proto
-ffffffff82060218 d bpf_get_netns_cookie_sock_proto
-ffffffff82060278 d bpf_bind_proto
-ffffffff820602d8 d bpf_get_socket_cookie_sock_addr_proto
-ffffffff82060338 d bpf_get_netns_cookie_sock_addr_proto
-ffffffff82060398 d bpf_sock_addr_sk_lookup_tcp_proto
-ffffffff820603f8 d bpf_sock_addr_sk_lookup_udp_proto
-ffffffff82060458 d bpf_sock_addr_skc_lookup_tcp_proto
-ffffffff820604b8 d bpf_sock_addr_setsockopt_proto
-ffffffff82060518 d bpf_sock_addr_getsockopt_proto
-ffffffff82060578 d bpf_sock_ops_setsockopt_proto
-ffffffff820605d8 d bpf_sock_ops_getsockopt_proto
-ffffffff82060638 d bpf_sock_ops_cb_flags_set_proto
-ffffffff82060698 d bpf_get_socket_cookie_sock_ops_proto
-ffffffff820606f8 d bpf_get_netns_cookie_sock_ops_proto
-ffffffff82060758 d bpf_sock_ops_load_hdr_opt_proto
-ffffffff820607b8 d bpf_sock_ops_store_hdr_opt_proto
-ffffffff82060818 d bpf_sock_ops_reserve_hdr_opt_proto
-ffffffff82060878 d sk_skb_pull_data_proto
-ffffffff820608d8 d sk_skb_change_tail_proto
-ffffffff82060938 d sk_skb_change_head_proto
-ffffffff82060998 d sk_skb_adjust_room_proto
-ffffffff820609f8 d bpf_msg_apply_bytes_proto
-ffffffff82060a58 d bpf_msg_cork_bytes_proto
-ffffffff82060ab8 d bpf_msg_pull_data_proto
-ffffffff82060b18 d bpf_msg_push_data_proto
-ffffffff82060b78 d bpf_msg_pop_data_proto
-ffffffff82060bd8 d bpf_get_netns_cookie_sk_msg_proto
-ffffffff82060c38 d bpf_flow_dissector_load_bytes_proto
-ffffffff82060c98 d sk_select_reuseport_proto
-ffffffff82060cf8 d sk_reuseport_load_bytes_proto
-ffffffff82060d58 d sk_reuseport_load_bytes_relative_proto
-ffffffff82060db8 d bpf_sk_lookup_assign_proto
-ffffffff82061030 d mem_id_rht_params
-ffffffff82061058 d dql_group
-ffffffff82061080 d net_ns_type_operations
-ffffffff820610b0 d netstat_group
-ffffffff820610d8 d wireless_group
-ffffffff82061100 d rx_queue_sysfs_ops
-ffffffff82061110 d rx_queue_default_group
-ffffffff82061140 d netdev_queue_sysfs_ops
-ffffffff82061150 d netdev_queue_default_group
-ffffffff82061180 d net_class_group
-ffffffff820611a8 d fmt_hex
-ffffffff820611b0 d operstates
-ffffffff820611e8 d fmt_u64
-ffffffff820611f0 d dev_seq_ops
-ffffffff82061210 d softnet_seq_ops
-ffffffff82061230 d ptype_seq_ops
-ffffffff82061250 d dev_mc_seq_ops
-ffffffff82061270 d fib_nl_newrule.__msg
-ffffffff82061290 d fib_nl_newrule.__msg.2
-ffffffff820612b0 d fib_nl_newrule.__msg.3
-ffffffff820612d0 d fib_nl_delrule.__msg
-ffffffff820612f0 d fib_nl_delrule.__msg.4
-ffffffff82061310 d fib_nl_delrule.__msg.5
-ffffffff82061330 d fib_rule_policy
-ffffffff820614c0 d fib_nl2rule.__msg
-ffffffff820614e0 d fib_nl2rule.__msg.8
-ffffffff82061500 d fib_nl2rule.__msg.9
-ffffffff82061510 d fib_nl2rule.__msg.10
-ffffffff82061530 d fib_nl2rule.__msg.11
-ffffffff82061560 d fib_nl2rule.__msg.12
-ffffffff82061590 d fib_nl2rule.__msg.13
-ffffffff820615b0 d fib_nl2rule.__msg.14
-ffffffff820615d0 d fib_nl2rule.__msg.15
-ffffffff820615f0 d fib_nl2rule.__msg.16
-ffffffff82061610 d fib_nl2rule_l3mdev.__msg
-ffffffff82061640 d fib_valid_dumprule_req.__msg
-ffffffff82061670 d fib_valid_dumprule_req.__msg.19
-ffffffff820616b0 d fib_valid_dumprule_req.__msg.20
-ffffffff820616e3 d str__skb__trace_system_name
-ffffffff820616e7 d str__net__trace_system_name
-ffffffff820616eb d str__sock__trace_system_name
-ffffffff820616f0 d str__udp__trace_system_name
-ffffffff820616f4 d str__tcp__trace_system_name
-ffffffff820616f8 d str__fib__trace_system_name
-ffffffff820616fc d str__bridge__trace_system_name
-ffffffff82061703 d str__neigh__trace_system_name
-ffffffff82061710 d trace_raw_output_kfree_skb.symbols
-ffffffff82061b40 d trace_raw_output_sock_exceed_buf_limit.symbols
-ffffffff82061b70 d trace_raw_output_inet_sock_set_state.symbols
-ffffffff82061ba0 d trace_raw_output_inet_sock_set_state.symbols.243
-ffffffff82061bf0 d trace_raw_output_inet_sock_set_state.symbols.244
-ffffffff82061cc0 d trace_raw_output_inet_sock_set_state.symbols.245
-ffffffff82061d90 d trace_raw_output_inet_sk_error_report.symbols
-ffffffff82061dc0 d trace_raw_output_inet_sk_error_report.symbols.248
-ffffffff82061e10 d trace_raw_output_tcp_event_sk_skb.symbols
-ffffffff82061e40 d trace_raw_output_tcp_event_sk_skb.symbols.254
-ffffffff82061f10 d trace_raw_output_tcp_event_sk.symbols
-ffffffff82061f40 d trace_raw_output_tcp_retransmit_synack.symbols
-ffffffff82061f70 d trace_raw_output_tcp_probe.symbols
-ffffffff82061fb0 d trace_raw_output_neigh_update.symbols
-ffffffff82062040 d trace_raw_output_neigh_update.symbols.352
-ffffffff820620d0 d trace_raw_output_neigh__update.symbols
-ffffffff82062280 d eth_header_ops
-ffffffff820622b0 d qdisc_alloc.__msg
-ffffffff820622c8 d mq_class_ops
-ffffffff82062338 d netlink_ops
-ffffffff82062418 d netlink_rhashtable_params
-ffffffff82062440 d netlink_family_ops
-ffffffff82062460 d netlink_seq_ops
-ffffffff82062480 d genl_ctrl_ops
-ffffffff820624e0 d genl_ctrl_groups
-ffffffff82062500 d ctrl_policy_family
-ffffffff82062530 d ctrl_policy_policy
-ffffffff82062610 d genl_header_check.__msg
-ffffffff82062640 d genl_header_check.__msg.10
-ffffffff82062780 d link_mode_params
-ffffffff82062a70 d netif_msg_class_names
-ffffffff82062c50 d wol_mode_names
-ffffffff82062d50 d sof_timestamping_names
-ffffffff82062f50 d ts_tx_type_names
-ffffffff82062fd0 d ts_rx_filter_names
-ffffffff820631d0 d udp_tunnel_type_names
-ffffffff82063230 d netdev_features_strings
-ffffffff82063a30 d rss_hash_func_strings
-ffffffff82063a90 d tunable_strings
-ffffffff82063b30 d phy_tunable_strings
-ffffffff82063bb0 d link_mode_names
-ffffffff82064750 d ethnl_header_policy
-ffffffff82064790 d ethnl_header_policy_stats
-ffffffff820647d0 d ethnl_parse_header_dev_get.__msg
-ffffffff820647f0 d ethnl_parse_header_dev_get.__msg.1
-ffffffff82064810 d ethnl_parse_header_dev_get.__msg.2
-ffffffff82064830 d ethnl_parse_header_dev_get.__msg.3
-ffffffff82064850 d ethnl_parse_header_dev_get.__msg.4
-ffffffff82064880 d ethnl_reply_init.__msg
-ffffffff820648a0 d ethnl_notify_handlers
-ffffffff820649d0 d ethnl_default_notify_ops
-ffffffff82064b00 d ethtool_genl_ops
-ffffffff820651f0 d ethtool_nl_mcgrps
-ffffffff82065210 d ethnl_default_requests
-ffffffff82065340 d ethnl_parse_bitset.__msg
-ffffffff82065370 d ethnl_parse_bitset.__msg.1
-ffffffff820653a0 d bitset_policy
-ffffffff82065400 d ethnl_update_bitset32_verbose.__msg
-ffffffff82065430 d ethnl_update_bitset32_verbose.__msg.3
-ffffffff82065460 d ethnl_update_bitset32_verbose.__msg.4
-ffffffff820654a0 d ethnl_compact_sanity_checks.__msg
-ffffffff820654c0 d ethnl_compact_sanity_checks.__msg.5
-ffffffff820654e0 d ethnl_compact_sanity_checks.__msg.6
-ffffffff82065500 d ethnl_compact_sanity_checks.__msg.7
-ffffffff82065530 d ethnl_compact_sanity_checks.__msg.8
-ffffffff82065560 d ethnl_compact_sanity_checks.__msg.9
-ffffffff82065590 d ethnl_compact_sanity_checks.__msg.10
-ffffffff820655c0 d bit_policy
-ffffffff82065600 d ethnl_parse_bit.__msg
-ffffffff82065620 d ethnl_parse_bit.__msg.11
-ffffffff82065640 d ethnl_parse_bit.__msg.12
-ffffffff82065660 d ethnl_parse_bit.__msg.13
-ffffffff82065690 d ethnl_strset_get_policy
-ffffffff820656d0 d ethnl_strset_request_ops
-ffffffff82065710 d strset_stringsets_policy
-ffffffff82065730 d strset_parse_request.__msg
-ffffffff82065750 d get_stringset_policy
-ffffffff82065770 d info_template
-ffffffff820658c0 d strset_prepare_data.__msg
-ffffffff820658f0 d ethnl_linkinfo_get_policy
-ffffffff82065910 d ethnl_linkinfo_request_ops
-ffffffff82065950 d ethnl_linkinfo_set_policy
-ffffffff820659b0 d ethnl_set_linkinfo.__msg
-ffffffff820659e0 d ethnl_set_linkinfo.__msg.1
-ffffffff82065a00 d linkinfo_prepare_data.__msg
-ffffffff82065a30 d ethnl_linkmodes_get_policy
-ffffffff82065a50 d ethnl_linkmodes_request_ops
-ffffffff82065a90 d ethnl_linkmodes_set_policy
-ffffffff82065b30 d ethnl_set_linkmodes.__msg
-ffffffff82065b60 d ethnl_set_linkmodes.__msg.1
-ffffffff82065b80 d linkmodes_prepare_data.__msg
-ffffffff82065bb0 d ethnl_check_linkmodes.__msg
-ffffffff82065bd0 d ethnl_check_linkmodes.__msg.2
-ffffffff82065bf0 d ethnl_update_linkmodes.__msg
-ffffffff82065c30 d ethnl_update_linkmodes.__msg.3
-ffffffff82065c60 d ethnl_linkstate_get_policy
-ffffffff82065c80 d ethnl_linkstate_request_ops
-ffffffff82065cc0 d ethnl_debug_get_policy
-ffffffff82065ce0 d ethnl_debug_request_ops
-ffffffff82065d20 d ethnl_debug_set_policy
-ffffffff82065d50 d ethnl_wol_get_policy
-ffffffff82065d70 d ethnl_wol_request_ops
-ffffffff82065db0 d ethnl_wol_set_policy
-ffffffff82065e10 d ethnl_set_wol.__msg
-ffffffff82065e40 d ethnl_set_wol.__msg.1
-ffffffff82065e70 d ethnl_features_get_policy
-ffffffff82065e90 d ethnl_features_request_ops
-ffffffff82065ed0 d ethnl_features_set_policy
-ffffffff82065f10 d ethnl_set_features.__msg
-ffffffff82065f40 d features_send_reply.__msg
-ffffffff82065f60 d ethnl_privflags_get_policy
-ffffffff82065f80 d ethnl_privflags_request_ops
-ffffffff82065fc0 d ethnl_privflags_set_policy
-ffffffff82065ff0 d ethnl_rings_get_policy
-ffffffff82066010 d ethnl_rings_request_ops
-ffffffff82066050 d ethnl_rings_set_policy
-ffffffff82066130 d ethnl_set_rings.__msg
-ffffffff82066160 d ethnl_set_rings.__msg.1
-ffffffff82066180 d ethnl_set_rings.__msg.2
-ffffffff820661a0 d ethnl_set_rings.__msg.3
-ffffffff820661d0 d ethnl_channels_get_policy
-ffffffff820661f0 d ethnl_channels_request_ops
-ffffffff82066230 d ethnl_channels_set_policy
-ffffffff820662d0 d ethnl_set_channels.__msg
-ffffffff82066300 d ethnl_set_channels.__msg.1
-ffffffff82066350 d ethnl_set_channels.__msg.2
-ffffffff820663a0 d ethnl_coalesce_get_policy
-ffffffff820663c0 d ethnl_coalesce_request_ops
-ffffffff82066400 d ethnl_coalesce_set_policy
-ffffffff820665a0 d ethnl_set_coalesce.__msg
-ffffffff820665d0 d ethnl_pause_get_policy
-ffffffff820665f0 d ethnl_pause_request_ops
-ffffffff82066630 d ethnl_pause_set_policy
-ffffffff82066680 d ethnl_eee_get_policy
-ffffffff820666a0 d ethnl_eee_request_ops
-ffffffff820666e0 d ethnl_eee_set_policy
-ffffffff82066760 d ethnl_tsinfo_get_policy
-ffffffff82066780 d ethnl_tsinfo_request_ops
-ffffffff820667c0 d ethnl_cable_test_act_policy
-ffffffff820667e0 d ethnl_cable_test_tdr_act_policy
-ffffffff82066810 d cable_test_tdr_act_cfg_policy
-ffffffff82066860 d ethnl_act_cable_test_tdr_cfg.__msg
-ffffffff82066880 d ethnl_act_cable_test_tdr_cfg.__msg.2
-ffffffff820668a0 d ethnl_act_cable_test_tdr_cfg.__msg.3
-ffffffff820668c0 d ethnl_act_cable_test_tdr_cfg.__msg.4
-ffffffff820668e0 d ethnl_act_cable_test_tdr_cfg.__msg.5
-ffffffff82066900 d ethnl_act_cable_test_tdr_cfg.__msg.6
-ffffffff82066920 d ethnl_tunnel_info_get_policy
-ffffffff82066940 d ethnl_tunnel_info_reply_size.__msg
-ffffffff82066970 d ethnl_fec_get_policy
-ffffffff82066990 d ethnl_fec_request_ops
-ffffffff820669d0 d ethnl_fec_set_policy
-ffffffff82066a10 d ethnl_set_fec.__msg
-ffffffff82066a30 d ethnl_set_fec.__msg.1
-ffffffff82066a48 d ethnl_module_eeprom_request_ops
-ffffffff82066a80 d ethnl_module_eeprom_get_policy
-ffffffff82066af0 d eeprom_parse_request.__msg
-ffffffff82066b30 d eeprom_parse_request.__msg.1
-ffffffff82066b60 d eeprom_parse_request.__msg.2
-ffffffff82066b90 d stats_std_names
-ffffffff82066c10 d stats_eth_phy_names
-ffffffff82066c30 d stats_eth_mac_names
-ffffffff82066ef0 d stats_eth_ctrl_names
-ffffffff82066f50 d stats_rmon_names
-ffffffff82066fd0 d ethnl_stats_get_policy
-ffffffff82067010 d ethnl_stats_request_ops
-ffffffff82067050 d stats_parse_request.__msg
-ffffffff82067070 d ethnl_phc_vclocks_get_policy
-ffffffff82067090 d ethnl_phc_vclocks_request_ops
-ffffffff820670d0 d ethnl_module_get_policy
-ffffffff820670f0 d ethnl_module_request_ops
-ffffffff82067130 d ethnl_module_set_policy
-ffffffff82067160 d module_set_power_mode.__msg
-ffffffff820671a0 d ethnl_pse_get_policy
-ffffffff820671c0 d ethnl_pse_request_ops
-ffffffff82067200 d ethnl_pse_set_policy
-ffffffff82067250 d pse_get_pse_attributes.__msg
-ffffffff82067270 d pse_get_pse_attributes.__msg.1
-ffffffff82067290 d pse_set_pse_config.__msg
-ffffffff820672b0 d pse_set_pse_config.__msg.2
-ffffffff820672d0 d ip_tos2prio
-ffffffff820672e0 d rt_cache_seq_ops
-ffffffff82067300 d rt_cpu_seq_ops
-ffffffff82067320 d inet_rtm_valid_getroute_req.__msg
-ffffffff82067350 d inet_rtm_valid_getroute_req.__msg.20
-ffffffff82067390 d inet_rtm_valid_getroute_req.__msg.21
-ffffffff820673d0 d inet_rtm_valid_getroute_req.__msg.22
-ffffffff82067410 d inet_rtm_valid_getroute_req.__msg.23
-ffffffff82067441 d ipv4_route_flush_procname
-ffffffff82067447 d ip_frag_cache_name
-ffffffff82067458 d ip4_rhash_params
-ffffffff82067480 d tcp_vm_ops
-ffffffff82067508 d tcp_request_sock_ipv4_ops
-ffffffff82067530 d ipv4_specific
-ffffffff82067588 d tcp4_seq_ops
-ffffffff820675b0 d tcp_metrics_nl_ops
-ffffffff820675e0 d tcp_metrics_nl_policy
-ffffffff820676d8 d tcpv4_offload.llvm.11843097101923400041
-ffffffff820676f8 d raw_seq_ops
-ffffffff82067718 d udp_seq_ops
-ffffffff82067738 d udplite_protocol
-ffffffff82067750 d udpv4_offload.llvm.8326017856540786842
-ffffffff82067770 d arp_direct_ops
-ffffffff82067798 d arp_hh_ops
-ffffffff820677c0 d arp_generic_ops
-ffffffff820677e8 d arp_seq_ops
-ffffffff82067810 d icmp_err_convert
-ffffffff82067890 d icmp_pointers
-ffffffff820679c0 d inet_af_policy
-ffffffff820679e0 d ifa_ipv4_policy
-ffffffff82067aa0 d inet_valid_dump_ifaddr_req.__msg
-ffffffff82067ad0 d inet_valid_dump_ifaddr_req.__msg.47
-ffffffff82067b10 d inet_valid_dump_ifaddr_req.__msg.48
-ffffffff82067b40 d inet_valid_dump_ifaddr_req.__msg.49
-ffffffff82067b70 d inet_netconf_valid_get_req.__msg
-ffffffff82067ba0 d devconf_ipv4_policy
-ffffffff82067c30 d inet_netconf_valid_get_req.__msg.50
-ffffffff82067c70 d inet_netconf_dump_devconf.__msg
-ffffffff82067ca0 d inet_netconf_dump_devconf.__msg.51
-ffffffff82067cd8 d inet_stream_ops
-ffffffff82067db8 d inet_dgram_ops
-ffffffff82067e98 d ipip_offload
-ffffffff82067eb8 d inet_family_ops
-ffffffff82067ed0 d icmp_protocol
-ffffffff82067ee8 d udp_protocol
-ffffffff82067f00 d tcp_protocol
-ffffffff82067f18 d igmp_protocol
-ffffffff82067f30 d inet_sockraw_ops
-ffffffff82068010 d igmp_mc_seq_ops
-ffffffff82068030 d igmp_mcf_seq_ops
-ffffffff82068050 d fib_gw_from_via.__msg
-ffffffff82068080 d fib_gw_from_via.__msg.1
-ffffffff820680a0 d fib_gw_from_via.__msg.2
-ffffffff820680c0 d fib_gw_from_via.__msg.3
-ffffffff820680f0 d ip_valid_fib_dump_req.__msg
-ffffffff82068120 d ip_valid_fib_dump_req.__msg.5
-ffffffff82068150 d ip_valid_fib_dump_req.__msg.6
-ffffffff82068180 d ip_valid_fib_dump_req.__msg.7
-ffffffff820681e0 d rtm_to_fib_config.__msg
-ffffffff82068210 d rtm_to_fib_config.__msg.15
-ffffffff82068230 d rtm_to_fib_config.__msg.16
-ffffffff82068270 d rtm_to_fib_config.__msg.17
-ffffffff820682b0 d lwtunnel_valid_encap_type.__msg
-ffffffff820682e0 d lwtunnel_valid_encap_type.__msg
-ffffffff82068310 d lwtunnel_valid_encap_type.__msg
-ffffffff82068340 d inet_rtm_delroute.__msg
-ffffffff82068360 d inet_rtm_delroute.__msg.18
-ffffffff820683a0 d inet_dump_fib.__msg
-ffffffff820683c0 d rtm_ipv4_policy
-ffffffff820685b0 d fib_props
-ffffffff82068610 d fib_nh_common_init.__msg
-ffffffff8206862d d fib_create_info.__msg
-ffffffff82068640 d fib_create_info.__msg.2
-ffffffff82068680 d fib_create_info.__msg.3
-ffffffff820686a0 d fib_create_info.__msg.4
-ffffffff820686c0 d fib_create_info.__msg.5
-ffffffff82068710 d fib_create_info.__msg.6
-ffffffff82068723 d fib_create_info.__msg.7
-ffffffff82068740 d fib_create_info.__msg.8
-ffffffff82068780 d fib_create_info.__msg.9
-ffffffff820687b0 d fib_create_info.__msg.10
-ffffffff820687d0 d fib_check_nh_v4_gw.__msg
-ffffffff820687f0 d fib_check_nh_v4_gw.__msg.12
-ffffffff82068820 d fib_check_nh_v4_gw.__msg.13
-ffffffff82068840 d fib_check_nh_v4_gw.__msg.14
-ffffffff82068860 d fib_check_nh_v4_gw.__msg.15
-ffffffff82068880 d fib_check_nh_v4_gw.__msg.16
-ffffffff820688a0 d fib_check_nh_v4_gw.__msg.17
-ffffffff820688d0 d fib_check_nh_nongw.__msg
-ffffffff82068910 d fib_check_nh_nongw.__msg.18
-ffffffff82068930 d fib_get_nhs.__msg
-ffffffff82068958 d fib_trie_seq_ops
-ffffffff82068978 d fib_route_seq_ops
-ffffffff820689a0 d fib_valid_key_len.__msg
-ffffffff820689c0 d fib_valid_key_len.__msg.6
-ffffffff820689f0 d rtn_type_names
-ffffffff82068a50 d fib4_notifier_ops_template
-ffffffff82068a90 d ip_frag_ecn_table
-ffffffff82068aa0 d ping_v4_seq_ops
-ffffffff82068ac0 d ip_tunnel_header_ops
-ffffffff82068af0 d gre_offload
-ffffffff82068b10 d ip_metrics_convert.__msg
-ffffffff82068b30 d ip_metrics_convert.__msg.1
-ffffffff82068b60 d ip_metrics_convert.__msg.2
-ffffffff82068b80 d ip_metrics_convert.__msg.3
-ffffffff82068bc0 d rtm_getroute_parse_ip_proto.__msg
-ffffffff82068be0 d fib6_check_nexthop.__msg
-ffffffff82068c10 d fib6_check_nexthop.__msg.1
-ffffffff82068c40 d fib_check_nexthop.__msg
-ffffffff82068c70 d fib_check_nexthop.__msg.2
-ffffffff82068cb0 d fib_check_nexthop.__msg.3
-ffffffff82068ce0 d check_src_addr.__msg
-ffffffff82068d20 d nexthop_check_scope.__msg
-ffffffff82068d50 d nexthop_check_scope.__msg.4
-ffffffff82068d70 d call_nexthop_notifiers.__msg
-ffffffff82068da0 d rtm_nh_policy_new
-ffffffff82068e70 d rtm_to_nh_config.__msg
-ffffffff82068ea0 d rtm_to_nh_config.__msg.10
-ffffffff82068ed0 d rtm_to_nh_config.__msg.12
-ffffffff82068ef0 d rtm_to_nh_config.__msg.13
-ffffffff82068f30 d rtm_to_nh_config.__msg.14
-ffffffff82068f60 d rtm_to_nh_config.__msg.15
-ffffffff82068f80 d rtm_to_nh_config.__msg.16
-ffffffff82068fa0 d rtm_to_nh_config.__msg.17
-ffffffff82068ff0 d rtm_to_nh_config.__msg.18
-ffffffff82069040 d rtm_to_nh_config.__msg.19
-ffffffff82069060 d rtm_to_nh_config.__msg.20
-ffffffff82069080 d rtm_to_nh_config.__msg.21
-ffffffff820690b0 d rtm_to_nh_config.__msg.22
-ffffffff820690c0 d rtm_to_nh_config.__msg.23
-ffffffff820690d0 d rtm_to_nh_config.__msg.24
-ffffffff82069100 d rtm_to_nh_config.__msg.25
-ffffffff82069140 d rtm_to_nh_config.__msg.26
-ffffffff82069170 d rtm_to_nh_config.__msg.27
-ffffffff820691a0 d nh_check_attr_group.__msg
-ffffffff820691d0 d nh_check_attr_group.__msg.28
-ffffffff82069200 d nh_check_attr_group.__msg.29
-ffffffff82069220 d nh_check_attr_group.__msg.30
-ffffffff82069250 d nh_check_attr_group.__msg.31
-ffffffff82069270 d nh_check_attr_group.__msg.32
-ffffffff820692a0 d nh_check_attr_group.__msg.33
-ffffffff820692e0 d valid_group_nh.__msg
-ffffffff82069320 d valid_group_nh.__msg.34
-ffffffff82069360 d valid_group_nh.__msg.35
-ffffffff820693b0 d nh_check_attr_fdb_group.__msg
-ffffffff820693e0 d nh_check_attr_fdb_group.__msg.36
-ffffffff82069420 d rtm_nh_res_policy_new
-ffffffff82069460 d rtm_to_nh_config_grp_res.__msg
-ffffffff82069490 d rtm_nh_get_timer.__msg
-ffffffff820694b0 d nexthop_add.__msg
-ffffffff820694cc d nexthop_add.__msg.37
-ffffffff820694e0 d insert_nexthop.__msg
-ffffffff82069520 d insert_nexthop.__msg.38
-ffffffff82069560 d replace_nexthop.__msg
-ffffffff820695b0 d replace_nexthop_grp.__msg
-ffffffff820695e0 d replace_nexthop_grp.__msg.39
-ffffffff82069620 d replace_nexthop_grp.__msg.40
-ffffffff82069660 d call_nexthop_res_table_notifiers.__msg
-ffffffff82069690 d replace_nexthop_single.__msg
-ffffffff820696c0 d rtm_nh_policy_get
-ffffffff820696e0 d __nh_valid_get_del_req.__msg
-ffffffff82069700 d __nh_valid_get_del_req.__msg.41
-ffffffff82069720 d __nh_valid_get_del_req.__msg.42
-ffffffff82069740 d rtm_nh_policy_dump
-ffffffff82069800 d __nh_valid_dump_req.__msg
-ffffffff82069820 d __nh_valid_dump_req.__msg.43
-ffffffff82069840 d __nh_valid_dump_req.__msg.44
-ffffffff82069880 d rtm_get_nexthop_bucket.__msg
-ffffffff820698a0 d rtm_nh_policy_get_bucket
-ffffffff82069980 d nh_valid_get_bucket_req.__msg
-ffffffff820699a0 d rtm_nh_res_bucket_policy_get
-ffffffff820699c0 d nh_valid_get_bucket_req_res_bucket.__msg
-ffffffff820699e0 d nexthop_find_group_resilient.__msg
-ffffffff82069a00 d nexthop_find_group_resilient.__msg.45
-ffffffff82069a30 d rtm_nh_policy_dump_bucket
-ffffffff82069b10 d rtm_nh_res_bucket_policy_dump
-ffffffff82069b50 d nh_valid_dump_nhid.__msg
-ffffffff82069b70 d snmp4_net_list
-ffffffff8206a350 d snmp4_ipextstats_list
-ffffffff8206a480 d fib4_rule_configure.__msg
-ffffffff8206a4aa d fib4_rule_configure.__msg.1
-ffffffff8206a4c0 d __param_str_log_ecn_error
-ffffffff8206a4e0 d __param_str_log_ecn_error
-ffffffff8206a500 d __param_str_log_ecn_error
-ffffffff8206a520 d __param_str_log_ecn_error
-ffffffff8206a540 d __param_str_log_ecn_error
-ffffffff8206a560 d ipip_policy
-ffffffff8206a6b0 d ipip_netdev_ops
-ffffffff8206a910 d ipip_tpi
-ffffffff8206a920 d ipip_tpi
-ffffffff8206a930 d net_gre_protocol
-ffffffff8206a948 d ipgre_protocol
-ffffffff8206a960 d ipgre_policy
-ffffffff8206aaf0 d gre_tap_netdev_ops
-ffffffff8206ad50 d ipgre_netdev_ops
-ffffffff8206afb0 d ipgre_header_ops
-ffffffff8206afe0 d erspan_netdev_ops
-ffffffff8206b240 d vti_policy
-ffffffff8206b2b0 d vti_netdev_ops
-ffffffff8206b510 d esp_type
-ffffffff8206b550 d esp_init_state.__msg
-ffffffff8206b580 d esp_init_state.__msg.7
-ffffffff8206b5b0 d esp_init_aead.__msg
-ffffffff8206b5d0 d esp_init_aead.__msg
-ffffffff8206b5f0 d esp_init_aead.__msg.9
-ffffffff8206b630 d esp_init_aead.__msg.9
-ffffffff8206b670 d esp_init_authenc.__msg
-ffffffff8206b690 d esp_init_authenc.__msg
-ffffffff8206b6b0 d esp_init_authenc.__msg.16
-ffffffff8206b6d0 d esp_init_authenc.__msg.16
-ffffffff8206b6f0 d esp_init_authenc.__msg.17
-ffffffff8206b730 d esp_init_authenc.__msg.17
-ffffffff8206b770 d esp_init_authenc.__msg.18
-ffffffff8206b7b0 d esp_init_authenc.__msg.18
-ffffffff8206b7f0 d esp_init_authenc.__msg.19
-ffffffff8206b830 d esp_init_authenc.__msg.19
-ffffffff8206b870 d tunnel64_protocol
-ffffffff8206b888 d tunnel4_protocol
-ffffffff8206b8a0 d inet6_diag_handler
-ffffffff8206b8c0 d inet_diag_handler
-ffffffff8206b940 d tcp_diag_handler
-ffffffff8206b978 d udplite_diag_handler
-ffffffff8206b9b0 d udp_diag_handler
-ffffffff8206b9f0 d __param_str_fast_convergence
-ffffffff8206ba0b d __param_str_beta
-ffffffff8206ba20 d __param_str_initial_ssthresh
-ffffffff8206ba40 d __param_str_bic_scale
-ffffffff8206ba60 d __param_str_tcp_friendliness
-ffffffff8206ba80 d __param_str_hystart
-ffffffff8206baa0 d __param_str_hystart_detect
-ffffffff8206bac0 d __param_str_hystart_low_window
-ffffffff8206bae0 d __param_str_hystart_ack_delta_us
-ffffffff8206bb00 d cubic_root.v
-ffffffff8206bb40 d xfrm4_policy_afinfo
-ffffffff8206bb68 d xfrm4_input_afinfo.llvm.11166284717704595025
-ffffffff8206bb78 d esp4_protocol
-ffffffff8206bb90 d ah4_protocol
-ffffffff8206bba8 d ipcomp4_protocol
-ffffffff8206bbc0 d xfrm_pol_inexact_params
-ffffffff8206bbf0 d __xfrm_init_state.__msg
-ffffffff8206bc10 d __xfrm_init_state.__msg.1
-ffffffff8206bc50 d __xfrm_init_state.__msg.2
-ffffffff8206bc70 d __xfrm_init_state.__msg.3
-ffffffff8206bc90 d __xfrm_init_state.__msg.4
-ffffffff8206bca9 d xfrm4_mode_map
-ffffffff8206bcb8 d xfrm6_mode_map
-ffffffff8206bcd0 d xfrm_init_replay.__msg
-ffffffff8206bd10 d xfrm_init_replay.__msg.1
-ffffffff8206bd30 d xfrm_mib_list
-ffffffff8206bf00 d xfrm_msg_min
-ffffffff8206bf70 d xfrma_policy
-ffffffff8206c180 d verify_newpolicy_info.__msg
-ffffffff8206c1a0 d verify_newpolicy_info.__msg.3
-ffffffff8206c1c0 d verify_newpolicy_info.__msg.4
-ffffffff8206c200 d verify_newpolicy_info.__msg.5
-ffffffff8206c240 d verify_newpolicy_info.__msg.6
-ffffffff8206c260 d verify_newpolicy_info.__msg.7
-ffffffff8206c290 d verify_policy_dir.__msg
-ffffffff8206c2b0 d validate_tmpl.__msg
-ffffffff8206c2e0 d validate_tmpl.__msg.8
-ffffffff8206c320 d validate_tmpl.__msg.9
-ffffffff8206c350 d validate_tmpl.__msg.10
-ffffffff8206c370 d validate_tmpl.__msg.11
-ffffffff8206c3d0 d xfrm_dispatch
-ffffffff8206c880 d xfrma_spd_policy
-ffffffff8206c8d0 d verify_newsa_info.__msg
-ffffffff8206c8f0 d verify_newsa_info.__msg.13
-ffffffff8206c930 d verify_newsa_info.__msg.14
-ffffffff8206c970 d verify_newsa_info.__msg.15
-ffffffff8206c9a0 d verify_newsa_info.__msg.16
-ffffffff8206c9e0 d verify_newsa_info.__msg.17
-ffffffff8206ca20 d verify_newsa_info.__msg.18
-ffffffff8206ca40 d verify_newsa_info.__msg.19
-ffffffff8206caa0 d verify_newsa_info.__msg.20
-ffffffff8206cb00 d verify_newsa_info.__msg.21
-ffffffff8206cb30 d verify_newsa_info.__msg.22
-ffffffff8206cb60 d verify_newsa_info.__msg.23
-ffffffff8206cbb0 d verify_newsa_info.__msg.24
-ffffffff8206cbe0 d verify_newsa_info.__msg.25
-ffffffff8206cc10 d verify_newsa_info.__msg.26
-ffffffff8206cc50 d verify_newsa_info.__msg.27
-ffffffff8206cc70 d verify_newsa_info.__msg.28
-ffffffff8206cc90 d verify_newsa_info.__msg.29
-ffffffff8206ccd0 d verify_aead.__msg
-ffffffff8206ccf0 d verify_auth_trunc.__msg
-ffffffff8206cd20 d verify_one_alg.__msg
-ffffffff8206cd50 d verify_sec_ctx_len.__msg
-ffffffff8206cd70 d verify_replay.__msg
-ffffffff8206cda0 d verify_replay.__msg.31
-ffffffff8206cdd0 d verify_replay.__msg.32
-ffffffff8206ce10 d verify_replay.__msg.33
-ffffffff8206ce40 d verify_replay.__msg.34
-ffffffff8206ce70 d attach_aead.__msg
-ffffffff8206cea0 d attach_auth_trunc.__msg
-ffffffff8206ced0 d attach_auth_trunc.__msg.35
-ffffffff8206cf00 d attach_auth.__msg
-ffffffff8206cf30 d attach_crypt.__msg
-ffffffff8206cf60 d attach_one_algo.__msg
-ffffffff8206cf90 d verify_policy_type.__msg
-ffffffff8206cfb0 d ipcomp_init_state.__msg
-ffffffff8206cfe0 d ipcomp_init_state.__msg.1
-ffffffff8206d010 d xfrmi_netdev_ops
-ffffffff8206d270 d xfrmi_policy
-ffffffff8206d2b0 d xfrmi_newlink.__msg
-ffffffff8206d2d0 d xfrmi_newlink.__msg.8
-ffffffff8206d2f0 d xfrmi_changelink.__msg
-ffffffff8206d310 d xfrmi_changelink.__msg.9
-ffffffff8206d330 d xfrmi_changelink.__msg.10
-ffffffff8206d358 d xfrm_if_cb
-ffffffff8206d360 d unix_seq_ops
-ffffffff8206d380 d unix_family_ops
-ffffffff8206d398 d unix_stream_ops
-ffffffff8206d478 d unix_dgram_ops
-ffffffff8206d558 d unix_seqpacket_ops
-ffffffff8206d638 d __param_str_disable
-ffffffff8206d650 d __param_str_disable_ipv6
-ffffffff8206d662 d __param_str_autoconf
-ffffffff8206d670 d inet6_family_ops
-ffffffff8206d688 d ipv6_stub_impl
-ffffffff8206d740 d ipv6_bpf_stub_impl
-ffffffff8206d760 d inet6_stream_ops
-ffffffff8206d840 d inet6_dgram_ops
-ffffffff8206d920 d ac6_seq_ops
-ffffffff8206d940 d if6_seq_ops
-ffffffff8206d960 d addrconf_sysctl
-ffffffff8206e7e0 d two_five_five
-ffffffff8206e7f0 d inet6_af_policy
-ffffffff8206e890 d inet6_set_iftoken.__msg
-ffffffff8206e8b0 d inet6_set_iftoken.__msg.89
-ffffffff8206e8e0 d inet6_set_iftoken.__msg.90
-ffffffff8206e920 d inet6_set_iftoken.__msg.91
-ffffffff8206e950 d inet6_valid_dump_ifinfo.__msg
-ffffffff8206e980 d inet6_valid_dump_ifinfo.__msg.92
-ffffffff8206e9a0 d inet6_valid_dump_ifinfo.__msg.93
-ffffffff8206e9d0 d ifa_ipv6_policy
-ffffffff8206ea90 d inet6_rtm_newaddr.__msg
-ffffffff8206ead0 d inet6_rtm_valid_getaddr_req.__msg
-ffffffff8206eb00 d inet6_rtm_valid_getaddr_req.__msg.94
-ffffffff8206eb40 d inet6_rtm_valid_getaddr_req.__msg.95
-ffffffff8206eb80 d inet6_valid_dump_ifaddr_req.__msg
-ffffffff8206ebb0 d inet6_valid_dump_ifaddr_req.__msg.96
-ffffffff8206ebf0 d inet6_valid_dump_ifaddr_req.__msg.97
-ffffffff8206ec20 d inet6_valid_dump_ifaddr_req.__msg.98
-ffffffff8206ec50 d inet6_netconf_valid_get_req.__msg
-ffffffff8206ec80 d devconf_ipv6_policy
-ffffffff8206ed10 d inet6_netconf_valid_get_req.__msg.99
-ffffffff8206ed50 d inet6_netconf_dump_devconf.__msg
-ffffffff8206ed80 d inet6_netconf_dump_devconf.__msg.100
-ffffffff8206edc0 d ifal_policy
-ffffffff8206edf0 d ip6addrlbl_valid_get_req.__msg
-ffffffff8206ee20 d ip6addrlbl_valid_get_req.__msg.10
-ffffffff8206ee60 d ip6addrlbl_valid_get_req.__msg.11
-ffffffff8206eea0 d ip6addrlbl_valid_dump_req.__msg
-ffffffff8206eee0 d ip6addrlbl_valid_dump_req.__msg.13
-ffffffff8206ef20 d ip6addrlbl_valid_dump_req.__msg.14
-ffffffff8206ef5f d str__fib6__trace_system_name
-ffffffff8206ef70 d fib6_nh_init.__msg
-ffffffff8206efa0 d fib6_nh_init.__msg.1
-ffffffff8206efc0 d fib6_nh_init.__msg.2
-ffffffff8206eff0 d fib6_nh_init.__msg.3
-ffffffff8206f010 d fib6_prop
-ffffffff8206f040 d ip6_validate_gw.__msg
-ffffffff8206f070 d ip6_validate_gw.__msg.37
-ffffffff8206f090 d ip6_validate_gw.__msg.38
-ffffffff8206f0b0 d ip6_validate_gw.__msg.39
-ffffffff8206f0f0 d ip6_validate_gw.__msg.40
-ffffffff8206f120 d ip6_route_check_nh_onlink.__msg
-ffffffff8206f150 d ip6_route_info_create.__msg
-ffffffff8206f170 d ip6_route_info_create.__msg.41
-ffffffff8206f190 d ip6_route_info_create.__msg.42
-ffffffff8206f1b0 d ip6_route_info_create.__msg.43
-ffffffff8206f1d0 d ip6_route_info_create.__msg.44
-ffffffff8206f1f0 d ip6_route_info_create.__msg.45
-ffffffff8206f230 d ip6_route_info_create.__msg.46
-ffffffff8206f250 d ip6_route_info_create.__msg.48
-ffffffff8206f280 d ip6_route_info_create.__msg.49
-ffffffff8206f2a0 d ip6_route_info_create.__msg.50
-ffffffff8206f2c0 d ip6_route_del.__msg
-ffffffff8206f2e0 d fib6_null_entry_template
-ffffffff8206f388 d ip6_null_entry_template
-ffffffff8206f470 d ip6_template_metrics
-ffffffff8206f4b8 d ip6_prohibit_entry_template
-ffffffff8206f5a0 d ip6_blk_hole_entry_template
-ffffffff8206f690 d rtm_to_fib6_config.__msg
-ffffffff8206f6d0 d rtm_to_fib6_config.__msg.66
-ffffffff8206f710 d rtm_to_fib6_config.__msg.67
-ffffffff8206f740 d rtm_ipv6_policy
-ffffffff8206f930 d ip6_route_multipath_add.__msg
-ffffffff8206f980 d ip6_route_multipath_add.__msg.69
-ffffffff8206f9c0 d ip6_route_multipath_add.__msg.70
-ffffffff8206fa10 d fib6_gw_from_attr.__msg
-ffffffff8206fa40 d inet6_rtm_delroute.__msg
-ffffffff8206fa60 d inet6_rtm_valid_getroute_req.__msg
-ffffffff8206fa90 d inet6_rtm_valid_getroute_req.__msg.71
-ffffffff8206fad0 d inet6_rtm_valid_getroute_req.__msg.72
-ffffffff8206fb00 d inet6_rtm_valid_getroute_req.__msg.73
-ffffffff8206fb40 d inet6_rtm_valid_getroute_req.__msg.74
-ffffffff8206fb78 d ipv6_route_seq_ops
-ffffffff8206fba0 d fib6_add_1.__msg
-ffffffff8206fbd0 d fib6_add_1.__msg.7
-ffffffff8206fc00 d inet6_dump_fib.__msg
-ffffffff8206fc20 d ndisc_direct_ops
-ffffffff8206fc48 d ndisc_hh_ops
-ffffffff8206fc70 d ndisc_generic_ops
-ffffffff8206fca0 d ndisc_allow_add.__msg
-ffffffff8206fcc0 d udp6_seq_ops
-ffffffff8206fce0 d udpv6_protocol.llvm.3078323922797927899
-ffffffff8206fcf8 d udplitev6_protocol.llvm.13785457115057781828
-ffffffff8206fd10 d inet6_sockraw_ops
-ffffffff8206fdf0 d raw6_seq_ops
-ffffffff8206fe10 d icmpv6_protocol.llvm.12430388489175590748
-ffffffff8206fe30 d tab_unreach
-ffffffff8206fe68 d igmp6_mc_seq_ops
-ffffffff8206fe88 d igmp6_mcf_seq_ops
-ffffffff8206fea8 d ip6_frag_cache_name
-ffffffff8206feb8 d ip6_rhash_params
-ffffffff8206fee0 d frag_protocol
-ffffffff8206fef8 d tcp_request_sock_ipv6_ops
-ffffffff8206ff20 d ipv6_specific
-ffffffff8206ff78 d tcp6_seq_ops
-ffffffff8206ff98 d tcpv6_protocol.llvm.8864556368208849951
-ffffffff8206ffb0 d ipv6_mapped
-ffffffff82070008 d ping_v6_seq_ops
-ffffffff82070028 d rthdr_protocol.llvm.5574609928904987319
-ffffffff82070040 d destopt_protocol.llvm.5574609928904987319
-ffffffff82070058 d nodata_protocol.llvm.5574609928904987319
-ffffffff82070070 d ip6fl_seq_ops
-ffffffff82070090 d udpv6_offload.llvm.17633239604859943964
-ffffffff820700b0 d seg6_genl_policy
-ffffffff82070130 d seg6_genl_ops
-ffffffff820701f0 d fib6_notifier_ops_template
-ffffffff82070230 d rht_ns_params
-ffffffff82070258 d rht_sc_params
-ffffffff82070280 d ioam6_genl_ops
-ffffffff820703d0 d ioam6_genl_policy_addns
-ffffffff82070410 d ioam6_genl_policy_delns
-ffffffff82070430 d ioam6_genl_policy_addsc
-ffffffff82070490 d ioam6_genl_policy_delsc
-ffffffff820704e0 d ioam6_genl_policy_ns_sc
-ffffffff82070550 d xfrm6_policy_afinfo.llvm.680911775214528811
-ffffffff82070578 d xfrm6_input_afinfo.llvm.9504734376162117919
-ffffffff82070588 d esp6_protocol
-ffffffff820705a0 d ah6_protocol
-ffffffff820705b8 d ipcomp6_protocol
-ffffffff820705d0 d fib6_rule_configure.__msg
-ffffffff820705fa d fib6_rule_configure.__msg.1
-ffffffff82070610 d snmp6_ipstats_list
-ffffffff82070820 d snmp6_icmp6_list
-ffffffff82070880 d icmp6type2name
-ffffffff82071080 d snmp6_udp6_list
-ffffffff82071120 d snmp6_udplite6_list
-ffffffff820711b0 d esp6_type
-ffffffff820711f0 d esp6_init_state.__msg
-ffffffff82071220 d esp6_init_state.__msg.7
-ffffffff82071248 d ipcomp6_type
-ffffffff82071280 d ipcomp6_init_state.__msg
-ffffffff820712b0 d ipcomp6_init_state.__msg.1
-ffffffff820712e8 d xfrm6_tunnel_type
-ffffffff82071320 d xfrm6_tunnel_init_state.__msg
-ffffffff82071350 d xfrm6_tunnel_init_state.__msg.1
-ffffffff82071388 d tunnel6_input_afinfo
-ffffffff82071398 d tunnel46_protocol
-ffffffff820713b0 d tunnel6_protocol
-ffffffff820713c8 d mip6_rthdr_type
-ffffffff82071400 d mip6_destopt_type
-ffffffff82071438 d mip6_rthdr_init_state.__msg
-ffffffff82071450 d mip6_rthdr_init_state.__msg.1
-ffffffff8207147e d mip6_destopt_init_state.__msg
-ffffffff82071490 d mip6_destopt_init_state.__msg.3
-ffffffff820714e0 d vti6_policy
-ffffffff82071550 d vti6_netdev_ops
-ffffffff820717b0 d ipip6_policy
-ffffffff82071900 d ipip6_netdev_ops
-ffffffff82071b60 d ip6_tnl_policy
-ffffffff82071cb0 d ip6_tnl_netdev_ops
-ffffffff82071f10 d tpi_v4
-ffffffff82071f20 d tpi_v6
-ffffffff82071f30 d ip6gre_policy
-ffffffff820720c0 d ip6gre_tap_netdev_ops
-ffffffff82072320 d ip6gre_netdev_ops
-ffffffff82072580 d ip6gre_header_ops
-ffffffff820725b0 d ip6erspan_netdev_ops
-ffffffff82072810 d in6addr_loopback
-ffffffff82072820 d in6addr_any
-ffffffff82072830 d in6addr_linklocal_allnodes
-ffffffff82072840 d in6addr_linklocal_allrouters
-ffffffff82072850 d in6addr_interfacelocal_allnodes
-ffffffff82072860 d in6addr_interfacelocal_allrouters
-ffffffff82072870 d in6addr_sitelocal_allrouters
-ffffffff82072880 d eafnosupport_fib6_nh_init.__msg
-ffffffff820728a8 d sit_offload
-ffffffff820728c8 d ip6ip6_offload
-ffffffff820728e8 d ip4ip6_offload
-ffffffff82072908 d tcpv6_offload.llvm.7369255479864496245
-ffffffff82072928 d rthdr_offload
-ffffffff82072948 d dstopt_offload
-ffffffff82072968 d packet_seq_ops
-ffffffff82072988 d packet_family_ops
-ffffffff820729a0 d packet_ops
-ffffffff82072a80 d packet_ops_spkt
-ffffffff82072b60 d packet_mmap_ops
-ffffffff82072be0 d pfkey_seq_ops
-ffffffff82072c00 d pfkey_family_ops
-ffffffff82072c18 d pfkey_ops
-ffffffff82072d00 d pfkey_funcs
-ffffffff82072dd0 d sadb_ext_min_len
-ffffffff82072dec d dummy_mark
-ffffffff82072e18 d vsock_device_ops
-ffffffff82072f28 d vsock_family_ops
-ffffffff82072f40 d vsock_dgram_ops
-ffffffff82073020 d vsock_stream_ops
-ffffffff82073100 d vsock_seqpacket_ops
-ffffffff820731e0 d vsock_diag_handler
-ffffffff82073230 d virtio_vsock_vqs_init.names
-ffffffff82073268 d str__vsock__trace_system_name
-ffffffff82073270 d __param_str_virtio_transport_max_vsock_pkt_buf_size
-ffffffff820732c0 d trace_raw_output_virtio_transport_alloc_pkt.symbols
-ffffffff820732f0 d trace_raw_output_virtio_transport_alloc_pkt.symbols.23
-ffffffff82073380 d trace_raw_output_virtio_transport_recv_pkt.symbols
-ffffffff820733b0 d trace_raw_output_virtio_transport_recv_pkt.symbols.35
-ffffffff82073450 d pci_mmcfg
-ffffffff82073460 d pci_direct_conf1
-ffffffff82073470 d pci_direct_conf2
-ffffffff820734a0 d msi_k8t_dmi_table
-ffffffff82073750 d toshiba_ohci1394_dmi_table
-ffffffff82073cb0 d pirq_via586_set.pirqmap
-ffffffff82073cd0 d _ctype
-ffffffff82073dd0 d kobj_sysfs_ops
-ffffffff82073df0 d kobject_actions
-ffffffff82073e30 d zap_modalias_env.modalias_prefix
-ffffffff82073e70 d uevent_net_rcv_skb.__msg
-ffffffff82073ea0 d uevent_net_broadcast.__msg
-ffffffff82073eb7 d str__maple_tree__trace_system_name
-ffffffff82073ed0 d __param_str_backtrace_idle
-ffffffff82073ef0 d decpair
-ffffffff82073fb8 d default_dec_spec
-ffffffff82073fc0 d default_flag_spec
-ffffffff82073fd0 d pff
-ffffffff82074070 d inat_primary_table
-ffffffff82074470 d inat_escape_table_1
-ffffffff82074870 d inat_escape_table_1_1
-ffffffff82074c70 d inat_escape_table_1_2
-ffffffff82075070 d inat_escape_table_1_3
-ffffffff82075470 d inat_escape_table_2
-ffffffff82075870 d inat_escape_table_2_1
-ffffffff82075c70 d inat_escape_table_2_2
-ffffffff82076070 d inat_escape_table_2_3
-ffffffff82076470 d inat_escape_table_3
-ffffffff82076870 d inat_escape_table_3_1
-ffffffff82076c70 d inat_escape_table_3_2
-ffffffff82077070 d inat_escape_table_3_3
-ffffffff82077470 d inat_avx_table_5
-ffffffff82077870 d inat_avx_table_5_1
-ffffffff82077c70 d inat_avx_table_5_2
-ffffffff82078070 d inat_avx_table_5_3
-ffffffff82078470 d inat_avx_table_6
-ffffffff82078870 d inat_avx_table_6_1
-ffffffff82078c70 d inat_avx_table_6_2
-ffffffff82079070 d inat_avx_table_6_3
-ffffffff82079470 d inat_group_table_6
-ffffffff82079490 d inat_group_table_7
-ffffffff820794b0 d inat_group_table_8
-ffffffff820794d0 d inat_group_table_9
-ffffffff820794f0 d inat_group_table_10
-ffffffff82079510 d inat_group_table_11
-ffffffff82079530 d inat_group_table_11_2
-ffffffff82079550 d inat_group_table_24
-ffffffff82079570 d inat_group_table_24_1
-ffffffff82079590 d inat_group_table_24_2
-ffffffff820795b0 d inat_group_table_4
-ffffffff820795d0 d inat_group_table_5
-ffffffff820795f0 d inat_group_table_16
-ffffffff82079610 d inat_group_table_16_1
-ffffffff82079630 d inat_group_table_17
-ffffffff82079650 d inat_group_table_17_1
-ffffffff82079670 d inat_group_table_18
-ffffffff82079690 d inat_group_table_18_1
-ffffffff820796b0 d inat_group_table_21
-ffffffff820796d0 d inat_group_table_21_1
-ffffffff820796f0 d inat_group_table_21_2
-ffffffff82079710 d inat_group_table_21_3
-ffffffff82079730 d inat_group_table_13
-ffffffff82079750 d inat_group_table_27
-ffffffff82079770 d inat_group_table_25
-ffffffff82079790 d inat_group_table_25_1
-ffffffff820797b0 d inat_group_table_26
-ffffffff820797d0 d inat_group_table_26_1
-ffffffff820797f0 d inat_group_table_14
-ffffffff82079810 d inat_group_table_15
-ffffffff82079830 d inat_group_table_15_2
-ffffffff82079850 d inat_escape_tables
-ffffffff820798d0 d inat_group_tables
-ffffffff82079cd0 d inat_avx_tables
-ffffffff8207a0f0 d linux_banner
-ffffffff8207a260 D __sched_class_highest
-ffffffff8207a260 d stop_sched_class
-ffffffff8207a338 d dl_sched_class
-ffffffff8207a410 d rt_sched_class
-ffffffff8207a4e8 d fair_sched_class
-ffffffff8207a5c0 d idle_sched_class
-ffffffff8207a698 D __sched_class_lowest
-ffffffff8207a698 D __start_ro_after_init
-ffffffff8207b000 d __pgtable_l5_enabled
-ffffffff8207b004 d pgdir_shift
-ffffffff8207b008 d ptrs_per_p4d
-ffffffff8207b010 d vmalloc_base
-ffffffff8207b018 d vmemmap_base
-ffffffff8207b020 d page_offset_base
-ffffffff8207b028 d randomize_kstack_offset
-ffffffff8207b038 d rodata_enabled
-ffffffff8207c000 d raw_data
-ffffffff8207d000 d vsyscall_mode
-ffffffff8207d008 d gate_vma
-ffffffff8207d098 d x86_pmu_format_group
-ffffffff8207d0c0 d x86_pmu_events_group
-ffffffff8207d0e8 d x86_pmu_attr_group
-ffffffff8207d110 d x86_pmu_caps_group
-ffffffff8207d138 d pt_cap_group
-ffffffff8207d160 d fpu_default_state_size
-ffffffff8207d168 d max_frame_size
-ffffffff8207d170 d strict_sigaltstack_size
-ffffffff8207d171 d idt_descr
-ffffffff8207d180 d mmu_cr4_features
-ffffffff8207d188 d x86_platform
-ffffffff8207d248 d x86_apic_ops
-ffffffff8207d258 d data_attr
-ffffffff8207d298 d poking_mm
-ffffffff8207d2a0 d poking_addr
-ffffffff8207d2a8 d mxcsr_feature_mask
-ffffffff8207d2c0 d fpu_kernel_cfg
-ffffffff8207d300 d init_fpstate
-ffffffff8207e340 d fpu_user_cfg
-ffffffff8207e360 d xstate_offsets
-ffffffff8207e3b0 d xstate_sizes
-ffffffff8207e400 d xstate_flags
-ffffffff8207e450 d x86_64_regsets
-ffffffff8207e530 d cr_pinning
-ffffffff8207e540 d cr4_pinned_bits
-ffffffff8207e548 d srbds_mitigation
-ffffffff8207e54c d spectre_v2_enabled
-ffffffff8207e550 d spectre_v2_user_stibp
-ffffffff8207e554 d mds_mitigation
-ffffffff8207e558 d taa_mitigation
-ffffffff8207e55c d mmio_mitigation
-ffffffff8207e560 d ssb_mode
-ffffffff8207e564 d spectre_v2_user_ibpb
-ffffffff8207e568 d x86_amd_ls_cfg_base
-ffffffff8207e570 d x86_amd_ls_cfg_ssbd_mask
-ffffffff8207e578 d mds_nosmt
-ffffffff8207e579 d taa_nosmt
-ffffffff8207e57a d mmio_nosmt
-ffffffff8207e57c d spectre_v1_mitigation
-ffffffff8207e580 d retbleed_cmd
-ffffffff8207e584 d retbleed_nosmt
-ffffffff8207e588 d retbleed_mitigation
-ffffffff8207e58c d spectre_v2_cmd
-ffffffff8207e590 d l1tf_mitigation
-ffffffff8207e594 d orig_umwait_control_cached
-ffffffff8207e598 d sld_state
-ffffffff8207e59c d cpu_model_supports_sld
-ffffffff8207e5a0 d msr_test_ctrl_cache
-ffffffff8207e5a8 d tsx_ctrl_state
-ffffffff8207e5b0 d mtrr_ops
-ffffffff8207e610 d vmware_hypercall_mode
-ffffffff8207e618 d vmware_tsc_khz
-ffffffff8207e620 d vmware_cyc2ns
-ffffffff8207e630 d machine_ops
-ffffffff8207e660 d intel_graphics_stolen_res
-ffffffff8207e6a0 d __per_cpu_offset
-ffffffff8207e7a0 d apic_phys
-ffffffff8207e7a8 d apic_extnmi
-ffffffff8207e7b0 d mp_lapic_addr
-ffffffff8207e7b8 d disabled_cpu_apicid
-ffffffff8207e7bc d virt_ext_dest_id
-ffffffff8207e7c0 d local_apic_timer_c2_ok
-ffffffff8207e7c4 d pic_mode
-ffffffff8207e7c8 d apic_verbosity
-ffffffff8207e7cc d disable_apic
-ffffffff8207e7d0 d apic_intr_mode
-ffffffff8207e7d4 d boot_cpu_physical_apicid
-ffffffff8207e7d8 d boot_cpu_apic_version
-ffffffff8207e7dc d smp_found_config
-ffffffff8207e7e0 d apic_noop
-ffffffff8207e8f8 d apic_ipi_shorthand_off
-ffffffff8207e900 d x86_pci_msi_default_domain
-ffffffff8207e908 d x2apic_max_apicid
-ffffffff8207e910 d apic_x2apic_phys
-ffffffff8207ea28 d apic_x2apic_cluster
-ffffffff8207eb40 d apic_flat
-ffffffff8207ec58 d apic_physflat
-ffffffff8207ed70 d apic
-ffffffff8207ed78 d hpet_msi_controller
-ffffffff8207ee80 d msr_kvm_system_time
-ffffffff8207ee84 d msr_kvm_wall_clock
-ffffffff8207ee88 d kvm_sched_clock_offset
-ffffffff8207ee90 d disable_dma32
-ffffffff8207eea0 d protection_map
-ffffffff8207ef20 d gcm_use_avx2
-ffffffff8207ef30 d gcm_use_avx
-ffffffff8207ef40 d cpu_mitigations
-ffffffff8207ef48 d notes_attr
-ffffffff8207ef88 d __printk_percpu_data_ready
-ffffffff8207ef8c d zone_dma_bits
-ffffffff8207ef90 d kheaders_attr
-ffffffff8207efd0 d family
-ffffffff8207f038 d constraints_initialized
-ffffffff8207f040 d pcpu_unit_size
-ffffffff8207f048 d pcpu_chunk_lists
-ffffffff8207f050 d pcpu_free_slot
-ffffffff8207f054 d pcpu_low_unit_cpu
-ffffffff8207f058 d pcpu_high_unit_cpu
-ffffffff8207f05c d pcpu_unit_pages
-ffffffff8207f060 d pcpu_nr_units
-ffffffff8207f064 d pcpu_nr_groups
-ffffffff8207f068 d pcpu_group_offsets
-ffffffff8207f070 d pcpu_group_sizes
-ffffffff8207f078 d pcpu_unit_map
-ffffffff8207f080 d pcpu_atom_size
-ffffffff8207f088 d pcpu_chunk_struct_size
-ffffffff8207f090 d pcpu_sidelined_slot
-ffffffff8207f094 d pcpu_to_depopulate_slot
-ffffffff8207f098 d pcpu_nr_slots
-ffffffff8207f0a0 d pcpu_reserved_chunk
-ffffffff8207f0a8 d pcpu_first_chunk
-ffffffff8207f0b0 d pcpu_base_addr
-ffffffff8207f0b8 d pcpu_unit_offsets
-ffffffff8207f0c0 d size_index
-ffffffff8207f0e0 d kmalloc_caches
-ffffffff8207f2a0 d ioremap_max_page_shift
-ffffffff8207f2a1 d vmap_allow_huge
-ffffffff8207f2a2 d memmap_on_memory
-ffffffff8207f2a4 d stack_hash_seed
-ffffffff8207f2a8 d cgroup_memory_nokmem
-ffffffff8207f2a9 d cgroup_memory_nosocket
-ffffffff8207f2aa d secretmem_enable
-ffffffff8207f2b0 d damon_region_cache
-ffffffff8207f2b8 d bypass_usercopy_checks
-ffffffff8207f2c8 d seq_file_cache
-ffffffff8207f2d0 d proc_inode_cachep
-ffffffff8207f2d8 d pde_opener_cache
-ffffffff8207f2e0 d nlink_tid
-ffffffff8207f2e1 d nlink_tgid
-ffffffff8207f2e8 d proc_dir_entry_cache
-ffffffff8207f2f0 d self_inum
-ffffffff8207f2f4 d thread_self_inum
-ffffffff8207f2f8 d debugfs_allow
-ffffffff8207f300 d tracefs_ops.0
-ffffffff8207f308 d tracefs_ops.1
-ffffffff8207f310 d capability_hooks
-ffffffff8207f5e0 d security_hook_heads
-ffffffff8207fc40 d blob_sizes.0
-ffffffff8207fc44 d blob_sizes.1
-ffffffff8207fc48 d blob_sizes.2
-ffffffff8207fc4c d blob_sizes.3
-ffffffff8207fc50 d blob_sizes.4
-ffffffff8207fc54 d blob_sizes.5
-ffffffff8207fc58 d blob_sizes.6
-ffffffff8207fc60 d avc_node_cachep
-ffffffff8207fc68 d avc_xperms_cachep
-ffffffff8207fc70 d avc_xperms_decision_cachep
-ffffffff8207fc78 d avc_xperms_data_cachep
-ffffffff8207fc80 d avc_callbacks
-ffffffff8207fc90 d default_noexec
-ffffffff8207fca0 d selinux_hooks
-ffffffff820818e8 d selinux_blob_sizes
-ffffffff82081908 d selinuxfs_mount
-ffffffff82081910 d selinux_null
-ffffffff82081920 d selnl
-ffffffff82081928 d ebitmap_node_cachep
-ffffffff82081930 d hashtab_node_cachep
-ffffffff82081938 d avtab_xperms_cachep
-ffffffff82081940 d avtab_node_cachep
-ffffffff82081950 d aer_stats_attrs
-ffffffff82081988 d acpi_event_genl_family
-ffffffff820819f0 d ptmx_fops
-ffffffff82081b00 d thermal_gnl_family
-ffffffff82081b68 d efi_rng_seed
-ffffffff82081b70 d efi_memreserve_root
-ffffffff82081b78 d efi_mem_attr_table
-ffffffff82081b80 d i8253_clear_counter_on_shutdown
-ffffffff82081b88 d sock_inode_cachep
-ffffffff82081b90 d skbuff_head_cache
-ffffffff82081b98 d skbuff_fclone_cache
-ffffffff82081ba0 d skbuff_ext_cache
-ffffffff82081bb0 d net_class
-ffffffff82081c28 d rx_queue_ktype
-ffffffff82081c60 d rx_queue_default_attrs
-ffffffff82081c78 d rps_cpus_attribute
-ffffffff82081c98 d rps_dev_flow_table_cnt_attribute
-ffffffff82081cb8 d netdev_queue_ktype
-ffffffff82081cf0 d netdev_queue_default_attrs
-ffffffff82081d20 d queue_trans_timeout
-ffffffff82081d40 d queue_traffic_class
-ffffffff82081d60 d xps_cpus_attribute
-ffffffff82081d80 d xps_rxqs_attribute
-ffffffff82081da0 d queue_tx_maxrate
-ffffffff82081dc0 d dql_attrs
-ffffffff82081df0 d bql_limit_attribute
-ffffffff82081e10 d bql_limit_max_attribute
-ffffffff82081e30 d bql_limit_min_attribute
-ffffffff82081e50 d bql_hold_time_attribute
-ffffffff82081e70 d bql_inflight_attribute
-ffffffff82081e90 d net_class_attrs
-ffffffff82081fa0 d netstat_attrs
-ffffffff82082068 d genl_ctrl
-ffffffff820820d0 d ethtool_genl_family
-ffffffff82082138 d peer_cachep
-ffffffff82082140 d tcp_metrics_nl_family
-ffffffff820821a8 d fn_alias_kmem
-ffffffff820821b0 d trie_leaf_kmem
-ffffffff820821b8 d xfrm_dst_cache
-ffffffff820821c0 d xfrm_state_cache
-ffffffff820821c8 d seg6_genl_family
-ffffffff82082230 d ioam6_genl_family
-ffffffff820822a0 d vmlinux_build_id
-ffffffff820822b4 d no_hash_pointers
-ffffffff820822b8 d debug_boot_weak_hash
-ffffffff820822c0 d delay_fn
-ffffffff820822c8 d delay_halt_fn
-ffffffff820822d0 D __start___jump_table
-ffffffff8208f460 D __start_static_call_sites
-ffffffff8208f460 D __stop___jump_table
-ffffffff82096d78 D __start_static_call_tramp_key
-ffffffff82096d78 D __stop_static_call_sites
-ffffffff82096d98 D __end_ro_after_init
-ffffffff82096d98 D __start___tracepoints_ptrs
-ffffffff82096d98 D __stop_static_call_tramp_key
-ffffffff8209780c D __stop___tracepoints_ptrs
-ffffffff82097810 d __tpstrtab_initcall_level
-ffffffff8209781f d __tpstrtab_initcall_start
-ffffffff82097830 d __tpstrtab_initcall_finish
-ffffffff82097840 d __tpstrtab_emulate_vsyscall
-ffffffff82097860 d __tpstrtab_local_timer_entry
-ffffffff82097880 d __tpstrtab_local_timer_exit
-ffffffff820978a0 d __tpstrtab_spurious_apic_entry
-ffffffff820978c0 d __tpstrtab_spurious_apic_exit
-ffffffff820978e0 d __tpstrtab_error_apic_entry
-ffffffff82097900 d __tpstrtab_error_apic_exit
-ffffffff82097910 d __tpstrtab_x86_platform_ipi_entry
-ffffffff82097930 d __tpstrtab_x86_platform_ipi_exit
-ffffffff82097946 d __tpstrtab_irq_work_entry
-ffffffff82097955 d __tpstrtab_irq_work_exit
-ffffffff82097970 d __tpstrtab_reschedule_entry
-ffffffff82097990 d __tpstrtab_reschedule_exit
-ffffffff820979a0 d __tpstrtab_call_function_entry
-ffffffff820979c0 d __tpstrtab_call_function_exit
-ffffffff820979e0 d __tpstrtab_call_function_single_entry
-ffffffff82097a00 d __tpstrtab_call_function_single_exit
-ffffffff82097a20 d __tpstrtab_thermal_apic_entry
-ffffffff82097a40 d __tpstrtab_thermal_apic_exit
-ffffffff82097a52 d __tpstrtab_vector_config
-ffffffff82097a60 d __tpstrtab_vector_update
-ffffffff82097a6e d __tpstrtab_vector_clear
-ffffffff82097a80 d __tpstrtab_vector_reserve_managed
-ffffffff82097a97 d __tpstrtab_vector_reserve
-ffffffff82097aa6 d __tpstrtab_vector_alloc
-ffffffff82097ac0 d __tpstrtab_vector_alloc_managed
-ffffffff82097ae0 d __tpstrtab_vector_activate
-ffffffff82097af0 d __tpstrtab_vector_deactivate
-ffffffff82097b10 d __tpstrtab_vector_teardown
-ffffffff82097b20 d __tpstrtab_vector_setup
-ffffffff82097b30 d __tpstrtab_vector_free_moved
-ffffffff82097b42 d __tpstrtab_nmi_handler
-ffffffff82097b50 d __tpstrtab_x86_fpu_before_save
-ffffffff82097b70 d __tpstrtab_x86_fpu_after_save
-ffffffff82097b90 d __tpstrtab_x86_fpu_before_restore
-ffffffff82097bb0 d __tpstrtab_x86_fpu_after_restore
-ffffffff82097bd0 d __tpstrtab_x86_fpu_regs_activated
-ffffffff82097bf0 d __tpstrtab_x86_fpu_regs_deactivated
-ffffffff82097c10 d __tpstrtab_x86_fpu_init_state
-ffffffff82097c30 d __tpstrtab_x86_fpu_dropped
-ffffffff82097c40 d __tpstrtab_x86_fpu_copy_src
-ffffffff82097c60 d __tpstrtab_x86_fpu_copy_dst
-ffffffff82097c80 d __tpstrtab_x86_fpu_xstate_check_failed
-ffffffff82097ca0 d __tpstrtab_page_fault_user
-ffffffff82097cb0 d __tpstrtab_page_fault_kernel
-ffffffff82097cc2 d __tpstrtab_task_newtask
-ffffffff82097ccf d __tpstrtab_task_rename
-ffffffff82097ce0 d __tpstrtab_cpuhp_enter
-ffffffff82097cf0 d __tpstrtab_cpuhp_multi_enter
-ffffffff82097d02 d __tpstrtab_cpuhp_exit
-ffffffff82097d10 d __tpstrtab_irq_handler_entry
-ffffffff82097d30 d __tpstrtab_irq_handler_exit
-ffffffff82097d41 d __tpstrtab_softirq_entry
-ffffffff82097d4f d __tpstrtab_softirq_exit
-ffffffff82097d5c d __tpstrtab_softirq_raise
-ffffffff82097d6a d __tpstrtab_tasklet_entry
-ffffffff82097d78 d __tpstrtab_tasklet_exit
-ffffffff82097d90 d __tpstrtab_signal_generate
-ffffffff82097da0 d __tpstrtab_signal_deliver
-ffffffff82097db0 d __tpstrtab_workqueue_queue_work
-ffffffff82097dd0 d __tpstrtab_workqueue_activate_work
-ffffffff82097df0 d __tpstrtab_workqueue_execute_start
-ffffffff82097e10 d __tpstrtab_workqueue_execute_end
-ffffffff82097e30 d __tpstrtab_sched_kthread_stop
-ffffffff82097e50 d __tpstrtab_sched_kthread_stop_ret
-ffffffff82097e70 d __tpstrtab_sched_kthread_work_queue_work
-ffffffff82097e90 d __tpstrtab_sched_kthread_work_execute_start
-ffffffff82097ec0 d __tpstrtab_sched_kthread_work_execute_end
-ffffffff82097edf d __tpstrtab_sched_waking
-ffffffff82097eec d __tpstrtab_sched_wakeup
-ffffffff82097f00 d __tpstrtab_sched_wakeup_new
-ffffffff82097f11 d __tpstrtab_sched_switch
-ffffffff82097f20 d __tpstrtab_sched_migrate_task
-ffffffff82097f40 d __tpstrtab_sched_process_free
-ffffffff82097f60 d __tpstrtab_sched_process_exit
-ffffffff82097f80 d __tpstrtab_sched_wait_task
-ffffffff82097f90 d __tpstrtab_sched_process_wait
-ffffffff82097fb0 d __tpstrtab_sched_process_fork
-ffffffff82097fd0 d __tpstrtab_sched_process_exec
-ffffffff82097ff0 d __tpstrtab_sched_stat_wait
-ffffffff82098000 d __tpstrtab_sched_stat_sleep
-ffffffff82098020 d __tpstrtab_sched_stat_iowait
-ffffffff82098040 d __tpstrtab_sched_stat_blocked
-ffffffff82098060 d __tpstrtab_sched_blocked_reason
-ffffffff82098080 d __tpstrtab_sched_stat_runtime
-ffffffff820980a0 d __tpstrtab_sched_pi_setprio
-ffffffff820980c0 d __tpstrtab_sched_process_hang
-ffffffff820980e0 d __tpstrtab_sched_move_numa
-ffffffff820980f0 d __tpstrtab_sched_stick_numa
-ffffffff82098110 d __tpstrtab_sched_swap_numa
-ffffffff82098120 d __tpstrtab_sched_wake_idle_without_ipi
-ffffffff8209813c d __tpstrtab_pelt_cfs_tp
-ffffffff82098148 d __tpstrtab_pelt_rt_tp
-ffffffff82098153 d __tpstrtab_pelt_dl_tp
-ffffffff82098160 d __tpstrtab_pelt_thermal_tp
-ffffffff82098170 d __tpstrtab_pelt_irq_tp
-ffffffff8209817c d __tpstrtab_pelt_se_tp
-ffffffff82098190 d __tpstrtab_sched_cpu_capacity_tp
-ffffffff820981b0 d __tpstrtab_sched_overutilized_tp
-ffffffff820981d0 d __tpstrtab_sched_util_est_cfs_tp
-ffffffff820981f0 d __tpstrtab_sched_util_est_se_tp
-ffffffff82098210 d __tpstrtab_sched_update_nr_running_tp
-ffffffff82098230 d __tpstrtab_contention_begin
-ffffffff82098241 d __tpstrtab_contention_end
-ffffffff82098250 d __tpstrtab_console
-ffffffff82098260 d __tpstrtab_irq_matrix_online
-ffffffff82098280 d __tpstrtab_irq_matrix_offline
-ffffffff820982a0 d __tpstrtab_irq_matrix_reserve
-ffffffff820982c0 d __tpstrtab_irq_matrix_remove_reserved
-ffffffff820982e0 d __tpstrtab_irq_matrix_assign_system
-ffffffff82098300 d __tpstrtab_irq_matrix_alloc_reserved
-ffffffff82098320 d __tpstrtab_irq_matrix_reserve_managed
-ffffffff82098340 d __tpstrtab_irq_matrix_remove_managed
-ffffffff82098360 d __tpstrtab_irq_matrix_alloc_managed
-ffffffff82098380 d __tpstrtab_irq_matrix_assign
-ffffffff820983a0 d __tpstrtab_irq_matrix_alloc
-ffffffff820983c0 d __tpstrtab_irq_matrix_free
-ffffffff820983d0 d __tpstrtab_rcu_utilization
-ffffffff820983e0 d __tpstrtab_rcu_grace_period
-ffffffff82098400 d __tpstrtab_rcu_future_grace_period
-ffffffff82098420 d __tpstrtab_rcu_grace_period_init
-ffffffff82098440 d __tpstrtab_rcu_exp_grace_period
-ffffffff82098460 d __tpstrtab_rcu_exp_funnel_lock
-ffffffff82098474 d __tpstrtab_rcu_nocb_wake
-ffffffff82098490 d __tpstrtab_rcu_preempt_task
-ffffffff820984b0 d __tpstrtab_rcu_unlock_preempted_task
-ffffffff820984d0 d __tpstrtab_rcu_quiescent_state_report
-ffffffff820984eb d __tpstrtab_rcu_fqs
-ffffffff82098500 d __tpstrtab_rcu_stall_warning
-ffffffff82098512 d __tpstrtab_rcu_dyntick
-ffffffff8209851e d __tpstrtab_rcu_callback
-ffffffff82098530 d __tpstrtab_rcu_segcb_stats
-ffffffff82098540 d __tpstrtab_rcu_kvfree_callback
-ffffffff82098560 d __tpstrtab_rcu_batch_start
-ffffffff82098570 d __tpstrtab_rcu_invoke_callback
-ffffffff82098590 d __tpstrtab_rcu_invoke_kvfree_callback
-ffffffff820985b0 d __tpstrtab_rcu_invoke_kfree_bulk_callback
-ffffffff820985cf d __tpstrtab_rcu_batch_end
-ffffffff820985e0 d __tpstrtab_rcu_torture_read
-ffffffff820985f1 d __tpstrtab_rcu_barrier
-ffffffff82098600 d __tpstrtab_swiotlb_bounced
-ffffffff82098610 d __tpstrtab_sys_enter
-ffffffff8209861a d __tpstrtab_sys_exit
-ffffffff82098630 d __tpstrtab_timer_init
-ffffffff8209863b d __tpstrtab_timer_start
-ffffffff82098650 d __tpstrtab_timer_expire_entry
-ffffffff82098670 d __tpstrtab_timer_expire_exit
-ffffffff82098682 d __tpstrtab_timer_cancel
-ffffffff8209868f d __tpstrtab_hrtimer_init
-ffffffff8209869c d __tpstrtab_hrtimer_start
-ffffffff820986b0 d __tpstrtab_hrtimer_expire_entry
-ffffffff820986d0 d __tpstrtab_hrtimer_expire_exit
-ffffffff820986e4 d __tpstrtab_hrtimer_cancel
-ffffffff820986f3 d __tpstrtab_itimer_state
-ffffffff82098700 d __tpstrtab_itimer_expire
-ffffffff8209870e d __tpstrtab_tick_stop
-ffffffff82098720 d __tpstrtab_alarmtimer_suspend
-ffffffff82098740 d __tpstrtab_alarmtimer_fired
-ffffffff82098760 d __tpstrtab_alarmtimer_start
-ffffffff82098780 d __tpstrtab_alarmtimer_cancel
-ffffffff820987a0 d __tpstrtab_cgroup_setup_root
-ffffffff820987c0 d __tpstrtab_cgroup_destroy_root
-ffffffff820987d4 d __tpstrtab_cgroup_remount
-ffffffff820987e3 d __tpstrtab_cgroup_mkdir
-ffffffff820987f0 d __tpstrtab_cgroup_rmdir
-ffffffff820987fd d __tpstrtab_cgroup_release
-ffffffff8209880c d __tpstrtab_cgroup_rename
-ffffffff8209881a d __tpstrtab_cgroup_freeze
-ffffffff82098830 d __tpstrtab_cgroup_unfreeze
-ffffffff82098840 d __tpstrtab_cgroup_attach_task
-ffffffff82098860 d __tpstrtab_cgroup_transfer_tasks
-ffffffff82098880 d __tpstrtab_cgroup_notify_populated
-ffffffff820988a0 d __tpstrtab_cgroup_notify_frozen
-ffffffff820988c0 d __tpstrtab_error_report_end
-ffffffff820988e0 d __tpstrtab_cpu_idle
-ffffffff820988e9 d __tpstrtab_cpu_idle_miss
-ffffffff82098900 d __tpstrtab_powernv_throttle
-ffffffff82098911 d __tpstrtab_pstate_sample
-ffffffff8209891f d __tpstrtab_cpu_frequency
-ffffffff82098930 d __tpstrtab_cpu_frequency_limits
-ffffffff82098950 d __tpstrtab_device_pm_callback_start
-ffffffff82098970 d __tpstrtab_device_pm_callback_end
-ffffffff82098987 d __tpstrtab_suspend_resume
-ffffffff820989a0 d __tpstrtab_wakeup_source_activate
-ffffffff820989c0 d __tpstrtab_wakeup_source_deactivate
-ffffffff820989d9 d __tpstrtab_clock_enable
-ffffffff820989e6 d __tpstrtab_clock_disable
-ffffffff820989f4 d __tpstrtab_clock_set_rate
-ffffffff82098a10 d __tpstrtab_power_domain_target
-ffffffff82098a30 d __tpstrtab_pm_qos_add_request
-ffffffff82098a50 d __tpstrtab_pm_qos_update_request
-ffffffff82098a70 d __tpstrtab_pm_qos_remove_request
-ffffffff82098a90 d __tpstrtab_pm_qos_update_target
-ffffffff82098ab0 d __tpstrtab_pm_qos_update_flags
-ffffffff82098ad0 d __tpstrtab_dev_pm_qos_add_request
-ffffffff82098af0 d __tpstrtab_dev_pm_qos_update_request
-ffffffff82098b10 d __tpstrtab_dev_pm_qos_remove_request
-ffffffff82098b30 d __tpstrtab_guest_halt_poll_ns
-ffffffff82098b43 d __tpstrtab_rpm_suspend
-ffffffff82098b4f d __tpstrtab_rpm_resume
-ffffffff82098b5a d __tpstrtab_rpm_idle
-ffffffff82098b63 d __tpstrtab_rpm_usage
-ffffffff82098b6d d __tpstrtab_rpm_return_int
-ffffffff82098b80 d __tpstrtab_xdp_exception
-ffffffff82098b8e d __tpstrtab_xdp_bulk_tx
-ffffffff82098b9a d __tpstrtab_xdp_redirect
-ffffffff82098bb0 d __tpstrtab_xdp_redirect_err
-ffffffff82098bd0 d __tpstrtab_xdp_redirect_map
-ffffffff82098bf0 d __tpstrtab_xdp_redirect_map_err
-ffffffff82098c10 d __tpstrtab_xdp_cpumap_kthread
-ffffffff82098c30 d __tpstrtab_xdp_cpumap_enqueue
-ffffffff82098c50 d __tpstrtab_xdp_devmap_xmit
-ffffffff82098c60 d __tpstrtab_mem_disconnect
-ffffffff82098c6f d __tpstrtab_mem_connect
-ffffffff82098c80 d __tpstrtab_mem_return_failed
-ffffffff82098c92 d __tpstrtab_rseq_update
-ffffffff82098c9e d __tpstrtab_rseq_ip_fixup
-ffffffff82098cb0 d __tpstrtab_mm_filemap_delete_from_page_cache
-ffffffff82098ce0 d __tpstrtab_mm_filemap_add_to_page_cache
-ffffffff82098d00 d __tpstrtab_filemap_set_wb_err
-ffffffff82098d20 d __tpstrtab_file_check_and_advance_wb_err
-ffffffff82098d40 d __tpstrtab_oom_score_adj_update
-ffffffff82098d60 d __tpstrtab_reclaim_retry_zone
-ffffffff82098d73 d __tpstrtab_mark_victim
-ffffffff82098d7f d __tpstrtab_wake_reaper
-ffffffff82098d90 d __tpstrtab_start_task_reaping
-ffffffff82098db0 d __tpstrtab_finish_task_reaping
-ffffffff82098dd0 d __tpstrtab_skip_task_reaping
-ffffffff82098de2 d __tpstrtab_compact_retry
-ffffffff82098df0 d __tpstrtab_mm_lru_insertion
-ffffffff82098e10 d __tpstrtab_mm_lru_activate
-ffffffff82098e20 d __tpstrtab_mm_vmscan_kswapd_sleep
-ffffffff82098e40 d __tpstrtab_mm_vmscan_kswapd_wake
-ffffffff82098e60 d __tpstrtab_mm_vmscan_wakeup_kswapd
-ffffffff82098e80 d __tpstrtab_mm_vmscan_direct_reclaim_begin
-ffffffff82098ea0 d __tpstrtab_mm_vmscan_memcg_reclaim_begin
-ffffffff82098ec0 d __tpstrtab_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff82098ef0 d __tpstrtab_mm_vmscan_direct_reclaim_end
-ffffffff82098f10 d __tpstrtab_mm_vmscan_memcg_reclaim_end
-ffffffff82098f30 d __tpstrtab_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff82098f60 d __tpstrtab_mm_shrink_slab_start
-ffffffff82098f80 d __tpstrtab_mm_shrink_slab_end
-ffffffff82098fa0 d __tpstrtab_mm_vmscan_lru_isolate
-ffffffff82098fc0 d __tpstrtab_mm_vmscan_write_folio
-ffffffff82098fe0 d __tpstrtab_mm_vmscan_lru_shrink_inactive
-ffffffff82099000 d __tpstrtab_mm_vmscan_lru_shrink_active
-ffffffff82099020 d __tpstrtab_mm_vmscan_node_reclaim_begin
-ffffffff82099040 d __tpstrtab_mm_vmscan_node_reclaim_end
-ffffffff82099060 d __tpstrtab_mm_vmscan_throttled
-ffffffff82099080 d __tpstrtab_percpu_alloc_percpu
-ffffffff820990a0 d __tpstrtab_percpu_free_percpu
-ffffffff820990c0 d __tpstrtab_percpu_alloc_percpu_fail
-ffffffff820990e0 d __tpstrtab_percpu_create_chunk
-ffffffff82099100 d __tpstrtab_percpu_destroy_chunk
-ffffffff82099120 d __tpstrtab_kmem_cache_alloc
-ffffffff82099131 d __tpstrtab_kmalloc
-ffffffff82099139 d __tpstrtab_kfree
-ffffffff82099140 d __tpstrtab_kmem_cache_free
-ffffffff82099150 d __tpstrtab_mm_page_free
-ffffffff82099160 d __tpstrtab_mm_page_free_batched
-ffffffff82099175 d __tpstrtab_mm_page_alloc
-ffffffff82099190 d __tpstrtab_mm_page_alloc_zone_locked
-ffffffff820991b0 d __tpstrtab_mm_page_pcpu_drain
-ffffffff820991d0 d __tpstrtab_mm_page_alloc_extfrag
-ffffffff820991e6 d __tpstrtab_rss_stat
-ffffffff820991f0 d __tpstrtab_mm_compaction_isolate_migratepages
-ffffffff82099220 d __tpstrtab_mm_compaction_isolate_freepages
-ffffffff82099240 d __tpstrtab_mm_compaction_migratepages
-ffffffff82099260 d __tpstrtab_mm_compaction_begin
-ffffffff82099280 d __tpstrtab_mm_compaction_end
-ffffffff820992a0 d __tpstrtab_mm_compaction_try_to_compact_pages
-ffffffff820992d0 d __tpstrtab_mm_compaction_finished
-ffffffff820992f0 d __tpstrtab_mm_compaction_suitable
-ffffffff82099310 d __tpstrtab_mm_compaction_deferred
-ffffffff82099330 d __tpstrtab_mm_compaction_defer_compaction
-ffffffff82099350 d __tpstrtab_mm_compaction_defer_reset
-ffffffff82099370 d __tpstrtab_mm_compaction_kcompactd_sleep
-ffffffff82099390 d __tpstrtab_mm_compaction_wakeup_kcompactd
-ffffffff820993b0 d __tpstrtab_mm_compaction_kcompactd_wake
-ffffffff820993d0 d __tpstrtab_mmap_lock_start_locking
-ffffffff820993f0 d __tpstrtab_mmap_lock_released
-ffffffff82099410 d __tpstrtab_mmap_lock_acquire_returned
-ffffffff82099430 d __tpstrtab_vm_unmapped_area
-ffffffff82099441 d __tpstrtab_vma_mas_szero
-ffffffff8209944f d __tpstrtab_vma_store
-ffffffff82099459 d __tpstrtab_exit_mmap
-ffffffff82099470 d __tpstrtab_tlb_flush
-ffffffff82099480 d __tpstrtab_mm_migrate_pages
-ffffffff820994a0 d __tpstrtab_mm_migrate_pages_start
-ffffffff820994c0 d __tpstrtab_set_migration_pte
-ffffffff820994e0 d __tpstrtab_remove_migration_pte
-ffffffff82099500 d __tpstrtab_hugepage_set_pmd
-ffffffff82099520 d __tpstrtab_hugepage_update
-ffffffff82099530 d __tpstrtab_set_migration_pmd
-ffffffff82099550 d __tpstrtab_remove_migration_pmd
-ffffffff82099570 d __tpstrtab_mm_khugepaged_scan_pmd
-ffffffff82099590 d __tpstrtab_mm_collapse_huge_page
-ffffffff820995b0 d __tpstrtab_mm_collapse_huge_page_isolate
-ffffffff820995d0 d __tpstrtab_mm_collapse_huge_page_swapin
-ffffffff820995f0 d __tpstrtab_mm_khugepaged_scan_file
-ffffffff82099610 d __tpstrtab_test_pages_isolated
-ffffffff82099630 d __tpstrtab_damon_aggregated
-ffffffff82099650 d __tpstrtab_writeback_dirty_folio
-ffffffff82099670 d __tpstrtab_folio_wait_writeback
-ffffffff82099690 d __tpstrtab_writeback_mark_inode_dirty
-ffffffff820996b0 d __tpstrtab_writeback_dirty_inode_start
-ffffffff820996d0 d __tpstrtab_writeback_dirty_inode
-ffffffff820996f0 d __tpstrtab_inode_foreign_history
-ffffffff82099710 d __tpstrtab_inode_switch_wbs
-ffffffff82099730 d __tpstrtab_track_foreign_dirty
-ffffffff82099744 d __tpstrtab_flush_foreign
-ffffffff82099760 d __tpstrtab_writeback_write_inode_start
-ffffffff82099780 d __tpstrtab_writeback_write_inode
-ffffffff820997a0 d __tpstrtab_writeback_queue
-ffffffff820997b0 d __tpstrtab_writeback_exec
-ffffffff820997c0 d __tpstrtab_writeback_start
-ffffffff820997d0 d __tpstrtab_writeback_written
-ffffffff820997e2 d __tpstrtab_writeback_wait
-ffffffff82099800 d __tpstrtab_writeback_pages_written
-ffffffff82099820 d __tpstrtab_writeback_wake_background
-ffffffff82099840 d __tpstrtab_writeback_bdi_register
-ffffffff82099857 d __tpstrtab_wbc_writepage
-ffffffff82099870 d __tpstrtab_writeback_queue_io
-ffffffff82099890 d __tpstrtab_global_dirty_state
-ffffffff820998b0 d __tpstrtab_bdi_dirty_ratelimit
-ffffffff820998d0 d __tpstrtab_balance_dirty_pages
-ffffffff820998f0 d __tpstrtab_writeback_sb_inodes_requeue
-ffffffff82099910 d __tpstrtab_writeback_single_inode_start
-ffffffff82099930 d __tpstrtab_writeback_single_inode
-ffffffff82099950 d __tpstrtab_writeback_lazytime
-ffffffff82099970 d __tpstrtab_writeback_lazytime_iput
-ffffffff82099990 d __tpstrtab_writeback_dirty_inode_enqueue
-ffffffff820999b0 d __tpstrtab_sb_mark_inode_writeback
-ffffffff820999d0 d __tpstrtab_sb_clear_inode_writeback
-ffffffff820999f0 d __tpstrtab_locks_get_lock_context
-ffffffff82099a10 d __tpstrtab_posix_lock_inode
-ffffffff82099a21 d __tpstrtab_fcntl_setlk
-ffffffff82099a30 d __tpstrtab_locks_remove_posix
-ffffffff82099a50 d __tpstrtab_flock_lock_inode
-ffffffff82099a70 d __tpstrtab_break_lease_noblock
-ffffffff82099a90 d __tpstrtab_break_lease_block
-ffffffff82099ab0 d __tpstrtab_break_lease_unblock
-ffffffff82099ad0 d __tpstrtab_generic_delete_lease
-ffffffff82099af0 d __tpstrtab_time_out_leases
-ffffffff82099b00 d __tpstrtab_generic_add_lease
-ffffffff82099b20 d __tpstrtab_leases_conflict
-ffffffff82099b30 d __tpstrtab_iomap_readpage
-ffffffff82099b40 d __tpstrtab_iomap_readahead
-ffffffff82099b50 d __tpstrtab_iomap_writepage
-ffffffff82099b60 d __tpstrtab_iomap_release_folio
-ffffffff82099b80 d __tpstrtab_iomap_invalidate_folio
-ffffffff82099ba0 d __tpstrtab_iomap_dio_invalidate_fail
-ffffffff82099bc0 d __tpstrtab_iomap_iter_dstmap
-ffffffff82099be0 d __tpstrtab_iomap_iter_srcmap
-ffffffff82099c00 d __tpstrtab_iomap_writepage_map
-ffffffff82099c14 d __tpstrtab_iomap_iter
-ffffffff82099c20 d __tpstrtab_ext4_other_inode_update_time
-ffffffff82099c40 d __tpstrtab_ext4_free_inode
-ffffffff82099c50 d __tpstrtab_ext4_request_inode
-ffffffff82099c70 d __tpstrtab_ext4_allocate_inode
-ffffffff82099c90 d __tpstrtab_ext4_evict_inode
-ffffffff82099cb0 d __tpstrtab_ext4_drop_inode
-ffffffff82099cc0 d __tpstrtab_ext4_nfs_commit_metadata
-ffffffff82099ce0 d __tpstrtab_ext4_mark_inode_dirty
-ffffffff82099d00 d __tpstrtab_ext4_begin_ordered_truncate
-ffffffff82099d20 d __tpstrtab_ext4_write_begin
-ffffffff82099d40 d __tpstrtab_ext4_da_write_begin
-ffffffff82099d54 d __tpstrtab_ext4_write_end
-ffffffff82099d70 d __tpstrtab_ext4_journalled_write_end
-ffffffff82099d90 d __tpstrtab_ext4_da_write_end
-ffffffff82099db0 d __tpstrtab_ext4_writepages
-ffffffff82099dc0 d __tpstrtab_ext4_da_write_pages
-ffffffff82099de0 d __tpstrtab_ext4_da_write_pages_extent
-ffffffff82099e00 d __tpstrtab_ext4_writepages_result
-ffffffff82099e17 d __tpstrtab_ext4_writepage
-ffffffff82099e26 d __tpstrtab_ext4_readpage
-ffffffff82099e40 d __tpstrtab_ext4_releasepage
-ffffffff82099e60 d __tpstrtab_ext4_invalidate_folio
-ffffffff82099e80 d __tpstrtab_ext4_journalled_invalidate_folio
-ffffffff82099eb0 d __tpstrtab_ext4_discard_blocks
-ffffffff82099ed0 d __tpstrtab_ext4_mb_new_inode_pa
-ffffffff82099ef0 d __tpstrtab_ext4_mb_new_group_pa
-ffffffff82099f10 d __tpstrtab_ext4_mb_release_inode_pa
-ffffffff82099f30 d __tpstrtab_ext4_mb_release_group_pa
-ffffffff82099f50 d __tpstrtab_ext4_discard_preallocations
-ffffffff82099f70 d __tpstrtab_ext4_mb_discard_preallocations
-ffffffff82099f90 d __tpstrtab_ext4_request_blocks
-ffffffff82099fb0 d __tpstrtab_ext4_allocate_blocks
-ffffffff82099fd0 d __tpstrtab_ext4_free_blocks
-ffffffff82099ff0 d __tpstrtab_ext4_sync_file_enter
-ffffffff8209a010 d __tpstrtab_ext4_sync_file_exit
-ffffffff8209a024 d __tpstrtab_ext4_sync_fs
-ffffffff8209a040 d __tpstrtab_ext4_alloc_da_blocks
-ffffffff8209a060 d __tpstrtab_ext4_mballoc_alloc
-ffffffff8209a080 d __tpstrtab_ext4_mballoc_prealloc
-ffffffff8209a0a0 d __tpstrtab_ext4_mballoc_discard
-ffffffff8209a0c0 d __tpstrtab_ext4_mballoc_free
-ffffffff8209a0d2 d __tpstrtab_ext4_forget
-ffffffff8209a0e0 d __tpstrtab_ext4_da_update_reserve_space
-ffffffff8209a100 d __tpstrtab_ext4_da_reserve_space
-ffffffff8209a120 d __tpstrtab_ext4_da_release_space
-ffffffff8209a140 d __tpstrtab_ext4_mb_bitmap_load
-ffffffff8209a160 d __tpstrtab_ext4_mb_buddy_bitmap_load
-ffffffff8209a180 d __tpstrtab_ext4_load_inode_bitmap
-ffffffff8209a1a0 d __tpstrtab_ext4_read_block_bitmap_load
-ffffffff8209a1c0 d __tpstrtab_ext4_fallocate_enter
-ffffffff8209a1e0 d __tpstrtab_ext4_punch_hole
-ffffffff8209a1f0 d __tpstrtab_ext4_zero_range
-ffffffff8209a200 d __tpstrtab_ext4_fallocate_exit
-ffffffff8209a220 d __tpstrtab_ext4_unlink_enter
-ffffffff8209a240 d __tpstrtab_ext4_unlink_exit
-ffffffff8209a260 d __tpstrtab_ext4_truncate_enter
-ffffffff8209a280 d __tpstrtab_ext4_truncate_exit
-ffffffff8209a2a0 d __tpstrtab_ext4_ext_convert_to_initialized_enter
-ffffffff8209a2d0 d __tpstrtab_ext4_ext_convert_to_initialized_fastpath
-ffffffff8209a300 d __tpstrtab_ext4_ext_map_blocks_enter
-ffffffff8209a320 d __tpstrtab_ext4_ind_map_blocks_enter
-ffffffff8209a340 d __tpstrtab_ext4_ext_map_blocks_exit
-ffffffff8209a360 d __tpstrtab_ext4_ind_map_blocks_exit
-ffffffff8209a380 d __tpstrtab_ext4_ext_load_extent
-ffffffff8209a3a0 d __tpstrtab_ext4_load_inode
-ffffffff8209a3b0 d __tpstrtab_ext4_journal_start
-ffffffff8209a3d0 d __tpstrtab_ext4_journal_start_reserved
-ffffffff8209a3f0 d __tpstrtab_ext4_trim_extent
-ffffffff8209a410 d __tpstrtab_ext4_trim_all_free
-ffffffff8209a430 d __tpstrtab_ext4_ext_handle_unwritten_extents
-ffffffff8209a460 d __tpstrtab_ext4_get_implied_cluster_alloc_exit
-ffffffff8209a490 d __tpstrtab_ext4_ext_show_extent
-ffffffff8209a4b0 d __tpstrtab_ext4_remove_blocks
-ffffffff8209a4d0 d __tpstrtab_ext4_ext_rm_leaf
-ffffffff8209a4f0 d __tpstrtab_ext4_ext_rm_idx
-ffffffff8209a500 d __tpstrtab_ext4_ext_remove_space
-ffffffff8209a520 d __tpstrtab_ext4_ext_remove_space_done
-ffffffff8209a540 d __tpstrtab_ext4_es_insert_extent
-ffffffff8209a560 d __tpstrtab_ext4_es_cache_extent
-ffffffff8209a580 d __tpstrtab_ext4_es_remove_extent
-ffffffff8209a5a0 d __tpstrtab_ext4_es_find_extent_range_enter
-ffffffff8209a5c0 d __tpstrtab_ext4_es_find_extent_range_exit
-ffffffff8209a5e0 d __tpstrtab_ext4_es_lookup_extent_enter
-ffffffff8209a600 d __tpstrtab_ext4_es_lookup_extent_exit
-ffffffff8209a620 d __tpstrtab_ext4_es_shrink_count
-ffffffff8209a640 d __tpstrtab_ext4_es_shrink_scan_enter
-ffffffff8209a660 d __tpstrtab_ext4_es_shrink_scan_exit
-ffffffff8209a680 d __tpstrtab_ext4_collapse_range
-ffffffff8209a6a0 d __tpstrtab_ext4_insert_range
-ffffffff8209a6b2 d __tpstrtab_ext4_es_shrink
-ffffffff8209a6d0 d __tpstrtab_ext4_es_insert_delayed_block
-ffffffff8209a6f0 d __tpstrtab_ext4_fsmap_low_key
-ffffffff8209a710 d __tpstrtab_ext4_fsmap_high_key
-ffffffff8209a730 d __tpstrtab_ext4_fsmap_mapping
-ffffffff8209a750 d __tpstrtab_ext4_getfsmap_low_key
-ffffffff8209a770 d __tpstrtab_ext4_getfsmap_high_key
-ffffffff8209a790 d __tpstrtab_ext4_getfsmap_mapping
-ffffffff8209a7a6 d __tpstrtab_ext4_shutdown
-ffffffff8209a7b4 d __tpstrtab_ext4_error
-ffffffff8209a7c0 d __tpstrtab_ext4_prefetch_bitmaps
-ffffffff8209a7e0 d __tpstrtab_ext4_lazy_itable_init
-ffffffff8209a800 d __tpstrtab_ext4_fc_replay_scan
-ffffffff8209a814 d __tpstrtab_ext4_fc_replay
-ffffffff8209a830 d __tpstrtab_ext4_fc_commit_start
-ffffffff8209a850 d __tpstrtab_ext4_fc_commit_stop
-ffffffff8209a864 d __tpstrtab_ext4_fc_stats
-ffffffff8209a880 d __tpstrtab_ext4_fc_track_create
-ffffffff8209a8a0 d __tpstrtab_ext4_fc_track_link
-ffffffff8209a8c0 d __tpstrtab_ext4_fc_track_unlink
-ffffffff8209a8e0 d __tpstrtab_ext4_fc_track_inode
-ffffffff8209a900 d __tpstrtab_ext4_fc_track_range
-ffffffff8209a920 d __tpstrtab_ext4_fc_cleanup
-ffffffff8209a930 d __tpstrtab_ext4_update_sb
-ffffffff8209a940 d __tpstrtab_jbd2_checkpoint
-ffffffff8209a950 d __tpstrtab_jbd2_start_commit
-ffffffff8209a970 d __tpstrtab_jbd2_commit_locking
-ffffffff8209a990 d __tpstrtab_jbd2_commit_flushing
-ffffffff8209a9b0 d __tpstrtab_jbd2_commit_logging
-ffffffff8209a9d0 d __tpstrtab_jbd2_drop_transaction
-ffffffff8209a9f0 d __tpstrtab_jbd2_end_commit
-ffffffff8209aa00 d __tpstrtab_jbd2_submit_inode_data
-ffffffff8209aa20 d __tpstrtab_jbd2_handle_start
-ffffffff8209aa40 d __tpstrtab_jbd2_handle_restart
-ffffffff8209aa60 d __tpstrtab_jbd2_handle_extend
-ffffffff8209aa80 d __tpstrtab_jbd2_handle_stats
-ffffffff8209aa92 d __tpstrtab_jbd2_run_stats
-ffffffff8209aab0 d __tpstrtab_jbd2_checkpoint_stats
-ffffffff8209aad0 d __tpstrtab_jbd2_update_log_tail
-ffffffff8209aaf0 d __tpstrtab_jbd2_write_superblock
-ffffffff8209ab10 d __tpstrtab_jbd2_lock_buffer_stall
-ffffffff8209ab30 d __tpstrtab_jbd2_shrink_count
-ffffffff8209ab50 d __tpstrtab_jbd2_shrink_scan_enter
-ffffffff8209ab70 d __tpstrtab_jbd2_shrink_scan_exit
-ffffffff8209ab90 d __tpstrtab_jbd2_shrink_checkpoint_list
-ffffffff8209abb0 d __tpstrtab_erofs_lookup
-ffffffff8209abc0 d __tpstrtab_erofs_fill_inode
-ffffffff8209abd1 d __tpstrtab_erofs_readpage
-ffffffff8209abe0 d __tpstrtab_erofs_readpages
-ffffffff8209abf0 d __tpstrtab_erofs_map_blocks_enter
-ffffffff8209ac10 d __tpstrtab_z_erofs_map_blocks_iter_enter
-ffffffff8209ac30 d __tpstrtab_erofs_map_blocks_exit
-ffffffff8209ac50 d __tpstrtab_z_erofs_map_blocks_iter_exit
-ffffffff8209ac70 d __tpstrtab_erofs_destroy_inode
-ffffffff8209ac90 d __tpstrtab_selinux_audited
-ffffffff8209aca0 d __tpstrtab_block_touch_buffer
-ffffffff8209acc0 d __tpstrtab_block_dirty_buffer
-ffffffff8209ace0 d __tpstrtab_block_rq_requeue
-ffffffff8209ad00 d __tpstrtab_block_rq_complete
-ffffffff8209ad12 d __tpstrtab_block_rq_error
-ffffffff8209ad30 d __tpstrtab_block_rq_insert
-ffffffff8209ad40 d __tpstrtab_block_rq_issue
-ffffffff8209ad4f d __tpstrtab_block_rq_merge
-ffffffff8209ad60 d __tpstrtab_block_bio_complete
-ffffffff8209ad80 d __tpstrtab_block_bio_bounce
-ffffffff8209ada0 d __tpstrtab_block_bio_backmerge
-ffffffff8209adc0 d __tpstrtab_block_bio_frontmerge
-ffffffff8209ade0 d __tpstrtab_block_bio_queue
-ffffffff8209adf0 d __tpstrtab_block_getrq
-ffffffff8209adfc d __tpstrtab_block_plug
-ffffffff8209ae07 d __tpstrtab_block_unplug
-ffffffff8209ae14 d __tpstrtab_block_split
-ffffffff8209ae20 d __tpstrtab_block_bio_remap
-ffffffff8209ae30 d __tpstrtab_block_rq_remap
-ffffffff8209ae40 d __tpstrtab_iocost_iocg_activate
-ffffffff8209ae60 d __tpstrtab_iocost_iocg_idle
-ffffffff8209ae80 d __tpstrtab_iocost_inuse_shortage
-ffffffff8209aea0 d __tpstrtab_iocost_inuse_transfer
-ffffffff8209aec0 d __tpstrtab_iocost_inuse_adjust
-ffffffff8209aee0 d __tpstrtab_iocost_ioc_vrate_adj
-ffffffff8209af00 d __tpstrtab_iocost_iocg_forgive_debt
-ffffffff8209af20 d __tpstrtab_kyber_latency
-ffffffff8209af2e d __tpstrtab_kyber_adjust
-ffffffff8209af40 d __tpstrtab_kyber_throttled
-ffffffff8209af50 d __tpstrtab_io_uring_create
-ffffffff8209af60 d __tpstrtab_io_uring_register
-ffffffff8209af80 d __tpstrtab_io_uring_file_get
-ffffffff8209afa0 d __tpstrtab_io_uring_queue_async_work
-ffffffff8209afba d __tpstrtab_io_uring_defer
-ffffffff8209afc9 d __tpstrtab_io_uring_link
-ffffffff8209afe0 d __tpstrtab_io_uring_cqring_wait
-ffffffff8209b000 d __tpstrtab_io_uring_fail_link
-ffffffff8209b020 d __tpstrtab_io_uring_complete
-ffffffff8209b040 d __tpstrtab_io_uring_submit_sqe
-ffffffff8209b060 d __tpstrtab_io_uring_poll_arm
-ffffffff8209b080 d __tpstrtab_io_uring_task_add
-ffffffff8209b0a0 d __tpstrtab_io_uring_req_failed
-ffffffff8209b0c0 d __tpstrtab_io_uring_cqe_overflow
-ffffffff8209b0e0 d __tpstrtab_io_uring_task_work_run
-ffffffff8209b100 d __tpstrtab_io_uring_short_write
-ffffffff8209b120 d __tpstrtab_io_uring_local_work_run
-ffffffff8209b138 d __tpstrtab_read_msr
-ffffffff8209b141 d __tpstrtab_write_msr
-ffffffff8209b14b d __tpstrtab_rdpmc
-ffffffff8209b151 d __tpstrtab_gpio_direction
-ffffffff8209b160 d __tpstrtab_gpio_value
-ffffffff8209b170 d __tpstrtab_add_device_to_group
-ffffffff8209b190 d __tpstrtab_remove_device_from_group
-ffffffff8209b1b0 d __tpstrtab_attach_device_to_domain
-ffffffff8209b1d0 d __tpstrtab_detach_device_from_domain
-ffffffff8209b1ea d __tpstrtab_map
-ffffffff8209b1ee d __tpstrtab_unmap
-ffffffff8209b1f4 d __tpstrtab_io_page_fault
-ffffffff8209b210 d __tpstrtab_regmap_reg_write
-ffffffff8209b230 d __tpstrtab_regmap_reg_read
-ffffffff8209b240 d __tpstrtab_regmap_reg_read_cache
-ffffffff8209b260 d __tpstrtab_regmap_bulk_write
-ffffffff8209b280 d __tpstrtab_regmap_bulk_read
-ffffffff8209b2a0 d __tpstrtab_regmap_hw_read_start
-ffffffff8209b2c0 d __tpstrtab_regmap_hw_read_done
-ffffffff8209b2e0 d __tpstrtab_regmap_hw_write_start
-ffffffff8209b300 d __tpstrtab_regmap_hw_write_done
-ffffffff8209b315 d __tpstrtab_regcache_sync
-ffffffff8209b330 d __tpstrtab_regmap_cache_only
-ffffffff8209b350 d __tpstrtab_regmap_cache_bypass
-ffffffff8209b370 d __tpstrtab_regmap_async_write_start
-ffffffff8209b390 d __tpstrtab_regmap_async_io_complete
-ffffffff8209b3b0 d __tpstrtab_regmap_async_complete_start
-ffffffff8209b3d0 d __tpstrtab_regmap_async_complete_done
-ffffffff8209b3f0 d __tpstrtab_regcache_drop_region
-ffffffff8209b405 d __tpstrtab_devres_log
-ffffffff8209b410 d __tpstrtab_dma_fence_emit
-ffffffff8209b41f d __tpstrtab_dma_fence_init
-ffffffff8209b430 d __tpstrtab_dma_fence_destroy
-ffffffff8209b450 d __tpstrtab_dma_fence_enable_signal
-ffffffff8209b470 d __tpstrtab_dma_fence_signaled
-ffffffff8209b490 d __tpstrtab_dma_fence_wait_start
-ffffffff8209b4b0 d __tpstrtab_dma_fence_wait_end
-ffffffff8209b4d0 d __tpstrtab_rtc_set_time
-ffffffff8209b4dd d __tpstrtab_rtc_read_time
-ffffffff8209b4eb d __tpstrtab_rtc_set_alarm
-ffffffff8209b4f9 d __tpstrtab_rtc_read_alarm
-ffffffff8209b510 d __tpstrtab_rtc_irq_set_freq
-ffffffff8209b530 d __tpstrtab_rtc_irq_set_state
-ffffffff8209b550 d __tpstrtab_rtc_alarm_irq_enable
-ffffffff8209b565 d __tpstrtab_rtc_set_offset
-ffffffff8209b580 d __tpstrtab_rtc_read_offset
-ffffffff8209b590 d __tpstrtab_rtc_timer_enqueue
-ffffffff8209b5b0 d __tpstrtab_rtc_timer_dequeue
-ffffffff8209b5d0 d __tpstrtab_rtc_timer_fired
-ffffffff8209b5e0 d __tpstrtab_thermal_temperature
-ffffffff8209b5f4 d __tpstrtab_cdev_update
-ffffffff8209b600 d __tpstrtab_thermal_zone_trip
-ffffffff8209b620 d __tpstrtab_thermal_power_cpu_get_power_simple
-ffffffff8209b650 d __tpstrtab_thermal_power_cpu_limit
-ffffffff8209b670 d __tpstrtab_watchdog_start
-ffffffff8209b67f d __tpstrtab_watchdog_ping
-ffffffff8209b68d d __tpstrtab_watchdog_stop
-ffffffff8209b6a0 d __tpstrtab_watchdog_set_timeout
-ffffffff8209b6c0 d __tpstrtab_mc_event
-ffffffff8209b6c9 d __tpstrtab_arm_event
-ffffffff8209b6e0 d __tpstrtab_non_standard_event
-ffffffff8209b6f3 d __tpstrtab_aer_event
-ffffffff8209b700 d __tpstrtab_kfree_skb
-ffffffff8209b70a d __tpstrtab_consume_skb
-ffffffff8209b720 d __tpstrtab_skb_copy_datagram_iovec
-ffffffff8209b740 d __tpstrtab_net_dev_start_xmit
-ffffffff8209b753 d __tpstrtab_net_dev_xmit
-ffffffff8209b760 d __tpstrtab_net_dev_xmit_timeout
-ffffffff8209b775 d __tpstrtab_net_dev_queue
-ffffffff8209b790 d __tpstrtab_netif_receive_skb
-ffffffff8209b7a2 d __tpstrtab_netif_rx
-ffffffff8209b7b0 d __tpstrtab_napi_gro_frags_entry
-ffffffff8209b7d0 d __tpstrtab_napi_gro_receive_entry
-ffffffff8209b7f0 d __tpstrtab_netif_receive_skb_entry
-ffffffff8209b810 d __tpstrtab_netif_receive_skb_list_entry
-ffffffff8209b82d d __tpstrtab_netif_rx_entry
-ffffffff8209b840 d __tpstrtab_napi_gro_frags_exit
-ffffffff8209b860 d __tpstrtab_napi_gro_receive_exit
-ffffffff8209b880 d __tpstrtab_netif_receive_skb_exit
-ffffffff8209b897 d __tpstrtab_netif_rx_exit
-ffffffff8209b8b0 d __tpstrtab_netif_receive_skb_list_exit
-ffffffff8209b8cc d __tpstrtab_napi_poll
-ffffffff8209b8e0 d __tpstrtab_sock_rcvqueue_full
-ffffffff8209b900 d __tpstrtab_sock_exceed_buf_limit
-ffffffff8209b920 d __tpstrtab_inet_sock_set_state
-ffffffff8209b940 d __tpstrtab_inet_sk_error_report
-ffffffff8209b960 d __tpstrtab_udp_fail_queue_rcv_skb
-ffffffff8209b980 d __tpstrtab_tcp_retransmit_skb
-ffffffff8209b993 d __tpstrtab_tcp_send_reset
-ffffffff8209b9b0 d __tpstrtab_tcp_receive_reset
-ffffffff8209b9d0 d __tpstrtab_tcp_destroy_sock
-ffffffff8209b9f0 d __tpstrtab_tcp_rcv_space_adjust
-ffffffff8209ba10 d __tpstrtab_tcp_retransmit_synack
-ffffffff8209ba26 d __tpstrtab_tcp_probe
-ffffffff8209ba30 d __tpstrtab_tcp_bad_csum
-ffffffff8209ba40 d __tpstrtab_tcp_cong_state_set
-ffffffff8209ba60 d __tpstrtab_fib_table_lookup
-ffffffff8209ba71 d __tpstrtab_qdisc_dequeue
-ffffffff8209ba7f d __tpstrtab_qdisc_enqueue
-ffffffff8209ba8d d __tpstrtab_qdisc_reset
-ffffffff8209ba99 d __tpstrtab_qdisc_destroy
-ffffffff8209baa7 d __tpstrtab_qdisc_create
-ffffffff8209bab4 d __tpstrtab_br_fdb_add
-ffffffff8209bac0 d __tpstrtab_br_fdb_external_learn_add
-ffffffff8209bada d __tpstrtab_fdb_delete
-ffffffff8209bae5 d __tpstrtab_br_fdb_update
-ffffffff8209baf3 d __tpstrtab_neigh_create
-ffffffff8209bb00 d __tpstrtab_neigh_update
-ffffffff8209bb10 d __tpstrtab_neigh_update_done
-ffffffff8209bb30 d __tpstrtab_neigh_timer_handler
-ffffffff8209bb50 d __tpstrtab_neigh_event_send_done
-ffffffff8209bb70 d __tpstrtab_neigh_event_send_dead
-ffffffff8209bb90 d __tpstrtab_neigh_cleanup_and_release
-ffffffff8209bbaa d __tpstrtab_netlink_extack
-ffffffff8209bbc0 d __tpstrtab_fib6_table_lookup
-ffffffff8209bbe0 d __tpstrtab_virtio_transport_alloc_pkt
-ffffffff8209bc00 d __tpstrtab_virtio_transport_recv_pkt
-ffffffff8209bc1a d __tpstrtab_ma_op
-ffffffff8209bc20 d __tpstrtab_ma_read
-ffffffff8209bc28 d __tpstrtab_ma_write
-ffffffff8209bc40 R __start_pci_fixups_early
-ffffffff8209c320 R __end_pci_fixups_early
-ffffffff8209c320 R __start_pci_fixups_header
-ffffffff8209d450 R __end_pci_fixups_header
-ffffffff8209d450 R __start_pci_fixups_final
-ffffffff8209e840 R __end_pci_fixups_final
-ffffffff8209e840 R __start_pci_fixups_enable
-ffffffff8209e8a0 R __end_pci_fixups_enable
-ffffffff8209e8a0 R __start_pci_fixups_resume
-ffffffff8209eb10 R __end_pci_fixups_resume
-ffffffff8209eb10 R __start_pci_fixups_resume_early
-ffffffff8209ecc0 R __end_pci_fixups_resume_early
-ffffffff8209ecc0 R __start_pci_fixups_suspend
-ffffffff8209ecd0 R __end_pci_fixups_suspend
-ffffffff8209ecd0 R __start_pci_fixups_suspend_late
-ffffffff8209ece0 R __end_builtin_fw
-ffffffff8209ece0 R __end_pci_fixups_suspend_late
-ffffffff8209ece0 r __param_initcall_debug
-ffffffff8209ece0 R __start___kcrctab
-ffffffff8209ece0 R __start___kcrctab_gpl
-ffffffff8209ece0 R __start___ksymtab
-ffffffff8209ece0 R __start___ksymtab_gpl
-ffffffff8209ece0 R __start___param
-ffffffff8209ece0 R __start_builtin_fw
-ffffffff8209ece0 R __stop___kcrctab
-ffffffff8209ece0 R __stop___kcrctab_gpl
-ffffffff8209ece0 R __stop___ksymtab
-ffffffff8209ece0 R __stop___ksymtab_gpl
-ffffffff8209ed08 r __param_uncore_no_discover
-ffffffff8209ed30 r __param_panic
-ffffffff8209ed58 r __param_panic_print
-ffffffff8209ed80 r __param_pause_on_oops
-ffffffff8209eda8 r __param_panic_on_warn
-ffffffff8209edd0 r __param_crash_kexec_post_notifiers
-ffffffff8209edf8 r __param_disable_numa
-ffffffff8209ee20 r __param_power_efficient
-ffffffff8209ee48 r __param_debug_force_rr_cpu
-ffffffff8209ee70 r __param_watchdog_thresh
-ffffffff8209ee98 r __param_ignore_loglevel
-ffffffff8209eec0 r __param_time
-ffffffff8209eee8 r __param_console_suspend
-ffffffff8209ef10 r __param_console_no_auto_verbose
-ffffffff8209ef38 r __param_always_kmsg_dump
-ffffffff8209ef60 r __param_noirqdebug
-ffffffff8209ef88 r __param_irqfixup
-ffffffff8209efb0 r __param_rcu_expedited
-ffffffff8209efd8 r __param_rcu_normal
-ffffffff8209f000 r __param_rcu_normal_after_boot
-ffffffff8209f028 r __param_rcu_cpu_stall_ftrace_dump
-ffffffff8209f050 r __param_rcu_cpu_stall_suppress
-ffffffff8209f078 r __param_rcu_cpu_stall_timeout
-ffffffff8209f0a0 r __param_rcu_exp_cpu_stall_timeout
-ffffffff8209f0c8 r __param_rcu_cpu_stall_suppress_at_boot
-ffffffff8209f0f0 r __param_rcu_task_ipi_delay
-ffffffff8209f118 r __param_rcu_task_stall_timeout
-ffffffff8209f140 r __param_rcu_task_stall_info
-ffffffff8209f168 r __param_rcu_task_stall_info_mult
-ffffffff8209f190 r __param_rcu_task_enqueue_lim
-ffffffff8209f1b8 r __param_rcu_task_contend_lim
-ffffffff8209f1e0 r __param_rcu_task_collapse_lim
-ffffffff8209f208 r __param_exp_holdoff
-ffffffff8209f230 r __param_counter_wrap_check
-ffffffff8209f258 r __param_convert_to_big
-ffffffff8209f280 r __param_big_cpu_lim
-ffffffff8209f2a8 r __param_small_contention_lim
-ffffffff8209f2d0 r __param_srcu_retry_check_delay
-ffffffff8209f2f8 r __param_srcu_max_nodelay_phase
-ffffffff8209f320 r __param_srcu_max_nodelay
-ffffffff8209f348 r __param_dump_tree
-ffffffff8209f370 r __param_use_softirq
-ffffffff8209f398 r __param_rcu_fanout_exact
-ffffffff8209f3c0 r __param_rcu_fanout_leaf
-ffffffff8209f3e8 r __param_kthread_prio
-ffffffff8209f410 r __param_gp_preinit_delay
-ffffffff8209f438 r __param_gp_init_delay
-ffffffff8209f460 r __param_gp_cleanup_delay
-ffffffff8209f488 r __param_rcu_min_cached_objs
-ffffffff8209f4b0 r __param_rcu_delay_page_cache_fill_msec
-ffffffff8209f4d8 r __param_blimit
-ffffffff8209f500 r __param_qhimark
-ffffffff8209f528 r __param_qlowmark
-ffffffff8209f550 r __param_qovld
-ffffffff8209f578 r __param_rcu_divisor
-ffffffff8209f5a0 r __param_rcu_resched_ns
-ffffffff8209f5c8 r __param_jiffies_till_sched_qs
-ffffffff8209f5f0 r __param_jiffies_to_sched_qs
-ffffffff8209f618 r __param_jiffies_till_first_fqs
-ffffffff8209f640 r __param_jiffies_till_next_fqs
-ffffffff8209f668 r __param_rcu_kick_kthreads
-ffffffff8209f690 r __param_sysrq_rcu
-ffffffff8209f6b8 r __param_nocb_nobypass_lim_per_jiffy
-ffffffff8209f6e0 r __param_rcu_nocb_gp_stride
-ffffffff8209f708 r __param_max_cswd_read_retries
-ffffffff8209f730 r __param_verify_n_cpus
-ffffffff8209f758 r __param_ignore_rlimit_data
-ffffffff8209f780 r __param_shuffle
-ffffffff8209f7a8 r __param_memmap_on_memory
-ffffffff8209f7d0 r __param_online_policy
-ffffffff8209f7f8 r __param_auto_movable_ratio
-ffffffff8209f820 r __param_sample_interval
-ffffffff8209f848 r __param_skip_covered_thresh
-ffffffff8209f870 r __param_deferrable
-ffffffff8209f898 r __param_check_on_panic
-ffffffff8209f8c0 r __param_enable
-ffffffff8209f8e8 r __param_commit_inputs
-ffffffff8209f910 r __param_min_age
-ffffffff8209f938 r __param_quota_ms
-ffffffff8209f960 r __param_quota_reset_interval_ms
-ffffffff8209f988 r __param_quota_sz
-ffffffff8209f9b0 r __param_wmarks_interval
-ffffffff8209f9d8 r __param_wmarks_high
-ffffffff8209fa00 r __param_wmarks_mid
-ffffffff8209fa28 r __param_wmarks_low
-ffffffff8209fa50 r __param_sample_interval
-ffffffff8209fa78 r __param_aggr_interval
-ffffffff8209faa0 r __param_min_nr_regions
-ffffffff8209fac8 r __param_max_nr_regions
-ffffffff8209faf0 r __param_monitor_region_start
-ffffffff8209fb18 r __param_monitor_region_end
-ffffffff8209fb40 r __param_kdamond_pid
-ffffffff8209fb68 r __param_nr_reclaim_tried_regions
-ffffffff8209fb90 r __param_bytes_reclaim_tried_regions
-ffffffff8209fbb8 r __param_nr_reclaimed_regions
-ffffffff8209fbe0 r __param_bytes_reclaimed_regions
-ffffffff8209fc08 r __param_nr_quota_exceeds
-ffffffff8209fc30 r __param_enabled
-ffffffff8209fc58 r __param_page_reporting_order
-ffffffff8209fc80 r __param_allow_sys_admin_access
-ffffffff8209fca8 r __param_max_user_bgreq
-ffffffff8209fcd0 r __param_max_user_congthresh
-ffffffff8209fcf8 r __param_notests
-ffffffff8209fd20 r __param_panic_on_fail
-ffffffff8209fd48 r __param_cryptd_max_cpu_qlen
-ffffffff8209fd70 r __param_dbg
-ffffffff8209fd98 r __param_events_dfl_poll_msecs
-ffffffff8209fdc0 r __param_blkcg_debug_stats
-ffffffff8209fde8 r __param_num_prealloc_crypt_ctxs
-ffffffff8209fe10 r __param_num_prealloc_bounce_pg
-ffffffff8209fe38 r __param_num_keyslots
-ffffffff8209fe60 r __param_num_prealloc_fallback_crypt_ctxs
-ffffffff8209fe88 r __param_verbose
-ffffffff8209feb0 r __param_run_edge_events_on_boot
-ffffffff8209fed8 r __param_ignore_wake
-ffffffff8209ff00 r __param_ignore_interrupt
-ffffffff8209ff28 r __param_policy
-ffffffff8209ff50 r __param_ec_delay
-ffffffff8209ff78 r __param_ec_max_queries
-ffffffff8209ffa0 r __param_ec_busy_polling
-ffffffff8209ffc8 r __param_ec_polling_guard
-ffffffff8209fff0 r __param_ec_storm_threshold
-ffffffff820a0018 r __param_ec_freeze_events
-ffffffff820a0040 r __param_ec_no_wakeup
-ffffffff820a0068 r __param_ec_event_clearing
-ffffffff820a0090 r __param_aml_debug_output
-ffffffff820a00b8 r __param_acpica_version
-ffffffff820a00e0 r __param_sleep_no_lps0
-ffffffff820a0108 r __param_lid_report_interval
-ffffffff820a0130 r __param_lid_init_state
-ffffffff820a0158 r __param_max_cstate
-ffffffff820a0180 r __param_nocst
-ffffffff820a01a8 r __param_bm_check_disable
-ffffffff820a01d0 r __param_latency_factor
-ffffffff820a01f8 r __param_ignore_tpc
-ffffffff820a0220 r __param_ignore_ppc
-ffffffff820a0248 r __param_act
-ffffffff820a0270 r __param_crt
-ffffffff820a0298 r __param_tzp
-ffffffff820a02c0 r __param_nocrt
-ffffffff820a02e8 r __param_off
-ffffffff820a0310 r __param_psv
-ffffffff820a0338 r __param_cache_time
-ffffffff820a0360 r __param_debug
-ffffffff820a0388 r __param_force_legacy
-ffffffff820a03b0 r __param_reset_seq
-ffffffff820a03d8 r __param_sysrq_downtime_ms
-ffffffff820a0400 r __param_brl_timeout
-ffffffff820a0428 r __param_brl_nbchords
-ffffffff820a0450 r __param_default_utf8
-ffffffff820a0478 r __param_global_cursor_default
-ffffffff820a04a0 r __param_cur_default
-ffffffff820a04c8 r __param_consoleblank
-ffffffff820a04f0 r __param_default_red
-ffffffff820a0518 r __param_default_grn
-ffffffff820a0540 r __param_default_blu
-ffffffff820a0568 r __param_color
-ffffffff820a0590 r __param_italic
-ffffffff820a05b8 r __param_underline
-ffffffff820a05e0 r __param_share_irqs
-ffffffff820a0608 r __param_nr_uarts
-ffffffff820a0630 r __param_skip_txen_test
-ffffffff820a0658 r __param_ratelimit_disable
-ffffffff820a0680 r __param_current_quality
-ffffffff820a06a8 r __param_default_quality
-ffffffff820a06d0 r __param_no_fwh_detect
-ffffffff820a06f8 r __param_path
-ffffffff820a0720 r __param_rd_nr
-ffffffff820a0748 r __param_rd_size
-ffffffff820a0770 r __param_max_part
-ffffffff820a0798 r __param_max_loop
-ffffffff820a07c0 r __param_max_part
-ffffffff820a07e8 r __param_hw_queue_depth
-ffffffff820a0810 r __param_num_request_queues
-ffffffff820a0838 r __param_poll_queues
-ffffffff820a0860 r __param_queue_depth
-ffffffff820a0888 r __param_num_devices
-ffffffff820a08b0 r __param_nokbd
-ffffffff820a08d8 r __param_noaux
-ffffffff820a0900 r __param_nomux
-ffffffff820a0928 r __param_unlock
-ffffffff820a0950 r __param_probe_defer
-ffffffff820a0978 r __param_reset
-ffffffff820a09a0 r __param_direct
-ffffffff820a09c8 r __param_dumbkbd
-ffffffff820a09f0 r __param_noloop
-ffffffff820a0a18 r __param_notimeout
-ffffffff820a0a40 r __param_kbdreset
-ffffffff820a0a68 r __param_dritek
-ffffffff820a0a90 r __param_nopnp
-ffffffff820a0ab8 r __param_debug
-ffffffff820a0ae0 r __param_unmask_kbd_data
-ffffffff820a0b08 r __param_use_acpi_alarm
-ffffffff820a0b30 r __param_stop_on_reboot
-ffffffff820a0b58 r __param_handle_boot_enabled
-ffffffff820a0b80 r __param_open_timeout
-ffffffff820a0ba8 r __param_create
-ffffffff820a0bd0 r __param_major
-ffffffff820a0bf8 r __param_reserved_bio_based_ios
-ffffffff820a0c20 r __param_dm_numa_node
-ffffffff820a0c48 r __param_swap_bios
-ffffffff820a0c70 r __param_kcopyd_subjob_size_kb
-ffffffff820a0c98 r __param_stats_current_allocated_bytes
-ffffffff820a0cc0 r __param_reserved_rq_based_ios
-ffffffff820a0ce8 r __param_use_blk_mq
-ffffffff820a0d10 r __param_dm_mq_nr_hw_queues
-ffffffff820a0d38 r __param_dm_mq_queue_depth
-ffffffff820a0d60 r __param_max_cache_size_bytes
-ffffffff820a0d88 r __param_max_age_seconds
-ffffffff820a0db0 r __param_retain_bytes
-ffffffff820a0dd8 r __param_peak_allocated_bytes
-ffffffff820a0e00 r __param_allocated_kmem_cache_bytes
-ffffffff820a0e28 r __param_allocated_get_free_pages_bytes
-ffffffff820a0e50 r __param_allocated_vmalloc_bytes
-ffffffff820a0e78 r __param_current_allocated_bytes
-ffffffff820a0ea0 r __param_prefetch_cluster
-ffffffff820a0ec8 r __param_dm_user_daemon_timeout_msec
-ffffffff820a0ef0 r __param_edac_mc_panic_on_ue
-ffffffff820a0f18 r __param_edac_mc_log_ue
-ffffffff820a0f40 r __param_edac_mc_log_ce
-ffffffff820a0f68 r __param_edac_mc_poll_msec
-ffffffff820a0f90 r __param_check_pci_errors
-ffffffff820a0fb8 r __param_edac_pci_panic_on_pe
-ffffffff820a0fe0 r __param_off
-ffffffff820a1008 r __param_default_governor
-ffffffff820a1030 r __param_off
-ffffffff820a1058 r __param_governor
-ffffffff820a1080 r __param_force
-ffffffff820a10a8 r __param_log_ecn_error
-ffffffff820a10d0 r __param_log_ecn_error
-ffffffff820a10f8 r __param_fast_convergence
-ffffffff820a1120 r __param_beta
-ffffffff820a1148 r __param_initial_ssthresh
-ffffffff820a1170 r __param_bic_scale
-ffffffff820a1198 r __param_tcp_friendliness
-ffffffff820a11c0 r __param_hystart
-ffffffff820a11e8 r __param_hystart_detect
-ffffffff820a1210 r __param_hystart_low_window
-ffffffff820a1238 r __param_hystart_ack_delta_us
-ffffffff820a1260 r __param_disable
-ffffffff820a1288 r __param_disable_ipv6
-ffffffff820a12b0 r __param_autoconf
-ffffffff820a12d8 r __param_log_ecn_error
-ffffffff820a1300 r __param_log_ecn_error
-ffffffff820a1328 r __param_log_ecn_error
-ffffffff820a1350 r __param_virtio_transport_max_vsock_pkt_buf_size
-ffffffff820a1378 r __param_backtrace_idle
-ffffffff820a13a0 d __modver_attr
-ffffffff820a13a0 D __start___modver
-ffffffff820a13a0 R __stop___param
-ffffffff820a13e8 d __modver_attr
-ffffffff820a1430 d __modver_attr
-ffffffff820a1478 d __modver_attr
-ffffffff820a14c0 d __modver_attr
-ffffffff820a1508 d __modver_attr
-ffffffff820a1550 R __start___ex_table
-ffffffff820a1550 D __stop___modver
-ffffffff820a476c R __start_notes
-ffffffff820a476c R __stop___ex_table
-ffffffff820a476c r _note_41
-ffffffff820a4784 r _note_42
-ffffffff820a47c0 R __stop_notes
-ffffffff820a5000 R __end_rodata
+ffffffff81e05cf0 D kallsyms_offsets
+ffffffff81e2a768 D kallsyms_relative_base
+ffffffff81e2a770 D kallsyms_num_syms
+ffffffff81e2a778 D kallsyms_names
+ffffffff81ea2bf8 D kallsyms_markers
+ffffffff81ea2e48 D kallsyms_token_table
+ffffffff81ea31d0 D kallsyms_token_index
+ffffffff81ea33d0 d SHUF_MASK
+ffffffff81ea33d0 d SHUF_MASK
+ffffffff81ea33e0 d mld2_all_mcr
+ffffffff81ea33f0 d kyber_batch_size
+ffffffff81ea3400 d nd_inc_seq.next
+ffffffff81ea3400 d nd_inc_seq.next
+ffffffff81ea3410 d hswep_uncore_irp_ctrs
+ffffffff81ea3420 d acpi_protocol_lengths
+ffffffff81ea3440 d enc
+ffffffff81ea3470 d pirq_finali_get.irqmap
+ffffffff81ea3480 d new_state
+ffffffff81ea3490 d memcg1_events
+ffffffff81ea34a0 d ONE
+ffffffff81ea34a0 d ONE
+ffffffff81ea34a0 d dec
+ffffffff81ea34b0 d ivbep_uncore_irp_ctls
+ffffffff81ea34c0 d pcix_bus_speed
+ffffffff81ea34d0 d MASK1
+ffffffff81ea34e0 d MASK2
+ffffffff81ea3500 d pirq_ali_set.irqmap
+ffffffff81ea3560 d ext4_type_by_mode
+ffffffff81ea3560 d fs_ftype_by_dtype
+ffffffff81ea3570 d F_MIN_MASK
+ffffffff81ea3580 d _SHUF_00BA
+ffffffff81ea3580 d _SHUF_00BA
+ffffffff81ea35a0 d TWOONE
+ffffffff81ea35a0 d TWOONE
+ffffffff81ea35b0 d XMM_QWORD_BSWAP
+ffffffff81ea35b0 d XMM_QWORD_BSWAP
+ffffffff81ea35c0 d prio2band
+ffffffff81ea35d0 d POLY
+ffffffff81ea35d0 d POLY
+ffffffff81ea35e0 d kyber_depth
+ffffffff81ea35f0 d __uuid_parse.si
+ffffffff81ea3610 d ONEf
+ffffffff81ea3620 d lbr_spec_map
+ffffffff81ea3650 d ioprio_class_to_prio
+ffffffff81ea3680 d _SHUF_DC00
+ffffffff81ea3680 d _SHUF_DC00
+ffffffff81ea3690 d cache_type_map
+ffffffff81ea36a0 d acpi_gbl_hex_to_ascii
+ffffffff81ea36c0 d PSHUFFLE_BYTE_FLIP_MASK
+ffffffff81ea36c0 d PSHUFFLE_BYTE_FLIP_MASK
+ffffffff81ea36c0 d PSHUFFLE_BYTE_FLIP_MASK
+ffffffff81ea36d0 d pirq_ali_get.irqmap
+ffffffff81ea36e0 d ivbep_uncore_irp_ctrs
+ffffffff81ea36f0 d POLY2
+ffffffff81ea3700 d pirq_finali_set.irqmap
+ffffffff81ea3740 d K256
+ffffffff81ea3740 d K256
+ffffffff81ea3740 d K256
+ffffffff81ea3840 d K256
+ffffffff81ea3a40 d ZSTD_estimateCCtxSize_internal.srcSizeTiers
+ffffffff81ea3a80 d PSHUFFLE_BYTE_FLIP_MASK
+ffffffff81ea3ae0 d ZSTD_fcs_fieldSize
+ffffffff81ea3b20 d fixed_range_blocks
+ffffffff81ea3b40 d audit_ops
+ffffffff81ea3b60 d ZSTD_overlapCopy8.dec64table
+ffffffff81ea3ba0 d nlmsg_tcpdiag_perms
+ffffffff81ea3bc0 d LZ4_decompress_generic.dec64table
+ffffffff81ea3be0 d get_reg_offset_16.regoff1
+ffffffff81ea3c40 d _SHUF_00BA
+ffffffff81ea3c80 d _SHUF_DC00
+ffffffff81ea3ca0 d dw8250_rs485_supported
+ffffffff81ea3cc0 d PSHUFFLE_BYTE_FLIP_MASK
+ffffffff81ea3ce0 d ZSTD_overlapCopy8.dec32table
+ffffffff81ea3d00 d pnp_assign_irq.xtab
+ffffffff81ea3d40 d MASK_YMM_LO
+ffffffff81ea3d60 d LZ4_decompress_generic.inc32table
+ffffffff81ea3d80 d get_reg_offset_16.regoff2
+ffffffff81ea3da0 d FSE_normalizeCount.rtbTable
+ffffffff81ea3dc0 d assocs
+ffffffff81ea3de0 d ZSTD_did_fieldSize
+ffffffff81ea3e40 d bcj_ia64.branch_table
+ffffffff81ea3f00 d K512
+ffffffff81ea3f00 d K512
+ffffffff81ea3f00 d K512
+ffffffff81ea4639 d .str.293.llvm.15815007461375656320
+ffffffff81ea46ab d .str.24.llvm.15815007461375656320
+ffffffff81ea46b0 d .str.29.llvm.15815007461375656320
+ffffffff81ea46b4 d .str.76.llvm.15815007461375656320
+ffffffff81ea46ba d .str.100.llvm.15815007461375656320
+ffffffff81ea46c1 d .str.144.llvm.15815007461375656320
+ffffffff81ea46cc d .str.175.llvm.15815007461375656320
+ffffffff81ea46d4 d .str.186.llvm.15815007461375656320
+ffffffff81ea46dd d .str.213.llvm.15815007461375656320
+ffffffff81ea46e1 d .str.248.llvm.15815007461375656320
+ffffffff81ea46f2 d .str.285.llvm.15815007461375656320
+ffffffff81ea5284 d .str.138.llvm.6459844342609514120
+ffffffff81ea5605 d .str.28.llvm.15997589376134285212
+ffffffff81ea561d d .str.96.llvm.15997589376134285212
+ffffffff81ea563a d .str.98.llvm.15997589376134285212
+ffffffff81ea5645 d .str.132.llvm.15997589376134285212
+ffffffff81ea574f d .str.10.llvm.11684466130282813119
+ffffffff81ea5757 d .str.18.llvm.11684466130282813119
+ffffffff81ea575c d .str.90.llvm.11684466130282813119
+ffffffff81ea6285 d .str.22.llvm.6889905807811859416
+ffffffff81ea6294 d .str.28.llvm.6889905807811859416
+ffffffff81ea62c1 d .str.81.llvm.6459844342609514120
+ffffffff81ea62ce d .str.132.llvm.6459844342609514120
+ffffffff81ea62d7 d .str.188.llvm.6459844342609514120
+ffffffff81ea62f0 d .str.193.llvm.6459844342609514120
+ffffffff81ea630e d .str.230.llvm.6459844342609514120
+ffffffff81ea631a d .str.240.llvm.6459844342609514120
+ffffffff81ea66a9 d .str.24.llvm.15455593456099979737
+ffffffff81ea66b1 d .str.38.llvm.15455593456099979737
+ffffffff81ea7027 d .str.llvm.15206213235599339089
+ffffffff81ea80ac d .str.2.llvm.741653512149011007
+ffffffff81ea8417 d .str.7.llvm.15815007461375656320
+ffffffff81ea841b d .str.85.llvm.15815007461375656320
+ffffffff81ea8422 d .str.93.llvm.15815007461375656320
+ffffffff81ea8426 d .str.132.llvm.15815007461375656320
+ffffffff81ea842d d .str.171.llvm.15815007461375656320
+ffffffff81ea8431 d .str.173.llvm.15815007461375656320
+ffffffff81ea8435 d .str.193.llvm.15815007461375656320
+ffffffff81ea843c d .str.236.llvm.15815007461375656320
+ffffffff81ea8447 d .str.291.llvm.15815007461375656320
+ffffffff81ea879c d .str.16.llvm.11684466130282813119
+ffffffff81ea87a3 d .str.10.llvm.4730009062035096958
+ffffffff81ea8842 d .str.1.llvm.5882076830699149773
+ffffffff81ea909b d .str.40.llvm.11684466130282813119
+ffffffff81ea90ae d .str.49.llvm.11684466130282813119
+ffffffff81ea90b9 d .str.55.llvm.11684466130282813119
+ffffffff81ea9100 d .str.11.llvm.11684466130282813119
+ffffffff81ea91fb d .str.7.llvm.15997589376134285212
+ffffffff81ea920f d .str.24.llvm.11684466130282813119
+ffffffff81ea9273 d .str.17.llvm.11684466130282813119
+ffffffff81ea927e d .str.19.llvm.11684466130282813119
+ffffffff81ea9e49 d .str.45.llvm.6459844342609514120
+ffffffff81ea9e53 d .str.76.llvm.6459844342609514120
+ffffffff81ea9e5e d .str.87.llvm.6459844342609514120
+ffffffff81ea9e6c d .str.89.llvm.6459844342609514120
+ffffffff81ea9e77 d .str.136.llvm.6459844342609514120
+ffffffff81ea9e7e d .str.140.llvm.6459844342609514120
+ffffffff81ea9e85 d .str.219.llvm.6459844342609514120
+ffffffff81ea9e94 d .str.250.llvm.6459844342609514120
+ffffffff81eaa030 d .str.2.llvm.11518183025837786690
+ffffffff81eaa262 d .str.4.llvm.10247326344417715915
+ffffffff81eaa26b d .str.19.llvm.15455593456099979737
+ffffffff81eaa9fa d .str.llvm.3893868064110764107
+ffffffff81eaacdf d .str.llvm.18314093369051958720
+ffffffff81eab4bd d .str.23.llvm.14825141258248874121
+ffffffff81eab4d0 d .str.27.llvm.14825141258248874121
+ffffffff81eabee9 d .str.12.llvm.7594618073374216372
+ffffffff81eac0dd d .str.44.llvm.485474724578166123
+ffffffff81eac14f d .str.10.llvm.15815007461375656320
+ffffffff81eac153 d .str.35.llvm.15815007461375656320
+ffffffff81eac15b d .str.46.llvm.15815007461375656320
+ffffffff81eac167 d .str.118.llvm.15815007461375656320
+ffffffff81eac16b d .str.136.llvm.15815007461375656320
+ffffffff81eac16f d .str.139.llvm.15815007461375656320
+ffffffff81eac176 d .str.145.llvm.15815007461375656320
+ffffffff81eac17d d .str.165.llvm.15815007461375656320
+ffffffff81eac181 d .str.190.llvm.15815007461375656320
+ffffffff81eac18a d .str.195.llvm.15815007461375656320
+ffffffff81eac198 d .str.208.llvm.15815007461375656320
+ffffffff81eac19d d .str.219.llvm.15815007461375656320
+ffffffff81eac1a9 d .str.220.llvm.15815007461375656320
+ffffffff81eac1ad d .str.229.llvm.15815007461375656320
+ffffffff81eac1b9 d .str.230.llvm.15815007461375656320
+ffffffff81eac1c5 d .str.252.llvm.15815007461375656320
+ffffffff81eac1ce d .str.254.llvm.15815007461375656320
+ffffffff81eac1d8 d .str.271.llvm.15815007461375656320
+ffffffff81eac1e4 d .str.298.llvm.15815007461375656320
+ffffffff81eac1eb d .str.313.llvm.15815007461375656320
+ffffffff81eacf36 d .str.65.llvm.11684466130282813119
+ffffffff81ead10e d .str.12.llvm.15997589376134285212
+ffffffff81ead119 d .str.20.llvm.15997589376134285212
+ffffffff81ead12f d .str.44.llvm.15997589376134285212
+ffffffff81ead14b d .str.75.llvm.15997589376134285212
+ffffffff81ead158 d .str.92.llvm.15997589376134285212
+ffffffff81ead165 d .str.95.llvm.15997589376134285212
+ffffffff81ead177 d .str.104.llvm.15997589376134285212
+ffffffff81ead186 d .str.136.llvm.15997589376134285212
+ffffffff81ead194 d .str.148.llvm.15997589376134285212
+ffffffff81ead222 d .str.30.llvm.11684466130282813119
+ffffffff81eadbab d .str.17.llvm.6459844342609514120
+ffffffff81eadbb3 d .str.31.llvm.6459844342609514120
+ffffffff81eadbbb d .str.256.llvm.6459844342609514120
+ffffffff81eadbc8 d .str.257.llvm.6459844342609514120
+ffffffff81eadbd3 d .str.269.llvm.6459844342609514120
+ffffffff81eadfd8 d .str.41.llvm.15455593456099979737
+ffffffff81eae4a5 d .str.llvm.11810398589774582589
+ffffffff81eb01d6 d .str.60.llvm.15815007461375656320
+ffffffff81eb01dc d .str.106.llvm.15815007461375656320
+ffffffff81eb01e3 d .str.115.llvm.15815007461375656320
+ffffffff81eb01f1 d .str.125.llvm.15815007461375656320
+ffffffff81eb01f5 d .str.135.llvm.15815007461375656320
+ffffffff81eb01f5 d .str.9.llvm.10621589499033263881
+ffffffff81eb01f9 d .str.251.llvm.15815007461375656320
+ffffffff81eb0209 d .str.296.llvm.15815007461375656320
+ffffffff81eb020d d .str.307.llvm.15815007461375656320
+ffffffff81eb021e d .str.6.llvm.10621589499033263881
+ffffffff81eb0956 d .str.3.llvm.5278788945119180012
+ffffffff81eb0f82 d .str.63.llvm.11684466130282813119
+ffffffff81eb111c d .str.29.llvm.11684466130282813119
+ffffffff81eb1128 d .str.35.llvm.15997589376134285212
+ffffffff81eb114a d .str.61.llvm.15997589376134285212
+ffffffff81eb1156 d .str.64.llvm.15997589376134285212
+ffffffff81eb1166 d .str.69.llvm.15997589376134285212
+ffffffff81eb1171 d .str.76.llvm.15997589376134285212
+ffffffff81eb1d86 d .str.24.llvm.6889905807811859416
+ffffffff81eb1da9 d .str.9.llvm.6459844342609514120
+ffffffff81eb1db1 d .str.131.llvm.6459844342609514120
+ffffffff81eb1dba d .str.139.llvm.6459844342609514120
+ffffffff81eb1dc1 d .str.158.llvm.6459844342609514120
+ffffffff81eb1dcc d .str.198.llvm.6459844342609514120
+ffffffff81eb330c d .str.7.llvm.14825141258248874121
+ffffffff81eb331b d .str.25.llvm.14825141258248874121
+ffffffff81eb39bb d .str.llvm.17004204755544782552
+ffffffff81eb42b4 d .str.150.llvm.15815007461375656320
+ffffffff81eb436b d .str.80.llvm.15815007461375656320
+ffffffff81eb4370 d .str.108.llvm.15815007461375656320
+ffffffff81eb437b d .str.111.llvm.15815007461375656320
+ffffffff81eb4386 d .str.151.llvm.15815007461375656320
+ffffffff81eb438c d .str.155.llvm.15815007461375656320
+ffffffff81eb4399 d .str.279.llvm.15815007461375656320
+ffffffff81eb4f21 d .str.46.llvm.11684466130282813119
+ffffffff81eb506e d .str.16.llvm.15997589376134285212
+ffffffff81eb507f d .str.110.llvm.15997589376134285212
+ffffffff81eb5090 d .str.130.llvm.15997589376134285212
+ffffffff81eb5181 d .str.86.llvm.11684466130282813119
+ffffffff81eb518a d .str.96.llvm.11684466130282813119
+ffffffff81eb5cd3 d .str.1.llvm.6459844342609514120
+ffffffff81eb5cde d .str.51.llvm.6459844342609514120
+ffffffff81eb5cea d .str.61.llvm.6459844342609514120
+ffffffff81eb5cf1 d .str.63.llvm.6459844342609514120
+ffffffff81eb5cf8 d .str.97.llvm.6459844342609514120
+ffffffff81eb5d01 d .str.167.llvm.6459844342609514120
+ffffffff81eb5d06 d .str.173.llvm.6459844342609514120
+ffffffff81eb5d1b d .str.199.llvm.6459844342609514120
+ffffffff81eb5d22 d .str.218.llvm.6459844342609514120
+ffffffff81eb5d35 d .str.220.llvm.6459844342609514120
+ffffffff81eb5d45 d .str.251.llvm.6459844342609514120
+ffffffff81eb5df9 d .str.7.llvm.11518183025837786690
+ffffffff81eb6109 d .str.8.llvm.15455593456099979737
+ffffffff81eb6119 d .str.40.llvm.15455593456099979737
+ffffffff81eb6f1b d k_cur.cur_chars
+ffffffff81eb72e3 d .str.9.llvm.16457450038437133464
+ffffffff81eb75c1 d .str.9.llvm.16700326276042832944
+ffffffff81eb83cf d .str.4.llvm.767912732577205681
+ffffffff81eb8783 d .str.34.llvm.15815007461375656320
+ffffffff81eb878c d .str.41.llvm.15815007461375656320
+ffffffff81eb8794 d .str.54.llvm.15815007461375656320
+ffffffff81eb879f d .str.72.llvm.15815007461375656320
+ffffffff81eb87a3 d .str.88.llvm.15815007461375656320
+ffffffff81eb87a9 d .str.90.llvm.15815007461375656320
+ffffffff81eb87bc d .str.126.llvm.15815007461375656320
+ffffffff81eb87c4 d .str.128.llvm.15815007461375656320
+ffffffff81eb87cf d .str.159.llvm.15815007461375656320
+ffffffff81eb87d6 d .str.203.llvm.15815007461375656320
+ffffffff81eb87e1 d .str.234.llvm.15815007461375656320
+ffffffff81eb87e8 d .str.263.llvm.15815007461375656320
+ffffffff81eb87fc d .str.323.llvm.15815007461375656320
+ffffffff81eb8800 d .str.10.llvm.10621589499033263881
+ffffffff81eb8bcf d .str.31.llvm.11684466130282813119
+ffffffff81eb9264 d .str.46.llvm.485474724578166123
+ffffffff81eb9611 d .str.69.llvm.11684466130282813119
+ffffffff81eb97e5 d .str.118.llvm.15997589376134285212
+ffffffff81eb97fd d .str.149.llvm.15997589376134285212
+ffffffff81eb98a3 d .str.26.llvm.11684466130282813119
+ffffffff81eb9f7b d .str.123.llvm.6459844342609514120
+ffffffff81eba0fc d .str.2.llvm.14719007145941832085
+ffffffff81eba153 d .str.12.llvm.6889905807811859416
+ffffffff81eba1bc d .str.32.llvm.6459844342609514120
+ffffffff81eba1c4 d .str.54.llvm.6459844342609514120
+ffffffff81eba1d3 d .str.57.llvm.6459844342609514120
+ffffffff81eba1d9 d .str.96.llvm.6459844342609514120
+ffffffff81eba1e2 d .str.114.llvm.6459844342609514120
+ffffffff81eba1ef d .str.144.llvm.6459844342609514120
+ffffffff81eba1f8 d .str.162.llvm.6459844342609514120
+ffffffff81eba1fc d .str.203.llvm.6459844342609514120
+ffffffff81eba200 d .str.235.llvm.6459844342609514120
+ffffffff81eba56d d .str.12.llvm.15455593456099979737
+ffffffff81eba57c d .str.45.llvm.15455593456099979737
+ffffffff81ebb8a7 d .str.17.llvm.14825141258248874121
+ffffffff81ebc47c d .str.8.llvm.15815007461375656320
+ffffffff81ebc480 d .str.37.llvm.15815007461375656320
+ffffffff81ebc483 d .str.39.llvm.15815007461375656320
+ffffffff81ebc489 d .str.68.llvm.15815007461375656320
+ffffffff81ebc493 d .str.73.llvm.15815007461375656320
+ffffffff81ebc497 d .str.148.llvm.15815007461375656320
+ffffffff81ebc4a2 d .str.192.llvm.15815007461375656320
+ffffffff81ebc4aa d .str.206.llvm.15815007461375656320
+ffffffff81ebc4b3 d .str.215.llvm.15815007461375656320
+ffffffff81ebc4b7 d .str.225.llvm.15815007461375656320
+ffffffff81ebc4c1 d .str.284.llvm.15815007461375656320
+ffffffff81ebc4c6 d .str.290.llvm.15815007461375656320
+ffffffff81ebc4cf d .str.306.llvm.15815007461375656320
+ffffffff81ebc4d7 d .str.308.llvm.15815007461375656320
+ffffffff81ebc4e3 d .str.317.llvm.15815007461375656320
+ffffffff81ebc9b2 d .str.12.llvm.4730009062035096958
+ffffffff81ebccea d trunc_msg
+ffffffff81ebd327 d .str.48.llvm.11684466130282813119
+ffffffff81ebd521 d .str.37.llvm.15997589376134285212
+ffffffff81ebd52a d .str.57.llvm.15997589376134285212
+ffffffff81ebd531 d .str.100.llvm.15997589376134285212
+ffffffff81ebd540 d .str.101.llvm.15997589376134285212
+ffffffff81ebd54a d .str.103.llvm.15997589376134285212
+ffffffff81ebd55c d .str.119.llvm.15997589376134285212
+ffffffff81ebd574 d .str.129.llvm.15997589376134285212
+ffffffff81ebd583 d .str.141.llvm.15997589376134285212
+ffffffff81ebd64e d .str.88.llvm.11684466130282813119
+ffffffff81ebd659 d .str.97.llvm.11684466130282813119
+ffffffff81ebe06d d .str.5.llvm.6889905807811859416
+ffffffff81ebe079 d .str.8.llvm.6889905807811859416
+ffffffff81ebe088 d .str.25.llvm.6889905807811859416
+ffffffff81ebe09b d .str.6.llvm.6459844342609514120
+ffffffff81ebe0ab d .str.16.llvm.6459844342609514120
+ffffffff81ebe0b6 d .str.94.llvm.6459844342609514120
+ffffffff81ebe0c0 d .str.118.llvm.6459844342609514120
+ffffffff81ebe0c9 d .str.210.llvm.6459844342609514120
+ffffffff81ebe0d6 d .str.216.llvm.6459844342609514120
+ffffffff81ebe0de d .str.217.llvm.6459844342609514120
+ffffffff81ebe0e2 d .str.252.llvm.6459844342609514120
+ffffffff81ebe1e3 d .str.3.llvm.11518183025837786690
+ffffffff81ebf273 d .str.9.llvm.14825141258248874121
+ffffffff81ebf282 d .str.24.llvm.14825141258248874121
+ffffffff81ebfc22 d .str.101.llvm.6459844342609514120
+ffffffff81ebfc22 d .str.71.llvm.11684466130282813119
+ffffffff81ebfc6d d .str.5.llvm.15815007461375656320
+ffffffff81ec0107 d .str.33.llvm.15815007461375656320
+ffffffff81ec010e d .str.42.llvm.15815007461375656320
+ffffffff81ec0113 d .str.58.llvm.15815007461375656320
+ffffffff81ec0120 d .str.110.llvm.15815007461375656320
+ffffffff81ec0128 d .str.164.llvm.15815007461375656320
+ffffffff81ec012d d .str.204.llvm.15815007461375656320
+ffffffff81ec0133 d .str.221.llvm.15815007461375656320
+ffffffff81ec0137 d .str.247.llvm.15815007461375656320
+ffffffff81ec013b d .str.304.llvm.15815007461375656320
+ffffffff81ec0d8d d .str.36.llvm.11684466130282813119
+ffffffff81ec0da1 d .str.67.llvm.11684466130282813119
+ffffffff81ec0ffa d .str.18.llvm.15997589376134285212
+ffffffff81ec1009 d .str.19.llvm.15997589376134285212
+ffffffff81ec101d d .str.21.llvm.15997589376134285212
+ffffffff81ec102e d .str.48.llvm.15997589376134285212
+ffffffff81ec1049 d .str.63.llvm.15997589376134285212
+ffffffff81ec1058 d .str.67.llvm.15997589376134285212
+ffffffff81ec106a d .str.78.llvm.15997589376134285212
+ffffffff81ec1075 d .str.102.llvm.15997589376134285212
+ffffffff81ec107e d .str.124.llvm.15997589376134285212
+ffffffff81ec108e d .str.128.llvm.15997589376134285212
+ffffffff81ec117c d .str.80.llvm.11684466130282813119
+ffffffff81ec1d85 d .str.56.llvm.6459844342609514120
+ffffffff81ec1d90 d .str.11.llvm.6459844342609514120
+ffffffff81ec1da0 d .str.15.llvm.6459844342609514120
+ffffffff81ec1da5 d .str.35.llvm.6459844342609514120
+ffffffff81ec1dac d .str.40.llvm.6459844342609514120
+ffffffff81ec1db4 d .str.115.llvm.6459844342609514120
+ffffffff81ec1db9 d .str.121.llvm.6459844342609514120
+ffffffff81ec1dca d .str.125.llvm.6459844342609514120
+ffffffff81ec1dd6 d .str.143.llvm.6459844342609514120
+ffffffff81ec1ddf d .str.146.llvm.6459844342609514120
+ffffffff81ec1de9 d .str.185.llvm.6459844342609514120
+ffffffff81ec1df9 d .str.197.llvm.6459844342609514120
+ffffffff81ec1e0f d .str.207.llvm.6459844342609514120
+ffffffff81ec2713 d .str.23.llvm.16272367229996405802
+ffffffff81ec3215 d .str.8.llvm.14825141258248874121
+ffffffff81ec3224 d .str.21.llvm.14825141258248874121
+ffffffff81ec3bf9 d .str.26.llvm.15815007461375656320
+ffffffff81ec3f7a d .str.2.llvm.15815007461375656320
+ffffffff81ec3f7d d .str.116.llvm.15815007461375656320
+ffffffff81ec3f82 d .str.140.llvm.15815007461375656320
+ffffffff81ec3f91 d .str.161.llvm.15815007461375656320
+ffffffff81ec3f9a d .str.287.llvm.15815007461375656320
+ffffffff81ec3faa d .str.318.llvm.15815007461375656320
+ffffffff81ec42a2 d .str.18.llvm.4730009062035096958
+ffffffff81ec49ff d .str.39.llvm.11684466130282813119
+ffffffff81ec4a08 d .str.44.llvm.11684466130282813119
+ffffffff81ec4b86 d .str.34.llvm.15997589376134285212
+ffffffff81ec4bb0 d .str.15.llvm.15997589376134285212
+ffffffff81ec4bbf d .str.27.llvm.15997589376134285212
+ffffffff81ec4bd8 d .str.68.llvm.15997589376134285212
+ffffffff81ec4beb d .str.84.llvm.15997589376134285212
+ffffffff81ec4cc4 d .str.91.llvm.11684466130282813119
+ffffffff81ec50d4 d .str.129.llvm.6459844342609514120
+ffffffff81ec57d2 d .str.16.llvm.6889905807811859416
+ffffffff81ec57e4 d .str.17.llvm.6889905807811859416
+ffffffff81ec5801 d .str.26.llvm.6459844342609514120
+ffffffff81ec5809 d .str.44.llvm.6459844342609514120
+ffffffff81ec5817 d .str.53.llvm.6459844342609514120
+ffffffff81ec5826 d .str.142.llvm.6459844342609514120
+ffffffff81ec582d d .str.180.llvm.6459844342609514120
+ffffffff81ec5841 d .str.204.llvm.6459844342609514120
+ffffffff81ec5846 d .str.236.llvm.6459844342609514120
+ffffffff81ec5bad d .str.18.llvm.15455593456099979737
+ffffffff81ec63cb d .str.19.llvm.16272367229996405802
+ffffffff81ec6dd4 d .str.16.llvm.14825141258248874121
+ffffffff81ec6de4 d .str.22.llvm.14825141258248874121
+ffffffff81ec74a5 d .str.1.llvm.5268515325539988706
+ffffffff81ec7962 d .str.llvm.15815007461375656320
+ffffffff81ec7b68 d .str.149.llvm.15815007461375656320
+ffffffff81ec7ba7 d .str.86.llvm.15815007461375656320
+ffffffff81ec7bae d .str.113.llvm.15815007461375656320
+ffffffff81ec7bb4 d .str.162.llvm.15815007461375656320
+ffffffff81ec7bbf d .str.185.llvm.15815007461375656320
+ffffffff81ec7bc8 d .str.222.llvm.15815007461375656320
+ffffffff81ec7bcd d .str.228.llvm.15815007461375656320
+ffffffff81ec7bdb d .str.232.llvm.15815007461375656320
+ffffffff81ec7beb d .str.278.llvm.15815007461375656320
+ffffffff81ec7bf2 d .str.305.llvm.15815007461375656320
+ffffffff81ec7bfe d .str.3.llvm.10621589499033263881
+ffffffff81ec8c71 d .str.47.llvm.15997589376134285212
+ffffffff81ec8c86 d .str.70.llvm.15997589376134285212
+ffffffff81ec8c93 d .str.116.llvm.15997589376134285212
+ffffffff81ec9ac1 d .str.1.llvm.6889905807811859416
+ffffffff81ec9ad9 d .str.43.llvm.6459844342609514120
+ffffffff81ec9ae6 d .str.122.llvm.6459844342609514120
+ffffffff81ec9af1 d .str.156.llvm.6459844342609514120
+ffffffff81ec9b00 d .str.159.llvm.6459844342609514120
+ffffffff81ec9b13 d .str.191.llvm.6459844342609514120
+ffffffff81ec9b1e d .str.205.llvm.6459844342609514120
+ffffffff81ec9b2a d .str.206.llvm.6459844342609514120
+ffffffff81ec9b5a d .str.6.llvm.7289527334478767337
+ffffffff81ec9dec d .str.7.llvm.10247326344417715915
+ffffffff81ecb902 d .str.5.llvm.7632681561677256914
+ffffffff81ecbecf d .str.2.llvm.938935613875693885
+ffffffff81ecbecf d .str.4.llvm.6910218593785238477
+ffffffff81ecbecf d .str.8.llvm.10621589499033263881
+ffffffff81ecbf7c d .str.183.llvm.15815007461375656320
+ffffffff81ecc240 d .str.14.llvm.15815007461375656320
+ffffffff81ecc245 d .str.97.llvm.15815007461375656320
+ffffffff81ecc249 d .str.127.llvm.15815007461375656320
+ffffffff81ecc256 d .str.141.llvm.15815007461375656320
+ffffffff81ecc260 d .str.198.llvm.15815007461375656320
+ffffffff81ecc272 d .str.257.llvm.15815007461375656320
+ffffffff81ecc281 d .str.268.llvm.15815007461375656320
+ffffffff81ecc28a d .str.302.llvm.15815007461375656320
+ffffffff81ecc29a d .str.309.llvm.15815007461375656320
+ffffffff81ecce04 d .str.1.llvm.1858881135479279594
+ffffffff81ecd0fe d .str.43.llvm.11684466130282813119
+ffffffff81ecd109 d .str.50.llvm.11684466130282813119
+ffffffff81ecd116 d .str.56.llvm.11684466130282813119
+ffffffff81ecd124 d .str.58.llvm.11684466130282813119
+ffffffff81ecd2f8 d .str.6.llvm.15997589376134285212
+ffffffff81ecd30e d .str.90.llvm.15997589376134285212
+ffffffff81ecd31a d .str.93.llvm.15997589376134285212
+ffffffff81ecd3d1 d .str.93.llvm.11684466130282813119
+ffffffff81ecd42b d .str.14.llvm.11684466130282813119
+ffffffff81ecd431 d .str.34.llvm.11684466130282813119
+ffffffff81ecde17 d .str.10.llvm.6889905807811859416
+ffffffff81ecde36 d .str.27.llvm.6889905807811859416
+ffffffff81ecde8f d .str.18.llvm.6459844342609514120
+ffffffff81ecde97 d .str.19.llvm.6459844342609514120
+ffffffff81ecde9f d .str.23.llvm.6459844342609514120
+ffffffff81ecdea8 d .str.93.llvm.6459844342609514120
+ffffffff81ecdeb4 d .str.116.llvm.6459844342609514120
+ffffffff81ecdebc d .str.119.llvm.6459844342609514120
+ffffffff81ecdecc d .str.128.llvm.6459844342609514120
+ffffffff81ecded2 d .str.150.llvm.6459844342609514120
+ffffffff81ecdedd d .str.181.llvm.6459844342609514120
+ffffffff81ecdef4 d .str.222.llvm.6459844342609514120
+ffffffff81ecdeff d .str.246.llvm.6459844342609514120
+ffffffff81ece22f d .str.1.llvm.10247326344417715915
+ffffffff81ece238 d .str.5.llvm.10247326344417715915
+ffffffff81ece250 d .str.25.llvm.15455593456099979737
+ffffffff81ece258 d .str.39.llvm.15455593456099979737
+ffffffff81ecf3d1 d .str.5.llvm.14825141258248874121
+ffffffff81ed027a d .str.12.llvm.10621589499033263881
+ffffffff81ed027a d .str.55.llvm.15815007461375656320
+ffffffff81ed0284 d .str.78.llvm.15815007461375656320
+ffffffff81ed0289 d .str.11.llvm.10621589499033263881
+ffffffff81ed0289 d .str.142.llvm.15815007461375656320
+ffffffff81ed0297 d .str.179.llvm.15815007461375656320
+ffffffff81ed029c d .str.191.llvm.15815007461375656320
+ffffffff81ed02a3 d .str.238.llvm.15815007461375656320
+ffffffff81ed02a7 d .str.245.llvm.15815007461375656320
+ffffffff81ed02b3 d .str.294.llvm.15815007461375656320
+ffffffff81ed02c5 d .str.301.llvm.15815007461375656320
+ffffffff81ed02cb d .str.324.llvm.15815007461375656320
+ffffffff81ed10e9 d .str.271.llvm.6459844342609514120
+ffffffff81ed1257 d .str.11.llvm.15997589376134285212
+ffffffff81ed1261 d .str.30.llvm.15997589376134285212
+ffffffff81ed1278 d .str.150.llvm.15997589376134285212
+ffffffff81ed1395 d .str.76.llvm.11684466130282813119
+ffffffff81ed15bc d .str.10.llvm.16968001797173734495
+ffffffff81ed1e88 d .str.20.llvm.6459844342609514120
+ffffffff81ed1e90 d .str.24.llvm.6459844342609514120
+ffffffff81ed1e99 d .str.36.llvm.6459844342609514120
+ffffffff81ed1ea3 d .str.37.llvm.6459844342609514120
+ffffffff81ed1ead d .str.66.llvm.6459844342609514120
+ffffffff81ed1ebd d .str.161.llvm.6459844342609514120
+ffffffff81ed1ecf d .str.200.llvm.6459844342609514120
+ffffffff81ed1ed4 d .str.213.llvm.6459844342609514120
+ffffffff81ed20ef d .str.2.llvm.15455593456099979737
+ffffffff81ed20f6 d .str.30.llvm.15455593456099979737
+ffffffff81ed333d d .str.28.llvm.14825141258248874121
+ffffffff81ed4081 d .str.llvm.13477831457429827749
+ffffffff81ed414d d .str.44.llvm.15815007461375656320
+ffffffff81ed4155 d .str.47.llvm.15815007461375656320
+ffffffff81ed4162 d .str.50.llvm.15815007461375656320
+ffffffff81ed416f d .str.57.llvm.15815007461375656320
+ffffffff81ed4179 d .str.71.llvm.15815007461375656320
+ffffffff81ed4180 d .str.99.llvm.15815007461375656320
+ffffffff81ed4184 d .str.104.llvm.15815007461375656320
+ffffffff81ed418b d .str.174.llvm.15815007461375656320
+ffffffff81ed4191 d .str.197.llvm.15815007461375656320
+ffffffff81ed419f d .str.235.llvm.15815007461375656320
+ffffffff81ed41ab d .str.246.llvm.15815007461375656320
+ffffffff81ed41b9 d .str.255.llvm.15815007461375656320
+ffffffff81ed41c0 d .str.2.llvm.10621589499033263881
+ffffffff81ed41c0 d .str.320.llvm.15815007461375656320
+ffffffff81ed46d3 d .str.llvm.17877938309414178369
+ffffffff81ed4c2a d .str.22.llvm.11684466130282813119
+ffffffff81ed50fb d .str.13.llvm.15997589376134285212
+ffffffff81ed5107 d .str.36.llvm.15997589376134285212
+ffffffff81ed5119 d .str.88.llvm.15997589376134285212
+ffffffff81ed5130 d .str.120.llvm.15997589376134285212
+ffffffff81ed5148 d .str.145.llvm.15997589376134285212
+ffffffff81ed51c9 d .str.79.llvm.11684466130282813119
+ffffffff81ed51d3 d .str.92.llvm.11684466130282813119
+ffffffff81ed5dd8 d .str.33.llvm.6459844342609514120
+ffffffff81ed5de4 d .str.41.llvm.6459844342609514120
+ffffffff81ed5dee d .str.83.llvm.6459844342609514120
+ffffffff81ed5dfd d .str.84.llvm.6459844342609514120
+ffffffff81ed5e03 d .str.141.llvm.6459844342609514120
+ffffffff81ed5e0a d .str.179.llvm.6459844342609514120
+ffffffff81ed60f4 d .str.6.llvm.15455593456099979737
+ffffffff81ed60fd d .str.16.llvm.15455593456099979737
+ffffffff81ed67f3 d .str.24.llvm.16272367229996405802
+ffffffff81ed7f02 d .str.21.llvm.11684466130282813119
+ffffffff81ed805d d .str.103.llvm.15815007461375656320
+ffffffff81ed8061 d .str.129.llvm.15815007461375656320
+ffffffff81ed8067 d .str.177.llvm.15815007461375656320
+ffffffff81ed806e d .str.256.llvm.15815007461375656320
+ffffffff81ed8075 d .str.264.llvm.15815007461375656320
+ffffffff81ed807e d .str.314.llvm.15815007461375656320
+ffffffff81ed8089 d .str.319.llvm.15815007461375656320
+ffffffff81ed8545 d .str.14.llvm.4730009062035096958
+ffffffff81ed854b d .str.19.llvm.4730009062035096958
+ffffffff81ed90cf d .str.43.llvm.15997589376134285212
+ffffffff81ed90df d .str.73.llvm.15997589376134285212
+ffffffff81ed90e6 d .str.74.llvm.15997589376134285212
+ffffffff81ed90f1 d .str.89.llvm.15997589376134285212
+ffffffff81ed90fd d .str.117.llvm.15997589376134285212
+ffffffff81ed9114 d .str.135.llvm.15997589376134285212
+ffffffff81ed912c d .str.137.llvm.15997589376134285212
+ffffffff81ed9221 d .str.78.llvm.11684466130282813119
+ffffffff81ed922a d .str.81.llvm.11684466130282813119
+ffffffff81ed9235 d .str.95.llvm.11684466130282813119
+ffffffff81ed9264 d .str.1.llvm.3472032013727214394
+ffffffff81ed926e d .str.4.llvm.3472032013727214394
+ffffffff81ed9743 d .str.llvm.289744894763650545
+ffffffff81ed9bed d .str.5.llvm.7135107497040291996
+ffffffff81ed9dc2 d .str.13.llvm.6459844342609514120
+ffffffff81ed9dd1 d .str.29.llvm.6459844342609514120
+ffffffff81ed9dd8 d .str.42.llvm.6459844342609514120
+ffffffff81ed9de1 d .str.69.llvm.6459844342609514120
+ffffffff81ed9deb d .str.82.llvm.6459844342609514120
+ffffffff81ed9df4 d .str.110.llvm.6459844342609514120
+ffffffff81ed9dfb d .str.174.llvm.6459844342609514120
+ffffffff81ed9e06 d .str.211.llvm.6459844342609514120
+ffffffff81ed9e10 d .str.223.llvm.6459844342609514120
+ffffffff81ed9e1d d .str.254.llvm.6459844342609514120
+ffffffff81ed9e28 d .str.276.llvm.6459844342609514120
+ffffffff81ed9ef4 d .str.5.llvm.11518183025837786690
+ffffffff81eda122 d .str.27.llvm.15455593456099979737
+ffffffff81eda9ad d .str.18.llvm.16272367229996405802
+ffffffff81edb552 d .str.26.llvm.14825141258248874121
+ffffffff81edbe10 d .str.4.llvm.15815007461375656320
+ffffffff81edc2ef d .str.3.llvm.15815007461375656320
+ffffffff81edc2f3 d .str.40.llvm.15815007461375656320
+ffffffff81edc2fc d .str.43.llvm.15815007461375656320
+ffffffff81edc302 d .str.49.llvm.15815007461375656320
+ffffffff81edc306 d .str.61.llvm.15815007461375656320
+ffffffff81edc312 d .str.117.llvm.15815007461375656320
+ffffffff81edc316 d .str.152.llvm.15815007461375656320
+ffffffff81edc324 d .str.172.llvm.15815007461375656320
+ffffffff81edc328 d .str.265.llvm.15815007461375656320
+ffffffff81edc332 d .str.316.llvm.15815007461375656320
+ffffffff81edc336 d .str.llvm.10621589499033263881
+ffffffff81edc6b8 d .str.13.llvm.4730009062035096958
+ffffffff81edd067 d .str.99.llvm.6459844342609514120
+ffffffff81edd06f d .str.59.llvm.11684466130282813119
+ffffffff81edd23a d .str.115.llvm.15997589376134285212
+ffffffff81edd469 d .str.13.llvm.11684466130282813119
+ffffffff81edd4c3 d .str.5.llvm.3472032013727214394
+ffffffff81eddfcb d .str.6.llvm.6889905807811859416
+ffffffff81eddfdd d .str.21.llvm.6889905807811859416
+ffffffff81ede00f d .str.4.llvm.6459844342609514120
+ffffffff81ede01d d .str.59.llvm.6459844342609514120
+ffffffff81ede02d d .str.111.llvm.6459844342609514120
+ffffffff81ede035 d .str.196.llvm.6459844342609514120
+ffffffff81ede049 d .str.201.llvm.6459844342609514120
+ffffffff81ede054 d .str.268.llvm.6459844342609514120
+ffffffff81ede3b7 d .str.35.llvm.15455593456099979737
+ffffffff81ede3c0 d .str.36.llvm.15455593456099979737
+ffffffff81ede8c6 d .str.16.llvm.513496202130684699
+ffffffff81edf036 d __func__.nvdimm_volatile_region_create.llvm.3745560375144724132
+ffffffff81edf210 d .str.8.llvm.16700326276042832944
+ffffffff81edfed8 d .str.38.llvm.15815007461375656320
+ffffffff81edfee1 d .str.48.llvm.15815007461375656320
+ffffffff81edfee4 d .str.63.llvm.15815007461375656320
+ffffffff81edfeef d .str.82.llvm.15815007461375656320
+ffffffff81edfef4 d .str.102.llvm.15815007461375656320
+ffffffff81edfefc d .str.216.llvm.15815007461375656320
+ffffffff81edff07 d .str.226.llvm.15815007461375656320
+ffffffff81edff12 d .str.258.llvm.15815007461375656320
+ffffffff81edff19 d .str.299.llvm.15815007461375656320
+ffffffff81edff1d d .str.310.llvm.15815007461375656320
+ffffffff81ee038a d .str.20.llvm.2440622221274145116
+ffffffff81ee0c1d d .str.61.llvm.11684466130282813119
+ffffffff81ee0d4b d .str.274.llvm.6459844342609514120
+ffffffff81ee0f21 d .str.3.llvm.15997589376134285212
+ffffffff81ee0f2f d .str.49.llvm.15997589376134285212
+ffffffff81ee0f44 d .str.66.llvm.15997589376134285212
+ffffffff81ee0f55 d .str.99.llvm.15997589376134285212
+ffffffff81ee1016 d .str.9.llvm.11684466130282813119
+ffffffff81ee101d d .str.100.llvm.11684466130282813119
+ffffffff81ee1ca5 d .str.29.llvm.6889905807811859416
+ffffffff81ee1cb5 d .str.38.llvm.6459844342609514120
+ffffffff81ee1cc3 d .str.70.llvm.6459844342609514120
+ffffffff81ee1ccb d .str.208.llvm.6459844342609514120
+ffffffff81ee1cd0 d .str.215.llvm.6459844342609514120
+ffffffff81ee1cdb d .str.224.llvm.6459844342609514120
+ffffffff81ee1ce2 d .str.263.llvm.6459844342609514120
+ffffffff81ee1cf0 d .str.277.llvm.6459844342609514120
+ffffffff81ee1cff d .str.279.llvm.6459844342609514120
+ffffffff81ee2c4b d .str.3.llvm.18421582928704709732
+ffffffff81ee3154 d .str.4.llvm.14825141258248874121
+ffffffff81ee3158 d .str.18.llvm.14825141258248874121
+ffffffff81ee317f d .str.llvm.5061864104550225250
+ffffffff81ee3368 d .str.9.llvm.13512692476664480012
+ffffffff81ee3994 d .str.llvm.6889905807811859416
+ffffffff81ee3dce d .str.22.llvm.15815007461375656320
+ffffffff81ee3dd3 d .str.77.llvm.15815007461375656320
+ffffffff81ee3dd7 d .str.84.llvm.15815007461375656320
+ffffffff81ee3ddb d .str.95.llvm.15815007461375656320
+ffffffff81ee3de2 d .str.167.llvm.15815007461375656320
+ffffffff81ee3de7 d .str.169.llvm.15815007461375656320
+ffffffff81ee3dec d .str.211.llvm.15815007461375656320
+ffffffff81ee3df0 d .str.270.llvm.15815007461375656320
+ffffffff81ee3df9 d .str.326.llvm.15815007461375656320
+ffffffff81ee4361 d .str.11.llvm.4730009062035096958
+ffffffff81ee4bd4 d .str.41.llvm.11684466130282813119
+ffffffff81ee4de2 d .str.72.llvm.15997589376134285212
+ffffffff81ee4df1 d .str.91.llvm.15997589376134285212
+ffffffff81ee4eae d .str.87.llvm.11684466130282813119
+ffffffff81ee4eec d .str.3.llvm.3472032013727214394
+ffffffff81ee5ad3 d .str.9.llvm.6889905807811859416
+ffffffff81ee5b36 d .str.12.llvm.6459844342609514120
+ffffffff81ee5b42 d .str.71.llvm.6459844342609514120
+ffffffff81ee5b4b d .str.75.llvm.6459844342609514120
+ffffffff81ee5b56 d .str.79.llvm.6459844342609514120
+ffffffff81ee5b5f d .str.92.llvm.6459844342609514120
+ffffffff81ee5b67 d .str.145.llvm.6459844342609514120
+ffffffff81ee5b6e d .str.147.llvm.6459844342609514120
+ffffffff81ee5b79 d .str.176.llvm.6459844342609514120
+ffffffff81ee5b88 d .str.192.llvm.6459844342609514120
+ffffffff81ee5b91 d .str.225.llvm.6459844342609514120
+ffffffff81ee5b9d d .str.244.llvm.6459844342609514120
+ffffffff81ee5ba8 d .str.260.llvm.6459844342609514120
+ffffffff81ee5fd3 d .str.3.llvm.15455593456099979737
+ffffffff81ee5fd9 d .str.4.llvm.15455593456099979737
+ffffffff81ee5fe4 d .str.37.llvm.15455593456099979737
+ffffffff81ee727f d .str.1.llvm.14825141258248874121
+ffffffff81ee7285 d .str.14.llvm.14825141258248874121
+ffffffff81ee788d d .str.1.llvm.17004204755544782552
+ffffffff81ee7bbf d .str.1.llvm.1958900823244423996
+ffffffff81ee7c32 d .str.1.llvm.741653512149011007
+ffffffff81ee7cc7 d .str.102.llvm.6459844342609514120
+ffffffff81ee7cc7 d .str.72.llvm.11684466130282813119
+ffffffff81ee7dcb d .str.107.llvm.6459844342609514120
+ffffffff81ee81b6 d .str.45.llvm.15815007461375656320
+ffffffff81ee81c0 d .str.62.llvm.15815007461375656320
+ffffffff81ee81c8 d .str.91.llvm.15815007461375656320
+ffffffff81ee81cc d .str.92.llvm.15815007461375656320
+ffffffff81ee81d2 d .str.96.llvm.15815007461375656320
+ffffffff81ee81dd d .str.112.llvm.15815007461375656320
+ffffffff81ee81e1 d .str.122.llvm.15815007461375656320
+ffffffff81ee81e6 d .str.156.llvm.15815007461375656320
+ffffffff81ee81ea d .str.178.llvm.15815007461375656320
+ffffffff81ee81ee d .str.253.llvm.15815007461375656320
+ffffffff81ee81f6 d .str.276.llvm.15815007461375656320
+ffffffff81ee81fa d .str.297.llvm.15815007461375656320
+ffffffff81ee8205 d .str.321.llvm.15815007461375656320
+ffffffff81ee85a2 d .str.17.llvm.4730009062035096958
+ffffffff81ee8844 d .str.166.llvm.6459844342609514120
+ffffffff81ee8ff7 d .str.38.llvm.11684466130282813119
+ffffffff81ee9004 d .str.45.llvm.11684466130282813119
+ffffffff81ee900f d .str.54.llvm.11684466130282813119
+ffffffff81ee9023 d .str.62.llvm.11684466130282813119
+ffffffff81ee9280 d .str.8.llvm.15997589376134285212
+ffffffff81ee9294 d .str.38.llvm.15997589376134285212
+ffffffff81ee92a7 d .str.41.llvm.15997589376134285212
+ffffffff81ee92b9 d .str.50.llvm.15997589376134285212
+ffffffff81ee92ce d .str.51.llvm.15997589376134285212
+ffffffff81ee92de d .str.54.llvm.15997589376134285212
+ffffffff81ee92ec d .str.65.llvm.15997589376134285212
+ffffffff81ee92fb d .str.97.llvm.15997589376134285212
+ffffffff81ee9319 d .str.122.llvm.15997589376134285212
+ffffffff81ee9331 d .str.126.llvm.15997589376134285212
+ffffffff81ee934b d .str.144.llvm.15997589376134285212
+ffffffff81ee935f d .str.151.llvm.15997589376134285212
+ffffffff81ee93e9 d .str.73.llvm.11684466130282813119
+ffffffff81ee93ee d .str.74.llvm.11684466130282813119
+ffffffff81ee93f5 d .str.75.llvm.11684466130282813119
+ffffffff81ee9e98 d .str.3.llvm.6889905807811859416
+ffffffff81ee9ead d .str.4.llvm.6889905807811859416
+ffffffff81ee9ec6 d .str.7.llvm.6889905807811859416
+ffffffff81ee9ef0 d .str.90.llvm.6459844342609514120
+ffffffff81ee9ef6 d .str.95.llvm.6459844342609514120
+ffffffff81ee9f00 d .str.117.llvm.6459844342609514120
+ffffffff81ee9f0c d .str.195.llvm.6459844342609514120
+ffffffff81ee9f29 d .str.261.llvm.6459844342609514120
+ffffffff81ee9f30 d .str.280.llvm.6459844342609514120
+ffffffff81eea05c d .str.llvm.2359588137057508239
+ffffffff81eea2a7 d .str.3.llvm.10247326344417715915
+ffffffff81eea307 d .str.5.llvm.15455593456099979737
+ffffffff81eea313 d .str.21.llvm.15455593456099979737
+ffffffff81eea407 d .str.llvm.4861723526125116322
+ffffffff81eeb6a8 d .str.llvm.9136860624919709071
+ffffffff81eeb6af d .str.5.llvm.9136860624919709071
+ffffffff81eebb71 d .str.llvm.9932783497754369414
+ffffffff81eebf99 d .str.202.llvm.15815007461375656320
+ffffffff81eec4bf d .str.16.llvm.15815007461375656320
+ffffffff81eec4c5 d .str.53.llvm.15815007461375656320
+ffffffff81eec4ce d .str.79.llvm.15815007461375656320
+ffffffff81eec4d2 d .str.83.llvm.15815007461375656320
+ffffffff81eec4d7 d .str.158.llvm.15815007461375656320
+ffffffff81eec4df d .str.196.llvm.15815007461375656320
+ffffffff81eec4ed d .str.242.llvm.15815007461375656320
+ffffffff81eec4f2 d .str.282.llvm.15815007461375656320
+ffffffff81eec4fd d .str.300.llvm.15815007461375656320
+ffffffff81eec898 d .str.16.llvm.4730009062035096958
+ffffffff81eed0fc d .str.53.llvm.15997589376134285212
+ffffffff81eed114 d .str.94.llvm.15997589376134285212
+ffffffff81eed122 d .str.139.llvm.15997589376134285212
+ffffffff81eed13c d .str.140.llvm.15997589376134285212
+ffffffff81eed1a3 d .str.83.llvm.11684466130282813119
+ffffffff81eedba2 d .str.18.llvm.6889905807811859416
+ffffffff81eedc28 d .str.88.llvm.6459844342609514120
+ffffffff81eedc30 d .str.154.llvm.6459844342609514120
+ffffffff81eedc38 d .str.163.llvm.6459844342609514120
+ffffffff81eedcf4 d .str.6.llvm.11518183025837786690
+ffffffff81eedec5 d .str.1.llvm.15455593456099979737
+ffffffff81eedecb d .str.47.llvm.15455593456099979737
+ffffffff81eeebd0 d .str.llvm.393697337037755989
+ffffffff81eeecaa d .str.62.llvm.3745560375144724132
+ffffffff81eefc27 d .str.25.llvm.15815007461375656320
+ffffffff81eefc86 d .str.9.llvm.15815007461375656320
+ffffffff81eefc8b d .str.21.llvm.15815007461375656320
+ffffffff81eefc8f d .str.189.llvm.15815007461375656320
+ffffffff81eefc98 d .str.201.llvm.15815007461375656320
+ffffffff81eefc9f d .str.217.llvm.15815007461375656320
+ffffffff81eefcae d .str.272.llvm.15815007461375656320
+ffffffff81ef01c8 d .str.49.llvm.6459844342609514120
+ffffffff81ef029c d .str.25.llvm.885230624384216800
+ffffffff81ef0782 d .str.84.llvm.11684466130282813119
+ffffffff81ef0951 d .str.64.llvm.11684466130282813119
+ffffffff81ef0be9 d .str.10.llvm.15997589376134285212
+ffffffff81ef0bf2 d .str.26.llvm.15997589376134285212
+ffffffff81ef0c0b d .str.32.llvm.15997589376134285212
+ffffffff81ef0c15 d .str.114.llvm.15997589376134285212
+ffffffff81ef0c29 d .str.133.llvm.15997589376134285212
+ffffffff81ef0c38 d .str.146.llvm.15997589376134285212
+ffffffff81ef0cd4 d .str.82.llvm.11684466130282813119
+ffffffff81ef1ab0 d .str.19.llvm.6889905807811859416
+ffffffff81ef1ac5 d .str.26.llvm.6889905807811859416
+ffffffff81ef1b29 d .str.8.llvm.6459844342609514120
+ffffffff81ef1b34 d .str.148.llvm.6459844342609514120
+ffffffff81ef1b3e d .str.178.llvm.6459844342609514120
+ffffffff81ef1b55 d .str.194.llvm.6459844342609514120
+ffffffff81ef1b6c d .str.214.llvm.6459844342609514120
+ffffffff81ef1b7a d .str.227.llvm.6459844342609514120
+ffffffff81ef1b8a d .str.229.llvm.6459844342609514120
+ffffffff81ef1b95 d .str.264.llvm.6459844342609514120
+ffffffff81ef1f53 d .str.14.llvm.15455593456099979737
+ffffffff81ef1f60 d .str.28.llvm.15455593456099979737
+ffffffff81ef1f68 d .str.44.llvm.15455593456099979737
+ffffffff81ef1f71 d .str.46.llvm.15455593456099979737
+ffffffff81ef2453 d .str.20.llvm.16272367229996405802
+ffffffff81ef31ed d .str.13.llvm.14825141258248874121
+ffffffff81ef387e d .str.3.llvm.6596198281680024860
+ffffffff81ef4067 d .str.12.llvm.15815007461375656320
+ffffffff81ef406b d .str.13.llvm.15815007461375656320
+ffffffff81ef406f d .str.20.llvm.15815007461375656320
+ffffffff81ef406f d .str.llvm.171238810428212942
+ffffffff81ef4074 d .str.23.llvm.15815007461375656320
+ffffffff81ef4078 d .str.67.llvm.15815007461375656320
+ffffffff81ef407c d .str.133.llvm.15815007461375656320
+ffffffff81ef4087 d .str.146.llvm.15815007461375656320
+ffffffff81ef408c d .str.181.llvm.15815007461375656320
+ffffffff81ef4097 d .str.259.llvm.15815007461375656320
+ffffffff81ef409c d .str.269.llvm.15815007461375656320
+ffffffff81ef40a0 d .str.275.llvm.15815007461375656320
+ffffffff81ef40b2 d .str.286.llvm.15815007461375656320
+ffffffff81ef40c2 d .str.322.llvm.15815007461375656320
+ffffffff81ef40ce d .str.327.llvm.15815007461375656320
+ffffffff81ef4fca d .str.71.llvm.15997589376134285212
+ffffffff81ef4fd8 d .str.83.llvm.15997589376134285212
+ffffffff81ef4fe7 d .str.142.llvm.15997589376134285212
+ffffffff81ef5187 d .str.17.llvm.13943339852349955666
+ffffffff81ef5be9 d .str.2.llvm.6459844342609514120
+ffffffff81ef5bf8 d .str.27.llvm.6459844342609514120
+ffffffff81ef5c00 d .str.98.llvm.6459844342609514120
+ffffffff81ef5c06 d .str.104.llvm.6459844342609514120
+ffffffff81ef5c0e d .str.113.llvm.6459844342609514120
+ffffffff81ef5c16 d .str.151.llvm.6459844342609514120
+ffffffff81ef5c23 d .str.155.llvm.6459844342609514120
+ffffffff81ef5c2a d .str.169.llvm.6459844342609514120
+ffffffff81ef5c2f d .str.175.llvm.6459844342609514120
+ffffffff81ef5c3b d .str.177.llvm.6459844342609514120
+ffffffff81ef5c4a d .str.184.llvm.6459844342609514120
+ffffffff81ef5c56 d .str.189.llvm.6459844342609514120
+ffffffff81ef5c6a d .str.231.llvm.6459844342609514120
+ffffffff81ef68c0 d .str.17.llvm.16272367229996405802
+ffffffff81ef729d d .str.12.llvm.14825141258248874121
+ffffffff81ef7e1d d .str.30.llvm.15815007461375656320
+ffffffff81ef7e25 d .str.66.llvm.15815007461375656320
+ffffffff81ef7e34 d .str.109.llvm.15815007461375656320
+ffffffff81ef7e38 d .str.153.llvm.15815007461375656320
+ffffffff81ef7e43 d .str.209.llvm.15815007461375656320
+ffffffff81ef7e47 d .str.231.llvm.15815007461375656320
+ffffffff81ef7e4c d .str.262.llvm.15815007461375656320
+ffffffff81ef7e51 d .str.273.llvm.15815007461375656320
+ffffffff81ef7e5a d .str.281.llvm.15815007461375656320
+ffffffff81ef7e5f d .str.1.llvm.10621589499033263881
+ffffffff81ef8459 d .str.1.llvm.6317896902096129061
+ffffffff81ef8d27 d .str.33.llvm.15997589376134285212
+ffffffff81ef8d35 d .str.42.llvm.15997589376134285212
+ffffffff81ef8d53 d .str.56.llvm.15997589376134285212
+ffffffff81ef8d71 d .str.79.llvm.15997589376134285212
+ffffffff81ef8d7d d .str.86.llvm.15997589376134285212
+ffffffff81ef8d8b d .str.105.llvm.15997589376134285212
+ffffffff81ef8da1 d .str.131.llvm.15997589376134285212
+ffffffff81ef952c d .str.llvm.11086791099300607287
+ffffffff81ef9c58 d .str.13.llvm.6889905807811859416
+ffffffff81ef9c71 d .str.23.llvm.6889905807811859416
+ffffffff81ef9c93 d .str.10.llvm.6459844342609514120
+ffffffff81ef9c9f d .str.47.llvm.6459844342609514120
+ffffffff81ef9cae d .str.55.llvm.6459844342609514120
+ffffffff81ef9cba d .str.72.llvm.6459844342609514120
+ffffffff81ef9cc4 d .str.130.llvm.6459844342609514120
+ffffffff81ef9cc8 d .str.134.llvm.6459844342609514120
+ffffffff81ef9cd2 d .str.221.llvm.6459844342609514120
+ffffffff81ef9ce2 d .str.232.llvm.6459844342609514120
+ffffffff81ef9cee d .str.267.llvm.6459844342609514120
+ffffffff81ef9d7d d .str.llvm.11518183025837786690
+ffffffff81efa006 d .str.9.llvm.15455593456099979737
+ffffffff81efa00e d .str.48.llvm.15455593456099979737
+ffffffff81efaf0f d .str.6.llvm.14825141258248874121
+ffffffff81efbb46 d .str.1.llvm.15815007461375656320
+ffffffff81efbb4a d .str.52.llvm.15815007461375656320
+ffffffff81efbb4e d .str.59.llvm.15815007461375656320
+ffffffff81efbb5a d .str.65.llvm.15815007461375656320
+ffffffff81efbb69 d .str.134.llvm.15815007461375656320
+ffffffff81efbb75 d .str.157.llvm.15815007461375656320
+ffffffff81efbb7a d .str.244.llvm.15815007461375656320
+ffffffff81efbb85 d .str.280.llvm.15815007461375656320
+ffffffff81efbb8a d .str.7.llvm.10621589499033263881
+ffffffff81efc0ef d .str.4.llvm.5455774376933422653
+ffffffff81efc2ef d .str.212.llvm.6459844342609514120
+ffffffff81efcac2 d .str.23.llvm.15997589376134285212
+ffffffff81efcad3 d .str.55.llvm.15997589376134285212
+ffffffff81efcae6 d .str.58.llvm.15997589376134285212
+ffffffff81efcaee d .str.77.llvm.15997589376134285212
+ffffffff81efcaf6 d .str.121.llvm.15997589376134285212
+ffffffff81efcb10 d .str.125.llvm.15997589376134285212
+ffffffff81efcc40 d .str.99.llvm.11684466130282813119
+ffffffff81efd710 d .str.126.llvm.6459844342609514120
+ffffffff81efd719 d .str.153.llvm.6459844342609514120
+ffffffff81efd71f d .str.242.llvm.6459844342609514120
+ffffffff81efd72b d .str.247.llvm.6459844342609514120
+ffffffff81efdab3 d .str.13.llvm.15455593456099979737
+ffffffff81efdaba d .str.15.llvm.15455593456099979737
+ffffffff81efe086 d .str.15.llvm.16272367229996405802
+ffffffff81efe7d4 d .str.llvm.5753852448143542236
+ffffffff81efe7d4 d .str.llvm.600803129930813883
+ffffffff81effa84 d .str.6.llvm.15815007461375656320
+ffffffff81effa88 d .str.18.llvm.15815007461375656320
+ffffffff81effa90 d .str.19.llvm.15815007461375656320
+ffffffff81effa94 d .str.36.llvm.15815007461375656320
+ffffffff81effa9b d .str.56.llvm.15815007461375656320
+ffffffff81effaa0 d .str.69.llvm.15815007461375656320
+ffffffff81effaa7 d .str.119.llvm.15815007461375656320
+ffffffff81effaae d .str.123.llvm.15815007461375656320
+ffffffff81effab2 d .str.124.llvm.15815007461375656320
+ffffffff81effabd d .str.194.llvm.15815007461375656320
+ffffffff81effac5 d .str.311.llvm.15815007461375656320
+ffffffff81f000e1 d task_index_to_char.state_char
+ffffffff81f000e1 d task_index_to_char.state_char
+ffffffff81f000e1 d task_index_to_char.state_char
+ffffffff81f000e1 d task_index_to_char.state_char
+ffffffff81f008b0 d .str.35.llvm.11684466130282813119
+ffffffff81f008be d .str.37.llvm.11684466130282813119
+ffffffff81f008d3 d .str.42.llvm.11684466130282813119
+ffffffff81f008dc d .str.47.llvm.11684466130282813119
+ffffffff81f008ea d .str.66.llvm.11684466130282813119
+ffffffff81f00b48 d .str.9.llvm.15997589376134285212
+ffffffff81f00b5e d .str.22.llvm.15997589376134285212
+ffffffff81f00b6f d .str.24.llvm.15997589376134285212
+ffffffff81f00c30 d .str.32.llvm.11684466130282813119
+ffffffff81f01193 d .str.13.llvm.289744894763650545
+ffffffff81f016fd d .str.15.llvm.6889905807811859416
+ffffffff81f0170c d .str.28.llvm.6459844342609514120
+ffffffff81f01713 d .str.168.llvm.6459844342609514120
+ffffffff81f0171b d .str.182.llvm.6459844342609514120
+ffffffff81f01730 d .str.183.llvm.6459844342609514120
+ffffffff81f01745 d .str.209.llvm.6459844342609514120
+ffffffff81f01751 d .str.238.llvm.6459844342609514120
+ffffffff81f0175d d .str.266.llvm.6459844342609514120
+ffffffff81f01a5e d .str.2.llvm.10247326344417715915
+ffffffff81f01b7b d .str.llvm.15455593456099979737
+ffffffff81f01b7f d .str.7.llvm.15455593456099979737
+ffffffff81f01b8b d .str.20.llvm.15455593456099979737
+ffffffff81f01b98 d .str.29.llvm.15455593456099979737
+ffffffff81f01b9e d .str.34.llvm.15455593456099979737
+ffffffff81f03efa d .str.121.llvm.15815007461375656320
+ffffffff81f03efe d .str.160.llvm.15815007461375656320
+ffffffff81f03f08 d .str.170.llvm.15815007461375656320
+ffffffff81f03f10 d .str.188.llvm.15815007461375656320
+ffffffff81f03f19 d .str.312.llvm.15815007461375656320
+ffffffff81f0478c d .str.llvm.9962928499551209121
+ffffffff81f04cca d .str.53.llvm.11684466130282813119
+ffffffff81f04f33 d .str.40.llvm.15997589376134285212
+ffffffff81f04f45 d .str.80.llvm.15997589376134285212
+ffffffff81f04f4e d .str.112.llvm.15997589376134285212
+ffffffff81f04ff6 d .str.45.llvm.485474724578166123
+ffffffff81f050da d .str.23.llvm.11684466130282813119
+ffffffff81f050e4 d .str.89.llvm.11684466130282813119
+ffffffff81f05a9d d .str.14.llvm.6889905807811859416
+ffffffff81f05acb d .str.7.llvm.6459844342609514120
+ffffffff81f05ad8 d .str.22.llvm.6459844342609514120
+ffffffff81f05adf d .str.50.llvm.6459844342609514120
+ffffffff81f05ae8 d .str.133.llvm.6459844342609514120
+ffffffff81f05af1 d .str.171.llvm.6459844342609514120
+ffffffff81f05af5 d .str.190.llvm.6459844342609514120
+ffffffff81f05b01 d .str.237.llvm.6459844342609514120
+ffffffff81f05b0c d .str.245.llvm.6459844342609514120
+ffffffff81f05b17 d .str.258.llvm.6459844342609514120
+ffffffff81f05e85 d .str.11.llvm.15455593456099979737
+ffffffff81f05e8d d .str.32.llvm.15455593456099979737
+ffffffff81f069d6 d .str.llvm.131465668642156839
+ffffffff81f06d1b d .str.15.llvm.14825141258248874121
+ffffffff81f07450 d .str.272.llvm.6459844342609514120
+ffffffff81f0780f d .str.114.llvm.15815007461375656320
+ffffffff81f0781b d .str.187.llvm.15815007461375656320
+ffffffff81f07822 d .str.207.llvm.15815007461375656320
+ffffffff81f0782c d .str.274.llvm.15815007461375656320
+ffffffff81f07836 d .str.288.llvm.15815007461375656320
+ffffffff81f0783f d .str.295.llvm.15815007461375656320
+ffffffff81f07844 d .str.315.llvm.15815007461375656320
+ffffffff81f07849 d .str.328.llvm.15815007461375656320
+ffffffff81f07f60 d .str.22.llvm.15455593456099979737
+ffffffff81f08099 d .str.llvm.10550883615723952607
+ffffffff81f08495 d .str.60.llvm.11684466130282813119
+ffffffff81f08644 d .str.29.llvm.15997589376134285212
+ffffffff81f0865c d .str.52.llvm.15997589376134285212
+ffffffff81f08670 d .str.62.llvm.15997589376134285212
+ffffffff81f0867e d .str.107.llvm.15997589376134285212
+ffffffff81f08692 d .str.108.llvm.15997589376134285212
+ffffffff81f086aa d .str.134.llvm.15997589376134285212
+ffffffff81f086c0 d .str.138.llvm.15997589376134285212
+ffffffff81f08747 d .str.77.llvm.11684466130282813119
+ffffffff81f09230 d .str.2.llvm.6889905807811859416
+ffffffff81f09243 d .str.20.llvm.6889905807811859416
+ffffffff81f0924d d .str.48.llvm.6459844342609514120
+ffffffff81f0925f d .str.62.llvm.6459844342609514120
+ffffffff81f09264 d .str.109.llvm.6459844342609514120
+ffffffff81f09269 d .str.120.llvm.6459844342609514120
+ffffffff81f09275 d .str.160.llvm.6459844342609514120
+ffffffff81f0927f d .str.172.llvm.6459844342609514120
+ffffffff81f09283 d .str.226.llvm.6459844342609514120
+ffffffff81f09288 d .str.243.llvm.6459844342609514120
+ffffffff81f09295 d .str.248.llvm.6459844342609514120
+ffffffff81f092a1 d .str.255.llvm.6459844342609514120
+ffffffff81f0934c d .str.4.llvm.11518183025837786690
+ffffffff81f0953c d .str.33.llvm.15455593456099979737
+ffffffff81f09540 d .str.42.llvm.15455593456099979737
+ffffffff81f09549 d .str.43.llvm.15455593456099979737
+ffffffff81f09ce2 d .str.22.llvm.16272367229996405802
+ffffffff81f0a1bb d __func__.nvdimm_pmem_region_create.llvm.3745560375144724132
+ffffffff81f0a7d3 d .str.1.llvm.6456291044925652906
+ffffffff81f0b3bd d .str.15.llvm.15815007461375656320
+ffffffff81f0b3bd d .str.94.llvm.11684466130282813119
+ffffffff81f0b3c1 d .str.87.llvm.15815007461375656320
+ffffffff81f0b3c8 d .str.89.llvm.15815007461375656320
+ffffffff81f0b3cf d .str.98.llvm.15815007461375656320
+ffffffff81f0b3d6 d .str.107.llvm.15815007461375656320
+ffffffff81f0b3de d .str.120.llvm.15815007461375656320
+ffffffff81f0b3e2 d .str.168.llvm.15815007461375656320
+ffffffff81f0b3e7 d .str.176.llvm.15815007461375656320
+ffffffff81f0b3f0 d .str.184.llvm.15815007461375656320
+ffffffff81f0b3f9 d .str.210.llvm.15815007461375656320
+ffffffff81f0b400 d .str.218.llvm.15815007461375656320
+ffffffff81f0b408 d .str.223.llvm.15815007461375656320
+ffffffff81f0b411 d .str.227.llvm.15815007461375656320
+ffffffff81f0b41d d .str.249.llvm.15815007461375656320
+ffffffff81f0b422 d .str.260.llvm.15815007461375656320
+ffffffff81f0b430 d .str.261.llvm.15815007461375656320
+ffffffff81f0b43e d .str.267.llvm.15815007461375656320
+ffffffff81f0b446 d .str.283.llvm.15815007461375656320
+ffffffff81f0b44f d .str.325.llvm.15815007461375656320
+ffffffff81f0c450 d .str.57.llvm.11684466130282813119
+ffffffff81f0c692 d .str.4.llvm.15997589376134285212
+ffffffff81f0c6a8 d .str.25.llvm.15997589376134285212
+ffffffff81f0c6c0 d .str.45.llvm.15997589376134285212
+ffffffff81f0c6cb d .str.85.llvm.15997589376134285212
+ffffffff81f0c6db d .str.106.llvm.15997589376134285212
+ffffffff81f0c6ee d .str.111.llvm.15997589376134285212
+ffffffff81f0c8f5 d .str.12.llvm.11684466130282813119
+ffffffff81f0c900 d .str.25.llvm.11684466130282813119
+ffffffff81f0d569 d .str.11.llvm.6889905807811859416
+ffffffff81f0d5a5 d .str.30.llvm.6459844342609514120
+ffffffff81f0d5ab d .str.39.llvm.6459844342609514120
+ffffffff81f0d5b6 d .str.67.llvm.6459844342609514120
+ffffffff81f0d5c7 d .str.80.llvm.6459844342609514120
+ffffffff81f0d5d0 d .str.106.llvm.6459844342609514120
+ffffffff81f0d5d7 d .str.149.llvm.6459844342609514120
+ffffffff81f0d5e4 d .str.165.llvm.6459844342609514120
+ffffffff81f0d5ef d .str.234.llvm.6459844342609514120
+ffffffff81f0d5fa d .str.241.llvm.6459844342609514120
+ffffffff81f0d605 d .str.259.llvm.6459844342609514120
+ffffffff81f0d610 d .str.278.llvm.6459844342609514120
+ffffffff81f0d787 d .str.1.llvm.11518183025837786690
+ffffffff81f0da1c d .str.31.llvm.15455593456099979737
+ffffffff81f0ef14 d __func__.net_ratelimit.llvm.18433283776638558961
+ffffffff81f0f768 d .str.2.llvm.14825141258248874121
+ffffffff81f0f801 d .str.27.llvm.15815007461375656320
+ffffffff81f0f801 d .str.4.llvm.10621589499033263881
+ffffffff81f0f804 d .str.28.llvm.15815007461375656320
+ffffffff81f0f809 d .str.74.llvm.15815007461375656320
+ffffffff81f0f80d d .str.147.llvm.15815007461375656320
+ffffffff81f0f811 d .str.154.llvm.15815007461375656320
+ffffffff81f0f816 d .str.182.llvm.15815007461375656320
+ffffffff81f0f81b d .str.224.llvm.15815007461375656320
+ffffffff81f0f825 d .str.292.llvm.15815007461375656320
+ffffffff81f0f830 d .str.303.llvm.15815007461375656320
+ffffffff81f0fd1e d .str.15.llvm.4730009062035096958
+ffffffff81f0fe74 d .str.1.llvm.320109332689821524
+ffffffff81f0ff81 d .str.llvm.6365581447571091167
+ffffffff81f10421 d .str.15.llvm.11684466130282813119
+ffffffff81f1079e d .str.2.llvm.3472032013727214394
+ffffffff81f107dc d .str.5.llvm.15997589376134285212
+ffffffff81f107f0 d .str.127.llvm.15997589376134285212
+ffffffff81f10803 d .str.143.llvm.15997589376134285212
+ffffffff81f1080e d .str.147.llvm.15997589376134285212
+ffffffff81f113cc d .str.46.llvm.6459844342609514120
+ffffffff81f113d5 d .str.58.llvm.6459844342609514120
+ffffffff81f113e2 d .str.64.llvm.6459844342609514120
+ffffffff81f113e9 d .str.68.llvm.6459844342609514120
+ffffffff81f113f7 d .str.100.llvm.6459844342609514120
+ffffffff81f113fd d .str.124.llvm.6459844342609514120
+ffffffff81f11406 d .str.135.llvm.6459844342609514120
+ffffffff81f11410 d .str.137.llvm.6459844342609514120
+ffffffff81f11415 d .str.157.llvm.6459844342609514120
+ffffffff81f11423 d .str.164.llvm.6459844342609514120
+ffffffff81f1142d d .str.186.llvm.6459844342609514120
+ffffffff81f11447 d .str.202.llvm.6459844342609514120
+ffffffff81f116ed d .str.10.llvm.15455593456099979737
+ffffffff81f12196 d .str.2.llvm.3745560375144724132
+ffffffff81f124ed d .str.10.llvm.14825141258248874121
+ffffffff81f124fc d .str.11.llvm.14825141258248874121
+ffffffff81f12501 d .str.20.llvm.14825141258248874121
+ffffffff81f133ae d .str.64.llvm.15815007461375656320
+ffffffff81f133b3 d .str.81.llvm.15815007461375656320
+ffffffff81f133b8 d .str.94.llvm.15815007461375656320
+ffffffff81f133bd d .str.101.llvm.15815007461375656320
+ffffffff81f133c2 d .str.199.llvm.15815007461375656320
+ffffffff81f133cb d .str.240.llvm.15815007461375656320
+ffffffff81f133d3 d .str.241.llvm.15815007461375656320
+ffffffff81f133e0 d .str.243.llvm.15815007461375656320
+ffffffff81f133e5 d .str.266.llvm.15815007461375656320
+ffffffff81f133ee d .str.289.llvm.15815007461375656320
+ffffffff81f13a80 d .str.23.llvm.15455593456099979737
+ffffffff81f13a9a d .str.2.llvm.6365581447571091167
+ffffffff81f1425d d .str.59.llvm.15997589376134285212
+ffffffff81f14264 d .str.123.llvm.15997589376134285212
+ffffffff81f1442b d .str.20.llvm.11684466130282813119
+ffffffff81f14e14 d .str.3.llvm.6459844342609514120
+ffffffff81f14e23 d .str.21.llvm.6459844342609514120
+ffffffff81f14e2a d .str.25.llvm.6459844342609514120
+ffffffff81f14e35 d .str.60.llvm.6459844342609514120
+ffffffff81f14e3c d .str.73.llvm.6459844342609514120
+ffffffff81f14e47 d .str.78.llvm.6459844342609514120
+ffffffff81f14e51 d .str.91.llvm.6459844342609514120
+ffffffff81f14e59 d .str.105.llvm.6459844342609514120
+ffffffff81f14e5e d .str.127.llvm.6459844342609514120
+ffffffff81f14e65 d .str.249.llvm.6459844342609514120
+ffffffff81f14e72 d .str.270.llvm.6459844342609514120
+ffffffff81f14e7e d .str.275.llvm.6459844342609514120
+ffffffff81f152ae d .str.17.llvm.15455593456099979737
+ffffffff81f15d39 d .str.22.llvm.17087584452155380504
+ffffffff81f160c5 d .str.19.llvm.14825141258248874121
+ffffffff81f1696c d .str.273.llvm.6459844342609514120
+ffffffff81f1696c d .str.llvm.6317896902096129061
+ffffffff81f16e53 d .str.11.llvm.15815007461375656320
+ffffffff81f16e58 d .str.32.llvm.15815007461375656320
+ffffffff81f16e5b d .str.51.llvm.15815007461375656320
+ffffffff81f16e60 d .str.70.llvm.15815007461375656320
+ffffffff81f16e68 d .str.75.llvm.15815007461375656320
+ffffffff81f16e6c d .str.138.llvm.15815007461375656320
+ffffffff81f16e73 d .str.163.llvm.15815007461375656320
+ffffffff81f16e77 d .str.166.llvm.15815007461375656320
+ffffffff81f16e7c d .str.200.llvm.15815007461375656320
+ffffffff81f16e88 d .str.205.llvm.15815007461375656320
+ffffffff81f16e91 d .str.212.llvm.15815007461375656320
+ffffffff81f16e96 d .str.214.llvm.15815007461375656320
+ffffffff81f16e9a d .str.239.llvm.15815007461375656320
+ffffffff81f17920 d .str.51.llvm.11684466130282813119
+ffffffff81f17929 d .str.68.llvm.11684466130282813119
+ffffffff81f17af0 d .str.31.llvm.15997589376134285212
+ffffffff81f17afe d .str.39.llvm.15997589376134285212
+ffffffff81f17b11 d .str.46.llvm.15997589376134285212
+ffffffff81f17b1c d .str.81.llvm.15997589376134285212
+ffffffff81f17b24 d .str.82.llvm.15997589376134285212
+ffffffff81f17bee d .str.27.llvm.11684466130282813119
+ffffffff81f17bf6 d .str.33.llvm.11684466130282813119
+ffffffff81f17c16 d .str.18.llvm.13943339852349955666
+ffffffff81f18870 d .str.5.llvm.6459844342609514120
+ffffffff81f1887c d .str.34.llvm.6459844342609514120
+ffffffff81f18887 d .str.253.llvm.6459844342609514120
+ffffffff81f18ae4 d .str.26.llvm.15455593456099979737
+ffffffff81f18fd5 d .str.21.llvm.16272367229996405802
+ffffffff81f19cde d .str.29.llvm.14825141258248874121
+ffffffff81f1aa33 d .str.17.llvm.15815007461375656320
+ffffffff81f1aa36 d .str.31.llvm.15815007461375656320
+ffffffff81f1aa39 d .str.105.llvm.15815007461375656320
+ffffffff81f1aa3d d .str.143.llvm.15815007461375656320
+ffffffff81f1aa41 d .str.180.llvm.15815007461375656320
+ffffffff81f1aa4c d .str.237.llvm.15815007461375656320
+ffffffff81f1aa51 d .str.250.llvm.15815007461375656320
+ffffffff81f1aa57 d .str.5.llvm.10621589499033263881
+ffffffff81f1b13e d .str.11.llvm.6365581447571091167
+ffffffff81f1b6b1 d .str.1.llvm.17658286127221970123
+ffffffff81f1b96a d .str.52.llvm.11684466130282813119
+ffffffff81f1bb2b d .str.14.llvm.15997589376134285212
+ffffffff81f1bb3c d .str.17.llvm.15997589376134285212
+ffffffff81f1bb4b d .str.60.llvm.15997589376134285212
+ffffffff81f1bb53 d .str.87.llvm.15997589376134285212
+ffffffff81f1bb61 d .str.109.llvm.15997589376134285212
+ffffffff81f1bb76 d .str.113.llvm.15997589376134285212
+ffffffff81f1bc9c d .str.28.llvm.11684466130282813119
+ffffffff81f1bca7 d .str.85.llvm.11684466130282813119
+ffffffff81f1bcaf d .str.98.llvm.11684466130282813119
+ffffffff81f1bfb0 d .str.85.llvm.6459844342609514120
+ffffffff81f1c596 d .str.llvm.9951385396472438532
+ffffffff81f1c69e d .str.llvm.6459844342609514120
+ffffffff81f1c6a7 d .str.74.llvm.6459844342609514120
+ffffffff81f1c6b1 d .str.86.llvm.6459844342609514120
+ffffffff81f1c6bd d .str.112.llvm.6459844342609514120
+ffffffff81f1c6c5 d .str.228.llvm.6459844342609514120
+ffffffff81f1c6ce d .str.239.llvm.6459844342609514120
+ffffffff81f1c6dc d .str.265.llvm.6459844342609514120
+ffffffff81f1c8b0 d .str.llvm.10247326344417715915
+ffffffff81f1c8bc d .str.6.llvm.10247326344417715915
+ffffffff81f1cdf3 d .str.10.llvm.767912732577205681
+ffffffff81f1e5d2 d .str.130.llvm.15815007461375656320
+ffffffff81f1ea0a d .str.3.llvm.14825141258248874121
+ffffffff81f1eaf3 d .str.131.llvm.15815007461375656320
+ffffffff81f1eaff d .str.137.llvm.15815007461375656320
+ffffffff81f1eb06 d .str.233.llvm.15815007461375656320
+ffffffff81f1eb0b d .str.277.llvm.15815007461375656320
+ffffffff81f1f335 d .str.152.llvm.6459844342609514120
+ffffffff81f1f875 d .str.70.llvm.11684466130282813119
+ffffffff81f2067b d .str.14.llvm.6459844342609514120
+ffffffff81f20683 d .str.52.llvm.6459844342609514120
+ffffffff81f2068e d .str.65.llvm.6459844342609514120
+ffffffff81f20696 d .str.77.llvm.6459844342609514120
+ffffffff81f206a0 d .str.103.llvm.6459844342609514120
+ffffffff81f206a7 d .str.108.llvm.6459844342609514120
+ffffffff81f206ae d .str.170.llvm.6459844342609514120
+ffffffff81f206b6 d .str.187.llvm.6459844342609514120
+ffffffff81f206cf d .str.233.llvm.6459844342609514120
+ffffffff81f206db d .str.262.llvm.6459844342609514120
+ffffffff81f212b6 d .str.16.llvm.16272367229996405802
+ffffffff81f21e8f d .str.2.llvm.7017826898535504183
+ffffffff81f22180 d str__initcall__trace_system_name
+ffffffff81f22189 d __param_str_initcall_debug
+ffffffff81f221a0 d linux_proc_banner
+ffffffff81f223e8 d mt_min_slots
+ffffffff81f223f0 d types
+ffffffff81f223f8 d mt_pivots
+ffffffff81f223fc d pirq_ite_set.pirqmap
+ffffffff81f22408 d levels
+ffffffff81f2240c d mt_slots
+ffffffff81f22410 d sys_call_table
+ffffffff81f23228 d _vdso_data_offset
+ffffffff81f23230 d vdso_mapping
+ffffffff81f23250 d vvar_mapping
+ffffffff81f23270 d vdso_image_64
+ffffffff81f23308 d str__vsyscall__trace_system_name
+ffffffff81f23318 d gate_vma_ops
+ffffffff81f233b0 d branch_map
+ffffffff81f233f0 d amd_f17h_perfmon_event_map
+ffffffff81f23440 d amd_perfmon_event_map
+ffffffff81f23490 d lbr_select_map
+ffffffff81f234f0 d string_get_size.divisor
+ffffffff81f234f8 d ref_rate
+ffffffff81f23500 d resource_string.mem_spec
+ffffffff81f23510 d ext4_filetype_table
+ffffffff81f23510 d ext4_filetype_table
+ffffffff81f23510 d fs_dtype_by_ftype
+ffffffff81f23518 d bcj_x86.mask_to_bit_num
+ffffffff81f23520 d resource_string.io_spec
+ffffffff81f23528 d resource_string.bus_spec
+ffffffff81f23530 d pci_default_type0
+ffffffff81f23550 d pebs_ucodes
+ffffffff81f23570 d isolation_ucodes
+ffffffff81f23660 d knc_perfmon_event_map
+ffffffff81f23690 d nhm_lbr_sel_map
+ffffffff81f236e0 d snb_lbr_sel_map
+ffffffff81f23730 d hsw_lbr_sel_map
+ffffffff81f23780 d arch_lbr_br_type_map
+ffffffff81f237c0 d p4_event_bind_map
+ffffffff81f23cd0 d p4_pebs_bind_map
+ffffffff81f23d20 d p4_escr_table
+ffffffff81f23e30 d p4_general_events
+ffffffff81f23e80 d p6_perfmon_event_map
+ffffffff81f23ec0 d pt_caps
+ffffffff81f24070 d pt_address_ranges
+ffffffff81f240d0 d __param_str_uncore_no_discover
+ffffffff81f240f0 d uncore_pmu_attr_group
+ffffffff81f24118 d nhmex_uncore_mbox_format_group
+ffffffff81f24140 d nhmex_uncore_mbox_extra_regs
+ffffffff81f24360 d nhmex_uncore_cbox_format_group
+ffffffff81f24388 d nhmex_uncore_ubox_format_group
+ffffffff81f243b0 d nhmex_uncore_bbox_format_group
+ffffffff81f243d8 d nhmex_uncore_sbox_format_group
+ffffffff81f24400 d nhmex_uncore_rbox_format_group
+ffffffff81f24428 d snb_uncore_format_group
+ffffffff81f24450 d adl_uncore_format_group
+ffffffff81f24480 d desktop_imc_pci_ids
+ffffffff81f247f0 d snb_uncore_pci_ids
+ffffffff81f24840 d ivb_uncore_pci_ids
+ffffffff81f248c0 d hsw_uncore_pci_ids
+ffffffff81f24940 d bdw_uncore_pci_ids
+ffffffff81f24990 d skl_uncore_pci_ids
+ffffffff81f250a0 d icl_uncore_pci_ids
+ffffffff81f25168 d snb_uncore_imc_format_group
+ffffffff81f25190 d nhm_uncore_format_group
+ffffffff81f251b8 d tgl_uncore_imc_format_group
+ffffffff81f251e0 d tgl_uncore_pci_ids
+ffffffff81f25c08 d adl_uncore_imc_format_group
+ffffffff81f25c58 d snbep_uncore_cbox_format_group
+ffffffff81f25c80 d snbep_uncore_cbox_extra_regs
+ffffffff81f25fa0 d snbep_uncore_ubox_format_group
+ffffffff81f25fc8 d snbep_uncore_pcu_format_group
+ffffffff81f25ff0 d snbep_uncore_format_group
+ffffffff81f26018 d snbep_uncore_qpi_format_group
+ffffffff81f26040 d snbep_uncore_pci_ids
+ffffffff81f26248 d ivbep_uncore_cbox_format_group
+ffffffff81f26270 d ivbep_uncore_cbox_extra_regs
+ffffffff81f26710 d ivbep_uncore_ubox_format_group
+ffffffff81f26738 d ivbep_uncore_pcu_format_group
+ffffffff81f26760 d ivbep_uncore_format_group
+ffffffff81f26788 d ivbep_uncore_qpi_format_group
+ffffffff81f267b0 d ivbep_uncore_pci_ids
+ffffffff81f26af8 d knl_uncore_ubox_format_group
+ffffffff81f26b20 d knl_uncore_cha_format_group
+ffffffff81f26b48 d knl_uncore_pcu_format_group
+ffffffff81f26b70 d knl_uncore_irp_format_group
+ffffffff81f26ba0 d knl_uncore_pci_ids
+ffffffff81f26fd8 d hswep_uncore_cbox_format_group
+ffffffff81f27000 d hswep_uncore_cbox_extra_regs
+ffffffff81f274c0 d hswep_uncore_sbox_format_group
+ffffffff81f274e8 d hswep_uncore_ubox_format_group
+ffffffff81f27510 d hswep_uncore_pci_ids
+ffffffff81f27860 d bdx_uncore_pci_ids
+ffffffff81f27bd0 d skx_uncore_chabox_format_group
+ffffffff81f27bf8 d skx_uncore_iio_format_group
+ffffffff81f27c20 d skx_uncore_iio_freerunning_format_group
+ffffffff81f27c48 d skx_uncore_format_group
+ffffffff81f27c70 d skx_upi_uncore_format_group
+ffffffff81f27ca0 d skx_uncore_pci_ids
+ffffffff81f27f98 d snr_uncore_chabox_format_group
+ffffffff81f27fc0 d snr_uncore_iio_format_group
+ffffffff81f27fe8 d snr_m2m_uncore_format_group
+ffffffff81f28010 d snr_uncore_pci_ids
+ffffffff81f28060 d snr_uncore_pci_sub_ids
+ffffffff81f280b0 d icx_upi_uncore_format_group
+ffffffff81f280e0 d icx_uncore_pci_ids
+ffffffff81f282a0 d spr_uncores
+ffffffff81f28300 d spr_uncore_chabox_format_group
+ffffffff81f28328 d uncore_alias_group
+ffffffff81f28350 d spr_uncore_raw_format_group
+ffffffff81f283a0 d generic_uncore_format_group
+ffffffff81f2843c d idt_invalidate.idt.llvm.10899630022259501595
+ffffffff81f28446 d str__irq_vectors__trace_system_name
+ffffffff81f28460 d exception_stack_names
+ffffffff81f284c0 d estack_pages
+ffffffff81f28578 d str__nmi__trace_system_name
+ffffffff81f2857c d mds_clear_cpu_buffers.ds
+ffffffff81f2857e d mds_clear_cpu_buffers.ds
+ffffffff81f28580 d mds_clear_cpu_buffers.ds
+ffffffff81f28582 d mds_clear_cpu_buffers.ds
+ffffffff81f28584 d mds_clear_cpu_buffers.ds
+ffffffff81f28586 d mds_clear_cpu_buffers.ds
+ffffffff81f28588 d mds_clear_cpu_buffers.ds
+ffffffff81f2858a d mds_clear_cpu_buffers.ds
+ffffffff81f28590 d boot_params_attr_group
+ffffffff81f285b8 d setup_data_attr_group
+ffffffff81f285e0 d x86nops.llvm.3163363374992690926
+ffffffff81f28610 d x86_nops
+ffffffff81f28660 d int3_emulate_jcc.jcc_mask
+ffffffff81f28690 d tsc_msr_cpu_ids
+ffffffff81f28750 d freq_desc_cht
+ffffffff81f28818 d freq_desc_lgm
+ffffffff81f288e0 d freq_desc_pnw
+ffffffff81f289a8 d freq_desc_clv
+ffffffff81f28a70 d freq_desc_byt
+ffffffff81f28b38 d freq_desc_tng
+ffffffff81f28c00 d freq_desc_ann
+ffffffff81f28cc8 d tramp_ud
+ffffffff81f28ccb d xor5rax
+ffffffff81f28cd0 d retinsn
+ffffffff81f28cd5 d str__x86_fpu__trace_system_name
+ffffffff81f28ce0 d xfeature_names
+ffffffff81f28d80 d xstate_prctl_req
+ffffffff81f28e20 d regoffset_table
+ffffffff81f28f80 d user_x86_64_view.llvm.12234077532480690771
+ffffffff81f29050 d cache_table
+ffffffff81f29180 d cpuid_bits
+ffffffff81f29298 d default_cpu
+ffffffff81f292e0 d ppin_cpuids
+ffffffff81f29420 d mds_strings
+ffffffff81f29440 d taa_strings
+ffffffff81f29460 d mmio_strings
+ffffffff81f29480 d srbds_strings
+ffffffff81f294b0 d spectre_v1_strings
+ffffffff81f294c0 d retbleed_strings
+ffffffff81f294f0 d spectre_v2_user_strings
+ffffffff81f29520 d spectre_v2_strings
+ffffffff81f29560 d ssb_strings
+ffffffff81f29580 d cpuid_deps
+ffffffff81f29758 d cpuinfo_op
+ffffffff81f29780 d x86_cap_flags
+ffffffff81f2ab80 d x86_bug_flags
+ffffffff81f2ac80 d x86_vmx_flags
+ffffffff81f2b180 d x86_power_flags
+ffffffff81f2b280 d intel_cpu_dev
+ffffffff81f2b2d0 d spectre_bad_microcodes
+ffffffff81f2b370 d intel_tlb_table
+ffffffff81f2c720 d intel_epb_normal
+ffffffff81f2c750 d intel_epb_attr_group
+ffffffff81f2c780 d energy_perf_strings
+ffffffff81f2c7b0 d energy_perf_strings
+ffffffff81f2c7e0 d amd_cpu_dev
+ffffffff81f2c830 d amd_erratum_400
+ffffffff81f2c840 d amd_erratum_383
+ffffffff81f2c84c d amd_erratum_1054
+ffffffff81f2c870 d hygon_cpu_dev
+ffffffff81f2c8b8 d centaur_cpu_dev
+ffffffff81f2c900 d zhaoxin_cpu_dev
+ffffffff81f2c970 d mtrr_strings
+ffffffff81f2c9a8 d mtrr_proc_ops
+ffffffff81f2ca00 d generic_mtrr_ops
+ffffffff81f2ca40 d pt_regoff
+ffffffff81f2ca80 d final_levels
+ffffffff81f2ca90 d pt_regs_offset
+ffffffff81f2caf0 d cpu_root_microcode_group
+ffffffff81f2cb18 d mc_attr_group
+ffffffff81f2cb40 d ucode_path
+ffffffff81f2cbf0 d intel_cod_cpu
+ffffffff81f2cc70 d __sysvec_error_interrupt.error_interrupt_reason
+ffffffff81f2ccb0 d multi_dmi_table
+ffffffff81f2cf60 d x86_vector_domain_ops
+ffffffff81f2cfb0 d mp_ioapic_irqdomain_ops
+ffffffff81f2d000 d kexec_file_loaders
+ffffffff81f2d010 d kexec_bzImage64_ops
+ffffffff81f2d028 d hpet_msi_domain_info
+ffffffff81f2d090 d amd_nb_misc_ids
+ffffffff81f2d400 d hygon_nb_misc_ids
+ffffffff81f2d450 d amd_nb_link_ids
+ffffffff81f2d700 d amd_root_ids
+ffffffff81f2d890 d hygon_root_ids
+ffffffff81f2d8e0 d hygon_nb_link_ids
+ffffffff81f2d940 d ioapic_irq_domain_ops
+ffffffff81f2d990 d of_ioapic_type
+ffffffff81f2d9c0 d default_xol_ops
+ffffffff81f2d9e0 d branch_xol_ops
+ffffffff81f2da00 d push_xol_ops
+ffffffff81f2da20 d umip_insns
+ffffffff81f2da48 d str__exceptions__trace_system_name
+ffffffff81f2da60 d errata93_warning
+ffffffff81f2db48 d fops_tlbflush
+ffffffff81f2dc60 d check_conflict.lvltxt
+ffffffff81f2dc78 d memtype_fops
+ffffffff81f2dd88 d memtype_seq_ops
+ffffffff81f2de48 d fops_init_pkru
+ffffffff81f2df60 d aesni_cpu_id
+ffffffff81f2dfd0 d module_cpu_ids
+ffffffff81f2e030 d pcmul_cpu_id
+ffffffff81f2e060 d efi_dummy_name
+ffffffff81f2e06c d str__task__trace_system_name
+ffffffff81f2e078 d pidfd_fops
+ffffffff81f2e208 d vma_init.dummy_vm_ops
+ffffffff81f2e298 d vma_init.dummy_vm_ops
+ffffffff81f2e330 d taint_flags
+ffffffff81f2e369 d __param_str_panic_print
+ffffffff81f2e375 d __param_str_pause_on_oops
+ffffffff81f2e383 d __param_str_panic_on_warn
+ffffffff81f2e3a0 d __param_str_crash_kexec_post_notifiers
+ffffffff81f2e3c0 d clear_warn_once_fops
+ffffffff81f2e4d6 d str__cpuhp__trace_system_name
+ffffffff81f2e4e0 d cpuhp_cpu_root_attr_group
+ffffffff81f2e508 d cpuhp_cpu_attr_group
+ffffffff81f2e530 d cpuhp_smt_attr_group
+ffffffff81f2e560 d smt_states
+ffffffff81f2e588 d cpu_all_bits
+ffffffff81f2e590 d cpu_bit_bitmap
+ffffffff81f2e7a0 d softirq_to_name
+ffffffff81f2e800 d trace_raw_output_softirq.symbols
+ffffffff81f2e8b0 d resource_op
+ffffffff81f2e8d0 d sysctl_long_vals
+ffffffff81f2e8eb d proc_wspace_sep
+ffffffff81f2e8f0 d ngroups_max
+ffffffff81f2e8f4 d cap_last_cap
+ffffffff81f2e8f8 d six_hundred_forty_kb
+ffffffff81f2e900 d sysctl_vals
+ffffffff81f2e930 d __cap_empty_set
+ffffffff81f2e938 d str__signal__trace_system_name
+ffffffff81f2e940 d sig_sicodes
+ffffffff81f2e990 d __param_str_disable_numa
+ffffffff81f2e9b0 d __param_str_power_efficient
+ffffffff81f2e9d0 d __param_str_debug_force_rr_cpu
+ffffffff81f2e9f0 d __param_str_watchdog_thresh
+ffffffff81f2ea10 d wq_watchdog_thresh_ops
+ffffffff81f2ea40 d wq_sysfs_group
+ffffffff81f2ea68 d param_ops_byte
+ffffffff81f2ea88 d param_ops_short
+ffffffff81f2eaa8 d param_ops_ushort
+ffffffff81f2eac8 d param_ops_int
+ffffffff81f2eae8 d param_ops_uint
+ffffffff81f2eb08 d param_ops_long
+ffffffff81f2eb28 d param_ops_ulong
+ffffffff81f2eb48 d param_ops_ullong
+ffffffff81f2eb68 d param_ops_hexint
+ffffffff81f2eb88 d param_ops_charp
+ffffffff81f2eba8 d param_ops_bool
+ffffffff81f2ebc8 d param_ops_bool_enable_only
+ffffffff81f2ebe8 d param_ops_invbool
+ffffffff81f2ec08 d param_ops_bint
+ffffffff81f2ec28 d param_array_ops
+ffffffff81f2ec48 d param_ops_string
+ffffffff81f2ec68 d module_sysfs_ops
+ffffffff81f2ec78 d module_uevent_ops
+ffffffff81f2ec90 d kthread.param
+ffffffff81f2ec98 d kernel_attr_group
+ffffffff81f2ecc0 d reboot_cmd
+ffffffff81f2ecd0 d reboot_attr_group
+ffffffff81f2ed20 d str__sched__trace_system_name
+ffffffff81f2ed30 d trace_raw_output_sched_switch.__flags
+ffffffff81f2ede0 d sched_prio_to_weight
+ffffffff81f2ee80 d sched_prio_to_wmult
+ffffffff81f2ef90 d runnable_avg_yN_inv
+ffffffff81f2f010 d sched_feat_names
+ffffffff81f2f0e0 d sd_flag_debug
+ffffffff81f2f1c0 d sugov_group
+ffffffff81f2f1e8 d sched_feat_fops
+ffffffff81f2f2f8 d sched_dynamic_fops
+ffffffff81f2f408 d sched_scaling_fops
+ffffffff81f2f518 d sched_debug_fops
+ffffffff81f2f628 d sched_debug_sops
+ffffffff81f2f648 d sd_flags_fops
+ffffffff81f2f760 d sched_tunable_scaling_names
+ffffffff81f2f778 d schedstat_sops
+ffffffff81f2f798 d psi_io_proc_ops
+ffffffff81f2f7f0 d psi_memory_proc_ops
+ffffffff81f2f848 d psi_cpu_proc_ops
+ffffffff81f2f8a0 d psi_irq_proc_ops
+ffffffff81f2f8f8 d str__lock__trace_system_name
+ffffffff81f2f900 d trace_raw_output_contention_begin.__flags
+ffffffff81f2f970 d cpu_latency_qos_fops
+ffffffff81f2fa80 d suspend_stats_fops
+ffffffff81f2fb90 d attr_group
+ffffffff81f2fbb8 d suspend_attr_group
+ffffffff81f2fc20 d pm_labels
+ffffffff81f2fc40 d mem_sleep_labels
+ffffffff81f2fc60 d sysrq_poweroff_op
+ffffffff81f2fc80 d str__printk__trace_system_name
+ffffffff81f2fc88 d kmsg_fops
+ffffffff81f2fda0 d __param_str_ignore_loglevel
+ffffffff81f2fdb7 d __param_str_time
+ffffffff81f2fdd0 d __param_str_console_suspend
+ffffffff81f2fdf0 d __param_str_console_no_auto_verbose
+ffffffff81f2fe10 d __param_str_always_kmsg_dump
+ffffffff81f2fe48 d ten_thousand
+ffffffff81f2fe50 d irq_group
+ffffffff81f2fe80 d __param_str_noirqdebug
+ffffffff81f2fea0 d __param_str_irqfixup
+ffffffff81f2feb8 d irqchip_fwnode_ops
+ffffffff81f2ff68 d irq_domain_simple_ops
+ffffffff81f2ffb8 d irq_affinity_proc_ops
+ffffffff81f30010 d irq_affinity_list_proc_ops
+ffffffff81f30068 d default_affinity_proc_ops
+ffffffff81f300c0 d msi_domain_ops
+ffffffff81f30110 d msi_irqs_group
+ffffffff81f30138 d str__irq_matrix__trace_system_name
+ffffffff81f30143 d str__rcu__trace_system_name
+ffffffff81f30150 d __param_str_rcu_expedited
+ffffffff81f30170 d __param_str_rcu_normal
+ffffffff81f30190 d __param_str_rcu_normal_after_boot
+ffffffff81f301b0 d __param_str_rcu_cpu_stall_ftrace_dump
+ffffffff81f301e0 d __param_str_rcu_cpu_stall_suppress
+ffffffff81f30200 d __param_str_rcu_cpu_stall_timeout
+ffffffff81f30220 d __param_str_rcu_exp_cpu_stall_timeout
+ffffffff81f30250 d __param_str_rcu_cpu_stall_suppress_at_boot
+ffffffff81f30280 d __param_str_rcu_task_ipi_delay
+ffffffff81f302a0 d __param_str_rcu_task_stall_timeout
+ffffffff81f302c0 d __param_str_rcu_task_stall_info
+ffffffff81f302e0 d __param_str_rcu_task_stall_info_mult
+ffffffff81f30310 d __param_str_rcu_task_enqueue_lim
+ffffffff81f30330 d __param_str_rcu_task_contend_lim
+ffffffff81f30350 d __param_str_rcu_task_collapse_lim
+ffffffff81f30370 d rcu_tasks_gp_state_names
+ffffffff81f303d0 d __param_str_exp_holdoff
+ffffffff81f303f0 d __param_str_counter_wrap_check
+ffffffff81f30410 d __param_str_convert_to_big
+ffffffff81f30430 d __param_str_big_cpu_lim
+ffffffff81f30450 d __param_str_small_contention_lim
+ffffffff81f30470 d __param_str_srcu_retry_check_delay
+ffffffff81f30490 d __param_str_srcu_max_nodelay_phase
+ffffffff81f304b0 d __param_str_srcu_max_nodelay
+ffffffff81f304d0 d srcu_size_state_name
+ffffffff81f30520 d __param_str_dump_tree
+ffffffff81f30540 d __param_str_use_softirq
+ffffffff81f30560 d __param_str_rcu_fanout_exact
+ffffffff81f30580 d __param_str_rcu_fanout_leaf
+ffffffff81f305a0 d __param_str_kthread_prio
+ffffffff81f305c0 d __param_str_gp_preinit_delay
+ffffffff81f305e0 d __param_str_gp_init_delay
+ffffffff81f30600 d __param_str_gp_cleanup_delay
+ffffffff81f30620 d __param_str_rcu_min_cached_objs
+ffffffff81f30640 d __param_str_rcu_delay_page_cache_fill_msec
+ffffffff81f30667 d __param_str_blimit
+ffffffff81f30680 d __param_str_qhimark
+ffffffff81f30690 d __param_str_qlowmark
+ffffffff81f306a1 d __param_str_qovld
+ffffffff81f306b0 d __param_str_rcu_divisor
+ffffffff81f306d0 d __param_str_rcu_resched_ns
+ffffffff81f306f0 d __param_str_jiffies_till_sched_qs
+ffffffff81f30710 d __param_str_jiffies_to_sched_qs
+ffffffff81f30730 d __param_str_jiffies_till_first_fqs
+ffffffff81f30750 d first_fqs_jiffies_ops
+ffffffff81f30770 d __param_str_jiffies_till_next_fqs
+ffffffff81f30790 d next_fqs_jiffies_ops
+ffffffff81f307b0 d __param_str_rcu_kick_kthreads
+ffffffff81f307d0 d __param_str_sysrq_rcu
+ffffffff81f307f0 d __param_str_nocb_nobypass_lim_per_jiffy
+ffffffff81f30820 d __param_str_rcu_nocb_gp_stride
+ffffffff81f30840 d gp_state_names
+ffffffff81f30888 d sysrq_rcudump_op
+ffffffff81f308a8 d dma_dummy_ops
+ffffffff81f30998 d fops_io_tlb_used
+ffffffff81f30aa8 d str__raw_syscalls__trace_system_name
+ffffffff81f30ab5 d str__module__trace_system_name
+ffffffff81f30abc d __param_str_nomodule
+ffffffff81f30ad0 d find_symbol.arr
+ffffffff81f30b10 d __param_str_module_blacklist
+ffffffff81f30b30 d __param_str_async_probe
+ffffffff81f30b50 d trace_raw_output_module_load.__flags
+ffffffff81f30bb0 d vermagic
+ffffffff81f30bf0 d layout_sections.masks
+ffffffff81f30c58 d modules_proc_ops
+ffffffff81f30cb0 d modules_op
+ffffffff81f30cd0 d profile_setup.schedstr
+ffffffff81f30cd9 d profile_setup.sleepstr
+ffffffff81f30cdf d profile_setup.kvmstr
+ffffffff81f30ce8 d prof_cpu_mask_proc_ops
+ffffffff81f30d40 d profile_proc_ops
+ffffffff81f30db0 d trace_raw_output_timer_start.__flags
+ffffffff81f30e00 d trace_raw_output_hrtimer_init.symbols
+ffffffff81f30e50 d trace_raw_output_hrtimer_init.symbols.40
+ffffffff81f30ee0 d trace_raw_output_hrtimer_start.symbols
+ffffffff81f30f70 d trace_raw_output_tick_stop.symbols
+ffffffff81f30fe0 d hrtimer_clock_to_base_table
+ffffffff81f31020 d offsets
+ffffffff81f31040 d __param_str_max_cswd_read_retries
+ffffffff81f31070 d __param_str_verify_n_cpus
+ffffffff81f31090 d clocksource_group
+ffffffff81f310b8 d timer_list_sops
+ffffffff81f310d8 d alarm_clock
+ffffffff81f31160 d trace_raw_output_alarmtimer_suspend.__flags
+ffffffff81f311b0 d trace_raw_output_alarm_class.__flags
+ffffffff81f31210 d alarmtimer_pm_ops
+ffffffff81f312d0 d posix_clocks
+ffffffff81f31330 d clock_realtime
+ffffffff81f313b0 d clock_monotonic
+ffffffff81f31430 d clock_monotonic_raw
+ffffffff81f314b0 d clock_realtime_coarse
+ffffffff81f31530 d clock_monotonic_coarse
+ffffffff81f315b0 d clock_boottime
+ffffffff81f31630 d clock_tai
+ffffffff81f316b0 d clock_posix_cpu
+ffffffff81f31730 d clock_process
+ffffffff81f317b0 d clock_thread
+ffffffff81f31830 d posix_clock_file_operations
+ffffffff81f31940 d clock_posix_dynamic
+ffffffff81f319c0 d tk_debug_sleep_time_fops
+ffffffff81f31ad0 d futex_q_init
+ffffffff81f31b40 d kallsyms_proc_ops
+ffffffff81f31b98 d kallsyms_op
+ffffffff81f31bc0 d cgroup_subsys_enabled_key
+ffffffff81f31c00 d cgroup_subsys_on_dfl_key
+ffffffff81f31c40 d cgroup_subsys_name
+ffffffff81f31c78 d cgroup_fs_context_ops
+ffffffff81f31ca8 d cgroup1_fs_context_ops
+ffffffff81f31ce0 d cgroup2_fs_parameters
+ffffffff81f31d80 d cpuset_fs_context_ops
+ffffffff81f31db0 d cgroup_sysfs_attr_group
+ffffffff81f31dd8 d cgroupns_operations
+ffffffff81f31e20 d cgroup1_fs_parameters
+ffffffff81f31f80 d perr_strings
+ffffffff81f31ff0 d audit_feature_names
+ffffffff81f32030 d audit_nfcfgs
+ffffffff81f32170 d audit_log_time.ntp_name
+ffffffff81f321c0 d audit_watch_fsnotify_ops
+ffffffff81f321f0 d audit_mark_fsnotify_ops
+ffffffff81f32220 d audit_tree_ops
+ffffffff81f32250 d hung_task_timeout_max
+ffffffff81f32258 d sixty
+ffffffff81f32260 d seccomp_notify_ops
+ffffffff81f32380 d seccomp_actions_avail
+ffffffff81f323c0 d seccomp_log_names
+ffffffff81f32450 d taskstats_ops
+ffffffff81f324c0 d taskstats_cmd_get_policy
+ffffffff81f32510 d cgroupstats_cmd_get_policy
+ffffffff81f32530 d trace_clocks
+ffffffff81f32620 d trace_min_max_fops
+ffffffff81f32730 d print_func_help_header_irq.space
+ffffffff81f32740 d trace_options_fops
+ffffffff81f32850 d show_traces_fops
+ffffffff81f32960 d set_tracer_fops
+ffffffff81f32a70 d tracing_cpumask_fops
+ffffffff81f32b80 d tracing_iter_fops
+ffffffff81f32c90 d tracing_fops
+ffffffff81f32da0 d tracing_pipe_fops
+ffffffff81f32eb0 d tracing_entries_fops
+ffffffff81f32fc0 d tracing_total_entries_fops
+ffffffff81f330d0 d tracing_free_buffer_fops
+ffffffff81f331e0 d tracing_mark_fops
+ffffffff81f332f0 d tracing_mark_raw_fops
+ffffffff81f33400 d trace_clock_fops
+ffffffff81f33510 d rb_simple_fops
+ffffffff81f33620 d trace_time_stamp_mode_fops
+ffffffff81f33730 d buffer_percent_fops
+ffffffff81f33840 d tracing_err_log_fops
+ffffffff81f33950 d show_traces_seq_ops
+ffffffff81f33970 d tracer_seq_ops
+ffffffff81f33990 d trace_options_core_fops
+ffffffff81f33aa0 d tracing_err_log_seq_ops
+ffffffff81f33ac0 d tracing_buffers_fops
+ffffffff81f33bd0 d tracing_stats_fops
+ffffffff81f33ce0 d buffer_pipe_buf_ops
+ffffffff81f33d00 d tracing_thresh_fops
+ffffffff81f33e10 d tracing_readme_fops
+ffffffff81f33f20 d tracing_saved_cmdlines_fops
+ffffffff81f34030 d tracing_saved_cmdlines_size_fops
+ffffffff81f34140 d tracing_saved_tgids_fops
+ffffffff81f34250 d readme_msg
+ffffffff81f366c8 d tracing_saved_cmdlines_seq_ops
+ffffffff81f366e8 d tracing_saved_tgids_seq_ops
+ffffffff81f36710 d mark
+ffffffff81f36770 d tracing_stat_fops
+ffffffff81f36880 d trace_stat_seq_ops
+ffffffff81f368a0 d ftrace_formats_fops
+ffffffff81f369b0 d show_format_seq_ops
+ffffffff81f369d0 d ftrace_avail_fops
+ffffffff81f36ae0 d ftrace_enable_fops
+ffffffff81f36bf0 d ftrace_event_id_fops
+ffffffff81f36d00 d ftrace_event_filter_fops
+ffffffff81f36e10 d ftrace_event_format_fops
+ffffffff81f36f20 d ftrace_subsystem_filter_fops
+ffffffff81f37030 d ftrace_system_enable_fops
+ffffffff81f37140 d trace_format_seq_ops
+ffffffff81f37160 d ftrace_set_event_fops
+ffffffff81f37270 d ftrace_tr_enable_fops
+ffffffff81f37380 d ftrace_set_event_pid_fops
+ffffffff81f37490 d ftrace_set_event_notrace_pid_fops
+ffffffff81f375a0 d ftrace_show_header_fops
+ffffffff81f376b0 d show_set_event_seq_ops
+ffffffff81f376d0 d show_set_pid_seq_ops
+ffffffff81f376f0 d show_set_no_pid_seq_ops
+ffffffff81f37710 d show_event_seq_ops
+ffffffff81f37750 d event_triggers_seq_ops
+ffffffff81f37770 d event_trigger_fops
+ffffffff81f37ad0 d synth_events_fops
+ffffffff81f37be0 d synth_events_seq_op
+ffffffff81f37c00 d event_hist_fops
+ffffffff81f37d10 d hist_trigger_elt_data_ops
+ffffffff81f37d30 d no_comm
+ffffffff81f37d50 d str__error_report__trace_system_name
+ffffffff81f37d60 d trace_raw_output_error_report_template.symbols
+ffffffff81f37da0 d str__power__trace_system_name
+ffffffff81f37db0 d trace_raw_output_device_pm_callback_start.symbols
+ffffffff81f37e40 d trace_raw_output_pm_qos_update.symbols
+ffffffff81f37e80 d trace_raw_output_pm_qos_update_flags.symbols
+ffffffff81f37ec0 d trace_raw_output_dev_pm_qos_request.symbols
+ffffffff81f37ef0 d str__rpm__trace_system_name
+ffffffff81f37ef8 d dynamic_events_ops
+ffffffff81f38008 d dyn_event_seq_op
+ffffffff81f38028 d print_type_format_u8
+ffffffff81f3802b d print_type_format_u16
+ffffffff81f3802e d print_type_format_u32
+ffffffff81f38031 d print_type_format_u64
+ffffffff81f38035 d print_type_format_s8
+ffffffff81f38038 d print_type_format_s16
+ffffffff81f3803b d print_type_format_s32
+ffffffff81f3803e d print_type_format_s64
+ffffffff81f38042 d print_type_format_x8
+ffffffff81f38047 d print_type_format_x16
+ffffffff81f3804c d print_type_format_x32
+ffffffff81f38051 d print_type_format_x64
+ffffffff81f38057 d print_type_format_symbol
+ffffffff81f3805b d print_type_format_string
+ffffffff81f38070 d probe_fetch_types
+ffffffff81f383e0 d uprobe_events_ops
+ffffffff81f384f0 d uprobe_profile_ops
+ffffffff81f38600 d probes_seq_op
+ffffffff81f38620 d profile_seq_op
+ffffffff81f38640 d bpf_opcode_in_insntable.public_insntable
+ffffffff81f38740 d interpreters_args
+ffffffff81f387c0 d bpf_tail_call_proto
+ffffffff81f38820 d str__xdp__trace_system_name
+ffffffff81f38828 d bpf_map_lookup_elem_proto
+ffffffff81f38888 d bpf_map_update_elem_proto
+ffffffff81f388e8 d bpf_map_delete_elem_proto
+ffffffff81f38948 d bpf_map_push_elem_proto
+ffffffff81f389a8 d bpf_map_pop_elem_proto
+ffffffff81f38a08 d bpf_map_peek_elem_proto
+ffffffff81f38a68 d bpf_map_lookup_percpu_elem_proto
+ffffffff81f38ac8 d bpf_spin_lock_proto
+ffffffff81f38b28 d bpf_spin_unlock_proto
+ffffffff81f38b88 d bpf_jiffies64_proto
+ffffffff81f38be8 d bpf_get_prandom_u32_proto
+ffffffff81f38c48 d bpf_get_smp_processor_id_proto
+ffffffff81f38ca8 d bpf_get_numa_node_id_proto
+ffffffff81f38d08 d bpf_ktime_get_ns_proto
+ffffffff81f38d68 d bpf_ktime_get_boot_ns_proto
+ffffffff81f38dc8 d bpf_ktime_get_coarse_ns_proto
+ffffffff81f38e28 d bpf_ktime_get_tai_ns_proto
+ffffffff81f38e88 d bpf_get_current_pid_tgid_proto
+ffffffff81f38ee8 d bpf_get_current_uid_gid_proto
+ffffffff81f38f48 d bpf_get_current_comm_proto
+ffffffff81f38fa8 d bpf_get_current_cgroup_id_proto
+ffffffff81f39008 d bpf_get_current_ancestor_cgroup_id_proto
+ffffffff81f39068 d bpf_get_local_storage_proto
+ffffffff81f390c8 d bpf_get_ns_current_pid_tgid_proto
+ffffffff81f39128 d bpf_snprintf_btf_proto
+ffffffff81f39188 d bpf_seq_printf_btf_proto
+ffffffff81f391e8 d bpf_set_retval_proto
+ffffffff81f39248 d bpf_get_retval_proto
+ffffffff81f392b0 d ___bpf_prog_run.jumptable
+ffffffff81f39ab0 d interpreters
+ffffffff81f39b30 d trace_raw_output_xdp_exception.symbols
+ffffffff81f39ba0 d trace_raw_output_xdp_bulk_tx.symbols
+ffffffff81f39c10 d trace_raw_output_xdp_redirect_template.symbols
+ffffffff81f39c80 d trace_raw_output_xdp_cpumap_kthread.symbols
+ffffffff81f39cf0 d trace_raw_output_xdp_cpumap_enqueue.symbols
+ffffffff81f39d60 d trace_raw_output_xdp_devmap_xmit.symbols
+ffffffff81f39dd0 d trace_raw_output_mem_disconnect.symbols
+ffffffff81f39e30 d trace_raw_output_mem_connect.symbols
+ffffffff81f39e90 d trace_raw_output_mem_return_failed.symbols
+ffffffff81f39ef0 d perf_fops
+ffffffff81f3a000 d pmu_dev_group
+ffffffff81f3a028 d perf_event_parse_addr_filter.actions
+ffffffff81f3a040 d if_tokens
+ffffffff81f3a0c0 d perf_mmap_vmops
+ffffffff81f3a150 d task_bps_ht_params
+ffffffff81f3a17d d str__filemap__trace_system_name
+ffffffff81f3a188 d generic_file_vm_ops
+ffffffff81f3a218 d str__oom__trace_system_name
+ffffffff81f3a220 d trace_raw_output_reclaim_retry_zone.symbols
+ffffffff81f3a270 d trace_raw_output_compact_retry.symbols
+ffffffff81f3a2b0 d trace_raw_output_compact_retry.symbols.59
+ffffffff81f3a2f0 d oom_constraint_text
+ffffffff81f3a388 d dirty_bytes_min
+ffffffff81f3a390 d str__pagemap__trace_system_name
+ffffffff81f3a398 d str__vmscan__trace_system_name
+ffffffff81f3a3a0 d trace_raw_output_mm_vmscan_wakeup_kswapd.__flags
+ffffffff81f3a5f0 d trace_raw_output_mm_vmscan_direct_reclaim_begin_template.__flags
+ffffffff81f3a840 d trace_raw_output_mm_shrink_slab_start.__flags
+ffffffff81f3aa90 d trace_raw_output_mm_vmscan_lru_isolate.symbols
+ffffffff81f3aaf0 d trace_raw_output_mm_vmscan_write_folio.__flags
+ffffffff81f3ab50 d trace_raw_output_mm_vmscan_lru_shrink_inactive.__flags
+ffffffff81f3abb0 d trace_raw_output_mm_vmscan_lru_shrink_active.__flags
+ffffffff81f3ac10 d trace_raw_output_mm_vmscan_node_reclaim_begin.__flags
+ffffffff81f3ae60 d trace_raw_output_mm_vmscan_throttled.__flags
+ffffffff81f3aeb0 d lru_gen_rw_fops
+ffffffff81f3afc0 d lru_gen_ro_fops
+ffffffff81f3b0d0 d walk_mm.mm_walk_ops
+ffffffff81f3b120 d lru_gen_seq_ops
+ffffffff81f3b140 d shmem_vm_ops.llvm.12035218767219187336
+ffffffff81f3b1d0 d shmem_param_enums_huge
+ffffffff81f3b220 d shmem_fs_parameters
+ffffffff81f3b380 d shmem_fs_context_ops
+ffffffff81f3b3b0 d shmem_export_ops
+ffffffff81f3b408 d shmem_ops
+ffffffff81f3b4b8 d shmem_security_xattr_handler
+ffffffff81f3b4e8 d shmem_trusted_xattr_handler
+ffffffff81f3b540 d shmem_special_inode_operations
+ffffffff81f3b600 d shmem_inode_operations
+ffffffff81f3b6c0 d shmem_file_operations
+ffffffff81f3b800 d shmem_dir_inode_operations
+ffffffff81f3b8c0 d shmem_short_symlink_operations
+ffffffff81f3b980 d shmem_symlink_inode_operations
+ffffffff81f3ba40 d shmem_aops
+ffffffff81f3bae0 d vmstat_text
+ffffffff81f3bf88 d fragmentation_op
+ffffffff81f3bfa8 d pagetypeinfo_op
+ffffffff81f3bfc8 d vmstat_op
+ffffffff81f3bfe8 d zoneinfo_op
+ffffffff81f3c008 d unusable_fops
+ffffffff81f3c118 d extfrag_fops
+ffffffff81f3c228 d unusable_sops
+ffffffff81f3c248 d extfrag_sops
+ffffffff81f3c268 d bdi_dev_group
+ffffffff81f3c290 d bdi_debug_stats_fops
+ffffffff81f3c3a0 d str__percpu__trace_system_name
+ffffffff81f3c3b0 d trace_raw_output_percpu_alloc_percpu.__flags
+ffffffff81f3c600 d str__kmem__trace_system_name
+ffffffff81f3c610 d trace_raw_output_kmem_cache_alloc.__flags
+ffffffff81f3c860 d trace_raw_output_kmalloc.__flags
+ffffffff81f3cab0 d trace_raw_output_mm_page_alloc.__flags
+ffffffff81f3cd00 d trace_raw_output_rss_stat.symbols
+ffffffff81f3cd50 d slabinfo_proc_ops
+ffffffff81f3cda8 d slabinfo_op
+ffffffff81f3cdc8 d str__compaction__trace_system_name
+ffffffff81f3cde0 d trace_raw_output_mm_compaction_end.symbols
+ffffffff81f3ce80 d trace_raw_output_mm_compaction_try_to_compact_pages.__flags
+ffffffff81f3d0d0 d trace_raw_output_mm_compaction_suitable_template.symbols
+ffffffff81f3d120 d trace_raw_output_mm_compaction_suitable_template.symbols.103
+ffffffff81f3d1c0 d trace_raw_output_mm_compaction_defer_template.symbols
+ffffffff81f3d210 d trace_raw_output_kcompactd_wake_template.symbols
+ffffffff81f3d260 d pageflag_names
+ffffffff81f3d410 d gfpflag_names
+ffffffff81f3d660 d vmaflag_names
+ffffffff81f3d878 d str__mmap_lock__trace_system_name
+ffffffff81f3d888 d fault_around_bytes_fops
+ffffffff81f3d998 d mincore_walk_ops
+ffffffff81f3d9e8 d mlock_vma_pages_range.mlock_walk_ops
+ffffffff81f3da38 d str__mmap__trace_system_name
+ffffffff81f3da40 d mmap_rnd_bits_min
+ffffffff81f3da44 d mmap_rnd_bits_max
+ffffffff81f3da50 d __param_str_ignore_rlimit_data
+ffffffff81f3da68 d special_mapping_vmops.llvm.7774975967370580042
+ffffffff81f3daf8 d legacy_special_mapping_vmops
+ffffffff81f3db88 d prot_none_walk_ops
+ffffffff81f3dbd8 d str__tlb__trace_system_name
+ffffffff81f3dbdc d str__migrate__trace_system_name
+ffffffff81f3dbf0 d trace_raw_output_tlb_flush.symbols
+ffffffff81f3dc50 d trace_raw_output_mm_migrate_pages.symbols
+ffffffff81f3dc90 d trace_raw_output_mm_migrate_pages.symbols.38
+ffffffff81f3dd30 d trace_raw_output_mm_migrate_pages_start.symbols
+ffffffff81f3dd70 d trace_raw_output_mm_migrate_pages_start.symbols.49
+ffffffff81f3de10 d vmalloc_op
+ffffffff81f3de30 d compound_page_dtors
+ffffffff81f3de50 d fallbacks
+ffffffff81f3de90 d zone_names
+ffffffff81f3deb0 d migratetype_names
+ffffffff81f3dee0 d __param_str_shuffle
+ffffffff81f3def8 d shuffle_param_ops
+ffffffff81f3df20 d __param_str_memmap_on_memory
+ffffffff81f3df40 d __param_str_online_policy
+ffffffff81f3df60 d online_policy_ops
+ffffffff81f3df80 d __param_str_auto_movable_ratio
+ffffffff81f3dfb0 d online_policy_to_str
+ffffffff81f3dfc0 d swapin_walk_ops
+ffffffff81f3e010 d cold_walk_ops
+ffffffff81f3e060 d madvise_free_walk_ops
+ffffffff81f3e0b0 d swap_aops
+ffffffff81f3e150 d swap_attr_group
+ffffffff81f3e180 d Bad_file
+ffffffff81f3e1a0 d Bad_offset
+ffffffff81f3e1c0 d Unused_offset
+ffffffff81f3e1e0 d Unused_file
+ffffffff81f3e1f8 d swaps_proc_ops
+ffffffff81f3e250 d swaps_op
+ffffffff81f3e270 d slab_attr_group
+ffffffff81f3e298 d slab_sysfs_ops
+ffffffff81f3e2a8 d slab_debugfs_fops
+ffffffff81f3e3b8 d slab_debugfs_sops
+ffffffff81f3e3e0 d __param_str_sample_interval
+ffffffff81f3e400 d __param_str_sample_interval
+ffffffff81f3e420 d sample_interval_param_ops
+ffffffff81f3e440 d __param_str_skip_covered_thresh
+ffffffff81f3e460 d __param_str_deferrable
+ffffffff81f3e480 d __param_str_check_on_panic
+ffffffff81f3e498 d stats_fops
+ffffffff81f3e5a8 d objects_fops
+ffffffff81f3e6b8 d objects_sops
+ffffffff81f3e6d8 d str__thp__trace_system_name
+ffffffff81f3e6e0 d hugepage_attr_group
+ffffffff81f3e708 d split_huge_pages_fops
+ffffffff81f3e818 d str__huge_memory__trace_system_name
+ffffffff81f3e830 d trace_raw_output_mm_khugepaged_scan_pmd.symbols
+ffffffff81f3ea10 d trace_raw_output_mm_collapse_huge_page.symbols
+ffffffff81f3ebf0 d trace_raw_output_mm_collapse_huge_page_isolate.symbols
+ffffffff81f3edd0 d trace_raw_output_mm_khugepaged_scan_file.symbols
+ffffffff81f3efe0 d memory_stats
+ffffffff81f3f1d0 d memcg_vm_event_stat
+ffffffff81f3f210 d precharge_walk_ops
+ffffffff81f3f260 d charge_walk_ops
+ffffffff81f3f2b0 d memcg1_stats
+ffffffff81f3f2e0 d memcg1_stat_names
+ffffffff81f3f330 d vmpressure_str_levels
+ffffffff81f3f350 d vmpressure_str_modes
+ffffffff81f3f368 d proc_page_owner_operations
+ffffffff81f3f478 d str__page_isolation__trace_system_name
+ffffffff81f3f488 d zsmalloc_mops
+ffffffff81f3f4a0 d balloon_mops
+ffffffff81f3f4c0 d __param_str_enable
+ffffffff81f3f4d8 d secretmem_vm_ops.llvm.2221581575700271655
+ffffffff81f3f568 d secretmem_aops
+ffffffff81f3f608 d secretmem_fops
+ffffffff81f3f740 d secretmem_iops
+ffffffff81f3f800 d str__damon__trace_system_name
+ffffffff81f3f890 d __param_str_commit_inputs
+ffffffff81f3f8b0 d __param_str_min_age
+ffffffff81f3f8d0 d __param_str_quota_ms
+ffffffff81f3f8f0 d __param_str_quota_reset_interval_ms
+ffffffff81f3f920 d __param_str_quota_sz
+ffffffff81f3f940 d __param_str_wmarks_interval
+ffffffff81f3f960 d __param_str_wmarks_high
+ffffffff81f3f980 d __param_str_wmarks_mid
+ffffffff81f3f9a0 d __param_str_wmarks_low
+ffffffff81f3f9c0 d __param_str_aggr_interval
+ffffffff81f3f9e0 d __param_str_min_nr_regions
+ffffffff81f3fa00 d __param_str_max_nr_regions
+ffffffff81f3fa20 d __param_str_monitor_region_start
+ffffffff81f3fa50 d __param_str_monitor_region_end
+ffffffff81f3fa80 d __param_str_kdamond_pid
+ffffffff81f3faa0 d __param_str_nr_reclaim_tried_regions
+ffffffff81f3fad0 d __param_str_bytes_reclaim_tried_regions
+ffffffff81f3fb00 d __param_str_nr_reclaimed_regions
+ffffffff81f3fb30 d __param_str_bytes_reclaimed_regions
+ffffffff81f3fb60 d __param_str_nr_quota_exceeds
+ffffffff81f3fb80 d __param_str_enabled
+ffffffff81f3fb98 d enabled_param_ops
+ffffffff81f3fbc0 d __param_str_page_reporting_order
+ffffffff81f3fbe8 d do_dentry_open.empty_fops
+ffffffff81f3fcf8 d generic_ro_fops
+ffffffff81f3fe40 d alloc_file_pseudo.anon_ops
+ffffffff81f3ff00 d alloc_super.default_op
+ffffffff81f3ffd0 d def_chr_fops
+ffffffff81f400f8 d pipefifo_fops
+ffffffff81f40208 d anon_pipe_buf_ops
+ffffffff81f40228 d pipefs_ops
+ffffffff81f40300 d pipefs_dentry_operations
+ffffffff81f40400 d page_symlink_inode_operations
+ffffffff81f404d0 d band_table
+ffffffff81f40520 d empty_name
+ffffffff81f40530 d slash_name
+ffffffff81f40540 d dotdot_name
+ffffffff81f40550 d empty_aops
+ffffffff81f40600 d inode_init_always.empty_iops
+ffffffff81f406c0 d inode_init_always.no_open_fops
+ffffffff81f40800 d bad_inode_ops.llvm.12442993005467917419
+ffffffff81f408c0 d bad_file_ops
+ffffffff81f409d0 d mounts_op
+ffffffff81f409f0 d mntns_operations
+ffffffff81f40a40 d simple_dentry_operations
+ffffffff81f40b00 d simple_dir_operations
+ffffffff81f40c40 d simple_dir_inode_operations
+ffffffff81f40d00 d pseudo_fs_context_ops
+ffffffff81f40d30 d ram_aops
+ffffffff81f40dd0 d simple_super_operations
+ffffffff81f40e80 d alloc_anon_inode.anon_aops
+ffffffff81f40f40 d simple_symlink_inode_operations
+ffffffff81f41000 d empty_dir_inode_operations
+ffffffff81f410c0 d empty_dir_operations
+ffffffff81f41200 d generic_ci_dentry_ops
+ffffffff81f412c0 d str__writeback__trace_system_name
+ffffffff81f412d0 d trace_raw_output_writeback_dirty_inode_template.__flags
+ffffffff81f41380 d trace_raw_output_writeback_dirty_inode_template.__flags.31
+ffffffff81f41430 d trace_raw_output_writeback_work_class.symbols
+ffffffff81f414c0 d trace_raw_output_writeback_queue_io.symbols
+ffffffff81f41550 d trace_raw_output_writeback_sb_inodes_requeue.__flags
+ffffffff81f41600 d trace_raw_output_writeback_single_inode_template.__flags
+ffffffff81f416b0 d trace_raw_output_writeback_inode_template.__flags
+ffffffff81f41760 d nosteal_pipe_buf_ops
+ffffffff81f41780 d user_page_pipe_buf_ops
+ffffffff81f417a0 d default_pipe_buf_ops
+ffffffff81f417c0 d page_cache_pipe_buf_ops
+ffffffff81f41800 d ns_dentry_operations
+ffffffff81f418c0 d ns_file_operations.llvm.14150694527948361828
+ffffffff81f419d0 d nsfs_ops
+ffffffff81f41a80 d legacy_fs_context_ops
+ffffffff81f41ab0 d common_set_sb_flag
+ffffffff81f41b10 d common_clear_sb_flag
+ffffffff81f41b60 d bool_names
+ffffffff81f41bd0 d fscontext_fops
+ffffffff81f41ce0 d proc_mounts_operations
+ffffffff81f41df0 d proc_mountinfo_operations
+ffffffff81f41f00 d proc_mountstats_operations
+ffffffff81f42028 d inotify_fsnotify_ops
+ffffffff81f42058 d inotify_fops
+ffffffff81f42168 d eventpoll_fops
+ffffffff81f42280 d path_limits
+ffffffff81f422c0 d anon_inodefs_dentry_operations
+ffffffff81f42380 d signalfd_fops
+ffffffff81f42490 d timerfd_fops
+ffffffff81f425a0 d eventfd_fops
+ffffffff81f426b0 d userfaultfd_fops
+ffffffff81f427c0 d userfaultfd_dev_fops
+ffffffff81f428d0 d aio_ctx_aops
+ffffffff81f42970 d aio_ring_fops
+ffffffff81f42a80 d aio_ring_vm_ops
+ffffffff81f42b10 d str__filelock__trace_system_name
+ffffffff81f42b20 d trace_raw_output_locks_get_lock_context.symbols
+ffffffff81f42b60 d trace_raw_output_filelock_lock.__flags
+ffffffff81f42c20 d trace_raw_output_filelock_lock.symbols
+ffffffff81f42c60 d trace_raw_output_filelock_lease.__flags
+ffffffff81f42d20 d trace_raw_output_filelock_lease.symbols
+ffffffff81f42d60 d trace_raw_output_generic_add_lease.__flags
+ffffffff81f42e20 d trace_raw_output_generic_add_lease.symbols
+ffffffff81f42e60 d trace_raw_output_leases_conflict.__flags
+ffffffff81f42f20 d trace_raw_output_leases_conflict.symbols
+ffffffff81f42f60 d trace_raw_output_leases_conflict.__flags.61
+ffffffff81f43020 d trace_raw_output_leases_conflict.symbols.62
+ffffffff81f43060 d lease_manager_ops
+ffffffff81f430b8 d locks_seq_operations
+ffffffff81f430d8 d bm_context_ops
+ffffffff81f43110 d bm_fill_super.bm_files
+ffffffff81f43188 d bm_status_operations
+ffffffff81f43298 d bm_register_operations
+ffffffff81f433a8 d s_ops
+ffffffff81f43458 d bm_entry_operations
+ffffffff81f43568 d posix_acl_access_xattr_handler
+ffffffff81f43598 d posix_acl_default_xattr_handler
+ffffffff81f435c8 d str__iomap__trace_system_name
+ffffffff81f435d0 d trace_raw_output_iomap_class.symbols
+ffffffff81f43630 d trace_raw_output_iomap_class.__flags
+ffffffff81f436a0 d trace_raw_output_iomap_iter.__flags
+ffffffff81f43710 d proc_pid_maps_operations
+ffffffff81f43820 d proc_pid_smaps_operations
+ffffffff81f43930 d proc_pid_smaps_rollup_operations
+ffffffff81f43a40 d proc_clear_refs_operations
+ffffffff81f43b50 d proc_pagemap_operations
+ffffffff81f43c60 d proc_pid_maps_op
+ffffffff81f43c80 d proc_pid_smaps_op
+ffffffff81f43ca0 d smaps_walk_ops
+ffffffff81f43cf0 d smaps_shmem_walk_ops
+ffffffff81f43d40 d show_smap_vma_flags.mnemonics
+ffffffff81f43dc0 d clear_refs_walk_ops
+ffffffff81f43e10 d pagemap_ops
+ffffffff81f43e60 d proc_sops
+ffffffff81f43f10 d proc_iter_file_ops
+ffffffff81f44020 d proc_reg_file_ops
+ffffffff81f44140 d proc_link_inode_operations
+ffffffff81f44200 d proc_root_inode_operations
+ffffffff81f442c0 d proc_root_operations
+ffffffff81f443d0 d proc_fs_parameters
+ffffffff81f44450 d proc_fs_context_ops
+ffffffff81f444c0 d proc_pid_link_inode_operations
+ffffffff81f44580 d proc_def_inode_operations
+ffffffff81f44640 d pid_dentry_operations
+ffffffff81f44700 d proc_tgid_base_operations
+ffffffff81f44810 d tid_base_stuff
+ffffffff81f44e50 d tgid_base_stuff
+ffffffff81f45580 d proc_tgid_base_inode_operations
+ffffffff81f45640 d proc_environ_operations
+ffffffff81f45750 d proc_auxv_operations
+ffffffff81f45860 d proc_single_file_operations
+ffffffff81f45970 d proc_pid_sched_operations
+ffffffff81f45a80 d proc_tid_comm_inode_operations
+ffffffff81f45b40 d proc_pid_set_comm_operations
+ffffffff81f45c50 d proc_pid_cmdline_ops
+ffffffff81f45d60 d proc_mem_operations
+ffffffff81f45e80 d proc_attr_dir_inode_operations
+ffffffff81f45f40 d proc_attr_dir_operations
+ffffffff81f46050 d proc_oom_adj_operations
+ffffffff81f46160 d proc_oom_score_adj_operations
+ffffffff81f46270 d proc_loginuid_operations
+ffffffff81f46380 d proc_sessionid_operations
+ffffffff81f46490 d lnames
+ffffffff81f46590 d attr_dir_stuff
+ffffffff81f46680 d proc_pid_attr_operations
+ffffffff81f467c0 d proc_task_inode_operations
+ffffffff81f46880 d proc_task_operations
+ffffffff81f469c0 d proc_map_files_inode_operations
+ffffffff81f46a80 d proc_map_files_operations
+ffffffff81f46b90 d proc_coredump_filter_operations
+ffffffff81f46ca0 d proc_pid_set_timerslack_ns_operations
+ffffffff81f46dc0 d proc_tid_base_inode_operations
+ffffffff81f46e80 d proc_tid_base_operations
+ffffffff81f46fc0 d proc_map_files_link_inode_operations
+ffffffff81f47080 d tid_map_files_dentry_operations
+ffffffff81f47140 d proc_net_dentry_ops
+ffffffff81f47200 d proc_dir_operations
+ffffffff81f47340 d proc_dir_inode_operations
+ffffffff81f47400 d proc_file_inode_operations
+ffffffff81f474c0 d proc_seq_ops
+ffffffff81f47518 d proc_single_ops
+ffffffff81f47580 d proc_misc_dentry_ops
+ffffffff81f47640 d task_state_array
+ffffffff81f476c0 d tid_fd_dentry_operations
+ffffffff81f47780 d proc_fdinfo_file_operations
+ffffffff81f478c0 d proc_fd_inode_operations
+ffffffff81f47980 d proc_fd_operations
+ffffffff81f47ac0 d proc_fdinfo_inode_operations
+ffffffff81f47b80 d proc_fdinfo_operations
+ffffffff81f47c90 d tty_drivers_op
+ffffffff81f47cb0 d consoles_op
+ffffffff81f47cd0 d cpuinfo_proc_ops
+ffffffff81f47d28 d devinfo_ops
+ffffffff81f47d48 d int_seq_ops
+ffffffff81f47d68 d stat_proc_ops
+ffffffff81f47dc0 d show_irq_gap.zeros
+ffffffff81f47df0 d ns_entries
+ffffffff81f47e00 d proc_ns_link_inode_operations
+ffffffff81f47ec0 d proc_ns_dir_inode_operations
+ffffffff81f47f80 d proc_ns_dir_operations
+ffffffff81f480c0 d proc_self_inode_operations
+ffffffff81f48180 d proc_thread_self_inode_operations
+ffffffff81f48240 d register_sysctl_table.null_path.llvm.194383397209702251
+ffffffff81f48280 d proc_sys_dir_operations
+ffffffff81f48340 d proc_sys_dir_file_operations
+ffffffff81f48480 d proc_sys_dentry_operations
+ffffffff81f48540 d proc_sys_inode_operations
+ffffffff81f48600 d proc_sys_file_operations
+ffffffff81f48710 d sysctl_aliases
+ffffffff81f48770 d proc_net_seq_ops
+ffffffff81f487c8 d proc_net_single_ops
+ffffffff81f48840 d proc_net_inode_operations
+ffffffff81f48900 d proc_net_operations
+ffffffff81f48a10 d kmsg_proc_ops
+ffffffff81f48a68 d kpagecount_proc_ops
+ffffffff81f48ac0 d kpageflags_proc_ops
+ffffffff81f48b18 d kpagecgroup_proc_ops
+ffffffff81f48b70 d kernfs_export_ops
+ffffffff81f48bc8 d kernfs_sops
+ffffffff81f48c78 d kernfs_trusted_xattr_handler
+ffffffff81f48ca8 d kernfs_security_xattr_handler
+ffffffff81f48cd8 d kernfs_user_xattr_handler
+ffffffff81f48d40 d kernfs_iops
+ffffffff81f48e00 d kernfs_dir_iops
+ffffffff81f48ec0 d kernfs_dir_fops
+ffffffff81f49000 d kernfs_dops
+ffffffff81f490c0 d kernfs_file_fops
+ffffffff81f491d0 d kernfs_vm_ops
+ffffffff81f49260 d kernfs_seq_ops
+ffffffff81f49280 d kernfs_symlink_iops
+ffffffff81f49340 d sysfs_prealloc_kfops_rw
+ffffffff81f493b0 d sysfs_prealloc_kfops_ro
+ffffffff81f49420 d sysfs_prealloc_kfops_wo
+ffffffff81f49490 d sysfs_file_kfops_rw
+ffffffff81f49500 d sysfs_file_kfops_ro
+ffffffff81f49570 d sysfs_file_kfops_wo
+ffffffff81f495e0 d sysfs_file_kfops_empty
+ffffffff81f49650 d sysfs_bin_kfops_mmap
+ffffffff81f496c0 d sysfs_bin_kfops_rw
+ffffffff81f49730 d sysfs_bin_kfops_ro
+ffffffff81f497a0 d sysfs_bin_kfops_wo
+ffffffff81f49810 d sysfs_fs_context_ops
+ffffffff81f49840 d devpts_sops
+ffffffff81f498f0 d tokens
+ffffffff81f49960 d tokens
+ffffffff81f499a0 d tokens
+ffffffff81f499e0 d tokens
+ffffffff81f49a58 d ext4_dir_operations
+ffffffff81f49b68 d ext4_iomap_xattr_ops
+ffffffff81f49b88 d ext4_dio_write_ops
+ffffffff81f49ba0 d ext4_file_vm_ops
+ffffffff81f49c40 d ext4_file_inode_operations
+ffffffff81f49d00 d ext4_file_operations
+ffffffff81f49e30 d ext4_journalled_aops
+ffffffff81f49ed0 d ext4_da_aops
+ffffffff81f49f70 d ext4_aops
+ffffffff81f4a010 d ext4_iomap_report_ops
+ffffffff81f4a030 d ext4_iomap_ops
+ffffffff81f4a050 d ext4_iomap_overwrite_ops
+ffffffff81f4a070 d ext4_mb_seq_groups_ops
+ffffffff81f4a090 d ext4_mb_seq_structs_summary_ops
+ffffffff81f4a0b0 d ext4_groupinfo_slab_names
+ffffffff81f4a100 d ext4_dir_inode_operations
+ffffffff81f4a1c0 d ext4_special_inode_operations
+ffffffff81f4a280 d trace_raw_output_ext4_da_write_pages_extent.__flags
+ffffffff81f4a2d0 d trace_raw_output_ext4_request_blocks.__flags
+ffffffff81f4a3d0 d trace_raw_output_ext4_allocate_blocks.__flags
+ffffffff81f4a4d0 d trace_raw_output_ext4_free_blocks.__flags
+ffffffff81f4a540 d trace_raw_output_ext4_mballoc_alloc.__flags
+ffffffff81f4a640 d trace_raw_output_ext4__fallocate_mode.__flags
+ffffffff81f4a6a0 d trace_raw_output_ext4__map_blocks_enter.__flags
+ffffffff81f4a760 d trace_raw_output_ext4__map_blocks_exit.__flags
+ffffffff81f4a820 d trace_raw_output_ext4__map_blocks_exit.__flags.252
+ffffffff81f4a870 d trace_raw_output_ext4_ext_handle_unwritten_extents.__flags
+ffffffff81f4a930 d trace_raw_output_ext4_get_implied_cluster_alloc_exit.__flags
+ffffffff81f4a980 d trace_raw_output_ext4__es_extent.__flags
+ffffffff81f4a9e0 d trace_raw_output_ext4_es_find_extent_range_exit.__flags
+ffffffff81f4aa40 d trace_raw_output_ext4_es_lookup_extent_exit.__flags
+ffffffff81f4aaa0 d trace_raw_output_ext4_es_insert_delayed_block.__flags
+ffffffff81f4ab00 d trace_raw_output_ext4_fc_stats.symbols
+ffffffff81f4abb0 d trace_raw_output_ext4_fc_stats.symbols.355
+ffffffff81f4ac60 d trace_raw_output_ext4_fc_stats.symbols.356
+ffffffff81f4ad10 d trace_raw_output_ext4_fc_stats.symbols.357
+ffffffff81f4adc0 d trace_raw_output_ext4_fc_stats.symbols.358
+ffffffff81f4ae70 d trace_raw_output_ext4_fc_stats.symbols.359
+ffffffff81f4af20 d trace_raw_output_ext4_fc_stats.symbols.360
+ffffffff81f4afd0 d trace_raw_output_ext4_fc_stats.symbols.361
+ffffffff81f4b080 d trace_raw_output_ext4_fc_stats.symbols.362
+ffffffff81f4b130 d trace_raw_output_ext4_fc_stats.symbols.363
+ffffffff81f4b1e0 d err_translation
+ffffffff81f4b260 d ext4_mount_opts
+ffffffff81f4b480 d ext4_param_specs
+ffffffff81f4bee0 d ext4_param_errors
+ffffffff81f4bf20 d ext4_param_data
+ffffffff81f4bf60 d ext4_param_data_err
+ffffffff81f4bf90 d ext4_param_jqfmt
+ffffffff81f4bfd0 d ext4_param_dax
+ffffffff81f4c010 d ext4_context_ops
+ffffffff81f4c040 d ext4_sops
+ffffffff81f4c0f0 d ext4_export_ops
+ffffffff81f4c180 d ext4_encrypted_symlink_inode_operations
+ffffffff81f4c240 d ext4_symlink_inode_operations
+ffffffff81f4c300 d ext4_fast_symlink_inode_operations
+ffffffff81f4c3c0 d proc_dirname
+ffffffff81f4c3c8 d ext4_attr_ops
+ffffffff81f4c3d8 d ext4_group
+ffffffff81f4c400 d ext4_feat_group
+ffffffff81f4c430 d ext4_xattr_handler_map
+ffffffff81f4c488 d ext4_xattr_hurd_handler
+ffffffff81f4c4b8 d ext4_xattr_trusted_handler
+ffffffff81f4c4e8 d ext4_xattr_user_handler
+ffffffff81f4c518 d ext4_xattr_security_handler
+ffffffff81f4c548 d str__jbd2__trace_system_name
+ffffffff81f4c550 d jbd2_info_proc_ops
+ffffffff81f4c5a8 d jbd2_seq_info_ops
+ffffffff81f4c5d0 d jbd2_slab_names
+ffffffff81f4c640 d ramfs_dir_inode_operations
+ffffffff81f4c700 d ramfs_fs_parameters
+ffffffff81f4c740 d ramfs_context_ops
+ffffffff81f4c770 d ramfs_ops
+ffffffff81f4c820 d ramfs_file_operations
+ffffffff81f4c940 d ramfs_file_inode_operations
+ffffffff81f4ca00 d utf8_table
+ffffffff81f4cae0 d charset2lower
+ffffffff81f4cbe0 d charset2lower
+ffffffff81f4cce0 d charset2lower
+ffffffff81f4cde0 d charset2lower
+ffffffff81f4cee0 d charset2lower
+ffffffff81f4cfe0 d charset2lower
+ffffffff81f4d0e0 d charset2lower
+ffffffff81f4d1e0 d charset2lower
+ffffffff81f4d2e0 d charset2lower
+ffffffff81f4d3e0 d charset2lower
+ffffffff81f4d4e0 d charset2lower
+ffffffff81f4d5e0 d charset2lower
+ffffffff81f4d6e0 d charset2lower
+ffffffff81f4d7e0 d charset2lower
+ffffffff81f4d8e0 d charset2lower
+ffffffff81f4d9e0 d charset2lower
+ffffffff81f4dae0 d charset2lower
+ffffffff81f4dbe0 d charset2lower
+ffffffff81f4dce0 d charset2lower
+ffffffff81f4dde0 d charset2lower
+ffffffff81f4dee0 d charset2lower
+ffffffff81f4dfe0 d charset2lower
+ffffffff81f4e0e0 d charset2lower
+ffffffff81f4e1e0 d charset2lower
+ffffffff81f4e2e0 d charset2lower
+ffffffff81f4e3e0 d charset2lower
+ffffffff81f4e4e0 d charset2lower
+ffffffff81f4e5e0 d charset2lower
+ffffffff81f4e6e0 d charset2lower
+ffffffff81f4e7e0 d charset2lower
+ffffffff81f4e8e0 d charset2lower
+ffffffff81f4e9e0 d charset2lower
+ffffffff81f4eae0 d charset2lower
+ffffffff81f4ebe0 d charset2lower
+ffffffff81f4ece0 d charset2lower
+ffffffff81f4ede0 d charset2lower
+ffffffff81f4eee0 d charset2lower
+ffffffff81f4efe0 d charset2lower
+ffffffff81f4f0e0 d charset2lower
+ffffffff81f4f1e0 d charset2lower
+ffffffff81f4f2e0 d charset2lower
+ffffffff81f4f3e0 d charset2lower
+ffffffff81f4f4e0 d charset2lower
+ffffffff81f4f5e0 d charset2lower
+ffffffff81f4f6e0 d charset2lower
+ffffffff81f4f7e0 d charset2lower
+ffffffff81f4f8e0 d charset2lower
+ffffffff81f4f9e0 d charset2lower
+ffffffff81f4fae0 d charset2lower
+ffffffff81f4fbe0 d charset2upper
+ffffffff81f4fce0 d charset2upper
+ffffffff81f4fde0 d charset2upper
+ffffffff81f4fee0 d charset2upper
+ffffffff81f4ffe0 d charset2upper
+ffffffff81f500e0 d charset2upper
+ffffffff81f501e0 d charset2upper
+ffffffff81f502e0 d charset2upper
+ffffffff81f503e0 d charset2upper
+ffffffff81f504e0 d charset2upper
+ffffffff81f505e0 d charset2upper
+ffffffff81f506e0 d charset2upper
+ffffffff81f507e0 d charset2upper
+ffffffff81f508e0 d charset2upper
+ffffffff81f509e0 d charset2upper
+ffffffff81f50ae0 d charset2upper
+ffffffff81f50be0 d charset2upper
+ffffffff81f50ce0 d charset2upper
+ffffffff81f50de0 d charset2upper
+ffffffff81f50ee0 d charset2upper
+ffffffff81f50fe0 d charset2upper
+ffffffff81f510e0 d charset2upper
+ffffffff81f511e0 d charset2upper
+ffffffff81f512e0 d charset2upper
+ffffffff81f513e0 d charset2upper
+ffffffff81f514e0 d charset2upper
+ffffffff81f515e0 d charset2upper
+ffffffff81f516e0 d charset2upper
+ffffffff81f517e0 d charset2upper
+ffffffff81f518e0 d charset2upper
+ffffffff81f519e0 d charset2upper
+ffffffff81f51ae0 d charset2upper
+ffffffff81f51be0 d charset2upper
+ffffffff81f51ce0 d charset2upper
+ffffffff81f51de0 d charset2upper
+ffffffff81f51ee0 d charset2upper
+ffffffff81f51fe0 d charset2upper
+ffffffff81f520e0 d charset2upper
+ffffffff81f521e0 d charset2upper
+ffffffff81f522e0 d charset2upper
+ffffffff81f523e0 d charset2upper
+ffffffff81f524e0 d charset2upper
+ffffffff81f525e0 d charset2upper
+ffffffff81f526e0 d charset2upper
+ffffffff81f527e0 d charset2upper
+ffffffff81f528e0 d charset2upper
+ffffffff81f529e0 d charset2upper
+ffffffff81f52ae0 d charset2upper
+ffffffff81f52be0 d charset2upper
+ffffffff81f52ce0 d page00
+ffffffff81f52de0 d page00
+ffffffff81f52ee0 d page00
+ffffffff81f52fe0 d page00
+ffffffff81f530e0 d page00
+ffffffff81f531e0 d page00
+ffffffff81f532e0 d page00
+ffffffff81f533e0 d page00
+ffffffff81f534e0 d page00
+ffffffff81f535e0 d page00
+ffffffff81f536e0 d page00
+ffffffff81f537e0 d page00
+ffffffff81f538e0 d page00
+ffffffff81f539e0 d page00
+ffffffff81f53ae0 d page00
+ffffffff81f53be0 d page00
+ffffffff81f53ce0 d page00
+ffffffff81f53de0 d page00
+ffffffff81f53ee0 d page00
+ffffffff81f53fe0 d page00
+ffffffff81f540e0 d page00
+ffffffff81f541e0 d page00
+ffffffff81f542e0 d page00
+ffffffff81f543e0 d page00
+ffffffff81f544e0 d page00
+ffffffff81f545e0 d page00
+ffffffff81f546e0 d page00
+ffffffff81f547e0 d page00
+ffffffff81f548e0 d page00
+ffffffff81f549e0 d page00
+ffffffff81f54ae0 d page00
+ffffffff81f54be0 d page00
+ffffffff81f54ce0 d page00
+ffffffff81f54de0 d page00
+ffffffff81f54ee0 d page00
+ffffffff81f54fe0 d page00
+ffffffff81f550e0 d page00
+ffffffff81f551e0 d page00
+ffffffff81f552e0 d page00
+ffffffff81f553e0 d page00
+ffffffff81f554e0 d page00
+ffffffff81f555e0 d page00
+ffffffff81f556e0 d page00
+ffffffff81f557e0 d page00
+ffffffff81f558e0 d page00
+ffffffff81f559e0 d page_uni2charset
+ffffffff81f561e0 d page_uni2charset
+ffffffff81f569e0 d page_uni2charset
+ffffffff81f571e0 d page_uni2charset
+ffffffff81f579e0 d page_uni2charset
+ffffffff81f581e0 d page_uni2charset
+ffffffff81f589e0 d page_uni2charset
+ffffffff81f591e0 d page_uni2charset
+ffffffff81f599e0 d page_uni2charset
+ffffffff81f5a1e0 d page_uni2charset
+ffffffff81f5a9e0 d page_uni2charset
+ffffffff81f5b1e0 d page_uni2charset
+ffffffff81f5b9e0 d page_uni2charset
+ffffffff81f5c1e0 d page_uni2charset
+ffffffff81f5c9e0 d page_uni2charset
+ffffffff81f5d1e0 d page_uni2charset
+ffffffff81f5d9e0 d page_uni2charset
+ffffffff81f5e1e0 d page_uni2charset
+ffffffff81f5e9e0 d page_uni2charset
+ffffffff81f5f1e0 d page_uni2charset
+ffffffff81f5f9e0 d page_uni2charset
+ffffffff81f601e0 d page_uni2charset
+ffffffff81f609e0 d page_uni2charset
+ffffffff81f611e0 d page_uni2charset
+ffffffff81f619e0 d page_uni2charset
+ffffffff81f621e0 d page_uni2charset
+ffffffff81f629e0 d page_uni2charset
+ffffffff81f631e0 d page_uni2charset
+ffffffff81f639e0 d page_uni2charset
+ffffffff81f641e0 d page_uni2charset
+ffffffff81f649e0 d page_uni2charset
+ffffffff81f651e0 d page_uni2charset
+ffffffff81f659e0 d page_uni2charset
+ffffffff81f661e0 d page_uni2charset
+ffffffff81f669e0 d page_uni2charset
+ffffffff81f671e0 d page_uni2charset
+ffffffff81f679e0 d page_uni2charset
+ffffffff81f681e0 d page_uni2charset
+ffffffff81f689e0 d page_uni2charset
+ffffffff81f691e0 d page_uni2charset
+ffffffff81f699e0 d page_uni2charset
+ffffffff81f6a1e0 d page_uni2charset
+ffffffff81f6a9e0 d page_uni2charset
+ffffffff81f6b1e0 d page_uni2charset
+ffffffff81f6b9e0 d page_uni2charset
+ffffffff81f6c1e0 d page_uni2charset
+ffffffff81f6c9e0 d page_uni2charset
+ffffffff81f6d1e0 d page_uni2charset
+ffffffff81f6d9e0 d page_uni2charset
+ffffffff81f6e1e0 d charset2uni
+ffffffff81f6e3e0 d charset2uni
+ffffffff81f6e5e0 d charset2uni
+ffffffff81f6e7e0 d charset2uni
+ffffffff81f6e9e0 d charset2uni
+ffffffff81f6ebe0 d charset2uni
+ffffffff81f6ede0 d charset2uni
+ffffffff81f6efe0 d charset2uni
+ffffffff81f6f1e0 d charset2uni
+ffffffff81f6f3e0 d charset2uni
+ffffffff81f6f5e0 d charset2uni
+ffffffff81f6f7e0 d charset2uni
+ffffffff81f6f9e0 d charset2uni
+ffffffff81f6fbe0 d charset2uni
+ffffffff81f6fde0 d charset2uni
+ffffffff81f6ffe0 d charset2uni
+ffffffff81f701e0 d charset2uni
+ffffffff81f703e0 d charset2uni
+ffffffff81f705e0 d charset2uni
+ffffffff81f707e0 d charset2uni
+ffffffff81f709e0 d charset2uni
+ffffffff81f70be0 d charset2uni
+ffffffff81f70de0 d charset2uni
+ffffffff81f70fe0 d charset2uni
+ffffffff81f711e0 d charset2uni
+ffffffff81f713e0 d charset2uni
+ffffffff81f715e0 d charset2uni
+ffffffff81f717e0 d charset2uni
+ffffffff81f719e0 d charset2uni
+ffffffff81f71be0 d charset2uni
+ffffffff81f71de0 d charset2uni
+ffffffff81f71fe0 d charset2uni
+ffffffff81f721e0 d charset2uni
+ffffffff81f723e0 d charset2uni
+ffffffff81f725e0 d charset2uni
+ffffffff81f727e0 d charset2uni
+ffffffff81f729e0 d charset2uni
+ffffffff81f72be0 d charset2uni
+ffffffff81f72de0 d charset2uni
+ffffffff81f72fe0 d charset2uni
+ffffffff81f731e0 d charset2uni
+ffffffff81f733e0 d charset2uni
+ffffffff81f735e0 d charset2uni
+ffffffff81f737e0 d charset2uni
+ffffffff81f739e0 d charset2uni
+ffffffff81f73be0 d page01
+ffffffff81f73ce0 d page01
+ffffffff81f73de0 d page01
+ffffffff81f73ee0 d page01
+ffffffff81f73fe0 d page01
+ffffffff81f740e0 d page01
+ffffffff81f741e0 d page01
+ffffffff81f742e0 d page01
+ffffffff81f743e0 d page01
+ffffffff81f744e0 d page01
+ffffffff81f745e0 d page01
+ffffffff81f746e0 d page01
+ffffffff81f747e0 d page01
+ffffffff81f748e0 d page01
+ffffffff81f749e0 d page01
+ffffffff81f74ae0 d page01
+ffffffff81f74be0 d page01
+ffffffff81f74ce0 d page01
+ffffffff81f74de0 d page01
+ffffffff81f74ee0 d page01
+ffffffff81f74fe0 d page01
+ffffffff81f750e0 d page01
+ffffffff81f751e0 d page01
+ffffffff81f752e0 d page01
+ffffffff81f753e0 d page01
+ffffffff81f754e0 d page01
+ffffffff81f755e0 d page01
+ffffffff81f756e0 d page01
+ffffffff81f757e0 d page01
+ffffffff81f758e0 d page03
+ffffffff81f759e0 d page03
+ffffffff81f75ae0 d page03
+ffffffff81f75be0 d page03
+ffffffff81f75ce0 d page03
+ffffffff81f75de0 d page03
+ffffffff81f75ee0 d page03
+ffffffff81f75fe0 d page03
+ffffffff81f760e0 d page03
+ffffffff81f761e0 d page03
+ffffffff81f762e0 d page03
+ffffffff81f763e0 d page03
+ffffffff81f764e0 d page03
+ffffffff81f765e0 d page03
+ffffffff81f766e0 d page03
+ffffffff81f767e0 d page03
+ffffffff81f768e0 d page03
+ffffffff81f769e0 d page20
+ffffffff81f76ae0 d page20
+ffffffff81f76be0 d page20
+ffffffff81f76ce0 d page20
+ffffffff81f76de0 d page20
+ffffffff81f76ee0 d page20
+ffffffff81f76fe0 d page20
+ffffffff81f770e0 d page20
+ffffffff81f771e0 d page20
+ffffffff81f772e0 d page20
+ffffffff81f773e0 d page20
+ffffffff81f774e0 d page20
+ffffffff81f775e0 d page20
+ffffffff81f776e0 d page20
+ffffffff81f777e0 d page20
+ffffffff81f778e0 d page20
+ffffffff81f779e0 d page20
+ffffffff81f77ae0 d page20
+ffffffff81f77be0 d page20
+ffffffff81f77ce0 d page20
+ffffffff81f77de0 d page20
+ffffffff81f77ee0 d page20
+ffffffff81f77fe0 d page20
+ffffffff81f780e0 d page20
+ffffffff81f781e0 d page20
+ffffffff81f782e0 d page20
+ffffffff81f783e0 d page20
+ffffffff81f784e0 d page20
+ffffffff81f785e0 d page22
+ffffffff81f786e0 d page22
+ffffffff81f787e0 d page22
+ffffffff81f788e0 d page22
+ffffffff81f789e0 d page22
+ffffffff81f78ae0 d page22
+ffffffff81f78be0 d page22
+ffffffff81f78ce0 d page22
+ffffffff81f78de0 d page22
+ffffffff81f78ee0 d page22
+ffffffff81f78fe0 d page22
+ffffffff81f790e0 d page22
+ffffffff81f791e0 d page22
+ffffffff81f792e0 d page22
+ffffffff81f793e0 d page22
+ffffffff81f794e0 d page22
+ffffffff81f795e0 d page22
+ffffffff81f796e0 d page22
+ffffffff81f797e0 d page22
+ffffffff81f798e0 d page22
+ffffffff81f799e0 d page22
+ffffffff81f79ae0 d page22
+ffffffff81f79be0 d page23
+ffffffff81f79ce0 d page23
+ffffffff81f79de0 d page23
+ffffffff81f79ee0 d page23
+ffffffff81f79fe0 d page23
+ffffffff81f7a0e0 d page23
+ffffffff81f7a1e0 d page23
+ffffffff81f7a2e0 d page23
+ffffffff81f7a3e0 d page25
+ffffffff81f7a4e0 d page25
+ffffffff81f7a5e0 d page25
+ffffffff81f7a6e0 d page25
+ffffffff81f7a7e0 d page25
+ffffffff81f7a8e0 d page25
+ffffffff81f7a9e0 d page25
+ffffffff81f7aae0 d page25
+ffffffff81f7abe0 d page25
+ffffffff81f7ace0 d page25
+ffffffff81f7ade0 d page25
+ffffffff81f7aee0 d page25
+ffffffff81f7afe0 d page25
+ffffffff81f7b0e0 d page25
+ffffffff81f7b1e0 d page25
+ffffffff81f7b2e0 d page25
+ffffffff81f7b3e0 d page25
+ffffffff81f7b4e0 d page25
+ffffffff81f7b5e0 d page25
+ffffffff81f7b6e0 d page25
+ffffffff81f7b7e0 d page25
+ffffffff81f7b8e0 d page25
+ffffffff81f7b9e0 d page25
+ffffffff81f7bae0 d page25
+ffffffff81f7bbe0 d page02
+ffffffff81f7bce0 d page02
+ffffffff81f7bde0 d page02
+ffffffff81f7bee0 d page02
+ffffffff81f7bfe0 d page02
+ffffffff81f7c0e0 d page02
+ffffffff81f7c1e0 d page02
+ffffffff81f7c2e0 d page02
+ffffffff81f7c3e0 d page02
+ffffffff81f7c4e0 d page02
+ffffffff81f7c5e0 d page02
+ffffffff81f7c6e0 d page02
+ffffffff81f7c7e0 d page02
+ffffffff81f7c8e0 d page02
+ffffffff81f7c9e0 d page04
+ffffffff81f7cae0 d page04
+ffffffff81f7cbe0 d page04
+ffffffff81f7cce0 d page04
+ffffffff81f7cde0 d page04
+ffffffff81f7cee0 d page04
+ffffffff81f7cfe0 d page04
+ffffffff81f7d0e0 d page21
+ffffffff81f7d1e0 d page21
+ffffffff81f7d2e0 d page21
+ffffffff81f7d3e0 d page21
+ffffffff81f7d4e0 d page21
+ffffffff81f7d5e0 d page21
+ffffffff81f7d6e0 d page21
+ffffffff81f7d7e0 d page21
+ffffffff81f7d8e0 d page21
+ffffffff81f7d9e0 d page21
+ffffffff81f7dae0 d page21
+ffffffff81f7dbe0 d page21
+ffffffff81f7dce0 d page21
+ffffffff81f7dde0 d page21
+ffffffff81f7dee0 d page21
+ffffffff81f7dfe0 d page21
+ffffffff81f7e0e0 d page21
+ffffffff81f7e1e0 d page05
+ffffffff81f7e2e0 d page05
+ffffffff81f7e3e0 d pagefe
+ffffffff81f7e4e0 d page06
+ffffffff81f7e5e0 d page06
+ffffffff81f7e6e0 d page0e
+ffffffff81f7e7e0 d u2c_30
+ffffffff81f7e9e0 d u2c_30
+ffffffff81f7ebe0 d u2c_30
+ffffffff81f7ede0 d u2c_30
+ffffffff81f7efe0 d u2c_4E
+ffffffff81f7f1e0 d u2c_4E
+ffffffff81f7f3e0 d u2c_4E
+ffffffff81f7f5e0 d u2c_4E
+ffffffff81f7f7e0 d u2c_4F
+ffffffff81f7f9e0 d u2c_4F
+ffffffff81f7fbe0 d u2c_4F
+ffffffff81f7fde0 d u2c_4F
+ffffffff81f7ffe0 d u2c_51
+ffffffff81f801e0 d u2c_51
+ffffffff81f803e0 d u2c_51
+ffffffff81f805e0 d u2c_51
+ffffffff81f807e0 d u2c_52
+ffffffff81f809e0 d u2c_52
+ffffffff81f80be0 d u2c_52
+ffffffff81f80de0 d u2c_52
+ffffffff81f80fe0 d u2c_54
+ffffffff81f811e0 d u2c_54
+ffffffff81f813e0 d u2c_54
+ffffffff81f815e0 d u2c_54
+ffffffff81f817e0 d u2c_55
+ffffffff81f819e0 d u2c_55
+ffffffff81f81be0 d u2c_55
+ffffffff81f81de0 d u2c_55
+ffffffff81f81fe0 d u2c_56
+ffffffff81f821e0 d u2c_56
+ffffffff81f823e0 d u2c_56
+ffffffff81f825e0 d u2c_56
+ffffffff81f827e0 d u2c_57
+ffffffff81f829e0 d u2c_57
+ffffffff81f82be0 d u2c_57
+ffffffff81f82de0 d u2c_57
+ffffffff81f82fe0 d u2c_58
+ffffffff81f831e0 d u2c_58
+ffffffff81f833e0 d u2c_58
+ffffffff81f835e0 d u2c_58
+ffffffff81f837e0 d u2c_59
+ffffffff81f839e0 d u2c_59
+ffffffff81f83be0 d u2c_59
+ffffffff81f83de0 d u2c_59
+ffffffff81f83fe0 d u2c_5B
+ffffffff81f841e0 d u2c_5B
+ffffffff81f843e0 d u2c_5B
+ffffffff81f845e0 d u2c_5B
+ffffffff81f847e0 d u2c_5C
+ffffffff81f849e0 d u2c_5C
+ffffffff81f84be0 d u2c_5C
+ffffffff81f84de0 d u2c_5C
+ffffffff81f84fe0 d u2c_5D
+ffffffff81f851e0 d u2c_5D
+ffffffff81f853e0 d u2c_5D
+ffffffff81f855e0 d u2c_5D
+ffffffff81f857e0 d u2c_5E
+ffffffff81f859e0 d u2c_5E
+ffffffff81f85be0 d u2c_5E
+ffffffff81f85de0 d u2c_5E
+ffffffff81f85fe0 d u2c_5F
+ffffffff81f861e0 d u2c_5F
+ffffffff81f863e0 d u2c_5F
+ffffffff81f865e0 d u2c_5F
+ffffffff81f867e0 d u2c_61
+ffffffff81f869e0 d u2c_61
+ffffffff81f86be0 d u2c_61
+ffffffff81f86de0 d u2c_61
+ffffffff81f86fe0 d u2c_62
+ffffffff81f871e0 d u2c_62
+ffffffff81f873e0 d u2c_62
+ffffffff81f875e0 d u2c_62
+ffffffff81f877e0 d u2c_64
+ffffffff81f879e0 d u2c_64
+ffffffff81f87be0 d u2c_64
+ffffffff81f87de0 d u2c_64
+ffffffff81f87fe0 d u2c_66
+ffffffff81f881e0 d u2c_66
+ffffffff81f883e0 d u2c_66
+ffffffff81f885e0 d u2c_66
+ffffffff81f887e0 d u2c_67
+ffffffff81f889e0 d u2c_67
+ffffffff81f88be0 d u2c_67
+ffffffff81f88de0 d u2c_67
+ffffffff81f88fe0 d u2c_69
+ffffffff81f891e0 d u2c_69
+ffffffff81f893e0 d u2c_69
+ffffffff81f895e0 d u2c_69
+ffffffff81f897e0 d u2c_6D
+ffffffff81f899e0 d u2c_6D
+ffffffff81f89be0 d u2c_6D
+ffffffff81f89de0 d u2c_6D
+ffffffff81f89fe0 d u2c_6E
+ffffffff81f8a1e0 d u2c_6E
+ffffffff81f8a3e0 d u2c_6E
+ffffffff81f8a5e0 d u2c_6E
+ffffffff81f8a7e0 d u2c_6F
+ffffffff81f8a9e0 d u2c_6F
+ffffffff81f8abe0 d u2c_6F
+ffffffff81f8ade0 d u2c_6F
+ffffffff81f8afe0 d u2c_70
+ffffffff81f8b1e0 d u2c_70
+ffffffff81f8b3e0 d u2c_70
+ffffffff81f8b5e0 d u2c_70
+ffffffff81f8b7e0 d u2c_71
+ffffffff81f8b9e0 d u2c_71
+ffffffff81f8bbe0 d u2c_71
+ffffffff81f8bde0 d u2c_71
+ffffffff81f8bfe0 d u2c_72
+ffffffff81f8c1e0 d u2c_72
+ffffffff81f8c3e0 d u2c_72
+ffffffff81f8c5e0 d u2c_72
+ffffffff81f8c7e0 d u2c_73
+ffffffff81f8c9e0 d u2c_73
+ffffffff81f8cbe0 d u2c_73
+ffffffff81f8cde0 d u2c_73
+ffffffff81f8cfe0 d u2c_75
+ffffffff81f8d1e0 d u2c_75
+ffffffff81f8d3e0 d u2c_75
+ffffffff81f8d5e0 d u2c_75
+ffffffff81f8d7e0 d u2c_76
+ffffffff81f8d9e0 d u2c_76
+ffffffff81f8dbe0 d u2c_76
+ffffffff81f8dde0 d u2c_76
+ffffffff81f8dfe0 d u2c_77
+ffffffff81f8e1e0 d u2c_77
+ffffffff81f8e3e0 d u2c_77
+ffffffff81f8e5e0 d u2c_77
+ffffffff81f8e7e0 d u2c_78
+ffffffff81f8e9e0 d u2c_78
+ffffffff81f8ebe0 d u2c_78
+ffffffff81f8ede0 d u2c_78
+ffffffff81f8efe0 d u2c_7A
+ffffffff81f8f1e0 d u2c_7A
+ffffffff81f8f3e0 d u2c_7A
+ffffffff81f8f5e0 d u2c_7A
+ffffffff81f8f7e0 d u2c_7C
+ffffffff81f8f9e0 d u2c_7C
+ffffffff81f8fbe0 d u2c_7C
+ffffffff81f8fde0 d u2c_7C
+ffffffff81f8ffe0 d u2c_7F
+ffffffff81f901e0 d u2c_7F
+ffffffff81f903e0 d u2c_7F
+ffffffff81f905e0 d u2c_7F
+ffffffff81f907e0 d u2c_80
+ffffffff81f909e0 d u2c_80
+ffffffff81f90be0 d u2c_80
+ffffffff81f90de0 d u2c_80
+ffffffff81f90fe0 d u2c_81
+ffffffff81f911e0 d u2c_81
+ffffffff81f913e0 d u2c_81
+ffffffff81f915e0 d u2c_81
+ffffffff81f917e0 d u2c_83
+ffffffff81f919e0 d u2c_83
+ffffffff81f91be0 d u2c_83
+ffffffff81f91de0 d u2c_83
+ffffffff81f91fe0 d u2c_84
+ffffffff81f921e0 d u2c_84
+ffffffff81f923e0 d u2c_84
+ffffffff81f925e0 d u2c_84
+ffffffff81f927e0 d u2c_85
+ffffffff81f929e0 d u2c_85
+ffffffff81f92be0 d u2c_85
+ffffffff81f92de0 d u2c_85
+ffffffff81f92fe0 d u2c_86
+ffffffff81f931e0 d u2c_86
+ffffffff81f933e0 d u2c_86
+ffffffff81f935e0 d u2c_86
+ffffffff81f937e0 d u2c_87
+ffffffff81f939e0 d u2c_87
+ffffffff81f93be0 d u2c_87
+ffffffff81f93de0 d u2c_87
+ffffffff81f93fe0 d u2c_88
+ffffffff81f941e0 d u2c_88
+ffffffff81f943e0 d u2c_88
+ffffffff81f945e0 d u2c_88
+ffffffff81f947e0 d u2c_8A
+ffffffff81f949e0 d u2c_8A
+ffffffff81f94be0 d u2c_8A
+ffffffff81f94de0 d u2c_8A
+ffffffff81f94fe0 d u2c_8C
+ffffffff81f951e0 d u2c_8C
+ffffffff81f953e0 d u2c_8C
+ffffffff81f955e0 d u2c_8C
+ffffffff81f957e0 d u2c_8D
+ffffffff81f959e0 d u2c_8D
+ffffffff81f95be0 d u2c_8D
+ffffffff81f95de0 d u2c_8D
+ffffffff81f95fe0 d u2c_8E
+ffffffff81f961e0 d u2c_8E
+ffffffff81f963e0 d u2c_8E
+ffffffff81f965e0 d u2c_8E
+ffffffff81f967e0 d u2c_8F
+ffffffff81f969e0 d u2c_8F
+ffffffff81f96be0 d u2c_8F
+ffffffff81f96de0 d u2c_8F
+ffffffff81f96fe0 d u2c_90
+ffffffff81f971e0 d u2c_90
+ffffffff81f973e0 d u2c_90
+ffffffff81f975e0 d u2c_90
+ffffffff81f977e0 d u2c_91
+ffffffff81f979e0 d u2c_91
+ffffffff81f97be0 d u2c_91
+ffffffff81f97de0 d u2c_91
+ffffffff81f97fe0 d u2c_92
+ffffffff81f981e0 d u2c_92
+ffffffff81f983e0 d u2c_92
+ffffffff81f985e0 d u2c_92
+ffffffff81f987e0 d u2c_97
+ffffffff81f989e0 d u2c_97
+ffffffff81f98be0 d u2c_97
+ffffffff81f98de0 d u2c_97
+ffffffff81f98fe0 d u2c_98
+ffffffff81f991e0 d u2c_98
+ffffffff81f993e0 d u2c_98
+ffffffff81f995e0 d u2c_98
+ffffffff81f997e0 d u2c_99
+ffffffff81f999e0 d u2c_99
+ffffffff81f99be0 d u2c_99
+ffffffff81f99de0 d u2c_99
+ffffffff81f99fe0 d u2c_9D
+ffffffff81f9a1e0 d u2c_9D
+ffffffff81f9a3e0 d u2c_9D
+ffffffff81f9a5e0 d u2c_9D
+ffffffff81f9a7e0 d u2c_9E
+ffffffff81f9a9e0 d u2c_9E
+ffffffff81f9abe0 d u2c_9E
+ffffffff81f9ade0 d u2c_9E
+ffffffff81f9afe0 d u2c_DC
+ffffffff81f9b1e0 d u2c_DC
+ffffffff81f9b3e0 d u2c_DC
+ffffffff81f9b5e0 d u2c_DC
+ffffffff81f9b7e0 d u2c_03
+ffffffff81f9b9e0 d u2c_03
+ffffffff81f9bbe0 d u2c_03
+ffffffff81f9bde0 d u2c_03
+ffffffff81f9bfe0 d u2c_04
+ffffffff81f9c1e0 d u2c_04
+ffffffff81f9c3e0 d u2c_04
+ffffffff81f9c5e0 d u2c_20
+ffffffff81f9c7e0 d u2c_20
+ffffffff81f9c9e0 d u2c_20
+ffffffff81f9cbe0 d u2c_20
+ffffffff81f9cde0 d u2c_21
+ffffffff81f9cfe0 d u2c_21
+ffffffff81f9d1e0 d u2c_21
+ffffffff81f9d3e0 d u2c_21
+ffffffff81f9d5e0 d u2c_22
+ffffffff81f9d7e0 d u2c_22
+ffffffff81f9d9e0 d u2c_22
+ffffffff81f9dbe0 d u2c_22
+ffffffff81f9dde0 d u2c_23
+ffffffff81f9dfe0 d u2c_23
+ffffffff81f9e1e0 d u2c_23
+ffffffff81f9e3e0 d u2c_23
+ffffffff81f9e5e0 d u2c_24
+ffffffff81f9e7e0 d u2c_24
+ffffffff81f9e9e0 d u2c_24
+ffffffff81f9ebe0 d u2c_25
+ffffffff81f9ede0 d u2c_25
+ffffffff81f9efe0 d u2c_25
+ffffffff81f9f1e0 d u2c_25
+ffffffff81f9f3e0 d u2c_26
+ffffffff81f9f5e0 d u2c_26
+ffffffff81f9f7e0 d u2c_26
+ffffffff81f9f9e0 d u2c_26
+ffffffff81f9fbe0 d u2c_32
+ffffffff81f9fde0 d u2c_32
+ffffffff81f9ffe0 d u2c_32
+ffffffff81fa01e0 d u2c_32
+ffffffff81fa03e0 d u2c_33
+ffffffff81fa05e0 d u2c_33
+ffffffff81fa07e0 d u2c_33
+ffffffff81fa09e0 d u2c_33
+ffffffff81fa0be0 d u2c_50
+ffffffff81fa0de0 d u2c_50
+ffffffff81fa0fe0 d u2c_50
+ffffffff81fa11e0 d u2c_50
+ffffffff81fa13e0 d u2c_53
+ffffffff81fa15e0 d u2c_53
+ffffffff81fa17e0 d u2c_53
+ffffffff81fa19e0 d u2c_53
+ffffffff81fa1be0 d u2c_5A
+ffffffff81fa1de0 d u2c_5A
+ffffffff81fa1fe0 d u2c_5A
+ffffffff81fa21e0 d u2c_5A
+ffffffff81fa23e0 d u2c_60
+ffffffff81fa25e0 d u2c_60
+ffffffff81fa27e0 d u2c_60
+ffffffff81fa29e0 d u2c_60
+ffffffff81fa2be0 d u2c_63
+ffffffff81fa2de0 d u2c_63
+ffffffff81fa2fe0 d u2c_63
+ffffffff81fa31e0 d u2c_63
+ffffffff81fa33e0 d u2c_65
+ffffffff81fa35e0 d u2c_65
+ffffffff81fa37e0 d u2c_65
+ffffffff81fa39e0 d u2c_65
+ffffffff81fa3be0 d u2c_68
+ffffffff81fa3de0 d u2c_68
+ffffffff81fa3fe0 d u2c_68
+ffffffff81fa41e0 d u2c_68
+ffffffff81fa43e0 d u2c_6A
+ffffffff81fa45e0 d u2c_6A
+ffffffff81fa47e0 d u2c_6A
+ffffffff81fa49e0 d u2c_6A
+ffffffff81fa4be0 d u2c_6B
+ffffffff81fa4de0 d u2c_6B
+ffffffff81fa4fe0 d u2c_6B
+ffffffff81fa51e0 d u2c_6B
+ffffffff81fa53e0 d u2c_6C
+ffffffff81fa55e0 d u2c_6C
+ffffffff81fa57e0 d u2c_6C
+ffffffff81fa59e0 d u2c_6C
+ffffffff81fa5be0 d u2c_74
+ffffffff81fa5de0 d u2c_74
+ffffffff81fa5fe0 d u2c_74
+ffffffff81fa61e0 d u2c_74
+ffffffff81fa63e0 d u2c_79
+ffffffff81fa65e0 d u2c_79
+ffffffff81fa67e0 d u2c_79
+ffffffff81fa69e0 d u2c_79
+ffffffff81fa6be0 d u2c_7B
+ffffffff81fa6de0 d u2c_7B
+ffffffff81fa6fe0 d u2c_7B
+ffffffff81fa71e0 d u2c_7B
+ffffffff81fa73e0 d u2c_7D
+ffffffff81fa75e0 d u2c_7D
+ffffffff81fa77e0 d u2c_7D
+ffffffff81fa79e0 d u2c_7D
+ffffffff81fa7be0 d u2c_7E
+ffffffff81fa7de0 d u2c_7E
+ffffffff81fa7fe0 d u2c_7E
+ffffffff81fa81e0 d u2c_7E
+ffffffff81fa83e0 d u2c_82
+ffffffff81fa85e0 d u2c_82
+ffffffff81fa87e0 d u2c_82
+ffffffff81fa89e0 d u2c_82
+ffffffff81fa8be0 d u2c_89
+ffffffff81fa8de0 d u2c_89
+ffffffff81fa8fe0 d u2c_89
+ffffffff81fa91e0 d u2c_89
+ffffffff81fa93e0 d u2c_8B
+ffffffff81fa95e0 d u2c_8B
+ffffffff81fa97e0 d u2c_8B
+ffffffff81fa99e0 d u2c_8B
+ffffffff81fa9be0 d u2c_93
+ffffffff81fa9de0 d u2c_93
+ffffffff81fa9fe0 d u2c_93
+ffffffff81faa1e0 d u2c_93
+ffffffff81faa3e0 d u2c_94
+ffffffff81faa5e0 d u2c_94
+ffffffff81faa7e0 d u2c_94
+ffffffff81faa9e0 d u2c_94
+ffffffff81faabe0 d u2c_95
+ffffffff81faade0 d u2c_95
+ffffffff81faafe0 d u2c_95
+ffffffff81fab1e0 d u2c_95
+ffffffff81fab3e0 d u2c_96
+ffffffff81fab5e0 d u2c_96
+ffffffff81fab7e0 d u2c_96
+ffffffff81fab9e0 d u2c_96
+ffffffff81fabbe0 d u2c_9A
+ffffffff81fabde0 d u2c_9A
+ffffffff81fabfe0 d u2c_9A
+ffffffff81fac1e0 d u2c_9A
+ffffffff81fac3e0 d u2c_9B
+ffffffff81fac5e0 d u2c_9B
+ffffffff81fac7e0 d u2c_9B
+ffffffff81fac9e0 d u2c_9B
+ffffffff81facbe0 d u2c_9C
+ffffffff81facde0 d u2c_9C
+ffffffff81facfe0 d u2c_9C
+ffffffff81fad1e0 d u2c_9C
+ffffffff81fad3e0 d u2c_9F
+ffffffff81fad5e0 d u2c_9F
+ffffffff81fad7e0 d u2c_9F
+ffffffff81fad9e0 d u2c_9F
+ffffffff81fadbe0 d u2c_F9
+ffffffff81fadde0 d u2c_F9
+ffffffff81fadfe0 d u2c_F9
+ffffffff81fae1e0 d u2c_F9
+ffffffff81fae3e0 d u2c_FA
+ffffffff81fae5e0 d u2c_FA
+ffffffff81fae7e0 d u2c_FA
+ffffffff81fae9e0 d u2c_FA
+ffffffff81faebe0 d u2c_FF
+ffffffff81faede0 d u2c_FF
+ffffffff81faefe0 d u2c_FF
+ffffffff81faf1e0 d u2c_FF
+ffffffff81faf3e0 d u2c_00hi
+ffffffff81faf4a0 d page_charset2uni
+ffffffff81fafca0 d page_charset2uni
+ffffffff81fb04a0 d page_charset2uni
+ffffffff81fb0ca0 d page_charset2uni
+ffffffff81fb14a0 d c2u_81
+ffffffff81fb16a0 d c2u_81
+ffffffff81fb18a0 d c2u_81
+ffffffff81fb1aa0 d c2u_88
+ffffffff81fb1ca0 d c2u_88
+ffffffff81fb1ea0 d c2u_88
+ffffffff81fb20a0 d c2u_89
+ffffffff81fb22a0 d c2u_89
+ffffffff81fb24a0 d c2u_89
+ffffffff81fb26a0 d c2u_8A
+ffffffff81fb28a0 d c2u_8A
+ffffffff81fb2aa0 d c2u_8A
+ffffffff81fb2ca0 d c2u_8B
+ffffffff81fb2ea0 d c2u_8B
+ffffffff81fb30a0 d c2u_8B
+ffffffff81fb32a0 d c2u_8C
+ffffffff81fb34a0 d c2u_8C
+ffffffff81fb36a0 d c2u_8C
+ffffffff81fb38a0 d c2u_8D
+ffffffff81fb3aa0 d c2u_8D
+ffffffff81fb3ca0 d c2u_8D
+ffffffff81fb3ea0 d c2u_8E
+ffffffff81fb40a0 d c2u_8E
+ffffffff81fb42a0 d c2u_8E
+ffffffff81fb44a0 d c2u_8F
+ffffffff81fb46a0 d c2u_8F
+ffffffff81fb48a0 d c2u_8F
+ffffffff81fb4aa0 d c2u_90
+ffffffff81fb4ca0 d c2u_90
+ffffffff81fb4ea0 d c2u_90
+ffffffff81fb50a0 d c2u_91
+ffffffff81fb52a0 d c2u_91
+ffffffff81fb54a0 d c2u_91
+ffffffff81fb56a0 d c2u_92
+ffffffff81fb58a0 d c2u_92
+ffffffff81fb5aa0 d c2u_92
+ffffffff81fb5ca0 d c2u_93
+ffffffff81fb5ea0 d c2u_93
+ffffffff81fb60a0 d c2u_93
+ffffffff81fb62a0 d c2u_94
+ffffffff81fb64a0 d c2u_94
+ffffffff81fb66a0 d c2u_94
+ffffffff81fb68a0 d c2u_95
+ffffffff81fb6aa0 d c2u_95
+ffffffff81fb6ca0 d c2u_95
+ffffffff81fb6ea0 d c2u_96
+ffffffff81fb70a0 d c2u_96
+ffffffff81fb72a0 d c2u_96
+ffffffff81fb74a0 d c2u_97
+ffffffff81fb76a0 d c2u_97
+ffffffff81fb78a0 d c2u_97
+ffffffff81fb7aa0 d c2u_98
+ffffffff81fb7ca0 d c2u_98
+ffffffff81fb7ea0 d c2u_98
+ffffffff81fb80a0 d c2u_99
+ffffffff81fb82a0 d c2u_99
+ffffffff81fb84a0 d c2u_99
+ffffffff81fb86a0 d c2u_9A
+ffffffff81fb88a0 d c2u_9A
+ffffffff81fb8aa0 d c2u_9A
+ffffffff81fb8ca0 d c2u_9B
+ffffffff81fb8ea0 d c2u_9B
+ffffffff81fb90a0 d c2u_9B
+ffffffff81fb92a0 d c2u_9C
+ffffffff81fb94a0 d c2u_9C
+ffffffff81fb96a0 d c2u_9C
+ffffffff81fb98a0 d c2u_9D
+ffffffff81fb9aa0 d c2u_9D
+ffffffff81fb9ca0 d c2u_9D
+ffffffff81fb9ea0 d c2u_9E
+ffffffff81fba0a0 d c2u_9E
+ffffffff81fba2a0 d c2u_9E
+ffffffff81fba4a0 d c2u_9F
+ffffffff81fba6a0 d c2u_9F
+ffffffff81fba8a0 d c2u_9F
+ffffffff81fbaaa0 d c2u_E0
+ffffffff81fbaca0 d c2u_E0
+ffffffff81fbaea0 d c2u_E0
+ffffffff81fbb0a0 d c2u_E0
+ffffffff81fbb2a0 d c2u_E1
+ffffffff81fbb4a0 d c2u_E1
+ffffffff81fbb6a0 d c2u_E1
+ffffffff81fbb8a0 d c2u_E1
+ffffffff81fbbaa0 d c2u_E2
+ffffffff81fbbca0 d c2u_E2
+ffffffff81fbbea0 d c2u_E2
+ffffffff81fbc0a0 d c2u_E2
+ffffffff81fbc2a0 d c2u_E3
+ffffffff81fbc4a0 d c2u_E3
+ffffffff81fbc6a0 d c2u_E3
+ffffffff81fbc8a0 d c2u_E3
+ffffffff81fbcaa0 d c2u_E4
+ffffffff81fbcca0 d c2u_E4
+ffffffff81fbcea0 d c2u_E4
+ffffffff81fbd0a0 d c2u_E4
+ffffffff81fbd2a0 d c2u_E5
+ffffffff81fbd4a0 d c2u_E5
+ffffffff81fbd6a0 d c2u_E5
+ffffffff81fbd8a0 d c2u_E5
+ffffffff81fbdaa0 d c2u_E6
+ffffffff81fbdca0 d c2u_E6
+ffffffff81fbdea0 d c2u_E6
+ffffffff81fbe0a0 d c2u_E6
+ffffffff81fbe2a0 d c2u_E7
+ffffffff81fbe4a0 d c2u_E7
+ffffffff81fbe6a0 d c2u_E7
+ffffffff81fbe8a0 d c2u_E7
+ffffffff81fbeaa0 d c2u_E8
+ffffffff81fbeca0 d c2u_E8
+ffffffff81fbeea0 d c2u_E8
+ffffffff81fbf0a0 d c2u_E8
+ffffffff81fbf2a0 d c2u_E9
+ffffffff81fbf4a0 d c2u_E9
+ffffffff81fbf6a0 d c2u_E9
+ffffffff81fbf8a0 d c2u_E9
+ffffffff81fbfaa0 d c2u_ED
+ffffffff81fbfca0 d c2u_ED
+ffffffff81fbfea0 d c2u_ED
+ffffffff81fc00a0 d c2u_ED
+ffffffff81fc02a0 d c2u_EE
+ffffffff81fc04a0 d c2u_EE
+ffffffff81fc06a0 d c2u_EE
+ffffffff81fc08a0 d c2u_EE
+ffffffff81fc0aa0 d c2u_FA
+ffffffff81fc0ca0 d c2u_FA
+ffffffff81fc0ea0 d c2u_FA
+ffffffff81fc10a0 d c2u_FB
+ffffffff81fc12a0 d c2u_FB
+ffffffff81fc14a0 d c2u_FB
+ffffffff81fc16a0 d c2u_82
+ffffffff81fc18a0 d c2u_82
+ffffffff81fc1aa0 d c2u_82
+ffffffff81fc1ca0 d c2u_83
+ffffffff81fc1ea0 d c2u_83
+ffffffff81fc20a0 d c2u_83
+ffffffff81fc22a0 d c2u_84
+ffffffff81fc24a0 d c2u_84
+ffffffff81fc26a0 d c2u_84
+ffffffff81fc28a0 d c2u_87
+ffffffff81fc2aa0 d c2u_87
+ffffffff81fc2ca0 d c2u_87
+ffffffff81fc2ea0 d c2u_EA
+ffffffff81fc30a0 d c2u_EA
+ffffffff81fc32a0 d c2u_EA
+ffffffff81fc34a0 d c2u_EA
+ffffffff81fc36a0 d c2u_FC
+ffffffff81fc38a0 d c2u_FC
+ffffffff81fc3aa0 d c2u_FC
+ffffffff81fc3ca0 d sjisibm2euc_map
+ffffffff81fc3fb0 d euc2sjisibm_g3upper_map
+ffffffff81fc4090 d euc2sjisibm_jisx0212_map
+ffffffff81fc44f0 d u2c_00
+ffffffff81fc46f0 d u2c_01
+ffffffff81fc48f0 d u2c_01
+ffffffff81fc4af0 d u2c_02
+ffffffff81fc4cf0 d u2c_02
+ffffffff81fc4ef0 d u2c_02
+ffffffff81fc50f0 d u2c_31
+ffffffff81fc52f0 d u2c_31
+ffffffff81fc54f0 d u2c_31
+ffffffff81fc56f0 d u2c_FE
+ffffffff81fc58f0 d u2c_FE
+ffffffff81fc5af0 d c2u_85
+ffffffff81fc5cf0 d c2u_85
+ffffffff81fc5ef0 d c2u_86
+ffffffff81fc60f0 d c2u_86
+ffffffff81fc62f0 d c2u_A0
+ffffffff81fc64f0 d c2u_A0
+ffffffff81fc66f0 d c2u_A1
+ffffffff81fc68f0 d c2u_A1
+ffffffff81fc6af0 d c2u_A1
+ffffffff81fc6cf0 d c2u_A2
+ffffffff81fc6ef0 d c2u_A2
+ffffffff81fc70f0 d c2u_A2
+ffffffff81fc72f0 d c2u_A3
+ffffffff81fc74f0 d c2u_A3
+ffffffff81fc76f0 d c2u_A3
+ffffffff81fc78f0 d c2u_B0
+ffffffff81fc7af0 d c2u_B0
+ffffffff81fc7cf0 d c2u_B0
+ffffffff81fc7ef0 d c2u_B1
+ffffffff81fc80f0 d c2u_B1
+ffffffff81fc82f0 d c2u_B1
+ffffffff81fc84f0 d c2u_B2
+ffffffff81fc86f0 d c2u_B2
+ffffffff81fc88f0 d c2u_B2
+ffffffff81fc8af0 d c2u_B3
+ffffffff81fc8cf0 d c2u_B3
+ffffffff81fc8ef0 d c2u_B3
+ffffffff81fc90f0 d c2u_B4
+ffffffff81fc92f0 d c2u_B4
+ffffffff81fc94f0 d c2u_B4
+ffffffff81fc96f0 d c2u_B5
+ffffffff81fc98f0 d c2u_B5
+ffffffff81fc9af0 d c2u_B5
+ffffffff81fc9cf0 d c2u_B6
+ffffffff81fc9ef0 d c2u_B6
+ffffffff81fca0f0 d c2u_B6
+ffffffff81fca2f0 d c2u_B7
+ffffffff81fca4f0 d c2u_B7
+ffffffff81fca6f0 d c2u_B7
+ffffffff81fca8f0 d c2u_B8
+ffffffff81fcaaf0 d c2u_B8
+ffffffff81fcacf0 d c2u_B8
+ffffffff81fcaef0 d c2u_B9
+ffffffff81fcb0f0 d c2u_B9
+ffffffff81fcb2f0 d c2u_B9
+ffffffff81fcb4f0 d c2u_BA
+ffffffff81fcb6f0 d c2u_BA
+ffffffff81fcb8f0 d c2u_BA
+ffffffff81fcbaf0 d c2u_BB
+ffffffff81fcbcf0 d c2u_BB
+ffffffff81fcbef0 d c2u_BB
+ffffffff81fcc0f0 d c2u_BC
+ffffffff81fcc2f0 d c2u_BC
+ffffffff81fcc4f0 d c2u_BC
+ffffffff81fcc6f0 d c2u_BD
+ffffffff81fcc8f0 d c2u_BD
+ffffffff81fccaf0 d c2u_BD
+ffffffff81fcccf0 d c2u_BE
+ffffffff81fccef0 d c2u_BE
+ffffffff81fcd0f0 d c2u_BE
+ffffffff81fcd2f0 d c2u_BF
+ffffffff81fcd4f0 d c2u_BF
+ffffffff81fcd6f0 d c2u_BF
+ffffffff81fcd8f0 d c2u_C0
+ffffffff81fcdaf0 d c2u_C0
+ffffffff81fcdcf0 d c2u_C0
+ffffffff81fcdef0 d c2u_C1
+ffffffff81fce0f0 d c2u_C1
+ffffffff81fce2f0 d c2u_C1
+ffffffff81fce4f0 d c2u_C2
+ffffffff81fce6f0 d c2u_C2
+ffffffff81fce8f0 d c2u_C2
+ffffffff81fceaf0 d c2u_C3
+ffffffff81fcecf0 d c2u_C3
+ffffffff81fceef0 d c2u_C3
+ffffffff81fcf0f0 d c2u_C4
+ffffffff81fcf2f0 d c2u_C4
+ffffffff81fcf4f0 d c2u_C4
+ffffffff81fcf6f0 d c2u_C5
+ffffffff81fcf8f0 d c2u_C5
+ffffffff81fcfaf0 d c2u_C5
+ffffffff81fcfcf0 d c2u_C6
+ffffffff81fcfef0 d c2u_C6
+ffffffff81fd00f0 d c2u_C6
+ffffffff81fd02f0 d c2u_C7
+ffffffff81fd04f0 d c2u_C7
+ffffffff81fd06f0 d c2u_C8
+ffffffff81fd08f0 d c2u_C8
+ffffffff81fd0af0 d c2u_C9
+ffffffff81fd0cf0 d c2u_C9
+ffffffff81fd0ef0 d c2u_CA
+ffffffff81fd10f0 d c2u_CA
+ffffffff81fd12f0 d c2u_CA
+ffffffff81fd14f0 d c2u_CB
+ffffffff81fd16f0 d c2u_CB
+ffffffff81fd18f0 d c2u_CB
+ffffffff81fd1af0 d c2u_CC
+ffffffff81fd1cf0 d c2u_CC
+ffffffff81fd1ef0 d c2u_CC
+ffffffff81fd20f0 d c2u_CD
+ffffffff81fd22f0 d c2u_CD
+ffffffff81fd24f0 d c2u_CD
+ffffffff81fd26f0 d c2u_CE
+ffffffff81fd28f0 d c2u_CE
+ffffffff81fd2af0 d c2u_CE
+ffffffff81fd2cf0 d c2u_CF
+ffffffff81fd2ef0 d c2u_CF
+ffffffff81fd30f0 d c2u_CF
+ffffffff81fd32f0 d c2u_D0
+ffffffff81fd34f0 d c2u_D0
+ffffffff81fd36f0 d c2u_D0
+ffffffff81fd38f0 d c2u_D1
+ffffffff81fd3af0 d c2u_D1
+ffffffff81fd3cf0 d c2u_D1
+ffffffff81fd3ef0 d c2u_D2
+ffffffff81fd40f0 d c2u_D2
+ffffffff81fd42f0 d c2u_D2
+ffffffff81fd44f0 d c2u_D3
+ffffffff81fd46f0 d c2u_D3
+ffffffff81fd48f0 d c2u_D3
+ffffffff81fd4af0 d c2u_D4
+ffffffff81fd4cf0 d c2u_D4
+ffffffff81fd4ef0 d c2u_D4
+ffffffff81fd50f0 d c2u_D5
+ffffffff81fd52f0 d c2u_D5
+ffffffff81fd54f0 d c2u_D5
+ffffffff81fd56f0 d c2u_D6
+ffffffff81fd58f0 d c2u_D6
+ffffffff81fd5af0 d c2u_D6
+ffffffff81fd5cf0 d c2u_D7
+ffffffff81fd5ef0 d c2u_D7
+ffffffff81fd60f0 d c2u_D7
+ffffffff81fd62f0 d c2u_D8
+ffffffff81fd64f0 d c2u_D8
+ffffffff81fd66f0 d c2u_D8
+ffffffff81fd68f0 d c2u_D9
+ffffffff81fd6af0 d c2u_D9
+ffffffff81fd6cf0 d c2u_D9
+ffffffff81fd6ef0 d c2u_DA
+ffffffff81fd70f0 d c2u_DA
+ffffffff81fd72f0 d c2u_DA
+ffffffff81fd74f0 d c2u_DB
+ffffffff81fd76f0 d c2u_DB
+ffffffff81fd78f0 d c2u_DB
+ffffffff81fd7af0 d c2u_DC
+ffffffff81fd7cf0 d c2u_DC
+ffffffff81fd7ef0 d c2u_DC
+ffffffff81fd80f0 d c2u_DD
+ffffffff81fd82f0 d c2u_DD
+ffffffff81fd84f0 d c2u_DD
+ffffffff81fd86f0 d c2u_DE
+ffffffff81fd88f0 d c2u_DE
+ffffffff81fd8af0 d c2u_DE
+ffffffff81fd8cf0 d c2u_DF
+ffffffff81fd8ef0 d c2u_DF
+ffffffff81fd90f0 d c2u_DF
+ffffffff81fd92f0 d c2u_EB
+ffffffff81fd94f0 d c2u_EB
+ffffffff81fd96f0 d c2u_EB
+ffffffff81fd98f0 d c2u_EC
+ffffffff81fd9af0 d c2u_EC
+ffffffff81fd9cf0 d c2u_EC
+ffffffff81fd9ef0 d c2u_EF
+ffffffff81fda0f0 d c2u_EF
+ffffffff81fda2f0 d c2u_EF
+ffffffff81fda4f0 d c2u_F0
+ffffffff81fda6f0 d c2u_F0
+ffffffff81fda8f0 d c2u_F0
+ffffffff81fdaaf0 d c2u_F1
+ffffffff81fdacf0 d c2u_F1
+ffffffff81fdaef0 d c2u_F1
+ffffffff81fdb0f0 d c2u_F2
+ffffffff81fdb2f0 d c2u_F2
+ffffffff81fdb4f0 d c2u_F2
+ffffffff81fdb6f0 d c2u_F3
+ffffffff81fdb8f0 d c2u_F3
+ffffffff81fdbaf0 d c2u_F3
+ffffffff81fdbcf0 d c2u_F4
+ffffffff81fdbef0 d c2u_F4
+ffffffff81fdc0f0 d c2u_F4
+ffffffff81fdc2f0 d c2u_F5
+ffffffff81fdc4f0 d c2u_F5
+ffffffff81fdc6f0 d c2u_F5
+ffffffff81fdc8f0 d c2u_F6
+ffffffff81fdcaf0 d c2u_F6
+ffffffff81fdccf0 d c2u_F6
+ffffffff81fdcef0 d c2u_F7
+ffffffff81fdd0f0 d c2u_F7
+ffffffff81fdd2f0 d c2u_F7
+ffffffff81fdd4f0 d c2u_A4
+ffffffff81fdd6f0 d c2u_A4
+ffffffff81fdd8f0 d c2u_A4
+ffffffff81fddaf0 d c2u_A5
+ffffffff81fddcf0 d c2u_A5
+ffffffff81fddef0 d c2u_A5
+ffffffff81fde0f0 d c2u_A6
+ffffffff81fde2f0 d c2u_A6
+ffffffff81fde4f0 d c2u_A6
+ffffffff81fde6f0 d c2u_A7
+ffffffff81fde8f0 d c2u_A7
+ffffffff81fdeaf0 d c2u_A7
+ffffffff81fdecf0 d c2u_A8
+ffffffff81fdeef0 d c2u_A8
+ffffffff81fdf0f0 d c2u_A8
+ffffffff81fdf2f0 d c2u_A9
+ffffffff81fdf4f0 d c2u_A9
+ffffffff81fdf6f0 d c2u_A9
+ffffffff81fdf8f0 d c2u_AA
+ffffffff81fdfaf0 d c2u_AA
+ffffffff81fdfcf0 d c2u_AA
+ffffffff81fdfef0 d c2u_AB
+ffffffff81fe00f0 d c2u_AB
+ffffffff81fe02f0 d c2u_AB
+ffffffff81fe04f0 d c2u_AC
+ffffffff81fe06f0 d c2u_AC
+ffffffff81fe08f0 d c2u_AC
+ffffffff81fe0af0 d c2u_AD
+ffffffff81fe0cf0 d c2u_AD
+ffffffff81fe0ef0 d c2u_AD
+ffffffff81fe10f0 d c2u_AE
+ffffffff81fe12f0 d c2u_AE
+ffffffff81fe14f0 d c2u_AE
+ffffffff81fe16f0 d c2u_AF
+ffffffff81fe18f0 d c2u_AF
+ffffffff81fe1af0 d c2u_AF
+ffffffff81fe1cf0 d c2u_F8
+ffffffff81fe1ef0 d c2u_F8
+ffffffff81fe20f0 d c2u_F8
+ffffffff81fe22f0 d c2u_F9
+ffffffff81fe24f0 d c2u_F9
+ffffffff81fe26f0 d c2u_F9
+ffffffff81fe28f0 d c2u_FD
+ffffffff81fe2af0 d c2u_FD
+ffffffff81fe2cf0 d c2u_FE
+ffffffff81fe2ef0 d u2c_AC
+ffffffff81fe30f0 d u2c_AD
+ffffffff81fe32f0 d u2c_AE
+ffffffff81fe34f0 d u2c_AF
+ffffffff81fe36f0 d u2c_B0
+ffffffff81fe38f0 d u2c_B1
+ffffffff81fe3af0 d u2c_B2
+ffffffff81fe3cf0 d u2c_B3
+ffffffff81fe3ef0 d u2c_B4
+ffffffff81fe40f0 d u2c_B5
+ffffffff81fe42f0 d u2c_B6
+ffffffff81fe44f0 d u2c_B7
+ffffffff81fe46f0 d u2c_B8
+ffffffff81fe48f0 d u2c_B9
+ffffffff81fe4af0 d u2c_BA
+ffffffff81fe4cf0 d u2c_BB
+ffffffff81fe4ef0 d u2c_BC
+ffffffff81fe50f0 d u2c_BD
+ffffffff81fe52f0 d u2c_BE
+ffffffff81fe54f0 d u2c_BF
+ffffffff81fe56f0 d u2c_C0
+ffffffff81fe58f0 d u2c_C1
+ffffffff81fe5af0 d u2c_C2
+ffffffff81fe5cf0 d u2c_C3
+ffffffff81fe5ef0 d u2c_C4
+ffffffff81fe60f0 d u2c_C5
+ffffffff81fe62f0 d u2c_C6
+ffffffff81fe64f0 d u2c_C7
+ffffffff81fe66f0 d u2c_C8
+ffffffff81fe68f0 d u2c_C9
+ffffffff81fe6af0 d u2c_CA
+ffffffff81fe6cf0 d u2c_CB
+ffffffff81fe6ef0 d u2c_CC
+ffffffff81fe70f0 d u2c_CD
+ffffffff81fe72f0 d u2c_CE
+ffffffff81fe74f0 d u2c_CF
+ffffffff81fe76f0 d u2c_D0
+ffffffff81fe78f0 d u2c_D1
+ffffffff81fe7af0 d u2c_D2
+ffffffff81fe7cf0 d u2c_D3
+ffffffff81fe7ef0 d u2c_D4
+ffffffff81fe80f0 d u2c_D5
+ffffffff81fe82f0 d u2c_D6
+ffffffff81fe84f0 d u2c_11
+ffffffff81fe86f0 d u2c_D7
+ffffffff81fe88f0 d page1e
+ffffffff81fe89f0 d page1e
+ffffffff81fe8af0 d page1e
+ffffffff81fe8bf0 d page26
+ffffffff81fe8cf0 d page26
+ffffffff81fe8df0 d pagef8
+ffffffff81fe8ef0 d pagef8
+ffffffff81fe8ff0 d pagef8
+ffffffff81fe90f0 d pagef8
+ffffffff81fe91f0 d pagef8
+ffffffff81fe92f0 d page14
+ffffffff81fe93f0 d page15
+ffffffff81fe94f0 d page16
+ffffffff81fe95f0 d pagefb
+ffffffff81fe96f0 d utf8agetab
+ffffffff81fe9750 d utf8nfdicfdata
+ffffffff81fe9810 d utf8nfdidata
+ffffffff81fe98d0 d utf8data
+ffffffff81ff93d0 d fuse_dev_fiq_ops
+ffffffff81ff93f0 d fuse_dev_operations
+ffffffff81ff9500 d __param_str_allow_sys_admin_access
+ffffffff81ff9540 d fuse_common_inode_operations.llvm.10129488179531688627
+ffffffff81ff9600 d fuse_dir_inode_operations
+ffffffff81ff96c0 d fuse_dir_operations
+ffffffff81ff9800 d fuse_symlink_inode_operations
+ffffffff81ff98c0 d fuse_symlink_aops
+ffffffff81ff9980 d fuse_root_dentry_operations
+ffffffff81ff9a40 d fuse_dentry_operations
+ffffffff81ff9b00 d fuse_file_operations
+ffffffff81ff9c10 d fuse_file_aops
+ffffffff81ff9cb0 d fuse_file_vm_ops
+ffffffff81ff9d40 d __param_str_max_user_bgreq
+ffffffff81ff9d58 d __param_ops_max_user_bgreq
+ffffffff81ff9d80 d __param_str_max_user_congthresh
+ffffffff81ff9da0 d __param_ops_max_user_congthresh
+ffffffff81ff9dc0 d fuse_context_submount_ops
+ffffffff81ff9df0 d fuse_super_operations
+ffffffff81ff9ea0 d fuse_export_operations
+ffffffff81ff9f18 d bpf_features_group
+ffffffff81ff9f40 d bpf_attr_group
+ffffffff81ff9f70 d fuse_fs_parameters
+ffffffff81ffa130 d fuse_context_ops
+ffffffff81ffa160 d fuse_ctl_waiting_ops
+ffffffff81ffa270 d fuse_ctl_abort_ops
+ffffffff81ffa380 d fuse_conn_max_background_ops
+ffffffff81ffa490 d fuse_conn_congestion_threshold_ops
+ffffffff81ffa5a0 d fuse_ctl_context_ops
+ffffffff81ffa5d0 d fuse_ctl_fill_super.empty_descr
+ffffffff81ffa5e8 d fuse_xattr_handler
+ffffffff81ffa618 d fuse_no_acl_access_xattr_handler
+ffffffff81ffa648 d fuse_no_acl_default_xattr_handler
+ffffffff81ffa680 d debugfs_dir_inode_operations
+ffffffff81ffa740 d debugfs_symlink_inode_operations
+ffffffff81ffa800 d debugfs_file_inode_operations
+ffffffff81ffa8c0 d debug_fill_super.debug_files
+ffffffff81ffa8d8 d debugfs_super_operations
+ffffffff81ffa9c0 d debugfs_dops
+ffffffff81ffaa80 d fops_u8
+ffffffff81ffab90 d fops_u8_ro
+ffffffff81ffaca0 d fops_u8_wo
+ffffffff81ffadb0 d fops_u16
+ffffffff81ffaec0 d fops_u16_ro
+ffffffff81ffafd0 d fops_u16_wo
+ffffffff81ffb0e0 d fops_u32
+ffffffff81ffb1f0 d fops_u32_ro
+ffffffff81ffb300 d fops_u32_wo
+ffffffff81ffb410 d fops_u64
+ffffffff81ffb520 d fops_u64_ro
+ffffffff81ffb630 d fops_u64_wo
+ffffffff81ffb740 d fops_ulong
+ffffffff81ffb850 d fops_ulong_ro
+ffffffff81ffb960 d fops_ulong_wo
+ffffffff81ffba70 d fops_x8
+ffffffff81ffbb80 d fops_x8_ro
+ffffffff81ffbc90 d fops_x8_wo
+ffffffff81ffbda0 d fops_x16
+ffffffff81ffbeb0 d fops_x16_ro
+ffffffff81ffbfc0 d fops_x16_wo
+ffffffff81ffc0d0 d fops_x32
+ffffffff81ffc1e0 d fops_x32_ro
+ffffffff81ffc2f0 d fops_x32_wo
+ffffffff81ffc400 d fops_x64
+ffffffff81ffc510 d fops_x64_ro
+ffffffff81ffc620 d fops_x64_wo
+ffffffff81ffc730 d fops_size_t
+ffffffff81ffc840 d fops_size_t_ro
+ffffffff81ffc950 d fops_size_t_wo
+ffffffff81ffca60 d fops_atomic_t
+ffffffff81ffcb70 d fops_atomic_t_ro
+ffffffff81ffcc80 d fops_atomic_t_wo
+ffffffff81ffcd90 d fops_bool
+ffffffff81ffcea0 d fops_bool_ro
+ffffffff81ffcfb0 d fops_bool_wo
+ffffffff81ffd0c0 d fops_str
+ffffffff81ffd1d0 d fops_str_ro
+ffffffff81ffd2e0 d fops_str_wo
+ffffffff81ffd3f0 d fops_blob.llvm.9285388265851924803
+ffffffff81ffd500 d u32_array_fops
+ffffffff81ffd610 d debugfs_regset32_fops
+ffffffff81ffd720 d debugfs_devm_entry_ops
+ffffffff81ffd830 d debugfs_full_proxy_file_operations
+ffffffff81ffd940 d debugfs_noop_file_operations
+ffffffff81ffda50 d debugfs_open_proxy_file_operations
+ffffffff81ffdb60 d tracefs_file_operations
+ffffffff81ffdc80 d tracefs_dir_inode_operations
+ffffffff81ffdd40 d trace_fill_super.trace_files
+ffffffff81ffdd58 d tracefs_super_operations
+ffffffff81ffde18 d erofs_sops
+ffffffff81ffded0 d trace_raw_output_erofs_readpage.symbols
+ffffffff81ffdf00 d trace_raw_output_erofs__map_blocks_enter.__flags
+ffffffff81ffdf20 d trace_raw_output_erofs__map_blocks_exit.__flags
+ffffffff81ffdf40 d trace_raw_output_erofs__map_blocks_exit.__flags.43
+ffffffff81ffdf80 d erofs_anon_context_ops
+ffffffff81ffdfb0 d erofs_context_ops
+ffffffff81ffdfe0 d erofs_fc_fill_pseudo_super.empty_descr
+ffffffff81ffe000 d erofs_fs_parameters
+ffffffff81ffe120 d erofs_param_cache_strategy
+ffffffff81ffe160 d erofs_dax_param_enums
+ffffffff81ffe190 d erofs_export_ops
+ffffffff81ffe1e8 d managed_cache_aops
+ffffffff81ffe2c0 d erofs_generic_iops
+ffffffff81ffe380 d erofs_symlink_iops
+ffffffff81ffe440 d erofs_fast_symlink_iops
+ffffffff81ffe500 d erofs_iomap_ops
+ffffffff81ffe520 d erofs_raw_access_aops
+ffffffff81ffe5c0 d erofs_file_fops
+ffffffff81ffe700 d erofs_dir_iops
+ffffffff81ffe7c0 d erofs_dir_fops
+ffffffff81ffe8d0 d erofs_attr_ops
+ffffffff81ffe8e0 d erofs_group
+ffffffff81ffe908 d erofs_feat_group
+ffffffff81ffe930 d erofs_xattr_user_handler
+ffffffff81ffe960 d erofs_xattr_trusted_handler
+ffffffff81ffe990 d erofs_xattr_security_handler
+ffffffff81ffe9c0 d find_xattr_handlers
+ffffffff81ffe9e0 d list_xattr_handlers
+ffffffff81ffea00 d erofs_xattr_handler.xattr_handler_map
+ffffffff81ffea40 d decompressors
+ffffffff81ffea80 d z_erofs_iomap_report_ops
+ffffffff81ffeaa0 d z_erofs_aops
+ffffffff81ffeb40 d lockdown_reasons
+ffffffff81ffec30 d securityfs_context_ops
+ffffffff81ffec60 d securityfs_fill_super.files
+ffffffff81ffec78 d securityfs_super_operations
+ffffffff81ffed28 d lsm_ops
+ffffffff81ffee38 d str__avc__trace_system_name
+ffffffff81ffee40 d secclass_map
+ffffffff82005660 d selinux_fs_parameters
+ffffffff820057e0 d sel_context_ops
+ffffffff82005810 d sel_fill_super.selinux_files
+ffffffff82005a38 d sel_load_ops
+ffffffff82005b48 d sel_enforce_ops
+ffffffff82005c58 d transaction_ops
+ffffffff82005d68 d sel_policyvers_ops
+ffffffff82005e78 d sel_commit_bools_ops
+ffffffff82005f88 d sel_mls_ops
+ffffffff82006098 d sel_disable_ops
+ffffffff820061a8 d sel_checkreqprot_ops
+ffffffff820062b8 d sel_handle_unknown_ops
+ffffffff820063c8 d sel_handle_status_ops
+ffffffff820064d8 d sel_policy_ops
+ffffffff820065e8 d sel_transition_ops
+ffffffff820066f8 d sel_bool_ops
+ffffffff82006808 d sel_class_ops
+ffffffff82006918 d sel_perm_ops
+ffffffff82006a30 d write_op
+ffffffff82006aa8 d sel_mmap_policy_ops
+ffffffff82006b38 d sel_avc_cache_threshold_ops
+ffffffff82006c48 d sel_avc_hash_stats_ops
+ffffffff82006d58 d sel_avc_cache_stats_ops
+ffffffff82006e68 d sel_avc_cache_stats_seq_ops
+ffffffff82006e88 d sel_sidtab_hash_stats_ops
+ffffffff82006f98 d sel_initcon_ops
+ffffffff820070a8 d sel_policycap_ops
+ffffffff820071c0 d nlmsg_xfrm_perms
+ffffffff82007290 d nlmsg_audit_perms
+ffffffff820073b0 d spec_order
+ffffffff820073d0 d read_f
+ffffffff82007410 d write_f
+ffffffff82007450 d policydb_compat
+ffffffff82007540 d index_f
+ffffffff82007620 d selinux_policycap_names
+ffffffff82007660 d initial_sid_to_string
+ffffffff82007740 d crypto_seq_ops.llvm.2359588137057508239
+ffffffff82007760 d crypto_aead_type.llvm.14561954872809239465
+ffffffff820077a8 d crypto_skcipher_type.llvm.6977713391590303700
+ffffffff820077f0 d crypto_ahash_type.llvm.2951577981208258516
+ffffffff82007838 d crypto_shash_type.llvm.7515470798978635269
+ffffffff82007880 d crypto_akcipher_type
+ffffffff820078c8 d crypto_kpp_type
+ffffffff82007910 d crypto_acomp_type
+ffffffff82007958 d crypto_scomp_type
+ffffffff820079a0 d __param_str_notests
+ffffffff820079c0 d __param_str_panic_on_fail
+ffffffff820079e0 d md5_zero_message_hash
+ffffffff820079f0 d sha1_zero_message_hash
+ffffffff82007a10 d sha224_zero_message_hash
+ffffffff82007a30 d sha256_zero_message_hash
+ffffffff82007a50 d sha384_zero_message_hash
+ffffffff82007a80 d sha512_zero_message_hash
+ffffffff82007ac0 d sha512_K
+ffffffff82007d40 d gf128mul_table_be
+ffffffff82007f40 d gf128mul_table_le
+ffffffff82008140 d hctr2_hash_message.padding
+ffffffff82008190 d __param_str_cryptd_max_cpu_qlen
+ffffffff820081c0 d crypto_ft_tab
+ffffffff820091c0 d crypto_it_tab
+ffffffff8200a1c0 d crypto_fl_tab
+ffffffff8200b1c0 d crypto_il_tab
+ffffffff8200c1c0 d crypto_rng_type.llvm.6640369945595925547
+ffffffff8200c208 d __param_str_dbg
+ffffffff8200c220 d drbg_cores
+ffffffff8200c640 d drbg_hmac_ops
+ffffffff8200c660 d bdev_sops
+ffffffff8200c710 d def_blk_fops
+ffffffff8200c820 d def_blk_aops
+ffffffff8200cca0 d elv_sysfs_ops
+ffffffff8200ccb0 d blk_op_name
+ffffffff8200cdd0 d blk_errors
+ffffffff8200cef8 d queue_sysfs_ops
+ffffffff8200cf08 d blk_mq_hw_sysfs_ops
+ffffffff8200cf18 d default_hw_ctx_group
+ffffffff8200cf50 d disk_type
+ffffffff8200cf80 d diskstats_op
+ffffffff8200cfa0 d partitions_op
+ffffffff8200cfc0 d __param_str_events_dfl_poll_msecs
+ffffffff8200cfe0 d disk_events_dfl_poll_msecs_param_ops
+ffffffff8200d000 d blk_ia_range_sysfs_ops
+ffffffff8200d010 d blk_ia_range_group
+ffffffff8200d038 d blkcg_root_css
+ffffffff8200d040 d __param_str_blkcg_debug_stats
+ffffffff8200d05d d str__iocost__trace_system_name
+ffffffff8200d070 d qos_ctrl_tokens
+ffffffff8200d0a0 d qos_tokens
+ffffffff8200d110 d vrate_adj_pct
+ffffffff8200d1f0 d autop
+ffffffff8200d470 d cost_ctrl_tokens
+ffffffff8200d4a0 d i_lcoef_tokens
+ffffffff8200d510 d deadline_queue_debugfs_attrs
+ffffffff8200d858 d deadline_read0_fifo_seq_ops
+ffffffff8200d878 d deadline_write0_fifo_seq_ops
+ffffffff8200d898 d deadline_read1_fifo_seq_ops
+ffffffff8200d8b8 d deadline_write1_fifo_seq_ops
+ffffffff8200d8d8 d deadline_read2_fifo_seq_ops
+ffffffff8200d8f8 d deadline_write2_fifo_seq_ops
+ffffffff8200d918 d deadline_dispatch0_seq_ops
+ffffffff8200d938 d deadline_dispatch1_seq_ops
+ffffffff8200d958 d deadline_dispatch2_seq_ops
+ffffffff8200d980 d kyber_queue_debugfs_attrs
+ffffffff8200da70 d kyber_hctx_debugfs_attrs
+ffffffff8200dc30 d kyber_latency_targets
+ffffffff8200dc50 d kyber_domain_names
+ffffffff8200dc70 d kyber_latency_type_names
+ffffffff8200dc80 d kyber_read_rqs_seq_ops
+ffffffff8200dca0 d kyber_write_rqs_seq_ops
+ffffffff8200dcc0 d kyber_discard_rqs_seq_ops
+ffffffff8200dce0 d kyber_other_rqs_seq_ops
+ffffffff8200dd00 d bfq_timeout
+ffffffff8200dd10 d zone_cond_name
+ffffffff8200dd90 d cmd_flag_name
+ffffffff8200de70 d rqf_name
+ffffffff8200df30 d blk_mq_debugfs_queue_attrs
+ffffffff8200e020 d blk_mq_debugfs_hctx_attrs
+ffffffff8200e250 d blk_mq_rq_state_name_array
+ffffffff8200e268 d blk_mq_debugfs_fops
+ffffffff8200e378 d queue_requeue_list_seq_ops
+ffffffff8200e3a0 d blk_queue_flag_name
+ffffffff8200e490 d hctx_dispatch_seq_ops
+ffffffff8200e4b0 d alloc_policy_name
+ffffffff8200e4c0 d hctx_flag_name
+ffffffff8200e500 d hctx_types
+ffffffff8200e520 d blk_mq_debugfs_ctx_attrs
+ffffffff8200e5c0 d ctx_default_rq_list_seq_ops
+ffffffff8200e5e0 d ctx_read_rq_list_seq_ops
+ffffffff8200e600 d ctx_poll_rq_list_seq_ops
+ffffffff8200e640 d __param_str_num_prealloc_crypt_ctxs
+ffffffff8200e670 d blk_crypto_modes
+ffffffff8200e710 d blk_crypto_attr_ops
+ffffffff8200e720 d blk_crypto_attr_group
+ffffffff8200e748 d blk_crypto_modes_attr_group
+ffffffff8200e770 d __param_str_num_prealloc_bounce_pg
+ffffffff8200e7a0 d __param_str_num_keyslots
+ffffffff8200e7d0 d __param_str_num_prealloc_fallback_crypt_ctxs
+ffffffff8200e808 d blk_crypto_fallback_ll_ops
+ffffffff8200e820 d str__io_uring__trace_system_name
+ffffffff8200e830 d io_uring_fops.llvm.9780579022589958211
+ffffffff8200e940 d io_op_defs
+ffffffff8200f418 d guid_null
+ffffffff8200f428 d uuid_null
+ffffffff8200f440 d guid_index
+ffffffff8200f450 d uuid_index
+ffffffff8200f460 d base64_table
+ffffffff8200f4b0 d string_get_size.units_10
+ffffffff8200f500 d string_get_size.units_2
+ffffffff8200f550 d string_get_size.units_str
+ffffffff8200f560 d string_get_size.rounding
+ffffffff8200f580 d hex_asc
+ffffffff8200f5a0 d hex_asc_upper
+ffffffff8200f5c0 d S8
+ffffffff8200f6c0 d S6
+ffffffff8200f7c0 d S7
+ffffffff8200f8c0 d S5
+ffffffff8200f9c0 d S4
+ffffffff8200fac0 d S2
+ffffffff8200fbc0 d S3
+ffffffff8200fcc0 d S1
+ffffffff8200fdc0 d pc2
+ffffffff82010dc0 d pc1
+ffffffff82010ec0 d rs
+ffffffff82010fc0 d SHA256_K
+ffffffff820110c0 d __sha256_final.padding
+ffffffff82011110 d byte_rev_table
+ffffffff82011210 d crc16_table
+ffffffff82011440 d crc32table_le
+ffffffff82013440 d crc32ctable_le
+ffffffff82015440 d crc32table_be
+ffffffff82017440 d zlib_inflate.order
+ffffffff82017470 d zlib_fixedtables.lenfix
+ffffffff82017c70 d zlib_fixedtables.distfix
+ffffffff82017cf0 d zlib_inflate_table.lbase
+ffffffff82017d30 d zlib_inflate_table.lext
+ffffffff82017d70 d zlib_inflate_table.dbase
+ffffffff82017db0 d zlib_inflate_table.dext
+ffffffff82017df0 d configuration_table
+ffffffff82017e90 d extra_dbits
+ffffffff82017f10 d extra_lbits
+ffffffff82017f90 d extra_blbits
+ffffffff82017fe0 d bl_order
+ffffffff82018000 d BIT_mask
+ffffffff82018080 d BIT_mask
+ffffffff82018100 d BIT_mask
+ffffffff82018180 d BIT_mask
+ffffffff82018200 d ZSTD_defaultCMem
+ffffffff82018218 d ZSTD_defaultCMem
+ffffffff82018230 d repStartValue
+ffffffff8201823c d repStartValue
+ffffffff82018250 d ZSTD_selectBlockCompressor.blockCompressor
+ffffffff82018390 d ZSTD_LLcode.LL_Code
+ffffffff820183d0 d ZSTD_LLcode.LL_Code
+ffffffff82018410 d ZSTD_MLcode.ML_Code
+ffffffff82018490 d ZSTD_MLcode.ML_Code
+ffffffff82018510 d LL_defaultNorm
+ffffffff82018560 d LL_defaultNorm
+ffffffff820185b0 d OF_defaultNorm
+ffffffff820185f0 d OF_defaultNorm
+ffffffff82018630 d ML_defaultNorm
+ffffffff820186a0 d ML_defaultNorm
+ffffffff82018710 d attachDictSizeCutoffs
+ffffffff82018760 d ZSTD_defaultCParameters
+ffffffff82019170 d kInverseProbabilityLog256
+ffffffff82019570 d LL_bits
+ffffffff82019600 d LL_bits
+ffffffff82019690 d LL_bits
+ffffffff82019720 d LL_bits
+ffffffff820197b0 d LL_bits
+ffffffff82019840 d ML_bits
+ffffffff82019920 d ML_bits
+ffffffff82019a00 d ML_bits
+ffffffff82019ae0 d ML_bits
+ffffffff82019bc0 d ML_bits
+ffffffff82019ca0 d ZSTD_ldm_gearTab
+ffffffff8201a4c0 d algoTime
+ffffffff8201a640 d OF_base
+ffffffff8201a6c0 d OF_base
+ffffffff8201a740 d OF_bits
+ffffffff8201a7c0 d OF_bits
+ffffffff8201a840 d ML_base
+ffffffff8201a920 d ML_base
+ffffffff8201aa00 d LL_base
+ffffffff8201aa90 d LL_base
+ffffffff8201ab40 d LL_defaultDTable
+ffffffff8201ad50 d OF_defaultDTable
+ffffffff8201ae60 d ML_defaultDTable
+ffffffff8201b070 d __param_str_verbose
+ffffffff8201b088 d param_ops_dyndbg_classes
+ffffffff8201b0b0 d opt_array
+ffffffff8201b0c8 d ddebug_proc_fops
+ffffffff8201b1d8 d proc_fops
+ffffffff8201b230 d ddebug_proc_seqops
+ffffffff8201b280 d names_0
+ffffffff8201b6b0 d names_512
+ffffffff8201b750 d nla_attr_len
+ffffffff8201b770 d nla_attr_minlen
+ffffffff8201b790 d __nla_validate_parse.__msg
+ffffffff8201b7c0 d __nla_validate_parse.__msg.1
+ffffffff8201b7e0 d __nla_validate_parse.__msg.3
+ffffffff8201b810 d validate_nla.__msg
+ffffffff8201b830 d validate_nla.__msg.5
+ffffffff8201b850 d validate_nla.__msg.6
+ffffffff8201b870 d validate_nla.__msg.7
+ffffffff8201b890 d validate_nla.__msg.8
+ffffffff8201b8c0 d nla_validate_array.__msg
+ffffffff8201b8e0 d nla_validate_range_unsigned.__msg
+ffffffff8201b900 d nla_validate_range_unsigned.__msg.9
+ffffffff8201b930 d nla_validate_range_unsigned.__msg.10
+ffffffff8201b950 d nla_validate_int_range_signed.__msg
+ffffffff8201b970 d nla_validate_mask.__msg
+ffffffff8201ba20 d font_vga_8x16
+ffffffff8201ba50 d fontdata_8x16.llvm.4861723526125116322
+ffffffff8201ca60 d simple_pm_bus_of_match
+ffffffff8201cf10 d gpio_suffixes
+ffffffff8201cf28 d gpiolib_fops
+ffffffff8201d038 d gpiolib_sops
+ffffffff8201d058 d gpio_fileops
+ffffffff8201d168 d linehandle_fileops
+ffffffff8201d278 d lineevent_fileops
+ffffffff8201d388 d line_fileops
+ffffffff8201d4a0 d __param_str_run_edge_events_on_boot
+ffffffff8201d4d0 d __param_str_ignore_wake
+ffffffff8201d4f0 d __param_str_ignore_interrupt
+ffffffff8201d530 d bgpio_of_match
+ffffffff8201d850 d bgpio_id_table
+ffffffff8201d8e0 d pci_speed_string.speed_strings
+ffffffff8201d9b0 d agp_speeds
+ffffffff8201d9c0 d pcie_link_speed
+ffffffff8201d9d0 d bridge_d3_blacklist
+ffffffff8201ddd8 d pci_dev_reset_method_attr_group
+ffffffff8201de00 d pci_reset_fn_methods
+ffffffff8201ded0 d pci_dev_pm_ops
+ffffffff8201df90 d pci_drv_group
+ffffffff8201dfb8 d pci_device_id_any
+ffffffff8201dfe0 d pci_bus_group
+ffffffff8201e008 d pcibus_group
+ffffffff8201e030 d pci_dev_group
+ffffffff8201e058 d pci_dev_config_attr_group
+ffffffff8201e080 d pci_dev_rom_attr_group
+ffffffff8201e0a8 d pci_dev_reset_attr_group
+ffffffff8201e0d0 d pci_dev_resource_resize_group
+ffffffff8201e0f8 d pci_dev_attr_group
+ffffffff8201e120 d pci_dev_hp_attr_group
+ffffffff8201e148 d pci_bridge_attr_group
+ffffffff8201e170 d pcie_dev_attr_group
+ffffffff8201e198 d pci_dev_type
+ffffffff8201e1c8 d pci_dev_vpd_attr_group
+ffffffff8201e1f0 d vc_caps
+ffffffff8201e220 d pci_phys_vm_ops
+ffffffff8201e2b0 d port_pci_ids
+ffffffff8201e350 d pcie_portdrv_err_handler
+ffffffff8201e388 d pcie_portdrv_pm_ops
+ffffffff8201e450 d __param_str_policy
+ffffffff8201e468 d __param_ops_policy
+ffffffff8201e488 d aspm_ctrl_attr_group
+ffffffff8201e4b0 d aspm_ctrl_attrs_are_visible.aspm_state_map
+ffffffff8201e4b8 d aer_stats_attr_group
+ffffffff8201e4e0 d aer_error_severity_string
+ffffffff8201e500 d aer_error_layer
+ffffffff8201e520 d aer_agent_string
+ffffffff8201e540 d aer_correctable_error_string
+ffffffff8201e640 d aer_uncorrectable_error_string
+ffffffff8201e768 d proc_bus_pci_ops
+ffffffff8201e7c0 d proc_bus_pci_devices_op
+ffffffff8201e7e0 d pci_slot_sysfs_ops
+ffffffff8201e7f0 d pci_slot_default_group
+ffffffff8201e818 d pci_acpi_dsm_guid
+ffffffff8201e828 d acpi_pci_set_power_state.state_conv
+ffffffff8201e830 d acpi_pci_get_power_state.state_conv
+ffffffff8201e850 d hpx3_device_type.pcie_to_hpx3_type
+ffffffff8201e880 d pci_dev_acs_enabled
+ffffffff8201f000 d boot_interrupt_dmi_table
+ffffffff8201f2b0 d fixed_dma_alias_tbl
+ffffffff8201f330 d pci_quirk_intel_pch_acs_ids
+ffffffff8201f420 d sriov_vf_dev_attr_group
+ffffffff8201f448 d sriov_pf_dev_attr_group
+ffffffff8201f470 d pci_dev_smbios_attr_group
+ffffffff8201f498 d pci_dev_acpi_attr_group
+ffffffff8201f4c0 d vga_arb_device_fops
+ffffffff8201f5e8 d pci_epf_type
+ffffffff8201f618 d epc_ops
+ffffffff8201f690 d dw_plat_pcie_of_match
+ffffffff8201f8e8 d pcie_ep_ops
+ffffffff8201f908 d dw_plat_pcie_epc_features
+ffffffff8201f948 d dw_plat_pcie_rc_of_data
+ffffffff8201f94c d dw_plat_pcie_ep_of_data
+ffffffff8201f950 d dummy_con
+ffffffff8201fa20 d vga_con
+ffffffff8201faf0 d mps_inti_flags_polarity
+ffffffff8201fb10 d mps_inti_flags_trigger
+ffffffff8201fb48 d acpi_suspend_ops_old
+ffffffff8201fba0 d acpi_suspend_ops
+ffffffff8201fc00 d acpi_suspend_states
+ffffffff8201fc18 d acpi_data_node_sysfs_ops
+ffffffff8201fc28 d acpi_data_node_default_group
+ffffffff8201fc50 d acpi_dev_pm_attach.special_pm_ids
+ffffffff8201fd58 d acpi_system_wakeup_device_proc_ops.llvm.10550883615723952607
+ffffffff8201fe00 d acpi_device_enumeration_by_parent.ignore_serial_bus_ids
+ffffffff8201ff60 d acpi_is_indirect_io_slave.indirect_io_hosts
+ffffffff8201ffa0 d acpi_ignore_dep_ids
+ffffffff8201ffc0 d acpi_honor_dep_ids
+ffffffff8201ffd0 d acpi_wakeup_gpe_init.button_device_ids
+ffffffff82020050 d generic_device_ids
+ffffffff82020090 d medion_laptop
+ffffffff820205f0 d asus_laptop
+ffffffff82020f60 d lenovo_laptop
+ffffffff82021370 d tongfang_gm_rg
+ffffffff82021620 d maingear_laptop
+ffffffff82021a50 d k_pad.app_map
+ffffffff82021a70 d pty_line_name.ptychar
+ffffffff82021ab0 d k_pad.pad_chars
+ffffffff82021b00 d processor_device_ids
+ffffffff82021b60 d processor_device_ids
+ffffffff82021bc0 d processor_container_ids
+ffffffff82021c00 d __param_str_ec_delay
+ffffffff82021c10 d __param_str_ec_max_queries
+ffffffff82021c30 d __param_str_ec_busy_polling
+ffffffff82021c50 d __param_str_ec_polling_guard
+ffffffff82021c70 d __param_str_ec_storm_threshold
+ffffffff82021c90 d __param_str_ec_freeze_events
+ffffffff82021cb0 d __param_str_ec_no_wakeup
+ffffffff82021cd0 d ec_device_ids
+ffffffff82021d30 d __param_str_ec_event_clearing
+ffffffff82021d48 d __param_ops_ec_event_clearing
+ffffffff82021d70 d acpi_ec_no_wakeup
+ffffffff820222e8 d acpi_ec_pm
+ffffffff820223b0 d root_device_ids
+ffffffff820223f0 d link_device_ids
+ffffffff82022430 d medion_md9580
+ffffffff820226e0 d dell_optiplex
+ffffffff82022990 d hp_t5710
+ffffffff82022c40 d acpi_lpss_device_ids
+ffffffff82023040 d acpi_apd_device_ids
+ffffffff82023060 d forbidden_id_list
+ffffffff82023140 d acpi_pnp_device_ids
+ffffffff82025220 d is_cmos_rtc_device.ids
+ffffffff820252a0 d wakeup_attr_group
+ffffffff820252d0 d attr_groups
+ffffffff82025370 d acpi_event_mcgrps
+ffffffff82025390 d ged_acpi_ids
+ffffffff820253d0 d __param_str_aml_debug_output
+ffffffff820253f0 d __param_str_acpica_version
+ffffffff82025408 d __param_ops_acpica_version
+ffffffff82025428 d force_remove_attr
+ffffffff82025448 d pm_profile_attr
+ffffffff82025468 d hotplug_profile_group
+ffffffff82025490 d acpi_data_fwnode_ops
+ffffffff82025540 d acpi_static_fwnode_ops
+ffffffff820255f0 d buffer_prop_guid
+ffffffff82025600 d prp_guids
+ffffffff82025660 d ads_guid
+ffffffff82025670 d acpi_device_fwnode_ops
+ffffffff82025720 d acpi_cmos_rtc_ids
+ffffffff820257a0 d apple_prp_guid
+ffffffff820257b0 d override_status_ids
+ffffffff820277e0 d storage_d3_cpu_ids.llvm.16732570784165250777
+ffffffff82027840 d acpi_quirk_skip_dmi_ids
+ffffffff82027c50 d __param_str_sleep_no_lps0
+ffffffff82027c68 d acpi_s2idle_ops_lps0
+ffffffff82027cb0 d lps0_device_ids
+ffffffff82027cf0 d amd_hid_ids
+ffffffff82027d90 d amd_cezanne
+ffffffff82027d91 d amd_picasso
+ffffffff82027d92 d _acpi_module_name
+ffffffff82027d99 d _acpi_module_name
+ffffffff82027da3 d _acpi_module_name
+ffffffff82027dab d _acpi_module_name
+ffffffff82027db2 d _acpi_module_name
+ffffffff82027dbb d _acpi_module_name
+ffffffff82027dc4 d _acpi_module_name
+ffffffff82027dcd d _acpi_module_name
+ffffffff82027dd6 d _acpi_module_name
+ffffffff82027de0 d _acpi_module_name
+ffffffff82027de8 d _acpi_module_name
+ffffffff82027df0 d _acpi_module_name
+ffffffff82027df8 d _acpi_module_name
+ffffffff82027e01 d _acpi_module_name
+ffffffff82027e0a d _acpi_module_name
+ffffffff82027e13 d _acpi_module_name
+ffffffff82027e1b d _acpi_module_name
+ffffffff82027e21 d _acpi_module_name
+ffffffff82027e2a d _acpi_module_name
+ffffffff82027e34 d _acpi_module_name
+ffffffff82027e3e d _acpi_module_name
+ffffffff82027e46 d _acpi_module_name
+ffffffff82027e50 d _acpi_module_name
+ffffffff82027e57 d _acpi_module_name
+ffffffff82027e60 d _acpi_module_name
+ffffffff82027e69 d _acpi_module_name
+ffffffff82027e71 d _acpi_module_name
+ffffffff82027e7a d _acpi_module_name
+ffffffff82027e82 d _acpi_module_name
+ffffffff82027e8b d _acpi_module_name
+ffffffff82027e94 d _acpi_module_name
+ffffffff82027e9d d _acpi_module_name
+ffffffff82027ea6 d _acpi_module_name
+ffffffff82027eae d _acpi_module_name
+ffffffff82027eb6 d _acpi_module_name
+ffffffff82027ebd d _acpi_module_name
+ffffffff82027ec5 d _acpi_module_name
+ffffffff82027ecd d _acpi_module_name
+ffffffff82027ed6 d _acpi_module_name
+ffffffff82027edf d _acpi_module_name
+ffffffff82027ee8 d _acpi_module_name
+ffffffff82027ef1 d _acpi_module_name
+ffffffff82027ef8 d _acpi_module_name
+ffffffff82027f01 d _acpi_module_name
+ffffffff82027f0a d _acpi_module_name
+ffffffff82027f13 d _acpi_module_name
+ffffffff82027f1b d _acpi_module_name
+ffffffff82027f24 d _acpi_module_name
+ffffffff82027f2c d _acpi_module_name
+ffffffff82027f35 d _acpi_module_name
+ffffffff82027f3e d _acpi_module_name
+ffffffff82027f46 d _acpi_module_name
+ffffffff82027f4d d _acpi_module_name
+ffffffff82027f56 d _acpi_module_name
+ffffffff82027f5c d _acpi_module_name
+ffffffff82027f63 d _acpi_module_name
+ffffffff82027f6b d _acpi_module_name
+ffffffff82027f73 d _acpi_module_name
+ffffffff82027f7d d _acpi_module_name
+ffffffff82027f86 d _acpi_module_name
+ffffffff82027f8e d _acpi_module_name
+ffffffff82027f9a d _acpi_module_name
+ffffffff82027fa4 d _acpi_module_name
+ffffffff82027fab d _acpi_module_name
+ffffffff82027fb2 d _acpi_module_name
+ffffffff82027fba d _acpi_module_name
+ffffffff82027fc3 d _acpi_module_name
+ffffffff82027fcb d _acpi_module_name
+ffffffff82027fd4 d _acpi_module_name
+ffffffff82027fdd d _acpi_module_name
+ffffffff82027fe6 d _acpi_module_name
+ffffffff82027ff0 d _acpi_module_name
+ffffffff82027ff9 d _acpi_module_name
+ffffffff82028001 d _acpi_module_name
+ffffffff8202800a d _acpi_module_name
+ffffffff82028013 d _acpi_module_name
+ffffffff8202801a d _acpi_module_name
+ffffffff82028021 d _acpi_module_name
+ffffffff8202802a d _acpi_module_name
+ffffffff82028032 d _acpi_module_name
+ffffffff82028039 d _acpi_module_name
+ffffffff82028042 d _acpi_module_name
+ffffffff82028049 d _acpi_module_name
+ffffffff82028050 d _acpi_module_name
+ffffffff82028058 d _acpi_module_name
+ffffffff8202805f d _acpi_module_name
+ffffffff82028066 d _acpi_module_name
+ffffffff8202806f d _acpi_module_name
+ffffffff82028077 d _acpi_module_name
+ffffffff8202807f d _acpi_module_name
+ffffffff82028087 d _acpi_module_name
+ffffffff82028090 d _acpi_module_name
+ffffffff82028099 d _acpi_module_name
+ffffffff820280a3 d _acpi_module_name
+ffffffff820280aa d _acpi_module_name
+ffffffff820280b2 d _acpi_module_name
+ffffffff820280bb d _acpi_module_name
+ffffffff820280c2 d _acpi_module_name
+ffffffff820280c9 d _acpi_module_name
+ffffffff820280d0 d _acpi_module_name
+ffffffff820280d8 d _acpi_module_name
+ffffffff820280e1 d _acpi_module_name
+ffffffff820280e7 d _acpi_module_name
+ffffffff820280f1 d _acpi_module_name
+ffffffff820280f9 d _acpi_module_name
+ffffffff82028101 d _acpi_module_name
+ffffffff8202810a d _acpi_module_name
+ffffffff82028120 d acpi_gbl_op_type_dispatch
+ffffffff820281a0 d acpi_protected_ports
+ffffffff820282d0 d acpi_gbl_predefined_methods
+ffffffff82028c20 d acpi_object_repair_info
+ffffffff82028cd0 d acpi_ns_repairable_names
+ffffffff82028d70 d acpi_gbl_aml_op_info
+ffffffff820295a0 d acpi_gbl_argument_count
+ffffffff820295b0 d acpi_gbl_short_op_index
+ffffffff820296b0 d acpi_gbl_long_op_index
+ffffffff82029740 d acpi_gbl_aml_resource_sizes
+ffffffff82029760 d acpi_gbl_resource_struct_sizes
+ffffffff82029783 d acpi_gbl_aml_resource_serial_bus_sizes
+ffffffff82029788 d acpi_gbl_resource_struct_serial_bus_sizes
+ffffffff82029790 d fadt_info_table
+ffffffff82029810 d acpi_gbl_exception_names_env
+ffffffff82029930 d acpi_gbl_exception_names_pgm
+ffffffff82029980 d acpi_gbl_exception_names_tbl
+ffffffff820299b0 d acpi_gbl_exception_names_aml
+ffffffff82029ae0 d acpi_gbl_exception_names_ctrl
+ffffffff82029b50 d acpi_gbl_ns_properties
+ffffffff82029b70 d acpi_gbl_event_types
+ffffffff82029b98 d acpi_gbl_bad_type
+ffffffff82029bb0 d acpi_gbl_ns_type_names
+ffffffff82029cb0 d acpi_gbl_desc_type_names
+ffffffff82029d30 d acpi_gbl_ref_class_names
+ffffffff82029d70 d acpi_gbl_mutex_names
+ffffffff82029da0 d acpi_gbl_lower_hex_digits
+ffffffff82029dc0 d acpi_gbl_upper_hex_digits
+ffffffff82029de0 d acpi_gbl_pre_defined_names
+ffffffff82029ed0 d acpi_gbl_resource_aml_sizes
+ffffffff82029ef3 d acpi_gbl_resource_aml_serial_bus_sizes
+ffffffff82029f00 d acpi_gbl_resource_types
+ffffffff82029f30 d ac_device_ids
+ffffffff82029f70 d acpi_ac_pm
+ffffffff8202a030 d __param_str_lid_report_interval
+ffffffff8202a050 d __param_str_lid_init_state
+ffffffff8202a068 d __param_ops_lid_init_state
+ffffffff8202a090 d lid_init_state_str
+ffffffff8202a0b0 d dmi_lid_quirks
+ffffffff8202a8c0 d button_device_ids
+ffffffff8202a980 d acpi_button_pm
+ffffffff8202aa40 d fan_device_ids
+ffffffff8202ab20 d acpi_fan_pm
+ffffffff8202abe0 d fan_cooling_ops
+ffffffff8202ac38 d processor_cooling_ops
+ffffffff8202ac70 d __param_str_max_cstate
+ffffffff8202ac90 d __param_str_nocst
+ffffffff8202aca0 d __param_str_bm_check_disable
+ffffffff8202acc0 d __param_str_latency_factor
+ffffffff8202ace0 d processor_power_dmi_table
+ffffffff8202b240 d __param_str_ignore_tpc
+ffffffff8202b270 d __param_str_ignore_ppc
+ffffffff8202b2c0 d container_device_ids
+ffffffff8202b340 d __param_str_act
+ffffffff8202b34c d __param_str_crt
+ffffffff8202b358 d __param_str_tzp
+ffffffff8202b364 d __param_str_nocrt
+ffffffff8202b372 d __param_str_off
+ffffffff8202b37e d __param_str_off
+ffffffff8202b38a d __param_str_off
+ffffffff8202b396 d __param_str_psv
+ffffffff8202b3b0 d thermal_device_ids
+ffffffff8202b3f0 d acpi_thermal_pm
+ffffffff8202b4b0 d memory_device_ids
+ffffffff8202b4f0 d __param_str_cache_time
+ffffffff8202b510 d battery_device_ids
+ffffffff8202b570 d acpi_battery_pm
+ffffffff8202b630 d extended_info_offsets
+ffffffff8202b770 d info_offsets
+ffffffff8202b840 d alarm_attr
+ffffffff8202b870 d cppc_group
+ffffffff8202b8b0 d int340x_thermal_device_ids
+ffffffff8202bd50 d __param_str_debug
+ffffffff8202bd5a d __param_str_debug
+ffffffff8202bd68 d pnp_bus_dev_pm_ops
+ffffffff8202be40 d pnp_dev_group
+ffffffff8202be70 d pnp_dev_table
+ffffffff8202bea0 d pnp_dev_table
+ffffffff8202c8c0 d virtio_dev_group
+ffffffff8202c8e8 d virtio_pci_config_ops
+ffffffff8202c970 d virtio_pci_config_ops
+ffffffff8202c9f8 d virtio_pci_config_nodev_ops
+ffffffff8202ca80 d __param_str_force_legacy
+ffffffff8202caa0 d virtio_pci_id_table
+ffffffff8202caf0 d virtio_pci_pm_ops
+ffffffff8202cbb0 d id_table
+ffffffff8202cbc0 d id_table
+ffffffff8202cbd0 d id_table
+ffffffff8202cbe0 d id_table
+ffffffff8202cbf0 d hung_up_tty_fops
+ffffffff8202cd00 d tty_fops.llvm.15206213235599339089
+ffffffff8202ce10 d console_fops
+ffffffff8202cf20 d cons_dev_group
+ffffffff8202cf48 d tty_ldiscs_seq_ops
+ffffffff8202cf68 d tty_port_default_client_ops
+ffffffff8202cf80 d baud_table
+ffffffff8202d000 d baud_bits
+ffffffff8202d080 d ptm_unix98_ops
+ffffffff8202d198 d pty_unix98_ops
+ffffffff8202d2b0 d sysrq_reboot_op
+ffffffff8202d2d0 d __param_str_reset_seq
+ffffffff8202d2e0 d __param_arr_reset_seq
+ffffffff8202d300 d __param_str_sysrq_downtime_ms
+ffffffff8202d318 d sysrq_loglevel_op
+ffffffff8202d338 d sysrq_crash_op
+ffffffff8202d358 d sysrq_term_op
+ffffffff8202d378 d sysrq_moom_op
+ffffffff8202d398 d sysrq_kill_op
+ffffffff8202d3b8 d sysrq_thaw_op
+ffffffff8202d3d8 d sysrq_SAK_op
+ffffffff8202d3f8 d sysrq_showallcpus_op
+ffffffff8202d418 d sysrq_showmem_op
+ffffffff8202d438 d sysrq_unrt_op
+ffffffff8202d458 d sysrq_showregs_op
+ffffffff8202d478 d sysrq_show_timers_op
+ffffffff8202d498 d sysrq_unraw_op
+ffffffff8202d4b8 d sysrq_sync_op
+ffffffff8202d4d8 d sysrq_showstate_op
+ffffffff8202d4f8 d sysrq_mountro_op
+ffffffff8202d518 d sysrq_showstate_blocked_op
+ffffffff8202d538 d sysrq_ftrace_dump_op
+ffffffff8202d558 d param_ops_sysrq_reset_seq
+ffffffff8202d580 d sysrq_xlate
+ffffffff8202d880 d sysrq_ids
+ffffffff8202da10 d sysrq_trigger_proc_ops
+ffffffff8202da68 d vcs_fops
+ffffffff8202db90 d __param_str_brl_timeout
+ffffffff8202dbb0 d __param_str_brl_nbchords
+ffffffff8202dbd0 d kbd_ids
+ffffffff8202de30 d k_handler
+ffffffff8202deb0 d x86_keycodes
+ffffffff8202e0b0 d fn_handler
+ffffffff8202e150 d k_dead.ret_diacr
+ffffffff8202e16b d max_vals
+ffffffff8202e180 d __param_str_default_utf8
+ffffffff8202e190 d __param_str_global_cursor_default
+ffffffff8202e1a9 d __param_str_cur_default
+ffffffff8202e1b8 d __param_str_consoleblank
+ffffffff8202e1c8 d vc_port_ops
+ffffffff8202e200 d color_table
+ffffffff8202e210 d __param_str_default_red
+ffffffff8202e220 d __param_arr_default_red
+ffffffff8202e240 d __param_str_default_grn
+ffffffff8202e250 d __param_arr_default_grn
+ffffffff8202e270 d __param_str_default_blu
+ffffffff8202e280 d __param_arr_default_blu
+ffffffff8202e2a0 d __param_str_color
+ffffffff8202e2a9 d __param_str_italic
+ffffffff8202e2b3 d __param_str_underline
+ffffffff8202e2c0 d con_ops
+ffffffff8202e3d8 d vt_dev_group
+ffffffff8202e400 d vc_translate_unicode.utf8_length_changes
+ffffffff8202e418 d respond_ID.vt102_id
+ffffffff8202e41e d status_report.teminal_ok
+ffffffff8202e430 d is_double_width.double_width
+ffffffff8202e490 d con_dev_group
+ffffffff8202e4b8 d hvc_port_ops
+ffffffff8202e4e8 d hvc_ops
+ffffffff8202e600 d uart_ops
+ffffffff8202e718 d uart_port_ops
+ffffffff8202e748 d tty_dev_attr_group
+ffffffff8202e770 d __param_str_share_irqs
+ffffffff8202e780 d __param_str_nr_uarts
+ffffffff8202e790 d __param_str_skip_txen_test
+ffffffff8202e7a8 d univ8250_driver_ops
+ffffffff8202e7c0 d old_serial_port
+ffffffff8202e880 d serial_pnp_pm_ops
+ffffffff8202e940 d uart_config
+ffffffff8202f4b0 d serial8250_pops
+ffffffff8202f5f0 d pci_ids
+ffffffff8202f820 d pci_ids
+ffffffff8202f938 d qrk_board
+ffffffff8202f958 d ehl_board
+ffffffff8202f978 d byt_board
+ffffffff8202f998 d pnw_board
+ffffffff8202f9c0 d tng_board
+ffffffff8202f9e8 d dnv_board
+ffffffff8202fa10 d pericom8250_pci_ids
+ffffffff82030000 d of_platform_serial_table
+ffffffff82030ed8 d of_serial_pm_ops
+ffffffff82030fa0 d mctrl_gpios_desc
+ffffffff82031000 d ttynull_port_ops
+ffffffff82031030 d ttynull_ops
+ffffffff82031148 d memory_fops
+ffffffff82031260 d devlist
+ffffffff820313e0 d null_fops
+ffffffff820314f0 d zero_fops
+ffffffff82031600 d full_fops
+ffffffff82031710 d __param_str_ratelimit_disable
+ffffffff82031730 d random_fops
+ffffffff82031840 d urandom_fops
+ffffffff82031950 d misc_seq_ops
+ffffffff82031970 d misc_fops
+ffffffff82031a80 d hv_ops
+ffffffff82031ac8 d features
+ffffffff82031ad0 d portdev_fops
+ffffffff82031be0 d port_attribute_group
+ffffffff82031c08 d port_fops
+ffffffff82031d18 d port_debugfs_fops
+ffffffff82031e28 d rproc_serial_id_table
+ffffffff82031e30 d hpet_fops
+ffffffff82031e30 d rproc_serial_features
+ffffffff82031f40 d hpet_device_ids
+ffffffff82031f80 d __param_str_current_quality
+ffffffff82031fa0 d __param_str_default_quality
+ffffffff82031fc0 d rng_chrdev_ops
+ffffffff820320d0 d rng_dev_group
+ffffffff82032100 d __param_str_no_fwh_detect
+ffffffff82032120 d pci_tbl
+ffffffff82032650 d pci_tbl
+ffffffff820326c8 d iommu_group_sysfs_ops
+ffffffff820326e0 d iommu_group_resv_type_string
+ffffffff820327c8 d str__iommu__trace_system_name
+ffffffff820327d0 d devices_attr_group
+ffffffff820327f8 d iommu_dma_ops
+ffffffff820328e0 d component_devices_fops
+ffffffff820329f0 d device_uevent_ops
+ffffffff82032a08 d devlink_group
+ffffffff82032a30 d dev_sysfs_ops
+ffffffff82032a70 d bus_uevent_ops
+ffffffff82032a88 d driver_sysfs_ops
+ffffffff82032a98 d bus_sysfs_ops
+ffffffff82032aa8 d deferred_devs_fops
+ffffffff82032bb8 d class_sysfs_ops
+ffffffff82032bc8 d platform_dev_pm_ops
+ffffffff82032c88 d platform_dev_group
+ffffffff82032cb0 d cpu_root_attr_group
+ffffffff82032cd8 d cpu_root_vulnerabilities_group
+ffffffff82032d00 d topology_attr_group
+ffffffff82032e30 d cache_type_info
+ffffffff82032e90 d cache_default_group
+ffffffff82032eb8 d software_node_ops
+ffffffff82032f68 d power_group_name
+ffffffff82032f70 d pm_attr_group
+ffffffff82032f98 d pm_runtime_attr_group.llvm.6253406015395676325
+ffffffff82032fc0 d pm_wakeup_attr_group.llvm.6253406015395676325
+ffffffff82032fe8 d pm_qos_latency_tolerance_attr_group.llvm.6253406015395676325
+ffffffff82033010 d pm_qos_resume_latency_attr_group.llvm.6253406015395676325
+ffffffff82033038 d pm_qos_flags_attr_group.llvm.6253406015395676325
+ffffffff82033060 d ctrl_on
+ffffffff82033063 d _enabled
+ffffffff8203306b d _disabled
+ffffffff820330a0 d wakeup_sources_stats_fops
+ffffffff820331b0 d wakeup_sources_stats_seq_ops
+ffffffff820331d0 d wakeup_source_group
+ffffffff82033200 d __param_str_path
+ffffffff82033218 d firmware_param_ops
+ffffffff82033240 d fw_path
+ffffffff820332b0 d firmware_class_group
+ffffffff820332d8 d fw_dev_attr_group
+ffffffff82033300 d online_type_to_str
+ffffffff82033320 d memory_memblk_attr_group
+ffffffff82033348 d memory_root_attr_group
+ffffffff82033370 d str__regmap__trace_system_name
+ffffffff82033380 d cache_types
+ffffffff82033390 d rbtree_fops
+ffffffff820334a0 d regmap_name_fops
+ffffffff820335b0 d regmap_reg_ranges_fops
+ffffffff820336c0 d regmap_map_fops
+ffffffff820337d0 d regmap_access_fops
+ffffffff820338e0 d regmap_cache_only_fops
+ffffffff820339f0 d regmap_cache_bypass_fops
+ffffffff82033b00 d regmap_range_fops
+ffffffff82033c10 d regmap_mmio
+ffffffff82033ca0 d dev_attr_physical_location_group
+ffffffff82033d28 d __param_str_rd_nr
+ffffffff82033d32 d __param_str_rd_size
+ffffffff82033d3e d __param_str_max_part
+ffffffff82033d4b d __param_str_max_part
+ffffffff82033d60 d brd_fops
+ffffffff82033e08 d __param_str_max_loop
+ffffffff82033e20 d __param_str_hw_queue_depth
+ffffffff82033e38 d loop_hw_qdepth_param_ops
+ffffffff82033e58 d loop_ctl_fops
+ffffffff82033f68 d loop_mq_ops
+ffffffff82034000 d lo_fops
+ffffffff820340b0 d __param_str_num_request_queues
+ffffffff820340d0 d __param_str_poll_queues
+ffffffff820340f0 d __param_str_queue_depth
+ffffffff82034108 d virtio_mq_ops
+ffffffff820341a0 d virtblk_fops
+ffffffff82034248 d virtblk_attr_group
+ffffffff82034270 d virtblk_cache_types
+ffffffff82034280 d __param_str_num_devices
+ffffffff82034298 d zram_control_class_group
+ffffffff820342c0 d zram_devops
+ffffffff82034368 d zram_disk_group
+ffffffff82034390 d syscon_regmap_config
+ffffffff820344e0 d syscon_ids
+ffffffff82034520 d nvdimm_bus_attribute_group
+ffffffff82034548 d nvdimm_bus_firmware_attribute_group
+ffffffff82034610 d nvdimm_bus_dev_type
+ffffffff82034640 d __nd_cmd_dimm_descs
+ffffffff82034850 d __nd_cmd_bus_descs
+ffffffff82034a60 d nvdimm_bus_fops
+ffffffff82034b70 d nvdimm_fops
+ffffffff82034c80 d nd_numa_attribute_group
+ffffffff82034ca8 d nd_device_attribute_group
+ffffffff82034d70 d nvdimm_device_type.llvm.16457450038437133464
+ffffffff82034da0 d nvdimm_attribute_group
+ffffffff82034dc8 d nvdimm_firmware_attribute_group
+ffffffff82034df0 d nd_pmem_device_type.llvm.3745560375144724132
+ffffffff82034e20 d nd_volatile_device_type.llvm.3745560375144724132
+ffffffff82034e50 d nd_region_attribute_group
+ffffffff82034e78 d nd_mapping_attribute_group
+ffffffff82034ea0 d namespace_pmem_device_type
+ffffffff82034ed0 d pmem_lbasize_supported
+ffffffff82034ee8 d namespace_io_device_type
+ffffffff82034f20 d NSINDEX_SIGNATURE
+ffffffff82034f38 d nd_btt_device_type.llvm.18421582928704709732
+ffffffff82034f70 d btt_lbasize_supported
+ffffffff82034fb0 d pmem_fops
+ffffffff82035058 d pmem_dax_ops
+ffffffff82035078 d dax_attribute_group
+ffffffff820350a0 d btt_fops
+ffffffff82035150 d of_pmem_region_match
+ffffffff820353a8 d dax_sops
+ffffffff82035458 d dev_dax_type
+ffffffff82035488 d dax_region_attribute_group
+ffffffff820354b0 d dax_drv_group
+ffffffff820354d8 d dev_dax_attribute_group
+ffffffff82035500 d dax_mapping_attribute_group
+ffffffff82035528 d dma_buf_fops
+ffffffff82035640 d dma_buf_dentry_ops
+ffffffff82035700 d dma_buf_debug_fops
+ffffffff82035810 d str__dma_fence__trace_system_name
+ffffffff82035820 d dma_fence_stub_ops
+ffffffff82035868 d dma_fence_array_ops
+ffffffff820358b0 d dma_fence_chain_ops
+ffffffff82035900 d dma_resv_describe.usage
+ffffffff82035920 d dma_heap_fops
+ffffffff82035a30 d dma_heap_sysfs_group
+ffffffff82035a58 d dmabuf_sysfs_no_uevent_ops
+ffffffff82035a70 d dma_buf_stats_sysfs_ops
+ffffffff82035a80 d dma_buf_stats_default_group
+ffffffff82035aa8 d loopback_ethtool_ops
+ffffffff82035cf8 d loopback_ops
+ffffffff82035f98 d blackhole_netdev_ops
+ffffffff82036240 d uio_group
+ffffffff82036268 d map_sysfs_ops
+ffffffff82036278 d map_group
+ffffffff820362a0 d portio_sysfs_ops
+ffffffff820362b0 d portio_group
+ffffffff82036300 d uio_fops
+ffffffff82036410 d uio_physical_vm_ops
+ffffffff820364a0 d uio_logical_vm_ops
+ffffffff82036530 d serio_pm_ops
+ffffffff820365f0 d serio_id_attr_group
+ffffffff82036618 d serio_device_attr_group
+ffffffff82036640 d serio_driver_group
+ffffffff82036668 d __param_str_nokbd
+ffffffff82036674 d __param_str_noaux
+ffffffff82036680 d __param_str_nomux
+ffffffff8203668c d __param_str_unlock
+ffffffff820366a0 d __param_str_probe_defer
+ffffffff820366b2 d __param_str_reset
+ffffffff820366c0 d param_ops_reset_param
+ffffffff820366e0 d __param_str_direct
+ffffffff820366ed d __param_str_dumbkbd
+ffffffff820366fb d __param_str_noloop
+ffffffff82036710 d __param_str_notimeout
+ffffffff82036720 d __param_str_kbdreset
+ffffffff8203672f d __param_str_dritek
+ffffffff8203673c d __param_str_nopnp
+ffffffff82036750 d __param_str_unmask_kbd_data
+ffffffff82036768 d i8042_pm_ops
+ffffffff82036830 d pnp_kbd_devids
+ffffffff82036930 d pnp_aux_devids
+ffffffff820369f0 d input_dev_type
+ffffffff82036a20 d input_dev_pm_ops
+ffffffff82036ae0 d input_dev_attr_group
+ffffffff82036b08 d input_dev_id_attr_group
+ffffffff82036b30 d input_dev_caps_attr_group
+ffffffff82036b60 d input_max_code
+ffffffff82036be0 d input_devices_proc_ops
+ffffffff82036c38 d input_handlers_proc_ops
+ffffffff82036c90 d input_devices_seq_ops
+ffffffff82036cb0 d input_handlers_seq_ops
+ffffffff82036cd0 d rtc_days_in_month
+ffffffff82036ce0 d rtc_ydays
+ffffffff82036d18 d rtc_class_dev_pm_ops
+ffffffff82036dd8 d str__rtc__trace_system_name
+ffffffff82036de0 d rtc_dev_fops
+ffffffff82036ef0 d __param_str_use_acpi_alarm
+ffffffff82036fa0 d driver_name
+ffffffff82036fb0 d cmos_rtc_ops
+ffffffff82037010 d rtc_ids
+ffffffff82037050 d cmos_pm_ops
+ffffffff82037110 d of_cmos_match
+ffffffff820372a0 d POWER_SUPPLY_CHARGE_BEHAVIOUR_TEXT
+ffffffff820372b8 d power_supply_attr_group
+ffffffff820372e0 d POWER_SUPPLY_STATUS_TEXT
+ffffffff82037310 d POWER_SUPPLY_CHARGE_TYPE_TEXT
+ffffffff820374b0 d POWER_SUPPLY_HEALTH_TEXT
+ffffffff82037530 d POWER_SUPPLY_TECHNOLOGY_TEXT
+ffffffff82037570 d POWER_SUPPLY_CAPACITY_LEVEL_TEXT
+ffffffff820375a0 d POWER_SUPPLY_TYPE_TEXT
+ffffffff82037610 d POWER_SUPPLY_SCOPE_TEXT
+ffffffff82037630 d POWER_SUPPLY_USB_TYPE_TEXT
+ffffffff82037680 d trace_raw_output_thermal_zone_trip.symbols
+ffffffff820376e0 d thermal_zone_attribute_groups
+ffffffff820376f0 d thermal_zone_attribute_group
+ffffffff82037718 d thermal_zone_mode_attribute_group
+ffffffff82037740 d cooling_device_stats_attr_group
+ffffffff82037768 d cooling_device_attr_group
+ffffffff82037790 d event_cb
+ffffffff82037810 d thermal_genl_policy
+ffffffff82037990 d thermal_genl_ops
+ffffffff82037a10 d thermal_genl_mcgrps
+ffffffff82037a40 d cmd_cb
+ffffffff82037a78 d thermal_attr_group
+ffffffff82037aa0 d __param_str_stop_on_reboot
+ffffffff82037ac0 d __param_str_handle_boot_enabled
+ffffffff82037ae0 d __param_str_open_timeout
+ffffffff82037af8 d watchdog_fops
+ffffffff82037c08 d __param_str_create
+ffffffff82037c20 d _dm_uevent_type_names
+ffffffff82037c40 d _exits
+ffffffff82037c80 d dm_rq_blk_dops
+ffffffff82037d28 d __param_str_major
+ffffffff82037d40 d __param_str_reserved_bio_based_ios
+ffffffff82037d60 d __param_str_dm_numa_node
+ffffffff82037d80 d __param_str_swap_bios
+ffffffff82037d98 d dm_blk_dops
+ffffffff82037e40 d dm_pr_ops
+ffffffff82037e68 d _ctl_fops
+ffffffff82037f80 d lookup_ioctl._ioctls
+ffffffff820380a0 d __param_str_kcopyd_subjob_size_kb
+ffffffff820380c0 d dm_sysfs_ops
+ffffffff820380d0 d dm_group
+ffffffff82038100 d __param_str_stats_current_allocated_bytes
+ffffffff82038128 d dm_mq_ops
+ffffffff820381c0 d __param_str_reserved_rq_based_ios
+ffffffff820381e0 d __param_str_use_blk_mq
+ffffffff82038200 d __param_str_dm_mq_nr_hw_queues
+ffffffff82038220 d __param_str_dm_mq_queue_depth
+ffffffff82038240 d __param_str_max_cache_size_bytes
+ffffffff82038260 d __param_str_max_age_seconds
+ffffffff82038280 d __param_str_retain_bytes
+ffffffff820382a0 d __param_str_peak_allocated_bytes
+ffffffff820382c0 d __param_str_allocated_kmem_cache_bytes
+ffffffff820382f0 d __param_str_allocated_get_free_pages_bytes
+ffffffff82038320 d __param_str_allocated_vmalloc_bytes
+ffffffff82038350 d __param_str_current_allocated_bytes
+ffffffff82038380 d adjust_total_allocated.class_ptr
+ffffffff820383a0 d crypt_ctr_optional._args
+ffffffff820383b0 d crypt_iv_plain_ops
+ffffffff820383e0 d crypt_iv_plain64_ops
+ffffffff82038410 d crypt_iv_plain64be_ops
+ffffffff82038440 d crypt_iv_essiv_ops
+ffffffff82038470 d crypt_iv_benbi_ops
+ffffffff820384a0 d crypt_iv_null_ops
+ffffffff820384d0 d crypt_iv_eboiv_ops
+ffffffff82038500 d crypt_iv_elephant_ops
+ffffffff82038530 d crypt_iv_lmk_ops
+ffffffff82038560 d crypt_iv_tcw_ops
+ffffffff82038590 d crypt_iv_random_ops
+ffffffff820385c0 d __param_str_prefetch_cluster
+ffffffff820385e0 d verity_parse_opt_args._args
+ffffffff820385f0 d __param_str_dm_user_daemon_timeout_msec
+ffffffff82038618 d file_operations
+ffffffff82038780 d edac_mem_types
+ffffffff82038870 d __param_str_edac_mc_panic_on_ue
+ffffffff82038890 d __param_str_edac_mc_log_ue
+ffffffff820388b0 d __param_str_edac_mc_log_ce
+ffffffff820388d0 d __param_str_edac_mc_poll_msec
+ffffffff820388f0 d __param_ops_edac_mc_poll_msec
+ffffffff82038910 d mci_attr_type
+ffffffff82038940 d mci_attr_grp
+ffffffff82038968 d dimm_attr_type
+ffffffff82038998 d dimm_attr_grp
+ffffffff820389c0 d dev_types
+ffffffff82038a00 d edac_caps
+ffffffff82038a50 d csrow_attr_type
+ffffffff82038a80 d csrow_attr_grp
+ffffffff82038aa8 d csrow_dev_dimm_group
+ffffffff82038ad0 d csrow_dev_ce_count_group
+ffffffff82038af8 d device_ctl_info_ops
+ffffffff82038b08 d device_ctrl_group
+ffffffff82038b30 d device_instance_ops
+ffffffff82038b40 d device_instance_group
+ffffffff82038b68 d device_block_ops
+ffffffff82038b78 d device_block_group
+ffffffff82038ba0 d __param_str_check_pci_errors
+ffffffff82038bc0 d __param_str_edac_pci_panic_on_pe
+ffffffff82038be0 d edac_pci_sysfs_ops
+ffffffff82038bf0 d edac_pci_group
+ffffffff82038c18 d pci_instance_ops
+ffffffff82038c28 d pci_instance_group
+ffffffff82038c50 d __param_str_default_governor
+ffffffff82038c70 d __param_string_default_governor
+ffffffff82038c80 d sysfs_ops
+ffffffff82038c90 d cpufreq_group
+ffffffff82038cd0 d stats_attr_group
+ffffffff82038cf8 d cs_group
+ffffffff82038d20 d governor_sysfs_ops
+ffffffff82038d30 d intel_pstate_cpu_ids
+ffffffff82038f90 d intel_epp_balance_perf
+ffffffff82038fc0 d intel_pstate_cpu_ee_disable_ids
+ffffffff82038ff0 d intel_pstate_hwp_boost_ids
+ffffffff82039038 d silvermont_funcs
+ffffffff82039080 d airmont_funcs
+ffffffff820390c8 d knl_funcs
+ffffffff82039110 d silvermont_get_scaling.silvermont_freq_table
+ffffffff82039130 d airmont_get_scaling.airmont_freq_table
+ffffffff82039158 d intel_pstate_attr_group
+ffffffff82039180 d __param_str_governor
+ffffffff82039198 d __param_string_governor
+ffffffff820391a8 d cpuidle_state_sysfs_ops
+ffffffff820391b8 d cpuidle_state_default_group
+ffffffff820391e0 d cpuidle_state_s2idle_group
+ffffffff82039208 d cpuidle_sysfs_ops
+ffffffff82039220 d __param_str_force
+ffffffff82039237 d dmi_empty_string
+ffffffff82039240 d get_modalias.fields
+ffffffff82039340 d memmap_attr_ops
+ffffffff82039350 d def_group
+ffffffff82039378 d def_group
+ffffffff82039408 d efi_subsys_attr_group
+ffffffff82039430 d esrt_attr_group
+ffffffff82039458 d esre_attr_ops
+ffffffff82039468 d esre1_group
+ffffffff82039490 d map_attr_ops
+ffffffff820394a0 d of_parse_phandle_with_args_map.dummy_mask
+ffffffff820394f0 d of_parse_phandle_with_args_map.dummy_pass
+ffffffff82039540 d of_default_bus_match_table
+ffffffff82039860 d of_skipped_node_table
+ffffffff820399f0 d reserved_mem_matches
+ffffffff8203a030 d of_fwnode_ops
+ffffffff8203a0f0 d of_irq_imap_abusers
+ffffffff8203a130 d pcc_chan_ops
+ffffffff8203a160 d str__ras__trace_system_name
+ffffffff8203a170 d trace_raw_output_aer_event.__flags
+ffffffff8203a200 d trace_raw_output_aer_event.__flags.62
+ffffffff8203a340 d trace_fops
+ffffffff8203a450 d nvmem_provider_type
+ffffffff8203a480 d nvmem_bin_group
+ffffffff8203a4b0 d nvmem_type_str
+ffffffff8203a4d8 d socket_file_ops
+ffffffff8203a600 d sockfs_inode_ops
+ffffffff8203a6c0 d pf_family_names
+ffffffff8203a830 d nargs
+ffffffff8203a848 d sockfs_ops
+ffffffff8203a900 d sockfs_dentry_operations
+ffffffff8203a9c0 d sockfs_xattr_handler
+ffffffff8203a9f0 d sockfs_security_xattr_handler
+ffffffff8203aa20 d proto_seq_ops
+ffffffff8203aa40 d drop_reasons
+ffffffff8203ac50 d __const.skb_checksum.ops.llvm.15827670776272453262
+ffffffff8203ac60 d default_crc32c_ops
+ffffffff8203ac70 d rtnl_net_policy
+ffffffff8203acd0 d rtnl_net_newid.__msg
+ffffffff8203ace0 d rtnl_net_newid.__msg.10
+ffffffff8203ad00 d rtnl_net_newid.__msg.11
+ffffffff8203ad20 d rtnl_net_newid.__msg.12
+ffffffff8203ad50 d rtnl_net_newid.__msg.13
+ffffffff8203ad80 d __nlmsg_parse.__msg
+ffffffff8203ada0 d __nlmsg_parse.__msg
+ffffffff8203adc0 d __nlmsg_parse.__msg
+ffffffff8203ade0 d __nlmsg_parse.__msg
+ffffffff8203ae00 d __nlmsg_parse.__msg
+ffffffff8203ae20 d __nlmsg_parse.__msg
+ffffffff8203ae40 d __nlmsg_parse.__msg
+ffffffff8203ae60 d __nlmsg_parse.__msg
+ffffffff8203ae80 d __nlmsg_parse.__msg
+ffffffff8203aea0 d __nlmsg_parse.__msg
+ffffffff8203aec0 d __nlmsg_parse.__msg
+ffffffff8203aee0 d __nlmsg_parse.__msg
+ffffffff8203af00 d __nlmsg_parse.__msg
+ffffffff8203af20 d rtnl_net_getid.__msg
+ffffffff8203af40 d rtnl_net_getid.__msg.14
+ffffffff8203af60 d rtnl_net_getid.__msg.15
+ffffffff8203af90 d rtnl_net_valid_getid_req.__msg
+ffffffff8203afd0 d rtnl_valid_dump_net_req.__msg
+ffffffff8203b000 d rtnl_valid_dump_net_req.__msg.16
+ffffffff8203b030 d flow_keys_dissector_keys
+ffffffff8203b0c0 d flow_keys_dissector_symmetric_keys
+ffffffff8203b110 d flow_keys_basic_dissector_keys
+ffffffff8203b130 d dev_validate_mtu.__msg
+ffffffff8203b150 d dev_validate_mtu.__msg.57
+ffffffff8203b170 d default_ethtool_ops
+ffffffff8203b3c0 d skb_warn_bad_offload.null_features
+ffffffff8203b3d0 d dev_xdp_attach.__msg.118
+ffffffff8203b400 d dev_xdp_attach.__msg.119
+ffffffff8203b440 d dev_xdp_attach.__msg.121
+ffffffff8203b470 d dev_xdp_attach.__msg.122
+ffffffff8203b4b0 d dev_xdp_attach.__msg.124
+ffffffff8203b4e0 d dev_xdp_attach.__msg.130
+ffffffff8203b6a8 d dst_default_metrics
+ffffffff8203b6f0 d neigh_stat_seq_ops
+ffffffff8203b710 d __neigh_update.__msg
+ffffffff8203b730 d __neigh_update.__msg.19
+ffffffff8203b750 d neigh_add.__msg
+ffffffff8203b770 d neigh_add.__msg.44
+ffffffff8203b790 d neigh_add.__msg.45
+ffffffff8203b7b0 d neigh_add.__msg.46
+ffffffff8203b7d0 d neigh_add.__msg.47
+ffffffff8203b7f0 d neigh_add.__msg.48
+ffffffff8203b820 d neigh_delete.__msg
+ffffffff8203b840 d neigh_delete.__msg.49
+ffffffff8203b860 d neigh_get.__msg
+ffffffff8203b880 d neigh_get.__msg.50
+ffffffff8203b8a0 d neigh_get.__msg.51
+ffffffff8203b8c0 d neigh_get.__msg.52
+ffffffff8203b8e0 d neigh_get.__msg.53
+ffffffff8203b900 d neigh_valid_get_req.__msg
+ffffffff8203b930 d neigh_valid_get_req.__msg.54
+ffffffff8203b970 d neigh_valid_get_req.__msg.55
+ffffffff8203b9b0 d neigh_valid_get_req.__msg.56
+ffffffff8203b9f0 d neigh_valid_get_req.__msg.57
+ffffffff8203ba20 d neigh_valid_get_req.__msg.58
+ffffffff8203ba50 d neigh_valid_dump_req.__msg
+ffffffff8203ba80 d neigh_valid_dump_req.__msg.59
+ffffffff8203bac0 d neigh_valid_dump_req.__msg.60
+ffffffff8203bb00 d neigh_valid_dump_req.__msg.61
+ffffffff8203bb30 d neightbl_valid_dump_info.__msg
+ffffffff8203bb60 d neightbl_valid_dump_info.__msg.62
+ffffffff8203bba0 d neightbl_valid_dump_info.__msg.63
+ffffffff8203bbe0 d nl_neightbl_policy
+ffffffff8203bc80 d nl_ntbl_parm_policy
+ffffffff8203bdc0 d nda_policy
+ffffffff8203bee0 d rtnl_create_link.__msg
+ffffffff8203bf10 d rtnl_create_link.__msg.2
+ffffffff8203bf40 d ifla_policy
+ffffffff8203c350 d rtnetlink_rcv_msg.__msg
+ffffffff8203c370 d rtnl_valid_getlink_req.__msg
+ffffffff8203c390 d rtnl_valid_getlink_req.__msg.11
+ffffffff8203c3c0 d rtnl_valid_getlink_req.__msg.12
+ffffffff8203c3f0 d rtnl_ensure_unique_netns.__msg
+ffffffff8203c420 d rtnl_ensure_unique_netns.__msg.13
+ffffffff8203c450 d rtnl_dump_ifinfo.__msg
+ffffffff8203c480 d rtnl_dump_ifinfo.__msg.14
+ffffffff8203c4b0 d rtnl_valid_dump_ifinfo_req.__msg
+ffffffff8203c4d0 d rtnl_valid_dump_ifinfo_req.__msg.15
+ffffffff8203c500 d rtnl_valid_dump_ifinfo_req.__msg.16
+ffffffff8203c540 d ifla_info_policy
+ffffffff8203c5a0 d ifla_vf_policy
+ffffffff8203c680 d ifla_port_policy
+ffffffff8203c700 d do_set_proto_down.__msg
+ffffffff8203c730 d ifla_proto_down_reason_policy
+ffffffff8203c760 d do_set_proto_down.__msg.18
+ffffffff8203c780 d do_set_proto_down.__msg.19
+ffffffff8203c7b0 d ifla_xdp_policy
+ffffffff8203c840 d __rtnl_newlink.__msg
+ffffffff8203c860 d rtnl_newlink_create.__msg
+ffffffff8203c880 d rtnl_alt_ifname.__msg
+ffffffff8203c8b0 d rtnl_fdb_add.__msg
+ffffffff8203c8c0 d rtnl_fdb_add.__msg.23
+ffffffff8203c8d0 d rtnl_fdb_add.__msg.24
+ffffffff8203c8e0 d rtnl_fdb_add.__msg.25
+ffffffff8203c910 d fdb_vid_parse.__msg
+ffffffff8203c930 d fdb_vid_parse.__msg.26
+ffffffff8203c940 d rtnl_fdb_del.__msg
+ffffffff8203c950 d rtnl_fdb_del.__msg.27
+ffffffff8203c960 d rtnl_fdb_del.__msg.28
+ffffffff8203c970 d rtnl_fdb_del.__msg.29
+ffffffff8203c9a0 d fdb_del_bulk_policy
+ffffffff8203cac0 d rtnl_fdb_get.__msg
+ffffffff8203caf0 d rtnl_fdb_get.__msg.31
+ffffffff8203cb10 d rtnl_fdb_get.__msg.32
+ffffffff8203cb40 d rtnl_fdb_get.__msg.33
+ffffffff8203cb60 d rtnl_fdb_get.__msg.34
+ffffffff8203cb80 d rtnl_fdb_get.__msg.35
+ffffffff8203cba0 d rtnl_fdb_get.__msg.36
+ffffffff8203cbc0 d rtnl_fdb_get.__msg.37
+ffffffff8203cbe0 d rtnl_fdb_get.__msg.38
+ffffffff8203cc10 d valid_fdb_get_strict.__msg
+ffffffff8203cc40 d valid_fdb_get_strict.__msg.39
+ffffffff8203cc70 d valid_fdb_get_strict.__msg.40
+ffffffff8203cca0 d valid_fdb_get_strict.__msg.41
+ffffffff8203ccd0 d valid_fdb_get_strict.__msg.42
+ffffffff8203cd00 d valid_fdb_dump_strict.__msg
+ffffffff8203cd30 d valid_fdb_dump_strict.__msg.43
+ffffffff8203cd60 d valid_fdb_dump_strict.__msg.44
+ffffffff8203cd90 d valid_fdb_dump_strict.__msg.45
+ffffffff8203cdc0 d valid_fdb_dump_strict.__msg.46
+ffffffff8203cdf0 d valid_bridge_getlink_req.__msg
+ffffffff8203ce20 d valid_bridge_getlink_req.__msg.47
+ffffffff8203ce60 d valid_bridge_getlink_req.__msg.48
+ffffffff8203cea0 d rtnl_bridge_dellink.__msg
+ffffffff8203ceb0 d rtnl_bridge_setlink.__msg
+ffffffff8203cec0 d rtnl_stats_get.__msg
+ffffffff8203cef0 d rtnl_valid_stats_req.__msg
+ffffffff8203cf10 d rtnl_valid_stats_req.__msg.49
+ffffffff8203cf40 d rtnl_valid_stats_req.__msg.50
+ffffffff8203cf70 d rtnl_stats_get_policy
+ffffffff8203cfa0 d rtnl_stats_get_policy_filters
+ffffffff8203d000 d rtnl_stats_get_parse_filters.__msg
+ffffffff8203d030 d nla_parse_nested.__msg
+ffffffff8203d050 d nla_parse_nested.__msg
+ffffffff8203d070 d nla_parse_nested.__msg
+ffffffff8203d090 d nla_parse_nested.__msg
+ffffffff8203d0b0 d nla_parse_nested.__msg
+ffffffff8203d0d0 d nla_parse_nested.__msg
+ffffffff8203d0f0 d rtnl_stats_dump.__msg
+ffffffff8203d120 d rtnl_stats_set.__msg
+ffffffff8203d150 d rtnl_stats_set.__msg.52
+ffffffff8203d180 d ifla_stats_set_policy
+ffffffff8203d220 d bpf_xdp_get_buff_len_trace_proto
+ffffffff8203d280 d bpf_skb_output_proto
+ffffffff8203d2e0 d bpf_xdp_output_proto
+ffffffff8203d340 d bpf_get_socket_ptr_cookie_proto
+ffffffff8203d3a0 d bpf_sk_setsockopt_proto
+ffffffff8203d400 d bpf_sk_getsockopt_proto
+ffffffff8203d460 d bpf_unlocked_sk_setsockopt_proto
+ffffffff8203d4c0 d bpf_unlocked_sk_getsockopt_proto
+ffffffff8203d520 d bpf_tcp_sock_proto
+ffffffff8203d580 d sk_filter_verifier_ops
+ffffffff8203d5b8 d sk_filter_prog_ops
+ffffffff8203d5c0 d tc_cls_act_verifier_ops
+ffffffff8203d5f8 d tc_cls_act_prog_ops
+ffffffff8203d600 d xdp_verifier_ops
+ffffffff8203d638 d xdp_prog_ops
+ffffffff8203d640 d cg_skb_verifier_ops
+ffffffff8203d678 d cg_skb_prog_ops
+ffffffff8203d680 d lwt_in_verifier_ops
+ffffffff8203d6b8 d lwt_in_prog_ops
+ffffffff8203d6c0 d lwt_out_verifier_ops
+ffffffff8203d6f8 d lwt_out_prog_ops
+ffffffff8203d700 d lwt_xmit_verifier_ops
+ffffffff8203d738 d lwt_xmit_prog_ops
+ffffffff8203d740 d lwt_seg6local_verifier_ops
+ffffffff8203d778 d lwt_seg6local_prog_ops
+ffffffff8203d780 d cg_sock_verifier_ops
+ffffffff8203d7b8 d cg_sock_prog_ops
+ffffffff8203d7c0 d cg_sock_addr_verifier_ops
+ffffffff8203d7f8 d cg_sock_addr_prog_ops
+ffffffff8203d800 d sock_ops_verifier_ops
+ffffffff8203d838 d sock_ops_prog_ops
+ffffffff8203d840 d sk_skb_verifier_ops
+ffffffff8203d878 d sk_skb_prog_ops
+ffffffff8203d880 d sk_msg_verifier_ops
+ffffffff8203d8b8 d sk_msg_prog_ops
+ffffffff8203d8c0 d flow_dissector_verifier_ops
+ffffffff8203d8f8 d flow_dissector_prog_ops
+ffffffff8203d900 d sk_reuseport_verifier_ops
+ffffffff8203d938 d sk_reuseport_prog_ops
+ffffffff8203d940 d sk_lookup_prog_ops
+ffffffff8203d948 d sk_lookup_verifier_ops
+ffffffff8203d980 d bpf_skc_to_tcp6_sock_proto
+ffffffff8203d9e0 d bpf_skc_to_tcp_sock_proto
+ffffffff8203da40 d bpf_skc_to_tcp_timewait_sock_proto
+ffffffff8203daa0 d bpf_skc_to_tcp_request_sock_proto
+ffffffff8203db00 d bpf_skc_to_udp6_sock_proto
+ffffffff8203db60 d bpf_skc_to_unix_sock_proto
+ffffffff8203dbc0 d bpf_skc_to_mptcp_sock_proto
+ffffffff8203dc20 d bpf_sock_from_file_proto
+ffffffff8203dc80 d bpf_event_output_data_proto
+ffffffff8203dce0 d bpf_sk_storage_get_cg_sock_proto
+ffffffff8203dd40 d bpf_sk_storage_get_proto
+ffffffff8203dda0 d bpf_sk_storage_delete_proto
+ffffffff8203de00 d bpf_sock_map_update_proto
+ffffffff8203de60 d bpf_sock_hash_update_proto
+ffffffff8203dec0 d bpf_msg_redirect_map_proto
+ffffffff8203df20 d bpf_msg_redirect_hash_proto
+ffffffff8203df80 d bpf_sk_redirect_map_proto
+ffffffff8203dfe0 d bpf_sk_redirect_hash_proto
+ffffffff8203e040 d chk_code_allowed.codes
+ffffffff8203e0f8 d bpf_skb_load_bytes_proto
+ffffffff8203e158 d bpf_skb_load_bytes_relative_proto
+ffffffff8203e1b8 d bpf_get_socket_cookie_proto
+ffffffff8203e218 d bpf_get_socket_uid_proto
+ffffffff8203e278 d bpf_skb_event_output_proto
+ffffffff8203e2d8 d bpf_skb_store_bytes_proto
+ffffffff8203e338 d bpf_skb_pull_data_proto
+ffffffff8203e398 d bpf_csum_diff_proto
+ffffffff8203e3f8 d bpf_csum_update_proto
+ffffffff8203e458 d bpf_csum_level_proto
+ffffffff8203e4b8 d bpf_l3_csum_replace_proto
+ffffffff8203e518 d bpf_l4_csum_replace_proto
+ffffffff8203e578 d bpf_clone_redirect_proto
+ffffffff8203e5d8 d bpf_get_cgroup_classid_proto
+ffffffff8203e638 d bpf_skb_vlan_push_proto
+ffffffff8203e698 d bpf_skb_vlan_pop_proto
+ffffffff8203e6f8 d bpf_skb_change_proto_proto
+ffffffff8203e758 d bpf_skb_change_type_proto
+ffffffff8203e7b8 d bpf_skb_adjust_room_proto
+ffffffff8203e818 d bpf_skb_change_tail_proto
+ffffffff8203e878 d bpf_skb_change_head_proto
+ffffffff8203e8d8 d bpf_skb_get_tunnel_key_proto
+ffffffff8203e938 d bpf_skb_get_tunnel_opt_proto
+ffffffff8203e998 d bpf_redirect_proto
+ffffffff8203e9f8 d bpf_redirect_neigh_proto
+ffffffff8203ea58 d bpf_redirect_peer_proto
+ffffffff8203eab8 d bpf_get_route_realm_proto
+ffffffff8203eb18 d bpf_get_hash_recalc_proto
+ffffffff8203eb78 d bpf_set_hash_invalid_proto
+ffffffff8203ebd8 d bpf_set_hash_proto
+ffffffff8203ec38 d bpf_skb_under_cgroup_proto
+ffffffff8203ec98 d bpf_skb_fib_lookup_proto
+ffffffff8203ecf8 d bpf_skb_check_mtu_proto
+ffffffff8203ed58 d bpf_sk_fullsock_proto
+ffffffff8203edb8 d bpf_skb_get_xfrm_state_proto
+ffffffff8203ee18 d bpf_skb_cgroup_id_proto
+ffffffff8203ee78 d bpf_skb_ancestor_cgroup_id_proto
+ffffffff8203eed8 d bpf_sk_lookup_tcp_proto
+ffffffff8203ef38 d bpf_sk_lookup_udp_proto
+ffffffff8203ef98 d bpf_sk_release_proto
+ffffffff8203eff8 d bpf_get_listener_sock_proto
+ffffffff8203f058 d bpf_skc_lookup_tcp_proto
+ffffffff8203f0b8 d bpf_tcp_check_syncookie_proto
+ffffffff8203f118 d bpf_skb_ecn_set_ce_proto
+ffffffff8203f178 d bpf_tcp_gen_syncookie_proto
+ffffffff8203f1d8 d bpf_sk_assign_proto
+ffffffff8203f238 d bpf_skb_set_tstamp_proto
+ffffffff8203f298 d bpf_skb_set_tunnel_key_proto
+ffffffff8203f2f8 d bpf_skb_set_tunnel_opt_proto
+ffffffff8203f358 d bpf_xdp_event_output_proto
+ffffffff8203f3b8 d bpf_xdp_adjust_head_proto
+ffffffff8203f418 d bpf_xdp_adjust_meta_proto
+ffffffff8203f478 d bpf_xdp_redirect_proto
+ffffffff8203f4d8 d bpf_xdp_redirect_map_proto
+ffffffff8203f538 d bpf_xdp_adjust_tail_proto
+ffffffff8203f598 d bpf_xdp_get_buff_len_proto
+ffffffff8203f5f8 d bpf_xdp_load_bytes_proto
+ffffffff8203f658 d bpf_xdp_store_bytes_proto
+ffffffff8203f6b8 d bpf_xdp_fib_lookup_proto
+ffffffff8203f718 d bpf_xdp_check_mtu_proto
+ffffffff8203f778 d bpf_xdp_sk_lookup_udp_proto
+ffffffff8203f7d8 d bpf_xdp_sk_lookup_tcp_proto
+ffffffff8203f838 d bpf_xdp_skc_lookup_tcp_proto
+ffffffff8203f898 d bpf_sk_cgroup_id_proto
+ffffffff8203f8f8 d bpf_sk_ancestor_cgroup_id_proto
+ffffffff8203f958 d bpf_lwt_in_push_encap_proto
+ffffffff8203f9b8 d bpf_lwt_xmit_push_encap_proto
+ffffffff8203fa18 d bpf_get_socket_cookie_sock_proto
+ffffffff8203fa78 d bpf_get_netns_cookie_sock_proto
+ffffffff8203fad8 d bpf_bind_proto
+ffffffff8203fb38 d bpf_get_socket_cookie_sock_addr_proto
+ffffffff8203fb98 d bpf_get_netns_cookie_sock_addr_proto
+ffffffff8203fbf8 d bpf_sock_addr_sk_lookup_tcp_proto
+ffffffff8203fc58 d bpf_sock_addr_sk_lookup_udp_proto
+ffffffff8203fcb8 d bpf_sock_addr_skc_lookup_tcp_proto
+ffffffff8203fd18 d bpf_sock_addr_setsockopt_proto
+ffffffff8203fd78 d bpf_sock_addr_getsockopt_proto
+ffffffff8203fdd8 d bpf_sock_ops_setsockopt_proto
+ffffffff8203fe38 d bpf_sock_ops_getsockopt_proto
+ffffffff8203fe98 d bpf_sock_ops_cb_flags_set_proto
+ffffffff8203fef8 d bpf_get_socket_cookie_sock_ops_proto
+ffffffff8203ff58 d bpf_get_netns_cookie_sock_ops_proto
+ffffffff8203ffb8 d bpf_sock_ops_load_hdr_opt_proto
+ffffffff82040018 d bpf_sock_ops_store_hdr_opt_proto
+ffffffff82040078 d bpf_sock_ops_reserve_hdr_opt_proto
+ffffffff820400d8 d sk_skb_pull_data_proto
+ffffffff82040138 d sk_skb_change_tail_proto
+ffffffff82040198 d sk_skb_change_head_proto
+ffffffff820401f8 d sk_skb_adjust_room_proto
+ffffffff82040258 d bpf_msg_apply_bytes_proto
+ffffffff820402b8 d bpf_msg_cork_bytes_proto
+ffffffff82040318 d bpf_msg_pull_data_proto
+ffffffff82040378 d bpf_msg_push_data_proto
+ffffffff820403d8 d bpf_msg_pop_data_proto
+ffffffff82040438 d bpf_get_netns_cookie_sk_msg_proto
+ffffffff82040498 d bpf_flow_dissector_load_bytes_proto
+ffffffff820404f8 d sk_select_reuseport_proto
+ffffffff82040558 d sk_reuseport_load_bytes_proto
+ffffffff820405b8 d sk_reuseport_load_bytes_relative_proto
+ffffffff82040618 d bpf_sk_lookup_assign_proto
+ffffffff82040890 d mem_id_rht_params
+ffffffff820408b8 d dql_group
+ffffffff820408e0 d net_ns_type_operations
+ffffffff82040910 d netstat_group
+ffffffff82040938 d wireless_group
+ffffffff82040960 d rx_queue_sysfs_ops
+ffffffff82040970 d rx_queue_default_group
+ffffffff820409a0 d netdev_queue_sysfs_ops
+ffffffff820409b0 d netdev_queue_default_group
+ffffffff820409e0 d net_class_group
+ffffffff82040a08 d fmt_hex
+ffffffff82040a10 d operstates
+ffffffff82040a48 d fmt_u64
+ffffffff82040a50 d dev_seq_ops
+ffffffff82040a70 d softnet_seq_ops
+ffffffff82040a90 d ptype_seq_ops
+ffffffff82040ab0 d dev_mc_seq_ops
+ffffffff82040ad0 d fib_nl_newrule.__msg
+ffffffff82040af0 d fib_nl_newrule.__msg.2
+ffffffff82040b10 d fib_nl_newrule.__msg.3
+ffffffff82040b30 d fib_nl_delrule.__msg
+ffffffff82040b50 d fib_nl_delrule.__msg.4
+ffffffff82040b70 d fib_nl_delrule.__msg.5
+ffffffff82040b90 d fib_rule_policy
+ffffffff82040d20 d fib_nl2rule.__msg
+ffffffff82040d40 d fib_nl2rule.__msg.8
+ffffffff82040d60 d fib_nl2rule.__msg.9
+ffffffff82040d70 d fib_nl2rule.__msg.10
+ffffffff82040d90 d fib_nl2rule.__msg.11
+ffffffff82040dc0 d fib_nl2rule.__msg.12
+ffffffff82040df0 d fib_nl2rule.__msg.13
+ffffffff82040e10 d fib_nl2rule.__msg.14
+ffffffff82040e30 d fib_nl2rule.__msg.15
+ffffffff82040e50 d fib_nl2rule.__msg.16
+ffffffff82040e70 d fib_nl2rule_l3mdev.__msg
+ffffffff82040ea0 d fib_valid_dumprule_req.__msg
+ffffffff82040ed0 d fib_valid_dumprule_req.__msg.19
+ffffffff82040f10 d fib_valid_dumprule_req.__msg.20
+ffffffff82040f43 d str__skb__trace_system_name
+ffffffff82040f47 d str__net__trace_system_name
+ffffffff82040f4b d str__sock__trace_system_name
+ffffffff82040f50 d str__udp__trace_system_name
+ffffffff82040f54 d str__tcp__trace_system_name
+ffffffff82040f58 d str__fib__trace_system_name
+ffffffff82040f5c d str__bridge__trace_system_name
+ffffffff82040f63 d str__neigh__trace_system_name
+ffffffff82040f70 d trace_raw_output_kfree_skb.symbols
+ffffffff820413a0 d trace_raw_output_sock_exceed_buf_limit.symbols
+ffffffff820413d0 d trace_raw_output_inet_sock_set_state.symbols
+ffffffff82041400 d trace_raw_output_inet_sock_set_state.symbols.243
+ffffffff82041450 d trace_raw_output_inet_sock_set_state.symbols.244
+ffffffff82041520 d trace_raw_output_inet_sock_set_state.symbols.245
+ffffffff820415f0 d trace_raw_output_inet_sk_error_report.symbols
+ffffffff82041620 d trace_raw_output_inet_sk_error_report.symbols.248
+ffffffff82041670 d trace_raw_output_tcp_event_sk_skb.symbols
+ffffffff820416a0 d trace_raw_output_tcp_event_sk_skb.symbols.254
+ffffffff82041770 d trace_raw_output_tcp_event_sk.symbols
+ffffffff820417a0 d trace_raw_output_tcp_retransmit_synack.symbols
+ffffffff820417d0 d trace_raw_output_tcp_probe.symbols
+ffffffff82041810 d trace_raw_output_neigh_update.symbols
+ffffffff820418a0 d trace_raw_output_neigh_update.symbols.352
+ffffffff82041930 d trace_raw_output_neigh__update.symbols
+ffffffff82041ac0 d eth_header_ops
+ffffffff82041b00 d qdisc_alloc.__msg
+ffffffff82041b20 d qdisc_create_dflt.__msg
+ffffffff82041b50 d mq_class_ops
+ffffffff82041bc8 d netlink_ops
+ffffffff82041cc8 d netlink_rhashtable_params
+ffffffff82041cf0 d netlink_family_ops
+ffffffff82041d10 d netlink_seq_ops
+ffffffff82041d30 d genl_ctrl_ops
+ffffffff82041da0 d genl_ctrl_groups
+ffffffff82041dc0 d ctrl_policy_family
+ffffffff82041df0 d ctrl_policy_policy
+ffffffff82041ed0 d genl_header_check.__msg
+ffffffff82041f00 d genl_header_check.__msg.11
+ffffffff82042040 d link_mode_params
+ffffffff82042330 d netif_msg_class_names
+ffffffff82042510 d wol_mode_names
+ffffffff82042610 d sof_timestamping_names
+ffffffff82042810 d ts_tx_type_names
+ffffffff82042890 d ts_rx_filter_names
+ffffffff82042a90 d udp_tunnel_type_names
+ffffffff82042af0 d netdev_features_strings
+ffffffff820432f0 d rss_hash_func_strings
+ffffffff82043350 d tunable_strings
+ffffffff820433f0 d phy_tunable_strings
+ffffffff82043470 d link_mode_names
+ffffffff82044010 d ethnl_header_policy
+ffffffff82044050 d ethnl_header_policy_stats
+ffffffff82044090 d ethnl_parse_header_dev_get.__msg
+ffffffff820440b0 d ethnl_parse_header_dev_get.__msg.1
+ffffffff820440d0 d ethnl_parse_header_dev_get.__msg.2
+ffffffff820440f0 d ethnl_parse_header_dev_get.__msg.3
+ffffffff82044110 d ethnl_parse_header_dev_get.__msg.4
+ffffffff82044140 d ethnl_reply_init.__msg
+ffffffff82044160 d ethnl_notify_handlers
+ffffffff82044290 d ethnl_default_notify_ops
+ffffffff820443c0 d ethtool_genl_ops
+ffffffff82044be0 d ethtool_nl_mcgrps
+ffffffff82044c00 d ethnl_default_requests
+ffffffff82044d30 d ethnl_parse_bitset.__msg
+ffffffff82044d60 d ethnl_parse_bitset.__msg.1
+ffffffff82044d90 d bitset_policy
+ffffffff82044df0 d ethnl_update_bitset32_verbose.__msg
+ffffffff82044e20 d ethnl_update_bitset32_verbose.__msg.3
+ffffffff82044e50 d ethnl_update_bitset32_verbose.__msg.4
+ffffffff82044e90 d ethnl_compact_sanity_checks.__msg
+ffffffff82044eb0 d ethnl_compact_sanity_checks.__msg.5
+ffffffff82044ed0 d ethnl_compact_sanity_checks.__msg.6
+ffffffff82044ef0 d ethnl_compact_sanity_checks.__msg.7
+ffffffff82044f20 d ethnl_compact_sanity_checks.__msg.8
+ffffffff82044f50 d ethnl_compact_sanity_checks.__msg.9
+ffffffff82044f80 d ethnl_compact_sanity_checks.__msg.10
+ffffffff82044fb0 d bit_policy
+ffffffff82044ff0 d ethnl_parse_bit.__msg
+ffffffff82045010 d ethnl_parse_bit.__msg.11
+ffffffff82045030 d ethnl_parse_bit.__msg.12
+ffffffff82045050 d ethnl_parse_bit.__msg.13
+ffffffff82045080 d ethnl_strset_get_policy
+ffffffff820450c0 d ethnl_strset_request_ops
+ffffffff82045100 d strset_stringsets_policy
+ffffffff82045120 d strset_parse_request.__msg
+ffffffff82045140 d get_stringset_policy
+ffffffff82045160 d info_template
+ffffffff820452b0 d strset_prepare_data.__msg
+ffffffff820452e0 d ethnl_linkinfo_get_policy
+ffffffff82045300 d ethnl_linkinfo_request_ops
+ffffffff82045340 d ethnl_linkinfo_set_policy
+ffffffff820453a0 d ethnl_set_linkinfo.__msg
+ffffffff820453d0 d ethnl_set_linkinfo.__msg.1
+ffffffff820453f0 d linkinfo_prepare_data.__msg
+ffffffff82045420 d ethnl_linkmodes_get_policy
+ffffffff82045440 d ethnl_linkmodes_request_ops
+ffffffff82045480 d ethnl_linkmodes_set_policy
+ffffffff82045520 d ethnl_set_linkmodes.__msg
+ffffffff82045550 d ethnl_set_linkmodes.__msg.1
+ffffffff82045570 d linkmodes_prepare_data.__msg
+ffffffff820455a0 d ethnl_check_linkmodes.__msg
+ffffffff820455c0 d ethnl_check_linkmodes.__msg.2
+ffffffff820455e0 d ethnl_update_linkmodes.__msg
+ffffffff82045620 d ethnl_update_linkmodes.__msg.3
+ffffffff82045650 d ethnl_linkstate_get_policy
+ffffffff82045670 d ethnl_linkstate_request_ops
+ffffffff820456b0 d ethnl_debug_get_policy
+ffffffff820456d0 d ethnl_debug_request_ops
+ffffffff82045710 d ethnl_debug_set_policy
+ffffffff82045740 d ethnl_wol_get_policy
+ffffffff82045760 d ethnl_wol_request_ops
+ffffffff820457a0 d ethnl_wol_set_policy
+ffffffff82045800 d ethnl_set_wol.__msg
+ffffffff82045830 d ethnl_set_wol.__msg.1
+ffffffff82045860 d ethnl_features_get_policy
+ffffffff82045880 d ethnl_features_request_ops
+ffffffff820458c0 d ethnl_features_set_policy
+ffffffff82045900 d ethnl_set_features.__msg
+ffffffff82045930 d features_send_reply.__msg
+ffffffff82045950 d ethnl_privflags_get_policy
+ffffffff82045970 d ethnl_privflags_request_ops
+ffffffff820459b0 d ethnl_privflags_set_policy
+ffffffff820459e0 d ethnl_rings_get_policy
+ffffffff82045a00 d ethnl_rings_request_ops
+ffffffff82045a40 d ethnl_rings_set_policy
+ffffffff82045b20 d ethnl_set_rings.__msg
+ffffffff82045b50 d ethnl_set_rings.__msg.1
+ffffffff82045b70 d ethnl_set_rings.__msg.2
+ffffffff82045b90 d ethnl_set_rings.__msg.3
+ffffffff82045bc0 d ethnl_channels_get_policy
+ffffffff82045be0 d ethnl_channels_request_ops
+ffffffff82045c20 d ethnl_channels_set_policy
+ffffffff82045cc0 d ethnl_set_channels.__msg
+ffffffff82045cf0 d ethnl_set_channels.__msg.1
+ffffffff82045d40 d ethnl_set_channels.__msg.2
+ffffffff82045d90 d ethnl_coalesce_get_policy
+ffffffff82045db0 d ethnl_coalesce_request_ops
+ffffffff82045df0 d ethnl_coalesce_set_policy
+ffffffff82045f90 d ethnl_set_coalesce.__msg
+ffffffff82045fc0 d ethnl_pause_get_policy
+ffffffff82045fe0 d ethnl_pause_request_ops
+ffffffff82046020 d ethnl_pause_set_policy
+ffffffff82046070 d ethnl_eee_get_policy
+ffffffff82046090 d ethnl_eee_request_ops
+ffffffff820460d0 d ethnl_eee_set_policy
+ffffffff82046150 d ethnl_tsinfo_get_policy
+ffffffff82046170 d ethnl_tsinfo_request_ops
+ffffffff820461b0 d ethnl_cable_test_act_policy
+ffffffff820461d0 d ethnl_cable_test_tdr_act_policy
+ffffffff82046200 d cable_test_tdr_act_cfg_policy
+ffffffff82046250 d ethnl_act_cable_test_tdr_cfg.__msg
+ffffffff82046270 d ethnl_act_cable_test_tdr_cfg.__msg.2
+ffffffff82046290 d ethnl_act_cable_test_tdr_cfg.__msg.3
+ffffffff820462b0 d ethnl_act_cable_test_tdr_cfg.__msg.4
+ffffffff820462d0 d ethnl_act_cable_test_tdr_cfg.__msg.5
+ffffffff820462f0 d ethnl_act_cable_test_tdr_cfg.__msg.6
+ffffffff82046310 d ethnl_tunnel_info_get_policy
+ffffffff82046330 d ethnl_tunnel_info_reply_size.__msg
+ffffffff82046360 d ethnl_fec_get_policy
+ffffffff82046380 d ethnl_fec_request_ops
+ffffffff820463c0 d ethnl_fec_set_policy
+ffffffff82046400 d ethnl_set_fec.__msg
+ffffffff82046420 d ethnl_set_fec.__msg.1
+ffffffff82046438 d ethnl_module_eeprom_request_ops
+ffffffff82046470 d ethnl_module_eeprom_get_policy
+ffffffff820464e0 d eeprom_parse_request.__msg
+ffffffff82046520 d eeprom_parse_request.__msg.1
+ffffffff82046550 d eeprom_parse_request.__msg.2
+ffffffff82046580 d stats_std_names
+ffffffff82046600 d stats_eth_phy_names
+ffffffff82046620 d stats_eth_mac_names
+ffffffff820468e0 d stats_eth_ctrl_names
+ffffffff82046940 d stats_rmon_names
+ffffffff820469c0 d ethnl_stats_get_policy
+ffffffff82046a00 d ethnl_stats_request_ops
+ffffffff82046a40 d stats_parse_request.__msg
+ffffffff82046a60 d ethnl_phc_vclocks_get_policy
+ffffffff82046a80 d ethnl_phc_vclocks_request_ops
+ffffffff82046ac0 d ethnl_module_get_policy
+ffffffff82046ae0 d ethnl_module_request_ops
+ffffffff82046b20 d ethnl_module_set_policy
+ffffffff82046b50 d module_set_power_mode.__msg
+ffffffff82046b90 d ethnl_pse_get_policy
+ffffffff82046bb0 d ethnl_pse_request_ops
+ffffffff82046bf0 d ethnl_pse_set_policy
+ffffffff82046c40 d pse_get_pse_attributes.__msg
+ffffffff82046c60 d pse_get_pse_attributes.__msg.1
+ffffffff82046c80 d pse_set_pse_config.__msg
+ffffffff82046ca0 d pse_set_pse_config.__msg.2
+ffffffff82046cc0 d ip_tos2prio
+ffffffff82046cd0 d rt_cache_seq_ops
+ffffffff82046cf0 d rt_cpu_seq_ops
+ffffffff82046d10 d inet_rtm_valid_getroute_req.__msg
+ffffffff82046d40 d inet_rtm_valid_getroute_req.__msg.20
+ffffffff82046d80 d inet_rtm_valid_getroute_req.__msg.21
+ffffffff82046dc0 d inet_rtm_valid_getroute_req.__msg.22
+ffffffff82046e00 d inet_rtm_valid_getroute_req.__msg.23
+ffffffff82046e31 d ipv4_route_flush_procname
+ffffffff82046e37 d ip_frag_cache_name
+ffffffff82046e48 d ip4_rhash_params
+ffffffff82046e70 d tcp_vm_ops
+ffffffff82046f18 d tcp_request_sock_ipv4_ops
+ffffffff82046f40 d ipv4_specific
+ffffffff82046fa0 d tcp4_seq_ops
+ffffffff82046fc0 d tcp_metrics_nl_ops
+ffffffff82046ff0 d tcp_metrics_nl_policy
+ffffffff820470e8 d tcpv4_offload.llvm.5580130562379775080
+ffffffff82047108 d raw_seq_ops
+ffffffff82047128 d udp_seq_ops
+ffffffff82047148 d udplite_protocol
+ffffffff82047160 d udpv4_offload.llvm.599750845429973911
+ffffffff82047180 d arp_direct_ops
+ffffffff820471a8 d arp_hh_ops
+ffffffff820471d0 d arp_generic_ops
+ffffffff820471f8 d arp_seq_ops
+ffffffff82047220 d icmp_err_convert
+ffffffff820472a0 d icmp_pointers
+ffffffff820473d0 d inet_af_policy
+ffffffff820473f0 d ifa_ipv4_policy
+ffffffff820474b0 d inet_valid_dump_ifaddr_req.__msg
+ffffffff820474e0 d inet_valid_dump_ifaddr_req.__msg.47
+ffffffff82047520 d inet_valid_dump_ifaddr_req.__msg.48
+ffffffff82047550 d inet_valid_dump_ifaddr_req.__msg.49
+ffffffff82047580 d inet_netconf_valid_get_req.__msg
+ffffffff820475b0 d devconf_ipv4_policy
+ffffffff82047640 d inet_netconf_valid_get_req.__msg.50
+ffffffff82047680 d inet_netconf_dump_devconf.__msg
+ffffffff820476b0 d inet_netconf_dump_devconf.__msg.51
+ffffffff820476e8 d inet_stream_ops
+ffffffff820477e8 d inet_dgram_ops
+ffffffff820478e8 d ipip_offload
+ffffffff82047908 d inet_family_ops
+ffffffff82047920 d icmp_protocol
+ffffffff82047938 d udp_protocol
+ffffffff82047950 d tcp_protocol
+ffffffff82047968 d igmp_protocol
+ffffffff82047980 d inet_sockraw_ops
+ffffffff82047a80 d igmp_mc_seq_ops
+ffffffff82047aa0 d igmp_mcf_seq_ops
+ffffffff82047ac0 d rtm_ipv4_policy
+ffffffff82047cb0 d fib_gw_from_via.__msg
+ffffffff82047ce0 d fib_gw_from_via.__msg.1
+ffffffff82047d00 d fib_gw_from_via.__msg.2
+ffffffff82047d20 d fib_gw_from_via.__msg.3
+ffffffff82047d50 d ip_valid_fib_dump_req.__msg
+ffffffff82047d80 d ip_valid_fib_dump_req.__msg.5
+ffffffff82047db0 d ip_valid_fib_dump_req.__msg.6
+ffffffff82047de0 d ip_valid_fib_dump_req.__msg.7
+ffffffff82047e40 d rtm_to_fib_config.__msg
+ffffffff82047e70 d rtm_to_fib_config.__msg.15
+ffffffff82047e90 d rtm_to_fib_config.__msg.16
+ffffffff82047ed0 d rtm_to_fib_config.__msg.17
+ffffffff82047f10 d lwtunnel_valid_encap_type.__msg
+ffffffff82047f40 d lwtunnel_valid_encap_type.__msg
+ffffffff82047f70 d lwtunnel_valid_encap_type.__msg
+ffffffff82047fa0 d inet_rtm_delroute.__msg
+ffffffff82047fc0 d inet_rtm_delroute.__msg.18
+ffffffff82048000 d inet_dump_fib.__msg
+ffffffff82048020 d fib_props
+ffffffff82048080 d fib_nh_common_init.__msg
+ffffffff8204809d d fib_create_info.__msg
+ffffffff820480b0 d fib_create_info.__msg.2
+ffffffff820480f0 d fib_create_info.__msg.3
+ffffffff82048110 d fib_create_info.__msg.4
+ffffffff82048130 d fib_create_info.__msg.5
+ffffffff82048180 d fib_create_info.__msg.6
+ffffffff82048193 d fib_create_info.__msg.7
+ffffffff820481b0 d fib_create_info.__msg.8
+ffffffff820481f0 d fib_create_info.__msg.9
+ffffffff82048220 d fib_create_info.__msg.10
+ffffffff82048240 d fib_check_nh_v4_gw.__msg
+ffffffff82048260 d fib_check_nh_v4_gw.__msg.12
+ffffffff82048290 d fib_check_nh_v4_gw.__msg.13
+ffffffff820482b0 d fib_check_nh_v4_gw.__msg.14
+ffffffff820482d0 d fib_check_nh_v4_gw.__msg.15
+ffffffff820482f0 d fib_check_nh_v4_gw.__msg.16
+ffffffff82048310 d fib_check_nh_v4_gw.__msg.17
+ffffffff82048340 d fib_check_nh_nongw.__msg
+ffffffff82048380 d fib_check_nh_nongw.__msg.18
+ffffffff820483a0 d fib_get_nhs.__msg
+ffffffff820483c8 d fib_trie_seq_ops
+ffffffff820483e8 d fib_route_seq_ops
+ffffffff82048410 d fib_valid_key_len.__msg
+ffffffff82048430 d fib_valid_key_len.__msg.6
+ffffffff82048460 d rtn_type_names
+ffffffff820484c0 d fib4_notifier_ops_template
+ffffffff82048500 d ip_frag_ecn_table
+ffffffff82048510 d ping_v4_seq_ops
+ffffffff82048530 d ip_tunnel_header_ops
+ffffffff82048570 d gre_offload
+ffffffff82048590 d ip_metrics_convert.__msg
+ffffffff820485b0 d ip_metrics_convert.__msg.1
+ffffffff820485e0 d ip_metrics_convert.__msg.2
+ffffffff82048600 d ip_metrics_convert.__msg.3
+ffffffff82048640 d rtm_getroute_parse_ip_proto.__msg
+ffffffff82048660 d fib6_check_nexthop.__msg
+ffffffff82048690 d fib6_check_nexthop.__msg.1
+ffffffff820486c0 d fib_check_nexthop.__msg
+ffffffff820486f0 d fib_check_nexthop.__msg.2
+ffffffff82048730 d fib_check_nexthop.__msg.3
+ffffffff82048760 d check_src_addr.__msg
+ffffffff820487a0 d nexthop_check_scope.__msg
+ffffffff820487d0 d nexthop_check_scope.__msg.4
+ffffffff820487f0 d call_nexthop_notifiers.__msg
+ffffffff82048820 d rtm_nh_policy_new
+ffffffff820488f0 d rtm_to_nh_config.__msg
+ffffffff82048920 d rtm_to_nh_config.__msg.10
+ffffffff82048950 d rtm_to_nh_config.__msg.12
+ffffffff82048970 d rtm_to_nh_config.__msg.13
+ffffffff820489b0 d rtm_to_nh_config.__msg.14
+ffffffff820489e0 d rtm_to_nh_config.__msg.15
+ffffffff82048a00 d rtm_to_nh_config.__msg.16
+ffffffff82048a20 d rtm_to_nh_config.__msg.17
+ffffffff82048a70 d rtm_to_nh_config.__msg.18
+ffffffff82048ac0 d rtm_to_nh_config.__msg.19
+ffffffff82048ae0 d rtm_to_nh_config.__msg.20
+ffffffff82048b00 d rtm_to_nh_config.__msg.21
+ffffffff82048b30 d rtm_to_nh_config.__msg.22
+ffffffff82048b40 d rtm_to_nh_config.__msg.23
+ffffffff82048b50 d rtm_to_nh_config.__msg.24
+ffffffff82048b80 d rtm_to_nh_config.__msg.25
+ffffffff82048bc0 d rtm_to_nh_config.__msg.26
+ffffffff82048bf0 d rtm_to_nh_config.__msg.27
+ffffffff82048c20 d nh_check_attr_group.__msg
+ffffffff82048c50 d nh_check_attr_group.__msg.28
+ffffffff82048c80 d nh_check_attr_group.__msg.29
+ffffffff82048ca0 d nh_check_attr_group.__msg.30
+ffffffff82048cd0 d nh_check_attr_group.__msg.31
+ffffffff82048cf0 d nh_check_attr_group.__msg.32
+ffffffff82048d20 d nh_check_attr_group.__msg.33
+ffffffff82048d60 d valid_group_nh.__msg
+ffffffff82048da0 d valid_group_nh.__msg.34
+ffffffff82048de0 d valid_group_nh.__msg.35
+ffffffff82048e30 d nh_check_attr_fdb_group.__msg
+ffffffff82048e60 d nh_check_attr_fdb_group.__msg.36
+ffffffff82048ea0 d rtm_nh_res_policy_new
+ffffffff82048ee0 d rtm_to_nh_config_grp_res.__msg
+ffffffff82048f10 d rtm_nh_get_timer.__msg
+ffffffff82048f30 d nexthop_add.__msg
+ffffffff82048f4c d nexthop_add.__msg.37
+ffffffff82048f60 d insert_nexthop.__msg
+ffffffff82048fa0 d insert_nexthop.__msg.38
+ffffffff82048fe0 d replace_nexthop.__msg
+ffffffff82049030 d replace_nexthop_grp.__msg
+ffffffff82049060 d replace_nexthop_grp.__msg.39
+ffffffff820490a0 d replace_nexthop_grp.__msg.40
+ffffffff820490e0 d call_nexthop_res_table_notifiers.__msg
+ffffffff82049110 d replace_nexthop_single.__msg
+ffffffff82049140 d rtm_nh_policy_get
+ffffffff82049160 d __nh_valid_get_del_req.__msg
+ffffffff82049180 d __nh_valid_get_del_req.__msg.41
+ffffffff820491a0 d __nh_valid_get_del_req.__msg.42
+ffffffff820491c0 d rtm_nh_policy_dump
+ffffffff82049280 d __nh_valid_dump_req.__msg
+ffffffff820492a0 d __nh_valid_dump_req.__msg.43
+ffffffff820492c0 d __nh_valid_dump_req.__msg.44
+ffffffff82049300 d rtm_get_nexthop_bucket.__msg
+ffffffff82049320 d rtm_nh_policy_get_bucket
+ffffffff82049400 d nh_valid_get_bucket_req.__msg
+ffffffff82049420 d rtm_nh_res_bucket_policy_get
+ffffffff82049440 d nh_valid_get_bucket_req_res_bucket.__msg
+ffffffff82049460 d nexthop_find_group_resilient.__msg
+ffffffff82049480 d nexthop_find_group_resilient.__msg.45
+ffffffff820494b0 d rtm_nh_policy_dump_bucket
+ffffffff82049590 d rtm_nh_res_bucket_policy_dump
+ffffffff820495d0 d nh_valid_dump_nhid.__msg
+ffffffff820495f0 d snmp4_net_list
+ffffffff82049dd0 d snmp4_ipextstats_list
+ffffffff82049f00 d fib4_rule_configure.__msg
+ffffffff82049f2a d fib4_rule_configure.__msg.1
+ffffffff82049f40 d __param_str_log_ecn_error
+ffffffff82049f60 d __param_str_log_ecn_error
+ffffffff82049f80 d __param_str_log_ecn_error
+ffffffff82049fa0 d __param_str_log_ecn_error
+ffffffff82049fc0 d __param_str_log_ecn_error
+ffffffff82049fe0 d ipip_policy
+ffffffff8204a130 d ipip_netdev_ops
+ffffffff8204a3d0 d ipip_tpi
+ffffffff8204a3e0 d ipip_tpi
+ffffffff8204a3f0 d net_gre_protocol
+ffffffff8204a408 d ipgre_protocol
+ffffffff8204a420 d ipgre_policy
+ffffffff8204a5b0 d gre_tap_netdev_ops
+ffffffff8204a850 d ipgre_netdev_ops
+ffffffff8204aaf0 d ipgre_header_ops
+ffffffff8204ab30 d erspan_netdev_ops
+ffffffff8204add0 d vti_policy
+ffffffff8204ae40 d vti_netdev_ops
+ffffffff8204b0e0 d esp_type
+ffffffff8204b120 d esp_init_state.__msg
+ffffffff8204b150 d esp_init_state.__msg.7
+ffffffff8204b180 d esp_init_aead.__msg
+ffffffff8204b1a0 d esp_init_aead.__msg
+ffffffff8204b1c0 d esp_init_aead.__msg.9
+ffffffff8204b200 d esp_init_aead.__msg.9
+ffffffff8204b240 d esp_init_authenc.__msg
+ffffffff8204b260 d esp_init_authenc.__msg
+ffffffff8204b280 d esp_init_authenc.__msg.16
+ffffffff8204b2a0 d esp_init_authenc.__msg.16
+ffffffff8204b2c0 d esp_init_authenc.__msg.17
+ffffffff8204b300 d esp_init_authenc.__msg.17
+ffffffff8204b340 d esp_init_authenc.__msg.18
+ffffffff8204b380 d esp_init_authenc.__msg.18
+ffffffff8204b3c0 d esp_init_authenc.__msg.19
+ffffffff8204b400 d esp_init_authenc.__msg.19
+ffffffff8204b440 d tunnel64_protocol
+ffffffff8204b458 d tunnel4_protocol
+ffffffff8204b470 d inet6_diag_handler
+ffffffff8204b490 d inet_diag_handler
+ffffffff8204b510 d tcp_diag_handler
+ffffffff8204b548 d udplite_diag_handler
+ffffffff8204b580 d udp_diag_handler
+ffffffff8204b5c0 d __param_str_fast_convergence
+ffffffff8204b5db d __param_str_beta
+ffffffff8204b5f0 d __param_str_initial_ssthresh
+ffffffff8204b610 d __param_str_bic_scale
+ffffffff8204b630 d __param_str_tcp_friendliness
+ffffffff8204b650 d __param_str_hystart
+ffffffff8204b670 d __param_str_hystart_detect
+ffffffff8204b690 d __param_str_hystart_low_window
+ffffffff8204b6b0 d __param_str_hystart_ack_delta_us
+ffffffff8204b6d0 d cubic_root.v
+ffffffff8204b710 d xfrm4_policy_afinfo
+ffffffff8204b738 d xfrm4_input_afinfo.llvm.9130646183775884454
+ffffffff8204b748 d esp4_protocol
+ffffffff8204b760 d ah4_protocol
+ffffffff8204b778 d ipcomp4_protocol
+ffffffff8204b790 d xfrm_pol_inexact_params
+ffffffff8204b7c0 d __xfrm_init_state.__msg
+ffffffff8204b7e0 d __xfrm_init_state.__msg.1
+ffffffff8204b820 d __xfrm_init_state.__msg.2
+ffffffff8204b840 d __xfrm_init_state.__msg.3
+ffffffff8204b860 d __xfrm_init_state.__msg.4
+ffffffff8204b879 d xfrm4_mode_map
+ffffffff8204b888 d xfrm6_mode_map
+ffffffff8204b8a0 d xfrm_init_replay.__msg
+ffffffff8204b8e0 d xfrm_init_replay.__msg.1
+ffffffff8204b900 d xfrm_mib_list
+ffffffff8204bad0 d xfrm_msg_min
+ffffffff8204bb40 d xfrma_policy
+ffffffff8204bd50 d verify_newpolicy_info.__msg
+ffffffff8204bd70 d verify_newpolicy_info.__msg.3
+ffffffff8204bd90 d verify_newpolicy_info.__msg.4
+ffffffff8204bdd0 d verify_newpolicy_info.__msg.5
+ffffffff8204be10 d verify_newpolicy_info.__msg.6
+ffffffff8204be30 d verify_newpolicy_info.__msg.7
+ffffffff8204be60 d verify_policy_dir.__msg
+ffffffff8204be80 d validate_tmpl.__msg
+ffffffff8204beb0 d validate_tmpl.__msg.8
+ffffffff8204bef0 d validate_tmpl.__msg.9
+ffffffff8204bf20 d validate_tmpl.__msg.10
+ffffffff8204bf40 d validate_tmpl.__msg.11
+ffffffff8204bfa0 d xfrm_dispatch
+ffffffff8204c450 d xfrma_spd_policy
+ffffffff8204c4a0 d verify_newsa_info.__msg
+ffffffff8204c4c0 d verify_newsa_info.__msg.13
+ffffffff8204c500 d verify_newsa_info.__msg.14
+ffffffff8204c540 d verify_newsa_info.__msg.15
+ffffffff8204c570 d verify_newsa_info.__msg.16
+ffffffff8204c5b0 d verify_newsa_info.__msg.17
+ffffffff8204c5f0 d verify_newsa_info.__msg.18
+ffffffff8204c610 d verify_newsa_info.__msg.19
+ffffffff8204c670 d verify_newsa_info.__msg.20
+ffffffff8204c6d0 d verify_newsa_info.__msg.21
+ffffffff8204c700 d verify_newsa_info.__msg.22
+ffffffff8204c730 d verify_newsa_info.__msg.23
+ffffffff8204c780 d verify_newsa_info.__msg.24
+ffffffff8204c7b0 d verify_newsa_info.__msg.25
+ffffffff8204c7e0 d verify_newsa_info.__msg.26
+ffffffff8204c820 d verify_newsa_info.__msg.27
+ffffffff8204c840 d verify_newsa_info.__msg.28
+ffffffff8204c860 d verify_newsa_info.__msg.29
+ffffffff8204c8a0 d verify_aead.__msg
+ffffffff8204c8c0 d verify_auth_trunc.__msg
+ffffffff8204c8f0 d verify_one_alg.__msg
+ffffffff8204c920 d verify_sec_ctx_len.__msg
+ffffffff8204c940 d verify_replay.__msg
+ffffffff8204c970 d verify_replay.__msg.31
+ffffffff8204c9a0 d verify_replay.__msg.32
+ffffffff8204c9e0 d verify_replay.__msg.33
+ffffffff8204ca10 d verify_replay.__msg.34
+ffffffff8204ca40 d attach_aead.__msg
+ffffffff8204ca70 d attach_auth_trunc.__msg
+ffffffff8204caa0 d attach_auth_trunc.__msg.35
+ffffffff8204cad0 d attach_auth.__msg
+ffffffff8204cb00 d attach_crypt.__msg
+ffffffff8204cb30 d attach_one_algo.__msg
+ffffffff8204cb60 d verify_policy_type.__msg
+ffffffff8204cb80 d ipcomp_init_state.__msg
+ffffffff8204cbb0 d ipcomp_init_state.__msg.1
+ffffffff8204cbe0 d xfrmi_netdev_ops
+ffffffff8204ce80 d xfrmi_policy
+ffffffff8204cec0 d xfrmi_newlink.__msg
+ffffffff8204cee0 d xfrmi_newlink.__msg.8
+ffffffff8204cf00 d xfrmi_changelink.__msg
+ffffffff8204cf20 d xfrmi_changelink.__msg.9
+ffffffff8204cf40 d xfrmi_changelink.__msg.10
+ffffffff8204cf68 d xfrm_if_cb
+ffffffff8204cf70 d unix_seq_ops
+ffffffff8204cf90 d unix_family_ops
+ffffffff8204cfa8 d unix_stream_ops
+ffffffff8204d0a8 d unix_dgram_ops
+ffffffff8204d1a8 d unix_seqpacket_ops
+ffffffff8204d2a8 d __param_str_disable
+ffffffff8204d2c0 d __param_str_disable_ipv6
+ffffffff8204d2d2 d __param_str_autoconf
+ffffffff8204d2e0 d inet6_family_ops
+ffffffff8204d2f8 d ipv6_stub_impl
+ffffffff8204d3b0 d ipv6_bpf_stub_impl
+ffffffff8204d3d0 d inet6_stream_ops
+ffffffff8204d4d0 d inet6_dgram_ops
+ffffffff8204d5d0 d ac6_seq_ops
+ffffffff8204d5f0 d if6_seq_ops
+ffffffff8204d610 d addrconf_sysctl
+ffffffff8204e490 d two_five_five
+ffffffff8204e4a0 d inet6_af_policy
+ffffffff8204e540 d inet6_set_iftoken.__msg
+ffffffff8204e560 d inet6_set_iftoken.__msg.89
+ffffffff8204e590 d inet6_set_iftoken.__msg.90
+ffffffff8204e5d0 d inet6_set_iftoken.__msg.91
+ffffffff8204e600 d inet6_valid_dump_ifinfo.__msg
+ffffffff8204e630 d inet6_valid_dump_ifinfo.__msg.92
+ffffffff8204e650 d inet6_valid_dump_ifinfo.__msg.93
+ffffffff8204e680 d ifa_ipv6_policy
+ffffffff8204e740 d inet6_rtm_newaddr.__msg
+ffffffff8204e780 d inet6_rtm_valid_getaddr_req.__msg
+ffffffff8204e7b0 d inet6_rtm_valid_getaddr_req.__msg.94
+ffffffff8204e7f0 d inet6_rtm_valid_getaddr_req.__msg.95
+ffffffff8204e830 d inet6_valid_dump_ifaddr_req.__msg
+ffffffff8204e860 d inet6_valid_dump_ifaddr_req.__msg.96
+ffffffff8204e8a0 d inet6_valid_dump_ifaddr_req.__msg.97
+ffffffff8204e8d0 d inet6_valid_dump_ifaddr_req.__msg.98
+ffffffff8204e900 d inet6_netconf_valid_get_req.__msg
+ffffffff8204e930 d devconf_ipv6_policy
+ffffffff8204e9c0 d inet6_netconf_valid_get_req.__msg.99
+ffffffff8204ea00 d inet6_netconf_dump_devconf.__msg
+ffffffff8204ea30 d inet6_netconf_dump_devconf.__msg.100
+ffffffff8204ea70 d ifal_policy
+ffffffff8204eaa0 d ip6addrlbl_valid_get_req.__msg
+ffffffff8204ead0 d ip6addrlbl_valid_get_req.__msg.10
+ffffffff8204eb10 d ip6addrlbl_valid_get_req.__msg.11
+ffffffff8204eb50 d ip6addrlbl_valid_dump_req.__msg
+ffffffff8204eb90 d ip6addrlbl_valid_dump_req.__msg.13
+ffffffff8204ebd0 d ip6addrlbl_valid_dump_req.__msg.14
+ffffffff8204ec0f d str__fib6__trace_system_name
+ffffffff8204ec20 d fib6_nh_init.__msg
+ffffffff8204ec50 d fib6_nh_init.__msg.1
+ffffffff8204ec70 d fib6_nh_init.__msg.2
+ffffffff8204eca0 d fib6_nh_init.__msg.3
+ffffffff8204ecc0 d fib6_prop
+ffffffff8204ecf0 d ip6_validate_gw.__msg
+ffffffff8204ed20 d ip6_validate_gw.__msg.37
+ffffffff8204ed40 d ip6_validate_gw.__msg.38
+ffffffff8204ed60 d ip6_validate_gw.__msg.39
+ffffffff8204eda0 d ip6_validate_gw.__msg.40
+ffffffff8204edd0 d ip6_route_check_nh_onlink.__msg
+ffffffff8204ee00 d ip6_route_info_create.__msg
+ffffffff8204ee20 d ip6_route_info_create.__msg.41
+ffffffff8204ee40 d ip6_route_info_create.__msg.42
+ffffffff8204ee60 d ip6_route_info_create.__msg.43
+ffffffff8204ee80 d ip6_route_info_create.__msg.44
+ffffffff8204eea0 d ip6_route_info_create.__msg.45
+ffffffff8204eee0 d ip6_route_info_create.__msg.46
+ffffffff8204ef00 d ip6_route_info_create.__msg.48
+ffffffff8204ef30 d ip6_route_info_create.__msg.49
+ffffffff8204ef50 d ip6_route_info_create.__msg.50
+ffffffff8204ef70 d ip6_route_del.__msg
+ffffffff8204ef90 d fib6_null_entry_template
+ffffffff8204f040 d ip6_null_entry_template
+ffffffff8204f130 d ip6_template_metrics
+ffffffff8204f178 d ip6_prohibit_entry_template
+ffffffff8204f268 d ip6_blk_hole_entry_template
+ffffffff8204f360 d rtm_to_fib6_config.__msg
+ffffffff8204f3a0 d rtm_to_fib6_config.__msg.66
+ffffffff8204f3e0 d rtm_to_fib6_config.__msg.67
+ffffffff8204f410 d rtm_ipv6_policy
+ffffffff8204f600 d ip6_route_multipath_add.__msg
+ffffffff8204f650 d ip6_route_multipath_add.__msg.69
+ffffffff8204f690 d ip6_route_multipath_add.__msg.70
+ffffffff8204f6e0 d fib6_gw_from_attr.__msg
+ffffffff8204f710 d inet6_rtm_delroute.__msg
+ffffffff8204f730 d inet6_rtm_valid_getroute_req.__msg
+ffffffff8204f760 d inet6_rtm_valid_getroute_req.__msg.71
+ffffffff8204f7a0 d inet6_rtm_valid_getroute_req.__msg.72
+ffffffff8204f7d0 d inet6_rtm_valid_getroute_req.__msg.73
+ffffffff8204f810 d inet6_rtm_valid_getroute_req.__msg.74
+ffffffff8204f848 d ipv6_route_seq_ops
+ffffffff8204f870 d fib6_add_1.__msg
+ffffffff8204f8a0 d fib6_add_1.__msg.7
+ffffffff8204f8d0 d inet6_dump_fib.__msg
+ffffffff8204f8f0 d ndisc_direct_ops
+ffffffff8204f918 d ndisc_hh_ops
+ffffffff8204f940 d ndisc_generic_ops
+ffffffff8204f970 d ndisc_allow_add.__msg
+ffffffff8204f990 d udp6_seq_ops
+ffffffff8204f9b0 d udpv6_protocol.llvm.6596198281680024860
+ffffffff8204f9c8 d udplitev6_protocol.llvm.4618968079149398189
+ffffffff8204f9e0 d inet6_sockraw_ops
+ffffffff8204fae0 d raw6_seq_ops
+ffffffff8204fb00 d icmpv6_protocol.llvm.15350070132518310992
+ffffffff8204fb20 d tab_unreach
+ffffffff8204fb58 d igmp6_mc_seq_ops
+ffffffff8204fb78 d igmp6_mcf_seq_ops
+ffffffff8204fb98 d ip6_frag_cache_name
+ffffffff8204fba8 d ip6_rhash_params
+ffffffff8204fbd0 d frag_protocol
+ffffffff8204fbe8 d tcp_request_sock_ipv6_ops
+ffffffff8204fc10 d ipv6_specific
+ffffffff8204fc70 d tcp6_seq_ops
+ffffffff8204fc90 d tcpv6_protocol.llvm.5268515325539988706
+ffffffff8204fca8 d ipv6_mapped
+ffffffff8204fd08 d ping_v6_seq_ops
+ffffffff8204fd28 d rthdr_protocol.llvm.9155213877904528973
+ffffffff8204fd40 d destopt_protocol.llvm.9155213877904528973
+ffffffff8204fd58 d nodata_protocol.llvm.9155213877904528973
+ffffffff8204fd70 d ip6fl_seq_ops
+ffffffff8204fd90 d udpv6_offload.llvm.1297971558248055
+ffffffff8204fdb0 d seg6_genl_policy
+ffffffff8204fe30 d seg6_genl_ops
+ffffffff8204ff10 d fib6_notifier_ops_template
+ffffffff8204ff50 d rht_ns_params
+ffffffff8204ff78 d rht_sc_params
+ffffffff8204ffa0 d ioam6_genl_ops
+ffffffff82050130 d ioam6_genl_policy_addns
+ffffffff82050170 d ioam6_genl_policy_delns
+ffffffff82050190 d ioam6_genl_policy_addsc
+ffffffff820501f0 d ioam6_genl_policy_delsc
+ffffffff82050240 d ioam6_genl_policy_ns_sc
+ffffffff820502b0 d xfrm6_policy_afinfo.llvm.17827822419562766634
+ffffffff820502d8 d xfrm6_input_afinfo.llvm.4373962254236574637
+ffffffff820502e8 d esp6_protocol
+ffffffff82050300 d ah6_protocol
+ffffffff82050318 d ipcomp6_protocol
+ffffffff82050330 d fib6_rule_configure.__msg
+ffffffff8205035a d fib6_rule_configure.__msg.1
+ffffffff82050370 d snmp6_ipstats_list
+ffffffff82050580 d snmp6_icmp6_list
+ffffffff820505e0 d icmp6type2name
+ffffffff82050de0 d snmp6_udp6_list
+ffffffff82050e80 d snmp6_udplite6_list
+ffffffff82050f10 d esp6_type
+ffffffff82050f50 d esp6_init_state.__msg
+ffffffff82050f80 d esp6_init_state.__msg.7
+ffffffff82050fa8 d ipcomp6_type
+ffffffff82050fe0 d ipcomp6_init_state.__msg
+ffffffff82051010 d ipcomp6_init_state.__msg.1
+ffffffff82051048 d xfrm6_tunnel_type
+ffffffff82051080 d xfrm6_tunnel_init_state.__msg
+ffffffff820510b0 d xfrm6_tunnel_init_state.__msg.1
+ffffffff820510e8 d tunnel6_input_afinfo
+ffffffff820510f8 d tunnel46_protocol
+ffffffff82051110 d tunnel6_protocol
+ffffffff82051128 d mip6_rthdr_type
+ffffffff82051160 d mip6_destopt_type
+ffffffff82051198 d mip6_rthdr_init_state.__msg
+ffffffff820511b0 d mip6_rthdr_init_state.__msg.1
+ffffffff820511de d mip6_destopt_init_state.__msg
+ffffffff820511f0 d mip6_destopt_init_state.__msg.3
+ffffffff82051240 d vti6_policy
+ffffffff820512b0 d vti6_netdev_ops
+ffffffff82051550 d ipip6_policy
+ffffffff820516a0 d ipip6_netdev_ops
+ffffffff82051940 d ip6_tnl_policy
+ffffffff82051a90 d ip6_tnl_netdev_ops
+ffffffff82051d30 d tpi_v4
+ffffffff82051d40 d tpi_v6
+ffffffff82051d50 d ip6gre_policy
+ffffffff82051ee0 d ip6gre_tap_netdev_ops
+ffffffff82052180 d ip6gre_netdev_ops
+ffffffff82052420 d ip6gre_header_ops
+ffffffff82052460 d ip6erspan_netdev_ops
+ffffffff82052700 d in6addr_loopback
+ffffffff82052710 d in6addr_any
+ffffffff82052720 d in6addr_linklocal_allnodes
+ffffffff82052730 d in6addr_linklocal_allrouters
+ffffffff82052740 d in6addr_interfacelocal_allnodes
+ffffffff82052750 d in6addr_interfacelocal_allrouters
+ffffffff82052760 d in6addr_sitelocal_allrouters
+ffffffff82052770 d eafnosupport_fib6_nh_init.__msg
+ffffffff82052798 d sit_offload
+ffffffff820527b8 d ip6ip6_offload
+ffffffff820527d8 d ip4ip6_offload
+ffffffff820527f8 d tcpv6_offload.llvm.1773059960791754521
+ffffffff82052818 d rthdr_offload
+ffffffff82052838 d dstopt_offload
+ffffffff82052858 d packet_seq_ops
+ffffffff82052878 d packet_family_ops
+ffffffff82052890 d packet_ops
+ffffffff82052990 d packet_ops_spkt
+ffffffff82052a90 d packet_mmap_ops
+ffffffff82052b30 d pfkey_seq_ops
+ffffffff82052b50 d pfkey_family_ops
+ffffffff82052b68 d pfkey_ops
+ffffffff82052c70 d pfkey_funcs
+ffffffff82052d40 d sadb_ext_min_len
+ffffffff82052d5c d dummy_mark
+ffffffff82052d88 d vsock_device_ops
+ffffffff82052e98 d vsock_family_ops
+ffffffff82052eb0 d vsock_dgram_ops
+ffffffff82052fb0 d vsock_stream_ops
+ffffffff820530b0 d vsock_seqpacket_ops
+ffffffff820531b0 d vsock_diag_handler
+ffffffff82053200 d virtio_vsock_vqs_init.names
+ffffffff82053238 d str__vsock__trace_system_name
+ffffffff82053240 d __param_str_virtio_transport_max_vsock_pkt_buf_size
+ffffffff82053290 d trace_raw_output_virtio_transport_alloc_pkt.symbols
+ffffffff820532c0 d trace_raw_output_virtio_transport_alloc_pkt.symbols.23
+ffffffff82053350 d trace_raw_output_virtio_transport_recv_pkt.symbols
+ffffffff82053380 d trace_raw_output_virtio_transport_recv_pkt.symbols.35
+ffffffff82053420 d pci_mmcfg
+ffffffff82053430 d pci_direct_conf1
+ffffffff82053440 d pci_direct_conf2
+ffffffff82053470 d msi_k8t_dmi_table
+ffffffff82053720 d toshiba_ohci1394_dmi_table
+ffffffff82053c80 d pirq_via586_set.pirqmap
+ffffffff82053ca0 d _ctype
+ffffffff82053da0 d kobj_sysfs_ops
+ffffffff82053dc0 d kobject_actions
+ffffffff82053e00 d zap_modalias_env.modalias_prefix
+ffffffff82053e40 d uevent_net_rcv_skb.__msg
+ffffffff82053e70 d uevent_net_broadcast.__msg
+ffffffff82053e87 d str__maple_tree__trace_system_name
+ffffffff82053ea0 d __param_str_backtrace_idle
+ffffffff82053ec0 d decpair
+ffffffff82053f88 d default_dec_spec
+ffffffff82053f90 d default_flag_spec
+ffffffff82053fa0 d pff
+ffffffff82054040 d inat_primary_table
+ffffffff82054440 d inat_escape_table_1
+ffffffff82054840 d inat_escape_table_1_1
+ffffffff82054c40 d inat_escape_table_1_2
+ffffffff82055040 d inat_escape_table_1_3
+ffffffff82055440 d inat_escape_table_2
+ffffffff82055840 d inat_escape_table_2_1
+ffffffff82055c40 d inat_escape_table_2_2
+ffffffff82056040 d inat_escape_table_2_3
+ffffffff82056440 d inat_escape_table_3
+ffffffff82056840 d inat_escape_table_3_1
+ffffffff82056c40 d inat_escape_table_3_2
+ffffffff82057040 d inat_escape_table_3_3
+ffffffff82057440 d inat_avx_table_5
+ffffffff82057840 d inat_avx_table_5_1
+ffffffff82057c40 d inat_avx_table_5_2
+ffffffff82058040 d inat_avx_table_5_3
+ffffffff82058440 d inat_avx_table_6
+ffffffff82058840 d inat_avx_table_6_1
+ffffffff82058c40 d inat_avx_table_6_2
+ffffffff82059040 d inat_avx_table_6_3
+ffffffff82059440 d inat_group_table_6
+ffffffff82059460 d inat_group_table_7
+ffffffff82059480 d inat_group_table_8
+ffffffff820594a0 d inat_group_table_9
+ffffffff820594c0 d inat_group_table_10
+ffffffff820594e0 d inat_group_table_11
+ffffffff82059500 d inat_group_table_11_2
+ffffffff82059520 d inat_group_table_24
+ffffffff82059540 d inat_group_table_24_1
+ffffffff82059560 d inat_group_table_24_2
+ffffffff82059580 d inat_group_table_4
+ffffffff820595a0 d inat_group_table_5
+ffffffff820595c0 d inat_group_table_16
+ffffffff820595e0 d inat_group_table_16_1
+ffffffff82059600 d inat_group_table_17
+ffffffff82059620 d inat_group_table_17_1
+ffffffff82059640 d inat_group_table_18
+ffffffff82059660 d inat_group_table_18_1
+ffffffff82059680 d inat_group_table_21
+ffffffff820596a0 d inat_group_table_21_1
+ffffffff820596c0 d inat_group_table_21_2
+ffffffff820596e0 d inat_group_table_21_3
+ffffffff82059700 d inat_group_table_13
+ffffffff82059720 d inat_group_table_27
+ffffffff82059740 d inat_group_table_25
+ffffffff82059760 d inat_group_table_25_1
+ffffffff82059780 d inat_group_table_26
+ffffffff820597a0 d inat_group_table_26_1
+ffffffff820597c0 d inat_group_table_14
+ffffffff820597e0 d inat_group_table_15
+ffffffff82059800 d inat_group_table_15_2
+ffffffff82059820 d inat_escape_tables
+ffffffff820598a0 d inat_group_tables
+ffffffff82059ca0 d inat_avx_tables
+ffffffff8205a0c0 d linux_banner
+ffffffff8205a220 D __sched_class_highest
+ffffffff8205a220 d stop_sched_class
+ffffffff8205a2f8 d dl_sched_class
+ffffffff8205a3d0 d rt_sched_class
+ffffffff8205a4a8 d fair_sched_class
+ffffffff8205a580 d idle_sched_class
+ffffffff8205a658 D __sched_class_lowest
+ffffffff8205a658 D __start_ro_after_init
+ffffffff8205b000 d __pgtable_l5_enabled
+ffffffff8205b004 d pgdir_shift
+ffffffff8205b008 d ptrs_per_p4d
+ffffffff8205b010 d vmalloc_base
+ffffffff8205b018 d vmemmap_base
+ffffffff8205b020 d page_offset_base
+ffffffff8205b028 d randomize_kstack_offset
+ffffffff8205b038 d rodata_enabled
+ffffffff8205c000 d raw_data
+ffffffff8205d000 d vsyscall_mode
+ffffffff8205d008 d gate_vma
+ffffffff8205d0d0 d x86_pmu_format_group
+ffffffff8205d0f8 d x86_pmu_events_group
+ffffffff8205d120 d x86_pmu_attr_group
+ffffffff8205d148 d x86_pmu_caps_group
+ffffffff8205d170 d pt_cap_group
+ffffffff8205d198 d fpu_default_state_size
+ffffffff8205d1a0 d max_frame_size
+ffffffff8205d1a8 d strict_sigaltstack_size
+ffffffff8205d1a9 d idt_descr
+ffffffff8205d1b8 d mmu_cr4_features
+ffffffff8205d1c0 d x86_platform
+ffffffff8205d280 d x86_apic_ops
+ffffffff8205d290 d data_attr
+ffffffff8205d2d0 d poking_mm
+ffffffff8205d2d8 d poking_addr
+ffffffff8205d2e0 d mxcsr_feature_mask
+ffffffff8205d300 d fpu_kernel_cfg
+ffffffff8205d340 d init_fpstate
+ffffffff8205e380 d fpu_user_cfg
+ffffffff8205e3a0 d xstate_offsets
+ffffffff8205e3f0 d xstate_sizes
+ffffffff8205e440 d xstate_flags
+ffffffff8205e490 d x86_64_regsets
+ffffffff8205e570 d cr_pinning
+ffffffff8205e580 d cr4_pinned_bits
+ffffffff8205e588 d srbds_mitigation
+ffffffff8205e58c d spectre_v2_enabled
+ffffffff8205e590 d spectre_v2_user_stibp
+ffffffff8205e594 d mds_mitigation
+ffffffff8205e598 d taa_mitigation
+ffffffff8205e59c d mmio_mitigation
+ffffffff8205e5a0 d ssb_mode
+ffffffff8205e5a4 d spectre_v2_user_ibpb
+ffffffff8205e5a8 d x86_amd_ls_cfg_base
+ffffffff8205e5b0 d x86_amd_ls_cfg_ssbd_mask
+ffffffff8205e5b8 d mds_nosmt
+ffffffff8205e5b9 d taa_nosmt
+ffffffff8205e5ba d mmio_nosmt
+ffffffff8205e5bc d spectre_v1_mitigation
+ffffffff8205e5c0 d retbleed_cmd
+ffffffff8205e5c4 d retbleed_nosmt
+ffffffff8205e5c8 d retbleed_mitigation
+ffffffff8205e5cc d spectre_v2_cmd
+ffffffff8205e5d0 d l1tf_mitigation
+ffffffff8205e5d4 d orig_umwait_control_cached
+ffffffff8205e5d8 d sld_state
+ffffffff8205e5dc d cpu_model_supports_sld
+ffffffff8205e5e0 d msr_test_ctrl_cache
+ffffffff8205e5e8 d tsx_ctrl_state
+ffffffff8205e5f0 d mtrr_ops
+ffffffff8205e650 d vmware_hypercall_mode
+ffffffff8205e658 d vmware_tsc_khz
+ffffffff8205e660 d vmware_cyc2ns
+ffffffff8205e670 d machine_ops
+ffffffff8205e6a0 d intel_graphics_stolen_res
+ffffffff8205e700 d __per_cpu_offset
+ffffffff8205e800 d local_apic_timer_c2_ok
+ffffffff8205e808 d apic_phys
+ffffffff8205e810 d apic_extnmi
+ffffffff8205e818 d mp_lapic_addr
+ffffffff8205e820 d disabled_cpu_apicid
+ffffffff8205e824 d virt_ext_dest_id
+ffffffff8205e828 d pic_mode
+ffffffff8205e82c d apic_verbosity
+ffffffff8205e830 d disable_apic
+ffffffff8205e834 d apic_intr_mode
+ffffffff8205e838 d boot_cpu_physical_apicid
+ffffffff8205e83c d boot_cpu_apic_version
+ffffffff8205e840 d smp_found_config
+ffffffff8205e848 d apic_noop
+ffffffff8205e960 d apic_ipi_shorthand_off
+ffffffff8205e968 d x86_pci_msi_default_domain
+ffffffff8205e970 d x2apic_max_apicid
+ffffffff8205e978 d apic_x2apic_phys
+ffffffff8205ea90 d apic_x2apic_cluster
+ffffffff8205eba8 d apic_flat
+ffffffff8205ecc0 d apic_physflat
+ffffffff8205edd8 d apic
+ffffffff8205ede0 d hpet_msi_controller
+ffffffff8205eee8 d msr_kvm_system_time
+ffffffff8205eeec d msr_kvm_wall_clock
+ffffffff8205eef0 d kvm_sched_clock_offset
+ffffffff8205eef8 d disable_dma32
+ffffffff8205ef00 d protection_map
+ffffffff8205ef80 d gcm_use_avx2
+ffffffff8205ef90 d gcm_use_avx
+ffffffff8205efa0 d cpu_mitigations
+ffffffff8205efa8 d notes_attr
+ffffffff8205efe8 d __printk_percpu_data_ready
+ffffffff8205efec d zone_dma_bits
+ffffffff8205eff0 d family
+ffffffff8205f060 d constraints_initialized
+ffffffff8205f068 d pcpu_unit_size
+ffffffff8205f070 d pcpu_chunk_lists
+ffffffff8205f078 d pcpu_free_slot
+ffffffff8205f07c d pcpu_low_unit_cpu
+ffffffff8205f080 d pcpu_high_unit_cpu
+ffffffff8205f084 d pcpu_unit_pages
+ffffffff8205f088 d pcpu_nr_units
+ffffffff8205f08c d pcpu_nr_groups
+ffffffff8205f090 d pcpu_group_offsets
+ffffffff8205f098 d pcpu_group_sizes
+ffffffff8205f0a0 d pcpu_unit_map
+ffffffff8205f0a8 d pcpu_atom_size
+ffffffff8205f0b0 d pcpu_chunk_struct_size
+ffffffff8205f0b8 d pcpu_sidelined_slot
+ffffffff8205f0bc d pcpu_to_depopulate_slot
+ffffffff8205f0c0 d pcpu_nr_slots
+ffffffff8205f0c8 d pcpu_reserved_chunk
+ffffffff8205f0d0 d pcpu_first_chunk
+ffffffff8205f0d8 d pcpu_base_addr
+ffffffff8205f0e0 d pcpu_unit_offsets
+ffffffff8205f0f0 d size_index
+ffffffff8205f110 d kmalloc_caches
+ffffffff8205f2d0 d ioremap_max_page_shift
+ffffffff8205f2d1 d vmap_allow_huge
+ffffffff8205f2d2 d memmap_on_memory
+ffffffff8205f2d4 d stack_hash_seed
+ffffffff8205f2d8 d cgroup_memory_nokmem
+ffffffff8205f2d9 d cgroup_memory_nosocket
+ffffffff8205f2da d secretmem_enable
+ffffffff8205f2e0 d damon_region_cache
+ffffffff8205f2e8 d bypass_usercopy_checks
+ffffffff8205f2f8 d seq_file_cache
+ffffffff8205f300 d proc_inode_cachep
+ffffffff8205f308 d pde_opener_cache
+ffffffff8205f310 d nlink_tid
+ffffffff8205f311 d nlink_tgid
+ffffffff8205f318 d proc_dir_entry_cache
+ffffffff8205f320 d self_inum
+ffffffff8205f324 d thread_self_inum
+ffffffff8205f328 d debugfs_allow
+ffffffff8205f330 d tracefs_ops.0
+ffffffff8205f338 d tracefs_ops.1
+ffffffff8205f340 d capability_hooks
+ffffffff8205f610 d security_hook_heads
+ffffffff8205fc70 d blob_sizes.0
+ffffffff8205fc74 d blob_sizes.1
+ffffffff8205fc78 d blob_sizes.2
+ffffffff8205fc7c d blob_sizes.3
+ffffffff8205fc80 d blob_sizes.4
+ffffffff8205fc84 d blob_sizes.5
+ffffffff8205fc88 d blob_sizes.6
+ffffffff8205fc90 d avc_node_cachep
+ffffffff8205fc98 d avc_xperms_cachep
+ffffffff8205fca0 d avc_xperms_decision_cachep
+ffffffff8205fca8 d avc_xperms_data_cachep
+ffffffff8205fcb0 d avc_callbacks
+ffffffff8205fcc0 d default_noexec
+ffffffff8205fcd0 d selinux_hooks
+ffffffff82061918 d selinux_blob_sizes
+ffffffff82061938 d selinuxfs_mount
+ffffffff82061940 d selinux_null
+ffffffff82061950 d selnl
+ffffffff82061958 d ebitmap_node_cachep
+ffffffff82061960 d hashtab_node_cachep
+ffffffff82061968 d avtab_xperms_cachep
+ffffffff82061970 d avtab_node_cachep
+ffffffff82061980 d aer_stats_attrs
+ffffffff820619b8 d acpi_event_genl_family
+ffffffff82061a28 d ptmx_fops
+ffffffff82061b38 d thermal_gnl_family
+ffffffff82061ba8 d efi_rng_seed
+ffffffff82061bb0 d efi_memreserve_root
+ffffffff82061bb8 d efi_mem_attr_table
+ffffffff82061bc0 d i8253_clear_counter_on_shutdown
+ffffffff82061bc8 d sock_inode_cachep
+ffffffff82061bd0 d skbuff_head_cache
+ffffffff82061bd8 d skbuff_fclone_cache
+ffffffff82061be0 d skbuff_ext_cache
+ffffffff82061bf0 d net_class
+ffffffff82061c88 d rx_queue_ktype
+ffffffff82061ce0 d rx_queue_default_attrs
+ffffffff82061cf8 d rps_cpus_attribute
+ffffffff82061d18 d rps_dev_flow_table_cnt_attribute
+ffffffff82061d38 d netdev_queue_ktype
+ffffffff82061d90 d netdev_queue_default_attrs
+ffffffff82061dc0 d queue_trans_timeout
+ffffffff82061de0 d queue_traffic_class
+ffffffff82061e00 d xps_cpus_attribute
+ffffffff82061e20 d xps_rxqs_attribute
+ffffffff82061e40 d queue_tx_maxrate
+ffffffff82061e60 d dql_attrs
+ffffffff82061e90 d bql_limit_attribute
+ffffffff82061eb0 d bql_limit_max_attribute
+ffffffff82061ed0 d bql_limit_min_attribute
+ffffffff82061ef0 d bql_hold_time_attribute
+ffffffff82061f10 d bql_inflight_attribute
+ffffffff82061f30 d net_class_attrs
+ffffffff82062040 d netstat_attrs
+ffffffff82062108 d genl_ctrl
+ffffffff82062178 d ethtool_genl_family
+ffffffff820621e8 d peer_cachep
+ffffffff820621f0 d tcp_metrics_nl_family
+ffffffff82062260 d fn_alias_kmem
+ffffffff82062268 d trie_leaf_kmem
+ffffffff82062270 d xfrm_dst_cache
+ffffffff82062278 d xfrm_state_cache
+ffffffff82062280 d seg6_genl_family
+ffffffff820622f0 d ioam6_genl_family
+ffffffff82062360 d vmlinux_build_id
+ffffffff82062374 d no_hash_pointers
+ffffffff82062378 d debug_boot_weak_hash
+ffffffff82062380 d delay_fn
+ffffffff82062388 d delay_halt_fn
+ffffffff82062390 D __start___jump_table
+ffffffff8206f540 D __start_static_call_sites
+ffffffff8206f540 D __stop___jump_table
+ffffffff82076f30 D __start_static_call_tramp_key
+ffffffff82076f30 D __stop_static_call_sites
+ffffffff82076f50 D __end_ro_after_init
+ffffffff82076f50 D __start___tracepoints_ptrs
+ffffffff82076f50 D __stop_static_call_tramp_key
+ffffffff820779d0 D __stop___tracepoints_ptrs
+ffffffff820779d0 d __tpstrtab_initcall_level
+ffffffff820779df d __tpstrtab_initcall_start
+ffffffff820779f0 d __tpstrtab_initcall_finish
+ffffffff82077a00 d __tpstrtab_emulate_vsyscall
+ffffffff82077a20 d __tpstrtab_local_timer_entry
+ffffffff82077a40 d __tpstrtab_local_timer_exit
+ffffffff82077a60 d __tpstrtab_spurious_apic_entry
+ffffffff82077a80 d __tpstrtab_spurious_apic_exit
+ffffffff82077aa0 d __tpstrtab_error_apic_entry
+ffffffff82077ac0 d __tpstrtab_error_apic_exit
+ffffffff82077ad0 d __tpstrtab_x86_platform_ipi_entry
+ffffffff82077af0 d __tpstrtab_x86_platform_ipi_exit
+ffffffff82077b06 d __tpstrtab_irq_work_entry
+ffffffff82077b15 d __tpstrtab_irq_work_exit
+ffffffff82077b30 d __tpstrtab_reschedule_entry
+ffffffff82077b50 d __tpstrtab_reschedule_exit
+ffffffff82077b60 d __tpstrtab_call_function_entry
+ffffffff82077b80 d __tpstrtab_call_function_exit
+ffffffff82077ba0 d __tpstrtab_call_function_single_entry
+ffffffff82077bc0 d __tpstrtab_call_function_single_exit
+ffffffff82077be0 d __tpstrtab_thermal_apic_entry
+ffffffff82077c00 d __tpstrtab_thermal_apic_exit
+ffffffff82077c12 d __tpstrtab_vector_config
+ffffffff82077c20 d __tpstrtab_vector_update
+ffffffff82077c2e d __tpstrtab_vector_clear
+ffffffff82077c40 d __tpstrtab_vector_reserve_managed
+ffffffff82077c57 d __tpstrtab_vector_reserve
+ffffffff82077c66 d __tpstrtab_vector_alloc
+ffffffff82077c80 d __tpstrtab_vector_alloc_managed
+ffffffff82077ca0 d __tpstrtab_vector_activate
+ffffffff82077cb0 d __tpstrtab_vector_deactivate
+ffffffff82077cd0 d __tpstrtab_vector_teardown
+ffffffff82077ce0 d __tpstrtab_vector_setup
+ffffffff82077cf0 d __tpstrtab_vector_free_moved
+ffffffff82077d02 d __tpstrtab_nmi_handler
+ffffffff82077d10 d __tpstrtab_x86_fpu_before_save
+ffffffff82077d30 d __tpstrtab_x86_fpu_after_save
+ffffffff82077d50 d __tpstrtab_x86_fpu_before_restore
+ffffffff82077d70 d __tpstrtab_x86_fpu_after_restore
+ffffffff82077d90 d __tpstrtab_x86_fpu_regs_activated
+ffffffff82077db0 d __tpstrtab_x86_fpu_regs_deactivated
+ffffffff82077dd0 d __tpstrtab_x86_fpu_init_state
+ffffffff82077df0 d __tpstrtab_x86_fpu_dropped
+ffffffff82077e00 d __tpstrtab_x86_fpu_copy_src
+ffffffff82077e20 d __tpstrtab_x86_fpu_copy_dst
+ffffffff82077e40 d __tpstrtab_x86_fpu_xstate_check_failed
+ffffffff82077e60 d __tpstrtab_page_fault_user
+ffffffff82077e70 d __tpstrtab_page_fault_kernel
+ffffffff82077e82 d __tpstrtab_task_newtask
+ffffffff82077e8f d __tpstrtab_task_rename
+ffffffff82077ea0 d __tpstrtab_cpuhp_enter
+ffffffff82077eb0 d __tpstrtab_cpuhp_multi_enter
+ffffffff82077ec2 d __tpstrtab_cpuhp_exit
+ffffffff82077ed0 d __tpstrtab_irq_handler_entry
+ffffffff82077ef0 d __tpstrtab_irq_handler_exit
+ffffffff82077f01 d __tpstrtab_softirq_entry
+ffffffff82077f0f d __tpstrtab_softirq_exit
+ffffffff82077f1c d __tpstrtab_softirq_raise
+ffffffff82077f2a d __tpstrtab_tasklet_entry
+ffffffff82077f38 d __tpstrtab_tasklet_exit
+ffffffff82077f50 d __tpstrtab_signal_generate
+ffffffff82077f60 d __tpstrtab_signal_deliver
+ffffffff82077f70 d __tpstrtab_workqueue_queue_work
+ffffffff82077f90 d __tpstrtab_workqueue_activate_work
+ffffffff82077fb0 d __tpstrtab_workqueue_execute_start
+ffffffff82077fd0 d __tpstrtab_workqueue_execute_end
+ffffffff82077ff0 d __tpstrtab_sched_kthread_stop
+ffffffff82078010 d __tpstrtab_sched_kthread_stop_ret
+ffffffff82078030 d __tpstrtab_sched_kthread_work_queue_work
+ffffffff82078050 d __tpstrtab_sched_kthread_work_execute_start
+ffffffff82078080 d __tpstrtab_sched_kthread_work_execute_end
+ffffffff8207809f d __tpstrtab_sched_waking
+ffffffff820780ac d __tpstrtab_sched_wakeup
+ffffffff820780c0 d __tpstrtab_sched_wakeup_new
+ffffffff820780d1 d __tpstrtab_sched_switch
+ffffffff820780e0 d __tpstrtab_sched_migrate_task
+ffffffff82078100 d __tpstrtab_sched_process_free
+ffffffff82078120 d __tpstrtab_sched_process_exit
+ffffffff82078140 d __tpstrtab_sched_wait_task
+ffffffff82078150 d __tpstrtab_sched_process_wait
+ffffffff82078170 d __tpstrtab_sched_process_fork
+ffffffff82078190 d __tpstrtab_sched_process_exec
+ffffffff820781b0 d __tpstrtab_sched_stat_wait
+ffffffff820781c0 d __tpstrtab_sched_stat_sleep
+ffffffff820781e0 d __tpstrtab_sched_stat_iowait
+ffffffff82078200 d __tpstrtab_sched_stat_blocked
+ffffffff82078220 d __tpstrtab_sched_blocked_reason
+ffffffff82078240 d __tpstrtab_sched_stat_runtime
+ffffffff82078260 d __tpstrtab_sched_pi_setprio
+ffffffff82078280 d __tpstrtab_sched_process_hang
+ffffffff820782a0 d __tpstrtab_sched_move_numa
+ffffffff820782b0 d __tpstrtab_sched_stick_numa
+ffffffff820782d0 d __tpstrtab_sched_swap_numa
+ffffffff820782e0 d __tpstrtab_sched_wake_idle_without_ipi
+ffffffff820782fc d __tpstrtab_pelt_cfs_tp
+ffffffff82078308 d __tpstrtab_pelt_rt_tp
+ffffffff82078313 d __tpstrtab_pelt_dl_tp
+ffffffff82078320 d __tpstrtab_pelt_thermal_tp
+ffffffff82078330 d __tpstrtab_pelt_irq_tp
+ffffffff8207833c d __tpstrtab_pelt_se_tp
+ffffffff82078350 d __tpstrtab_sched_cpu_capacity_tp
+ffffffff82078370 d __tpstrtab_sched_overutilized_tp
+ffffffff82078390 d __tpstrtab_sched_util_est_cfs_tp
+ffffffff820783b0 d __tpstrtab_sched_util_est_se_tp
+ffffffff820783d0 d __tpstrtab_sched_update_nr_running_tp
+ffffffff820783f0 d __tpstrtab_contention_begin
+ffffffff82078401 d __tpstrtab_contention_end
+ffffffff82078410 d __tpstrtab_console
+ffffffff82078420 d __tpstrtab_irq_matrix_online
+ffffffff82078440 d __tpstrtab_irq_matrix_offline
+ffffffff82078460 d __tpstrtab_irq_matrix_reserve
+ffffffff82078480 d __tpstrtab_irq_matrix_remove_reserved
+ffffffff820784a0 d __tpstrtab_irq_matrix_assign_system
+ffffffff820784c0 d __tpstrtab_irq_matrix_alloc_reserved
+ffffffff820784e0 d __tpstrtab_irq_matrix_reserve_managed
+ffffffff82078500 d __tpstrtab_irq_matrix_remove_managed
+ffffffff82078520 d __tpstrtab_irq_matrix_alloc_managed
+ffffffff82078540 d __tpstrtab_irq_matrix_assign
+ffffffff82078560 d __tpstrtab_irq_matrix_alloc
+ffffffff82078580 d __tpstrtab_irq_matrix_free
+ffffffff82078590 d __tpstrtab_rcu_utilization
+ffffffff820785a0 d __tpstrtab_rcu_grace_period
+ffffffff820785c0 d __tpstrtab_rcu_future_grace_period
+ffffffff820785e0 d __tpstrtab_rcu_grace_period_init
+ffffffff82078600 d __tpstrtab_rcu_exp_grace_period
+ffffffff82078620 d __tpstrtab_rcu_exp_funnel_lock
+ffffffff82078634 d __tpstrtab_rcu_nocb_wake
+ffffffff82078650 d __tpstrtab_rcu_preempt_task
+ffffffff82078670 d __tpstrtab_rcu_unlock_preempted_task
+ffffffff82078690 d __tpstrtab_rcu_quiescent_state_report
+ffffffff820786ab d __tpstrtab_rcu_fqs
+ffffffff820786c0 d __tpstrtab_rcu_stall_warning
+ffffffff820786d2 d __tpstrtab_rcu_dyntick
+ffffffff820786de d __tpstrtab_rcu_callback
+ffffffff820786f0 d __tpstrtab_rcu_segcb_stats
+ffffffff82078700 d __tpstrtab_rcu_kvfree_callback
+ffffffff82078720 d __tpstrtab_rcu_batch_start
+ffffffff82078730 d __tpstrtab_rcu_invoke_callback
+ffffffff82078750 d __tpstrtab_rcu_invoke_kvfree_callback
+ffffffff82078770 d __tpstrtab_rcu_invoke_kfree_bulk_callback
+ffffffff8207878f d __tpstrtab_rcu_batch_end
+ffffffff820787a0 d __tpstrtab_rcu_torture_read
+ffffffff820787b1 d __tpstrtab_rcu_barrier
+ffffffff820787c0 d __tpstrtab_swiotlb_bounced
+ffffffff820787d0 d __tpstrtab_sys_enter
+ffffffff820787da d __tpstrtab_sys_exit
+ffffffff820787e3 d __tpstrtab_module_load
+ffffffff820787ef d __tpstrtab_module_free
+ffffffff820787fb d __tpstrtab_module_request
+ffffffff82078810 d __tpstrtab_timer_init
+ffffffff8207881b d __tpstrtab_timer_start
+ffffffff82078830 d __tpstrtab_timer_expire_entry
+ffffffff82078850 d __tpstrtab_timer_expire_exit
+ffffffff82078862 d __tpstrtab_timer_cancel
+ffffffff8207886f d __tpstrtab_hrtimer_init
+ffffffff8207887c d __tpstrtab_hrtimer_start
+ffffffff82078890 d __tpstrtab_hrtimer_expire_entry
+ffffffff820788b0 d __tpstrtab_hrtimer_expire_exit
+ffffffff820788c4 d __tpstrtab_hrtimer_cancel
+ffffffff820788d3 d __tpstrtab_itimer_state
+ffffffff820788e0 d __tpstrtab_itimer_expire
+ffffffff820788ee d __tpstrtab_tick_stop
+ffffffff82078900 d __tpstrtab_alarmtimer_suspend
+ffffffff82078920 d __tpstrtab_alarmtimer_fired
+ffffffff82078940 d __tpstrtab_alarmtimer_start
+ffffffff82078960 d __tpstrtab_alarmtimer_cancel
+ffffffff82078980 d __tpstrtab_cgroup_setup_root
+ffffffff820789a0 d __tpstrtab_cgroup_destroy_root
+ffffffff820789b4 d __tpstrtab_cgroup_remount
+ffffffff820789c3 d __tpstrtab_cgroup_mkdir
+ffffffff820789d0 d __tpstrtab_cgroup_rmdir
+ffffffff820789dd d __tpstrtab_cgroup_release
+ffffffff820789ec d __tpstrtab_cgroup_rename
+ffffffff820789fa d __tpstrtab_cgroup_freeze
+ffffffff82078a10 d __tpstrtab_cgroup_unfreeze
+ffffffff82078a20 d __tpstrtab_cgroup_attach_task
+ffffffff82078a40 d __tpstrtab_cgroup_transfer_tasks
+ffffffff82078a60 d __tpstrtab_cgroup_notify_populated
+ffffffff82078a80 d __tpstrtab_cgroup_notify_frozen
+ffffffff82078aa0 d __tpstrtab_error_report_end
+ffffffff82078ac0 d __tpstrtab_cpu_idle
+ffffffff82078ac9 d __tpstrtab_cpu_idle_miss
+ffffffff82078ae0 d __tpstrtab_powernv_throttle
+ffffffff82078af1 d __tpstrtab_pstate_sample
+ffffffff82078aff d __tpstrtab_cpu_frequency
+ffffffff82078b10 d __tpstrtab_cpu_frequency_limits
+ffffffff82078b30 d __tpstrtab_device_pm_callback_start
+ffffffff82078b50 d __tpstrtab_device_pm_callback_end
+ffffffff82078b67 d __tpstrtab_suspend_resume
+ffffffff82078b80 d __tpstrtab_wakeup_source_activate
+ffffffff82078ba0 d __tpstrtab_wakeup_source_deactivate
+ffffffff82078bb9 d __tpstrtab_clock_enable
+ffffffff82078bc6 d __tpstrtab_clock_disable
+ffffffff82078bd4 d __tpstrtab_clock_set_rate
+ffffffff82078bf0 d __tpstrtab_power_domain_target
+ffffffff82078c10 d __tpstrtab_pm_qos_add_request
+ffffffff82078c30 d __tpstrtab_pm_qos_update_request
+ffffffff82078c50 d __tpstrtab_pm_qos_remove_request
+ffffffff82078c70 d __tpstrtab_pm_qos_update_target
+ffffffff82078c90 d __tpstrtab_pm_qos_update_flags
+ffffffff82078cb0 d __tpstrtab_dev_pm_qos_add_request
+ffffffff82078cd0 d __tpstrtab_dev_pm_qos_update_request
+ffffffff82078cf0 d __tpstrtab_dev_pm_qos_remove_request
+ffffffff82078d10 d __tpstrtab_guest_halt_poll_ns
+ffffffff82078d23 d __tpstrtab_rpm_suspend
+ffffffff82078d2f d __tpstrtab_rpm_resume
+ffffffff82078d3a d __tpstrtab_rpm_idle
+ffffffff82078d43 d __tpstrtab_rpm_usage
+ffffffff82078d4d d __tpstrtab_rpm_return_int
+ffffffff82078d60 d __tpstrtab_xdp_exception
+ffffffff82078d6e d __tpstrtab_xdp_bulk_tx
+ffffffff82078d7a d __tpstrtab_xdp_redirect
+ffffffff82078d90 d __tpstrtab_xdp_redirect_err
+ffffffff82078db0 d __tpstrtab_xdp_redirect_map
+ffffffff82078dd0 d __tpstrtab_xdp_redirect_map_err
+ffffffff82078df0 d __tpstrtab_xdp_cpumap_kthread
+ffffffff82078e10 d __tpstrtab_xdp_cpumap_enqueue
+ffffffff82078e30 d __tpstrtab_xdp_devmap_xmit
+ffffffff82078e40 d __tpstrtab_mem_disconnect
+ffffffff82078e4f d __tpstrtab_mem_connect
+ffffffff82078e60 d __tpstrtab_mem_return_failed
+ffffffff82078e72 d __tpstrtab_rseq_update
+ffffffff82078e7e d __tpstrtab_rseq_ip_fixup
+ffffffff82078e90 d __tpstrtab_mm_filemap_delete_from_page_cache
+ffffffff82078ec0 d __tpstrtab_mm_filemap_add_to_page_cache
+ffffffff82078ee0 d __tpstrtab_filemap_set_wb_err
+ffffffff82078f00 d __tpstrtab_file_check_and_advance_wb_err
+ffffffff82078f20 d __tpstrtab_oom_score_adj_update
+ffffffff82078f40 d __tpstrtab_reclaim_retry_zone
+ffffffff82078f53 d __tpstrtab_mark_victim
+ffffffff82078f5f d __tpstrtab_wake_reaper
+ffffffff82078f70 d __tpstrtab_start_task_reaping
+ffffffff82078f90 d __tpstrtab_finish_task_reaping
+ffffffff82078fb0 d __tpstrtab_skip_task_reaping
+ffffffff82078fc2 d __tpstrtab_compact_retry
+ffffffff82078fd0 d __tpstrtab_mm_lru_insertion
+ffffffff82078ff0 d __tpstrtab_mm_lru_activate
+ffffffff82079000 d __tpstrtab_mm_vmscan_kswapd_sleep
+ffffffff82079020 d __tpstrtab_mm_vmscan_kswapd_wake
+ffffffff82079040 d __tpstrtab_mm_vmscan_wakeup_kswapd
+ffffffff82079060 d __tpstrtab_mm_vmscan_direct_reclaim_begin
+ffffffff82079080 d __tpstrtab_mm_vmscan_memcg_reclaim_begin
+ffffffff820790a0 d __tpstrtab_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff820790d0 d __tpstrtab_mm_vmscan_direct_reclaim_end
+ffffffff820790f0 d __tpstrtab_mm_vmscan_memcg_reclaim_end
+ffffffff82079110 d __tpstrtab_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff82079140 d __tpstrtab_mm_shrink_slab_start
+ffffffff82079160 d __tpstrtab_mm_shrink_slab_end
+ffffffff82079180 d __tpstrtab_mm_vmscan_lru_isolate
+ffffffff820791a0 d __tpstrtab_mm_vmscan_write_folio
+ffffffff820791c0 d __tpstrtab_mm_vmscan_lru_shrink_inactive
+ffffffff820791e0 d __tpstrtab_mm_vmscan_lru_shrink_active
+ffffffff82079200 d __tpstrtab_mm_vmscan_node_reclaim_begin
+ffffffff82079220 d __tpstrtab_mm_vmscan_node_reclaim_end
+ffffffff82079240 d __tpstrtab_mm_vmscan_throttled
+ffffffff82079260 d __tpstrtab_percpu_alloc_percpu
+ffffffff82079280 d __tpstrtab_percpu_free_percpu
+ffffffff820792a0 d __tpstrtab_percpu_alloc_percpu_fail
+ffffffff820792c0 d __tpstrtab_percpu_create_chunk
+ffffffff820792e0 d __tpstrtab_percpu_destroy_chunk
+ffffffff82079300 d __tpstrtab_kmem_cache_alloc
+ffffffff82079311 d __tpstrtab_kmalloc
+ffffffff82079319 d __tpstrtab_kfree
+ffffffff82079320 d __tpstrtab_kmem_cache_free
+ffffffff82079330 d __tpstrtab_mm_page_free
+ffffffff82079340 d __tpstrtab_mm_page_free_batched
+ffffffff82079355 d __tpstrtab_mm_page_alloc
+ffffffff82079370 d __tpstrtab_mm_page_alloc_zone_locked
+ffffffff82079390 d __tpstrtab_mm_page_pcpu_drain
+ffffffff820793b0 d __tpstrtab_mm_page_alloc_extfrag
+ffffffff820793c6 d __tpstrtab_rss_stat
+ffffffff820793d0 d __tpstrtab_mm_compaction_isolate_migratepages
+ffffffff82079400 d __tpstrtab_mm_compaction_isolate_freepages
+ffffffff82079420 d __tpstrtab_mm_compaction_migratepages
+ffffffff82079440 d __tpstrtab_mm_compaction_begin
+ffffffff82079460 d __tpstrtab_mm_compaction_end
+ffffffff82079480 d __tpstrtab_mm_compaction_try_to_compact_pages
+ffffffff820794b0 d __tpstrtab_mm_compaction_finished
+ffffffff820794d0 d __tpstrtab_mm_compaction_suitable
+ffffffff820794f0 d __tpstrtab_mm_compaction_deferred
+ffffffff82079510 d __tpstrtab_mm_compaction_defer_compaction
+ffffffff82079530 d __tpstrtab_mm_compaction_defer_reset
+ffffffff82079550 d __tpstrtab_mm_compaction_kcompactd_sleep
+ffffffff82079570 d __tpstrtab_mm_compaction_wakeup_kcompactd
+ffffffff82079590 d __tpstrtab_mm_compaction_kcompactd_wake
+ffffffff820795b0 d __tpstrtab_mmap_lock_start_locking
+ffffffff820795d0 d __tpstrtab_mmap_lock_released
+ffffffff820795f0 d __tpstrtab_mmap_lock_acquire_returned
+ffffffff82079610 d __tpstrtab_vm_unmapped_area
+ffffffff82079621 d __tpstrtab_vma_mas_szero
+ffffffff8207962f d __tpstrtab_vma_store
+ffffffff82079639 d __tpstrtab_exit_mmap
+ffffffff82079650 d __tpstrtab_tlb_flush
+ffffffff82079660 d __tpstrtab_mm_migrate_pages
+ffffffff82079680 d __tpstrtab_mm_migrate_pages_start
+ffffffff820796a0 d __tpstrtab_set_migration_pte
+ffffffff820796c0 d __tpstrtab_remove_migration_pte
+ffffffff820796e0 d __tpstrtab_hugepage_set_pmd
+ffffffff82079700 d __tpstrtab_hugepage_update
+ffffffff82079710 d __tpstrtab_set_migration_pmd
+ffffffff82079730 d __tpstrtab_remove_migration_pmd
+ffffffff82079750 d __tpstrtab_mm_khugepaged_scan_pmd
+ffffffff82079770 d __tpstrtab_mm_collapse_huge_page
+ffffffff82079790 d __tpstrtab_mm_collapse_huge_page_isolate
+ffffffff820797b0 d __tpstrtab_mm_collapse_huge_page_swapin
+ffffffff820797d0 d __tpstrtab_mm_khugepaged_scan_file
+ffffffff820797f0 d __tpstrtab_test_pages_isolated
+ffffffff82079810 d __tpstrtab_damon_aggregated
+ffffffff82079830 d __tpstrtab_writeback_dirty_folio
+ffffffff82079850 d __tpstrtab_folio_wait_writeback
+ffffffff82079870 d __tpstrtab_writeback_mark_inode_dirty
+ffffffff82079890 d __tpstrtab_writeback_dirty_inode_start
+ffffffff820798b0 d __tpstrtab_writeback_dirty_inode
+ffffffff820798d0 d __tpstrtab_inode_foreign_history
+ffffffff820798f0 d __tpstrtab_inode_switch_wbs
+ffffffff82079910 d __tpstrtab_track_foreign_dirty
+ffffffff82079924 d __tpstrtab_flush_foreign
+ffffffff82079940 d __tpstrtab_writeback_write_inode_start
+ffffffff82079960 d __tpstrtab_writeback_write_inode
+ffffffff82079980 d __tpstrtab_writeback_queue
+ffffffff82079990 d __tpstrtab_writeback_exec
+ffffffff820799a0 d __tpstrtab_writeback_start
+ffffffff820799b0 d __tpstrtab_writeback_written
+ffffffff820799c2 d __tpstrtab_writeback_wait
+ffffffff820799e0 d __tpstrtab_writeback_pages_written
+ffffffff82079a00 d __tpstrtab_writeback_wake_background
+ffffffff82079a20 d __tpstrtab_writeback_bdi_register
+ffffffff82079a37 d __tpstrtab_wbc_writepage
+ffffffff82079a50 d __tpstrtab_writeback_queue_io
+ffffffff82079a70 d __tpstrtab_global_dirty_state
+ffffffff82079a90 d __tpstrtab_bdi_dirty_ratelimit
+ffffffff82079ab0 d __tpstrtab_balance_dirty_pages
+ffffffff82079ad0 d __tpstrtab_writeback_sb_inodes_requeue
+ffffffff82079af0 d __tpstrtab_writeback_single_inode_start
+ffffffff82079b10 d __tpstrtab_writeback_single_inode
+ffffffff82079b30 d __tpstrtab_writeback_lazytime
+ffffffff82079b50 d __tpstrtab_writeback_lazytime_iput
+ffffffff82079b70 d __tpstrtab_writeback_dirty_inode_enqueue
+ffffffff82079b90 d __tpstrtab_sb_mark_inode_writeback
+ffffffff82079bb0 d __tpstrtab_sb_clear_inode_writeback
+ffffffff82079bd0 d __tpstrtab_locks_get_lock_context
+ffffffff82079bf0 d __tpstrtab_posix_lock_inode
+ffffffff82079c01 d __tpstrtab_fcntl_setlk
+ffffffff82079c10 d __tpstrtab_locks_remove_posix
+ffffffff82079c30 d __tpstrtab_flock_lock_inode
+ffffffff82079c50 d __tpstrtab_break_lease_noblock
+ffffffff82079c70 d __tpstrtab_break_lease_block
+ffffffff82079c90 d __tpstrtab_break_lease_unblock
+ffffffff82079cb0 d __tpstrtab_generic_delete_lease
+ffffffff82079cd0 d __tpstrtab_time_out_leases
+ffffffff82079ce0 d __tpstrtab_generic_add_lease
+ffffffff82079d00 d __tpstrtab_leases_conflict
+ffffffff82079d10 d __tpstrtab_iomap_readpage
+ffffffff82079d20 d __tpstrtab_iomap_readahead
+ffffffff82079d30 d __tpstrtab_iomap_writepage
+ffffffff82079d40 d __tpstrtab_iomap_release_folio
+ffffffff82079d60 d __tpstrtab_iomap_invalidate_folio
+ffffffff82079d80 d __tpstrtab_iomap_dio_invalidate_fail
+ffffffff82079da0 d __tpstrtab_iomap_iter_dstmap
+ffffffff82079dc0 d __tpstrtab_iomap_iter_srcmap
+ffffffff82079de0 d __tpstrtab_iomap_writepage_map
+ffffffff82079df4 d __tpstrtab_iomap_iter
+ffffffff82079e00 d __tpstrtab_ext4_other_inode_update_time
+ffffffff82079e20 d __tpstrtab_ext4_free_inode
+ffffffff82079e30 d __tpstrtab_ext4_request_inode
+ffffffff82079e50 d __tpstrtab_ext4_allocate_inode
+ffffffff82079e70 d __tpstrtab_ext4_evict_inode
+ffffffff82079e90 d __tpstrtab_ext4_drop_inode
+ffffffff82079ea0 d __tpstrtab_ext4_nfs_commit_metadata
+ffffffff82079ec0 d __tpstrtab_ext4_mark_inode_dirty
+ffffffff82079ee0 d __tpstrtab_ext4_begin_ordered_truncate
+ffffffff82079f00 d __tpstrtab_ext4_write_begin
+ffffffff82079f20 d __tpstrtab_ext4_da_write_begin
+ffffffff82079f34 d __tpstrtab_ext4_write_end
+ffffffff82079f50 d __tpstrtab_ext4_journalled_write_end
+ffffffff82079f70 d __tpstrtab_ext4_da_write_end
+ffffffff82079f90 d __tpstrtab_ext4_writepages
+ffffffff82079fa0 d __tpstrtab_ext4_da_write_pages
+ffffffff82079fc0 d __tpstrtab_ext4_da_write_pages_extent
+ffffffff82079fe0 d __tpstrtab_ext4_writepages_result
+ffffffff82079ff7 d __tpstrtab_ext4_writepage
+ffffffff8207a006 d __tpstrtab_ext4_readpage
+ffffffff8207a020 d __tpstrtab_ext4_releasepage
+ffffffff8207a040 d __tpstrtab_ext4_invalidate_folio
+ffffffff8207a060 d __tpstrtab_ext4_journalled_invalidate_folio
+ffffffff8207a090 d __tpstrtab_ext4_discard_blocks
+ffffffff8207a0b0 d __tpstrtab_ext4_mb_new_inode_pa
+ffffffff8207a0d0 d __tpstrtab_ext4_mb_new_group_pa
+ffffffff8207a0f0 d __tpstrtab_ext4_mb_release_inode_pa
+ffffffff8207a110 d __tpstrtab_ext4_mb_release_group_pa
+ffffffff8207a130 d __tpstrtab_ext4_discard_preallocations
+ffffffff8207a150 d __tpstrtab_ext4_mb_discard_preallocations
+ffffffff8207a170 d __tpstrtab_ext4_request_blocks
+ffffffff8207a190 d __tpstrtab_ext4_allocate_blocks
+ffffffff8207a1b0 d __tpstrtab_ext4_free_blocks
+ffffffff8207a1d0 d __tpstrtab_ext4_sync_file_enter
+ffffffff8207a1f0 d __tpstrtab_ext4_sync_file_exit
+ffffffff8207a204 d __tpstrtab_ext4_sync_fs
+ffffffff8207a220 d __tpstrtab_ext4_alloc_da_blocks
+ffffffff8207a240 d __tpstrtab_ext4_mballoc_alloc
+ffffffff8207a260 d __tpstrtab_ext4_mballoc_prealloc
+ffffffff8207a280 d __tpstrtab_ext4_mballoc_discard
+ffffffff8207a2a0 d __tpstrtab_ext4_mballoc_free
+ffffffff8207a2b2 d __tpstrtab_ext4_forget
+ffffffff8207a2c0 d __tpstrtab_ext4_da_update_reserve_space
+ffffffff8207a2e0 d __tpstrtab_ext4_da_reserve_space
+ffffffff8207a300 d __tpstrtab_ext4_da_release_space
+ffffffff8207a320 d __tpstrtab_ext4_mb_bitmap_load
+ffffffff8207a340 d __tpstrtab_ext4_mb_buddy_bitmap_load
+ffffffff8207a360 d __tpstrtab_ext4_load_inode_bitmap
+ffffffff8207a380 d __tpstrtab_ext4_read_block_bitmap_load
+ffffffff8207a3a0 d __tpstrtab_ext4_fallocate_enter
+ffffffff8207a3c0 d __tpstrtab_ext4_punch_hole
+ffffffff8207a3d0 d __tpstrtab_ext4_zero_range
+ffffffff8207a3e0 d __tpstrtab_ext4_fallocate_exit
+ffffffff8207a400 d __tpstrtab_ext4_unlink_enter
+ffffffff8207a420 d __tpstrtab_ext4_unlink_exit
+ffffffff8207a440 d __tpstrtab_ext4_truncate_enter
+ffffffff8207a460 d __tpstrtab_ext4_truncate_exit
+ffffffff8207a480 d __tpstrtab_ext4_ext_convert_to_initialized_enter
+ffffffff8207a4b0 d __tpstrtab_ext4_ext_convert_to_initialized_fastpath
+ffffffff8207a4e0 d __tpstrtab_ext4_ext_map_blocks_enter
+ffffffff8207a500 d __tpstrtab_ext4_ind_map_blocks_enter
+ffffffff8207a520 d __tpstrtab_ext4_ext_map_blocks_exit
+ffffffff8207a540 d __tpstrtab_ext4_ind_map_blocks_exit
+ffffffff8207a560 d __tpstrtab_ext4_ext_load_extent
+ffffffff8207a580 d __tpstrtab_ext4_load_inode
+ffffffff8207a590 d __tpstrtab_ext4_journal_start
+ffffffff8207a5b0 d __tpstrtab_ext4_journal_start_reserved
+ffffffff8207a5d0 d __tpstrtab_ext4_trim_extent
+ffffffff8207a5f0 d __tpstrtab_ext4_trim_all_free
+ffffffff8207a610 d __tpstrtab_ext4_ext_handle_unwritten_extents
+ffffffff8207a640 d __tpstrtab_ext4_get_implied_cluster_alloc_exit
+ffffffff8207a670 d __tpstrtab_ext4_ext_show_extent
+ffffffff8207a690 d __tpstrtab_ext4_remove_blocks
+ffffffff8207a6b0 d __tpstrtab_ext4_ext_rm_leaf
+ffffffff8207a6d0 d __tpstrtab_ext4_ext_rm_idx
+ffffffff8207a6e0 d __tpstrtab_ext4_ext_remove_space
+ffffffff8207a700 d __tpstrtab_ext4_ext_remove_space_done
+ffffffff8207a720 d __tpstrtab_ext4_es_insert_extent
+ffffffff8207a740 d __tpstrtab_ext4_es_cache_extent
+ffffffff8207a760 d __tpstrtab_ext4_es_remove_extent
+ffffffff8207a780 d __tpstrtab_ext4_es_find_extent_range_enter
+ffffffff8207a7a0 d __tpstrtab_ext4_es_find_extent_range_exit
+ffffffff8207a7c0 d __tpstrtab_ext4_es_lookup_extent_enter
+ffffffff8207a7e0 d __tpstrtab_ext4_es_lookup_extent_exit
+ffffffff8207a800 d __tpstrtab_ext4_es_shrink_count
+ffffffff8207a820 d __tpstrtab_ext4_es_shrink_scan_enter
+ffffffff8207a840 d __tpstrtab_ext4_es_shrink_scan_exit
+ffffffff8207a860 d __tpstrtab_ext4_collapse_range
+ffffffff8207a880 d __tpstrtab_ext4_insert_range
+ffffffff8207a892 d __tpstrtab_ext4_es_shrink
+ffffffff8207a8b0 d __tpstrtab_ext4_es_insert_delayed_block
+ffffffff8207a8d0 d __tpstrtab_ext4_fsmap_low_key
+ffffffff8207a8f0 d __tpstrtab_ext4_fsmap_high_key
+ffffffff8207a910 d __tpstrtab_ext4_fsmap_mapping
+ffffffff8207a930 d __tpstrtab_ext4_getfsmap_low_key
+ffffffff8207a950 d __tpstrtab_ext4_getfsmap_high_key
+ffffffff8207a970 d __tpstrtab_ext4_getfsmap_mapping
+ffffffff8207a986 d __tpstrtab_ext4_shutdown
+ffffffff8207a994 d __tpstrtab_ext4_error
+ffffffff8207a9a0 d __tpstrtab_ext4_prefetch_bitmaps
+ffffffff8207a9c0 d __tpstrtab_ext4_lazy_itable_init
+ffffffff8207a9e0 d __tpstrtab_ext4_fc_replay_scan
+ffffffff8207a9f4 d __tpstrtab_ext4_fc_replay
+ffffffff8207aa10 d __tpstrtab_ext4_fc_commit_start
+ffffffff8207aa30 d __tpstrtab_ext4_fc_commit_stop
+ffffffff8207aa44 d __tpstrtab_ext4_fc_stats
+ffffffff8207aa60 d __tpstrtab_ext4_fc_track_create
+ffffffff8207aa80 d __tpstrtab_ext4_fc_track_link
+ffffffff8207aaa0 d __tpstrtab_ext4_fc_track_unlink
+ffffffff8207aac0 d __tpstrtab_ext4_fc_track_inode
+ffffffff8207aae0 d __tpstrtab_ext4_fc_track_range
+ffffffff8207ab00 d __tpstrtab_ext4_fc_cleanup
+ffffffff8207ab10 d __tpstrtab_ext4_update_sb
+ffffffff8207ab20 d __tpstrtab_jbd2_checkpoint
+ffffffff8207ab30 d __tpstrtab_jbd2_start_commit
+ffffffff8207ab50 d __tpstrtab_jbd2_commit_locking
+ffffffff8207ab70 d __tpstrtab_jbd2_commit_flushing
+ffffffff8207ab90 d __tpstrtab_jbd2_commit_logging
+ffffffff8207abb0 d __tpstrtab_jbd2_drop_transaction
+ffffffff8207abd0 d __tpstrtab_jbd2_end_commit
+ffffffff8207abe0 d __tpstrtab_jbd2_submit_inode_data
+ffffffff8207ac00 d __tpstrtab_jbd2_handle_start
+ffffffff8207ac20 d __tpstrtab_jbd2_handle_restart
+ffffffff8207ac40 d __tpstrtab_jbd2_handle_extend
+ffffffff8207ac60 d __tpstrtab_jbd2_handle_stats
+ffffffff8207ac72 d __tpstrtab_jbd2_run_stats
+ffffffff8207ac90 d __tpstrtab_jbd2_checkpoint_stats
+ffffffff8207acb0 d __tpstrtab_jbd2_update_log_tail
+ffffffff8207acd0 d __tpstrtab_jbd2_write_superblock
+ffffffff8207acf0 d __tpstrtab_jbd2_lock_buffer_stall
+ffffffff8207ad10 d __tpstrtab_jbd2_shrink_count
+ffffffff8207ad30 d __tpstrtab_jbd2_shrink_scan_enter
+ffffffff8207ad50 d __tpstrtab_jbd2_shrink_scan_exit
+ffffffff8207ad70 d __tpstrtab_jbd2_shrink_checkpoint_list
+ffffffff8207ad90 d __tpstrtab_erofs_lookup
+ffffffff8207ada0 d __tpstrtab_erofs_fill_inode
+ffffffff8207adb1 d __tpstrtab_erofs_readpage
+ffffffff8207adc0 d __tpstrtab_erofs_readpages
+ffffffff8207add0 d __tpstrtab_erofs_map_blocks_enter
+ffffffff8207adf0 d __tpstrtab_z_erofs_map_blocks_iter_enter
+ffffffff8207ae10 d __tpstrtab_erofs_map_blocks_exit
+ffffffff8207ae30 d __tpstrtab_z_erofs_map_blocks_iter_exit
+ffffffff8207ae50 d __tpstrtab_erofs_destroy_inode
+ffffffff8207ae70 d __tpstrtab_selinux_audited
+ffffffff8207ae80 d __tpstrtab_block_touch_buffer
+ffffffff8207aea0 d __tpstrtab_block_dirty_buffer
+ffffffff8207aec0 d __tpstrtab_block_rq_requeue
+ffffffff8207aee0 d __tpstrtab_block_rq_complete
+ffffffff8207aef2 d __tpstrtab_block_rq_error
+ffffffff8207af10 d __tpstrtab_block_rq_insert
+ffffffff8207af20 d __tpstrtab_block_rq_issue
+ffffffff8207af2f d __tpstrtab_block_rq_merge
+ffffffff8207af40 d __tpstrtab_block_bio_complete
+ffffffff8207af60 d __tpstrtab_block_bio_bounce
+ffffffff8207af80 d __tpstrtab_block_bio_backmerge
+ffffffff8207afa0 d __tpstrtab_block_bio_frontmerge
+ffffffff8207afc0 d __tpstrtab_block_bio_queue
+ffffffff8207afd0 d __tpstrtab_block_getrq
+ffffffff8207afdc d __tpstrtab_block_plug
+ffffffff8207afe7 d __tpstrtab_block_unplug
+ffffffff8207aff4 d __tpstrtab_block_split
+ffffffff8207b000 d __tpstrtab_block_bio_remap
+ffffffff8207b010 d __tpstrtab_block_rq_remap
+ffffffff8207b020 d __tpstrtab_iocost_iocg_activate
+ffffffff8207b040 d __tpstrtab_iocost_iocg_idle
+ffffffff8207b060 d __tpstrtab_iocost_inuse_shortage
+ffffffff8207b080 d __tpstrtab_iocost_inuse_transfer
+ffffffff8207b0a0 d __tpstrtab_iocost_inuse_adjust
+ffffffff8207b0c0 d __tpstrtab_iocost_ioc_vrate_adj
+ffffffff8207b0e0 d __tpstrtab_iocost_iocg_forgive_debt
+ffffffff8207b100 d __tpstrtab_kyber_latency
+ffffffff8207b10e d __tpstrtab_kyber_adjust
+ffffffff8207b120 d __tpstrtab_kyber_throttled
+ffffffff8207b130 d __tpstrtab_io_uring_create
+ffffffff8207b140 d __tpstrtab_io_uring_register
+ffffffff8207b160 d __tpstrtab_io_uring_file_get
+ffffffff8207b180 d __tpstrtab_io_uring_queue_async_work
+ffffffff8207b19a d __tpstrtab_io_uring_defer
+ffffffff8207b1a9 d __tpstrtab_io_uring_link
+ffffffff8207b1c0 d __tpstrtab_io_uring_cqring_wait
+ffffffff8207b1e0 d __tpstrtab_io_uring_fail_link
+ffffffff8207b200 d __tpstrtab_io_uring_complete
+ffffffff8207b220 d __tpstrtab_io_uring_submit_sqe
+ffffffff8207b240 d __tpstrtab_io_uring_poll_arm
+ffffffff8207b260 d __tpstrtab_io_uring_task_add
+ffffffff8207b280 d __tpstrtab_io_uring_req_failed
+ffffffff8207b2a0 d __tpstrtab_io_uring_cqe_overflow
+ffffffff8207b2c0 d __tpstrtab_io_uring_task_work_run
+ffffffff8207b2e0 d __tpstrtab_io_uring_short_write
+ffffffff8207b300 d __tpstrtab_io_uring_local_work_run
+ffffffff8207b318 d __tpstrtab_read_msr
+ffffffff8207b321 d __tpstrtab_write_msr
+ffffffff8207b32b d __tpstrtab_rdpmc
+ffffffff8207b331 d __tpstrtab_gpio_direction
+ffffffff8207b340 d __tpstrtab_gpio_value
+ffffffff8207b350 d __tpstrtab_add_device_to_group
+ffffffff8207b370 d __tpstrtab_remove_device_from_group
+ffffffff8207b390 d __tpstrtab_attach_device_to_domain
+ffffffff8207b3b0 d __tpstrtab_detach_device_from_domain
+ffffffff8207b3ca d __tpstrtab_map
+ffffffff8207b3ce d __tpstrtab_unmap
+ffffffff8207b3d4 d __tpstrtab_io_page_fault
+ffffffff8207b3f0 d __tpstrtab_regmap_reg_write
+ffffffff8207b410 d __tpstrtab_regmap_reg_read
+ffffffff8207b420 d __tpstrtab_regmap_reg_read_cache
+ffffffff8207b440 d __tpstrtab_regmap_bulk_write
+ffffffff8207b460 d __tpstrtab_regmap_bulk_read
+ffffffff8207b480 d __tpstrtab_regmap_hw_read_start
+ffffffff8207b4a0 d __tpstrtab_regmap_hw_read_done
+ffffffff8207b4c0 d __tpstrtab_regmap_hw_write_start
+ffffffff8207b4e0 d __tpstrtab_regmap_hw_write_done
+ffffffff8207b4f5 d __tpstrtab_regcache_sync
+ffffffff8207b510 d __tpstrtab_regmap_cache_only
+ffffffff8207b530 d __tpstrtab_regmap_cache_bypass
+ffffffff8207b550 d __tpstrtab_regmap_async_write_start
+ffffffff8207b570 d __tpstrtab_regmap_async_io_complete
+ffffffff8207b590 d __tpstrtab_regmap_async_complete_start
+ffffffff8207b5b0 d __tpstrtab_regmap_async_complete_done
+ffffffff8207b5d0 d __tpstrtab_regcache_drop_region
+ffffffff8207b5e5 d __tpstrtab_devres_log
+ffffffff8207b5f0 d __tpstrtab_dma_fence_emit
+ffffffff8207b5ff d __tpstrtab_dma_fence_init
+ffffffff8207b610 d __tpstrtab_dma_fence_destroy
+ffffffff8207b630 d __tpstrtab_dma_fence_enable_signal
+ffffffff8207b650 d __tpstrtab_dma_fence_signaled
+ffffffff8207b670 d __tpstrtab_dma_fence_wait_start
+ffffffff8207b690 d __tpstrtab_dma_fence_wait_end
+ffffffff8207b6b0 d __tpstrtab_rtc_set_time
+ffffffff8207b6bd d __tpstrtab_rtc_read_time
+ffffffff8207b6cb d __tpstrtab_rtc_set_alarm
+ffffffff8207b6d9 d __tpstrtab_rtc_read_alarm
+ffffffff8207b6f0 d __tpstrtab_rtc_irq_set_freq
+ffffffff8207b710 d __tpstrtab_rtc_irq_set_state
+ffffffff8207b730 d __tpstrtab_rtc_alarm_irq_enable
+ffffffff8207b745 d __tpstrtab_rtc_set_offset
+ffffffff8207b760 d __tpstrtab_rtc_read_offset
+ffffffff8207b770 d __tpstrtab_rtc_timer_enqueue
+ffffffff8207b790 d __tpstrtab_rtc_timer_dequeue
+ffffffff8207b7b0 d __tpstrtab_rtc_timer_fired
+ffffffff8207b7c0 d __tpstrtab_thermal_temperature
+ffffffff8207b7d4 d __tpstrtab_cdev_update
+ffffffff8207b7e0 d __tpstrtab_thermal_zone_trip
+ffffffff8207b800 d __tpstrtab_thermal_power_cpu_get_power_simple
+ffffffff8207b830 d __tpstrtab_thermal_power_cpu_limit
+ffffffff8207b850 d __tpstrtab_watchdog_start
+ffffffff8207b85f d __tpstrtab_watchdog_ping
+ffffffff8207b86d d __tpstrtab_watchdog_stop
+ffffffff8207b880 d __tpstrtab_watchdog_set_timeout
+ffffffff8207b8a0 d __tpstrtab_mc_event
+ffffffff8207b8a9 d __tpstrtab_arm_event
+ffffffff8207b8c0 d __tpstrtab_non_standard_event
+ffffffff8207b8d3 d __tpstrtab_aer_event
+ffffffff8207b8e0 d __tpstrtab_kfree_skb
+ffffffff8207b8ea d __tpstrtab_consume_skb
+ffffffff8207b900 d __tpstrtab_skb_copy_datagram_iovec
+ffffffff8207b920 d __tpstrtab_net_dev_start_xmit
+ffffffff8207b933 d __tpstrtab_net_dev_xmit
+ffffffff8207b940 d __tpstrtab_net_dev_xmit_timeout
+ffffffff8207b955 d __tpstrtab_net_dev_queue
+ffffffff8207b970 d __tpstrtab_netif_receive_skb
+ffffffff8207b982 d __tpstrtab_netif_rx
+ffffffff8207b990 d __tpstrtab_napi_gro_frags_entry
+ffffffff8207b9b0 d __tpstrtab_napi_gro_receive_entry
+ffffffff8207b9d0 d __tpstrtab_netif_receive_skb_entry
+ffffffff8207b9f0 d __tpstrtab_netif_receive_skb_list_entry
+ffffffff8207ba0d d __tpstrtab_netif_rx_entry
+ffffffff8207ba20 d __tpstrtab_napi_gro_frags_exit
+ffffffff8207ba40 d __tpstrtab_napi_gro_receive_exit
+ffffffff8207ba60 d __tpstrtab_netif_receive_skb_exit
+ffffffff8207ba77 d __tpstrtab_netif_rx_exit
+ffffffff8207ba90 d __tpstrtab_netif_receive_skb_list_exit
+ffffffff8207baac d __tpstrtab_napi_poll
+ffffffff8207bac0 d __tpstrtab_sock_rcvqueue_full
+ffffffff8207bae0 d __tpstrtab_sock_exceed_buf_limit
+ffffffff8207bb00 d __tpstrtab_inet_sock_set_state
+ffffffff8207bb20 d __tpstrtab_inet_sk_error_report
+ffffffff8207bb40 d __tpstrtab_udp_fail_queue_rcv_skb
+ffffffff8207bb60 d __tpstrtab_tcp_retransmit_skb
+ffffffff8207bb73 d __tpstrtab_tcp_send_reset
+ffffffff8207bb90 d __tpstrtab_tcp_receive_reset
+ffffffff8207bbb0 d __tpstrtab_tcp_destroy_sock
+ffffffff8207bbd0 d __tpstrtab_tcp_rcv_space_adjust
+ffffffff8207bbf0 d __tpstrtab_tcp_retransmit_synack
+ffffffff8207bc06 d __tpstrtab_tcp_probe
+ffffffff8207bc10 d __tpstrtab_tcp_bad_csum
+ffffffff8207bc20 d __tpstrtab_tcp_cong_state_set
+ffffffff8207bc40 d __tpstrtab_fib_table_lookup
+ffffffff8207bc51 d __tpstrtab_qdisc_dequeue
+ffffffff8207bc5f d __tpstrtab_qdisc_enqueue
+ffffffff8207bc6d d __tpstrtab_qdisc_reset
+ffffffff8207bc79 d __tpstrtab_qdisc_destroy
+ffffffff8207bc87 d __tpstrtab_qdisc_create
+ffffffff8207bc94 d __tpstrtab_br_fdb_add
+ffffffff8207bca0 d __tpstrtab_br_fdb_external_learn_add
+ffffffff8207bcba d __tpstrtab_fdb_delete
+ffffffff8207bcc5 d __tpstrtab_br_fdb_update
+ffffffff8207bcd3 d __tpstrtab_neigh_create
+ffffffff8207bce0 d __tpstrtab_neigh_update
+ffffffff8207bcf0 d __tpstrtab_neigh_update_done
+ffffffff8207bd10 d __tpstrtab_neigh_timer_handler
+ffffffff8207bd30 d __tpstrtab_neigh_event_send_done
+ffffffff8207bd50 d __tpstrtab_neigh_event_send_dead
+ffffffff8207bd70 d __tpstrtab_neigh_cleanup_and_release
+ffffffff8207bd8a d __tpstrtab_netlink_extack
+ffffffff8207bda0 d __tpstrtab_fib6_table_lookup
+ffffffff8207bdc0 d __tpstrtab_virtio_transport_alloc_pkt
+ffffffff8207bde0 d __tpstrtab_virtio_transport_recv_pkt
+ffffffff8207bdfa d __tpstrtab_ma_op
+ffffffff8207be00 d __tpstrtab_ma_read
+ffffffff8207be08 d __tpstrtab_ma_write
+ffffffff8207be20 R __start_pci_fixups_early
+ffffffff8207c500 R __end_pci_fixups_early
+ffffffff8207c500 R __start_pci_fixups_header
+ffffffff8207d630 R __end_pci_fixups_header
+ffffffff8207d630 R __start_pci_fixups_final
+ffffffff8207ea20 R __end_pci_fixups_final
+ffffffff8207ea20 R __start_pci_fixups_enable
+ffffffff8207ea80 R __end_pci_fixups_enable
+ffffffff8207ea80 R __start_pci_fixups_resume
+ffffffff8207ecf0 R __end_pci_fixups_resume
+ffffffff8207ecf0 R __start_pci_fixups_resume_early
+ffffffff8207eea0 R __end_pci_fixups_resume_early
+ffffffff8207eea0 R __start_pci_fixups_suspend
+ffffffff8207eeb0 R __end_pci_fixups_suspend
+ffffffff8207eeb0 R __start_pci_fixups_suspend_late
+ffffffff8207eec0 R __end_builtin_fw
+ffffffff8207eec0 R __end_pci_fixups_suspend_late
+ffffffff8207eec0 r __ksymtab_IO_APIC_get_PCI_irq_vector
+ffffffff8207eec0 R __start___ksymtab
+ffffffff8207eec0 R __start_builtin_fw
+ffffffff8207eecc r __ksymtab_I_BDEV
+ffffffff8207eed8 r __ksymtab_LZ4_compress_default
+ffffffff8207eee4 r __ksymtab_LZ4_compress_destSize
+ffffffff8207eef0 r __ksymtab_LZ4_compress_fast
+ffffffff8207eefc r __ksymtab_LZ4_compress_fast_continue
+ffffffff8207ef08 r __ksymtab_LZ4_decompress_fast
+ffffffff8207ef14 r __ksymtab_LZ4_decompress_fast_continue
+ffffffff8207ef20 r __ksymtab_LZ4_decompress_fast_usingDict
+ffffffff8207ef2c r __ksymtab_LZ4_decompress_safe
+ffffffff8207ef38 r __ksymtab_LZ4_decompress_safe_continue
+ffffffff8207ef44 r __ksymtab_LZ4_decompress_safe_partial
+ffffffff8207ef50 r __ksymtab_LZ4_decompress_safe_usingDict
+ffffffff8207ef5c r __ksymtab_LZ4_loadDict
+ffffffff8207ef68 r __ksymtab_LZ4_saveDict
+ffffffff8207ef74 r __ksymtab_LZ4_setStreamDecode
+ffffffff8207ef80 r __ksymtab_PageMovable
+ffffffff8207ef8c r __ksymtab___ClearPageMovable
+ffffffff8207ef98 r __ksymtab___SCK__tp_func_dma_fence_emit
+ffffffff8207efa4 r __ksymtab___SCK__tp_func_dma_fence_enable_signal
+ffffffff8207efb0 r __ksymtab___SCK__tp_func_dma_fence_signaled
+ffffffff8207efbc r __ksymtab___SCK__tp_func_kfree
+ffffffff8207efc8 r __ksymtab___SCK__tp_func_kmalloc
+ffffffff8207efd4 r __ksymtab___SCK__tp_func_kmem_cache_alloc
+ffffffff8207efe0 r __ksymtab___SCK__tp_func_kmem_cache_free
+ffffffff8207efec r __ksymtab___SCK__tp_func_mmap_lock_acquire_returned
+ffffffff8207eff8 r __ksymtab___SCK__tp_func_mmap_lock_released
+ffffffff8207f004 r __ksymtab___SCK__tp_func_mmap_lock_start_locking
+ffffffff8207f010 r __ksymtab___SCK__tp_func_rdpmc
+ffffffff8207f01c r __ksymtab___SCK__tp_func_read_msr
+ffffffff8207f028 r __ksymtab___SCK__tp_func_write_msr
+ffffffff8207f034 r __ksymtab___SCT__cond_resched
+ffffffff8207f040 r __ksymtab___SCT__might_resched
+ffffffff8207f04c r __ksymtab___SCT__preempt_schedule
+ffffffff8207f058 r __ksymtab___SCT__preempt_schedule_notrace
+ffffffff8207f064 r __ksymtab___SCT__tp_func_dma_fence_emit
+ffffffff8207f070 r __ksymtab___SCT__tp_func_dma_fence_enable_signal
+ffffffff8207f07c r __ksymtab___SCT__tp_func_dma_fence_signaled
+ffffffff8207f088 r __ksymtab___SCT__tp_func_kfree
+ffffffff8207f094 r __ksymtab___SCT__tp_func_kmalloc
+ffffffff8207f0a0 r __ksymtab___SCT__tp_func_kmem_cache_alloc
+ffffffff8207f0ac r __ksymtab___SCT__tp_func_kmem_cache_free
+ffffffff8207f0b8 r __ksymtab___SCT__tp_func_mmap_lock_acquire_returned
+ffffffff8207f0c4 r __ksymtab___SCT__tp_func_mmap_lock_released
+ffffffff8207f0d0 r __ksymtab___SCT__tp_func_mmap_lock_start_locking
+ffffffff8207f0dc r __ksymtab___SCT__tp_func_rdpmc
+ffffffff8207f0e8 r __ksymtab___SCT__tp_func_read_msr
+ffffffff8207f0f4 r __ksymtab___SCT__tp_func_write_msr
+ffffffff8207f100 r __ksymtab___SetPageMovable
+ffffffff8207f10c r __ksymtab____pskb_trim
+ffffffff8207f118 r __ksymtab____ratelimit
+ffffffff8207f124 r __ksymtab___alloc_bucket_spinlocks
+ffffffff8207f130 r __ksymtab___alloc_pages
+ffffffff8207f13c r __ksymtab___alloc_skb
+ffffffff8207f148 r __ksymtab___bforget
+ffffffff8207f154 r __ksymtab___bh_read
+ffffffff8207f160 r __ksymtab___bh_read_batch
+ffffffff8207f16c r __ksymtab___bio_advance
+ffffffff8207f178 r __ksymtab___bitmap_and
+ffffffff8207f184 r __ksymtab___bitmap_andnot
+ffffffff8207f190 r __ksymtab___bitmap_clear
+ffffffff8207f19c r __ksymtab___bitmap_complement
+ffffffff8207f1a8 r __ksymtab___bitmap_equal
+ffffffff8207f1b4 r __ksymtab___bitmap_intersects
+ffffffff8207f1c0 r __ksymtab___bitmap_or
+ffffffff8207f1cc r __ksymtab___bitmap_replace
+ffffffff8207f1d8 r __ksymtab___bitmap_set
+ffffffff8207f1e4 r __ksymtab___bitmap_shift_left
+ffffffff8207f1f0 r __ksymtab___bitmap_shift_right
+ffffffff8207f1fc r __ksymtab___bitmap_subset
+ffffffff8207f208 r __ksymtab___bitmap_weight
+ffffffff8207f214 r __ksymtab___bitmap_weight_and
+ffffffff8207f220 r __ksymtab___bitmap_xor
+ffffffff8207f22c r __ksymtab___blk_alloc_disk
+ffffffff8207f238 r __ksymtab___blk_mq_alloc_disk
+ffffffff8207f244 r __ksymtab___blk_mq_end_request
+ffffffff8207f250 r __ksymtab___blk_rq_map_sg
+ffffffff8207f25c r __ksymtab___blkdev_issue_discard
+ffffffff8207f268 r __ksymtab___blkdev_issue_zeroout
+ffffffff8207f274 r __ksymtab___block_write_begin
+ffffffff8207f280 r __ksymtab___block_write_full_page
+ffffffff8207f28c r __ksymtab___blockdev_direct_IO
+ffffffff8207f298 r __ksymtab___bread_gfp
+ffffffff8207f2a4 r __ksymtab___breadahead
+ffffffff8207f2b0 r __ksymtab___break_lease
+ffffffff8207f2bc r __ksymtab___brelse
+ffffffff8207f2c8 r __ksymtab___cap_empty_set
+ffffffff8207f2d4 r __ksymtab___check_object_size
+ffffffff8207f2e0 r __ksymtab___check_sticky
+ffffffff8207f2ec r __ksymtab___clzdi2
+ffffffff8207f2f8 r __ksymtab___clzsi2
+ffffffff8207f304 r __ksymtab___cond_resched
+ffffffff8207f310 r __ksymtab___cond_resched_lock
+ffffffff8207f31c r __ksymtab___cond_resched_rwlock_read
+ffffffff8207f328 r __ksymtab___cond_resched_rwlock_write
+ffffffff8207f334 r __ksymtab___const_udelay
+ffffffff8207f340 r __ksymtab___copy_overflow
+ffffffff8207f34c r __ksymtab___copy_user_nocache
+ffffffff8207f358 r __ksymtab___cpu_active_mask
+ffffffff8207f364 r __ksymtab___cpu_dying_mask
+ffffffff8207f370 r __ksymtab___cpu_online_mask
+ffffffff8207f37c r __ksymtab___cpu_possible_mask
+ffffffff8207f388 r __ksymtab___cpu_present_mask
+ffffffff8207f394 r __ksymtab___cpuhp_remove_state
+ffffffff8207f3a0 r __ksymtab___cpuhp_remove_state_cpuslocked
+ffffffff8207f3ac r __ksymtab___cpuhp_setup_state
+ffffffff8207f3b8 r __ksymtab___cpuhp_setup_state_cpuslocked
+ffffffff8207f3c4 r __ksymtab___crc32c_le
+ffffffff8207f3d0 r __ksymtab___crc32c_le_shift
+ffffffff8207f3dc r __ksymtab___crypto_memneq
+ffffffff8207f3e8 r __ksymtab___ctzdi2
+ffffffff8207f3f4 r __ksymtab___ctzsi2
+ffffffff8207f400 r __ksymtab___d_drop
+ffffffff8207f40c r __ksymtab___d_lookup_unhash_wake
+ffffffff8207f418 r __ksymtab___dec_node_page_state
+ffffffff8207f424 r __ksymtab___dec_zone_page_state
+ffffffff8207f430 r __ksymtab___default_kernel_pte_mask
+ffffffff8207f43c r __ksymtab___delay
+ffffffff8207f448 r __ksymtab___destroy_inode
+ffffffff8207f454 r __ksymtab___dev_direct_xmit
+ffffffff8207f460 r __ksymtab___dev_get_by_flags
+ffffffff8207f46c r __ksymtab___dev_get_by_index
+ffffffff8207f478 r __ksymtab___dev_get_by_name
+ffffffff8207f484 r __ksymtab___dev_kfree_skb_any
+ffffffff8207f490 r __ksymtab___dev_kfree_skb_irq
+ffffffff8207f49c r __ksymtab___dev_queue_xmit
+ffffffff8207f4a8 r __ksymtab___dev_remove_pack
+ffffffff8207f4b4 r __ksymtab___dev_set_mtu
+ffffffff8207f4c0 r __ksymtab___devm_release_region
+ffffffff8207f4cc r __ksymtab___devm_request_region
+ffffffff8207f4d8 r __ksymtab___do_once_done
+ffffffff8207f4e4 r __ksymtab___do_once_sleepable_done
+ffffffff8207f4f0 r __ksymtab___do_once_sleepable_start
+ffffffff8207f4fc r __ksymtab___do_once_start
+ffffffff8207f508 r __ksymtab___dst_destroy_metrics_generic
+ffffffff8207f514 r __ksymtab___dynamic_dev_dbg
+ffffffff8207f520 r __ksymtab___dynamic_netdev_dbg
+ffffffff8207f52c r __ksymtab___dynamic_pr_debug
+ffffffff8207f538 r __ksymtab___ethtool_get_link_ksettings
+ffffffff8207f544 r __ksymtab___f_setown
+ffffffff8207f550 r __ksymtab___fdget
+ffffffff8207f55c r __ksymtab___fib6_flush_trees
+ffffffff8207f568 r __ksymtab___filemap_get_folio
+ffffffff8207f574 r __ksymtab___filemap_set_wb_err
+ffffffff8207f580 r __ksymtab___find_get_block
+ffffffff8207f58c r __ksymtab___find_nth_and_bit
+ffffffff8207f598 r __ksymtab___find_nth_andnot_bit
+ffffffff8207f5a4 r __ksymtab___find_nth_bit
+ffffffff8207f5b0 r __ksymtab___flush_workqueue
+ffffffff8207f5bc r __ksymtab___folio_alloc
+ffffffff8207f5c8 r __ksymtab___folio_cancel_dirty
+ffffffff8207f5d4 r __ksymtab___folio_lock
+ffffffff8207f5e0 r __ksymtab___folio_put
+ffffffff8207f5ec r __ksymtab___folio_start_writeback
+ffffffff8207f5f8 r __ksymtab___fput_sync
+ffffffff8207f604 r __ksymtab___free_pages
+ffffffff8207f610 r __ksymtab___fs_parse
+ffffffff8207f61c r __ksymtab___generic_file_fsync
+ffffffff8207f628 r __ksymtab___generic_file_write_iter
+ffffffff8207f634 r __ksymtab___genradix_free
+ffffffff8207f640 r __ksymtab___genradix_iter_peek
+ffffffff8207f64c r __ksymtab___genradix_prealloc
+ffffffff8207f658 r __ksymtab___genradix_ptr
+ffffffff8207f664 r __ksymtab___genradix_ptr_alloc
+ffffffff8207f670 r __ksymtab___get_free_pages
+ffffffff8207f67c r __ksymtab___get_hash_from_flowi6
+ffffffff8207f688 r __ksymtab___get_random_u32_below
+ffffffff8207f694 r __ksymtab___get_user_1
+ffffffff8207f6a0 r __ksymtab___get_user_2
+ffffffff8207f6ac r __ksymtab___get_user_4
+ffffffff8207f6b8 r __ksymtab___get_user_8
+ffffffff8207f6c4 r __ksymtab___get_user_nocheck_1
+ffffffff8207f6d0 r __ksymtab___get_user_nocheck_2
+ffffffff8207f6dc r __ksymtab___get_user_nocheck_4
+ffffffff8207f6e8 r __ksymtab___get_user_nocheck_8
+ffffffff8207f6f4 r __ksymtab___getblk_gfp
+ffffffff8207f700 r __ksymtab___hsiphash_unaligned
+ffffffff8207f70c r __ksymtab___hw_addr_init
+ffffffff8207f718 r __ksymtab___hw_addr_ref_sync_dev
+ffffffff8207f724 r __ksymtab___hw_addr_ref_unsync_dev
+ffffffff8207f730 r __ksymtab___hw_addr_sync
+ffffffff8207f73c r __ksymtab___hw_addr_sync_dev
+ffffffff8207f748 r __ksymtab___hw_addr_unsync
+ffffffff8207f754 r __ksymtab___hw_addr_unsync_dev
+ffffffff8207f760 r __ksymtab___icmp_send
+ffffffff8207f76c r __ksymtab___inc_node_page_state
+ffffffff8207f778 r __ksymtab___inc_zone_page_state
+ffffffff8207f784 r __ksymtab___inet6_lookup_established
+ffffffff8207f790 r __ksymtab___inet_hash
+ffffffff8207f79c r __ksymtab___inet_stream_connect
+ffffffff8207f7a8 r __ksymtab___init_rwsem
+ffffffff8207f7b4 r __ksymtab___init_swait_queue_head
+ffffffff8207f7c0 r __ksymtab___init_waitqueue_head
+ffffffff8207f7cc r __ksymtab___inode_add_bytes
+ffffffff8207f7d8 r __ksymtab___inode_sub_bytes
+ffffffff8207f7e4 r __ksymtab___insert_inode_hash
+ffffffff8207f7f0 r __ksymtab___invalidate_device
+ffffffff8207f7fc r __ksymtab___ip4_datagram_connect
+ffffffff8207f808 r __ksymtab___ip_dev_find
+ffffffff8207f814 r __ksymtab___ip_mc_dec_group
+ffffffff8207f820 r __ksymtab___ip_mc_inc_group
+ffffffff8207f82c r __ksymtab___ip_options_compile
+ffffffff8207f838 r __ksymtab___ip_queue_xmit
+ffffffff8207f844 r __ksymtab___ip_select_ident
+ffffffff8207f850 r __ksymtab___ipv6_addr_type
+ffffffff8207f85c r __ksymtab___irq_regs
+ffffffff8207f868 r __ksymtab___kfence_pool
+ffffffff8207f874 r __ksymtab___kfifo_alloc
+ffffffff8207f880 r __ksymtab___kfifo_dma_in_finish_r
+ffffffff8207f88c r __ksymtab___kfifo_dma_in_prepare
+ffffffff8207f898 r __ksymtab___kfifo_dma_in_prepare_r
+ffffffff8207f8a4 r __ksymtab___kfifo_dma_out_finish_r
+ffffffff8207f8b0 r __ksymtab___kfifo_dma_out_prepare
+ffffffff8207f8bc r __ksymtab___kfifo_dma_out_prepare_r
+ffffffff8207f8c8 r __ksymtab___kfifo_free
+ffffffff8207f8d4 r __ksymtab___kfifo_from_user
+ffffffff8207f8e0 r __ksymtab___kfifo_from_user_r
+ffffffff8207f8ec r __ksymtab___kfifo_in
+ffffffff8207f8f8 r __ksymtab___kfifo_in_r
+ffffffff8207f904 r __ksymtab___kfifo_init
+ffffffff8207f910 r __ksymtab___kfifo_len_r
+ffffffff8207f91c r __ksymtab___kfifo_max_r
+ffffffff8207f928 r __ksymtab___kfifo_out
+ffffffff8207f934 r __ksymtab___kfifo_out_peek
+ffffffff8207f940 r __ksymtab___kfifo_out_peek_r
+ffffffff8207f94c r __ksymtab___kfifo_out_r
+ffffffff8207f958 r __ksymtab___kfifo_skip_r
+ffffffff8207f964 r __ksymtab___kfifo_to_user
+ffffffff8207f970 r __ksymtab___kfifo_to_user_r
+ffffffff8207f97c r __ksymtab___kfree_skb
+ffffffff8207f988 r __ksymtab___kmalloc
+ffffffff8207f994 r __ksymtab___kmalloc_node
+ffffffff8207f9a0 r __ksymtab___kmalloc_node_track_caller
+ffffffff8207f9ac r __ksymtab___list_add_valid
+ffffffff8207f9b8 r __ksymtab___list_del_entry_valid
+ffffffff8207f9c4 r __ksymtab___local_bh_enable_ip
+ffffffff8207f9d0 r __ksymtab___lock_buffer
+ffffffff8207f9dc r __ksymtab___lock_sock_fast
+ffffffff8207f9e8 r __ksymtab___mark_inode_dirty
+ffffffff8207f9f4 r __ksymtab___max_die_per_package
+ffffffff8207fa00 r __ksymtab___max_logical_packages
+ffffffff8207fa0c r __ksymtab___mb_cache_entry_free
+ffffffff8207fa18 r __ksymtab___memcpy
+ffffffff8207fa24 r __ksymtab___memmove
+ffffffff8207fa30 r __ksymtab___memset
+ffffffff8207fa3c r __ksymtab___mmap_lock_do_trace_acquire_returned
+ffffffff8207fa48 r __ksymtab___mmap_lock_do_trace_released
+ffffffff8207fa54 r __ksymtab___mmap_lock_do_trace_start_locking
+ffffffff8207fa60 r __ksymtab___mod_lruvec_page_state
+ffffffff8207fa6c r __ksymtab___mod_node_page_state
+ffffffff8207fa78 r __ksymtab___mod_zone_page_state
+ffffffff8207fa84 r __ksymtab___module_put_and_kthread_exit
+ffffffff8207fa90 r __ksymtab___msecs_to_jiffies
+ffffffff8207fa9c r __ksymtab___mutex_init
+ffffffff8207faa8 r __ksymtab___napi_alloc_frag_align
+ffffffff8207fab4 r __ksymtab___napi_alloc_skb
+ffffffff8207fac0 r __ksymtab___napi_schedule
+ffffffff8207facc r __ksymtab___napi_schedule_irqoff
+ffffffff8207fad8 r __ksymtab___nd_driver_register
+ffffffff8207fae4 r __ksymtab___ndelay
+ffffffff8207faf0 r __ksymtab___neigh_create
+ffffffff8207fafc r __ksymtab___neigh_event_send
+ffffffff8207fb08 r __ksymtab___neigh_for_each_release
+ffffffff8207fb14 r __ksymtab___neigh_set_probe_once
+ffffffff8207fb20 r __ksymtab___netdev_alloc_frag_align
+ffffffff8207fb2c r __ksymtab___netdev_alloc_skb
+ffffffff8207fb38 r __ksymtab___netdev_notify_peers
+ffffffff8207fb44 r __ksymtab___netif_napi_del
+ffffffff8207fb50 r __ksymtab___netif_rx
+ffffffff8207fb5c r __ksymtab___netif_schedule
+ffffffff8207fb68 r __ksymtab___netlink_dump_start
+ffffffff8207fb74 r __ksymtab___netlink_kernel_create
+ffffffff8207fb80 r __ksymtab___netlink_ns_capable
+ffffffff8207fb8c r __ksymtab___nla_parse
+ffffffff8207fb98 r __ksymtab___nla_put
+ffffffff8207fba4 r __ksymtab___nla_put_64bit
+ffffffff8207fbb0 r __ksymtab___nla_put_nohdr
+ffffffff8207fbbc r __ksymtab___nla_reserve
+ffffffff8207fbc8 r __ksymtab___nla_reserve_64bit
+ffffffff8207fbd4 r __ksymtab___nla_reserve_nohdr
+ffffffff8207fbe0 r __ksymtab___nla_validate
+ffffffff8207fbec r __ksymtab___nlmsg_put
+ffffffff8207fbf8 r __ksymtab___num_online_cpus
+ffffffff8207fc04 r __ksymtab___of_get_address
+ffffffff8207fc10 r __ksymtab___of_parse_phandle_with_args
+ffffffff8207fc1c r __ksymtab___page_frag_cache_drain
+ffffffff8207fc28 r __ksymtab___pagevec_release
+ffffffff8207fc34 r __ksymtab___pci_register_driver
+ffffffff8207fc40 r __ksymtab___per_cpu_offset
+ffffffff8207fc4c r __ksymtab___percpu_counter_compare
+ffffffff8207fc58 r __ksymtab___percpu_counter_init
+ffffffff8207fc64 r __ksymtab___percpu_counter_sum
+ffffffff8207fc70 r __ksymtab___posix_acl_chmod
+ffffffff8207fc7c r __ksymtab___posix_acl_create
+ffffffff8207fc88 r __ksymtab___preempt_count
+ffffffff8207fc94 r __ksymtab___printk_cpu_sync_put
+ffffffff8207fca0 r __ksymtab___printk_cpu_sync_try_get
+ffffffff8207fcac r __ksymtab___printk_cpu_sync_wait
+ffffffff8207fcb8 r __ksymtab___printk_ratelimit
+ffffffff8207fcc4 r __ksymtab___pskb_copy_fclone
+ffffffff8207fcd0 r __ksymtab___pskb_pull_tail
+ffffffff8207fcdc r __ksymtab___put_cred
+ffffffff8207fce8 r __ksymtab___put_user_1
+ffffffff8207fcf4 r __ksymtab___put_user_2
+ffffffff8207fd00 r __ksymtab___put_user_4
+ffffffff8207fd0c r __ksymtab___put_user_8
+ffffffff8207fd18 r __ksymtab___put_user_nocheck_1
+ffffffff8207fd24 r __ksymtab___put_user_nocheck_2
+ffffffff8207fd30 r __ksymtab___put_user_nocheck_4
+ffffffff8207fd3c r __ksymtab___put_user_nocheck_8
+ffffffff8207fd48 r __ksymtab___rb_erase_color
+ffffffff8207fd54 r __ksymtab___rb_insert_augmented
+ffffffff8207fd60 r __ksymtab___refrigerator
+ffffffff8207fd6c r __ksymtab___register_binfmt
+ffffffff8207fd78 r __ksymtab___register_blkdev
+ffffffff8207fd84 r __ksymtab___register_chrdev
+ffffffff8207fd90 r __ksymtab___register_nls
+ffffffff8207fd9c r __ksymtab___register_nmi_handler
+ffffffff8207fda8 r __ksymtab___release_region
+ffffffff8207fdb4 r __ksymtab___remove_inode_hash
+ffffffff8207fdc0 r __ksymtab___request_module
+ffffffff8207fdcc r __ksymtab___request_region
+ffffffff8207fdd8 r __ksymtab___scm_destroy
+ffffffff8207fde4 r __ksymtab___scm_send
+ffffffff8207fdf0 r __ksymtab___seq_open_private
+ffffffff8207fdfc r __ksymtab___serio_register_driver
+ffffffff8207fe08 r __ksymtab___serio_register_port
+ffffffff8207fe14 r __ksymtab___set_page_dirty_nobuffers
+ffffffff8207fe20 r __ksymtab___sg_alloc_table
+ffffffff8207fe2c r __ksymtab___sg_free_table
+ffffffff8207fe38 r __ksymtab___sg_page_iter_dma_next
+ffffffff8207fe44 r __ksymtab___sg_page_iter_next
+ffffffff8207fe50 r __ksymtab___sg_page_iter_start
+ffffffff8207fe5c r __ksymtab___siphash_unaligned
+ffffffff8207fe68 r __ksymtab___sk_backlog_rcv
+ffffffff8207fe74 r __ksymtab___sk_dst_check
+ffffffff8207fe80 r __ksymtab___sk_mem_reclaim
+ffffffff8207fe8c r __ksymtab___sk_mem_schedule
+ffffffff8207fe98 r __ksymtab___sk_queue_drop_skb
+ffffffff8207fea4 r __ksymtab___sk_receive_skb
+ffffffff8207feb0 r __ksymtab___skb_checksum
+ffffffff8207febc r __ksymtab___skb_checksum_complete
+ffffffff8207fec8 r __ksymtab___skb_checksum_complete_head
+ffffffff8207fed4 r __ksymtab___skb_ext_del
+ffffffff8207fee0 r __ksymtab___skb_ext_put
+ffffffff8207feec r __ksymtab___skb_flow_dissect
+ffffffff8207fef8 r __ksymtab___skb_flow_get_ports
+ffffffff8207ff04 r __ksymtab___skb_free_datagram_locked
+ffffffff8207ff10 r __ksymtab___skb_get_hash
+ffffffff8207ff1c r __ksymtab___skb_gro_checksum_complete
+ffffffff8207ff28 r __ksymtab___skb_gso_segment
+ffffffff8207ff34 r __ksymtab___skb_pad
+ffffffff8207ff40 r __ksymtab___skb_recv_datagram
+ffffffff8207ff4c r __ksymtab___skb_recv_udp
+ffffffff8207ff58 r __ksymtab___skb_try_recv_datagram
+ffffffff8207ff64 r __ksymtab___skb_vlan_pop
+ffffffff8207ff70 r __ksymtab___skb_wait_for_more_packets
+ffffffff8207ff7c r __ksymtab___skb_warn_lro_forwarding
+ffffffff8207ff88 r __ksymtab___sock_cmsg_send
+ffffffff8207ff94 r __ksymtab___sock_create
+ffffffff8207ffa0 r __ksymtab___sock_queue_rcv_skb
+ffffffff8207ffac r __ksymtab___sock_tx_timestamp
+ffffffff8207ffb8 r __ksymtab___splice_from_pipe
+ffffffff8207ffc4 r __ksymtab___stack_chk_fail
+ffffffff8207ffd0 r __ksymtab___sw_hweight32
+ffffffff8207ffdc r __ksymtab___sw_hweight64
+ffffffff8207ffe8 r __ksymtab___sync_dirty_buffer
+ffffffff8207fff4 r __ksymtab___sysfs_match_string
+ffffffff82080000 r __ksymtab___task_pid_nr_ns
+ffffffff8208000c r __ksymtab___tasklet_hi_schedule
+ffffffff82080018 r __ksymtab___tasklet_schedule
+ffffffff82080024 r __ksymtab___this_cpu_preempt_check
+ffffffff82080030 r __ksymtab___traceiter_dma_fence_emit
+ffffffff8208003c r __ksymtab___traceiter_dma_fence_enable_signal
+ffffffff82080048 r __ksymtab___traceiter_dma_fence_signaled
+ffffffff82080054 r __ksymtab___traceiter_kfree
+ffffffff82080060 r __ksymtab___traceiter_kmalloc
+ffffffff8208006c r __ksymtab___traceiter_kmem_cache_alloc
+ffffffff82080078 r __ksymtab___traceiter_kmem_cache_free
+ffffffff82080084 r __ksymtab___traceiter_mmap_lock_acquire_returned
+ffffffff82080090 r __ksymtab___traceiter_mmap_lock_released
+ffffffff8208009c r __ksymtab___traceiter_mmap_lock_start_locking
+ffffffff820800a8 r __ksymtab___traceiter_rdpmc
+ffffffff820800b4 r __ksymtab___traceiter_read_msr
+ffffffff820800c0 r __ksymtab___traceiter_write_msr
+ffffffff820800cc r __ksymtab___tracepoint_dma_fence_emit
+ffffffff820800d8 r __ksymtab___tracepoint_dma_fence_enable_signal
+ffffffff820800e4 r __ksymtab___tracepoint_dma_fence_signaled
+ffffffff820800f0 r __ksymtab___tracepoint_kfree
+ffffffff820800fc r __ksymtab___tracepoint_kmalloc
+ffffffff82080108 r __ksymtab___tracepoint_kmem_cache_alloc
+ffffffff82080114 r __ksymtab___tracepoint_kmem_cache_free
+ffffffff82080120 r __ksymtab___tracepoint_mmap_lock_acquire_returned
+ffffffff8208012c r __ksymtab___tracepoint_mmap_lock_released
+ffffffff82080138 r __ksymtab___tracepoint_mmap_lock_start_locking
+ffffffff82080144 r __ksymtab___tracepoint_rdpmc
+ffffffff82080150 r __ksymtab___tracepoint_read_msr
+ffffffff8208015c r __ksymtab___tracepoint_write_msr
+ffffffff82080168 r __ksymtab___tty_alloc_driver
+ffffffff82080174 r __ksymtab___tty_insert_flip_char
+ffffffff82080180 r __ksymtab___udelay
+ffffffff8208018c r __ksymtab___udp_disconnect
+ffffffff82080198 r __ksymtab___unregister_chrdev
+ffffffff820801a4 r __ksymtab___usecs_to_jiffies
+ffffffff820801b0 r __ksymtab___var_waitqueue
+ffffffff820801bc r __ksymtab___vcalloc
+ffffffff820801c8 r __ksymtab___vfs_getxattr
+ffffffff820801d4 r __ksymtab___vfs_removexattr
+ffffffff820801e0 r __ksymtab___vfs_setxattr
+ffffffff820801ec r __ksymtab___virt_addr_valid
+ffffffff820801f8 r __ksymtab___vmalloc
+ffffffff82080204 r __ksymtab___vmalloc_array
+ffffffff82080210 r __ksymtab___wait_on_bit
+ffffffff8208021c r __ksymtab___wait_on_bit_lock
+ffffffff82080228 r __ksymtab___wait_on_buffer
+ffffffff82080234 r __ksymtab___wake_up
+ffffffff82080240 r __ksymtab___wake_up_bit
+ffffffff8208024c r __ksymtab___warn_flushing_systemwide_wq
+ffffffff82080258 r __ksymtab___warn_printk
+ffffffff82080264 r __ksymtab___x86_indirect_thunk_r10
+ffffffff82080270 r __ksymtab___x86_indirect_thunk_r11
+ffffffff8208027c r __ksymtab___x86_indirect_thunk_r12
+ffffffff82080288 r __ksymtab___x86_indirect_thunk_r13
+ffffffff82080294 r __ksymtab___x86_indirect_thunk_r14
+ffffffff820802a0 r __ksymtab___x86_indirect_thunk_r15
+ffffffff820802ac r __ksymtab___x86_indirect_thunk_r8
+ffffffff820802b8 r __ksymtab___x86_indirect_thunk_r9
+ffffffff820802c4 r __ksymtab___x86_indirect_thunk_rax
+ffffffff820802d0 r __ksymtab___x86_indirect_thunk_rbp
+ffffffff820802dc r __ksymtab___x86_indirect_thunk_rbx
+ffffffff820802e8 r __ksymtab___x86_indirect_thunk_rcx
+ffffffff820802f4 r __ksymtab___x86_indirect_thunk_rdi
+ffffffff82080300 r __ksymtab___x86_indirect_thunk_rdx
+ffffffff8208030c r __ksymtab___x86_indirect_thunk_rsi
+ffffffff82080318 r __ksymtab___x86_indirect_thunk_rsp
+ffffffff82080324 r __ksymtab___x86_return_thunk
+ffffffff82080330 r __ksymtab___xa_alloc
+ffffffff8208033c r __ksymtab___xa_alloc_cyclic
+ffffffff82080348 r __ksymtab___xa_clear_mark
+ffffffff82080354 r __ksymtab___xa_cmpxchg
+ffffffff82080360 r __ksymtab___xa_erase
+ffffffff8208036c r __ksymtab___xa_insert
+ffffffff82080378 r __ksymtab___xa_set_mark
+ffffffff82080384 r __ksymtab___xa_store
+ffffffff82080390 r __ksymtab___xfrm_decode_session
+ffffffff8208039c r __ksymtab___xfrm_dst_lookup
+ffffffff820803a8 r __ksymtab___xfrm_init_state
+ffffffff820803b4 r __ksymtab___xfrm_policy_check
+ffffffff820803c0 r __ksymtab___xfrm_route_forward
+ffffffff820803cc r __ksymtab___xfrm_state_delete
+ffffffff820803d8 r __ksymtab___xfrm_state_destroy
+ffffffff820803e4 r __ksymtab___zerocopy_sg_from_iter
+ffffffff820803f0 r __ksymtab__atomic_dec_and_lock
+ffffffff820803fc r __ksymtab__atomic_dec_and_lock_irqsave
+ffffffff82080408 r __ksymtab__bcd2bin
+ffffffff82080414 r __ksymtab__bin2bcd
+ffffffff82080420 r __ksymtab__copy_from_iter
+ffffffff8208042c r __ksymtab__copy_from_iter_nocache
+ffffffff82080438 r __ksymtab__copy_from_user
+ffffffff82080444 r __ksymtab__copy_to_iter
+ffffffff82080450 r __ksymtab__copy_to_user
+ffffffff8208045c r __ksymtab__ctype
+ffffffff82080468 r __ksymtab__dev_alert
+ffffffff82080474 r __ksymtab__dev_crit
+ffffffff82080480 r __ksymtab__dev_emerg
+ffffffff8208048c r __ksymtab__dev_err
+ffffffff82080498 r __ksymtab__dev_info
+ffffffff820804a4 r __ksymtab__dev_notice
+ffffffff820804b0 r __ksymtab__dev_printk
+ffffffff820804bc r __ksymtab__dev_warn
+ffffffff820804c8 r __ksymtab__find_first_and_bit
+ffffffff820804d4 r __ksymtab__find_first_bit
+ffffffff820804e0 r __ksymtab__find_first_zero_bit
+ffffffff820804ec r __ksymtab__find_last_bit
+ffffffff820804f8 r __ksymtab__find_next_and_bit
+ffffffff82080504 r __ksymtab__find_next_andnot_bit
+ffffffff82080510 r __ksymtab__find_next_bit
+ffffffff8208051c r __ksymtab__find_next_zero_bit
+ffffffff82080528 r __ksymtab__kstrtol
+ffffffff82080534 r __ksymtab__kstrtoul
+ffffffff82080540 r __ksymtab__local_bh_enable
+ffffffff8208054c r __ksymtab__printk
+ffffffff82080558 r __ksymtab__raw_read_lock
+ffffffff82080564 r __ksymtab__raw_read_lock_bh
+ffffffff82080570 r __ksymtab__raw_read_lock_irq
+ffffffff8208057c r __ksymtab__raw_read_lock_irqsave
+ffffffff82080588 r __ksymtab__raw_read_trylock
+ffffffff82080594 r __ksymtab__raw_read_unlock
+ffffffff820805a0 r __ksymtab__raw_read_unlock_bh
+ffffffff820805ac r __ksymtab__raw_read_unlock_irq
+ffffffff820805b8 r __ksymtab__raw_read_unlock_irqrestore
+ffffffff820805c4 r __ksymtab__raw_spin_lock
+ffffffff820805d0 r __ksymtab__raw_spin_lock_bh
+ffffffff820805dc r __ksymtab__raw_spin_lock_irq
+ffffffff820805e8 r __ksymtab__raw_spin_lock_irqsave
+ffffffff820805f4 r __ksymtab__raw_spin_trylock
+ffffffff82080600 r __ksymtab__raw_spin_trylock_bh
+ffffffff8208060c r __ksymtab__raw_spin_unlock
+ffffffff82080618 r __ksymtab__raw_spin_unlock_bh
+ffffffff82080624 r __ksymtab__raw_spin_unlock_irq
+ffffffff82080630 r __ksymtab__raw_spin_unlock_irqrestore
+ffffffff8208063c r __ksymtab__raw_write_lock
+ffffffff82080648 r __ksymtab__raw_write_lock_bh
+ffffffff82080654 r __ksymtab__raw_write_lock_irq
+ffffffff82080660 r __ksymtab__raw_write_lock_irqsave
+ffffffff8208066c r __ksymtab__raw_write_lock_nested
+ffffffff82080678 r __ksymtab__raw_write_trylock
+ffffffff82080684 r __ksymtab__raw_write_unlock
+ffffffff82080690 r __ksymtab__raw_write_unlock_bh
+ffffffff8208069c r __ksymtab__raw_write_unlock_irq
+ffffffff820806a8 r __ksymtab__raw_write_unlock_irqrestore
+ffffffff820806b4 r __ksymtab__totalram_pages
+ffffffff820806c0 r __ksymtab_abort
+ffffffff820806cc r __ksymtab_abort_creds
+ffffffff820806d8 r __ksymtab_acpi_acquire_global_lock
+ffffffff820806e4 r __ksymtab_acpi_acquire_mutex
+ffffffff820806f0 r __ksymtab_acpi_any_gpe_status_set
+ffffffff820806fc r __ksymtab_acpi_attach_data
+ffffffff82080708 r __ksymtab_acpi_bios_error
+ffffffff82080714 r __ksymtab_acpi_bios_exception
+ffffffff82080720 r __ksymtab_acpi_bios_warning
+ffffffff8208072c r __ksymtab_acpi_buffer_to_resource
+ffffffff82080738 r __ksymtab_acpi_bus_can_wakeup
+ffffffff82080744 r __ksymtab_acpi_bus_generate_netlink_event
+ffffffff82080750 r __ksymtab_acpi_bus_get_status
+ffffffff8208075c r __ksymtab_acpi_bus_power_manageable
+ffffffff82080768 r __ksymtab_acpi_bus_private_data_handler
+ffffffff82080774 r __ksymtab_acpi_bus_register_driver
+ffffffff82080780 r __ksymtab_acpi_bus_scan
+ffffffff8208078c r __ksymtab_acpi_bus_set_power
+ffffffff82080798 r __ksymtab_acpi_bus_unregister_driver
+ffffffff820807a4 r __ksymtab_acpi_check_address_range
+ffffffff820807b0 r __ksymtab_acpi_check_dsm
+ffffffff820807bc r __ksymtab_acpi_check_region
+ffffffff820807c8 r __ksymtab_acpi_check_resource_conflict
+ffffffff820807d4 r __ksymtab_acpi_clear_event
+ffffffff820807e0 r __ksymtab_acpi_clear_gpe
+ffffffff820807ec r __ksymtab_acpi_current_gpe_count
+ffffffff820807f8 r __ksymtab_acpi_dbg_layer
+ffffffff82080804 r __ksymtab_acpi_dbg_level
+ffffffff82080810 r __ksymtab_acpi_decode_pld_buffer
+ffffffff8208081c r __ksymtab_acpi_detach_data
+ffffffff82080828 r __ksymtab_acpi_dev_found
+ffffffff82080834 r __ksymtab_acpi_dev_get_first_match_dev
+ffffffff82080840 r __ksymtab_acpi_dev_get_next_match_dev
+ffffffff8208084c r __ksymtab_acpi_dev_hid_uid_match
+ffffffff82080858 r __ksymtab_acpi_dev_present
+ffffffff82080864 r __ksymtab_acpi_dev_uid_to_integer
+ffffffff82080870 r __ksymtab_acpi_device_hid
+ffffffff8208087c r __ksymtab_acpi_device_set_power
+ffffffff82080888 r __ksymtab_acpi_disable
+ffffffff82080894 r __ksymtab_acpi_disable_all_gpes
+ffffffff820808a0 r __ksymtab_acpi_disable_event
+ffffffff820808ac r __ksymtab_acpi_disable_gpe
+ffffffff820808b8 r __ksymtab_acpi_disabled
+ffffffff820808c4 r __ksymtab_acpi_dispatch_gpe
+ffffffff820808d0 r __ksymtab_acpi_enable
+ffffffff820808dc r __ksymtab_acpi_enable_all_runtime_gpes
+ffffffff820808e8 r __ksymtab_acpi_enable_all_wakeup_gpes
+ffffffff820808f4 r __ksymtab_acpi_enable_event
+ffffffff82080900 r __ksymtab_acpi_enable_gpe
+ffffffff8208090c r __ksymtab_acpi_enter_sleep_state
+ffffffff82080918 r __ksymtab_acpi_enter_sleep_state_prep
+ffffffff82080924 r __ksymtab_acpi_enter_sleep_state_s4bios
+ffffffff82080930 r __ksymtab_acpi_error
+ffffffff8208093c r __ksymtab_acpi_evaluate_dsm
+ffffffff82080948 r __ksymtab_acpi_evaluate_integer
+ffffffff82080954 r __ksymtab_acpi_evaluate_object
+ffffffff82080960 r __ksymtab_acpi_evaluate_object_typed
+ffffffff8208096c r __ksymtab_acpi_evaluate_ost
+ffffffff82080978 r __ksymtab_acpi_evaluate_reference
+ffffffff82080984 r __ksymtab_acpi_evaluate_reg
+ffffffff82080990 r __ksymtab_acpi_exception
+ffffffff8208099c r __ksymtab_acpi_execute_simple_method
+ffffffff820809a8 r __ksymtab_acpi_extract_package
+ffffffff820809b4 r __ksymtab_acpi_finish_gpe
+ffffffff820809c0 r __ksymtab_acpi_format_exception
+ffffffff820809cc r __ksymtab_acpi_gbl_FADT
+ffffffff820809d8 r __ksymtab_acpi_get_current_resources
+ffffffff820809e4 r __ksymtab_acpi_get_data
+ffffffff820809f0 r __ksymtab_acpi_get_data_full
+ffffffff820809fc r __ksymtab_acpi_get_devices
+ffffffff82080a08 r __ksymtab_acpi_get_event_resources
+ffffffff82080a14 r __ksymtab_acpi_get_event_status
+ffffffff82080a20 r __ksymtab_acpi_get_gpe_device
+ffffffff82080a2c r __ksymtab_acpi_get_gpe_status
+ffffffff82080a38 r __ksymtab_acpi_get_handle
+ffffffff82080a44 r __ksymtab_acpi_get_irq_routing_table
+ffffffff82080a50 r __ksymtab_acpi_get_local_address
+ffffffff82080a5c r __ksymtab_acpi_get_name
+ffffffff82080a68 r __ksymtab_acpi_get_next_object
+ffffffff82080a74 r __ksymtab_acpi_get_object_info
+ffffffff82080a80 r __ksymtab_acpi_get_parent
+ffffffff82080a8c r __ksymtab_acpi_get_physical_device_location
+ffffffff82080a98 r __ksymtab_acpi_get_possible_resources
+ffffffff82080aa4 r __ksymtab_acpi_get_sleep_type_data
+ffffffff82080ab0 r __ksymtab_acpi_get_table
+ffffffff82080abc r __ksymtab_acpi_get_table_by_index
+ffffffff82080ac8 r __ksymtab_acpi_get_table_header
+ffffffff82080ad4 r __ksymtab_acpi_get_type
+ffffffff82080ae0 r __ksymtab_acpi_get_vendor_resource
+ffffffff82080aec r __ksymtab_acpi_gpe_count
+ffffffff82080af8 r __ksymtab_acpi_handle_printk
+ffffffff82080b04 r __ksymtab_acpi_has_method
+ffffffff82080b10 r __ksymtab_acpi_info
+ffffffff82080b1c r __ksymtab_acpi_install_address_space_handler
+ffffffff82080b28 r __ksymtab_acpi_install_fixed_event_handler
+ffffffff82080b34 r __ksymtab_acpi_install_global_event_handler
+ffffffff82080b40 r __ksymtab_acpi_install_gpe_block
+ffffffff82080b4c r __ksymtab_acpi_install_gpe_handler
+ffffffff82080b58 r __ksymtab_acpi_install_gpe_raw_handler
+ffffffff82080b64 r __ksymtab_acpi_install_interface
+ffffffff82080b70 r __ksymtab_acpi_install_interface_handler
+ffffffff82080b7c r __ksymtab_acpi_install_method
+ffffffff82080b88 r __ksymtab_acpi_install_notify_handler
+ffffffff82080b94 r __ksymtab_acpi_install_sci_handler
+ffffffff82080ba0 r __ksymtab_acpi_install_table_handler
+ffffffff82080bac r __ksymtab_acpi_is_video_device
+ffffffff82080bb8 r __ksymtab_acpi_leave_sleep_state
+ffffffff82080bc4 r __ksymtab_acpi_leave_sleep_state_prep
+ffffffff82080bd0 r __ksymtab_acpi_lid_open
+ffffffff82080bdc r __ksymtab_acpi_load_table
+ffffffff82080be8 r __ksymtab_acpi_map_cpu
+ffffffff82080bf4 r __ksymtab_acpi_mark_gpe_for_wake
+ffffffff82080c00 r __ksymtab_acpi_mask_gpe
+ffffffff82080c0c r __ksymtab_acpi_match_device_ids
+ffffffff82080c18 r __ksymtab_acpi_match_platform_list
+ffffffff82080c24 r __ksymtab_acpi_notifier_call_chain
+ffffffff82080c30 r __ksymtab_acpi_os_execute
+ffffffff82080c3c r __ksymtab_acpi_os_get_line
+ffffffff82080c48 r __ksymtab_acpi_os_map_generic_address
+ffffffff82080c54 r __ksymtab_acpi_os_printf
+ffffffff82080c60 r __ksymtab_acpi_os_read_port
+ffffffff82080c6c r __ksymtab_acpi_os_unmap_generic_address
+ffffffff82080c78 r __ksymtab_acpi_os_wait_events_complete
+ffffffff82080c84 r __ksymtab_acpi_os_write_port
+ffffffff82080c90 r __ksymtab_acpi_osi_is_win8
+ffffffff82080c9c r __ksymtab_acpi_pci_disabled
+ffffffff82080ca8 r __ksymtab_acpi_pm_device_sleep_state
+ffffffff82080cb4 r __ksymtab_acpi_processor_get_bios_limit
+ffffffff82080cc0 r __ksymtab_acpi_processor_get_psd
+ffffffff82080ccc r __ksymtab_acpi_processor_notify_smm
+ffffffff82080cd8 r __ksymtab_acpi_processor_power_init_bm_check
+ffffffff82080ce4 r __ksymtab_acpi_processor_preregister_performance
+ffffffff82080cf0 r __ksymtab_acpi_processor_register_performance
+ffffffff82080cfc r __ksymtab_acpi_processor_unregister_performance
+ffffffff82080d08 r __ksymtab_acpi_purge_cached_objects
+ffffffff82080d14 r __ksymtab_acpi_put_table
+ffffffff82080d20 r __ksymtab_acpi_read
+ffffffff82080d2c r __ksymtab_acpi_read_bit_register
+ffffffff82080d38 r __ksymtab_acpi_reconfig_notifier_register
+ffffffff82080d44 r __ksymtab_acpi_reconfig_notifier_unregister
+ffffffff82080d50 r __ksymtab_acpi_register_ioapic
+ffffffff82080d5c r __ksymtab_acpi_release_global_lock
+ffffffff82080d68 r __ksymtab_acpi_release_mutex
+ffffffff82080d74 r __ksymtab_acpi_remove_address_space_handler
+ffffffff82080d80 r __ksymtab_acpi_remove_fixed_event_handler
+ffffffff82080d8c r __ksymtab_acpi_remove_gpe_block
+ffffffff82080d98 r __ksymtab_acpi_remove_gpe_handler
+ffffffff82080da4 r __ksymtab_acpi_remove_interface
+ffffffff82080db0 r __ksymtab_acpi_remove_notify_handler
+ffffffff82080dbc r __ksymtab_acpi_remove_sci_handler
+ffffffff82080dc8 r __ksymtab_acpi_remove_table_handler
+ffffffff82080dd4 r __ksymtab_acpi_reset
+ffffffff82080de0 r __ksymtab_acpi_resource_to_address64
+ffffffff82080dec r __ksymtab_acpi_resources_are_enforced
+ffffffff82080df8 r __ksymtab_acpi_root_dir
+ffffffff82080e04 r __ksymtab_acpi_run_osc
+ffffffff82080e10 r __ksymtab_acpi_set_current_resources
+ffffffff82080e1c r __ksymtab_acpi_set_firmware_waking_vector
+ffffffff82080e28 r __ksymtab_acpi_set_gpe
+ffffffff82080e34 r __ksymtab_acpi_set_gpe_wake_mask
+ffffffff82080e40 r __ksymtab_acpi_setup_gpe_for_wake
+ffffffff82080e4c r __ksymtab_acpi_tb_install_and_load_table
+ffffffff82080e58 r __ksymtab_acpi_tb_unload_table
+ffffffff82080e64 r __ksymtab_acpi_unload_parent_table
+ffffffff82080e70 r __ksymtab_acpi_unload_table
+ffffffff82080e7c r __ksymtab_acpi_unmap_cpu
+ffffffff82080e88 r __ksymtab_acpi_unregister_ioapic
+ffffffff82080e94 r __ksymtab_acpi_update_all_gpes
+ffffffff82080ea0 r __ksymtab_acpi_video_backlight_string
+ffffffff82080eac r __ksymtab_acpi_walk_namespace
+ffffffff82080eb8 r __ksymtab_acpi_walk_resource_buffer
+ffffffff82080ec4 r __ksymtab_acpi_walk_resources
+ffffffff82080ed0 r __ksymtab_acpi_warning
+ffffffff82080edc r __ksymtab_acpi_write
+ffffffff82080ee8 r __ksymtab_acpi_write_bit_register
+ffffffff82080ef4 r __ksymtab_add_device_randomness
+ffffffff82080f00 r __ksymtab_add_taint
+ffffffff82080f0c r __ksymtab_add_timer
+ffffffff82080f18 r __ksymtab_add_to_page_cache_lru
+ffffffff82080f24 r __ksymtab_add_to_pipe
+ffffffff82080f30 r __ksymtab_add_wait_queue
+ffffffff82080f3c r __ksymtab_add_wait_queue_exclusive
+ffffffff82080f48 r __ksymtab_address_space_init_once
+ffffffff82080f54 r __ksymtab_adjust_managed_page_count
+ffffffff82080f60 r __ksymtab_adjust_resource
+ffffffff82080f6c r __ksymtab_aes_decrypt
+ffffffff82080f78 r __ksymtab_aes_encrypt
+ffffffff82080f84 r __ksymtab_aes_expandkey
+ffffffff82080f90 r __ksymtab_alloc_anon_inode
+ffffffff82080f9c r __ksymtab_alloc_buffer_head
+ffffffff82080fa8 r __ksymtab_alloc_chrdev_region
+ffffffff82080fb4 r __ksymtab_alloc_contig_range
+ffffffff82080fc0 r __ksymtab_alloc_cpu_rmap
+ffffffff82080fcc r __ksymtab_alloc_etherdev_mqs
+ffffffff82080fd8 r __ksymtab_alloc_file_pseudo
+ffffffff82080fe4 r __ksymtab_alloc_netdev_mqs
+ffffffff82080ff0 r __ksymtab_alloc_pages_exact
+ffffffff82080ffc r __ksymtab_alloc_skb_with_frags
+ffffffff82081008 r __ksymtab_allocate_resource
+ffffffff82081014 r __ksymtab_always_delete_dentry
+ffffffff82081020 r __ksymtab_arch_debugfs_dir
+ffffffff8208102c r __ksymtab_arch_io_free_memtype_wc
+ffffffff82081038 r __ksymtab_arch_io_reserve_memtype_wc
+ffffffff82081044 r __ksymtab_arch_phys_wc_add
+ffffffff82081050 r __ksymtab_arch_phys_wc_del
+ffffffff8208105c r __ksymtab_arch_register_cpu
+ffffffff82081068 r __ksymtab_arch_unregister_cpu
+ffffffff82081074 r __ksymtab_argv_free
+ffffffff82081080 r __ksymtab_argv_split
+ffffffff8208108c r __ksymtab_arp_create
+ffffffff82081098 r __ksymtab_arp_send
+ffffffff820810a4 r __ksymtab_arp_tbl
+ffffffff820810b0 r __ksymtab_arp_xmit
+ffffffff820810bc r __ksymtab_asm_load_gs_index
+ffffffff820810c8 r __ksymtab_atomic_dec_and_mutex_lock
+ffffffff820810d4 r __ksymtab_audit_log
+ffffffff820810e0 r __ksymtab_audit_log_end
+ffffffff820810ec r __ksymtab_audit_log_format
+ffffffff820810f8 r __ksymtab_audit_log_start
+ffffffff82081104 r __ksymtab_audit_log_task_context
+ffffffff82081110 r __ksymtab_audit_log_task_info
+ffffffff8208111c r __ksymtab_autoremove_wake_function
+ffffffff82081128 r __ksymtab_avenrun
+ffffffff82081134 r __ksymtab_balance_dirty_pages_ratelimited
+ffffffff82081140 r __ksymtab_bcmp
+ffffffff8208114c r __ksymtab_bd_abort_claiming
+ffffffff82081158 r __ksymtab_bdev_check_media_change
+ffffffff82081164 r __ksymtab_bdev_end_io_acct
+ffffffff82081170 r __ksymtab_bdev_start_io_acct
+ffffffff8208117c r __ksymtab_bdi_alloc
+ffffffff82081188 r __ksymtab_bdi_put
+ffffffff82081194 r __ksymtab_bdi_register
+ffffffff820811a0 r __ksymtab_bdi_set_max_ratio
+ffffffff820811ac r __ksymtab_bdi_unregister
+ffffffff820811b8 r __ksymtab_begin_new_exec
+ffffffff820811c4 r __ksymtab_bh_uptodate_or_lock
+ffffffff820811d0 r __ksymtab_bin2hex
+ffffffff820811dc r __ksymtab_bio_add_page
+ffffffff820811e8 r __ksymtab_bio_add_pc_page
+ffffffff820811f4 r __ksymtab_bio_alloc_bioset
+ffffffff82081200 r __ksymtab_bio_alloc_clone
+ffffffff8208120c r __ksymtab_bio_chain
+ffffffff82081218 r __ksymtab_bio_copy_data
+ffffffff82081224 r __ksymtab_bio_copy_data_iter
+ffffffff82081230 r __ksymtab_bio_endio
+ffffffff8208123c r __ksymtab_bio_free_pages
+ffffffff82081248 r __ksymtab_bio_init
+ffffffff82081254 r __ksymtab_bio_init_clone
+ffffffff82081260 r __ksymtab_bio_kmalloc
+ffffffff8208126c r __ksymtab_bio_put
+ffffffff82081278 r __ksymtab_bio_reset
+ffffffff82081284 r __ksymtab_bio_split
+ffffffff82081290 r __ksymtab_bio_split_to_limits
+ffffffff8208129c r __ksymtab_bio_uninit
+ffffffff820812a8 r __ksymtab_bioset_exit
+ffffffff820812b4 r __ksymtab_bioset_init
+ffffffff820812c0 r __ksymtab_bit_wait
+ffffffff820812cc r __ksymtab_bit_wait_io
+ffffffff820812d8 r __ksymtab_bit_waitqueue
+ffffffff820812e4 r __ksymtab_bitmap_alloc
+ffffffff820812f0 r __ksymtab_bitmap_alloc_node
+ffffffff820812fc r __ksymtab_bitmap_allocate_region
+ffffffff82081308 r __ksymtab_bitmap_bitremap
+ffffffff82081314 r __ksymtab_bitmap_cut
+ffffffff82081320 r __ksymtab_bitmap_find_free_region
+ffffffff8208132c r __ksymtab_bitmap_find_next_zero_area_off
+ffffffff82081338 r __ksymtab_bitmap_free
+ffffffff82081344 r __ksymtab_bitmap_from_arr32
+ffffffff82081350 r __ksymtab_bitmap_parse
+ffffffff8208135c r __ksymtab_bitmap_parse_user
+ffffffff82081368 r __ksymtab_bitmap_parselist
+ffffffff82081374 r __ksymtab_bitmap_parselist_user
+ffffffff82081380 r __ksymtab_bitmap_print_bitmask_to_buf
+ffffffff8208138c r __ksymtab_bitmap_print_list_to_buf
+ffffffff82081398 r __ksymtab_bitmap_print_to_pagebuf
+ffffffff820813a4 r __ksymtab_bitmap_release_region
+ffffffff820813b0 r __ksymtab_bitmap_remap
+ffffffff820813bc r __ksymtab_bitmap_to_arr32
+ffffffff820813c8 r __ksymtab_bitmap_zalloc
+ffffffff820813d4 r __ksymtab_bitmap_zalloc_node
+ffffffff820813e0 r __ksymtab_blackhole_netdev
+ffffffff820813ec r __ksymtab_blake2b_compress_generic
+ffffffff820813f8 r __ksymtab_blake2s_compress_generic
+ffffffff82081404 r __ksymtab_blake2s_final
+ffffffff82081410 r __ksymtab_blake2s_update
+ffffffff8208141c r __ksymtab_blk_check_plugged
+ffffffff82081428 r __ksymtab_blk_dump_rq_flags
+ffffffff82081434 r __ksymtab_blk_execute_rq
+ffffffff82081440 r __ksymtab_blk_finish_plug
+ffffffff8208144c r __ksymtab_blk_get_queue
+ffffffff82081458 r __ksymtab_blk_limits_io_min
+ffffffff82081464 r __ksymtab_blk_limits_io_opt
+ffffffff82081470 r __ksymtab_blk_mq_alloc_disk_for_queue
+ffffffff8208147c r __ksymtab_blk_mq_alloc_request
+ffffffff82081488 r __ksymtab_blk_mq_alloc_tag_set
+ffffffff82081494 r __ksymtab_blk_mq_complete_request
+ffffffff820814a0 r __ksymtab_blk_mq_delay_kick_requeue_list
+ffffffff820814ac r __ksymtab_blk_mq_delay_run_hw_queue
+ffffffff820814b8 r __ksymtab_blk_mq_delay_run_hw_queues
+ffffffff820814c4 r __ksymtab_blk_mq_destroy_queue
+ffffffff820814d0 r __ksymtab_blk_mq_end_request
+ffffffff820814dc r __ksymtab_blk_mq_free_tag_set
+ffffffff820814e8 r __ksymtab_blk_mq_init_allocated_queue
+ffffffff820814f4 r __ksymtab_blk_mq_init_queue
+ffffffff82081500 r __ksymtab_blk_mq_kick_requeue_list
+ffffffff8208150c r __ksymtab_blk_mq_requeue_request
+ffffffff82081518 r __ksymtab_blk_mq_rq_cpu
+ffffffff82081524 r __ksymtab_blk_mq_run_hw_queue
+ffffffff82081530 r __ksymtab_blk_mq_run_hw_queues
+ffffffff8208153c r __ksymtab_blk_mq_start_hw_queue
+ffffffff82081548 r __ksymtab_blk_mq_start_hw_queues
+ffffffff82081554 r __ksymtab_blk_mq_start_request
+ffffffff82081560 r __ksymtab_blk_mq_start_stopped_hw_queues
+ffffffff8208156c r __ksymtab_blk_mq_stop_hw_queue
+ffffffff82081578 r __ksymtab_blk_mq_stop_hw_queues
+ffffffff82081584 r __ksymtab_blk_mq_tagset_busy_iter
+ffffffff82081590 r __ksymtab_blk_mq_tagset_wait_completed_request
+ffffffff8208159c r __ksymtab_blk_mq_unique_tag
+ffffffff820815a8 r __ksymtab_blk_pm_runtime_init
+ffffffff820815b4 r __ksymtab_blk_post_runtime_resume
+ffffffff820815c0 r __ksymtab_blk_post_runtime_suspend
+ffffffff820815cc r __ksymtab_blk_pre_runtime_resume
+ffffffff820815d8 r __ksymtab_blk_pre_runtime_suspend
+ffffffff820815e4 r __ksymtab_blk_put_queue
+ffffffff820815f0 r __ksymtab_blk_queue_alignment_offset
+ffffffff820815fc r __ksymtab_blk_queue_bounce_limit
+ffffffff82081608 r __ksymtab_blk_queue_chunk_sectors
+ffffffff82081614 r __ksymtab_blk_queue_dma_alignment
+ffffffff82081620 r __ksymtab_blk_queue_flag_clear
+ffffffff8208162c r __ksymtab_blk_queue_flag_set
+ffffffff82081638 r __ksymtab_blk_queue_io_min
+ffffffff82081644 r __ksymtab_blk_queue_io_opt
+ffffffff82081650 r __ksymtab_blk_queue_logical_block_size
+ffffffff8208165c r __ksymtab_blk_queue_max_discard_sectors
+ffffffff82081668 r __ksymtab_blk_queue_max_hw_sectors
+ffffffff82081674 r __ksymtab_blk_queue_max_secure_erase_sectors
+ffffffff82081680 r __ksymtab_blk_queue_max_segment_size
+ffffffff8208168c r __ksymtab_blk_queue_max_segments
+ffffffff82081698 r __ksymtab_blk_queue_max_write_zeroes_sectors
+ffffffff820816a4 r __ksymtab_blk_queue_physical_block_size
+ffffffff820816b0 r __ksymtab_blk_queue_segment_boundary
+ffffffff820816bc r __ksymtab_blk_queue_update_dma_alignment
+ffffffff820816c8 r __ksymtab_blk_queue_update_dma_pad
+ffffffff820816d4 r __ksymtab_blk_queue_virt_boundary
+ffffffff820816e0 r __ksymtab_blk_rq_append_bio
+ffffffff820816ec r __ksymtab_blk_rq_init
+ffffffff820816f8 r __ksymtab_blk_rq_map_kern
+ffffffff82081704 r __ksymtab_blk_rq_map_user
+ffffffff82081710 r __ksymtab_blk_rq_map_user_io
+ffffffff8208171c r __ksymtab_blk_rq_map_user_iov
+ffffffff82081728 r __ksymtab_blk_rq_unmap_user
+ffffffff82081734 r __ksymtab_blk_set_queue_depth
+ffffffff82081740 r __ksymtab_blk_set_runtime_active
+ffffffff8208174c r __ksymtab_blk_set_stacking_limits
+ffffffff82081758 r __ksymtab_blk_stack_limits
+ffffffff82081764 r __ksymtab_blk_start_plug
+ffffffff82081770 r __ksymtab_blk_sync_queue
+ffffffff8208177c r __ksymtab_blkdev_get_by_dev
+ffffffff82081788 r __ksymtab_blkdev_get_by_path
+ffffffff82081794 r __ksymtab_blkdev_issue_discard
+ffffffff820817a0 r __ksymtab_blkdev_issue_flush
+ffffffff820817ac r __ksymtab_blkdev_issue_secure_erase
+ffffffff820817b8 r __ksymtab_blkdev_issue_zeroout
+ffffffff820817c4 r __ksymtab_blkdev_put
+ffffffff820817d0 r __ksymtab_block_commit_write
+ffffffff820817dc r __ksymtab_block_dirty_folio
+ffffffff820817e8 r __ksymtab_block_invalidate_folio
+ffffffff820817f4 r __ksymtab_block_is_partially_uptodate
+ffffffff82081800 r __ksymtab_block_page_mkwrite
+ffffffff8208180c r __ksymtab_block_read_full_folio
+ffffffff82081818 r __ksymtab_block_truncate_page
+ffffffff82081824 r __ksymtab_block_write_begin
+ffffffff82081830 r __ksymtab_block_write_end
+ffffffff8208183c r __ksymtab_block_write_full_page
+ffffffff82081848 r __ksymtab_bmap
+ffffffff82081854 r __ksymtab_boot_cpu_data
+ffffffff82081860 r __ksymtab_boot_option_idle_override
+ffffffff8208186c r __ksymtab_bpf_empty_prog_array
+ffffffff82081878 r __ksymtab_bpf_sk_lookup_enabled
+ffffffff82081884 r __ksymtab_bpf_stats_enabled_key
+ffffffff82081890 r __ksymtab_bprm_change_interp
+ffffffff8208189c r __ksymtab_brioctl_set
+ffffffff820818a8 r __ksymtab_bsearch
+ffffffff820818b4 r __ksymtab_buffer_check_dirty_writeback
+ffffffff820818c0 r __ksymtab_buffer_migrate_folio
+ffffffff820818cc r __ksymtab_build_skb
+ffffffff820818d8 r __ksymtab_build_skb_around
+ffffffff820818e4 r __ksymtab_cachemode2protval
+ffffffff820818f0 r __ksymtab_cad_pid
+ffffffff820818fc r __ksymtab_call_blocking_lsm_notifier
+ffffffff82081908 r __ksymtab_call_fib_notifier
+ffffffff82081914 r __ksymtab_call_fib_notifiers
+ffffffff82081920 r __ksymtab_call_netdevice_notifiers
+ffffffff8208192c r __ksymtab_call_usermodehelper
+ffffffff82081938 r __ksymtab_call_usermodehelper_exec
+ffffffff82081944 r __ksymtab_call_usermodehelper_setup
+ffffffff82081950 r __ksymtab_can_do_mlock
+ffffffff8208195c r __ksymtab_cancel_delayed_work
+ffffffff82081968 r __ksymtab_cancel_delayed_work_sync
+ffffffff82081974 r __ksymtab_cancel_work
+ffffffff82081980 r __ksymtab_capable
+ffffffff8208198c r __ksymtab_capable_wrt_inode_uidgid
+ffffffff82081998 r __ksymtab_cdev_add
+ffffffff820819a4 r __ksymtab_cdev_alloc
+ffffffff820819b0 r __ksymtab_cdev_del
+ffffffff820819bc r __ksymtab_cdev_device_add
+ffffffff820819c8 r __ksymtab_cdev_device_del
+ffffffff820819d4 r __ksymtab_cdev_init
+ffffffff820819e0 r __ksymtab_cdev_set_parent
+ffffffff820819ec r __ksymtab_chacha_block_generic
+ffffffff820819f8 r __ksymtab_chacha_crypt_generic
+ffffffff82081a04 r __ksymtab_check_zeroed_user
+ffffffff82081a10 r __ksymtab_clean_bdev_aliases
+ffffffff82081a1c r __ksymtab_clear_inode
+ffffffff82081a28 r __ksymtab_clear_nlink
+ffffffff82081a34 r __ksymtab_clear_page_dirty_for_io
+ffffffff82081a40 r __ksymtab_clear_user_erms
+ffffffff82081a4c r __ksymtab_clear_user_original
+ffffffff82081a58 r __ksymtab_clear_user_rep_good
+ffffffff82081a64 r __ksymtab_clock_t_to_jiffies
+ffffffff82081a70 r __ksymtab_clocksource_change_rating
+ffffffff82081a7c r __ksymtab_clocksource_unregister
+ffffffff82081a88 r __ksymtab_close_fd
+ffffffff82081a94 r __ksymtab_color_table
+ffffffff82081aa0 r __ksymtab_commit_creds
+ffffffff82081aac r __ksymtab_complete
+ffffffff82081ab8 r __ksymtab_complete_all
+ffffffff82081ac4 r __ksymtab_completion_done
+ffffffff82081ad0 r __ksymtab_component_match_add_release
+ffffffff82081adc r __ksymtab_component_match_add_typed
+ffffffff82081ae8 r __ksymtab_con_copy_unimap
+ffffffff82081af4 r __ksymtab_con_is_bound
+ffffffff82081b00 r __ksymtab_con_is_visible
+ffffffff82081b0c r __ksymtab_con_set_default_unimap
+ffffffff82081b18 r __ksymtab_console_blank_hook
+ffffffff82081b24 r __ksymtab_console_blanked
+ffffffff82081b30 r __ksymtab_console_conditional_schedule
+ffffffff82081b3c r __ksymtab_console_lock
+ffffffff82081b48 r __ksymtab_console_set_on_cmdline
+ffffffff82081b54 r __ksymtab_console_start
+ffffffff82081b60 r __ksymtab_console_stop
+ffffffff82081b6c r __ksymtab_console_suspend_enabled
+ffffffff82081b78 r __ksymtab_console_trylock
+ffffffff82081b84 r __ksymtab_console_unlock
+ffffffff82081b90 r __ksymtab_consume_skb
+ffffffff82081b9c r __ksymtab_cont_write_begin
+ffffffff82081ba8 r __ksymtab_contig_page_data
+ffffffff82081bb4 r __ksymtab_convert_art_ns_to_tsc
+ffffffff82081bc0 r __ksymtab_convert_art_to_tsc
+ffffffff82081bcc r __ksymtab_copy_fsxattr_to_user
+ffffffff82081bd8 r __ksymtab_copy_page
+ffffffff82081be4 r __ksymtab_copy_page_from_iter
+ffffffff82081bf0 r __ksymtab_copy_page_from_iter_atomic
+ffffffff82081bfc r __ksymtab_copy_page_to_iter
+ffffffff82081c08 r __ksymtab_copy_string_kernel
+ffffffff82081c14 r __ksymtab_copy_user_enhanced_fast_string
+ffffffff82081c20 r __ksymtab_copy_user_generic_string
+ffffffff82081c2c r __ksymtab_copy_user_generic_unrolled
+ffffffff82081c38 r __ksymtab_cpu_all_bits
+ffffffff82081c44 r __ksymtab_cpu_core_map
+ffffffff82081c50 r __ksymtab_cpu_die_map
+ffffffff82081c5c r __ksymtab_cpu_dr7
+ffffffff82081c68 r __ksymtab_cpu_info
+ffffffff82081c74 r __ksymtab_cpu_khz
+ffffffff82081c80 r __ksymtab_cpu_number
+ffffffff82081c8c r __ksymtab_cpu_rmap_add
+ffffffff82081c98 r __ksymtab_cpu_rmap_put
+ffffffff82081ca4 r __ksymtab_cpu_rmap_update
+ffffffff82081cb0 r __ksymtab_cpu_sibling_map
+ffffffff82081cbc r __ksymtab_cpu_tlbstate_shared
+ffffffff82081cc8 r __ksymtab_cpu_tss_rw
+ffffffff82081cd4 r __ksymtab_cpufreq_generic_suspend
+ffffffff82081ce0 r __ksymtab_cpufreq_get
+ffffffff82081cec r __ksymtab_cpufreq_get_hw_max_freq
+ffffffff82081cf8 r __ksymtab_cpufreq_get_policy
+ffffffff82081d04 r __ksymtab_cpufreq_quick_get
+ffffffff82081d10 r __ksymtab_cpufreq_quick_get_max
+ffffffff82081d1c r __ksymtab_cpufreq_register_notifier
+ffffffff82081d28 r __ksymtab_cpufreq_unregister_notifier
+ffffffff82081d34 r __ksymtab_cpufreq_update_policy
+ffffffff82081d40 r __ksymtab_cpumask_any_and_distribute
+ffffffff82081d4c r __ksymtab_cpumask_any_distribute
+ffffffff82081d58 r __ksymtab_cpumask_local_spread
+ffffffff82081d64 r __ksymtab_cpumask_next_wrap
+ffffffff82081d70 r __ksymtab_cr4_update_irqsoff
+ffffffff82081d7c r __ksymtab_crc16
+ffffffff82081d88 r __ksymtab_crc16_table
+ffffffff82081d94 r __ksymtab_crc32_be
+ffffffff82081da0 r __ksymtab_crc32_le
+ffffffff82081dac r __ksymtab_crc32_le_shift
+ffffffff82081db8 r __ksymtab_crc32c
+ffffffff82081dc4 r __ksymtab_crc32c_csum_stub
+ffffffff82081dd0 r __ksymtab_crc32c_impl
+ffffffff82081ddc r __ksymtab_crc8
+ffffffff82081de8 r __ksymtab_crc8_populate_lsb
+ffffffff82081df4 r __ksymtab_crc8_populate_msb
+ffffffff82081e00 r __ksymtab_create_empty_buffers
+ffffffff82081e0c r __ksymtab_cred_fscmp
+ffffffff82081e18 r __ksymtab_crypto_aes_inv_sbox
+ffffffff82081e24 r __ksymtab_crypto_aes_sbox
+ffffffff82081e30 r __ksymtab_crypto_nhpoly1305_final
+ffffffff82081e3c r __ksymtab_crypto_nhpoly1305_final_helper
+ffffffff82081e48 r __ksymtab_crypto_nhpoly1305_init
+ffffffff82081e54 r __ksymtab_crypto_nhpoly1305_setkey
+ffffffff82081e60 r __ksymtab_crypto_nhpoly1305_update
+ffffffff82081e6c r __ksymtab_crypto_nhpoly1305_update_helper
+ffffffff82081e78 r __ksymtab_crypto_sha1_finup
+ffffffff82081e84 r __ksymtab_crypto_sha1_update
+ffffffff82081e90 r __ksymtab_crypto_sha256_finup
+ffffffff82081e9c r __ksymtab_crypto_sha256_update
+ffffffff82081ea8 r __ksymtab_crypto_sha512_finup
+ffffffff82081eb4 r __ksymtab_crypto_sha512_update
+ffffffff82081ec0 r __ksymtab_csum_and_copy_from_iter
+ffffffff82081ecc r __ksymtab_csum_and_copy_to_iter
+ffffffff82081ed8 r __ksymtab_csum_ipv6_magic
+ffffffff82081ee4 r __ksymtab_csum_partial
+ffffffff82081ef0 r __ksymtab_csum_partial_copy_nocheck
+ffffffff82081efc r __ksymtab_current_task
+ffffffff82081f08 r __ksymtab_current_time
+ffffffff82081f14 r __ksymtab_current_umask
+ffffffff82081f20 r __ksymtab_current_work
+ffffffff82081f2c r __ksymtab_d_add
+ffffffff82081f38 r __ksymtab_d_add_ci
+ffffffff82081f44 r __ksymtab_d_alloc
+ffffffff82081f50 r __ksymtab_d_alloc_anon
+ffffffff82081f5c r __ksymtab_d_alloc_name
+ffffffff82081f68 r __ksymtab_d_alloc_parallel
+ffffffff82081f74 r __ksymtab_d_delete
+ffffffff82081f80 r __ksymtab_d_drop
+ffffffff82081f8c r __ksymtab_d_exact_alias
+ffffffff82081f98 r __ksymtab_d_find_alias
+ffffffff82081fa4 r __ksymtab_d_find_any_alias
+ffffffff82081fb0 r __ksymtab_d_genocide
+ffffffff82081fbc r __ksymtab_d_hash_and_lookup
+ffffffff82081fc8 r __ksymtab_d_instantiate
+ffffffff82081fd4 r __ksymtab_d_instantiate_anon
+ffffffff82081fe0 r __ksymtab_d_instantiate_new
+ffffffff82081fec r __ksymtab_d_invalidate
+ffffffff82081ff8 r __ksymtab_d_lookup
+ffffffff82082004 r __ksymtab_d_make_root
+ffffffff82082010 r __ksymtab_d_mark_dontcache
+ffffffff8208201c r __ksymtab_d_move
+ffffffff82082028 r __ksymtab_d_obtain_alias
+ffffffff82082034 r __ksymtab_d_obtain_root
+ffffffff82082040 r __ksymtab_d_path
+ffffffff8208204c r __ksymtab_d_prune_aliases
+ffffffff82082058 r __ksymtab_d_rehash
+ffffffff82082064 r __ksymtab_d_set_d_op
+ffffffff82082070 r __ksymtab_d_set_fallthru
+ffffffff8208207c r __ksymtab_d_splice_alias
+ffffffff82082088 r __ksymtab_d_tmpfile
+ffffffff82082094 r __ksymtab_datagram_poll
+ffffffff820820a0 r __ksymtab_dcache_dir_close
+ffffffff820820ac r __ksymtab_dcache_dir_lseek
+ffffffff820820b8 r __ksymtab_dcache_dir_open
+ffffffff820820c4 r __ksymtab_dcache_readdir
+ffffffff820820d0 r __ksymtab_deactivate_locked_super
+ffffffff820820dc r __ksymtab_deactivate_super
+ffffffff820820e8 r __ksymtab_debug_smp_processor_id
+ffffffff820820f4 r __ksymtab_debugfs_create_automount
+ffffffff82082100 r __ksymtab_dec_node_page_state
+ffffffff8208210c r __ksymtab_dec_zone_page_state
+ffffffff82082118 r __ksymtab_default_blu
+ffffffff82082124 r __ksymtab_default_grn
+ffffffff82082130 r __ksymtab_default_llseek
+ffffffff8208213c r __ksymtab_default_qdisc_ops
+ffffffff82082148 r __ksymtab_default_red
+ffffffff82082154 r __ksymtab_default_wake_function
+ffffffff82082160 r __ksymtab_del_gendisk
+ffffffff8208216c r __ksymtab_del_timer
+ffffffff82082178 r __ksymtab_del_timer_sync
+ffffffff82082184 r __ksymtab_delayed_work_timer_fn
+ffffffff82082190 r __ksymtab_dentry_create
+ffffffff8208219c r __ksymtab_dentry_open
+ffffffff820821a8 r __ksymtab_dentry_path_raw
+ffffffff820821b4 r __ksymtab_dev_activate
+ffffffff820821c0 r __ksymtab_dev_add_offload
+ffffffff820821cc r __ksymtab_dev_add_pack
+ffffffff820821d8 r __ksymtab_dev_addr_add
+ffffffff820821e4 r __ksymtab_dev_addr_del
+ffffffff820821f0 r __ksymtab_dev_addr_mod
+ffffffff820821fc r __ksymtab_dev_alloc_name
+ffffffff82082208 r __ksymtab_dev_base_lock
+ffffffff82082214 r __ksymtab_dev_change_flags
+ffffffff82082220 r __ksymtab_dev_close
+ffffffff8208222c r __ksymtab_dev_close_many
+ffffffff82082238 r __ksymtab_dev_deactivate
+ffffffff82082244 r __ksymtab_dev_disable_lro
+ffffffff82082250 r __ksymtab_dev_driver_string
+ffffffff8208225c r __ksymtab_dev_get_by_index
+ffffffff82082268 r __ksymtab_dev_get_by_index_rcu
+ffffffff82082274 r __ksymtab_dev_get_by_name
+ffffffff82082280 r __ksymtab_dev_get_by_name_rcu
+ffffffff8208228c r __ksymtab_dev_get_by_napi_id
+ffffffff82082298 r __ksymtab_dev_get_flags
+ffffffff820822a4 r __ksymtab_dev_get_iflink
+ffffffff820822b0 r __ksymtab_dev_get_mac_address
+ffffffff820822bc r __ksymtab_dev_get_port_parent_id
+ffffffff820822c8 r __ksymtab_dev_get_stats
+ffffffff820822d4 r __ksymtab_dev_getbyhwaddr_rcu
+ffffffff820822e0 r __ksymtab_dev_getfirstbyhwtype
+ffffffff820822ec r __ksymtab_dev_graft_qdisc
+ffffffff820822f8 r __ksymtab_dev_load
+ffffffff82082304 r __ksymtab_dev_loopback_xmit
+ffffffff82082310 r __ksymtab_dev_lstats_read
+ffffffff8208231c r __ksymtab_dev_mc_add
+ffffffff82082328 r __ksymtab_dev_mc_add_excl
+ffffffff82082334 r __ksymtab_dev_mc_add_global
+ffffffff82082340 r __ksymtab_dev_mc_del
+ffffffff8208234c r __ksymtab_dev_mc_del_global
+ffffffff82082358 r __ksymtab_dev_mc_flush
+ffffffff82082364 r __ksymtab_dev_mc_init
+ffffffff82082370 r __ksymtab_dev_mc_sync
+ffffffff8208237c r __ksymtab_dev_mc_sync_multiple
+ffffffff82082388 r __ksymtab_dev_mc_unsync
+ffffffff82082394 r __ksymtab_dev_open
+ffffffff820823a0 r __ksymtab_dev_pick_tx_cpu_id
+ffffffff820823ac r __ksymtab_dev_pick_tx_zero
+ffffffff820823b8 r __ksymtab_dev_pre_changeaddr_notify
+ffffffff820823c4 r __ksymtab_dev_printk_emit
+ffffffff820823d0 r __ksymtab_dev_remove_offload
+ffffffff820823dc r __ksymtab_dev_remove_pack
+ffffffff820823e8 r __ksymtab_dev_set_alias
+ffffffff820823f4 r __ksymtab_dev_set_allmulti
+ffffffff82082400 r __ksymtab_dev_set_mac_address
+ffffffff8208240c r __ksymtab_dev_set_mac_address_user
+ffffffff82082418 r __ksymtab_dev_set_mtu
+ffffffff82082424 r __ksymtab_dev_set_promiscuity
+ffffffff82082430 r __ksymtab_dev_set_threaded
+ffffffff8208243c r __ksymtab_dev_trans_start
+ffffffff82082448 r __ksymtab_dev_uc_add
+ffffffff82082454 r __ksymtab_dev_uc_add_excl
+ffffffff82082460 r __ksymtab_dev_uc_del
+ffffffff8208246c r __ksymtab_dev_uc_flush
+ffffffff82082478 r __ksymtab_dev_uc_init
+ffffffff82082484 r __ksymtab_dev_uc_sync
+ffffffff82082490 r __ksymtab_dev_uc_sync_multiple
+ffffffff8208249c r __ksymtab_dev_uc_unsync
+ffffffff820824a8 r __ksymtab_dev_valid_name
+ffffffff820824b4 r __ksymtab_dev_vprintk_emit
+ffffffff820824c0 r __ksymtab_device_add_disk
+ffffffff820824cc r __ksymtab_device_get_ethdev_address
+ffffffff820824d8 r __ksymtab_device_get_mac_address
+ffffffff820824e4 r __ksymtab_device_match_acpi_dev
+ffffffff820824f0 r __ksymtab_device_match_acpi_handle
+ffffffff820824fc r __ksymtab_devm_alloc_etherdev_mqs
+ffffffff82082508 r __ksymtab_devm_arch_io_reserve_memtype_wc
+ffffffff82082514 r __ksymtab_devm_arch_phys_wc_add
+ffffffff82082520 r __ksymtab_devm_free_irq
+ffffffff8208252c r __ksymtab_devm_input_allocate_device
+ffffffff82082538 r __ksymtab_devm_ioport_map
+ffffffff82082544 r __ksymtab_devm_ioport_unmap
+ffffffff82082550 r __ksymtab_devm_ioremap
+ffffffff8208255c r __ksymtab_devm_ioremap_resource
+ffffffff82082568 r __ksymtab_devm_ioremap_wc
+ffffffff82082574 r __ksymtab_devm_iounmap
+ffffffff82082580 r __ksymtab_devm_kvasprintf
+ffffffff8208258c r __ksymtab_devm_memremap
+ffffffff82082598 r __ksymtab_devm_memunmap
+ffffffff820825a4 r __ksymtab_devm_nvmem_cell_put
+ffffffff820825b0 r __ksymtab_devm_of_iomap
+ffffffff820825bc r __ksymtab_devm_pci_alloc_host_bridge
+ffffffff820825c8 r __ksymtab_devm_pci_remap_cfg_resource
+ffffffff820825d4 r __ksymtab_devm_pci_remap_cfgspace
+ffffffff820825e0 r __ksymtab_devm_pci_remap_iospace
+ffffffff820825ec r __ksymtab_devm_register_netdev
+ffffffff820825f8 r __ksymtab_devm_register_reboot_notifier
+ffffffff82082604 r __ksymtab_devm_release_resource
+ffffffff82082610 r __ksymtab_devm_request_any_context_irq
+ffffffff8208261c r __ksymtab_devm_request_resource
+ffffffff82082628 r __ksymtab_devm_request_threaded_irq
+ffffffff82082634 r __ksymtab_dget_parent
+ffffffff82082640 r __ksymtab_disable_irq
+ffffffff8208264c r __ksymtab_disable_irq_nosync
+ffffffff82082658 r __ksymtab_discard_new_inode
+ffffffff82082664 r __ksymtab_disk_stack_limits
+ffffffff82082670 r __ksymtab_dm_consume_args
+ffffffff8208267c r __ksymtab_dm_get_device
+ffffffff82082688 r __ksymtab_dm_io
+ffffffff82082694 r __ksymtab_dm_io_client_create
+ffffffff820826a0 r __ksymtab_dm_io_client_destroy
+ffffffff820826ac r __ksymtab_dm_kcopyd_client_create
+ffffffff820826b8 r __ksymtab_dm_kcopyd_client_destroy
+ffffffff820826c4 r __ksymtab_dm_kcopyd_client_flush
+ffffffff820826d0 r __ksymtab_dm_kcopyd_copy
+ffffffff820826dc r __ksymtab_dm_kcopyd_do_callback
+ffffffff820826e8 r __ksymtab_dm_kcopyd_prepare_callback
+ffffffff820826f4 r __ksymtab_dm_kcopyd_zero
+ffffffff82082700 r __ksymtab_dm_kobject_release
+ffffffff8208270c r __ksymtab_dm_mq_kick_requeue_list
+ffffffff82082718 r __ksymtab_dm_put_device
+ffffffff82082724 r __ksymtab_dm_read_arg
+ffffffff82082730 r __ksymtab_dm_read_arg_group
+ffffffff8208273c r __ksymtab_dm_register_target
+ffffffff82082748 r __ksymtab_dm_shift_arg
+ffffffff82082754 r __ksymtab_dm_table_event
+ffffffff82082760 r __ksymtab_dm_table_get_md
+ffffffff8208276c r __ksymtab_dm_table_get_mode
+ffffffff82082778 r __ksymtab_dm_table_get_size
+ffffffff82082784 r __ksymtab_dm_table_run_md_queue_async
+ffffffff82082790 r __ksymtab_dm_unregister_target
+ffffffff8208279c r __ksymtab_dma_alloc_attrs
+ffffffff820827a8 r __ksymtab_dma_fence_add_callback
+ffffffff820827b4 r __ksymtab_dma_fence_allocate_private_stub
+ffffffff820827c0 r __ksymtab_dma_fence_array_create
+ffffffff820827cc r __ksymtab_dma_fence_array_first
+ffffffff820827d8 r __ksymtab_dma_fence_array_next
+ffffffff820827e4 r __ksymtab_dma_fence_array_ops
+ffffffff820827f0 r __ksymtab_dma_fence_chain_find_seqno
+ffffffff820827fc r __ksymtab_dma_fence_chain_init
+ffffffff82082808 r __ksymtab_dma_fence_chain_ops
+ffffffff82082814 r __ksymtab_dma_fence_chain_walk
+ffffffff82082820 r __ksymtab_dma_fence_context_alloc
+ffffffff8208282c r __ksymtab_dma_fence_default_wait
+ffffffff82082838 r __ksymtab_dma_fence_describe
+ffffffff82082844 r __ksymtab_dma_fence_enable_sw_signaling
+ffffffff82082850 r __ksymtab_dma_fence_free
+ffffffff8208285c r __ksymtab_dma_fence_get_status
+ffffffff82082868 r __ksymtab_dma_fence_get_stub
+ffffffff82082874 r __ksymtab_dma_fence_init
+ffffffff82082880 r __ksymtab_dma_fence_match_context
+ffffffff8208288c r __ksymtab_dma_fence_release
+ffffffff82082898 r __ksymtab_dma_fence_remove_callback
+ffffffff820828a4 r __ksymtab_dma_fence_signal
+ffffffff820828b0 r __ksymtab_dma_fence_signal_locked
+ffffffff820828bc r __ksymtab_dma_fence_signal_timestamp
+ffffffff820828c8 r __ksymtab_dma_fence_signal_timestamp_locked
+ffffffff820828d4 r __ksymtab_dma_fence_wait_any_timeout
+ffffffff820828e0 r __ksymtab_dma_fence_wait_timeout
+ffffffff820828ec r __ksymtab_dma_free_attrs
+ffffffff820828f8 r __ksymtab_dma_get_sgtable_attrs
+ffffffff82082904 r __ksymtab_dma_map_page_attrs
+ffffffff82082910 r __ksymtab_dma_map_resource
+ffffffff8208291c r __ksymtab_dma_map_sg_attrs
+ffffffff82082928 r __ksymtab_dma_mmap_attrs
+ffffffff82082934 r __ksymtab_dma_ops
+ffffffff82082940 r __ksymtab_dma_pool_alloc
+ffffffff8208294c r __ksymtab_dma_pool_create
+ffffffff82082958 r __ksymtab_dma_pool_destroy
+ffffffff82082964 r __ksymtab_dma_pool_free
+ffffffff82082970 r __ksymtab_dma_resv_add_fence
+ffffffff8208297c r __ksymtab_dma_resv_copy_fences
+ffffffff82082988 r __ksymtab_dma_resv_fini
+ffffffff82082994 r __ksymtab_dma_resv_init
+ffffffff820829a0 r __ksymtab_dma_resv_iter_first_unlocked
+ffffffff820829ac r __ksymtab_dma_resv_iter_next_unlocked
+ffffffff820829b8 r __ksymtab_dma_resv_replace_fences
+ffffffff820829c4 r __ksymtab_dma_resv_reserve_fences
+ffffffff820829d0 r __ksymtab_dma_set_coherent_mask
+ffffffff820829dc r __ksymtab_dma_set_mask
+ffffffff820829e8 r __ksymtab_dma_spin_lock
+ffffffff820829f4 r __ksymtab_dma_sync_sg_for_cpu
+ffffffff82082a00 r __ksymtab_dma_sync_sg_for_device
+ffffffff82082a0c r __ksymtab_dma_sync_single_for_cpu
+ffffffff82082a18 r __ksymtab_dma_sync_single_for_device
+ffffffff82082a24 r __ksymtab_dma_unmap_page_attrs
+ffffffff82082a30 r __ksymtab_dma_unmap_resource
+ffffffff82082a3c r __ksymtab_dma_unmap_sg_attrs
+ffffffff82082a48 r __ksymtab_dmam_alloc_attrs
+ffffffff82082a54 r __ksymtab_dmam_free_coherent
+ffffffff82082a60 r __ksymtab_dmam_pool_create
+ffffffff82082a6c r __ksymtab_dmam_pool_destroy
+ffffffff82082a78 r __ksymtab_dmi_check_system
+ffffffff82082a84 r __ksymtab_dmi_find_device
+ffffffff82082a90 r __ksymtab_dmi_first_match
+ffffffff82082a9c r __ksymtab_dmi_get_bios_year
+ffffffff82082aa8 r __ksymtab_dmi_get_date
+ffffffff82082ab4 r __ksymtab_dmi_get_system_info
+ffffffff82082ac0 r __ksymtab_dmi_name_in_vendors
+ffffffff82082acc r __ksymtab_do_SAK
+ffffffff82082ad8 r __ksymtab_do_blank_screen
+ffffffff82082ae4 r __ksymtab_do_clone_file_range
+ffffffff82082af0 r __ksymtab_do_settimeofday64
+ffffffff82082afc r __ksymtab_do_splice_direct
+ffffffff82082b08 r __ksymtab_do_trace_netlink_extack
+ffffffff82082b14 r __ksymtab_do_trace_rdpmc
+ffffffff82082b20 r __ksymtab_do_trace_read_msr
+ffffffff82082b2c r __ksymtab_do_trace_write_msr
+ffffffff82082b38 r __ksymtab_do_unblank_screen
+ffffffff82082b44 r __ksymtab_do_wait_intr
+ffffffff82082b50 r __ksymtab_do_wait_intr_irq
+ffffffff82082b5c r __ksymtab_done_path_create
+ffffffff82082b68 r __ksymtab_dotdot_name
+ffffffff82082b74 r __ksymtab_down
+ffffffff82082b80 r __ksymtab_down_interruptible
+ffffffff82082b8c r __ksymtab_down_killable
+ffffffff82082b98 r __ksymtab_down_read
+ffffffff82082ba4 r __ksymtab_down_read_interruptible
+ffffffff82082bb0 r __ksymtab_down_read_killable
+ffffffff82082bbc r __ksymtab_down_read_trylock
+ffffffff82082bc8 r __ksymtab_down_timeout
+ffffffff82082bd4 r __ksymtab_down_trylock
+ffffffff82082be0 r __ksymtab_down_write
+ffffffff82082bec r __ksymtab_down_write_killable
+ffffffff82082bf8 r __ksymtab_down_write_trylock
+ffffffff82082c04 r __ksymtab_downgrade_write
+ffffffff82082c10 r __ksymtab_dput
+ffffffff82082c1c r __ksymtab_dql_completed
+ffffffff82082c28 r __ksymtab_dql_init
+ffffffff82082c34 r __ksymtab_dql_reset
+ffffffff82082c40 r __ksymtab_drop_nlink
+ffffffff82082c4c r __ksymtab_drop_reasons
+ffffffff82082c58 r __ksymtab_drop_super
+ffffffff82082c64 r __ksymtab_drop_super_exclusive
+ffffffff82082c70 r __ksymtab_dst_alloc
+ffffffff82082c7c r __ksymtab_dst_cow_metrics_generic
+ffffffff82082c88 r __ksymtab_dst_default_metrics
+ffffffff82082c94 r __ksymtab_dst_destroy
+ffffffff82082ca0 r __ksymtab_dst_dev_put
+ffffffff82082cac r __ksymtab_dst_discard_out
+ffffffff82082cb8 r __ksymtab_dst_init
+ffffffff82082cc4 r __ksymtab_dst_release
+ffffffff82082cd0 r __ksymtab_dst_release_immediate
+ffffffff82082cdc r __ksymtab_dump_align
+ffffffff82082ce8 r __ksymtab_dump_emit
+ffffffff82082cf4 r __ksymtab_dump_page
+ffffffff82082d00 r __ksymtab_dump_skip
+ffffffff82082d0c r __ksymtab_dump_skip_to
+ffffffff82082d18 r __ksymtab_dump_stack
+ffffffff82082d24 r __ksymtab_dump_stack_lvl
+ffffffff82082d30 r __ksymtab_dup_iter
+ffffffff82082d3c r __ksymtab_ec_get_handle
+ffffffff82082d48 r __ksymtab_ec_read
+ffffffff82082d54 r __ksymtab_ec_transaction
+ffffffff82082d60 r __ksymtab_ec_write
+ffffffff82082d6c r __ksymtab_edac_mc_find
+ffffffff82082d78 r __ksymtab_efi
+ffffffff82082d84 r __ksymtab_efi_tpm_final_log_size
+ffffffff82082d90 r __ksymtab_elevator_alloc
+ffffffff82082d9c r __ksymtab_elv_bio_merge_ok
+ffffffff82082da8 r __ksymtab_elv_rb_add
+ffffffff82082db4 r __ksymtab_elv_rb_del
+ffffffff82082dc0 r __ksymtab_elv_rb_find
+ffffffff82082dcc r __ksymtab_elv_rb_former_request
+ffffffff82082dd8 r __ksymtab_elv_rb_latter_request
+ffffffff82082de4 r __ksymtab_empty_aops
+ffffffff82082df0 r __ksymtab_empty_name
+ffffffff82082dfc r __ksymtab_empty_zero_page
+ffffffff82082e08 r __ksymtab_enable_irq
+ffffffff82082e14 r __ksymtab_end_buffer_async_write
+ffffffff82082e20 r __ksymtab_end_buffer_read_sync
+ffffffff82082e2c r __ksymtab_end_buffer_write_sync
+ffffffff82082e38 r __ksymtab_end_page_writeback
+ffffffff82082e44 r __ksymtab_errseq_check
+ffffffff82082e50 r __ksymtab_errseq_check_and_advance
+ffffffff82082e5c r __ksymtab_errseq_sample
+ffffffff82082e68 r __ksymtab_errseq_set
+ffffffff82082e74 r __ksymtab_eth_commit_mac_addr_change
+ffffffff82082e80 r __ksymtab_eth_get_headlen
+ffffffff82082e8c r __ksymtab_eth_gro_complete
+ffffffff82082e98 r __ksymtab_eth_gro_receive
+ffffffff82082ea4 r __ksymtab_eth_header
+ffffffff82082eb0 r __ksymtab_eth_header_cache
+ffffffff82082ebc r __ksymtab_eth_header_cache_update
+ffffffff82082ec8 r __ksymtab_eth_header_parse
+ffffffff82082ed4 r __ksymtab_eth_header_parse_protocol
+ffffffff82082ee0 r __ksymtab_eth_mac_addr
+ffffffff82082eec r __ksymtab_eth_platform_get_mac_address
+ffffffff82082ef8 r __ksymtab_eth_prepare_mac_addr_change
+ffffffff82082f04 r __ksymtab_eth_type_trans
+ffffffff82082f10 r __ksymtab_eth_validate_addr
+ffffffff82082f1c r __ksymtab_ether_setup
+ffffffff82082f28 r __ksymtab_ethtool_convert_legacy_u32_to_link_mode
+ffffffff82082f34 r __ksymtab_ethtool_convert_link_mode_to_legacy_u32
+ffffffff82082f40 r __ksymtab_ethtool_get_phc_vclocks
+ffffffff82082f4c r __ksymtab_ethtool_intersect_link_masks
+ffffffff82082f58 r __ksymtab_ethtool_notify
+ffffffff82082f64 r __ksymtab_ethtool_op_get_link
+ffffffff82082f70 r __ksymtab_ethtool_op_get_ts_info
+ffffffff82082f7c r __ksymtab_ethtool_rx_flow_rule_create
+ffffffff82082f88 r __ksymtab_ethtool_rx_flow_rule_destroy
+ffffffff82082f94 r __ksymtab_ethtool_sprintf
+ffffffff82082fa0 r __ksymtab_ethtool_virtdev_set_link_ksettings
+ffffffff82082fac r __ksymtab_f_setown
+ffffffff82082fb8 r __ksymtab_fasync_helper
+ffffffff82082fc4 r __ksymtab_fault_in_iov_iter_readable
+ffffffff82082fd0 r __ksymtab_fault_in_iov_iter_writeable
+ffffffff82082fdc r __ksymtab_fault_in_readable
+ffffffff82082fe8 r __ksymtab_fault_in_safe_writeable
+ffffffff82082ff4 r __ksymtab_fault_in_subpage_writeable
+ffffffff82083000 r __ksymtab_fault_in_writeable
+ffffffff8208300c r __ksymtab_fc_mount
+ffffffff82083018 r __ksymtab_fd_install
+ffffffff82083024 r __ksymtab_fg_console
+ffffffff82083030 r __ksymtab_fget
+ffffffff8208303c r __ksymtab_fget_raw
+ffffffff82083048 r __ksymtab_fib6_info_hw_flags_set
+ffffffff82083054 r __ksymtab_fib_default_rule_add
+ffffffff82083060 r __ksymtab_fib_notifier_ops_register
+ffffffff8208306c r __ksymtab_fib_notifier_ops_unregister
+ffffffff82083078 r __ksymtab_fiemap_fill_next_extent
+ffffffff82083084 r __ksymtab_fiemap_prep
+ffffffff82083090 r __ksymtab_file_check_and_advance_wb_err
+ffffffff8208309c r __ksymtab_file_fdatawait_range
+ffffffff820830a8 r __ksymtab_file_modified
+ffffffff820830b4 r __ksymtab_file_ns_capable
+ffffffff820830c0 r __ksymtab_file_open_root
+ffffffff820830cc r __ksymtab_file_path
+ffffffff820830d8 r __ksymtab_file_remove_privs
+ffffffff820830e4 r __ksymtab_file_update_time
+ffffffff820830f0 r __ksymtab_file_write_and_wait_range
+ffffffff820830fc r __ksymtab_fileattr_fill_flags
+ffffffff82083108 r __ksymtab_fileattr_fill_xflags
+ffffffff82083114 r __ksymtab_filemap_check_errors
+ffffffff82083120 r __ksymtab_filemap_dirty_folio
+ffffffff8208312c r __ksymtab_filemap_fault
+ffffffff82083138 r __ksymtab_filemap_fdatawait_keep_errors
+ffffffff82083144 r __ksymtab_filemap_fdatawait_range
+ffffffff82083150 r __ksymtab_filemap_fdatawait_range_keep_errors
+ffffffff8208315c r __ksymtab_filemap_fdatawrite
+ffffffff82083168 r __ksymtab_filemap_fdatawrite_range
+ffffffff82083174 r __ksymtab_filemap_fdatawrite_wbc
+ffffffff82083180 r __ksymtab_filemap_flush
+ffffffff8208318c r __ksymtab_filemap_get_folios
+ffffffff82083198 r __ksymtab_filemap_get_folios_contig
+ffffffff820831a4 r __ksymtab_filemap_invalidate_lock_two
+ffffffff820831b0 r __ksymtab_filemap_invalidate_unlock_two
+ffffffff820831bc r __ksymtab_filemap_map_pages
+ffffffff820831c8 r __ksymtab_filemap_page_mkwrite
+ffffffff820831d4 r __ksymtab_filemap_range_has_page
+ffffffff820831e0 r __ksymtab_filemap_release_folio
+ffffffff820831ec r __ksymtab_filemap_write_and_wait_range
+ffffffff820831f8 r __ksymtab_filp_close
+ffffffff82083204 r __ksymtab_filp_open
+ffffffff82083210 r __ksymtab_finalize_exec
+ffffffff8208321c r __ksymtab_find_font
+ffffffff82083228 r __ksymtab_find_get_pages_range_tag
+ffffffff82083234 r __ksymtab_find_inode_by_ino_rcu
+ffffffff82083240 r __ksymtab_find_inode_nowait
+ffffffff8208324c r __ksymtab_find_inode_rcu
+ffffffff82083258 r __ksymtab_find_next_clump8
+ffffffff82083264 r __ksymtab_find_vma
+ffffffff82083270 r __ksymtab_find_vma_intersection
+ffffffff8208327c r __ksymtab_finish_no_open
+ffffffff82083288 r __ksymtab_finish_open
+ffffffff82083294 r __ksymtab_finish_swait
+ffffffff820832a0 r __ksymtab_finish_wait
+ffffffff820832ac r __ksymtab_first_ec
+ffffffff820832b8 r __ksymtab_fixed_size_llseek
+ffffffff820832c4 r __ksymtab_flow_action_cookie_create
+ffffffff820832d0 r __ksymtab_flow_action_cookie_destroy
+ffffffff820832dc r __ksymtab_flow_block_cb_alloc
+ffffffff820832e8 r __ksymtab_flow_block_cb_decref
+ffffffff820832f4 r __ksymtab_flow_block_cb_free
+ffffffff82083300 r __ksymtab_flow_block_cb_incref
+ffffffff8208330c r __ksymtab_flow_block_cb_is_busy
+ffffffff82083318 r __ksymtab_flow_block_cb_lookup
+ffffffff82083324 r __ksymtab_flow_block_cb_priv
+ffffffff82083330 r __ksymtab_flow_block_cb_setup_simple
+ffffffff8208333c r __ksymtab_flow_get_u32_dst
+ffffffff82083348 r __ksymtab_flow_get_u32_src
+ffffffff82083354 r __ksymtab_flow_hash_from_keys
+ffffffff82083360 r __ksymtab_flow_indr_block_cb_alloc
+ffffffff8208336c r __ksymtab_flow_indr_dev_exists
+ffffffff82083378 r __ksymtab_flow_indr_dev_register
+ffffffff82083384 r __ksymtab_flow_indr_dev_setup_offload
+ffffffff82083390 r __ksymtab_flow_indr_dev_unregister
+ffffffff8208339c r __ksymtab_flow_keys_basic_dissector
+ffffffff820833a8 r __ksymtab_flow_keys_dissector
+ffffffff820833b4 r __ksymtab_flow_rule_alloc
+ffffffff820833c0 r __ksymtab_flow_rule_match_basic
+ffffffff820833cc r __ksymtab_flow_rule_match_control
+ffffffff820833d8 r __ksymtab_flow_rule_match_ct
+ffffffff820833e4 r __ksymtab_flow_rule_match_cvlan
+ffffffff820833f0 r __ksymtab_flow_rule_match_enc_control
+ffffffff820833fc r __ksymtab_flow_rule_match_enc_ip
+ffffffff82083408 r __ksymtab_flow_rule_match_enc_ipv4_addrs
+ffffffff82083414 r __ksymtab_flow_rule_match_enc_ipv6_addrs
+ffffffff82083420 r __ksymtab_flow_rule_match_enc_keyid
+ffffffff8208342c r __ksymtab_flow_rule_match_enc_opts
+ffffffff82083438 r __ksymtab_flow_rule_match_enc_ports
+ffffffff82083444 r __ksymtab_flow_rule_match_eth_addrs
+ffffffff82083450 r __ksymtab_flow_rule_match_icmp
+ffffffff8208345c r __ksymtab_flow_rule_match_ip
+ffffffff82083468 r __ksymtab_flow_rule_match_ipv4_addrs
+ffffffff82083474 r __ksymtab_flow_rule_match_ipv6_addrs
+ffffffff82083480 r __ksymtab_flow_rule_match_l2tpv3
+ffffffff8208348c r __ksymtab_flow_rule_match_meta
+ffffffff82083498 r __ksymtab_flow_rule_match_mpls
+ffffffff820834a4 r __ksymtab_flow_rule_match_ports
+ffffffff820834b0 r __ksymtab_flow_rule_match_ports_range
+ffffffff820834bc r __ksymtab_flow_rule_match_pppoe
+ffffffff820834c8 r __ksymtab_flow_rule_match_tcp
+ffffffff820834d4 r __ksymtab_flow_rule_match_vlan
+ffffffff820834e0 r __ksymtab_flush_delayed_work
+ffffffff820834ec r __ksymtab_flush_rcu_work
+ffffffff820834f8 r __ksymtab_flush_signals
+ffffffff82083504 r __ksymtab_folio_account_redirty
+ffffffff82083510 r __ksymtab_folio_add_lru
+ffffffff8208351c r __ksymtab_folio_clear_dirty_for_io
+ffffffff82083528 r __ksymtab_folio_end_private_2
+ffffffff82083534 r __ksymtab_folio_end_writeback
+ffffffff82083540 r __ksymtab_folio_mapped
+ffffffff8208354c r __ksymtab_folio_mapping
+ffffffff82083558 r __ksymtab_folio_mark_accessed
+ffffffff82083564 r __ksymtab_folio_mark_dirty
+ffffffff82083570 r __ksymtab_folio_migrate_copy
+ffffffff8208357c r __ksymtab_folio_migrate_flags
+ffffffff82083588 r __ksymtab_folio_migrate_mapping
+ffffffff82083594 r __ksymtab_folio_redirty_for_writepage
+ffffffff820835a0 r __ksymtab_folio_unlock
+ffffffff820835ac r __ksymtab_folio_wait_bit
+ffffffff820835b8 r __ksymtab_folio_wait_bit_killable
+ffffffff820835c4 r __ksymtab_folio_wait_private_2
+ffffffff820835d0 r __ksymtab_folio_wait_private_2_killable
+ffffffff820835dc r __ksymtab_folio_write_one
+ffffffff820835e8 r __ksymtab_follow_down
+ffffffff820835f4 r __ksymtab_follow_down_one
+ffffffff82083600 r __ksymtab_follow_pfn
+ffffffff8208360c r __ksymtab_follow_up
+ffffffff82083618 r __ksymtab_font_vga_8x16
+ffffffff82083624 r __ksymtab_force_sig
+ffffffff82083630 r __ksymtab_forget_all_cached_acls
+ffffffff8208363c r __ksymtab_forget_cached_acl
+ffffffff82083648 r __ksymtab_fput
+ffffffff82083654 r __ksymtab_fqdir_exit
+ffffffff82083660 r __ksymtab_fqdir_init
+ffffffff8208366c r __ksymtab_free_anon_bdev
+ffffffff82083678 r __ksymtab_free_bucket_spinlocks
+ffffffff82083684 r __ksymtab_free_buffer_head
+ffffffff82083690 r __ksymtab_free_cgroup_ns
+ffffffff8208369c r __ksymtab_free_contig_range
+ffffffff820836a8 r __ksymtab_free_dma
+ffffffff820836b4 r __ksymtab_free_inode_nonrcu
+ffffffff820836c0 r __ksymtab_free_irq
+ffffffff820836cc r __ksymtab_free_irq_cpu_rmap
+ffffffff820836d8 r __ksymtab_free_netdev
+ffffffff820836e4 r __ksymtab_free_pages
+ffffffff820836f0 r __ksymtab_free_pages_exact
+ffffffff820836fc r __ksymtab_free_task
+ffffffff82083708 r __ksymtab_freeze_bdev
+ffffffff82083714 r __ksymtab_freeze_super
+ffffffff82083720 r __ksymtab_freezer_active
+ffffffff8208372c r __ksymtab_freezing_slow_path
+ffffffff82083738 r __ksymtab_fs_bio_set
+ffffffff82083744 r __ksymtab_fs_context_for_mount
+ffffffff82083750 r __ksymtab_fs_context_for_reconfigure
+ffffffff8208375c r __ksymtab_fs_context_for_submount
+ffffffff82083768 r __ksymtab_fs_lookup_param
+ffffffff82083774 r __ksymtab_fs_overflowgid
+ffffffff82083780 r __ksymtab_fs_overflowuid
+ffffffff8208378c r __ksymtab_fs_param_is_blob
+ffffffff82083798 r __ksymtab_fs_param_is_blockdev
+ffffffff820837a4 r __ksymtab_fs_param_is_bool
+ffffffff820837b0 r __ksymtab_fs_param_is_enum
+ffffffff820837bc r __ksymtab_fs_param_is_fd
+ffffffff820837c8 r __ksymtab_fs_param_is_path
+ffffffff820837d4 r __ksymtab_fs_param_is_s32
+ffffffff820837e0 r __ksymtab_fs_param_is_string
+ffffffff820837ec r __ksymtab_fs_param_is_u32
+ffffffff820837f8 r __ksymtab_fs_param_is_u64
+ffffffff82083804 r __ksymtab_fsync_bdev
+ffffffff82083810 r __ksymtab_full_name_hash
+ffffffff8208381c r __ksymtab_fuse_dequeue_forget
+ffffffff82083828 r __ksymtab_fuse_mount_destroy
+ffffffff82083834 r __ksymtab_fwnode_get_mac_address
+ffffffff82083840 r __ksymtab_fwnode_graph_parse_endpoint
+ffffffff8208384c r __ksymtab_fwnode_iomap
+ffffffff82083858 r __ksymtab_fwnode_irq_get
+ffffffff82083864 r __ksymtab_fwnode_irq_get_byname
+ffffffff82083870 r __ksymtab_gc_inflight_list
+ffffffff8208387c r __ksymtab_gen_estimator_active
+ffffffff82083888 r __ksymtab_gen_estimator_read
+ffffffff82083894 r __ksymtab_gen_kill_estimator
+ffffffff820838a0 r __ksymtab_gen_new_estimator
+ffffffff820838ac r __ksymtab_gen_replace_estimator
+ffffffff820838b8 r __ksymtab_generate_random_guid
+ffffffff820838c4 r __ksymtab_generate_random_uuid
+ffffffff820838d0 r __ksymtab_generic_block_bmap
+ffffffff820838dc r __ksymtab_generic_check_addressable
+ffffffff820838e8 r __ksymtab_generic_cont_expand_simple
+ffffffff820838f4 r __ksymtab_generic_copy_file_range
+ffffffff82083900 r __ksymtab_generic_delete_inode
+ffffffff8208390c r __ksymtab_generic_error_remove_page
+ffffffff82083918 r __ksymtab_generic_fadvise
+ffffffff82083924 r __ksymtab_generic_file_direct_write
+ffffffff82083930 r __ksymtab_generic_file_fsync
+ffffffff8208393c r __ksymtab_generic_file_llseek
+ffffffff82083948 r __ksymtab_generic_file_llseek_size
+ffffffff82083954 r __ksymtab_generic_file_mmap
+ffffffff82083960 r __ksymtab_generic_file_open
+ffffffff8208396c r __ksymtab_generic_file_read_iter
+ffffffff82083978 r __ksymtab_generic_file_readonly_mmap
+ffffffff82083984 r __ksymtab_generic_file_splice_read
+ffffffff82083990 r __ksymtab_generic_file_write_iter
+ffffffff8208399c r __ksymtab_generic_fill_statx_attr
+ffffffff820839a8 r __ksymtab_generic_fillattr
+ffffffff820839b4 r __ksymtab_generic_listxattr
+ffffffff820839c0 r __ksymtab_generic_parse_monolithic
+ffffffff820839cc r __ksymtab_generic_perform_write
+ffffffff820839d8 r __ksymtab_generic_permission
+ffffffff820839e4 r __ksymtab_generic_pipe_buf_get
+ffffffff820839f0 r __ksymtab_generic_pipe_buf_release
+ffffffff820839fc r __ksymtab_generic_pipe_buf_try_steal
+ffffffff82083a08 r __ksymtab_generic_read_dir
+ffffffff82083a14 r __ksymtab_generic_remap_file_range_prep
+ffffffff82083a20 r __ksymtab_generic_ro_fops
+ffffffff82083a2c r __ksymtab_generic_set_encrypted_ci_d_ops
+ffffffff82083a38 r __ksymtab_generic_setlease
+ffffffff82083a44 r __ksymtab_generic_shutdown_super
+ffffffff82083a50 r __ksymtab_generic_splice_sendpage
+ffffffff82083a5c r __ksymtab_generic_update_time
+ffffffff82083a68 r __ksymtab_generic_write_checks
+ffffffff82083a74 r __ksymtab_generic_write_checks_count
+ffffffff82083a80 r __ksymtab_generic_write_end
+ffffffff82083a8c r __ksymtab_generic_writepages
+ffffffff82083a98 r __ksymtab_genl_lock
+ffffffff82083aa4 r __ksymtab_genl_notify
+ffffffff82083ab0 r __ksymtab_genl_register_family
+ffffffff82083abc r __ksymtab_genl_unlock
+ffffffff82083ac8 r __ksymtab_genl_unregister_family
+ffffffff82083ad4 r __ksymtab_genlmsg_multicast_allns
+ffffffff82083ae0 r __ksymtab_genlmsg_put
+ffffffff82083aec r __ksymtab_get_acl
+ffffffff82083af8 r __ksymtab_get_anon_bdev
+ffffffff82083b04 r __ksymtab_get_cached_acl
+ffffffff82083b10 r __ksymtab_get_cached_acl_rcu
+ffffffff82083b1c r __ksymtab_get_cpu_entry_area
+ffffffff82083b28 r __ksymtab_get_default_font
+ffffffff82083b34 r __ksymtab_get_fs_type
+ffffffff82083b40 r __ksymtab_get_ibs_caps
+ffffffff82083b4c r __ksymtab_get_mem_cgroup_from_mm
+ffffffff82083b58 r __ksymtab_get_next_ino
+ffffffff82083b64 r __ksymtab_get_option
+ffffffff82083b70 r __ksymtab_get_options
+ffffffff82083b7c r __ksymtab_get_random_bytes
+ffffffff82083b88 r __ksymtab_get_random_u16
+ffffffff82083b94 r __ksymtab_get_random_u32
+ffffffff82083ba0 r __ksymtab_get_random_u64
+ffffffff82083bac r __ksymtab_get_random_u8
+ffffffff82083bb8 r __ksymtab_get_task_cred
+ffffffff82083bc4 r __ksymtab_get_thermal_instance
+ffffffff82083bd0 r __ksymtab_get_tree_bdev
+ffffffff82083bdc r __ksymtab_get_tree_keyed
+ffffffff82083be8 r __ksymtab_get_tree_nodev
+ffffffff82083bf4 r __ksymtab_get_tree_single
+ffffffff82083c00 r __ksymtab_get_tree_single_reconf
+ffffffff82083c0c r __ksymtab_get_unmapped_area
+ffffffff82083c18 r __ksymtab_get_unused_fd_flags
+ffffffff82083c24 r __ksymtab_get_user_ifreq
+ffffffff82083c30 r __ksymtab_get_user_pages
+ffffffff82083c3c r __ksymtab_get_user_pages_remote
+ffffffff82083c48 r __ksymtab_get_user_pages_unlocked
+ffffffff82083c54 r __ksymtab_get_zeroed_page
+ffffffff82083c60 r __ksymtab_gf128mul_4k_bbe
+ffffffff82083c6c r __ksymtab_gf128mul_4k_lle
+ffffffff82083c78 r __ksymtab_gf128mul_64k_bbe
+ffffffff82083c84 r __ksymtab_gf128mul_bbe
+ffffffff82083c90 r __ksymtab_gf128mul_free_64k
+ffffffff82083c9c r __ksymtab_gf128mul_init_4k_bbe
+ffffffff82083ca8 r __ksymtab_gf128mul_init_4k_lle
+ffffffff82083cb4 r __ksymtab_gf128mul_init_64k_bbe
+ffffffff82083cc0 r __ksymtab_gf128mul_lle
+ffffffff82083ccc r __ksymtab_gf128mul_x8_ble
+ffffffff82083cd8 r __ksymtab_give_up_console
+ffffffff82083ce4 r __ksymtab_glob_match
+ffffffff82083cf0 r __ksymtab_global_cursor_default
+ffffffff82083cfc r __ksymtab_gnet_stats_add_basic
+ffffffff82083d08 r __ksymtab_gnet_stats_add_queue
+ffffffff82083d14 r __ksymtab_gnet_stats_basic_sync_init
+ffffffff82083d20 r __ksymtab_gnet_stats_copy_app
+ffffffff82083d2c r __ksymtab_gnet_stats_copy_basic
+ffffffff82083d38 r __ksymtab_gnet_stats_copy_basic_hw
+ffffffff82083d44 r __ksymtab_gnet_stats_copy_queue
+ffffffff82083d50 r __ksymtab_gnet_stats_copy_rate_est
+ffffffff82083d5c r __ksymtab_gnet_stats_finish_copy
+ffffffff82083d68 r __ksymtab_gnet_stats_start_copy
+ffffffff82083d74 r __ksymtab_gnet_stats_start_copy_compat
+ffffffff82083d80 r __ksymtab_grab_cache_page_write_begin
+ffffffff82083d8c r __ksymtab_gre_parse_header
+ffffffff82083d98 r __ksymtab_gro_cells_destroy
+ffffffff82083da4 r __ksymtab_gro_cells_init
+ffffffff82083db0 r __ksymtab_gro_cells_receive
+ffffffff82083dbc r __ksymtab_gro_find_complete_by_type
+ffffffff82083dc8 r __ksymtab_gro_find_receive_by_type
+ffffffff82083dd4 r __ksymtab_groups_alloc
+ffffffff82083de0 r __ksymtab_groups_free
+ffffffff82083dec r __ksymtab_groups_sort
+ffffffff82083df8 r __ksymtab_guid_null
+ffffffff82083e04 r __ksymtab_guid_parse
+ffffffff82083e10 r __ksymtab_handle_edge_irq
+ffffffff82083e1c r __ksymtab_handle_sysrq
+ffffffff82083e28 r __ksymtab_has_capability
+ffffffff82083e34 r __ksymtab_has_capability_noaudit
+ffffffff82083e40 r __ksymtab_hash_and_copy_to_iter
+ffffffff82083e4c r __ksymtab_hashlen_string
+ffffffff82083e58 r __ksymtab_hchacha_block_generic
+ffffffff82083e64 r __ksymtab_hex2bin
+ffffffff82083e70 r __ksymtab_hex_asc
+ffffffff82083e7c r __ksymtab_hex_asc_upper
+ffffffff82083e88 r __ksymtab_hex_dump_to_buffer
+ffffffff82083e94 r __ksymtab_hex_to_bin
+ffffffff82083ea0 r __ksymtab_high_memory
+ffffffff82083eac r __ksymtab_hsiphash_1u32
+ffffffff82083eb8 r __ksymtab_hsiphash_2u32
+ffffffff82083ec4 r __ksymtab_hsiphash_3u32
+ffffffff82083ed0 r __ksymtab_hsiphash_4u32
+ffffffff82083edc r __ksymtab_i8042_command
+ffffffff82083ee8 r __ksymtab_i8042_install_filter
+ffffffff82083ef4 r __ksymtab_i8042_lock_chip
+ffffffff82083f00 r __ksymtab_i8042_remove_filter
+ffffffff82083f0c r __ksymtab_i8042_unlock_chip
+ffffffff82083f18 r __ksymtab_i8253_lock
+ffffffff82083f24 r __ksymtab_icmp6_send
+ffffffff82083f30 r __ksymtab_icmp_err_convert
+ffffffff82083f3c r __ksymtab_icmp_global_allow
+ffffffff82083f48 r __ksymtab_icmpv6_err_convert
+ffffffff82083f54 r __ksymtab_ida_alloc_range
+ffffffff82083f60 r __ksymtab_ida_destroy
+ffffffff82083f6c r __ksymtab_ida_free
+ffffffff82083f78 r __ksymtab_idr_alloc_cyclic
+ffffffff82083f84 r __ksymtab_idr_destroy
+ffffffff82083f90 r __ksymtab_idr_for_each
+ffffffff82083f9c r __ksymtab_idr_get_next
+ffffffff82083fa8 r __ksymtab_idr_get_next_ul
+ffffffff82083fb4 r __ksymtab_idr_preload
+ffffffff82083fc0 r __ksymtab_idr_replace
+ffffffff82083fcc r __ksymtab_iget5_locked
+ffffffff82083fd8 r __ksymtab_iget_failed
+ffffffff82083fe4 r __ksymtab_iget_locked
+ffffffff82083ff0 r __ksymtab_ignore_console_lock_warning
+ffffffff82083ffc r __ksymtab_igrab
+ffffffff82084008 r __ksymtab_ihold
+ffffffff82084014 r __ksymtab_ilookup
+ffffffff82084020 r __ksymtab_ilookup5
+ffffffff8208402c r __ksymtab_ilookup5_nowait
+ffffffff82084038 r __ksymtab_import_iovec
+ffffffff82084044 r __ksymtab_import_single_range
+ffffffff82084050 r __ksymtab_in4_pton
+ffffffff8208405c r __ksymtab_in6_dev_finish_destroy
+ffffffff82084068 r __ksymtab_in6_pton
+ffffffff82084074 r __ksymtab_in6addr_any
+ffffffff82084080 r __ksymtab_in6addr_interfacelocal_allnodes
+ffffffff8208408c r __ksymtab_in6addr_interfacelocal_allrouters
+ffffffff82084098 r __ksymtab_in6addr_linklocal_allnodes
+ffffffff820840a4 r __ksymtab_in6addr_linklocal_allrouters
+ffffffff820840b0 r __ksymtab_in6addr_loopback
+ffffffff820840bc r __ksymtab_in6addr_sitelocal_allrouters
+ffffffff820840c8 r __ksymtab_in_aton
+ffffffff820840d4 r __ksymtab_in_dev_finish_destroy
+ffffffff820840e0 r __ksymtab_in_egroup_p
+ffffffff820840ec r __ksymtab_in_group_p
+ffffffff820840f8 r __ksymtab_in_lock_functions
+ffffffff82084104 r __ksymtab_inc_nlink
+ffffffff82084110 r __ksymtab_inc_node_page_state
+ffffffff8208411c r __ksymtab_inc_zone_page_state
+ffffffff82084128 r __ksymtab_inet6_add_offload
+ffffffff82084134 r __ksymtab_inet6_add_protocol
+ffffffff82084140 r __ksymtab_inet6_bind
+ffffffff8208414c r __ksymtab_inet6_csk_route_req
+ffffffff82084158 r __ksymtab_inet6_del_offload
+ffffffff82084164 r __ksymtab_inet6_del_protocol
+ffffffff82084170 r __ksymtab_inet6_getname
+ffffffff8208417c r __ksymtab_inet6_ioctl
+ffffffff82084188 r __ksymtab_inet6_offloads
+ffffffff82084194 r __ksymtab_inet6_protos
+ffffffff820841a0 r __ksymtab_inet6_register_protosw
+ffffffff820841ac r __ksymtab_inet6_release
+ffffffff820841b8 r __ksymtab_inet6_unregister_protosw
+ffffffff820841c4 r __ksymtab_inet6addr_notifier_call_chain
+ffffffff820841d0 r __ksymtab_inet6addr_validator_notifier_call_chain
+ffffffff820841dc r __ksymtab_inet_accept
+ffffffff820841e8 r __ksymtab_inet_add_offload
+ffffffff820841f4 r __ksymtab_inet_add_protocol
+ffffffff82084200 r __ksymtab_inet_addr_is_any
+ffffffff8208420c r __ksymtab_inet_addr_type
+ffffffff82084218 r __ksymtab_inet_addr_type_dev_table
+ffffffff82084224 r __ksymtab_inet_addr_type_table
+ffffffff82084230 r __ksymtab_inet_bind
+ffffffff8208423c r __ksymtab_inet_confirm_addr
+ffffffff82084248 r __ksymtab_inet_csk_accept
+ffffffff82084254 r __ksymtab_inet_csk_clear_xmit_timers
+ffffffff82084260 r __ksymtab_inet_csk_complete_hashdance
+ffffffff8208426c r __ksymtab_inet_csk_delete_keepalive_timer
+ffffffff82084278 r __ksymtab_inet_csk_destroy_sock
+ffffffff82084284 r __ksymtab_inet_csk_init_xmit_timers
+ffffffff82084290 r __ksymtab_inet_csk_prepare_forced_close
+ffffffff8208429c r __ksymtab_inet_csk_reqsk_queue_add
+ffffffff820842a8 r __ksymtab_inet_csk_reqsk_queue_drop
+ffffffff820842b4 r __ksymtab_inet_csk_reqsk_queue_drop_and_put
+ffffffff820842c0 r __ksymtab_inet_csk_reset_keepalive_timer
+ffffffff820842cc r __ksymtab_inet_current_timestamp
+ffffffff820842d8 r __ksymtab_inet_del_offload
+ffffffff820842e4 r __ksymtab_inet_del_protocol
+ffffffff820842f0 r __ksymtab_inet_dev_addr_type
+ffffffff820842fc r __ksymtab_inet_dgram_connect
+ffffffff82084308 r __ksymtab_inet_dgram_ops
+ffffffff82084314 r __ksymtab_inet_frag_destroy
+ffffffff82084320 r __ksymtab_inet_frag_find
+ffffffff8208432c r __ksymtab_inet_frag_kill
+ffffffff82084338 r __ksymtab_inet_frag_pull_head
+ffffffff82084344 r __ksymtab_inet_frag_queue_insert
+ffffffff82084350 r __ksymtab_inet_frag_rbtree_purge
+ffffffff8208435c r __ksymtab_inet_frag_reasm_finish
+ffffffff82084368 r __ksymtab_inet_frag_reasm_prepare
+ffffffff82084374 r __ksymtab_inet_frags_fini
+ffffffff82084380 r __ksymtab_inet_frags_init
+ffffffff8208438c r __ksymtab_inet_get_local_port_range
+ffffffff82084398 r __ksymtab_inet_getname
+ffffffff820843a4 r __ksymtab_inet_ioctl
+ffffffff820843b0 r __ksymtab_inet_listen
+ffffffff820843bc r __ksymtab_inet_offloads
+ffffffff820843c8 r __ksymtab_inet_peer_xrlim_allow
+ffffffff820843d4 r __ksymtab_inet_proto_csum_replace16
+ffffffff820843e0 r __ksymtab_inet_proto_csum_replace4
+ffffffff820843ec r __ksymtab_inet_proto_csum_replace_by_diff
+ffffffff820843f8 r __ksymtab_inet_protos
+ffffffff82084404 r __ksymtab_inet_pton_with_scope
+ffffffff82084410 r __ksymtab_inet_put_port
+ffffffff8208441c r __ksymtab_inet_rcv_saddr_equal
+ffffffff82084428 r __ksymtab_inet_recvmsg
+ffffffff82084434 r __ksymtab_inet_register_protosw
+ffffffff82084440 r __ksymtab_inet_release
+ffffffff8208444c r __ksymtab_inet_reqsk_alloc
+ffffffff82084458 r __ksymtab_inet_rtx_syn_ack
+ffffffff82084464 r __ksymtab_inet_select_addr
+ffffffff82084470 r __ksymtab_inet_sendmsg
+ffffffff8208447c r __ksymtab_inet_sendpage
+ffffffff82084488 r __ksymtab_inet_shutdown
+ffffffff82084494 r __ksymtab_inet_sk_get_local_port_range
+ffffffff820844a0 r __ksymtab_inet_sk_rebuild_header
+ffffffff820844ac r __ksymtab_inet_sk_rx_dst_set
+ffffffff820844b8 r __ksymtab_inet_sk_set_state
+ffffffff820844c4 r __ksymtab_inet_sock_destruct
+ffffffff820844d0 r __ksymtab_inet_stream_connect
+ffffffff820844dc r __ksymtab_inet_stream_ops
+ffffffff820844e8 r __ksymtab_inet_twsk_deschedule_put
+ffffffff820844f4 r __ksymtab_inet_unregister_protosw
+ffffffff82084500 r __ksymtab_inetdev_by_index
+ffffffff8208450c r __ksymtab_inetpeer_invalidate_tree
+ffffffff82084518 r __ksymtab_init_net
+ffffffff82084524 r __ksymtab_init_on_alloc
+ffffffff82084530 r __ksymtab_init_on_free
+ffffffff8208453c r __ksymtab_init_pseudo
+ffffffff82084548 r __ksymtab_init_special_inode
+ffffffff82084554 r __ksymtab_init_task
+ffffffff82084560 r __ksymtab_init_timer_key
+ffffffff8208456c r __ksymtab_init_wait_entry
+ffffffff82084578 r __ksymtab_init_wait_var_entry
+ffffffff82084584 r __ksymtab_inode_add_bytes
+ffffffff82084590 r __ksymtab_inode_dio_wait
+ffffffff8208459c r __ksymtab_inode_get_bytes
+ffffffff820845a8 r __ksymtab_inode_init_always
+ffffffff820845b4 r __ksymtab_inode_init_once
+ffffffff820845c0 r __ksymtab_inode_init_owner
+ffffffff820845cc r __ksymtab_inode_insert5
+ffffffff820845d8 r __ksymtab_inode_io_list_del
+ffffffff820845e4 r __ksymtab_inode_maybe_inc_iversion
+ffffffff820845f0 r __ksymtab_inode_needs_sync
+ffffffff820845fc r __ksymtab_inode_newsize_ok
+ffffffff82084608 r __ksymtab_inode_nohighmem
+ffffffff82084614 r __ksymtab_inode_owner_or_capable
+ffffffff82084620 r __ksymtab_inode_permission
+ffffffff8208462c r __ksymtab_inode_set_bytes
+ffffffff82084638 r __ksymtab_inode_set_flags
+ffffffff82084644 r __ksymtab_inode_sub_bytes
+ffffffff82084650 r __ksymtab_inode_to_bdi
+ffffffff8208465c r __ksymtab_inode_update_time
+ffffffff82084668 r __ksymtab_input_alloc_absinfo
+ffffffff82084674 r __ksymtab_input_allocate_device
+ffffffff82084680 r __ksymtab_input_close_device
+ffffffff8208468c r __ksymtab_input_copy_abs
+ffffffff82084698 r __ksymtab_input_enable_softrepeat
+ffffffff820846a4 r __ksymtab_input_event
+ffffffff820846b0 r __ksymtab_input_flush_device
+ffffffff820846bc r __ksymtab_input_free_device
+ffffffff820846c8 r __ksymtab_input_free_minor
+ffffffff820846d4 r __ksymtab_input_get_keycode
+ffffffff820846e0 r __ksymtab_input_get_new_minor
+ffffffff820846ec r __ksymtab_input_get_poll_interval
+ffffffff820846f8 r __ksymtab_input_get_timestamp
+ffffffff82084704 r __ksymtab_input_grab_device
+ffffffff82084710 r __ksymtab_input_handler_for_each_handle
+ffffffff8208471c r __ksymtab_input_inject_event
+ffffffff82084728 r __ksymtab_input_match_device_id
+ffffffff82084734 r __ksymtab_input_mt_assign_slots
+ffffffff82084740 r __ksymtab_input_mt_destroy_slots
+ffffffff8208474c r __ksymtab_input_mt_drop_unused
+ffffffff82084758 r __ksymtab_input_mt_get_slot_by_key
+ffffffff82084764 r __ksymtab_input_mt_init_slots
+ffffffff82084770 r __ksymtab_input_mt_report_finger_count
+ffffffff8208477c r __ksymtab_input_mt_report_pointer_emulation
+ffffffff82084788 r __ksymtab_input_mt_report_slot_state
+ffffffff82084794 r __ksymtab_input_mt_sync_frame
+ffffffff820847a0 r __ksymtab_input_open_device
+ffffffff820847ac r __ksymtab_input_register_device
+ffffffff820847b8 r __ksymtab_input_register_handle
+ffffffff820847c4 r __ksymtab_input_register_handler
+ffffffff820847d0 r __ksymtab_input_release_device
+ffffffff820847dc r __ksymtab_input_reset_device
+ffffffff820847e8 r __ksymtab_input_scancode_to_scalar
+ffffffff820847f4 r __ksymtab_input_set_abs_params
+ffffffff82084800 r __ksymtab_input_set_capability
+ffffffff8208480c r __ksymtab_input_set_keycode
+ffffffff82084818 r __ksymtab_input_set_max_poll_interval
+ffffffff82084824 r __ksymtab_input_set_min_poll_interval
+ffffffff82084830 r __ksymtab_input_set_poll_interval
+ffffffff8208483c r __ksymtab_input_set_timestamp
+ffffffff82084848 r __ksymtab_input_setup_polling
+ffffffff82084854 r __ksymtab_input_unregister_device
+ffffffff82084860 r __ksymtab_input_unregister_handle
+ffffffff8208486c r __ksymtab_input_unregister_handler
+ffffffff82084878 r __ksymtab_insert_inode_locked
+ffffffff82084884 r __ksymtab_insert_inode_locked4
+ffffffff82084890 r __ksymtab_int_sqrt
+ffffffff8208489c r __ksymtab_intel_graphics_stolen_res
+ffffffff820848a8 r __ksymtab_invalidate_bdev
+ffffffff820848b4 r __ksymtab_invalidate_disk
+ffffffff820848c0 r __ksymtab_invalidate_inode_buffers
+ffffffff820848cc r __ksymtab_invalidate_mapping_pages
+ffffffff820848d8 r __ksymtab_io_schedule
+ffffffff820848e4 r __ksymtab_io_schedule_timeout
+ffffffff820848f0 r __ksymtab_io_uring_get_socket
+ffffffff820848fc r __ksymtab_ioc_lookup_icq
+ffffffff82084908 r __ksymtab_iomem_resource
+ffffffff82084914 r __ksymtab_iommu_dma_get_resv_regions
+ffffffff82084920 r __ksymtab_iommu_get_msi_cookie
+ffffffff8208492c r __ksymtab_iommu_put_resv_regions
+ffffffff82084938 r __ksymtab_ioport_map
+ffffffff82084944 r __ksymtab_ioport_resource
+ffffffff82084950 r __ksymtab_ioport_unmap
+ffffffff8208495c r __ksymtab_ioread16
+ffffffff82084968 r __ksymtab_ioread16_rep
+ffffffff82084974 r __ksymtab_ioread16be
+ffffffff82084980 r __ksymtab_ioread32
+ffffffff8208498c r __ksymtab_ioread32_rep
+ffffffff82084998 r __ksymtab_ioread32be
+ffffffff820849a4 r __ksymtab_ioread64_hi_lo
+ffffffff820849b0 r __ksymtab_ioread64_lo_hi
+ffffffff820849bc r __ksymtab_ioread64be_hi_lo
+ffffffff820849c8 r __ksymtab_ioread64be_lo_hi
+ffffffff820849d4 r __ksymtab_ioread8
+ffffffff820849e0 r __ksymtab_ioread8_rep
+ffffffff820849ec r __ksymtab_ioremap
+ffffffff820849f8 r __ksymtab_ioremap_cache
+ffffffff82084a04 r __ksymtab_ioremap_encrypted
+ffffffff82084a10 r __ksymtab_ioremap_prot
+ffffffff82084a1c r __ksymtab_ioremap_wc
+ffffffff82084a28 r __ksymtab_ioremap_wt
+ffffffff82084a34 r __ksymtab_iounmap
+ffffffff82084a40 r __ksymtab_iov_iter_advance
+ffffffff82084a4c r __ksymtab_iov_iter_alignment
+ffffffff82084a58 r __ksymtab_iov_iter_bvec
+ffffffff82084a64 r __ksymtab_iov_iter_discard
+ffffffff82084a70 r __ksymtab_iov_iter_gap_alignment
+ffffffff82084a7c r __ksymtab_iov_iter_get_pages2
+ffffffff82084a88 r __ksymtab_iov_iter_get_pages_alloc2
+ffffffff82084a94 r __ksymtab_iov_iter_init
+ffffffff82084aa0 r __ksymtab_iov_iter_kvec
+ffffffff82084aac r __ksymtab_iov_iter_npages
+ffffffff82084ab8 r __ksymtab_iov_iter_pipe
+ffffffff82084ac4 r __ksymtab_iov_iter_revert
+ffffffff82084ad0 r __ksymtab_iov_iter_single_seg_count
+ffffffff82084adc r __ksymtab_iov_iter_xarray
+ffffffff82084ae8 r __ksymtab_iov_iter_zero
+ffffffff82084af4 r __ksymtab_iowrite16
+ffffffff82084b00 r __ksymtab_iowrite16_rep
+ffffffff82084b0c r __ksymtab_iowrite16be
+ffffffff82084b18 r __ksymtab_iowrite32
+ffffffff82084b24 r __ksymtab_iowrite32_rep
+ffffffff82084b30 r __ksymtab_iowrite32be
+ffffffff82084b3c r __ksymtab_iowrite64_hi_lo
+ffffffff82084b48 r __ksymtab_iowrite64_lo_hi
+ffffffff82084b54 r __ksymtab_iowrite64be_hi_lo
+ffffffff82084b60 r __ksymtab_iowrite64be_lo_hi
+ffffffff82084b6c r __ksymtab_iowrite8
+ffffffff82084b78 r __ksymtab_iowrite8_rep
+ffffffff82084b84 r __ksymtab_ip4_datagram_connect
+ffffffff82084b90 r __ksymtab_ip6_dst_alloc
+ffffffff82084b9c r __ksymtab_ip6_dst_check
+ffffffff82084ba8 r __ksymtab_ip6_dst_hoplimit
+ffffffff82084bb4 r __ksymtab_ip6_err_gen_icmpv6_unreach
+ffffffff82084bc0 r __ksymtab_ip6_find_1stfragopt
+ffffffff82084bcc r __ksymtab_ip6_frag_init
+ffffffff82084bd8 r __ksymtab_ip6_frag_next
+ffffffff82084be4 r __ksymtab_ip6_fraglist_init
+ffffffff82084bf0 r __ksymtab_ip6_fraglist_prepare
+ffffffff82084bfc r __ksymtab_ip6_mtu
+ffffffff82084c08 r __ksymtab_ip6_output
+ffffffff82084c14 r __ksymtab_ip6_tnl_change_mtu
+ffffffff82084c20 r __ksymtab_ip6_tnl_encap_add_ops
+ffffffff82084c2c r __ksymtab_ip6_tnl_encap_del_ops
+ffffffff82084c38 r __ksymtab_ip6_tnl_get_cap
+ffffffff82084c44 r __ksymtab_ip6_tnl_get_iflink
+ffffffff82084c50 r __ksymtab_ip6_tnl_get_link_net
+ffffffff82084c5c r __ksymtab_ip6_tnl_parse_tlv_enc_lim
+ffffffff82084c68 r __ksymtab_ip6_tnl_rcv
+ffffffff82084c74 r __ksymtab_ip6_tnl_xmit
+ffffffff82084c80 r __ksymtab_ip6_xmit
+ffffffff82084c8c r __ksymtab_ip6tun_encaps
+ffffffff82084c98 r __ksymtab_ip_check_defrag
+ffffffff82084ca4 r __ksymtab_ip_cmsg_recv_offset
+ffffffff82084cb0 r __ksymtab_ip_compute_csum
+ffffffff82084cbc r __ksymtab_ip_defrag
+ffffffff82084cc8 r __ksymtab_ip_do_fragment
+ffffffff82084cd4 r __ksymtab_ip_frag_ecn_table
+ffffffff82084ce0 r __ksymtab_ip_frag_init
+ffffffff82084cec r __ksymtab_ip_frag_next
+ffffffff82084cf8 r __ksymtab_ip_fraglist_init
+ffffffff82084d04 r __ksymtab_ip_fraglist_prepare
+ffffffff82084d10 r __ksymtab_ip_generic_getfrag
+ffffffff82084d1c r __ksymtab_ip_getsockopt
+ffffffff82084d28 r __ksymtab_ip_local_deliver
+ffffffff82084d34 r __ksymtab_ip_mc_check_igmp
+ffffffff82084d40 r __ksymtab_ip_mc_inc_group
+ffffffff82084d4c r __ksymtab_ip_mc_join_group
+ffffffff82084d58 r __ksymtab_ip_mc_leave_group
+ffffffff82084d64 r __ksymtab_ip_options_compile
+ffffffff82084d70 r __ksymtab_ip_options_rcv_srr
+ffffffff82084d7c r __ksymtab_ip_output
+ffffffff82084d88 r __ksymtab_ip_queue_xmit
+ffffffff82084d94 r __ksymtab_ip_route_input_noref
+ffffffff82084da0 r __ksymtab_ip_send_check
+ffffffff82084dac r __ksymtab_ip_setsockopt
+ffffffff82084db8 r __ksymtab_ip_sock_set_freebind
+ffffffff82084dc4 r __ksymtab_ip_sock_set_mtu_discover
+ffffffff82084dd0 r __ksymtab_ip_sock_set_pktinfo
+ffffffff82084ddc r __ksymtab_ip_sock_set_recverr
+ffffffff82084de8 r __ksymtab_ip_sock_set_tos
+ffffffff82084df4 r __ksymtab_ip_tos2prio
+ffffffff82084e00 r __ksymtab_ip_tunnel_encap_add_ops
+ffffffff82084e0c r __ksymtab_ip_tunnel_encap_del_ops
+ffffffff82084e18 r __ksymtab_ip_tunnel_get_iflink
+ffffffff82084e24 r __ksymtab_ip_tunnel_get_link_net
+ffffffff82084e30 r __ksymtab_ip_tunnel_header_ops
+ffffffff82084e3c r __ksymtab_ip_tunnel_metadata_cnt
+ffffffff82084e48 r __ksymtab_ip_tunnel_parse_protocol
+ffffffff82084e54 r __ksymtab_iptun_encaps
+ffffffff82084e60 r __ksymtab_iput
+ffffffff82084e6c r __ksymtab_ipv4_dst_check
+ffffffff82084e78 r __ksymtab_ipv4_mtu
+ffffffff82084e84 r __ksymtab_ipv4_specific
+ffffffff82084e90 r __ksymtab_ipv6_chk_addr
+ffffffff82084e9c r __ksymtab_ipv6_chk_addr_and_flags
+ffffffff82084ea8 r __ksymtab_ipv6_chk_custom_prefix
+ffffffff82084eb4 r __ksymtab_ipv6_chk_prefix
+ffffffff82084ec0 r __ksymtab_ipv6_dev_find
+ffffffff82084ecc r __ksymtab_ipv6_dev_get_saddr
+ffffffff82084ed8 r __ksymtab_ipv6_dev_mc_dec
+ffffffff82084ee4 r __ksymtab_ipv6_dev_mc_inc
+ffffffff82084ef0 r __ksymtab_ipv6_ext_hdr
+ffffffff82084efc r __ksymtab_ipv6_find_hdr
+ffffffff82084f08 r __ksymtab_ipv6_flowlabel_exclusive
+ffffffff82084f14 r __ksymtab_ipv6_getsockopt
+ffffffff82084f20 r __ksymtab_ipv6_mc_check_mld
+ffffffff82084f2c r __ksymtab_ipv6_push_frag_opts
+ffffffff82084f38 r __ksymtab_ipv6_select_ident
+ffffffff82084f44 r __ksymtab_ipv6_setsockopt
+ffffffff82084f50 r __ksymtab_ipv6_skip_exthdr
+ffffffff82084f5c r __ksymtab_ipv6_sock_mc_drop
+ffffffff82084f68 r __ksymtab_ipv6_sock_mc_join
+ffffffff82084f74 r __ksymtab_irq_cpu_rmap_add
+ffffffff82084f80 r __ksymtab_irq_domain_set_info
+ffffffff82084f8c r __ksymtab_irq_fpu_usable
+ffffffff82084f98 r __ksymtab_irq_set_chip
+ffffffff82084fa4 r __ksymtab_irq_set_chip_data
+ffffffff82084fb0 r __ksymtab_irq_set_handler_data
+ffffffff82084fbc r __ksymtab_irq_set_irq_type
+ffffffff82084fc8 r __ksymtab_irq_set_irq_wake
+ffffffff82084fd4 r __ksymtab_irq_stat
+ffffffff82084fe0 r __ksymtab_is_acpi_data_node
+ffffffff82084fec r __ksymtab_is_acpi_device_node
+ffffffff82084ff8 r __ksymtab_is_bad_inode
+ffffffff82085004 r __ksymtab_is_console_locked
+ffffffff82085010 r __ksymtab_is_free_buddy_page
+ffffffff8208501c r __ksymtab_is_nd_btt
+ffffffff82085028 r __ksymtab_is_nvdimm_bus_locked
+ffffffff82085034 r __ksymtab_is_subdir
+ffffffff82085040 r __ksymtab_is_vmalloc_addr
+ffffffff8208504c r __ksymtab_iter_div_u64_rem
+ffffffff82085058 r __ksymtab_iter_file_splice_write
+ffffffff82085064 r __ksymtab_iterate_dir
+ffffffff82085070 r __ksymtab_iterate_fd
+ffffffff8208507c r __ksymtab_iterate_supers_type
+ffffffff82085088 r __ksymtab_iunique
+ffffffff82085094 r __ksymtab_jbd2__journal_restart
+ffffffff820850a0 r __ksymtab_jbd2__journal_start
+ffffffff820850ac r __ksymtab_jbd2_complete_transaction
+ffffffff820850b8 r __ksymtab_jbd2_fc_begin_commit
+ffffffff820850c4 r __ksymtab_jbd2_fc_end_commit
+ffffffff820850d0 r __ksymtab_jbd2_fc_end_commit_fallback
+ffffffff820850dc r __ksymtab_jbd2_fc_get_buf
+ffffffff820850e8 r __ksymtab_jbd2_fc_release_bufs
+ffffffff820850f4 r __ksymtab_jbd2_fc_wait_bufs
+ffffffff82085100 r __ksymtab_jbd2_inode_cache
+ffffffff8208510c r __ksymtab_jbd2_journal_abort
+ffffffff82085118 r __ksymtab_jbd2_journal_ack_err
+ffffffff82085124 r __ksymtab_jbd2_journal_begin_ordered_truncate
+ffffffff82085130 r __ksymtab_jbd2_journal_blocks_per_page
+ffffffff8208513c r __ksymtab_jbd2_journal_check_available_features
+ffffffff82085148 r __ksymtab_jbd2_journal_check_used_features
+ffffffff82085154 r __ksymtab_jbd2_journal_clear_err
+ffffffff82085160 r __ksymtab_jbd2_journal_clear_features
+ffffffff8208516c r __ksymtab_jbd2_journal_destroy
+ffffffff82085178 r __ksymtab_jbd2_journal_dirty_metadata
+ffffffff82085184 r __ksymtab_jbd2_journal_errno
+ffffffff82085190 r __ksymtab_jbd2_journal_extend
+ffffffff8208519c r __ksymtab_jbd2_journal_finish_inode_data_buffers
+ffffffff820851a8 r __ksymtab_jbd2_journal_flush
+ffffffff820851b4 r __ksymtab_jbd2_journal_force_commit
+ffffffff820851c0 r __ksymtab_jbd2_journal_force_commit_nested
+ffffffff820851cc r __ksymtab_jbd2_journal_forget
+ffffffff820851d8 r __ksymtab_jbd2_journal_free_reserved
+ffffffff820851e4 r __ksymtab_jbd2_journal_get_create_access
+ffffffff820851f0 r __ksymtab_jbd2_journal_get_undo_access
+ffffffff820851fc r __ksymtab_jbd2_journal_get_write_access
+ffffffff82085208 r __ksymtab_jbd2_journal_grab_journal_head
+ffffffff82085214 r __ksymtab_jbd2_journal_init_dev
+ffffffff82085220 r __ksymtab_jbd2_journal_init_inode
+ffffffff8208522c r __ksymtab_jbd2_journal_init_jbd_inode
+ffffffff82085238 r __ksymtab_jbd2_journal_inode_ranged_wait
+ffffffff82085244 r __ksymtab_jbd2_journal_inode_ranged_write
+ffffffff82085250 r __ksymtab_jbd2_journal_invalidate_folio
+ffffffff8208525c r __ksymtab_jbd2_journal_load
+ffffffff82085268 r __ksymtab_jbd2_journal_lock_updates
+ffffffff82085274 r __ksymtab_jbd2_journal_put_journal_head
+ffffffff82085280 r __ksymtab_jbd2_journal_release_jbd_inode
+ffffffff8208528c r __ksymtab_jbd2_journal_restart
+ffffffff82085298 r __ksymtab_jbd2_journal_revoke
+ffffffff820852a4 r __ksymtab_jbd2_journal_set_features
+ffffffff820852b0 r __ksymtab_jbd2_journal_set_triggers
+ffffffff820852bc r __ksymtab_jbd2_journal_start
+ffffffff820852c8 r __ksymtab_jbd2_journal_start_commit
+ffffffff820852d4 r __ksymtab_jbd2_journal_start_reserved
+ffffffff820852e0 r __ksymtab_jbd2_journal_stop
+ffffffff820852ec r __ksymtab_jbd2_journal_submit_inode_data_buffers
+ffffffff820852f8 r __ksymtab_jbd2_journal_try_to_free_buffers
+ffffffff82085304 r __ksymtab_jbd2_journal_unlock_updates
+ffffffff82085310 r __ksymtab_jbd2_journal_update_sb_errno
+ffffffff8208531c r __ksymtab_jbd2_journal_wipe
+ffffffff82085328 r __ksymtab_jbd2_log_wait_commit
+ffffffff82085334 r __ksymtab_jbd2_submit_inode_data
+ffffffff82085340 r __ksymtab_jbd2_trans_will_send_data_barrier
+ffffffff8208534c r __ksymtab_jbd2_transaction_committed
+ffffffff82085358 r __ksymtab_jbd2_wait_inode_data
+ffffffff82085364 r __ksymtab_jiffies
+ffffffff82085370 r __ksymtab_jiffies64_to_msecs
+ffffffff8208537c r __ksymtab_jiffies64_to_nsecs
+ffffffff82085388 r __ksymtab_jiffies_64
+ffffffff82085394 r __ksymtab_jiffies_64_to_clock_t
+ffffffff820853a0 r __ksymtab_jiffies_to_clock_t
+ffffffff820853ac r __ksymtab_jiffies_to_msecs
+ffffffff820853b8 r __ksymtab_jiffies_to_timespec64
+ffffffff820853c4 r __ksymtab_jiffies_to_usecs
+ffffffff820853d0 r __ksymtab_kasprintf
+ffffffff820853dc r __ksymtab_kblockd_mod_delayed_work_on
+ffffffff820853e8 r __ksymtab_kblockd_schedule_work
+ffffffff820853f4 r __ksymtab_kd_mksound
+ffffffff82085400 r __ksymtab_kern_path
+ffffffff8208540c r __ksymtab_kern_path_create
+ffffffff82085418 r __ksymtab_kern_unmount
+ffffffff82085424 r __ksymtab_kern_unmount_array
+ffffffff82085430 r __ksymtab_kernel_accept
+ffffffff8208543c r __ksymtab_kernel_bind
+ffffffff82085448 r __ksymtab_kernel_connect
+ffffffff82085454 r __ksymtab_kernel_cpustat
+ffffffff82085460 r __ksymtab_kernel_getpeername
+ffffffff8208546c r __ksymtab_kernel_getsockname
+ffffffff82085478 r __ksymtab_kernel_listen
+ffffffff82085484 r __ksymtab_kernel_param_lock
+ffffffff82085490 r __ksymtab_kernel_param_unlock
+ffffffff8208549c r __ksymtab_kernel_read
+ffffffff820854a8 r __ksymtab_kernel_recvmsg
+ffffffff820854b4 r __ksymtab_kernel_sendmsg
+ffffffff820854c0 r __ksymtab_kernel_sendmsg_locked
+ffffffff820854cc r __ksymtab_kernel_sendpage
+ffffffff820854d8 r __ksymtab_kernel_sendpage_locked
+ffffffff820854e4 r __ksymtab_kernel_sigaction
+ffffffff820854f0 r __ksymtab_kernel_sock_ip_overhead
+ffffffff820854fc r __ksymtab_kernel_sock_shutdown
+ffffffff82085508 r __ksymtab_kernel_write
+ffffffff82085514 r __ksymtab_kfree
+ffffffff82085520 r __ksymtab_kfree_const
+ffffffff8208552c r __ksymtab_kfree_link
+ffffffff82085538 r __ksymtab_kfree_sensitive
+ffffffff82085544 r __ksymtab_kfree_skb_list_reason
+ffffffff82085550 r __ksymtab_kfree_skb_partial
+ffffffff8208555c r __ksymtab_kfree_skb_reason
+ffffffff82085568 r __ksymtab_kill_anon_super
+ffffffff82085574 r __ksymtab_kill_block_super
+ffffffff82085580 r __ksymtab_kill_fasync
+ffffffff8208558c r __ksymtab_kill_litter_super
+ffffffff82085598 r __ksymtab_kill_pgrp
+ffffffff820855a4 r __ksymtab_kill_pid
+ffffffff820855b0 r __ksymtab_kiocb_set_cancel_fn
+ffffffff820855bc r __ksymtab_km_migrate
+ffffffff820855c8 r __ksymtab_km_new_mapping
+ffffffff820855d4 r __ksymtab_km_policy_expired
+ffffffff820855e0 r __ksymtab_km_policy_notify
+ffffffff820855ec r __ksymtab_km_query
+ffffffff820855f8 r __ksymtab_km_report
+ffffffff82085604 r __ksymtab_km_state_expired
+ffffffff82085610 r __ksymtab_km_state_notify
+ffffffff8208561c r __ksymtab_kmalloc_caches
+ffffffff82085628 r __ksymtab_kmalloc_large
+ffffffff82085634 r __ksymtab_kmalloc_large_node
+ffffffff82085640 r __ksymtab_kmalloc_node_trace
+ffffffff8208564c r __ksymtab_kmalloc_size_roundup
+ffffffff82085658 r __ksymtab_kmalloc_trace
+ffffffff82085664 r __ksymtab_kmem_cache_alloc
+ffffffff82085670 r __ksymtab_kmem_cache_alloc_bulk
+ffffffff8208567c r __ksymtab_kmem_cache_alloc_lru
+ffffffff82085688 r __ksymtab_kmem_cache_alloc_node
+ffffffff82085694 r __ksymtab_kmem_cache_create
+ffffffff820856a0 r __ksymtab_kmem_cache_create_usercopy
+ffffffff820856ac r __ksymtab_kmem_cache_destroy
+ffffffff820856b8 r __ksymtab_kmem_cache_free
+ffffffff820856c4 r __ksymtab_kmem_cache_free_bulk
+ffffffff820856d0 r __ksymtab_kmem_cache_shrink
+ffffffff820856dc r __ksymtab_kmem_cache_size
+ffffffff820856e8 r __ksymtab_kmemdup
+ffffffff820856f4 r __ksymtab_kmemdup_nul
+ffffffff82085700 r __ksymtab_kobject_add
+ffffffff8208570c r __ksymtab_kobject_del
+ffffffff82085718 r __ksymtab_kobject_get
+ffffffff82085724 r __ksymtab_kobject_get_unless_zero
+ffffffff82085730 r __ksymtab_kobject_init
+ffffffff8208573c r __ksymtab_kobject_put
+ffffffff82085748 r __ksymtab_kobject_set_name
+ffffffff82085754 r __ksymtab_krealloc
+ffffffff82085760 r __ksymtab_kset_register
+ffffffff8208576c r __ksymtab_kset_unregister
+ffffffff82085778 r __ksymtab_ksize
+ffffffff82085784 r __ksymtab_kstat
+ffffffff82085790 r __ksymtab_kstrdup
+ffffffff8208579c r __ksymtab_kstrdup_const
+ffffffff820857a8 r __ksymtab_kstrndup
+ffffffff820857b4 r __ksymtab_kstrtobool
+ffffffff820857c0 r __ksymtab_kstrtobool_from_user
+ffffffff820857cc r __ksymtab_kstrtoint
+ffffffff820857d8 r __ksymtab_kstrtoint_from_user
+ffffffff820857e4 r __ksymtab_kstrtol_from_user
+ffffffff820857f0 r __ksymtab_kstrtoll
+ffffffff820857fc r __ksymtab_kstrtoll_from_user
+ffffffff82085808 r __ksymtab_kstrtos16
+ffffffff82085814 r __ksymtab_kstrtos16_from_user
+ffffffff82085820 r __ksymtab_kstrtos8
+ffffffff8208582c r __ksymtab_kstrtos8_from_user
+ffffffff82085838 r __ksymtab_kstrtou16
+ffffffff82085844 r __ksymtab_kstrtou16_from_user
+ffffffff82085850 r __ksymtab_kstrtou8
+ffffffff8208585c r __ksymtab_kstrtou8_from_user
+ffffffff82085868 r __ksymtab_kstrtouint
+ffffffff82085874 r __ksymtab_kstrtouint_from_user
+ffffffff82085880 r __ksymtab_kstrtoul_from_user
+ffffffff8208588c r __ksymtab_kstrtoull
+ffffffff82085898 r __ksymtab_kstrtoull_from_user
+ffffffff820858a4 r __ksymtab_kthread_associate_blkcg
+ffffffff820858b0 r __ksymtab_kthread_bind
+ffffffff820858bc r __ksymtab_kthread_complete_and_exit
+ffffffff820858c8 r __ksymtab_kthread_create_on_cpu
+ffffffff820858d4 r __ksymtab_kthread_create_on_node
+ffffffff820858e0 r __ksymtab_kthread_create_worker
+ffffffff820858ec r __ksymtab_kthread_create_worker_on_cpu
+ffffffff820858f8 r __ksymtab_kthread_delayed_work_timer_fn
+ffffffff82085904 r __ksymtab_kthread_destroy_worker
+ffffffff82085910 r __ksymtab_kthread_should_stop
+ffffffff8208591c r __ksymtab_kthread_stop
+ffffffff82085928 r __ksymtab_ktime_get_coarse_real_ts64
+ffffffff82085934 r __ksymtab_ktime_get_coarse_ts64
+ffffffff82085940 r __ksymtab_ktime_get_raw_ts64
+ffffffff8208594c r __ksymtab_ktime_get_real_ts64
+ffffffff82085958 r __ksymtab_kvasprintf
+ffffffff82085964 r __ksymtab_kvasprintf_const
+ffffffff82085970 r __ksymtab_kvfree
+ffffffff8208597c r __ksymtab_kvfree_sensitive
+ffffffff82085988 r __ksymtab_kvmalloc_node
+ffffffff82085994 r __ksymtab_kvrealloc
+ffffffff820859a0 r __ksymtab_laptop_mode
+ffffffff820859ac r __ksymtab_lease_get_mtime
+ffffffff820859b8 r __ksymtab_lease_modify
+ffffffff820859c4 r __ksymtab_legacy_pic
+ffffffff820859d0 r __ksymtab_linkwatch_fire_event
+ffffffff820859dc r __ksymtab_list_sort
+ffffffff820859e8 r __ksymtab_load_nls
+ffffffff820859f4 r __ksymtab_load_nls_default
+ffffffff82085a00 r __ksymtab_lock_rename
+ffffffff82085a0c r __ksymtab_lock_sock_nested
+ffffffff82085a18 r __ksymtab_lock_two_nondirectories
+ffffffff82085a24 r __ksymtab_lockref_get
+ffffffff82085a30 r __ksymtab_lockref_get_not_dead
+ffffffff82085a3c r __ksymtab_lockref_get_not_zero
+ffffffff82085a48 r __ksymtab_lockref_mark_dead
+ffffffff82085a54 r __ksymtab_lockref_put_not_zero
+ffffffff82085a60 r __ksymtab_lockref_put_or_lock
+ffffffff82085a6c r __ksymtab_lockref_put_return
+ffffffff82085a78 r __ksymtab_locks_copy_conflock
+ffffffff82085a84 r __ksymtab_locks_copy_lock
+ffffffff82085a90 r __ksymtab_locks_delete_block
+ffffffff82085a9c r __ksymtab_locks_free_lock
+ffffffff82085aa8 r __ksymtab_locks_init_lock
+ffffffff82085ab4 r __ksymtab_locks_lock_inode_wait
+ffffffff82085ac0 r __ksymtab_locks_remove_posix
+ffffffff82085acc r __ksymtab_logfc
+ffffffff82085ad8 r __ksymtab_lookup_bdev
+ffffffff82085ae4 r __ksymtab_lookup_constant
+ffffffff82085af0 r __ksymtab_lookup_one
+ffffffff82085afc r __ksymtab_lookup_one_len
+ffffffff82085b08 r __ksymtab_lookup_one_len_unlocked
+ffffffff82085b14 r __ksymtab_lookup_one_positive_unlocked
+ffffffff82085b20 r __ksymtab_lookup_one_unlocked
+ffffffff82085b2c r __ksymtab_lookup_positive_unlocked
+ffffffff82085b38 r __ksymtab_loops_per_jiffy
+ffffffff82085b44 r __ksymtab_lru_cache_add
+ffffffff82085b50 r __ksymtab_mac_pton
+ffffffff82085b5c r __ksymtab_make_bad_inode
+ffffffff82085b68 r __ksymtab_make_flow_keys_digest
+ffffffff82085b74 r __ksymtab_mangle_path
+ffffffff82085b80 r __ksymtab_mark_buffer_async_write
+ffffffff82085b8c r __ksymtab_mark_buffer_dirty
+ffffffff82085b98 r __ksymtab_mark_buffer_dirty_inode
+ffffffff82085ba4 r __ksymtab_mark_buffer_write_io_error
+ffffffff82085bb0 r __ksymtab_mark_page_accessed
+ffffffff82085bbc r __ksymtab_match_hex
+ffffffff82085bc8 r __ksymtab_match_int
+ffffffff82085bd4 r __ksymtab_match_octal
+ffffffff82085be0 r __ksymtab_match_strdup
+ffffffff82085bec r __ksymtab_match_string
+ffffffff82085bf8 r __ksymtab_match_strlcpy
+ffffffff82085c04 r __ksymtab_match_token
+ffffffff82085c10 r __ksymtab_match_u64
+ffffffff82085c1c r __ksymtab_match_uint
+ffffffff82085c28 r __ksymtab_match_wildcard
+ffffffff82085c34 r __ksymtab_max_mapnr
+ffffffff82085c40 r __ksymtab_may_setattr
+ffffffff82085c4c r __ksymtab_may_umount
+ffffffff82085c58 r __ksymtab_may_umount_tree
+ffffffff82085c64 r __ksymtab_mb_cache_create
+ffffffff82085c70 r __ksymtab_mb_cache_destroy
+ffffffff82085c7c r __ksymtab_mb_cache_entry_create
+ffffffff82085c88 r __ksymtab_mb_cache_entry_delete_or_get
+ffffffff82085c94 r __ksymtab_mb_cache_entry_find_first
+ffffffff82085ca0 r __ksymtab_mb_cache_entry_find_next
+ffffffff82085cac r __ksymtab_mb_cache_entry_get
+ffffffff82085cb8 r __ksymtab_mb_cache_entry_touch
+ffffffff82085cc4 r __ksymtab_mb_cache_entry_wait_unused
+ffffffff82085cd0 r __ksymtab_mem_cgroup_from_task
+ffffffff82085cdc r __ksymtab_mem_map
+ffffffff82085ce8 r __ksymtab_mem_section
+ffffffff82085cf4 r __ksymtab_memcg_kmem_enabled_key
+ffffffff82085d00 r __ksymtab_memcg_sockets_enabled_key
+ffffffff82085d0c r __ksymtab_memchr
+ffffffff82085d18 r __ksymtab_memchr_inv
+ffffffff82085d24 r __ksymtab_memcmp
+ffffffff82085d30 r __ksymtab_memcpy
+ffffffff82085d3c r __ksymtab_memcpy_and_pad
+ffffffff82085d48 r __ksymtab_memcpy_fromio
+ffffffff82085d54 r __ksymtab_memcpy_toio
+ffffffff82085d60 r __ksymtab_memdup_user
+ffffffff82085d6c r __ksymtab_memdup_user_nul
+ffffffff82085d78 r __ksymtab_memmove
+ffffffff82085d84 r __ksymtab_memory_cgrp_subsys
+ffffffff82085d90 r __ksymtab_memory_read_from_buffer
+ffffffff82085d9c r __ksymtab_memparse
+ffffffff82085da8 r __ksymtab_mempool_alloc
+ffffffff82085db4 r __ksymtab_mempool_alloc_pages
+ffffffff82085dc0 r __ksymtab_mempool_alloc_slab
+ffffffff82085dcc r __ksymtab_mempool_create
+ffffffff82085dd8 r __ksymtab_mempool_create_node
+ffffffff82085de4 r __ksymtab_mempool_destroy
+ffffffff82085df0 r __ksymtab_mempool_exit
+ffffffff82085dfc r __ksymtab_mempool_free
+ffffffff82085e08 r __ksymtab_mempool_free_pages
+ffffffff82085e14 r __ksymtab_mempool_free_slab
+ffffffff82085e20 r __ksymtab_mempool_init
+ffffffff82085e2c r __ksymtab_mempool_init_node
+ffffffff82085e38 r __ksymtab_mempool_kfree
+ffffffff82085e44 r __ksymtab_mempool_kmalloc
+ffffffff82085e50 r __ksymtab_mempool_resize
+ffffffff82085e5c r __ksymtab_memregion_alloc
+ffffffff82085e68 r __ksymtab_memregion_free
+ffffffff82085e74 r __ksymtab_memremap
+ffffffff82085e80 r __ksymtab_memscan
+ffffffff82085e8c r __ksymtab_memset
+ffffffff82085e98 r __ksymtab_memset_io
+ffffffff82085ea4 r __ksymtab_memunmap
+ffffffff82085eb0 r __ksymtab_memweight
+ffffffff82085ebc r __ksymtab_migrate_folio
+ffffffff82085ec8 r __ksymtab_mini_qdisc_pair_block_init
+ffffffff82085ed4 r __ksymtab_mini_qdisc_pair_init
+ffffffff82085ee0 r __ksymtab_mini_qdisc_pair_swap
+ffffffff82085eec r __ksymtab_minmax_running_max
+ffffffff82085ef8 r __ksymtab_misc_deregister
+ffffffff82085f04 r __ksymtab_misc_register
+ffffffff82085f10 r __ksymtab_mktime64
+ffffffff82085f1c r __ksymtab_mnt_drop_write_file
+ffffffff82085f28 r __ksymtab_mnt_set_expiry
+ffffffff82085f34 r __ksymtab_mntget
+ffffffff82085f40 r __ksymtab_mntput
+ffffffff82085f4c r __ksymtab_mod_node_page_state
+ffffffff82085f58 r __ksymtab_mod_timer
+ffffffff82085f64 r __ksymtab_mod_timer_pending
+ffffffff82085f70 r __ksymtab_mod_zone_page_state
+ffffffff82085f7c r __ksymtab_mode_strip_sgid
+ffffffff82085f88 r __ksymtab_mount_bdev
+ffffffff82085f94 r __ksymtab_mount_nodev
+ffffffff82085fa0 r __ksymtab_mount_single
+ffffffff82085fac r __ksymtab_mount_subtree
+ffffffff82085fb8 r __ksymtab_movable_zone
+ffffffff82085fc4 r __ksymtab_mpage_read_folio
+ffffffff82085fd0 r __ksymtab_mpage_readahead
+ffffffff82085fdc r __ksymtab_mpage_writepages
+ffffffff82085fe8 r __ksymtab_mq_change_real_num_tx
+ffffffff82085ff4 r __ksymtab_msi_desc_to_pci_dev
+ffffffff82086000 r __ksymtab_msleep
+ffffffff8208600c r __ksymtab_msleep_interruptible
+ffffffff82086018 r __ksymtab_msrs_alloc
+ffffffff82086024 r __ksymtab_msrs_free
+ffffffff82086030 r __ksymtab_mt_find
+ffffffff8208603c r __ksymtab_mt_find_after
+ffffffff82086048 r __ksymtab_mtree_alloc_range
+ffffffff82086054 r __ksymtab_mtree_alloc_rrange
+ffffffff82086060 r __ksymtab_mtree_destroy
+ffffffff8208606c r __ksymtab_mtree_erase
+ffffffff82086078 r __ksymtab_mtree_insert
+ffffffff82086084 r __ksymtab_mtree_insert_range
+ffffffff82086090 r __ksymtab_mtree_load
+ffffffff8208609c r __ksymtab_mtree_store
+ffffffff820860a8 r __ksymtab_mtree_store_range
+ffffffff820860b4 r __ksymtab_mutex_is_locked
+ffffffff820860c0 r __ksymtab_mutex_lock
+ffffffff820860cc r __ksymtab_mutex_lock_interruptible
+ffffffff820860d8 r __ksymtab_mutex_lock_killable
+ffffffff820860e4 r __ksymtab_mutex_trylock
+ffffffff820860f0 r __ksymtab_mutex_unlock
+ffffffff820860fc r __ksymtab_n_tty_ioctl_helper
+ffffffff82086108 r __ksymtab_names_cachep
+ffffffff82086114 r __ksymtab_napi_build_skb
+ffffffff82086120 r __ksymtab_napi_busy_loop
+ffffffff8208612c r __ksymtab_napi_complete_done
+ffffffff82086138 r __ksymtab_napi_consume_skb
+ffffffff82086144 r __ksymtab_napi_disable
+ffffffff82086150 r __ksymtab_napi_enable
+ffffffff8208615c r __ksymtab_napi_get_frags
+ffffffff82086168 r __ksymtab_napi_gro_flush
+ffffffff82086174 r __ksymtab_napi_gro_frags
+ffffffff82086180 r __ksymtab_napi_gro_receive
+ffffffff8208618c r __ksymtab_napi_schedule_prep
+ffffffff82086198 r __ksymtab_native_io_delay
+ffffffff820861a4 r __ksymtab_native_save_fl
+ffffffff820861b0 r __ksymtab_native_write_cr0
+ffffffff820861bc r __ksymtab_nd_btt_arena_is_valid
+ffffffff820861c8 r __ksymtab_nd_btt_probe
+ffffffff820861d4 r __ksymtab_nd_btt_version
+ffffffff820861e0 r __ksymtab_nd_dev_to_uuid
+ffffffff820861ec r __ksymtab_nd_device_notify
+ffffffff820861f8 r __ksymtab_nd_device_register
+ffffffff82086204 r __ksymtab_nd_device_unregister
+ffffffff82086210 r __ksymtab_nd_integrity_init
+ffffffff8208621c r __ksymtab_nd_region_acquire_lane
+ffffffff82086228 r __ksymtab_nd_region_release_lane
+ffffffff82086234 r __ksymtab_nd_region_to_nstype
+ffffffff82086240 r __ksymtab_nd_sb_checksum
+ffffffff8208624c r __ksymtab_ndisc_mc_map
+ffffffff82086258 r __ksymtab_ndisc_ns_create
+ffffffff82086264 r __ksymtab_ndisc_send_skb
+ffffffff82086270 r __ksymtab_ndo_dflt_fdb_add
+ffffffff8208627c r __ksymtab_ndo_dflt_fdb_del
+ffffffff82086288 r __ksymtab_ndo_dflt_fdb_dump
+ffffffff82086294 r __ksymtab_neigh_app_ns
+ffffffff820862a0 r __ksymtab_neigh_carrier_down
+ffffffff820862ac r __ksymtab_neigh_changeaddr
+ffffffff820862b8 r __ksymtab_neigh_connected_output
+ffffffff820862c4 r __ksymtab_neigh_destroy
+ffffffff820862d0 r __ksymtab_neigh_direct_output
+ffffffff820862dc r __ksymtab_neigh_event_ns
+ffffffff820862e8 r __ksymtab_neigh_for_each
+ffffffff820862f4 r __ksymtab_neigh_ifdown
+ffffffff82086300 r __ksymtab_neigh_lookup
+ffffffff8208630c r __ksymtab_neigh_lookup_nodev
+ffffffff82086318 r __ksymtab_neigh_parms_alloc
+ffffffff82086324 r __ksymtab_neigh_parms_release
+ffffffff82086330 r __ksymtab_neigh_proc_dointvec
+ffffffff8208633c r __ksymtab_neigh_proc_dointvec_jiffies
+ffffffff82086348 r __ksymtab_neigh_proc_dointvec_ms_jiffies
+ffffffff82086354 r __ksymtab_neigh_rand_reach_time
+ffffffff82086360 r __ksymtab_neigh_resolve_output
+ffffffff8208636c r __ksymtab_neigh_seq_next
+ffffffff82086378 r __ksymtab_neigh_seq_start
+ffffffff82086384 r __ksymtab_neigh_seq_stop
+ffffffff82086390 r __ksymtab_neigh_sysctl_register
+ffffffff8208639c r __ksymtab_neigh_sysctl_unregister
+ffffffff820863a8 r __ksymtab_neigh_table_clear
+ffffffff820863b4 r __ksymtab_neigh_table_init
+ffffffff820863c0 r __ksymtab_neigh_update
+ffffffff820863cc r __ksymtab_neigh_xmit
+ffffffff820863d8 r __ksymtab_net_disable_timestamp
+ffffffff820863e4 r __ksymtab_net_enable_timestamp
+ffffffff820863f0 r __ksymtab_net_ratelimit
+ffffffff820863fc r __ksymtab_netdev_adjacent_change_abort
+ffffffff82086408 r __ksymtab_netdev_adjacent_change_commit
+ffffffff82086414 r __ksymtab_netdev_adjacent_change_prepare
+ffffffff82086420 r __ksymtab_netdev_adjacent_get_private
+ffffffff8208642c r __ksymtab_netdev_alert
+ffffffff82086438 r __ksymtab_netdev_bind_sb_channel_queue
+ffffffff82086444 r __ksymtab_netdev_bonding_info_change
+ffffffff82086450 r __ksymtab_netdev_change_features
+ffffffff8208645c r __ksymtab_netdev_class_create_file_ns
+ffffffff82086468 r __ksymtab_netdev_class_remove_file_ns
+ffffffff82086474 r __ksymtab_netdev_core_stats_alloc
+ffffffff82086480 r __ksymtab_netdev_crit
+ffffffff8208648c r __ksymtab_netdev_emerg
+ffffffff82086498 r __ksymtab_netdev_err
+ffffffff820864a4 r __ksymtab_netdev_features_change
+ffffffff820864b0 r __ksymtab_netdev_get_xmit_slave
+ffffffff820864bc r __ksymtab_netdev_has_any_upper_dev
+ffffffff820864c8 r __ksymtab_netdev_has_upper_dev
+ffffffff820864d4 r __ksymtab_netdev_has_upper_dev_all_rcu
+ffffffff820864e0 r __ksymtab_netdev_increment_features
+ffffffff820864ec r __ksymtab_netdev_info
+ffffffff820864f8 r __ksymtab_netdev_lower_dev_get_private
+ffffffff82086504 r __ksymtab_netdev_lower_get_first_private_rcu
+ffffffff82086510 r __ksymtab_netdev_lower_get_next
+ffffffff8208651c r __ksymtab_netdev_lower_get_next_private
+ffffffff82086528 r __ksymtab_netdev_lower_get_next_private_rcu
+ffffffff82086534 r __ksymtab_netdev_lower_state_changed
+ffffffff82086540 r __ksymtab_netdev_master_upper_dev_get
+ffffffff8208654c r __ksymtab_netdev_master_upper_dev_get_rcu
+ffffffff82086558 r __ksymtab_netdev_master_upper_dev_link
+ffffffff82086564 r __ksymtab_netdev_max_backlog
+ffffffff82086570 r __ksymtab_netdev_name_in_use
+ffffffff8208657c r __ksymtab_netdev_next_lower_dev_rcu
+ffffffff82086588 r __ksymtab_netdev_notice
+ffffffff82086594 r __ksymtab_netdev_notify_peers
+ffffffff820865a0 r __ksymtab_netdev_offload_xstats_disable
+ffffffff820865ac r __ksymtab_netdev_offload_xstats_enable
+ffffffff820865b8 r __ksymtab_netdev_offload_xstats_enabled
+ffffffff820865c4 r __ksymtab_netdev_offload_xstats_get
+ffffffff820865d0 r __ksymtab_netdev_offload_xstats_push_delta
+ffffffff820865dc r __ksymtab_netdev_offload_xstats_report_delta
+ffffffff820865e8 r __ksymtab_netdev_offload_xstats_report_used
+ffffffff820865f4 r __ksymtab_netdev_pick_tx
+ffffffff82086600 r __ksymtab_netdev_port_same_parent_id
+ffffffff8208660c r __ksymtab_netdev_printk
+ffffffff82086618 r __ksymtab_netdev_refcnt_read
+ffffffff82086624 r __ksymtab_netdev_reset_tc
+ffffffff82086630 r __ksymtab_netdev_rss_key_fill
+ffffffff8208663c r __ksymtab_netdev_rx_csum_fault
+ffffffff82086648 r __ksymtab_netdev_set_num_tc
+ffffffff82086654 r __ksymtab_netdev_set_sb_channel
+ffffffff82086660 r __ksymtab_netdev_set_tc_queue
+ffffffff8208666c r __ksymtab_netdev_sk_get_lowest_dev
+ffffffff82086678 r __ksymtab_netdev_state_change
+ffffffff82086684 r __ksymtab_netdev_stats_to_stats64
+ffffffff82086690 r __ksymtab_netdev_txq_to_tc
+ffffffff8208669c r __ksymtab_netdev_unbind_sb_channel
+ffffffff820866a8 r __ksymtab_netdev_update_features
+ffffffff820866b4 r __ksymtab_netdev_upper_dev_link
+ffffffff820866c0 r __ksymtab_netdev_upper_dev_unlink
+ffffffff820866cc r __ksymtab_netdev_upper_get_next_dev_rcu
+ffffffff820866d8 r __ksymtab_netdev_warn
+ffffffff820866e4 r __ksymtab_netif_carrier_off
+ffffffff820866f0 r __ksymtab_netif_carrier_on
+ffffffff820866fc r __ksymtab_netif_device_attach
+ffffffff82086708 r __ksymtab_netif_device_detach
+ffffffff82086714 r __ksymtab_netif_get_num_default_rss_queues
+ffffffff82086720 r __ksymtab_netif_inherit_tso_max
+ffffffff8208672c r __ksymtab_netif_napi_add_weight
+ffffffff82086738 r __ksymtab_netif_receive_skb
+ffffffff82086744 r __ksymtab_netif_receive_skb_core
+ffffffff82086750 r __ksymtab_netif_receive_skb_list
+ffffffff8208675c r __ksymtab_netif_rx
+ffffffff82086768 r __ksymtab_netif_schedule_queue
+ffffffff82086774 r __ksymtab_netif_set_real_num_queues
+ffffffff82086780 r __ksymtab_netif_set_real_num_rx_queues
+ffffffff8208678c r __ksymtab_netif_set_real_num_tx_queues
+ffffffff82086798 r __ksymtab_netif_set_tso_max_segs
+ffffffff820867a4 r __ksymtab_netif_set_tso_max_size
+ffffffff820867b0 r __ksymtab_netif_set_xps_queue
+ffffffff820867bc r __ksymtab_netif_skb_features
+ffffffff820867c8 r __ksymtab_netif_stacked_transfer_operstate
+ffffffff820867d4 r __ksymtab_netif_tx_lock
+ffffffff820867e0 r __ksymtab_netif_tx_stop_all_queues
+ffffffff820867ec r __ksymtab_netif_tx_unlock
+ffffffff820867f8 r __ksymtab_netif_tx_wake_queue
+ffffffff82086804 r __ksymtab_netlink_ack
+ffffffff82086810 r __ksymtab_netlink_broadcast
+ffffffff8208681c r __ksymtab_netlink_capable
+ffffffff82086828 r __ksymtab_netlink_kernel_release
+ffffffff82086834 r __ksymtab_netlink_net_capable
+ffffffff82086840 r __ksymtab_netlink_ns_capable
+ffffffff8208684c r __ksymtab_netlink_rcv_skb
+ffffffff82086858 r __ksymtab_netlink_register_notifier
+ffffffff82086864 r __ksymtab_netlink_set_err
+ffffffff82086870 r __ksymtab_netlink_unicast
+ffffffff8208687c r __ksymtab_netlink_unregister_notifier
+ffffffff82086888 r __ksymtab_netstamp_needed_key
+ffffffff82086894 r __ksymtab_new_inode
+ffffffff820868a0 r __ksymtab_next_arg
+ffffffff820868ac r __ksymtab_nexthop_bucket_set_hw_flags
+ffffffff820868b8 r __ksymtab_nexthop_res_grp_activity_update
+ffffffff820868c4 r __ksymtab_nexthop_set_hw_flags
+ffffffff820868d0 r __ksymtab_nla_append
+ffffffff820868dc r __ksymtab_nla_find
+ffffffff820868e8 r __ksymtab_nla_memcmp
+ffffffff820868f4 r __ksymtab_nla_memcpy
+ffffffff82086900 r __ksymtab_nla_policy_len
+ffffffff8208690c r __ksymtab_nla_put
+ffffffff82086918 r __ksymtab_nla_put_64bit
+ffffffff82086924 r __ksymtab_nla_put_nohdr
+ffffffff82086930 r __ksymtab_nla_reserve
+ffffffff8208693c r __ksymtab_nla_reserve_64bit
+ffffffff82086948 r __ksymtab_nla_reserve_nohdr
+ffffffff82086954 r __ksymtab_nla_strcmp
+ffffffff82086960 r __ksymtab_nla_strdup
+ffffffff8208696c r __ksymtab_nla_strscpy
+ffffffff82086978 r __ksymtab_nlmsg_notify
+ffffffff82086984 r __ksymtab_nmi_panic
+ffffffff82086990 r __ksymtab_no_pci_devices
+ffffffff8208699c r __ksymtab_no_seek_end_llseek
+ffffffff820869a8 r __ksymtab_no_seek_end_llseek_size
+ffffffff820869b4 r __ksymtab_node_states
+ffffffff820869c0 r __ksymtab_nonseekable_open
+ffffffff820869cc r __ksymtab_noop_dirty_folio
+ffffffff820869d8 r __ksymtab_noop_fsync
+ffffffff820869e4 r __ksymtab_noop_llseek
+ffffffff820869f0 r __ksymtab_noop_qdisc
+ffffffff820869fc r __ksymtab_nosteal_pipe_buf_ops
+ffffffff82086a08 r __ksymtab_notify_change
+ffffffff82086a14 r __ksymtab_nr_cpu_ids
+ffffffff82086a20 r __ksymtab_ns_capable
+ffffffff82086a2c r __ksymtab_ns_capable_noaudit
+ffffffff82086a38 r __ksymtab_ns_capable_setid
+ffffffff82086a44 r __ksymtab_ns_to_kernel_old_timeval
+ffffffff82086a50 r __ksymtab_ns_to_timespec64
+ffffffff82086a5c r __ksymtab_nsecs_to_jiffies64
+ffffffff82086a68 r __ksymtab_nvdimm_bus_lock
+ffffffff82086a74 r __ksymtab_nvdimm_bus_unlock
+ffffffff82086a80 r __ksymtab_nvdimm_check_and_set_ro
+ffffffff82086a8c r __ksymtab_nvdimm_namespace_attach_btt
+ffffffff82086a98 r __ksymtab_nvdimm_namespace_capacity
+ffffffff82086aa4 r __ksymtab_nvdimm_namespace_common_probe
+ffffffff82086ab0 r __ksymtab_nvdimm_namespace_detach_btt
+ffffffff82086abc r __ksymtab_nvdimm_namespace_disk_name
+ffffffff82086ac8 r __ksymtab_nvdimm_namespace_locked
+ffffffff82086ad4 r __ksymtab_of_chosen
+ffffffff82086ae0 r __ksymtab_of_count_phandle_with_args
+ffffffff82086aec r __ksymtab_of_cpu_node_to_id
+ffffffff82086af8 r __ksymtab_of_device_alloc
+ffffffff82086b04 r __ksymtab_of_device_get_match_data
+ffffffff82086b10 r __ksymtab_of_device_is_available
+ffffffff82086b1c r __ksymtab_of_device_is_big_endian
+ffffffff82086b28 r __ksymtab_of_device_is_compatible
+ffffffff82086b34 r __ksymtab_of_device_register
+ffffffff82086b40 r __ksymtab_of_device_unregister
+ffffffff82086b4c r __ksymtab_of_find_all_nodes
+ffffffff82086b58 r __ksymtab_of_find_compatible_node
+ffffffff82086b64 r __ksymtab_of_find_device_by_node
+ffffffff82086b70 r __ksymtab_of_find_matching_node_and_match
+ffffffff82086b7c r __ksymtab_of_find_net_device_by_node
+ffffffff82086b88 r __ksymtab_of_find_node_by_name
+ffffffff82086b94 r __ksymtab_of_find_node_by_phandle
+ffffffff82086ba0 r __ksymtab_of_find_node_by_type
+ffffffff82086bac r __ksymtab_of_find_node_opts_by_path
+ffffffff82086bb8 r __ksymtab_of_find_node_with_property
+ffffffff82086bc4 r __ksymtab_of_find_property
+ffffffff82086bd0 r __ksymtab_of_get_child_by_name
+ffffffff82086bdc r __ksymtab_of_get_compatible_child
+ffffffff82086be8 r __ksymtab_of_get_cpu_node
+ffffffff82086bf4 r __ksymtab_of_get_cpu_state_node
+ffffffff82086c00 r __ksymtab_of_get_ethdev_address
+ffffffff82086c0c r __ksymtab_of_get_mac_address
+ffffffff82086c18 r __ksymtab_of_get_next_available_child
+ffffffff82086c24 r __ksymtab_of_get_next_child
+ffffffff82086c30 r __ksymtab_of_get_next_cpu_node
+ffffffff82086c3c r __ksymtab_of_get_next_parent
+ffffffff82086c48 r __ksymtab_of_get_parent
+ffffffff82086c54 r __ksymtab_of_get_property
+ffffffff82086c60 r __ksymtab_of_graph_get_endpoint_by_regs
+ffffffff82086c6c r __ksymtab_of_graph_get_endpoint_count
+ffffffff82086c78 r __ksymtab_of_graph_get_next_endpoint
+ffffffff82086c84 r __ksymtab_of_graph_get_port_by_id
+ffffffff82086c90 r __ksymtab_of_graph_get_port_parent
+ffffffff82086c9c r __ksymtab_of_graph_get_remote_endpoint
+ffffffff82086ca8 r __ksymtab_of_graph_get_remote_node
+ffffffff82086cb4 r __ksymtab_of_graph_get_remote_port
+ffffffff82086cc0 r __ksymtab_of_graph_get_remote_port_parent
+ffffffff82086ccc r __ksymtab_of_graph_is_present
+ffffffff82086cd8 r __ksymtab_of_graph_parse_endpoint
+ffffffff82086ce4 r __ksymtab_of_io_request_and_map
+ffffffff82086cf0 r __ksymtab_of_iomap
+ffffffff82086cfc r __ksymtab_of_machine_is_compatible
+ffffffff82086d08 r __ksymtab_of_match_device
+ffffffff82086d14 r __ksymtab_of_match_node
+ffffffff82086d20 r __ksymtab_of_n_addr_cells
+ffffffff82086d2c r __ksymtab_of_n_size_cells
+ffffffff82086d38 r __ksymtab_of_node_name_eq
+ffffffff82086d44 r __ksymtab_of_node_name_prefix
+ffffffff82086d50 r __ksymtab_of_parse_phandle_with_args_map
+ffffffff82086d5c r __ksymtab_of_pci_range_to_resource
+ffffffff82086d68 r __ksymtab_of_platform_bus_probe
+ffffffff82086d74 r __ksymtab_of_platform_device_create
+ffffffff82086d80 r __ksymtab_of_root
+ffffffff82086d8c r __ksymtab_of_translate_address
+ffffffff82086d98 r __ksymtab_of_translate_dma_address
+ffffffff82086da4 r __ksymtab_on_each_cpu_cond_mask
+ffffffff82086db0 r __ksymtab_oops_in_progress
+ffffffff82086dbc r __ksymtab_open_exec
+ffffffff82086dc8 r __ksymtab_open_with_fake_path
+ffffffff82086dd4 r __ksymtab_out_of_line_wait_on_bit
+ffffffff82086de0 r __ksymtab_out_of_line_wait_on_bit_lock
+ffffffff82086dec r __ksymtab_overflowgid
+ffffffff82086df8 r __ksymtab_overflowuid
+ffffffff82086e04 r __ksymtab_override_creds
+ffffffff82086e10 r __ksymtab_paddr_vmcoreinfo_note
+ffffffff82086e1c r __ksymtab_page_cache_next_miss
+ffffffff82086e28 r __ksymtab_page_cache_prev_miss
+ffffffff82086e34 r __ksymtab_page_frag_alloc_align
+ffffffff82086e40 r __ksymtab_page_frag_free
+ffffffff82086e4c r __ksymtab_page_get_link
+ffffffff82086e58 r __ksymtab_page_mapped
+ffffffff82086e64 r __ksymtab_page_mapping
+ffffffff82086e70 r __ksymtab_page_offline_begin
+ffffffff82086e7c r __ksymtab_page_offline_end
+ffffffff82086e88 r __ksymtab_page_offset_base
+ffffffff82086e94 r __ksymtab_page_put_link
+ffffffff82086ea0 r __ksymtab_page_readlink
+ffffffff82086eac r __ksymtab_page_symlink
+ffffffff82086eb8 r __ksymtab_page_symlink_inode_operations
+ffffffff82086ec4 r __ksymtab_page_zero_new_buffers
+ffffffff82086ed0 r __ksymtab_pagecache_get_page
+ffffffff82086edc r __ksymtab_pagecache_isize_extended
+ffffffff82086ee8 r __ksymtab_pagevec_lookup_range_tag
+ffffffff82086ef4 r __ksymtab_panic
+ffffffff82086f00 r __ksymtab_panic_blink
+ffffffff82086f0c r __ksymtab_panic_notifier_list
+ffffffff82086f18 r __ksymtab_param_array_ops
+ffffffff82086f24 r __ksymtab_param_free_charp
+ffffffff82086f30 r __ksymtab_param_get_bool
+ffffffff82086f3c r __ksymtab_param_get_byte
+ffffffff82086f48 r __ksymtab_param_get_charp
+ffffffff82086f54 r __ksymtab_param_get_dyndbg_classes
+ffffffff82086f60 r __ksymtab_param_get_hexint
+ffffffff82086f6c r __ksymtab_param_get_int
+ffffffff82086f78 r __ksymtab_param_get_invbool
+ffffffff82086f84 r __ksymtab_param_get_long
+ffffffff82086f90 r __ksymtab_param_get_short
+ffffffff82086f9c r __ksymtab_param_get_string
+ffffffff82086fa8 r __ksymtab_param_get_uint
+ffffffff82086fb4 r __ksymtab_param_get_ullong
+ffffffff82086fc0 r __ksymtab_param_get_ulong
+ffffffff82086fcc r __ksymtab_param_get_ushort
+ffffffff82086fd8 r __ksymtab_param_ops_bint
+ffffffff82086fe4 r __ksymtab_param_ops_bool
+ffffffff82086ff0 r __ksymtab_param_ops_byte
+ffffffff82086ffc r __ksymtab_param_ops_charp
+ffffffff82087008 r __ksymtab_param_ops_dyndbg_classes
+ffffffff82087014 r __ksymtab_param_ops_hexint
+ffffffff82087020 r __ksymtab_param_ops_int
+ffffffff8208702c r __ksymtab_param_ops_invbool
+ffffffff82087038 r __ksymtab_param_ops_long
+ffffffff82087044 r __ksymtab_param_ops_short
+ffffffff82087050 r __ksymtab_param_ops_string
+ffffffff8208705c r __ksymtab_param_ops_uint
+ffffffff82087068 r __ksymtab_param_ops_ullong
+ffffffff82087074 r __ksymtab_param_ops_ulong
+ffffffff82087080 r __ksymtab_param_ops_ushort
+ffffffff8208708c r __ksymtab_param_set_bint
+ffffffff82087098 r __ksymtab_param_set_bool
+ffffffff820870a4 r __ksymtab_param_set_byte
+ffffffff820870b0 r __ksymtab_param_set_charp
+ffffffff820870bc r __ksymtab_param_set_copystring
+ffffffff820870c8 r __ksymtab_param_set_dyndbg_classes
+ffffffff820870d4 r __ksymtab_param_set_hexint
+ffffffff820870e0 r __ksymtab_param_set_int
+ffffffff820870ec r __ksymtab_param_set_invbool
+ffffffff820870f8 r __ksymtab_param_set_long
+ffffffff82087104 r __ksymtab_param_set_short
+ffffffff82087110 r __ksymtab_param_set_uint
+ffffffff8208711c r __ksymtab_param_set_ullong
+ffffffff82087128 r __ksymtab_param_set_ulong
+ffffffff82087134 r __ksymtab_param_set_ushort
+ffffffff82087140 r __ksymtab_parse_int_array_user
+ffffffff8208714c r __ksymtab_passthru_features_check
+ffffffff82087158 r __ksymtab_path_get
+ffffffff82087164 r __ksymtab_path_has_submounts
+ffffffff82087170 r __ksymtab_path_is_mountpoint
+ffffffff8208717c r __ksymtab_path_is_under
+ffffffff82087188 r __ksymtab_path_put
+ffffffff82087194 r __ksymtab_pci_add_new_bus
+ffffffff820871a0 r __ksymtab_pci_add_resource
+ffffffff820871ac r __ksymtab_pci_add_resource_offset
+ffffffff820871b8 r __ksymtab_pci_alloc_dev
+ffffffff820871c4 r __ksymtab_pci_alloc_host_bridge
+ffffffff820871d0 r __ksymtab_pci_alloc_irq_vectors_affinity
+ffffffff820871dc r __ksymtab_pci_assign_resource
+ffffffff820871e8 r __ksymtab_pci_back_from_sleep
+ffffffff820871f4 r __ksymtab_pci_biosrom_size
+ffffffff82087200 r __ksymtab_pci_bus_add_devices
+ffffffff8208720c r __ksymtab_pci_bus_alloc_resource
+ffffffff82087218 r __ksymtab_pci_bus_assign_resources
+ffffffff82087224 r __ksymtab_pci_bus_claim_resources
+ffffffff82087230 r __ksymtab_pci_bus_find_capability
+ffffffff8208723c r __ksymtab_pci_bus_read_config_byte
+ffffffff82087248 r __ksymtab_pci_bus_read_config_dword
+ffffffff82087254 r __ksymtab_pci_bus_read_config_word
+ffffffff82087260 r __ksymtab_pci_bus_read_dev_vendor_id
+ffffffff8208726c r __ksymtab_pci_bus_set_ops
+ffffffff82087278 r __ksymtab_pci_bus_size_bridges
+ffffffff82087284 r __ksymtab_pci_bus_type
+ffffffff82087290 r __ksymtab_pci_bus_write_config_byte
+ffffffff8208729c r __ksymtab_pci_bus_write_config_dword
+ffffffff820872a8 r __ksymtab_pci_bus_write_config_word
+ffffffff820872b4 r __ksymtab_pci_choose_state
+ffffffff820872c0 r __ksymtab_pci_claim_resource
+ffffffff820872cc r __ksymtab_pci_clear_master
+ffffffff820872d8 r __ksymtab_pci_clear_mwi
+ffffffff820872e4 r __ksymtab_pci_dev_driver
+ffffffff820872f0 r __ksymtab_pci_dev_get
+ffffffff820872fc r __ksymtab_pci_dev_present
+ffffffff82087308 r __ksymtab_pci_dev_put
+ffffffff82087314 r __ksymtab_pci_disable_device
+ffffffff82087320 r __ksymtab_pci_disable_link_state
+ffffffff8208732c r __ksymtab_pci_disable_link_state_locked
+ffffffff82087338 r __ksymtab_pci_disable_msi
+ffffffff82087344 r __ksymtab_pci_disable_msix
+ffffffff82087350 r __ksymtab_pci_enable_atomic_ops_to_root
+ffffffff8208735c r __ksymtab_pci_enable_device
+ffffffff82087368 r __ksymtab_pci_enable_device_io
+ffffffff82087374 r __ksymtab_pci_enable_device_mem
+ffffffff82087380 r __ksymtab_pci_enable_msi
+ffffffff8208738c r __ksymtab_pci_enable_msix_range
+ffffffff82087398 r __ksymtab_pci_enable_wake
+ffffffff820873a4 r __ksymtab_pci_find_bus
+ffffffff820873b0 r __ksymtab_pci_find_capability
+ffffffff820873bc r __ksymtab_pci_find_next_bus
+ffffffff820873c8 r __ksymtab_pci_find_parent_resource
+ffffffff820873d4 r __ksymtab_pci_find_resource
+ffffffff820873e0 r __ksymtab_pci_fixup_cardbus
+ffffffff820873ec r __ksymtab_pci_fixup_device
+ffffffff820873f8 r __ksymtab_pci_free_host_bridge
+ffffffff82087404 r __ksymtab_pci_free_irq
+ffffffff82087410 r __ksymtab_pci_free_irq_vectors
+ffffffff8208741c r __ksymtab_pci_free_resource_list
+ffffffff82087428 r __ksymtab_pci_get_class
+ffffffff82087434 r __ksymtab_pci_get_device
+ffffffff82087440 r __ksymtab_pci_get_domain_bus_and_slot
+ffffffff8208744c r __ksymtab_pci_get_slot
+ffffffff82087458 r __ksymtab_pci_get_subsys
+ffffffff82087464 r __ksymtab_pci_iomap
+ffffffff82087470 r __ksymtab_pci_iomap_range
+ffffffff8208747c r __ksymtab_pci_iounmap
+ffffffff82087488 r __ksymtab_pci_irq_get_affinity
+ffffffff82087494 r __ksymtab_pci_irq_vector
+ffffffff820874a0 r __ksymtab_pci_map_biosrom
+ffffffff820874ac r __ksymtab_pci_map_rom
+ffffffff820874b8 r __ksymtab_pci_match_id
+ffffffff820874c4 r __ksymtab_pci_mem_start
+ffffffff820874d0 r __ksymtab_pci_msi_enabled
+ffffffff820874dc r __ksymtab_pci_msi_vec_count
+ffffffff820874e8 r __ksymtab_pci_msix_vec_count
+ffffffff820874f4 r __ksymtab_pci_pci_problems
+ffffffff82087500 r __ksymtab_pci_pme_active
+ffffffff8208750c r __ksymtab_pci_pme_capable
+ffffffff82087518 r __ksymtab_pci_prepare_to_sleep
+ffffffff82087524 r __ksymtab_pci_read_config_byte
+ffffffff82087530 r __ksymtab_pci_read_config_dword
+ffffffff8208753c r __ksymtab_pci_read_config_word
+ffffffff82087548 r __ksymtab_pci_read_vpd
+ffffffff82087554 r __ksymtab_pci_read_vpd_any
+ffffffff82087560 r __ksymtab_pci_rebar_get_possible_sizes
+ffffffff8208756c r __ksymtab_pci_reenable_device
+ffffffff82087578 r __ksymtab_pci_release_region
+ffffffff82087584 r __ksymtab_pci_release_regions
+ffffffff82087590 r __ksymtab_pci_release_resource
+ffffffff8208759c r __ksymtab_pci_release_selected_regions
+ffffffff820875a8 r __ksymtab_pci_remap_iospace
+ffffffff820875b4 r __ksymtab_pci_remove_bus
+ffffffff820875c0 r __ksymtab_pci_request_irq
+ffffffff820875cc r __ksymtab_pci_request_region
+ffffffff820875d8 r __ksymtab_pci_request_regions
+ffffffff820875e4 r __ksymtab_pci_request_regions_exclusive
+ffffffff820875f0 r __ksymtab_pci_request_selected_regions
+ffffffff820875fc r __ksymtab_pci_request_selected_regions_exclusive
+ffffffff82087608 r __ksymtab_pci_resize_resource
+ffffffff82087614 r __ksymtab_pci_restore_state
+ffffffff82087620 r __ksymtab_pci_root_buses
+ffffffff8208762c r __ksymtab_pci_save_state
+ffffffff82087638 r __ksymtab_pci_scan_bridge
+ffffffff82087644 r __ksymtab_pci_scan_bus
+ffffffff82087650 r __ksymtab_pci_scan_root_bus
+ffffffff8208765c r __ksymtab_pci_scan_root_bus_bridge
+ffffffff82087668 r __ksymtab_pci_scan_single_device
+ffffffff82087674 r __ksymtab_pci_scan_slot
+ffffffff82087680 r __ksymtab_pci_select_bars
+ffffffff8208768c r __ksymtab_pci_set_master
+ffffffff82087698 r __ksymtab_pci_set_mwi
+ffffffff820876a4 r __ksymtab_pci_set_power_state
+ffffffff820876b0 r __ksymtab_pci_setup_cardbus
+ffffffff820876bc r __ksymtab_pci_stop_and_remove_bus_device
+ffffffff820876c8 r __ksymtab_pci_try_set_mwi
+ffffffff820876d4 r __ksymtab_pci_unmap_biosrom
+ffffffff820876e0 r __ksymtab_pci_unmap_iospace
+ffffffff820876ec r __ksymtab_pci_unmap_rom
+ffffffff820876f8 r __ksymtab_pci_unregister_driver
+ffffffff82087704 r __ksymtab_pci_wait_for_pending_transaction
+ffffffff82087710 r __ksymtab_pci_wake_from_d3
+ffffffff8208771c r __ksymtab_pci_write_config_byte
+ffffffff82087728 r __ksymtab_pci_write_config_dword
+ffffffff82087734 r __ksymtab_pci_write_config_word
+ffffffff82087740 r __ksymtab_pci_write_vpd
+ffffffff8208774c r __ksymtab_pci_write_vpd_any
+ffffffff82087758 r __ksymtab_pcibios_align_resource
+ffffffff82087764 r __ksymtab_pcibios_bus_to_resource
+ffffffff82087770 r __ksymtab_pcibios_resource_to_bus
+ffffffff8208777c r __ksymtab_pcie_bandwidth_available
+ffffffff82087788 r __ksymtab_pcie_capability_clear_and_set_dword
+ffffffff82087794 r __ksymtab_pcie_capability_clear_and_set_word
+ffffffff820877a0 r __ksymtab_pcie_capability_read_dword
+ffffffff820877ac r __ksymtab_pcie_capability_read_word
+ffffffff820877b8 r __ksymtab_pcie_capability_write_dword
+ffffffff820877c4 r __ksymtab_pcie_capability_write_word
+ffffffff820877d0 r __ksymtab_pcie_get_mps
+ffffffff820877dc r __ksymtab_pcie_get_readrq
+ffffffff820877e8 r __ksymtab_pcie_get_speed_cap
+ffffffff820877f4 r __ksymtab_pcie_get_width_cap
+ffffffff82087800 r __ksymtab_pcie_port_service_register
+ffffffff8208780c r __ksymtab_pcie_port_service_unregister
+ffffffff82087818 r __ksymtab_pcie_print_link_status
+ffffffff82087824 r __ksymtab_pcie_relaxed_ordering_enabled
+ffffffff82087830 r __ksymtab_pcie_set_mps
+ffffffff8208783c r __ksymtab_pcie_set_readrq
+ffffffff82087848 r __ksymtab_pcim_enable_device
+ffffffff82087854 r __ksymtab_pcim_iomap
+ffffffff82087860 r __ksymtab_pcim_iomap_regions
+ffffffff8208786c r __ksymtab_pcim_iomap_regions_request_all
+ffffffff82087878 r __ksymtab_pcim_iomap_table
+ffffffff82087884 r __ksymtab_pcim_iounmap
+ffffffff82087890 r __ksymtab_pcim_iounmap_regions
+ffffffff8208789c r __ksymtab_pcim_pin_device
+ffffffff820878a8 r __ksymtab_pcim_set_mwi
+ffffffff820878b4 r __ksymtab_pcix_get_max_mmrbc
+ffffffff820878c0 r __ksymtab_pcix_get_mmrbc
+ffffffff820878cc r __ksymtab_pcix_set_mmrbc
+ffffffff820878d8 r __ksymtab_peernet2id
+ffffffff820878e4 r __ksymtab_percpu_counter_add_batch
+ffffffff820878f0 r __ksymtab_percpu_counter_batch
+ffffffff820878fc r __ksymtab_percpu_counter_destroy
+ffffffff82087908 r __ksymtab_percpu_counter_set
+ffffffff82087914 r __ksymtab_percpu_counter_sync
+ffffffff82087920 r __ksymtab_pfifo_fast_ops
+ffffffff8208792c r __ksymtab_pgdir_shift
+ffffffff82087938 r __ksymtab_phys_base
+ffffffff82087944 r __ksymtab_pid_task
+ffffffff82087950 r __ksymtab_pin_user_pages
+ffffffff8208795c r __ksymtab_pin_user_pages_remote
+ffffffff82087968 r __ksymtab_pin_user_pages_unlocked
+ffffffff82087974 r __ksymtab_ping_prot
+ffffffff82087980 r __ksymtab_pipe_lock
+ffffffff8208798c r __ksymtab_pipe_unlock
+ffffffff82087998 r __ksymtab_platform_get_ethdev_address
+ffffffff820879a4 r __ksymtab_platform_thermal_notify
+ffffffff820879b0 r __ksymtab_pm_power_off
+ffffffff820879bc r __ksymtab_pm_set_vt_switch
+ffffffff820879c8 r __ksymtab_pm_suspend
+ffffffff820879d4 r __ksymtab_pm_vt_switch_required
+ffffffff820879e0 r __ksymtab_pm_vt_switch_unregister
+ffffffff820879ec r __ksymtab_pmem_sector_size
+ffffffff820879f8 r __ksymtab_pmem_should_map_pages
+ffffffff82087a04 r __ksymtab_pneigh_enqueue
+ffffffff82087a10 r __ksymtab_pneigh_lookup
+ffffffff82087a1c r __ksymtab_pnp_activate_dev
+ffffffff82087a28 r __ksymtab_pnp_device_attach
+ffffffff82087a34 r __ksymtab_pnp_device_detach
+ffffffff82087a40 r __ksymtab_pnp_disable_dev
+ffffffff82087a4c r __ksymtab_pnp_get_resource
+ffffffff82087a58 r __ksymtab_pnp_is_active
+ffffffff82087a64 r __ksymtab_pnp_platform_devices
+ffffffff82087a70 r __ksymtab_pnp_possible_config
+ffffffff82087a7c r __ksymtab_pnp_range_reserved
+ffffffff82087a88 r __ksymtab_pnp_register_card_driver
+ffffffff82087a94 r __ksymtab_pnp_register_driver
+ffffffff82087aa0 r __ksymtab_pnp_release_card_device
+ffffffff82087aac r __ksymtab_pnp_request_card_device
+ffffffff82087ab8 r __ksymtab_pnp_start_dev
+ffffffff82087ac4 r __ksymtab_pnp_stop_dev
+ffffffff82087ad0 r __ksymtab_pnp_unregister_card_driver
+ffffffff82087adc r __ksymtab_pnp_unregister_driver
+ffffffff82087ae8 r __ksymtab_pnpacpi_protocol
+ffffffff82087af4 r __ksymtab_poll_freewait
+ffffffff82087b00 r __ksymtab_poll_initwait
+ffffffff82087b0c r __ksymtab_poly1305_core_blocks
+ffffffff82087b18 r __ksymtab_poly1305_core_emit
+ffffffff82087b24 r __ksymtab_poly1305_core_setkey
+ffffffff82087b30 r __ksymtab_posix_acl_alloc
+ffffffff82087b3c r __ksymtab_posix_acl_chmod
+ffffffff82087b48 r __ksymtab_posix_acl_equiv_mode
+ffffffff82087b54 r __ksymtab_posix_acl_from_mode
+ffffffff82087b60 r __ksymtab_posix_acl_from_xattr
+ffffffff82087b6c r __ksymtab_posix_acl_init
+ffffffff82087b78 r __ksymtab_posix_acl_to_xattr
+ffffffff82087b84 r __ksymtab_posix_acl_update_mode
+ffffffff82087b90 r __ksymtab_posix_acl_valid
+ffffffff82087b9c r __ksymtab_posix_lock_file
+ffffffff82087ba8 r __ksymtab_posix_test_lock
+ffffffff82087bb4 r __ksymtab_prandom_bytes_state
+ffffffff82087bc0 r __ksymtab_prandom_seed_full_state
+ffffffff82087bcc r __ksymtab_prandom_u32_state
+ffffffff82087bd8 r __ksymtab_preempt_count_add
+ffffffff82087be4 r __ksymtab_preempt_count_sub
+ffffffff82087bf0 r __ksymtab_preempt_schedule
+ffffffff82087bfc r __ksymtab_preempt_schedule_notrace_thunk
+ffffffff82087c08 r __ksymtab_preempt_schedule_thunk
+ffffffff82087c14 r __ksymtab_prepare_creds
+ffffffff82087c20 r __ksymtab_prepare_kernel_cred
+ffffffff82087c2c r __ksymtab_prepare_to_swait_event
+ffffffff82087c38 r __ksymtab_prepare_to_swait_exclusive
+ffffffff82087c44 r __ksymtab_prepare_to_wait
+ffffffff82087c50 r __ksymtab_prepare_to_wait_event
+ffffffff82087c5c r __ksymtab_prepare_to_wait_exclusive
+ffffffff82087c68 r __ksymtab_print_hex_dump
+ffffffff82087c74 r __ksymtab_printk_timed_ratelimit
+ffffffff82087c80 r __ksymtab_probe_irq_mask
+ffffffff82087c8c r __ksymtab_probe_irq_off
+ffffffff82087c98 r __ksymtab_probe_irq_on
+ffffffff82087ca4 r __ksymtab_proc_create
+ffffffff82087cb0 r __ksymtab_proc_create_data
+ffffffff82087cbc r __ksymtab_proc_create_mount_point
+ffffffff82087cc8 r __ksymtab_proc_create_seq_private
+ffffffff82087cd4 r __ksymtab_proc_create_single_data
+ffffffff82087ce0 r __ksymtab_proc_do_large_bitmap
+ffffffff82087cec r __ksymtab_proc_dobool
+ffffffff82087cf8 r __ksymtab_proc_dointvec
+ffffffff82087d04 r __ksymtab_proc_dointvec_jiffies
+ffffffff82087d10 r __ksymtab_proc_dointvec_minmax
+ffffffff82087d1c r __ksymtab_proc_dointvec_ms_jiffies
+ffffffff82087d28 r __ksymtab_proc_dointvec_userhz_jiffies
+ffffffff82087d34 r __ksymtab_proc_dostring
+ffffffff82087d40 r __ksymtab_proc_douintvec
+ffffffff82087d4c r __ksymtab_proc_doulongvec_minmax
+ffffffff82087d58 r __ksymtab_proc_doulongvec_ms_jiffies_minmax
+ffffffff82087d64 r __ksymtab_proc_mkdir
+ffffffff82087d70 r __ksymtab_proc_mkdir_mode
+ffffffff82087d7c r __ksymtab_proc_remove
+ffffffff82087d88 r __ksymtab_proc_set_size
+ffffffff82087d94 r __ksymtab_proc_set_user
+ffffffff82087da0 r __ksymtab_proc_symlink
+ffffffff82087dac r __ksymtab_processors
+ffffffff82087db8 r __ksymtab_profile_pc
+ffffffff82087dc4 r __ksymtab_proto_register
+ffffffff82087dd0 r __ksymtab_proto_unregister
+ffffffff82087ddc r __ksymtab_psched_ppscfg_precompute
+ffffffff82087de8 r __ksymtab_psched_ratecfg_precompute
+ffffffff82087df4 r __ksymtab_pskb_expand_head
+ffffffff82087e00 r __ksymtab_pskb_extract
+ffffffff82087e0c r __ksymtab_pskb_trim_rcsum_slow
+ffffffff82087e18 r __ksymtab_ptrs_per_p4d
+ffffffff82087e24 r __ksymtab_put_cmsg
+ffffffff82087e30 r __ksymtab_put_cmsg_scm_timestamping
+ffffffff82087e3c r __ksymtab_put_cmsg_scm_timestamping64
+ffffffff82087e48 r __ksymtab_put_disk
+ffffffff82087e54 r __ksymtab_put_fs_context
+ffffffff82087e60 r __ksymtab_put_pages_list
+ffffffff82087e6c r __ksymtab_put_unused_fd
+ffffffff82087e78 r __ksymtab_put_user_ifreq
+ffffffff82087e84 r __ksymtab_pv_ops
+ffffffff82087e90 r __ksymtab_qdf2400_e44_present
+ffffffff82087e9c r __ksymtab_qdisc_create_dflt
+ffffffff82087ea8 r __ksymtab_qdisc_put
+ffffffff82087eb4 r __ksymtab_qdisc_put_unlocked
+ffffffff82087ec0 r __ksymtab_qdisc_reset
+ffffffff82087ecc r __ksymtab_queue_delayed_work_on
+ffffffff82087ed8 r __ksymtab_queue_rcu_work
+ffffffff82087ee4 r __ksymtab_queue_work_on
+ffffffff82087ef0 r __ksymtab_queued_read_lock_slowpath
+ffffffff82087efc r __ksymtab_queued_spin_lock_slowpath
+ffffffff82087f08 r __ksymtab_queued_write_lock_slowpath
+ffffffff82087f14 r __ksymtab_radix_tree_delete
+ffffffff82087f20 r __ksymtab_radix_tree_delete_item
+ffffffff82087f2c r __ksymtab_radix_tree_gang_lookup
+ffffffff82087f38 r __ksymtab_radix_tree_gang_lookup_tag
+ffffffff82087f44 r __ksymtab_radix_tree_gang_lookup_tag_slot
+ffffffff82087f50 r __ksymtab_radix_tree_insert
+ffffffff82087f5c r __ksymtab_radix_tree_iter_delete
+ffffffff82087f68 r __ksymtab_radix_tree_iter_resume
+ffffffff82087f74 r __ksymtab_radix_tree_lookup
+ffffffff82087f80 r __ksymtab_radix_tree_lookup_slot
+ffffffff82087f8c r __ksymtab_radix_tree_maybe_preload
+ffffffff82087f98 r __ksymtab_radix_tree_next_chunk
+ffffffff82087fa4 r __ksymtab_radix_tree_preload
+ffffffff82087fb0 r __ksymtab_radix_tree_replace_slot
+ffffffff82087fbc r __ksymtab_radix_tree_tag_clear
+ffffffff82087fc8 r __ksymtab_radix_tree_tag_get
+ffffffff82087fd4 r __ksymtab_radix_tree_tag_set
+ffffffff82087fe0 r __ksymtab_radix_tree_tagged
+ffffffff82087fec r __ksymtab_ram_aops
+ffffffff82087ff8 r __ksymtab_rational_best_approximation
+ffffffff82088004 r __ksymtab_rawv6_mh_filter_register
+ffffffff82088010 r __ksymtab_rawv6_mh_filter_unregister
+ffffffff8208801c r __ksymtab_rb_erase
+ffffffff82088028 r __ksymtab_rb_first
+ffffffff82088034 r __ksymtab_rb_first_postorder
+ffffffff82088040 r __ksymtab_rb_insert_color
+ffffffff8208804c r __ksymtab_rb_last
+ffffffff82088058 r __ksymtab_rb_next
+ffffffff82088064 r __ksymtab_rb_next_postorder
+ffffffff82088070 r __ksymtab_rb_prev
+ffffffff8208807c r __ksymtab_rb_replace_node
+ffffffff82088088 r __ksymtab_rb_replace_node_rcu
+ffffffff82088094 r __ksymtab_rdmsr_on_cpu
+ffffffff820880a0 r __ksymtab_rdmsr_on_cpus
+ffffffff820880ac r __ksymtab_rdmsr_safe_on_cpu
+ffffffff820880b8 r __ksymtab_rdmsr_safe_regs
+ffffffff820880c4 r __ksymtab_rdmsr_safe_regs_on_cpu
+ffffffff820880d0 r __ksymtab_rdmsrl_on_cpu
+ffffffff820880dc r __ksymtab_rdmsrl_safe_on_cpu
+ffffffff820880e8 r __ksymtab_read_cache_folio
+ffffffff820880f4 r __ksymtab_read_cache_page
+ffffffff82088100 r __ksymtab_read_cache_page_gfp
+ffffffff8208810c r __ksymtab_readahead_expand
+ffffffff82088118 r __ksymtab_recalc_sigpending
+ffffffff82088124 r __ksymtab_recalibrate_cpu_khz
+ffffffff82088130 r __ksymtab_reciprocal_value
+ffffffff8208813c r __ksymtab_reciprocal_value_adv
+ffffffff82088148 r __ksymtab_redirty_page_for_writepage
+ffffffff82088154 r __ksymtab_redraw_screen
+ffffffff82088160 r __ksymtab_refcount_dec_and_lock
+ffffffff8208816c r __ksymtab_refcount_dec_and_lock_irqsave
+ffffffff82088178 r __ksymtab_refcount_dec_and_mutex_lock
+ffffffff82088184 r __ksymtab_refcount_dec_and_rtnl_lock
+ffffffff82088190 r __ksymtab_refcount_dec_if_one
+ffffffff8208819c r __ksymtab_refcount_dec_not_one
+ffffffff820881a8 r __ksymtab_refcount_warn_saturate
+ffffffff820881b4 r __ksymtab_refresh_frequency_limits
+ffffffff820881c0 r __ksymtab_register_acpi_notifier
+ffffffff820881cc r __ksymtab_register_blocking_lsm_notifier
+ffffffff820881d8 r __ksymtab_register_chrdev_region
+ffffffff820881e4 r __ksymtab_register_console
+ffffffff820881f0 r __ksymtab_register_fib_notifier
+ffffffff820881fc r __ksymtab_register_filesystem
+ffffffff82088208 r __ksymtab_register_inet6addr_notifier
+ffffffff82088214 r __ksymtab_register_inet6addr_validator_notifier
+ffffffff82088220 r __ksymtab_register_inetaddr_notifier
+ffffffff8208822c r __ksymtab_register_inetaddr_validator_notifier
+ffffffff82088238 r __ksymtab_register_memory_notifier
+ffffffff82088244 r __ksymtab_register_module_notifier
+ffffffff82088250 r __ksymtab_register_netdev
+ffffffff8208825c r __ksymtab_register_netdevice
+ffffffff82088268 r __ksymtab_register_netdevice_notifier
+ffffffff82088274 r __ksymtab_register_netdevice_notifier_dev_net
+ffffffff82088280 r __ksymtab_register_netdevice_notifier_net
+ffffffff8208828c r __ksymtab_register_nexthop_notifier
+ffffffff82088298 r __ksymtab_register_reboot_notifier
+ffffffff820882a4 r __ksymtab_register_restart_handler
+ffffffff820882b0 r __ksymtab_register_shrinker
+ffffffff820882bc r __ksymtab_register_sysctl
+ffffffff820882c8 r __ksymtab_register_sysctl_mount_point
+ffffffff820882d4 r __ksymtab_register_sysctl_paths
+ffffffff820882e0 r __ksymtab_register_sysctl_table
+ffffffff820882ec r __ksymtab_register_sysrq_key
+ffffffff820882f8 r __ksymtab_regset_get
+ffffffff82088304 r __ksymtab_regset_get_alloc
+ffffffff82088310 r __ksymtab_release_dentry_name_snapshot
+ffffffff8208831c r __ksymtab_release_evntsel_nmi
+ffffffff82088328 r __ksymtab_release_firmware
+ffffffff82088334 r __ksymtab_release_pages
+ffffffff82088340 r __ksymtab_release_perfctr_nmi
+ffffffff8208834c r __ksymtab_release_resource
+ffffffff82088358 r __ksymtab_release_sock
+ffffffff82088364 r __ksymtab_remap_pfn_range
+ffffffff82088370 r __ksymtab_remap_vmalloc_range
+ffffffff8208837c r __ksymtab_remove_arg_zero
+ffffffff82088388 r __ksymtab_remove_proc_entry
+ffffffff82088394 r __ksymtab_remove_proc_subtree
+ffffffff820883a0 r __ksymtab_remove_wait_queue
+ffffffff820883ac r __ksymtab_rename_lock
+ffffffff820883b8 r __ksymtab_request_dma
+ffffffff820883c4 r __ksymtab_request_firmware
+ffffffff820883d0 r __ksymtab_request_firmware_into_buf
+ffffffff820883dc r __ksymtab_request_firmware_nowait
+ffffffff820883e8 r __ksymtab_request_partial_firmware_into_buf
+ffffffff820883f4 r __ksymtab_request_resource
+ffffffff82088400 r __ksymtab_request_threaded_irq
+ffffffff8208840c r __ksymtab_reservation_ww_class
+ffffffff82088418 r __ksymtab_reserve_evntsel_nmi
+ffffffff82088424 r __ksymtab_reserve_perfctr_nmi
+ffffffff82088430 r __ksymtab_reset_devices
+ffffffff8208843c r __ksymtab_resource_list_create_entry
+ffffffff82088448 r __ksymtab_resource_list_free
+ffffffff82088454 r __ksymtab_retire_super
+ffffffff82088460 r __ksymtab_reuseport_add_sock
+ffffffff8208846c r __ksymtab_reuseport_alloc
+ffffffff82088478 r __ksymtab_reuseport_attach_prog
+ffffffff82088484 r __ksymtab_reuseport_detach_prog
+ffffffff82088490 r __ksymtab_reuseport_detach_sock
+ffffffff8208849c r __ksymtab_reuseport_has_conns_set
+ffffffff820884a8 r __ksymtab_reuseport_migrate_sock
+ffffffff820884b4 r __ksymtab_reuseport_select_sock
+ffffffff820884c0 r __ksymtab_reuseport_stop_listen_sock
+ffffffff820884cc r __ksymtab_revert_creds
+ffffffff820884d8 r __ksymtab_rfs_needed
+ffffffff820884e4 r __ksymtab_rng_is_initialized
+ffffffff820884f0 r __ksymtab_rps_cpu_mask
+ffffffff820884fc r __ksymtab_rps_may_expire_flow
+ffffffff82088508 r __ksymtab_rps_needed
+ffffffff82088514 r __ksymtab_rps_sock_flow_table
+ffffffff82088520 r __ksymtab_rt6_lookup
+ffffffff8208852c r __ksymtab_rt_dst_alloc
+ffffffff82088538 r __ksymtab_rt_dst_clone
+ffffffff82088544 r __ksymtab_rt_mutex_base_init
+ffffffff82088550 r __ksymtab_rtc_add_group
+ffffffff8208855c r __ksymtab_rtc_add_groups
+ffffffff82088568 r __ksymtab_rtc_cmos_read
+ffffffff82088574 r __ksymtab_rtc_cmos_write
+ffffffff82088580 r __ksymtab_rtc_lock
+ffffffff8208858c r __ksymtab_rtc_month_days
+ffffffff82088598 r __ksymtab_rtc_time64_to_tm
+ffffffff820885a4 r __ksymtab_rtc_tm_to_time64
+ffffffff820885b0 r __ksymtab_rtc_valid_tm
+ffffffff820885bc r __ksymtab_rtc_year_days
+ffffffff820885c8 r __ksymtab_rtnetlink_put_metrics
+ffffffff820885d4 r __ksymtab_rtnl_configure_link
+ffffffff820885e0 r __ksymtab_rtnl_create_link
+ffffffff820885ec r __ksymtab_rtnl_is_locked
+ffffffff820885f8 r __ksymtab_rtnl_kfree_skbs
+ffffffff82088604 r __ksymtab_rtnl_link_get_net
+ffffffff82088610 r __ksymtab_rtnl_lock
+ffffffff8208861c r __ksymtab_rtnl_lock_killable
+ffffffff82088628 r __ksymtab_rtnl_nla_parse_ifla
+ffffffff82088634 r __ksymtab_rtnl_notify
+ffffffff82088640 r __ksymtab_rtnl_offload_xstats_notify
+ffffffff8208864c r __ksymtab_rtnl_set_sk_err
+ffffffff82088658 r __ksymtab_rtnl_trylock
+ffffffff82088664 r __ksymtab_rtnl_unicast
+ffffffff82088670 r __ksymtab_rtnl_unlock
+ffffffff8208867c r __ksymtab_rw_verify_area
+ffffffff82088688 r __ksymtab_sb_min_blocksize
+ffffffff82088694 r __ksymtab_sb_set_blocksize
+ffffffff820886a0 r __ksymtab_schedule
+ffffffff820886ac r __ksymtab_schedule_timeout
+ffffffff820886b8 r __ksymtab_schedule_timeout_idle
+ffffffff820886c4 r __ksymtab_schedule_timeout_interruptible
+ffffffff820886d0 r __ksymtab_schedule_timeout_killable
+ffffffff820886dc r __ksymtab_schedule_timeout_uninterruptible
+ffffffff820886e8 r __ksymtab_scm_detach_fds
+ffffffff820886f4 r __ksymtab_scm_fp_dup
+ffffffff82088700 r __ksymtab_scnprintf
+ffffffff8208870c r __ksymtab_screen_info
+ffffffff82088718 r __ksymtab_secpath_set
+ffffffff82088724 r __ksymtab_secure_ipv6_port_ephemeral
+ffffffff82088730 r __ksymtab_secure_tcpv6_seq
+ffffffff8208873c r __ksymtab_secure_tcpv6_ts_off
+ffffffff82088748 r __ksymtab_security_cred_getsecid
+ffffffff82088754 r __ksymtab_security_current_getsecid_subj
+ffffffff82088760 r __ksymtab_security_d_instantiate
+ffffffff8208876c r __ksymtab_security_dentry_create_files_as
+ffffffff82088778 r __ksymtab_security_dentry_init_security
+ffffffff82088784 r __ksymtab_security_free_mnt_opts
+ffffffff82088790 r __ksymtab_security_inet_conn_established
+ffffffff8208879c r __ksymtab_security_inet_conn_request
+ffffffff820887a8 r __ksymtab_security_inode_copy_up
+ffffffff820887b4 r __ksymtab_security_inode_copy_up_xattr
+ffffffff820887c0 r __ksymtab_security_inode_getsecctx
+ffffffff820887cc r __ksymtab_security_inode_init_security
+ffffffff820887d8 r __ksymtab_security_inode_invalidate_secctx
+ffffffff820887e4 r __ksymtab_security_inode_listsecurity
+ffffffff820887f0 r __ksymtab_security_inode_notifysecctx
+ffffffff820887fc r __ksymtab_security_inode_setsecctx
+ffffffff82088808 r __ksymtab_security_ismaclabel
+ffffffff82088814 r __ksymtab_security_locked_down
+ffffffff82088820 r __ksymtab_security_old_inode_init_security
+ffffffff8208882c r __ksymtab_security_release_secctx
+ffffffff82088838 r __ksymtab_security_req_classify_flow
+ffffffff82088844 r __ksymtab_security_sb_clone_mnt_opts
+ffffffff82088850 r __ksymtab_security_sb_eat_lsm_opts
+ffffffff8208885c r __ksymtab_security_sb_mnt_opts_compat
+ffffffff82088868 r __ksymtab_security_sb_remount
+ffffffff82088874 r __ksymtab_security_sb_set_mnt_opts
+ffffffff82088880 r __ksymtab_security_sctp_assoc_established
+ffffffff8208888c r __ksymtab_security_sctp_assoc_request
+ffffffff82088898 r __ksymtab_security_sctp_bind_connect
+ffffffff820888a4 r __ksymtab_security_sctp_sk_clone
+ffffffff820888b0 r __ksymtab_security_secctx_to_secid
+ffffffff820888bc r __ksymtab_security_secid_to_secctx
+ffffffff820888c8 r __ksymtab_security_secmark_refcount_dec
+ffffffff820888d4 r __ksymtab_security_secmark_refcount_inc
+ffffffff820888e0 r __ksymtab_security_secmark_relabel_packet
+ffffffff820888ec r __ksymtab_security_sk_classify_flow
+ffffffff820888f8 r __ksymtab_security_sk_clone
+ffffffff82088904 r __ksymtab_security_sock_graft
+ffffffff82088910 r __ksymtab_security_sock_rcv_skb
+ffffffff8208891c r __ksymtab_security_socket_getpeersec_dgram
+ffffffff82088928 r __ksymtab_security_socket_socketpair
+ffffffff82088934 r __ksymtab_security_task_getsecid_obj
+ffffffff82088940 r __ksymtab_security_tun_dev_alloc_security
+ffffffff8208894c r __ksymtab_security_tun_dev_attach
+ffffffff82088958 r __ksymtab_security_tun_dev_attach_queue
+ffffffff82088964 r __ksymtab_security_tun_dev_create
+ffffffff82088970 r __ksymtab_security_tun_dev_free_security
+ffffffff8208897c r __ksymtab_security_tun_dev_open
+ffffffff82088988 r __ksymtab_security_unix_may_send
+ffffffff82088994 r __ksymtab_security_unix_stream_connect
+ffffffff820889a0 r __ksymtab_send_sig
+ffffffff820889ac r __ksymtab_send_sig_info
+ffffffff820889b8 r __ksymtab_send_sig_mceerr
+ffffffff820889c4 r __ksymtab_seq_bprintf
+ffffffff820889d0 r __ksymtab_seq_dentry
+ffffffff820889dc r __ksymtab_seq_escape_mem
+ffffffff820889e8 r __ksymtab_seq_file_path
+ffffffff820889f4 r __ksymtab_seq_hex_dump
+ffffffff82088a00 r __ksymtab_seq_hlist_next
+ffffffff82088a0c r __ksymtab_seq_hlist_next_percpu
+ffffffff82088a18 r __ksymtab_seq_hlist_next_rcu
+ffffffff82088a24 r __ksymtab_seq_hlist_start
+ffffffff82088a30 r __ksymtab_seq_hlist_start_head
+ffffffff82088a3c r __ksymtab_seq_hlist_start_head_rcu
+ffffffff82088a48 r __ksymtab_seq_hlist_start_percpu
+ffffffff82088a54 r __ksymtab_seq_hlist_start_rcu
+ffffffff82088a60 r __ksymtab_seq_list_next
+ffffffff82088a6c r __ksymtab_seq_list_next_rcu
+ffffffff82088a78 r __ksymtab_seq_list_start
+ffffffff82088a84 r __ksymtab_seq_list_start_head
+ffffffff82088a90 r __ksymtab_seq_list_start_head_rcu
+ffffffff82088a9c r __ksymtab_seq_list_start_rcu
+ffffffff82088aa8 r __ksymtab_seq_lseek
+ffffffff82088ab4 r __ksymtab_seq_open
+ffffffff82088ac0 r __ksymtab_seq_open_private
+ffffffff82088acc r __ksymtab_seq_pad
+ffffffff82088ad8 r __ksymtab_seq_path
+ffffffff82088ae4 r __ksymtab_seq_printf
+ffffffff82088af0 r __ksymtab_seq_put_decimal_ll
+ffffffff82088afc r __ksymtab_seq_put_decimal_ull
+ffffffff82088b08 r __ksymtab_seq_putc
+ffffffff82088b14 r __ksymtab_seq_puts
+ffffffff82088b20 r __ksymtab_seq_read
+ffffffff82088b2c r __ksymtab_seq_read_iter
+ffffffff82088b38 r __ksymtab_seq_release
+ffffffff82088b44 r __ksymtab_seq_release_private
+ffffffff82088b50 r __ksymtab_seq_vprintf
+ffffffff82088b5c r __ksymtab_seq_write
+ffffffff82088b68 r __ksymtab_serial8250_do_pm
+ffffffff82088b74 r __ksymtab_serial8250_do_set_termios
+ffffffff82088b80 r __ksymtab_serial8250_register_8250_port
+ffffffff82088b8c r __ksymtab_serial8250_resume_port
+ffffffff82088b98 r __ksymtab_serial8250_set_isa_configurator
+ffffffff82088ba4 r __ksymtab_serial8250_suspend_port
+ffffffff82088bb0 r __ksymtab_serial8250_unregister_port
+ffffffff82088bbc r __ksymtab_serio_bus
+ffffffff82088bc8 r __ksymtab_serio_close
+ffffffff82088bd4 r __ksymtab_serio_interrupt
+ffffffff82088be0 r __ksymtab_serio_open
+ffffffff82088bec r __ksymtab_serio_reconnect
+ffffffff82088bf8 r __ksymtab_serio_rescan
+ffffffff82088c04 r __ksymtab_serio_unregister_child_port
+ffffffff82088c10 r __ksymtab_serio_unregister_driver
+ffffffff82088c1c r __ksymtab_serio_unregister_port
+ffffffff82088c28 r __ksymtab_set_anon_super
+ffffffff82088c34 r __ksymtab_set_anon_super_fc
+ffffffff82088c40 r __ksymtab_set_bh_page
+ffffffff82088c4c r __ksymtab_set_binfmt
+ffffffff82088c58 r __ksymtab_set_blocksize
+ffffffff82088c64 r __ksymtab_set_cached_acl
+ffffffff82088c70 r __ksymtab_set_capacity
+ffffffff82088c7c r __ksymtab_set_create_files_as
+ffffffff82088c88 r __ksymtab_set_current_groups
+ffffffff82088c94 r __ksymtab_set_disk_ro
+ffffffff82088ca0 r __ksymtab_set_freezable
+ffffffff82088cac r __ksymtab_set_groups
+ffffffff82088cb8 r __ksymtab_set_memory_uc
+ffffffff82088cc4 r __ksymtab_set_memory_wb
+ffffffff82088cd0 r __ksymtab_set_memory_wc
+ffffffff82088cdc r __ksymtab_set_nlink
+ffffffff82088ce8 r __ksymtab_set_normalized_timespec64
+ffffffff82088cf4 r __ksymtab_set_page_dirty
+ffffffff82088d00 r __ksymtab_set_page_dirty_lock
+ffffffff82088d0c r __ksymtab_set_page_writeback
+ffffffff82088d18 r __ksymtab_set_pages_array_uc
+ffffffff82088d24 r __ksymtab_set_pages_array_wb
+ffffffff82088d30 r __ksymtab_set_pages_array_wc
+ffffffff82088d3c r __ksymtab_set_pages_uc
+ffffffff82088d48 r __ksymtab_set_pages_wb
+ffffffff82088d54 r __ksymtab_set_posix_acl
+ffffffff82088d60 r __ksymtab_set_security_override
+ffffffff82088d6c r __ksymtab_set_security_override_from_ctx
+ffffffff82088d78 r __ksymtab_set_user_nice
+ffffffff82088d84 r __ksymtab_setattr_copy
+ffffffff82088d90 r __ksymtab_setattr_prepare
+ffffffff82088d9c r __ksymtab_setattr_should_drop_suidgid
+ffffffff82088da8 r __ksymtab_setup_arg_pages
+ffffffff82088db4 r __ksymtab_setup_max_cpus
+ffffffff82088dc0 r __ksymtab_setup_new_exec
+ffffffff82088dcc r __ksymtab_sg_alloc_append_table_from_pages
+ffffffff82088dd8 r __ksymtab_sg_alloc_table
+ffffffff82088de4 r __ksymtab_sg_alloc_table_from_pages_segment
+ffffffff82088df0 r __ksymtab_sg_copy_buffer
+ffffffff82088dfc r __ksymtab_sg_copy_from_buffer
+ffffffff82088e08 r __ksymtab_sg_copy_to_buffer
+ffffffff82088e14 r __ksymtab_sg_free_append_table
+ffffffff82088e20 r __ksymtab_sg_free_table
+ffffffff82088e2c r __ksymtab_sg_init_one
+ffffffff82088e38 r __ksymtab_sg_init_table
+ffffffff82088e44 r __ksymtab_sg_last
+ffffffff82088e50 r __ksymtab_sg_miter_next
+ffffffff82088e5c r __ksymtab_sg_miter_skip
+ffffffff82088e68 r __ksymtab_sg_miter_start
+ffffffff82088e74 r __ksymtab_sg_miter_stop
+ffffffff82088e80 r __ksymtab_sg_nents
+ffffffff82088e8c r __ksymtab_sg_nents_for_len
+ffffffff82088e98 r __ksymtab_sg_next
+ffffffff82088ea4 r __ksymtab_sg_pcopy_from_buffer
+ffffffff82088eb0 r __ksymtab_sg_pcopy_to_buffer
+ffffffff82088ebc r __ksymtab_sg_zero_buffer
+ffffffff82088ec8 r __ksymtab_sget
+ffffffff82088ed4 r __ksymtab_sget_fc
+ffffffff82088ee0 r __ksymtab_sgl_alloc
+ffffffff82088eec r __ksymtab_sgl_alloc_order
+ffffffff82088ef8 r __ksymtab_sgl_free
+ffffffff82088f04 r __ksymtab_sgl_free_n_order
+ffffffff82088f10 r __ksymtab_sgl_free_order
+ffffffff82088f1c r __ksymtab_sha1_init
+ffffffff82088f28 r __ksymtab_sha1_transform
+ffffffff82088f34 r __ksymtab_sha224_final
+ffffffff82088f40 r __ksymtab_sha224_update
+ffffffff82088f4c r __ksymtab_sha256
+ffffffff82088f58 r __ksymtab_sha256_final
+ffffffff82088f64 r __ksymtab_sha256_update
+ffffffff82088f70 r __ksymtab_shmem_aops
+ffffffff82088f7c r __ksymtab_shrink_dcache_parent
+ffffffff82088f88 r __ksymtab_shrink_dcache_sb
+ffffffff82088f94 r __ksymtab_si_meminfo
+ffffffff82088fa0 r __ksymtab_sigprocmask
+ffffffff82088fac r __ksymtab_simple_dentry_operations
+ffffffff82088fb8 r __ksymtab_simple_dir_inode_operations
+ffffffff82088fc4 r __ksymtab_simple_dir_operations
+ffffffff82088fd0 r __ksymtab_simple_empty
+ffffffff82088fdc r __ksymtab_simple_fill_super
+ffffffff82088fe8 r __ksymtab_simple_get_link
+ffffffff82088ff4 r __ksymtab_simple_getattr
+ffffffff82089000 r __ksymtab_simple_link
+ffffffff8208900c r __ksymtab_simple_lookup
+ffffffff82089018 r __ksymtab_simple_nosetlease
+ffffffff82089024 r __ksymtab_simple_open
+ffffffff82089030 r __ksymtab_simple_pin_fs
+ffffffff8208903c r __ksymtab_simple_read_from_buffer
+ffffffff82089048 r __ksymtab_simple_recursive_removal
+ffffffff82089054 r __ksymtab_simple_release_fs
+ffffffff82089060 r __ksymtab_simple_rename
+ffffffff8208906c r __ksymtab_simple_rmdir
+ffffffff82089078 r __ksymtab_simple_setattr
+ffffffff82089084 r __ksymtab_simple_statfs
+ffffffff82089090 r __ksymtab_simple_strtol
+ffffffff8208909c r __ksymtab_simple_strtoll
+ffffffff820890a8 r __ksymtab_simple_strtoul
+ffffffff820890b4 r __ksymtab_simple_strtoull
+ffffffff820890c0 r __ksymtab_simple_symlink_inode_operations
+ffffffff820890cc r __ksymtab_simple_transaction_get
+ffffffff820890d8 r __ksymtab_simple_transaction_read
+ffffffff820890e4 r __ksymtab_simple_transaction_release
+ffffffff820890f0 r __ksymtab_simple_transaction_set
+ffffffff820890fc r __ksymtab_simple_unlink
+ffffffff82089108 r __ksymtab_simple_write_begin
+ffffffff82089114 r __ksymtab_simple_write_to_buffer
+ffffffff82089120 r __ksymtab_single_open
+ffffffff8208912c r __ksymtab_single_open_size
+ffffffff82089138 r __ksymtab_single_release
+ffffffff82089144 r __ksymtab_single_task_running
+ffffffff82089150 r __ksymtab_siphash_1u32
+ffffffff8208915c r __ksymtab_siphash_1u64
+ffffffff82089168 r __ksymtab_siphash_2u64
+ffffffff82089174 r __ksymtab_siphash_3u32
+ffffffff82089180 r __ksymtab_siphash_3u64
+ffffffff8208918c r __ksymtab_siphash_4u64
+ffffffff82089198 r __ksymtab_sk_alloc
+ffffffff820891a4 r __ksymtab_sk_busy_loop_end
+ffffffff820891b0 r __ksymtab_sk_capable
+ffffffff820891bc r __ksymtab_sk_common_release
+ffffffff820891c8 r __ksymtab_sk_dst_check
+ffffffff820891d4 r __ksymtab_sk_error_report
+ffffffff820891e0 r __ksymtab_sk_filter_trim_cap
+ffffffff820891ec r __ksymtab_sk_free
+ffffffff820891f8 r __ksymtab_sk_mc_loop
+ffffffff82089204 r __ksymtab_sk_net_capable
+ffffffff82089210 r __ksymtab_sk_ns_capable
+ffffffff8208921c r __ksymtab_sk_page_frag_refill
+ffffffff82089228 r __ksymtab_sk_reset_timer
+ffffffff82089234 r __ksymtab_sk_send_sigurg
+ffffffff82089240 r __ksymtab_sk_stop_timer
+ffffffff8208924c r __ksymtab_sk_stop_timer_sync
+ffffffff82089258 r __ksymtab_sk_stream_error
+ffffffff82089264 r __ksymtab_sk_stream_kill_queues
+ffffffff82089270 r __ksymtab_sk_stream_wait_close
+ffffffff8208927c r __ksymtab_sk_stream_wait_connect
+ffffffff82089288 r __ksymtab_sk_stream_wait_memory
+ffffffff82089294 r __ksymtab_sk_wait_data
+ffffffff820892a0 r __ksymtab_skb_abort_seq_read
+ffffffff820892ac r __ksymtab_skb_add_rx_frag
+ffffffff820892b8 r __ksymtab_skb_append
+ffffffff820892c4 r __ksymtab_skb_checksum
+ffffffff820892d0 r __ksymtab_skb_checksum_help
+ffffffff820892dc r __ksymtab_skb_checksum_setup
+ffffffff820892e8 r __ksymtab_skb_checksum_trimmed
+ffffffff820892f4 r __ksymtab_skb_clone
+ffffffff82089300 r __ksymtab_skb_clone_sk
+ffffffff8208930c r __ksymtab_skb_coalesce_rx_frag
+ffffffff82089318 r __ksymtab_skb_copy
+ffffffff82089324 r __ksymtab_skb_copy_and_csum_bits
+ffffffff82089330 r __ksymtab_skb_copy_and_csum_datagram_msg
+ffffffff8208933c r __ksymtab_skb_copy_and_csum_dev
+ffffffff82089348 r __ksymtab_skb_copy_and_hash_datagram_iter
+ffffffff82089354 r __ksymtab_skb_copy_bits
+ffffffff82089360 r __ksymtab_skb_copy_datagram_from_iter
+ffffffff8208936c r __ksymtab_skb_copy_datagram_iter
+ffffffff82089378 r __ksymtab_skb_copy_expand
+ffffffff82089384 r __ksymtab_skb_copy_header
+ffffffff82089390 r __ksymtab_skb_csum_hwoffload_help
+ffffffff8208939c r __ksymtab_skb_dequeue
+ffffffff820893a8 r __ksymtab_skb_dequeue_tail
+ffffffff820893b4 r __ksymtab_skb_dump
+ffffffff820893c0 r __ksymtab_skb_ensure_writable
+ffffffff820893cc r __ksymtab_skb_eth_gso_segment
+ffffffff820893d8 r __ksymtab_skb_eth_pop
+ffffffff820893e4 r __ksymtab_skb_eth_push
+ffffffff820893f0 r __ksymtab_skb_expand_head
+ffffffff820893fc r __ksymtab_skb_ext_add
+ffffffff82089408 r __ksymtab_skb_find_text
+ffffffff82089414 r __ksymtab_skb_flow_dissect_ct
+ffffffff82089420 r __ksymtab_skb_flow_dissect_hash
+ffffffff8208942c r __ksymtab_skb_flow_dissect_meta
+ffffffff82089438 r __ksymtab_skb_flow_dissect_tunnel_info
+ffffffff82089444 r __ksymtab_skb_flow_dissector_init
+ffffffff82089450 r __ksymtab_skb_flow_get_icmp_tci
+ffffffff8208945c r __ksymtab_skb_free_datagram
+ffffffff82089468 r __ksymtab_skb_get_hash_perturb
+ffffffff82089474 r __ksymtab_skb_headers_offset_update
+ffffffff82089480 r __ksymtab_skb_kill_datagram
+ffffffff8208948c r __ksymtab_skb_mac_gso_segment
+ffffffff82089498 r __ksymtab_skb_orphan_partial
+ffffffff820894a4 r __ksymtab_skb_page_frag_refill
+ffffffff820894b0 r __ksymtab_skb_prepare_seq_read
+ffffffff820894bc r __ksymtab_skb_pull
+ffffffff820894c8 r __ksymtab_skb_pull_data
+ffffffff820894d4 r __ksymtab_skb_push
+ffffffff820894e0 r __ksymtab_skb_put
+ffffffff820894ec r __ksymtab_skb_queue_head
+ffffffff820894f8 r __ksymtab_skb_queue_purge
+ffffffff82089504 r __ksymtab_skb_queue_tail
+ffffffff82089510 r __ksymtab_skb_realloc_headroom
+ffffffff8208951c r __ksymtab_skb_recv_datagram
+ffffffff82089528 r __ksymtab_skb_seq_read
+ffffffff82089534 r __ksymtab_skb_set_owner_w
+ffffffff82089540 r __ksymtab_skb_split
+ffffffff8208954c r __ksymtab_skb_store_bits
+ffffffff82089558 r __ksymtab_skb_trim
+ffffffff82089564 r __ksymtab_skb_try_coalesce
+ffffffff82089570 r __ksymtab_skb_tunnel_check_pmtu
+ffffffff8208957c r __ksymtab_skb_tx_error
+ffffffff82089588 r __ksymtab_skb_udp_tunnel_segment
+ffffffff82089594 r __ksymtab_skb_unlink
+ffffffff820895a0 r __ksymtab_skb_vlan_pop
+ffffffff820895ac r __ksymtab_skb_vlan_push
+ffffffff820895b8 r __ksymtab_skb_vlan_untag
+ffffffff820895c4 r __ksymtab_skip_spaces
+ffffffff820895d0 r __ksymtab_slash_name
+ffffffff820895dc r __ksymtab_smp_call_function
+ffffffff820895e8 r __ksymtab_smp_call_function_many
+ffffffff820895f4 r __ksymtab_smp_call_function_single
+ffffffff82089600 r __ksymtab_smp_num_siblings
+ffffffff8208960c r __ksymtab_snprintf
+ffffffff82089618 r __ksymtab_sock_alloc
+ffffffff82089624 r __ksymtab_sock_alloc_file
+ffffffff82089630 r __ksymtab_sock_alloc_send_pskb
+ffffffff8208963c r __ksymtab_sock_bind_add
+ffffffff82089648 r __ksymtab_sock_bindtoindex
+ffffffff82089654 r __ksymtab_sock_cmsg_send
+ffffffff82089660 r __ksymtab_sock_common_getsockopt
+ffffffff8208966c r __ksymtab_sock_common_recvmsg
+ffffffff82089678 r __ksymtab_sock_common_setsockopt
+ffffffff82089684 r __ksymtab_sock_copy_user_timeval
+ffffffff82089690 r __ksymtab_sock_create
+ffffffff8208969c r __ksymtab_sock_create_kern
+ffffffff820896a8 r __ksymtab_sock_create_lite
+ffffffff820896b4 r __ksymtab_sock_dequeue_err_skb
+ffffffff820896c0 r __ksymtab_sock_diag_put_filterinfo
+ffffffff820896cc r __ksymtab_sock_edemux
+ffffffff820896d8 r __ksymtab_sock_efree
+ffffffff820896e4 r __ksymtab_sock_enable_timestamps
+ffffffff820896f0 r __ksymtab_sock_from_file
+ffffffff820896fc r __ksymtab_sock_get_timeout
+ffffffff82089708 r __ksymtab_sock_gettstamp
+ffffffff82089714 r __ksymtab_sock_i_ino
+ffffffff82089720 r __ksymtab_sock_i_uid
+ffffffff8208972c r __ksymtab_sock_init_data
+ffffffff82089738 r __ksymtab_sock_init_data_uid
+ffffffff82089744 r __ksymtab_sock_kfree_s
+ffffffff82089750 r __ksymtab_sock_kmalloc
+ffffffff8208975c r __ksymtab_sock_kzfree_s
+ffffffff82089768 r __ksymtab_sock_load_diag_module
+ffffffff82089774 r __ksymtab_sock_no_accept
+ffffffff82089780 r __ksymtab_sock_no_bind
+ffffffff8208978c r __ksymtab_sock_no_connect
+ffffffff82089798 r __ksymtab_sock_no_getname
+ffffffff820897a4 r __ksymtab_sock_no_ioctl
+ffffffff820897b0 r __ksymtab_sock_no_linger
+ffffffff820897bc r __ksymtab_sock_no_listen
+ffffffff820897c8 r __ksymtab_sock_no_mmap
+ffffffff820897d4 r __ksymtab_sock_no_recvmsg
+ffffffff820897e0 r __ksymtab_sock_no_sendmsg
+ffffffff820897ec r __ksymtab_sock_no_sendmsg_locked
+ffffffff820897f8 r __ksymtab_sock_no_sendpage
+ffffffff82089804 r __ksymtab_sock_no_sendpage_locked
+ffffffff82089810 r __ksymtab_sock_no_shutdown
+ffffffff8208981c r __ksymtab_sock_no_socketpair
+ffffffff82089828 r __ksymtab_sock_pfree
+ffffffff82089834 r __ksymtab_sock_queue_err_skb
+ffffffff82089840 r __ksymtab_sock_queue_rcv_skb_reason
+ffffffff8208984c r __ksymtab_sock_recv_errqueue
+ffffffff82089858 r __ksymtab_sock_recvmsg
+ffffffff82089864 r __ksymtab_sock_register
+ffffffff82089870 r __ksymtab_sock_release
+ffffffff8208987c r __ksymtab_sock_rfree
+ffffffff82089888 r __ksymtab_sock_sendmsg
+ffffffff82089894 r __ksymtab_sock_set_keepalive
+ffffffff820898a0 r __ksymtab_sock_set_mark
+ffffffff820898ac r __ksymtab_sock_set_priority
+ffffffff820898b8 r __ksymtab_sock_set_rcvbuf
+ffffffff820898c4 r __ksymtab_sock_set_reuseaddr
+ffffffff820898d0 r __ksymtab_sock_set_reuseport
+ffffffff820898dc r __ksymtab_sock_set_sndtimeo
+ffffffff820898e8 r __ksymtab_sock_setsockopt
+ffffffff820898f4 r __ksymtab_sock_unregister
+ffffffff82089900 r __ksymtab_sock_wake_async
+ffffffff8208990c r __ksymtab_sock_wfree
+ffffffff82089918 r __ksymtab_sock_wmalloc
+ffffffff82089924 r __ksymtab_sockfd_lookup
+ffffffff82089930 r __ksymtab_sockopt_capable
+ffffffff8208993c r __ksymtab_sockopt_lock_sock
+ffffffff82089948 r __ksymtab_sockopt_ns_capable
+ffffffff82089954 r __ksymtab_sockopt_release_sock
+ffffffff82089960 r __ksymtab_softnet_data
+ffffffff8208996c r __ksymtab_sort
+ffffffff82089978 r __ksymtab_sort_r
+ffffffff82089984 r __ksymtab_splice_direct_to_actor
+ffffffff82089990 r __ksymtab_sprintf
+ffffffff8208999c r __ksymtab_sscanf
+ffffffff820899a8 r __ksymtab_stack_depot_get_extra_bits
+ffffffff820899b4 r __ksymtab_start_tty
+ffffffff820899c0 r __ksymtab_stop_tty
+ffffffff820899cc r __ksymtab_stpcpy
+ffffffff820899d8 r __ksymtab_strcasecmp
+ffffffff820899e4 r __ksymtab_strcat
+ffffffff820899f0 r __ksymtab_strchr
+ffffffff820899fc r __ksymtab_strchrnul
+ffffffff82089a08 r __ksymtab_strcmp
+ffffffff82089a14 r __ksymtab_strcpy
+ffffffff82089a20 r __ksymtab_strcspn
+ffffffff82089a2c r __ksymtab_stream_open
+ffffffff82089a38 r __ksymtab_strim
+ffffffff82089a44 r __ksymtab_string_escape_mem
+ffffffff82089a50 r __ksymtab_string_get_size
+ffffffff82089a5c r __ksymtab_string_unescape
+ffffffff82089a68 r __ksymtab_strlcat
+ffffffff82089a74 r __ksymtab_strlcpy
+ffffffff82089a80 r __ksymtab_strlen
+ffffffff82089a8c r __ksymtab_strncasecmp
+ffffffff82089a98 r __ksymtab_strncat
+ffffffff82089aa4 r __ksymtab_strnchr
+ffffffff82089ab0 r __ksymtab_strncmp
+ffffffff82089abc r __ksymtab_strncpy
+ffffffff82089ac8 r __ksymtab_strncpy_from_user
+ffffffff82089ad4 r __ksymtab_strndup_user
+ffffffff82089ae0 r __ksymtab_strnlen
+ffffffff82089aec r __ksymtab_strnlen_user
+ffffffff82089af8 r __ksymtab_strnstr
+ffffffff82089b04 r __ksymtab_strpbrk
+ffffffff82089b10 r __ksymtab_strrchr
+ffffffff82089b1c r __ksymtab_strreplace
+ffffffff82089b28 r __ksymtab_strscpy
+ffffffff82089b34 r __ksymtab_strscpy_pad
+ffffffff82089b40 r __ksymtab_strsep
+ffffffff82089b4c r __ksymtab_strspn
+ffffffff82089b58 r __ksymtab_strstr
+ffffffff82089b64 r __ksymtab_submit_bh
+ffffffff82089b70 r __ksymtab_submit_bio
+ffffffff82089b7c r __ksymtab_submit_bio_noacct
+ffffffff82089b88 r __ksymtab_submit_bio_wait
+ffffffff82089b94 r __ksymtab_super_setup_bdi
+ffffffff82089ba0 r __ksymtab_super_setup_bdi_name
+ffffffff82089bac r __ksymtab_swake_up_all
+ffffffff82089bb8 r __ksymtab_swake_up_locked
+ffffffff82089bc4 r __ksymtab_swake_up_one
+ffffffff82089bd0 r __ksymtab_sync_blockdev
+ffffffff82089bdc r __ksymtab_sync_blockdev_range
+ffffffff82089be8 r __ksymtab_sync_dirty_buffer
+ffffffff82089bf4 r __ksymtab_sync_filesystem
+ffffffff82089c00 r __ksymtab_sync_inode_metadata
+ffffffff82089c0c r __ksymtab_sync_inodes_sb
+ffffffff82089c18 r __ksymtab_sync_mapping_buffers
+ffffffff82089c24 r __ksymtab_synchronize_hardirq
+ffffffff82089c30 r __ksymtab_synchronize_irq
+ffffffff82089c3c r __ksymtab_synchronize_net
+ffffffff82089c48 r __ksymtab_synchronize_shrinkers
+ffffffff82089c54 r __ksymtab_sys_tz
+ffffffff82089c60 r __ksymtab_sysctl_devconf_inherit_init_net
+ffffffff82089c6c r __ksymtab_sysctl_fb_tunnels_only_for_init_net
+ffffffff82089c78 r __ksymtab_sysctl_max_skb_frags
+ffffffff82089c84 r __ksymtab_sysctl_optmem_max
+ffffffff82089c90 r __ksymtab_sysctl_rmem_max
+ffffffff82089c9c r __ksymtab_sysctl_tcp_mem
+ffffffff82089ca8 r __ksymtab_sysctl_udp_mem
+ffffffff82089cb4 r __ksymtab_sysctl_vals
+ffffffff82089cc0 r __ksymtab_sysctl_wmem_max
+ffffffff82089ccc r __ksymtab_sysfs_format_mac
+ffffffff82089cd8 r __ksymtab_sysfs_streq
+ffffffff82089ce4 r __ksymtab_system_state
+ffffffff82089cf0 r __ksymtab_system_wq
+ffffffff82089cfc r __ksymtab_tag_pages_for_writeback
+ffffffff82089d08 r __ksymtab_take_dentry_name_snapshot
+ffffffff82089d14 r __ksymtab_task_lookup_next_fd_rcu
+ffffffff82089d20 r __ksymtab_tasklet_init
+ffffffff82089d2c r __ksymtab_tasklet_kill
+ffffffff82089d38 r __ksymtab_tasklet_setup
+ffffffff82089d44 r __ksymtab_tasklet_unlock_spin_wait
+ffffffff82089d50 r __ksymtab_tcp_add_backlog
+ffffffff82089d5c r __ksymtab_tcp_bpf_bypass_getsockopt
+ffffffff82089d68 r __ksymtab_tcp_check_req
+ffffffff82089d74 r __ksymtab_tcp_child_process
+ffffffff82089d80 r __ksymtab_tcp_close
+ffffffff82089d8c r __ksymtab_tcp_conn_request
+ffffffff82089d98 r __ksymtab_tcp_connect
+ffffffff82089da4 r __ksymtab_tcp_create_openreq_child
+ffffffff82089db0 r __ksymtab_tcp_disconnect
+ffffffff82089dbc r __ksymtab_tcp_enter_cwr
+ffffffff82089dc8 r __ksymtab_tcp_enter_quickack_mode
+ffffffff82089dd4 r __ksymtab_tcp_fastopen_defer_connect
+ffffffff82089de0 r __ksymtab_tcp_filter
+ffffffff82089dec r __ksymtab_tcp_getsockopt
+ffffffff82089df8 r __ksymtab_tcp_gro_complete
+ffffffff82089e04 r __ksymtab_tcp_hashinfo
+ffffffff82089e10 r __ksymtab_tcp_init_sock
+ffffffff82089e1c r __ksymtab_tcp_initialize_rcv_mss
+ffffffff82089e28 r __ksymtab_tcp_ioctl
+ffffffff82089e34 r __ksymtab_tcp_ld_RTO_revert
+ffffffff82089e40 r __ksymtab_tcp_make_synack
+ffffffff82089e4c r __ksymtab_tcp_memory_allocated
+ffffffff82089e58 r __ksymtab_tcp_mmap
+ffffffff82089e64 r __ksymtab_tcp_mss_to_mtu
+ffffffff82089e70 r __ksymtab_tcp_mtu_to_mss
+ffffffff82089e7c r __ksymtab_tcp_mtup_init
+ffffffff82089e88 r __ksymtab_tcp_openreq_init_rwin
+ffffffff82089e94 r __ksymtab_tcp_parse_options
+ffffffff82089ea0 r __ksymtab_tcp_peek_len
+ffffffff82089eac r __ksymtab_tcp_poll
+ffffffff82089eb8 r __ksymtab_tcp_prot
+ffffffff82089ec4 r __ksymtab_tcp_rcv_established
+ffffffff82089ed0 r __ksymtab_tcp_rcv_state_process
+ffffffff82089edc r __ksymtab_tcp_read_done
+ffffffff82089ee8 r __ksymtab_tcp_read_skb
+ffffffff82089ef4 r __ksymtab_tcp_read_sock
+ffffffff82089f00 r __ksymtab_tcp_recv_skb
+ffffffff82089f0c r __ksymtab_tcp_recvmsg
+ffffffff82089f18 r __ksymtab_tcp_release_cb
+ffffffff82089f24 r __ksymtab_tcp_req_err
+ffffffff82089f30 r __ksymtab_tcp_rtx_synack
+ffffffff82089f3c r __ksymtab_tcp_select_initial_window
+ffffffff82089f48 r __ksymtab_tcp_sendmsg
+ffffffff82089f54 r __ksymtab_tcp_sendpage
+ffffffff82089f60 r __ksymtab_tcp_seq_next
+ffffffff82089f6c r __ksymtab_tcp_seq_start
+ffffffff82089f78 r __ksymtab_tcp_seq_stop
+ffffffff82089f84 r __ksymtab_tcp_set_rcvlowat
+ffffffff82089f90 r __ksymtab_tcp_setsockopt
+ffffffff82089f9c r __ksymtab_tcp_shutdown
+ffffffff82089fa8 r __ksymtab_tcp_simple_retransmit
+ffffffff82089fb4 r __ksymtab_tcp_sock_set_cork
+ffffffff82089fc0 r __ksymtab_tcp_sock_set_keepcnt
+ffffffff82089fcc r __ksymtab_tcp_sock_set_keepidle
+ffffffff82089fd8 r __ksymtab_tcp_sock_set_keepintvl
+ffffffff82089fe4 r __ksymtab_tcp_sock_set_nodelay
+ffffffff82089ff0 r __ksymtab_tcp_sock_set_quickack
+ffffffff82089ffc r __ksymtab_tcp_sock_set_syncnt
+ffffffff8208a008 r __ksymtab_tcp_sock_set_user_timeout
+ffffffff8208a014 r __ksymtab_tcp_sockets_allocated
+ffffffff8208a020 r __ksymtab_tcp_splice_read
+ffffffff8208a02c r __ksymtab_tcp_stream_memory_free
+ffffffff8208a038 r __ksymtab_tcp_syn_ack_timeout
+ffffffff8208a044 r __ksymtab_tcp_sync_mss
+ffffffff8208a050 r __ksymtab_tcp_time_wait
+ffffffff8208a05c r __ksymtab_tcp_timewait_state_process
+ffffffff8208a068 r __ksymtab_tcp_tx_delay_enabled
+ffffffff8208a074 r __ksymtab_tcp_v4_conn_request
+ffffffff8208a080 r __ksymtab_tcp_v4_connect
+ffffffff8208a08c r __ksymtab_tcp_v4_destroy_sock
+ffffffff8208a098 r __ksymtab_tcp_v4_do_rcv
+ffffffff8208a0a4 r __ksymtab_tcp_v4_mtu_reduced
+ffffffff8208a0b0 r __ksymtab_tcp_v4_send_check
+ffffffff8208a0bc r __ksymtab_tcp_v4_syn_recv_sock
+ffffffff8208a0c8 r __ksymtab_test_taint
+ffffffff8208a0d4 r __ksymtab_thaw_bdev
+ffffffff8208a0e0 r __ksymtab_thaw_super
+ffffffff8208a0ec r __ksymtab_thermal_zone_device_critical
+ffffffff8208a0f8 r __ksymtab_this_cpu_off
+ffffffff8208a104 r __ksymtab_thread_group_exited
+ffffffff8208a110 r __ksymtab_time64_to_tm
+ffffffff8208a11c r __ksymtab_timer_reduce
+ffffffff8208a128 r __ksymtab_timespec64_to_jiffies
+ffffffff8208a134 r __ksymtab_timestamp_truncate
+ffffffff8208a140 r __ksymtab_to_nd_btt
+ffffffff8208a14c r __ksymtab_to_ndd
+ffffffff8208a158 r __ksymtab_topology_phys_to_logical_die
+ffffffff8208a164 r __ksymtab_topology_phys_to_logical_pkg
+ffffffff8208a170 r __ksymtab_touch_atime
+ffffffff8208a17c r __ksymtab_touch_buffer
+ffffffff8208a188 r __ksymtab_touch_softlockup_watchdog
+ffffffff8208a194 r __ksymtab_touchscreen_parse_properties
+ffffffff8208a1a0 r __ksymtab_touchscreen_report_pos
+ffffffff8208a1ac r __ksymtab_touchscreen_set_mt_pos
+ffffffff8208a1b8 r __ksymtab_trace_event_printf
+ffffffff8208a1c4 r __ksymtab_trace_print_array_seq
+ffffffff8208a1d0 r __ksymtab_trace_print_flags_seq
+ffffffff8208a1dc r __ksymtab_trace_print_hex_dump_seq
+ffffffff8208a1e8 r __ksymtab_trace_print_hex_seq
+ffffffff8208a1f4 r __ksymtab_trace_print_symbols_seq
+ffffffff8208a200 r __ksymtab_trace_raw_output_prep
+ffffffff8208a20c r __ksymtab_trace_seq_hex_dump
+ffffffff8208a218 r __ksymtab_truncate_inode_pages
+ffffffff8208a224 r __ksymtab_truncate_inode_pages_final
+ffffffff8208a230 r __ksymtab_truncate_inode_pages_range
+ffffffff8208a23c r __ksymtab_truncate_pagecache
+ffffffff8208a248 r __ksymtab_truncate_pagecache_range
+ffffffff8208a254 r __ksymtab_truncate_setsize
+ffffffff8208a260 r __ksymtab_try_lookup_one_len
+ffffffff8208a26c r __ksymtab_try_offline_node
+ffffffff8208a278 r __ksymtab_try_to_del_timer_sync
+ffffffff8208a284 r __ksymtab_try_to_free_buffers
+ffffffff8208a290 r __ksymtab_try_to_release_page
+ffffffff8208a29c r __ksymtab_try_to_writeback_inodes_sb
+ffffffff8208a2a8 r __ksymtab_try_wait_for_completion
+ffffffff8208a2b4 r __ksymtab_tsc_khz
+ffffffff8208a2c0 r __ksymtab_tso_build_data
+ffffffff8208a2cc r __ksymtab_tso_build_hdr
+ffffffff8208a2d8 r __ksymtab_tso_count_descs
+ffffffff8208a2e4 r __ksymtab_tso_start
+ffffffff8208a2f0 r __ksymtab_tty_chars_in_buffer
+ffffffff8208a2fc r __ksymtab_tty_check_change
+ffffffff8208a308 r __ksymtab_tty_devnum
+ffffffff8208a314 r __ksymtab_tty_do_resize
+ffffffff8208a320 r __ksymtab_tty_driver_flush_buffer
+ffffffff8208a32c r __ksymtab_tty_driver_kref_put
+ffffffff8208a338 r __ksymtab_tty_flip_buffer_push
+ffffffff8208a344 r __ksymtab_tty_hangup
+ffffffff8208a350 r __ksymtab_tty_hung_up_p
+ffffffff8208a35c r __ksymtab_tty_insert_flip_string_fixed_flag
+ffffffff8208a368 r __ksymtab_tty_insert_flip_string_flags
+ffffffff8208a374 r __ksymtab_tty_kref_put
+ffffffff8208a380 r __ksymtab_tty_lock
+ffffffff8208a38c r __ksymtab_tty_name
+ffffffff8208a398 r __ksymtab_tty_port_alloc_xmit_buf
+ffffffff8208a3a4 r __ksymtab_tty_port_block_til_ready
+ffffffff8208a3b0 r __ksymtab_tty_port_carrier_raised
+ffffffff8208a3bc r __ksymtab_tty_port_close
+ffffffff8208a3c8 r __ksymtab_tty_port_close_end
+ffffffff8208a3d4 r __ksymtab_tty_port_close_start
+ffffffff8208a3e0 r __ksymtab_tty_port_destroy
+ffffffff8208a3ec r __ksymtab_tty_port_free_xmit_buf
+ffffffff8208a3f8 r __ksymtab_tty_port_hangup
+ffffffff8208a404 r __ksymtab_tty_port_init
+ffffffff8208a410 r __ksymtab_tty_port_lower_dtr_rts
+ffffffff8208a41c r __ksymtab_tty_port_open
+ffffffff8208a428 r __ksymtab_tty_port_put
+ffffffff8208a434 r __ksymtab_tty_port_raise_dtr_rts
+ffffffff8208a440 r __ksymtab_tty_port_tty_get
+ffffffff8208a44c r __ksymtab_tty_port_tty_set
+ffffffff8208a458 r __ksymtab_tty_register_device
+ffffffff8208a464 r __ksymtab_tty_register_driver
+ffffffff8208a470 r __ksymtab_tty_register_ldisc
+ffffffff8208a47c r __ksymtab_tty_std_termios
+ffffffff8208a488 r __ksymtab_tty_termios_baud_rate
+ffffffff8208a494 r __ksymtab_tty_termios_copy_hw
+ffffffff8208a4a0 r __ksymtab_tty_termios_hw_change
+ffffffff8208a4ac r __ksymtab_tty_termios_input_baud_rate
+ffffffff8208a4b8 r __ksymtab_tty_unlock
+ffffffff8208a4c4 r __ksymtab_tty_unregister_device
+ffffffff8208a4d0 r __ksymtab_tty_unregister_driver
+ffffffff8208a4dc r __ksymtab_tty_unregister_ldisc
+ffffffff8208a4e8 r __ksymtab_tty_unthrottle
+ffffffff8208a4f4 r __ksymtab_tty_vhangup
+ffffffff8208a500 r __ksymtab_tty_wait_until_sent
+ffffffff8208a50c r __ksymtab_tty_write_room
+ffffffff8208a518 r __ksymtab_uart_add_one_port
+ffffffff8208a524 r __ksymtab_uart_get_baud_rate
+ffffffff8208a530 r __ksymtab_uart_get_divisor
+ffffffff8208a53c r __ksymtab_uart_match_port
+ffffffff8208a548 r __ksymtab_uart_register_driver
+ffffffff8208a554 r __ksymtab_uart_remove_one_port
+ffffffff8208a560 r __ksymtab_uart_resume_port
+ffffffff8208a56c r __ksymtab_uart_suspend_port
+ffffffff8208a578 r __ksymtab_uart_unregister_driver
+ffffffff8208a584 r __ksymtab_uart_update_timeout
+ffffffff8208a590 r __ksymtab_uart_write_wakeup
+ffffffff8208a59c r __ksymtab_ucs2_as_utf8
+ffffffff8208a5a8 r __ksymtab_ucs2_strlen
+ffffffff8208a5b4 r __ksymtab_ucs2_strncmp
+ffffffff8208a5c0 r __ksymtab_ucs2_strnlen
+ffffffff8208a5cc r __ksymtab_ucs2_strsize
+ffffffff8208a5d8 r __ksymtab_ucs2_utf8size
+ffffffff8208a5e4 r __ksymtab_udp6_csum_init
+ffffffff8208a5f0 r __ksymtab_udp6_seq_ops
+ffffffff8208a5fc r __ksymtab_udp6_set_csum
+ffffffff8208a608 r __ksymtab_udp_disconnect
+ffffffff8208a614 r __ksymtab_udp_encap_disable
+ffffffff8208a620 r __ksymtab_udp_encap_enable
+ffffffff8208a62c r __ksymtab_udp_flow_hashrnd
+ffffffff8208a638 r __ksymtab_udp_flush_pending_frames
+ffffffff8208a644 r __ksymtab_udp_gro_complete
+ffffffff8208a650 r __ksymtab_udp_gro_receive
+ffffffff8208a65c r __ksymtab_udp_ioctl
+ffffffff8208a668 r __ksymtab_udp_lib_get_port
+ffffffff8208a674 r __ksymtab_udp_lib_getsockopt
+ffffffff8208a680 r __ksymtab_udp_lib_rehash
+ffffffff8208a68c r __ksymtab_udp_lib_setsockopt
+ffffffff8208a698 r __ksymtab_udp_lib_unhash
+ffffffff8208a6a4 r __ksymtab_udp_memory_allocated
+ffffffff8208a6b0 r __ksymtab_udp_poll
+ffffffff8208a6bc r __ksymtab_udp_pre_connect
+ffffffff8208a6c8 r __ksymtab_udp_prot
+ffffffff8208a6d4 r __ksymtab_udp_push_pending_frames
+ffffffff8208a6e0 r __ksymtab_udp_read_skb
+ffffffff8208a6ec r __ksymtab_udp_sendmsg
+ffffffff8208a6f8 r __ksymtab_udp_seq_next
+ffffffff8208a704 r __ksymtab_udp_seq_ops
+ffffffff8208a710 r __ksymtab_udp_seq_start
+ffffffff8208a71c r __ksymtab_udp_seq_stop
+ffffffff8208a728 r __ksymtab_udp_set_csum
+ffffffff8208a734 r __ksymtab_udp_sk_rx_dst_set
+ffffffff8208a740 r __ksymtab_udp_skb_destructor
+ffffffff8208a74c r __ksymtab_udp_table
+ffffffff8208a758 r __ksymtab_udplite_prot
+ffffffff8208a764 r __ksymtab_udplite_table
+ffffffff8208a770 r __ksymtab_udpv6_encap_enable
+ffffffff8208a77c r __ksymtab_unix_attach_fds
+ffffffff8208a788 r __ksymtab_unix_destruct_scm
+ffffffff8208a794 r __ksymtab_unix_detach_fds
+ffffffff8208a7a0 r __ksymtab_unix_gc_lock
+ffffffff8208a7ac r __ksymtab_unix_get_socket
+ffffffff8208a7b8 r __ksymtab_unix_tot_inflight
+ffffffff8208a7c4 r __ksymtab_unload_nls
+ffffffff8208a7d0 r __ksymtab_unlock_buffer
+ffffffff8208a7dc r __ksymtab_unlock_new_inode
+ffffffff8208a7e8 r __ksymtab_unlock_page
+ffffffff8208a7f4 r __ksymtab_unlock_rename
+ffffffff8208a800 r __ksymtab_unlock_two_nondirectories
+ffffffff8208a80c r __ksymtab_unmap_mapping_range
+ffffffff8208a818 r __ksymtab_unpin_user_page
+ffffffff8208a824 r __ksymtab_unpin_user_page_range_dirty_lock
+ffffffff8208a830 r __ksymtab_unpin_user_pages
+ffffffff8208a83c r __ksymtab_unpin_user_pages_dirty_lock
+ffffffff8208a848 r __ksymtab_unregister_acpi_notifier
+ffffffff8208a854 r __ksymtab_unregister_binfmt
+ffffffff8208a860 r __ksymtab_unregister_blkdev
+ffffffff8208a86c r __ksymtab_unregister_blocking_lsm_notifier
+ffffffff8208a878 r __ksymtab_unregister_chrdev_region
+ffffffff8208a884 r __ksymtab_unregister_console
+ffffffff8208a890 r __ksymtab_unregister_fib_notifier
+ffffffff8208a89c r __ksymtab_unregister_filesystem
+ffffffff8208a8a8 r __ksymtab_unregister_inet6addr_notifier
+ffffffff8208a8b4 r __ksymtab_unregister_inet6addr_validator_notifier
+ffffffff8208a8c0 r __ksymtab_unregister_inetaddr_notifier
+ffffffff8208a8cc r __ksymtab_unregister_inetaddr_validator_notifier
+ffffffff8208a8d8 r __ksymtab_unregister_memory_notifier
+ffffffff8208a8e4 r __ksymtab_unregister_module_notifier
+ffffffff8208a8f0 r __ksymtab_unregister_netdev
+ffffffff8208a8fc r __ksymtab_unregister_netdevice_many
+ffffffff8208a908 r __ksymtab_unregister_netdevice_notifier
+ffffffff8208a914 r __ksymtab_unregister_netdevice_notifier_dev_net
+ffffffff8208a920 r __ksymtab_unregister_netdevice_notifier_net
+ffffffff8208a92c r __ksymtab_unregister_netdevice_queue
+ffffffff8208a938 r __ksymtab_unregister_nexthop_notifier
+ffffffff8208a944 r __ksymtab_unregister_nls
+ffffffff8208a950 r __ksymtab_unregister_reboot_notifier
+ffffffff8208a95c r __ksymtab_unregister_restart_handler
+ffffffff8208a968 r __ksymtab_unregister_shrinker
+ffffffff8208a974 r __ksymtab_unregister_sysctl_table
+ffffffff8208a980 r __ksymtab_unregister_sysrq_key
+ffffffff8208a98c r __ksymtab_up
+ffffffff8208a998 r __ksymtab_up_read
+ffffffff8208a9a4 r __ksymtab_up_write
+ffffffff8208a9b0 r __ksymtab_update_region
+ffffffff8208a9bc r __ksymtab_user_path_at_empty
+ffffffff8208a9c8 r __ksymtab_user_path_create
+ffffffff8208a9d4 r __ksymtab_usleep_range_state
+ffffffff8208a9e0 r __ksymtab_utf16s_to_utf8s
+ffffffff8208a9ec r __ksymtab_utf32_to_utf8
+ffffffff8208a9f8 r __ksymtab_utf8_casefold
+ffffffff8208aa04 r __ksymtab_utf8_casefold_hash
+ffffffff8208aa10 r __ksymtab_utf8_load
+ffffffff8208aa1c r __ksymtab_utf8_normalize
+ffffffff8208aa28 r __ksymtab_utf8_strncasecmp
+ffffffff8208aa34 r __ksymtab_utf8_strncasecmp_folded
+ffffffff8208aa40 r __ksymtab_utf8_strncmp
+ffffffff8208aa4c r __ksymtab_utf8_to_utf32
+ffffffff8208aa58 r __ksymtab_utf8_unload
+ffffffff8208aa64 r __ksymtab_utf8_validate
+ffffffff8208aa70 r __ksymtab_utf8s_to_utf16s
+ffffffff8208aa7c r __ksymtab_uuid_is_valid
+ffffffff8208aa88 r __ksymtab_uuid_null
+ffffffff8208aa94 r __ksymtab_uuid_parse
+ffffffff8208aaa0 r __ksymtab_validate_slab_cache
+ffffffff8208aaac r __ksymtab_vc_cons
+ffffffff8208aab8 r __ksymtab_vc_resize
+ffffffff8208aac4 r __ksymtab_vcalloc
+ffffffff8208aad0 r __ksymtab_verify_spi_info
+ffffffff8208aadc r __ksymtab_vfree
+ffffffff8208aae8 r __ksymtab_vfs_clone_file_range
+ffffffff8208aaf4 r __ksymtab_vfs_copy_file_range
+ffffffff8208ab00 r __ksymtab_vfs_create
+ffffffff8208ab0c r __ksymtab_vfs_create_mount
+ffffffff8208ab18 r __ksymtab_vfs_dedupe_file_range
+ffffffff8208ab24 r __ksymtab_vfs_dedupe_file_range_one
+ffffffff8208ab30 r __ksymtab_vfs_dup_fs_context
+ffffffff8208ab3c r __ksymtab_vfs_fadvise
+ffffffff8208ab48 r __ksymtab_vfs_fileattr_get
+ffffffff8208ab54 r __ksymtab_vfs_fileattr_set
+ffffffff8208ab60 r __ksymtab_vfs_fsync
+ffffffff8208ab6c r __ksymtab_vfs_fsync_range
+ffffffff8208ab78 r __ksymtab_vfs_get_fsid
+ffffffff8208ab84 r __ksymtab_vfs_get_link
+ffffffff8208ab90 r __ksymtab_vfs_get_super
+ffffffff8208ab9c r __ksymtab_vfs_get_tree
+ffffffff8208aba8 r __ksymtab_vfs_getattr
+ffffffff8208abb4 r __ksymtab_vfs_getattr_nosec
+ffffffff8208abc0 r __ksymtab_vfs_iocb_iter_read
+ffffffff8208abcc r __ksymtab_vfs_iocb_iter_write
+ffffffff8208abd8 r __ksymtab_vfs_ioctl
+ffffffff8208abe4 r __ksymtab_vfs_iter_read
+ffffffff8208abf0 r __ksymtab_vfs_iter_write
+ffffffff8208abfc r __ksymtab_vfs_link
+ffffffff8208ac08 r __ksymtab_vfs_llseek
+ffffffff8208ac14 r __ksymtab_vfs_mkdir
+ffffffff8208ac20 r __ksymtab_vfs_mknod
+ffffffff8208ac2c r __ksymtab_vfs_mkobj
+ffffffff8208ac38 r __ksymtab_vfs_parse_fs_param
+ffffffff8208ac44 r __ksymtab_vfs_parse_fs_param_source
+ffffffff8208ac50 r __ksymtab_vfs_parse_fs_string
+ffffffff8208ac5c r __ksymtab_vfs_path_lookup
+ffffffff8208ac68 r __ksymtab_vfs_readlink
+ffffffff8208ac74 r __ksymtab_vfs_rename
+ffffffff8208ac80 r __ksymtab_vfs_rmdir
+ffffffff8208ac8c r __ksymtab_vfs_set_acl_prepare
+ffffffff8208ac98 r __ksymtab_vfs_setpos
+ffffffff8208aca4 r __ksymtab_vfs_statfs
+ffffffff8208acb0 r __ksymtab_vfs_symlink
+ffffffff8208acbc r __ksymtab_vfs_tmpfile_open
+ffffffff8208acc8 r __ksymtab_vfs_unlink
+ffffffff8208acd4 r __ksymtab_vga_client_register
+ffffffff8208ace0 r __ksymtab_vga_con
+ffffffff8208acec r __ksymtab_vga_get
+ffffffff8208acf8 r __ksymtab_vga_put
+ffffffff8208ad04 r __ksymtab_vga_remove_vgacon
+ffffffff8208ad10 r __ksymtab_vga_set_legacy_decoding
+ffffffff8208ad1c r __ksymtab_vlan_ioctl_set
+ffffffff8208ad28 r __ksymtab_vm_brk
+ffffffff8208ad34 r __ksymtab_vm_brk_flags
+ffffffff8208ad40 r __ksymtab_vm_event_states
+ffffffff8208ad4c r __ksymtab_vm_get_page_prot
+ffffffff8208ad58 r __ksymtab_vm_insert_page
+ffffffff8208ad64 r __ksymtab_vm_insert_pages
+ffffffff8208ad70 r __ksymtab_vm_iomap_memory
+ffffffff8208ad7c r __ksymtab_vm_map_pages
+ffffffff8208ad88 r __ksymtab_vm_map_pages_zero
+ffffffff8208ad94 r __ksymtab_vm_map_ram
+ffffffff8208ada0 r __ksymtab_vm_mmap
+ffffffff8208adac r __ksymtab_vm_munmap
+ffffffff8208adb8 r __ksymtab_vm_node_stat
+ffffffff8208adc4 r __ksymtab_vm_unmap_ram
+ffffffff8208add0 r __ksymtab_vm_zone_stat
+ffffffff8208addc r __ksymtab_vma_set_file
+ffffffff8208ade8 r __ksymtab_vmalloc
+ffffffff8208adf4 r __ksymtab_vmalloc_32
+ffffffff8208ae00 r __ksymtab_vmalloc_32_user
+ffffffff8208ae0c r __ksymtab_vmalloc_array
+ffffffff8208ae18 r __ksymtab_vmalloc_base
+ffffffff8208ae24 r __ksymtab_vmalloc_node
+ffffffff8208ae30 r __ksymtab_vmalloc_to_page
+ffffffff8208ae3c r __ksymtab_vmalloc_to_pfn
+ffffffff8208ae48 r __ksymtab_vmalloc_user
+ffffffff8208ae54 r __ksymtab_vmap
+ffffffff8208ae60 r __ksymtab_vmemdup_user
+ffffffff8208ae6c r __ksymtab_vmemmap_base
+ffffffff8208ae78 r __ksymtab_vmf_insert_mixed
+ffffffff8208ae84 r __ksymtab_vmf_insert_mixed_mkwrite
+ffffffff8208ae90 r __ksymtab_vmf_insert_mixed_prot
+ffffffff8208ae9c r __ksymtab_vmf_insert_pfn
+ffffffff8208aea8 r __ksymtab_vmf_insert_pfn_prot
+ffffffff8208aeb4 r __ksymtab_vprintk
+ffffffff8208aec0 r __ksymtab_vprintk_emit
+ffffffff8208aecc r __ksymtab_vscnprintf
+ffffffff8208aed8 r __ksymtab_vsnprintf
+ffffffff8208aee4 r __ksymtab_vsprintf
+ffffffff8208aef0 r __ksymtab_vsscanf
+ffffffff8208aefc r __ksymtab_vunmap
+ffffffff8208af08 r __ksymtab_vzalloc
+ffffffff8208af14 r __ksymtab_vzalloc_node
+ffffffff8208af20 r __ksymtab_wait_for_completion
+ffffffff8208af2c r __ksymtab_wait_for_completion_interruptible
+ffffffff8208af38 r __ksymtab_wait_for_completion_interruptible_timeout
+ffffffff8208af44 r __ksymtab_wait_for_completion_io
+ffffffff8208af50 r __ksymtab_wait_for_completion_io_timeout
+ffffffff8208af5c r __ksymtab_wait_for_completion_killable
+ffffffff8208af68 r __ksymtab_wait_for_completion_killable_timeout
+ffffffff8208af74 r __ksymtab_wait_for_completion_state
+ffffffff8208af80 r __ksymtab_wait_for_completion_timeout
+ffffffff8208af8c r __ksymtab_wait_for_random_bytes
+ffffffff8208af98 r __ksymtab_wait_woken
+ffffffff8208afa4 r __ksymtab_wake_bit_function
+ffffffff8208afb0 r __ksymtab_wake_up_bit
+ffffffff8208afbc r __ksymtab_wake_up_process
+ffffffff8208afc8 r __ksymtab_wake_up_var
+ffffffff8208afd4 r __ksymtab_wbinvd_on_all_cpus
+ffffffff8208afe0 r __ksymtab_wbinvd_on_cpu
+ffffffff8208afec r __ksymtab_woken_wake_function
+ffffffff8208aff8 r __ksymtab_would_dump
+ffffffff8208b004 r __ksymtab_write_cache_pages
+ffffffff8208b010 r __ksymtab_write_dirty_buffer
+ffffffff8208b01c r __ksymtab_write_inode_now
+ffffffff8208b028 r __ksymtab_writeback_inodes_sb
+ffffffff8208b034 r __ksymtab_writeback_inodes_sb_nr
+ffffffff8208b040 r __ksymtab_wrmsr_on_cpu
+ffffffff8208b04c r __ksymtab_wrmsr_on_cpus
+ffffffff8208b058 r __ksymtab_wrmsr_safe_on_cpu
+ffffffff8208b064 r __ksymtab_wrmsr_safe_regs
+ffffffff8208b070 r __ksymtab_wrmsr_safe_regs_on_cpu
+ffffffff8208b07c r __ksymtab_wrmsrl_on_cpu
+ffffffff8208b088 r __ksymtab_wrmsrl_safe_on_cpu
+ffffffff8208b094 r __ksymtab_ww_mutex_lock
+ffffffff8208b0a0 r __ksymtab_ww_mutex_lock_interruptible
+ffffffff8208b0ac r __ksymtab_ww_mutex_trylock
+ffffffff8208b0b8 r __ksymtab_ww_mutex_unlock
+ffffffff8208b0c4 r __ksymtab_x86_apple_machine
+ffffffff8208b0d0 r __ksymtab_x86_bios_cpu_apicid
+ffffffff8208b0dc r __ksymtab_x86_cpu_to_acpiid
+ffffffff8208b0e8 r __ksymtab_x86_cpu_to_apicid
+ffffffff8208b0f4 r __ksymtab_x86_hyper_type
+ffffffff8208b100 r __ksymtab_x86_match_cpu
+ffffffff8208b10c r __ksymtab_xa_clear_mark
+ffffffff8208b118 r __ksymtab_xa_destroy
+ffffffff8208b124 r __ksymtab_xa_erase
+ffffffff8208b130 r __ksymtab_xa_extract
+ffffffff8208b13c r __ksymtab_xa_find
+ffffffff8208b148 r __ksymtab_xa_find_after
+ffffffff8208b154 r __ksymtab_xa_get_mark
+ffffffff8208b160 r __ksymtab_xa_get_order
+ffffffff8208b16c r __ksymtab_xa_load
+ffffffff8208b178 r __ksymtab_xa_set_mark
+ffffffff8208b184 r __ksymtab_xa_store
+ffffffff8208b190 r __ksymtab_xa_store_range
+ffffffff8208b19c r __ksymtab_xattr_full_name
+ffffffff8208b1a8 r __ksymtab_xattr_supported_namespace
+ffffffff8208b1b4 r __ksymtab_xfrm4_protocol_deregister
+ffffffff8208b1c0 r __ksymtab_xfrm4_protocol_register
+ffffffff8208b1cc r __ksymtab_xfrm4_rcv
+ffffffff8208b1d8 r __ksymtab_xfrm4_rcv_encap
+ffffffff8208b1e4 r __ksymtab_xfrm4_tunnel_deregister
+ffffffff8208b1f0 r __ksymtab_xfrm4_tunnel_register
+ffffffff8208b1fc r __ksymtab_xfrm6_input_addr
+ffffffff8208b208 r __ksymtab_xfrm6_protocol_deregister
+ffffffff8208b214 r __ksymtab_xfrm6_protocol_register
+ffffffff8208b220 r __ksymtab_xfrm6_rcv
+ffffffff8208b22c r __ksymtab_xfrm6_rcv_encap
+ffffffff8208b238 r __ksymtab_xfrm6_rcv_spi
+ffffffff8208b244 r __ksymtab_xfrm6_rcv_tnl
+ffffffff8208b250 r __ksymtab_xfrm6_tunnel_alloc_spi
+ffffffff8208b25c r __ksymtab_xfrm6_tunnel_deregister
+ffffffff8208b268 r __ksymtab_xfrm6_tunnel_register
+ffffffff8208b274 r __ksymtab_xfrm6_tunnel_spi_lookup
+ffffffff8208b280 r __ksymtab_xfrm_alloc_spi
+ffffffff8208b28c r __ksymtab_xfrm_dev_state_flush
+ffffffff8208b298 r __ksymtab_xfrm_dst_ifdown
+ffffffff8208b2a4 r __ksymtab_xfrm_find_acq
+ffffffff8208b2b0 r __ksymtab_xfrm_find_acq_byseq
+ffffffff8208b2bc r __ksymtab_xfrm_flush_gc
+ffffffff8208b2c8 r __ksymtab_xfrm_get_acqseq
+ffffffff8208b2d4 r __ksymtab_xfrm_if_register_cb
+ffffffff8208b2e0 r __ksymtab_xfrm_if_unregister_cb
+ffffffff8208b2ec r __ksymtab_xfrm_init_replay
+ffffffff8208b2f8 r __ksymtab_xfrm_init_state
+ffffffff8208b304 r __ksymtab_xfrm_input
+ffffffff8208b310 r __ksymtab_xfrm_input_register_afinfo
+ffffffff8208b31c r __ksymtab_xfrm_input_resume
+ffffffff8208b328 r __ksymtab_xfrm_input_unregister_afinfo
+ffffffff8208b334 r __ksymtab_xfrm_lookup
+ffffffff8208b340 r __ksymtab_xfrm_lookup_route
+ffffffff8208b34c r __ksymtab_xfrm_lookup_with_ifid
+ffffffff8208b358 r __ksymtab_xfrm_migrate
+ffffffff8208b364 r __ksymtab_xfrm_migrate_state_find
+ffffffff8208b370 r __ksymtab_xfrm_parse_spi
+ffffffff8208b37c r __ksymtab_xfrm_policy_alloc
+ffffffff8208b388 r __ksymtab_xfrm_policy_byid
+ffffffff8208b394 r __ksymtab_xfrm_policy_bysel_ctx
+ffffffff8208b3a0 r __ksymtab_xfrm_policy_delete
+ffffffff8208b3ac r __ksymtab_xfrm_policy_destroy
+ffffffff8208b3b8 r __ksymtab_xfrm_policy_flush
+ffffffff8208b3c4 r __ksymtab_xfrm_policy_hash_rebuild
+ffffffff8208b3d0 r __ksymtab_xfrm_policy_insert
+ffffffff8208b3dc r __ksymtab_xfrm_policy_register_afinfo
+ffffffff8208b3e8 r __ksymtab_xfrm_policy_unregister_afinfo
+ffffffff8208b3f4 r __ksymtab_xfrm_policy_walk
+ffffffff8208b400 r __ksymtab_xfrm_policy_walk_done
+ffffffff8208b40c r __ksymtab_xfrm_policy_walk_init
+ffffffff8208b418 r __ksymtab_xfrm_register_km
+ffffffff8208b424 r __ksymtab_xfrm_register_type
+ffffffff8208b430 r __ksymtab_xfrm_register_type_offload
+ffffffff8208b43c r __ksymtab_xfrm_replay_seqhi
+ffffffff8208b448 r __ksymtab_xfrm_sad_getinfo
+ffffffff8208b454 r __ksymtab_xfrm_spd_getinfo
+ffffffff8208b460 r __ksymtab_xfrm_state_add
+ffffffff8208b46c r __ksymtab_xfrm_state_alloc
+ffffffff8208b478 r __ksymtab_xfrm_state_check_expire
+ffffffff8208b484 r __ksymtab_xfrm_state_delete
+ffffffff8208b490 r __ksymtab_xfrm_state_delete_tunnel
+ffffffff8208b49c r __ksymtab_xfrm_state_flush
+ffffffff8208b4a8 r __ksymtab_xfrm_state_free
+ffffffff8208b4b4 r __ksymtab_xfrm_state_insert
+ffffffff8208b4c0 r __ksymtab_xfrm_state_lookup
+ffffffff8208b4cc r __ksymtab_xfrm_state_lookup_byaddr
+ffffffff8208b4d8 r __ksymtab_xfrm_state_lookup_byspi
+ffffffff8208b4e4 r __ksymtab_xfrm_state_migrate
+ffffffff8208b4f0 r __ksymtab_xfrm_state_register_afinfo
+ffffffff8208b4fc r __ksymtab_xfrm_state_unregister_afinfo
+ffffffff8208b508 r __ksymtab_xfrm_state_update
+ffffffff8208b514 r __ksymtab_xfrm_state_walk
+ffffffff8208b520 r __ksymtab_xfrm_state_walk_done
+ffffffff8208b52c r __ksymtab_xfrm_state_walk_init
+ffffffff8208b538 r __ksymtab_xfrm_stateonly_find
+ffffffff8208b544 r __ksymtab_xfrm_trans_queue
+ffffffff8208b550 r __ksymtab_xfrm_trans_queue_net
+ffffffff8208b55c r __ksymtab_xfrm_unregister_km
+ffffffff8208b568 r __ksymtab_xfrm_unregister_type
+ffffffff8208b574 r __ksymtab_xfrm_unregister_type_offload
+ffffffff8208b580 r __ksymtab_xfrm_user_policy
+ffffffff8208b58c r __ksymtab_xxh32
+ffffffff8208b598 r __ksymtab_xxh32_copy_state
+ffffffff8208b5a4 r __ksymtab_xxh32_digest
+ffffffff8208b5b0 r __ksymtab_xxh32_reset
+ffffffff8208b5bc r __ksymtab_xxh32_update
+ffffffff8208b5c8 r __ksymtab_xxh64
+ffffffff8208b5d4 r __ksymtab_xxh64_copy_state
+ffffffff8208b5e0 r __ksymtab_xxh64_digest
+ffffffff8208b5ec r __ksymtab_xxh64_reset
+ffffffff8208b5f8 r __ksymtab_xxh64_update
+ffffffff8208b604 r __ksymtab_xz_dec_end
+ffffffff8208b610 r __ksymtab_xz_dec_init
+ffffffff8208b61c r __ksymtab_xz_dec_reset
+ffffffff8208b628 r __ksymtab_xz_dec_run
+ffffffff8208b634 r __ksymtab_yield
+ffffffff8208b640 r __ksymtab_zen_untrain_ret
+ffffffff8208b64c r __ksymtab_zero_fill_bio
+ffffffff8208b658 r __ksymtab_zero_pfn
+ffffffff8208b664 r __ksymtab_zerocopy_sg_from_iter
+ffffffff8208b670 r __ksymtab_zlib_deflate
+ffffffff8208b67c r __ksymtab_zlib_deflateEnd
+ffffffff8208b688 r __ksymtab_zlib_deflateInit2
+ffffffff8208b694 r __ksymtab_zlib_deflateReset
+ffffffff8208b6a0 r __ksymtab_zlib_deflate_dfltcc_enabled
+ffffffff8208b6ac r __ksymtab_zlib_deflate_workspacesize
+ffffffff8208b6b8 r __ksymtab_zlib_inflate
+ffffffff8208b6c4 r __ksymtab_zlib_inflateEnd
+ffffffff8208b6d0 r __ksymtab_zlib_inflateIncomp
+ffffffff8208b6dc r __ksymtab_zlib_inflateInit2
+ffffffff8208b6e8 r __ksymtab_zlib_inflateReset
+ffffffff8208b6f4 r __ksymtab_zlib_inflate_blob
+ffffffff8208b700 r __ksymtab_zlib_inflate_workspacesize
+ffffffff8208b70c r __ksymtab_zstd_cctx_workspace_bound
+ffffffff8208b718 r __ksymtab_zstd_compress_bound
+ffffffff8208b724 r __ksymtab_zstd_compress_cctx
+ffffffff8208b730 r __ksymtab_zstd_compress_stream
+ffffffff8208b73c r __ksymtab_zstd_cstream_workspace_bound
+ffffffff8208b748 r __ksymtab_zstd_dctx_workspace_bound
+ffffffff8208b754 r __ksymtab_zstd_decompress_dctx
+ffffffff8208b760 r __ksymtab_zstd_decompress_stream
+ffffffff8208b76c r __ksymtab_zstd_dstream_workspace_bound
+ffffffff8208b778 r __ksymtab_zstd_end_stream
+ffffffff8208b784 r __ksymtab_zstd_find_frame_compressed_size
+ffffffff8208b790 r __ksymtab_zstd_flush_stream
+ffffffff8208b79c r __ksymtab_zstd_get_error_code
+ffffffff8208b7a8 r __ksymtab_zstd_get_error_name
+ffffffff8208b7b4 r __ksymtab_zstd_get_frame_header
+ffffffff8208b7c0 r __ksymtab_zstd_get_params
+ffffffff8208b7cc r __ksymtab_zstd_init_cctx
+ffffffff8208b7d8 r __ksymtab_zstd_init_cstream
+ffffffff8208b7e4 r __ksymtab_zstd_init_dctx
+ffffffff8208b7f0 r __ksymtab_zstd_init_dstream
+ffffffff8208b7fc r __ksymtab_zstd_is_error
+ffffffff8208b808 r __ksymtab_zstd_max_clevel
+ffffffff8208b814 r __ksymtab_zstd_min_clevel
+ffffffff8208b820 r __ksymtab_zstd_reset_cstream
+ffffffff8208b82c r __ksymtab_zstd_reset_dstream
+ffffffff8208b838 r __ksymtab_FSE_readNCount
+ffffffff8208b838 R __start___ksymtab_gpl
+ffffffff8208b838 R __stop___ksymtab
+ffffffff8208b844 r __ksymtab_HUF_readStats
+ffffffff8208b850 r __ksymtab_HUF_readStats_wksp
+ffffffff8208b85c r __ksymtab_ZSTD_customCalloc
+ffffffff8208b868 r __ksymtab_ZSTD_customFree
+ffffffff8208b874 r __ksymtab_ZSTD_customMalloc
+ffffffff8208b880 r __ksymtab_ZSTD_getErrorCode
+ffffffff8208b88c r __ksymtab_ZSTD_getErrorName
+ffffffff8208b898 r __ksymtab_ZSTD_isError
+ffffffff8208b8a4 r __ksymtab___SCK__tp_func_add_device_to_group
+ffffffff8208b8b0 r __ksymtab___SCK__tp_func_arm_event
+ffffffff8208b8bc r __ksymtab___SCK__tp_func_attach_device_to_domain
+ffffffff8208b8c8 r __ksymtab___SCK__tp_func_block_bio_complete
+ffffffff8208b8d4 r __ksymtab___SCK__tp_func_block_bio_queue
+ffffffff8208b8e0 r __ksymtab___SCK__tp_func_block_bio_remap
+ffffffff8208b8ec r __ksymtab___SCK__tp_func_block_getrq
+ffffffff8208b8f8 r __ksymtab___SCK__tp_func_block_rq_complete
+ffffffff8208b904 r __ksymtab___SCK__tp_func_block_rq_insert
+ffffffff8208b910 r __ksymtab___SCK__tp_func_block_rq_issue
+ffffffff8208b91c r __ksymtab___SCK__tp_func_block_rq_merge
+ffffffff8208b928 r __ksymtab___SCK__tp_func_block_rq_remap
+ffffffff8208b934 r __ksymtab___SCK__tp_func_block_rq_requeue
+ffffffff8208b940 r __ksymtab___SCK__tp_func_block_split
+ffffffff8208b94c r __ksymtab___SCK__tp_func_block_unplug
+ffffffff8208b958 r __ksymtab___SCK__tp_func_br_fdb_add
+ffffffff8208b964 r __ksymtab___SCK__tp_func_br_fdb_external_learn_add
+ffffffff8208b970 r __ksymtab___SCK__tp_func_br_fdb_update
+ffffffff8208b97c r __ksymtab___SCK__tp_func_clock_set_rate
+ffffffff8208b988 r __ksymtab___SCK__tp_func_console
+ffffffff8208b994 r __ksymtab___SCK__tp_func_consume_skb
+ffffffff8208b9a0 r __ksymtab___SCK__tp_func_cpu_frequency
+ffffffff8208b9ac r __ksymtab___SCK__tp_func_cpu_frequency_limits
+ffffffff8208b9b8 r __ksymtab___SCK__tp_func_cpu_idle
+ffffffff8208b9c4 r __ksymtab___SCK__tp_func_detach_device_from_domain
+ffffffff8208b9d0 r __ksymtab___SCK__tp_func_device_pm_callback_end
+ffffffff8208b9dc r __ksymtab___SCK__tp_func_device_pm_callback_start
+ffffffff8208b9e8 r __ksymtab___SCK__tp_func_error_report_end
+ffffffff8208b9f4 r __ksymtab___SCK__tp_func_fdb_delete
+ffffffff8208ba00 r __ksymtab___SCK__tp_func_fib6_table_lookup
+ffffffff8208ba0c r __ksymtab___SCK__tp_func_hrtimer_expire_entry
+ffffffff8208ba18 r __ksymtab___SCK__tp_func_hrtimer_expire_exit
+ffffffff8208ba24 r __ksymtab___SCK__tp_func_io_page_fault
+ffffffff8208ba30 r __ksymtab___SCK__tp_func_irq_handler_entry
+ffffffff8208ba3c r __ksymtab___SCK__tp_func_irq_handler_exit
+ffffffff8208ba48 r __ksymtab___SCK__tp_func_kfree_skb
+ffffffff8208ba54 r __ksymtab___SCK__tp_func_map
+ffffffff8208ba60 r __ksymtab___SCK__tp_func_mc_event
+ffffffff8208ba6c r __ksymtab___SCK__tp_func_napi_poll
+ffffffff8208ba78 r __ksymtab___SCK__tp_func_neigh_cleanup_and_release
+ffffffff8208ba84 r __ksymtab___SCK__tp_func_neigh_event_send_dead
+ffffffff8208ba90 r __ksymtab___SCK__tp_func_neigh_event_send_done
+ffffffff8208ba9c r __ksymtab___SCK__tp_func_neigh_timer_handler
+ffffffff8208baa8 r __ksymtab___SCK__tp_func_neigh_update
+ffffffff8208bab4 r __ksymtab___SCK__tp_func_neigh_update_done
+ffffffff8208bac0 r __ksymtab___SCK__tp_func_non_standard_event
+ffffffff8208bacc r __ksymtab___SCK__tp_func_pelt_cfs_tp
+ffffffff8208bad8 r __ksymtab___SCK__tp_func_pelt_dl_tp
+ffffffff8208bae4 r __ksymtab___SCK__tp_func_pelt_irq_tp
+ffffffff8208baf0 r __ksymtab___SCK__tp_func_pelt_rt_tp
+ffffffff8208bafc r __ksymtab___SCK__tp_func_pelt_se_tp
+ffffffff8208bb08 r __ksymtab___SCK__tp_func_pelt_thermal_tp
+ffffffff8208bb14 r __ksymtab___SCK__tp_func_powernv_throttle
+ffffffff8208bb20 r __ksymtab___SCK__tp_func_remove_device_from_group
+ffffffff8208bb2c r __ksymtab___SCK__tp_func_rpm_idle
+ffffffff8208bb38 r __ksymtab___SCK__tp_func_rpm_resume
+ffffffff8208bb44 r __ksymtab___SCK__tp_func_rpm_return_int
+ffffffff8208bb50 r __ksymtab___SCK__tp_func_rpm_suspend
+ffffffff8208bb5c r __ksymtab___SCK__tp_func_sched_cpu_capacity_tp
+ffffffff8208bb68 r __ksymtab___SCK__tp_func_sched_overutilized_tp
+ffffffff8208bb74 r __ksymtab___SCK__tp_func_sched_stat_blocked
+ffffffff8208bb80 r __ksymtab___SCK__tp_func_sched_stat_iowait
+ffffffff8208bb8c r __ksymtab___SCK__tp_func_sched_stat_runtime
+ffffffff8208bb98 r __ksymtab___SCK__tp_func_sched_stat_sleep
+ffffffff8208bba4 r __ksymtab___SCK__tp_func_sched_stat_wait
+ffffffff8208bbb0 r __ksymtab___SCK__tp_func_sched_switch
+ffffffff8208bbbc r __ksymtab___SCK__tp_func_sched_update_nr_running_tp
+ffffffff8208bbc8 r __ksymtab___SCK__tp_func_sched_util_est_cfs_tp
+ffffffff8208bbd4 r __ksymtab___SCK__tp_func_sched_util_est_se_tp
+ffffffff8208bbe0 r __ksymtab___SCK__tp_func_sched_waking
+ffffffff8208bbec r __ksymtab___SCK__tp_func_suspend_resume
+ffffffff8208bbf8 r __ksymtab___SCK__tp_func_task_newtask
+ffffffff8208bc04 r __ksymtab___SCK__tp_func_task_rename
+ffffffff8208bc10 r __ksymtab___SCK__tp_func_tcp_bad_csum
+ffffffff8208bc1c r __ksymtab___SCK__tp_func_tcp_send_reset
+ffffffff8208bc28 r __ksymtab___SCK__tp_func_unmap
+ffffffff8208bc34 r __ksymtab___SCK__tp_func_wbc_writepage
+ffffffff8208bc40 r __ksymtab___SCK__tp_func_workqueue_execute_end
+ffffffff8208bc4c r __ksymtab___SCK__tp_func_workqueue_execute_start
+ffffffff8208bc58 r __ksymtab___SCK__tp_func_xdp_bulk_tx
+ffffffff8208bc64 r __ksymtab___SCK__tp_func_xdp_exception
+ffffffff8208bc70 r __ksymtab___SCT__tp_func_add_device_to_group
+ffffffff8208bc7c r __ksymtab___SCT__tp_func_arm_event
+ffffffff8208bc88 r __ksymtab___SCT__tp_func_attach_device_to_domain
+ffffffff8208bc94 r __ksymtab___SCT__tp_func_block_bio_complete
+ffffffff8208bca0 r __ksymtab___SCT__tp_func_block_bio_queue
+ffffffff8208bcac r __ksymtab___SCT__tp_func_block_bio_remap
+ffffffff8208bcb8 r __ksymtab___SCT__tp_func_block_getrq
+ffffffff8208bcc4 r __ksymtab___SCT__tp_func_block_rq_complete
+ffffffff8208bcd0 r __ksymtab___SCT__tp_func_block_rq_insert
+ffffffff8208bcdc r __ksymtab___SCT__tp_func_block_rq_issue
+ffffffff8208bce8 r __ksymtab___SCT__tp_func_block_rq_merge
+ffffffff8208bcf4 r __ksymtab___SCT__tp_func_block_rq_remap
+ffffffff8208bd00 r __ksymtab___SCT__tp_func_block_rq_requeue
+ffffffff8208bd0c r __ksymtab___SCT__tp_func_block_split
+ffffffff8208bd18 r __ksymtab___SCT__tp_func_block_unplug
+ffffffff8208bd24 r __ksymtab___SCT__tp_func_br_fdb_add
+ffffffff8208bd30 r __ksymtab___SCT__tp_func_br_fdb_external_learn_add
+ffffffff8208bd3c r __ksymtab___SCT__tp_func_br_fdb_update
+ffffffff8208bd48 r __ksymtab___SCT__tp_func_clock_set_rate
+ffffffff8208bd54 r __ksymtab___SCT__tp_func_console
+ffffffff8208bd60 r __ksymtab___SCT__tp_func_consume_skb
+ffffffff8208bd6c r __ksymtab___SCT__tp_func_cpu_frequency
+ffffffff8208bd78 r __ksymtab___SCT__tp_func_cpu_frequency_limits
+ffffffff8208bd84 r __ksymtab___SCT__tp_func_cpu_idle
+ffffffff8208bd90 r __ksymtab___SCT__tp_func_detach_device_from_domain
+ffffffff8208bd9c r __ksymtab___SCT__tp_func_device_pm_callback_end
+ffffffff8208bda8 r __ksymtab___SCT__tp_func_device_pm_callback_start
+ffffffff8208bdb4 r __ksymtab___SCT__tp_func_error_report_end
+ffffffff8208bdc0 r __ksymtab___SCT__tp_func_fdb_delete
+ffffffff8208bdcc r __ksymtab___SCT__tp_func_fib6_table_lookup
+ffffffff8208bdd8 r __ksymtab___SCT__tp_func_hrtimer_expire_entry
+ffffffff8208bde4 r __ksymtab___SCT__tp_func_hrtimer_expire_exit
+ffffffff8208bdf0 r __ksymtab___SCT__tp_func_io_page_fault
+ffffffff8208bdfc r __ksymtab___SCT__tp_func_irq_handler_entry
+ffffffff8208be08 r __ksymtab___SCT__tp_func_irq_handler_exit
+ffffffff8208be14 r __ksymtab___SCT__tp_func_kfree_skb
+ffffffff8208be20 r __ksymtab___SCT__tp_func_map
+ffffffff8208be2c r __ksymtab___SCT__tp_func_mc_event
+ffffffff8208be38 r __ksymtab___SCT__tp_func_napi_poll
+ffffffff8208be44 r __ksymtab___SCT__tp_func_neigh_cleanup_and_release
+ffffffff8208be50 r __ksymtab___SCT__tp_func_neigh_event_send_dead
+ffffffff8208be5c r __ksymtab___SCT__tp_func_neigh_event_send_done
+ffffffff8208be68 r __ksymtab___SCT__tp_func_neigh_timer_handler
+ffffffff8208be74 r __ksymtab___SCT__tp_func_neigh_update
+ffffffff8208be80 r __ksymtab___SCT__tp_func_neigh_update_done
+ffffffff8208be8c r __ksymtab___SCT__tp_func_non_standard_event
+ffffffff8208be98 r __ksymtab___SCT__tp_func_pelt_cfs_tp
+ffffffff8208bea4 r __ksymtab___SCT__tp_func_pelt_dl_tp
+ffffffff8208beb0 r __ksymtab___SCT__tp_func_pelt_irq_tp
+ffffffff8208bebc r __ksymtab___SCT__tp_func_pelt_rt_tp
+ffffffff8208bec8 r __ksymtab___SCT__tp_func_pelt_se_tp
+ffffffff8208bed4 r __ksymtab___SCT__tp_func_pelt_thermal_tp
+ffffffff8208bee0 r __ksymtab___SCT__tp_func_powernv_throttle
+ffffffff8208beec r __ksymtab___SCT__tp_func_remove_device_from_group
+ffffffff8208bef8 r __ksymtab___SCT__tp_func_rpm_idle
+ffffffff8208bf04 r __ksymtab___SCT__tp_func_rpm_resume
+ffffffff8208bf10 r __ksymtab___SCT__tp_func_rpm_return_int
+ffffffff8208bf1c r __ksymtab___SCT__tp_func_rpm_suspend
+ffffffff8208bf28 r __ksymtab___SCT__tp_func_sched_cpu_capacity_tp
+ffffffff8208bf34 r __ksymtab___SCT__tp_func_sched_overutilized_tp
+ffffffff8208bf40 r __ksymtab___SCT__tp_func_sched_stat_blocked
+ffffffff8208bf4c r __ksymtab___SCT__tp_func_sched_stat_iowait
+ffffffff8208bf58 r __ksymtab___SCT__tp_func_sched_stat_runtime
+ffffffff8208bf64 r __ksymtab___SCT__tp_func_sched_stat_sleep
+ffffffff8208bf70 r __ksymtab___SCT__tp_func_sched_stat_wait
+ffffffff8208bf7c r __ksymtab___SCT__tp_func_sched_switch
+ffffffff8208bf88 r __ksymtab___SCT__tp_func_sched_update_nr_running_tp
+ffffffff8208bf94 r __ksymtab___SCT__tp_func_sched_util_est_cfs_tp
+ffffffff8208bfa0 r __ksymtab___SCT__tp_func_sched_util_est_se_tp
+ffffffff8208bfac r __ksymtab___SCT__tp_func_sched_waking
+ffffffff8208bfb8 r __ksymtab___SCT__tp_func_suspend_resume
+ffffffff8208bfc4 r __ksymtab___SCT__tp_func_task_newtask
+ffffffff8208bfd0 r __ksymtab___SCT__tp_func_task_rename
+ffffffff8208bfdc r __ksymtab___SCT__tp_func_tcp_bad_csum
+ffffffff8208bfe8 r __ksymtab___SCT__tp_func_tcp_send_reset
+ffffffff8208bff4 r __ksymtab___SCT__tp_func_unmap
+ffffffff8208c000 r __ksymtab___SCT__tp_func_wbc_writepage
+ffffffff8208c00c r __ksymtab___SCT__tp_func_workqueue_execute_end
+ffffffff8208c018 r __ksymtab___SCT__tp_func_workqueue_execute_start
+ffffffff8208c024 r __ksymtab___SCT__tp_func_xdp_bulk_tx
+ffffffff8208c030 r __ksymtab___SCT__tp_func_xdp_exception
+ffffffff8208c03c r __ksymtab___account_locked_vm
+ffffffff8208c048 r __ksymtab___acpi_node_get_property_reference
+ffffffff8208c054 r __ksymtab___alloc_pages_bulk
+ffffffff8208c060 r __ksymtab___alloc_percpu
+ffffffff8208c06c r __ksymtab___alloc_percpu_gfp
+ffffffff8208c078 r __ksymtab___audit_inode_child
+ffffffff8208c084 r __ksymtab___audit_log_nfcfg
+ffffffff8208c090 r __ksymtab___balance_callbacks
+ffffffff8208c09c r __ksymtab___bio_add_page
+ffffffff8208c0a8 r __ksymtab___bio_release_pages
+ffffffff8208c0b4 r __ksymtab___blk_mq_debugfs_rq_show
+ffffffff8208c0c0 r __ksymtab___blk_req_zone_write_lock
+ffffffff8208c0cc r __ksymtab___blk_req_zone_write_unlock
+ffffffff8208c0d8 r __ksymtab___blkg_prfill_rwstat
+ffffffff8208c0e4 r __ksymtab___blkg_prfill_u64
+ffffffff8208c0f0 r __ksymtab___bpf_call_base
+ffffffff8208c0fc r __ksymtab___class_create
+ffffffff8208c108 r __ksymtab___class_register
+ffffffff8208c114 r __ksymtab___clocksource_register_scale
+ffffffff8208c120 r __ksymtab___clocksource_update_freq_scale
+ffffffff8208c12c r __ksymtab___cpufreq_driver_target
+ffffffff8208c138 r __ksymtab___cpuhp_state_add_instance
+ffffffff8208c144 r __ksymtab___cpuhp_state_remove_instance
+ffffffff8208c150 r __ksymtab___crypto_alloc_tfm
+ffffffff8208c15c r __ksymtab___crypto_xor
+ffffffff8208c168 r __ksymtab___dax_driver_register
+ffffffff8208c174 r __ksymtab___dev_change_net_namespace
+ffffffff8208c180 r __ksymtab___dev_forward_skb
+ffffffff8208c18c r __ksymtab___devm_alloc_percpu
+ffffffff8208c198 r __ksymtab___devm_irq_alloc_descs
+ffffffff8208c1a4 r __ksymtab___devm_pci_epc_create
+ffffffff8208c1b0 r __ksymtab___devm_regmap_init
+ffffffff8208c1bc r __ksymtab___devm_regmap_init_mmio_clk
+ffffffff8208c1c8 r __ksymtab___devm_rtc_register_device
+ffffffff8208c1d4 r __ksymtab___devm_uio_register_device
+ffffffff8208c1e0 r __ksymtab___devres_alloc_node
+ffffffff8208c1ec r __ksymtab___dma_fence_unwrap_merge
+ffffffff8208c1f8 r __ksymtab___fib_lookup
+ffffffff8208c204 r __ksymtab___fl6_sock_lookup
+ffffffff8208c210 r __ksymtab___flush_tlb_all
+ffffffff8208c21c r __ksymtab___folio_lock_killable
+ffffffff8208c228 r __ksymtab___free_iova
+ffffffff8208c234 r __ksymtab___fsnotify_inode_delete
+ffffffff8208c240 r __ksymtab___fsnotify_parent
+ffffffff8208c24c r __ksymtab___ftrace_vbprintk
+ffffffff8208c258 r __ksymtab___ftrace_vprintk
+ffffffff8208c264 r __ksymtab___get_current_cr3_fast
+ffffffff8208c270 r __ksymtab___get_task_comm
+ffffffff8208c27c r __ksymtab___get_task_ioprio
+ffffffff8208c288 r __ksymtab___hrtimer_get_remaining
+ffffffff8208c294 r __ksymtab___hvc_resize
+ffffffff8208c2a0 r __ksymtab___inet_inherit_port
+ffffffff8208c2ac r __ksymtab___inet_lookup_established
+ffffffff8208c2b8 r __ksymtab___inet_lookup_listener
+ffffffff8208c2c4 r __ksymtab___inet_twsk_schedule
+ffffffff8208c2d0 r __ksymtab___inode_attach_wb
+ffffffff8208c2dc r __ksymtab___iomap_dio_rw
+ffffffff8208c2e8 r __ksymtab___ioread32_copy
+ffffffff8208c2f4 r __ksymtab___iowrite32_copy
+ffffffff8208c300 r __ksymtab___iowrite64_copy
+ffffffff8208c30c r __ksymtab___ip6_datagram_connect
+ffffffff8208c318 r __ksymtab___ip6_local_out
+ffffffff8208c324 r __ksymtab___ip_tunnel_change_mtu
+ffffffff8208c330 r __ksymtab___iptunnel_pull_header
+ffffffff8208c33c r __ksymtab___ipv6_fixup_options
+ffffffff8208c348 r __ksymtab___irq_alloc_descs
+ffffffff8208c354 r __ksymtab___irq_apply_affinity_hint
+ffffffff8208c360 r __ksymtab___irq_domain_add
+ffffffff8208c36c r __ksymtab___irq_domain_alloc_fwnode
+ffffffff8208c378 r __ksymtab___irq_domain_alloc_irqs
+ffffffff8208c384 r __ksymtab___irq_resolve_mapping
+ffffffff8208c390 r __ksymtab___irq_set_handler
+ffffffff8208c39c r __ksymtab___kernel_write
+ffffffff8208c3a8 r __ksymtab___kthread_init_worker
+ffffffff8208c3b4 r __ksymtab___kthread_should_park
+ffffffff8208c3c0 r __ksymtab___list_lru_init
+ffffffff8208c3cc r __ksymtab___memcat_p
+ffffffff8208c3d8 r __ksymtab___memcpy_flushcache
+ffffffff8208c3e4 r __ksymtab___migrate_task
+ffffffff8208c3f0 r __ksymtab___mmdrop
+ffffffff8208c3fc r __ksymtab___mnt_is_readonly
+ffffffff8208c408 r __ksymtab___mt_destroy
+ffffffff8208c414 r __ksymtab___ndisc_fill_addr_option
+ffffffff8208c420 r __ksymtab___netdev_watchdog_up
+ffffffff8208c42c r __ksymtab___netif_set_xps_queue
+ffffffff8208c438 r __ksymtab___nvdimm_create
+ffffffff8208c444 r __ksymtab___page_file_index
+ffffffff8208c450 r __ksymtab___page_mapcount
+ffffffff8208c45c r __ksymtab___pci_epc_create
+ffffffff8208c468 r __ksymtab___pci_epf_register_driver
+ffffffff8208c474 r __ksymtab___pci_reset_function_locked
+ffffffff8208c480 r __ksymtab___percpu_down_read
+ffffffff8208c48c r __ksymtab___percpu_init_rwsem
+ffffffff8208c498 r __ksymtab___platform_create_bundle
+ffffffff8208c4a4 r __ksymtab___platform_driver_probe
+ffffffff8208c4b0 r __ksymtab___platform_driver_register
+ffffffff8208c4bc r __ksymtab___platform_register_drivers
+ffffffff8208c4c8 r __ksymtab___pm_relax
+ffffffff8208c4d4 r __ksymtab___pm_runtime_disable
+ffffffff8208c4e0 r __ksymtab___pm_runtime_idle
+ffffffff8208c4ec r __ksymtab___pm_runtime_resume
+ffffffff8208c4f8 r __ksymtab___pm_runtime_set_status
+ffffffff8208c504 r __ksymtab___pm_runtime_suspend
+ffffffff8208c510 r __ksymtab___pm_runtime_use_autosuspend
+ffffffff8208c51c r __ksymtab___pm_stay_awake
+ffffffff8208c528 r __ksymtab___pneigh_lookup
+ffffffff8208c534 r __ksymtab___put_task_struct
+ffffffff8208c540 r __ksymtab___rcu_read_lock
+ffffffff8208c54c r __ksymtab___rcu_read_unlock
+ffffffff8208c558 r __ksymtab___regmap_init
+ffffffff8208c564 r __ksymtab___regmap_init_mmio_clk
+ffffffff8208c570 r __ksymtab___request_percpu_irq
+ffffffff8208c57c r __ksymtab___rht_bucket_nested
+ffffffff8208c588 r __ksymtab___ring_buffer_alloc
+ffffffff8208c594 r __ksymtab___root_device_register
+ffffffff8208c5a0 r __ksymtab___round_jiffies
+ffffffff8208c5ac r __ksymtab___round_jiffies_relative
+ffffffff8208c5b8 r __ksymtab___round_jiffies_up
+ffffffff8208c5c4 r __ksymtab___round_jiffies_up_relative
+ffffffff8208c5d0 r __ksymtab___rt_mutex_init
+ffffffff8208c5dc r __ksymtab___rtnl_link_register
+ffffffff8208c5e8 r __ksymtab___rtnl_link_unregister
+ffffffff8208c5f4 r __ksymtab___sbitmap_queue_get
+ffffffff8208c600 r __ksymtab___sk_flush_backlog
+ffffffff8208c60c r __ksymtab___skb_get_hash_symmetric
+ffffffff8208c618 r __ksymtab___skb_tstamp_tx
+ffffffff8208c624 r __ksymtab___skb_zcopy_downgrade_managed
+ffffffff8208c630 r __ksymtab___sock_recv_cmsgs
+ffffffff8208c63c r __ksymtab___sock_recv_timestamp
+ffffffff8208c648 r __ksymtab___sock_recv_wifi_status
+ffffffff8208c654 r __ksymtab___srcu_read_lock
+ffffffff8208c660 r __ksymtab___srcu_read_unlock
+ffffffff8208c66c r __ksymtab___stack_depot_save
+ffffffff8208c678 r __ksymtab___static_call_return0
+ffffffff8208c684 r __ksymtab___static_call_update
+ffffffff8208c690 r __ksymtab___static_key_deferred_flush
+ffffffff8208c69c r __ksymtab___static_key_slow_dec_deferred
+ffffffff8208c6a8 r __ksymtab___supported_pte_mask
+ffffffff8208c6b4 r __ksymtab___suspend_report_result
+ffffffff8208c6c0 r __ksymtab___symbol_get
+ffffffff8208c6cc r __ksymtab___synth_event_gen_cmd_start
+ffffffff8208c6d8 r __ksymtab___task_rq_lock
+ffffffff8208c6e4 r __ksymtab___tcp_send_ack
+ffffffff8208c6f0 r __ksymtab___trace_array_puts
+ffffffff8208c6fc r __ksymtab___trace_bprintk
+ffffffff8208c708 r __ksymtab___trace_bputs
+ffffffff8208c714 r __ksymtab___trace_printk
+ffffffff8208c720 r __ksymtab___trace_puts
+ffffffff8208c72c r __ksymtab___trace_trigger_soft_disabled
+ffffffff8208c738 r __ksymtab___traceiter_add_device_to_group
+ffffffff8208c744 r __ksymtab___traceiter_arm_event
+ffffffff8208c750 r __ksymtab___traceiter_attach_device_to_domain
+ffffffff8208c75c r __ksymtab___traceiter_block_bio_complete
+ffffffff8208c768 r __ksymtab___traceiter_block_bio_queue
+ffffffff8208c774 r __ksymtab___traceiter_block_bio_remap
+ffffffff8208c780 r __ksymtab___traceiter_block_getrq
+ffffffff8208c78c r __ksymtab___traceiter_block_rq_complete
+ffffffff8208c798 r __ksymtab___traceiter_block_rq_insert
+ffffffff8208c7a4 r __ksymtab___traceiter_block_rq_issue
+ffffffff8208c7b0 r __ksymtab___traceiter_block_rq_merge
+ffffffff8208c7bc r __ksymtab___traceiter_block_rq_remap
+ffffffff8208c7c8 r __ksymtab___traceiter_block_rq_requeue
+ffffffff8208c7d4 r __ksymtab___traceiter_block_split
+ffffffff8208c7e0 r __ksymtab___traceiter_block_unplug
+ffffffff8208c7ec r __ksymtab___traceiter_br_fdb_add
+ffffffff8208c7f8 r __ksymtab___traceiter_br_fdb_external_learn_add
+ffffffff8208c804 r __ksymtab___traceiter_br_fdb_update
+ffffffff8208c810 r __ksymtab___traceiter_clock_set_rate
+ffffffff8208c81c r __ksymtab___traceiter_console
+ffffffff8208c828 r __ksymtab___traceiter_consume_skb
+ffffffff8208c834 r __ksymtab___traceiter_cpu_frequency
+ffffffff8208c840 r __ksymtab___traceiter_cpu_frequency_limits
+ffffffff8208c84c r __ksymtab___traceiter_cpu_idle
+ffffffff8208c858 r __ksymtab___traceiter_detach_device_from_domain
+ffffffff8208c864 r __ksymtab___traceiter_device_pm_callback_end
+ffffffff8208c870 r __ksymtab___traceiter_device_pm_callback_start
+ffffffff8208c87c r __ksymtab___traceiter_error_report_end
+ffffffff8208c888 r __ksymtab___traceiter_fdb_delete
+ffffffff8208c894 r __ksymtab___traceiter_fib6_table_lookup
+ffffffff8208c8a0 r __ksymtab___traceiter_hrtimer_expire_entry
+ffffffff8208c8ac r __ksymtab___traceiter_hrtimer_expire_exit
+ffffffff8208c8b8 r __ksymtab___traceiter_io_page_fault
+ffffffff8208c8c4 r __ksymtab___traceiter_irq_handler_entry
+ffffffff8208c8d0 r __ksymtab___traceiter_irq_handler_exit
+ffffffff8208c8dc r __ksymtab___traceiter_kfree_skb
+ffffffff8208c8e8 r __ksymtab___traceiter_map
+ffffffff8208c8f4 r __ksymtab___traceiter_mc_event
+ffffffff8208c900 r __ksymtab___traceiter_napi_poll
+ffffffff8208c90c r __ksymtab___traceiter_neigh_cleanup_and_release
+ffffffff8208c918 r __ksymtab___traceiter_neigh_event_send_dead
+ffffffff8208c924 r __ksymtab___traceiter_neigh_event_send_done
+ffffffff8208c930 r __ksymtab___traceiter_neigh_timer_handler
+ffffffff8208c93c r __ksymtab___traceiter_neigh_update
+ffffffff8208c948 r __ksymtab___traceiter_neigh_update_done
+ffffffff8208c954 r __ksymtab___traceiter_non_standard_event
+ffffffff8208c960 r __ksymtab___traceiter_pelt_cfs_tp
+ffffffff8208c96c r __ksymtab___traceiter_pelt_dl_tp
+ffffffff8208c978 r __ksymtab___traceiter_pelt_irq_tp
+ffffffff8208c984 r __ksymtab___traceiter_pelt_rt_tp
+ffffffff8208c990 r __ksymtab___traceiter_pelt_se_tp
+ffffffff8208c99c r __ksymtab___traceiter_pelt_thermal_tp
+ffffffff8208c9a8 r __ksymtab___traceiter_powernv_throttle
+ffffffff8208c9b4 r __ksymtab___traceiter_remove_device_from_group
+ffffffff8208c9c0 r __ksymtab___traceiter_rpm_idle
+ffffffff8208c9cc r __ksymtab___traceiter_rpm_resume
+ffffffff8208c9d8 r __ksymtab___traceiter_rpm_return_int
+ffffffff8208c9e4 r __ksymtab___traceiter_rpm_suspend
+ffffffff8208c9f0 r __ksymtab___traceiter_sched_cpu_capacity_tp
+ffffffff8208c9fc r __ksymtab___traceiter_sched_overutilized_tp
+ffffffff8208ca08 r __ksymtab___traceiter_sched_stat_blocked
+ffffffff8208ca14 r __ksymtab___traceiter_sched_stat_iowait
+ffffffff8208ca20 r __ksymtab___traceiter_sched_stat_runtime
+ffffffff8208ca2c r __ksymtab___traceiter_sched_stat_sleep
+ffffffff8208ca38 r __ksymtab___traceiter_sched_stat_wait
+ffffffff8208ca44 r __ksymtab___traceiter_sched_switch
+ffffffff8208ca50 r __ksymtab___traceiter_sched_update_nr_running_tp
+ffffffff8208ca5c r __ksymtab___traceiter_sched_util_est_cfs_tp
+ffffffff8208ca68 r __ksymtab___traceiter_sched_util_est_se_tp
+ffffffff8208ca74 r __ksymtab___traceiter_sched_waking
+ffffffff8208ca80 r __ksymtab___traceiter_suspend_resume
+ffffffff8208ca8c r __ksymtab___traceiter_task_newtask
+ffffffff8208ca98 r __ksymtab___traceiter_task_rename
+ffffffff8208caa4 r __ksymtab___traceiter_tcp_bad_csum
+ffffffff8208cab0 r __ksymtab___traceiter_tcp_send_reset
+ffffffff8208cabc r __ksymtab___traceiter_unmap
+ffffffff8208cac8 r __ksymtab___traceiter_wbc_writepage
+ffffffff8208cad4 r __ksymtab___traceiter_workqueue_execute_end
+ffffffff8208cae0 r __ksymtab___traceiter_workqueue_execute_start
+ffffffff8208caec r __ksymtab___traceiter_xdp_bulk_tx
+ffffffff8208caf8 r __ksymtab___traceiter_xdp_exception
+ffffffff8208cb04 r __ksymtab___tracepoint_add_device_to_group
+ffffffff8208cb10 r __ksymtab___tracepoint_arm_event
+ffffffff8208cb1c r __ksymtab___tracepoint_attach_device_to_domain
+ffffffff8208cb28 r __ksymtab___tracepoint_block_bio_complete
+ffffffff8208cb34 r __ksymtab___tracepoint_block_bio_queue
+ffffffff8208cb40 r __ksymtab___tracepoint_block_bio_remap
+ffffffff8208cb4c r __ksymtab___tracepoint_block_getrq
+ffffffff8208cb58 r __ksymtab___tracepoint_block_rq_complete
+ffffffff8208cb64 r __ksymtab___tracepoint_block_rq_insert
+ffffffff8208cb70 r __ksymtab___tracepoint_block_rq_issue
+ffffffff8208cb7c r __ksymtab___tracepoint_block_rq_merge
+ffffffff8208cb88 r __ksymtab___tracepoint_block_rq_remap
+ffffffff8208cb94 r __ksymtab___tracepoint_block_rq_requeue
+ffffffff8208cba0 r __ksymtab___tracepoint_block_split
+ffffffff8208cbac r __ksymtab___tracepoint_block_unplug
+ffffffff8208cbb8 r __ksymtab___tracepoint_br_fdb_add
+ffffffff8208cbc4 r __ksymtab___tracepoint_br_fdb_external_learn_add
+ffffffff8208cbd0 r __ksymtab___tracepoint_br_fdb_update
+ffffffff8208cbdc r __ksymtab___tracepoint_clock_set_rate
+ffffffff8208cbe8 r __ksymtab___tracepoint_console
+ffffffff8208cbf4 r __ksymtab___tracepoint_consume_skb
+ffffffff8208cc00 r __ksymtab___tracepoint_cpu_frequency
+ffffffff8208cc0c r __ksymtab___tracepoint_cpu_frequency_limits
+ffffffff8208cc18 r __ksymtab___tracepoint_cpu_idle
+ffffffff8208cc24 r __ksymtab___tracepoint_detach_device_from_domain
+ffffffff8208cc30 r __ksymtab___tracepoint_device_pm_callback_end
+ffffffff8208cc3c r __ksymtab___tracepoint_device_pm_callback_start
+ffffffff8208cc48 r __ksymtab___tracepoint_error_report_end
+ffffffff8208cc54 r __ksymtab___tracepoint_fdb_delete
+ffffffff8208cc60 r __ksymtab___tracepoint_fib6_table_lookup
+ffffffff8208cc6c r __ksymtab___tracepoint_hrtimer_expire_entry
+ffffffff8208cc78 r __ksymtab___tracepoint_hrtimer_expire_exit
+ffffffff8208cc84 r __ksymtab___tracepoint_io_page_fault
+ffffffff8208cc90 r __ksymtab___tracepoint_irq_handler_entry
+ffffffff8208cc9c r __ksymtab___tracepoint_irq_handler_exit
+ffffffff8208cca8 r __ksymtab___tracepoint_kfree_skb
+ffffffff8208ccb4 r __ksymtab___tracepoint_map
+ffffffff8208ccc0 r __ksymtab___tracepoint_mc_event
+ffffffff8208cccc r __ksymtab___tracepoint_napi_poll
+ffffffff8208ccd8 r __ksymtab___tracepoint_neigh_cleanup_and_release
+ffffffff8208cce4 r __ksymtab___tracepoint_neigh_event_send_dead
+ffffffff8208ccf0 r __ksymtab___tracepoint_neigh_event_send_done
+ffffffff8208ccfc r __ksymtab___tracepoint_neigh_timer_handler
+ffffffff8208cd08 r __ksymtab___tracepoint_neigh_update
+ffffffff8208cd14 r __ksymtab___tracepoint_neigh_update_done
+ffffffff8208cd20 r __ksymtab___tracepoint_non_standard_event
+ffffffff8208cd2c r __ksymtab___tracepoint_pelt_cfs_tp
+ffffffff8208cd38 r __ksymtab___tracepoint_pelt_dl_tp
+ffffffff8208cd44 r __ksymtab___tracepoint_pelt_irq_tp
+ffffffff8208cd50 r __ksymtab___tracepoint_pelt_rt_tp
+ffffffff8208cd5c r __ksymtab___tracepoint_pelt_se_tp
+ffffffff8208cd68 r __ksymtab___tracepoint_pelt_thermal_tp
+ffffffff8208cd74 r __ksymtab___tracepoint_powernv_throttle
+ffffffff8208cd80 r __ksymtab___tracepoint_remove_device_from_group
+ffffffff8208cd8c r __ksymtab___tracepoint_rpm_idle
+ffffffff8208cd98 r __ksymtab___tracepoint_rpm_resume
+ffffffff8208cda4 r __ksymtab___tracepoint_rpm_return_int
+ffffffff8208cdb0 r __ksymtab___tracepoint_rpm_suspend
+ffffffff8208cdbc r __ksymtab___tracepoint_sched_cpu_capacity_tp
+ffffffff8208cdc8 r __ksymtab___tracepoint_sched_overutilized_tp
+ffffffff8208cdd4 r __ksymtab___tracepoint_sched_stat_blocked
+ffffffff8208cde0 r __ksymtab___tracepoint_sched_stat_iowait
+ffffffff8208cdec r __ksymtab___tracepoint_sched_stat_runtime
+ffffffff8208cdf8 r __ksymtab___tracepoint_sched_stat_sleep
+ffffffff8208ce04 r __ksymtab___tracepoint_sched_stat_wait
+ffffffff8208ce10 r __ksymtab___tracepoint_sched_switch
+ffffffff8208ce1c r __ksymtab___tracepoint_sched_update_nr_running_tp
+ffffffff8208ce28 r __ksymtab___tracepoint_sched_util_est_cfs_tp
+ffffffff8208ce34 r __ksymtab___tracepoint_sched_util_est_se_tp
+ffffffff8208ce40 r __ksymtab___tracepoint_sched_waking
+ffffffff8208ce4c r __ksymtab___tracepoint_suspend_resume
+ffffffff8208ce58 r __ksymtab___tracepoint_task_newtask
+ffffffff8208ce64 r __ksymtab___tracepoint_task_rename
+ffffffff8208ce70 r __ksymtab___tracepoint_tcp_bad_csum
+ffffffff8208ce7c r __ksymtab___tracepoint_tcp_send_reset
+ffffffff8208ce88 r __ksymtab___tracepoint_unmap
+ffffffff8208ce94 r __ksymtab___tracepoint_wbc_writepage
+ffffffff8208cea0 r __ksymtab___tracepoint_workqueue_execute_end
+ffffffff8208ceac r __ksymtab___tracepoint_workqueue_execute_start
+ffffffff8208ceb8 r __ksymtab___tracepoint_xdp_bulk_tx
+ffffffff8208cec4 r __ksymtab___tracepoint_xdp_exception
+ffffffff8208ced0 r __ksymtab___tss_limit_invalid
+ffffffff8208cedc r __ksymtab___udp4_lib_lookup
+ffffffff8208cee8 r __ksymtab___udp6_lib_lookup
+ffffffff8208cef4 r __ksymtab___udp_enqueue_schedule_skb
+ffffffff8208cf00 r __ksymtab___udp_gso_segment
+ffffffff8208cf0c r __ksymtab___uio_register_device
+ffffffff8208cf18 r __ksymtab___unwind_start
+ffffffff8208cf24 r __ksymtab___update_load_avg_blocked_se
+ffffffff8208cf30 r __ksymtab___vfs_removexattr_locked
+ffffffff8208cf3c r __ksymtab___vfs_setxattr_locked
+ffffffff8208cf48 r __ksymtab___virtio_unbreak_device
+ffffffff8208cf54 r __ksymtab___virtqueue_break
+ffffffff8208cf60 r __ksymtab___virtqueue_unbreak
+ffffffff8208cf6c r __ksymtab___wait_rcu_gp
+ffffffff8208cf78 r __ksymtab___wake_up_locked
+ffffffff8208cf84 r __ksymtab___wake_up_locked_key
+ffffffff8208cf90 r __ksymtab___wake_up_locked_key_bookmark
+ffffffff8208cf9c r __ksymtab___wake_up_locked_sync_key
+ffffffff8208cfa8 r __ksymtab___wake_up_sync
+ffffffff8208cfb4 r __ksymtab___wake_up_sync_key
+ffffffff8208cfc0 r __ksymtab___xas_next
+ffffffff8208cfcc r __ksymtab___xas_prev
+ffffffff8208cfd8 r __ksymtab___xdp_build_skb_from_frame
+ffffffff8208cfe4 r __ksymtab___xdp_release_frame
+ffffffff8208cff0 r __ksymtab___xdp_rxq_info_reg
+ffffffff8208cffc r __ksymtab__copy_from_iter_flushcache
+ffffffff8208d008 r __ksymtab__copy_mc_to_iter
+ffffffff8208d014 r __ksymtab__printk_deferred
+ffffffff8208d020 r __ksymtab__proc_mkdir
+ffffffff8208d02c r __ksymtab__trace_android_vh_record_pcpu_rwsem_starttime
+ffffffff8208d038 r __ksymtab_access_process_vm
+ffffffff8208d044 r __ksymtab_account_locked_vm
+ffffffff8208d050 r __ksymtab_ack_all_badblocks
+ffffffff8208d05c r __ksymtab_acomp_request_alloc
+ffffffff8208d068 r __ksymtab_acomp_request_free
+ffffffff8208d074 r __ksymtab_acpi_bind_one
+ffffffff8208d080 r __ksymtab_acpi_bus_attach_private_data
+ffffffff8208d08c r __ksymtab_acpi_bus_detach_private_data
+ffffffff8208d098 r __ksymtab_acpi_bus_for_each_dev
+ffffffff8208d0a4 r __ksymtab_acpi_bus_get_ejd
+ffffffff8208d0b0 r __ksymtab_acpi_bus_get_private_data
+ffffffff8208d0bc r __ksymtab_acpi_bus_get_status_handle
+ffffffff8208d0c8 r __ksymtab_acpi_bus_register_early_device
+ffffffff8208d0d4 r __ksymtab_acpi_bus_trim
+ffffffff8208d0e0 r __ksymtab_acpi_bus_update_power
+ffffffff8208d0ec r __ksymtab_acpi_cpc_valid
+ffffffff8208d0f8 r __ksymtab_acpi_cppc_processor_exit
+ffffffff8208d104 r __ksymtab_acpi_cppc_processor_probe
+ffffffff8208d110 r __ksymtab_acpi_create_platform_device
+ffffffff8208d11c r __ksymtab_acpi_data_fwnode_ops
+ffffffff8208d128 r __ksymtab_acpi_debugfs_dir
+ffffffff8208d134 r __ksymtab_acpi_dev_add_driver_gpios
+ffffffff8208d140 r __ksymtab_acpi_dev_clear_dependencies
+ffffffff8208d14c r __ksymtab_acpi_dev_filter_resource_type
+ffffffff8208d158 r __ksymtab_acpi_dev_for_each_child
+ffffffff8208d164 r __ksymtab_acpi_dev_free_resource_list
+ffffffff8208d170 r __ksymtab_acpi_dev_get_dma_resources
+ffffffff8208d17c r __ksymtab_acpi_dev_get_irq_type
+ffffffff8208d188 r __ksymtab_acpi_dev_get_memory_resources
+ffffffff8208d194 r __ksymtab_acpi_dev_get_next_consumer_dev
+ffffffff8208d1a0 r __ksymtab_acpi_dev_get_property
+ffffffff8208d1ac r __ksymtab_acpi_dev_get_resources
+ffffffff8208d1b8 r __ksymtab_acpi_dev_gpio_irq_wake_get_by
+ffffffff8208d1c4 r __ksymtab_acpi_dev_irq_flags
+ffffffff8208d1d0 r __ksymtab_acpi_dev_pm_attach
+ffffffff8208d1dc r __ksymtab_acpi_dev_ready_for_enumeration
+ffffffff8208d1e8 r __ksymtab_acpi_dev_remove_driver_gpios
+ffffffff8208d1f4 r __ksymtab_acpi_dev_resource_address_space
+ffffffff8208d200 r __ksymtab_acpi_dev_resource_ext_address_space
+ffffffff8208d20c r __ksymtab_acpi_dev_resource_interrupt
+ffffffff8208d218 r __ksymtab_acpi_dev_resource_io
+ffffffff8208d224 r __ksymtab_acpi_dev_resource_memory
+ffffffff8208d230 r __ksymtab_acpi_dev_resume
+ffffffff8208d23c r __ksymtab_acpi_dev_state_d0
+ffffffff8208d248 r __ksymtab_acpi_dev_suspend
+ffffffff8208d254 r __ksymtab_acpi_device_fix_up_power
+ffffffff8208d260 r __ksymtab_acpi_device_fix_up_power_extended
+ffffffff8208d26c r __ksymtab_acpi_device_fwnode_ops
+ffffffff8208d278 r __ksymtab_acpi_device_get_match_data
+ffffffff8208d284 r __ksymtab_acpi_device_modalias
+ffffffff8208d290 r __ksymtab_acpi_device_uevent_modalias
+ffffffff8208d29c r __ksymtab_acpi_device_update_power
+ffffffff8208d2a8 r __ksymtab_acpi_dma_configure_id
+ffffffff8208d2b4 r __ksymtab_acpi_driver_match_device
+ffffffff8208d2c0 r __ksymtab_acpi_ec_add_query_handler
+ffffffff8208d2cc r __ksymtab_acpi_ec_mark_gpe_for_wake
+ffffffff8208d2d8 r __ksymtab_acpi_ec_remove_query_handler
+ffffffff8208d2e4 r __ksymtab_acpi_evaluation_failure_warn
+ffffffff8208d2f0 r __ksymtab_acpi_fetch_acpi_dev
+ffffffff8208d2fc r __ksymtab_acpi_find_child_by_adr
+ffffffff8208d308 r __ksymtab_acpi_find_child_device
+ffffffff8208d314 r __ksymtab_acpi_get_acpi_dev
+ffffffff8208d320 r __ksymtab_acpi_get_and_request_gpiod
+ffffffff8208d32c r __ksymtab_acpi_get_cpuid
+ffffffff8208d338 r __ksymtab_acpi_get_first_physical_node
+ffffffff8208d344 r __ksymtab_acpi_get_pci_dev
+ffffffff8208d350 r __ksymtab_acpi_get_phys_id
+ffffffff8208d35c r __ksymtab_acpi_get_psd_map
+ffffffff8208d368 r __ksymtab_acpi_get_subsystem_id
+ffffffff8208d374 r __ksymtab_acpi_gpio_get_io_resource
+ffffffff8208d380 r __ksymtab_acpi_gpio_get_irq_resource
+ffffffff8208d38c r __ksymtab_acpi_gpiochip_free_interrupts
+ffffffff8208d398 r __ksymtab_acpi_gpiochip_request_interrupts
+ffffffff8208d3a4 r __ksymtab_acpi_gsi_to_irq
+ffffffff8208d3b0 r __ksymtab_acpi_initialize_hp_context
+ffffffff8208d3bc r __ksymtab_acpi_is_pnp_device
+ffffffff8208d3c8 r __ksymtab_acpi_is_root_bridge
+ffffffff8208d3d4 r __ksymtab_acpi_kobj
+ffffffff8208d3e0 r __ksymtab_acpi_lpat_free_conversion_table
+ffffffff8208d3ec r __ksymtab_acpi_lpat_get_conversion_table
+ffffffff8208d3f8 r __ksymtab_acpi_lpat_raw_to_temp
+ffffffff8208d404 r __ksymtab_acpi_lpat_temp_to_raw
+ffffffff8208d410 r __ksymtab_acpi_match_device
+ffffffff8208d41c r __ksymtab_acpi_os_get_iomem
+ffffffff8208d428 r __ksymtab_acpi_os_map_iomem
+ffffffff8208d434 r __ksymtab_acpi_os_map_memory
+ffffffff8208d440 r __ksymtab_acpi_os_unmap_iomem
+ffffffff8208d44c r __ksymtab_acpi_os_unmap_memory
+ffffffff8208d458 r __ksymtab_acpi_pci_find_root
+ffffffff8208d464 r __ksymtab_acpi_pm_set_device_wakeup
+ffffffff8208d470 r __ksymtab_acpi_pm_wakeup_event
+ffffffff8208d47c r __ksymtab_acpi_processor_claim_cst_control
+ffffffff8208d488 r __ksymtab_acpi_processor_evaluate_cst
+ffffffff8208d494 r __ksymtab_acpi_processor_ffh_cstate_enter
+ffffffff8208d4a0 r __ksymtab_acpi_processor_ffh_cstate_probe
+ffffffff8208d4ac r __ksymtab_acpi_processor_get_performance_info
+ffffffff8208d4b8 r __ksymtab_acpi_quirk_skip_acpi_ac_and_battery
+ffffffff8208d4c4 r __ksymtab_acpi_reduced_hardware
+ffffffff8208d4d0 r __ksymtab_acpi_register_gsi
+ffffffff8208d4dc r __ksymtab_acpi_register_lps0_dev
+ffffffff8208d4e8 r __ksymtab_acpi_register_wakeup_handler
+ffffffff8208d4f4 r __ksymtab_acpi_scan_lock_acquire
+ffffffff8208d500 r __ksymtab_acpi_scan_lock_release
+ffffffff8208d50c r __ksymtab_acpi_set_modalias
+ffffffff8208d518 r __ksymtab_acpi_storage_d3
+ffffffff8208d524 r __ksymtab_acpi_subsys_complete
+ffffffff8208d530 r __ksymtab_acpi_subsys_freeze
+ffffffff8208d53c r __ksymtab_acpi_subsys_poweroff
+ffffffff8208d548 r __ksymtab_acpi_subsys_prepare
+ffffffff8208d554 r __ksymtab_acpi_subsys_restore_early
+ffffffff8208d560 r __ksymtab_acpi_subsys_runtime_resume
+ffffffff8208d56c r __ksymtab_acpi_subsys_runtime_suspend
+ffffffff8208d578 r __ksymtab_acpi_subsys_suspend
+ffffffff8208d584 r __ksymtab_acpi_subsys_suspend_late
+ffffffff8208d590 r __ksymtab_acpi_subsys_suspend_noirq
+ffffffff8208d59c r __ksymtab_acpi_target_system_state
+ffffffff8208d5a8 r __ksymtab_acpi_unbind_one
+ffffffff8208d5b4 r __ksymtab_acpi_unregister_gsi
+ffffffff8208d5c0 r __ksymtab_acpi_unregister_lps0_dev
+ffffffff8208d5cc r __ksymtab_acpi_unregister_wakeup_handler
+ffffffff8208d5d8 r __ksymtab_activate_task
+ffffffff8208d5e4 r __ksymtab_add_cpu
+ffffffff8208d5f0 r __ksymtab_add_disk_randomness
+ffffffff8208d5fc r __ksymtab_add_hwgenerator_randomness
+ffffffff8208d608 r __ksymtab_add_input_randomness
+ffffffff8208d614 r __ksymtab_add_interrupt_randomness
+ffffffff8208d620 r __ksymtab_add_memory
+ffffffff8208d62c r __ksymtab_add_memory_driver_managed
+ffffffff8208d638 r __ksymtab_add_swap_extent
+ffffffff8208d644 r __ksymtab_add_timer_on
+ffffffff8208d650 r __ksymtab_add_uevent_var
+ffffffff8208d65c r __ksymtab_add_wait_queue_priority
+ffffffff8208d668 r __ksymtab_addrconf_add_linklocal
+ffffffff8208d674 r __ksymtab_addrconf_prefix_rcv_add_addr
+ffffffff8208d680 r __ksymtab_aead_exit_geniv
+ffffffff8208d68c r __ksymtab_aead_geniv_alloc
+ffffffff8208d698 r __ksymtab_aead_init_geniv
+ffffffff8208d6a4 r __ksymtab_aead_register_instance
+ffffffff8208d6b0 r __ksymtab_ahash_register_instance
+ffffffff8208d6bc r __ksymtab_akcipher_register_instance
+ffffffff8208d6c8 r __ksymtab_alarm_cancel
+ffffffff8208d6d4 r __ksymtab_alarm_expires_remaining
+ffffffff8208d6e0 r __ksymtab_alarm_forward
+ffffffff8208d6ec r __ksymtab_alarm_forward_now
+ffffffff8208d6f8 r __ksymtab_alarm_init
+ffffffff8208d704 r __ksymtab_alarm_restart
+ffffffff8208d710 r __ksymtab_alarm_start
+ffffffff8208d71c r __ksymtab_alarm_start_relative
+ffffffff8208d728 r __ksymtab_alarm_try_to_cancel
+ffffffff8208d734 r __ksymtab_alarmtimer_get_rtcdev
+ffffffff8208d740 r __ksymtab_alg_test
+ffffffff8208d74c r __ksymtab_all_vm_events
+ffffffff8208d758 r __ksymtab_alloc_dax
+ffffffff8208d764 r __ksymtab_alloc_dax_region
+ffffffff8208d770 r __ksymtab_alloc_iova
+ffffffff8208d77c r __ksymtab_alloc_iova_fast
+ffffffff8208d788 r __ksymtab_alloc_page_buffers
+ffffffff8208d794 r __ksymtab_alloc_skb_for_msg
+ffffffff8208d7a0 r __ksymtab_alloc_workqueue
+ffffffff8208d7ac r __ksymtab_alternatives_patched
+ffffffff8208d7b8 r __ksymtab_amd_flush_garts
+ffffffff8208d7c4 r __ksymtab_amd_get_highest_perf
+ffffffff8208d7d0 r __ksymtab_amd_get_nodes_per_socket
+ffffffff8208d7dc r __ksymtab_amd_nb_has_feature
+ffffffff8208d7e8 r __ksymtab_amd_nb_num
+ffffffff8208d7f4 r __ksymtab_amd_pmu_disable_virt
+ffffffff8208d800 r __ksymtab_amd_pmu_enable_virt
+ffffffff8208d80c r __ksymtab_amd_smn_read
+ffffffff8208d818 r __ksymtab_amd_smn_write
+ffffffff8208d824 r __ksymtab_anon_inode_getfd
+ffffffff8208d830 r __ksymtab_anon_inode_getfd_secure
+ffffffff8208d83c r __ksymtab_anon_inode_getfile
+ffffffff8208d848 r __ksymtab_anon_transport_class_register
+ffffffff8208d854 r __ksymtab_anon_transport_class_unregister
+ffffffff8208d860 r __ksymtab_apic
+ffffffff8208d86c r __ksymtab_apply_to_existing_page_range
+ffffffff8208d878 r __ksymtab_apply_to_page_range
+ffffffff8208d884 r __ksymtab_arch_haltpoll_disable
+ffffffff8208d890 r __ksymtab_arch_haltpoll_enable
+ffffffff8208d89c r __ksymtab_arch_invalidate_pmem
+ffffffff8208d8a8 r __ksymtab_arch_phys_wc_index
+ffffffff8208d8b4 r __ksymtab_arch_set_max_freq_ratio
+ffffffff8208d8c0 r __ksymtab_arch_static_call_transform
+ffffffff8208d8cc r __ksymtab_arch_wb_cache_pmem
+ffffffff8208d8d8 r __ksymtab_async_schedule_node
+ffffffff8208d8e4 r __ksymtab_async_schedule_node_domain
+ffffffff8208d8f0 r __ksymtab_async_synchronize_cookie
+ffffffff8208d8fc r __ksymtab_async_synchronize_cookie_domain
+ffffffff8208d908 r __ksymtab_async_synchronize_full
+ffffffff8208d914 r __ksymtab_async_synchronize_full_domain
+ffffffff8208d920 r __ksymtab_atomic_notifier_call_chain
+ffffffff8208d92c r __ksymtab_atomic_notifier_chain_register
+ffffffff8208d938 r __ksymtab_atomic_notifier_chain_register_unique_prio
+ffffffff8208d944 r __ksymtab_atomic_notifier_chain_unregister
+ffffffff8208d950 r __ksymtab_attribute_container_classdev_to_container
+ffffffff8208d95c r __ksymtab_attribute_container_find_class_device
+ffffffff8208d968 r __ksymtab_attribute_container_register
+ffffffff8208d974 r __ksymtab_attribute_container_unregister
+ffffffff8208d980 r __ksymtab_audit_enabled
+ffffffff8208d98c r __ksymtab_available_idle_cpu
+ffffffff8208d998 r __ksymtab_badblocks_check
+ffffffff8208d9a4 r __ksymtab_badblocks_clear
+ffffffff8208d9b0 r __ksymtab_badblocks_exit
+ffffffff8208d9bc r __ksymtab_badblocks_init
+ffffffff8208d9c8 r __ksymtab_badblocks_set
+ffffffff8208d9d4 r __ksymtab_badblocks_show
+ffffffff8208d9e0 r __ksymtab_badblocks_store
+ffffffff8208d9ec r __ksymtab_badrange_add
+ffffffff8208d9f8 r __ksymtab_badrange_forget
+ffffffff8208da04 r __ksymtab_badrange_init
+ffffffff8208da10 r __ksymtab_balance_dirty_pages_ratelimited_flags
+ffffffff8208da1c r __ksymtab_balance_push_callback
+ffffffff8208da28 r __ksymtab_balloon_mops
+ffffffff8208da34 r __ksymtab_balloon_page_alloc
+ffffffff8208da40 r __ksymtab_balloon_page_dequeue
+ffffffff8208da4c r __ksymtab_balloon_page_enqueue
+ffffffff8208da58 r __ksymtab_balloon_page_list_dequeue
+ffffffff8208da64 r __ksymtab_balloon_page_list_enqueue
+ffffffff8208da70 r __ksymtab_base64_decode
+ffffffff8208da7c r __ksymtab_base64_encode
+ffffffff8208da88 r __ksymtab_battery_hook_register
+ffffffff8208da94 r __ksymtab_battery_hook_unregister
+ffffffff8208daa0 r __ksymtab_bd_link_disk_holder
+ffffffff8208daac r __ksymtab_bd_prepare_to_claim
+ffffffff8208dab8 r __ksymtab_bd_unlink_disk_holder
+ffffffff8208dac4 r __ksymtab_bdev_alignment_offset
+ffffffff8208dad0 r __ksymtab_bdev_discard_alignment
+ffffffff8208dadc r __ksymtab_bdev_disk_changed
+ffffffff8208dae8 r __ksymtab_bdev_nr_zones
+ffffffff8208daf4 r __ksymtab_bdi_dev_name
+ffffffff8208db00 r __ksymtab_bgpio_init
+ffffffff8208db0c r __ksymtab_bio_add_zone_append_page
+ffffffff8208db18 r __ksymtab_bio_associate_blkg
+ffffffff8208db24 r __ksymtab_bio_associate_blkg_from_css
+ffffffff8208db30 r __ksymtab_bio_blkcg_css
+ffffffff8208db3c r __ksymtab_bio_clone_blkg_association
+ffffffff8208db48 r __ksymtab_bio_crypt_set_ctx
+ffffffff8208db54 r __ksymtab_bio_end_io_acct_remapped
+ffffffff8208db60 r __ksymtab_bio_iov_iter_get_pages
+ffffffff8208db6c r __ksymtab_bio_poll
+ffffffff8208db78 r __ksymtab_bio_start_io_acct
+ffffffff8208db84 r __ksymtab_bio_start_io_acct_time
+ffffffff8208db90 r __ksymtab_bio_trim
+ffffffff8208db9c r __ksymtab_bit_wait_io_timeout
+ffffffff8208dba8 r __ksymtab_bit_wait_timeout
+ffffffff8208dbb4 r __ksymtab_blk_abort_request
+ffffffff8208dbc0 r __ksymtab_blk_bio_list_merge
+ffffffff8208dbcc r __ksymtab_blk_clear_pm_only
+ffffffff8208dbd8 r __ksymtab_blk_crypto_derive_sw_secret
+ffffffff8208dbe4 r __ksymtab_blk_crypto_evict_key
+ffffffff8208dbf0 r __ksymtab_blk_crypto_has_capabilities
+ffffffff8208dbfc r __ksymtab_blk_crypto_init_key
+ffffffff8208dc08 r __ksymtab_blk_crypto_intersect_capabilities
+ffffffff8208dc14 r __ksymtab_blk_crypto_keyslot_index
+ffffffff8208dc20 r __ksymtab_blk_crypto_profile_destroy
+ffffffff8208dc2c r __ksymtab_blk_crypto_profile_init
+ffffffff8208dc38 r __ksymtab_blk_crypto_register
+ffffffff8208dc44 r __ksymtab_blk_crypto_reprogram_all_keys
+ffffffff8208dc50 r __ksymtab_blk_crypto_start_using_key
+ffffffff8208dc5c r __ksymtab_blk_crypto_update_capabilities
+ffffffff8208dc68 r __ksymtab_blk_execute_rq_nowait
+ffffffff8208dc74 r __ksymtab_blk_fill_rwbs
+ffffffff8208dc80 r __ksymtab_blk_freeze_queue_start
+ffffffff8208dc8c r __ksymtab_blk_insert_cloned_request
+ffffffff8208dc98 r __ksymtab_blk_io_schedule
+ffffffff8208dca4 r __ksymtab_blk_lld_busy
+ffffffff8208dcb0 r __ksymtab_blk_mark_disk_dead
+ffffffff8208dcbc r __ksymtab_blk_mq_alloc_request_hctx
+ffffffff8208dcc8 r __ksymtab_blk_mq_alloc_sq_tag_set
+ffffffff8208dcd4 r __ksymtab_blk_mq_complete_request_remote
+ffffffff8208dce0 r __ksymtab_blk_mq_debugfs_rq_show
+ffffffff8208dcec r __ksymtab_blk_mq_end_request_batch
+ffffffff8208dcf8 r __ksymtab_blk_mq_flush_busy_ctxs
+ffffffff8208dd04 r __ksymtab_blk_mq_free_request
+ffffffff8208dd10 r __ksymtab_blk_mq_freeze_queue
+ffffffff8208dd1c r __ksymtab_blk_mq_freeze_queue_wait
+ffffffff8208dd28 r __ksymtab_blk_mq_freeze_queue_wait_timeout
+ffffffff8208dd34 r __ksymtab_blk_mq_hctx_set_fq_lock_class
+ffffffff8208dd40 r __ksymtab_blk_mq_map_queues
+ffffffff8208dd4c r __ksymtab_blk_mq_pci_map_queues
+ffffffff8208dd58 r __ksymtab_blk_mq_queue_inflight
+ffffffff8208dd64 r __ksymtab_blk_mq_quiesce_queue
+ffffffff8208dd70 r __ksymtab_blk_mq_quiesce_queue_nowait
+ffffffff8208dd7c r __ksymtab_blk_mq_sched_mark_restart_hctx
+ffffffff8208dd88 r __ksymtab_blk_mq_sched_try_insert_merge
+ffffffff8208dd94 r __ksymtab_blk_mq_sched_try_merge
+ffffffff8208dda0 r __ksymtab_blk_mq_start_stopped_hw_queue
+ffffffff8208ddac r __ksymtab_blk_mq_unfreeze_queue
+ffffffff8208ddb8 r __ksymtab_blk_mq_unquiesce_queue
+ffffffff8208ddc4 r __ksymtab_blk_mq_update_nr_hw_queues
+ffffffff8208ddd0 r __ksymtab_blk_mq_virtio_map_queues
+ffffffff8208dddc r __ksymtab_blk_mq_wait_quiesce_done
+ffffffff8208dde8 r __ksymtab_blk_next_bio
+ffffffff8208ddf4 r __ksymtab_blk_op_str
+ffffffff8208de00 r __ksymtab_blk_queue_can_use_dma_map_merging
+ffffffff8208de0c r __ksymtab_blk_queue_flag_test_and_set
+ffffffff8208de18 r __ksymtab_blk_queue_max_discard_segments
+ffffffff8208de24 r __ksymtab_blk_queue_max_zone_append_sectors
+ffffffff8208de30 r __ksymtab_blk_queue_required_elevator_features
+ffffffff8208de3c r __ksymtab_blk_queue_rq_timeout
+ffffffff8208de48 r __ksymtab_blk_queue_write_cache
+ffffffff8208de54 r __ksymtab_blk_queue_zone_write_granularity
+ffffffff8208de60 r __ksymtab_blk_req_needs_zone_write_lock
+ffffffff8208de6c r __ksymtab_blk_req_zone_write_trylock
+ffffffff8208de78 r __ksymtab_blk_revalidate_disk_zones
+ffffffff8208de84 r __ksymtab_blk_rq_is_poll
+ffffffff8208de90 r __ksymtab_blk_rq_prep_clone
+ffffffff8208de9c r __ksymtab_blk_rq_unprep_clone
+ffffffff8208dea8 r __ksymtab_blk_set_pm_only
+ffffffff8208deb4 r __ksymtab_blk_stat_disable_accounting
+ffffffff8208dec0 r __ksymtab_blk_stat_enable_accounting
+ffffffff8208decc r __ksymtab_blk_status_to_errno
+ffffffff8208ded8 r __ksymtab_blk_steal_bios
+ffffffff8208dee4 r __ksymtab_blk_update_request
+ffffffff8208def0 r __ksymtab_blk_zone_cond_str
+ffffffff8208defc r __ksymtab_blkcg_activate_policy
+ffffffff8208df08 r __ksymtab_blkcg_deactivate_policy
+ffffffff8208df14 r __ksymtab_blkcg_policy_register
+ffffffff8208df20 r __ksymtab_blkcg_policy_unregister
+ffffffff8208df2c r __ksymtab_blkcg_print_blkgs
+ffffffff8208df38 r __ksymtab_blkcg_root
+ffffffff8208df44 r __ksymtab_blkcg_root_css
+ffffffff8208df50 r __ksymtab_blkdev_report_zones
+ffffffff8208df5c r __ksymtab_blkdev_zone_mgmt
+ffffffff8208df68 r __ksymtab_blkg_conf_finish
+ffffffff8208df74 r __ksymtab_blkg_conf_prep
+ffffffff8208df80 r __ksymtab_blkg_prfill_rwstat
+ffffffff8208df8c r __ksymtab_blkg_rwstat_exit
+ffffffff8208df98 r __ksymtab_blkg_rwstat_init
+ffffffff8208dfa4 r __ksymtab_blkg_rwstat_recursive_sum
+ffffffff8208dfb0 r __ksymtab_blockdev_superblock
+ffffffff8208dfbc r __ksymtab_blocking_notifier_call_chain
+ffffffff8208dfc8 r __ksymtab_blocking_notifier_call_chain_robust
+ffffffff8208dfd4 r __ksymtab_blocking_notifier_chain_register
+ffffffff8208dfe0 r __ksymtab_blocking_notifier_chain_register_unique_prio
+ffffffff8208dfec r __ksymtab_blocking_notifier_chain_unregister
+ffffffff8208dff8 r __ksymtab_boot_cpu_physical_apicid
+ffffffff8208e004 r __ksymtab_bpf_event_output
+ffffffff8208e010 r __ksymtab_bpf_master_redirect_enabled_key
+ffffffff8208e01c r __ksymtab_bpf_prog_alloc
+ffffffff8208e028 r __ksymtab_bpf_prog_create
+ffffffff8208e034 r __ksymtab_bpf_prog_create_from_user
+ffffffff8208e040 r __ksymtab_bpf_prog_destroy
+ffffffff8208e04c r __ksymtab_bpf_prog_free
+ffffffff8208e058 r __ksymtab_bpf_prog_select_runtime
+ffffffff8208e064 r __ksymtab_bpf_redirect_info
+ffffffff8208e070 r __ksymtab_bpf_warn_invalid_xdp_action
+ffffffff8208e07c r __ksymtab_bprintf
+ffffffff8208e088 r __ksymtab_bstr_printf
+ffffffff8208e094 r __ksymtab_bus_create_file
+ffffffff8208e0a0 r __ksymtab_bus_find_device
+ffffffff8208e0ac r __ksymtab_bus_for_each_dev
+ffffffff8208e0b8 r __ksymtab_bus_for_each_drv
+ffffffff8208e0c4 r __ksymtab_bus_get_device_klist
+ffffffff8208e0d0 r __ksymtab_bus_get_kset
+ffffffff8208e0dc r __ksymtab_bus_register
+ffffffff8208e0e8 r __ksymtab_bus_register_notifier
+ffffffff8208e0f4 r __ksymtab_bus_remove_file
+ffffffff8208e100 r __ksymtab_bus_rescan_devices
+ffffffff8208e10c r __ksymtab_bus_sort_breadthfirst
+ffffffff8208e118 r __ksymtab_bus_unregister
+ffffffff8208e124 r __ksymtab_bus_unregister_notifier
+ffffffff8208e130 r __ksymtab_byte_rev_table
+ffffffff8208e13c r __ksymtab_call_netevent_notifiers
+ffffffff8208e148 r __ksymtab_call_rcu
+ffffffff8208e154 r __ksymtab_call_rcu_tasks
+ffffffff8208e160 r __ksymtab_call_srcu
+ffffffff8208e16c r __ksymtab_cancel_work_sync
+ffffffff8208e178 r __ksymtab_cgroup_add_legacy_cftypes
+ffffffff8208e184 r __ksymtab_cgroup_attach_task_all
+ffffffff8208e190 r __ksymtab_cgroup_get_e_css
+ffffffff8208e19c r __ksymtab_cgroup_get_from_fd
+ffffffff8208e1a8 r __ksymtab_cgroup_get_from_id
+ffffffff8208e1b4 r __ksymtab_cgroup_get_from_path
+ffffffff8208e1c0 r __ksymtab_cgroup_path_ns
+ffffffff8208e1cc r __ksymtab_cgroup_taskset_first
+ffffffff8208e1d8 r __ksymtab_cgroup_taskset_next
+ffffffff8208e1e4 r __ksymtab_cgrp_dfl_root
+ffffffff8208e1f0 r __ksymtab_check_move_unevictable_folios
+ffffffff8208e1fc r __ksymtab_check_move_unevictable_pages
+ffffffff8208e208 r __ksymtab_check_preempt_curr
+ffffffff8208e214 r __ksymtab_check_tsc_unstable
+ffffffff8208e220 r __ksymtab_class_compat_create_link
+ffffffff8208e22c r __ksymtab_class_compat_register
+ffffffff8208e238 r __ksymtab_class_compat_remove_link
+ffffffff8208e244 r __ksymtab_class_compat_unregister
+ffffffff8208e250 r __ksymtab_class_create_file_ns
+ffffffff8208e25c r __ksymtab_class_destroy
+ffffffff8208e268 r __ksymtab_class_dev_iter_exit
+ffffffff8208e274 r __ksymtab_class_dev_iter_init
+ffffffff8208e280 r __ksymtab_class_dev_iter_next
+ffffffff8208e28c r __ksymtab_class_find_device
+ffffffff8208e298 r __ksymtab_class_for_each_device
+ffffffff8208e2a4 r __ksymtab_class_interface_register
+ffffffff8208e2b0 r __ksymtab_class_interface_unregister
+ffffffff8208e2bc r __ksymtab_class_remove_file_ns
+ffffffff8208e2c8 r __ksymtab_class_unregister
+ffffffff8208e2d4 r __ksymtab_cleanup_srcu_struct
+ffffffff8208e2e0 r __ksymtab_clear_mce_nospec
+ffffffff8208e2ec r __ksymtab_clear_page_erms
+ffffffff8208e2f8 r __ksymtab_clear_page_orig
+ffffffff8208e304 r __ksymtab_clear_page_rep
+ffffffff8208e310 r __ksymtab_clear_selection
+ffffffff8208e31c r __ksymtab_clflush_cache_range
+ffffffff8208e328 r __ksymtab_clockevent_delta2ns
+ffffffff8208e334 r __ksymtab_clockevents_config_and_register
+ffffffff8208e340 r __ksymtab_clockevents_register_device
+ffffffff8208e34c r __ksymtab_clockevents_unbind_device
+ffffffff8208e358 r __ksymtab_clocks_calc_mult_shift
+ffffffff8208e364 r __ksymtab_clocksource_verify_percpu
+ffffffff8208e370 r __ksymtab_clone_private_mount
+ffffffff8208e37c r __ksymtab_compat_only_sysfs_link_entry_to_kobj
+ffffffff8208e388 r __ksymtab_component_add
+ffffffff8208e394 r __ksymtab_component_add_typed
+ffffffff8208e3a0 r __ksymtab_component_bind_all
+ffffffff8208e3ac r __ksymtab_component_compare_dev
+ffffffff8208e3b8 r __ksymtab_component_compare_dev_name
+ffffffff8208e3c4 r __ksymtab_component_compare_of
+ffffffff8208e3d0 r __ksymtab_component_del
+ffffffff8208e3dc r __ksymtab_component_master_add_with_match
+ffffffff8208e3e8 r __ksymtab_component_master_del
+ffffffff8208e3f4 r __ksymtab_component_release_of
+ffffffff8208e400 r __ksymtab_component_unbind_all
+ffffffff8208e40c r __ksymtab_con_debug_enter
+ffffffff8208e418 r __ksymtab_con_debug_leave
+ffffffff8208e424 r __ksymtab_cond_synchronize_rcu
+ffffffff8208e430 r __ksymtab_cond_synchronize_rcu_expedited
+ffffffff8208e43c r __ksymtab_cond_synchronize_rcu_expedited_full
+ffffffff8208e448 r __ksymtab_cond_synchronize_rcu_full
+ffffffff8208e454 r __ksymtab_cond_wakeup_cpu0
+ffffffff8208e460 r __ksymtab_console_drivers
+ffffffff8208e46c r __ksymtab_console_printk
+ffffffff8208e478 r __ksymtab_console_verbose
+ffffffff8208e484 r __ksymtab_context_tracking
+ffffffff8208e490 r __ksymtab_copy_bpf_fprog_from_user
+ffffffff8208e49c r __ksymtab_copy_from_kernel_nofault
+ffffffff8208e4a8 r __ksymtab_copy_from_user_nmi
+ffffffff8208e4b4 r __ksymtab_copy_from_user_nofault
+ffffffff8208e4c0 r __ksymtab_copy_mc_to_kernel
+ffffffff8208e4cc r __ksymtab_copy_to_user_nofault
+ffffffff8208e4d8 r __ksymtab_cppc_allow_fast_switch
+ffffffff8208e4e4 r __ksymtab_cppc_get_desired_perf
+ffffffff8208e4f0 r __ksymtab_cppc_get_perf_caps
+ffffffff8208e4fc r __ksymtab_cppc_get_perf_ctrs
+ffffffff8208e508 r __ksymtab_cppc_get_transition_latency
+ffffffff8208e514 r __ksymtab_cppc_perf_ctrs_in_pcc
+ffffffff8208e520 r __ksymtab_cppc_set_enable
+ffffffff8208e52c r __ksymtab_cppc_set_perf
+ffffffff8208e538 r __ksymtab_cpu_bit_bitmap
+ffffffff8208e544 r __ksymtab_cpu_cgrp_subsys_enabled_key
+ffffffff8208e550 r __ksymtab_cpu_cgrp_subsys_on_dfl_key
+ffffffff8208e55c r __ksymtab_cpu_device_create
+ffffffff8208e568 r __ksymtab_cpu_has_xfeatures
+ffffffff8208e574 r __ksymtab_cpu_hotplug_disable
+ffffffff8208e580 r __ksymtab_cpu_hotplug_enable
+ffffffff8208e58c r __ksymtab_cpu_irqtime
+ffffffff8208e598 r __ksymtab_cpu_is_hotpluggable
+ffffffff8208e5a4 r __ksymtab_cpu_latency_qos_add_request
+ffffffff8208e5b0 r __ksymtab_cpu_latency_qos_remove_request
+ffffffff8208e5bc r __ksymtab_cpu_latency_qos_request_active
+ffffffff8208e5c8 r __ksymtab_cpu_latency_qos_update_request
+ffffffff8208e5d4 r __ksymtab_cpu_mitigations_auto_nosmt
+ffffffff8208e5e0 r __ksymtab_cpu_mitigations_off
+ffffffff8208e5ec r __ksymtab_cpu_smt_possible
+ffffffff8208e5f8 r __ksymtab_cpu_subsys
+ffffffff8208e604 r __ksymtab_cpuacct_cgrp_subsys_enabled_key
+ffffffff8208e610 r __ksymtab_cpuacct_cgrp_subsys_on_dfl_key
+ffffffff8208e61c r __ksymtab_cpufreq_add_update_util_hook
+ffffffff8208e628 r __ksymtab_cpufreq_boost_enabled
+ffffffff8208e634 r __ksymtab_cpufreq_cooling_register
+ffffffff8208e640 r __ksymtab_cpufreq_cooling_unregister
+ffffffff8208e64c r __ksymtab_cpufreq_cpu_get
+ffffffff8208e658 r __ksymtab_cpufreq_cpu_get_raw
+ffffffff8208e664 r __ksymtab_cpufreq_cpu_put
+ffffffff8208e670 r __ksymtab_cpufreq_dbs_governor_exit
+ffffffff8208e67c r __ksymtab_cpufreq_dbs_governor_init
+ffffffff8208e688 r __ksymtab_cpufreq_dbs_governor_limits
+ffffffff8208e694 r __ksymtab_cpufreq_dbs_governor_start
+ffffffff8208e6a0 r __ksymtab_cpufreq_dbs_governor_stop
+ffffffff8208e6ac r __ksymtab_cpufreq_disable_fast_switch
+ffffffff8208e6b8 r __ksymtab_cpufreq_driver_fast_switch
+ffffffff8208e6c4 r __ksymtab_cpufreq_driver_resolve_freq
+ffffffff8208e6d0 r __ksymtab_cpufreq_driver_target
+ffffffff8208e6dc r __ksymtab_cpufreq_enable_boost_support
+ffffffff8208e6e8 r __ksymtab_cpufreq_enable_fast_switch
+ffffffff8208e6f4 r __ksymtab_cpufreq_freq_attr_scaling_available_freqs
+ffffffff8208e700 r __ksymtab_cpufreq_freq_attr_scaling_boost_freqs
+ffffffff8208e70c r __ksymtab_cpufreq_freq_transition_begin
+ffffffff8208e718 r __ksymtab_cpufreq_freq_transition_end
+ffffffff8208e724 r __ksymtab_cpufreq_frequency_table_get_index
+ffffffff8208e730 r __ksymtab_cpufreq_frequency_table_verify
+ffffffff8208e73c r __ksymtab_cpufreq_generic_attr
+ffffffff8208e748 r __ksymtab_cpufreq_generic_frequency_table_verify
+ffffffff8208e754 r __ksymtab_cpufreq_generic_get
+ffffffff8208e760 r __ksymtab_cpufreq_generic_init
+ffffffff8208e76c r __ksymtab_cpufreq_get_current_driver
+ffffffff8208e778 r __ksymtab_cpufreq_get_driver_data
+ffffffff8208e784 r __ksymtab_cpufreq_policy_transition_delay_us
+ffffffff8208e790 r __ksymtab_cpufreq_register_driver
+ffffffff8208e79c r __ksymtab_cpufreq_register_governor
+ffffffff8208e7a8 r __ksymtab_cpufreq_remove_update_util_hook
+ffffffff8208e7b4 r __ksymtab_cpufreq_show_cpus
+ffffffff8208e7c0 r __ksymtab_cpufreq_table_index_unsorted
+ffffffff8208e7cc r __ksymtab_cpufreq_this_cpu_can_update
+ffffffff8208e7d8 r __ksymtab_cpufreq_unregister_driver
+ffffffff8208e7e4 r __ksymtab_cpufreq_unregister_governor
+ffffffff8208e7f0 r __ksymtab_cpufreq_update_limits
+ffffffff8208e7fc r __ksymtab_cpufreq_update_util_data
+ffffffff8208e808 r __ksymtab_cpuhp_tasks_frozen
+ffffffff8208e814 r __ksymtab_cpuidle_disable_device
+ffffffff8208e820 r __ksymtab_cpuidle_driver_state_disabled
+ffffffff8208e82c r __ksymtab_cpuidle_enable_device
+ffffffff8208e838 r __ksymtab_cpuidle_get_cpu_driver
+ffffffff8208e844 r __ksymtab_cpuidle_get_driver
+ffffffff8208e850 r __ksymtab_cpuidle_governor_latency_req
+ffffffff8208e85c r __ksymtab_cpuidle_pause_and_lock
+ffffffff8208e868 r __ksymtab_cpuidle_poll_state_init
+ffffffff8208e874 r __ksymtab_cpuidle_register
+ffffffff8208e880 r __ksymtab_cpuidle_register_device
+ffffffff8208e88c r __ksymtab_cpuidle_register_driver
+ffffffff8208e898 r __ksymtab_cpuidle_register_governor
+ffffffff8208e8a4 r __ksymtab_cpuidle_resume_and_unlock
+ffffffff8208e8b0 r __ksymtab_cpuidle_unregister
+ffffffff8208e8bc r __ksymtab_cpuidle_unregister_device
+ffffffff8208e8c8 r __ksymtab_cpuidle_unregister_driver
+ffffffff8208e8d4 r __ksymtab_cpupri_find_fitness
+ffffffff8208e8e0 r __ksymtab_cpus_read_lock
+ffffffff8208e8ec r __ksymtab_cpus_read_trylock
+ffffffff8208e8f8 r __ksymtab_cpus_read_unlock
+ffffffff8208e904 r __ksymtab_cpuset_cgrp_subsys_enabled_key
+ffffffff8208e910 r __ksymtab_cpuset_cgrp_subsys_on_dfl_key
+ffffffff8208e91c r __ksymtab_cpuset_cpus_allowed
+ffffffff8208e928 r __ksymtab_cpuset_mem_spread_node
+ffffffff8208e934 r __ksymtab_cr4_read_shadow
+ffffffff8208e940 r __ksymtab_crash_vmclear_loaded_vmcss
+ffffffff8208e94c r __ksymtab_cryptd_aead_child
+ffffffff8208e958 r __ksymtab_cryptd_aead_queued
+ffffffff8208e964 r __ksymtab_cryptd_ahash_child
+ffffffff8208e970 r __ksymtab_cryptd_ahash_queued
+ffffffff8208e97c r __ksymtab_cryptd_alloc_aead
+ffffffff8208e988 r __ksymtab_cryptd_alloc_ahash
+ffffffff8208e994 r __ksymtab_cryptd_alloc_skcipher
+ffffffff8208e9a0 r __ksymtab_cryptd_free_aead
+ffffffff8208e9ac r __ksymtab_cryptd_free_ahash
+ffffffff8208e9b8 r __ksymtab_cryptd_free_skcipher
+ffffffff8208e9c4 r __ksymtab_cryptd_shash_desc
+ffffffff8208e9d0 r __ksymtab_cryptd_skcipher_child
+ffffffff8208e9dc r __ksymtab_cryptd_skcipher_queued
+ffffffff8208e9e8 r __ksymtab_crypto_aead_decrypt
+ffffffff8208e9f4 r __ksymtab_crypto_aead_encrypt
+ffffffff8208ea00 r __ksymtab_crypto_aead_setauthsize
+ffffffff8208ea0c r __ksymtab_crypto_aead_setkey
+ffffffff8208ea18 r __ksymtab_crypto_aes_set_key
+ffffffff8208ea24 r __ksymtab_crypto_ahash_digest
+ffffffff8208ea30 r __ksymtab_crypto_ahash_final
+ffffffff8208ea3c r __ksymtab_crypto_ahash_finup
+ffffffff8208ea48 r __ksymtab_crypto_ahash_setkey
+ffffffff8208ea54 r __ksymtab_crypto_alg_extsize
+ffffffff8208ea60 r __ksymtab_crypto_alg_list
+ffffffff8208ea6c r __ksymtab_crypto_alg_mod_lookup
+ffffffff8208ea78 r __ksymtab_crypto_alg_sem
+ffffffff8208ea84 r __ksymtab_crypto_alg_tested
+ffffffff8208ea90 r __ksymtab_crypto_alloc_acomp
+ffffffff8208ea9c r __ksymtab_crypto_alloc_acomp_node
+ffffffff8208eaa8 r __ksymtab_crypto_alloc_aead
+ffffffff8208eab4 r __ksymtab_crypto_alloc_ahash
+ffffffff8208eac0 r __ksymtab_crypto_alloc_akcipher
+ffffffff8208eacc r __ksymtab_crypto_alloc_base
+ffffffff8208ead8 r __ksymtab_crypto_alloc_kpp
+ffffffff8208eae4 r __ksymtab_crypto_alloc_rng
+ffffffff8208eaf0 r __ksymtab_crypto_alloc_shash
+ffffffff8208eafc r __ksymtab_crypto_alloc_skcipher
+ffffffff8208eb08 r __ksymtab_crypto_alloc_sync_skcipher
+ffffffff8208eb14 r __ksymtab_crypto_alloc_tfm_node
+ffffffff8208eb20 r __ksymtab_crypto_attr_alg_name
+ffffffff8208eb2c r __ksymtab_crypto_authenc_extractkeys
+ffffffff8208eb38 r __ksymtab_crypto_chain
+ffffffff8208eb44 r __ksymtab_crypto_check_attr_type
+ffffffff8208eb50 r __ksymtab_crypto_cipher_decrypt_one
+ffffffff8208eb5c r __ksymtab_crypto_cipher_encrypt_one
+ffffffff8208eb68 r __ksymtab_crypto_cipher_setkey
+ffffffff8208eb74 r __ksymtab_crypto_comp_compress
+ffffffff8208eb80 r __ksymtab_crypto_comp_decompress
+ffffffff8208eb8c r __ksymtab_crypto_create_tfm_node
+ffffffff8208eb98 r __ksymtab_crypto_default_rng
+ffffffff8208eba4 r __ksymtab_crypto_del_default_rng
+ffffffff8208ebb0 r __ksymtab_crypto_dequeue_request
+ffffffff8208ebbc r __ksymtab_crypto_destroy_tfm
+ffffffff8208ebc8 r __ksymtab_crypto_drop_spawn
+ffffffff8208ebd4 r __ksymtab_crypto_enqueue_request
+ffffffff8208ebe0 r __ksymtab_crypto_enqueue_request_head
+ffffffff8208ebec r __ksymtab_crypto_find_alg
+ffffffff8208ebf8 r __ksymtab_crypto_ft_tab
+ffffffff8208ec04 r __ksymtab_crypto_get_attr_type
+ffffffff8208ec10 r __ksymtab_crypto_get_default_null_skcipher
+ffffffff8208ec1c r __ksymtab_crypto_get_default_rng
+ffffffff8208ec28 r __ksymtab_crypto_grab_aead
+ffffffff8208ec34 r __ksymtab_crypto_grab_ahash
+ffffffff8208ec40 r __ksymtab_crypto_grab_akcipher
+ffffffff8208ec4c r __ksymtab_crypto_grab_kpp
+ffffffff8208ec58 r __ksymtab_crypto_grab_shash
+ffffffff8208ec64 r __ksymtab_crypto_grab_skcipher
+ffffffff8208ec70 r __ksymtab_crypto_grab_spawn
+ffffffff8208ec7c r __ksymtab_crypto_has_ahash
+ffffffff8208ec88 r __ksymtab_crypto_has_alg
+ffffffff8208ec94 r __ksymtab_crypto_has_kpp
+ffffffff8208eca0 r __ksymtab_crypto_has_shash
+ffffffff8208ecac r __ksymtab_crypto_has_skcipher
+ffffffff8208ecb8 r __ksymtab_crypto_hash_alg_has_setkey
+ffffffff8208ecc4 r __ksymtab_crypto_hash_walk_done
+ffffffff8208ecd0 r __ksymtab_crypto_hash_walk_first
+ffffffff8208ecdc r __ksymtab_crypto_inc
+ffffffff8208ece8 r __ksymtab_crypto_init_queue
+ffffffff8208ecf4 r __ksymtab_crypto_inst_setname
+ffffffff8208ed00 r __ksymtab_crypto_it_tab
+ffffffff8208ed0c r __ksymtab_crypto_larval_alloc
+ffffffff8208ed18 r __ksymtab_crypto_larval_kill
+ffffffff8208ed24 r __ksymtab_crypto_lookup_template
+ffffffff8208ed30 r __ksymtab_crypto_mod_get
+ffffffff8208ed3c r __ksymtab_crypto_mod_put
+ffffffff8208ed48 r __ksymtab_crypto_probing_notify
+ffffffff8208ed54 r __ksymtab_crypto_put_default_null_skcipher
+ffffffff8208ed60 r __ksymtab_crypto_put_default_rng
+ffffffff8208ed6c r __ksymtab_crypto_register_acomp
+ffffffff8208ed78 r __ksymtab_crypto_register_acomps
+ffffffff8208ed84 r __ksymtab_crypto_register_aead
+ffffffff8208ed90 r __ksymtab_crypto_register_aeads
+ffffffff8208ed9c r __ksymtab_crypto_register_ahash
+ffffffff8208eda8 r __ksymtab_crypto_register_ahashes
+ffffffff8208edb4 r __ksymtab_crypto_register_akcipher
+ffffffff8208edc0 r __ksymtab_crypto_register_alg
+ffffffff8208edcc r __ksymtab_crypto_register_algs
+ffffffff8208edd8 r __ksymtab_crypto_register_instance
+ffffffff8208ede4 r __ksymtab_crypto_register_kpp
+ffffffff8208edf0 r __ksymtab_crypto_register_notifier
+ffffffff8208edfc r __ksymtab_crypto_register_rng
+ffffffff8208ee08 r __ksymtab_crypto_register_rngs
+ffffffff8208ee14 r __ksymtab_crypto_register_scomp
+ffffffff8208ee20 r __ksymtab_crypto_register_scomps
+ffffffff8208ee2c r __ksymtab_crypto_register_shash
+ffffffff8208ee38 r __ksymtab_crypto_register_shashes
+ffffffff8208ee44 r __ksymtab_crypto_register_skcipher
+ffffffff8208ee50 r __ksymtab_crypto_register_skciphers
+ffffffff8208ee5c r __ksymtab_crypto_register_template
+ffffffff8208ee68 r __ksymtab_crypto_register_templates
+ffffffff8208ee74 r __ksymtab_crypto_remove_final
+ffffffff8208ee80 r __ksymtab_crypto_remove_spawns
+ffffffff8208ee8c r __ksymtab_crypto_req_done
+ffffffff8208ee98 r __ksymtab_crypto_rng_reset
+ffffffff8208eea4 r __ksymtab_crypto_shash_alg_has_setkey
+ffffffff8208eeb0 r __ksymtab_crypto_shash_digest
+ffffffff8208eebc r __ksymtab_crypto_shash_final
+ffffffff8208eec8 r __ksymtab_crypto_shash_finup
+ffffffff8208eed4 r __ksymtab_crypto_shash_setkey
+ffffffff8208eee0 r __ksymtab_crypto_shash_tfm_digest
+ffffffff8208eeec r __ksymtab_crypto_shash_update
+ffffffff8208eef8 r __ksymtab_crypto_shoot_alg
+ffffffff8208ef04 r __ksymtab_crypto_skcipher_decrypt
+ffffffff8208ef10 r __ksymtab_crypto_skcipher_encrypt
+ffffffff8208ef1c r __ksymtab_crypto_skcipher_setkey
+ffffffff8208ef28 r __ksymtab_crypto_spawn_tfm
+ffffffff8208ef34 r __ksymtab_crypto_spawn_tfm2
+ffffffff8208ef40 r __ksymtab_crypto_type_has_alg
+ffffffff8208ef4c r __ksymtab_crypto_unregister_acomp
+ffffffff8208ef58 r __ksymtab_crypto_unregister_acomps
+ffffffff8208ef64 r __ksymtab_crypto_unregister_aead
+ffffffff8208ef70 r __ksymtab_crypto_unregister_aeads
+ffffffff8208ef7c r __ksymtab_crypto_unregister_ahash
+ffffffff8208ef88 r __ksymtab_crypto_unregister_ahashes
+ffffffff8208ef94 r __ksymtab_crypto_unregister_akcipher
+ffffffff8208efa0 r __ksymtab_crypto_unregister_alg
+ffffffff8208efac r __ksymtab_crypto_unregister_algs
+ffffffff8208efb8 r __ksymtab_crypto_unregister_instance
+ffffffff8208efc4 r __ksymtab_crypto_unregister_kpp
+ffffffff8208efd0 r __ksymtab_crypto_unregister_notifier
+ffffffff8208efdc r __ksymtab_crypto_unregister_rng
+ffffffff8208efe8 r __ksymtab_crypto_unregister_rngs
+ffffffff8208eff4 r __ksymtab_crypto_unregister_scomp
+ffffffff8208f000 r __ksymtab_crypto_unregister_scomps
+ffffffff8208f00c r __ksymtab_crypto_unregister_shash
+ffffffff8208f018 r __ksymtab_crypto_unregister_shashes
+ffffffff8208f024 r __ksymtab_crypto_unregister_skcipher
+ffffffff8208f030 r __ksymtab_crypto_unregister_skciphers
+ffffffff8208f03c r __ksymtab_crypto_unregister_template
+ffffffff8208f048 r __ksymtab_crypto_unregister_templates
+ffffffff8208f054 r __ksymtab_crypto_wait_for_test
+ffffffff8208f060 r __ksymtab_css_next_child
+ffffffff8208f06c r __ksymtab_css_next_descendant_pre
+ffffffff8208f078 r __ksymtab_ct_idle_enter
+ffffffff8208f084 r __ksymtab_ct_idle_exit
+ffffffff8208f090 r __ksymtab_current_is_async
+ffffffff8208f09c r __ksymtab_d_same_name
+ffffffff8208f0a8 r __ksymtab_dax_alive
+ffffffff8208f0b4 r __ksymtab_dax_direct_access
+ffffffff8208f0c0 r __ksymtab_dax_driver_unregister
+ffffffff8208f0cc r __ksymtab_dax_flush
+ffffffff8208f0d8 r __ksymtab_dax_get_private
+ffffffff8208f0e4 r __ksymtab_dax_holder
+ffffffff8208f0f0 r __ksymtab_dax_holder_notify_failure
+ffffffff8208f0fc r __ksymtab_dax_inode
+ffffffff8208f108 r __ksymtab_dax_read_lock
+ffffffff8208f114 r __ksymtab_dax_read_unlock
+ffffffff8208f120 r __ksymtab_dax_recovery_write
+ffffffff8208f12c r __ksymtab_dax_region_put
+ffffffff8208f138 r __ksymtab_dax_synchronous
+ffffffff8208f144 r __ksymtab_dax_write_cache
+ffffffff8208f150 r __ksymtab_dax_write_cache_enabled
+ffffffff8208f15c r __ksymtab_dax_zero_page_range
+ffffffff8208f168 r __ksymtab_dbs_update
+ffffffff8208f174 r __ksymtab_deactivate_task
+ffffffff8208f180 r __ksymtab_debug_locks
+ffffffff8208f18c r __ksymtab_debug_locks_off
+ffffffff8208f198 r __ksymtab_debug_locks_silent
+ffffffff8208f1a4 r __ksymtab_debugfs_attr_read
+ffffffff8208f1b0 r __ksymtab_debugfs_attr_write
+ffffffff8208f1bc r __ksymtab_debugfs_attr_write_signed
+ffffffff8208f1c8 r __ksymtab_debugfs_create_atomic_t
+ffffffff8208f1d4 r __ksymtab_debugfs_create_blob
+ffffffff8208f1e0 r __ksymtab_debugfs_create_bool
+ffffffff8208f1ec r __ksymtab_debugfs_create_devm_seqfile
+ffffffff8208f1f8 r __ksymtab_debugfs_create_dir
+ffffffff8208f204 r __ksymtab_debugfs_create_file
+ffffffff8208f210 r __ksymtab_debugfs_create_file_size
+ffffffff8208f21c r __ksymtab_debugfs_create_file_unsafe
+ffffffff8208f228 r __ksymtab_debugfs_create_regset32
+ffffffff8208f234 r __ksymtab_debugfs_create_size_t
+ffffffff8208f240 r __ksymtab_debugfs_create_symlink
+ffffffff8208f24c r __ksymtab_debugfs_create_u16
+ffffffff8208f258 r __ksymtab_debugfs_create_u32
+ffffffff8208f264 r __ksymtab_debugfs_create_u32_array
+ffffffff8208f270 r __ksymtab_debugfs_create_u64
+ffffffff8208f27c r __ksymtab_debugfs_create_u8
+ffffffff8208f288 r __ksymtab_debugfs_create_ulong
+ffffffff8208f294 r __ksymtab_debugfs_create_x16
+ffffffff8208f2a0 r __ksymtab_debugfs_create_x32
+ffffffff8208f2ac r __ksymtab_debugfs_create_x64
+ffffffff8208f2b8 r __ksymtab_debugfs_create_x8
+ffffffff8208f2c4 r __ksymtab_debugfs_file_get
+ffffffff8208f2d0 r __ksymtab_debugfs_file_put
+ffffffff8208f2dc r __ksymtab_debugfs_initialized
+ffffffff8208f2e8 r __ksymtab_debugfs_lookup
+ffffffff8208f2f4 r __ksymtab_debugfs_lookup_and_remove
+ffffffff8208f300 r __ksymtab_debugfs_print_regs32
+ffffffff8208f30c r __ksymtab_debugfs_read_file_bool
+ffffffff8208f318 r __ksymtab_debugfs_real_fops
+ffffffff8208f324 r __ksymtab_debugfs_remove
+ffffffff8208f330 r __ksymtab_debugfs_rename
+ffffffff8208f33c r __ksymtab_debugfs_write_file_bool
+ffffffff8208f348 r __ksymtab_decode_rs8
+ffffffff8208f354 r __ksymtab_default_cpu_present_to_apicid
+ffffffff8208f360 r __ksymtab_dequeue_signal
+ffffffff8208f36c r __ksymtab_des3_ede_decrypt
+ffffffff8208f378 r __ksymtab_des3_ede_encrypt
+ffffffff8208f384 r __ksymtab_des3_ede_expand_key
+ffffffff8208f390 r __ksymtab_des_decrypt
+ffffffff8208f39c r __ksymtab_des_encrypt
+ffffffff8208f3a8 r __ksymtab_des_expand_key
+ffffffff8208f3b4 r __ksymtab_desc_to_gpio
+ffffffff8208f3c0 r __ksymtab_destroy_workqueue
+ffffffff8208f3cc r __ksymtab_dev_err_probe
+ffffffff8208f3d8 r __ksymtab_dev_fetch_sw_netstats
+ffffffff8208f3e4 r __ksymtab_dev_fill_forward_path
+ffffffff8208f3f0 r __ksymtab_dev_fill_metadata_dst
+ffffffff8208f3fc r __ksymtab_dev_forward_skb
+ffffffff8208f408 r __ksymtab_dev_fwnode
+ffffffff8208f414 r __ksymtab_dev_get_regmap
+ffffffff8208f420 r __ksymtab_dev_get_tstats64
+ffffffff8208f42c r __ksymtab_dev_nit_active
+ffffffff8208f438 r __ksymtab_dev_pm_clear_wake_irq
+ffffffff8208f444 r __ksymtab_dev_pm_disable_wake_irq
+ffffffff8208f450 r __ksymtab_dev_pm_domain_attach
+ffffffff8208f45c r __ksymtab_dev_pm_domain_attach_by_id
+ffffffff8208f468 r __ksymtab_dev_pm_domain_attach_by_name
+ffffffff8208f474 r __ksymtab_dev_pm_domain_detach
+ffffffff8208f480 r __ksymtab_dev_pm_domain_set
+ffffffff8208f48c r __ksymtab_dev_pm_domain_start
+ffffffff8208f498 r __ksymtab_dev_pm_enable_wake_irq
+ffffffff8208f4a4 r __ksymtab_dev_pm_get_subsys_data
+ffffffff8208f4b0 r __ksymtab_dev_pm_put_subsys_data
+ffffffff8208f4bc r __ksymtab_dev_pm_qos_add_ancestor_request
+ffffffff8208f4c8 r __ksymtab_dev_pm_qos_add_notifier
+ffffffff8208f4d4 r __ksymtab_dev_pm_qos_add_request
+ffffffff8208f4e0 r __ksymtab_dev_pm_qos_expose_flags
+ffffffff8208f4ec r __ksymtab_dev_pm_qos_expose_latency_limit
+ffffffff8208f4f8 r __ksymtab_dev_pm_qos_expose_latency_tolerance
+ffffffff8208f504 r __ksymtab_dev_pm_qos_flags
+ffffffff8208f510 r __ksymtab_dev_pm_qos_hide_flags
+ffffffff8208f51c r __ksymtab_dev_pm_qos_hide_latency_limit
+ffffffff8208f528 r __ksymtab_dev_pm_qos_hide_latency_tolerance
+ffffffff8208f534 r __ksymtab_dev_pm_qos_read_value
+ffffffff8208f540 r __ksymtab_dev_pm_qos_remove_notifier
+ffffffff8208f54c r __ksymtab_dev_pm_qos_remove_request
+ffffffff8208f558 r __ksymtab_dev_pm_qos_update_request
+ffffffff8208f564 r __ksymtab_dev_pm_qos_update_user_latency_tolerance
+ffffffff8208f570 r __ksymtab_dev_pm_set_dedicated_wake_irq
+ffffffff8208f57c r __ksymtab_dev_pm_set_dedicated_wake_irq_reverse
+ffffffff8208f588 r __ksymtab_dev_pm_set_wake_irq
+ffffffff8208f594 r __ksymtab_dev_queue_xmit_nit
+ffffffff8208f5a0 r __ksymtab_dev_set_name
+ffffffff8208f5ac r __ksymtab_dev_xdp_prog_count
+ffffffff8208f5b8 r __ksymtab_device_add
+ffffffff8208f5c4 r __ksymtab_device_add_groups
+ffffffff8208f5d0 r __ksymtab_device_add_software_node
+ffffffff8208f5dc r __ksymtab_device_attach
+ffffffff8208f5e8 r __ksymtab_device_bind_driver
+ffffffff8208f5f4 r __ksymtab_device_change_owner
+ffffffff8208f600 r __ksymtab_device_create
+ffffffff8208f60c r __ksymtab_device_create_bin_file
+ffffffff8208f618 r __ksymtab_device_create_file
+ffffffff8208f624 r __ksymtab_device_create_managed_software_node
+ffffffff8208f630 r __ksymtab_device_create_with_groups
+ffffffff8208f63c r __ksymtab_device_del
+ffffffff8208f648 r __ksymtab_device_destroy
+ffffffff8208f654 r __ksymtab_device_dma_supported
+ffffffff8208f660 r __ksymtab_device_driver_attach
+ffffffff8208f66c r __ksymtab_device_find_any_child
+ffffffff8208f678 r __ksymtab_device_find_child
+ffffffff8208f684 r __ksymtab_device_find_child_by_name
+ffffffff8208f690 r __ksymtab_device_for_each_child
+ffffffff8208f69c r __ksymtab_device_for_each_child_reverse
+ffffffff8208f6a8 r __ksymtab_device_get_child_node_count
+ffffffff8208f6b4 r __ksymtab_device_get_dma_attr
+ffffffff8208f6c0 r __ksymtab_device_get_match_data
+ffffffff8208f6cc r __ksymtab_device_get_named_child_node
+ffffffff8208f6d8 r __ksymtab_device_get_next_child_node
+ffffffff8208f6e4 r __ksymtab_device_get_phy_mode
+ffffffff8208f6f0 r __ksymtab_device_initialize
+ffffffff8208f6fc r __ksymtab_device_iommu_capable
+ffffffff8208f708 r __ksymtab_device_link_add
+ffffffff8208f714 r __ksymtab_device_link_del
+ffffffff8208f720 r __ksymtab_device_link_remove
+ffffffff8208f72c r __ksymtab_device_match_any
+ffffffff8208f738 r __ksymtab_device_match_devt
+ffffffff8208f744 r __ksymtab_device_match_fwnode
+ffffffff8208f750 r __ksymtab_device_match_name
+ffffffff8208f75c r __ksymtab_device_match_of_node
+ffffffff8208f768 r __ksymtab_device_move
+ffffffff8208f774 r __ksymtab_device_node_to_regmap
+ffffffff8208f780 r __ksymtab_device_pm_wait_for_dev
+ffffffff8208f78c r __ksymtab_device_property_match_string
+ffffffff8208f798 r __ksymtab_device_property_present
+ffffffff8208f7a4 r __ksymtab_device_property_read_string
+ffffffff8208f7b0 r __ksymtab_device_property_read_string_array
+ffffffff8208f7bc r __ksymtab_device_property_read_u16_array
+ffffffff8208f7c8 r __ksymtab_device_property_read_u32_array
+ffffffff8208f7d4 r __ksymtab_device_property_read_u64_array
+ffffffff8208f7e0 r __ksymtab_device_property_read_u8_array
+ffffffff8208f7ec r __ksymtab_device_register
+ffffffff8208f7f8 r __ksymtab_device_release_driver
+ffffffff8208f804 r __ksymtab_device_remove_bin_file
+ffffffff8208f810 r __ksymtab_device_remove_file
+ffffffff8208f81c r __ksymtab_device_remove_file_self
+ffffffff8208f828 r __ksymtab_device_remove_groups
+ffffffff8208f834 r __ksymtab_device_remove_software_node
+ffffffff8208f840 r __ksymtab_device_rename
+ffffffff8208f84c r __ksymtab_device_reprobe
+ffffffff8208f858 r __ksymtab_device_set_node
+ffffffff8208f864 r __ksymtab_device_set_of_node_from_dev
+ffffffff8208f870 r __ksymtab_device_set_wakeup_capable
+ffffffff8208f87c r __ksymtab_device_set_wakeup_enable
+ffffffff8208f888 r __ksymtab_device_show_bool
+ffffffff8208f894 r __ksymtab_device_show_int
+ffffffff8208f8a0 r __ksymtab_device_show_ulong
+ffffffff8208f8ac r __ksymtab_device_store_bool
+ffffffff8208f8b8 r __ksymtab_device_store_int
+ffffffff8208f8c4 r __ksymtab_device_store_ulong
+ffffffff8208f8d0 r __ksymtab_device_unregister
+ffffffff8208f8dc r __ksymtab_device_wakeup_disable
+ffffffff8208f8e8 r __ksymtab_device_wakeup_enable
+ffffffff8208f8f4 r __ksymtab_devm_acpi_dev_add_driver_gpios
+ffffffff8208f900 r __ksymtab_devm_add_action
+ffffffff8208f90c r __ksymtab_devm_bitmap_alloc
+ffffffff8208f918 r __ksymtab_devm_bitmap_zalloc
+ffffffff8208f924 r __ksymtab_devm_blk_crypto_profile_init
+ffffffff8208f930 r __ksymtab_devm_create_dev_dax
+ffffffff8208f93c r __ksymtab_devm_device_add_group
+ffffffff8208f948 r __ksymtab_devm_device_add_groups
+ffffffff8208f954 r __ksymtab_devm_device_remove_group
+ffffffff8208f960 r __ksymtab_devm_device_remove_groups
+ffffffff8208f96c r __ksymtab_devm_free_pages
+ffffffff8208f978 r __ksymtab_devm_free_percpu
+ffffffff8208f984 r __ksymtab_devm_fwnode_gpiod_get_index
+ffffffff8208f990 r __ksymtab_devm_get_free_pages
+ffffffff8208f99c r __ksymtab_devm_gpio_request
+ffffffff8208f9a8 r __ksymtab_devm_gpio_request_one
+ffffffff8208f9b4 r __ksymtab_devm_gpiochip_add_data_with_key
+ffffffff8208f9c0 r __ksymtab_devm_gpiod_get
+ffffffff8208f9cc r __ksymtab_devm_gpiod_get_array
+ffffffff8208f9d8 r __ksymtab_devm_gpiod_get_array_optional
+ffffffff8208f9e4 r __ksymtab_devm_gpiod_get_from_of_node
+ffffffff8208f9f0 r __ksymtab_devm_gpiod_get_index
+ffffffff8208f9fc r __ksymtab_devm_gpiod_get_index_optional
+ffffffff8208fa08 r __ksymtab_devm_gpiod_get_optional
+ffffffff8208fa14 r __ksymtab_devm_gpiod_put
+ffffffff8208fa20 r __ksymtab_devm_gpiod_put_array
+ffffffff8208fa2c r __ksymtab_devm_gpiod_unhinge
+ffffffff8208fa38 r __ksymtab_devm_hwrng_register
+ffffffff8208fa44 r __ksymtab_devm_hwrng_unregister
+ffffffff8208fa50 r __ksymtab_devm_init_badblocks
+ffffffff8208fa5c r __ksymtab_devm_ioremap_uc
+ffffffff8208fa68 r __ksymtab_devm_kasprintf
+ffffffff8208fa74 r __ksymtab_devm_kasprintf_strarray
+ffffffff8208fa80 r __ksymtab_devm_kfree
+ffffffff8208fa8c r __ksymtab_devm_kmalloc
+ffffffff8208fa98 r __ksymtab_devm_kmemdup
+ffffffff8208faa4 r __ksymtab_devm_krealloc
+ffffffff8208fab0 r __ksymtab_devm_kstrdup
+ffffffff8208fabc r __ksymtab_devm_kstrdup_const
+ffffffff8208fac8 r __ksymtab_devm_mbox_controller_register
+ffffffff8208fad4 r __ksymtab_devm_mbox_controller_unregister
+ffffffff8208fae0 r __ksymtab_devm_namespace_disable
+ffffffff8208faec r __ksymtab_devm_namespace_enable
+ffffffff8208faf8 r __ksymtab_devm_nvdimm_memremap
+ffffffff8208fb04 r __ksymtab_devm_nvmem_cell_get
+ffffffff8208fb10 r __ksymtab_devm_nvmem_device_get
+ffffffff8208fb1c r __ksymtab_devm_nvmem_device_put
+ffffffff8208fb28 r __ksymtab_devm_nvmem_register
+ffffffff8208fb34 r __ksymtab_devm_of_platform_depopulate
+ffffffff8208fb40 r __ksymtab_devm_of_platform_populate
+ffffffff8208fb4c r __ksymtab_devm_pci_epc_destroy
+ffffffff8208fb58 r __ksymtab_devm_platform_get_and_ioremap_resource
+ffffffff8208fb64 r __ksymtab_devm_platform_get_irqs_affinity
+ffffffff8208fb70 r __ksymtab_devm_platform_ioremap_resource
+ffffffff8208fb7c r __ksymtab_devm_platform_ioremap_resource_byname
+ffffffff8208fb88 r __ksymtab_devm_pm_runtime_enable
+ffffffff8208fb94 r __ksymtab_devm_power_supply_get_by_phandle
+ffffffff8208fba0 r __ksymtab_devm_power_supply_register
+ffffffff8208fbac r __ksymtab_devm_power_supply_register_no_ws
+ffffffff8208fbb8 r __ksymtab_devm_register_power_off_handler
+ffffffff8208fbc4 r __ksymtab_devm_register_restart_handler
+ffffffff8208fbd0 r __ksymtab_devm_register_sys_off_handler
+ffffffff8208fbdc r __ksymtab_devm_regmap_field_alloc
+ffffffff8208fbe8 r __ksymtab_devm_regmap_field_bulk_alloc
+ffffffff8208fbf4 r __ksymtab_devm_regmap_field_bulk_free
+ffffffff8208fc00 r __ksymtab_devm_regmap_field_free
+ffffffff8208fc0c r __ksymtab_devm_release_action
+ffffffff8208fc18 r __ksymtab_devm_remove_action
+ffffffff8208fc24 r __ksymtab_devm_request_pci_bus_resources
+ffffffff8208fc30 r __ksymtab_devm_rtc_allocate_device
+ffffffff8208fc3c r __ksymtab_devm_rtc_device_register
+ffffffff8208fc48 r __ksymtab_devm_rtc_nvmem_register
+ffffffff8208fc54 r __ksymtab_devm_thermal_of_cooling_device_register
+ffffffff8208fc60 r __ksymtab_devm_thermal_of_zone_register
+ffffffff8208fc6c r __ksymtab_devm_thermal_of_zone_unregister
+ffffffff8208fc78 r __ksymtab_devm_watchdog_register_device
+ffffffff8208fc84 r __ksymtab_devres_add
+ffffffff8208fc90 r __ksymtab_devres_close_group
+ffffffff8208fc9c r __ksymtab_devres_destroy
+ffffffff8208fca8 r __ksymtab_devres_find
+ffffffff8208fcb4 r __ksymtab_devres_for_each_res
+ffffffff8208fcc0 r __ksymtab_devres_free
+ffffffff8208fccc r __ksymtab_devres_get
+ffffffff8208fcd8 r __ksymtab_devres_open_group
+ffffffff8208fce4 r __ksymtab_devres_release
+ffffffff8208fcf0 r __ksymtab_devres_release_group
+ffffffff8208fcfc r __ksymtab_devres_remove
+ffffffff8208fd08 r __ksymtab_devres_remove_group
+ffffffff8208fd14 r __ksymtab_dirty_writeback_interval
+ffffffff8208fd20 r __ksymtab_disable_hardirq
+ffffffff8208fd2c r __ksymtab_disable_percpu_irq
+ffffffff8208fd38 r __ksymtab_disk_alloc_independent_access_ranges
+ffffffff8208fd44 r __ksymtab_disk_force_media_change
+ffffffff8208fd50 r __ksymtab_disk_set_independent_access_ranges
+ffffffff8208fd5c r __ksymtab_disk_set_zoned
+ffffffff8208fd68 r __ksymtab_disk_uevent
+ffffffff8208fd74 r __ksymtab_disk_update_readahead
+ffffffff8208fd80 r __ksymtab_dm_accept_partial_bio
+ffffffff8208fd8c r __ksymtab_dm_bio_from_per_bio_data
+ffffffff8208fd98 r __ksymtab_dm_bio_get_target_bio_nr
+ffffffff8208fda4 r __ksymtab_dm_bufio_client_create
+ffffffff8208fdb0 r __ksymtab_dm_bufio_client_destroy
+ffffffff8208fdbc r __ksymtab_dm_bufio_forget
+ffffffff8208fdc8 r __ksymtab_dm_bufio_forget_buffers
+ffffffff8208fdd4 r __ksymtab_dm_bufio_get
+ffffffff8208fde0 r __ksymtab_dm_bufio_get_aux_data
+ffffffff8208fdec r __ksymtab_dm_bufio_get_block_data
+ffffffff8208fdf8 r __ksymtab_dm_bufio_get_block_number
+ffffffff8208fe04 r __ksymtab_dm_bufio_get_block_size
+ffffffff8208fe10 r __ksymtab_dm_bufio_get_client
+ffffffff8208fe1c r __ksymtab_dm_bufio_get_device_size
+ffffffff8208fe28 r __ksymtab_dm_bufio_get_dm_io_client
+ffffffff8208fe34 r __ksymtab_dm_bufio_issue_discard
+ffffffff8208fe40 r __ksymtab_dm_bufio_issue_flush
+ffffffff8208fe4c r __ksymtab_dm_bufio_mark_buffer_dirty
+ffffffff8208fe58 r __ksymtab_dm_bufio_mark_partial_buffer_dirty
+ffffffff8208fe64 r __ksymtab_dm_bufio_new
+ffffffff8208fe70 r __ksymtab_dm_bufio_prefetch
+ffffffff8208fe7c r __ksymtab_dm_bufio_read
+ffffffff8208fe88 r __ksymtab_dm_bufio_release
+ffffffff8208fe94 r __ksymtab_dm_bufio_release_move
+ffffffff8208fea0 r __ksymtab_dm_bufio_set_minimum_buffers
+ffffffff8208feac r __ksymtab_dm_bufio_set_sector_offset
+ffffffff8208feb8 r __ksymtab_dm_bufio_write_dirty_buffers
+ffffffff8208fec4 r __ksymtab_dm_bufio_write_dirty_buffers_async
+ffffffff8208fed0 r __ksymtab_dm_copy_name_and_uuid
+ffffffff8208fedc r __ksymtab_dm_device_name
+ffffffff8208fee8 r __ksymtab_dm_disk
+ffffffff8208fef4 r __ksymtab_dm_get_dev_t
+ffffffff8208ff00 r __ksymtab_dm_get_md
+ffffffff8208ff0c r __ksymtab_dm_get_queue_limits
+ffffffff8208ff18 r __ksymtab_dm_get_reserved_bio_based_ios
+ffffffff8208ff24 r __ksymtab_dm_hold
+ffffffff8208ff30 r __ksymtab_dm_internal_resume
+ffffffff8208ff3c r __ksymtab_dm_internal_resume_fast
+ffffffff8208ff48 r __ksymtab_dm_internal_suspend_fast
+ffffffff8208ff54 r __ksymtab_dm_internal_suspend_noflush
+ffffffff8208ff60 r __ksymtab_dm_noflush_suspending
+ffffffff8208ff6c r __ksymtab_dm_path_uevent
+ffffffff8208ff78 r __ksymtab_dm_per_bio_data
+ffffffff8208ff84 r __ksymtab_dm_post_suspending
+ffffffff8208ff90 r __ksymtab_dm_put
+ffffffff8208ff9c r __ksymtab_dm_report_zones
+ffffffff8208ffa8 r __ksymtab_dm_send_uevents
+ffffffff8208ffb4 r __ksymtab_dm_set_target_max_io_len
+ffffffff8208ffc0 r __ksymtab_dm_start_time_ns_from_clone
+ffffffff8208ffcc r __ksymtab_dm_submit_bio_remap
+ffffffff8208ffd8 r __ksymtab_dm_suspended
+ffffffff8208ffe4 r __ksymtab_dm_table_device_name
+ffffffff8208fff0 r __ksymtab_dm_table_set_type
+ffffffff8208fffc r __ksymtab_dma_alloc_noncontiguous
+ffffffff82090008 r __ksymtab_dma_alloc_pages
+ffffffff82090014 r __ksymtab_dma_buf_attach
+ffffffff82090020 r __ksymtab_dma_buf_begin_cpu_access
+ffffffff8209002c r __ksymtab_dma_buf_begin_cpu_access_partial
+ffffffff82090038 r __ksymtab_dma_buf_detach
+ffffffff82090044 r __ksymtab_dma_buf_dynamic_attach
+ffffffff82090050 r __ksymtab_dma_buf_end_cpu_access
+ffffffff8209005c r __ksymtab_dma_buf_end_cpu_access_partial
+ffffffff82090068 r __ksymtab_dma_buf_export
+ffffffff82090074 r __ksymtab_dma_buf_fd
+ffffffff82090080 r __ksymtab_dma_buf_get
+ffffffff8209008c r __ksymtab_dma_buf_get_each
+ffffffff82090098 r __ksymtab_dma_buf_get_flags
+ffffffff820900a4 r __ksymtab_dma_buf_map_attachment
+ffffffff820900b0 r __ksymtab_dma_buf_mmap
+ffffffff820900bc r __ksymtab_dma_buf_move_notify
+ffffffff820900c8 r __ksymtab_dma_buf_pin
+ffffffff820900d4 r __ksymtab_dma_buf_put
+ffffffff820900e0 r __ksymtab_dma_buf_unmap_attachment
+ffffffff820900ec r __ksymtab_dma_buf_unpin
+ffffffff820900f8 r __ksymtab_dma_buf_vmap
+ffffffff82090104 r __ksymtab_dma_buf_vunmap
+ffffffff82090110 r __ksymtab_dma_can_mmap
+ffffffff8209011c r __ksymtab_dma_fence_unwrap_first
+ffffffff82090128 r __ksymtab_dma_fence_unwrap_next
+ffffffff82090134 r __ksymtab_dma_free_noncontiguous
+ffffffff82090140 r __ksymtab_dma_free_pages
+ffffffff8209014c r __ksymtab_dma_get_merge_boundary
+ffffffff82090158 r __ksymtab_dma_get_required_mask
+ffffffff82090164 r __ksymtab_dma_heap_add
+ffffffff82090170 r __ksymtab_dma_heap_buffer_alloc
+ffffffff8209017c r __ksymtab_dma_heap_buffer_free
+ffffffff82090188 r __ksymtab_dma_heap_bufferfd_alloc
+ffffffff82090194 r __ksymtab_dma_heap_find
+ffffffff820901a0 r __ksymtab_dma_heap_get_dev
+ffffffff820901ac r __ksymtab_dma_heap_get_drvdata
+ffffffff820901b8 r __ksymtab_dma_heap_get_name
+ffffffff820901c4 r __ksymtab_dma_heap_put
+ffffffff820901d0 r __ksymtab_dma_map_sgtable
+ffffffff820901dc r __ksymtab_dma_max_mapping_size
+ffffffff820901e8 r __ksymtab_dma_mmap_noncontiguous
+ffffffff820901f4 r __ksymtab_dma_mmap_pages
+ffffffff82090200 r __ksymtab_dma_need_sync
+ffffffff8209020c r __ksymtab_dma_opt_mapping_size
+ffffffff82090218 r __ksymtab_dma_pci_p2pdma_supported
+ffffffff82090224 r __ksymtab_dma_resv_describe
+ffffffff82090230 r __ksymtab_dma_resv_get_fences
+ffffffff8209023c r __ksymtab_dma_resv_get_singleton
+ffffffff82090248 r __ksymtab_dma_resv_iter_first
+ffffffff82090254 r __ksymtab_dma_resv_iter_next
+ffffffff82090260 r __ksymtab_dma_resv_test_signaled
+ffffffff8209026c r __ksymtab_dma_resv_wait_timeout
+ffffffff82090278 r __ksymtab_dma_vmap_noncontiguous
+ffffffff82090284 r __ksymtab_dma_vunmap_noncontiguous
+ffffffff82090290 r __ksymtab_dmi_available
+ffffffff8209029c r __ksymtab_dmi_kobj
+ffffffff820902a8 r __ksymtab_dmi_match
+ffffffff820902b4 r __ksymtab_dmi_memdev_handle
+ffffffff820902c0 r __ksymtab_dmi_memdev_name
+ffffffff820902cc r __ksymtab_dmi_memdev_size
+ffffffff820902d8 r __ksymtab_dmi_memdev_type
+ffffffff820902e4 r __ksymtab_dmi_walk
+ffffffff820902f0 r __ksymtab_do_take_over_console
+ffffffff820902fc r __ksymtab_do_tcp_sendpages
+ffffffff82090308 r __ksymtab_do_trace_rcu_torture_read
+ffffffff82090314 r __ksymtab_do_unregister_con_driver
+ffffffff82090320 r __ksymtab_do_xdp_generic
+ffffffff8209032c r __ksymtab_double_rq_lock
+ffffffff82090338 r __ksymtab_dpm_for_each_dev
+ffffffff82090344 r __ksymtab_dpm_resume_end
+ffffffff82090350 r __ksymtab_dpm_resume_start
+ffffffff8209035c r __ksymtab_dpm_suspend_end
+ffffffff82090368 r __ksymtab_dpm_suspend_start
+ffffffff82090374 r __ksymtab_drain_workqueue
+ffffffff82090380 r __ksymtab_driver_attach
+ffffffff8209038c r __ksymtab_driver_create_file
+ffffffff82090398 r __ksymtab_driver_deferred_probe_check_state
+ffffffff820903a4 r __ksymtab_driver_deferred_probe_timeout
+ffffffff820903b0 r __ksymtab_driver_find
+ffffffff820903bc r __ksymtab_driver_find_device
+ffffffff820903c8 r __ksymtab_driver_for_each_device
+ffffffff820903d4 r __ksymtab_driver_register
+ffffffff820903e0 r __ksymtab_driver_remove_file
+ffffffff820903ec r __ksymtab_driver_set_override
+ffffffff820903f8 r __ksymtab_driver_unregister
+ffffffff82090404 r __ksymtab_dst_blackhole_mtu
+ffffffff82090410 r __ksymtab_dst_blackhole_redirect
+ffffffff8209041c r __ksymtab_dst_blackhole_update_pmtu
+ffffffff82090428 r __ksymtab_dst_cache_destroy
+ffffffff82090434 r __ksymtab_dst_cache_get
+ffffffff82090440 r __ksymtab_dst_cache_get_ip4
+ffffffff8209044c r __ksymtab_dst_cache_get_ip6
+ffffffff82090458 r __ksymtab_dst_cache_init
+ffffffff82090464 r __ksymtab_dst_cache_reset_now
+ffffffff82090470 r __ksymtab_dst_cache_set_ip4
+ffffffff8209047c r __ksymtab_dst_cache_set_ip6
+ffffffff82090488 r __ksymtab_dummy_con
+ffffffff82090494 r __ksymtab_dummy_irq_chip
+ffffffff820904a0 r __ksymtab_dw8250_do_set_termios
+ffffffff820904ac r __ksymtab_dw8250_setup_port
+ffffffff820904b8 r __ksymtab_dw_pcie_ep_init
+ffffffff820904c4 r __ksymtab_dw_pcie_ep_init_complete
+ffffffff820904d0 r __ksymtab_dw_pcie_ep_init_notify
+ffffffff820904dc r __ksymtab_dw_pcie_ep_linkup
+ffffffff820904e8 r __ksymtab_dw_pcie_ep_raise_legacy_irq
+ffffffff820904f4 r __ksymtab_dw_pcie_ep_raise_msi_irq
+ffffffff82090500 r __ksymtab_dw_pcie_ep_reset_bar
+ffffffff8209050c r __ksymtab_dw_pcie_find_capability
+ffffffff82090518 r __ksymtab_dw_pcie_find_ext_capability
+ffffffff82090524 r __ksymtab_dw_pcie_link_up
+ffffffff82090530 r __ksymtab_dw_pcie_read
+ffffffff8209053c r __ksymtab_dw_pcie_read_dbi
+ffffffff82090548 r __ksymtab_dw_pcie_upconfig_setup
+ffffffff82090554 r __ksymtab_dw_pcie_wait_for_link
+ffffffff82090560 r __ksymtab_dw_pcie_write
+ffffffff8209056c r __ksymtab_dw_pcie_write_dbi
+ffffffff82090578 r __ksymtab_dynevent_create
+ffffffff82090584 r __ksymtab_e820__mapped_any
+ffffffff82090590 r __ksymtab_e820__mapped_raw_any
+ffffffff8209059c r __ksymtab_edac_device_add_device
+ffffffff820905a8 r __ksymtab_edac_device_alloc_ctl_info
+ffffffff820905b4 r __ksymtab_edac_device_alloc_index
+ffffffff820905c0 r __ksymtab_edac_device_del_device
+ffffffff820905cc r __ksymtab_edac_device_free_ctl_info
+ffffffff820905d8 r __ksymtab_edac_device_handle_ce_count
+ffffffff820905e4 r __ksymtab_edac_device_handle_ue_count
+ffffffff820905f0 r __ksymtab_edac_get_owner
+ffffffff820905fc r __ksymtab_edac_get_sysfs_subsys
+ffffffff82090608 r __ksymtab_edac_has_mcs
+ffffffff82090614 r __ksymtab_edac_layer_name
+ffffffff82090620 r __ksymtab_edac_mc_add_mc_with_groups
+ffffffff8209062c r __ksymtab_edac_mc_alloc
+ffffffff82090638 r __ksymtab_edac_mc_del_mc
+ffffffff82090644 r __ksymtab_edac_mc_find_csrow_by_page
+ffffffff82090650 r __ksymtab_edac_mc_free
+ffffffff8209065c r __ksymtab_edac_mc_handle_error
+ffffffff82090668 r __ksymtab_edac_mem_types
+ffffffff82090674 r __ksymtab_edac_mod_work
+ffffffff82090680 r __ksymtab_edac_op_state
+ffffffff8209068c r __ksymtab_edac_pci_add_device
+ffffffff82090698 r __ksymtab_edac_pci_alloc_ctl_info
+ffffffff820906a4 r __ksymtab_edac_pci_alloc_index
+ffffffff820906b0 r __ksymtab_edac_pci_create_generic_ctl
+ffffffff820906bc r __ksymtab_edac_pci_del_device
+ffffffff820906c8 r __ksymtab_edac_pci_free_ctl_info
+ffffffff820906d4 r __ksymtab_edac_pci_handle_npe
+ffffffff820906e0 r __ksymtab_edac_pci_handle_pe
+ffffffff820906ec r __ksymtab_edac_pci_release_generic_ctl
+ffffffff820906f8 r __ksymtab_edac_queue_work
+ffffffff82090704 r __ksymtab_edac_raw_mc_handle_error
+ffffffff82090710 r __ksymtab_edac_stop_work
+ffffffff8209071c r __ksymtab_edid_info
+ffffffff82090728 r __ksymtab_efi_query_variable_store
+ffffffff82090734 r __ksymtab_efi_status_to_err
+ffffffff82090740 r __ksymtab_efivar_get_next_variable
+ffffffff8209074c r __ksymtab_efivar_get_variable
+ffffffff82090758 r __ksymtab_efivar_lock
+ffffffff82090764 r __ksymtab_efivar_set_variable
+ffffffff82090770 r __ksymtab_efivar_set_variable_locked
+ffffffff8209077c r __ksymtab_efivar_supports_writes
+ffffffff82090788 r __ksymtab_efivar_trylock
+ffffffff82090794 r __ksymtab_efivar_unlock
+ffffffff820907a0 r __ksymtab_efivars_kobject
+ffffffff820907ac r __ksymtab_efivars_register
+ffffffff820907b8 r __ksymtab_efivars_unregister
+ffffffff820907c4 r __ksymtab_elv_register
+ffffffff820907d0 r __ksymtab_elv_rqhash_add
+ffffffff820907dc r __ksymtab_elv_rqhash_del
+ffffffff820907e8 r __ksymtab_elv_unregister
+ffffffff820907f4 r __ksymtab_emergency_restart
+ffffffff82090800 r __ksymtab_enable_percpu_irq
+ffffffff8209080c r __ksymtab_entry_ibpb
+ffffffff82090818 r __ksymtab_errata
+ffffffff82090824 r __ksymtab_errno_to_blk_status
+ffffffff82090830 r __ksymtab_esp6_input_done2
+ffffffff8209083c r __ksymtab_esp6_output_head
+ffffffff82090848 r __ksymtab_esp6_output_tail
+ffffffff82090854 r __ksymtab_esp_input_done2
+ffffffff82090860 r __ksymtab_esp_output_head
+ffffffff8209086c r __ksymtab_esp_output_tail
+ffffffff82090878 r __ksymtab_ethnl_cable_test_alloc
+ffffffff82090884 r __ksymtab_ethnl_cable_test_amplitude
+ffffffff82090890 r __ksymtab_ethnl_cable_test_fault_length
+ffffffff8209089c r __ksymtab_ethnl_cable_test_finished
+ffffffff820908a8 r __ksymtab_ethnl_cable_test_free
+ffffffff820908b4 r __ksymtab_ethnl_cable_test_pulse
+ffffffff820908c0 r __ksymtab_ethnl_cable_test_result
+ffffffff820908cc r __ksymtab_ethnl_cable_test_step
+ffffffff820908d8 r __ksymtab_ethtool_params_from_link_mode
+ffffffff820908e4 r __ksymtab_ethtool_set_ethtool_phy_ops
+ffffffff820908f0 r __ksymtab_event_triggers_call
+ffffffff820908fc r __ksymtab_event_triggers_post_call
+ffffffff82090908 r __ksymtab_eventfd_ctx_do_read
+ffffffff82090914 r __ksymtab_eventfd_ctx_fdget
+ffffffff82090920 r __ksymtab_eventfd_ctx_fileget
+ffffffff8209092c r __ksymtab_eventfd_ctx_put
+ffffffff82090938 r __ksymtab_eventfd_ctx_remove_wait_queue
+ffffffff82090944 r __ksymtab_eventfd_fget
+ffffffff82090950 r __ksymtab_eventfd_signal
+ffffffff8209095c r __ksymtab_events_hybrid_sysfs_show
+ffffffff82090968 r __ksymtab_events_sysfs_show
+ffffffff82090974 r __ksymtab_evict_inodes
+ffffffff82090980 r __ksymtab_execute_in_process_context
+ffffffff8209098c r __ksymtab_exportfs_decode_fh
+ffffffff82090998 r __ksymtab_exportfs_decode_fh_raw
+ffffffff820909a4 r __ksymtab_exportfs_encode_fh
+ffffffff820909b0 r __ksymtab_exportfs_encode_inode_fh
+ffffffff820909bc r __ksymtab_fanout_mutex
+ffffffff820909c8 r __ksymtab_fib4_rule_default
+ffffffff820909d4 r __ksymtab_fib6_check_nexthop
+ffffffff820909e0 r __ksymtab_fib6_get_table
+ffffffff820909ec r __ksymtab_fib6_info_destroy_rcu
+ffffffff820909f8 r __ksymtab_fib6_new_table
+ffffffff82090a04 r __ksymtab_fib6_rule_default
+ffffffff82090a10 r __ksymtab_fib_add_nexthop
+ffffffff82090a1c r __ksymtab_fib_alias_hw_flags_set
+ffffffff82090a28 r __ksymtab_fib_info_nh_uses_dev
+ffffffff82090a34 r __ksymtab_fib_new_table
+ffffffff82090a40 r __ksymtab_fib_nexthop_info
+ffffffff82090a4c r __ksymtab_fib_nh_common_init
+ffffffff82090a58 r __ksymtab_fib_nh_common_release
+ffffffff82090a64 r __ksymtab_fib_nl_delrule
+ffffffff82090a70 r __ksymtab_fib_nl_newrule
+ffffffff82090a7c r __ksymtab_fib_rule_matchall
+ffffffff82090a88 r __ksymtab_fib_rules_dump
+ffffffff82090a94 r __ksymtab_fib_rules_lookup
+ffffffff82090aa0 r __ksymtab_fib_rules_register
+ffffffff82090aac r __ksymtab_fib_rules_seq_read
+ffffffff82090ab8 r __ksymtab_fib_rules_unregister
+ffffffff82090ac4 r __ksymtab_fib_table_lookup
+ffffffff82090ad0 r __ksymtab_file_ra_state_init
+ffffffff82090adc r __ksymtab_filemap_add_folio
+ffffffff82090ae8 r __ksymtab_filemap_migrate_folio
+ffffffff82090af4 r __ksymtab_filemap_range_has_writeback
+ffffffff82090b00 r __ksymtab_filemap_read
+ffffffff82090b0c r __ksymtab_filp_open_block
+ffffffff82090b18 r __ksymtab_filter_irq_stacks
+ffffffff82090b24 r __ksymtab_filter_match_preds
+ffffffff82090b30 r __ksymtab_find_extend_vma
+ffffffff82090b3c r __ksymtab_find_ge_pid
+ffffffff82090b48 r __ksymtab_find_get_pid
+ffffffff82090b54 r __ksymtab_find_iova
+ffffffff82090b60 r __ksymtab_find_mci_by_dev
+ffffffff82090b6c r __ksymtab_find_pid_ns
+ffffffff82090b78 r __ksymtab_find_task_by_vpid
+ffffffff82090b84 r __ksymtab_find_user
+ffffffff82090b90 r __ksymtab_find_vpid
+ffffffff82090b9c r __ksymtab_finish_rcuwait
+ffffffff82090ba8 r __ksymtab_firmware_kobj
+ffffffff82090bb4 r __ksymtab_firmware_request_builtin
+ffffffff82090bc0 r __ksymtab_firmware_request_cache
+ffffffff82090bcc r __ksymtab_firmware_request_nowarn
+ffffffff82090bd8 r __ksymtab_firmware_request_platform
+ffffffff82090be4 r __ksymtab_fixed_percpu_data
+ffffffff82090bf0 r __ksymtab_fixup_user_fault
+ffffffff82090bfc r __ksymtab_fl6_merge_options
+ffffffff82090c08 r __ksymtab_fl6_update_dst
+ffffffff82090c14 r __ksymtab_flush_delayed_fput
+ffffffff82090c20 r __ksymtab_flush_work
+ffffffff82090c2c r __ksymtab_folio_add_wait_queue
+ffffffff82090c38 r __ksymtab_folio_invalidate
+ffffffff82090c44 r __ksymtab_folio_mkclean
+ffffffff82090c50 r __ksymtab_folio_wait_stable
+ffffffff82090c5c r __ksymtab_folio_wait_writeback
+ffffffff82090c68 r __ksymtab_folio_wait_writeback_killable
+ffffffff82090c74 r __ksymtab_follow_pte
+ffffffff82090c80 r __ksymtab_for_each_kernel_tracepoint
+ffffffff82090c8c r __ksymtab_fpregs_assert_state_consistent
+ffffffff82090c98 r __ksymtab_free_fib_info
+ffffffff82090ca4 r __ksymtab_free_iova
+ffffffff82090cb0 r __ksymtab_free_iova_fast
+ffffffff82090cbc r __ksymtab_free_percpu
+ffffffff82090cc8 r __ksymtab_free_percpu_irq
+ffffffff82090cd4 r __ksymtab_free_rs
+ffffffff82090ce0 r __ksymtab_free_uid
+ffffffff82090cec r __ksymtab_free_vm_area
+ffffffff82090cf8 r __ksymtab_freezer_cgrp_subsys
+ffffffff82090d04 r __ksymtab_freezer_cgrp_subsys_enabled_key
+ffffffff82090d10 r __ksymtab_freezer_cgrp_subsys_on_dfl_key
+ffffffff82090d1c r __ksymtab_freq_qos_add_notifier
+ffffffff82090d28 r __ksymtab_freq_qos_add_request
+ffffffff82090d34 r __ksymtab_freq_qos_remove_notifier
+ffffffff82090d40 r __ksymtab_freq_qos_remove_request
+ffffffff82090d4c r __ksymtab_freq_qos_update_request
+ffffffff82090d58 r __ksymtab_fs_ftype_to_dtype
+ffffffff82090d64 r __ksymtab_fs_kobj
+ffffffff82090d70 r __ksymtab_fs_umode_to_dtype
+ffffffff82090d7c r __ksymtab_fs_umode_to_ftype
+ffffffff82090d88 r __ksymtab_fsl_mc_device_group
+ffffffff82090d94 r __ksymtab_fsnotify
+ffffffff82090da0 r __ksymtab_fsnotify_add_mark
+ffffffff82090dac r __ksymtab_fsnotify_alloc_group
+ffffffff82090db8 r __ksymtab_fsnotify_destroy_mark
+ffffffff82090dc4 r __ksymtab_fsnotify_find_mark
+ffffffff82090dd0 r __ksymtab_fsnotify_get_cookie
+ffffffff82090ddc r __ksymtab_fsnotify_init_mark
+ffffffff82090de8 r __ksymtab_fsnotify_put_group
+ffffffff82090df4 r __ksymtab_fsnotify_put_mark
+ffffffff82090e00 r __ksymtab_fsnotify_wait_marks_destroyed
+ffffffff82090e0c r __ksymtab_fsstack_copy_attr_all
+ffffffff82090e18 r __ksymtab_fsstack_copy_inode_size
+ffffffff82090e24 r __ksymtab_ftrace_dump
+ffffffff82090e30 r __ksymtab_fuse_abort_conn
+ffffffff82090e3c r __ksymtab_fuse_conn_destroy
+ffffffff82090e48 r __ksymtab_fuse_conn_get
+ffffffff82090e54 r __ksymtab_fuse_conn_init
+ffffffff82090e60 r __ksymtab_fuse_conn_put
+ffffffff82090e6c r __ksymtab_fuse_dev_alloc
+ffffffff82090e78 r __ksymtab_fuse_dev_alloc_install
+ffffffff82090e84 r __ksymtab_fuse_dev_fiq_ops
+ffffffff82090e90 r __ksymtab_fuse_dev_free
+ffffffff82090e9c r __ksymtab_fuse_dev_install
+ffffffff82090ea8 r __ksymtab_fuse_dev_operations
+ffffffff82090eb4 r __ksymtab_fuse_dev_release
+ffffffff82090ec0 r __ksymtab_fuse_direct_io
+ffffffff82090ecc r __ksymtab_fuse_do_ioctl
+ffffffff82090ed8 r __ksymtab_fuse_do_open
+ffffffff82090ee4 r __ksymtab_fuse_file_poll
+ffffffff82090ef0 r __ksymtab_fuse_fill_super_common
+ffffffff82090efc r __ksymtab_fuse_free_conn
+ffffffff82090f08 r __ksymtab_fuse_get_unique
+ffffffff82090f14 r __ksymtab_fuse_init_fs_context_submount
+ffffffff82090f20 r __ksymtab_fuse_len_args
+ffffffff82090f2c r __ksymtab_fuse_mount_remove
+ffffffff82090f38 r __ksymtab_fuse_request_end
+ffffffff82090f44 r __ksymtab_fuse_send_init
+ffffffff82090f50 r __ksymtab_fuse_simple_background
+ffffffff82090f5c r __ksymtab_fuse_sync_release
+ffffffff82090f68 r __ksymtab_fw_devlink_purge_absent_suppliers
+ffffffff82090f74 r __ksymtab_fw_fallback_config
+ffffffff82090f80 r __ksymtab_fwnode_connection_find_match
+ffffffff82090f8c r __ksymtab_fwnode_connection_find_matches
+ffffffff82090f98 r __ksymtab_fwnode_count_parents
+ffffffff82090fa4 r __ksymtab_fwnode_create_software_node
+ffffffff82090fb0 r __ksymtab_fwnode_device_is_available
+ffffffff82090fbc r __ksymtab_fwnode_find_reference
+ffffffff82090fc8 r __ksymtab_fwnode_get_name
+ffffffff82090fd4 r __ksymtab_fwnode_get_named_child_node
+ffffffff82090fe0 r __ksymtab_fwnode_get_next_available_child_node
+ffffffff82090fec r __ksymtab_fwnode_get_next_child_node
+ffffffff82090ff8 r __ksymtab_fwnode_get_next_parent
+ffffffff82091004 r __ksymtab_fwnode_get_nth_parent
+ffffffff82091010 r __ksymtab_fwnode_get_parent
+ffffffff8209101c r __ksymtab_fwnode_get_phy_mode
+ffffffff82091028 r __ksymtab_fwnode_gpiod_get_index
+ffffffff82091034 r __ksymtab_fwnode_graph_get_endpoint_by_id
+ffffffff82091040 r __ksymtab_fwnode_graph_get_endpoint_count
+ffffffff8209104c r __ksymtab_fwnode_graph_get_next_endpoint
+ffffffff82091058 r __ksymtab_fwnode_graph_get_port_parent
+ffffffff82091064 r __ksymtab_fwnode_graph_get_remote_endpoint
+ffffffff82091070 r __ksymtab_fwnode_graph_get_remote_port
+ffffffff8209107c r __ksymtab_fwnode_graph_get_remote_port_parent
+ffffffff82091088 r __ksymtab_fwnode_handle_get
+ffffffff82091094 r __ksymtab_fwnode_handle_put
+ffffffff820910a0 r __ksymtab_fwnode_property_get_reference_args
+ffffffff820910ac r __ksymtab_fwnode_property_match_string
+ffffffff820910b8 r __ksymtab_fwnode_property_present
+ffffffff820910c4 r __ksymtab_fwnode_property_read_string
+ffffffff820910d0 r __ksymtab_fwnode_property_read_string_array
+ffffffff820910dc r __ksymtab_fwnode_property_read_u16_array
+ffffffff820910e8 r __ksymtab_fwnode_property_read_u32_array
+ffffffff820910f4 r __ksymtab_fwnode_property_read_u64_array
+ffffffff82091100 r __ksymtab_fwnode_property_read_u8_array
+ffffffff8209110c r __ksymtab_fwnode_remove_software_node
+ffffffff82091118 r __ksymtab_gcd
+ffffffff82091124 r __ksymtab_gdt_page
+ffffffff82091130 r __ksymtab_generic_access_phys
+ffffffff8209113c r __ksymtab_generic_device_group
+ffffffff82091148 r __ksymtab_generic_fh_to_dentry
+ffffffff82091154 r __ksymtab_generic_fh_to_parent
+ffffffff82091160 r __ksymtab_generic_handle_domain_irq
+ffffffff8209116c r __ksymtab_generic_handle_domain_irq_safe
+ffffffff82091178 r __ksymtab_generic_handle_irq
+ffffffff82091184 r __ksymtab_generic_handle_irq_safe
+ffffffff82091190 r __ksymtab_generic_online_page
+ffffffff8209119c r __ksymtab_get_cached_msi_msg
+ffffffff820911a8 r __ksymtab_get_completed_synchronize_rcu
+ffffffff820911b4 r __ksymtab_get_completed_synchronize_rcu_full
+ffffffff820911c0 r __ksymtab_get_cpu_device
+ffffffff820911cc r __ksymtab_get_cpu_idle_time
+ffffffff820911d8 r __ksymtab_get_cpu_idle_time_us
+ffffffff820911e4 r __ksymtab_get_cpu_iowait_time_us
+ffffffff820911f0 r __ksymtab_get_current_tty
+ffffffff820911fc r __ksymtab_get_device
+ffffffff82091208 r __ksymtab_get_device_system_crosststamp
+ffffffff82091214 r __ksymtab_get_each_object_track
+ffffffff82091220 r __ksymtab_get_governor_parent_kobj
+ffffffff8209122c r __ksymtab_get_itimerspec64
+ffffffff82091238 r __ksymtab_get_kernel_pages
+ffffffff82091244 r __ksymtab_get_llc_id
+ffffffff82091250 r __ksymtab_get_max_files
+ffffffff8209125c r __ksymtab_get_net_ns_by_id
+ffffffff82091268 r __ksymtab_get_net_ns_by_pid
+ffffffff82091274 r __ksymtab_get_old_itimerspec32
+ffffffff82091280 r __ksymtab_get_old_timespec32
+ffffffff8209128c r __ksymtab_get_page_owner_handle
+ffffffff82091298 r __ksymtab_get_pfnblock_flags_mask
+ffffffff820912a4 r __ksymtab_get_pid_task
+ffffffff820912b0 r __ksymtab_get_slabinfo
+ffffffff820912bc r __ksymtab_get_state_synchronize_rcu
+ffffffff820912c8 r __ksymtab_get_state_synchronize_rcu_full
+ffffffff820912d4 r __ksymtab_get_state_synchronize_srcu
+ffffffff820912e0 r __ksymtab_get_task_mm
+ffffffff820912ec r __ksymtab_get_task_pid
+ffffffff820912f8 r __ksymtab_get_timespec64
+ffffffff82091304 r __ksymtab_get_user_pages_fast
+ffffffff82091310 r __ksymtab_get_user_pages_fast_only
+ffffffff8209131c r __ksymtab_getboottime64
+ffffffff82091328 r __ksymtab_gov_attr_set_get
+ffffffff82091334 r __ksymtab_gov_attr_set_init
+ffffffff82091340 r __ksymtab_gov_attr_set_put
+ffffffff8209134c r __ksymtab_gov_update_cpu_data
+ffffffff82091358 r __ksymtab_governor_sysfs_ops
+ffffffff82091364 r __ksymtab_gpio_free
+ffffffff82091370 r __ksymtab_gpio_free_array
+ffffffff8209137c r __ksymtab_gpio_request
+ffffffff82091388 r __ksymtab_gpio_request_array
+ffffffff82091394 r __ksymtab_gpio_request_one
+ffffffff820913a0 r __ksymtab_gpio_to_desc
+ffffffff820913ac r __ksymtab_gpiochip_add_data_with_key
+ffffffff820913b8 r __ksymtab_gpiochip_disable_irq
+ffffffff820913c4 r __ksymtab_gpiochip_enable_irq
+ffffffff820913d0 r __ksymtab_gpiochip_find
+ffffffff820913dc r __ksymtab_gpiochip_free_own_desc
+ffffffff820913e8 r __ksymtab_gpiochip_generic_config
+ffffffff820913f4 r __ksymtab_gpiochip_generic_free
+ffffffff82091400 r __ksymtab_gpiochip_generic_request
+ffffffff8209140c r __ksymtab_gpiochip_get_data
+ffffffff82091418 r __ksymtab_gpiochip_get_desc
+ffffffff82091424 r __ksymtab_gpiochip_is_requested
+ffffffff82091430 r __ksymtab_gpiochip_line_is_irq
+ffffffff8209143c r __ksymtab_gpiochip_line_is_open_drain
+ffffffff82091448 r __ksymtab_gpiochip_line_is_open_source
+ffffffff82091454 r __ksymtab_gpiochip_line_is_persistent
+ffffffff82091460 r __ksymtab_gpiochip_line_is_valid
+ffffffff8209146c r __ksymtab_gpiochip_lock_as_irq
+ffffffff82091478 r __ksymtab_gpiochip_relres_irq
+ffffffff82091484 r __ksymtab_gpiochip_remove
+ffffffff82091490 r __ksymtab_gpiochip_reqres_irq
+ffffffff8209149c r __ksymtab_gpiochip_request_own_desc
+ffffffff820914a8 r __ksymtab_gpiochip_unlock_as_irq
+ffffffff820914b4 r __ksymtab_gpiod_add_hogs
+ffffffff820914c0 r __ksymtab_gpiod_add_lookup_table
+ffffffff820914cc r __ksymtab_gpiod_cansleep
+ffffffff820914d8 r __ksymtab_gpiod_count
+ffffffff820914e4 r __ksymtab_gpiod_direction_input
+ffffffff820914f0 r __ksymtab_gpiod_direction_output
+ffffffff820914fc r __ksymtab_gpiod_direction_output_raw
+ffffffff82091508 r __ksymtab_gpiod_disable_hw_timestamp_ns
+ffffffff82091514 r __ksymtab_gpiod_enable_hw_timestamp_ns
+ffffffff82091520 r __ksymtab_gpiod_get
+ffffffff8209152c r __ksymtab_gpiod_get_array
+ffffffff82091538 r __ksymtab_gpiod_get_array_optional
+ffffffff82091544 r __ksymtab_gpiod_get_array_value
+ffffffff82091550 r __ksymtab_gpiod_get_array_value_cansleep
+ffffffff8209155c r __ksymtab_gpiod_get_direction
+ffffffff82091568 r __ksymtab_gpiod_get_from_of_node
+ffffffff82091574 r __ksymtab_gpiod_get_index
+ffffffff82091580 r __ksymtab_gpiod_get_index_optional
+ffffffff8209158c r __ksymtab_gpiod_get_optional
+ffffffff82091598 r __ksymtab_gpiod_get_raw_array_value
+ffffffff820915a4 r __ksymtab_gpiod_get_raw_array_value_cansleep
+ffffffff820915b0 r __ksymtab_gpiod_get_raw_value
+ffffffff820915bc r __ksymtab_gpiod_get_raw_value_cansleep
+ffffffff820915c8 r __ksymtab_gpiod_get_value
+ffffffff820915d4 r __ksymtab_gpiod_get_value_cansleep
+ffffffff820915e0 r __ksymtab_gpiod_is_active_low
+ffffffff820915ec r __ksymtab_gpiod_put
+ffffffff820915f8 r __ksymtab_gpiod_put_array
+ffffffff82091604 r __ksymtab_gpiod_remove_hogs
+ffffffff82091610 r __ksymtab_gpiod_remove_lookup_table
+ffffffff8209161c r __ksymtab_gpiod_set_array_value
+ffffffff82091628 r __ksymtab_gpiod_set_array_value_cansleep
+ffffffff82091634 r __ksymtab_gpiod_set_config
+ffffffff82091640 r __ksymtab_gpiod_set_consumer_name
+ffffffff8209164c r __ksymtab_gpiod_set_debounce
+ffffffff82091658 r __ksymtab_gpiod_set_raw_array_value
+ffffffff82091664 r __ksymtab_gpiod_set_raw_array_value_cansleep
+ffffffff82091670 r __ksymtab_gpiod_set_raw_value
+ffffffff8209167c r __ksymtab_gpiod_set_raw_value_cansleep
+ffffffff82091688 r __ksymtab_gpiod_set_transitory
+ffffffff82091694 r __ksymtab_gpiod_set_value
+ffffffff820916a0 r __ksymtab_gpiod_set_value_cansleep
+ffffffff820916ac r __ksymtab_gpiod_to_chip
+ffffffff820916b8 r __ksymtab_gpiod_to_irq
+ffffffff820916c4 r __ksymtab_gpiod_toggle_active_low
+ffffffff820916d0 r __ksymtab_gre_add_protocol
+ffffffff820916dc r __ksymtab_gre_del_protocol
+ffffffff820916e8 r __ksymtab_gretap_fb_dev_create
+ffffffff820916f4 r __ksymtab_guid_gen
+ffffffff82091700 r __ksymtab_handle_bad_irq
+ffffffff8209170c r __ksymtab_handle_fasteoi_irq
+ffffffff82091718 r __ksymtab_handle_fasteoi_nmi
+ffffffff82091724 r __ksymtab_handle_guest_split_lock
+ffffffff82091730 r __ksymtab_handle_level_irq
+ffffffff8209173c r __ksymtab_handle_mm_fault
+ffffffff82091748 r __ksymtab_handle_nested_irq
+ffffffff82091754 r __ksymtab_handle_simple_irq
+ffffffff82091760 r __ksymtab_handle_untracked_irq
+ffffffff8209176c r __ksymtab_have_governor_per_policy
+ffffffff82091778 r __ksymtab_housekeeping_affine
+ffffffff82091784 r __ksymtab_housekeeping_any_cpu
+ffffffff82091790 r __ksymtab_housekeeping_cpumask
+ffffffff8209179c r __ksymtab_housekeeping_enabled
+ffffffff820917a8 r __ksymtab_housekeeping_overridden
+ffffffff820917b4 r __ksymtab_housekeeping_test_cpu
+ffffffff820917c0 r __ksymtab_hpet_mask_rtc_irq_bit
+ffffffff820917cc r __ksymtab_hpet_register_irq_handler
+ffffffff820917d8 r __ksymtab_hpet_rtc_dropped_irq
+ffffffff820917e4 r __ksymtab_hpet_rtc_interrupt
+ffffffff820917f0 r __ksymtab_hpet_rtc_timer_init
+ffffffff820917fc r __ksymtab_hpet_set_alarm_time
+ffffffff82091808 r __ksymtab_hpet_set_periodic_freq
+ffffffff82091814 r __ksymtab_hpet_set_rtc_irq_bit
+ffffffff82091820 r __ksymtab_hpet_unregister_irq_handler
+ffffffff8209182c r __ksymtab_hrtimer_active
+ffffffff82091838 r __ksymtab_hrtimer_cancel
+ffffffff82091844 r __ksymtab_hrtimer_forward
+ffffffff82091850 r __ksymtab_hrtimer_init
+ffffffff8209185c r __ksymtab_hrtimer_init_sleeper
+ffffffff82091868 r __ksymtab_hrtimer_resolution
+ffffffff82091874 r __ksymtab_hrtimer_sleeper_start_expires
+ffffffff82091880 r __ksymtab_hrtimer_start_range_ns
+ffffffff8209188c r __ksymtab_hrtimer_try_to_cancel
+ffffffff82091898 r __ksymtab_hv_clock_per_cpu
+ffffffff820918a4 r __ksymtab_hvc_alloc
+ffffffff820918b0 r __ksymtab_hvc_instantiate
+ffffffff820918bc r __ksymtab_hvc_kick
+ffffffff820918c8 r __ksymtab_hvc_poll
+ffffffff820918d4 r __ksymtab_hvc_remove
+ffffffff820918e0 r __ksymtab_hw_breakpoint_restore
+ffffffff820918ec r __ksymtab_hw_protection_shutdown
+ffffffff820918f8 r __ksymtab_hwrng_msleep
+ffffffff82091904 r __ksymtab_hwrng_register
+ffffffff82091910 r __ksymtab_hwrng_unregister
+ffffffff8209191c r __ksymtab_icmp_build_probe
+ffffffff82091928 r __ksymtab_idr_alloc
+ffffffff82091934 r __ksymtab_idr_alloc_u32
+ffffffff82091940 r __ksymtab_idr_find
+ffffffff8209194c r __ksymtab_idr_remove
+ffffffff82091958 r __ksymtab_inet6_cleanup_sock
+ffffffff82091964 r __ksymtab_inet6_csk_addr2sockaddr
+ffffffff82091970 r __ksymtab_inet6_csk_update_pmtu
+ffffffff8209197c r __ksymtab_inet6_csk_xmit
+ffffffff82091988 r __ksymtab_inet6_destroy_sock
+ffffffff82091994 r __ksymtab_inet6_hash
+ffffffff820919a0 r __ksymtab_inet6_hash_connect
+ffffffff820919ac r __ksymtab_inet6_lookup
+ffffffff820919b8 r __ksymtab_inet6_lookup_listener
+ffffffff820919c4 r __ksymtab_inet6_sk_rebuild_header
+ffffffff820919d0 r __ksymtab_inet6_sock_destruct
+ffffffff820919dc r __ksymtab_inet_bhash2_reset_saddr
+ffffffff820919e8 r __ksymtab_inet_bhash2_update_saddr
+ffffffff820919f4 r __ksymtab_inet_csk_addr2sockaddr
+ffffffff82091a00 r __ksymtab_inet_csk_clone_lock
+ffffffff82091a0c r __ksymtab_inet_csk_get_port
+ffffffff82091a18 r __ksymtab_inet_csk_listen_start
+ffffffff82091a24 r __ksymtab_inet_csk_listen_stop
+ffffffff82091a30 r __ksymtab_inet_csk_reqsk_queue_hash_add
+ffffffff82091a3c r __ksymtab_inet_csk_route_child_sock
+ffffffff82091a48 r __ksymtab_inet_csk_route_req
+ffffffff82091a54 r __ksymtab_inet_csk_update_pmtu
+ffffffff82091a60 r __ksymtab_inet_ctl_sock_create
+ffffffff82091a6c r __ksymtab_inet_diag_bc_sk
+ffffffff82091a78 r __ksymtab_inet_diag_dump_icsk
+ffffffff82091a84 r __ksymtab_inet_diag_dump_one_icsk
+ffffffff82091a90 r __ksymtab_inet_diag_find_one_icsk
+ffffffff82091a9c r __ksymtab_inet_diag_msg_attrs_fill
+ffffffff82091aa8 r __ksymtab_inet_diag_msg_common_fill
+ffffffff82091ab4 r __ksymtab_inet_diag_register
+ffffffff82091ac0 r __ksymtab_inet_diag_unregister
+ffffffff82091acc r __ksymtab_inet_ehash_locks_alloc
+ffffffff82091ad8 r __ksymtab_inet_ehash_nolisten
+ffffffff82091ae4 r __ksymtab_inet_getpeer
+ffffffff82091af0 r __ksymtab_inet_hash
+ffffffff82091afc r __ksymtab_inet_hash_connect
+ffffffff82091b08 r __ksymtab_inet_hashinfo2_init_mod
+ffffffff82091b14 r __ksymtab_inet_peer_base_init
+ffffffff82091b20 r __ksymtab_inet_pernet_hashinfo_alloc
+ffffffff82091b2c r __ksymtab_inet_pernet_hashinfo_free
+ffffffff82091b38 r __ksymtab_inet_putpeer
+ffffffff82091b44 r __ksymtab_inet_send_prepare
+ffffffff82091b50 r __ksymtab_inet_sk_diag_fill
+ffffffff82091b5c r __ksymtab_inet_twsk_alloc
+ffffffff82091b68 r __ksymtab_inet_twsk_hashdance
+ffffffff82091b74 r __ksymtab_inet_twsk_purge
+ffffffff82091b80 r __ksymtab_inet_twsk_put
+ffffffff82091b8c r __ksymtab_inet_unhash
+ffffffff82091b98 r __ksymtab_init_dummy_netdev
+ffffffff82091ba4 r __ksymtab_init_iova_domain
+ffffffff82091bb0 r __ksymtab_init_pid_ns
+ffffffff82091bbc r __ksymtab_init_rs_gfp
+ffffffff82091bc8 r __ksymtab_init_rs_non_canonical
+ffffffff82091bd4 r __ksymtab_init_srcu_struct
+ffffffff82091be0 r __ksymtab_init_user_ns
+ffffffff82091bec r __ksymtab_init_uts_ns
+ffffffff82091bf8 r __ksymtab_inode_dax
+ffffffff82091c04 r __ksymtab_inode_sb_list_add
+ffffffff82091c10 r __ksymtab_input_class
+ffffffff82091c1c r __ksymtab_input_device_enabled
+ffffffff82091c28 r __ksymtab_input_event_from_user
+ffffffff82091c34 r __ksymtab_input_event_to_user
+ffffffff82091c40 r __ksymtab_input_ff_create
+ffffffff82091c4c r __ksymtab_input_ff_destroy
+ffffffff82091c58 r __ksymtab_input_ff_effect_from_user
+ffffffff82091c64 r __ksymtab_input_ff_erase
+ffffffff82091c70 r __ksymtab_input_ff_event
+ffffffff82091c7c r __ksymtab_input_ff_flush
+ffffffff82091c88 r __ksymtab_input_ff_upload
+ffffffff82091c94 r __ksymtab_insert_resource
+ffffffff82091ca0 r __ksymtab_insert_resource_expand_to_fit
+ffffffff82091cac r __ksymtab_int_active_memcg
+ffffffff82091cb8 r __ksymtab_int_pow
+ffffffff82091cc4 r __ksymtab_intel_cpu_collect_info
+ffffffff82091cd0 r __ksymtab_intel_pt_handle_vmx
+ffffffff82091cdc r __ksymtab_intel_pt_validate_cap
+ffffffff82091ce8 r __ksymtab_intel_pt_validate_hw_cap
+ffffffff82091cf4 r __ksymtab_invalidate_bh_lrus
+ffffffff82091d00 r __ksymtab_invalidate_inode_pages2
+ffffffff82091d0c r __ksymtab_invalidate_inode_pages2_range
+ffffffff82091d18 r __ksymtab_inverse_translate
+ffffffff82091d24 r __ksymtab_io_cgrp_subsys
+ffffffff82091d30 r __ksymtab_io_cgrp_subsys_enabled_key
+ffffffff82091d3c r __ksymtab_io_cgrp_subsys_on_dfl_key
+ffffffff82091d48 r __ksymtab_io_uring_cmd_complete_in_task
+ffffffff82091d54 r __ksymtab_io_uring_cmd_done
+ffffffff82091d60 r __ksymtab_io_uring_cmd_import_fixed
+ffffffff82091d6c r __ksymtab_ioc_find_get_icq
+ffffffff82091d78 r __ksymtab_iocb_bio_iopoll
+ffffffff82091d84 r __ksymtab_iomap_bmap
+ffffffff82091d90 r __ksymtab_iomap_dio_bio_end_io
+ffffffff82091d9c r __ksymtab_iomap_dio_complete
+ffffffff82091da8 r __ksymtab_iomap_dio_rw
+ffffffff82091db4 r __ksymtab_iomap_fiemap
+ffffffff82091dc0 r __ksymtab_iomap_file_buffered_write
+ffffffff82091dcc r __ksymtab_iomap_file_unshare
+ffffffff82091dd8 r __ksymtab_iomap_finish_ioends
+ffffffff82091de4 r __ksymtab_iomap_invalidate_folio
+ffffffff82091df0 r __ksymtab_iomap_ioend_try_merge
+ffffffff82091dfc r __ksymtab_iomap_is_partially_uptodate
+ffffffff82091e08 r __ksymtab_iomap_page_mkwrite
+ffffffff82091e14 r __ksymtab_iomap_read_folio
+ffffffff82091e20 r __ksymtab_iomap_readahead
+ffffffff82091e2c r __ksymtab_iomap_release_folio
+ffffffff82091e38 r __ksymtab_iomap_seek_data
+ffffffff82091e44 r __ksymtab_iomap_seek_hole
+ffffffff82091e50 r __ksymtab_iomap_sort_ioends
+ffffffff82091e5c r __ksymtab_iomap_swapfile_activate
+ffffffff82091e68 r __ksymtab_iomap_truncate_page
+ffffffff82091e74 r __ksymtab_iomap_writepages
+ffffffff82091e80 r __ksymtab_iomap_zero_range
+ffffffff82091e8c r __ksymtab_iommu_alloc_resv_region
+ffffffff82091e98 r __ksymtab_iommu_attach_device
+ffffffff82091ea4 r __ksymtab_iommu_attach_device_pasid
+ffffffff82091eb0 r __ksymtab_iommu_attach_group
+ffffffff82091ebc r __ksymtab_iommu_default_passthrough
+ffffffff82091ec8 r __ksymtab_iommu_detach_device
+ffffffff82091ed4 r __ksymtab_iommu_detach_device_pasid
+ffffffff82091ee0 r __ksymtab_iommu_detach_group
+ffffffff82091eec r __ksymtab_iommu_dev_disable_feature
+ffffffff82091ef8 r __ksymtab_iommu_dev_enable_feature
+ffffffff82091f04 r __ksymtab_iommu_device_link
+ffffffff82091f10 r __ksymtab_iommu_device_register
+ffffffff82091f1c r __ksymtab_iommu_device_sysfs_add
+ffffffff82091f28 r __ksymtab_iommu_device_sysfs_remove
+ffffffff82091f34 r __ksymtab_iommu_device_unlink
+ffffffff82091f40 r __ksymtab_iommu_device_unregister
+ffffffff82091f4c r __ksymtab_iommu_domain_alloc
+ffffffff82091f58 r __ksymtab_iommu_domain_free
+ffffffff82091f64 r __ksymtab_iommu_enable_nesting
+ffffffff82091f70 r __ksymtab_iommu_fwspec_add_ids
+ffffffff82091f7c r __ksymtab_iommu_fwspec_free
+ffffffff82091f88 r __ksymtab_iommu_fwspec_init
+ffffffff82091f94 r __ksymtab_iommu_get_domain_for_dev
+ffffffff82091fa0 r __ksymtab_iommu_get_domain_for_dev_pasid
+ffffffff82091fac r __ksymtab_iommu_get_group_resv_regions
+ffffffff82091fb8 r __ksymtab_iommu_group_add_device
+ffffffff82091fc4 r __ksymtab_iommu_group_alloc
+ffffffff82091fd0 r __ksymtab_iommu_group_claim_dma_owner
+ffffffff82091fdc r __ksymtab_iommu_group_dma_owner_claimed
+ffffffff82091fe8 r __ksymtab_iommu_group_for_each_dev
+ffffffff82091ff4 r __ksymtab_iommu_group_get
+ffffffff82092000 r __ksymtab_iommu_group_get_by_id
+ffffffff8209200c r __ksymtab_iommu_group_get_iommudata
+ffffffff82092018 r __ksymtab_iommu_group_id
+ffffffff82092024 r __ksymtab_iommu_group_put
+ffffffff82092030 r __ksymtab_iommu_group_ref_get
+ffffffff8209203c r __ksymtab_iommu_group_release_dma_owner
+ffffffff82092048 r __ksymtab_iommu_group_remove_device
+ffffffff82092054 r __ksymtab_iommu_group_set_iommudata
+ffffffff82092060 r __ksymtab_iommu_group_set_name
+ffffffff8209206c r __ksymtab_iommu_iova_to_phys
+ffffffff82092078 r __ksymtab_iommu_map
+ffffffff82092084 r __ksymtab_iommu_map_atomic
+ffffffff82092090 r __ksymtab_iommu_map_sg
+ffffffff8209209c r __ksymtab_iommu_page_response
+ffffffff820920a8 r __ksymtab_iommu_present
+ffffffff820920b4 r __ksymtab_iommu_register_device_fault_handler
+ffffffff820920c0 r __ksymtab_iommu_report_device_fault
+ffffffff820920cc r __ksymtab_iommu_set_fault_handler
+ffffffff820920d8 r __ksymtab_iommu_set_pgtable_quirks
+ffffffff820920e4 r __ksymtab_iommu_setup_dma_ops
+ffffffff820920f0 r __ksymtab_iommu_unmap
+ffffffff820920fc r __ksymtab_iommu_unmap_fast
+ffffffff82092108 r __ksymtab_iommu_unregister_device_fault_handler
+ffffffff82092114 r __ksymtab_ioremap_uc
+ffffffff82092120 r __ksymtab_iov_iter_is_aligned
+ffffffff8209212c r __ksymtab_iova_cache_get
+ffffffff82092138 r __ksymtab_iova_cache_put
+ffffffff82092144 r __ksymtab_iova_domain_init_rcaches
+ffffffff82092150 r __ksymtab_ip4_datagram_release_cb
+ffffffff8209215c r __ksymtab_ip6_append_data
+ffffffff82092168 r __ksymtab_ip6_datagram_connect
+ffffffff82092174 r __ksymtab_ip6_datagram_connect_v6_only
+ffffffff82092180 r __ksymtab_ip6_datagram_recv_ctl
+ffffffff8209218c r __ksymtab_ip6_datagram_release_cb
+ffffffff82092198 r __ksymtab_ip6_datagram_send_ctl
+ffffffff820921a4 r __ksymtab_ip6_dst_lookup
+ffffffff820921b0 r __ksymtab_ip6_dst_lookup_flow
+ffffffff820921bc r __ksymtab_ip6_dst_lookup_tunnel
+ffffffff820921c8 r __ksymtab_ip6_flush_pending_frames
+ffffffff820921d4 r __ksymtab_ip6_input
+ffffffff820921e0 r __ksymtab_ip6_local_out
+ffffffff820921ec r __ksymtab_ip6_pol_route
+ffffffff820921f8 r __ksymtab_ip6_push_pending_frames
+ffffffff82092204 r __ksymtab_ip6_redirect
+ffffffff82092210 r __ksymtab_ip6_route_input_lookup
+ffffffff8209221c r __ksymtab_ip6_route_lookup
+ffffffff82092228 r __ksymtab_ip6_route_output_flags
+ffffffff82092234 r __ksymtab_ip6_route_output_flags_noref
+ffffffff82092240 r __ksymtab_ip6_sk_dst_lookup_flow
+ffffffff8209224c r __ksymtab_ip6_sk_redirect
+ffffffff82092258 r __ksymtab_ip6_sk_update_pmtu
+ffffffff82092264 r __ksymtab_ip6_tnl_encap_setup
+ffffffff82092270 r __ksymtab_ip6_tnl_rcv_ctl
+ffffffff8209227c r __ksymtab_ip6_tnl_xmit_ctl
+ffffffff82092288 r __ksymtab_ip6_update_pmtu
+ffffffff82092294 r __ksymtab_ip_build_and_send_pkt
+ffffffff820922a0 r __ksymtab_ip_fib_metrics_init
+ffffffff820922ac r __ksymtab_ip_icmp_error_rfc4884
+ffffffff820922b8 r __ksymtab_ip_local_out
+ffffffff820922c4 r __ksymtab_ip_md_tunnel_xmit
+ffffffff820922d0 r __ksymtab_ip_route_output_flow
+ffffffff820922dc r __ksymtab_ip_route_output_key_hash
+ffffffff820922e8 r __ksymtab_ip_route_output_tunnel
+ffffffff820922f4 r __ksymtab_ip_tunnel_change_mtu
+ffffffff82092300 r __ksymtab_ip_tunnel_changelink
+ffffffff8209230c r __ksymtab_ip_tunnel_ctl
+ffffffff82092318 r __ksymtab_ip_tunnel_delete_nets
+ffffffff82092324 r __ksymtab_ip_tunnel_dellink
+ffffffff82092330 r __ksymtab_ip_tunnel_encap_setup
+ffffffff8209233c r __ksymtab_ip_tunnel_init
+ffffffff82092348 r __ksymtab_ip_tunnel_init_net
+ffffffff82092354 r __ksymtab_ip_tunnel_lookup
+ffffffff82092360 r __ksymtab_ip_tunnel_need_metadata
+ffffffff8209236c r __ksymtab_ip_tunnel_netlink_encap_parms
+ffffffff82092378 r __ksymtab_ip_tunnel_netlink_parms
+ffffffff82092384 r __ksymtab_ip_tunnel_newlink
+ffffffff82092390 r __ksymtab_ip_tunnel_rcv
+ffffffff8209239c r __ksymtab_ip_tunnel_setup
+ffffffff820923a8 r __ksymtab_ip_tunnel_siocdevprivate
+ffffffff820923b4 r __ksymtab_ip_tunnel_uninit
+ffffffff820923c0 r __ksymtab_ip_tunnel_unneed_metadata
+ffffffff820923cc r __ksymtab_ip_tunnel_xmit
+ffffffff820923d8 r __ksymtab_ip_valid_fib_dump_req
+ffffffff820923e4 r __ksymtab_ipcomp_destroy
+ffffffff820923f0 r __ksymtab_ipcomp_init_state
+ffffffff820923fc r __ksymtab_ipcomp_input
+ffffffff82092408 r __ksymtab_ipcomp_output
+ffffffff82092414 r __ksymtab_iptunnel_handle_offloads
+ffffffff82092420 r __ksymtab_iptunnel_metadata_reply
+ffffffff8209242c r __ksymtab_iptunnel_xmit
+ffffffff82092438 r __ksymtab_ipv4_redirect
+ffffffff82092444 r __ksymtab_ipv4_sk_redirect
+ffffffff82092450 r __ksymtab_ipv4_sk_update_pmtu
+ffffffff8209245c r __ksymtab_ipv4_update_pmtu
+ffffffff82092468 r __ksymtab_ipv6_bpf_stub
+ffffffff82092474 r __ksymtab_ipv6_dup_options
+ffffffff82092480 r __ksymtab_ipv6_find_tlv
+ffffffff8209248c r __ksymtab_ipv6_mod_enabled
+ffffffff82092498 r __ksymtab_ipv6_opt_accepted
+ffffffff820924a4 r __ksymtab_ipv6_proxy_select_ident
+ffffffff820924b0 r __ksymtab_ipv6_recv_error
+ffffffff820924bc r __ksymtab_ipv6_stub
+ffffffff820924c8 r __ksymtab_irq_check_status_bit
+ffffffff820924d4 r __ksymtab_irq_chip_ack_parent
+ffffffff820924e0 r __ksymtab_irq_chip_disable_parent
+ffffffff820924ec r __ksymtab_irq_chip_enable_parent
+ffffffff820924f8 r __ksymtab_irq_chip_eoi_parent
+ffffffff82092504 r __ksymtab_irq_chip_get_parent_state
+ffffffff82092510 r __ksymtab_irq_chip_mask_ack_parent
+ffffffff8209251c r __ksymtab_irq_chip_mask_parent
+ffffffff82092528 r __ksymtab_irq_chip_release_resources_parent
+ffffffff82092534 r __ksymtab_irq_chip_request_resources_parent
+ffffffff82092540 r __ksymtab_irq_chip_retrigger_hierarchy
+ffffffff8209254c r __ksymtab_irq_chip_set_affinity_parent
+ffffffff82092558 r __ksymtab_irq_chip_set_parent_state
+ffffffff82092564 r __ksymtab_irq_chip_set_type_parent
+ffffffff82092570 r __ksymtab_irq_chip_set_vcpu_affinity_parent
+ffffffff8209257c r __ksymtab_irq_chip_set_wake_parent
+ffffffff82092588 r __ksymtab_irq_chip_unmask_parent
+ffffffff82092594 r __ksymtab_irq_create_fwspec_mapping
+ffffffff820925a0 r __ksymtab_irq_create_mapping_affinity
+ffffffff820925ac r __ksymtab_irq_create_of_mapping
+ffffffff820925b8 r __ksymtab_irq_dispose_mapping
+ffffffff820925c4 r __ksymtab_irq_do_set_affinity
+ffffffff820925d0 r __ksymtab_irq_domain_add_legacy
+ffffffff820925dc r __ksymtab_irq_domain_alloc_irqs_parent
+ffffffff820925e8 r __ksymtab_irq_domain_associate
+ffffffff820925f4 r __ksymtab_irq_domain_associate_many
+ffffffff82092600 r __ksymtab_irq_domain_check_msi_remap
+ffffffff8209260c r __ksymtab_irq_domain_create_hierarchy
+ffffffff82092618 r __ksymtab_irq_domain_create_legacy
+ffffffff82092624 r __ksymtab_irq_domain_create_simple
+ffffffff82092630 r __ksymtab_irq_domain_disconnect_hierarchy
+ffffffff8209263c r __ksymtab_irq_domain_free_fwnode
+ffffffff82092648 r __ksymtab_irq_domain_free_irqs_common
+ffffffff82092654 r __ksymtab_irq_domain_free_irqs_parent
+ffffffff82092660 r __ksymtab_irq_domain_get_irq_data
+ffffffff8209266c r __ksymtab_irq_domain_pop_irq
+ffffffff82092678 r __ksymtab_irq_domain_push_irq
+ffffffff82092684 r __ksymtab_irq_domain_remove
+ffffffff82092690 r __ksymtab_irq_domain_reset_irq_data
+ffffffff8209269c r __ksymtab_irq_domain_set_hwirq_and_chip
+ffffffff820926a8 r __ksymtab_irq_domain_simple_ops
+ffffffff820926b4 r __ksymtab_irq_domain_translate_onecell
+ffffffff820926c0 r __ksymtab_irq_domain_translate_twocell
+ffffffff820926cc r __ksymtab_irq_domain_update_bus_token
+ffffffff820926d8 r __ksymtab_irq_domain_xlate_onecell
+ffffffff820926e4 r __ksymtab_irq_domain_xlate_onetwocell
+ffffffff820926f0 r __ksymtab_irq_domain_xlate_twocell
+ffffffff820926fc r __ksymtab_irq_find_matching_fwspec
+ffffffff82092708 r __ksymtab_irq_force_affinity
+ffffffff82092714 r __ksymtab_irq_free_descs
+ffffffff82092720 r __ksymtab_irq_get_default_host
+ffffffff8209272c r __ksymtab_irq_get_irq_data
+ffffffff82092738 r __ksymtab_irq_get_irqchip_state
+ffffffff82092744 r __ksymtab_irq_get_percpu_devid_partition
+ffffffff82092750 r __ksymtab_irq_has_action
+ffffffff8209275c r __ksymtab_irq_modify_status
+ffffffff82092768 r __ksymtab_irq_of_parse_and_map
+ffffffff82092774 r __ksymtab_irq_percpu_is_enabled
+ffffffff82092780 r __ksymtab_irq_set_affinity
+ffffffff8209278c r __ksymtab_irq_set_affinity_notifier
+ffffffff82092798 r __ksymtab_irq_set_chained_handler_and_data
+ffffffff820927a4 r __ksymtab_irq_set_chip_and_handler_name
+ffffffff820927b0 r __ksymtab_irq_set_default_host
+ffffffff820927bc r __ksymtab_irq_set_irqchip_state
+ffffffff820927c8 r __ksymtab_irq_set_parent
+ffffffff820927d4 r __ksymtab_irq_set_vcpu_affinity
+ffffffff820927e0 r __ksymtab_irq_to_desc
+ffffffff820927ec r __ksymtab_irq_wake_thread
+ffffffff820927f8 r __ksymtab_irq_work_queue
+ffffffff82092804 r __ksymtab_irq_work_queue_on
+ffffffff82092810 r __ksymtab_irq_work_run
+ffffffff8209281c r __ksymtab_irq_work_sync
+ffffffff82092828 r __ksymtab_irqchip_fwnode_ops
+ffffffff82092834 r __ksymtab_irqd_cfg
+ffffffff82092840 r __ksymtab_is_dma_buf_file
+ffffffff8209284c r __ksymtab_is_hpet_enabled
+ffffffff82092858 r __ksymtab_is_nvdimm_sync
+ffffffff82092864 r __ksymtab_is_skb_forwardable
+ffffffff82092870 r __ksymtab_is_software_node
+ffffffff8209287c r __ksymtab_is_swiotlb_active
+ffffffff82092888 r __ksymtab_is_virtio_device
+ffffffff82092894 r __ksymtab_isolate_and_split_free_page
+ffffffff820928a0 r __ksymtab_isolate_anon_lru_page
+ffffffff820928ac r __ksymtab_itlb_multihit_kvm_mitigation
+ffffffff820928b8 r __ksymtab_jump_label_rate_limit
+ffffffff820928c4 r __ksymtab_jump_label_update_timeout
+ffffffff820928d0 r __ksymtab_kasprintf_strarray
+ffffffff820928dc r __ksymtab_kern_mount
+ffffffff820928e8 r __ksymtab_kernel_can_power_off
+ffffffff820928f4 r __ksymtab_kernel_fpu_begin_mask
+ffffffff82092900 r __ksymtab_kernel_fpu_end
+ffffffff8209290c r __ksymtab_kernel_halt
+ffffffff82092918 r __ksymtab_kernel_kobj
+ffffffff82092924 r __ksymtab_kernel_power_off
+ffffffff82092930 r __ksymtab_kernel_read_file
+ffffffff8209293c r __ksymtab_kernel_read_file_from_fd
+ffffffff82092948 r __ksymtab_kernel_read_file_from_path
+ffffffff82092954 r __ksymtab_kernel_read_file_from_path_initns
+ffffffff82092960 r __ksymtab_kernel_restart
+ffffffff8209296c r __ksymtab_kernfs_find_and_get_ns
+ffffffff82092978 r __ksymtab_kernfs_get
+ffffffff82092984 r __ksymtab_kernfs_notify
+ffffffff82092990 r __ksymtab_kernfs_path_from_node
+ffffffff8209299c r __ksymtab_kernfs_put
+ffffffff820929a8 r __ksymtab_kexec_crash_loaded
+ffffffff820929b4 r __ksymtab_kfence_sample_interval
+ffffffff820929c0 r __ksymtab_kfree_strarray
+ffffffff820929cc r __ksymtab_kick_all_cpus_sync
+ffffffff820929d8 r __ksymtab_kick_process
+ffffffff820929e4 r __ksymtab_kill_dax
+ffffffff820929f0 r __ksymtab_kill_dev_dax
+ffffffff820929fc r __ksymtab_kill_device
+ffffffff82092a08 r __ksymtab_kill_pid_usb_asyncio
+ffffffff82092a14 r __ksymtab_kiocb_modified
+ffffffff82092a20 r __ksymtab_klist_add_before
+ffffffff82092a2c r __ksymtab_klist_add_behind
+ffffffff82092a38 r __ksymtab_klist_add_head
+ffffffff82092a44 r __ksymtab_klist_add_tail
+ffffffff82092a50 r __ksymtab_klist_del
+ffffffff82092a5c r __ksymtab_klist_init
+ffffffff82092a68 r __ksymtab_klist_iter_exit
+ffffffff82092a74 r __ksymtab_klist_iter_init
+ffffffff82092a80 r __ksymtab_klist_iter_init_node
+ffffffff82092a8c r __ksymtab_klist_next
+ffffffff82092a98 r __ksymtab_klist_node_attached
+ffffffff82092aa4 r __ksymtab_klist_prev
+ffffffff82092ab0 r __ksymtab_klist_remove
+ffffffff82092abc r __ksymtab_kmem_dump_obj
+ffffffff82092ac8 r __ksymtab_kmem_valid_obj
+ffffffff82092ad4 r __ksymtab_kmsg_dump_get_buffer
+ffffffff82092ae0 r __ksymtab_kmsg_dump_get_line
+ffffffff82092aec r __ksymtab_kmsg_dump_reason_str
+ffffffff82092af8 r __ksymtab_kmsg_dump_register
+ffffffff82092b04 r __ksymtab_kmsg_dump_rewind
+ffffffff82092b10 r __ksymtab_kmsg_dump_unregister
+ffffffff82092b1c r __ksymtab_kobj_ns_drop
+ffffffff82092b28 r __ksymtab_kobj_ns_grab_current
+ffffffff82092b34 r __ksymtab_kobj_sysfs_ops
+ffffffff82092b40 r __ksymtab_kobject_create_and_add
+ffffffff82092b4c r __ksymtab_kobject_get_path
+ffffffff82092b58 r __ksymtab_kobject_init_and_add
+ffffffff82092b64 r __ksymtab_kobject_move
+ffffffff82092b70 r __ksymtab_kobject_rename
+ffffffff82092b7c r __ksymtab_kobject_uevent
+ffffffff82092b88 r __ksymtab_kobject_uevent_env
+ffffffff82092b94 r __ksymtab_kpp_register_instance
+ffffffff82092ba0 r __ksymtab_kset_create_and_add
+ffffffff82092bac r __ksymtab_kset_find_obj
+ffffffff82092bb8 r __ksymtab_ksoftirqd
+ffffffff82092bc4 r __ksymtab_kstat_irqs_cpu
+ffffffff82092bd0 r __ksymtab_kstat_irqs_usr
+ffffffff82092bdc r __ksymtab_kstrdup_quotable
+ffffffff82092be8 r __ksymtab_kstrdup_quotable_cmdline
+ffffffff82092bf4 r __ksymtab_kstrdup_quotable_file
+ffffffff82092c00 r __ksymtab_kswapd
+ffffffff82092c0c r __ksymtab_ksys_sync_helper
+ffffffff82092c18 r __ksymtab_kthread_bind_mask
+ffffffff82092c24 r __ksymtab_kthread_cancel_delayed_work_sync
+ffffffff82092c30 r __ksymtab_kthread_cancel_work_sync
+ffffffff82092c3c r __ksymtab_kthread_data
+ffffffff82092c48 r __ksymtab_kthread_flush_work
+ffffffff82092c54 r __ksymtab_kthread_flush_worker
+ffffffff82092c60 r __ksymtab_kthread_freezable_should_stop
+ffffffff82092c6c r __ksymtab_kthread_func
+ffffffff82092c78 r __ksymtab_kthread_mod_delayed_work
+ffffffff82092c84 r __ksymtab_kthread_park
+ffffffff82092c90 r __ksymtab_kthread_parkme
+ffffffff82092c9c r __ksymtab_kthread_queue_delayed_work
+ffffffff82092ca8 r __ksymtab_kthread_queue_work
+ffffffff82092cb4 r __ksymtab_kthread_should_park
+ffffffff82092cc0 r __ksymtab_kthread_unpark
+ffffffff82092ccc r __ksymtab_kthread_unuse_mm
+ffffffff82092cd8 r __ksymtab_kthread_use_mm
+ffffffff82092ce4 r __ksymtab_kthread_worker_fn
+ffffffff82092cf0 r __ksymtab_ktime_add_safe
+ffffffff82092cfc r __ksymtab_ktime_get
+ffffffff82092d08 r __ksymtab_ktime_get_boot_fast_ns
+ffffffff82092d14 r __ksymtab_ktime_get_coarse_with_offset
+ffffffff82092d20 r __ksymtab_ktime_get_mono_fast_ns
+ffffffff82092d2c r __ksymtab_ktime_get_raw
+ffffffff82092d38 r __ksymtab_ktime_get_raw_fast_ns
+ffffffff82092d44 r __ksymtab_ktime_get_real_fast_ns
+ffffffff82092d50 r __ksymtab_ktime_get_real_seconds
+ffffffff82092d5c r __ksymtab_ktime_get_resolution_ns
+ffffffff82092d68 r __ksymtab_ktime_get_seconds
+ffffffff82092d74 r __ksymtab_ktime_get_snapshot
+ffffffff82092d80 r __ksymtab_ktime_get_tai_fast_ns
+ffffffff82092d8c r __ksymtab_ktime_get_ts64
+ffffffff82092d98 r __ksymtab_ktime_get_with_offset
+ffffffff82092da4 r __ksymtab_ktime_mono_to_any
+ffffffff82092db0 r __ksymtab_kvfree_call_rcu
+ffffffff82092dbc r __ksymtab_kvm_arch_para_hints
+ffffffff82092dc8 r __ksymtab_kvm_async_pf_task_wait_schedule
+ffffffff82092dd4 r __ksymtab_kvm_async_pf_task_wake
+ffffffff82092de0 r __ksymtab_kvm_clock
+ffffffff82092dec r __ksymtab_kvm_para_available
+ffffffff82092df8 r __ksymtab_kvm_read_and_reset_apf_flags
+ffffffff82092e04 r __ksymtab_kvm_set_posted_intr_wakeup_handler
+ffffffff82092e10 r __ksymtab_l1tf_vmx_mitigation
+ffffffff82092e1c r __ksymtab_lcm
+ffffffff82092e28 r __ksymtab_lcm_not_zero
+ffffffff82092e34 r __ksymtab_lease_register_notifier
+ffffffff82092e40 r __ksymtab_lease_unregister_notifier
+ffffffff82092e4c r __ksymtab_leave_mm
+ffffffff82092e58 r __ksymtab_list_lru_add
+ffffffff82092e64 r __ksymtab_list_lru_count_node
+ffffffff82092e70 r __ksymtab_list_lru_count_one
+ffffffff82092e7c r __ksymtab_list_lru_del
+ffffffff82092e88 r __ksymtab_list_lru_destroy
+ffffffff82092e94 r __ksymtab_list_lru_isolate
+ffffffff82092ea0 r __ksymtab_list_lru_isolate_move
+ffffffff82092eac r __ksymtab_list_lru_walk_node
+ffffffff82092eb8 r __ksymtab_list_lru_walk_one
+ffffffff82092ec4 r __ksymtab_llist_add_batch
+ffffffff82092ed0 r __ksymtab_llist_del_first
+ffffffff82092edc r __ksymtab_llist_reverse_order
+ffffffff82092ee8 r __ksymtab_load_direct_gdt
+ffffffff82092ef4 r __ksymtab_load_fixmap_gdt
+ffffffff82092f00 r __ksymtab_local_apic_timer_c2_ok
+ffffffff82092f0c r __ksymtab_local_touch_nmi
+ffffffff82092f18 r __ksymtab_lock_system_sleep
+ffffffff82092f24 r __ksymtab_locks_alloc_lock
+ffffffff82092f30 r __ksymtab_locks_owner_has_blockers
+ffffffff82092f3c r __ksymtab_locks_release_private
+ffffffff82092f48 r __ksymtab_log_abnormal_wakeup_reason
+ffffffff82092f54 r __ksymtab_log_suspend_abort_reason
+ffffffff82092f60 r __ksymtab_log_threaded_irq_wakeup_reason
+ffffffff82092f6c r __ksymtab_lookup_address
+ffffffff82092f78 r __ksymtab_lpit_read_residency_count_address
+ffffffff82092f84 r __ksymtab_lzo1x_1_compress
+ffffffff82092f90 r __ksymtab_lzo1x_decompress_safe
+ffffffff82092f9c r __ksymtab_lzorle1x_1_compress
+ffffffff82092fa8 r __ksymtab_mark_mounts_for_expiry
+ffffffff82092fb4 r __ksymtab_mark_tsc_unstable
+ffffffff82092fc0 r __ksymtab_mas_destroy
+ffffffff82092fcc r __ksymtab_mas_empty_area
+ffffffff82092fd8 r __ksymtab_mas_empty_area_rev
+ffffffff82092fe4 r __ksymtab_mas_erase
+ffffffff82092ff0 r __ksymtab_mas_expected_entries
+ffffffff82092ffc r __ksymtab_mas_find
+ffffffff82093008 r __ksymtab_mas_find_range
+ffffffff82093014 r __ksymtab_mas_find_range_rev
+ffffffff82093020 r __ksymtab_mas_find_rev
+ffffffff8209302c r __ksymtab_mas_next
+ffffffff82093038 r __ksymtab_mas_next_range
+ffffffff82093044 r __ksymtab_mas_pause
+ffffffff82093050 r __ksymtab_mas_prev
+ffffffff8209305c r __ksymtab_mas_prev_range
+ffffffff82093068 r __ksymtab_mas_store
+ffffffff82093074 r __ksymtab_mas_store_gfp
+ffffffff82093080 r __ksymtab_mas_store_prealloc
+ffffffff8209308c r __ksymtab_mas_walk
+ffffffff82093098 r __ksymtab_max_cswd_read_retries
+ffffffff820930a4 r __ksymtab_max_load_balance_interval
+ffffffff820930b0 r __ksymtab_mbox_bind_client
+ffffffff820930bc r __ksymtab_mbox_chan_received_data
+ffffffff820930c8 r __ksymtab_mbox_chan_txdone
+ffffffff820930d4 r __ksymtab_mbox_client_peek_data
+ffffffff820930e0 r __ksymtab_mbox_client_txdone
+ffffffff820930ec r __ksymtab_mbox_controller_register
+ffffffff820930f8 r __ksymtab_mbox_controller_unregister
+ffffffff82093104 r __ksymtab_mbox_flush
+ffffffff82093110 r __ksymtab_mbox_free_channel
+ffffffff8209311c r __ksymtab_mbox_request_channel
+ffffffff82093128 r __ksymtab_mbox_request_channel_byname
+ffffffff82093134 r __ksymtab_mbox_send_message
+ffffffff82093140 r __ksymtab_mc146818_avoid_UIP
+ffffffff8209314c r __ksymtab_mc146818_does_rtc_work
+ffffffff82093158 r __ksymtab_mc146818_get_time
+ffffffff82093164 r __ksymtab_mc146818_set_time
+ffffffff82093170 r __ksymtab_mctrl_gpio_disable_irq_wake
+ffffffff8209317c r __ksymtab_mctrl_gpio_disable_ms
+ffffffff82093188 r __ksymtab_mctrl_gpio_enable_irq_wake
+ffffffff82093194 r __ksymtab_mctrl_gpio_enable_ms
+ffffffff820931a0 r __ksymtab_mctrl_gpio_free
+ffffffff820931ac r __ksymtab_mctrl_gpio_get
+ffffffff820931b8 r __ksymtab_mctrl_gpio_get_outputs
+ffffffff820931c4 r __ksymtab_mctrl_gpio_init
+ffffffff820931d0 r __ksymtab_mctrl_gpio_init_noauto
+ffffffff820931dc r __ksymtab_mctrl_gpio_set
+ffffffff820931e8 r __ksymtab_mctrl_gpio_to_gpiod
+ffffffff820931f4 r __ksymtab_md5_zero_message_hash
+ffffffff82093200 r __ksymtab_mds_idle_clear
+ffffffff8209320c r __ksymtab_mds_user_clear
+ffffffff82093218 r __ksymtab_mem_cgroup_from_id
+ffffffff82093224 r __ksymtab_mem_dump_obj
+ffffffff82093230 r __ksymtab_memalloc_socks_key
+ffffffff8209323c r __ksymtab_memblock_end_of_DRAM
+ffffffff82093248 r __ksymtab_memory_block_size_bytes
+ffffffff82093254 r __ksymtab_memory_cgrp_subsys_enabled_key
+ffffffff82093260 r __ksymtab_memory_cgrp_subsys_on_dfl_key
+ffffffff8209326c r __ksymtab_memory_group_register_dynamic
+ffffffff82093278 r __ksymtab_memory_group_register_static
+ffffffff82093284 r __ksymtab_memory_group_unregister
+ffffffff82093290 r __ksymtab_metadata_dst_alloc
+ffffffff8209329c r __ksymtab_metadata_dst_alloc_percpu
+ffffffff820932a8 r __ksymtab_metadata_dst_free
+ffffffff820932b4 r __ksymtab_metadata_dst_free_percpu
+ffffffff820932c0 r __ksymtab_mhp_get_pluggable_range
+ffffffff820932cc r __ksymtab_migrate_disable
+ffffffff820932d8 r __ksymtab_migrate_enable
+ffffffff820932e4 r __ksymtab_migrate_pages
+ffffffff820932f0 r __ksymtab_migrate_swap
+ffffffff820932fc r __ksymtab_mm_account_pinned_pages
+ffffffff82093308 r __ksymtab_mm_kobj
+ffffffff82093314 r __ksymtab_mm_trace_rss_stat
+ffffffff82093320 r __ksymtab_mm_unaccount_pinned_pages
+ffffffff8209332c r __ksymtab_mmio_stale_data_clear
+ffffffff82093338 r __ksymtab_mmput
+ffffffff82093344 r __ksymtab_mmput_async
+ffffffff82093350 r __ksymtab_mnt_drop_write
+ffffffff8209335c r __ksymtab_mnt_want_write
+ffffffff82093368 r __ksymtab_mnt_want_write_file
+ffffffff82093374 r __ksymtab_mod_delayed_work_on
+ffffffff82093380 r __ksymtab_modify_user_hw_breakpoint
+ffffffff8209338c r __ksymtab_msg_zerocopy_callback
+ffffffff82093398 r __ksymtab_msg_zerocopy_put_abort
+ffffffff820933a4 r __ksymtab_msg_zerocopy_realloc
+ffffffff820933b0 r __ksymtab_msi_first_desc
+ffffffff820933bc r __ksymtab_msi_get_virq
+ffffffff820933c8 r __ksymtab_msi_lock_descs
+ffffffff820933d4 r __ksymtab_msi_next_desc
+ffffffff820933e0 r __ksymtab_msi_unlock_descs
+ffffffff820933ec r __ksymtab_mt_next
+ffffffff820933f8 r __ksymtab_mt_prev
+ffffffff82093404 r __ksymtab_mtrr_state
+ffffffff82093410 r __ksymtab_mutex_lock_io
+ffffffff8209341c r __ksymtab_mxcsr_feature_mask
+ffffffff82093428 r __ksymtab_n_tty_inherit_ops
+ffffffff82093434 r __ksymtab_name_to_dev_t
+ffffffff82093440 r __ksymtab_nd_cmd_bus_desc
+ffffffff8209344c r __ksymtab_nd_cmd_dimm_desc
+ffffffff82093458 r __ksymtab_nd_cmd_in_size
+ffffffff82093464 r __ksymtab_nd_cmd_out_size
+ffffffff82093470 r __ksymtab_nd_fletcher64
+ffffffff8209347c r __ksymtab_nd_region_dev
+ffffffff82093488 r __ksymtab_nd_region_provider_data
+ffffffff82093494 r __ksymtab_nd_synchronize
+ffffffff820934a0 r __ksymtab_nd_tbl
+ffffffff820934ac r __ksymtab_ndo_dflt_bridge_getlink
+ffffffff820934b8 r __ksymtab_net_namespace_list
+ffffffff820934c4 r __ksymtab_net_ns_type_operations
+ffffffff820934d0 r __ksymtab_net_prio_cgrp_subsys_enabled_key
+ffffffff820934dc r __ksymtab_net_prio_cgrp_subsys_on_dfl_key
+ffffffff820934e8 r __ksymtab_net_rwsem
+ffffffff820934f4 r __ksymtab_netdev_cmd_to_name
+ffffffff82093500 r __ksymtab_netdev_is_rx_handler_busy
+ffffffff8209350c r __ksymtab_netdev_rx_handler_register
+ffffffff82093518 r __ksymtab_netdev_rx_handler_unregister
+ffffffff82093524 r __ksymtab_netdev_set_default_ethtool_ops
+ffffffff82093530 r __ksymtab_netdev_walk_all_lower_dev
+ffffffff8209353c r __ksymtab_netdev_walk_all_lower_dev_rcu
+ffffffff82093548 r __ksymtab_netdev_walk_all_upper_dev_rcu
+ffffffff82093554 r __ksymtab_netif_carrier_event
+ffffffff82093560 r __ksymtab_netlink_add_tap
+ffffffff8209356c r __ksymtab_netlink_has_listeners
+ffffffff82093578 r __ksymtab_netlink_remove_tap
+ffffffff82093584 r __ksymtab_netlink_strict_get_check
+ffffffff82093590 r __ksymtab_nexthop_find_by_id
+ffffffff8209359c r __ksymtab_nexthop_for_each_fib6_nh
+ffffffff820935a8 r __ksymtab_nexthop_free_rcu
+ffffffff820935b4 r __ksymtab_nexthop_select_path
+ffffffff820935c0 r __ksymtab_nf_conn_btf_access_lock
+ffffffff820935cc r __ksymtab_nfct_btf_struct_access
+ffffffff820935d8 r __ksymtab_nl_table
+ffffffff820935e4 r __ksymtab_nl_table_lock
+ffffffff820935f0 r __ksymtab_no_action
+ffffffff820935fc r __ksymtab_no_hash_pointers
+ffffffff82093608 r __ksymtab_node_to_amd_nb
+ffffffff82093614 r __ksymtab_noop_backing_dev_info
+ffffffff82093620 r __ksymtab_noop_direct_IO
+ffffffff8209362c r __ksymtab_nr_free_buffer_pages
+ffffffff82093638 r __ksymtab_nr_irqs
+ffffffff82093644 r __ksymtab_nr_swap_pages
+ffffffff82093650 r __ksymtab_nsec_to_clock_t
+ffffffff8209365c r __ksymtab_nsecs_to_jiffies
+ffffffff82093668 r __ksymtab_nvdimm_badblocks_populate
+ffffffff82093674 r __ksymtab_nvdimm_bus_add_badrange
+ffffffff82093680 r __ksymtab_nvdimm_bus_check_dimm_count
+ffffffff8209368c r __ksymtab_nvdimm_bus_register
+ffffffff82093698 r __ksymtab_nvdimm_bus_unregister
+ffffffff820936a4 r __ksymtab_nvdimm_clear_poison
+ffffffff820936b0 r __ksymtab_nvdimm_cmd_mask
+ffffffff820936bc r __ksymtab_nvdimm_delete
+ffffffff820936c8 r __ksymtab_nvdimm_flush
+ffffffff820936d4 r __ksymtab_nvdimm_has_cache
+ffffffff820936e0 r __ksymtab_nvdimm_has_flush
+ffffffff820936ec r __ksymtab_nvdimm_in_overwrite
+ffffffff820936f8 r __ksymtab_nvdimm_kobj
+ffffffff82093704 r __ksymtab_nvdimm_name
+ffffffff82093710 r __ksymtab_nvdimm_pmem_region_create
+ffffffff8209371c r __ksymtab_nvdimm_provider_data
+ffffffff82093728 r __ksymtab_nvdimm_region_delete
+ffffffff82093734 r __ksymtab_nvdimm_region_notify
+ffffffff82093740 r __ksymtab_nvdimm_security_setup_events
+ffffffff8209374c r __ksymtab_nvdimm_to_bus
+ffffffff82093758 r __ksymtab_nvdimm_volatile_region_create
+ffffffff82093764 r __ksymtab_nvmem_add_cell_lookups
+ffffffff82093770 r __ksymtab_nvmem_add_cell_table
+ffffffff8209377c r __ksymtab_nvmem_cell_get
+ffffffff82093788 r __ksymtab_nvmem_cell_put
+ffffffff82093794 r __ksymtab_nvmem_cell_read
+ffffffff820937a0 r __ksymtab_nvmem_cell_read_u16
+ffffffff820937ac r __ksymtab_nvmem_cell_read_u32
+ffffffff820937b8 r __ksymtab_nvmem_cell_read_u64
+ffffffff820937c4 r __ksymtab_nvmem_cell_read_u8
+ffffffff820937d0 r __ksymtab_nvmem_cell_read_variable_le_u32
+ffffffff820937dc r __ksymtab_nvmem_cell_read_variable_le_u64
+ffffffff820937e8 r __ksymtab_nvmem_cell_write
+ffffffff820937f4 r __ksymtab_nvmem_del_cell_lookups
+ffffffff82093800 r __ksymtab_nvmem_del_cell_table
+ffffffff8209380c r __ksymtab_nvmem_dev_name
+ffffffff82093818 r __ksymtab_nvmem_device_cell_read
+ffffffff82093824 r __ksymtab_nvmem_device_cell_write
+ffffffff82093830 r __ksymtab_nvmem_device_find
+ffffffff8209383c r __ksymtab_nvmem_device_get
+ffffffff82093848 r __ksymtab_nvmem_device_put
+ffffffff82093854 r __ksymtab_nvmem_device_read
+ffffffff82093860 r __ksymtab_nvmem_device_write
+ffffffff8209386c r __ksymtab_nvmem_register
+ffffffff82093878 r __ksymtab_nvmem_register_notifier
+ffffffff82093884 r __ksymtab_nvmem_unregister
+ffffffff82093890 r __ksymtab_nvmem_unregister_notifier
+ffffffff8209389c r __ksymtab_of_add_property
+ffffffff820938a8 r __ksymtab_of_address_to_resource
+ffffffff820938b4 r __ksymtab_of_alias_get_highest_id
+ffffffff820938c0 r __ksymtab_of_alias_get_id
+ffffffff820938cc r __ksymtab_of_console_check
+ffffffff820938d8 r __ksymtab_of_cpufreq_cooling_register
+ffffffff820938e4 r __ksymtab_of_css
+ffffffff820938f0 r __ksymtab_of_device_compatible_match
+ffffffff820938fc r __ksymtab_of_device_modalias
+ffffffff82093908 r __ksymtab_of_device_request_module
+ffffffff82093914 r __ksymtab_of_device_uevent_modalias
+ffffffff82093920 r __ksymtab_of_dma_configure_id
+ffffffff8209392c r __ksymtab_of_dma_is_coherent
+ffffffff82093938 r __ksymtab_of_fwnode_ops
+ffffffff82093944 r __ksymtab_of_get_named_gpio_flags
+ffffffff82093950 r __ksymtab_of_get_pci_domain_nr
+ffffffff8209395c r __ksymtab_of_get_phy_mode
+ffffffff82093968 r __ksymtab_of_irq_find_parent
+ffffffff82093974 r __ksymtab_of_irq_get
+ffffffff82093980 r __ksymtab_of_irq_get_byname
+ffffffff8209398c r __ksymtab_of_irq_parse_and_map_pci
+ffffffff82093998 r __ksymtab_of_irq_parse_one
+ffffffff820939a4 r __ksymtab_of_irq_parse_raw
+ffffffff820939b0 r __ksymtab_of_irq_to_resource
+ffffffff820939bc r __ksymtab_of_irq_to_resource_table
+ffffffff820939c8 r __ksymtab_of_map_id
+ffffffff820939d4 r __ksymtab_of_mm_gpiochip_add_data
+ffffffff820939e0 r __ksymtab_of_mm_gpiochip_remove
+ffffffff820939ec r __ksymtab_of_modalias_node
+ffffffff820939f8 r __ksymtab_of_msi_configure
+ffffffff82093a04 r __ksymtab_of_nvmem_cell_get
+ffffffff82093a10 r __ksymtab_of_nvmem_device_get
+ffffffff82093a1c r __ksymtab_of_pci_address_to_resource
+ffffffff82093a28 r __ksymtab_of_pci_check_probe_only
+ffffffff82093a34 r __ksymtab_of_pci_dma_range_parser_init
+ffffffff82093a40 r __ksymtab_of_pci_find_child_device
+ffffffff82093a4c r __ksymtab_of_pci_get_devfn
+ffffffff82093a58 r __ksymtab_of_pci_get_max_link_speed
+ffffffff82093a64 r __ksymtab_of_pci_get_slot_power_limit
+ffffffff82093a70 r __ksymtab_of_pci_parse_bus_range
+ffffffff82093a7c r __ksymtab_of_pci_range_parser_init
+ffffffff82093a88 r __ksymtab_of_pci_range_parser_one
+ffffffff82093a94 r __ksymtab_of_phandle_args_to_fwspec
+ffffffff82093aa0 r __ksymtab_of_phandle_iterator_init
+ffffffff82093aac r __ksymtab_of_phandle_iterator_next
+ffffffff82093ab8 r __ksymtab_of_platform_default_populate
+ffffffff82093ac4 r __ksymtab_of_platform_depopulate
+ffffffff82093ad0 r __ksymtab_of_platform_device_destroy
+ffffffff82093adc r __ksymtab_of_platform_populate
+ffffffff82093ae8 r __ksymtab_of_prop_next_string
+ffffffff82093af4 r __ksymtab_of_prop_next_u32
+ffffffff82093b00 r __ksymtab_of_property_count_elems_of_size
+ffffffff82093b0c r __ksymtab_of_property_match_string
+ffffffff82093b18 r __ksymtab_of_property_read_string
+ffffffff82093b24 r __ksymtab_of_property_read_string_helper
+ffffffff82093b30 r __ksymtab_of_property_read_u32_index
+ffffffff82093b3c r __ksymtab_of_property_read_u64
+ffffffff82093b48 r __ksymtab_of_property_read_u64_index
+ffffffff82093b54 r __ksymtab_of_property_read_variable_u16_array
+ffffffff82093b60 r __ksymtab_of_property_read_variable_u32_array
+ffffffff82093b6c r __ksymtab_of_property_read_variable_u64_array
+ffffffff82093b78 r __ksymtab_of_property_read_variable_u8_array
+ffffffff82093b84 r __ksymtab_of_remove_property
+ffffffff82093b90 r __ksymtab_of_thermal_get_ntrips
+ffffffff82093b9c r __ksymtab_of_thermal_get_trip_points
+ffffffff82093ba8 r __ksymtab_of_thermal_is_trip_valid
+ffffffff82093bb4 r __ksymtab_offline_and_remove_memory
+ffffffff82093bc0 r __ksymtab_open_related_ns
+ffffffff82093bcc r __ksymtab_orderly_poweroff
+ffffffff82093bd8 r __ksymtab_orderly_reboot
+ffffffff82093be4 r __ksymtab_osc_cpc_flexible_adr_space_confirmed
+ffffffff82093bf0 r __ksymtab_osc_pc_lpi_support_confirmed
+ffffffff82093bfc r __ksymtab_osc_sb_native_usb4_control
+ffffffff82093c08 r __ksymtab_osc_sb_native_usb4_support_confirmed
+ffffffff82093c14 r __ksymtab_out_of_line_wait_on_bit_timeout
+ffffffff82093c20 r __ksymtab_page_cache_async_ra
+ffffffff82093c2c r __ksymtab_page_cache_ra_unbounded
+ffffffff82093c38 r __ksymtab_page_cache_sync_ra
+ffffffff82093c44 r __ksymtab_page_endio
+ffffffff82093c50 r __ksymtab_page_ext_get
+ffffffff82093c5c r __ksymtab_page_ext_put
+ffffffff82093c68 r __ksymtab_page_is_ram
+ffffffff82093c74 r __ksymtab_page_reporting_register
+ffffffff82093c80 r __ksymtab_page_reporting_unregister
+ffffffff82093c8c r __ksymtab_panic_reboot_mode
+ffffffff82093c98 r __ksymtab_panic_timeout
+ffffffff82093ca4 r __ksymtab_param_ops_bool_enable_only
+ffffffff82093cb0 r __ksymtab_param_set_bool_enable_only
+ffffffff82093cbc r __ksymtab_param_set_uint_minmax
+ffffffff82093cc8 r __ksymtab_paste_selection
+ffffffff82093cd4 r __ksymtab_pat_enabled
+ffffffff82093ce0 r __ksymtab_pat_pfn_immune_to_uc_mtrr
+ffffffff82093cec r __ksymtab_pcc_mbox_free_channel
+ffffffff82093cf8 r __ksymtab_pcc_mbox_request_channel
+ffffffff82093d04 r __ksymtab_pci_acpi_clear_companion_lookup_hook
+ffffffff82093d10 r __ksymtab_pci_acpi_set_companion_lookup_hook
+ffffffff82093d1c r __ksymtab_pci_add_dynid
+ffffffff82093d28 r __ksymtab_pci_aer_clear_nonfatal_status
+ffffffff82093d34 r __ksymtab_pci_assign_unassigned_bridge_resources
+ffffffff82093d40 r __ksymtab_pci_assign_unassigned_bus_resources
+ffffffff82093d4c r __ksymtab_pci_ats_disabled
+ffffffff82093d58 r __ksymtab_pci_ats_supported
+ffffffff82093d64 r __ksymtab_pci_bridge_secondary_bus_reset
+ffffffff82093d70 r __ksymtab_pci_bus_add_device
+ffffffff82093d7c r __ksymtab_pci_bus_max_busnr
+ffffffff82093d88 r __ksymtab_pci_bus_resource_n
+ffffffff82093d94 r __ksymtab_pci_cfg_access_lock
+ffffffff82093da0 r __ksymtab_pci_cfg_access_trylock
+ffffffff82093dac r __ksymtab_pci_cfg_access_unlock
+ffffffff82093db8 r __ksymtab_pci_check_and_mask_intx
+ffffffff82093dc4 r __ksymtab_pci_check_and_unmask_intx
+ffffffff82093dd0 r __ksymtab_pci_common_swizzle
+ffffffff82093ddc r __ksymtab_pci_create_root_bus
+ffffffff82093de8 r __ksymtab_pci_create_slot
+ffffffff82093df4 r __ksymtab_pci_d3cold_disable
+ffffffff82093e00 r __ksymtab_pci_d3cold_enable
+ffffffff82093e0c r __ksymtab_pci_destroy_slot
+ffffffff82093e18 r __ksymtab_pci_dev_lock
+ffffffff82093e24 r __ksymtab_pci_dev_run_wake
+ffffffff82093e30 r __ksymtab_pci_dev_trylock
+ffffffff82093e3c r __ksymtab_pci_dev_unlock
+ffffffff82093e48 r __ksymtab_pci_device_group
+ffffffff82093e54 r __ksymtab_pci_device_is_present
+ffffffff82093e60 r __ksymtab_pci_disable_ats
+ffffffff82093e6c r __ksymtab_pci_disable_pcie_error_reporting
+ffffffff82093e78 r __ksymtab_pci_disable_rom
+ffffffff82093e84 r __ksymtab_pci_disable_sriov
+ffffffff82093e90 r __ksymtab_pci_enable_ats
+ffffffff82093e9c r __ksymtab_pci_enable_pcie_error_reporting
+ffffffff82093ea8 r __ksymtab_pci_enable_rom
+ffffffff82093eb4 r __ksymtab_pci_enable_sriov
+ffffffff82093ec0 r __ksymtab_pci_epc_add_epf
+ffffffff82093ecc r __ksymtab_pci_epc_clear_bar
+ffffffff82093ed8 r __ksymtab_pci_epc_destroy
+ffffffff82093ee4 r __ksymtab_pci_epc_get
+ffffffff82093ef0 r __ksymtab_pci_epc_get_features
+ffffffff82093efc r __ksymtab_pci_epc_get_first_free_bar
+ffffffff82093f08 r __ksymtab_pci_epc_get_msi
+ffffffff82093f14 r __ksymtab_pci_epc_get_msix
+ffffffff82093f20 r __ksymtab_pci_epc_get_next_free_bar
+ffffffff82093f2c r __ksymtab_pci_epc_init_notify
+ffffffff82093f38 r __ksymtab_pci_epc_linkup
+ffffffff82093f44 r __ksymtab_pci_epc_map_addr
+ffffffff82093f50 r __ksymtab_pci_epc_map_msi_irq
+ffffffff82093f5c r __ksymtab_pci_epc_mem_alloc_addr
+ffffffff82093f68 r __ksymtab_pci_epc_mem_exit
+ffffffff82093f74 r __ksymtab_pci_epc_mem_free_addr
+ffffffff82093f80 r __ksymtab_pci_epc_mem_init
+ffffffff82093f8c r __ksymtab_pci_epc_multi_mem_init
+ffffffff82093f98 r __ksymtab_pci_epc_put
+ffffffff82093fa4 r __ksymtab_pci_epc_raise_irq
+ffffffff82093fb0 r __ksymtab_pci_epc_remove_epf
+ffffffff82093fbc r __ksymtab_pci_epc_set_bar
+ffffffff82093fc8 r __ksymtab_pci_epc_set_msi
+ffffffff82093fd4 r __ksymtab_pci_epc_set_msix
+ffffffff82093fe0 r __ksymtab_pci_epc_start
+ffffffff82093fec r __ksymtab_pci_epc_stop
+ffffffff82093ff8 r __ksymtab_pci_epc_unmap_addr
+ffffffff82094004 r __ksymtab_pci_epc_write_header
+ffffffff82094010 r __ksymtab_pci_epf_add_vepf
+ffffffff8209401c r __ksymtab_pci_epf_alloc_space
+ffffffff82094028 r __ksymtab_pci_epf_bind
+ffffffff82094034 r __ksymtab_pci_epf_create
+ffffffff82094040 r __ksymtab_pci_epf_destroy
+ffffffff8209404c r __ksymtab_pci_epf_free_space
+ffffffff82094058 r __ksymtab_pci_epf_remove_vepf
+ffffffff82094064 r __ksymtab_pci_epf_type_add_cfs
+ffffffff82094070 r __ksymtab_pci_epf_unbind
+ffffffff8209407c r __ksymtab_pci_epf_unregister_driver
+ffffffff82094088 r __ksymtab_pci_find_dvsec_capability
+ffffffff82094094 r __ksymtab_pci_find_ext_capability
+ffffffff820940a0 r __ksymtab_pci_find_host_bridge
+ffffffff820940ac r __ksymtab_pci_find_ht_capability
+ffffffff820940b8 r __ksymtab_pci_find_next_capability
+ffffffff820940c4 r __ksymtab_pci_find_next_ext_capability
+ffffffff820940d0 r __ksymtab_pci_find_next_ht_capability
+ffffffff820940dc r __ksymtab_pci_find_vsec_capability
+ffffffff820940e8 r __ksymtab_pci_flags
+ffffffff820940f4 r __ksymtab_pci_generic_config_read
+ffffffff82094100 r __ksymtab_pci_generic_config_read32
+ffffffff8209410c r __ksymtab_pci_generic_config_write
+ffffffff82094118 r __ksymtab_pci_generic_config_write32
+ffffffff82094124 r __ksymtab_pci_get_dsn
+ffffffff82094130 r __ksymtab_pci_host_probe
+ffffffff8209413c r __ksymtab_pci_hp_add_bridge
+ffffffff82094148 r __ksymtab_pci_ignore_hotplug
+ffffffff82094154 r __ksymtab_pci_intx
+ffffffff82094160 r __ksymtab_pci_iomap_wc
+ffffffff8209416c r __ksymtab_pci_iomap_wc_range
+ffffffff82094178 r __ksymtab_pci_ioremap_bar
+ffffffff82094184 r __ksymtab_pci_ioremap_wc_bar
+ffffffff82094190 r __ksymtab_pci_iov_get_pf_drvdata
+ffffffff8209419c r __ksymtab_pci_iov_vf_id
+ffffffff820941a8 r __ksymtab_pci_iov_virtfn_devfn
+ffffffff820941b4 r __ksymtab_pci_load_and_free_saved_state
+ffffffff820941c0 r __ksymtab_pci_load_saved_state
+ffffffff820941cc r __ksymtab_pci_lock_rescan_remove
+ffffffff820941d8 r __ksymtab_pci_msi_create_irq_domain
+ffffffff820941e4 r __ksymtab_pci_msi_mask_irq
+ffffffff820941f0 r __ksymtab_pci_msi_prepare
+ffffffff820941fc r __ksymtab_pci_msi_unmask_irq
+ffffffff82094208 r __ksymtab_pci_num_vf
+ffffffff82094214 r __ksymtab_pci_pio_to_address
+ffffffff82094220 r __ksymtab_pci_platform_power_transition
+ffffffff8209422c r __ksymtab_pci_power_names
+ffffffff82094238 r __ksymtab_pci_pr3_present
+ffffffff82094244 r __ksymtab_pci_probe_reset_bus
+ffffffff82094250 r __ksymtab_pci_probe_reset_slot
+ffffffff8209425c r __ksymtab_pci_remove_root_bus
+ffffffff82094268 r __ksymtab_pci_rescan_bus
+ffffffff82094274 r __ksymtab_pci_reset_bus
+ffffffff82094280 r __ksymtab_pci_reset_function
+ffffffff8209428c r __ksymtab_pci_reset_function_locked
+ffffffff82094298 r __ksymtab_pci_restore_msi_state
+ffffffff820942a4 r __ksymtab_pci_scan_child_bus
+ffffffff820942b0 r __ksymtab_pci_set_cacheline_size
+ffffffff820942bc r __ksymtab_pci_set_host_bridge_release
+ffffffff820942c8 r __ksymtab_pci_set_pcie_reset_state
+ffffffff820942d4 r __ksymtab_pci_slots_kset
+ffffffff820942e0 r __ksymtab_pci_speed_string
+ffffffff820942ec r __ksymtab_pci_sriov_configure_simple
+ffffffff820942f8 r __ksymtab_pci_sriov_get_totalvfs
+ffffffff82094304 r __ksymtab_pci_sriov_set_totalvfs
+ffffffff82094310 r __ksymtab_pci_status_get_and_clear_errors
+ffffffff8209431c r __ksymtab_pci_stop_and_remove_bus_device_locked
+ffffffff82094328 r __ksymtab_pci_stop_root_bus
+ffffffff82094334 r __ksymtab_pci_store_saved_state
+ffffffff82094340 r __ksymtab_pci_try_reset_function
+ffffffff8209434c r __ksymtab_pci_unlock_rescan_remove
+ffffffff82094358 r __ksymtab_pci_user_read_config_byte
+ffffffff82094364 r __ksymtab_pci_user_read_config_dword
+ffffffff82094370 r __ksymtab_pci_user_read_config_word
+ffffffff8209437c r __ksymtab_pci_user_write_config_byte
+ffffffff82094388 r __ksymtab_pci_user_write_config_dword
+ffffffff82094394 r __ksymtab_pci_user_write_config_word
+ffffffff820943a0 r __ksymtab_pci_vfs_assigned
+ffffffff820943ac r __ksymtab_pci_vpd_alloc
+ffffffff820943b8 r __ksymtab_pci_vpd_check_csum
+ffffffff820943c4 r __ksymtab_pci_vpd_find_id_string
+ffffffff820943d0 r __ksymtab_pci_vpd_find_ro_info_keyword
+ffffffff820943dc r __ksymtab_pci_walk_bus
+ffffffff820943e8 r __ksymtab_pci_write_msi_msg
+ffffffff820943f4 r __ksymtab_pcibios_scan_specific_bus
+ffffffff82094400 r __ksymtab_pcie_aspm_enabled
+ffffffff8209440c r __ksymtab_pcie_bus_configure_settings
+ffffffff82094418 r __ksymtab_pcie_flr
+ffffffff82094424 r __ksymtab_pcie_link_speed
+ffffffff82094430 r __ksymtab_pcie_port_bus_type
+ffffffff8209443c r __ksymtab_pcie_port_find_device
+ffffffff82094448 r __ksymtab_pcie_reset_flr
+ffffffff82094454 r __ksymtab_pcie_update_link_speed
+ffffffff82094460 r __ksymtab_pcpu_nr_pages
+ffffffff8209446c r __ksymtab_peernet2id_alloc
+ffffffff82094478 r __ksymtab_per_cpu_ptr_to_phys
+ffffffff82094484 r __ksymtab_percpu_down_write
+ffffffff82094490 r __ksymtab_percpu_free_rwsem
+ffffffff8209449c r __ksymtab_percpu_is_read_locked
+ffffffff820944a8 r __ksymtab_percpu_ref_exit
+ffffffff820944b4 r __ksymtab_percpu_ref_init
+ffffffff820944c0 r __ksymtab_percpu_ref_is_zero
+ffffffff820944cc r __ksymtab_percpu_ref_kill_and_confirm
+ffffffff820944d8 r __ksymtab_percpu_ref_reinit
+ffffffff820944e4 r __ksymtab_percpu_ref_resurrect
+ffffffff820944f0 r __ksymtab_percpu_ref_switch_to_atomic
+ffffffff820944fc r __ksymtab_percpu_ref_switch_to_atomic_sync
+ffffffff82094508 r __ksymtab_percpu_ref_switch_to_percpu
+ffffffff82094514 r __ksymtab_percpu_up_write
+ffffffff82094520 r __ksymtab_perf_assign_events
+ffffffff8209452c r __ksymtab_perf_aux_output_begin
+ffffffff82094538 r __ksymtab_perf_aux_output_end
+ffffffff82094544 r __ksymtab_perf_aux_output_flag
+ffffffff82094550 r __ksymtab_perf_aux_output_skip
+ffffffff8209455c r __ksymtab_perf_event_addr_filters_sync
+ffffffff82094568 r __ksymtab_perf_event_create_kernel_counter
+ffffffff82094574 r __ksymtab_perf_event_disable
+ffffffff82094580 r __ksymtab_perf_event_enable
+ffffffff8209458c r __ksymtab_perf_event_pause
+ffffffff82094598 r __ksymtab_perf_event_period
+ffffffff820945a4 r __ksymtab_perf_event_read_local
+ffffffff820945b0 r __ksymtab_perf_event_read_value
+ffffffff820945bc r __ksymtab_perf_event_refresh
+ffffffff820945c8 r __ksymtab_perf_event_release_kernel
+ffffffff820945d4 r __ksymtab_perf_event_sysfs_show
+ffffffff820945e0 r __ksymtab_perf_event_update_userpage
+ffffffff820945ec r __ksymtab_perf_get_aux
+ffffffff820945f8 r __ksymtab_perf_get_hw_event_config
+ffffffff82094604 r __ksymtab_perf_get_x86_pmu_capability
+ffffffff82094610 r __ksymtab_perf_guest_get_msrs
+ffffffff8209461c r __ksymtab_perf_msr_probe
+ffffffff82094628 r __ksymtab_perf_pmu_migrate_context
+ffffffff82094634 r __ksymtab_perf_pmu_register
+ffffffff82094640 r __ksymtab_perf_pmu_unregister
+ffffffff8209464c r __ksymtab_perf_swevent_get_recursion_context
+ffffffff82094658 r __ksymtab_perf_tp_event
+ffffffff82094664 r __ksymtab_perf_trace_buf_alloc
+ffffffff82094670 r __ksymtab_perf_trace_run_bpf_submit
+ffffffff8209467c r __ksymtab_pernet_ops_rwsem
+ffffffff82094688 r __ksymtab_pfn_to_online_page
+ffffffff82094694 r __ksymtab_pgprot_writecombine
+ffffffff820946a0 r __ksymtab_pgprot_writethrough
+ffffffff820946ac r __ksymtab_pick_highest_pushable_task
+ffffffff820946b8 r __ksymtab_pick_migrate_task
+ffffffff820946c4 r __ksymtab_pid_nr_ns
+ffffffff820946d0 r __ksymtab_pid_vnr
+ffffffff820946dc r __ksymtab_pin_user_pages_fast
+ffffffff820946e8 r __ksymtab_pin_user_pages_fast_only
+ffffffff820946f4 r __ksymtab_ping_bind
+ffffffff82094700 r __ksymtab_ping_close
+ffffffff8209470c r __ksymtab_ping_common_sendmsg
+ffffffff82094718 r __ksymtab_ping_err
+ffffffff82094724 r __ksymtab_ping_get_port
+ffffffff82094730 r __ksymtab_ping_getfrag
+ffffffff8209473c r __ksymtab_ping_hash
+ffffffff82094748 r __ksymtab_ping_init_sock
+ffffffff82094754 r __ksymtab_ping_queue_rcv_skb
+ffffffff82094760 r __ksymtab_ping_rcv
+ffffffff8209476c r __ksymtab_ping_recvmsg
+ffffffff82094778 r __ksymtab_ping_seq_next
+ffffffff82094784 r __ksymtab_ping_seq_start
+ffffffff82094790 r __ksymtab_ping_seq_stop
+ffffffff8209479c r __ksymtab_ping_unhash
+ffffffff820947a8 r __ksymtab_pingv6_ops
+ffffffff820947b4 r __ksymtab_pingv6_prot
+ffffffff820947c0 r __ksymtab_pktgen_xfrm_outer_mode_output
+ffffffff820947cc r __ksymtab_platform_add_devices
+ffffffff820947d8 r __ksymtab_platform_bus
+ffffffff820947e4 r __ksymtab_platform_bus_type
+ffffffff820947f0 r __ksymtab_platform_device_add
+ffffffff820947fc r __ksymtab_platform_device_add_data
+ffffffff82094808 r __ksymtab_platform_device_add_resources
+ffffffff82094814 r __ksymtab_platform_device_alloc
+ffffffff82094820 r __ksymtab_platform_device_del
+ffffffff8209482c r __ksymtab_platform_device_put
+ffffffff82094838 r __ksymtab_platform_device_register
+ffffffff82094844 r __ksymtab_platform_device_register_full
+ffffffff82094850 r __ksymtab_platform_device_unregister
+ffffffff8209485c r __ksymtab_platform_driver_unregister
+ffffffff82094868 r __ksymtab_platform_find_device_by_driver
+ffffffff82094874 r __ksymtab_platform_get_irq
+ffffffff82094880 r __ksymtab_platform_get_irq_byname
+ffffffff8209488c r __ksymtab_platform_get_irq_byname_optional
+ffffffff82094898 r __ksymtab_platform_get_irq_optional
+ffffffff820948a4 r __ksymtab_platform_get_mem_or_io
+ffffffff820948b0 r __ksymtab_platform_get_resource
+ffffffff820948bc r __ksymtab_platform_get_resource_byname
+ffffffff820948c8 r __ksymtab_platform_irq_count
+ffffffff820948d4 r __ksymtab_platform_irqchip_probe
+ffffffff820948e0 r __ksymtab_platform_msi_create_irq_domain
+ffffffff820948ec r __ksymtab_platform_msi_domain_alloc_irqs
+ffffffff820948f8 r __ksymtab_platform_msi_domain_free_irqs
+ffffffff82094904 r __ksymtab_platform_thermal_package_notify
+ffffffff82094910 r __ksymtab_platform_thermal_package_rate_control
+ffffffff8209491c r __ksymtab_platform_unregister_drivers
+ffffffff82094928 r __ksymtab_play_idle_precise
+ffffffff82094934 r __ksymtab_pm_generic_freeze
+ffffffff82094940 r __ksymtab_pm_generic_freeze_late
+ffffffff8209494c r __ksymtab_pm_generic_freeze_noirq
+ffffffff82094958 r __ksymtab_pm_generic_poweroff
+ffffffff82094964 r __ksymtab_pm_generic_poweroff_late
+ffffffff82094970 r __ksymtab_pm_generic_poweroff_noirq
+ffffffff8209497c r __ksymtab_pm_generic_restore
+ffffffff82094988 r __ksymtab_pm_generic_restore_early
+ffffffff82094994 r __ksymtab_pm_generic_restore_noirq
+ffffffff820949a0 r __ksymtab_pm_generic_resume
+ffffffff820949ac r __ksymtab_pm_generic_resume_early
+ffffffff820949b8 r __ksymtab_pm_generic_resume_noirq
+ffffffff820949c4 r __ksymtab_pm_generic_runtime_resume
+ffffffff820949d0 r __ksymtab_pm_generic_runtime_suspend
+ffffffff820949dc r __ksymtab_pm_generic_suspend
+ffffffff820949e8 r __ksymtab_pm_generic_suspend_late
+ffffffff820949f4 r __ksymtab_pm_generic_suspend_noirq
+ffffffff82094a00 r __ksymtab_pm_generic_thaw
+ffffffff82094a0c r __ksymtab_pm_generic_thaw_early
+ffffffff82094a18 r __ksymtab_pm_generic_thaw_noirq
+ffffffff82094a24 r __ksymtab_pm_get_active_wakeup_sources
+ffffffff82094a30 r __ksymtab_pm_print_active_wakeup_sources
+ffffffff82094a3c r __ksymtab_pm_relax
+ffffffff82094a48 r __ksymtab_pm_runtime_allow
+ffffffff82094a54 r __ksymtab_pm_runtime_autosuspend_expiration
+ffffffff82094a60 r __ksymtab_pm_runtime_barrier
+ffffffff82094a6c r __ksymtab_pm_runtime_enable
+ffffffff82094a78 r __ksymtab_pm_runtime_forbid
+ffffffff82094a84 r __ksymtab_pm_runtime_force_resume
+ffffffff82094a90 r __ksymtab_pm_runtime_force_suspend
+ffffffff82094a9c r __ksymtab_pm_runtime_get_if_active
+ffffffff82094aa8 r __ksymtab_pm_runtime_irq_safe
+ffffffff82094ab4 r __ksymtab_pm_runtime_no_callbacks
+ffffffff82094ac0 r __ksymtab_pm_runtime_set_autosuspend_delay
+ffffffff82094acc r __ksymtab_pm_runtime_set_memalloc_noio
+ffffffff82094ad8 r __ksymtab_pm_runtime_suspended_time
+ffffffff82094ae4 r __ksymtab_pm_schedule_suspend
+ffffffff82094af0 r __ksymtab_pm_stay_awake
+ffffffff82094afc r __ksymtab_pm_suspend_default_s2idle
+ffffffff82094b08 r __ksymtab_pm_suspend_global_flags
+ffffffff82094b14 r __ksymtab_pm_suspend_target_state
+ffffffff82094b20 r __ksymtab_pm_system_wakeup
+ffffffff82094b2c r __ksymtab_pm_wakeup_dev_event
+ffffffff82094b38 r __ksymtab_pm_wakeup_pending
+ffffffff82094b44 r __ksymtab_pm_wakeup_ws_event
+ffffffff82094b50 r __ksymtab_pm_wq
+ffffffff82094b5c r __ksymtab_policy_has_boost_freq
+ffffffff82094b68 r __ksymtab_poll_state_synchronize_rcu
+ffffffff82094b74 r __ksymtab_poll_state_synchronize_rcu_full
+ffffffff82094b80 r __ksymtab_poll_state_synchronize_srcu
+ffffffff82094b8c r __ksymtab_poly1305_final_generic
+ffffffff82094b98 r __ksymtab_poly1305_init_generic
+ffffffff82094ba4 r __ksymtab_poly1305_update_generic
+ffffffff82094bb0 r __ksymtab_polyval_mul_non4k
+ffffffff82094bbc r __ksymtab_polyval_update_non4k
+ffffffff82094bc8 r __ksymtab_posix_acl_access_xattr_handler
+ffffffff82094bd4 r __ksymtab_posix_acl_clone
+ffffffff82094be0 r __ksymtab_posix_acl_create
+ffffffff82094bec r __ksymtab_posix_acl_default_xattr_handler
+ffffffff82094bf8 r __ksymtab_posix_clock_register
+ffffffff82094c04 r __ksymtab_posix_clock_unregister
+ffffffff82094c10 r __ksymtab_power_group_name
+ffffffff82094c1c r __ksymtab_power_supply_am_i_supplied
+ffffffff82094c28 r __ksymtab_power_supply_batinfo_ocv2cap
+ffffffff82094c34 r __ksymtab_power_supply_battery_bti_in_range
+ffffffff82094c40 r __ksymtab_power_supply_changed
+ffffffff82094c4c r __ksymtab_power_supply_charge_behaviour_parse
+ffffffff82094c58 r __ksymtab_power_supply_charge_behaviour_show
+ffffffff82094c64 r __ksymtab_power_supply_class
+ffffffff82094c70 r __ksymtab_power_supply_external_power_changed
+ffffffff82094c7c r __ksymtab_power_supply_find_ocv2cap_table
+ffffffff82094c88 r __ksymtab_power_supply_get_battery_info
+ffffffff82094c94 r __ksymtab_power_supply_get_by_name
+ffffffff82094ca0 r __ksymtab_power_supply_get_by_phandle
+ffffffff82094cac r __ksymtab_power_supply_get_by_phandle_array
+ffffffff82094cb8 r __ksymtab_power_supply_get_drvdata
+ffffffff82094cc4 r __ksymtab_power_supply_get_maintenance_charging_setting
+ffffffff82094cd0 r __ksymtab_power_supply_get_property
+ffffffff82094cdc r __ksymtab_power_supply_get_property_from_supplier
+ffffffff82094ce8 r __ksymtab_power_supply_is_system_supplied
+ffffffff82094cf4 r __ksymtab_power_supply_notifier
+ffffffff82094d00 r __ksymtab_power_supply_ocv2cap_simple
+ffffffff82094d0c r __ksymtab_power_supply_powers
+ffffffff82094d18 r __ksymtab_power_supply_property_is_writeable
+ffffffff82094d24 r __ksymtab_power_supply_put
+ffffffff82094d30 r __ksymtab_power_supply_put_battery_info
+ffffffff82094d3c r __ksymtab_power_supply_reg_notifier
+ffffffff82094d48 r __ksymtab_power_supply_register
+ffffffff82094d54 r __ksymtab_power_supply_register_no_ws
+ffffffff82094d60 r __ksymtab_power_supply_set_battery_charged
+ffffffff82094d6c r __ksymtab_power_supply_set_property
+ffffffff82094d78 r __ksymtab_power_supply_temp2resist_simple
+ffffffff82094d84 r __ksymtab_power_supply_unreg_notifier
+ffffffff82094d90 r __ksymtab_power_supply_unregister
+ffffffff82094d9c r __ksymtab_power_supply_vbat2ri
+ffffffff82094da8 r __ksymtab_preempt_model_full
+ffffffff82094db4 r __ksymtab_preempt_model_none
+ffffffff82094dc0 r __ksymtab_preempt_model_voluntary
+ffffffff82094dcc r __ksymtab_preempt_schedule_notrace
+ffffffff82094dd8 r __ksymtab_proc_create_net_data
+ffffffff82094de4 r __ksymtab_proc_create_net_data_write
+ffffffff82094df0 r __ksymtab_proc_create_net_single
+ffffffff82094dfc r __ksymtab_proc_create_net_single_write
+ffffffff82094e08 r __ksymtab_proc_dou8vec_minmax
+ffffffff82094e14 r __ksymtab_proc_douintvec_minmax
+ffffffff82094e20 r __ksymtab_proc_get_parent_data
+ffffffff82094e2c r __ksymtab_proc_mkdir_data
+ffffffff82094e38 r __ksymtab_prof_on
+ffffffff82094e44 r __ksymtab_profile_event_register
+ffffffff82094e50 r __ksymtab_profile_event_unregister
+ffffffff82094e5c r __ksymtab_profile_hits
+ffffffff82094e68 r __ksymtab_property_entries_dup
+ffffffff82094e74 r __ksymtab_property_entries_free
+ffffffff82094e80 r __ksymtab_psi_memstall_enter
+ffffffff82094e8c r __ksymtab_psi_memstall_leave
+ffffffff82094e98 r __ksymtab_pskb_put
+ffffffff82094ea4 r __ksymtab_put_dax
+ffffffff82094eb0 r __ksymtab_put_device
+ffffffff82094ebc r __ksymtab_put_io_context
+ffffffff82094ec8 r __ksymtab_put_iova_domain
+ffffffff82094ed4 r __ksymtab_put_itimerspec64
+ffffffff82094ee0 r __ksymtab_put_old_itimerspec32
+ffffffff82094eec r __ksymtab_put_old_timespec32
+ffffffff82094ef8 r __ksymtab_put_pid
+ffffffff82094f04 r __ksymtab_put_timespec64
+ffffffff82094f10 r __ksymtab_putback_movable_pages
+ffffffff82094f1c r __ksymtab_pv_info
+ffffffff82094f28 r __ksymtab_pvclock_get_pvti_cpu0_va
+ffffffff82094f34 r __ksymtab_pvclock_gtod_register_notifier
+ffffffff82094f40 r __ksymtab_pvclock_gtod_unregister_notifier
+ffffffff82094f4c r __ksymtab_queue_work_node
+ffffffff82094f58 r __ksymtab_radix_tree_preloads
+ffffffff82094f64 r __ksymtab_random_get_entropy_fallback
+ffffffff82094f70 r __ksymtab_ras_userspace_consumers
+ffffffff82094f7c r __ksymtab_raw_abort
+ffffffff82094f88 r __ksymtab_raw_hash_sk
+ffffffff82094f94 r __ksymtab_raw_notifier_call_chain
+ffffffff82094fa0 r __ksymtab_raw_notifier_call_chain_robust
+ffffffff82094fac r __ksymtab_raw_notifier_chain_register
+ffffffff82094fb8 r __ksymtab_raw_notifier_chain_unregister
+ffffffff82094fc4 r __ksymtab_raw_seq_next
+ffffffff82094fd0 r __ksymtab_raw_seq_start
+ffffffff82094fdc r __ksymtab_raw_seq_stop
+ffffffff82094fe8 r __ksymtab_raw_spin_rq_lock_nested
+ffffffff82094ff4 r __ksymtab_raw_spin_rq_unlock
+ffffffff82095000 r __ksymtab_raw_unhash_sk
+ffffffff8209500c r __ksymtab_raw_v4_hashinfo
+ffffffff82095018 r __ksymtab_raw_v4_match
+ffffffff82095024 r __ksymtab_raw_v6_hashinfo
+ffffffff82095030 r __ksymtab_raw_v6_match
+ffffffff8209503c r __ksymtab_rcu_barrier
+ffffffff82095048 r __ksymtab_rcu_barrier_tasks
+ffffffff82095054 r __ksymtab_rcu_bind_current_to_nocb
+ffffffff82095060 r __ksymtab_rcu_check_boost_fail
+ffffffff8209506c r __ksymtab_rcu_cpu_stall_suppress
+ffffffff82095078 r __ksymtab_rcu_cpu_stall_suppress_at_boot
+ffffffff82095084 r __ksymtab_rcu_exp_batches_completed
+ffffffff82095090 r __ksymtab_rcu_exp_jiffies_till_stall_check
+ffffffff8209509c r __ksymtab_rcu_expedite_gp
+ffffffff820950a8 r __ksymtab_rcu_force_quiescent_state
+ffffffff820950b4 r __ksymtab_rcu_fwd_progress_check
+ffffffff820950c0 r __ksymtab_rcu_get_gp_kthreads_prio
+ffffffff820950cc r __ksymtab_rcu_get_gp_seq
+ffffffff820950d8 r __ksymtab_rcu_gp_is_expedited
+ffffffff820950e4 r __ksymtab_rcu_gp_is_normal
+ffffffff820950f0 r __ksymtab_rcu_gp_set_torture_wait
+ffffffff820950fc r __ksymtab_rcu_gp_slow_register
+ffffffff82095108 r __ksymtab_rcu_gp_slow_unregister
+ffffffff82095114 r __ksymtab_rcu_inkernel_boot_has_ended
+ffffffff82095120 r __ksymtab_rcu_is_watching
+ffffffff8209512c r __ksymtab_rcu_jiffies_till_stall_check
+ffffffff82095138 r __ksymtab_rcu_momentary_dyntick_idle
+ffffffff82095144 r __ksymtab_rcu_nocb_cpu_deoffload
+ffffffff82095150 r __ksymtab_rcu_nocb_cpu_offload
+ffffffff8209515c r __ksymtab_rcu_nocb_flush_deferred_wakeup
+ffffffff82095168 r __ksymtab_rcu_note_context_switch
+ffffffff82095174 r __ksymtab_rcu_scheduler_active
+ffffffff82095180 r __ksymtab_rcu_unexpedite_gp
+ffffffff8209518c r __ksymtab_rcutorture_get_gp_data
+ffffffff82095198 r __ksymtab_rcuwait_wake_up
+ffffffff820951a4 r __ksymtab_readahead_gfp_mask
+ffffffff820951b0 r __ksymtab_reboot_mode
+ffffffff820951bc r __ksymtab_rebuild_sched_domains
+ffffffff820951c8 r __ksymtab_receive_fd
+ffffffff820951d4 r __ksymtab_reclaim_shmem_address_space
+ffffffff820951e0 r __ksymtab_regcache_cache_bypass
+ffffffff820951ec r __ksymtab_regcache_cache_only
+ffffffff820951f8 r __ksymtab_regcache_drop_region
+ffffffff82095204 r __ksymtab_regcache_mark_dirty
+ffffffff82095210 r __ksymtab_regcache_sync
+ffffffff8209521c r __ksymtab_regcache_sync_region
+ffffffff82095228 r __ksymtab_region_intersects
+ffffffff82095234 r __ksymtab_register_acpi_bus_type
+ffffffff82095240 r __ksymtab_register_die_notifier
+ffffffff8209524c r __ksymtab_register_firmware_config_sysctl
+ffffffff82095258 r __ksymtab_register_ftrace_export
+ffffffff82095264 r __ksymtab_register_keyboard_notifier
+ffffffff82095270 r __ksymtab_register_net_sysctl
+ffffffff8209527c r __ksymtab_register_netevent_notifier
+ffffffff82095288 r __ksymtab_register_nvdimm_pmu
+ffffffff82095294 r __ksymtab_register_oom_notifier
+ffffffff820952a0 r __ksymtab_register_pernet_device
+ffffffff820952ac r __ksymtab_register_pernet_subsys
+ffffffff820952b8 r __ksymtab_register_platform_power_off
+ffffffff820952c4 r __ksymtab_register_pm_notifier
+ffffffff820952d0 r __ksymtab_register_sys_off_handler
+ffffffff820952dc r __ksymtab_register_syscore_ops
+ffffffff820952e8 r __ksymtab_register_trace_event
+ffffffff820952f4 r __ksymtab_register_tracepoint_module_notifier
+ffffffff82095300 r __ksymtab_register_user_hw_breakpoint
+ffffffff8209530c r __ksymtab_register_virtio_device
+ffffffff82095318 r __ksymtab_register_virtio_driver
+ffffffff82095324 r __ksymtab_register_vmap_purge_notifier
+ffffffff82095330 r __ksymtab_register_vt_notifier
+ffffffff8209533c r __ksymtab_register_wide_hw_breakpoint
+ffffffff82095348 r __ksymtab_regmap_async_complete
+ffffffff82095354 r __ksymtab_regmap_async_complete_cb
+ffffffff82095360 r __ksymtab_regmap_attach_dev
+ffffffff8209536c r __ksymtab_regmap_bulk_read
+ffffffff82095378 r __ksymtab_regmap_bulk_write
+ffffffff82095384 r __ksymtab_regmap_can_raw_write
+ffffffff82095390 r __ksymtab_regmap_check_range_table
+ffffffff8209539c r __ksymtab_regmap_exit
+ffffffff820953a8 r __ksymtab_regmap_field_alloc
+ffffffff820953b4 r __ksymtab_regmap_field_bulk_alloc
+ffffffff820953c0 r __ksymtab_regmap_field_bulk_free
+ffffffff820953cc r __ksymtab_regmap_field_free
+ffffffff820953d8 r __ksymtab_regmap_field_read
+ffffffff820953e4 r __ksymtab_regmap_field_test_bits
+ffffffff820953f0 r __ksymtab_regmap_field_update_bits_base
+ffffffff820953fc r __ksymtab_regmap_fields_read
+ffffffff82095408 r __ksymtab_regmap_fields_update_bits_base
+ffffffff82095414 r __ksymtab_regmap_get_device
+ffffffff82095420 r __ksymtab_regmap_get_max_register
+ffffffff8209542c r __ksymtab_regmap_get_raw_read_max
+ffffffff82095438 r __ksymtab_regmap_get_raw_write_max
+ffffffff82095444 r __ksymtab_regmap_get_reg_stride
+ffffffff82095450 r __ksymtab_regmap_get_val_bytes
+ffffffff8209545c r __ksymtab_regmap_get_val_endian
+ffffffff82095468 r __ksymtab_regmap_mmio_attach_clk
+ffffffff82095474 r __ksymtab_regmap_mmio_detach_clk
+ffffffff82095480 r __ksymtab_regmap_multi_reg_write
+ffffffff8209548c r __ksymtab_regmap_multi_reg_write_bypassed
+ffffffff82095498 r __ksymtab_regmap_noinc_read
+ffffffff820954a4 r __ksymtab_regmap_noinc_write
+ffffffff820954b0 r __ksymtab_regmap_parse_val
+ffffffff820954bc r __ksymtab_regmap_raw_read
+ffffffff820954c8 r __ksymtab_regmap_raw_write
+ffffffff820954d4 r __ksymtab_regmap_raw_write_async
+ffffffff820954e0 r __ksymtab_regmap_read
+ffffffff820954ec r __ksymtab_regmap_reg_in_ranges
+ffffffff820954f8 r __ksymtab_regmap_register_patch
+ffffffff82095504 r __ksymtab_regmap_reinit_cache
+ffffffff82095510 r __ksymtab_regmap_test_bits
+ffffffff8209551c r __ksymtab_regmap_update_bits_base
+ffffffff82095528 r __ksymtab_regmap_write
+ffffffff82095534 r __ksymtab_regmap_write_async
+ffffffff82095540 r __ksymtab_remove_cpu
+ffffffff8209554c r __ksymtab_remove_memory
+ffffffff82095558 r __ksymtab_remove_resource
+ffffffff82095564 r __ksymtab_replace_page_cache_page
+ffffffff82095570 r __ksymtab_report_iommu_fault
+ffffffff8209557c r __ksymtab_request_any_context_irq
+ffffffff82095588 r __ksymtab_request_firmware_direct
+ffffffff82095594 r __ksymtab_resched_curr
+ffffffff820955a0 r __ksymtab_reserve_iova
+ffffffff820955ac r __ksymtab_reset_hung_task_detector
+ffffffff820955b8 r __ksymtab_restore_online_page_callback
+ffffffff820955c4 r __ksymtab_rhashtable_destroy
+ffffffff820955d0 r __ksymtab_rhashtable_free_and_destroy
+ffffffff820955dc r __ksymtab_rhashtable_init
+ffffffff820955e8 r __ksymtab_rhashtable_insert_slow
+ffffffff820955f4 r __ksymtab_rhashtable_walk_enter
+ffffffff82095600 r __ksymtab_rhashtable_walk_exit
+ffffffff8209560c r __ksymtab_rhashtable_walk_next
+ffffffff82095618 r __ksymtab_rhashtable_walk_peek
+ffffffff82095624 r __ksymtab_rhashtable_walk_start_check
+ffffffff82095630 r __ksymtab_rhashtable_walk_stop
+ffffffff8209563c r __ksymtab_rhltable_init
+ffffffff82095648 r __ksymtab_rht_bucket_nested
+ffffffff82095654 r __ksymtab_rht_bucket_nested_insert
+ffffffff82095660 r __ksymtab_ring_buffer_alloc_read_page
+ffffffff8209566c r __ksymtab_ring_buffer_bytes_cpu
+ffffffff82095678 r __ksymtab_ring_buffer_change_overwrite
+ffffffff82095684 r __ksymtab_ring_buffer_commit_overrun_cpu
+ffffffff82095690 r __ksymtab_ring_buffer_consume
+ffffffff8209569c r __ksymtab_ring_buffer_discard_commit
+ffffffff820956a8 r __ksymtab_ring_buffer_dropped_events_cpu
+ffffffff820956b4 r __ksymtab_ring_buffer_empty
+ffffffff820956c0 r __ksymtab_ring_buffer_empty_cpu
+ffffffff820956cc r __ksymtab_ring_buffer_entries
+ffffffff820956d8 r __ksymtab_ring_buffer_entries_cpu
+ffffffff820956e4 r __ksymtab_ring_buffer_event_data
+ffffffff820956f0 r __ksymtab_ring_buffer_event_length
+ffffffff820956fc r __ksymtab_ring_buffer_free
+ffffffff82095708 r __ksymtab_ring_buffer_free_read_page
+ffffffff82095714 r __ksymtab_ring_buffer_iter_advance
+ffffffff82095720 r __ksymtab_ring_buffer_iter_dropped
+ffffffff8209572c r __ksymtab_ring_buffer_iter_empty
+ffffffff82095738 r __ksymtab_ring_buffer_iter_peek
+ffffffff82095744 r __ksymtab_ring_buffer_iter_reset
+ffffffff82095750 r __ksymtab_ring_buffer_lock_reserve
+ffffffff8209575c r __ksymtab_ring_buffer_normalize_time_stamp
+ffffffff82095768 r __ksymtab_ring_buffer_oldest_event_ts
+ffffffff82095774 r __ksymtab_ring_buffer_overrun_cpu
+ffffffff82095780 r __ksymtab_ring_buffer_overruns
+ffffffff8209578c r __ksymtab_ring_buffer_peek
+ffffffff82095798 r __ksymtab_ring_buffer_read_events_cpu
+ffffffff820957a4 r __ksymtab_ring_buffer_read_finish
+ffffffff820957b0 r __ksymtab_ring_buffer_read_page
+ffffffff820957bc r __ksymtab_ring_buffer_read_prepare
+ffffffff820957c8 r __ksymtab_ring_buffer_read_prepare_sync
+ffffffff820957d4 r __ksymtab_ring_buffer_read_start
+ffffffff820957e0 r __ksymtab_ring_buffer_record_disable
+ffffffff820957ec r __ksymtab_ring_buffer_record_disable_cpu
+ffffffff820957f8 r __ksymtab_ring_buffer_record_enable
+ffffffff82095804 r __ksymtab_ring_buffer_record_enable_cpu
+ffffffff82095810 r __ksymtab_ring_buffer_record_off
+ffffffff8209581c r __ksymtab_ring_buffer_record_on
+ffffffff82095828 r __ksymtab_ring_buffer_reset
+ffffffff82095834 r __ksymtab_ring_buffer_reset_cpu
+ffffffff82095840 r __ksymtab_ring_buffer_resize
+ffffffff8209584c r __ksymtab_ring_buffer_size
+ffffffff82095858 r __ksymtab_ring_buffer_time_stamp
+ffffffff82095864 r __ksymtab_ring_buffer_unlock_commit
+ffffffff82095870 r __ksymtab_ring_buffer_write
+ffffffff8209587c r __ksymtab_root_device_unregister
+ffffffff82095888 r __ksymtab_root_task_group
+ffffffff82095894 r __ksymtab_round_jiffies
+ffffffff820958a0 r __ksymtab_round_jiffies_relative
+ffffffff820958ac r __ksymtab_round_jiffies_up
+ffffffff820958b8 r __ksymtab_round_jiffies_up_relative
+ffffffff820958c4 r __ksymtab_rt_mutex_lock
+ffffffff820958d0 r __ksymtab_rt_mutex_lock_interruptible
+ffffffff820958dc r __ksymtab_rt_mutex_lock_killable
+ffffffff820958e8 r __ksymtab_rt_mutex_trylock
+ffffffff820958f4 r __ksymtab_rt_mutex_unlock
+ffffffff82095900 r __ksymtab_rtc_alarm_irq_enable
+ffffffff8209590c r __ksymtab_rtc_class_close
+ffffffff82095918 r __ksymtab_rtc_class_open
+ffffffff82095924 r __ksymtab_rtc_initialize_alarm
+ffffffff82095930 r __ksymtab_rtc_ktime_to_tm
+ffffffff8209593c r __ksymtab_rtc_read_alarm
+ffffffff82095948 r __ksymtab_rtc_read_time
+ffffffff82095954 r __ksymtab_rtc_set_alarm
+ffffffff82095960 r __ksymtab_rtc_set_time
+ffffffff8209596c r __ksymtab_rtc_tm_to_ktime
+ffffffff82095978 r __ksymtab_rtc_update_irq
+ffffffff82095984 r __ksymtab_rtc_update_irq_enable
+ffffffff82095990 r __ksymtab_rtm_getroute_parse_ip_proto
+ffffffff8209599c r __ksymtab_rtnl_af_register
+ffffffff820959a8 r __ksymtab_rtnl_af_unregister
+ffffffff820959b4 r __ksymtab_rtnl_delete_link
+ffffffff820959c0 r __ksymtab_rtnl_get_net_ns_capable
+ffffffff820959cc r __ksymtab_rtnl_link_register
+ffffffff820959d8 r __ksymtab_rtnl_link_unregister
+ffffffff820959e4 r __ksymtab_rtnl_put_cacheinfo
+ffffffff820959f0 r __ksymtab_rtnl_register_module
+ffffffff820959fc r __ksymtab_rtnl_unregister
+ffffffff82095a08 r __ksymtab_rtnl_unregister_all
+ffffffff82095a14 r __ksymtab_run_dax
+ffffffff82095a20 r __ksymtab_runqueues
+ffffffff82095a2c r __ksymtab_s2idle_wake
+ffffffff82095a38 r __ksymtab_sampling_rate_store
+ffffffff82095a44 r __ksymtab_sbitmap_add_wait_queue
+ffffffff82095a50 r __ksymtab_sbitmap_any_bit_set
+ffffffff82095a5c r __ksymtab_sbitmap_bitmap_show
+ffffffff82095a68 r __ksymtab_sbitmap_del_wait_queue
+ffffffff82095a74 r __ksymtab_sbitmap_finish_wait
+ffffffff82095a80 r __ksymtab_sbitmap_get
+ffffffff82095a8c r __ksymtab_sbitmap_get_shallow
+ffffffff82095a98 r __ksymtab_sbitmap_init_node
+ffffffff82095aa4 r __ksymtab_sbitmap_prepare_to_wait
+ffffffff82095ab0 r __ksymtab_sbitmap_queue_clear
+ffffffff82095abc r __ksymtab_sbitmap_queue_get_shallow
+ffffffff82095ac8 r __ksymtab_sbitmap_queue_init_node
+ffffffff82095ad4 r __ksymtab_sbitmap_queue_min_shallow_depth
+ffffffff82095ae0 r __ksymtab_sbitmap_queue_recalculate_wake_batch
+ffffffff82095aec r __ksymtab_sbitmap_queue_resize
+ffffffff82095af8 r __ksymtab_sbitmap_queue_show
+ffffffff82095b04 r __ksymtab_sbitmap_queue_wake_all
+ffffffff82095b10 r __ksymtab_sbitmap_queue_wake_up
+ffffffff82095b1c r __ksymtab_sbitmap_resize
+ffffffff82095b28 r __ksymtab_sbitmap_show
+ffffffff82095b34 r __ksymtab_sbitmap_weight
+ffffffff82095b40 r __ksymtab_scatterwalk_copychunks
+ffffffff82095b4c r __ksymtab_scatterwalk_ffwd
+ffffffff82095b58 r __ksymtab_scatterwalk_map_and_copy
+ffffffff82095b64 r __ksymtab_sch_frag_xmit_hook
+ffffffff82095b70 r __ksymtab_sched_clock
+ffffffff82095b7c r __ksymtab_sched_clock_cpu
+ffffffff82095b88 r __ksymtab_sched_clock_idle_sleep_event
+ffffffff82095b94 r __ksymtab_sched_clock_idle_wakeup_event
+ffffffff82095ba0 r __ksymtab_sched_feat_keys
+ffffffff82095bac r __ksymtab_sched_feat_names
+ffffffff82095bb8 r __ksymtab_sched_set_fifo
+ffffffff82095bc4 r __ksymtab_sched_set_fifo_low
+ffffffff82095bd0 r __ksymtab_sched_set_normal
+ffffffff82095bdc r __ksymtab_sched_setattr
+ffffffff82095be8 r __ksymtab_sched_setattr_nocheck
+ffffffff82095bf4 r __ksymtab_sched_setscheduler
+ffffffff82095c00 r __ksymtab_sched_setscheduler_nocheck
+ffffffff82095c0c r __ksymtab_sched_show_task
+ffffffff82095c18 r __ksymtab_sched_smt_present
+ffffffff82095c24 r __ksymtab_sched_uclamp_used
+ffffffff82095c30 r __ksymtab_schedule_hrtimeout
+ffffffff82095c3c r __ksymtab_schedule_hrtimeout_range
+ffffffff82095c48 r __ksymtab_schedule_hrtimeout_range_clock
+ffffffff82095c54 r __ksymtab_screen_glyph
+ffffffff82095c60 r __ksymtab_screen_glyph_unicode
+ffffffff82095c6c r __ksymtab_screen_pos
+ffffffff82095c78 r __ksymtab_secure_ipv4_port_ephemeral
+ffffffff82095c84 r __ksymtab_secure_tcp_seq
+ffffffff82095c90 r __ksymtab_security_file_ioctl
+ffffffff82095c9c r __ksymtab_security_inode_create
+ffffffff82095ca8 r __ksymtab_security_inode_mkdir
+ffffffff82095cb4 r __ksymtab_security_inode_setattr
+ffffffff82095cc0 r __ksymtab_security_kernel_load_data
+ffffffff82095ccc r __ksymtab_security_kernel_post_load_data
+ffffffff82095cd8 r __ksymtab_security_kernel_post_read_file
+ffffffff82095ce4 r __ksymtab_security_kernel_read_file
+ffffffff82095cf0 r __ksymtab_securityfs_create_dir
+ffffffff82095cfc r __ksymtab_securityfs_create_file
+ffffffff82095d08 r __ksymtab_securityfs_create_symlink
+ffffffff82095d14 r __ksymtab_securityfs_remove
+ffffffff82095d20 r __ksymtab_select_fallback_rq
+ffffffff82095d2c r __ksymtab_seq_buf_printf
+ffffffff82095d38 r __ksymtab_serial8250_clear_and_reinit_fifos
+ffffffff82095d44 r __ksymtab_serial8250_do_get_mctrl
+ffffffff82095d50 r __ksymtab_serial8250_do_set_divisor
+ffffffff82095d5c r __ksymtab_serial8250_do_set_ldisc
+ffffffff82095d68 r __ksymtab_serial8250_do_set_mctrl
+ffffffff82095d74 r __ksymtab_serial8250_do_shutdown
+ffffffff82095d80 r __ksymtab_serial8250_do_startup
+ffffffff82095d8c r __ksymtab_serial8250_em485_config
+ffffffff82095d98 r __ksymtab_serial8250_em485_destroy
+ffffffff82095da4 r __ksymtab_serial8250_em485_start_tx
+ffffffff82095db0 r __ksymtab_serial8250_em485_stop_tx
+ffffffff82095dbc r __ksymtab_serial8250_em485_supported
+ffffffff82095dc8 r __ksymtab_serial8250_get_port
+ffffffff82095dd4 r __ksymtab_serial8250_handle_irq
+ffffffff82095de0 r __ksymtab_serial8250_init_port
+ffffffff82095dec r __ksymtab_serial8250_modem_status
+ffffffff82095df8 r __ksymtab_serial8250_read_char
+ffffffff82095e04 r __ksymtab_serial8250_rpm_get
+ffffffff82095e10 r __ksymtab_serial8250_rpm_get_tx
+ffffffff82095e1c r __ksymtab_serial8250_rpm_put
+ffffffff82095e28 r __ksymtab_serial8250_rpm_put_tx
+ffffffff82095e34 r __ksymtab_serial8250_rx_chars
+ffffffff82095e40 r __ksymtab_serial8250_set_defaults
+ffffffff82095e4c r __ksymtab_serial8250_tx_chars
+ffffffff82095e58 r __ksymtab_serial8250_update_uartclk
+ffffffff82095e64 r __ksymtab_set_capacity_and_notify
+ffffffff82095e70 r __ksymtab_set_cpus_allowed_ptr
+ffffffff82095e7c r __ksymtab_set_dax_nocache
+ffffffff82095e88 r __ksymtab_set_dax_nomc
+ffffffff82095e94 r __ksymtab_set_dax_synchronous
+ffffffff82095ea0 r __ksymtab_set_direct_map_range_uncached
+ffffffff82095eac r __ksymtab_set_memory_decrypted
+ffffffff82095eb8 r __ksymtab_set_memory_encrypted
+ffffffff82095ec4 r __ksymtab_set_next_entity
+ffffffff82095ed0 r __ksymtab_set_online_page_callback
+ffffffff82095edc r __ksymtab_set_personality_ia32
+ffffffff82095ee8 r __ksymtab_set_primary_fwnode
+ffffffff82095ef4 r __ksymtab_set_secondary_fwnode
+ffffffff82095f00 r __ksymtab_set_selection_kernel
+ffffffff82095f0c r __ksymtab_set_task_cpu
+ffffffff82095f18 r __ksymtab_set_task_ioprio
+ffffffff82095f24 r __ksymtab_set_worker_desc
+ffffffff82095f30 r __ksymtab_setup_APIC_eilvt
+ffffffff82095f3c r __ksymtab_sg_alloc_table_chained
+ffffffff82095f48 r __ksymtab_sg_free_table_chained
+ffffffff82095f54 r __ksymtab_sha1_zero_message_hash
+ffffffff82095f60 r __ksymtab_sha224_zero_message_hash
+ffffffff82095f6c r __ksymtab_sha256_zero_message_hash
+ffffffff82095f78 r __ksymtab_sha384_zero_message_hash
+ffffffff82095f84 r __ksymtab_sha512_zero_message_hash
+ffffffff82095f90 r __ksymtab_shash_ahash_digest
+ffffffff82095f9c r __ksymtab_shash_ahash_finup
+ffffffff82095fa8 r __ksymtab_shash_ahash_update
+ffffffff82095fb4 r __ksymtab_shash_free_singlespawn_instance
+ffffffff82095fc0 r __ksymtab_shash_register_instance
+ffffffff82095fcc r __ksymtab_shmem_file_setup
+ffffffff82095fd8 r __ksymtab_shmem_file_setup_with_mnt
+ffffffff82095fe4 r __ksymtab_shmem_read_mapping_page_gfp
+ffffffff82095ff0 r __ksymtab_shmem_truncate_range
+ffffffff82095ffc r __ksymtab_show_class_attr_string
+ffffffff82096008 r __ksymtab_show_rcu_gp_kthreads
+ffffffff82096014 r __ksymtab_show_rcu_tasks_classic_gp_kthread
+ffffffff82096020 r __ksymtab_si_mem_available
+ffffffff8209602c r __ksymtab_si_swapinfo
+ffffffff82096038 r __ksymtab_simd_aead_create
+ffffffff82096044 r __ksymtab_simd_aead_create_compat
+ffffffff82096050 r __ksymtab_simd_aead_free
+ffffffff8209605c r __ksymtab_simd_register_aeads_compat
+ffffffff82096068 r __ksymtab_simd_register_skciphers_compat
+ffffffff82096074 r __ksymtab_simd_skcipher_create
+ffffffff82096080 r __ksymtab_simd_skcipher_create_compat
+ffffffff8209608c r __ksymtab_simd_skcipher_free
+ffffffff82096098 r __ksymtab_simd_unregister_aeads
+ffffffff820960a4 r __ksymtab_simd_unregister_skciphers
+ffffffff820960b0 r __ksymtab_simple_attr_open
+ffffffff820960bc r __ksymtab_simple_attr_read
+ffffffff820960c8 r __ksymtab_simple_attr_release
+ffffffff820960d4 r __ksymtab_simple_attr_write
+ffffffff820960e0 r __ksymtab_simple_attr_write_signed
+ffffffff820960ec r __ksymtab_simple_rename_exchange
+ffffffff820960f8 r __ksymtab_sk_attach_filter
+ffffffff82096104 r __ksymtab_sk_clear_memalloc
+ffffffff82096110 r __ksymtab_sk_clone_lock
+ffffffff8209611c r __ksymtab_sk_detach_filter
+ffffffff82096128 r __ksymtab_sk_free_unlock_clone
+ffffffff82096134 r __ksymtab_sk_set_memalloc
+ffffffff82096140 r __ksymtab_sk_set_peek_off
+ffffffff8209614c r __ksymtab_sk_setup_caps
+ffffffff82096158 r __ksymtab_skb_append_pagefrags
+ffffffff82096164 r __ksymtab_skb_complete_tx_timestamp
+ffffffff82096170 r __ksymtab_skb_complete_wifi_ack
+ffffffff8209617c r __ksymtab_skb_consume_udp
+ffffffff82096188 r __ksymtab_skb_copy_ubufs
+ffffffff82096194 r __ksymtab_skb_cow_data
+ffffffff820961a0 r __ksymtab_skb_gso_validate_mac_len
+ffffffff820961ac r __ksymtab_skb_gso_validate_network_len
+ffffffff820961b8 r __ksymtab_skb_morph
+ffffffff820961c4 r __ksymtab_skb_mpls_dec_ttl
+ffffffff820961d0 r __ksymtab_skb_mpls_pop
+ffffffff820961dc r __ksymtab_skb_mpls_push
+ffffffff820961e8 r __ksymtab_skb_mpls_update_lse
+ffffffff820961f4 r __ksymtab_skb_partial_csum_set
+ffffffff82096200 r __ksymtab_skb_pull_rcsum
+ffffffff8209620c r __ksymtab_skb_scrub_packet
+ffffffff82096218 r __ksymtab_skb_segment
+ffffffff82096224 r __ksymtab_skb_segment_list
+ffffffff82096230 r __ksymtab_skb_send_sock_locked
+ffffffff8209623c r __ksymtab_skb_splice_bits
+ffffffff82096248 r __ksymtab_skb_to_sgvec
+ffffffff82096254 r __ksymtab_skb_to_sgvec_nomark
+ffffffff82096260 r __ksymtab_skb_tstamp_tx
+ffffffff8209626c r __ksymtab_skb_zerocopy
+ffffffff82096278 r __ksymtab_skb_zerocopy_headlen
+ffffffff82096284 r __ksymtab_skb_zerocopy_iter_stream
+ffffffff82096290 r __ksymtab_skcipher_alloc_instance_simple
+ffffffff8209629c r __ksymtab_skcipher_register_instance
+ffffffff820962a8 r __ksymtab_skcipher_walk_aead_decrypt
+ffffffff820962b4 r __ksymtab_skcipher_walk_aead_encrypt
+ffffffff820962c0 r __ksymtab_skcipher_walk_async
+ffffffff820962cc r __ksymtab_skcipher_walk_complete
+ffffffff820962d8 r __ksymtab_skcipher_walk_done
+ffffffff820962e4 r __ksymtab_skcipher_walk_virt
+ffffffff820962f0 r __ksymtab_slow_virt_to_phys
+ffffffff820962fc r __ksymtab_smp_call_function_any
+ffffffff82096308 r __ksymtab_smp_call_function_single_async
+ffffffff82096314 r __ksymtab_smp_call_on_cpu
+ffffffff82096320 r __ksymtab_smp_ops
+ffffffff8209632c r __ksymtab_smpboot_register_percpu_thread
+ffffffff82096338 r __ksymtab_smpboot_unregister_percpu_thread
+ffffffff82096344 r __ksymtab_snmp_fold_field
+ffffffff82096350 r __ksymtab_sock_diag_check_cookie
+ffffffff8209635c r __ksymtab_sock_diag_destroy
+ffffffff82096368 r __ksymtab_sock_diag_put_meminfo
+ffffffff82096374 r __ksymtab_sock_diag_register
+ffffffff82096380 r __ksymtab_sock_diag_register_inet_compat
+ffffffff8209638c r __ksymtab_sock_diag_save_cookie
+ffffffff82096398 r __ksymtab_sock_diag_unregister
+ffffffff820963a4 r __ksymtab_sock_diag_unregister_inet_compat
+ffffffff820963b0 r __ksymtab_sock_gen_put
+ffffffff820963bc r __ksymtab_sock_inuse_get
+ffffffff820963c8 r __ksymtab_sock_prot_inuse_get
+ffffffff820963d4 r __ksymtab_software_node_find_by_name
+ffffffff820963e0 r __ksymtab_software_node_fwnode
+ffffffff820963ec r __ksymtab_software_node_register
+ffffffff820963f8 r __ksymtab_software_node_register_node_group
+ffffffff82096404 r __ksymtab_software_node_register_nodes
+ffffffff82096410 r __ksymtab_software_node_unregister
+ffffffff8209641c r __ksymtab_software_node_unregister_node_group
+ffffffff82096428 r __ksymtab_software_node_unregister_nodes
+ffffffff82096434 r __ksymtab_spec_ctrl_current
+ffffffff82096440 r __ksymtab_splice_to_pipe
+ffffffff8209644c r __ksymtab_split_page
+ffffffff82096458 r __ksymtab_sprint_symbol
+ffffffff82096464 r __ksymtab_sprint_symbol_build_id
+ffffffff82096470 r __ksymtab_sprint_symbol_no_offset
+ffffffff8209647c r __ksymtab_srcu_barrier
+ffffffff82096488 r __ksymtab_srcu_batches_completed
+ffffffff82096494 r __ksymtab_srcu_init_notifier_head
+ffffffff820964a0 r __ksymtab_srcu_notifier_call_chain
+ffffffff820964ac r __ksymtab_srcu_notifier_chain_register
+ffffffff820964b8 r __ksymtab_srcu_notifier_chain_unregister
+ffffffff820964c4 r __ksymtab_srcu_torture_stats_print
+ffffffff820964d0 r __ksymtab_srcutorture_get_gp_data
+ffffffff820964dc r __ksymtab_stack_depot_fetch
+ffffffff820964e8 r __ksymtab_stack_depot_init
+ffffffff820964f4 r __ksymtab_stack_depot_print
+ffffffff82096500 r __ksymtab_stack_depot_save
+ffffffff8209650c r __ksymtab_stack_depot_snprint
+ffffffff82096518 r __ksymtab_stack_trace_print
+ffffffff82096524 r __ksymtab_stack_trace_save
+ffffffff82096530 r __ksymtab_stack_trace_save_regs
+ffffffff8209653c r __ksymtab_stack_trace_save_tsk
+ffffffff82096548 r __ksymtab_stack_trace_snprint
+ffffffff82096554 r __ksymtab_start_poll_synchronize_rcu
+ffffffff82096560 r __ksymtab_start_poll_synchronize_rcu_expedited
+ffffffff8209656c r __ksymtab_start_poll_synchronize_rcu_expedited_full
+ffffffff82096578 r __ksymtab_start_poll_synchronize_rcu_full
+ffffffff82096584 r __ksymtab_start_poll_synchronize_srcu
+ffffffff82096590 r __ksymtab_start_thread
+ffffffff8209659c r __ksymtab_static_dev_dax
+ffffffff820965a8 r __ksymtab_static_key_count
+ffffffff820965b4 r __ksymtab_static_key_disable
+ffffffff820965c0 r __ksymtab_static_key_disable_cpuslocked
+ffffffff820965cc r __ksymtab_static_key_enable
+ffffffff820965d8 r __ksymtab_static_key_enable_cpuslocked
+ffffffff820965e4 r __ksymtab_static_key_initialized
+ffffffff820965f0 r __ksymtab_static_key_slow_dec
+ffffffff820965fc r __ksymtab_static_key_slow_inc
+ffffffff82096608 r __ksymtab_stop_core_cpuslocked
+ffffffff82096614 r __ksymtab_stop_machine
+ffffffff82096620 r __ksymtab_stop_one_cpu
+ffffffff8209662c r __ksymtab_stop_one_cpu_nowait
+ffffffff82096638 r __ksymtab_subsys_dev_iter_exit
+ffffffff82096644 r __ksymtab_subsys_dev_iter_init
+ffffffff82096650 r __ksymtab_subsys_dev_iter_next
+ffffffff8209665c r __ksymtab_subsys_find_device_by_id
+ffffffff82096668 r __ksymtab_subsys_interface_register
+ffffffff82096674 r __ksymtab_subsys_interface_unregister
+ffffffff82096680 r __ksymtab_subsys_system_register
+ffffffff8209668c r __ksymtab_subsys_virtual_register
+ffffffff82096698 r __ksymtab_suspend_set_ops
+ffffffff820966a4 r __ksymtab_suspend_valid_only_mem
+ffffffff820966b0 r __ksymtab_swapcache_mapping
+ffffffff820966bc r __ksymtab_swiotlb_max_segment
+ffffffff820966c8 r __ksymtab_switch_fpu_return
+ffffffff820966d4 r __ksymtab_sync_blockdev_nowait
+ffffffff820966e0 r __ksymtab_synchronize_rcu
+ffffffff820966ec r __ksymtab_synchronize_rcu_expedited
+ffffffff820966f8 r __ksymtab_synchronize_rcu_tasks
+ffffffff82096704 r __ksymtab_synchronize_srcu
+ffffffff82096710 r __ksymtab_synchronize_srcu_expedited
+ffffffff8209671c r __ksymtab_synth_event_add_field
+ffffffff82096728 r __ksymtab_synth_event_add_field_str
+ffffffff82096734 r __ksymtab_synth_event_add_fields
+ffffffff82096740 r __ksymtab_synth_event_add_next_val
+ffffffff8209674c r __ksymtab_synth_event_add_val
+ffffffff82096758 r __ksymtab_synth_event_cmd_init
+ffffffff82096764 r __ksymtab_synth_event_create
+ffffffff82096770 r __ksymtab_synth_event_delete
+ffffffff8209677c r __ksymtab_synth_event_gen_cmd_array_start
+ffffffff82096788 r __ksymtab_synth_event_trace
+ffffffff82096794 r __ksymtab_synth_event_trace_array
+ffffffff820967a0 r __ksymtab_synth_event_trace_end
+ffffffff820967ac r __ksymtab_synth_event_trace_start
+ffffffff820967b8 r __ksymtab_syscon_node_to_regmap
+ffffffff820967c4 r __ksymtab_syscon_regmap_lookup_by_compatible
+ffffffff820967d0 r __ksymtab_syscon_regmap_lookup_by_phandle
+ffffffff820967dc r __ksymtab_syscon_regmap_lookup_by_phandle_args
+ffffffff820967e8 r __ksymtab_syscon_regmap_lookup_by_phandle_optional
+ffffffff820967f4 r __ksymtab_syscore_resume
+ffffffff82096800 r __ksymtab_syscore_suspend
+ffffffff8209680c r __ksymtab_sysctl_long_vals
+ffffffff82096818 r __ksymtab_sysctl_sched_features
+ffffffff82096824 r __ksymtab_sysctl_sched_latency
+ffffffff82096830 r __ksymtab_sysctl_vfs_cache_pressure
+ffffffff8209683c r __ksymtab_sysfs_add_file_to_group
+ffffffff82096848 r __ksymtab_sysfs_add_link_to_group
+ffffffff82096854 r __ksymtab_sysfs_break_active_protection
+ffffffff82096860 r __ksymtab_sysfs_change_owner
+ffffffff8209686c r __ksymtab_sysfs_chmod_file
+ffffffff82096878 r __ksymtab_sysfs_create_bin_file
+ffffffff82096884 r __ksymtab_sysfs_create_file_ns
+ffffffff82096890 r __ksymtab_sysfs_create_files
+ffffffff8209689c r __ksymtab_sysfs_create_group
+ffffffff820968a8 r __ksymtab_sysfs_create_groups
+ffffffff820968b4 r __ksymtab_sysfs_create_link
+ffffffff820968c0 r __ksymtab_sysfs_create_link_nowarn
+ffffffff820968cc r __ksymtab_sysfs_create_mount_point
+ffffffff820968d8 r __ksymtab_sysfs_emit
+ffffffff820968e4 r __ksymtab_sysfs_emit_at
+ffffffff820968f0 r __ksymtab_sysfs_file_change_owner
+ffffffff820968fc r __ksymtab_sysfs_group_change_owner
+ffffffff82096908 r __ksymtab_sysfs_groups_change_owner
+ffffffff82096914 r __ksymtab_sysfs_merge_group
+ffffffff82096920 r __ksymtab_sysfs_notify
+ffffffff8209692c r __ksymtab_sysfs_remove_bin_file
+ffffffff82096938 r __ksymtab_sysfs_remove_file_from_group
+ffffffff82096944 r __ksymtab_sysfs_remove_file_ns
+ffffffff82096950 r __ksymtab_sysfs_remove_file_self
+ffffffff8209695c r __ksymtab_sysfs_remove_files
+ffffffff82096968 r __ksymtab_sysfs_remove_group
+ffffffff82096974 r __ksymtab_sysfs_remove_groups
+ffffffff82096980 r __ksymtab_sysfs_remove_link
+ffffffff8209698c r __ksymtab_sysfs_remove_link_from_group
+ffffffff82096998 r __ksymtab_sysfs_remove_mount_point
+ffffffff820969a4 r __ksymtab_sysfs_rename_link_ns
+ffffffff820969b0 r __ksymtab_sysfs_unbreak_active_protection
+ffffffff820969bc r __ksymtab_sysfs_unmerge_group
+ffffffff820969c8 r __ksymtab_sysfs_update_group
+ffffffff820969d4 r __ksymtab_sysfs_update_groups
+ffffffff820969e0 r __ksymtab_sysrq_mask
+ffffffff820969ec r __ksymtab_sysrq_toggle_support
+ffffffff820969f8 r __ksymtab_system_freezable_power_efficient_wq
+ffffffff82096a04 r __ksymtab_system_freezable_wq
+ffffffff82096a10 r __ksymtab_system_highpri_wq
+ffffffff82096a1c r __ksymtab_system_long_wq
+ffffffff82096a28 r __ksymtab_system_power_efficient_wq
+ffffffff82096a34 r __ksymtab_system_unbound_wq
+ffffffff82096a40 r __ksymtab_task_active_pid_ns
+ffffffff82096a4c r __ksymtab_task_cgroup_path
+ffffffff82096a58 r __ksymtab_task_cputime_adjusted
+ffffffff82096a64 r __ksymtab_task_groups
+ffffffff82096a70 r __ksymtab_task_rq_lock
+ffffffff82096a7c r __ksymtab_task_user_regset_view
+ffffffff82096a88 r __ksymtab_tasklet_unlock
+ffffffff82096a94 r __ksymtab_tasklet_unlock_wait
+ffffffff82096aa0 r __ksymtab_tasklist_lock
+ffffffff82096aac r __ksymtab_tcp_abort
+ffffffff82096ab8 r __ksymtab_tcp_ca_openreq_child
+ffffffff82096ac4 r __ksymtab_tcp_cong_avoid_ai
+ffffffff82096ad0 r __ksymtab_tcp_done
+ffffffff82096adc r __ksymtab_tcp_enter_memory_pressure
+ffffffff82096ae8 r __ksymtab_tcp_get_info
+ffffffff82096af4 r __ksymtab_tcp_get_syncookie_mss
+ffffffff82096b00 r __ksymtab_tcp_leave_memory_pressure
+ffffffff82096b0c r __ksymtab_tcp_memory_per_cpu_fw_alloc
+ffffffff82096b18 r __ksymtab_tcp_memory_pressure
+ffffffff82096b24 r __ksymtab_tcp_orphan_count
+ffffffff82096b30 r __ksymtab_tcp_parse_mss_option
+ffffffff82096b3c r __ksymtab_tcp_rate_check_app_limited
+ffffffff82096b48 r __ksymtab_tcp_register_congestion_control
+ffffffff82096b54 r __ksymtab_tcp_register_ulp
+ffffffff82096b60 r __ksymtab_tcp_reno_cong_avoid
+ffffffff82096b6c r __ksymtab_tcp_reno_ssthresh
+ffffffff82096b78 r __ksymtab_tcp_reno_undo_cwnd
+ffffffff82096b84 r __ksymtab_tcp_sendmsg_locked
+ffffffff82096b90 r __ksymtab_tcp_sendpage_locked
+ffffffff82096b9c r __ksymtab_tcp_set_keepalive
+ffffffff82096ba8 r __ksymtab_tcp_set_state
+ffffffff82096bb4 r __ksymtab_tcp_slow_start
+ffffffff82096bc0 r __ksymtab_tcp_twsk_destructor
+ffffffff82096bcc r __ksymtab_tcp_twsk_purge
+ffffffff82096bd8 r __ksymtab_tcp_twsk_unique
+ffffffff82096be4 r __ksymtab_tcp_unregister_congestion_control
+ffffffff82096bf0 r __ksymtab_tcp_unregister_ulp
+ffffffff82096bfc r __ksymtab_tcpv6_prot
+ffffffff82096c08 r __ksymtab_thermal_cdev_update
+ffffffff82096c14 r __ksymtab_thermal_cooling_device_register
+ffffffff82096c20 r __ksymtab_thermal_cooling_device_unregister
+ffffffff82096c2c r __ksymtab_thermal_genl_cpu_capability_event
+ffffffff82096c38 r __ksymtab_thermal_of_cooling_device_register
+ffffffff82096c44 r __ksymtab_thermal_of_zone_register
+ffffffff82096c50 r __ksymtab_thermal_of_zone_unregister
+ffffffff82096c5c r __ksymtab_thermal_zone_bind_cooling_device
+ffffffff82096c68 r __ksymtab_thermal_zone_device_disable
+ffffffff82096c74 r __ksymtab_thermal_zone_device_enable
+ffffffff82096c80 r __ksymtab_thermal_zone_device_register
+ffffffff82096c8c r __ksymtab_thermal_zone_device_register_with_trips
+ffffffff82096c98 r __ksymtab_thermal_zone_device_unregister
+ffffffff82096ca4 r __ksymtab_thermal_zone_device_update
+ffffffff82096cb0 r __ksymtab_thermal_zone_get_offset
+ffffffff82096cbc r __ksymtab_thermal_zone_get_slope
+ffffffff82096cc8 r __ksymtab_thermal_zone_get_temp
+ffffffff82096cd4 r __ksymtab_thermal_zone_get_zone_by_name
+ffffffff82096ce0 r __ksymtab_thermal_zone_unbind_cooling_device
+ffffffff82096cec r __ksymtab_thp_get_unmapped_area
+ffffffff82096cf8 r __ksymtab_thread_group_cputime_adjusted
+ffffffff82096d04 r __ksymtab_tick_broadcast_control
+ffffffff82096d10 r __ksymtab_tick_broadcast_oneshot_control
+ffffffff82096d1c r __ksymtab_tick_nohz_get_idle_calls_cpu
+ffffffff82096d28 r __ksymtab_tick_nohz_get_sleep_length
+ffffffff82096d34 r __ksymtab_timecounter_cyc2time
+ffffffff82096d40 r __ksymtab_timecounter_init
+ffffffff82096d4c r __ksymtab_timecounter_read
+ffffffff82096d58 r __ksymtab_timerqueue_add
+ffffffff82096d64 r __ksymtab_timerqueue_del
+ffffffff82096d70 r __ksymtab_timerqueue_iterate_next
+ffffffff82096d7c r __ksymtab_to_nd_desc
+ffffffff82096d88 r __ksymtab_to_nd_region
+ffffffff82096d94 r __ksymtab_to_nvdimm
+ffffffff82096da0 r __ksymtab_to_nvdimm_bus
+ffffffff82096dac r __ksymtab_to_nvdimm_bus_dev
+ffffffff82096db8 r __ksymtab_to_software_node
+ffffffff82096dc4 r __ksymtab_trace_add_event_call
+ffffffff82096dd0 r __ksymtab_trace_array_destroy
+ffffffff82096ddc r __ksymtab_trace_array_get_by_name
+ffffffff82096de8 r __ksymtab_trace_array_init_printk
+ffffffff82096df4 r __ksymtab_trace_array_printk
+ffffffff82096e00 r __ksymtab_trace_array_put
+ffffffff82096e0c r __ksymtab_trace_array_set_clr_event
+ffffffff82096e18 r __ksymtab_trace_clock
+ffffffff82096e24 r __ksymtab_trace_clock_global
+ffffffff82096e30 r __ksymtab_trace_clock_jiffies
+ffffffff82096e3c r __ksymtab_trace_clock_local
+ffffffff82096e48 r __ksymtab_trace_define_field
+ffffffff82096e54 r __ksymtab_trace_dump_stack
+ffffffff82096e60 r __ksymtab_trace_event_buffer_commit
+ffffffff82096e6c r __ksymtab_trace_event_buffer_lock_reserve
+ffffffff82096e78 r __ksymtab_trace_event_buffer_reserve
+ffffffff82096e84 r __ksymtab_trace_event_ignore_this_pid
+ffffffff82096e90 r __ksymtab_trace_event_raw_init
+ffffffff82096e9c r __ksymtab_trace_event_reg
+ffffffff82096ea8 r __ksymtab_trace_get_event_file
+ffffffff82096eb4 r __ksymtab_trace_handle_return
+ffffffff82096ec0 r __ksymtab_trace_output_call
+ffffffff82096ecc r __ksymtab_trace_print_bitmask_seq
+ffffffff82096ed8 r __ksymtab_trace_printk_init_buffers
+ffffffff82096ee4 r __ksymtab_trace_put_event_file
+ffffffff82096ef0 r __ksymtab_trace_remove_event_call
+ffffffff82096efc r __ksymtab_trace_seq_bitmask
+ffffffff82096f08 r __ksymtab_trace_seq_bprintf
+ffffffff82096f14 r __ksymtab_trace_seq_path
+ffffffff82096f20 r __ksymtab_trace_seq_printf
+ffffffff82096f2c r __ksymtab_trace_seq_putc
+ffffffff82096f38 r __ksymtab_trace_seq_putmem
+ffffffff82096f44 r __ksymtab_trace_seq_putmem_hex
+ffffffff82096f50 r __ksymtab_trace_seq_puts
+ffffffff82096f5c r __ksymtab_trace_seq_to_user
+ffffffff82096f68 r __ksymtab_trace_seq_vprintf
+ffffffff82096f74 r __ksymtab_trace_set_clr_event
+ffffffff82096f80 r __ksymtab_trace_vbprintk
+ffffffff82096f8c r __ksymtab_trace_vprintk
+ffffffff82096f98 r __ksymtab_tracepoint_probe_register
+ffffffff82096fa4 r __ksymtab_tracepoint_probe_register_prio
+ffffffff82096fb0 r __ksymtab_tracepoint_probe_register_prio_may_exist
+ffffffff82096fbc r __ksymtab_tracepoint_probe_unregister
+ffffffff82096fc8 r __ksymtab_tracepoint_srcu
+ffffffff82096fd4 r __ksymtab_tracing_alloc_snapshot
+ffffffff82096fe0 r __ksymtab_tracing_cond_snapshot_data
+ffffffff82096fec r __ksymtab_tracing_is_on
+ffffffff82096ff8 r __ksymtab_tracing_off
+ffffffff82097004 r __ksymtab_tracing_on
+ffffffff82097010 r __ksymtab_tracing_snapshot
+ffffffff8209701c r __ksymtab_tracing_snapshot_alloc
+ffffffff82097028 r __ksymtab_tracing_snapshot_cond
+ffffffff82097034 r __ksymtab_tracing_snapshot_cond_disable
+ffffffff82097040 r __ksymtab_tracing_snapshot_cond_enable
+ffffffff8209704c r __ksymtab_transport_add_device
+ffffffff82097058 r __ksymtab_transport_class_register
+ffffffff82097064 r __ksymtab_transport_class_unregister
+ffffffff82097070 r __ksymtab_transport_configure_device
+ffffffff8209707c r __ksymtab_transport_destroy_device
+ffffffff82097088 r __ksymtab_transport_remove_device
+ffffffff82097094 r __ksymtab_transport_setup_device
+ffffffff820970a0 r __ksymtab_try_to_free_mem_cgroup_pages
+ffffffff820970ac r __ksymtab_tty_buffer_lock_exclusive
+ffffffff820970b8 r __ksymtab_tty_buffer_request_room
+ffffffff820970c4 r __ksymtab_tty_buffer_set_limit
+ffffffff820970d0 r __ksymtab_tty_buffer_space_avail
+ffffffff820970dc r __ksymtab_tty_buffer_unlock_exclusive
+ffffffff820970e8 r __ksymtab_tty_dev_name_to_number
+ffffffff820970f4 r __ksymtab_tty_encode_baud_rate
+ffffffff82097100 r __ksymtab_tty_get_char_size
+ffffffff8209710c r __ksymtab_tty_get_frame_size
+ffffffff82097118 r __ksymtab_tty_get_icount
+ffffffff82097124 r __ksymtab_tty_get_pgrp
+ffffffff82097130 r __ksymtab_tty_init_termios
+ffffffff8209713c r __ksymtab_tty_kclose
+ffffffff82097148 r __ksymtab_tty_kopen_exclusive
+ffffffff82097154 r __ksymtab_tty_kopen_shared
+ffffffff82097160 r __ksymtab_tty_ldisc_deref
+ffffffff8209716c r __ksymtab_tty_ldisc_flush
+ffffffff82097178 r __ksymtab_tty_ldisc_receive_buf
+ffffffff82097184 r __ksymtab_tty_ldisc_ref
+ffffffff82097190 r __ksymtab_tty_ldisc_ref_wait
+ffffffff8209719c r __ksymtab_tty_mode_ioctl
+ffffffff820971a8 r __ksymtab_tty_perform_flush
+ffffffff820971b4 r __ksymtab_tty_port_default_client_ops
+ffffffff820971c0 r __ksymtab_tty_port_install
+ffffffff820971cc r __ksymtab_tty_port_link_device
+ffffffff820971d8 r __ksymtab_tty_port_register_device
+ffffffff820971e4 r __ksymtab_tty_port_register_device_attr
+ffffffff820971f0 r __ksymtab_tty_port_register_device_attr_serdev
+ffffffff820971fc r __ksymtab_tty_port_register_device_serdev
+ffffffff82097208 r __ksymtab_tty_port_tty_hangup
+ffffffff82097214 r __ksymtab_tty_port_tty_wakeup
+ffffffff82097220 r __ksymtab_tty_port_unregister_device
+ffffffff8209722c r __ksymtab_tty_prepare_flip_string
+ffffffff82097238 r __ksymtab_tty_put_char
+ffffffff82097244 r __ksymtab_tty_register_device_attr
+ffffffff82097250 r __ksymtab_tty_release_struct
+ffffffff8209725c r __ksymtab_tty_save_termios
+ffffffff82097268 r __ksymtab_tty_set_ldisc
+ffffffff82097274 r __ksymtab_tty_set_termios
+ffffffff82097280 r __ksymtab_tty_standard_install
+ffffffff8209728c r __ksymtab_tty_termios_encode_baud_rate
+ffffffff82097298 r __ksymtab_tty_wakeup
+ffffffff820972a4 r __ksymtab_uart_console_device
+ffffffff820972b0 r __ksymtab_uart_console_write
+ffffffff820972bc r __ksymtab_uart_get_rs485_mode
+ffffffff820972c8 r __ksymtab_uart_handle_cts_change
+ffffffff820972d4 r __ksymtab_uart_handle_dcd_change
+ffffffff820972e0 r __ksymtab_uart_insert_char
+ffffffff820972ec r __ksymtab_uart_parse_earlycon
+ffffffff820972f8 r __ksymtab_uart_parse_options
+ffffffff82097304 r __ksymtab_uart_set_options
+ffffffff82097310 r __ksymtab_uart_try_toggle_sysrq
+ffffffff8209731c r __ksymtab_uart_xchar_out
+ffffffff82097328 r __ksymtab_uclamp_eff_value
+ffffffff82097334 r __ksymtab_udp4_hwcsum
+ffffffff82097340 r __ksymtab_udp_abort
+ffffffff8209734c r __ksymtab_udp_cmsg_send
+ffffffff82097358 r __ksymtab_udp_destruct_common
+ffffffff82097364 r __ksymtab_udp_memory_per_cpu_fw_alloc
+ffffffff82097370 r __ksymtab_udp_tunnel_nic_ops
+ffffffff8209737c r __ksymtab_uio_event_notify
+ffffffff82097388 r __ksymtab_uio_unregister_device
+ffffffff82097394 r __ksymtab_unix_inq_len
+ffffffff820973a0 r __ksymtab_unix_outq_len
+ffffffff820973ac r __ksymtab_unix_peer_get
+ffffffff820973b8 r __ksymtab_unlock_system_sleep
+ffffffff820973c4 r __ksymtab_unmap_mapping_pages
+ffffffff820973d0 r __ksymtab_unregister_acpi_bus_type
+ffffffff820973dc r __ksymtab_unregister_die_notifier
+ffffffff820973e8 r __ksymtab_unregister_firmware_config_sysctl
+ffffffff820973f4 r __ksymtab_unregister_ftrace_export
+ffffffff82097400 r __ksymtab_unregister_hw_breakpoint
+ffffffff8209740c r __ksymtab_unregister_keyboard_notifier
+ffffffff82097418 r __ksymtab_unregister_net_sysctl_table
+ffffffff82097424 r __ksymtab_unregister_netevent_notifier
+ffffffff82097430 r __ksymtab_unregister_nmi_handler
+ffffffff8209743c r __ksymtab_unregister_nvdimm_pmu
+ffffffff82097448 r __ksymtab_unregister_oom_notifier
+ffffffff82097454 r __ksymtab_unregister_pernet_device
+ffffffff82097460 r __ksymtab_unregister_pernet_subsys
+ffffffff8209746c r __ksymtab_unregister_platform_power_off
+ffffffff82097478 r __ksymtab_unregister_pm_notifier
+ffffffff82097484 r __ksymtab_unregister_sys_off_handler
+ffffffff82097490 r __ksymtab_unregister_syscore_ops
+ffffffff8209749c r __ksymtab_unregister_trace_event
+ffffffff820974a8 r __ksymtab_unregister_tracepoint_module_notifier
+ffffffff820974b4 r __ksymtab_unregister_virtio_device
+ffffffff820974c0 r __ksymtab_unregister_virtio_driver
+ffffffff820974cc r __ksymtab_unregister_vmap_purge_notifier
+ffffffff820974d8 r __ksymtab_unregister_vt_notifier
+ffffffff820974e4 r __ksymtab_unregister_wide_hw_breakpoint
+ffffffff820974f0 r __ksymtab_unshare_fs_struct
+ffffffff820974fc r __ksymtab_unwind_get_return_address
+ffffffff82097508 r __ksymtab_unwind_next_frame
+ffffffff82097514 r __ksymtab_update_rq_clock
+ffffffff82097520 r __ksymtab_uprobe_register
+ffffffff8209752c r __ksymtab_uprobe_register_refctr
+ffffffff82097538 r __ksymtab_uprobe_unregister
+ffffffff82097544 r __ksymtab_usermodehelper_read_lock_wait
+ffffffff82097550 r __ksymtab_usermodehelper_read_trylock
+ffffffff8209755c r __ksymtab_usermodehelper_read_unlock
+ffffffff82097568 r __ksymtab_utf8_data_table
+ffffffff82097574 r __ksymtab_uuid_gen
+ffffffff82097580 r __ksymtab_validate_xmit_skb_list
+ffffffff8209758c r __ksymtab_vbin_printf
+ffffffff82097598 r __ksymtab_vc_scrolldelta_helper
+ffffffff820975a4 r __ksymtab_vfs_cancel_lock
+ffffffff820975b0 r __ksymtab_vfs_fallocate
+ffffffff820975bc r __ksymtab_vfs_getxattr
+ffffffff820975c8 r __ksymtab_vfs_inode_has_locks
+ffffffff820975d4 r __ksymtab_vfs_kern_mount
+ffffffff820975e0 r __ksymtab_vfs_listxattr
+ffffffff820975ec r __ksymtab_vfs_lock_file
+ffffffff820975f8 r __ksymtab_vfs_removexattr
+ffffffff82097604 r __ksymtab_vfs_setlease
+ffffffff82097610 r __ksymtab_vfs_setxattr
+ffffffff8209761c r __ksymtab_vfs_submount
+ffffffff82097628 r __ksymtab_vfs_test_lock
+ffffffff82097634 r __ksymtab_vfs_truncate
+ffffffff82097640 r __ksymtab_vga_default_device
+ffffffff8209764c r __ksymtab_virtio_add_status
+ffffffff82097658 r __ksymtab_virtio_break_device
+ffffffff82097664 r __ksymtab_virtio_check_driver_offered_feature
+ffffffff82097670 r __ksymtab_virtio_check_mem_acc_cb
+ffffffff8209767c r __ksymtab_virtio_config_changed
+ffffffff82097688 r __ksymtab_virtio_device_freeze
+ffffffff82097694 r __ksymtab_virtio_device_restore
+ffffffff820976a0 r __ksymtab_virtio_max_dma_size
+ffffffff820976ac r __ksymtab_virtio_require_restricted_mem_acc
+ffffffff820976b8 r __ksymtab_virtio_reset_device
+ffffffff820976c4 r __ksymtab_virtio_transport_connect
+ffffffff820976d0 r __ksymtab_virtio_transport_deliver_tap_pkt
+ffffffff820976dc r __ksymtab_virtio_transport_destruct
+ffffffff820976e8 r __ksymtab_virtio_transport_dgram_allow
+ffffffff820976f4 r __ksymtab_virtio_transport_dgram_bind
+ffffffff82097700 r __ksymtab_virtio_transport_dgram_dequeue
+ffffffff8209770c r __ksymtab_virtio_transport_dgram_enqueue
+ffffffff82097718 r __ksymtab_virtio_transport_do_socket_init
+ffffffff82097724 r __ksymtab_virtio_transport_free_pkt
+ffffffff82097730 r __ksymtab_virtio_transport_get_credit
+ffffffff8209773c r __ksymtab_virtio_transport_inc_tx_pkt
+ffffffff82097748 r __ksymtab_virtio_transport_max_vsock_pkt_buf_size
+ffffffff82097754 r __ksymtab_virtio_transport_notify_buffer_size
+ffffffff82097760 r __ksymtab_virtio_transport_notify_poll_in
+ffffffff8209776c r __ksymtab_virtio_transport_notify_poll_out
+ffffffff82097778 r __ksymtab_virtio_transport_notify_recv_init
+ffffffff82097784 r __ksymtab_virtio_transport_notify_recv_post_dequeue
+ffffffff82097790 r __ksymtab_virtio_transport_notify_recv_pre_block
+ffffffff8209779c r __ksymtab_virtio_transport_notify_recv_pre_dequeue
+ffffffff820977a8 r __ksymtab_virtio_transport_notify_send_init
+ffffffff820977b4 r __ksymtab_virtio_transport_notify_send_post_enqueue
+ffffffff820977c0 r __ksymtab_virtio_transport_notify_send_pre_block
+ffffffff820977cc r __ksymtab_virtio_transport_notify_send_pre_enqueue
+ffffffff820977d8 r __ksymtab_virtio_transport_put_credit
+ffffffff820977e4 r __ksymtab_virtio_transport_recv_pkt
+ffffffff820977f0 r __ksymtab_virtio_transport_release
+ffffffff820977fc r __ksymtab_virtio_transport_seqpacket_dequeue
+ffffffff82097808 r __ksymtab_virtio_transport_seqpacket_enqueue
+ffffffff82097814 r __ksymtab_virtio_transport_seqpacket_has_data
+ffffffff82097820 r __ksymtab_virtio_transport_shutdown
+ffffffff8209782c r __ksymtab_virtio_transport_stream_allow
+ffffffff82097838 r __ksymtab_virtio_transport_stream_dequeue
+ffffffff82097844 r __ksymtab_virtio_transport_stream_enqueue
+ffffffff82097850 r __ksymtab_virtio_transport_stream_has_data
+ffffffff8209785c r __ksymtab_virtio_transport_stream_has_space
+ffffffff82097868 r __ksymtab_virtio_transport_stream_is_active
+ffffffff82097874 r __ksymtab_virtio_transport_stream_rcvhiwat
+ffffffff82097880 r __ksymtab_virtqueue_add_inbuf
+ffffffff8209788c r __ksymtab_virtqueue_add_inbuf_ctx
+ffffffff82097898 r __ksymtab_virtqueue_add_outbuf
+ffffffff820978a4 r __ksymtab_virtqueue_add_sgs
+ffffffff820978b0 r __ksymtab_virtqueue_detach_unused_buf
+ffffffff820978bc r __ksymtab_virtqueue_disable_cb
+ffffffff820978c8 r __ksymtab_virtqueue_disable_dma_api_for_buffers
+ffffffff820978d4 r __ksymtab_virtqueue_enable_cb
+ffffffff820978e0 r __ksymtab_virtqueue_enable_cb_delayed
+ffffffff820978ec r __ksymtab_virtqueue_enable_cb_prepare
+ffffffff820978f8 r __ksymtab_virtqueue_get_avail_addr
+ffffffff82097904 r __ksymtab_virtqueue_get_buf
+ffffffff82097910 r __ksymtab_virtqueue_get_buf_ctx
+ffffffff8209791c r __ksymtab_virtqueue_get_desc_addr
+ffffffff82097928 r __ksymtab_virtqueue_get_used_addr
+ffffffff82097934 r __ksymtab_virtqueue_get_vring
+ffffffff82097940 r __ksymtab_virtqueue_get_vring_size
+ffffffff8209794c r __ksymtab_virtqueue_is_broken
+ffffffff82097958 r __ksymtab_virtqueue_kick
+ffffffff82097964 r __ksymtab_virtqueue_kick_prepare
+ffffffff82097970 r __ksymtab_virtqueue_notify
+ffffffff8209797c r __ksymtab_virtqueue_poll
+ffffffff82097988 r __ksymtab_virtqueue_resize
+ffffffff82097994 r __ksymtab_vm_memory_committed
+ffffffff820979a0 r __ksymtab_vm_unmap_aliases
+ffffffff820979ac r __ksymtab_vm_unmapped_area
+ffffffff820979b8 r __ksymtab_vmalloc_huge
+ffffffff820979c4 r __ksymtab_vmalloc_nr_pages
+ffffffff820979d0 r __ksymtab_vmf_insert_pfn_pmd_prot
+ffffffff820979dc r __ksymtab_vmf_insert_pfn_pud_prot
+ffffffff820979e8 r __ksymtab_vp_legacy_config_vector
+ffffffff820979f4 r __ksymtab_vp_legacy_get_driver_features
+ffffffff82097a00 r __ksymtab_vp_legacy_get_features
+ffffffff82097a0c r __ksymtab_vp_legacy_get_queue_enable
+ffffffff82097a18 r __ksymtab_vp_legacy_get_queue_size
+ffffffff82097a24 r __ksymtab_vp_legacy_get_status
+ffffffff82097a30 r __ksymtab_vp_legacy_probe
+ffffffff82097a3c r __ksymtab_vp_legacy_queue_vector
+ffffffff82097a48 r __ksymtab_vp_legacy_remove
+ffffffff82097a54 r __ksymtab_vp_legacy_set_features
+ffffffff82097a60 r __ksymtab_vp_legacy_set_queue_address
+ffffffff82097a6c r __ksymtab_vp_legacy_set_status
+ffffffff82097a78 r __ksymtab_vp_modern_config_vector
+ffffffff82097a84 r __ksymtab_vp_modern_generation
+ffffffff82097a90 r __ksymtab_vp_modern_get_driver_features
+ffffffff82097a9c r __ksymtab_vp_modern_get_features
+ffffffff82097aa8 r __ksymtab_vp_modern_get_num_queues
+ffffffff82097ab4 r __ksymtab_vp_modern_get_queue_enable
+ffffffff82097ac0 r __ksymtab_vp_modern_get_queue_reset
+ffffffff82097acc r __ksymtab_vp_modern_get_queue_size
+ffffffff82097ad8 r __ksymtab_vp_modern_get_status
+ffffffff82097ae4 r __ksymtab_vp_modern_map_vq_notify
+ffffffff82097af0 r __ksymtab_vp_modern_probe
+ffffffff82097afc r __ksymtab_vp_modern_queue_address
+ffffffff82097b08 r __ksymtab_vp_modern_queue_vector
+ffffffff82097b14 r __ksymtab_vp_modern_remove
+ffffffff82097b20 r __ksymtab_vp_modern_set_features
+ffffffff82097b2c r __ksymtab_vp_modern_set_queue_enable
+ffffffff82097b38 r __ksymtab_vp_modern_set_queue_reset
+ffffffff82097b44 r __ksymtab_vp_modern_set_queue_size
+ffffffff82097b50 r __ksymtab_vp_modern_set_status
+ffffffff82097b5c r __ksymtab_vprintk_default
+ffffffff82097b68 r __ksymtab_vring_create_virtqueue
+ffffffff82097b74 r __ksymtab_vring_del_virtqueue
+ffffffff82097b80 r __ksymtab_vring_interrupt
+ffffffff82097b8c r __ksymtab_vring_new_virtqueue
+ffffffff82097b98 r __ksymtab_vring_transport_features
+ffffffff82097ba4 r __ksymtab_vsock_add_pending
+ffffffff82097bb0 r __ksymtab_vsock_add_tap
+ffffffff82097bbc r __ksymtab_vsock_addr_bound
+ffffffff82097bc8 r __ksymtab_vsock_addr_cast
+ffffffff82097bd4 r __ksymtab_vsock_addr_equals_addr
+ffffffff82097be0 r __ksymtab_vsock_addr_init
+ffffffff82097bec r __ksymtab_vsock_addr_unbind
+ffffffff82097bf8 r __ksymtab_vsock_addr_validate
+ffffffff82097c04 r __ksymtab_vsock_assign_transport
+ffffffff82097c10 r __ksymtab_vsock_bind_table
+ffffffff82097c1c r __ksymtab_vsock_connected_table
+ffffffff82097c28 r __ksymtab_vsock_core_get_transport
+ffffffff82097c34 r __ksymtab_vsock_core_register
+ffffffff82097c40 r __ksymtab_vsock_core_unregister
+ffffffff82097c4c r __ksymtab_vsock_create_connected
+ffffffff82097c58 r __ksymtab_vsock_data_ready
+ffffffff82097c64 r __ksymtab_vsock_deliver_tap
+ffffffff82097c70 r __ksymtab_vsock_enqueue_accept
+ffffffff82097c7c r __ksymtab_vsock_find_bound_socket
+ffffffff82097c88 r __ksymtab_vsock_find_cid
+ffffffff82097c94 r __ksymtab_vsock_find_connected_socket
+ffffffff82097ca0 r __ksymtab_vsock_for_each_connected_socket
+ffffffff82097cac r __ksymtab_vsock_insert_connected
+ffffffff82097cb8 r __ksymtab_vsock_remove_bound
+ffffffff82097cc4 r __ksymtab_vsock_remove_connected
+ffffffff82097cd0 r __ksymtab_vsock_remove_pending
+ffffffff82097cdc r __ksymtab_vsock_remove_sock
+ffffffff82097ce8 r __ksymtab_vsock_remove_tap
+ffffffff82097cf4 r __ksymtab_vsock_stream_has_data
+ffffffff82097d00 r __ksymtab_vsock_stream_has_space
+ffffffff82097d0c r __ksymtab_vsock_table_lock
+ffffffff82097d18 r __ksymtab_vt_get_leds
+ffffffff82097d24 r __ksymtab_wait_for_device_probe
+ffffffff82097d30 r __ksymtab_wait_for_initramfs
+ffffffff82097d3c r __ksymtab_wait_for_stable_page
+ffffffff82097d48 r __ksymtab_wait_on_page_writeback
+ffffffff82097d54 r __ksymtab_wake_up_all_idle_cpus
+ffffffff82097d60 r __ksymtab_wake_up_if_idle
+ffffffff82097d6c r __ksymtab_wakeme_after_rcu
+ffffffff82097d78 r __ksymtab_wakeup_source_add
+ffffffff82097d84 r __ksymtab_wakeup_source_create
+ffffffff82097d90 r __ksymtab_wakeup_source_destroy
+ffffffff82097d9c r __ksymtab_wakeup_source_register
+ffffffff82097da8 r __ksymtab_wakeup_source_remove
+ffffffff82097db4 r __ksymtab_wakeup_source_unregister
+ffffffff82097dc0 r __ksymtab_wakeup_sources_read_lock
+ffffffff82097dcc r __ksymtab_wakeup_sources_read_unlock
+ffffffff82097dd8 r __ksymtab_wakeup_sources_walk_next
+ffffffff82097de4 r __ksymtab_wakeup_sources_walk_start
+ffffffff82097df0 r __ksymtab_walk_iomem_res_desc
+ffffffff82097dfc r __ksymtab_watchdog_init_timeout
+ffffffff82097e08 r __ksymtab_watchdog_register_device
+ffffffff82097e14 r __ksymtab_watchdog_set_last_hw_keepalive
+ffffffff82097e20 r __ksymtab_watchdog_set_restart_priority
+ffffffff82097e2c r __ksymtab_watchdog_unregister_device
+ffffffff82097e38 r __ksymtab_wb_writeout_inc
+ffffffff82097e44 r __ksymtab_wbc_account_cgroup_owner
+ffffffff82097e50 r __ksymtab_wbc_attach_and_unlock_inode
+ffffffff82097e5c r __ksymtab_wbc_detach_inode
+ffffffff82097e68 r __ksymtab_work_busy
+ffffffff82097e74 r __ksymtab_work_on_cpu
+ffffffff82097e80 r __ksymtab_work_on_cpu_safe
+ffffffff82097e8c r __ksymtab_workqueue_congested
+ffffffff82097e98 r __ksymtab_workqueue_set_max_active
+ffffffff82097ea4 r __ksymtab_wq_worker_comm
+ffffffff82097eb0 r __ksymtab_x2apic_mode
+ffffffff82097ebc r __ksymtab_x86_cpu_has_min_microcode_rev
+ffffffff82097ec8 r __ksymtab_x86_family
+ffffffff82097ed4 r __ksymtab_x86_model
+ffffffff82097ee0 r __ksymtab_x86_msi_msg_get_destid
+ffffffff82097eec r __ksymtab_x86_perf_get_lbr
+ffffffff82097ef8 r __ksymtab_x86_platform
+ffffffff82097f04 r __ksymtab_x86_spec_ctrl_base
+ffffffff82097f10 r __ksymtab_x86_spec_ctrl_current
+ffffffff82097f1c r __ksymtab_x86_stepping
+ffffffff82097f28 r __ksymtab_x86_vector_domain
+ffffffff82097f34 r __ksymtab_x86_virt_spec_ctrl
+ffffffff82097f40 r __ksymtab_xa_delete_node
+ffffffff82097f4c r __ksymtab_xas_clear_mark
+ffffffff82097f58 r __ksymtab_xas_create_range
+ffffffff82097f64 r __ksymtab_xas_find
+ffffffff82097f70 r __ksymtab_xas_find_conflict
+ffffffff82097f7c r __ksymtab_xas_find_marked
+ffffffff82097f88 r __ksymtab_xas_get_mark
+ffffffff82097f94 r __ksymtab_xas_init_marks
+ffffffff82097fa0 r __ksymtab_xas_load
+ffffffff82097fac r __ksymtab_xas_nomem
+ffffffff82097fb8 r __ksymtab_xas_pause
+ffffffff82097fc4 r __ksymtab_xas_set_mark
+ffffffff82097fd0 r __ksymtab_xas_split
+ffffffff82097fdc r __ksymtab_xas_split_alloc
+ffffffff82097fe8 r __ksymtab_xas_store
+ffffffff82097ff4 r __ksymtab_xdp_alloc_skb_bulk
+ffffffff82098000 r __ksymtab_xdp_attachment_setup
+ffffffff8209800c r __ksymtab_xdp_build_skb_from_frame
+ffffffff82098018 r __ksymtab_xdp_convert_zc_to_xdp_frame
+ffffffff82098024 r __ksymtab_xdp_do_flush
+ffffffff82098030 r __ksymtab_xdp_do_redirect
+ffffffff8209803c r __ksymtab_xdp_do_redirect_frame
+ffffffff82098048 r __ksymtab_xdp_flush_frame_bulk
+ffffffff82098054 r __ksymtab_xdp_master_redirect
+ffffffff82098060 r __ksymtab_xdp_reg_mem_model
+ffffffff8209806c r __ksymtab_xdp_return_buff
+ffffffff82098078 r __ksymtab_xdp_return_frame
+ffffffff82098084 r __ksymtab_xdp_return_frame_bulk
+ffffffff82098090 r __ksymtab_xdp_return_frame_rx_napi
+ffffffff8209809c r __ksymtab_xdp_rxq_info_is_reg
+ffffffff820980a8 r __ksymtab_xdp_rxq_info_reg_mem_model
+ffffffff820980b4 r __ksymtab_xdp_rxq_info_unreg
+ffffffff820980c0 r __ksymtab_xdp_rxq_info_unreg_mem_model
+ffffffff820980cc r __ksymtab_xdp_rxq_info_unused
+ffffffff820980d8 r __ksymtab_xdp_unreg_mem_model
+ffffffff820980e4 r __ksymtab_xdp_warn
+ffffffff820980f0 r __ksymtab_xfrm_aalg_get_byid
+ffffffff820980fc r __ksymtab_xfrm_aalg_get_byidx
+ffffffff82098108 r __ksymtab_xfrm_aalg_get_byname
+ffffffff82098114 r __ksymtab_xfrm_aead_get_byname
+ffffffff82098120 r __ksymtab_xfrm_audit_policy_add
+ffffffff8209812c r __ksymtab_xfrm_audit_policy_delete
+ffffffff82098138 r __ksymtab_xfrm_audit_state_add
+ffffffff82098144 r __ksymtab_xfrm_audit_state_delete
+ffffffff82098150 r __ksymtab_xfrm_audit_state_icvfail
+ffffffff8209815c r __ksymtab_xfrm_audit_state_notfound
+ffffffff82098168 r __ksymtab_xfrm_audit_state_notfound_simple
+ffffffff82098174 r __ksymtab_xfrm_audit_state_replay
+ffffffff82098180 r __ksymtab_xfrm_audit_state_replay_overflow
+ffffffff8209818c r __ksymtab_xfrm_calg_get_byid
+ffffffff82098198 r __ksymtab_xfrm_calg_get_byname
+ffffffff820981a4 r __ksymtab_xfrm_count_pfkey_auth_supported
+ffffffff820981b0 r __ksymtab_xfrm_count_pfkey_enc_supported
+ffffffff820981bc r __ksymtab_xfrm_ealg_get_byid
+ffffffff820981c8 r __ksymtab_xfrm_ealg_get_byidx
+ffffffff820981d4 r __ksymtab_xfrm_ealg_get_byname
+ffffffff820981e0 r __ksymtab_xfrm_local_error
+ffffffff820981ec r __ksymtab_xfrm_msg_min
+ffffffff820981f8 r __ksymtab_xfrm_output
+ffffffff82098204 r __ksymtab_xfrm_output_resume
+ffffffff82098210 r __ksymtab_xfrm_probe_algs
+ffffffff8209821c r __ksymtab_xfrm_state_afinfo_get_rcu
+ffffffff82098228 r __ksymtab_xfrm_state_mtu
+ffffffff82098234 r __ksymtab_xfrma_policy
+ffffffff82098240 r __ksymtab_xstate_get_guest_group_perm
+ffffffff8209824c r __ksymtab_yield_to
+ffffffff82098258 r __ksymtab_zap_vma_ptes
+ffffffff82098264 r __ksymtab_zs_compact
+ffffffff82098270 r __ksymtab_zs_create_pool
+ffffffff8209827c r __ksymtab_zs_destroy_pool
+ffffffff82098288 r __ksymtab_zs_free
+ffffffff82098294 r __ksymtab_zs_get_total_pages
+ffffffff820982a0 r __ksymtab_zs_huge_class_size
+ffffffff820982ac r __ksymtab_zs_malloc
+ffffffff820982b8 r __ksymtab_zs_map_object
+ffffffff820982c4 r __ksymtab_zs_pool_stats
+ffffffff820982d0 r __ksymtab_zs_unmap_object
+ffffffff820982dc R __start___kcrctab
+ffffffff820982dc R __start___kcrctab_gpl
+ffffffff820982dc R __stop___kcrctab
+ffffffff820982dc R __stop___kcrctab_gpl
+ffffffff820982dc R __stop___ksymtab_gpl
+ffffffff820c26f0 r __param_initcall_debug
+ffffffff820c26f0 R __start___param
+ffffffff820c2718 r __param_uncore_no_discover
+ffffffff820c2740 r __param_panic
+ffffffff820c2768 r __param_panic_print
+ffffffff820c2790 r __param_pause_on_oops
+ffffffff820c27b8 r __param_panic_on_warn
+ffffffff820c27e0 r __param_crash_kexec_post_notifiers
+ffffffff820c2808 r __param_disable_numa
+ffffffff820c2830 r __param_power_efficient
+ffffffff820c2858 r __param_debug_force_rr_cpu
+ffffffff820c2880 r __param_watchdog_thresh
+ffffffff820c28a8 r __param_ignore_loglevel
+ffffffff820c28d0 r __param_time
+ffffffff820c28f8 r __param_console_suspend
+ffffffff820c2920 r __param_console_no_auto_verbose
+ffffffff820c2948 r __param_always_kmsg_dump
+ffffffff820c2970 r __param_noirqdebug
+ffffffff820c2998 r __param_irqfixup
+ffffffff820c29c0 r __param_rcu_expedited
+ffffffff820c29e8 r __param_rcu_normal
+ffffffff820c2a10 r __param_rcu_normal_after_boot
+ffffffff820c2a38 r __param_rcu_cpu_stall_ftrace_dump
+ffffffff820c2a60 r __param_rcu_cpu_stall_suppress
+ffffffff820c2a88 r __param_rcu_cpu_stall_timeout
+ffffffff820c2ab0 r __param_rcu_exp_cpu_stall_timeout
+ffffffff820c2ad8 r __param_rcu_cpu_stall_suppress_at_boot
+ffffffff820c2b00 r __param_rcu_task_ipi_delay
+ffffffff820c2b28 r __param_rcu_task_stall_timeout
+ffffffff820c2b50 r __param_rcu_task_stall_info
+ffffffff820c2b78 r __param_rcu_task_stall_info_mult
+ffffffff820c2ba0 r __param_rcu_task_enqueue_lim
+ffffffff820c2bc8 r __param_rcu_task_contend_lim
+ffffffff820c2bf0 r __param_rcu_task_collapse_lim
+ffffffff820c2c18 r __param_exp_holdoff
+ffffffff820c2c40 r __param_counter_wrap_check
+ffffffff820c2c68 r __param_convert_to_big
+ffffffff820c2c90 r __param_big_cpu_lim
+ffffffff820c2cb8 r __param_small_contention_lim
+ffffffff820c2ce0 r __param_srcu_retry_check_delay
+ffffffff820c2d08 r __param_srcu_max_nodelay_phase
+ffffffff820c2d30 r __param_srcu_max_nodelay
+ffffffff820c2d58 r __param_dump_tree
+ffffffff820c2d80 r __param_use_softirq
+ffffffff820c2da8 r __param_rcu_fanout_exact
+ffffffff820c2dd0 r __param_rcu_fanout_leaf
+ffffffff820c2df8 r __param_kthread_prio
+ffffffff820c2e20 r __param_gp_preinit_delay
+ffffffff820c2e48 r __param_gp_init_delay
+ffffffff820c2e70 r __param_gp_cleanup_delay
+ffffffff820c2e98 r __param_rcu_min_cached_objs
+ffffffff820c2ec0 r __param_rcu_delay_page_cache_fill_msec
+ffffffff820c2ee8 r __param_blimit
+ffffffff820c2f10 r __param_qhimark
+ffffffff820c2f38 r __param_qlowmark
+ffffffff820c2f60 r __param_qovld
+ffffffff820c2f88 r __param_rcu_divisor
+ffffffff820c2fb0 r __param_rcu_resched_ns
+ffffffff820c2fd8 r __param_jiffies_till_sched_qs
+ffffffff820c3000 r __param_jiffies_to_sched_qs
+ffffffff820c3028 r __param_jiffies_till_first_fqs
+ffffffff820c3050 r __param_jiffies_till_next_fqs
+ffffffff820c3078 r __param_rcu_kick_kthreads
+ffffffff820c30a0 r __param_sysrq_rcu
+ffffffff820c30c8 r __param_nocb_nobypass_lim_per_jiffy
+ffffffff820c30f0 r __param_rcu_nocb_gp_stride
+ffffffff820c3118 r __param_nomodule
+ffffffff820c3140 r __param_module_blacklist
+ffffffff820c3168 r __param_async_probe
+ffffffff820c3190 r __param_max_cswd_read_retries
+ffffffff820c31b8 r __param_verify_n_cpus
+ffffffff820c31e0 r __param_ignore_rlimit_data
+ffffffff820c3208 r __param_shuffle
+ffffffff820c3230 r __param_memmap_on_memory
+ffffffff820c3258 r __param_online_policy
+ffffffff820c3280 r __param_auto_movable_ratio
+ffffffff820c32a8 r __param_sample_interval
+ffffffff820c32d0 r __param_skip_covered_thresh
+ffffffff820c32f8 r __param_deferrable
+ffffffff820c3320 r __param_check_on_panic
+ffffffff820c3348 r __param_enable
+ffffffff820c3370 r __param_commit_inputs
+ffffffff820c3398 r __param_min_age
+ffffffff820c33c0 r __param_quota_ms
+ffffffff820c33e8 r __param_quota_reset_interval_ms
+ffffffff820c3410 r __param_quota_sz
+ffffffff820c3438 r __param_wmarks_interval
+ffffffff820c3460 r __param_wmarks_high
+ffffffff820c3488 r __param_wmarks_mid
+ffffffff820c34b0 r __param_wmarks_low
+ffffffff820c34d8 r __param_sample_interval
+ffffffff820c3500 r __param_aggr_interval
+ffffffff820c3528 r __param_min_nr_regions
+ffffffff820c3550 r __param_max_nr_regions
+ffffffff820c3578 r __param_monitor_region_start
+ffffffff820c35a0 r __param_monitor_region_end
+ffffffff820c35c8 r __param_kdamond_pid
+ffffffff820c35f0 r __param_nr_reclaim_tried_regions
+ffffffff820c3618 r __param_bytes_reclaim_tried_regions
+ffffffff820c3640 r __param_nr_reclaimed_regions
+ffffffff820c3668 r __param_bytes_reclaimed_regions
+ffffffff820c3690 r __param_nr_quota_exceeds
+ffffffff820c36b8 r __param_enabled
+ffffffff820c36e0 r __param_page_reporting_order
+ffffffff820c3708 r __param_allow_sys_admin_access
+ffffffff820c3730 r __param_max_user_bgreq
+ffffffff820c3758 r __param_max_user_congthresh
+ffffffff820c3780 r __param_notests
+ffffffff820c37a8 r __param_panic_on_fail
+ffffffff820c37d0 r __param_cryptd_max_cpu_qlen
+ffffffff820c37f8 r __param_dbg
+ffffffff820c3820 r __param_events_dfl_poll_msecs
+ffffffff820c3848 r __param_blkcg_debug_stats
+ffffffff820c3870 r __param_num_prealloc_crypt_ctxs
+ffffffff820c3898 r __param_num_prealloc_bounce_pg
+ffffffff820c38c0 r __param_num_keyslots
+ffffffff820c38e8 r __param_num_prealloc_fallback_crypt_ctxs
+ffffffff820c3910 r __param_verbose
+ffffffff820c3938 r __param_run_edge_events_on_boot
+ffffffff820c3960 r __param_ignore_wake
+ffffffff820c3988 r __param_ignore_interrupt
+ffffffff820c39b0 r __param_policy
+ffffffff820c39d8 r __param_ec_delay
+ffffffff820c3a00 r __param_ec_max_queries
+ffffffff820c3a28 r __param_ec_busy_polling
+ffffffff820c3a50 r __param_ec_polling_guard
+ffffffff820c3a78 r __param_ec_storm_threshold
+ffffffff820c3aa0 r __param_ec_freeze_events
+ffffffff820c3ac8 r __param_ec_no_wakeup
+ffffffff820c3af0 r __param_ec_event_clearing
+ffffffff820c3b18 r __param_aml_debug_output
+ffffffff820c3b40 r __param_acpica_version
+ffffffff820c3b68 r __param_sleep_no_lps0
+ffffffff820c3b90 r __param_lid_report_interval
+ffffffff820c3bb8 r __param_lid_init_state
+ffffffff820c3be0 r __param_max_cstate
+ffffffff820c3c08 r __param_nocst
+ffffffff820c3c30 r __param_bm_check_disable
+ffffffff820c3c58 r __param_latency_factor
+ffffffff820c3c80 r __param_ignore_tpc
+ffffffff820c3ca8 r __param_ignore_ppc
+ffffffff820c3cd0 r __param_act
+ffffffff820c3cf8 r __param_crt
+ffffffff820c3d20 r __param_tzp
+ffffffff820c3d48 r __param_nocrt
+ffffffff820c3d70 r __param_off
+ffffffff820c3d98 r __param_psv
+ffffffff820c3dc0 r __param_cache_time
+ffffffff820c3de8 r __param_debug
+ffffffff820c3e10 r __param_force_legacy
+ffffffff820c3e38 r __param_reset_seq
+ffffffff820c3e60 r __param_sysrq_downtime_ms
+ffffffff820c3e88 r __param_brl_timeout
+ffffffff820c3eb0 r __param_brl_nbchords
+ffffffff820c3ed8 r __param_default_utf8
+ffffffff820c3f00 r __param_global_cursor_default
+ffffffff820c3f28 r __param_cur_default
+ffffffff820c3f50 r __param_consoleblank
+ffffffff820c3f78 r __param_default_red
+ffffffff820c3fa0 r __param_default_grn
+ffffffff820c3fc8 r __param_default_blu
+ffffffff820c3ff0 r __param_color
+ffffffff820c4018 r __param_italic
+ffffffff820c4040 r __param_underline
+ffffffff820c4068 r __param_share_irqs
+ffffffff820c4090 r __param_nr_uarts
+ffffffff820c40b8 r __param_skip_txen_test
+ffffffff820c40e0 r __param_ratelimit_disable
+ffffffff820c4108 r __param_current_quality
+ffffffff820c4130 r __param_default_quality
+ffffffff820c4158 r __param_no_fwh_detect
+ffffffff820c4180 r __param_path
+ffffffff820c41a8 r __param_rd_nr
+ffffffff820c41d0 r __param_rd_size
+ffffffff820c41f8 r __param_max_part
+ffffffff820c4220 r __param_max_loop
+ffffffff820c4248 r __param_max_part
+ffffffff820c4270 r __param_hw_queue_depth
+ffffffff820c4298 r __param_num_request_queues
+ffffffff820c42c0 r __param_poll_queues
+ffffffff820c42e8 r __param_queue_depth
+ffffffff820c4310 r __param_num_devices
+ffffffff820c4338 r __param_nokbd
+ffffffff820c4360 r __param_noaux
+ffffffff820c4388 r __param_nomux
+ffffffff820c43b0 r __param_unlock
+ffffffff820c43d8 r __param_probe_defer
+ffffffff820c4400 r __param_reset
+ffffffff820c4428 r __param_direct
+ffffffff820c4450 r __param_dumbkbd
+ffffffff820c4478 r __param_noloop
+ffffffff820c44a0 r __param_notimeout
+ffffffff820c44c8 r __param_kbdreset
+ffffffff820c44f0 r __param_dritek
+ffffffff820c4518 r __param_nopnp
+ffffffff820c4540 r __param_debug
+ffffffff820c4568 r __param_unmask_kbd_data
+ffffffff820c4590 r __param_use_acpi_alarm
+ffffffff820c45b8 r __param_stop_on_reboot
+ffffffff820c45e0 r __param_handle_boot_enabled
+ffffffff820c4608 r __param_open_timeout
+ffffffff820c4630 r __param_create
+ffffffff820c4658 r __param_major
+ffffffff820c4680 r __param_reserved_bio_based_ios
+ffffffff820c46a8 r __param_dm_numa_node
+ffffffff820c46d0 r __param_swap_bios
+ffffffff820c46f8 r __param_kcopyd_subjob_size_kb
+ffffffff820c4720 r __param_stats_current_allocated_bytes
+ffffffff820c4748 r __param_reserved_rq_based_ios
+ffffffff820c4770 r __param_use_blk_mq
+ffffffff820c4798 r __param_dm_mq_nr_hw_queues
+ffffffff820c47c0 r __param_dm_mq_queue_depth
+ffffffff820c47e8 r __param_max_cache_size_bytes
+ffffffff820c4810 r __param_max_age_seconds
+ffffffff820c4838 r __param_retain_bytes
+ffffffff820c4860 r __param_peak_allocated_bytes
+ffffffff820c4888 r __param_allocated_kmem_cache_bytes
+ffffffff820c48b0 r __param_allocated_get_free_pages_bytes
+ffffffff820c48d8 r __param_allocated_vmalloc_bytes
+ffffffff820c4900 r __param_current_allocated_bytes
+ffffffff820c4928 r __param_prefetch_cluster
+ffffffff820c4950 r __param_dm_user_daemon_timeout_msec
+ffffffff820c4978 r __param_edac_mc_panic_on_ue
+ffffffff820c49a0 r __param_edac_mc_log_ue
+ffffffff820c49c8 r __param_edac_mc_log_ce
+ffffffff820c49f0 r __param_edac_mc_poll_msec
+ffffffff820c4a18 r __param_check_pci_errors
+ffffffff820c4a40 r __param_edac_pci_panic_on_pe
+ffffffff820c4a68 r __param_off
+ffffffff820c4a90 r __param_default_governor
+ffffffff820c4ab8 r __param_off
+ffffffff820c4ae0 r __param_governor
+ffffffff820c4b08 r __param_force
+ffffffff820c4b30 r __param_log_ecn_error
+ffffffff820c4b58 r __param_log_ecn_error
+ffffffff820c4b80 r __param_fast_convergence
+ffffffff820c4ba8 r __param_beta
+ffffffff820c4bd0 r __param_initial_ssthresh
+ffffffff820c4bf8 r __param_bic_scale
+ffffffff820c4c20 r __param_tcp_friendliness
+ffffffff820c4c48 r __param_hystart
+ffffffff820c4c70 r __param_hystart_detect
+ffffffff820c4c98 r __param_hystart_low_window
+ffffffff820c4cc0 r __param_hystart_ack_delta_us
+ffffffff820c4ce8 r __param_disable
+ffffffff820c4d10 r __param_disable_ipv6
+ffffffff820c4d38 r __param_autoconf
+ffffffff820c4d60 r __param_log_ecn_error
+ffffffff820c4d88 r __param_log_ecn_error
+ffffffff820c4db0 r __param_log_ecn_error
+ffffffff820c4dd8 r __param_virtio_transport_max_vsock_pkt_buf_size
+ffffffff820c4e00 r __param_backtrace_idle
+ffffffff820c4e28 d __modver_attr
+ffffffff820c4e28 D __start___modver
+ffffffff820c4e28 R __stop___param
+ffffffff820c4e70 d __modver_attr
+ffffffff820c4eb8 d __modver_attr
+ffffffff820c4f00 d __modver_attr
+ffffffff820c4f48 d __modver_attr
+ffffffff820c4f90 d __modver_attr
+ffffffff820c4fd8 D __stop___modver
+ffffffff820c4fe0 R __start___ex_table
+ffffffff820c81fc R __start_notes
+ffffffff820c81fc R __stop___ex_table
+ffffffff820c81fc r _note_41
+ffffffff820c8214 r _note_42
+ffffffff820c8250 R __stop_notes
+ffffffff820c9000 R __end_rodata
 ffffffff82200000 R __end_rodata_aligned
 ffffffff82200000 R __end_rodata_hpage_align
 ffffffff82200000 D __start_init_task
@@ -42037,25 +50837,26 @@
 ffffffff822060c0 d softirq_vec
 ffffffff82206140 d pidmap_lock
 ffffffff82206180 d bit_wait_table
-ffffffff82207980 D jiffies
-ffffffff82207980 d jiffies_64
-ffffffff822079c0 d jiffies_lock
-ffffffff82207a00 d jiffies_seq
-ffffffff82207a40 d tick_broadcast_lock
-ffffffff82207a80 d hash_lock
-ffffffff82207ac0 d folio_wait_table
-ffffffff822092c0 d vm_numa_event
-ffffffff822092c0 d vm_zone_stat
-ffffffff82209340 d vm_node_stat
-ffffffff822094c0 d nr_files
-ffffffff82209500 d rename_lock
-ffffffff82209540 d inode_hash_lock
-ffffffff82209580 d mount_lock
-ffffffff822095c0 d bdev_lock
-ffffffff82209600 d aes_sbox
-ffffffff82209600 d crypto_aes_sbox
-ffffffff82209700 d aes_inv_sbox
-ffffffff82209700 d crypto_aes_inv_sbox
+ffffffff82207980 d mod_tree
+ffffffff822079c0 D jiffies
+ffffffff822079c0 d jiffies_64
+ffffffff82207a00 d jiffies_lock
+ffffffff82207a40 d jiffies_seq
+ffffffff82207a80 d tick_broadcast_lock
+ffffffff82207ac0 d hash_lock
+ffffffff82207b00 d folio_wait_table
+ffffffff82209300 d vm_numa_event
+ffffffff82209300 d vm_zone_stat
+ffffffff82209380 d vm_node_stat
+ffffffff82209500 d nr_files
+ffffffff82209540 d rename_lock
+ffffffff82209580 d inode_hash_lock
+ffffffff822095c0 d mount_lock
+ffffffff82209600 d bdev_lock
+ffffffff82209640 d aes_sbox
+ffffffff82209640 d crypto_aes_sbox
+ffffffff82209740 d aes_inv_sbox
+ffffffff82209740 d crypto_aes_inv_sbox
 ffffffff8220a000 D init_top_pgt
 ffffffff8220c000 D level4_kernel_pgt
 ffffffff8220d000 D level3_kernel_pgt
@@ -42091,17873 +50892,17931 @@
 ffffffff82212418 d event_initcall_finish
 ffffffff822124b0 d argv_init
 ffffffff822125c0 d ramdisk_execute_command
-ffffffff822125c8 d loops_per_jiffy
-ffffffff822125d0 d envp_init
-ffffffff822126e0 d __SCK__tp_func_initcall_level
-ffffffff822126f0 d __SCK__tp_func_initcall_start
-ffffffff82212700 d __SCK__tp_func_initcall_finish
-ffffffff822128c0 d root_mountflags
-ffffffff822128c8 d rootfs_fs_type
-ffffffff82212910 d kern_do_mounts_initrd_table
-ffffffff82212990 d handle_initrd.argv
-ffffffff822129a0 d wait_for_initramfs.__already_done
-ffffffff822129a1 d alloc_bts_buffer.__already_done
-ffffffff822129a2 d setup_pebs_adaptive_sample_data.__already_done
-ffffffff822129a3 d knc_pmu_handle_irq.__already_done
-ffffffff822129a4 d p4_get_escr_idx.__already_done
-ffffffff822129a5 d uncore_mmio_is_valid_offset.__already_done
-ffffffff822129a6 d uncore_mmio_is_valid_offset.__already_done
-ffffffff822129a7 d get_stack_info.__already_done
-ffffffff822129a8 d apply_returns.__already_done
-ffffffff822129a9 d arch_install_hw_breakpoint.__already_done
-ffffffff822129aa d arch_uninstall_hw_breakpoint.__already_done
-ffffffff822129ab d select_idle_routine.__already_done
-ffffffff822129ac d __xfd_enable_feature.__already_done
-ffffffff822129ad d setup_xstate_cache.__already_done
-ffffffff822129ae d paranoid_xstate_size_valid.__already_done
-ffffffff822129af d paranoid_xstate_size_valid.__already_done.26
-ffffffff822129b0 d check_xstate_against_struct.__already_done
-ffffffff822129b1 d check_xstate_against_struct.__already_done.30
-ffffffff822129b2 d check_xstate_against_struct.__already_done.32
-ffffffff822129b3 d check_xstate_against_struct.__already_done.34
-ffffffff822129b4 d check_xstate_against_struct.__already_done.36
-ffffffff822129b5 d check_xstate_against_struct.__already_done.38
-ffffffff822129b6 d check_xstate_against_struct.__already_done.40
-ffffffff822129b7 d check_xstate_against_struct.__already_done.42
-ffffffff822129b8 d check_xstate_against_struct.__already_done.44
-ffffffff822129b9 d check_xstate_against_struct.__already_done.46
-ffffffff822129ba d native_write_cr0.__already_done
-ffffffff822129bb d native_write_cr4.__already_done
-ffffffff822129bc d detect_ht_early.__already_done
-ffffffff822129bd d get_cpu_vendor.__already_done
-ffffffff822129be d setup_umip.__already_done
-ffffffff822129bf d cpu_bugs_smt_update.__already_done.2
-ffffffff822129c0 d cpu_bugs_smt_update.__already_done.4
-ffffffff822129c1 d cpu_bugs_smt_update.__already_done.6
-ffffffff822129c2 d spectre_v2_determine_rsb_fill_type_at_vmexit.__already_done
-ffffffff822129c3 d handle_guest_split_lock.__already_done
-ffffffff822129c4 d detect_tme.__already_done
-ffffffff822129c5 d detect_tme.__already_done.11
-ffffffff822129c6 d detect_tme.__already_done.13
-ffffffff822129c7 d detect_tme.__already_done.18
-ffffffff822129c8 d detect_tme.__already_done.20
-ffffffff822129c9 d detect_tme.__already_done.22
-ffffffff822129ca d intel_epb_restore.__already_done
-ffffffff822129cb d early_init_amd.__already_done
-ffffffff822129cc d rdmsrl_amd_safe.__already_done
-ffffffff822129cd d wrmsrl_amd_safe.__already_done
-ffffffff822129ce d clear_rdrand_cpuid_bit.__already_done
-ffffffff822129cf d clear_rdrand_cpuid_bit.__already_done.11
-ffffffff822129d0 d print_ucode_info.__already_done
-ffffffff822129d1 d is_blacklisted.__already_done
-ffffffff822129d2 d is_blacklisted.__already_done.15
-ffffffff822129d3 d tsc_store_and_check_tsc_adjust.__already_done
-ffffffff822129d4 d __x2apic_disable.__already_done
-ffffffff822129d5 d __x2apic_enable.__already_done
-ffffffff822129d6 d allocate_logical_cpuid.__already_done
-ffffffff822129d7 d __kvm_handle_async_pf.__already_done
-ffffffff822129d8 d arch_haltpoll_enable.__already_done
-ffffffff822129d9 d arch_haltpoll_enable.__already_done.9
-ffffffff822129da d __send_ipi_mask.__already_done
-ffffffff822129db d __send_ipi_mask.__already_done.23
-ffffffff822129dc d unwind_next_frame.__already_done
-ffffffff822129dd d unwind_next_frame.__already_done.1
-ffffffff822129de d spurious_kernel_fault.__already_done
-ffffffff822129df d is_errata93.__already_done
-ffffffff822129e0 d __ioremap_caller.__already_done
-ffffffff822129e1 d ex_handler_uaccess.__already_done
-ffffffff822129e2 d ex_handler_copy.__already_done
-ffffffff822129e3 d ex_handler_fprestore.__already_done
-ffffffff822129e4 d ex_handler_msr.__already_done
-ffffffff822129e5 d ex_handler_msr.__already_done.5
-ffffffff822129e6 d pmd_set_huge.__already_done
-ffffffff822129e7 d kernel_map_pages_in_pgd.__already_done
-ffffffff822129e8 d kernel_unmap_pages_in_pgd.__already_done
-ffffffff822129e9 d verify_rwx.__already_done
-ffffffff822129ea d split_set_pte.__already_done
-ffffffff822129eb d pat_disable.__already_done
-ffffffff822129ec d pti_user_pagetable_walk_p4d.__already_done
-ffffffff822129ed d pti_user_pagetable_walk_pte.__already_done
-ffffffff822129ee d efi_memmap_entry_valid.__already_done
-ffffffff822129ef d dup_mm_exe_file.__already_done
-ffffffff822129f0 d __cpu_hotplug_enable.__already_done
-ffffffff822129f1 d tasklet_clear_sched.__already_done
-ffffffff822129f2 d warn_sysctl_write.__already_done
-ffffffff822129f3 d warn_legacy_capability_use.__already_done
-ffffffff822129f4 d warn_deprecated_v2.__already_done
-ffffffff822129f5 d __queue_work.__already_done
-ffffffff822129f6 d check_flush_dependency.__already_done
-ffffffff822129f7 d check_flush_dependency.__already_done.41
-ffffffff822129f8 d update_rq_clock.__already_done
-ffffffff822129f9 d rq_pin_lock.__already_done
-ffffffff822129fa d assert_clock_updated.__already_done
-ffffffff822129fb d uclamp_rq_dec_id.__already_done
-ffffffff822129fc d uclamp_rq_dec_id.__already_done.116
-ffffffff822129fd d __do_set_cpus_allowed.__already_done
-ffffffff822129fe d finish_task_switch.__already_done
-ffffffff822129ff d sched_submit_work.__already_done
-ffffffff82212a00 d nohz_balance_exit_idle.__already_done
-ffffffff82212a01 d nohz_balance_enter_idle.__already_done
-ffffffff82212a02 d assert_clock_updated.__already_done
-ffffffff82212a03 d hrtick_start_fair.__already_done
-ffffffff82212a04 d _nohz_idle_balance.__already_done
-ffffffff82212a05 d load_avg_is_decayed.__already_done
-ffffffff82212a06 d rq_pin_lock.__already_done
-ffffffff82212a07 d check_schedstat_required.__already_done
-ffffffff82212a08 d assert_list_leaf_cfs_rq.__already_done
-ffffffff82212a09 d set_next_buddy.__already_done
-ffffffff82212a0a d set_last_buddy.__already_done
-ffffffff82212a0b d rq_pin_lock.__already_done
-ffffffff82212a0c d assert_clock_updated.__already_done
-ffffffff82212a0d d check_schedstat_required.__already_done
-ffffffff82212a0e d pick_next_rt_entity.__already_done
-ffffffff82212a0f d sched_rt_runtime_exceeded.__already_done
-ffffffff82212a10 d replenish_dl_entity.__already_done
-ffffffff82212a11 d __sub_running_bw.__already_done
-ffffffff82212a12 d __sub_rq_bw.__already_done
-ffffffff82212a13 d __sub_rq_bw.__already_done.39
-ffffffff82212a14 d __add_rq_bw.__already_done
-ffffffff82212a15 d __add_running_bw.__already_done
-ffffffff82212a16 d __add_running_bw.__already_done.43
-ffffffff82212a17 d enqueue_task_dl.__already_done
-ffffffff82212a18 d psi_cgroup_free.__already_done
-ffffffff82212a19 d assert_clock_updated.__already_done
-ffffffff82212a1a d asym_cpu_capacity_update_data.__already_done
-ffffffff82212a1b d sd_init.__already_done
-ffffffff82212a1c d sd_init.__already_done.338
-ffffffff82212a1d d rq_pin_lock.__already_done
-ffffffff82212a1e d check_syslog_permissions.__already_done
-ffffffff82212a1f d console_emit_next_record.__already_done
-ffffffff82212a20 d prb_reserve_in_last.__already_done
-ffffffff82212a21 d prb_reserve_in_last.__already_done.2
-ffffffff82212a22 d __handle_irq_event_percpu.__already_done
-ffffffff82212a23 d irq_validate_effective_affinity.__already_done
-ffffffff82212a24 d irq_wait_for_poll.__already_done
-ffffffff82212a25 d handle_percpu_devid_irq.__already_done
-ffffffff82212a26 d bad_chained_irq.__already_done
-ffffffff82212a27 d synchronize_rcu_tasks_generic.__already_done
-ffffffff82212a28 d rcu_spawn_tasks_kthread_generic.__already_done
-ffffffff82212a29 d rcutree_migrate_callbacks.__already_done
-ffffffff82212a2a d rcu_note_context_switch.__already_done
-ffffffff82212a2b d rcu_stall_kick_kthreads.__already_done
-ffffffff82212a2c d rcu_spawn_gp_kthread.__already_done
-ffffffff82212a2d d rcu_spawn_core_kthreads.__already_done
-ffffffff82212a2e d rcu_spawn_cpu_nocb_kthread.__already_done
-ffffffff82212a2f d rcu_spawn_cpu_nocb_kthread.__already_done.278
-ffffffff82212a30 d dma_direct_map_page.__already_done
-ffffffff82212a31 d dma_direct_map_page.__already_done
-ffffffff82212a32 d swiotlb_map.__already_done
-ffffffff82212a33 d swiotlb_bounce.__already_done
-ffffffff82212a34 d swiotlb_bounce.__already_done.36
-ffffffff82212a35 d swiotlb_bounce.__already_done.38
-ffffffff82212a36 d call_timer_fn.__already_done
-ffffffff82212a37 d hrtimer_interrupt.__already_done
-ffffffff82212a38 d timekeeping_adjust.__already_done
-ffffffff82212a39 d clocksource_start_suspend_timing.__already_done
-ffffffff82212a3a d __clocksource_update_freq_scale.__already_done
-ffffffff82212a3b d alarmtimer_freezerset.__already_done
-ffffffff82212a3c d __do_sys_setitimer.__already_done
-ffffffff82212a3d d clockevents_program_event.__already_done
-ffffffff82212a3e d __clockevents_switch_state.__already_done
-ffffffff82212a3f d tick_device_setup_broadcast_func.__already_done
-ffffffff82212a40 d err_broadcast.__already_done
-ffffffff82212a41 d tick_nohz_stop_tick.__already_done
-ffffffff82212a42 d cpu_stopper_thread.__already_done
-ffffffff82212a43 d ring_buffer_event_time_stamp.__already_done
-ffffffff82212a44 d rb_check_timestamp.__already_done
-ffffffff82212a45 d tracing_snapshot.__already_done
-ffffffff82212a46 d tracing_snapshot_cond.__already_done
-ffffffff82212a47 d tracing_alloc_snapshot.__already_done
-ffffffff82212a48 d trace_check_vprintf.__already_done
-ffffffff82212a49 d early_trace_init.__already_done
-ffffffff82212a4a d alloc_percpu_trace_buffer.__already_done
-ffffffff82212a4b d create_trace_option_files.__already_done
-ffffffff82212a4c d tracing_read_pipe.__already_done
-ffffffff82212a4d d tracing_dentry_percpu.__already_done
-ffffffff82212a4e d create_trace_instances.__already_done
-ffffffff82212a4f d create_trace_instances.__already_done.212
-ffffffff82212a50 d tracer_alloc_buffers.__already_done
-ffffffff82212a51 d init_events.__already_done
-ffffffff82212a52 d detect_dups.__already_done
-ffffffff82212a53 d test_event_printk.__already_done
-ffffffff82212a54 d test_event_printk.__already_done.6
-ffffffff82212a55 d perf_trace_buf_alloc.__already_done
-ffffffff82212a56 d __uprobe_perf_func.__already_done
-ffffffff82212a57 d bpf_user_rnd_init_once.___done
-ffffffff82212a58 d __static_call_update.__already_done
-ffffffff82212a59 d perf_event_ksymbol.__already_done
-ffffffff82212a5a d jump_label_can_update.__already_done
-ffffffff82212a5b d memremap.__already_done
-ffffffff82212a5c d memremap.__already_done.2
-ffffffff82212a5d d rseq_warn_flags.__already_done
-ffffffff82212a5e d rseq_warn_flags.__already_done.14
-ffffffff82212a5f d free_large_kmalloc.__already_done
-ffffffff82212a60 d may_expand_vm.__already_done
-ffffffff82212a61 d __do_sys_remap_file_pages.__already_done
-ffffffff82212a62 d vma_to_resize.__already_done
-ffffffff82212a63 d __alloc_pages.__warned
-ffffffff82212a64 d __alloc_pages_slowpath.__warned
-ffffffff82212a65 d __alloc_pages_slowpath.__warned.56
-ffffffff82212a66 d __alloc_pages_slowpath.__warned.57
-ffffffff82212a67 d __alloc_pages_may_oom.__warned
-ffffffff82212a68 d __next_mem_range.__already_done
-ffffffff82212a69 d __next_mem_range_rev.__already_done
-ffffffff82212a6a d memblock_alloc_range_nid.__already_done
-ffffffff82212a6b d __add_pages.__already_done
-ffffffff82212a6c d madvise_populate.__already_done
-ffffffff82212a6d d enable_swap_slots_cache.__already_done
-ffffffff82212a6e d vmemmap_verify.__already_done
-ffffffff82212a6f d altmap_alloc_block_buf.__already_done
-ffffffff82212a70 d virt_to_cache.__already_done
-ffffffff82212a71 d page_counter_cancel.__already_done
-ffffffff82212a72 d mem_cgroup_update_lru_size.__already_done
-ffffffff82212a73 d mem_cgroup_hierarchy_write.__already_done
-ffffffff82212a74 d mem_cgroup_move_charge_write.__already_done
-ffffffff82212a75 d setup_swap_account.__already_done
-ffffffff82212a76 d setup_arg_pages.__already_done
-ffffffff82212a77 d do_execveat_common.__already_done
-ffffffff82212a78 d warn_mandlock.__already_done
-ffffffff82212a79 d mount_too_revealing.__already_done
-ffffffff82212a7a d show_mark_fhandle.__already_done
-ffffffff82212a7b d inotify_remove_from_idr.__already_done
-ffffffff82212a7c d inotify_remove_from_idr.__already_done.2
-ffffffff82212a7d d inotify_remove_from_idr.__already_done.3
-ffffffff82212a7e d __do_sys_flock.__already_done
-ffffffff82212a7f d hidepid2str.__already_done
-ffffffff82212a80 d __set_oom_adj.__already_done
-ffffffff82212a81 d find_next_ancestor.__already_done
-ffffffff82212a82 d kernfs_put.__already_done
-ffffffff82212a83 d ext4_end_bio.__already_done
-ffffffff82212a84 d ext4_journal_data_mode_check.__already_done
-ffffffff82212a85 d ext4_xattr_inode_update_ref.__already_done
-ffffffff82212a86 d ext4_xattr_inode_update_ref.__already_done.17
-ffffffff82212a87 d ext4_xattr_inode_update_ref.__already_done.19
-ffffffff82212a88 d ext4_xattr_inode_update_ref.__already_done.20
-ffffffff82212a89 d __jbd2_log_start_commit.__already_done
-ffffffff82212a8a d selinux_audit_rule_match.__already_done
-ffffffff82212a8b d selinux_audit_rule_match.__already_done.24
-ffffffff82212a8c d bvec_iter_advance.__already_done
-ffffffff82212a8d d dd_exit_sched.__already_done
-ffffffff82212a8e d blk_crypto_start_using_key.__already_done
-ffffffff82212a8f d blk_crypto_fallback_start_using_mode.__already_done
-ffffffff82212a90 d io_epoll_ctl_prep.__already_done
-ffffffff82212a91 d io_wqe_create_worker.__already_done
-ffffffff82212a92 d percpu_ref_kill_and_confirm.__already_done
-ffffffff82212a93 d percpu_ref_switch_to_atomic_rcu.__already_done
-ffffffff82212a94 d refcount_warn_saturate.__already_done
-ffffffff82212a95 d refcount_warn_saturate.__already_done.2
-ffffffff82212a96 d refcount_warn_saturate.__already_done.3
-ffffffff82212a97 d refcount_warn_saturate.__already_done.5
-ffffffff82212a98 d refcount_warn_saturate.__already_done.7
-ffffffff82212a99 d refcount_warn_saturate.__already_done.9
-ffffffff82212a9a d refcount_dec_not_one.__already_done
-ffffffff82212a9b d netdev_reg_state.__already_done
-ffffffff82212a9c d depot_alloc_stack.__already_done
-ffffffff82212a9d d acpi_gpio_in_ignore_list.__already_done
-ffffffff82212a9e d pci_disable_device.__already_done
-ffffffff82212a9f d pci_remap_iospace.__already_done
-ffffffff82212aa0 d pci_disable_acs_redir.__already_done
-ffffffff82212aa1 d pci_specified_resource_alignment.__already_done
-ffffffff82212aa2 d pci_pm_suspend.__already_done
-ffffffff82212aa3 d pci_legacy_suspend.__already_done
-ffffffff82212aa4 d pci_pm_suspend_noirq.__already_done
-ffffffff82212aa5 d pci_pm_runtime_suspend.__already_done
-ffffffff82212aa6 d of_irq_parse_pci.__already_done
-ffffffff82212aa7 d quirk_intel_mc_errata.__already_done
-ffffffff82212aa8 d devm_pci_epc_destroy.__already_done
-ffffffff82212aa9 d acpi_osi_handler.__already_done
-ffffffff82212aaa d acpi_osi_handler.__already_done.39
-ffffffff82212aab d acpi_quirk_skip_acpi_ac_and_battery.__already_done
-ffffffff82212aac d acpi_lid_notify_state.__already_done
-ffffffff82212aad d acpi_battery_get_state.__already_done
-ffffffff82212aae d dma_map_single_attrs.__already_done
-ffffffff82212aaf d do_con_write.__already_done
-ffffffff82212ab0 d syscore_suspend.__already_done
-ffffffff82212ab1 d syscore_suspend.__already_done.3
-ffffffff82212ab2 d syscore_resume.__already_done
-ffffffff82212ab3 d syscore_resume.__already_done.10
-ffffffff82212ab4 d dev_pm_attach_wake_irq.__already_done
-ffffffff82212ab5 d wakeup_source_activate.__already_done
-ffffffff82212ab6 d fw_run_sysfs_fallback.__already_done
-ffffffff82212ab7 d regmap_register_patch.__already_done
-ffffffff82212ab8 d regmap_field_init.__already_done
-ffffffff82212ab9 d loop_control_remove.__already_done
-ffffffff82212aba d alloc_nvdimm_map.__already_done
-ffffffff82212abb d walk_to_nvdimm_bus.__already_done
-ffffffff82212abc d __available_slots_show.__already_done
-ffffffff82212abd d nvdimm_security_flags.__already_done
-ffffffff82212abe d dpa_align.__already_done
-ffffffff82212abf d dpa_align.__already_done.53
-ffffffff82212ac0 d __reserve_free_pmem.__already_done
-ffffffff82212ac1 d __nvdimm_namespace_capacity.__already_done
-ffffffff82212ac2 d nvdimm_namespace_common_probe.__already_done
-ffffffff82212ac3 d grow_dpa_allocation.__already_done
-ffffffff82212ac4 d nd_namespace_label_update.__already_done
-ffffffff82212ac5 d __pmem_label_update.__already_done
-ffffffff82212ac6 d nvdimm_badblocks_populate.__already_done
-ffffffff82212ac7 d __nd_detach_ndns.__already_done
-ffffffff82212ac8 d __nd_attach_ndns.__already_done
-ffffffff82212ac9 d nsio_rw_bytes.__already_done
-ffffffff82212aca d devm_exit_badblocks.__already_done
-ffffffff82212acb d nd_pmem_notify.__already_done
-ffffffff82212acc d btt_map_init.__already_done
-ffffffff82212acd d btt_map_init.__already_done.21
-ffffffff82212ace d btt_log_init.__already_done
-ffffffff82212acf d btt_log_init.__already_done.24
-ffffffff82212ad0 d btt_info_write.__already_done
-ffffffff82212ad1 d btt_info_write.__already_done.26
-ffffffff82212ad2 d dax_destroy_inode.__already_done
-ffffffff82212ad3 d devm_create_dev_dax.__already_done
-ffffffff82212ad4 d devm_create_dev_dax.__already_done.3
-ffffffff82212ad5 d devm_create_dev_dax.__already_done.6
-ffffffff82212ad6 d alloc_dev_dax_range.__already_done
-ffffffff82212ad7 d dev_dax_resize.__already_done
-ffffffff82212ad8 d dev_dax_shrink.__already_done
-ffffffff82212ad9 d adjust_dev_dax_range.__already_done
-ffffffff82212ada d devm_register_dax_mapping.__already_done
-ffffffff82212adb d thermal_zone_device_update.__already_done
-ffffffff82212adc d trans_table_show.__already_done
-ffffffff82212add d user_space_bind.__already_done
-ffffffff82212ade d intel_init_thermal.__already_done
-ffffffff82212adf d bvec_iter_advance.__already_done
-ffffffff82212ae0 d dm_bvec_iter_rewind.__already_done
-ffffffff82212ae1 d bvec_iter_advance.__already_done
-ffffffff82212ae2 d bvec_iter_advance.__already_done
-ffffffff82212ae3 d csrow_dev_is_visible.__already_done
-ffffffff82212ae4 d show_trans_table.__already_done
-ffffffff82212ae5 d store_no_turbo.__already_done
-ffffffff82212ae6 d efi_mem_desc_lookup.__already_done
-ffffffff82212ae7 d efi_mem_desc_lookup.__already_done.3
-ffffffff82212ae8 d virt_efi_get_time.__already_done
-ffffffff82212ae9 d virt_efi_set_time.__already_done
-ffffffff82212aea d virt_efi_get_wakeup_time.__already_done
-ffffffff82212aeb d virt_efi_set_wakeup_time.__already_done
-ffffffff82212aec d virt_efi_get_variable.__already_done
-ffffffff82212aed d virt_efi_get_next_variable.__already_done
-ffffffff82212aee d virt_efi_set_variable.__already_done
-ffffffff82212aef d virt_efi_get_next_high_mono_count.__already_done
-ffffffff82212af0 d virt_efi_query_variable_info.__already_done
-ffffffff82212af1 d virt_efi_update_capsule.__already_done
-ffffffff82212af2 d virt_efi_query_capsule_caps.__already_done
-ffffffff82212af3 d of_graph_parse_endpoint.__already_done
-ffffffff82212af4 d of_graph_get_next_endpoint.__already_done
-ffffffff82212af5 d of_node_is_pcie.__already_done
-ffffffff82212af6 d __sock_create.__already_done
-ffffffff82212af7 d kernel_sendpage.__already_done
-ffffffff82212af8 d skb_expand_head.__already_done
-ffffffff82212af9 d __skb_vlan_pop.__already_done
-ffffffff82212afa d skb_vlan_push.__already_done
-ffffffff82212afb d ts_secret_init.___done
-ffffffff82212afc d net_secret_init.___done
-ffffffff82212afd d __flow_hash_secret_init.___done
-ffffffff82212afe d __dev_get_by_flags.__already_done
-ffffffff82212aff d dev_change_name.__already_done
-ffffffff82212b00 d __netdev_notify_peers.__already_done
-ffffffff82212b01 d netif_set_real_num_tx_queues.__already_done
-ffffffff82212b02 d netif_set_real_num_rx_queues.__already_done
-ffffffff82212b03 d skb_checksum_help.__already_done
-ffffffff82212b04 d skb_checksum_help.__already_done.52
-ffffffff82212b05 d netdev_rx_csum_fault.__already_done
-ffffffff82212b06 d netdev_is_rx_handler_busy.__already_done
-ffffffff82212b07 d netdev_rx_handler_unregister.__already_done
-ffffffff82212b08 d netif_napi_add_weight.__print_once
-ffffffff82212b09 d netdev_has_upper_dev.__already_done
-ffffffff82212b0a d netdev_has_any_upper_dev.__already_done
-ffffffff82212b0b d netdev_master_upper_dev_get.__already_done
-ffffffff82212b0c d netdev_offload_xstats_enable.__already_done
-ffffffff82212b0d d netdev_offload_xstats_disable.__already_done
-ffffffff82212b0e d netdev_offload_xstats_enabled.__already_done
-ffffffff82212b0f d netdev_offload_xstats_get.__already_done
-ffffffff82212b10 d netdev_offload_xstats_push_delta.__already_done
-ffffffff82212b11 d netdev_lower_state_changed.__already_done
-ffffffff82212b12 d __dev_change_flags.__already_done
-ffffffff82212b13 d dev_change_xdp_fd.__already_done
-ffffffff82212b14 d __netdev_update_features.__already_done
-ffffffff82212b15 d register_netdevice.__already_done
-ffffffff82212b16 d free_netdev.__already_done
-ffffffff82212b17 d unregister_netdevice_queue.__already_done
-ffffffff82212b18 d unregister_netdevice_many.__already_done
-ffffffff82212b19 d __dev_change_net_namespace.__already_done
-ffffffff82212b1a d __dev_open.__already_done
-ffffffff82212b1b d __dev_close_many.__already_done
-ffffffff82212b1c d netdev_reg_state.__already_done
-ffffffff82212b1d d call_netdevice_notifiers_info.__already_done
-ffffffff82212b1e d netif_get_rxqueue.__already_done
-ffffffff82212b1f d get_rps_cpu.__already_done
-ffffffff82212b20 d __napi_poll.__print_once
-ffffffff82212b21 d __napi_poll.__already_done
-ffffffff82212b22 d __netdev_upper_dev_link.__already_done
-ffffffff82212b23 d __netdev_has_upper_dev.__already_done
-ffffffff82212b24 d __netdev_master_upper_dev_get.__already_done
-ffffffff82212b25 d __netdev_upper_dev_unlink.__already_done
-ffffffff82212b26 d call_netdevice_notifiers_info_robust.__already_done
-ffffffff82212b27 d __dev_set_promiscuity.__already_done
-ffffffff82212b28 d __dev_set_allmulti.__already_done
-ffffffff82212b29 d dev_xdp_attach.__already_done
-ffffffff82212b2a d udp_tunnel_get_rx_info.__already_done
-ffffffff82212b2b d udp_tunnel_drop_rx_info.__already_done
-ffffffff82212b2c d vlan_get_rx_ctag_filter_info.__already_done
-ffffffff82212b2d d vlan_drop_rx_ctag_filter_info.__already_done
-ffffffff82212b2e d vlan_get_rx_stag_filter_info.__already_done
-ffffffff82212b2f d vlan_drop_rx_stag_filter_info.__already_done
-ffffffff82212b30 d list_netdevice.__already_done
-ffffffff82212b31 d unlist_netdevice.__already_done
-ffffffff82212b32 d flush_all_backlogs.__already_done
-ffffffff82212b33 d dev_xdp_uninstall.__already_done
-ffffffff82212b34 d netdev_has_any_lower_dev.__already_done
-ffffffff82212b35 d default_device_exit_net.__already_done
-ffffffff82212b36 d dev_addr_add.__already_done
-ffffffff82212b37 d dev_addr_del.__already_done
-ffffffff82212b38 d netdev_reg_state.__already_done
-ffffffff82212b39 d dst_release.__already_done
-ffffffff82212b3a d dst_release_immediate.__already_done
-ffffffff82212b3b d pneigh_lookup.__already_done
-ffffffff82212b3c d neigh_add.__already_done
-ffffffff82212b3d d neigh_delete.__already_done
-ffffffff82212b3e d rtnl_offload_xstats_notify.__already_done
-ffffffff82212b3f d rtnl_fill_ifinfo.__already_done
-ffffffff82212b40 d rtnl_xdp_prog_skb.__already_done
-ffffffff82212b41 d rtnl_fill_statsinfo.__already_done
-ffffffff82212b42 d rtnl_af_lookup.__already_done
-ffffffff82212b43 d bpf_warn_invalid_xdp_action.__already_done
-ffffffff82212b44 d ____bpf_xdp_adjust_tail.__already_done
-ffffffff82212b45 d sk_lookup.__already_done
-ffffffff82212b46 d bpf_sk_lookup.__already_done
-ffffffff82212b47 d __bpf_sk_lookup.__already_done
-ffffffff82212b48 d fib_rules_seq_read.__already_done
-ffffffff82212b49 d fib_rules_event.__already_done
-ffffffff82212b4a d dev_watchdog.__already_done
-ffffffff82212b4b d netlink_sendmsg.__already_done
-ffffffff82212b4c d __ethtool_get_link_ksettings.__already_done
-ffffffff82212b4d d netdev_rss_key_fill.___done
-ffffffff82212b4e d ethtool_get_settings.__already_done
-ffffffff82212b4f d ethtool_set_settings.__already_done
-ffffffff82212b50 d ethtool_get_link_ksettings.__already_done
-ffffffff82212b51 d ethtool_set_link_ksettings.__already_done
-ffffffff82212b52 d ethtool_notify.__already_done
-ffffffff82212b53 d ethtool_notify.__already_done.6
-ffffffff82212b54 d ethnl_default_notify.__already_done
-ffffffff82212b55 d ethnl_default_notify.__already_done.11
-ffffffff82212b56 d ethnl_default_doit.__already_done
-ffffffff82212b57 d ethnl_default_doit.__already_done.18
-ffffffff82212b58 d ethnl_default_doit.__already_done.20
-ffffffff82212b59 d ethnl_default_start.__already_done
-ffffffff82212b5a d strset_parse_request.__already_done
-ffffffff82212b5b d features_send_reply.__already_done
-ffffffff82212b5c d ethnl_get_priv_flags_info.__already_done
-ffffffff82212b5d d fnhe_hashfun.___done
-ffffffff82212b5e d __inet_hash_connect.___done
-ffffffff82212b5f d inet_ehashfn.___done
-ffffffff82212b60 d tcp_recv_skb.__already_done
-ffffffff82212b61 d tcp_recvmsg_locked.__already_done
-ffffffff82212b62 d tcp_send_loss_probe.__already_done
-ffffffff82212b63 d raw_sendmsg.__already_done
-ffffffff82212b64 d udp_flow_hashrnd.___done
-ffffffff82212b65 d udp_ehashfn.___done
-ffffffff82212b66 d inet_ifa_byprefix.__already_done
-ffffffff82212b67 d __inet_del_ifa.__already_done
-ffffffff82212b68 d inet_hash_remove.__already_done
-ffffffff82212b69 d inet_set_ifa.__already_done
-ffffffff82212b6a d __inet_insert_ifa.__already_done
-ffffffff82212b6b d inet_hash_insert.__already_done
-ffffffff82212b6c d inetdev_event.__already_done
-ffffffff82212b6d d inetdev_init.__already_done
-ffffffff82212b6e d inetdev_destroy.__already_done
-ffffffff82212b6f d inet_rtm_newaddr.__already_done
-ffffffff82212b70 d ip_mc_autojoin_config.__already_done
-ffffffff82212b71 d inet_rtm_deladdr.__already_done
-ffffffff82212b72 d __ip_mc_dec_group.__already_done
-ffffffff82212b73 d ip_mc_unmap.__already_done
-ffffffff82212b74 d ip_mc_remap.__already_done
-ffffffff82212b75 d ip_mc_down.__already_done
-ffffffff82212b76 d ip_mc_init_dev.__already_done
-ffffffff82212b77 d ip_mc_up.__already_done
-ffffffff82212b78 d ip_mc_destroy_dev.__already_done
-ffffffff82212b79 d ip_mc_leave_group.__already_done
-ffffffff82212b7a d ip_mc_source.__already_done
-ffffffff82212b7b d ip_mc_msfilter.__already_done
-ffffffff82212b7c d ip_mc_msfget.__already_done
-ffffffff82212b7d d ip_mc_gsfget.__already_done
-ffffffff82212b7e d ____ip_mc_inc_group.__already_done
-ffffffff82212b7f d __ip_mc_join_group.__already_done
-ffffffff82212b80 d ip_mc_rejoin_groups.__already_done
-ffffffff82212b81 d ip_valid_fib_dump_req.__already_done
-ffffffff82212b82 d ip_fib_net_exit.__already_done
-ffffffff82212b83 d call_fib4_notifiers.__already_done
-ffffffff82212b84 d fib4_seq_read.__already_done
-ffffffff82212b85 d call_nexthop_notifiers.__already_done
-ffffffff82212b86 d call_nexthop_res_table_notifiers.__already_done
-ffffffff82212b87 d __ip_tunnel_create.__already_done
-ffffffff82212b88 d xfrm_hash_rebuild.__already_done
-ffffffff82212b89 d ipv6_sock_ac_join.__already_done
-ffffffff82212b8a d ipv6_sock_ac_drop.__already_done
-ffffffff82212b8b d __ipv6_sock_ac_close.__already_done
-ffffffff82212b8c d __ipv6_dev_ac_inc.__already_done
-ffffffff82212b8d d __ipv6_dev_ac_dec.__already_done
-ffffffff82212b8e d ipv6_del_addr.__already_done
-ffffffff82212b8f d addrconf_verify_rtnl.__already_done
-ffffffff82212b90 d inet6_addr_add.__already_done
-ffffffff82212b91 d addrconf_add_dev.__already_done
-ffffffff82212b92 d ipv6_find_idev.__already_done
-ffffffff82212b93 d ipv6_mc_config.__already_done
-ffffffff82212b94 d __ipv6_ifa_notify.__already_done
-ffffffff82212b95 d addrconf_sit_config.__already_done
-ffffffff82212b96 d add_v4_addrs.__already_done
-ffffffff82212b97 d addrconf_gre_config.__already_done
-ffffffff82212b98 d init_loopback.__already_done
-ffffffff82212b99 d addrconf_dev_config.__already_done
-ffffffff82212b9a d addrconf_type_change.__already_done
-ffffffff82212b9b d ipv6_add_dev.__already_done
-ffffffff82212b9c d inet6_set_iftoken.__already_done
-ffffffff82212b9d d inet6_addr_modify.__already_done
-ffffffff82212b9e d addrconf_ifdown.__already_done
-ffffffff82212b9f d rt6_exception_hash.___done
-ffffffff82212ba0 d udp6_ehashfn.___done
-ffffffff82212ba1 d udp6_ehashfn.___done.4
-ffffffff82212ba2 d ipv6_sock_mc_drop.__already_done
-ffffffff82212ba3 d __ipv6_sock_mc_close.__already_done
-ffffffff82212ba4 d __ipv6_dev_mc_dec.__already_done
-ffffffff82212ba5 d ipv6_dev_mc_dec.__already_done
-ffffffff82212ba6 d __ipv6_sock_mc_join.__already_done
-ffffffff82212ba7 d __ipv6_dev_mc_inc.__already_done
-ffffffff82212ba8 d ipv6_mc_rejoin_groups.__already_done
-ffffffff82212ba9 d ipip6_tunnel_del_prl.__already_done
-ffffffff82212baa d ipip6_tunnel_add_prl.__already_done
-ffffffff82212bab d inet6_ehashfn.___done
-ffffffff82212bac d inet6_ehashfn.___done.1
-ffffffff82212bad d tpacket_rcv.__already_done
-ffffffff82212bae d tpacket_parse_header.__already_done
-ffffffff82212baf d format_decode.__already_done
-ffffffff82212bb0 d set_field_width.__already_done
-ffffffff82212bb1 d set_precision.__already_done
-ffffffff82212bb2 d pointer.__already_done
-ffffffff82212bb3 d get_regno.__already_done
-ffffffff82212bb8 d initramfs_domain
-ffffffff82212bd0 d init_signals
-ffffffff82212ff0 d init_sighand
-ffffffff82213840 d init_task
-ffffffff82215680 d __SCK__tp_func_emulate_vsyscall
-ffffffff82215690 d trace_event_fields_emulate_vsyscall
-ffffffff822156e0 d trace_event_type_funcs_emulate_vsyscall
-ffffffff82215700 d print_fmt_emulate_vsyscall
-ffffffff82215718 d event_emulate_vsyscall
-ffffffff822157a8 d warn_bad_vsyscall._rs
-ffffffff822157d0 d pmu
-ffffffff822158f8 d __SCK__x86_pmu_handle_irq
-ffffffff82215908 d __SCK__x86_pmu_disable_all
-ffffffff82215918 d __SCK__x86_pmu_enable_all
-ffffffff82215928 d __SCK__x86_pmu_enable
-ffffffff82215938 d __SCK__x86_pmu_disable
-ffffffff82215948 d __SCK__x86_pmu_assign
-ffffffff82215958 d __SCK__x86_pmu_add
-ffffffff82215968 d __SCK__x86_pmu_del
-ffffffff82215978 d __SCK__x86_pmu_read
-ffffffff82215988 d __SCK__x86_pmu_set_period
-ffffffff82215998 d __SCK__x86_pmu_update
-ffffffff822159a8 d __SCK__x86_pmu_limit_period
-ffffffff822159b8 d __SCK__x86_pmu_schedule_events
-ffffffff822159c8 d __SCK__x86_pmu_get_event_constraints
-ffffffff822159d8 d __SCK__x86_pmu_put_event_constraints
-ffffffff822159e8 d __SCK__x86_pmu_start_scheduling
-ffffffff822159f8 d __SCK__x86_pmu_commit_scheduling
-ffffffff82215a08 d __SCK__x86_pmu_stop_scheduling
-ffffffff82215a18 d __SCK__x86_pmu_sched_task
-ffffffff82215a28 d __SCK__x86_pmu_swap_task_ctx
-ffffffff82215a38 d __SCK__x86_pmu_drain_pebs
-ffffffff82215a48 d __SCK__x86_pmu_pebs_aliases
-ffffffff82215a58 d __SCK__x86_pmu_guest_get_msrs
-ffffffff82215a68 d pmc_reserve_mutex
-ffffffff82215a88 d init_hw_perf_events.perf_event_nmi_handler_na
-ffffffff82215ac0 d events_attr
-ffffffff82215b18 d event_attr_CPU_CYCLES
-ffffffff82215b48 d event_attr_INSTRUCTIONS
-ffffffff82215b78 d event_attr_CACHE_REFERENCES
-ffffffff82215ba8 d event_attr_CACHE_MISSES
-ffffffff82215bd8 d event_attr_BRANCH_INSTRUCTIONS
-ffffffff82215c08 d event_attr_BRANCH_MISSES
-ffffffff82215c38 d event_attr_BUS_CYCLES
-ffffffff82215c68 d event_attr_STALLED_CYCLES_FRONTEND
-ffffffff82215c98 d event_attr_STALLED_CYCLES_BACKEND
-ffffffff82215cc8 d event_attr_REF_CPU_CYCLES
-ffffffff82215d00 d x86_pmu_attr_groups
-ffffffff82215d30 d x86_pmu_attrs
-ffffffff82215d40 d dev_attr_rdpmc
-ffffffff82215d60 d x86_pmu_caps_attrs
-ffffffff82215d70 d dev_attr_max_precise
-ffffffff82215d90 d model_amd_hygon
-ffffffff82215da8 d model_snb
-ffffffff82215dc0 d model_snbep
-ffffffff82215dd8 d model_hsw
-ffffffff82215df0 d model_hsx
-ffffffff82215e08 d model_knl
-ffffffff82215e20 d model_skl
-ffffffff82215e38 d model_spr
-ffffffff82215e50 d amd_rapl_msrs
-ffffffff82215f18 d rapl_events_cores_group
-ffffffff82215f40 d rapl_events_pkg_group
-ffffffff82215f68 d rapl_events_ram_group
-ffffffff82215f90 d rapl_events_gpu_group
-ffffffff82215fb8 d rapl_events_psys_group
-ffffffff82215fe0 d rapl_events_cores
-ffffffff82216000 d event_attr_rapl_cores
-ffffffff82216030 d event_attr_rapl_cores_unit
-ffffffff82216060 d event_attr_rapl_cores_scale
-ffffffff82216090 d rapl_events_pkg
-ffffffff822160b0 d event_attr_rapl_pkg
-ffffffff822160e0 d event_attr_rapl_pkg_unit
-ffffffff82216110 d event_attr_rapl_pkg_scale
-ffffffff82216140 d rapl_events_ram
-ffffffff82216160 d event_attr_rapl_ram
-ffffffff82216190 d event_attr_rapl_ram_unit
-ffffffff822161c0 d event_attr_rapl_ram_scale
-ffffffff822161f0 d rapl_events_gpu
-ffffffff82216210 d event_attr_rapl_gpu
-ffffffff82216240 d event_attr_rapl_gpu_unit
-ffffffff82216270 d event_attr_rapl_gpu_scale
-ffffffff822162a0 d rapl_events_psys
-ffffffff822162c0 d event_attr_rapl_psys
-ffffffff822162f0 d event_attr_rapl_psys_unit
-ffffffff82216320 d event_attr_rapl_psys_scale
-ffffffff82216350 d intel_rapl_msrs
-ffffffff82216420 d intel_rapl_spr_msrs
-ffffffff822164f0 d rapl_attr_groups
-ffffffff82216510 d rapl_attr_update
-ffffffff82216540 d rapl_pmu_attr_group
-ffffffff82216568 d rapl_pmu_format_group
-ffffffff82216590 d rapl_pmu_events_group
-ffffffff822165c0 d rapl_pmu_attrs
-ffffffff822165d0 d dev_attr_cpumask
-ffffffff822165f0 d dev_attr_cpumask
-ffffffff82216610 d dev_attr_cpumask
-ffffffff82216630 d dev_attr_cpumask
-ffffffff82216650 d rapl_formats_attr
-ffffffff82216660 d format_attr_event
-ffffffff82216680 d format_attr_event
-ffffffff822166a0 d format_attr_event
-ffffffff822166c0 d format_attr_event
-ffffffff822166e0 d format_attr_event
-ffffffff82216700 d format_attr_event
-ffffffff82216720 d format_attr_event
-ffffffff82216740 d format_attr_event
-ffffffff82216760 d format_attr_event
-ffffffff82216780 d format_attr_event
-ffffffff822167a0 d format_attr_event
-ffffffff822167c0 d format_attr_event
-ffffffff822167e0 d format_attr_event
-ffffffff82216800 d __SCK__amd_pmu_branch_hw_config
-ffffffff82216810 d __SCK__amd_pmu_branch_reset
-ffffffff82216820 d __SCK__amd_pmu_test_overflow
-ffffffff82216830 d __SCK__amd_pmu_branch_add
-ffffffff82216840 d __SCK__amd_pmu_branch_del
-ffffffff82216850 d amd_format_attr
-ffffffff82216880 d format_attr_umask
-ffffffff822168a0 d format_attr_umask
-ffffffff822168c0 d format_attr_umask
-ffffffff822168e0 d format_attr_umask
-ffffffff82216900 d format_attr_umask
-ffffffff82216920 d format_attr_umask
-ffffffff82216940 d format_attr_umask
-ffffffff82216960 d format_attr_umask
-ffffffff82216980 d format_attr_umask
-ffffffff822169a0 d format_attr_edge
-ffffffff822169c0 d format_attr_edge
-ffffffff822169e0 d format_attr_edge
-ffffffff82216a00 d format_attr_edge
-ffffffff82216a20 d format_attr_edge
-ffffffff82216a40 d format_attr_edge
-ffffffff82216a60 d format_attr_edge
-ffffffff82216a80 d format_attr_edge
-ffffffff82216aa0 d format_attr_edge
-ffffffff82216ac0 d format_attr_inv
-ffffffff82216ae0 d format_attr_inv
-ffffffff82216b00 d format_attr_inv
-ffffffff82216b20 d format_attr_inv
-ffffffff82216b40 d format_attr_inv
-ffffffff82216b60 d format_attr_inv
-ffffffff82216b80 d format_attr_inv
-ffffffff82216ba0 d format_attr_inv
-ffffffff82216bc0 d format_attr_inv
-ffffffff82216be0 d format_attr_cmask
-ffffffff82216c00 d format_attr_cmask
-ffffffff82216c20 d format_attr_cmask
-ffffffff82216c40 d format_attr_cmask
-ffffffff82216c60 d format_attr_cmask
-ffffffff82216c80 d amd_attr_update
-ffffffff82216c90 d amd_f15_PMC3
-ffffffff82216cb8 d amd_f15_PMC53
-ffffffff82216ce0 d amd_f15_PMC20
-ffffffff82216d08 d amd_f15_PMC30
-ffffffff82216d30 d amd_f15_PMC50
-ffffffff82216d58 d amd_f15_PMC0
-ffffffff82216d80 d amd_fam19h_brs_pair_cntr0_constraint
-ffffffff82216da8 d amd_fam19h_brs_cntr0_constraint
-ffffffff82216dd0 d group_caps_amd_branches
-ffffffff82216e00 d amd_pmu_branches_attrs
-ffffffff82216e10 d dev_attr_branches
-ffffffff82216e30 d dev_attr_branches
-ffffffff82216e50 d perf_ibs_syscore_ops
-ffffffff82216e78 d perf_event_ibs_init.perf_ibs_nmi_handler_na
-ffffffff82216ea8 d perf_ibs_op
-ffffffff82217020 d perf_ibs_fetch
-ffffffff822171a0 d fetch_attr_groups
-ffffffff822171c0 d fetch_attr_update
-ffffffff822171d8 d group_rand_en
-ffffffff82217200 d empty_caps_group
-ffffffff82217230 d rand_en_attrs
-ffffffff82217240 d format_attr_rand_en
-ffffffff82217260 d group_fetch_l3missonly
-ffffffff82217288 d group_zen4_ibs_extensions
-ffffffff822172b0 d fetch_l3missonly_attrs
-ffffffff822172c0 d fetch_l3missonly
-ffffffff822172f0 d zen4_ibs_extensions_attrs
-ffffffff82217300 d zen4_ibs_extensions
-ffffffff82217330 d empty_attr_groups
-ffffffff82217350 d op_attr_update
-ffffffff82217370 d empty_format_group
-ffffffff82217398 d group_cnt_ctl
-ffffffff822173c0 d group_op_l3missonly
-ffffffff822173f0 d cnt_ctl_attrs
-ffffffff82217400 d format_attr_cnt_ctl
-ffffffff82217420 d op_l3missonly_attrs
-ffffffff82217430 d op_l3missonly
-ffffffff82217460 d amd_llc_pmu
-ffffffff82217588 d amd_nb_pmu
-ffffffff822176b0 d amd_uncore_l3_attr_groups
-ffffffff822176d0 d amd_uncore_l3_attr_update
-ffffffff822176e8 d amd_uncore_attr_group
-ffffffff82217710 d amd_uncore_l3_format_group
-ffffffff82217740 d amd_uncore_attrs
-ffffffff82217750 d amd_uncore_l3_format_attr
-ffffffff82217770 d format_attr_event12
-ffffffff82217790 d format_attr_umask8
-ffffffff822177b0 d amd_f17h_uncore_l3_format_group
-ffffffff822177d8 d amd_f19h_uncore_l3_format_group
-ffffffff82217800 d amd_f17h_uncore_l3_format_attr
-ffffffff82217810 d format_attr_slicemask
-ffffffff82217830 d amd_f19h_uncore_l3_format_attr
-ffffffff82217858 d format_attr_coreid
-ffffffff82217878 d format_attr_enallslices
-ffffffff82217898 d format_attr_enallcores
-ffffffff822178b8 d format_attr_sliceid
-ffffffff822178e0 d amd_uncore_df_attr_groups
-ffffffff822178f8 d amd_uncore_df_format_group
-ffffffff82217920 d amd_uncore_df_format_attr
-ffffffff82217938 d format_attr_event14v2
-ffffffff82217958 d format_attr_umask12
-ffffffff82217978 d format_attr_event14
-ffffffff82217998 d format_attr_event8
-ffffffff822179b8 d format_attr_threadmask2
-ffffffff822179d8 d format_attr_threadmask8
-ffffffff82217a00 d msr
-ffffffff82217b40 d pmu_msr
-ffffffff82217c68 d group_aperf
-ffffffff82217c90 d group_mperf
-ffffffff82217cb8 d group_pperf
-ffffffff82217ce0 d group_smi
-ffffffff82217d08 d group_ptsc
-ffffffff82217d30 d group_irperf
-ffffffff82217d58 d group_therm
-ffffffff82217d80 d attrs_aperf
-ffffffff82217d90 d attr_aperf
-ffffffff82217dc0 d attrs_mperf
-ffffffff82217dd0 d attr_mperf
-ffffffff82217e00 d attrs_pperf
-ffffffff82217e10 d attr_pperf
-ffffffff82217e40 d attrs_smi
-ffffffff82217e50 d attr_smi
-ffffffff82217e80 d attrs_ptsc
-ffffffff82217e90 d attr_ptsc
-ffffffff82217ec0 d attrs_irperf
-ffffffff82217ed0 d attr_irperf
-ffffffff82217f00 d attrs_therm
-ffffffff82217f20 d attr_therm
-ffffffff82217f50 d attr_therm_snap
-ffffffff82217f80 d attr_therm_unit
-ffffffff82217fb0 d attr_groups
-ffffffff82217fd0 d attr_groups
-ffffffff82217ff0 d attr_update
-ffffffff82218030 d attr_update
-ffffffff82218078 d events_attr_group
-ffffffff822180a0 d format_attr_group
-ffffffff822180d0 d events_attrs
-ffffffff822180e0 d attr_tsc
-ffffffff82218110 d format_attrs
-ffffffff82218120 d __SCK__intel_pmu_set_topdown_event_period
-ffffffff82218130 d __SCK__intel_pmu_update_topdown_event
-ffffffff82218140 d nhm_mem_events_attrs
-ffffffff82218150 d nhm_format_attr
-ffffffff82218170 d slm_events_attrs
-ffffffff822181b0 d slm_format_attr
-ffffffff822181c0 d glm_events_attrs
-ffffffff822181f8 d event_attr_td_total_slots_scale_glm
-ffffffff82218230 d tnt_events_attrs
-ffffffff82218260 d grt_mem_attrs
-ffffffff82218280 d snb_events_attrs
-ffffffff822182c0 d snb_mem_events_attrs
-ffffffff822182e0 d hsw_format_attr
-ffffffff82218310 d hsw_events_attrs
-ffffffff82218350 d hsw_mem_events_attrs
-ffffffff82218370 d hsw_tsx_events_attrs
-ffffffff822183d8 d event_attr_td_recovery_bubbles
-ffffffff82218410 d skl_format_attr
-ffffffff82218420 d icl_events_attrs
-ffffffff82218440 d icl_td_events_attrs
-ffffffff82218470 d icl_tsx_events_attrs
-ffffffff822184f0 d spr_events_attrs
-ffffffff82218510 d spr_td_events_attrs
-ffffffff82218560 d spr_tsx_events_attrs
-ffffffff822185b0 d adl_hybrid_events_attrs
-ffffffff82218600 d adl_hybrid_mem_attrs
-ffffffff82218620 d adl_hybrid_tsx_attrs
-ffffffff82218670 d adl_hybrid_extra_attr_rtm
-ffffffff822186a0 d adl_hybrid_extra_attr
-ffffffff822186c0 d group_events_td
-ffffffff822186e8 d group_events_mem
-ffffffff82218710 d group_events_tsx
-ffffffff82218738 d group_format_extra
-ffffffff82218760 d group_format_extra_skl
-ffffffff82218788 d hybrid_group_events_td
-ffffffff822187b0 d hybrid_group_events_mem
-ffffffff822187d8 d hybrid_group_events_tsx
-ffffffff82218800 d hybrid_group_format_extra
-ffffffff82218830 d hybrid_attr_update
-ffffffff82218880 d intel_arch_formats_attr
-ffffffff822188c0 d intel_arch3_formats_attr
-ffffffff82218900 d format_attr_pc
-ffffffff82218920 d format_attr_pc
-ffffffff82218940 d format_attr_any
-ffffffff82218960 d event_attr_mem_ld_nhm
-ffffffff82218990 d format_attr_offcore_rsp
-ffffffff822189b0 d format_attr_ldlat
-ffffffff822189d0 d event_attr_td_total_slots_slm
-ffffffff82218a00 d event_attr_td_total_slots_scale_slm
-ffffffff82218a30 d event_attr_td_fetch_bubbles_slm
-ffffffff82218a60 d event_attr_td_fetch_bubbles_scale_slm
-ffffffff82218a90 d event_attr_td_slots_issued_slm
-ffffffff82218ac0 d event_attr_td_slots_retired_slm
-ffffffff82218af0 d event_attr_td_total_slots_glm
-ffffffff82218b20 d event_attr_td_fetch_bubbles_glm
-ffffffff82218b50 d event_attr_td_recovery_bubbles_glm
-ffffffff82218b80 d event_attr_td_slots_issued_glm
-ffffffff82218bb0 d event_attr_td_slots_retired_glm
-ffffffff82218be0 d counter0_constraint
-ffffffff82218c08 d fixed0_constraint
-ffffffff82218c30 d fixed0_counter0_constraint
-ffffffff82218c58 d event_attr_td_fe_bound_tnt
-ffffffff82218c88 d event_attr_td_retiring_tnt
-ffffffff82218cb8 d event_attr_td_bad_spec_tnt
-ffffffff82218ce8 d event_attr_td_be_bound_tnt
-ffffffff82218d18 d event_attr_mem_ld_grt
-ffffffff82218d48 d event_attr_mem_st_grt
-ffffffff82218d78 d event_attr_td_slots_issued
-ffffffff82218da8 d event_attr_td_slots_retired
-ffffffff82218dd8 d event_attr_td_fetch_bubbles
-ffffffff82218e08 d event_attr_td_total_slots
-ffffffff82218e40 d event_attr_td_total_slots_scale
-ffffffff82218e78 d event_attr_td_recovery_bubbles_scale
-ffffffff82218eb0 d event_attr_mem_ld_snb
-ffffffff82218ee0 d event_attr_mem_st_snb
-ffffffff82218f10 d intel_hsw_event_constraints
-ffffffff82219140 d counter2_constraint
-ffffffff82219168 d format_attr_in_tx
-ffffffff82219188 d format_attr_in_tx_cp
-ffffffff822191a8 d event_attr_mem_ld_hsw
-ffffffff822191d8 d event_attr_mem_st_hsw
-ffffffff82219208 d event_attr_tx_start
-ffffffff82219238 d event_attr_tx_commit
-ffffffff82219268 d event_attr_tx_abort
-ffffffff82219298 d event_attr_tx_capacity
-ffffffff822192c8 d event_attr_tx_conflict
-ffffffff822192f8 d event_attr_el_start
-ffffffff82219328 d event_attr_el_commit
-ffffffff82219358 d event_attr_el_abort
-ffffffff82219388 d event_attr_el_capacity
-ffffffff822193b8 d event_attr_el_conflict
-ffffffff822193e8 d event_attr_cycles_t
-ffffffff82219418 d event_attr_cycles_ct
-ffffffff82219450 d intel_bdw_event_constraints
-ffffffff822195e0 d intel_skl_event_constraints
-ffffffff82219770 d format_attr_frontend
-ffffffff82219790 d allow_tsx_force_abort
-ffffffff822197a0 d intel_icl_event_constraints
-ffffffff82219b88 d event_attr_slots
-ffffffff82219bb8 d event_attr_td_retiring
-ffffffff82219be8 d event_attr_td_bad_spec
-ffffffff82219c18 d event_attr_td_fe_bound
-ffffffff82219c48 d event_attr_td_be_bound
-ffffffff82219c78 d event_attr_tx_capacity_read
-ffffffff82219ca8 d event_attr_tx_capacity_write
-ffffffff82219cd8 d event_attr_el_capacity_read
-ffffffff82219d08 d event_attr_el_capacity_write
-ffffffff82219d40 d intel_spr_event_constraints
-ffffffff8221a150 d event_attr_mem_st_spr
-ffffffff8221a180 d event_attr_mem_ld_aux
-ffffffff8221a1b0 d event_attr_td_heavy_ops
-ffffffff8221a1e0 d event_attr_td_br_mispredict
-ffffffff8221a210 d event_attr_td_fetch_lat
-ffffffff8221a240 d event_attr_td_mem_bound
-ffffffff8221a270 d event_attr_slots_adl
-ffffffff8221a2a8 d event_attr_td_retiring_adl
-ffffffff8221a2e0 d event_attr_td_bad_spec_adl
-ffffffff8221a318 d event_attr_td_fe_bound_adl
-ffffffff8221a350 d event_attr_td_be_bound_adl
-ffffffff8221a388 d event_attr_td_heavy_ops_adl
-ffffffff8221a3c0 d event_attr_td_br_mis_adl
-ffffffff8221a3f8 d event_attr_td_fetch_lat_adl
-ffffffff8221a430 d event_attr_td_mem_bound_adl
-ffffffff8221a468 d event_attr_mem_ld_adl
-ffffffff8221a4a0 d event_attr_mem_st_adl
-ffffffff8221a4d8 d event_attr_mem_ld_aux_adl
-ffffffff8221a510 d event_attr_tx_start_adl
-ffffffff8221a548 d event_attr_tx_abort_adl
-ffffffff8221a580 d event_attr_tx_commit_adl
-ffffffff8221a5b8 d event_attr_tx_capacity_read_adl
-ffffffff8221a5f0 d event_attr_tx_capacity_write_adl
-ffffffff8221a628 d event_attr_tx_conflict_adl
-ffffffff8221a660 d event_attr_cycles_t_adl
-ffffffff8221a698 d event_attr_cycles_ct_adl
-ffffffff8221a6d0 d format_attr_hybrid_in_tx
-ffffffff8221a6f8 d format_attr_hybrid_in_tx_cp
-ffffffff8221a720 d format_attr_hybrid_offcore_rsp
-ffffffff8221a748 d format_attr_hybrid_ldlat
-ffffffff8221a770 d format_attr_hybrid_frontend
-ffffffff8221a798 d group_caps_gen
-ffffffff8221a7c0 d group_caps_lbr
-ffffffff8221a7e8 d group_default
-ffffffff8221a810 d intel_pmu_caps_attrs
-ffffffff8221a820 d dev_attr_pmu_name
-ffffffff8221a840 d lbr_attrs
-ffffffff8221a850 d intel_pmu_attrs
-ffffffff8221a868 d dev_attr_allow_tsx_force_abort
-ffffffff8221a888 d dev_attr_freeze_on_smi
-ffffffff8221a8a8 d freeze_on_smi_mutex
-ffffffff8221a8c8 d hybrid_group_cpus
-ffffffff8221a8f0 d intel_hybrid_cpus_attrs
-ffffffff8221a900 d dev_attr_cpus
-ffffffff8221a920 d pebs_data_source.llvm.15124434353515274408
-ffffffff8221a9a0 d bts_constraint
-ffffffff8221a9d0 d intel_core2_pebs_event_constraints
-ffffffff8221aaf0 d intel_atom_pebs_event_constraints
-ffffffff8221abe0 d intel_slm_pebs_event_constraints
-ffffffff8221ac60 d intel_glm_pebs_event_constraints
-ffffffff8221acb0 d intel_grt_pebs_event_constraints
-ffffffff8221ad30 d intel_nehalem_pebs_event_constraints
-ffffffff8221af40 d intel_westmere_pebs_event_constraints
-ffffffff8221b150 d intel_snb_pebs_event_constraints
-ffffffff8221b2e0 d intel_ivb_pebs_event_constraints
-ffffffff8221b4a0 d intel_hsw_pebs_event_constraints
-ffffffff8221b750 d intel_bdw_pebs_event_constraints
-ffffffff8221ba00 d intel_skl_pebs_event_constraints
-ffffffff8221bcb0 d intel_icl_pebs_event_constraints
-ffffffff8221bee0 d intel_spr_pebs_event_constraints
-ffffffff8221c140 d intel_knc_formats_attr
-ffffffff8221c170 d knc_event_constraints
-ffffffff8221c4e0 d arch_lbr_ctl_map
-ffffffff8221c530 d vlbr_constraint
-ffffffff8221c560 d intel_p4_formats_attr
-ffffffff8221c580 d format_attr_cccr
-ffffffff8221c5a0 d format_attr_escr
-ffffffff8221c5c0 d format_attr_ht
-ffffffff8221c5e0 d intel_p6_formats_attr
-ffffffff8221c620 d p6_event_constraints
-ffffffff8221c738 d pt_handle_status._rs
-ffffffff8221c760 d pt_attr_groups
-ffffffff8221c780 d pt_format_group
-ffffffff8221c7a8 d pt_timing_group
-ffffffff8221c7d0 d pt_formats_attr
-ffffffff8221c848 d format_attr_pt
-ffffffff8221c868 d format_attr_cyc
-ffffffff8221c888 d format_attr_pwr_evt
-ffffffff8221c8a8 d format_attr_notnt
-ffffffff8221c8c8 d format_attr_fup_on_ptw
-ffffffff8221c8e8 d format_attr_mtc
-ffffffff8221c908 d format_attr_tsc
-ffffffff8221c928 d format_attr_noretcomp
-ffffffff8221c948 d format_attr_ptw
-ffffffff8221c968 d format_attr_branch
-ffffffff8221c988 d format_attr_mtc_period
-ffffffff8221c9a8 d format_attr_cyc_thresh
-ffffffff8221c9c8 d format_attr_psb_period
-ffffffff8221c9f0 d pt_timing_attr
-ffffffff8221ca08 d timing_attr_max_nonturbo_ratio
-ffffffff8221ca38 d timing_attr_tsc_art_ratio
-ffffffff8221ca68 d uncore_msr_uncores
-ffffffff8221ca70 d uncore_pci_uncores
-ffffffff8221ca78 d uncore_mmio_uncores
-ffffffff8221ca80 d pci2phy_map_head
-ffffffff8221ca90 d uncore_constraint_fixed
-ffffffff8221cac0 d uncore_pmu_attrs
-ffffffff8221cad0 d uncore_pci_notifier
-ffffffff8221cae8 d uncore_pci_sub_notifier
-ffffffff8221cb00 d wsmex_uncore_mbox_events
-ffffffff8221cb80 d nhmex_msr_uncores
-ffffffff8221cbc0 d nhmex_uncore_mbox_ops
-ffffffff8221cc10 d nhmex_uncore_mbox_events
-ffffffff8221cc88 d nhmex_uncore_mbox
-ffffffff8221cd90 d nhmex_uncore_mbox_formats_attr
-ffffffff8221ce18 d format_attr_count_mode
-ffffffff8221ce38 d format_attr_storage_mode
-ffffffff8221ce58 d format_attr_wrap_mode
-ffffffff8221ce78 d format_attr_flag_mode
-ffffffff8221ce98 d format_attr_inc_sel
-ffffffff8221ceb8 d format_attr_set_flag_sel
-ffffffff8221ced8 d format_attr_filter_cfg_en
-ffffffff8221cef8 d format_attr_filter_match
-ffffffff8221cf18 d format_attr_filter_mask
-ffffffff8221cf38 d format_attr_dsp
-ffffffff8221cf58 d format_attr_thr
-ffffffff8221cf78 d format_attr_fvc
-ffffffff8221cf98 d format_attr_pgt
-ffffffff8221cfb8 d format_attr_map
-ffffffff8221cfd8 d format_attr_iss
-ffffffff8221cff8 d format_attr_pld
-ffffffff8221d020 d nhmex_cbox_msr_offsets
-ffffffff8221d048 d nhmex_uncore_ops
-ffffffff8221d098 d nhmex_uncore_cbox
-ffffffff8221d1a0 d nhmex_uncore_cbox_formats_attr
-ffffffff8221d1d0 d format_attr_thresh8
-ffffffff8221d1f0 d format_attr_thresh8
-ffffffff8221d210 d nhmex_uncore_ubox
-ffffffff8221d320 d nhmex_uncore_ubox_formats_attr
-ffffffff8221d338 d nhmex_uncore_bbox_ops
-ffffffff8221d388 d nhmex_uncore_bbox
-ffffffff8221d490 d nhmex_uncore_bbox_constraints
-ffffffff8221d560 d nhmex_uncore_bbox_formats_attr
-ffffffff8221d588 d format_attr_event5
-ffffffff8221d5a8 d format_attr_counter
-ffffffff8221d5c8 d format_attr_match
-ffffffff8221d5e8 d format_attr_mask
-ffffffff8221d608 d nhmex_uncore_sbox_ops
-ffffffff8221d658 d nhmex_uncore_sbox
-ffffffff8221d760 d nhmex_uncore_sbox_formats_attr
-ffffffff8221d7a0 d nhmex_uncore_rbox_ops
-ffffffff8221d7f0 d nhmex_uncore_rbox_events
-ffffffff8221d908 d nhmex_uncore_rbox
-ffffffff8221da10 d nhmex_uncore_rbox_formats_attr
-ffffffff8221da48 d format_attr_xbr_mm_cfg
-ffffffff8221da68 d format_attr_xbr_match
-ffffffff8221da88 d format_attr_xbr_mask
-ffffffff8221daa8 d format_attr_qlx_cfg
-ffffffff8221dac8 d format_attr_iperf_cfg
-ffffffff8221daf0 d nhmex_uncore_wbox_events
-ffffffff8221db40 d nhmex_uncore_wbox
-ffffffff8221dc50 d snb_msr_uncores
-ffffffff8221dc70 d skl_msr_uncores
-ffffffff8221dc88 d skl_uncore_msr_ops
-ffffffff8221dce0 d icl_msr_uncores
-ffffffff8221dd00 d tgl_msr_uncores
-ffffffff8221dd20 d adl_msr_uncores
-ffffffff8221dd40 d mtl_msr_uncores
-ffffffff8221dd80 d nhm_msr_uncores
-ffffffff8221dd90 d tgl_l_uncore_imc_freerunning
-ffffffff8221ddf0 d tgl_mmio_uncores
-ffffffff8221de00 d adl_mmio_uncores
-ffffffff8221de18 d snb_uncore_msr_ops
-ffffffff8221de70 d snb_uncore_events
-ffffffff8221dec0 d snb_uncore_cbox
-ffffffff8221dfd0 d snb_uncore_formats_attr
-ffffffff8221e000 d format_attr_cmask5
-ffffffff8221e020 d skl_uncore_cbox
-ffffffff8221e128 d snb_uncore_arb
-ffffffff8221e230 d snb_uncore_arb_constraints
-ffffffff8221e2a8 d icl_uncore_msr_ops
-ffffffff8221e2f8 d icl_uncore_arb
-ffffffff8221e400 d icl_uncore_cbox
-ffffffff8221e510 d icl_uncore_events
-ffffffff8221e560 d icl_uncore_clock_format_group
-ffffffff8221e588 d icl_uncore_clockbox
-ffffffff8221e690 d icl_uncore_clock_formats_attr
-ffffffff8221e6a0 d adl_uncore_msr_ops
-ffffffff8221e6f0 d adl_uncore_cbox
-ffffffff8221e800 d adl_uncore_formats_attr
-ffffffff8221e830 d format_attr_threshold
-ffffffff8221e850 d adl_uncore_arb
-ffffffff8221e958 d adl_uncore_clockbox
-ffffffff8221ea60 d mtl_uncore_cbox
-ffffffff8221eb68 d mtl_uncore_hac_arb
-ffffffff8221ec70 d mtl_uncore_arb
-ffffffff8221ed78 d mtl_uncore_hac_cbox
-ffffffff8221ee80 d mtl_uncore_msr_ops
-ffffffff8221eed0 d mtl_uncore_cncu
-ffffffff8221efd8 d mtl_uncore_sncu
-ffffffff8221f0e0 d snb_pci_uncores
-ffffffff8221f0f0 d snb_uncore_pci_driver
-ffffffff8221f218 d ivb_uncore_pci_driver
-ffffffff8221f340 d hsw_uncore_pci_driver
-ffffffff8221f468 d bdw_uncore_pci_driver
-ffffffff8221f590 d skl_uncore_pci_driver
-ffffffff8221f6b8 d icl_uncore_pci_driver
-ffffffff8221f7e0 d snb_uncore_imc_ops
-ffffffff8221f830 d snb_uncore_imc_events
-ffffffff8221fab0 d snb_uncore_imc_freerunning
-ffffffff8221fb50 d snb_uncore_imc_pmu
-ffffffff8221fc78 d snb_uncore_imc
-ffffffff8221fd80 d snb_uncore_imc_formats_attr
-ffffffff8221fd90 d nhm_uncore_msr_ops
-ffffffff8221fde0 d nhm_uncore_events
-ffffffff8221ff70 d nhm_uncore
-ffffffff82220080 d nhm_uncore_formats_attr
-ffffffff822200b0 d format_attr_cmask8
-ffffffff822200d0 d tgl_uncore_imc_freerunning_ops
-ffffffff82220120 d tgl_uncore_imc_events
-ffffffff822202b0 d tgl_uncore_imc_freerunning
-ffffffff82220310 d tgl_uncore_imc_free_running
-ffffffff82220420 d tgl_uncore_imc_formats_attr
-ffffffff82220438 d adl_uncore_mmio_ops
-ffffffff82220488 d adl_uncore_imc
-ffffffff82220590 d adl_uncore_imc_formats_attr
-ffffffff822205b0 d format_attr_chmask
-ffffffff822205d0 d adl_uncore_imc_freerunning_ops
-ffffffff82220620 d adl_uncore_imc_freerunning
-ffffffff82220680 d adl_uncore_imc_free_running
-ffffffff82220790 d snbep_msr_uncores
-ffffffff822207b0 d snbep_pci_uncores
-ffffffff822207e0 d snbep_uncore_pci_driver
-ffffffff82220910 d ivbep_msr_uncores
-ffffffff82220930 d ivbep_pci_uncores
-ffffffff82220968 d ivbep_uncore_pci_driver
-ffffffff82220a90 d knl_msr_uncores
-ffffffff82220ab0 d knl_pci_uncores
-ffffffff82220ae8 d knl_uncore_pci_driver
-ffffffff82220c10 d hswep_msr_uncores
-ffffffff82220c40 d hswep_pci_uncores
-ffffffff82220c78 d hswep_uncore_pci_driver
-ffffffff82220da0 d bdx_msr_uncores
-ffffffff82220dd0 d bdx_pci_uncores
-ffffffff82220e08 d bdx_uncore_pci_driver
-ffffffff82220f30 d skx_msr_uncores
-ffffffff82220f70 d skx_pci_uncores
-ffffffff82220fa0 d skx_uncore_pci_driver
-ffffffff822210d0 d snr_msr_uncores
-ffffffff82221110 d snr_pci_uncores
-ffffffff82221128 d snr_uncore_pci_driver
-ffffffff82221250 d snr_uncore_pci_sub_driver
-ffffffff82221380 d snr_mmio_uncores
-ffffffff822213a0 d icx_msr_uncores
-ffffffff822213e0 d icx_pci_uncores
-ffffffff82221400 d icx_uncore_pci_driver
-ffffffff82221530 d icx_mmio_uncores
-ffffffff82221548 d spr_msr_uncores
-ffffffff82221550 d spr_mmio_uncores
-ffffffff82221558 d snbep_uncore_cbox_ops
-ffffffff822215a8 d snbep_uncore_cbox
-ffffffff822216b0 d snbep_uncore_cbox_constraints
-ffffffff82221af0 d snbep_uncore_cbox_formats_attr
-ffffffff82221b48 d format_attr_tid_en
-ffffffff82221b68 d format_attr_filter_tid
-ffffffff82221b88 d format_attr_filter_nid
-ffffffff82221ba8 d format_attr_filter_state
-ffffffff82221bc8 d format_attr_filter_opc
-ffffffff82221be8 d snbep_uncore_msr_ops
-ffffffff82221c38 d snbep_uncore_ubox
-ffffffff82221d40 d snbep_uncore_ubox_formats_attr
-ffffffff82221d70 d format_attr_thresh5
-ffffffff82221d90 d snbep_uncore_pcu_ops
-ffffffff82221de0 d snbep_uncore_pcu
-ffffffff82221ef0 d snbep_uncore_pcu_formats_attr
-ffffffff82221f50 d format_attr_occ_sel
-ffffffff82221f70 d format_attr_occ_invert
-ffffffff82221f90 d format_attr_occ_edge
-ffffffff82221fb0 d format_attr_filter_band0
-ffffffff82221fd0 d format_attr_filter_band1
-ffffffff82221ff0 d format_attr_filter_band2
-ffffffff82222010 d format_attr_filter_band3
-ffffffff82222030 d snbep_uncore_pci_ops
-ffffffff82222080 d snbep_uncore_ha
-ffffffff82222190 d snbep_uncore_formats_attr
-ffffffff822221c0 d snbep_uncore_imc_events
-ffffffff82222300 d snbep_uncore_imc
-ffffffff82222408 d snbep_uncore_qpi_ops
-ffffffff82222460 d snbep_uncore_qpi_events
-ffffffff82222528 d snbep_uncore_qpi
-ffffffff82222630 d snbep_uncore_qpi_formats_attr
-ffffffff822226f0 d format_attr_event_ext
-ffffffff82222710 d format_attr_match_rds
-ffffffff82222730 d format_attr_match_rnid30
-ffffffff82222750 d format_attr_match_rnid4
-ffffffff82222770 d format_attr_match_dnid
-ffffffff82222790 d format_attr_match_mc
-ffffffff822227b0 d format_attr_match_opc
-ffffffff822227d0 d format_attr_match_vnw
-ffffffff822227f0 d format_attr_match0
-ffffffff82222810 d format_attr_match1
-ffffffff82222830 d format_attr_mask_rds
-ffffffff82222850 d format_attr_mask_rnid30
-ffffffff82222870 d format_attr_mask_rnid4
-ffffffff82222890 d format_attr_mask_dnid
-ffffffff822228b0 d format_attr_mask_mc
-ffffffff822228d0 d format_attr_mask_opc
-ffffffff822228f0 d format_attr_mask_vnw
-ffffffff82222910 d format_attr_mask0
-ffffffff82222930 d format_attr_mask1
-ffffffff82222950 d snbep_uncore_r2pcie
-ffffffff82222a60 d snbep_uncore_r2pcie_constraints
-ffffffff82222c18 d snbep_uncore_r3qpi
-ffffffff82222d20 d snbep_uncore_r3qpi_constraints
-ffffffff822231a8 d ivbep_uncore_cbox_ops
-ffffffff822231f8 d ivbep_uncore_cbox
-ffffffff82223300 d ivbep_uncore_cbox_formats_attr
-ffffffff82223370 d format_attr_filter_link
-ffffffff82223390 d format_attr_filter_state2
-ffffffff822233b0 d format_attr_filter_nid2
-ffffffff822233d0 d format_attr_filter_opc2
-ffffffff822233f0 d format_attr_filter_nc
-ffffffff82223410 d format_attr_filter_c6
-ffffffff82223430 d format_attr_filter_isoc
-ffffffff82223450 d ivbep_uncore_msr_ops
-ffffffff822234a0 d ivbep_uncore_ubox
-ffffffff822235b0 d ivbep_uncore_ubox_formats_attr
-ffffffff822235e0 d ivbep_uncore_pcu_ops
-ffffffff82223630 d ivbep_uncore_pcu
-ffffffff82223740 d ivbep_uncore_pcu_formats_attr
-ffffffff82223798 d ivbep_uncore_pci_ops
-ffffffff822237e8 d ivbep_uncore_ha
-ffffffff822238f0 d ivbep_uncore_formats_attr
-ffffffff82223920 d ivbep_uncore_imc
-ffffffff82223a28 d ivbep_uncore_irp_ops
-ffffffff82223a78 d ivbep_uncore_irp
-ffffffff82223b80 d ivbep_uncore_qpi_ops
-ffffffff82223bd0 d ivbep_uncore_qpi
-ffffffff82223ce0 d ivbep_uncore_qpi_formats_attr
-ffffffff82223d98 d ivbep_uncore_r2pcie
-ffffffff82223ea0 d ivbep_uncore_r3qpi
-ffffffff82223fa8 d knl_uncore_ubox
-ffffffff822240b0 d knl_uncore_ubox_formats_attr
-ffffffff822240e8 d knl_uncore_cha_ops
-ffffffff82224138 d knl_uncore_cha
-ffffffff82224240 d knl_uncore_cha_constraints
-ffffffff822242e0 d knl_uncore_cha_formats_attr
-ffffffff82224368 d format_attr_qor
-ffffffff82224388 d format_attr_filter_tid4
-ffffffff822243a8 d format_attr_filter_link3
-ffffffff822243c8 d format_attr_filter_state4
-ffffffff822243e8 d format_attr_filter_local
-ffffffff82224408 d format_attr_filter_all_op
-ffffffff82224428 d format_attr_filter_nnm
-ffffffff82224448 d format_attr_filter_opc3
-ffffffff82224468 d knl_uncore_pcu
-ffffffff82224570 d knl_uncore_pcu_formats_attr
-ffffffff822245c0 d format_attr_event2
-ffffffff822245e0 d format_attr_use_occ_ctr
-ffffffff82224600 d format_attr_thresh6
-ffffffff82224620 d format_attr_occ_edge_det
-ffffffff82224640 d knl_uncore_imc_ops
-ffffffff82224690 d knl_uncore_imc_uclk
-ffffffff82224798 d knl_uncore_imc_dclk
-ffffffff822248a0 d knl_uncore_edc_uclk
-ffffffff822249a8 d knl_uncore_edc_eclk
-ffffffff82224ab0 d knl_uncore_m2pcie
-ffffffff82224bc0 d knl_uncore_m2pcie_constraints
-ffffffff82224c10 d knl_uncore_irp
-ffffffff82224d20 d knl_uncore_irp_formats_attr
-ffffffff82224d58 d hswep_uncore_cbox_ops
-ffffffff82224da8 d hswep_uncore_cbox
-ffffffff82224eb0 d hswep_uncore_cbox_constraints
-ffffffff82224ff0 d hswep_uncore_cbox_formats_attr
-ffffffff82225060 d format_attr_filter_tid3
-ffffffff82225080 d format_attr_filter_link2
-ffffffff822250a0 d format_attr_filter_state3
-ffffffff822250c0 d hswep_uncore_sbox_msr_ops
-ffffffff82225110 d hswep_uncore_sbox
-ffffffff82225220 d hswep_uncore_sbox_formats_attr
-ffffffff82225258 d hswep_uncore_ubox_ops
-ffffffff822252a8 d hswep_uncore_ubox
-ffffffff822253b0 d hswep_uncore_ubox_formats_attr
-ffffffff822253f0 d format_attr_filter_tid2
-ffffffff82225410 d format_attr_filter_cid
-ffffffff82225430 d hswep_uncore_ha
-ffffffff82225540 d hswep_uncore_imc_events
-ffffffff82225680 d hswep_uncore_imc
-ffffffff82225788 d hswep_uncore_irp_ops
-ffffffff822257d8 d hswep_uncore_irp
-ffffffff822258e0 d hswep_uncore_qpi
-ffffffff822259e8 d hswep_uncore_r2pcie
-ffffffff82225af0 d hswep_uncore_r2pcie_constraints
-ffffffff82225de8 d hswep_uncore_r3qpi
-ffffffff82225ef0 d hswep_uncore_r3qpi_constraints
-ffffffff82226440 d bdx_uncore_cbox
-ffffffff82226550 d bdx_uncore_cbox_constraints
-ffffffff82226618 d bdx_uncore_ubox
-ffffffff82226720 d bdx_uncore_sbox
-ffffffff82226830 d bdx_uncore_pcu_constraints
-ffffffff82226880 d hswep_uncore_pcu_ops
-ffffffff822268d0 d hswep_uncore_pcu
-ffffffff822269d8 d bdx_uncore_ha
-ffffffff82226ae0 d bdx_uncore_imc
-ffffffff82226be8 d bdx_uncore_irp
-ffffffff82226cf0 d bdx_uncore_qpi
-ffffffff82226df8 d bdx_uncore_r2pcie
-ffffffff82226f00 d bdx_uncore_r2pcie_constraints
-ffffffff82227090 d bdx_uncore_r3qpi
-ffffffff822271a0 d bdx_uncore_r3qpi_constraints
-ffffffff82227678 d skx_uncore_chabox_ops
-ffffffff822276c8 d skx_uncore_chabox
-ffffffff822277d0 d skx_uncore_chabox_constraints
-ffffffff82227850 d skx_uncore_cha_formats_attr
-ffffffff822278e0 d format_attr_filter_state5
-ffffffff82227900 d format_attr_filter_rem
-ffffffff82227920 d format_attr_filter_loc
-ffffffff82227940 d format_attr_filter_nm
-ffffffff82227960 d format_attr_filter_not_nm
-ffffffff82227980 d format_attr_filter_opc_0
-ffffffff822279a0 d format_attr_filter_opc_1
-ffffffff822279c0 d skx_uncore_ubox
-ffffffff82227ac8 d skx_uncore_iio_ops
-ffffffff82227b20 d skx_iio_attr_update
-ffffffff82227b30 d skx_uncore_iio
-ffffffff82227c40 d skx_uncore_iio_constraints
-ffffffff82227d80 d skx_uncore_iio_formats_attr
-ffffffff82227dc0 d format_attr_thresh9
-ffffffff82227de0 d format_attr_ch_mask
-ffffffff82227e00 d format_attr_fc_mask
-ffffffff82227e20 d skx_iio_mapping_group
-ffffffff82227e48 d skx_uncore_iio_freerunning_ops
-ffffffff82227ea0 d skx_uncore_iio_freerunning_events
-ffffffff822283f0 d skx_iio_freerunning
-ffffffff82228450 d skx_uncore_iio_free_running
-ffffffff82228560 d skx_uncore_iio_freerunning_formats_attr
-ffffffff82228578 d skx_uncore_irp
-ffffffff82228680 d skx_uncore_formats_attr
-ffffffff822286b0 d skx_uncore_pcu_ops
-ffffffff82228700 d skx_uncore_pcu_format_group
-ffffffff82228728 d skx_uncore_pcu
-ffffffff82228830 d skx_uncore_pcu_formats_attr
-ffffffff82228890 d skx_uncore_imc
-ffffffff82228998 d skx_m2m_uncore_pci_ops
-ffffffff822289e8 d skx_uncore_m2m
-ffffffff82228af0 d skx_upi_uncore_pci_ops
-ffffffff82228b40 d skx_uncore_upi
-ffffffff82228c50 d skx_upi_uncore_formats_attr
-ffffffff82228c80 d format_attr_umask_ext
-ffffffff82228ca0 d skx_uncore_m2pcie
-ffffffff82228db0 d skx_uncore_m2pcie_constraints
-ffffffff82228e00 d skx_uncore_m3upi
-ffffffff82228f10 d skx_uncore_m3upi_constraints
-ffffffff82229078 d snr_uncore_ubox
-ffffffff82229180 d snr_uncore_chabox_ops
-ffffffff822291d0 d snr_uncore_chabox
-ffffffff822292e0 d snr_uncore_cha_formats_attr
-ffffffff82229320 d format_attr_umask_ext2
-ffffffff82229340 d format_attr_filter_tid5
-ffffffff82229360 d snr_iio_attr_update
-ffffffff82229370 d snr_uncore_iio
-ffffffff82229480 d snr_uncore_iio_constraints
-ffffffff82229520 d snr_uncore_iio_formats_attr
-ffffffff82229560 d format_attr_ch_mask2
-ffffffff82229580 d format_attr_fc_mask2
-ffffffff822295a0 d snr_iio_mapping_group
-ffffffff822295c8 d snr_sad_pmon_mapping
-ffffffff822295d0 d snr_uncore_irp
-ffffffff822296d8 d snr_uncore_m2pcie
-ffffffff822297e0 d snr_uncore_pcu_ops
-ffffffff82229830 d snr_uncore_pcu
-ffffffff82229940 d snr_uncore_iio_freerunning_events
-ffffffff82229d50 d snr_iio_freerunning
-ffffffff82229d90 d snr_uncore_iio_free_running
-ffffffff82229e98 d snr_m2m_uncore_pci_ops
-ffffffff82229ee8 d snr_uncore_m2m
-ffffffff82229ff0 d snr_m2m_uncore_formats_attr
-ffffffff8222a020 d format_attr_umask_ext3
-ffffffff8222a040 d snr_pcie3_uncore_pci_ops
-ffffffff8222a090 d snr_uncore_pcie3
-ffffffff8222a198 d snr_uncore_mmio_ops
-ffffffff8222a1f0 d snr_uncore_imc_events
-ffffffff8222a330 d snr_uncore_imc
-ffffffff8222a438 d snr_uncore_imc_freerunning_ops
-ffffffff8222a490 d snr_uncore_imc_freerunning_events
-ffffffff8222a5d0 d snr_imc_freerunning
-ffffffff8222a610 d snr_uncore_imc_free_running
-ffffffff8222a720 d icx_cha_msr_offsets
-ffffffff8222a7c0 d icx_uncore_chabox_ops
-ffffffff8222a810 d icx_uncore_chabox
-ffffffff8222a920 d icx_msr_offsets
-ffffffff8222a940 d icx_iio_attr_update
-ffffffff8222a950 d icx_uncore_iio
-ffffffff8222aa60 d icx_uncore_iio_constraints
-ffffffff8222aba0 d icx_iio_mapping_group
-ffffffff8222abc8 d icx_sad_pmon_mapping
-ffffffff8222abd0 d icx_uncore_irp
-ffffffff8222acd8 d icx_uncore_m2pcie
-ffffffff8222ade0 d icx_uncore_m2pcie_constraints
-ffffffff8222ae80 d icx_uncore_iio_freerunning_events
-ffffffff8222b290 d icx_iio_freerunning
-ffffffff8222b2d0 d icx_uncore_iio_free_running
-ffffffff8222b3e0 d icx_iio_clk_freerunning_box_offsets
-ffffffff8222b400 d icx_iio_bw_freerunning_box_offsets
-ffffffff8222b418 d icx_uncore_m2m
-ffffffff8222b520 d icx_uncore_upi
-ffffffff8222b630 d icx_upi_uncore_formats_attr
-ffffffff8222b660 d format_attr_umask_ext4
-ffffffff8222b680 d icx_uncore_m3upi
-ffffffff8222b790 d icx_uncore_m3upi_constraints
-ffffffff8222b8f8 d icx_uncore_mmio_ops
-ffffffff8222b948 d icx_uncore_imc
-ffffffff8222ba50 d icx_uncore_imc_freerunning_ops
-ffffffff8222baa0 d icx_uncore_imc_freerunning_events
-ffffffff8222bcd0 d icx_imc_freerunning
-ffffffff8222bd30 d icx_uncore_imc_free_running
-ffffffff8222be38 d spr_uncore_chabox_ops
-ffffffff8222be90 d uncore_alias_groups
-ffffffff8222bea0 d spr_uncore_chabox
-ffffffff8222bfb0 d spr_uncore_cha_formats_attr
-ffffffff8222bff0 d format_attr_tid_en2
-ffffffff8222c010 d uncore_alias_attrs
-ffffffff8222c020 d dev_attr_alias
-ffffffff8222c040 d spr_uncore_iio
-ffffffff8222c148 d spr_uncore_irp
-ffffffff8222c250 d spr_uncore_raw_formats_attr
-ffffffff8222c280 d spr_uncore_m2pcie
-ffffffff8222c390 d spr_uncore_m2pcie_constraints
-ffffffff8222c408 d spr_uncore_pcu
-ffffffff8222c510 d spr_uncore_mmio_ops
-ffffffff8222c560 d spr_uncore_imc
-ffffffff8222c668 d spr_uncore_pci_ops
-ffffffff8222c6b8 d spr_uncore_m2m
-ffffffff8222c7c0 d spr_uncore_upi
-ffffffff8222c8c8 d spr_uncore_m3upi
-ffffffff8222c9d0 d spr_uncore_mdf
-ffffffff8222cae0 d spr_uncore_iio_freerunning_events
-ffffffff8222d2b0 d spr_iio_freerunning
-ffffffff8222d310 d spr_uncore_iio_free_running
-ffffffff8222d418 d spr_uncore_imc_freerunning_ops
-ffffffff8222d470 d spr_uncore_imc_freerunning_events
-ffffffff8222d510 d spr_imc_freerunning
-ffffffff8222d550 d spr_uncore_imc_free_running
-ffffffff8222d660 d generic_uncore_formats_attr
-ffffffff8222d690 d format_attr_thresh
-ffffffff8222d6b0 d generic_uncore_msr_ops
-ffffffff8222d700 d generic_uncore_pci_ops
-ffffffff8222d750 d generic_uncore_mmio_ops
-ffffffff8222d7a0 d pkg_msr
-ffffffff8222d8c0 d core_msr
-ffffffff8222d960 d group_cstate_pkg_c2
-ffffffff8222d988 d group_cstate_pkg_c3
-ffffffff8222d9b0 d group_cstate_pkg_c6
-ffffffff8222d9d8 d group_cstate_pkg_c7
-ffffffff8222da00 d group_cstate_pkg_c8
-ffffffff8222da28 d group_cstate_pkg_c9
-ffffffff8222da50 d group_cstate_pkg_c10
-ffffffff8222da80 d attrs_cstate_pkg_c2
-ffffffff8222da90 d attr_cstate_pkg_c2
-ffffffff8222dac0 d attrs_cstate_pkg_c3
-ffffffff8222dad0 d attr_cstate_pkg_c3
-ffffffff8222db00 d attrs_cstate_pkg_c6
-ffffffff8222db10 d attr_cstate_pkg_c6
-ffffffff8222db40 d attrs_cstate_pkg_c7
-ffffffff8222db50 d attr_cstate_pkg_c7
-ffffffff8222db80 d attrs_cstate_pkg_c8
-ffffffff8222db90 d attr_cstate_pkg_c8
-ffffffff8222dbc0 d attrs_cstate_pkg_c9
-ffffffff8222dbd0 d attr_cstate_pkg_c9
-ffffffff8222dc00 d attrs_cstate_pkg_c10
-ffffffff8222dc10 d attr_cstate_pkg_c10
-ffffffff8222dc40 d group_cstate_core_c1
-ffffffff8222dc68 d group_cstate_core_c3
-ffffffff8222dc90 d group_cstate_core_c6
-ffffffff8222dcb8 d group_cstate_core_c7
-ffffffff8222dce0 d attrs_cstate_core_c1
-ffffffff8222dcf0 d attr_cstate_core_c1
-ffffffff8222dd20 d attrs_cstate_core_c3
-ffffffff8222dd30 d attr_cstate_core_c3
-ffffffff8222dd60 d attrs_cstate_core_c6
-ffffffff8222dd70 d attr_cstate_core_c6
-ffffffff8222dda0 d attrs_cstate_core_c7
-ffffffff8222ddb0 d attr_cstate_core_c7
-ffffffff8222dde0 d cstate_core_pmu
-ffffffff8222df08 d cstate_pkg_pmu
-ffffffff8222e030 d core_attr_groups
-ffffffff8222e050 d core_attr_update
-ffffffff8222e078 d core_events_attr_group
-ffffffff8222e0a0 d core_format_attr_group
-ffffffff8222e0c8 d cpumask_attr_group
-ffffffff8222e0f0 d core_format_attrs
-ffffffff8222e100 d format_attr_core_event
-ffffffff8222e120 d cstate_cpumask_attrs
-ffffffff8222e130 d pkg_attr_groups
-ffffffff8222e150 d pkg_attr_update
-ffffffff8222e190 d pkg_events_attr_group
-ffffffff8222e1b8 d pkg_format_attr_group
-ffffffff8222e1e0 d pkg_format_attrs
-ffffffff8222e1f0 d format_attr_pkg_event
-ffffffff8222e210 d zx_arch_formats_attr
-ffffffff8222e240 d __SCK__tp_func_local_timer_entry
-ffffffff8222e250 d __SCK__tp_func_local_timer_exit
-ffffffff8222e260 d __SCK__tp_func_spurious_apic_entry
-ffffffff8222e270 d __SCK__tp_func_spurious_apic_exit
-ffffffff8222e280 d __SCK__tp_func_error_apic_entry
-ffffffff8222e290 d __SCK__tp_func_error_apic_exit
-ffffffff8222e2a0 d __SCK__tp_func_x86_platform_ipi_entry
-ffffffff8222e2b0 d __SCK__tp_func_x86_platform_ipi_exit
-ffffffff8222e2c0 d __SCK__tp_func_irq_work_entry
-ffffffff8222e2d0 d __SCK__tp_func_irq_work_exit
-ffffffff8222e2e0 d __SCK__tp_func_reschedule_entry
-ffffffff8222e2f0 d __SCK__tp_func_reschedule_exit
-ffffffff8222e300 d __SCK__tp_func_call_function_entry
-ffffffff8222e310 d __SCK__tp_func_call_function_exit
-ffffffff8222e320 d __SCK__tp_func_call_function_single_entry
-ffffffff8222e330 d __SCK__tp_func_call_function_single_exit
-ffffffff8222e340 d __SCK__tp_func_thermal_apic_entry
-ffffffff8222e350 d __SCK__tp_func_thermal_apic_exit
-ffffffff8222e360 d __SCK__tp_func_vector_config
-ffffffff8222e370 d __SCK__tp_func_vector_update
-ffffffff8222e380 d __SCK__tp_func_vector_clear
-ffffffff8222e390 d __SCK__tp_func_vector_reserve_managed
-ffffffff8222e3a0 d __SCK__tp_func_vector_reserve
-ffffffff8222e3b0 d __SCK__tp_func_vector_alloc
-ffffffff8222e3c0 d __SCK__tp_func_vector_alloc_managed
-ffffffff8222e3d0 d __SCK__tp_func_vector_activate
-ffffffff8222e3e0 d __SCK__tp_func_vector_deactivate
-ffffffff8222e3f0 d __SCK__tp_func_vector_teardown
-ffffffff8222e400 d __SCK__tp_func_vector_setup
-ffffffff8222e410 d __SCK__tp_func_vector_free_moved
-ffffffff8222e420 d trace_event_fields_x86_irq_vector
-ffffffff8222e470 d trace_event_type_funcs_x86_irq_vector
-ffffffff8222e490 d print_fmt_x86_irq_vector
-ffffffff8222e4b0 d event_local_timer_entry
-ffffffff8222e540 d event_local_timer_exit
-ffffffff8222e5d0 d event_spurious_apic_entry
-ffffffff8222e660 d event_spurious_apic_exit
-ffffffff8222e6f0 d event_error_apic_entry
-ffffffff8222e780 d event_error_apic_exit
-ffffffff8222e810 d event_x86_platform_ipi_entry
-ffffffff8222e8a0 d event_x86_platform_ipi_exit
-ffffffff8222e930 d event_irq_work_entry
-ffffffff8222e9c0 d event_irq_work_exit
-ffffffff8222ea50 d event_reschedule_entry
-ffffffff8222eae0 d event_reschedule_exit
-ffffffff8222eb70 d event_call_function_entry
-ffffffff8222ec00 d event_call_function_exit
-ffffffff8222ec90 d event_call_function_single_entry
-ffffffff8222ed20 d event_call_function_single_exit
-ffffffff8222edb0 d event_thermal_apic_entry
-ffffffff8222ee40 d event_thermal_apic_exit
-ffffffff8222eed0 d trace_event_fields_vector_config
-ffffffff8222ef98 d trace_event_type_funcs_vector_config
-ffffffff8222efc0 d print_fmt_vector_config
-ffffffff8222f020 d event_vector_config
-ffffffff8222f0b0 d trace_event_fields_vector_mod
-ffffffff8222f1a0 d trace_event_type_funcs_vector_mod
-ffffffff8222f1c0 d print_fmt_vector_mod
-ffffffff8222f238 d event_vector_update
-ffffffff8222f2c8 d event_vector_clear
-ffffffff8222f360 d trace_event_fields_vector_reserve
-ffffffff8222f3d8 d trace_event_type_funcs_vector_reserve
-ffffffff8222f400 d print_fmt_vector_reserve
-ffffffff8222f428 d event_vector_reserve_managed
-ffffffff8222f4b8 d event_vector_reserve
-ffffffff8222f550 d trace_event_fields_vector_alloc
-ffffffff8222f618 d trace_event_type_funcs_vector_alloc
-ffffffff8222f640 d print_fmt_vector_alloc
-ffffffff8222f698 d event_vector_alloc
-ffffffff8222f730 d trace_event_fields_vector_alloc_managed
-ffffffff8222f7d0 d trace_event_type_funcs_vector_alloc_managed
-ffffffff8222f7f0 d print_fmt_vector_alloc_managed
-ffffffff8222f830 d event_vector_alloc_managed
-ffffffff8222f8c0 d trace_event_fields_vector_activate
-ffffffff8222f988 d trace_event_type_funcs_vector_activate
-ffffffff8222f9b0 d print_fmt_vector_activate
-ffffffff8222fa20 d event_vector_activate
-ffffffff8222fab0 d event_vector_deactivate
-ffffffff8222fb40 d trace_event_fields_vector_teardown
-ffffffff8222fbe0 d trace_event_type_funcs_vector_teardown
-ffffffff8222fc00 d print_fmt_vector_teardown
-ffffffff8222fc58 d event_vector_teardown
-ffffffff8222fcf0 d trace_event_fields_vector_setup
-ffffffff8222fd90 d trace_event_type_funcs_vector_setup
-ffffffff8222fdb0 d print_fmt_vector_setup
-ffffffff8222fdf8 d event_vector_setup
-ffffffff8222fe90 d trace_event_fields_vector_free_moved
-ffffffff8222ff58 d trace_event_type_funcs_vector_free_moved
-ffffffff8222ff80 d print_fmt_vector_free_moved
-ffffffff8222ffe0 d event_vector_free_moved
-ffffffff82230070 d kvm_posted_intr_wakeup_handler
-ffffffff82230078 d __common_interrupt._rs
-ffffffff822300a0 d die_owner
-ffffffff822300a8 d __SCK__tp_func_nmi_handler
-ffffffff822300c0 d trace_event_fields_nmi_handler
-ffffffff82230160 d trace_event_type_funcs_nmi_handler
-ffffffff82230180 d print_fmt_nmi_handler
-ffffffff822301d0 d event_nmi_handler
-ffffffff82230260 d nmi_desc
-ffffffff822302c0 d nmi_longest_ns
-ffffffff822302c8 d nmi_check_duration._rs
-ffffffff822302f0 d _brk_start
-ffffffff82230300 d standard_io_resources
-ffffffff82230580 d code_resource
-ffffffff822305c0 d rodata_resource
-ffffffff82230600 d data_resource
-ffffffff82230640 d bss_resource
-ffffffff82230680 d kernel_offset_notifier
-ffffffff82230698 d _brk_end
-ffffffff822306a0 d x86_cpuinit
-ffffffff822306b8 d cached_irq_mask
-ffffffff822306c0 d i8259A_chip
-ffffffff822307c8 d null_legacy_pic
-ffffffff82230818 d default_legacy_pic
-ffffffff82230868 d i8259_syscore_ops
-ffffffff82230890 d legacy_pic
-ffffffff82230898 d video_rom_resource
-ffffffff822308d8 d system_rom_resource
-ffffffff82230920 d adapter_rom_resources
-ffffffff82230aa0 d extension_rom_resource
-ffffffff82230ae0 d espfix_init_mutex
-ffffffff82230b00 d boot_params_version_attrs
-ffffffff82230b10 d boot_params_data_attrs
-ffffffff82230b20 d boot_params_version_attr
-ffffffff82230b40 d boot_params_data_attr
-ffffffff82230b80 d setup_data_type_attrs
-ffffffff82230b90 d setup_data_data_attrs
-ffffffff82230ba0 d type_attr
-ffffffff82230bc0 d type_attr
-ffffffff82230be0 d pci_mem_start
-ffffffff82230be8 d smp_alt_modules
-ffffffff82230bf8 d clocksource_tsc_early
-ffffffff82230cb0 d clocksource_tsc
-ffffffff82230d68 d time_cpufreq_notifier_block
-ffffffff82230d80 d tsc_irqwork
-ffffffff82230dd8 d tsc_refine_calibration_work.tsc_start
-ffffffff82230de0 d rtc_device
-ffffffff82231110 d rtc_resources
-ffffffff82231190 d __SCK__tp_func_x86_fpu_before_save
-ffffffff822311a0 d __SCK__tp_func_x86_fpu_after_save
-ffffffff822311b0 d __SCK__tp_func_x86_fpu_before_restore
-ffffffff822311c0 d __SCK__tp_func_x86_fpu_after_restore
-ffffffff822311d0 d __SCK__tp_func_x86_fpu_regs_activated
-ffffffff822311e0 d __SCK__tp_func_x86_fpu_regs_deactivated
-ffffffff822311f0 d __SCK__tp_func_x86_fpu_init_state
-ffffffff82231200 d __SCK__tp_func_x86_fpu_dropped
-ffffffff82231210 d __SCK__tp_func_x86_fpu_copy_src
-ffffffff82231220 d __SCK__tp_func_x86_fpu_copy_dst
-ffffffff82231230 d __SCK__tp_func_x86_fpu_xstate_check_failed
-ffffffff82231240 d trace_event_fields_x86_fpu
-ffffffff82231308 d trace_event_type_funcs_x86_fpu
-ffffffff82231330 d print_fmt_x86_fpu
-ffffffff822313a0 d event_x86_fpu_before_save
-ffffffff82231430 d event_x86_fpu_after_save
-ffffffff822314c0 d event_x86_fpu_before_restore
-ffffffff82231550 d event_x86_fpu_after_restore
-ffffffff822315e0 d event_x86_fpu_regs_activated
-ffffffff82231670 d event_x86_fpu_regs_deactivated
-ffffffff82231700 d event_x86_fpu_init_state
-ffffffff82231790 d event_x86_fpu_dropped
-ffffffff82231820 d event_x86_fpu_copy_src
-ffffffff822318b0 d event_x86_fpu_copy_dst
-ffffffff82231940 d event_x86_fpu_xstate_check_failed
-ffffffff822319d0 d i8237_syscore_ops
-ffffffff822319f8 d cache_private_group
-ffffffff82231a20 d dev_attr_cache_disable_0
-ffffffff82231a40 d dev_attr_cache_disable_1
-ffffffff82231a60 d dev_attr_subcaches
-ffffffff82231a80 d this_cpu
-ffffffff82231a90 d ppin_info
-ffffffff82231ab4 d smp_num_siblings
-ffffffff82231ab8 d spec_ctrl_mutex
-ffffffff82231ad8 d arch_turbo_freq_ratio.llvm.5758307855206381241
-ffffffff82231ae0 d arch_max_freq_ratio.llvm.5758307855206381241
-ffffffff82231ae8 d freq_invariance_syscore_ops
-ffffffff82231b10 d disable_freq_invariance_work
-ffffffff82231b30 d umwait_syscore_ops
-ffffffff82231b58 d umwait_attr_group
-ffffffff82231b80 d umwait_control_cached
-ffffffff82231b90 d umwait_attrs
-ffffffff82231ba8 d dev_attr_enable_c02
-ffffffff82231bc8 d dev_attr_max_time
-ffffffff82231be8 d umwait_lock
-ffffffff82231c08 d handle_bus_lock._rs
-ffffffff82231c30 d mktme_status
-ffffffff82231c40 d sld_sysctls
-ffffffff82231cc0 d sysctl_sld_mitigate
-ffffffff82231cc8 d split_lock_warn._rs
-ffffffff82231cf0 d buslock_sem
-ffffffff82231d08 d sl_reenable_unlock
-ffffffff82231d60 d sl_reenable
-ffffffff82231db8 d energ_perf_values
-ffffffff82231dc0 d intel_epb_syscore_ops
-ffffffff82231df0 d intel_epb_attrs
-ffffffff82231e00 d dev_attr_energy_perf_bias
-ffffffff82231e20 d nodes_per_socket
-ffffffff82231e24 d nodes_per_socket
-ffffffff82231e28 d mtrr_mutex
-ffffffff82231e48 d mtrr_syscore_ops
-ffffffff82231e70 d microcode_cache
-ffffffff82231e80 d microcode_mutex
-ffffffff82231ea0 d mc_cpu_interface
-ffffffff82231ed0 d mc_syscore_ops
-ffffffff82231f00 d mc_default_attrs
-ffffffff82231f18 d dev_attr_version
-ffffffff82231f38 d dev_attr_version
-ffffffff82231f58 d dev_attr_version
-ffffffff82231f78 d dev_attr_processor_flags
-ffffffff82231f98 d microcode_intel_ops
-ffffffff82231fb8 d save_mc_for_early.x86_cpu_microcode_mutex
-ffffffff82231fd8 d vmware_pv_reboot_nb
-ffffffff82231ff0 d ms_hyperv_init_platform.hv_nmi_unknown_na
-ffffffff82232020 d hv_nmi_unknown.nmi_cpu
-ffffffff82232028 d __acpi_register_gsi
-ffffffff82232030 d acpi_suspend_lowlevel
-ffffffff82232038 d acpi_ioapic_lock.llvm.6401115224881037569
-ffffffff82232058 d freq_invariance_lock
-ffffffff82232078 d crashing_cpu
-ffffffff82232080 d nmi_shootdown_cpus.crash_nmi_callback_na
-ffffffff822320b0 d stopping_cpu
-ffffffff822320b8 d register_stop_handler.smp_stop_nmi_callback_na
-ffffffff822320e8 d smp_ops
-ffffffff82232150 d x86_topology
-ffffffff82232290 d x86_hybrid_topology
-ffffffff82232390 d init_udelay
-ffffffff82232398 d wakeup_cpu_via_init_nmi.wakeup_cpu0_nmi_na
-ffffffff82232400 d lapic_clockevent
-ffffffff82232500 d cpuid_to_apicid
-ffffffff82232580 d nr_logical_cpuids
-ffffffff82232588 d lapic_syscore_ops
-ffffffff822325b0 d lapic_resource
-ffffffff822325f0 d lapic_controller
-ffffffff822326f8 d register_nmi_cpu_backtrace_handler.nmi_cpu_backtrace_handler_na
-ffffffff82232728 d ioapic_mutex
-ffffffff82232748 d ioapic_i8259.0
-ffffffff8223274c d ioapic_i8259.1
-ffffffff82232750 d ioapic_syscore_ops
-ffffffff82232778 d pci_msi_domain_info
-ffffffff822327b8 d pci_msi_domain_ops
-ffffffff822327f8 d pci_msi_controller
-ffffffff82232900 d early_serial_console
-ffffffff82232978 d max_xpos
-ffffffff8223297c d max_ypos
-ffffffff82232980 d current_ypos
-ffffffff82232988 d early_vga_console
-ffffffff82232a00 d early_serial_base
-ffffffff82232a08 d serial_in
-ffffffff82232a10 d serial_out
-ffffffff82232a18 d clocksource_hpet
-ffffffff82232ad0 d hpet_rtc_interrupt._rs
-ffffffff82232af8 d hpet_msi_domain_ops
-ffffffff82232b38 d smn_mutex
-ffffffff82232b58 d kvm_cpuid_base.kvm_cpuid_base
-ffffffff82232b60 d kvm_pv_reboot_nb
-ffffffff82232b78 d kvm_syscore_ops
-ffffffff82232ba0 d kvm_clock
-ffffffff82232c58 d pv_info
-ffffffff82232c60 d virt_spin_lock_key
-ffffffff82232c70 d pv_ops
-ffffffff82232cd8 d __SCK__pv_steal_clock
-ffffffff82232ce8 d __SCK__pv_sched_clock
-ffffffff82232cf8 d reserve_ioports
-ffffffff82232d40 d good_insns_64
-ffffffff82232d60 d good_2byte_insns
-ffffffff82232d80 d itmt_update_mutex
-ffffffff82232da0 d itmt_root_table
-ffffffff82232e20 d itmt_kern_table
-ffffffff82232ea0 d umip_printk.ratelimit
-ffffffff82232ed0 d write_class
-ffffffff82232f30 d read_class
-ffffffff82232f60 d dir_class
-ffffffff82232fa0 d chattr_class
-ffffffff82232fe0 d signal_class
-ffffffff82232ff0 d is_vsmp
-ffffffff82233000 d __cachemode2pte_tbl
-ffffffff82233010 d __pte2cachemode_tbl
-ffffffff82233018 d direct_gbpages
-ffffffff82233020 d __SCK__tp_func_page_fault_user
-ffffffff82233030 d __SCK__tp_func_page_fault_kernel
-ffffffff82233040 d trace_event_fields_x86_exceptions
-ffffffff822330e0 d trace_event_type_funcs_x86_exceptions
-ffffffff82233100 d print_fmt_x86_exceptions
-ffffffff82233160 d event_page_fault_user
-ffffffff822331f0 d event_page_fault_kernel
-ffffffff82233280 d pgd_list
-ffffffff82233290 d show_unhandled_signals
-ffffffff82233294 d __userpte_alloc_gfp
-ffffffff82233298 d last_mm_ctx_id
-ffffffff822332a0 d init_pkru_value
-ffffffff822332a8 d __SCK__aesni_ctr_enc_tfm
-ffffffff822332c0 d aesni_aeads
-ffffffff82233640 d aesni_skciphers
-ffffffff82233f00 d aesni_cipher_alg
-ffffffff82234080 d aesni_xctr
-ffffffff82234240 d sha256_ni_algs
-ffffffff82234600 d sha256_avx2_algs
-ffffffff822349c0 d sha256_avx_algs
-ffffffff82234d80 d sha256_ssse3_algs
-ffffffff82235140 d sha512_avx2_algs
-ffffffff82235500 d sha512_avx_algs
-ffffffff822358c0 d sha512_ssse3_algs
-ffffffff82235c80 d polyval_alg
-ffffffff82235e60 d polyval_alg
-ffffffff82236040 d prop_phys
-ffffffff82236048 d uga_phys
-ffffffff82236050 d efi_attr_fw_vendor
-ffffffff82236070 d efi_attr_runtime
-ffffffff82236090 d efi_attr_config_table
-ffffffff822360b0 d efi_va
-ffffffff822360b8 d __SCK__tp_func_task_newtask
-ffffffff822360c8 d __SCK__tp_func_task_rename
-ffffffff822360e0 d trace_event_fields_task_newtask
-ffffffff822361a8 d trace_event_type_funcs_task_newtask
-ffffffff822361d0 d print_fmt_task_newtask
-ffffffff82236240 d event_task_newtask
-ffffffff822362d0 d trace_event_fields_task_rename
-ffffffff82236398 d trace_event_type_funcs_task_rename
-ffffffff822363c0 d print_fmt_task_rename
-ffffffff82236430 d event_task_rename
-ffffffff822364c0 d default_dump_filter
-ffffffff822364c8 d panic_on_oops
-ffffffff822364cc d panic_timeout
-ffffffff822364d0 d kern_panic_table
-ffffffff82236590 d warn_count_attr
-ffffffff822365b0 d panic_cpu
-ffffffff822365b8 d __SCK__tp_func_cpuhp_enter
-ffffffff822365c8 d __SCK__tp_func_cpuhp_multi_enter
-ffffffff822365d8 d __SCK__tp_func_cpuhp_exit
-ffffffff822365f0 d trace_event_fields_cpuhp_enter
-ffffffff822366b8 d trace_event_type_funcs_cpuhp_enter
-ffffffff822366e0 d print_fmt_cpuhp_enter
-ffffffff82236738 d event_cpuhp_enter
-ffffffff822367d0 d trace_event_fields_cpuhp_multi_enter
-ffffffff82236898 d trace_event_type_funcs_cpuhp_multi_enter
-ffffffff822368c0 d print_fmt_cpuhp_multi_enter
-ffffffff82236918 d event_cpuhp_multi_enter
-ffffffff822369b0 d trace_event_fields_cpuhp_exit
-ffffffff82236a78 d trace_event_type_funcs_cpuhp_exit
-ffffffff82236aa0 d print_fmt_cpuhp_exit
-ffffffff82236af8 d event_cpuhp_exit
-ffffffff82236b88 d cpu_add_remove_lock.llvm.12637579947466161668
-ffffffff82236ba8 d cpu_hotplug_lock.llvm.12637579947466161668
-ffffffff82236c08 d cpuhp_threads
-ffffffff82236c68 d cpuhp_state_mutex
-ffffffff82236c88 d cpu_hotplug_pm_sync_init.cpu_hotplug_pm_callback_nb
-ffffffff82236ca0 d cpuhp_hp_states
-ffffffff822391b0 d cpuhp_smt_attrs
-ffffffff822391c8 d dev_attr_control
-ffffffff822391e8 d dev_attr_control
-ffffffff82239208 d dev_attr_active
-ffffffff82239228 d dev_attr_active
-ffffffff82239248 d dev_attr_active
-ffffffff82239270 d cpuhp_cpu_root_attrs
-ffffffff82239280 d dev_attr_states
-ffffffff822392a0 d cpuhp_cpu_attrs
-ffffffff822392c0 d dev_attr_state
-ffffffff822392e0 d dev_attr_state
-ffffffff82239300 d dev_attr_state
-ffffffff82239320 d dev_attr_target
-ffffffff82239340 d dev_attr_fail
-ffffffff82239360 d oops_limit
-ffffffff82239370 d kern_exit_table
-ffffffff822393f0 d oops_count_attr
-ffffffff82239410 d check_stack_usage.lowest_to_date
-ffffffff82239418 d __SCK__tp_func_irq_handler_entry
-ffffffff82239428 d __SCK__tp_func_irq_handler_exit
-ffffffff82239438 d __SCK__tp_func_softirq_entry
-ffffffff82239448 d __SCK__tp_func_softirq_exit
-ffffffff82239458 d __SCK__tp_func_softirq_raise
-ffffffff82239468 d __SCK__tp_func_tasklet_entry
-ffffffff82239478 d __SCK__tp_func_tasklet_exit
-ffffffff82239490 d trace_event_fields_irq_handler_entry
-ffffffff82239508 d trace_event_type_funcs_irq_handler_entry
-ffffffff82239530 d print_fmt_irq_handler_entry
-ffffffff82239560 d event_irq_handler_entry
-ffffffff822395f0 d trace_event_fields_irq_handler_exit
-ffffffff82239668 d trace_event_type_funcs_irq_handler_exit
-ffffffff82239690 d print_fmt_irq_handler_exit
-ffffffff822396d0 d event_irq_handler_exit
-ffffffff82239760 d trace_event_fields_softirq
-ffffffff822397b0 d trace_event_type_funcs_softirq
-ffffffff822397d0 d print_fmt_softirq
-ffffffff82239930 d event_softirq_entry
-ffffffff822399c0 d event_softirq_exit
-ffffffff82239a50 d event_softirq_raise
-ffffffff82239ae0 d trace_event_fields_tasklet
-ffffffff82239b30 d trace_event_type_funcs_tasklet
-ffffffff82239b50 d print_fmt_tasklet
-ffffffff82239b70 d event_tasklet_entry
-ffffffff82239c00 d event_tasklet_exit
-ffffffff82239c90 d softirq_threads
-ffffffff82239cf0 d ioport_resource
-ffffffff82239d30 d iomem_resource
-ffffffff82239d70 d muxed_resource_wait
-ffffffff82239d88 d iomem_fs_type
-ffffffff82239dd0 d proc_do_static_key.static_key_mutex
-ffffffff82239df0 d kernel_base_table.llvm.7548402211666496850
-ffffffff82239e70 d vm_base_table.llvm.7548402211666496850
-ffffffff82239ef0 d debug_base_table.llvm.7548402211666496850
-ffffffff82239f70 d dev_base_table.llvm.7548402211666496850
-ffffffff82239ff0 d sysctl_writes_strict
-ffffffff8223a000 d kern_table
-ffffffff8223a940 d vm_table
-ffffffff8223b040 d debug_table
-ffffffff8223b0c0 d file_caps_enabled
-ffffffff8223b0c8 d init_user_ns
-ffffffff8223b2e0 d root_user
-ffffffff8223b378 d __SCK__tp_func_signal_generate
-ffffffff8223b388 d __SCK__tp_func_signal_deliver
-ffffffff8223b3a0 d trace_event_fields_signal_generate
-ffffffff8223b4e0 d trace_event_type_funcs_signal_generate
-ffffffff8223b500 d print_fmt_signal_generate
-ffffffff8223b588 d event_signal_generate
-ffffffff8223b620 d trace_event_fields_signal_deliver
-ffffffff8223b710 d trace_event_type_funcs_signal_deliver
-ffffffff8223b730 d print_fmt_signal_deliver
-ffffffff8223b7a8 d event_signal_deliver
-ffffffff8223b838 d print_dropped_signal.ratelimit_state
-ffffffff8223b860 d overflowuid
-ffffffff8223b864 d overflowgid
-ffffffff8223b868 d fs_overflowuid
-ffffffff8223b86c d fs_overflowgid
-ffffffff8223b870 d uts_sem
-ffffffff8223b8a0 d umhelper_sem.llvm.8933294479242672393
-ffffffff8223b8d0 d usermodehelper_disabled_waitq.llvm.8933294479242672393
-ffffffff8223b8e8 d usermodehelper_disabled.llvm.8933294479242672393
-ffffffff8223b8f0 d running_helpers_waitq
-ffffffff8223b908 d usermodehelper_bset
-ffffffff8223b910 d usermodehelper_inheritable
-ffffffff8223b920 d usermodehelper_table
-ffffffff8223b9e0 d __SCK__tp_func_workqueue_queue_work
-ffffffff8223b9f0 d __SCK__tp_func_workqueue_activate_work
-ffffffff8223ba00 d __SCK__tp_func_workqueue_execute_start
-ffffffff8223ba10 d __SCK__tp_func_workqueue_execute_end
-ffffffff8223ba20 d trace_event_fields_workqueue_queue_work
-ffffffff8223bb10 d trace_event_type_funcs_workqueue_queue_work
-ffffffff8223bb30 d print_fmt_workqueue_queue_work
-ffffffff8223bbb8 d event_workqueue_queue_work
-ffffffff8223bc50 d trace_event_fields_workqueue_activate_work
-ffffffff8223bca0 d trace_event_type_funcs_workqueue_activate_work
-ffffffff8223bcc0 d print_fmt_workqueue_activate_work
-ffffffff8223bce0 d event_workqueue_activate_work
-ffffffff8223bd70 d trace_event_fields_workqueue_execute_start
-ffffffff8223bde8 d trace_event_type_funcs_workqueue_execute_start
-ffffffff8223be10 d print_fmt_workqueue_execute_start
-ffffffff8223be50 d event_workqueue_execute_start
-ffffffff8223bee0 d trace_event_fields_workqueue_execute_end
-ffffffff8223bf58 d trace_event_type_funcs_workqueue_execute_end
-ffffffff8223bf80 d print_fmt_workqueue_execute_end
-ffffffff8223bfc0 d event_workqueue_execute_end
-ffffffff8223c050 d wq_pool_mutex
-ffffffff8223c070 d workqueues
-ffffffff8223c080 d worker_pool_idr
-ffffffff8223c098 d wq_pool_attach_mutex
-ffffffff8223c0b8 d wq_subsys
-ffffffff8223c170 d wq_sysfs_unbound_attrs
-ffffffff8223c210 d wq_watchdog_touched
-ffffffff8223c218 d wq_watchdog_thresh
-ffffffff8223c220 d __cancel_work_timer.cancel_waitq
-ffffffff8223c238 d wq_sysfs_cpumask_attr
-ffffffff8223c260 d wq_sysfs_groups
-ffffffff8223c270 d wq_sysfs_attrs
-ffffffff8223c288 d dev_attr_per_cpu
-ffffffff8223c2a8 d dev_attr_max_active
-ffffffff8223c2c8 d init_pid_ns
-ffffffff8223c348 d pid_max
-ffffffff8223c34c d pid_max_min
-ffffffff8223c350 d pid_max_max
-ffffffff8223c358 d init_struct_pid
-ffffffff8223c3c8 d text_mutex
-ffffffff8223c3e8 d param_lock
-ffffffff8223c408 d module_ktype
-ffffffff8223c438 d kmalloced_params
-ffffffff8223c448 d kthread_create_list
-ffffffff8223c458 d init_nsproxy
-ffffffff8223c4a0 d reboot_notifier_list
-ffffffff8223c4e0 d kernel_attrs
-ffffffff8223c530 d fscaps_attr
-ffffffff8223c550 d uevent_seqnum_attr
-ffffffff8223c570 d profiling_attr
-ffffffff8223c590 d kexec_loaded_attr
-ffffffff8223c5b0 d kexec_crash_loaded_attr
-ffffffff8223c5d0 d kexec_crash_size_attr
-ffffffff8223c5f0 d vmcoreinfo_attr
-ffffffff8223c610 d rcu_expedited_attr
-ffffffff8223c630 d rcu_normal_attr
-ffffffff8223c650 d init_groups
-ffffffff8223c658 d init_cred
-ffffffff8223c6e0 d panic_reboot_mode
-ffffffff8223c6e8 d power_off_prep_handler_list
-ffffffff8223c720 d restart_prep_handler_list
-ffffffff8223c758 d system_transition_mutex
-ffffffff8223c778 d ctrl_alt_del.cad_work
-ffffffff8223c798 d C_A_D
-ffffffff8223c7a0 d poweroff_work
-ffffffff8223c7c0 d poweroff_work
-ffffffff8223c7e0 d reboot_work.llvm.4504324690878579718
-ffffffff8223c800 d hw_protection_shutdown.allow_proceed
-ffffffff8223c810 d poweroff_cmd
-ffffffff8223c910 d run_cmd.envp
-ffffffff8223c928 d hw_failure_emergency_poweroff_work
-ffffffff8223c980 d reboot_attrs
-ffffffff8223c9a8 d reboot_mode_attr
-ffffffff8223c9c8 d reboot_force_attr
-ffffffff8223c9e8 d reboot_type_attr
-ffffffff8223ca08 d reboot_cpu_attr
-ffffffff8223ca30 d kern_reboot_table
-ffffffff8223caf0 d reboot_default
-ffffffff8223caf4 d reboot_type
-ffffffff8223caf8 d next_cookie
-ffffffff8223cb00 d async_global_pending
-ffffffff8223cb10 d async_dfl_domain.llvm.14257496401790032778
-ffffffff8223cb28 d async_done
-ffffffff8223cb40 d smpboot_threads_lock
-ffffffff8223cb60 d hotplug_threads
-ffffffff8223cb70 d init_ucounts
-ffffffff8223cc00 d set_root
-ffffffff8223cc80 d user_table
-ffffffff8223cf40 d ue_int_max
-ffffffff8223cf48 d __SCK__tp_func_sched_kthread_stop
-ffffffff8223cf58 d __SCK__tp_func_sched_kthread_stop_ret
-ffffffff8223cf68 d __SCK__tp_func_sched_kthread_work_queue_work
-ffffffff8223cf78 d __SCK__tp_func_sched_kthread_work_execute_start
-ffffffff8223cf88 d __SCK__tp_func_sched_kthread_work_execute_end
-ffffffff8223cf98 d __SCK__tp_func_sched_waking
-ffffffff8223cfa8 d __SCK__tp_func_sched_wakeup
-ffffffff8223cfb8 d __SCK__tp_func_sched_wakeup_new
-ffffffff8223cfc8 d __SCK__tp_func_sched_switch
-ffffffff8223cfd8 d __SCK__tp_func_sched_migrate_task
-ffffffff8223cfe8 d __SCK__tp_func_sched_process_free
-ffffffff8223cff8 d __SCK__tp_func_sched_process_exit
-ffffffff8223d008 d __SCK__tp_func_sched_wait_task
-ffffffff8223d018 d __SCK__tp_func_sched_process_wait
-ffffffff8223d028 d __SCK__tp_func_sched_process_exec
-ffffffff8223d038 d __SCK__tp_func_sched_blocked_reason
-ffffffff8223d048 d __SCK__tp_func_sched_pi_setprio
-ffffffff8223d058 d __SCK__tp_func_sched_process_hang
-ffffffff8223d068 d __SCK__tp_func_sched_move_numa
-ffffffff8223d078 d __SCK__tp_func_sched_stick_numa
-ffffffff8223d088 d __SCK__tp_func_sched_swap_numa
-ffffffff8223d098 d __SCK__tp_func_sched_wake_idle_without_ipi
-ffffffff8223d0a8 d __SCK__tp_func_pelt_thermal_tp
-ffffffff8223d0b8 d __SCK__tp_func_sched_update_nr_running_tp
-ffffffff8223d0d0 d trace_event_fields_sched_kthread_stop
-ffffffff8223d148 d trace_event_type_funcs_sched_kthread_stop
-ffffffff8223d170 d print_fmt_sched_kthread_stop
-ffffffff8223d198 d event_sched_kthread_stop
-ffffffff8223d230 d trace_event_fields_sched_kthread_stop_ret
-ffffffff8223d280 d trace_event_type_funcs_sched_kthread_stop_ret
-ffffffff8223d2a0 d print_fmt_sched_kthread_stop_ret
-ffffffff8223d2b8 d event_sched_kthread_stop_ret
-ffffffff8223d350 d trace_event_fields_sched_kthread_work_queue_work
-ffffffff8223d3f0 d trace_event_type_funcs_sched_kthread_work_queue_work
-ffffffff8223d410 d print_fmt_sched_kthread_work_queue_work
-ffffffff8223d460 d event_sched_kthread_work_queue_work
-ffffffff8223d4f0 d trace_event_fields_sched_kthread_work_execute_start
-ffffffff8223d568 d trace_event_type_funcs_sched_kthread_work_execute_start
-ffffffff8223d590 d print_fmt_sched_kthread_work_execute_start
-ffffffff8223d5d0 d event_sched_kthread_work_execute_start
-ffffffff8223d660 d trace_event_fields_sched_kthread_work_execute_end
-ffffffff8223d6d8 d trace_event_type_funcs_sched_kthread_work_execute_end
-ffffffff8223d700 d print_fmt_sched_kthread_work_execute_end
-ffffffff8223d740 d event_sched_kthread_work_execute_end
-ffffffff8223d7d0 d trace_event_fields_sched_wakeup_template
-ffffffff8223d898 d trace_event_type_funcs_sched_wakeup_template
-ffffffff8223d8c0 d print_fmt_sched_wakeup_template
-ffffffff8223d920 d event_sched_waking
-ffffffff8223d9b0 d event_sched_wakeup
-ffffffff8223da40 d event_sched_wakeup_new
-ffffffff8223dad0 d trace_event_fields_sched_switch
-ffffffff8223dc10 d trace_event_type_funcs_sched_switch
-ffffffff8223dc30 d print_fmt_sched_switch
-ffffffff8223df68 d event_sched_switch
-ffffffff8223e000 d trace_event_fields_sched_migrate_task
-ffffffff8223e0f0 d trace_event_type_funcs_sched_migrate_task
-ffffffff8223e110 d print_fmt_sched_migrate_task
-ffffffff8223e180 d event_sched_migrate_task
-ffffffff8223e210 d trace_event_fields_sched_process_template
-ffffffff8223e2b0 d trace_event_type_funcs_sched_process_template
-ffffffff8223e2d0 d print_fmt_sched_process_template
-ffffffff8223e310 d event_sched_process_free
-ffffffff8223e3a0 d event_sched_process_exit
-ffffffff8223e430 d event_sched_wait_task
-ffffffff8223e4c0 d trace_event_fields_sched_process_wait
-ffffffff8223e560 d trace_event_type_funcs_sched_process_wait
-ffffffff8223e580 d print_fmt_sched_process_wait
-ffffffff8223e5c0 d event_sched_process_wait
-ffffffff8223e650 d trace_event_fields_sched_process_fork
-ffffffff8223e718 d trace_event_type_funcs_sched_process_fork
-ffffffff8223e740 d print_fmt_sched_process_fork
-ffffffff8223e7b0 d event_sched_process_fork
-ffffffff8223e840 d trace_event_fields_sched_process_exec
-ffffffff8223e8e0 d trace_event_type_funcs_sched_process_exec
-ffffffff8223e900 d print_fmt_sched_process_exec
-ffffffff8223e950 d event_sched_process_exec
-ffffffff8223e9e0 d trace_event_fields_sched_stat_template
-ffffffff8223ea80 d trace_event_type_funcs_sched_stat_template
-ffffffff8223eaa0 d print_fmt_sched_stat_template
-ffffffff8223eaf8 d event_sched_stat_wait
-ffffffff8223eb88 d event_sched_stat_sleep
-ffffffff8223ec18 d event_sched_stat_iowait
-ffffffff8223eca8 d event_sched_stat_blocked
-ffffffff8223ed40 d trace_event_fields_sched_blocked_reason
-ffffffff8223ede0 d trace_event_type_funcs_sched_blocked_reason
-ffffffff8223ee00 d print_fmt_sched_blocked_reason
-ffffffff8223ee48 d event_sched_blocked_reason
-ffffffff8223eee0 d trace_event_fields_sched_stat_runtime
-ffffffff8223efa8 d trace_event_type_funcs_sched_stat_runtime
-ffffffff8223efd0 d print_fmt_sched_stat_runtime
-ffffffff8223f060 d event_sched_stat_runtime
-ffffffff8223f0f0 d trace_event_fields_sched_pi_setprio
-ffffffff8223f1b8 d trace_event_type_funcs_sched_pi_setprio
-ffffffff8223f1e0 d print_fmt_sched_pi_setprio
-ffffffff8223f238 d event_sched_pi_setprio
-ffffffff8223f2d0 d trace_event_fields_sched_process_hang
-ffffffff8223f348 d trace_event_type_funcs_sched_process_hang
-ffffffff8223f370 d print_fmt_sched_process_hang
-ffffffff8223f398 d event_sched_process_hang
-ffffffff8223f430 d trace_event_fields_sched_move_numa
-ffffffff8223f570 d trace_event_type_funcs_sched_move_numa
-ffffffff8223f590 d print_fmt_sched_move_numa
-ffffffff8223f630 d event_sched_move_numa
-ffffffff8223f6c0 d trace_event_fields_sched_numa_pair_template
-ffffffff8223f878 d trace_event_type_funcs_sched_numa_pair_template
-ffffffff8223f8a0 d print_fmt_sched_numa_pair_template
-ffffffff8223f9a8 d event_sched_stick_numa
-ffffffff8223fa38 d event_sched_swap_numa
-ffffffff8223fad0 d trace_event_fields_sched_wake_idle_without_ipi
-ffffffff8223fb20 d trace_event_type_funcs_sched_wake_idle_without_ipi
-ffffffff8223fb40 d print_fmt_sched_wake_idle_without_ipi
-ffffffff8223fb58 d event_sched_wake_idle_without_ipi
-ffffffff8223fbe8 d task_groups
-ffffffff8223fc00 d cpu_files
-ffffffff822401f0 d cpu_legacy_files
-ffffffff82240700 d cpu_cgrp_subsys
-ffffffff822407f0 d sched_core_sysctls
-ffffffff82240930 d sysctl_sched_uclamp_util_min
-ffffffff82240934 d sysctl_sched_uclamp_util_max
-ffffffff82240938 d sysctl_sched_uclamp_util_min_rt_default
-ffffffff82240940 d uclamp_mutex
-ffffffff82240960 d __SCK__tp_func_pelt_rt_tp
-ffffffff82240970 d __SCK__tp_func_pelt_dl_tp
-ffffffff82240980 d __SCK__tp_func_pelt_irq_tp
-ffffffff82240990 d preempt_dynamic_mode
-ffffffff82240998 d __SCK__tp_func_sched_stat_wait
-ffffffff822409a8 d __SCK__tp_func_sched_stat_sleep
-ffffffff822409b8 d __SCK__tp_func_sched_stat_iowait
-ffffffff822409c8 d __SCK__tp_func_sched_stat_blocked
-ffffffff822409d8 d __SCK__tp_func_pelt_cfs_tp
-ffffffff822409e8 d __SCK__tp_func_pelt_se_tp
-ffffffff822409f8 d __SCK__tp_func_sched_stat_runtime
-ffffffff82240a08 d __SCK__tp_func_sched_cpu_capacity_tp
-ffffffff82240a18 d __SCK__tp_func_sched_overutilized_tp
-ffffffff82240a28 d balance_push_callback
-ffffffff82240a38 d __SCK__tp_func_sched_util_est_cfs_tp
-ffffffff82240a48 d __SCK__tp_func_sched_util_est_se_tp
-ffffffff82240a58 d __SCK__tp_func_sched_process_fork
-ffffffff82240a68 d __SCK__preempt_schedule
-ffffffff82240a78 d __SCK__preempt_schedule_notrace
-ffffffff82240a88 d __SCK__might_resched
-ffffffff82240a98 d __SCK__cond_resched
-ffffffff82240aa8 d sched_nr_latency
-ffffffff82240aac d normalized_sysctl_sched_min_granularity
-ffffffff82240ab0 d normalized_sysctl_sched_latency
-ffffffff82240ab4 d normalized_sysctl_sched_wakeup_granularity
-ffffffff82240ab8 d shares_mutex
-ffffffff82240ae0 d sched_fair_sysctls
-ffffffff82240b60 d sysctl_sched_latency
-ffffffff82240b64 d sysctl_sched_min_granularity
-ffffffff82240b68 d sysctl_sched_idle_min_granularity
-ffffffff82240b6c d sysctl_sched_wakeup_granularity
-ffffffff82240b70 d sysctl_sched_tunable_scaling
-ffffffff82240b78 d sched_pelt_multiplier.mutex
-ffffffff82240b98 d sysctl_sched_pelt_multiplier
-ffffffff82240b9c d sysctl_sched_dl_period_max
-ffffffff82240ba0 d sysctl_sched_dl_period_min
-ffffffff82240bb0 d sched_rt_sysctls
-ffffffff82240cb0 d sysctl_sched_rr_timeslice
-ffffffff82240cb8 d sched_rt_handler.mutex
-ffffffff82240cd8 d sched_rr_handler.mutex
-ffffffff82240d00 d sched_pelt_sysctls
-ffffffff82240d80 d sched_dl_sysctls
-ffffffff82240e40 d sched_rr_timeslice
-ffffffff82240e44 d sysctl_sched_rt_runtime
-ffffffff82240e48 d sysctl_sched_rt_period
-ffffffff82240e50 d root_cpuacct
-ffffffff82240f30 d files
-ffffffff822416d0 d files
-ffffffff82241a30 d cpuacct_cgrp_subsys
-ffffffff82241b20 d schedutil_gov
-ffffffff82241b88 d resched_latency_warn.latency_check_ratelimit
-ffffffff82241bb0 d sched_domain_topology
-ffffffff82241bb8 d psi_cgroups_enabled
-ffffffff82241bc8 d psi_system
-ffffffff82241ea8 d psi_enable
-ffffffff82241eb0 d sched_clock_work
-ffffffff82241ed0 d global_tunables_lock
-ffffffff82241ef0 d sugov_tunables_ktype
-ffffffff82241f20 d sugov_groups
-ffffffff82241f30 d sugov_attrs
-ffffffff82241f40 d rate_limit_us
-ffffffff82241f60 d default_relax_domain_level
-ffffffff82241f70 d default_topology
-ffffffff822420b0 d asym_cap_list
-ffffffff822420c0 d sched_domains_mutex
-ffffffff822420e0 d sched_feat_keys
-ffffffff82242280 d __SCK__tp_func_contention_begin
-ffffffff82242290 d __SCK__tp_func_contention_end
-ffffffff822422a0 d trace_event_fields_contention_begin
-ffffffff82242318 d trace_event_type_funcs_contention_begin
-ffffffff82242340 d print_fmt_contention_begin
-ffffffff82242410 d event_contention_begin
-ffffffff822424a0 d trace_event_fields_contention_end
-ffffffff82242518 d trace_event_type_funcs_contention_end
-ffffffff82242540 d print_fmt_contention_end
-ffffffff82242568 d event_contention_end
-ffffffff822425f8 d max_lock_depth
-ffffffff82242600 d cpu_latency_constraints.llvm.7195302168972977666
-ffffffff82242628 d cpu_latency_qos_miscdev
-ffffffff82242678 d pm_chain_head.llvm.17819311616793353530
-ffffffff822426b0 d g
-ffffffff822426f8 d state_attr
-ffffffff82242718 d pm_async_attr
-ffffffff82242738 d wakeup_count_attr
-ffffffff82242758 d mem_sleep_attr
-ffffffff82242778 d sync_on_suspend_attr
-ffffffff82242798 d wake_lock_attr
-ffffffff822427b8 d wake_unlock_attr
-ffffffff822427d8 d pm_freeze_timeout_attr
-ffffffff82242800 d suspend_attrs
-ffffffff82242870 d success
-ffffffff82242890 d fail
-ffffffff822428b0 d failed_freeze
-ffffffff822428d0 d failed_prepare
-ffffffff822428f0 d failed_suspend
-ffffffff82242910 d failed_suspend_late
-ffffffff82242930 d failed_suspend_noirq
-ffffffff82242950 d failed_resume
-ffffffff82242970 d failed_resume_early
-ffffffff82242990 d failed_resume_noirq
-ffffffff822429b0 d last_failed_dev
-ffffffff822429d0 d last_failed_errno
-ffffffff822429f0 d last_failed_step
-ffffffff82242a10 d pm_async_enabled
-ffffffff82242a14 d sync_on_suspend_enabled
-ffffffff82242a18 d vt_switch_mutex
-ffffffff82242a38 d pm_vt_switch_list
-ffffffff82242a48 d mem_sleep_default
-ffffffff82242a50 d s2idle_wait_head
-ffffffff82242a68 d mem_sleep_current
-ffffffff82242a70 d wakelocks_lock
-ffffffff82242a90 d parent_irqs
-ffffffff82242aa0 d leaf_irqs
-ffffffff82242ab0 d wakeup_reason_pm_notifier_block
-ffffffff82242ac8 d attr_group
-ffffffff82242af0 d attrs
-ffffffff82242b08 d resume_reason
-ffffffff82242b28 d suspend_time
-ffffffff82242b48 d __SCK__tp_func_console
-ffffffff82242b60 d trace_event_fields_console
-ffffffff82242bb0 d trace_event_type_funcs_console
-ffffffff82242bd0 d print_fmt_console
-ffffffff82242be8 d event_console
-ffffffff82242c78 d log_wait
-ffffffff82242c90 d log_buf
-ffffffff82242c98 d log_buf_len
-ffffffff82242ca0 d prb
-ffffffff82242ca8 d printk_rb_static
-ffffffff82242d00 d printk_time
-ffffffff82242d04 d do_syslog.saved_console_loglevel
-ffffffff82242d08 d syslog_lock
-ffffffff82242d28 d console_suspend_enabled
-ffffffff82242d30 d console_sem
-ffffffff82242d48 d preferred_console
-ffffffff82242d50 d dump_list
-ffffffff82242d60 d printk_cpu_sync_owner
-ffffffff82242d70 d _printk_rb_static_descs
-ffffffff8225ad70 d _printk_rb_static_infos
-ffffffff822b2d70 d console_printk
-ffffffff822b2d80 d printk_ratelimit_state
-ffffffff822b2da8 d devkmsg_log_str
-ffffffff822b2dc0 d printk_sysctls.llvm.4835704885480306601
-ffffffff822b2fc0 d nr_irqs
-ffffffff822b2fc8 d irq_desc_tree.llvm.232448079557933059
-ffffffff822b2fd8 d sparse_irq_lock.llvm.232448079557933059
-ffffffff822b2ff8 d irq_kobj_type
-ffffffff822b3030 d irq_groups
-ffffffff822b3040 d irq_attrs
-ffffffff822b3080 d per_cpu_count_attr
-ffffffff822b30a0 d chip_name_attr
-ffffffff822b30c0 d hwirq_attr
-ffffffff822b30e0 d wakeup_attr
-ffffffff822b3100 d name_attr
-ffffffff822b3120 d actions_attr
-ffffffff822b3140 d print_irq_desc.ratelimit
-ffffffff822b3168 d print_irq_desc.ratelimit
-ffffffff822b3190 d poll_spurious_irq_timer
-ffffffff822b31b8 d report_bad_irq.count
-ffffffff822b31c0 d resend_tasklet
-ffffffff822b3200 d chained_action
-ffffffff822b3280 d no_irq_chip
-ffffffff822b3388 d dummy_irq_chip
-ffffffff822b3490 d probing_active
-ffffffff822b34b0 d irq_domain_mutex
-ffffffff822b34d0 d irq_domain_list
-ffffffff822b34e0 d register_irq_proc.register_lock
-ffffffff822b3500 d migrate_one_irq._rs
-ffffffff822b3528 d irq_pm_syscore_ops
-ffffffff822b3550 d msi_domain_ops_default
-ffffffff822b3590 d __SCK__tp_func_irq_matrix_online
-ffffffff822b35a0 d __SCK__tp_func_irq_matrix_offline
-ffffffff822b35b0 d __SCK__tp_func_irq_matrix_reserve
-ffffffff822b35c0 d __SCK__tp_func_irq_matrix_remove_reserved
-ffffffff822b35d0 d __SCK__tp_func_irq_matrix_assign_system
-ffffffff822b35e0 d __SCK__tp_func_irq_matrix_alloc_reserved
-ffffffff822b35f0 d __SCK__tp_func_irq_matrix_reserve_managed
-ffffffff822b3600 d __SCK__tp_func_irq_matrix_remove_managed
-ffffffff822b3610 d __SCK__tp_func_irq_matrix_alloc_managed
-ffffffff822b3620 d __SCK__tp_func_irq_matrix_assign
-ffffffff822b3630 d __SCK__tp_func_irq_matrix_alloc
-ffffffff822b3640 d __SCK__tp_func_irq_matrix_free
-ffffffff822b3650 d trace_event_fields_irq_matrix_global
-ffffffff822b3720 d trace_event_fields_irq_matrix_global_update
-ffffffff822b3810 d trace_event_fields_irq_matrix_cpu
-ffffffff822b39c8 d trace_event_type_funcs_irq_matrix_global
-ffffffff822b39f0 d print_fmt_irq_matrix_global
-ffffffff822b3a88 d event_irq_matrix_online
-ffffffff822b3b18 d event_irq_matrix_offline
-ffffffff822b3ba8 d event_irq_matrix_reserve
-ffffffff822b3c38 d event_irq_matrix_remove_reserved
-ffffffff822b3cc8 d trace_event_type_funcs_irq_matrix_global_update
-ffffffff822b3cf0 d print_fmt_irq_matrix_global_update
-ffffffff822b3d98 d event_irq_matrix_assign_system
-ffffffff822b3e28 d trace_event_type_funcs_irq_matrix_cpu
-ffffffff822b3e50 d print_fmt_irq_matrix_cpu
-ffffffff822b3f68 d event_irq_matrix_alloc_reserved
-ffffffff822b3ff8 d event_irq_matrix_reserve_managed
-ffffffff822b4088 d event_irq_matrix_remove_managed
-ffffffff822b4118 d event_irq_matrix_alloc_managed
-ffffffff822b41a8 d event_irq_matrix_assign
-ffffffff822b4238 d event_irq_matrix_alloc
-ffffffff822b42c8 d event_irq_matrix_free
-ffffffff822b4358 d __SCK__tp_func_rcu_dyntick
-ffffffff822b4368 d __SCK__tp_func_rcu_torture_read
-ffffffff822b4380 d trace_event_fields_rcu_utilization
-ffffffff822b43d0 d trace_event_type_funcs_rcu_utilization
-ffffffff822b43f0 d print_fmt_rcu_utilization
-ffffffff822b4400 d event_rcu_utilization
-ffffffff822b4490 d trace_event_fields_rcu_grace_period
-ffffffff822b4530 d trace_event_type_funcs_rcu_grace_period
-ffffffff822b4550 d print_fmt_rcu_grace_period
-ffffffff822b4588 d event_rcu_grace_period
-ffffffff822b4620 d trace_event_fields_rcu_future_grace_period
-ffffffff822b4760 d trace_event_type_funcs_rcu_future_grace_period
-ffffffff822b4780 d print_fmt_rcu_future_grace_period
-ffffffff822b4808 d event_rcu_future_grace_period
-ffffffff822b48a0 d trace_event_fields_rcu_grace_period_init
-ffffffff822b49b8 d trace_event_type_funcs_rcu_grace_period_init
-ffffffff822b49e0 d print_fmt_rcu_grace_period_init
-ffffffff822b4a48 d event_rcu_grace_period_init
-ffffffff822b4ae0 d trace_event_fields_rcu_exp_grace_period
-ffffffff822b4b80 d trace_event_type_funcs_rcu_exp_grace_period
-ffffffff822b4ba0 d print_fmt_rcu_exp_grace_period
-ffffffff822b4bd8 d event_rcu_exp_grace_period
-ffffffff822b4c70 d trace_event_fields_rcu_exp_funnel_lock
-ffffffff822b4d60 d trace_event_type_funcs_rcu_exp_funnel_lock
-ffffffff822b4d80 d print_fmt_rcu_exp_funnel_lock
-ffffffff822b4dd8 d event_rcu_exp_funnel_lock
-ffffffff822b4e70 d trace_event_fields_rcu_nocb_wake
-ffffffff822b4f10 d trace_event_type_funcs_rcu_nocb_wake
-ffffffff822b4f30 d print_fmt_rcu_nocb_wake
-ffffffff822b4f60 d event_rcu_nocb_wake
-ffffffff822b4ff0 d trace_event_fields_rcu_preempt_task
-ffffffff822b5090 d trace_event_type_funcs_rcu_preempt_task
-ffffffff822b50b0 d print_fmt_rcu_preempt_task
-ffffffff822b50e8 d event_rcu_preempt_task
-ffffffff822b5180 d trace_event_fields_rcu_unlock_preempted_task
-ffffffff822b5220 d trace_event_type_funcs_rcu_unlock_preempted_task
-ffffffff822b5240 d print_fmt_rcu_unlock_preempted_task
-ffffffff822b5278 d event_rcu_unlock_preempted_task
-ffffffff822b5310 d trace_event_fields_rcu_quiescent_state_report
-ffffffff822b5478 d trace_event_type_funcs_rcu_quiescent_state_report
-ffffffff822b54a0 d print_fmt_rcu_quiescent_state_report
-ffffffff822b5528 d event_rcu_quiescent_state_report
-ffffffff822b55c0 d trace_event_fields_rcu_fqs
-ffffffff822b5688 d trace_event_type_funcs_rcu_fqs
-ffffffff822b56b0 d print_fmt_rcu_fqs
-ffffffff822b56f8 d event_rcu_fqs
-ffffffff822b5790 d trace_event_fields_rcu_stall_warning
-ffffffff822b5808 d trace_event_type_funcs_rcu_stall_warning
-ffffffff822b5830 d print_fmt_rcu_stall_warning
-ffffffff822b5850 d event_rcu_stall_warning
-ffffffff822b58e0 d trace_event_fields_rcu_dyntick
-ffffffff822b59a8 d trace_event_type_funcs_rcu_dyntick
-ffffffff822b59d0 d print_fmt_rcu_dyntick
-ffffffff822b5a30 d event_rcu_dyntick
-ffffffff822b5ac0 d trace_event_fields_rcu_callback
-ffffffff822b5b88 d trace_event_type_funcs_rcu_callback
-ffffffff822b5bb0 d print_fmt_rcu_callback
-ffffffff822b5bf8 d event_rcu_callback
-ffffffff822b5c90 d trace_event_fields_rcu_segcb_stats
-ffffffff822b5d30 d trace_event_type_funcs_rcu_segcb_stats
-ffffffff822b5d50 d print_fmt_rcu_segcb_stats
-ffffffff822b5e50 d event_rcu_segcb_stats
-ffffffff822b5ee0 d trace_event_fields_rcu_kvfree_callback
-ffffffff822b5fa8 d trace_event_type_funcs_rcu_kvfree_callback
-ffffffff822b5fd0 d print_fmt_rcu_kvfree_callback
-ffffffff822b6020 d event_rcu_kvfree_callback
-ffffffff822b60b0 d trace_event_fields_rcu_batch_start
-ffffffff822b6150 d trace_event_type_funcs_rcu_batch_start
-ffffffff822b6170 d print_fmt_rcu_batch_start
-ffffffff822b61b0 d event_rcu_batch_start
-ffffffff822b6240 d trace_event_fields_rcu_invoke_callback
-ffffffff822b62e0 d trace_event_type_funcs_rcu_invoke_callback
-ffffffff822b6300 d print_fmt_rcu_invoke_callback
-ffffffff822b6338 d event_rcu_invoke_callback
-ffffffff822b63d0 d trace_event_fields_rcu_invoke_kvfree_callback
-ffffffff822b6470 d trace_event_type_funcs_rcu_invoke_kvfree_callback
-ffffffff822b6490 d print_fmt_rcu_invoke_kvfree_callback
-ffffffff822b64d0 d event_rcu_invoke_kvfree_callback
-ffffffff822b6560 d trace_event_fields_rcu_invoke_kfree_bulk_callback
-ffffffff822b6600 d trace_event_type_funcs_rcu_invoke_kfree_bulk_callback
-ffffffff822b6620 d print_fmt_rcu_invoke_kfree_bulk_callback
-ffffffff822b6668 d event_rcu_invoke_kfree_bulk_callback
-ffffffff822b6700 d trace_event_fields_rcu_batch_end
-ffffffff822b6818 d trace_event_type_funcs_rcu_batch_end
-ffffffff822b6840 d print_fmt_rcu_batch_end
-ffffffff822b68e0 d event_rcu_batch_end
-ffffffff822b6970 d trace_event_fields_rcu_torture_read
-ffffffff822b6a60 d trace_event_type_funcs_rcu_torture_read
-ffffffff822b6a80 d print_fmt_rcu_torture_read
-ffffffff822b6ae8 d event_rcu_torture_read
-ffffffff822b6b80 d trace_event_fields_rcu_barrier
-ffffffff822b6c70 d trace_event_type_funcs_rcu_barrier
-ffffffff822b6c90 d print_fmt_rcu_barrier
-ffffffff822b6ce8 d event_rcu_barrier
-ffffffff822b6d78 d rcu_expedited_nesting
-ffffffff822b6d80 d rcu_tasks
-ffffffff822b6ea8 d tasks_rcu_exit_srcu
-ffffffff822b7028 d __SCK__tp_func_rcu_grace_period
-ffffffff822b7038 d __SCK__tp_func_rcu_utilization
-ffffffff822b7048 d __SCK__tp_func_rcu_kvfree_callback
-ffffffff822b7058 d __SCK__tp_func_rcu_callback
-ffffffff822b7068 d __SCK__tp_func_rcu_segcb_stats
-ffffffff822b7078 d __SCK__tp_func_rcu_future_grace_period
-ffffffff822b7088 d __SCK__tp_func_rcu_stall_warning
-ffffffff822b7098 d __SCK__tp_func_rcu_barrier
-ffffffff822b70a8 d __SCK__tp_func_rcu_quiescent_state_report
-ffffffff822b70b8 d __SCK__tp_func_rcu_unlock_preempted_task
-ffffffff822b70c8 d __SCK__tp_func_rcu_grace_period_init
-ffffffff822b70d8 d __SCK__tp_func_rcu_fqs
-ffffffff822b70e8 d __SCK__tp_func_rcu_batch_start
-ffffffff822b70f8 d __SCK__tp_func_rcu_batch_end
-ffffffff822b7108 d __SCK__tp_func_rcu_invoke_callback
-ffffffff822b7118 d __SCK__tp_func_rcu_invoke_kfree_bulk_callback
-ffffffff822b7128 d __SCK__tp_func_rcu_invoke_kvfree_callback
-ffffffff822b7138 d __SCK__tp_func_rcu_nocb_wake
-ffffffff822b7148 d __SCK__tp_func_rcu_exp_grace_period
-ffffffff822b7158 d __SCK__tp_func_rcu_exp_funnel_lock
-ffffffff822b7168 d __SCK__tp_func_rcu_preempt_task
-ffffffff822b7178 d exp_holdoff
-ffffffff822b7180 d counter_wrap_check
-ffffffff822b7188 d convert_to_big
-ffffffff822b7190 d srcu_retry_check_delay
-ffffffff822b7198 d srcu_max_nodelay_phase
-ffffffff822b71a0 d srcu_max_nodelay
-ffffffff822b71a8 d srcu_boot_list
-ffffffff822b71b8 d rcu_name
-ffffffff822b71c4 d use_softirq
-ffffffff822b71c8 d rcu_fanout_leaf
-ffffffff822b71cc d num_rcu_lvl
-ffffffff822b71d4 d kthread_prio
-ffffffff822b71d8 d rcu_min_cached_objs
-ffffffff822b71dc d rcu_delay_page_cache_fill_msec
-ffffffff822b71e0 d blimit
-ffffffff822b71e8 d qhimark
-ffffffff822b71f0 d qlowmark
-ffffffff822b71f8 d qovld
-ffffffff822b7200 d rcu_divisor
-ffffffff822b7208 d rcu_resched_ns
-ffffffff822b7210 d jiffies_till_sched_qs
-ffffffff822b7218 d jiffies_till_first_fqs
-ffffffff822b7220 d jiffies_till_next_fqs
-ffffffff822b7240 d rcu_state
-ffffffff822b7c00 d rcu_init.rcu_pm_notify_nb
-ffffffff822b7c18 d qovld_calc
-ffffffff822b7c20 d nocb_nobypass_lim_per_jiffy
-ffffffff822b7c24 d rcu_nocb_gp_stride
-ffffffff822b7c28 d rcu_cpu_thread_spec
-ffffffff822b7c88 d kfree_rcu_shrinker
-ffffffff822b7cc8 d rcu_panic_block
-ffffffff822b7ce0 d __SCK__tp_func_swiotlb_bounced
-ffffffff822b7cf0 d trace_event_fields_swiotlb_bounced
-ffffffff822b7de0 d trace_event_type_funcs_swiotlb_bounced
-ffffffff822b7e00 d print_fmt_swiotlb_bounced
-ffffffff822b7eb0 d event_swiotlb_bounced
-ffffffff822b7f40 d default_nslabs.llvm.10187319759290315620
-ffffffff822b7f48 d swiotlb_tbl_map_single._rs
-ffffffff822b7f70 d swiotlb_tbl_map_single._rs.12
-ffffffff822b7f98 d __SCK__tp_func_sys_enter
-ffffffff822b7fa8 d __SCK__tp_func_sys_exit
-ffffffff822b7fc0 d trace_event_fields_sys_enter
-ffffffff822b8038 d trace_event_type_funcs_sys_enter
-ffffffff822b8060 d print_fmt_sys_enter
-ffffffff822b80e8 d event_sys_enter
-ffffffff822b8180 d trace_event_fields_sys_exit
-ffffffff822b81f8 d trace_event_type_funcs_sys_exit
-ffffffff822b8220 d print_fmt_sys_exit
-ffffffff822b8248 d event_sys_exit
-ffffffff822b82d8 d __SCK__irqentry_exit_cond_resched
-ffffffff822b82e8 d task_exit_notifier.llvm.16423112076044107767
-ffffffff822b8320 d munmap_notifier.llvm.16423112076044107767
-ffffffff822b8358 d profile_flip_mutex
-ffffffff822b8378 d __SCK__tp_func_timer_init
-ffffffff822b8388 d __SCK__tp_func_timer_start
-ffffffff822b8398 d __SCK__tp_func_timer_expire_entry
-ffffffff822b83a8 d __SCK__tp_func_timer_expire_exit
-ffffffff822b83b8 d __SCK__tp_func_timer_cancel
-ffffffff822b83c8 d __SCK__tp_func_itimer_state
-ffffffff822b83d8 d __SCK__tp_func_itimer_expire
-ffffffff822b83f0 d trace_event_fields_timer_class
-ffffffff822b8440 d trace_event_type_funcs_timer_class
-ffffffff822b8460 d print_fmt_timer_class
-ffffffff822b8478 d event_timer_init
-ffffffff822b8510 d trace_event_fields_timer_start
-ffffffff822b8600 d trace_event_type_funcs_timer_start
-ffffffff822b8620 d print_fmt_timer_start
-ffffffff822b8788 d event_timer_start
-ffffffff822b8820 d trace_event_fields_timer_expire_entry
-ffffffff822b88e8 d trace_event_type_funcs_timer_expire_entry
-ffffffff822b8910 d print_fmt_timer_expire_entry
-ffffffff822b8970 d event_timer_expire_entry
-ffffffff822b8a00 d event_timer_expire_exit
-ffffffff822b8a90 d event_timer_cancel
-ffffffff822b8b20 d trace_event_fields_hrtimer_init
-ffffffff822b8bc0 d trace_event_type_funcs_hrtimer_init
-ffffffff822b8be0 d print_fmt_hrtimer_init
-ffffffff822b8df8 d event_hrtimer_init
-ffffffff822b8e90 d trace_event_fields_hrtimer_start
-ffffffff822b8f80 d trace_event_type_funcs_hrtimer_start
-ffffffff822b8fa0 d print_fmt_hrtimer_start
-ffffffff822b91b0 d event_hrtimer_start
-ffffffff822b9240 d trace_event_fields_hrtimer_expire_entry
-ffffffff822b92e0 d trace_event_type_funcs_hrtimer_expire_entry
-ffffffff822b9300 d print_fmt_hrtimer_expire_entry
-ffffffff822b9360 d event_hrtimer_expire_entry
-ffffffff822b93f0 d trace_event_fields_hrtimer_class
-ffffffff822b9440 d trace_event_type_funcs_hrtimer_class
-ffffffff822b9460 d print_fmt_hrtimer_class
-ffffffff822b9480 d event_hrtimer_expire_exit
-ffffffff822b9510 d event_hrtimer_cancel
-ffffffff822b95a0 d trace_event_fields_itimer_state
-ffffffff822b96b8 d trace_event_type_funcs_itimer_state
-ffffffff822b96e0 d print_fmt_itimer_state
-ffffffff822b9798 d event_itimer_state
-ffffffff822b9830 d trace_event_fields_itimer_expire
-ffffffff822b98d0 d trace_event_type_funcs_itimer_expire
-ffffffff822b98f0 d print_fmt_itimer_expire
-ffffffff822b9938 d event_itimer_expire
-ffffffff822b99d0 d trace_event_fields_tick_stop
-ffffffff822b9a48 d trace_event_type_funcs_tick_stop
-ffffffff822b9a70 d print_fmt_tick_stop
-ffffffff822b9bc0 d event_tick_stop
-ffffffff822b9c50 d timer_update_work.llvm.1636415617355853904
-ffffffff822b9c70 d timer_sysctl
-ffffffff822b9cf0 d sysctl_timer_migration
-ffffffff822b9cf8 d timer_keys_mutex
-ffffffff822b9d18 d __SCK__tp_func_hrtimer_start
-ffffffff822b9d28 d __SCK__tp_func_hrtimer_cancel
-ffffffff822b9d38 d __SCK__tp_func_hrtimer_init
-ffffffff822b9d48 d __SCK__tp_func_hrtimer_expire_entry
-ffffffff822b9d58 d __SCK__tp_func_hrtimer_expire_exit
-ffffffff822b9d68 d __SCK__tp_func_tick_stop
-ffffffff822b9d78 d hrtimer_work.llvm.8316441673460706030
-ffffffff822b9dc0 d migration_cpu_base
-ffffffff822ba000 d tk_fast_mono
-ffffffff822ba080 d tk_fast_raw
-ffffffff822ba0f8 d dummy_clock
-ffffffff822ba1b0 d timekeeping_syscore_ops
-ffffffff822ba1d8 d tick_usec
-ffffffff822ba1e0 d time_status
-ffffffff822ba1e8 d time_maxerror
-ffffffff822ba1f0 d time_esterror
-ffffffff822ba1f8 d ntp_next_leap_sec
-ffffffff822ba200 d sync_work
-ffffffff822ba220 d time_constant
-ffffffff822ba228 d sync_hw_clock.offset_nsec
-ffffffff822ba230 d watchdog_list
-ffffffff822ba240 d max_cswd_read_retries
-ffffffff822ba248 d verify_n_cpus
-ffffffff822ba250 d clocksource_list
-ffffffff822ba260 d clocksource_mutex
-ffffffff822ba280 d watchdog_work
-ffffffff822ba2a0 d clocksource_subsys
-ffffffff822ba358 d device_clocksource
-ffffffff822ba630 d clocksource_groups
-ffffffff822ba640 d clocksource_attrs
-ffffffff822ba660 d dev_attr_current_clocksource
-ffffffff822ba680 d dev_attr_unbind_clocksource
-ffffffff822ba6a0 d dev_attr_available_clocksource
-ffffffff822ba6c0 d clocksource_jiffies
-ffffffff822ba778 d __SCK__tp_func_alarmtimer_suspend
-ffffffff822ba788 d __SCK__tp_func_alarmtimer_fired
-ffffffff822ba798 d __SCK__tp_func_alarmtimer_start
-ffffffff822ba7a8 d __SCK__tp_func_alarmtimer_cancel
-ffffffff822ba7c0 d trace_event_fields_alarmtimer_suspend
-ffffffff822ba838 d trace_event_type_funcs_alarmtimer_suspend
-ffffffff822ba860 d print_fmt_alarmtimer_suspend
-ffffffff822ba978 d event_alarmtimer_suspend
-ffffffff822baa10 d trace_event_fields_alarm_class
-ffffffff822baad8 d trace_event_type_funcs_alarm_class
-ffffffff822bab00 d print_fmt_alarm_class
-ffffffff822bac38 d event_alarmtimer_fired
-ffffffff822bacc8 d event_alarmtimer_start
-ffffffff822bad58 d event_alarmtimer_cancel
-ffffffff822bade8 d alarmtimer_driver
-ffffffff822baeb0 d alarmtimer_rtc_interface
-ffffffff822baed8 d clockevents_mutex
-ffffffff822baef8 d clockevent_devices
-ffffffff822baf08 d clockevents_released
-ffffffff822baf18 d clockevents_subsys
-ffffffff822bafd0 d dev_attr_current_device
-ffffffff822baff0 d dev_attr_unbind_device
-ffffffff822bb010 d tick_bc_dev
-ffffffff822bb300 d ce_broadcast_hrtimer
-ffffffff822bb400 d futex_atomic_op_inuser._rs
-ffffffff822bb430 d dma_chan_busy
-ffffffff822bb4b0 d setup_max_cpus
-ffffffff822bb4c0 d kexec_core_sysctls
-ffffffff822bb540 d crashk_res
-ffffffff822bb580 d crashk_low_res
-ffffffff822bb5c0 d __SCK__tp_func_cgroup_setup_root
-ffffffff822bb5d0 d __SCK__tp_func_cgroup_destroy_root
-ffffffff822bb5e0 d __SCK__tp_func_cgroup_remount
-ffffffff822bb5f0 d __SCK__tp_func_cgroup_mkdir
-ffffffff822bb600 d __SCK__tp_func_cgroup_rmdir
-ffffffff822bb610 d __SCK__tp_func_cgroup_release
-ffffffff822bb620 d __SCK__tp_func_cgroup_rename
-ffffffff822bb630 d __SCK__tp_func_cgroup_freeze
-ffffffff822bb640 d __SCK__tp_func_cgroup_unfreeze
-ffffffff822bb650 d __SCK__tp_func_cgroup_attach_task
-ffffffff822bb660 d __SCK__tp_func_cgroup_transfer_tasks
-ffffffff822bb670 d __SCK__tp_func_cgroup_notify_populated
-ffffffff822bb680 d __SCK__tp_func_cgroup_notify_frozen
-ffffffff822bb690 d trace_event_fields_cgroup_root
-ffffffff822bb730 d trace_event_type_funcs_cgroup_root
-ffffffff822bb750 d print_fmt_cgroup_root
-ffffffff822bb798 d event_cgroup_setup_root
-ffffffff822bb828 d event_cgroup_destroy_root
-ffffffff822bb8b8 d event_cgroup_remount
-ffffffff822bb950 d trace_event_fields_cgroup
-ffffffff822bba18 d trace_event_type_funcs_cgroup
-ffffffff822bba40 d print_fmt_cgroup
-ffffffff822bba98 d event_cgroup_mkdir
-ffffffff822bbb28 d event_cgroup_rmdir
-ffffffff822bbbb8 d event_cgroup_release
-ffffffff822bbc48 d event_cgroup_rename
-ffffffff822bbcd8 d event_cgroup_freeze
-ffffffff822bbd68 d event_cgroup_unfreeze
-ffffffff822bbe00 d trace_event_fields_cgroup_migrate
-ffffffff822bbf18 d trace_event_type_funcs_cgroup_migrate
-ffffffff822bbf40 d print_fmt_cgroup_migrate
-ffffffff822bbfe0 d event_cgroup_attach_task
-ffffffff822bc070 d event_cgroup_transfer_tasks
-ffffffff822bc100 d trace_event_fields_cgroup_event
-ffffffff822bc1f0 d trace_event_type_funcs_cgroup_event
-ffffffff822bc210 d print_fmt_cgroup_event
-ffffffff822bc278 d event_cgroup_notify_populated
-ffffffff822bc308 d event_cgroup_notify_frozen
-ffffffff822bc398 d cgroup_mutex
-ffffffff822bc3b8 d cgroup_threadgroup_rwsem
-ffffffff822bc420 d cgroup_subsys
-ffffffff822bc458 d cpuset_cgrp_subsys_enabled_key
-ffffffff822bc468 d cpuset_cgrp_subsys_on_dfl_key
-ffffffff822bc478 d cpu_cgrp_subsys_enabled_key
-ffffffff822bc488 d cpu_cgrp_subsys_on_dfl_key
-ffffffff822bc498 d cpuacct_cgrp_subsys_enabled_key
-ffffffff822bc4a8 d cpuacct_cgrp_subsys_on_dfl_key
-ffffffff822bc4b8 d io_cgrp_subsys_enabled_key
-ffffffff822bc4c8 d io_cgrp_subsys_on_dfl_key
-ffffffff822bc4d8 d memory_cgrp_subsys_enabled_key
-ffffffff822bc4e8 d memory_cgrp_subsys_on_dfl_key
-ffffffff822bc4f8 d freezer_cgrp_subsys_enabled_key
-ffffffff822bc508 d freezer_cgrp_subsys_on_dfl_key
-ffffffff822bc518 d net_prio_cgrp_subsys_enabled_key
-ffffffff822bc528 d net_prio_cgrp_subsys_on_dfl_key
-ffffffff822bc538 d cgrp_dfl_root
-ffffffff822bd9c0 d cgroup_roots
-ffffffff822bd9d0 d init_css_set
-ffffffff822bdb78 d init_cgroup_ns
-ffffffff822bdba8 d css_set_count
-ffffffff822bdbb0 d cgroup_kf_syscall_ops
-ffffffff822bdbd8 d cgroup2_fs_type
-ffffffff822bdc20 d cgroup_fs_type
-ffffffff822bdc68 d cgroup_hierarchy_idr
-ffffffff822bdc80 d cgroup_base_files
-ffffffff822be780 d cgroup_psi_files
-ffffffff822bec90 d cpuset_fs_type
-ffffffff822becd8 d css_serial_nr_next
-ffffffff822bece0 d cgroup_kf_ops
-ffffffff822bed40 d cgroup_kf_single_ops
-ffffffff822beda0 d cgroup_sysfs_attrs
-ffffffff822bedb8 d cgroup_delegate_attr
-ffffffff822bedd8 d cgroup_features_attr
-ffffffff822bedf8 d cgroup1_kf_syscall_ops
-ffffffff822bee20 d cgroup1_base_files
-ffffffff822bf408 d freezer_cgrp_subsys
-ffffffff822bf4f8 d freezer_mutex
-ffffffff822bf518 d cpuset_rwsem
-ffffffff822bf580 d dfl_files
-ffffffff822bfb70 d legacy_files
-ffffffff822c0818 d top_cpuset
-ffffffff822c0990 d cpuset_hotplug_work.llvm.16417904120603559126
-ffffffff822c09b0 d cpuset_track_online_nodes_nb
-ffffffff822c09c8 d generate_sched_domains.warnings
-ffffffff822c09d0 d cpuset_attach_wq
-ffffffff822c09e8 d cpuset_cgrp_subsys
-ffffffff822c0ad8 d stop_cpus_mutex
-ffffffff822c0af8 d cpu_stop_threads
-ffffffff822c0b58 d audit_failure
-ffffffff822c0b5c d audit_backlog_limit
-ffffffff822c0b60 d audit_backlog_wait_time
-ffffffff822c0b68 d kauditd_wait
-ffffffff822c0b80 d audit_backlog_wait
-ffffffff822c0b98 d audit_sig_pid
-ffffffff822c0b9c d audit_sig_uid.0
-ffffffff822c0ba0 d af
-ffffffff822c0bb0 d audit_rules_list
-ffffffff822c0c30 d prio_high
-ffffffff822c0c38 d prio_low
-ffffffff822c0c40 d audit_filter_mutex
-ffffffff822c0c60 d audit_filter_list
-ffffffff822c0ce0 d prune_list
-ffffffff822c0cf0 d tree_list
-ffffffff822c0d00 d panic_block
-ffffffff822c0d18 d hung_task_init.hungtask_pm_notify_nb
-ffffffff822c0d30 d hung_task_sysctls
-ffffffff822c0ef0 d watchdog_cpumask_bits
-ffffffff822c0ef8 d watchdog_mutex.llvm.7661838835473483925
-ffffffff822c0f20 d watchdog_sysctls
-ffffffff822c1120 d seccomp_actions_logged
-ffffffff822c1130 d seccomp_sysctl_path
-ffffffff822c1150 d seccomp_sysctl_table
-ffffffff822c1210 d uts_kern_table
-ffffffff822c13d0 d hostname_poll
-ffffffff822c13f0 d domainname_poll
-ffffffff822c1410 d uts_root_table
-ffffffff822c1490 d tracepoint_srcu
-ffffffff822c1610 d tracepoints_mutex
-ffffffff822c1630 d ftrace_export_lock
-ffffffff822c1650 d ftrace_trace_arrays
-ffffffff822c1660 d trace_types_lock
-ffffffff822c1680 d global_trace.llvm.7072116356185007960
-ffffffff822c17b8 d tracepoint_printk_mutex
-ffffffff822c17e0 d trace_options
-ffffffff822c18b0 d trace_buf_size
-ffffffff822c18b8 d tracing_err_log_lock
-ffffffff822c18d8 d all_cpu_access_lock
-ffffffff822c1908 d trace_panic_notifier
-ffffffff822c1920 d trace_die_notifier
-ffffffff822c1938 d trace_event_sem
-ffffffff822c1968 d next_event_type
-ffffffff822c1970 d ftrace_event_list
-ffffffff822c1980 d trace_fn_event
-ffffffff822c19b0 d trace_ctx_event
-ffffffff822c19e0 d trace_wake_event
-ffffffff822c1a10 d trace_stack_event
-ffffffff822c1a40 d trace_user_stack_event
-ffffffff822c1a70 d trace_bputs_event
-ffffffff822c1aa0 d trace_bprint_event
-ffffffff822c1ad0 d trace_print_event
-ffffffff822c1b00 d trace_hwlat_event
-ffffffff822c1b30 d trace_osnoise_event
-ffffffff822c1b60 d trace_timerlat_event
-ffffffff822c1b90 d trace_raw_data_event
-ffffffff822c1bc0 d trace_func_repeats_event
-ffffffff822c1bf0 d trace_fn_funcs
-ffffffff822c1c10 d trace_ctx_funcs
-ffffffff822c1c30 d trace_wake_funcs
-ffffffff822c1c50 d trace_stack_funcs
-ffffffff822c1c70 d trace_user_stack_funcs
-ffffffff822c1c90 d trace_bputs_funcs
-ffffffff822c1cb0 d trace_bprint_funcs
-ffffffff822c1cd0 d trace_print_funcs
-ffffffff822c1cf0 d trace_hwlat_funcs
-ffffffff822c1d10 d trace_osnoise_funcs
-ffffffff822c1d30 d trace_timerlat_funcs
-ffffffff822c1d50 d trace_raw_data_funcs
-ffffffff822c1d70 d trace_func_repeats_funcs
-ffffffff822c1d90 d all_stat_sessions_mutex
-ffffffff822c1db0 d all_stat_sessions
-ffffffff822c1dc0 d sched_register_mutex
-ffffffff822c1de0 d nop_flags
-ffffffff822c1e00 d nop_opts
-ffffffff822c1e30 d ftrace_events
-ffffffff822c1e40 d ftrace_generic_fields
-ffffffff822c1e50 d ftrace_common_fields
-ffffffff822c1e60 d module_strings
-ffffffff822c1e70 d event_subsystems
-ffffffff822c1e80 d event_mutex
-ffffffff822c1ea0 d event_function
-ffffffff822c1f30 d event_funcgraph_entry
-ffffffff822c1fc0 d event_funcgraph_exit
-ffffffff822c2050 d event_context_switch
-ffffffff822c20e0 d event_wakeup
-ffffffff822c2170 d event_kernel_stack
-ffffffff822c2200 d event_user_stack
-ffffffff822c2290 d event_bprint
-ffffffff822c2320 d event_print
-ffffffff822c23b0 d event_raw_data
-ffffffff822c2440 d event_bputs
-ffffffff822c24d0 d event_mmiotrace_rw
-ffffffff822c2560 d event_mmiotrace_map
-ffffffff822c25f0 d event_branch
-ffffffff822c2680 d event_hwlat
-ffffffff822c2710 d event_func_repeats
-ffffffff822c27a0 d event_osnoise
-ffffffff822c2830 d event_timerlat
-ffffffff822c28c0 d ftrace_event_fields_function
-ffffffff822c2940 d ftrace_event_fields_funcgraph_entry
-ffffffff822c29c0 d ftrace_event_fields_funcgraph_exit
-ffffffff822c2ab0 d ftrace_event_fields_context_switch
-ffffffff822c2bf0 d ftrace_event_fields_wakeup
-ffffffff822c2d30 d ftrace_event_fields_kernel_stack
-ffffffff822c2db0 d ftrace_event_fields_user_stack
-ffffffff822c2e30 d ftrace_event_fields_bprint
-ffffffff822c2ed0 d ftrace_event_fields_print
-ffffffff822c2f50 d ftrace_event_fields_raw_data
-ffffffff822c2fd0 d ftrace_event_fields_bputs
-ffffffff822c3050 d ftrace_event_fields_mmiotrace_rw
-ffffffff822c3170 d ftrace_event_fields_mmiotrace_map
-ffffffff822c3260 d ftrace_event_fields_branch
-ffffffff822c3350 d ftrace_event_fields_hwlat
-ffffffff822c34c0 d ftrace_event_fields_func_repeats
-ffffffff822c35b0 d ftrace_event_fields_osnoise
-ffffffff822c3720 d ftrace_event_fields_timerlat
-ffffffff822c37c0 d err_text
-ffffffff822c3850 d err_text
-ffffffff822c38a0 d err_text
-ffffffff822c3a20 d trigger_cmd_mutex
-ffffffff822c3a40 d trigger_commands
-ffffffff822c3a50 d named_triggers
-ffffffff822c3a60 d trigger_traceon_cmd
-ffffffff822c3ab0 d trigger_traceoff_cmd
-ffffffff822c3b00 d traceon_count_trigger_ops
-ffffffff822c3b20 d traceon_trigger_ops
-ffffffff822c3b40 d traceoff_count_trigger_ops
-ffffffff822c3b60 d traceoff_trigger_ops
-ffffffff822c3b80 d trigger_stacktrace_cmd
-ffffffff822c3bd0 d stacktrace_count_trigger_ops
-ffffffff822c3bf0 d stacktrace_trigger_ops
-ffffffff822c3c10 d trigger_enable_cmd
-ffffffff822c3c60 d trigger_disable_cmd
-ffffffff822c3cb0 d event_enable_count_trigger_ops
-ffffffff822c3cd0 d event_enable_trigger_ops
-ffffffff822c3cf0 d event_disable_count_trigger_ops
-ffffffff822c3d10 d event_disable_trigger_ops
-ffffffff822c3d30 d eprobe_dyn_event_ops
-ffffffff822c3d68 d eprobe_funcs
-ffffffff822c3d90 d eprobe_fields_array
-ffffffff822c3de0 d eprobe_trigger_ops
-ffffffff822c3e00 d event_trigger_cmd
-ffffffff822c3e50 d synth_event_ops
-ffffffff822c3e88 d lastcmd_mutex
-ffffffff822c3ea8 d synth_event_funcs
-ffffffff822c3ed0 d synth_event_fields_array
-ffffffff822c3f20 d trigger_hist_cmd
-ffffffff822c3f70 d trigger_hist_enable_cmd
-ffffffff822c3fc0 d trigger_hist_disable_cmd
-ffffffff822c4010 d event_hist_trigger_named_ops
-ffffffff822c4030 d event_hist_trigger_ops
-ffffffff822c4050 d hist_enable_count_trigger_ops
-ffffffff822c4070 d hist_enable_trigger_ops
-ffffffff822c4090 d hist_disable_count_trigger_ops
-ffffffff822c40b0 d hist_disable_trigger_ops
-ffffffff822c40d0 d __SCK__tp_func_error_report_end
-ffffffff822c40e0 d trace_event_fields_error_report_template
-ffffffff822c4158 d trace_event_type_funcs_error_report_template
-ffffffff822c4180 d print_fmt_error_report_template
-ffffffff822c4228 d event_error_report_end
-ffffffff822c42b8 d __SCK__tp_func_cpu_idle
-ffffffff822c42c8 d __SCK__tp_func_cpu_idle_miss
-ffffffff822c42d8 d __SCK__tp_func_powernv_throttle
-ffffffff822c42e8 d __SCK__tp_func_pstate_sample
-ffffffff822c42f8 d __SCK__tp_func_cpu_frequency
-ffffffff822c4308 d __SCK__tp_func_cpu_frequency_limits
-ffffffff822c4318 d __SCK__tp_func_device_pm_callback_start
-ffffffff822c4328 d __SCK__tp_func_device_pm_callback_end
-ffffffff822c4338 d __SCK__tp_func_suspend_resume
-ffffffff822c4348 d __SCK__tp_func_wakeup_source_activate
-ffffffff822c4358 d __SCK__tp_func_wakeup_source_deactivate
-ffffffff822c4368 d __SCK__tp_func_clock_enable
-ffffffff822c4378 d __SCK__tp_func_clock_disable
-ffffffff822c4388 d __SCK__tp_func_clock_set_rate
-ffffffff822c4398 d __SCK__tp_func_power_domain_target
-ffffffff822c43a8 d __SCK__tp_func_pm_qos_add_request
-ffffffff822c43b8 d __SCK__tp_func_pm_qos_update_request
-ffffffff822c43c8 d __SCK__tp_func_pm_qos_remove_request
-ffffffff822c43d8 d __SCK__tp_func_pm_qos_update_target
-ffffffff822c43e8 d __SCK__tp_func_pm_qos_update_flags
-ffffffff822c43f8 d __SCK__tp_func_dev_pm_qos_add_request
-ffffffff822c4408 d __SCK__tp_func_dev_pm_qos_update_request
-ffffffff822c4418 d __SCK__tp_func_dev_pm_qos_remove_request
-ffffffff822c4428 d __SCK__tp_func_guest_halt_poll_ns
-ffffffff822c4440 d trace_event_fields_cpu
-ffffffff822c44b8 d trace_event_type_funcs_cpu
-ffffffff822c44e0 d print_fmt_cpu
-ffffffff822c4530 d event_cpu_idle
-ffffffff822c45c0 d trace_event_fields_cpu_idle_miss
-ffffffff822c4660 d trace_event_type_funcs_cpu_idle_miss
-ffffffff822c4680 d print_fmt_cpu_idle_miss
-ffffffff822c46f8 d event_cpu_idle_miss
-ffffffff822c4790 d trace_event_fields_powernv_throttle
-ffffffff822c4830 d trace_event_type_funcs_powernv_throttle
-ffffffff822c4850 d print_fmt_powernv_throttle
-ffffffff822c4898 d event_powernv_throttle
-ffffffff822c4930 d trace_event_fields_pstate_sample
-ffffffff822c4ac0 d trace_event_type_funcs_pstate_sample
-ffffffff822c4ae0 d print_fmt_pstate_sample
-ffffffff822c4c48 d event_pstate_sample
-ffffffff822c4cd8 d event_cpu_frequency
-ffffffff822c4d70 d trace_event_fields_cpu_frequency_limits
-ffffffff822c4e10 d trace_event_type_funcs_cpu_frequency_limits
-ffffffff822c4e30 d print_fmt_cpu_frequency_limits
-ffffffff822c4ea8 d event_cpu_frequency_limits
-ffffffff822c4f40 d trace_event_fields_device_pm_callback_start
-ffffffff822c5030 d trace_event_type_funcs_device_pm_callback_start
-ffffffff822c5050 d print_fmt_device_pm_callback_start
-ffffffff822c5190 d event_device_pm_callback_start
-ffffffff822c5220 d trace_event_fields_device_pm_callback_end
-ffffffff822c52c0 d trace_event_type_funcs_device_pm_callback_end
-ffffffff822c52e0 d print_fmt_device_pm_callback_end
-ffffffff822c5328 d event_device_pm_callback_end
-ffffffff822c53c0 d trace_event_fields_suspend_resume
-ffffffff822c5460 d trace_event_type_funcs_suspend_resume
-ffffffff822c5480 d print_fmt_suspend_resume
-ffffffff822c54d0 d event_suspend_resume
-ffffffff822c5560 d trace_event_fields_wakeup_source
-ffffffff822c55d8 d trace_event_type_funcs_wakeup_source
-ffffffff822c5600 d print_fmt_wakeup_source
-ffffffff822c5640 d event_wakeup_source_activate
-ffffffff822c56d0 d event_wakeup_source_deactivate
-ffffffff822c5760 d trace_event_fields_clock
-ffffffff822c5800 d trace_event_type_funcs_clock
-ffffffff822c5820 d print_fmt_clock
-ffffffff822c5888 d event_clock_enable
-ffffffff822c5918 d event_clock_disable
-ffffffff822c59a8 d event_clock_set_rate
-ffffffff822c5a40 d trace_event_fields_power_domain
-ffffffff822c5ae0 d trace_event_type_funcs_power_domain
-ffffffff822c5b00 d print_fmt_power_domain
-ffffffff822c5b68 d event_power_domain_target
-ffffffff822c5c00 d trace_event_fields_cpu_latency_qos_request
-ffffffff822c5c50 d trace_event_type_funcs_cpu_latency_qos_request
-ffffffff822c5c70 d print_fmt_cpu_latency_qos_request
-ffffffff822c5c98 d event_pm_qos_add_request
-ffffffff822c5d28 d event_pm_qos_update_request
-ffffffff822c5db8 d event_pm_qos_remove_request
-ffffffff822c5e50 d trace_event_fields_pm_qos_update
-ffffffff822c5ef0 d trace_event_type_funcs_pm_qos_update
-ffffffff822c5f10 d print_fmt_pm_qos_update
-ffffffff822c5fe8 d event_pm_qos_update_target
-ffffffff822c6078 d trace_event_type_funcs_pm_qos_update_flags
-ffffffff822c60a0 d print_fmt_pm_qos_update_flags
-ffffffff822c6178 d event_pm_qos_update_flags
-ffffffff822c6210 d trace_event_fields_dev_pm_qos_request
-ffffffff822c62b0 d trace_event_type_funcs_dev_pm_qos_request
-ffffffff822c62d0 d print_fmt_dev_pm_qos_request
-ffffffff822c6398 d event_dev_pm_qos_add_request
-ffffffff822c6428 d event_dev_pm_qos_update_request
-ffffffff822c64b8 d event_dev_pm_qos_remove_request
-ffffffff822c6550 d trace_event_fields_guest_halt_poll_ns
-ffffffff822c65f0 d trace_event_type_funcs_guest_halt_poll_ns
-ffffffff822c6610 d print_fmt_guest_halt_poll_ns
-ffffffff822c6660 d event_guest_halt_poll_ns
-ffffffff822c66f0 d __SCK__tp_func_rpm_suspend
-ffffffff822c6700 d __SCK__tp_func_rpm_resume
-ffffffff822c6710 d __SCK__tp_func_rpm_idle
-ffffffff822c6720 d __SCK__tp_func_rpm_usage
-ffffffff822c6730 d __SCK__tp_func_rpm_return_int
-ffffffff822c6740 d trace_event_fields_rpm_internal
-ffffffff822c68a8 d trace_event_type_funcs_rpm_internal
-ffffffff822c68d0 d print_fmt_rpm_internal
-ffffffff822c69a0 d event_rpm_suspend
-ffffffff822c6a30 d event_rpm_resume
-ffffffff822c6ac0 d event_rpm_idle
-ffffffff822c6b50 d event_rpm_usage
-ffffffff822c6be0 d trace_event_fields_rpm_return_int
-ffffffff822c6c80 d trace_event_type_funcs_rpm_return_int
-ffffffff822c6ca0 d print_fmt_rpm_return_int
-ffffffff822c6ce0 d event_rpm_return_int
-ffffffff822c6d70 d dyn_event_ops_mutex
-ffffffff822c6d90 d dyn_event_ops_list
-ffffffff822c6da0 d dyn_event_list
-ffffffff822c6db0 d trace_probe_err_text
-ffffffff822c6f80 d trace_uprobe_ops
-ffffffff822c6fb8 d uprobe_funcs
-ffffffff822c6fe0 d uprobe_fields_array
-ffffffff822c7030 d bpf_user_rnd_init_once.___once_key
-ffffffff822c7040 d __SCK__tp_func_xdp_exception
-ffffffff822c7050 d __SCK__tp_func_xdp_bulk_tx
-ffffffff822c7060 d __SCK__tp_func_xdp_redirect
-ffffffff822c7070 d __SCK__tp_func_xdp_redirect_err
-ffffffff822c7080 d __SCK__tp_func_xdp_redirect_map
-ffffffff822c7090 d __SCK__tp_func_xdp_redirect_map_err
-ffffffff822c70a0 d __SCK__tp_func_xdp_cpumap_kthread
-ffffffff822c70b0 d __SCK__tp_func_xdp_cpumap_enqueue
-ffffffff822c70c0 d __SCK__tp_func_xdp_devmap_xmit
-ffffffff822c70d0 d __SCK__tp_func_mem_disconnect
-ffffffff822c70e0 d __SCK__tp_func_mem_connect
-ffffffff822c70f0 d __SCK__tp_func_mem_return_failed
-ffffffff822c7100 d trace_event_fields_xdp_exception
-ffffffff822c71a0 d trace_event_type_funcs_xdp_exception
-ffffffff822c71c0 d print_fmt_xdp_exception
-ffffffff822c72a8 d event_xdp_exception
-ffffffff822c7340 d trace_event_fields_xdp_bulk_tx
-ffffffff822c7430 d trace_event_type_funcs_xdp_bulk_tx
-ffffffff822c7450 d print_fmt_xdp_bulk_tx
-ffffffff822c7558 d event_xdp_bulk_tx
-ffffffff822c75f0 d trace_event_fields_xdp_redirect_template
-ffffffff822c7730 d trace_event_type_funcs_xdp_redirect_template
-ffffffff822c7750 d print_fmt_xdp_redirect_template
-ffffffff822c78a0 d event_xdp_redirect
-ffffffff822c7930 d event_xdp_redirect_err
-ffffffff822c79c0 d event_xdp_redirect_map
-ffffffff822c7a50 d event_xdp_redirect_map_err
-ffffffff822c7ae0 d trace_event_fields_xdp_cpumap_kthread
-ffffffff822c7c70 d trace_event_type_funcs_xdp_cpumap_kthread
-ffffffff822c7c90 d print_fmt_xdp_cpumap_kthread
-ffffffff822c7e18 d event_xdp_cpumap_kthread
-ffffffff822c7eb0 d trace_event_fields_xdp_cpumap_enqueue
-ffffffff822c7fc8 d trace_event_type_funcs_xdp_cpumap_enqueue
-ffffffff822c7ff0 d print_fmt_xdp_cpumap_enqueue
-ffffffff822c8120 d event_xdp_cpumap_enqueue
-ffffffff822c81b0 d trace_event_fields_xdp_devmap_xmit
-ffffffff822c82c8 d trace_event_type_funcs_xdp_devmap_xmit
-ffffffff822c82f0 d print_fmt_xdp_devmap_xmit
-ffffffff822c8430 d event_xdp_devmap_xmit
-ffffffff822c84c0 d trace_event_fields_mem_disconnect
-ffffffff822c8588 d trace_event_type_funcs_mem_disconnect
-ffffffff822c85b0 d print_fmt_mem_disconnect
-ffffffff822c86c8 d event_mem_disconnect
-ffffffff822c8760 d trace_event_fields_mem_connect
-ffffffff822c8878 d trace_event_type_funcs_mem_connect
-ffffffff822c88a0 d print_fmt_mem_connect
-ffffffff822c89d0 d event_mem_connect
-ffffffff822c8a60 d trace_event_fields_mem_return_failed
-ffffffff822c8b00 d trace_event_type_funcs_mem_return_failed
-ffffffff822c8b20 d print_fmt_mem_return_failed
-ffffffff822c8c28 d event_mem_return_failed
-ffffffff822c8cb8 d dummy_bpf_prog
-ffffffff822c8d00 d static_call_mutex
-ffffffff822c8d20 d perf_duration_work
-ffffffff822c8d40 d dev_attr_nr_addr_filters
-ffffffff822c8d60 d pmus_lock
-ffffffff822c8d80 d pmus
-ffffffff822c8d90 d perf_swevent
-ffffffff822c8eb8 d perf_cpu_clock
-ffffffff822c8fe0 d perf_task_clock
-ffffffff822c9108 d perf_reboot_notifier
-ffffffff822c9120 d __SCK__perf_snapshot_branch_stack
-ffffffff822c9130 d perf_duration_warn._rs
-ffffffff822c9158 d perf_sched_work
-ffffffff822c91b0 d perf_sched_mutex
-ffffffff822c91d0 d perf_tracepoint
-ffffffff822c92f8 d perf_uprobe
-ffffffff822c9420 d uprobe_attr_groups
-ffffffff822c9430 d uprobe_format_group
-ffffffff822c9460 d uprobe_attrs
-ffffffff822c9478 d format_attr_retprobe
-ffffffff822c9498 d format_attr_ref_ctr_offset
-ffffffff822c94b8 d pmu_bus
-ffffffff822c9570 d pmu_dev_groups
-ffffffff822c9580 d pmu_dev_attrs
-ffffffff822c9598 d dev_attr_type
-ffffffff822c95b8 d dev_attr_type
-ffffffff822c95d8 d dev_attr_type
-ffffffff822c95f8 d dev_attr_type
-ffffffff822c9618 d dev_attr_type
-ffffffff822c9638 d dev_attr_type
-ffffffff822c9658 d dev_attr_type
-ffffffff822c9678 d dev_attr_perf_event_mux_interval_ms
-ffffffff822c9698 d mux_interval_mutex
-ffffffff822c96b8 d callchain_mutex
-ffffffff822c96d8 d perf_breakpoint
-ffffffff822c9800 d hw_breakpoint_exceptions_nb
-ffffffff822c9818 d bp_cpuinfo_sem
-ffffffff822c9878 d delayed_uprobe_lock
-ffffffff822c9898 d dup_mmap_sem
-ffffffff822c98f8 d uprobe_exception_nb
-ffffffff822c9910 d delayed_uprobe_list
-ffffffff822c9920 d prepare_uretprobe._rs
-ffffffff822c9948 d jump_label_mutex
-ffffffff822c9968 d __SCK__tp_func_rseq_update
-ffffffff822c9978 d __SCK__tp_func_rseq_ip_fixup
-ffffffff822c9990 d trace_event_fields_rseq_update
-ffffffff822c99e0 d trace_event_type_funcs_rseq_update
-ffffffff822c9a00 d print_fmt_rseq_update
-ffffffff822c9a20 d event_rseq_update
-ffffffff822c9ab0 d trace_event_fields_rseq_ip_fixup
-ffffffff822c9b78 d trace_event_type_funcs_rseq_ip_fixup
-ffffffff822c9ba0 d print_fmt_rseq_ip_fixup
-ffffffff822c9c30 d event_rseq_ip_fixup
-ffffffff822c9cc0 d rseq_get_rseq_cs._rs
-ffffffff822c9ce8 d __SCK__tp_func_mm_filemap_delete_from_page_cache
-ffffffff822c9cf8 d __SCK__tp_func_mm_filemap_add_to_page_cache
-ffffffff822c9d08 d __SCK__tp_func_filemap_set_wb_err
-ffffffff822c9d18 d __SCK__tp_func_file_check_and_advance_wb_err
-ffffffff822c9d30 d trace_event_fields_mm_filemap_op_page_cache
-ffffffff822c9e20 d trace_event_type_funcs_mm_filemap_op_page_cache
-ffffffff822c9e40 d print_fmt_mm_filemap_op_page_cache
-ffffffff822c9f00 d event_mm_filemap_delete_from_page_cache
-ffffffff822c9f90 d event_mm_filemap_add_to_page_cache
-ffffffff822ca020 d trace_event_fields_filemap_set_wb_err
-ffffffff822ca0c0 d trace_event_type_funcs_filemap_set_wb_err
-ffffffff822ca0e0 d print_fmt_filemap_set_wb_err
-ffffffff822ca178 d event_filemap_set_wb_err
-ffffffff822ca210 d trace_event_fields_file_check_and_advance_wb_err
-ffffffff822ca300 d trace_event_type_funcs_file_check_and_advance_wb_err
-ffffffff822ca320 d print_fmt_file_check_and_advance_wb_err
-ffffffff822ca3d8 d event_file_check_and_advance_wb_err
-ffffffff822ca468 d sysctl_page_lock_unfairness
-ffffffff822ca470 d dio_warn_stale_pagecache._rs
-ffffffff822ca498 d __SCK__tp_func_oom_score_adj_update
-ffffffff822ca4a8 d __SCK__tp_func_mark_victim
-ffffffff822ca4b8 d __SCK__tp_func_wake_reaper
-ffffffff822ca4c8 d __SCK__tp_func_start_task_reaping
-ffffffff822ca4d8 d __SCK__tp_func_finish_task_reaping
-ffffffff822ca4e8 d __SCK__tp_func_skip_task_reaping
-ffffffff822ca500 d trace_event_fields_oom_score_adj_update
-ffffffff822ca5a0 d trace_event_type_funcs_oom_score_adj_update
-ffffffff822ca5c0 d print_fmt_oom_score_adj_update
-ffffffff822ca610 d event_oom_score_adj_update
-ffffffff822ca6a0 d trace_event_fields_reclaim_retry_zone
-ffffffff822ca808 d trace_event_type_funcs_reclaim_retry_zone
-ffffffff822ca830 d print_fmt_reclaim_retry_zone
-ffffffff822ca990 d event_reclaim_retry_zone
-ffffffff822caa20 d trace_event_fields_mark_victim
-ffffffff822caa70 d trace_event_type_funcs_mark_victim
-ffffffff822caa90 d print_fmt_mark_victim
-ffffffff822caaa8 d event_mark_victim
-ffffffff822cab40 d trace_event_fields_wake_reaper
-ffffffff822cab90 d trace_event_type_funcs_wake_reaper
-ffffffff822cabb0 d print_fmt_wake_reaper
-ffffffff822cabc8 d event_wake_reaper
-ffffffff822cac60 d trace_event_fields_start_task_reaping
-ffffffff822cacb0 d trace_event_type_funcs_start_task_reaping
-ffffffff822cacd0 d print_fmt_start_task_reaping
-ffffffff822cace8 d event_start_task_reaping
-ffffffff822cad80 d trace_event_fields_finish_task_reaping
-ffffffff822cadd0 d trace_event_type_funcs_finish_task_reaping
-ffffffff822cadf0 d print_fmt_finish_task_reaping
-ffffffff822cae08 d event_finish_task_reaping
-ffffffff822caea0 d trace_event_fields_skip_task_reaping
-ffffffff822caef0 d trace_event_type_funcs_skip_task_reaping
-ffffffff822caf10 d print_fmt_skip_task_reaping
-ffffffff822caf28 d event_skip_task_reaping
-ffffffff822cafc0 d trace_event_fields_compact_retry
-ffffffff822cb0d8 d trace_event_type_funcs_compact_retry
-ffffffff822cb100 d print_fmt_compact_retry
-ffffffff822cb298 d event_compact_retry
-ffffffff822cb328 d oom_adj_mutex
-ffffffff822cb348 d oom_victims_wait
-ffffffff822cb360 d oom_notify_list.llvm.1882435707155208719
-ffffffff822cb398 d pagefault_out_of_memory.pfoom_rs
-ffffffff822cb3c0 d vm_oom_kill_table
-ffffffff822cb4c0 d oom_reaper_wait
-ffffffff822cb4d8 d sysctl_oom_dump_tasks
-ffffffff822cb4e0 d oom_kill_process.oom_rs
-ffffffff822cb508 d __SCK__tp_func_reclaim_retry_zone
-ffffffff822cb518 d __SCK__tp_func_compact_retry
-ffffffff822cb528 d oom_lock
-ffffffff822cb548 d ratelimit_pages
-ffffffff822cb550 d vm_page_writeback_sysctls
-ffffffff822cb750 d vm_dirty_ratio
-ffffffff822cb754 d dirty_background_ratio
-ffffffff822cb758 d dirty_writeback_interval
-ffffffff822cb75c d dirty_expire_interval
-ffffffff822cb760 d isolate_lru_page._rs
-ffffffff822cb788 d __SCK__tp_func_mm_lru_insertion
-ffffffff822cb798 d __SCK__tp_func_mm_lru_activate
-ffffffff822cb7b0 d trace_event_fields_mm_lru_insertion
-ffffffff822cb878 d trace_event_type_funcs_mm_lru_insertion
-ffffffff822cb8a0 d print_fmt_mm_lru_insertion
-ffffffff822cb9c0 d event_mm_lru_insertion
-ffffffff822cba50 d trace_event_fields_mm_lru_activate
-ffffffff822cbac8 d trace_event_type_funcs_mm_lru_activate
-ffffffff822cbaf0 d print_fmt_mm_lru_activate
-ffffffff822cbb20 d event_mm_lru_activate
-ffffffff822cbbb0 d __lru_add_drain_all.lock
-ffffffff822cbbd0 d __SCK__tp_func_mm_vmscan_kswapd_sleep
-ffffffff822cbbe0 d __SCK__tp_func_mm_vmscan_kswapd_wake
-ffffffff822cbbf0 d __SCK__tp_func_mm_vmscan_wakeup_kswapd
-ffffffff822cbc00 d __SCK__tp_func_mm_vmscan_direct_reclaim_begin
-ffffffff822cbc10 d __SCK__tp_func_mm_vmscan_memcg_reclaim_begin
-ffffffff822cbc20 d __SCK__tp_func_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff822cbc30 d __SCK__tp_func_mm_vmscan_direct_reclaim_end
-ffffffff822cbc40 d __SCK__tp_func_mm_vmscan_memcg_reclaim_end
-ffffffff822cbc50 d __SCK__tp_func_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff822cbc60 d __SCK__tp_func_mm_shrink_slab_start
-ffffffff822cbc70 d __SCK__tp_func_mm_shrink_slab_end
-ffffffff822cbc80 d __SCK__tp_func_mm_vmscan_lru_isolate
-ffffffff822cbc90 d __SCK__tp_func_mm_vmscan_write_folio
-ffffffff822cbca0 d __SCK__tp_func_mm_vmscan_lru_shrink_inactive
-ffffffff822cbcb0 d __SCK__tp_func_mm_vmscan_lru_shrink_active
-ffffffff822cbcc0 d __SCK__tp_func_mm_vmscan_node_reclaim_begin
-ffffffff822cbcd0 d __SCK__tp_func_mm_vmscan_node_reclaim_end
-ffffffff822cbce0 d __SCK__tp_func_mm_vmscan_throttled
-ffffffff822cbcf0 d trace_event_fields_mm_vmscan_kswapd_sleep
-ffffffff822cbd40 d trace_event_type_funcs_mm_vmscan_kswapd_sleep
-ffffffff822cbd60 d print_fmt_mm_vmscan_kswapd_sleep
-ffffffff822cbd78 d event_mm_vmscan_kswapd_sleep
-ffffffff822cbe10 d trace_event_fields_mm_vmscan_kswapd_wake
-ffffffff822cbeb0 d trace_event_type_funcs_mm_vmscan_kswapd_wake
-ffffffff822cbed0 d print_fmt_mm_vmscan_kswapd_wake
-ffffffff822cbef8 d event_mm_vmscan_kswapd_wake
-ffffffff822cbf90 d trace_event_fields_mm_vmscan_wakeup_kswapd
-ffffffff822cc058 d trace_event_type_funcs_mm_vmscan_wakeup_kswapd
-ffffffff822cc080 d print_fmt_mm_vmscan_wakeup_kswapd
-ffffffff822ccc48 d event_mm_vmscan_wakeup_kswapd
-ffffffff822ccce0 d trace_event_fields_mm_vmscan_direct_reclaim_begin_template
-ffffffff822ccd58 d trace_event_type_funcs_mm_vmscan_direct_reclaim_begin_template
-ffffffff822ccd80 d print_fmt_mm_vmscan_direct_reclaim_begin_template
-ffffffff822cd938 d event_mm_vmscan_direct_reclaim_begin
-ffffffff822cd9c8 d event_mm_vmscan_memcg_reclaim_begin
-ffffffff822cda58 d event_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff822cdaf0 d trace_event_fields_mm_vmscan_direct_reclaim_end_template
-ffffffff822cdb40 d trace_event_type_funcs_mm_vmscan_direct_reclaim_end_template
-ffffffff822cdb60 d print_fmt_mm_vmscan_direct_reclaim_end_template
-ffffffff822cdb88 d event_mm_vmscan_direct_reclaim_end
-ffffffff822cdc18 d event_mm_vmscan_memcg_reclaim_end
-ffffffff822cdca8 d event_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff822cdd40 d trace_event_fields_mm_shrink_slab_start
-ffffffff822cded0 d trace_event_type_funcs_mm_shrink_slab_start
-ffffffff822cdef0 d print_fmt_mm_shrink_slab_start
-ffffffff822ceb68 d event_mm_shrink_slab_start
-ffffffff822cec00 d trace_event_fields_mm_shrink_slab_end
-ffffffff822ced40 d trace_event_type_funcs_mm_shrink_slab_end
-ffffffff822ced60 d print_fmt_mm_shrink_slab_end
-ffffffff822cee28 d event_mm_shrink_slab_end
-ffffffff822ceec0 d trace_event_fields_mm_vmscan_lru_isolate
-ffffffff822cf028 d trace_event_type_funcs_mm_vmscan_lru_isolate
-ffffffff822cf050 d print_fmt_mm_vmscan_lru_isolate
-ffffffff822cf208 d event_mm_vmscan_lru_isolate
-ffffffff822cf2a0 d trace_event_fields_mm_vmscan_write_folio
-ffffffff822cf318 d trace_event_type_funcs_mm_vmscan_write_folio
-ffffffff822cf340 d print_fmt_mm_vmscan_write_folio
-ffffffff822cf488 d event_mm_vmscan_write_folio
-ffffffff822cf520 d trace_event_fields_mm_vmscan_lru_shrink_inactive
-ffffffff822cf750 d trace_event_type_funcs_mm_vmscan_lru_shrink_inactive
-ffffffff822cf770 d print_fmt_mm_vmscan_lru_shrink_inactive
-ffffffff822cf9f8 d event_mm_vmscan_lru_shrink_inactive
-ffffffff822cfa90 d trace_event_fields_mm_vmscan_lru_shrink_active
-ffffffff822cfbd0 d trace_event_type_funcs_mm_vmscan_lru_shrink_active
-ffffffff822cfbf0 d print_fmt_mm_vmscan_lru_shrink_active
-ffffffff822cfda0 d event_mm_vmscan_lru_shrink_active
-ffffffff822cfe30 d trace_event_fields_mm_vmscan_node_reclaim_begin
-ffffffff822cfed0 d trace_event_type_funcs_mm_vmscan_node_reclaim_begin
-ffffffff822cfef0 d print_fmt_mm_vmscan_node_reclaim_begin
-ffffffff822d0ab8 d event_mm_vmscan_node_reclaim_begin
-ffffffff822d0b48 d event_mm_vmscan_node_reclaim_end
-ffffffff822d0be0 d trace_event_fields_mm_vmscan_throttled
-ffffffff822d0ca8 d trace_event_type_funcs_mm_vmscan_throttled
-ffffffff822d0cd0 d print_fmt_mm_vmscan_throttled
-ffffffff822d0e88 d event_mm_vmscan_throttled
-ffffffff822d0f18 d shrinker_list
-ffffffff822d0f28 d shrinker_rwsem
-ffffffff822d0f58 d shrinker_idr
-ffffffff822d0f70 d get_mm_list.mm_list
-ffffffff822d0f88 d lru_gen_attr_group
-ffffffff822d0fb0 d lru_gen_attrs
-ffffffff822d0fc8 d lru_gen_min_ttl_attr
-ffffffff822d0fe8 d lru_gen_enabled_attr
-ffffffff822d1008 d lru_gen_change_state.state_mutex
-ffffffff822d1028 d vm_swappiness
-ffffffff822d1030 d shmem_swaplist
-ffffffff822d1040 d shmem_swaplist_mutex
-ffffffff822d1060 d shmem_fs_type
-ffffffff822d10a8 d shmem_enabled_attr
-ffffffff822d10d0 d shmem_xattr_handlers
-ffffffff822d10f8 d __vm_enough_memory._rs
-ffffffff822d1120 d page_offline_rwsem
-ffffffff822d1150 d shepherd
-ffffffff822d11a8 d cleanup_offline_cgwbs_work
-ffffffff822d11d0 d bdi_dev_groups
-ffffffff822d11e0 d bdi_dev_attrs
-ffffffff822d1208 d dev_attr_read_ahead_kb
-ffffffff822d1228 d dev_attr_min_ratio
-ffffffff822d1248 d dev_attr_max_ratio
-ffffffff822d1268 d dev_attr_stable_pages_required
-ffffffff822d1288 d offline_cgwbs
-ffffffff822d1298 d bdi_list
-ffffffff822d12a8 d vm_committed_as_batch
-ffffffff822d12b0 d __SCK__tp_func_percpu_alloc_percpu
-ffffffff822d12c0 d __SCK__tp_func_percpu_free_percpu
-ffffffff822d12d0 d __SCK__tp_func_percpu_alloc_percpu_fail
-ffffffff822d12e0 d __SCK__tp_func_percpu_create_chunk
-ffffffff822d12f0 d __SCK__tp_func_percpu_destroy_chunk
-ffffffff822d1300 d trace_event_fields_percpu_alloc_percpu
-ffffffff822d14b8 d trace_event_type_funcs_percpu_alloc_percpu
-ffffffff822d14e0 d print_fmt_percpu_alloc_percpu
-ffffffff822d2170 d event_percpu_alloc_percpu
-ffffffff822d2200 d trace_event_fields_percpu_free_percpu
-ffffffff822d22a0 d trace_event_type_funcs_percpu_free_percpu
-ffffffff822d22c0 d print_fmt_percpu_free_percpu
-ffffffff822d2308 d event_percpu_free_percpu
-ffffffff822d23a0 d trace_event_fields_percpu_alloc_percpu_fail
-ffffffff822d2468 d trace_event_type_funcs_percpu_alloc_percpu_fail
-ffffffff822d2490 d print_fmt_percpu_alloc_percpu_fail
-ffffffff822d24f8 d event_percpu_alloc_percpu_fail
-ffffffff822d2590 d trace_event_fields_percpu_create_chunk
-ffffffff822d25e0 d trace_event_type_funcs_percpu_create_chunk
-ffffffff822d2600 d print_fmt_percpu_create_chunk
-ffffffff822d2620 d event_percpu_create_chunk
-ffffffff822d26b0 d trace_event_fields_percpu_destroy_chunk
-ffffffff822d2700 d trace_event_type_funcs_percpu_destroy_chunk
-ffffffff822d2720 d print_fmt_percpu_destroy_chunk
-ffffffff822d2740 d event_percpu_destroy_chunk
-ffffffff822d27d0 d pcpu_alloc.warn_limit
-ffffffff822d27d8 d pcpu_alloc_mutex
-ffffffff822d27f8 d pcpu_balance_work
-ffffffff822d2818 d __SCK__tp_func_kmalloc
-ffffffff822d2828 d __SCK__tp_func_kfree
-ffffffff822d2838 d __SCK__tp_func_mm_page_free
-ffffffff822d2848 d __SCK__tp_func_mm_page_free_batched
-ffffffff822d2858 d __SCK__tp_func_mm_page_alloc
-ffffffff822d2868 d __SCK__tp_func_mm_page_alloc_zone_locked
-ffffffff822d2878 d __SCK__tp_func_mm_page_pcpu_drain
-ffffffff822d2888 d __SCK__tp_func_mm_page_alloc_extfrag
-ffffffff822d2898 d __SCK__tp_func_rss_stat
-ffffffff822d28b0 d trace_event_fields_kmem_cache_alloc
-ffffffff822d29f0 d trace_event_type_funcs_kmem_cache_alloc
-ffffffff822d2a10 d print_fmt_kmem_cache_alloc
-ffffffff822d3670 d event_kmem_cache_alloc
-ffffffff822d3700 d trace_event_fields_kmalloc
-ffffffff822d3818 d trace_event_type_funcs_kmalloc
-ffffffff822d3840 d print_fmt_kmalloc
-ffffffff822d44d0 d event_kmalloc
-ffffffff822d4560 d trace_event_fields_kfree
-ffffffff822d45d8 d trace_event_type_funcs_kfree
-ffffffff822d4600 d print_fmt_kfree
-ffffffff822d4640 d event_kfree
-ffffffff822d46d0 d trace_event_fields_kmem_cache_free
-ffffffff822d4770 d trace_event_type_funcs_kmem_cache_free
-ffffffff822d4790 d print_fmt_kmem_cache_free
-ffffffff822d47e8 d event_kmem_cache_free
-ffffffff822d4880 d trace_event_fields_mm_page_free
-ffffffff822d48f8 d trace_event_type_funcs_mm_page_free
-ffffffff822d4920 d print_fmt_mm_page_free
-ffffffff822d4988 d event_mm_page_free
-ffffffff822d4a20 d trace_event_fields_mm_page_free_batched
-ffffffff822d4a70 d trace_event_type_funcs_mm_page_free_batched
-ffffffff822d4a90 d print_fmt_mm_page_free_batched
-ffffffff822d4ae8 d event_mm_page_free_batched
-ffffffff822d4b80 d trace_event_fields_mm_page_alloc
-ffffffff822d4c48 d trace_event_type_funcs_mm_page_alloc
-ffffffff822d4c70 d print_fmt_mm_page_alloc
-ffffffff822d58d0 d event_mm_page_alloc
-ffffffff822d5960 d trace_event_fields_mm_page
-ffffffff822d5a28 d trace_event_type_funcs_mm_page
-ffffffff822d5a50 d print_fmt_mm_page
-ffffffff822d5b30 d event_mm_page_alloc_zone_locked
-ffffffff822d5bc0 d trace_event_fields_mm_page_pcpu_drain
-ffffffff822d5c60 d trace_event_type_funcs_mm_page_pcpu_drain
-ffffffff822d5c80 d print_fmt_mm_page_pcpu_drain
-ffffffff822d5d08 d event_mm_page_pcpu_drain
-ffffffff822d5da0 d trace_event_fields_mm_page_alloc_extfrag
-ffffffff822d5eb8 d trace_event_type_funcs_mm_page_alloc_extfrag
-ffffffff822d5ee0 d print_fmt_mm_page_alloc_extfrag
-ffffffff822d6048 d event_mm_page_alloc_extfrag
-ffffffff822d60e0 d trace_event_fields_rss_stat
-ffffffff822d61a8 d trace_event_type_funcs_rss_stat
-ffffffff822d61d0 d print_fmt_rss_stat
-ffffffff822d62c0 d event_rss_stat
-ffffffff822d6350 d slab_caches_to_rcu_destroy
-ffffffff822d6360 d slab_caches_to_rcu_destroy_work
-ffffffff822d6380 d __SCK__tp_func_kmem_cache_alloc
-ffffffff822d6390 d __SCK__tp_func_kmem_cache_free
-ffffffff822d63a0 d slab_mutex
-ffffffff822d63c0 d slab_caches
-ffffffff822d63d0 d __SCK__tp_func_mm_compaction_isolate_migratepages
-ffffffff822d63e0 d __SCK__tp_func_mm_compaction_isolate_freepages
-ffffffff822d63f0 d __SCK__tp_func_mm_compaction_migratepages
-ffffffff822d6400 d __SCK__tp_func_mm_compaction_begin
-ffffffff822d6410 d __SCK__tp_func_mm_compaction_end
-ffffffff822d6420 d __SCK__tp_func_mm_compaction_try_to_compact_pages
-ffffffff822d6430 d __SCK__tp_func_mm_compaction_finished
-ffffffff822d6440 d __SCK__tp_func_mm_compaction_suitable
-ffffffff822d6450 d __SCK__tp_func_mm_compaction_deferred
-ffffffff822d6460 d __SCK__tp_func_mm_compaction_defer_compaction
-ffffffff822d6470 d __SCK__tp_func_mm_compaction_defer_reset
-ffffffff822d6480 d __SCK__tp_func_mm_compaction_kcompactd_sleep
-ffffffff822d6490 d __SCK__tp_func_mm_compaction_wakeup_kcompactd
-ffffffff822d64a0 d __SCK__tp_func_mm_compaction_kcompactd_wake
-ffffffff822d64b0 d trace_event_fields_mm_compaction_isolate_template
-ffffffff822d6578 d trace_event_type_funcs_mm_compaction_isolate_template
-ffffffff822d65a0 d print_fmt_mm_compaction_isolate_template
-ffffffff822d6618 d event_mm_compaction_isolate_migratepages
-ffffffff822d66a8 d event_mm_compaction_isolate_freepages
-ffffffff822d6740 d trace_event_fields_mm_compaction_migratepages
-ffffffff822d67b8 d trace_event_type_funcs_mm_compaction_migratepages
-ffffffff822d67e0 d print_fmt_mm_compaction_migratepages
-ffffffff822d6828 d event_mm_compaction_migratepages
-ffffffff822d68c0 d trace_event_fields_mm_compaction_begin
-ffffffff822d69b0 d trace_event_type_funcs_mm_compaction_begin
-ffffffff822d69d0 d print_fmt_mm_compaction_begin
-ffffffff822d6a80 d event_mm_compaction_begin
-ffffffff822d6b10 d trace_event_fields_mm_compaction_end
-ffffffff822d6c28 d trace_event_type_funcs_mm_compaction_end
-ffffffff822d6c50 d print_fmt_mm_compaction_end
-ffffffff822d6e78 d event_mm_compaction_end
-ffffffff822d6f10 d trace_event_fields_mm_compaction_try_to_compact_pages
-ffffffff822d6fb0 d trace_event_type_funcs_mm_compaction_try_to_compact_pages
-ffffffff822d6fd0 d print_fmt_mm_compaction_try_to_compact_pages
-ffffffff822d7ba0 d event_mm_compaction_try_to_compact_pages
-ffffffff822d7c30 d trace_event_fields_mm_compaction_suitable_template
-ffffffff822d7cf8 d trace_event_type_funcs_mm_compaction_suitable_template
-ffffffff822d7d20 d print_fmt_mm_compaction_suitable_template
-ffffffff822d7f40 d event_mm_compaction_finished
-ffffffff822d7fd0 d event_mm_compaction_suitable
-ffffffff822d8060 d trace_event_fields_mm_compaction_defer_template
-ffffffff822d8178 d trace_event_type_funcs_mm_compaction_defer_template
-ffffffff822d81a0 d print_fmt_mm_compaction_defer_template
-ffffffff822d82b0 d event_mm_compaction_deferred
-ffffffff822d8340 d event_mm_compaction_defer_compaction
-ffffffff822d83d0 d event_mm_compaction_defer_reset
-ffffffff822d8460 d trace_event_fields_mm_compaction_kcompactd_sleep
-ffffffff822d84b0 d trace_event_type_funcs_mm_compaction_kcompactd_sleep
-ffffffff822d84d0 d print_fmt_mm_compaction_kcompactd_sleep
-ffffffff822d84e8 d event_mm_compaction_kcompactd_sleep
-ffffffff822d8580 d trace_event_fields_kcompactd_wake_template
-ffffffff822d8620 d trace_event_type_funcs_kcompactd_wake_template
-ffffffff822d8640 d print_fmt_kcompactd_wake_template
-ffffffff822d8708 d event_mm_compaction_wakeup_kcompactd
-ffffffff822d8798 d event_mm_compaction_kcompactd_wake
-ffffffff822d8828 d sysctl_extfrag_threshold
-ffffffff822d8830 d list_lrus_mutex
-ffffffff822d8850 d memcg_list_lrus
-ffffffff822d8860 d workingset_shadow_shrinker
-ffffffff822d88a0 d migrate_reason_names
-ffffffff822d88e8 d __SCK__tp_func_mmap_lock_start_locking
-ffffffff822d88f8 d __SCK__tp_func_mmap_lock_released
-ffffffff822d8908 d __SCK__tp_func_mmap_lock_acquire_returned
-ffffffff822d8920 d trace_event_fields_mmap_lock
-ffffffff822d89c0 d trace_event_type_funcs_mmap_lock
-ffffffff822d89e0 d print_fmt_mmap_lock
-ffffffff822d8a40 d event_mmap_lock_start_locking
-ffffffff822d8ad0 d event_mmap_lock_released
-ffffffff822d8b60 d trace_event_fields_mmap_lock_acquire_returned
-ffffffff822d8c28 d trace_event_type_funcs_mmap_lock_acquire_returned
-ffffffff822d8c50 d print_fmt_mmap_lock_acquire_returned
-ffffffff822d8ce0 d event_mmap_lock_acquire_returned
-ffffffff822d8d70 d reg_lock
-ffffffff822d8d90 d __SCK__tp_func_vm_unmapped_area
-ffffffff822d8da0 d __SCK__tp_func_vma_mas_szero
-ffffffff822d8db0 d __SCK__tp_func_vma_store
-ffffffff822d8dc0 d __SCK__tp_func_exit_mmap
-ffffffff822d8dd0 d trace_event_fields_vm_unmapped_area
-ffffffff822d8f38 d trace_event_type_funcs_vm_unmapped_area
-ffffffff822d8f60 d print_fmt_vm_unmapped_area
-ffffffff822d9100 d event_vm_unmapped_area
-ffffffff822d9190 d trace_event_fields_vma_mas_szero
-ffffffff822d9230 d trace_event_type_funcs_vma_mas_szero
-ffffffff822d9250 d print_fmt_vma_mas_szero
-ffffffff822d92b8 d event_vma_mas_szero
-ffffffff822d9350 d trace_event_fields_vma_store
-ffffffff822d9418 d trace_event_type_funcs_vma_store
-ffffffff822d9440 d print_fmt_vma_store
-ffffffff822d94b8 d event_vma_store
-ffffffff822d9550 d trace_event_fields_exit_mmap
-ffffffff822d95c8 d trace_event_type_funcs_exit_mmap
-ffffffff822d95f0 d print_fmt_exit_mmap
-ffffffff822d9610 d event_exit_mmap
-ffffffff822d96a0 d stack_guard_gap
-ffffffff822d96a8 d mm_all_locks_mutex
-ffffffff822d96c8 d reserve_mem_nb
-ffffffff822d96e0 d __SCK__tp_func_tlb_flush
-ffffffff822d96f0 d trace_event_fields_tlb_flush
-ffffffff822d9768 d trace_event_type_funcs_tlb_flush
-ffffffff822d9790 d print_fmt_tlb_flush
-ffffffff822d98d8 d event_tlb_flush
-ffffffff822d9968 d __SCK__tp_func_mm_migrate_pages
-ffffffff822d9978 d __SCK__tp_func_mm_migrate_pages_start
-ffffffff822d9988 d __SCK__tp_func_set_migration_pte
-ffffffff822d9998 d __SCK__tp_func_remove_migration_pte
-ffffffff822d99b0 d trace_event_fields_mm_migrate_pages
-ffffffff822d9af0 d trace_event_type_funcs_mm_migrate_pages
-ffffffff822d9b10 d print_fmt_mm_migrate_pages
-ffffffff822d9db8 d event_mm_migrate_pages
-ffffffff822d9e50 d trace_event_fields_mm_migrate_pages_start
-ffffffff822d9ec8 d trace_event_type_funcs_mm_migrate_pages_start
-ffffffff822d9ef0 d print_fmt_mm_migrate_pages_start
-ffffffff822da0f0 d event_mm_migrate_pages_start
-ffffffff822da180 d trace_event_fields_migration_pte
-ffffffff822da220 d trace_event_type_funcs_migration_pte
-ffffffff822da240 d print_fmt_migration_pte
-ffffffff822da280 d event_set_migration_pte
-ffffffff822da310 d event_remove_migration_pte
-ffffffff822da3a0 d vmap_area_list
-ffffffff822da3b0 d vmap_notify_list
-ffffffff822da3e8 d free_vmap_area_list
-ffffffff822da3f8 d vmap_purge_lock
-ffffffff822da418 d purge_vmap_area_list
-ffffffff822da428 d drain_vmap_work
-ffffffff822da448 d vm_numa_stat_key
-ffffffff822da460 d sysctl_lowmem_reserve_ratio
-ffffffff822da470 d min_free_kbytes
-ffffffff822da474 d user_min_free_kbytes
-ffffffff822da478 d watermark_scale_factor
-ffffffff822da480 d warn_alloc.nopage_rs
-ffffffff822da4a8 d pcp_batch_high_lock
-ffffffff822da4c8 d pcpu_drain_mutex
-ffffffff822da4e8 d init_on_alloc
-ffffffff822da4f8 d init_mm
-ffffffff822da8e8 d memblock_alloc_range_nid._rs
-ffffffff822da910 d memblock_find_in_range._rs
-ffffffff822da938 d mem_hotplug_lock
-ffffffff822da998 d max_mem_size
-ffffffff822da9a0 d online_page_callback_lock
-ffffffff822da9c0 d online_page_callback
-ffffffff822da9c8 d do_migrate_range.migrate_rs
-ffffffff822da9f0 d end_swap_bio_write._rs
-ffffffff822daa18 d sio_write_complete._rs
-ffffffff822daa40 d end_swap_bio_read._rs
-ffffffff822daa68 d sio_read_complete._rs
-ffffffff822daa90 d swapin_readahead_hits
-ffffffff822daaa0 d swap_attrs
-ffffffff822daab0 d vma_ra_enabled_attr
-ffffffff822daad0 d swap_active_head.llvm.3077387714457161111
-ffffffff822daae0 d least_priority
-ffffffff822daae8 d swapon_mutex
-ffffffff822dab08 d proc_poll_wait
-ffffffff822dab20 d swap_slots_cache_enable_mutex.llvm.6759629001852273092
-ffffffff822dab40 d swap_slots_cache_mutex
-ffffffff822dab60 d pools_reg_lock
-ffffffff822dab80 d pools_lock
-ffffffff822daba0 d dev_attr_pools
-ffffffff822dabc0 d slub_max_order
-ffffffff822dabc8 d slab_memory_callback_nb
-ffffffff822dabe0 d slab_out_of_memory.slub_oom_rs
-ffffffff822dac08 d flush_lock
-ffffffff822dac28 d slab_ktype
-ffffffff822dac60 d slab_attrs
-ffffffff822dad50 d slab_size_attr
-ffffffff822dad70 d object_size_attr
-ffffffff822dad90 d objs_per_slab_attr
-ffffffff822dadb0 d order_attr
-ffffffff822dadd0 d min_partial_attr
-ffffffff822dadf0 d cpu_partial_attr
-ffffffff822dae10 d objects_attr
-ffffffff822dae30 d objects_partial_attr
-ffffffff822dae50 d partial_attr
-ffffffff822dae70 d cpu_slabs_attr
-ffffffff822dae90 d ctor_attr
-ffffffff822daeb0 d aliases_attr
-ffffffff822daed0 d align_attr
-ffffffff822daef0 d hwcache_align_attr
-ffffffff822daf10 d reclaim_account_attr
-ffffffff822daf30 d destroy_by_rcu_attr
-ffffffff822daf50 d shrink_attr
-ffffffff822daf70 d slabs_cpu_partial_attr
-ffffffff822daf90 d total_objects_attr
-ffffffff822dafb0 d slabs_attr
-ffffffff822dafd0 d sanity_checks_attr
-ffffffff822daff0 d trace_attr
-ffffffff822db010 d red_zone_attr
-ffffffff822db030 d poison_attr
-ffffffff822db050 d store_user_attr
-ffffffff822db070 d validate_attr
-ffffffff822db090 d cache_dma_attr
-ffffffff822db0b0 d usersize_attr
-ffffffff822db0d0 d skip_kfence_attr
-ffffffff822db0f0 d kfence_allocation_gate
-ffffffff822db0f8 d kfence_freelist
-ffffffff822db108 d kfence_check_canary_notifier
-ffffffff822db120 d __SCK__tp_func_hugepage_set_pmd
-ffffffff822db130 d __SCK__tp_func_hugepage_update
-ffffffff822db140 d __SCK__tp_func_set_migration_pmd
-ffffffff822db150 d __SCK__tp_func_remove_migration_pmd
-ffffffff822db160 d trace_event_fields_hugepage_set_pmd
-ffffffff822db1d8 d trace_event_type_funcs_hugepage_set_pmd
-ffffffff822db200 d print_fmt_hugepage_set_pmd
-ffffffff822db238 d event_hugepage_set_pmd
-ffffffff822db2d0 d trace_event_fields_hugepage_update
-ffffffff822db398 d trace_event_type_funcs_hugepage_update
-ffffffff822db3c0 d print_fmt_hugepage_update
-ffffffff822db438 d event_hugepage_update
-ffffffff822db4d0 d trace_event_fields_migration_pmd
-ffffffff822db548 d trace_event_type_funcs_migration_pmd
-ffffffff822db570 d print_fmt_migration_pmd
-ffffffff822db5a0 d event_set_migration_pmd
-ffffffff822db630 d event_remove_migration_pmd
-ffffffff822db6c0 d deferred_split_shrinker
-ffffffff822db700 d huge_zero_page_shrinker
-ffffffff822db740 d hugepage_attr
-ffffffff822db770 d enabled_attr
-ffffffff822db790 d defrag_attr
-ffffffff822db7b0 d use_zero_page_attr
-ffffffff822db7d0 d hpage_pmd_size_attr
-ffffffff822db7f0 d split_huge_pages_write.split_debug_mutex
-ffffffff822db810 d __SCK__tp_func_mm_khugepaged_scan_pmd
-ffffffff822db820 d __SCK__tp_func_mm_collapse_huge_page
-ffffffff822db830 d __SCK__tp_func_mm_collapse_huge_page_isolate
-ffffffff822db840 d __SCK__tp_func_mm_collapse_huge_page_swapin
-ffffffff822db850 d __SCK__tp_func_mm_khugepaged_scan_file
-ffffffff822db860 d trace_event_fields_mm_khugepaged_scan_pmd
-ffffffff822db9a0 d trace_event_type_funcs_mm_khugepaged_scan_pmd
-ffffffff822db9c0 d print_fmt_mm_khugepaged_scan_pmd
-ffffffff822dbf18 d event_mm_khugepaged_scan_pmd
-ffffffff822dbfb0 d trace_event_fields_mm_collapse_huge_page
-ffffffff822dc050 d trace_event_type_funcs_mm_collapse_huge_page
-ffffffff822dc070 d print_fmt_mm_collapse_huge_page
-ffffffff822dc550 d event_mm_collapse_huge_page
-ffffffff822dc5e0 d trace_event_fields_mm_collapse_huge_page_isolate
-ffffffff822dc6d0 d trace_event_type_funcs_mm_collapse_huge_page_isolate
-ffffffff822dc6f0 d print_fmt_mm_collapse_huge_page_isolate
-ffffffff822dcc18 d event_mm_collapse_huge_page_isolate
-ffffffff822dccb0 d trace_event_fields_mm_collapse_huge_page_swapin
-ffffffff822dcd78 d trace_event_type_funcs_mm_collapse_huge_page_swapin
-ffffffff822dcda0 d print_fmt_mm_collapse_huge_page_swapin
-ffffffff822dce08 d event_mm_collapse_huge_page_swapin
-ffffffff822dcea0 d trace_event_fields_mm_khugepaged_scan_file
-ffffffff822dcfb8 d trace_event_type_funcs_mm_khugepaged_scan_file
-ffffffff822dcfe0 d print_fmt_mm_khugepaged_scan_file
-ffffffff822dd508 d event_mm_khugepaged_scan_file
-ffffffff822dd5a0 d khugepaged_attr
-ffffffff822dd5f0 d khugepaged_scan
-ffffffff822dd610 d khugepaged_wait
-ffffffff822dd628 d khugepaged_collapse_control
-ffffffff822dd638 d khugepaged_mutex
-ffffffff822dd658 d khugepaged_defrag_attr
-ffffffff822dd678 d khugepaged_max_ptes_none_attr
-ffffffff822dd698 d khugepaged_max_ptes_swap_attr
-ffffffff822dd6b8 d khugepaged_max_ptes_shared_attr
-ffffffff822dd6d8 d pages_to_scan_attr
-ffffffff822dd6f8 d pages_collapsed_attr
-ffffffff822dd718 d full_scans_attr
-ffffffff822dd738 d scan_sleep_millisecs_attr
-ffffffff822dd758 d alloc_sleep_millisecs_attr
-ffffffff822dd778 d khugepaged_attr_group
-ffffffff822dd7a0 d memcg_oom_waitq
-ffffffff822dd7b8 d mem_cgroup_idr.llvm.554238833668256173
-ffffffff822dd7d0 d memory_files
-ffffffff822de1f0 d mem_cgroup_legacy_files
-ffffffff822df558 d percpu_charge_mutex
-ffffffff822df578 d mc
-ffffffff822df5d8 d memcg_cgwb_frn_waitq
-ffffffff822df5f0 d stats_flush_dwork
-ffffffff822df648 d memcg_max_mutex
-ffffffff822df670 d swap_files
-ffffffff822dfab0 d memsw_files
-ffffffff822dfee8 d swap_cgroup_mutex
-ffffffff822dff08 d page_owner_ops
-ffffffff822dff28 d __SCK__tp_func_test_pages_isolated
-ffffffff822dff40 d trace_event_fields_test_pages_isolated
-ffffffff822dffe0 d trace_event_type_funcs_test_pages_isolated
-ffffffff822e0000 d print_fmt_test_pages_isolated
-ffffffff822e0098 d event_test_pages_isolated
-ffffffff822e0128 d page_ext_size
-ffffffff822e0130 d secretmem_fs
-ffffffff822e0178 d __SCK__tp_func_damon_aggregated
-ffffffff822e0190 d trace_event_fields_damon_aggregated
-ffffffff822e02a8 d trace_event_type_funcs_damon_aggregated
-ffffffff822e02d0 d print_fmt_damon_aggregated
-ffffffff822e0350 d event_damon_aggregated
-ffffffff822e03e0 d damon_ops_lock
-ffffffff822e0400 d damon_lock
-ffffffff822e0420 d __damon_pa_check_access.last_page_sz
-ffffffff822e0428 d damon_reclaim_quota
-ffffffff822e07b0 d damon_reclaim_wmarks
-ffffffff822e07e0 d damon_reclaim_mon_attrs
-ffffffff822e0808 d damon_reclaim_timer
-ffffffff822e0860 d page_reporting_mutex
-ffffffff822e0880 d page_reporting_order
-ffffffff822e0888 d warn_unsupported._rs
-ffffffff822e08b0 d files_stat.llvm.15981795621430969606
-ffffffff822e08c8 d delayed_fput_work
-ffffffff822e0920 d fs_stat_sysctls
-ffffffff822e0a20 d super_blocks
-ffffffff822e0a30 d unnamed_dev_ida
-ffffffff822e0a40 d chrdevs_lock.llvm.4152600280532699754
-ffffffff822e0a60 d ktype_cdev_dynamic
-ffffffff822e0a90 d ktype_cdev_default
-ffffffff822e0ac0 d cp_old_stat.warncount
-ffffffff822e0ac8 d formats
-ffffffff822e0ae0 d fs_exec_sysctls
-ffffffff822e0b60 d pipe_user_pages_soft
-ffffffff822e0b68 d pipe_max_size
-ffffffff822e0b70 d pipe_fs_type
-ffffffff822e0bc0 d fs_pipe_sysctls
-ffffffff822e0cc0 d namei_sysctls
-ffffffff822e0e00 d ioctl_fibmap._rs
-ffffffff822e0e28 d d_splice_alias._rs
-ffffffff822e0e50 d fs_dcache_sysctls
-ffffffff822e0ed0 d dentry_stat
-ffffffff822e0f00 d inodes_sysctls
-ffffffff822e0fc0 d sysctl_nr_open_min
-ffffffff822e0fc4 d sysctl_nr_open_max
-ffffffff822e1000 d init_files
-ffffffff822e12c0 d mnt_group_ida.llvm.17123673701578408723
-ffffffff822e12d0 d namespace_sem
-ffffffff822e1300 d ex_mountpoints
-ffffffff822e1310 d mnt_id_ida
-ffffffff822e1320 d delayed_mntput_work
-ffffffff822e1378 d mnt_ns_seq
-ffffffff822e1380 d fs_namespace_sysctls
-ffffffff822e1400 d seq_read_iter._rs
-ffffffff822e1428 d dirtytime_expire_interval
-ffffffff822e1430 d __SCK__tp_func_writeback_mark_inode_dirty
-ffffffff822e1440 d __SCK__tp_func_writeback_dirty_inode_start
-ffffffff822e1450 d __SCK__tp_func_writeback_dirty_inode
-ffffffff822e1460 d __SCK__tp_func_inode_foreign_history
-ffffffff822e1470 d __SCK__tp_func_inode_switch_wbs
-ffffffff822e1480 d __SCK__tp_func_track_foreign_dirty
-ffffffff822e1490 d __SCK__tp_func_flush_foreign
-ffffffff822e14a0 d __SCK__tp_func_writeback_write_inode_start
-ffffffff822e14b0 d __SCK__tp_func_writeback_write_inode
-ffffffff822e14c0 d __SCK__tp_func_writeback_queue
-ffffffff822e14d0 d __SCK__tp_func_writeback_exec
-ffffffff822e14e0 d __SCK__tp_func_writeback_start
-ffffffff822e14f0 d __SCK__tp_func_writeback_written
-ffffffff822e1500 d __SCK__tp_func_writeback_wait
-ffffffff822e1510 d __SCK__tp_func_writeback_pages_written
-ffffffff822e1520 d __SCK__tp_func_writeback_wake_background
-ffffffff822e1530 d __SCK__tp_func_writeback_queue_io
-ffffffff822e1540 d __SCK__tp_func_writeback_sb_inodes_requeue
-ffffffff822e1550 d __SCK__tp_func_writeback_single_inode_start
-ffffffff822e1560 d __SCK__tp_func_writeback_single_inode
-ffffffff822e1570 d __SCK__tp_func_writeback_lazytime
-ffffffff822e1580 d __SCK__tp_func_writeback_lazytime_iput
-ffffffff822e1590 d __SCK__tp_func_writeback_dirty_inode_enqueue
-ffffffff822e15a0 d __SCK__tp_func_sb_mark_inode_writeback
-ffffffff822e15b0 d __SCK__tp_func_sb_clear_inode_writeback
-ffffffff822e15c0 d trace_event_fields_writeback_folio_template
-ffffffff822e1660 d trace_event_type_funcs_writeback_folio_template
-ffffffff822e1680 d print_fmt_writeback_folio_template
-ffffffff822e16d0 d event_writeback_dirty_folio
-ffffffff822e1760 d event_folio_wait_writeback
-ffffffff822e17f0 d trace_event_fields_writeback_dirty_inode_template
-ffffffff822e18b8 d trace_event_type_funcs_writeback_dirty_inode_template
-ffffffff822e18e0 d print_fmt_writeback_dirty_inode_template
-ffffffff822e1b80 d event_writeback_mark_inode_dirty
-ffffffff822e1c10 d event_writeback_dirty_inode_start
-ffffffff822e1ca0 d event_writeback_dirty_inode
-ffffffff822e1d30 d trace_event_fields_inode_foreign_history
-ffffffff822e1df8 d trace_event_type_funcs_inode_foreign_history
-ffffffff822e1e20 d print_fmt_inode_foreign_history
-ffffffff822e1ea0 d event_inode_foreign_history
-ffffffff822e1f30 d trace_event_fields_inode_switch_wbs
-ffffffff822e1ff8 d trace_event_type_funcs_inode_switch_wbs
-ffffffff822e2020 d print_fmt_inode_switch_wbs
-ffffffff822e20c8 d event_inode_switch_wbs
-ffffffff822e2160 d trace_event_fields_track_foreign_dirty
-ffffffff822e2278 d trace_event_type_funcs_track_foreign_dirty
-ffffffff822e22a0 d print_fmt_track_foreign_dirty
-ffffffff822e2370 d event_track_foreign_dirty
-ffffffff822e2400 d trace_event_fields_flush_foreign
-ffffffff822e24c8 d trace_event_type_funcs_flush_foreign
-ffffffff822e24f0 d print_fmt_flush_foreign
-ffffffff822e2578 d event_flush_foreign
-ffffffff822e2610 d trace_event_fields_writeback_write_inode_template
-ffffffff822e26d8 d trace_event_type_funcs_writeback_write_inode_template
-ffffffff822e2700 d print_fmt_writeback_write_inode_template
-ffffffff822e2788 d event_writeback_write_inode_start
-ffffffff822e2818 d event_writeback_write_inode
-ffffffff822e28b0 d trace_event_fields_writeback_work_class
-ffffffff822e2a40 d trace_event_type_funcs_writeback_work_class
-ffffffff822e2a60 d print_fmt_writeback_work_class
-ffffffff822e2d18 d event_writeback_queue
-ffffffff822e2da8 d event_writeback_exec
-ffffffff822e2e38 d event_writeback_start
-ffffffff822e2ec8 d event_writeback_written
-ffffffff822e2f58 d event_writeback_wait
-ffffffff822e2ff0 d trace_event_fields_writeback_pages_written
-ffffffff822e3040 d trace_event_type_funcs_writeback_pages_written
-ffffffff822e3060 d print_fmt_writeback_pages_written
-ffffffff822e3078 d event_writeback_pages_written
-ffffffff822e3110 d trace_event_fields_writeback_class
-ffffffff822e3188 d trace_event_type_funcs_writeback_class
-ffffffff822e31b0 d print_fmt_writeback_class
-ffffffff822e31f8 d event_writeback_wake_background
-ffffffff822e3290 d trace_event_fields_writeback_bdi_register
-ffffffff822e32e0 d trace_event_type_funcs_writeback_bdi_register
-ffffffff822e3300 d print_fmt_writeback_bdi_register
-ffffffff822e3318 d event_writeback_bdi_register
-ffffffff822e33b0 d trace_event_fields_wbc_class
-ffffffff822e3590 d trace_event_type_funcs_wbc_class
-ffffffff822e35b0 d print_fmt_wbc_class
-ffffffff822e36f0 d event_wbc_writepage
-ffffffff822e3780 d trace_event_fields_writeback_queue_io
-ffffffff822e3898 d trace_event_type_funcs_writeback_queue_io
-ffffffff822e38c0 d print_fmt_writeback_queue_io
-ffffffff822e3ab0 d event_writeback_queue_io
-ffffffff822e3b40 d trace_event_fields_global_dirty_state
-ffffffff822e3c80 d trace_event_type_funcs_global_dirty_state
-ffffffff822e3ca0 d print_fmt_global_dirty_state
-ffffffff822e3d78 d event_global_dirty_state
-ffffffff822e3e10 d trace_event_fields_bdi_dirty_ratelimit
-ffffffff822e3f78 d trace_event_type_funcs_bdi_dirty_ratelimit
-ffffffff822e3fa0 d print_fmt_bdi_dirty_ratelimit
-ffffffff822e40d0 d event_bdi_dirty_ratelimit
-ffffffff822e4160 d trace_event_fields_balance_dirty_pages
-ffffffff822e43e0 d trace_event_type_funcs_balance_dirty_pages
-ffffffff822e4400 d print_fmt_balance_dirty_pages
-ffffffff822e45c0 d event_balance_dirty_pages
-ffffffff822e4650 d trace_event_fields_writeback_sb_inodes_requeue
-ffffffff822e4740 d trace_event_type_funcs_writeback_sb_inodes_requeue
-ffffffff822e4760 d print_fmt_writeback_sb_inodes_requeue
-ffffffff822e4948 d event_writeback_sb_inodes_requeue
-ffffffff822e49e0 d trace_event_fields_writeback_single_inode_template
-ffffffff822e4b48 d trace_event_type_funcs_writeback_single_inode_template
-ffffffff822e4b70 d print_fmt_writeback_single_inode_template
-ffffffff822e4db0 d event_writeback_single_inode_start
-ffffffff822e4e40 d event_writeback_single_inode
-ffffffff822e4ed0 d trace_event_fields_writeback_inode_template
-ffffffff822e4fc0 d trace_event_type_funcs_writeback_inode_template
-ffffffff822e4fe0 d print_fmt_writeback_inode_template
-ffffffff822e51d0 d event_writeback_lazytime
-ffffffff822e5260 d event_writeback_lazytime_iput
-ffffffff822e52f0 d event_writeback_dirty_inode_enqueue
-ffffffff822e5380 d event_sb_mark_inode_writeback
-ffffffff822e5410 d event_sb_clear_inode_writeback
-ffffffff822e54a0 d dirtytime_work
-ffffffff822e54f8 d __SCK__tp_func_writeback_bdi_register
-ffffffff822e5508 d __SCK__tp_func_global_dirty_state
-ffffffff822e5518 d __SCK__tp_func_bdi_dirty_ratelimit
-ffffffff822e5528 d __SCK__tp_func_balance_dirty_pages
-ffffffff822e5538 d __SCK__tp_func_wbc_writepage
-ffffffff822e5548 d __SCK__tp_func_writeback_dirty_folio
-ffffffff822e5558 d __SCK__tp_func_folio_wait_writeback
-ffffffff822e5568 d init_fs
-ffffffff822e55a0 d nsfs
-ffffffff822e55e8 d buffer_io_error._rs
-ffffffff822e5610 d buffer_io_error._rs
-ffffffff822e5638 d __find_get_block_slow.last_warned
-ffffffff822e5660 d connector_reaper_work
-ffffffff822e5680 d destroy_list
-ffffffff822e5690 d reaper_work.llvm.13735469727049882181
-ffffffff822e56e8 d fsnotify_add_mark_list._rs
-ffffffff822e5710 d inotify_table
-ffffffff822e5810 d it_int_max
-ffffffff822e5818 d epmutex
-ffffffff822e5838 d tfile_check_list
-ffffffff822e5840 d epoll_table
-ffffffff822e58c0 d long_max
-ffffffff822e58c8 d anon_inode_fs_type
-ffffffff822e5910 d cancel_list
-ffffffff822e5920 d timerfd_work.llvm.16961918471005550014
-ffffffff822e5940 d eventfd_ida
-ffffffff822e5950 d userfaultfd_misc
-ffffffff822e59a0 d aio_setup.aio_fs
-ffffffff822e59f0 d aio_sysctls
-ffffffff822e5ab0 d aio_max_nr
-ffffffff822e5ab8 d __SCK__tp_func_locks_get_lock_context
-ffffffff822e5ac8 d __SCK__tp_func_posix_lock_inode
-ffffffff822e5ad8 d __SCK__tp_func_fcntl_setlk
-ffffffff822e5ae8 d __SCK__tp_func_locks_remove_posix
-ffffffff822e5af8 d __SCK__tp_func_flock_lock_inode
-ffffffff822e5b08 d __SCK__tp_func_break_lease_noblock
-ffffffff822e5b18 d __SCK__tp_func_break_lease_block
-ffffffff822e5b28 d __SCK__tp_func_break_lease_unblock
-ffffffff822e5b38 d __SCK__tp_func_generic_delete_lease
-ffffffff822e5b48 d __SCK__tp_func_time_out_leases
-ffffffff822e5b58 d __SCK__tp_func_generic_add_lease
-ffffffff822e5b68 d __SCK__tp_func_leases_conflict
-ffffffff822e5b80 d trace_event_fields_locks_get_lock_context
-ffffffff822e5c48 d trace_event_type_funcs_locks_get_lock_context
-ffffffff822e5c70 d print_fmt_locks_get_lock_context
-ffffffff822e5d60 d event_locks_get_lock_context
-ffffffff822e5df0 d trace_event_fields_filelock_lock
-ffffffff822e5fd0 d trace_event_type_funcs_filelock_lock
-ffffffff822e5ff0 d print_fmt_filelock_lock
-ffffffff822e62a0 d event_posix_lock_inode
-ffffffff822e6330 d event_fcntl_setlk
-ffffffff822e63c0 d event_locks_remove_posix
-ffffffff822e6450 d event_flock_lock_inode
-ffffffff822e64e0 d trace_event_fields_filelock_lease
-ffffffff822e6670 d trace_event_type_funcs_filelock_lease
-ffffffff822e6690 d print_fmt_filelock_lease
-ffffffff822e6938 d event_break_lease_noblock
-ffffffff822e69c8 d event_break_lease_block
-ffffffff822e6a58 d event_break_lease_unblock
-ffffffff822e6ae8 d event_generic_delete_lease
-ffffffff822e6b78 d event_time_out_leases
-ffffffff822e6c10 d trace_event_fields_generic_add_lease
-ffffffff822e6d78 d trace_event_type_funcs_generic_add_lease
-ffffffff822e6da0 d print_fmt_generic_add_lease
-ffffffff822e7008 d event_generic_add_lease
-ffffffff822e70a0 d trace_event_fields_leases_conflict
-ffffffff822e71e0 d trace_event_type_funcs_leases_conflict
-ffffffff822e7200 d print_fmt_leases_conflict
-ffffffff822e7560 d event_leases_conflict
-ffffffff822e75f0 d file_rwsem
-ffffffff822e7650 d lease_break_time
-ffffffff822e7660 d locks_sysctls
-ffffffff822e7720 d leases_enable
-ffffffff822e7728 d misc_format
-ffffffff822e7760 d bm_fs_type
-ffffffff822e77a8 d entries
-ffffffff822e77b8 d script_format
-ffffffff822e77f0 d elf_format
-ffffffff822e7828 d do_coredump._rs
-ffffffff822e7850 d do_coredump._rs.9
-ffffffff822e7880 d core_pattern
-ffffffff822e7900 d core_name_size
-ffffffff822e7910 d coredump_sysctls
-ffffffff822e7a10 d __SCK__tp_func_iomap_readpage
-ffffffff822e7a20 d __SCK__tp_func_iomap_readahead
-ffffffff822e7a30 d __SCK__tp_func_iomap_writepage
-ffffffff822e7a40 d __SCK__tp_func_iomap_release_folio
-ffffffff822e7a50 d __SCK__tp_func_iomap_invalidate_folio
-ffffffff822e7a60 d __SCK__tp_func_iomap_dio_invalidate_fail
-ffffffff822e7a70 d __SCK__tp_func_iomap_iter_dstmap
-ffffffff822e7a80 d __SCK__tp_func_iomap_iter_srcmap
-ffffffff822e7a90 d __SCK__tp_func_iomap_writepage_map
-ffffffff822e7aa0 d __SCK__tp_func_iomap_iter
-ffffffff822e7ab0 d trace_event_fields_iomap_readpage_class
-ffffffff822e7b50 d trace_event_type_funcs_iomap_readpage_class
-ffffffff822e7b70 d print_fmt_iomap_readpage_class
-ffffffff822e7c08 d event_iomap_readpage
-ffffffff822e7c98 d event_iomap_readahead
-ffffffff822e7d30 d trace_event_fields_iomap_range_class
-ffffffff822e7e20 d trace_event_type_funcs_iomap_range_class
-ffffffff822e7e40 d print_fmt_iomap_range_class
-ffffffff822e7f08 d event_iomap_writepage
-ffffffff822e7f98 d event_iomap_release_folio
-ffffffff822e8028 d event_iomap_invalidate_folio
-ffffffff822e80b8 d event_iomap_dio_invalidate_fail
-ffffffff822e8150 d trace_event_fields_iomap_class
-ffffffff822e82b8 d trace_event_type_funcs_iomap_class
-ffffffff822e82e0 d print_fmt_iomap_class
-ffffffff822e8528 d event_iomap_iter_dstmap
-ffffffff822e85b8 d event_iomap_iter_srcmap
-ffffffff822e8648 d event_iomap_writepage_map
-ffffffff822e86e0 d trace_event_fields_iomap_iter
-ffffffff822e8820 d trace_event_type_funcs_iomap_iter
-ffffffff822e8840 d print_fmt_iomap_iter
-ffffffff822e89e8 d event_iomap_iter
-ffffffff822e8a78 d iomap_finish_ioend._rs
-ffffffff822e8aa0 d iomap_dio_iter._rs
-ffffffff822e8ac8 d proc_fs_type
-ffffffff822e8b10 d proc_root
-ffffffff822e8bc0 d proc_inum_ida.llvm.7899602350463927228
-ffffffff822e8bd0 d sysctl_table_root.llvm.15577098170544345035
-ffffffff822e8c50 d root_table
-ffffffff822e8cd0 d __kernfs_iattrs.iattr_mutex
-ffffffff822e8cf0 d kernfs_xattr_handlers
-ffffffff822e8d10 d kernfs_notify.kernfs_notify_work
-ffffffff822e8d30 d kernfs_notify_list
-ffffffff822e8d38 d sysfs_fs_type
-ffffffff822e8d80 d pty_limit
-ffffffff822e8d84 d pty_reserve
-ffffffff822e8d88 d devpts_fs_type
-ffffffff822e8dd0 d pty_root_table
-ffffffff822e8e50 d pty_kern_table
-ffffffff822e8ed0 d pty_table
-ffffffff822e8fd0 d pty_limit_max
-ffffffff822e8fd8 d es_reclaim_extents._rs
-ffffffff822e9000 d ext4_ioctl_checkpoint._rs
-ffffffff822e9028 d ext4_groupinfo_create_slab.ext4_grpinfo_slab_create_mutex
-ffffffff822e9048 d __SCK__tp_func_ext4_other_inode_update_time
-ffffffff822e9058 d __SCK__tp_func_ext4_free_inode
-ffffffff822e9068 d __SCK__tp_func_ext4_request_inode
-ffffffff822e9078 d __SCK__tp_func_ext4_allocate_inode
-ffffffff822e9088 d __SCK__tp_func_ext4_evict_inode
-ffffffff822e9098 d __SCK__tp_func_ext4_drop_inode
-ffffffff822e90a8 d __SCK__tp_func_ext4_nfs_commit_metadata
-ffffffff822e90b8 d __SCK__tp_func_ext4_mark_inode_dirty
-ffffffff822e90c8 d __SCK__tp_func_ext4_begin_ordered_truncate
-ffffffff822e90d8 d __SCK__tp_func_ext4_write_begin
-ffffffff822e90e8 d __SCK__tp_func_ext4_da_write_begin
-ffffffff822e90f8 d __SCK__tp_func_ext4_write_end
-ffffffff822e9108 d __SCK__tp_func_ext4_journalled_write_end
-ffffffff822e9118 d __SCK__tp_func_ext4_da_write_end
-ffffffff822e9128 d __SCK__tp_func_ext4_writepages
-ffffffff822e9138 d __SCK__tp_func_ext4_da_write_pages
-ffffffff822e9148 d __SCK__tp_func_ext4_da_write_pages_extent
-ffffffff822e9158 d __SCK__tp_func_ext4_writepages_result
-ffffffff822e9168 d __SCK__tp_func_ext4_writepage
-ffffffff822e9178 d __SCK__tp_func_ext4_readpage
-ffffffff822e9188 d __SCK__tp_func_ext4_releasepage
-ffffffff822e9198 d __SCK__tp_func_ext4_invalidate_folio
-ffffffff822e91a8 d __SCK__tp_func_ext4_journalled_invalidate_folio
-ffffffff822e91b8 d __SCK__tp_func_ext4_discard_blocks
-ffffffff822e91c8 d __SCK__tp_func_ext4_mb_new_inode_pa
-ffffffff822e91d8 d __SCK__tp_func_ext4_mb_new_group_pa
-ffffffff822e91e8 d __SCK__tp_func_ext4_mb_release_inode_pa
-ffffffff822e91f8 d __SCK__tp_func_ext4_mb_release_group_pa
-ffffffff822e9208 d __SCK__tp_func_ext4_discard_preallocations
-ffffffff822e9218 d __SCK__tp_func_ext4_mb_discard_preallocations
-ffffffff822e9228 d __SCK__tp_func_ext4_request_blocks
-ffffffff822e9238 d __SCK__tp_func_ext4_allocate_blocks
-ffffffff822e9248 d __SCK__tp_func_ext4_free_blocks
-ffffffff822e9258 d __SCK__tp_func_ext4_sync_file_enter
-ffffffff822e9268 d __SCK__tp_func_ext4_sync_file_exit
-ffffffff822e9278 d __SCK__tp_func_ext4_sync_fs
-ffffffff822e9288 d __SCK__tp_func_ext4_alloc_da_blocks
-ffffffff822e9298 d __SCK__tp_func_ext4_mballoc_alloc
-ffffffff822e92a8 d __SCK__tp_func_ext4_mballoc_prealloc
-ffffffff822e92b8 d __SCK__tp_func_ext4_mballoc_discard
-ffffffff822e92c8 d __SCK__tp_func_ext4_mballoc_free
-ffffffff822e92d8 d __SCK__tp_func_ext4_forget
-ffffffff822e92e8 d __SCK__tp_func_ext4_da_update_reserve_space
-ffffffff822e92f8 d __SCK__tp_func_ext4_da_reserve_space
-ffffffff822e9308 d __SCK__tp_func_ext4_da_release_space
-ffffffff822e9318 d __SCK__tp_func_ext4_mb_bitmap_load
-ffffffff822e9328 d __SCK__tp_func_ext4_mb_buddy_bitmap_load
-ffffffff822e9338 d __SCK__tp_func_ext4_load_inode_bitmap
-ffffffff822e9348 d __SCK__tp_func_ext4_read_block_bitmap_load
-ffffffff822e9358 d __SCK__tp_func_ext4_punch_hole
-ffffffff822e9368 d __SCK__tp_func_ext4_unlink_enter
-ffffffff822e9378 d __SCK__tp_func_ext4_unlink_exit
-ffffffff822e9388 d __SCK__tp_func_ext4_truncate_enter
-ffffffff822e9398 d __SCK__tp_func_ext4_truncate_exit
-ffffffff822e93a8 d __SCK__tp_func_ext4_ind_map_blocks_enter
-ffffffff822e93b8 d __SCK__tp_func_ext4_ind_map_blocks_exit
-ffffffff822e93c8 d __SCK__tp_func_ext4_load_inode
-ffffffff822e93d8 d __SCK__tp_func_ext4_journal_start
-ffffffff822e93e8 d __SCK__tp_func_ext4_journal_start_reserved
-ffffffff822e93f8 d __SCK__tp_func_ext4_trim_extent
-ffffffff822e9408 d __SCK__tp_func_ext4_trim_all_free
-ffffffff822e9418 d __SCK__tp_func_ext4_fsmap_low_key
-ffffffff822e9428 d __SCK__tp_func_ext4_fsmap_high_key
-ffffffff822e9438 d __SCK__tp_func_ext4_fsmap_mapping
-ffffffff822e9448 d __SCK__tp_func_ext4_getfsmap_low_key
-ffffffff822e9458 d __SCK__tp_func_ext4_getfsmap_high_key
-ffffffff822e9468 d __SCK__tp_func_ext4_getfsmap_mapping
-ffffffff822e9478 d __SCK__tp_func_ext4_shutdown
-ffffffff822e9488 d __SCK__tp_func_ext4_error
-ffffffff822e9498 d __SCK__tp_func_ext4_prefetch_bitmaps
-ffffffff822e94a8 d __SCK__tp_func_ext4_lazy_itable_init
-ffffffff822e94b8 d __SCK__tp_func_ext4_update_sb
-ffffffff822e94d0 d trace_event_fields_ext4_other_inode_update_time
-ffffffff822e95e8 d trace_event_type_funcs_ext4_other_inode_update_time
-ffffffff822e9610 d print_fmt_ext4_other_inode_update_time
-ffffffff822e96f8 d event_ext4_other_inode_update_time
-ffffffff822e9790 d trace_event_fields_ext4_free_inode
-ffffffff822e98a8 d trace_event_type_funcs_ext4_free_inode
-ffffffff822e98d0 d print_fmt_ext4_free_inode
-ffffffff822e99a8 d event_ext4_free_inode
-ffffffff822e9a40 d trace_event_fields_ext4_request_inode
-ffffffff822e9ae0 d trace_event_type_funcs_ext4_request_inode
-ffffffff822e9b00 d print_fmt_ext4_request_inode
-ffffffff822e9ba0 d event_ext4_request_inode
-ffffffff822e9c30 d trace_event_fields_ext4_allocate_inode
-ffffffff822e9cf8 d trace_event_type_funcs_ext4_allocate_inode
-ffffffff822e9d20 d print_fmt_ext4_allocate_inode
-ffffffff822e9de0 d event_ext4_allocate_inode
-ffffffff822e9e70 d trace_event_fields_ext4_evict_inode
-ffffffff822e9f10 d trace_event_type_funcs_ext4_evict_inode
-ffffffff822e9f30 d print_fmt_ext4_evict_inode
-ffffffff822e9fd0 d event_ext4_evict_inode
-ffffffff822ea060 d trace_event_fields_ext4_drop_inode
-ffffffff822ea100 d trace_event_type_funcs_ext4_drop_inode
-ffffffff822ea120 d print_fmt_ext4_drop_inode
-ffffffff822ea1b8 d event_ext4_drop_inode
-ffffffff822ea250 d trace_event_fields_ext4_nfs_commit_metadata
-ffffffff822ea2c8 d trace_event_type_funcs_ext4_nfs_commit_metadata
-ffffffff822ea2f0 d print_fmt_ext4_nfs_commit_metadata
-ffffffff822ea378 d event_ext4_nfs_commit_metadata
-ffffffff822ea410 d trace_event_fields_ext4_mark_inode_dirty
-ffffffff822ea4b0 d trace_event_type_funcs_ext4_mark_inode_dirty
-ffffffff822ea4d0 d print_fmt_ext4_mark_inode_dirty
-ffffffff822ea578 d event_ext4_mark_inode_dirty
-ffffffff822ea610 d trace_event_fields_ext4_begin_ordered_truncate
-ffffffff822ea6b0 d trace_event_type_funcs_ext4_begin_ordered_truncate
-ffffffff822ea6d0 d print_fmt_ext4_begin_ordered_truncate
-ffffffff822ea778 d event_ext4_begin_ordered_truncate
-ffffffff822ea810 d trace_event_fields_ext4__write_begin
-ffffffff822ea8d8 d trace_event_type_funcs_ext4__write_begin
-ffffffff822ea900 d print_fmt_ext4__write_begin
-ffffffff822ea9b0 d event_ext4_write_begin
-ffffffff822eaa40 d event_ext4_da_write_begin
-ffffffff822eaad0 d trace_event_fields_ext4__write_end
-ffffffff822eabc0 d trace_event_type_funcs_ext4__write_end
-ffffffff822eabe0 d print_fmt_ext4__write_end
-ffffffff822eaca0 d event_ext4_write_end
-ffffffff822ead30 d event_ext4_journalled_write_end
-ffffffff822eadc0 d event_ext4_da_write_end
-ffffffff822eae50 d trace_event_fields_ext4_writepages
-ffffffff822eb008 d trace_event_type_funcs_ext4_writepages
-ffffffff822eb030 d print_fmt_ext4_writepages
-ffffffff822eb1e0 d event_ext4_writepages
-ffffffff822eb270 d trace_event_fields_ext4_da_write_pages
-ffffffff822eb360 d trace_event_type_funcs_ext4_da_write_pages
-ffffffff822eb380 d print_fmt_ext4_da_write_pages
-ffffffff822eb468 d event_ext4_da_write_pages
-ffffffff822eb500 d trace_event_fields_ext4_da_write_pages_extent
-ffffffff822eb5f0 d trace_event_type_funcs_ext4_da_write_pages_extent
-ffffffff822eb610 d print_fmt_ext4_da_write_pages_extent
-ffffffff822eb780 d event_ext4_da_write_pages_extent
-ffffffff822eb810 d trace_event_fields_ext4_writepages_result
-ffffffff822eb950 d trace_event_type_funcs_ext4_writepages_result
-ffffffff822eb970 d print_fmt_ext4_writepages_result
-ffffffff822ebaa8 d event_ext4_writepages_result
-ffffffff822ebb40 d trace_event_fields_ext4__page_op
-ffffffff822ebbe0 d trace_event_type_funcs_ext4__page_op
-ffffffff822ebc00 d print_fmt_ext4__page_op
-ffffffff822ebcb0 d event_ext4_writepage
-ffffffff822ebd40 d event_ext4_readpage
-ffffffff822ebdd0 d event_ext4_releasepage
-ffffffff822ebe60 d trace_event_fields_ext4_invalidate_folio_op
-ffffffff822ebf50 d trace_event_type_funcs_ext4_invalidate_folio_op
-ffffffff822ebf70 d print_fmt_ext4_invalidate_folio_op
-ffffffff822ec058 d event_ext4_invalidate_folio
-ffffffff822ec0e8 d event_ext4_journalled_invalidate_folio
-ffffffff822ec180 d trace_event_fields_ext4_discard_blocks
-ffffffff822ec220 d trace_event_type_funcs_ext4_discard_blocks
-ffffffff822ec240 d print_fmt_ext4_discard_blocks
-ffffffff822ec2d0 d event_ext4_discard_blocks
-ffffffff822ec360 d trace_event_fields_ext4__mb_new_pa
-ffffffff822ec450 d trace_event_type_funcs_ext4__mb_new_pa
-ffffffff822ec470 d print_fmt_ext4__mb_new_pa
-ffffffff822ec548 d event_ext4_mb_new_inode_pa
-ffffffff822ec5d8 d event_ext4_mb_new_group_pa
-ffffffff822ec670 d trace_event_fields_ext4_mb_release_inode_pa
-ffffffff822ec738 d trace_event_type_funcs_ext4_mb_release_inode_pa
-ffffffff822ec760 d print_fmt_ext4_mb_release_inode_pa
-ffffffff822ec818 d event_ext4_mb_release_inode_pa
-ffffffff822ec8b0 d trace_event_fields_ext4_mb_release_group_pa
-ffffffff822ec950 d trace_event_type_funcs_ext4_mb_release_group_pa
-ffffffff822ec970 d print_fmt_ext4_mb_release_group_pa
-ffffffff822eca08 d event_ext4_mb_release_group_pa
-ffffffff822ecaa0 d trace_event_fields_ext4_discard_preallocations
-ffffffff822ecb68 d trace_event_type_funcs_ext4_discard_preallocations
-ffffffff822ecb90 d print_fmt_ext4_discard_preallocations
-ffffffff822ecc40 d event_ext4_discard_preallocations
-ffffffff822eccd0 d trace_event_fields_ext4_mb_discard_preallocations
-ffffffff822ecd48 d trace_event_type_funcs_ext4_mb_discard_preallocations
-ffffffff822ecd70 d print_fmt_ext4_mb_discard_preallocations
-ffffffff822ecdf0 d event_ext4_mb_discard_preallocations
-ffffffff822ece80 d trace_event_fields_ext4_request_blocks
-ffffffff822ed038 d trace_event_type_funcs_ext4_request_blocks
-ffffffff822ed060 d print_fmt_ext4_request_blocks
-ffffffff822ed348 d event_ext4_request_blocks
-ffffffff822ed3e0 d trace_event_fields_ext4_allocate_blocks
-ffffffff822ed5c0 d trace_event_type_funcs_ext4_allocate_blocks
-ffffffff822ed5e0 d print_fmt_ext4_allocate_blocks
-ffffffff822ed8d8 d event_ext4_allocate_blocks
-ffffffff822ed970 d trace_event_fields_ext4_free_blocks
-ffffffff822eda88 d trace_event_type_funcs_ext4_free_blocks
-ffffffff822edab0 d print_fmt_ext4_free_blocks
-ffffffff822edc38 d event_ext4_free_blocks
-ffffffff822edcd0 d trace_event_fields_ext4_sync_file_enter
-ffffffff822edd98 d trace_event_type_funcs_ext4_sync_file_enter
-ffffffff822eddc0 d print_fmt_ext4_sync_file_enter
-ffffffff822ede90 d event_ext4_sync_file_enter
-ffffffff822edf20 d trace_event_fields_ext4_sync_file_exit
-ffffffff822edfc0 d trace_event_type_funcs_ext4_sync_file_exit
-ffffffff822edfe0 d print_fmt_ext4_sync_file_exit
-ffffffff822ee078 d event_ext4_sync_file_exit
-ffffffff822ee110 d trace_event_fields_ext4_sync_fs
-ffffffff822ee188 d trace_event_type_funcs_ext4_sync_fs
-ffffffff822ee1b0 d print_fmt_ext4_sync_fs
-ffffffff822ee228 d event_ext4_sync_fs
-ffffffff822ee2c0 d trace_event_fields_ext4_alloc_da_blocks
-ffffffff822ee360 d trace_event_type_funcs_ext4_alloc_da_blocks
-ffffffff822ee380 d print_fmt_ext4_alloc_da_blocks
-ffffffff822ee430 d event_ext4_alloc_da_blocks
-ffffffff822ee4c0 d trace_event_fields_ext4_mballoc_alloc
-ffffffff822ee808 d trace_event_type_funcs_ext4_mballoc_alloc
-ffffffff822ee830 d print_fmt_ext4_mballoc_alloc
-ffffffff822eec00 d event_ext4_mballoc_alloc
-ffffffff822eec90 d trace_event_fields_ext4_mballoc_prealloc
-ffffffff822eee48 d trace_event_type_funcs_ext4_mballoc_prealloc
-ffffffff822eee70 d print_fmt_ext4_mballoc_prealloc
-ffffffff822eefb0 d event_ext4_mballoc_prealloc
-ffffffff822ef040 d trace_event_fields_ext4__mballoc
-ffffffff822ef130 d trace_event_type_funcs_ext4__mballoc
-ffffffff822ef150 d print_fmt_ext4__mballoc
-ffffffff822ef220 d event_ext4_mballoc_discard
-ffffffff822ef2b0 d event_ext4_mballoc_free
-ffffffff822ef340 d trace_event_fields_ext4_forget
-ffffffff822ef430 d trace_event_type_funcs_ext4_forget
-ffffffff822ef450 d print_fmt_ext4_forget
-ffffffff822ef528 d event_ext4_forget
-ffffffff822ef5c0 d trace_event_fields_ext4_da_update_reserve_space
-ffffffff822ef700 d trace_event_type_funcs_ext4_da_update_reserve_space
-ffffffff822ef720 d print_fmt_ext4_da_update_reserve_space
-ffffffff822ef850 d event_ext4_da_update_reserve_space
-ffffffff822ef8e0 d trace_event_fields_ext4_da_reserve_space
-ffffffff822ef9d0 d trace_event_type_funcs_ext4_da_reserve_space
-ffffffff822ef9f0 d print_fmt_ext4_da_reserve_space
-ffffffff822efae0 d event_ext4_da_reserve_space
-ffffffff822efb70 d trace_event_fields_ext4_da_release_space
-ffffffff822efc88 d trace_event_type_funcs_ext4_da_release_space
-ffffffff822efcb0 d print_fmt_ext4_da_release_space
-ffffffff822efdc0 d event_ext4_da_release_space
-ffffffff822efe50 d trace_event_fields_ext4__bitmap_load
-ffffffff822efec8 d trace_event_type_funcs_ext4__bitmap_load
-ffffffff822efef0 d print_fmt_ext4__bitmap_load
-ffffffff822eff68 d event_ext4_mb_bitmap_load
-ffffffff822efff8 d event_ext4_mb_buddy_bitmap_load
-ffffffff822f0088 d event_ext4_load_inode_bitmap
-ffffffff822f0120 d trace_event_fields_ext4_read_block_bitmap_load
-ffffffff822f01c0 d trace_event_type_funcs_ext4_read_block_bitmap_load
-ffffffff822f01e0 d print_fmt_ext4_read_block_bitmap_load
-ffffffff822f0278 d event_ext4_read_block_bitmap_load
-ffffffff822f0310 d trace_event_fields_ext4__fallocate_mode
-ffffffff822f0400 d trace_event_type_funcs_ext4__fallocate_mode
-ffffffff822f0420 d print_fmt_ext4__fallocate_mode
-ffffffff822f0578 d event_ext4_fallocate_enter
-ffffffff822f0608 d event_ext4_punch_hole
-ffffffff822f0698 d event_ext4_zero_range
-ffffffff822f0730 d trace_event_fields_ext4_fallocate_exit
-ffffffff822f0820 d trace_event_type_funcs_ext4_fallocate_exit
-ffffffff822f0840 d print_fmt_ext4_fallocate_exit
-ffffffff822f0900 d event_ext4_fallocate_exit
-ffffffff822f0990 d trace_event_fields_ext4_unlink_enter
-ffffffff822f0a58 d trace_event_type_funcs_ext4_unlink_enter
-ffffffff822f0a80 d print_fmt_ext4_unlink_enter
-ffffffff822f0b48 d event_ext4_unlink_enter
-ffffffff822f0be0 d trace_event_fields_ext4_unlink_exit
-ffffffff822f0c80 d trace_event_type_funcs_ext4_unlink_exit
-ffffffff822f0ca0 d print_fmt_ext4_unlink_exit
-ffffffff822f0d38 d event_ext4_unlink_exit
-ffffffff822f0dd0 d trace_event_fields_ext4__truncate
-ffffffff822f0e70 d trace_event_type_funcs_ext4__truncate
-ffffffff822f0e90 d print_fmt_ext4__truncate
-ffffffff822f0f30 d event_ext4_truncate_enter
-ffffffff822f0fc0 d event_ext4_truncate_exit
-ffffffff822f1050 d trace_event_fields_ext4_ext_convert_to_initialized_enter
-ffffffff822f1190 d trace_event_type_funcs_ext4_ext_convert_to_initialized_enter
-ffffffff822f11b0 d print_fmt_ext4_ext_convert_to_initialized_enter
-ffffffff822f12a8 d event_ext4_ext_convert_to_initialized_enter
-ffffffff822f1340 d trace_event_fields_ext4_ext_convert_to_initialized_fastpath
-ffffffff822f14f8 d trace_event_type_funcs_ext4_ext_convert_to_initialized_fastpath
-ffffffff822f1520 d print_fmt_ext4_ext_convert_to_initialized_fastpath
-ffffffff822f1660 d event_ext4_ext_convert_to_initialized_fastpath
-ffffffff822f16f0 d trace_event_fields_ext4__map_blocks_enter
-ffffffff822f17e0 d trace_event_type_funcs_ext4__map_blocks_enter
-ffffffff822f1800 d print_fmt_ext4__map_blocks_enter
-ffffffff822f19f0 d event_ext4_ext_map_blocks_enter
-ffffffff822f1a80 d event_ext4_ind_map_blocks_enter
-ffffffff822f1b10 d trace_event_fields_ext4__map_blocks_exit
-ffffffff822f1c78 d trace_event_type_funcs_ext4__map_blocks_exit
-ffffffff822f1ca0 d print_fmt_ext4__map_blocks_exit
-ffffffff822f1f70 d event_ext4_ext_map_blocks_exit
-ffffffff822f2000 d event_ext4_ind_map_blocks_exit
-ffffffff822f2090 d trace_event_fields_ext4_ext_load_extent
-ffffffff822f2158 d trace_event_type_funcs_ext4_ext_load_extent
-ffffffff822f2180 d print_fmt_ext4_ext_load_extent
-ffffffff822f2230 d event_ext4_ext_load_extent
-ffffffff822f22c0 d trace_event_fields_ext4_load_inode
-ffffffff822f2338 d trace_event_type_funcs_ext4_load_inode
-ffffffff822f2360 d print_fmt_ext4_load_inode
-ffffffff822f23e8 d event_ext4_load_inode
-ffffffff822f2480 d trace_event_fields_ext4_journal_start
-ffffffff822f2570 d trace_event_type_funcs_ext4_journal_start
-ffffffff822f2590 d print_fmt_ext4_journal_start
-ffffffff822f2670 d event_ext4_journal_start
-ffffffff822f2700 d trace_event_fields_ext4_journal_start_reserved
-ffffffff822f27a0 d trace_event_type_funcs_ext4_journal_start_reserved
-ffffffff822f27c0 d print_fmt_ext4_journal_start_reserved
-ffffffff822f2858 d event_ext4_journal_start_reserved
-ffffffff822f28f0 d trace_event_fields_ext4__trim
-ffffffff822f29e0 d trace_event_type_funcs_ext4__trim
-ffffffff822f2a00 d print_fmt_ext4__trim
-ffffffff822f2a70 d event_ext4_trim_extent
-ffffffff822f2b00 d event_ext4_trim_all_free
-ffffffff822f2b90 d trace_event_fields_ext4_ext_handle_unwritten_extents
-ffffffff822f2cf8 d trace_event_type_funcs_ext4_ext_handle_unwritten_extents
-ffffffff822f2d20 d print_fmt_ext4_ext_handle_unwritten_extents
-ffffffff822f2fa8 d event_ext4_ext_handle_unwritten_extents
-ffffffff822f3040 d trace_event_fields_ext4_get_implied_cluster_alloc_exit
-ffffffff822f3158 d trace_event_type_funcs_ext4_get_implied_cluster_alloc_exit
-ffffffff822f3180 d print_fmt_ext4_get_implied_cluster_alloc_exit
-ffffffff822f3308 d event_ext4_get_implied_cluster_alloc_exit
-ffffffff822f33a0 d trace_event_fields_ext4_ext_show_extent
-ffffffff822f3490 d trace_event_type_funcs_ext4_ext_show_extent
-ffffffff822f34b0 d print_fmt_ext4_ext_show_extent
-ffffffff822f35a0 d event_ext4_ext_show_extent
-ffffffff822f3630 d trace_event_fields_ext4_remove_blocks
-ffffffff822f37e8 d trace_event_type_funcs_ext4_remove_blocks
-ffffffff822f3810 d print_fmt_ext4_remove_blocks
-ffffffff822f39b0 d event_ext4_remove_blocks
-ffffffff822f3a40 d trace_event_fields_ext4_ext_rm_leaf
-ffffffff822f3bd0 d trace_event_type_funcs_ext4_ext_rm_leaf
-ffffffff822f3bf0 d print_fmt_ext4_ext_rm_leaf
-ffffffff822f3d80 d event_ext4_ext_rm_leaf
-ffffffff822f3e10 d trace_event_fields_ext4_ext_rm_idx
-ffffffff822f3eb0 d trace_event_type_funcs_ext4_ext_rm_idx
-ffffffff822f3ed0 d print_fmt_ext4_ext_rm_idx
-ffffffff822f3f88 d event_ext4_ext_rm_idx
-ffffffff822f4020 d trace_event_fields_ext4_ext_remove_space
-ffffffff822f4110 d trace_event_type_funcs_ext4_ext_remove_space
-ffffffff822f4130 d print_fmt_ext4_ext_remove_space
-ffffffff822f4208 d event_ext4_ext_remove_space
-ffffffff822f42a0 d trace_event_fields_ext4_ext_remove_space_done
-ffffffff822f4430 d trace_event_type_funcs_ext4_ext_remove_space_done
-ffffffff822f4450 d print_fmt_ext4_ext_remove_space_done
-ffffffff822f45d0 d event_ext4_ext_remove_space_done
-ffffffff822f4660 d trace_event_fields_ext4__es_extent
-ffffffff822f4778 d trace_event_type_funcs_ext4__es_extent
-ffffffff822f47a0 d print_fmt_ext4__es_extent
-ffffffff822f4920 d event_ext4_es_insert_extent
-ffffffff822f49b0 d event_ext4_es_cache_extent
-ffffffff822f4a40 d trace_event_fields_ext4_es_remove_extent
-ffffffff822f4b08 d trace_event_type_funcs_ext4_es_remove_extent
-ffffffff822f4b30 d print_fmt_ext4_es_remove_extent
-ffffffff822f4be0 d event_ext4_es_remove_extent
-ffffffff822f4c70 d trace_event_fields_ext4_es_find_extent_range_enter
-ffffffff822f4d10 d trace_event_type_funcs_ext4_es_find_extent_range_enter
-ffffffff822f4d30 d print_fmt_ext4_es_find_extent_range_enter
-ffffffff822f4dc8 d event_ext4_es_find_extent_range_enter
-ffffffff822f4e60 d trace_event_fields_ext4_es_find_extent_range_exit
-ffffffff822f4f78 d trace_event_type_funcs_ext4_es_find_extent_range_exit
-ffffffff822f4fa0 d print_fmt_ext4_es_find_extent_range_exit
-ffffffff822f5120 d event_ext4_es_find_extent_range_exit
-ffffffff822f51b0 d trace_event_fields_ext4_es_lookup_extent_enter
-ffffffff822f5250 d trace_event_type_funcs_ext4_es_lookup_extent_enter
-ffffffff822f5270 d print_fmt_ext4_es_lookup_extent_enter
-ffffffff822f5308 d event_ext4_es_lookup_extent_enter
-ffffffff822f53a0 d trace_event_fields_ext4_es_lookup_extent_exit
-ffffffff822f54e0 d trace_event_type_funcs_ext4_es_lookup_extent_exit
-ffffffff822f5500 d print_fmt_ext4_es_lookup_extent_exit
-ffffffff822f56a8 d event_ext4_es_lookup_extent_exit
-ffffffff822f5740 d trace_event_fields_ext4__es_shrink_enter
-ffffffff822f57e0 d trace_event_type_funcs_ext4__es_shrink_enter
-ffffffff822f5800 d print_fmt_ext4__es_shrink_enter
-ffffffff822f58a0 d event_ext4_es_shrink_count
-ffffffff822f5930 d event_ext4_es_shrink_scan_enter
-ffffffff822f59c0 d trace_event_fields_ext4_es_shrink_scan_exit
-ffffffff822f5a60 d trace_event_type_funcs_ext4_es_shrink_scan_exit
-ffffffff822f5a80 d print_fmt_ext4_es_shrink_scan_exit
-ffffffff822f5b20 d event_ext4_es_shrink_scan_exit
-ffffffff822f5bb0 d trace_event_fields_ext4_collapse_range
-ffffffff822f5c78 d trace_event_type_funcs_ext4_collapse_range
-ffffffff822f5ca0 d print_fmt_ext4_collapse_range
-ffffffff822f5d58 d event_ext4_collapse_range
-ffffffff822f5df0 d trace_event_fields_ext4_insert_range
-ffffffff822f5eb8 d trace_event_type_funcs_ext4_insert_range
-ffffffff822f5ee0 d print_fmt_ext4_insert_range
-ffffffff822f5f98 d event_ext4_insert_range
-ffffffff822f6030 d trace_event_fields_ext4_es_shrink
-ffffffff822f6120 d trace_event_type_funcs_ext4_es_shrink
-ffffffff822f6140 d print_fmt_ext4_es_shrink
-ffffffff822f6218 d event_ext4_es_shrink
-ffffffff822f62b0 d trace_event_fields_ext4_es_insert_delayed_block
-ffffffff822f63f0 d trace_event_type_funcs_ext4_es_insert_delayed_block
-ffffffff822f6410 d print_fmt_ext4_es_insert_delayed_block
-ffffffff822f65b0 d event_ext4_es_insert_delayed_block
-ffffffff822f6640 d trace_event_fields_ext4_fsmap_class
-ffffffff822f6758 d trace_event_type_funcs_ext4_fsmap_class
-ffffffff822f6780 d print_fmt_ext4_fsmap_class
-ffffffff822f68a0 d event_ext4_fsmap_low_key
-ffffffff822f6930 d event_ext4_fsmap_high_key
-ffffffff822f69c0 d event_ext4_fsmap_mapping
-ffffffff822f6a50 d trace_event_fields_ext4_getfsmap_class
-ffffffff822f6b68 d trace_event_type_funcs_ext4_getfsmap_class
-ffffffff822f6b90 d print_fmt_ext4_getfsmap_class
-ffffffff822f6cb8 d event_ext4_getfsmap_low_key
-ffffffff822f6d48 d event_ext4_getfsmap_high_key
-ffffffff822f6dd8 d event_ext4_getfsmap_mapping
-ffffffff822f6e70 d trace_event_fields_ext4_shutdown
-ffffffff822f6ee8 d trace_event_type_funcs_ext4_shutdown
-ffffffff822f6f10 d print_fmt_ext4_shutdown
-ffffffff822f6f88 d event_ext4_shutdown
-ffffffff822f7020 d trace_event_fields_ext4_error
-ffffffff822f70c0 d trace_event_type_funcs_ext4_error
-ffffffff822f70e0 d print_fmt_ext4_error
-ffffffff822f7178 d event_ext4_error
-ffffffff822f7210 d trace_event_fields_ext4_prefetch_bitmaps
-ffffffff822f72d8 d trace_event_type_funcs_ext4_prefetch_bitmaps
-ffffffff822f7300 d print_fmt_ext4_prefetch_bitmaps
-ffffffff822f73a0 d event_ext4_prefetch_bitmaps
-ffffffff822f7430 d trace_event_fields_ext4_lazy_itable_init
-ffffffff822f74a8 d trace_event_type_funcs_ext4_lazy_itable_init
-ffffffff822f74d0 d print_fmt_ext4_lazy_itable_init
-ffffffff822f7548 d event_ext4_lazy_itable_init
-ffffffff822f75e0 d trace_event_fields_ext4_fc_replay_scan
-ffffffff822f7680 d trace_event_type_funcs_ext4_fc_replay_scan
-ffffffff822f76a0 d print_fmt_ext4_fc_replay_scan
-ffffffff822f7730 d event_ext4_fc_replay_scan
-ffffffff822f77c0 d trace_event_fields_ext4_fc_replay
-ffffffff822f78b0 d trace_event_type_funcs_ext4_fc_replay
-ffffffff822f78d0 d print_fmt_ext4_fc_replay
-ffffffff822f7988 d event_ext4_fc_replay
-ffffffff822f7a20 d trace_event_fields_ext4_fc_commit_start
-ffffffff822f7a98 d trace_event_type_funcs_ext4_fc_commit_start
-ffffffff822f7ac0 d print_fmt_ext4_fc_commit_start
-ffffffff822f7b38 d event_ext4_fc_commit_start
-ffffffff822f7bd0 d trace_event_fields_ext4_fc_commit_stop
-ffffffff822f7d10 d trace_event_type_funcs_ext4_fc_commit_stop
-ffffffff822f7d30 d print_fmt_ext4_fc_commit_stop
-ffffffff822f7e30 d event_ext4_fc_commit_stop
-ffffffff822f7ec0 d trace_event_fields_ext4_fc_stats
-ffffffff822f7fb0 d trace_event_type_funcs_ext4_fc_stats
-ffffffff822f7fd0 d print_fmt_ext4_fc_stats
-ffffffff822f9720 d event_ext4_fc_stats
-ffffffff822f97b0 d trace_event_fields_ext4_fc_track_dentry
-ffffffff822f98a0 d trace_event_type_funcs_ext4_fc_track_dentry
-ffffffff822f98c0 d print_fmt_ext4_fc_track_dentry
-ffffffff822f9988 d event_ext4_fc_track_create
-ffffffff822f9a18 d event_ext4_fc_track_link
-ffffffff822f9aa8 d event_ext4_fc_track_unlink
-ffffffff822f9b40 d trace_event_fields_ext4_fc_track_inode
-ffffffff822f9c30 d trace_event_type_funcs_ext4_fc_track_inode
-ffffffff822f9c50 d print_fmt_ext4_fc_track_inode
-ffffffff822f9d18 d event_ext4_fc_track_inode
-ffffffff822f9db0 d trace_event_fields_ext4_fc_track_range
-ffffffff822f9ef0 d trace_event_type_funcs_ext4_fc_track_range
-ffffffff822f9f10 d print_fmt_ext4_fc_track_range
-ffffffff822fa000 d event_ext4_fc_track_range
-ffffffff822fa090 d trace_event_fields_ext4_fc_cleanup
-ffffffff822fa158 d trace_event_type_funcs_ext4_fc_cleanup
-ffffffff822fa180 d print_fmt_ext4_fc_cleanup
-ffffffff822fa228 d event_ext4_fc_cleanup
-ffffffff822fa2c0 d trace_event_fields_ext4_update_sb
-ffffffff822fa360 d trace_event_type_funcs_ext4_update_sb
-ffffffff822fa380 d print_fmt_ext4_update_sb
-ffffffff822fa410 d event_ext4_update_sb
-ffffffff822fa4a0 d ext4_li_mtx
-ffffffff822fa4c0 d ext4_fs_type
-ffffffff822fa508 d ext3_fs_type
-ffffffff822fa550 d __SCK__tp_func_ext4_ext_load_extent
-ffffffff822fa560 d __SCK__tp_func_ext4_ext_remove_space
-ffffffff822fa570 d __SCK__tp_func_ext4_ext_rm_leaf
-ffffffff822fa580 d __SCK__tp_func_ext4_remove_blocks
-ffffffff822fa590 d __SCK__tp_func_ext4_ext_rm_idx
-ffffffff822fa5a0 d __SCK__tp_func_ext4_ext_remove_space_done
-ffffffff822fa5b0 d __SCK__tp_func_ext4_ext_map_blocks_enter
-ffffffff822fa5c0 d __SCK__tp_func_ext4_ext_show_extent
-ffffffff822fa5d0 d __SCK__tp_func_ext4_ext_handle_unwritten_extents
-ffffffff822fa5e0 d __SCK__tp_func_ext4_ext_convert_to_initialized_enter
-ffffffff822fa5f0 d __SCK__tp_func_ext4_ext_convert_to_initialized_fastpath
-ffffffff822fa600 d __SCK__tp_func_ext4_get_implied_cluster_alloc_exit
-ffffffff822fa610 d __SCK__tp_func_ext4_ext_map_blocks_exit
-ffffffff822fa620 d __SCK__tp_func_ext4_zero_range
-ffffffff822fa630 d __SCK__tp_func_ext4_fallocate_enter
-ffffffff822fa640 d __SCK__tp_func_ext4_fallocate_exit
-ffffffff822fa650 d __SCK__tp_func_ext4_collapse_range
-ffffffff822fa660 d __SCK__tp_func_ext4_insert_range
-ffffffff822fa670 d __SCK__tp_func_ext4_es_find_extent_range_enter
-ffffffff822fa680 d __SCK__tp_func_ext4_es_find_extent_range_exit
-ffffffff822fa690 d __SCK__tp_func_ext4_es_insert_extent
-ffffffff822fa6a0 d __SCK__tp_func_ext4_es_cache_extent
-ffffffff822fa6b0 d __SCK__tp_func_ext4_es_lookup_extent_enter
-ffffffff822fa6c0 d __SCK__tp_func_ext4_es_lookup_extent_exit
-ffffffff822fa6d0 d __SCK__tp_func_ext4_es_remove_extent
-ffffffff822fa6e0 d __SCK__tp_func_ext4_es_shrink
-ffffffff822fa6f0 d __SCK__tp_func_ext4_es_shrink_scan_enter
-ffffffff822fa700 d __SCK__tp_func_ext4_es_shrink_scan_exit
-ffffffff822fa710 d __SCK__tp_func_ext4_es_shrink_count
-ffffffff822fa720 d __SCK__tp_func_ext4_es_insert_delayed_block
-ffffffff822fa730 d __SCK__tp_func_ext4_fc_track_unlink
-ffffffff822fa740 d __SCK__tp_func_ext4_fc_track_link
-ffffffff822fa750 d __SCK__tp_func_ext4_fc_track_create
-ffffffff822fa760 d __SCK__tp_func_ext4_fc_track_inode
-ffffffff822fa770 d __SCK__tp_func_ext4_fc_track_range
-ffffffff822fa780 d __SCK__tp_func_ext4_fc_commit_start
-ffffffff822fa790 d __SCK__tp_func_ext4_fc_commit_stop
-ffffffff822fa7a0 d __SCK__tp_func_ext4_fc_replay_scan
-ffffffff822fa7b0 d __SCK__tp_func_ext4_fc_replay
-ffffffff822fa7c0 d __SCK__tp_func_ext4_fc_cleanup
-ffffffff822fa7d0 d __SCK__tp_func_ext4_fc_stats
-ffffffff822fa7e0 d ext4_sb_ktype
-ffffffff822fa810 d ext4_feat_ktype
-ffffffff822fa840 d ext4_groups
-ffffffff822fa850 d ext4_attrs
-ffffffff822fa9b0 d ext4_attr_delayed_allocation_blocks
-ffffffff822fa9d0 d ext4_attr_session_write_kbytes
-ffffffff822fa9f0 d ext4_attr_lifetime_write_kbytes
-ffffffff822faa10 d ext4_attr_reserved_clusters
-ffffffff822faa30 d ext4_attr_sra_exceeded_retry_limit
-ffffffff822faa50 d ext4_attr_max_writeback_mb_bump
-ffffffff822faa70 d ext4_attr_trigger_fs_error
-ffffffff822faa90 d ext4_attr_first_error_time
-ffffffff822faab0 d ext4_attr_last_error_time
-ffffffff822faad0 d ext4_attr_journal_task
-ffffffff822faaf0 d ext4_attr_inode_readahead_blks
-ffffffff822fab10 d ext4_attr_inode_goal
-ffffffff822fab30 d ext4_attr_mb_stats
-ffffffff822fab50 d ext4_attr_mb_max_to_scan
-ffffffff822fab70 d ext4_attr_mb_min_to_scan
-ffffffff822fab90 d ext4_attr_mb_order2_req
-ffffffff822fabb0 d ext4_attr_mb_stream_req
-ffffffff822fabd0 d ext4_attr_mb_group_prealloc
-ffffffff822fabf0 d ext4_attr_mb_max_inode_prealloc
-ffffffff822fac10 d ext4_attr_mb_max_linear_groups
-ffffffff822fac30 d old_bump_val
-ffffffff822fac38 d ext4_attr_extent_max_zeroout_kb
-ffffffff822fac58 d ext4_attr_err_ratelimit_interval_ms
-ffffffff822fac78 d ext4_attr_err_ratelimit_burst
-ffffffff822fac98 d ext4_attr_warning_ratelimit_interval_ms
-ffffffff822facb8 d ext4_attr_warning_ratelimit_burst
-ffffffff822facd8 d ext4_attr_msg_ratelimit_interval_ms
-ffffffff822facf8 d ext4_attr_msg_ratelimit_burst
-ffffffff822fad18 d ext4_attr_errors_count
-ffffffff822fad38 d ext4_attr_warning_count
-ffffffff822fad58 d ext4_attr_msg_count
-ffffffff822fad78 d ext4_attr_first_error_ino
-ffffffff822fad98 d ext4_attr_last_error_ino
-ffffffff822fadb8 d ext4_attr_first_error_block
-ffffffff822fadd8 d ext4_attr_last_error_block
-ffffffff822fadf8 d ext4_attr_first_error_line
-ffffffff822fae18 d ext4_attr_last_error_line
-ffffffff822fae38 d ext4_attr_first_error_func
-ffffffff822fae58 d ext4_attr_last_error_func
-ffffffff822fae78 d ext4_attr_first_error_errcode
-ffffffff822fae98 d ext4_attr_last_error_errcode
-ffffffff822faeb8 d ext4_attr_mb_prefetch
-ffffffff822faed8 d ext4_attr_mb_prefetch_limit
-ffffffff822faef8 d ext4_attr_last_trim_minblks
-ffffffff822faf20 d ext4_feat_groups
-ffffffff822faf30 d ext4_feat_attrs
-ffffffff822faf68 d ext4_attr_lazy_itable_init
-ffffffff822faf88 d ext4_attr_batched_discard
-ffffffff822fafa8 d ext4_attr_meta_bg_resize
-ffffffff822fafc8 d ext4_attr_casefold
-ffffffff822fafe8 d ext4_attr_metadata_csum_seed
-ffffffff822fb008 d ext4_attr_fast_commit
-ffffffff822fb030 d ext4_xattr_handlers
-ffffffff822fb068 d __SCK__tp_func_jbd2_checkpoint
-ffffffff822fb078 d __SCK__tp_func_jbd2_start_commit
-ffffffff822fb088 d __SCK__tp_func_jbd2_commit_locking
-ffffffff822fb098 d __SCK__tp_func_jbd2_commit_flushing
-ffffffff822fb0a8 d __SCK__tp_func_jbd2_commit_logging
-ffffffff822fb0b8 d __SCK__tp_func_jbd2_drop_transaction
-ffffffff822fb0c8 d __SCK__tp_func_jbd2_end_commit
-ffffffff822fb0d8 d __SCK__tp_func_jbd2_submit_inode_data
-ffffffff822fb0e8 d __SCK__tp_func_jbd2_run_stats
-ffffffff822fb0f8 d __SCK__tp_func_jbd2_checkpoint_stats
-ffffffff822fb108 d __SCK__tp_func_jbd2_update_log_tail
-ffffffff822fb118 d __SCK__tp_func_jbd2_write_superblock
-ffffffff822fb128 d __SCK__tp_func_jbd2_shrink_count
-ffffffff822fb138 d __SCK__tp_func_jbd2_shrink_scan_enter
-ffffffff822fb148 d __SCK__tp_func_jbd2_shrink_scan_exit
-ffffffff822fb158 d __SCK__tp_func_jbd2_shrink_checkpoint_list
-ffffffff822fb170 d trace_event_fields_jbd2_checkpoint
-ffffffff822fb1e8 d trace_event_type_funcs_jbd2_checkpoint
-ffffffff822fb210 d print_fmt_jbd2_checkpoint
-ffffffff822fb290 d event_jbd2_checkpoint
-ffffffff822fb320 d trace_event_fields_jbd2_commit
-ffffffff822fb3c0 d trace_event_type_funcs_jbd2_commit
-ffffffff822fb3e0 d print_fmt_jbd2_commit
-ffffffff822fb480 d event_jbd2_start_commit
-ffffffff822fb510 d event_jbd2_commit_locking
-ffffffff822fb5a0 d event_jbd2_commit_flushing
-ffffffff822fb630 d event_jbd2_commit_logging
-ffffffff822fb6c0 d event_jbd2_drop_transaction
-ffffffff822fb750 d trace_event_fields_jbd2_end_commit
-ffffffff822fb818 d trace_event_type_funcs_jbd2_end_commit
-ffffffff822fb840 d print_fmt_jbd2_end_commit
-ffffffff822fb8f8 d event_jbd2_end_commit
-ffffffff822fb990 d trace_event_fields_jbd2_submit_inode_data
-ffffffff822fba08 d trace_event_type_funcs_jbd2_submit_inode_data
-ffffffff822fba30 d print_fmt_jbd2_submit_inode_data
-ffffffff822fbab8 d event_jbd2_submit_inode_data
-ffffffff822fbb50 d trace_event_fields_jbd2_handle_start_class
-ffffffff822fbc40 d trace_event_type_funcs_jbd2_handle_start_class
-ffffffff822fbc60 d print_fmt_jbd2_handle_start_class
-ffffffff822fbd30 d event_jbd2_handle_start
-ffffffff822fbdc0 d event_jbd2_handle_restart
-ffffffff822fbe50 d trace_event_fields_jbd2_handle_extend
-ffffffff822fbf68 d trace_event_type_funcs_jbd2_handle_extend
-ffffffff822fbf90 d print_fmt_jbd2_handle_extend
-ffffffff822fc088 d event_jbd2_handle_extend
-ffffffff822fc120 d trace_event_fields_jbd2_handle_stats
-ffffffff822fc288 d trace_event_type_funcs_jbd2_handle_stats
-ffffffff822fc2b0 d print_fmt_jbd2_handle_stats
-ffffffff822fc3d0 d event_jbd2_handle_stats
-ffffffff822fc460 d trace_event_fields_jbd2_run_stats
-ffffffff822fc640 d trace_event_type_funcs_jbd2_run_stats
-ffffffff822fc660 d print_fmt_jbd2_run_stats
-ffffffff822fc840 d event_jbd2_run_stats
-ffffffff822fc8d0 d trace_event_fields_jbd2_checkpoint_stats
-ffffffff822fc9e8 d trace_event_type_funcs_jbd2_checkpoint_stats
-ffffffff822fca10 d print_fmt_jbd2_checkpoint_stats
-ffffffff822fcb10 d event_jbd2_checkpoint_stats
-ffffffff822fcba0 d trace_event_fields_jbd2_update_log_tail
-ffffffff822fcc90 d trace_event_type_funcs_jbd2_update_log_tail
-ffffffff822fccb0 d print_fmt_jbd2_update_log_tail
-ffffffff822fcd78 d event_jbd2_update_log_tail
-ffffffff822fce10 d trace_event_fields_jbd2_write_superblock
-ffffffff822fce88 d trace_event_type_funcs_jbd2_write_superblock
-ffffffff822fceb0 d print_fmt_jbd2_write_superblock
-ffffffff822fcf40 d event_jbd2_write_superblock
-ffffffff822fcfd0 d trace_event_fields_jbd2_lock_buffer_stall
-ffffffff822fd048 d trace_event_type_funcs_jbd2_lock_buffer_stall
-ffffffff822fd070 d print_fmt_jbd2_lock_buffer_stall
-ffffffff822fd0f0 d event_jbd2_lock_buffer_stall
-ffffffff822fd180 d trace_event_fields_jbd2_journal_shrink
-ffffffff822fd220 d trace_event_type_funcs_jbd2_journal_shrink
-ffffffff822fd240 d print_fmt_jbd2_journal_shrink
-ffffffff822fd2e0 d event_jbd2_shrink_count
-ffffffff822fd370 d event_jbd2_shrink_scan_enter
-ffffffff822fd400 d trace_event_fields_jbd2_shrink_scan_exit
-ffffffff822fd4c8 d trace_event_type_funcs_jbd2_shrink_scan_exit
-ffffffff822fd4f0 d print_fmt_jbd2_shrink_scan_exit
-ffffffff822fd5a8 d event_jbd2_shrink_scan_exit
-ffffffff822fd640 d trace_event_fields_jbd2_shrink_checkpoint_list
-ffffffff822fd780 d trace_event_type_funcs_jbd2_shrink_checkpoint_list
-ffffffff822fd7a0 d print_fmt_jbd2_shrink_checkpoint_list
-ffffffff822fd8a8 d event_jbd2_shrink_checkpoint_list
-ffffffff822fd938 d jbd2_journal_create_slab.jbd2_slab_create_mutex
-ffffffff822fd958 d journal_alloc_journal_head._rs
-ffffffff822fd980 d __SCK__tp_func_jbd2_handle_start
-ffffffff822fd990 d __SCK__tp_func_jbd2_handle_extend
-ffffffff822fd9a0 d __SCK__tp_func_jbd2_handle_restart
-ffffffff822fd9b0 d __SCK__tp_func_jbd2_lock_buffer_stall
-ffffffff822fd9c0 d __SCK__tp_func_jbd2_handle_stats
-ffffffff822fd9d0 d ramfs_fs_type
-ffffffff822fda18 d tables
-ffffffff822fda20 d default_table
-ffffffff822fda60 d table
-ffffffff822fdaa0 d table
-ffffffff822fdae0 d table
-ffffffff822fdb20 d table
-ffffffff822fdb60 d table
-ffffffff822fdba0 d table
-ffffffff822fdbe0 d table
-ffffffff822fdc20 d table
-ffffffff822fdc60 d table
-ffffffff822fdca0 d table
-ffffffff822fdce0 d table
-ffffffff822fdd20 d table
-ffffffff822fdd60 d table
-ffffffff822fdda0 d table
-ffffffff822fdde0 d table
-ffffffff822fde20 d table
-ffffffff822fde60 d table
-ffffffff822fdea0 d table
-ffffffff822fdee0 d table
-ffffffff822fdf20 d table
-ffffffff822fdf60 d table
-ffffffff822fdfa0 d table
-ffffffff822fdfe0 d table
-ffffffff822fe020 d table
-ffffffff822fe060 d table
-ffffffff822fe0a0 d table
-ffffffff822fe0e0 d table
-ffffffff822fe120 d table
-ffffffff822fe160 d table
-ffffffff822fe1a0 d table
-ffffffff822fe1e0 d table
-ffffffff822fe220 d table
-ffffffff822fe260 d table
-ffffffff822fe2a0 d table
-ffffffff822fe2e0 d table
-ffffffff822fe320 d table
-ffffffff822fe360 d table
-ffffffff822fe3a0 d table
-ffffffff822fe3e0 d table
-ffffffff822fe420 d table
-ffffffff822fe460 d table
-ffffffff822fe4a0 d table
-ffffffff822fe4e0 d table
-ffffffff822fe520 d table
-ffffffff822fe560 d table
-ffffffff822fe5a0 d table
-ffffffff822fe5e0 d table
-ffffffff822fe620 d table
-ffffffff822fe660 d table
-ffffffff822fe6a0 d table
-ffffffff822fe6e0 d table
-ffffffff822fe720 d utf8_data_table
-ffffffff822fe758 d fuse_miscdevice.llvm.16961288504765282032
-ffffffff822fe7b0 d attribute_groups
-ffffffff822fe7d0 d bpf_features
-ffffffff822fe7e0 d fuse_bpf_attr
-ffffffff822fe800 d bpf_attributes
-ffffffff822fe810 d bpf_prog_type_fuse_attr
-ffffffff822fe830 d fuse_fs_type
-ffffffff822fe878 d fuseblk_fs_type
-ffffffff822fe8c0 d fuse_mutex
-ffffffff822fe8e0 d fuse_ctl_fs_type.llvm.4196942623390422111
-ffffffff822fe930 d fuse_xattr_handlers
-ffffffff822fe940 d fuse_acl_xattr_handlers
-ffffffff822fe960 d fuse_no_acl_xattr_handlers
-ffffffff822fe980 d debug_fs_type
-ffffffff822fe9c8 d trace_fs_type
-ffffffff822fea10 d __SCK__tp_func_erofs_lookup
-ffffffff822fea20 d __SCK__tp_func_erofs_readpage
-ffffffff822fea30 d __SCK__tp_func_erofs_readpages
-ffffffff822fea40 d __SCK__tp_func_erofs_map_blocks_enter
-ffffffff822fea50 d __SCK__tp_func_z_erofs_map_blocks_iter_enter
-ffffffff822fea60 d __SCK__tp_func_erofs_map_blocks_exit
-ffffffff822fea70 d __SCK__tp_func_z_erofs_map_blocks_iter_exit
-ffffffff822fea80 d __SCK__tp_func_erofs_destroy_inode
-ffffffff822fea90 d trace_event_fields_erofs_lookup
-ffffffff822feb58 d trace_event_type_funcs_erofs_lookup
-ffffffff822feb80 d print_fmt_erofs_lookup
-ffffffff822fec30 d event_erofs_lookup
-ffffffff822fecc0 d trace_event_fields_erofs_fill_inode
-ffffffff822fed88 d trace_event_type_funcs_erofs_fill_inode
-ffffffff822fedb0 d print_fmt_erofs_fill_inode
-ffffffff822fee58 d event_erofs_fill_inode
-ffffffff822feef0 d trace_event_fields_erofs_readpage
-ffffffff822ff008 d trace_event_type_funcs_erofs_readpage
-ffffffff822ff030 d print_fmt_erofs_readpage
-ffffffff822ff148 d event_erofs_readpage
-ffffffff822ff1e0 d trace_event_fields_erofs_readpages
-ffffffff822ff2d0 d trace_event_type_funcs_erofs_readpages
-ffffffff822ff2f0 d print_fmt_erofs_readpages
-ffffffff822ff3c8 d event_erofs_readpages
-ffffffff822ff460 d trace_event_fields_erofs__map_blocks_enter
-ffffffff822ff550 d trace_event_type_funcs_erofs__map_blocks_enter
-ffffffff822ff570 d print_fmt_erofs__map_blocks_enter
-ffffffff822ff668 d event_erofs_map_blocks_enter
-ffffffff822ff6f8 d event_z_erofs_map_blocks_iter_enter
-ffffffff822ff790 d trace_event_fields_erofs__map_blocks_exit
-ffffffff822ff920 d trace_event_type_funcs_erofs__map_blocks_exit
-ffffffff822ff940 d print_fmt_erofs__map_blocks_exit
-ffffffff822ffae8 d event_erofs_map_blocks_exit
-ffffffff822ffb78 d event_z_erofs_map_blocks_iter_exit
-ffffffff822ffc10 d trace_event_fields_erofs_destroy_inode
-ffffffff822ffc88 d trace_event_type_funcs_erofs_destroy_inode
-ffffffff822ffcb0 d print_fmt_erofs_destroy_inode
-ffffffff822ffd30 d event_erofs_destroy_inode
-ffffffff822ffdc0 d erofs_fs_type
-ffffffff822ffe08 d __SCK__tp_func_erofs_fill_inode
-ffffffff822ffe18 d erofs_sb_list
-ffffffff822ffe28 d erofs_shrinker_info.llvm.642446843317415093
-ffffffff822ffe68 d erofs_pcpubuf_growsize.pcb_resize_mutex
-ffffffff822ffe88 d erofs_root.llvm.2834547047154371089
-ffffffff822ffee8 d erofs_sb_ktype
-ffffffff822fff18 d erofs_feat.llvm.2834547047154371089
-ffffffff822fff58 d erofs_feat_ktype
-ffffffff822fff88 d erofs_ktype
-ffffffff822fffc0 d erofs_groups
-ffffffff822fffd0 d erofs_attrs
-ffffffff822fffe0 d erofs_attr_sync_decompress
-ffffffff82300000 d erofs_feat_groups
-ffffffff82300010 d erofs_feat_attrs
-ffffffff82300068 d erofs_attr_zero_padding
-ffffffff82300088 d erofs_attr_compr_cfgs
-ffffffff823000a8 d erofs_attr_big_pcluster
-ffffffff823000c8 d erofs_attr_chunked_file
-ffffffff823000e8 d erofs_attr_device_table
-ffffffff82300108 d erofs_attr_compr_head2
-ffffffff82300128 d erofs_attr_sb_chksum
-ffffffff82300148 d erofs_attr_ztailpacking
-ffffffff82300168 d erofs_attr_fragments
-ffffffff82300188 d erofs_attr_dedupe
-ffffffff823001b0 d erofs_xattr_handlers
-ffffffff823001e0 d dac_mmap_min_addr
-ffffffff823001e8 d blocking_lsm_notifier_chain.llvm.5965983425263956140
-ffffffff82300220 d fs_type
-ffffffff82300268 d __SCK__tp_func_selinux_audited
-ffffffff82300280 d trace_event_fields_selinux_audited
-ffffffff823003c0 d trace_event_type_funcs_selinux_audited
-ffffffff823003e0 d print_fmt_selinux_audited
-ffffffff823004b0 d event_selinux_audited
-ffffffff82300540 d inode_doinit_use_xattr._rs
-ffffffff82300568 d selinux_netlink_send._rs
-ffffffff82300590 d sel_fs_type
-ffffffff823005d8 d sel_write_load._rs
-ffffffff82300600 d sel_write_load._rs.33
-ffffffff82300628 d sel_make_bools._rs
-ffffffff82300650 d nlmsg_route_perms
-ffffffff82300870 d sel_netif_netdev_notifier
-ffffffff82300888 d security_compute_xperms_decision._rs
-ffffffff823008b0 d crypto_alg_list
-ffffffff823008c0 d crypto_alg_sem
-ffffffff823008f0 d crypto_chain
-ffffffff82300928 d crypto_template_list
-ffffffff82300938 d seqiv_tmpl
-ffffffff823009e0 d echainiv_tmpl
-ffffffff82300a88 d scomp_lock
-ffffffff82300aa8 d cryptomgr_notifier
-ffffffff82300ac0 d hmac_tmpl
-ffffffff82300b68 d crypto_xcbc_tmpl
-ffffffff82300c10 d ks
-ffffffff82300c40 d crypto_default_null_skcipher_lock
-ffffffff82300c60 d digest_null
-ffffffff82300e40 d skcipher_null
-ffffffff82301000 d null_algs
-ffffffff82301300 d alg
-ffffffff823014e0 d alg
-ffffffff823016c0 d alg
-ffffffff82301840 d alg
-ffffffff82301a20 d alg
-ffffffff82301ba0 d alg
-ffffffff82301d20 d alg
-ffffffff82301ea0 d sha256_algs
-ffffffff82302260 d sha512_algs
-ffffffff82302620 d blake2b_algs
-ffffffff82302da0 d crypto_cbc_tmpl
-ffffffff82302e50 d crypto_ctr_tmpls
-ffffffff82302fa0 d crypto_xctr_tmpl
-ffffffff82303050 d hctr2_tmpls
-ffffffff823031a0 d adiantum_tmpl
-ffffffff82303248 d nhpoly1305_alg
-ffffffff82303430 d crypto_gcm_tmpls
-ffffffff823036d0 d rfc7539_tmpls
-ffffffff82303820 d cryptd_max_cpu_qlen
-ffffffff82303828 d cryptd_tmpl
-ffffffff823038d0 d des_algs
-ffffffff82303bd0 d aes_alg
-ffffffff82303d50 d algs
-ffffffff82304290 d poly1305_alg
-ffffffff82304470 d scomp
-ffffffff823047b0 d scomp
-ffffffff82304950 d scomp
-ffffffff82304af0 d scomp
-ffffffff82304c90 d scomp
-ffffffff82304e30 d crypto_authenc_tmpl
-ffffffff82304ed8 d crypto_authenc_esn_tmpl
-ffffffff82304f80 d alg_lz4
-ffffffff82305100 d crypto_default_rng_lock
-ffffffff82305120 d rng_algs
-ffffffff823052c0 d drbg_fill_array.priority
-ffffffff823052c8 d jent_alg
-ffffffff82305468 d jent_kcapi_random._rs
-ffffffff82305490 d ghash_alg
-ffffffff82305670 d essiv_tmpl
-ffffffff82305718 d bd_type
-ffffffff82305760 d blkdev_get_no_open._rs
-ffffffff82305788 d bdev_write_inode._rs
-ffffffff823057b0 d bio_dirty_work
-ffffffff823057d0 d bio_slab_lock
-ffffffff823057f0 d elv_ktype
-ffffffff82305820 d elv_list
-ffffffff82305830 d __SCK__tp_func_block_touch_buffer
-ffffffff82305840 d __SCK__tp_func_block_dirty_buffer
-ffffffff82305850 d __SCK__tp_func_block_rq_requeue
-ffffffff82305860 d __SCK__tp_func_block_rq_complete
-ffffffff82305870 d __SCK__tp_func_block_rq_error
-ffffffff82305880 d __SCK__tp_func_block_rq_insert
-ffffffff82305890 d __SCK__tp_func_block_rq_issue
-ffffffff823058a0 d __SCK__tp_func_block_rq_merge
-ffffffff823058b0 d __SCK__tp_func_block_bio_complete
-ffffffff823058c0 d __SCK__tp_func_block_bio_bounce
-ffffffff823058d0 d __SCK__tp_func_block_bio_backmerge
-ffffffff823058e0 d __SCK__tp_func_block_bio_frontmerge
-ffffffff823058f0 d __SCK__tp_func_block_bio_queue
-ffffffff82305900 d __SCK__tp_func_block_getrq
-ffffffff82305910 d __SCK__tp_func_block_plug
-ffffffff82305920 d __SCK__tp_func_block_unplug
-ffffffff82305930 d __SCK__tp_func_block_split
-ffffffff82305940 d __SCK__tp_func_block_bio_remap
-ffffffff82305950 d __SCK__tp_func_block_rq_remap
-ffffffff82305960 d trace_event_fields_block_buffer
-ffffffff82305a00 d trace_event_type_funcs_block_buffer
-ffffffff82305a20 d print_fmt_block_buffer
-ffffffff82305ac0 d event_block_touch_buffer
-ffffffff82305b50 d event_block_dirty_buffer
-ffffffff82305be0 d trace_event_fields_block_rq_requeue
-ffffffff82305cd0 d trace_event_type_funcs_block_rq_requeue
-ffffffff82305cf0 d print_fmt_block_rq_requeue
-ffffffff82305db8 d event_block_rq_requeue
-ffffffff82305e50 d trace_event_fields_block_rq_completion
-ffffffff82305f68 d trace_event_type_funcs_block_rq_completion
-ffffffff82305f90 d print_fmt_block_rq_completion
-ffffffff82306060 d event_block_rq_complete
-ffffffff823060f0 d event_block_rq_error
-ffffffff82306180 d trace_event_fields_block_rq
-ffffffff823062c0 d trace_event_type_funcs_block_rq
-ffffffff823062e0 d print_fmt_block_rq
-ffffffff823063c0 d event_block_rq_insert
-ffffffff82306450 d event_block_rq_issue
-ffffffff823064e0 d event_block_rq_merge
-ffffffff82306570 d trace_event_fields_block_bio_complete
-ffffffff82306660 d trace_event_type_funcs_block_bio_complete
-ffffffff82306680 d print_fmt_block_bio_complete
-ffffffff82306740 d event_block_bio_complete
-ffffffff823067d0 d trace_event_fields_block_bio
-ffffffff823068c0 d trace_event_type_funcs_block_bio
-ffffffff823068e0 d print_fmt_block_bio
-ffffffff82306998 d event_block_bio_bounce
-ffffffff82306a28 d event_block_bio_backmerge
-ffffffff82306ab8 d event_block_bio_frontmerge
-ffffffff82306b48 d event_block_bio_queue
-ffffffff82306bd8 d event_block_getrq
-ffffffff82306c70 d trace_event_fields_block_plug
-ffffffff82306cc0 d trace_event_type_funcs_block_plug
-ffffffff82306ce0 d print_fmt_block_plug
-ffffffff82306cf8 d event_block_plug
-ffffffff82306d90 d trace_event_fields_block_unplug
-ffffffff82306e08 d trace_event_type_funcs_block_unplug
-ffffffff82306e30 d print_fmt_block_unplug
-ffffffff82306e58 d event_block_unplug
-ffffffff82306ef0 d trace_event_fields_block_split
-ffffffff82306fe0 d trace_event_type_funcs_block_split
-ffffffff82307000 d print_fmt_block_split
-ffffffff823070d0 d event_block_split
-ffffffff82307160 d trace_event_fields_block_bio_remap
-ffffffff82307278 d trace_event_type_funcs_block_bio_remap
-ffffffff823072a0 d print_fmt_block_bio_remap
-ffffffff823073e0 d event_block_bio_remap
-ffffffff82307470 d trace_event_fields_block_rq_remap
-ffffffff823075b0 d trace_event_type_funcs_block_rq_remap
-ffffffff823075d0 d print_fmt_block_rq_remap
-ffffffff82307720 d event_block_rq_remap
-ffffffff823077b0 d blk_queue_ida
-ffffffff823077c0 d bio_check_eod._rs
-ffffffff823077f0 d blk_queue_attr_groups
-ffffffff82307800 d queue_attr_group
-ffffffff82307830 d queue_attrs
-ffffffff82307988 d queue_io_timeout_entry
-ffffffff823079a8 d queue_max_open_zones_entry
-ffffffff823079c8 d queue_max_active_zones_entry
-ffffffff823079e8 d queue_requests_entry
-ffffffff82307a08 d queue_ra_entry
-ffffffff82307a28 d queue_max_hw_sectors_entry
-ffffffff82307a48 d queue_max_sectors_entry
-ffffffff82307a68 d queue_max_segments_entry
-ffffffff82307a88 d queue_max_discard_segments_entry
-ffffffff82307aa8 d queue_max_integrity_segments_entry
-ffffffff82307ac8 d queue_max_segment_size_entry
-ffffffff82307ae8 d elv_iosched_entry
-ffffffff82307b08 d queue_hw_sector_size_entry
-ffffffff82307b28 d queue_logical_block_size_entry
-ffffffff82307b48 d queue_physical_block_size_entry
-ffffffff82307b68 d queue_chunk_sectors_entry
-ffffffff82307b88 d queue_io_min_entry
-ffffffff82307ba8 d queue_io_opt_entry
-ffffffff82307bc8 d queue_discard_granularity_entry
-ffffffff82307be8 d queue_discard_max_entry
-ffffffff82307c08 d queue_discard_max_hw_entry
-ffffffff82307c28 d queue_discard_zeroes_data_entry
-ffffffff82307c48 d queue_write_same_max_entry
-ffffffff82307c68 d queue_write_zeroes_max_entry
-ffffffff82307c88 d queue_zone_append_max_entry
-ffffffff82307ca8 d queue_zone_write_granularity_entry
-ffffffff82307cc8 d queue_nonrot_entry
-ffffffff82307ce8 d queue_zoned_entry
-ffffffff82307d08 d queue_nr_zones_entry
-ffffffff82307d28 d queue_nomerges_entry
-ffffffff82307d48 d queue_rq_affinity_entry
-ffffffff82307d68 d queue_iostats_entry
-ffffffff82307d88 d queue_stable_writes_entry
-ffffffff82307da8 d queue_random_entry
-ffffffff82307dc8 d queue_poll_entry
-ffffffff82307de8 d queue_wc_entry
-ffffffff82307e08 d queue_fua_entry
-ffffffff82307e28 d queue_dax_entry
-ffffffff82307e48 d queue_wb_lat_entry
-ffffffff82307e68 d queue_poll_delay_entry
-ffffffff82307e88 d queue_virt_boundary_mask_entry
-ffffffff82307ea8 d queue_dma_alignment_entry
-ffffffff82307ec8 d queue_poll_store._rs
-ffffffff82307ef0 d queue_poll_store._rs.44
-ffffffff82307f18 d blk_queue_ktype
-ffffffff82307f48 d __blkdev_issue_discard._rs
-ffffffff82307f70 d blk_print_req_error._rs
-ffffffff82307f98 d blk_mq_hw_ktype.llvm.8742767838790148976
-ffffffff82307fc8 d blk_mq_ktype
-ffffffff82307ff8 d blk_mq_ctx_ktype
-ffffffff82308030 d default_hw_ctx_groups
-ffffffff82308040 d default_hw_ctx_attrs
-ffffffff82308060 d blk_mq_hw_sysfs_nr_tags
-ffffffff82308080 d blk_mq_hw_sysfs_nr_reserved_tags
-ffffffff823080a0 d blk_mq_hw_sysfs_cpus
-ffffffff823080c0 d major_names_lock
-ffffffff823080e0 d ext_devt_ida.llvm.4630098836650264748
-ffffffff823080f0 d block_class
-ffffffff82308170 d disk_attr_groups.llvm.4630098836650264748
-ffffffff82308180 d disk_attr_group
-ffffffff823081b0 d disk_attrs
-ffffffff82308238 d dev_attr_badblocks
-ffffffff82308258 d dev_attr_badblocks
-ffffffff82308278 d dev_attr_range
-ffffffff82308298 d dev_attr_range
-ffffffff823082b8 d dev_attr_ext_range
-ffffffff823082d8 d dev_attr_removable
-ffffffff823082f8 d dev_attr_removable
-ffffffff82308318 d dev_attr_removable
-ffffffff82308338 d dev_attr_hidden
-ffffffff82308358 d dev_attr_ro
-ffffffff82308378 d dev_attr_ro
-ffffffff82308398 d dev_attr_size
-ffffffff823083b8 d dev_attr_size
-ffffffff823083d8 d dev_attr_size
-ffffffff823083f8 d dev_attr_size
-ffffffff82308418 d dev_attr_size
-ffffffff82308438 d dev_attr_size
-ffffffff82308458 d dev_attr_size
-ffffffff82308478 d dev_attr_size
-ffffffff82308498 d dev_attr_alignment_offset
-ffffffff823084b8 d dev_attr_alignment_offset
-ffffffff823084d8 d dev_attr_discard_alignment
-ffffffff823084f8 d dev_attr_discard_alignment
-ffffffff82308518 d dev_attr_capability
-ffffffff82308538 d dev_attr_capability
-ffffffff82308558 d dev_attr_stat
-ffffffff82308578 d dev_attr_stat
-ffffffff82308598 d dev_attr_inflight
-ffffffff823085b8 d dev_attr_inflight
-ffffffff823085d8 d dev_attr_diskseq
-ffffffff82308600 d part_attr_groups
-ffffffff82308610 d part_attr_group
-ffffffff82308640 d part_attrs
-ffffffff82308688 d dev_attr_partition
-ffffffff823086a8 d dev_attr_start
-ffffffff823086c8 d dev_attr_start
-ffffffff823086e8 d dev_attr_whole_disk
-ffffffff82308708 d part_type
-ffffffff82308738 d dev_attr_events
-ffffffff82308758 d dev_attr_events_async
-ffffffff82308778 d dev_attr_events_poll_msecs
-ffffffff82308798 d disk_events_mutex
-ffffffff823087b8 d disk_events
-ffffffff823087c8 d blk_ia_ranges_ktype
-ffffffff823087f8 d blk_ia_range_ktype
-ffffffff82308830 d blk_ia_range_groups
-ffffffff82308840 d blk_ia_range_attrs
-ffffffff82308858 d blk_ia_range_sector_entry
-ffffffff82308870 d blk_ia_range_nr_sectors_entry
-ffffffff82308890 d blkcg_files
-ffffffff82308a40 d blkcg_legacy_files
-ffffffff82308bf0 d blkcg_pol_register_mutex
-ffffffff82308c10 d blkcg_pol_mutex
-ffffffff82308c30 d all_blkcgs
-ffffffff82308c40 d io_cgrp_subsys
-ffffffff82308d30 d __SCK__tp_func_iocost_iocg_activate
-ffffffff82308d40 d __SCK__tp_func_iocost_iocg_idle
-ffffffff82308d50 d __SCK__tp_func_iocost_inuse_shortage
-ffffffff82308d60 d __SCK__tp_func_iocost_inuse_transfer
-ffffffff82308d70 d __SCK__tp_func_iocost_inuse_adjust
-ffffffff82308d80 d __SCK__tp_func_iocost_ioc_vrate_adj
-ffffffff82308d90 d __SCK__tp_func_iocost_iocg_forgive_debt
-ffffffff82308da0 d trace_event_fields_iocost_iocg_state
-ffffffff82308fa8 d trace_event_type_funcs_iocost_iocg_state
-ffffffff82308fd0 d print_fmt_iocost_iocg_state
-ffffffff823090e8 d event_iocost_iocg_activate
-ffffffff82309178 d event_iocost_iocg_idle
-ffffffff82309210 d trace_event_fields_iocg_inuse_update
-ffffffff82309350 d trace_event_type_funcs_iocg_inuse_update
-ffffffff82309370 d print_fmt_iocg_inuse_update
-ffffffff82309428 d event_iocost_inuse_shortage
-ffffffff823094b8 d event_iocost_inuse_transfer
-ffffffff82309548 d event_iocost_inuse_adjust
-ffffffff823095e0 d trace_event_fields_iocost_ioc_vrate_adj
-ffffffff82309770 d trace_event_type_funcs_iocost_ioc_vrate_adj
-ffffffff82309790 d print_fmt_iocost_ioc_vrate_adj
-ffffffff82309890 d event_iocost_ioc_vrate_adj
-ffffffff82309920 d trace_event_fields_iocost_iocg_forgive_debt
-ffffffff82309ab0 d trace_event_type_funcs_iocost_iocg_forgive_debt
-ffffffff82309ad0 d print_fmt_iocost_iocg_forgive_debt
-ffffffff82309ba0 d event_iocost_iocg_forgive_debt
-ffffffff82309c30 d blkcg_policy_iocost
-ffffffff82309ca0 d ioc_files
-ffffffff8230a000 d ioc_rqos_ops
-ffffffff8230a058 d mq_deadline
-ffffffff8230a180 d deadline_attrs
-ffffffff8230a280 d __SCK__tp_func_kyber_latency
-ffffffff8230a290 d __SCK__tp_func_kyber_adjust
-ffffffff8230a2a0 d __SCK__tp_func_kyber_throttled
-ffffffff8230a2b0 d trace_event_fields_kyber_latency
-ffffffff8230a3f0 d trace_event_type_funcs_kyber_latency
-ffffffff8230a410 d print_fmt_kyber_latency
-ffffffff8230a4e8 d event_kyber_latency
-ffffffff8230a580 d trace_event_fields_kyber_adjust
-ffffffff8230a620 d trace_event_type_funcs_kyber_adjust
-ffffffff8230a640 d print_fmt_kyber_adjust
-ffffffff8230a6c0 d event_kyber_adjust
-ffffffff8230a750 d trace_event_fields_kyber_throttled
-ffffffff8230a7c8 d trace_event_type_funcs_kyber_throttled
-ffffffff8230a7f0 d print_fmt_kyber_throttled
-ffffffff8230a860 d event_kyber_throttled
-ffffffff8230a8f0 d kyber_sched
-ffffffff8230aa20 d kyber_sched_attrs
-ffffffff8230aa80 d iosched_bfq_mq
-ffffffff8230abb0 d bfq_attrs
-ffffffff8230ad10 d bfq_blkcg_legacy_files
-ffffffff8230b300 d bfq_blkg_files
-ffffffff8230b4b0 d blkcg_policy_bfq
-ffffffff8230b520 d blk_zone_cond_str.zone_cond_str
-ffffffff8230b528 d num_prealloc_crypt_ctxs
-ffffffff8230b530 d blk_crypto_evict_key._rs
-ffffffff8230b558 d blk_crypto_ktype
-ffffffff8230b590 d blk_crypto_attr_groups
-ffffffff8230b5b0 d blk_crypto_attrs
-ffffffff8230b5c8 d max_dun_bits_attr
-ffffffff8230b5e0 d num_keyslots_attr
-ffffffff8230b5f8 d num_prealloc_bounce_pg
-ffffffff8230b5fc d blk_crypto_num_keyslots
-ffffffff8230b600 d num_prealloc_fallback_crypt_ctxs
-ffffffff8230b608 d tfms_init_lock
-ffffffff8230b628 d __SCK__tp_func_io_uring_create
-ffffffff8230b638 d __SCK__tp_func_io_uring_register
-ffffffff8230b648 d __SCK__tp_func_io_uring_file_get
-ffffffff8230b658 d __SCK__tp_func_io_uring_queue_async_work
-ffffffff8230b668 d __SCK__tp_func_io_uring_defer
-ffffffff8230b678 d __SCK__tp_func_io_uring_link
-ffffffff8230b688 d __SCK__tp_func_io_uring_cqring_wait
-ffffffff8230b698 d __SCK__tp_func_io_uring_fail_link
-ffffffff8230b6a8 d __SCK__tp_func_io_uring_complete
-ffffffff8230b6b8 d __SCK__tp_func_io_uring_submit_sqe
-ffffffff8230b6c8 d __SCK__tp_func_io_uring_req_failed
-ffffffff8230b6d8 d __SCK__tp_func_io_uring_cqe_overflow
-ffffffff8230b6e8 d __SCK__tp_func_io_uring_task_work_run
-ffffffff8230b6f8 d __SCK__tp_func_io_uring_short_write
-ffffffff8230b708 d __SCK__tp_func_io_uring_local_work_run
-ffffffff8230b720 d trace_event_fields_io_uring_create
-ffffffff8230b810 d trace_event_type_funcs_io_uring_create
-ffffffff8230b830 d print_fmt_io_uring_create
-ffffffff8230b8a8 d event_io_uring_create
-ffffffff8230b940 d trace_event_fields_io_uring_register
-ffffffff8230ba30 d trace_event_type_funcs_io_uring_register
-ffffffff8230ba50 d print_fmt_io_uring_register
-ffffffff8230bad0 d event_io_uring_register
-ffffffff8230bb60 d trace_event_fields_io_uring_file_get
-ffffffff8230bc28 d trace_event_type_funcs_io_uring_file_get
-ffffffff8230bc50 d print_fmt_io_uring_file_get
-ffffffff8230bca8 d event_io_uring_file_get
-ffffffff8230bd40 d trace_event_fields_io_uring_queue_async_work
-ffffffff8230bea8 d trace_event_type_funcs_io_uring_queue_async_work
-ffffffff8230bed0 d print_fmt_io_uring_queue_async_work
-ffffffff8230bf90 d event_io_uring_queue_async_work
-ffffffff8230c020 d trace_event_fields_io_uring_defer
-ffffffff8230c110 d trace_event_type_funcs_io_uring_defer
-ffffffff8230c130 d print_fmt_io_uring_defer
-ffffffff8230c198 d event_io_uring_defer
-ffffffff8230c230 d trace_event_fields_io_uring_link
-ffffffff8230c2d0 d trace_event_type_funcs_io_uring_link
-ffffffff8230c2f0 d print_fmt_io_uring_link
-ffffffff8230c340 d event_io_uring_link
-ffffffff8230c3d0 d trace_event_fields_io_uring_cqring_wait
-ffffffff8230c448 d trace_event_type_funcs_io_uring_cqring_wait
-ffffffff8230c470 d print_fmt_io_uring_cqring_wait
-ffffffff8230c4a8 d event_io_uring_cqring_wait
-ffffffff8230c540 d trace_event_fields_io_uring_fail_link
-ffffffff8230c658 d trace_event_type_funcs_io_uring_fail_link
-ffffffff8230c680 d print_fmt_io_uring_fail_link
-ffffffff8230c700 d event_io_uring_fail_link
-ffffffff8230c790 d trace_event_fields_io_uring_complete
-ffffffff8230c8d0 d trace_event_type_funcs_io_uring_complete
-ffffffff8230c8f0 d print_fmt_io_uring_complete
-ffffffff8230c9c8 d event_io_uring_complete
-ffffffff8230ca60 d trace_event_fields_io_uring_submit_sqe
-ffffffff8230cbc8 d trace_event_type_funcs_io_uring_submit_sqe
-ffffffff8230cbf0 d print_fmt_io_uring_submit_sqe
-ffffffff8230ccb0 d event_io_uring_submit_sqe
-ffffffff8230cd40 d trace_event_fields_io_uring_poll_arm
-ffffffff8230ce80 d trace_event_type_funcs_io_uring_poll_arm
-ffffffff8230cea0 d print_fmt_io_uring_poll_arm
-ffffffff8230cf38 d event_io_uring_poll_arm
-ffffffff8230cfd0 d trace_event_fields_io_uring_task_add
-ffffffff8230d0e8 d trace_event_type_funcs_io_uring_task_add
-ffffffff8230d110 d print_fmt_io_uring_task_add
-ffffffff8230d190 d event_io_uring_task_add
-ffffffff8230d220 d trace_event_fields_io_uring_req_failed
-ffffffff8230d4f0 d trace_event_type_funcs_io_uring_req_failed
-ffffffff8230d510 d print_fmt_io_uring_req_failed
-ffffffff8230d6f8 d event_io_uring_req_failed
-ffffffff8230d790 d trace_event_fields_io_uring_cqe_overflow
-ffffffff8230d880 d trace_event_type_funcs_io_uring_cqe_overflow
-ffffffff8230d8a0 d print_fmt_io_uring_cqe_overflow
-ffffffff8230d920 d event_io_uring_cqe_overflow
-ffffffff8230d9b0 d trace_event_fields_io_uring_task_work_run
-ffffffff8230da50 d trace_event_type_funcs_io_uring_task_work_run
-ffffffff8230da70 d print_fmt_io_uring_task_work_run
-ffffffff8230dab8 d event_io_uring_task_work_run
-ffffffff8230db50 d trace_event_fields_io_uring_short_write
-ffffffff8230dc18 d trace_event_type_funcs_io_uring_short_write
-ffffffff8230dc40 d print_fmt_io_uring_short_write
-ffffffff8230dc98 d event_io_uring_short_write
-ffffffff8230dd30 d trace_event_fields_io_uring_local_work_run
-ffffffff8230ddd0 d trace_event_type_funcs_io_uring_local_work_run
-ffffffff8230ddf0 d print_fmt_io_uring_local_work_run
-ffffffff8230de30 d event_io_uring_local_work_run
-ffffffff8230dec0 d __SCK__tp_func_io_uring_task_add
-ffffffff8230ded0 d __SCK__tp_func_io_uring_poll_arm
-ffffffff8230dee0 d percpu_ref_switch_waitq
-ffffffff8230def8 d once_mutex
-ffffffff8230df18 d bad_io_access.count
-ffffffff8230df20 d static_l_desc
-ffffffff8230df40 d static_d_desc
-ffffffff8230df60 d static_bl_desc
-ffffffff8230df80 d rslistlock
-ffffffff8230dfa0 d codec_list
-ffffffff8230dfb0 d percpu_counters
-ffffffff8230dfc0 d ddebug_lock
-ffffffff8230dfe0 d ddebug_tables
-ffffffff8230dff0 d __nla_validate_parse._rs
-ffffffff8230e018 d validate_nla._rs
-ffffffff8230e040 d nla_validate_range_unsigned._rs
-ffffffff8230e070 d sg_pools
-ffffffff8230e110 d memregion_ids.llvm.17631163503836798328
-ffffffff8230e120 d stack_depot_init.stack_depot_init_mutex
-ffffffff8230e140 d __SCK__tp_func_read_msr
-ffffffff8230e150 d __SCK__tp_func_write_msr
-ffffffff8230e160 d __SCK__tp_func_rdpmc
-ffffffff8230e170 d trace_event_fields_msr_trace_class
-ffffffff8230e210 d trace_event_type_funcs_msr_trace_class
-ffffffff8230e230 d print_fmt_msr_trace_class
-ffffffff8230e278 d event_read_msr
-ffffffff8230e308 d event_write_msr
-ffffffff8230e398 d event_rdpmc
-ffffffff8230e428 d simple_pm_bus_driver
-ffffffff8230e4f0 d __SCK__tp_func_gpio_direction
-ffffffff8230e500 d __SCK__tp_func_gpio_value
-ffffffff8230e510 d trace_event_fields_gpio_direction
-ffffffff8230e5b0 d trace_event_type_funcs_gpio_direction
-ffffffff8230e5d0 d print_fmt_gpio_direction
-ffffffff8230e610 d event_gpio_direction
-ffffffff8230e6a0 d trace_event_fields_gpio_value
-ffffffff8230e740 d trace_event_type_funcs_gpio_value
-ffffffff8230e760 d print_fmt_gpio_value
-ffffffff8230e7a0 d event_gpio_value
-ffffffff8230e830 d gpio_devices
-ffffffff8230e840 d gpio_bus_type
-ffffffff8230e8f8 d gpio_ida
-ffffffff8230e908 d gpio_lookup_lock
-ffffffff8230e928 d gpio_lookup_list
-ffffffff8230e938 d gpio_machine_hogs_mutex
-ffffffff8230e958 d gpio_machine_hogs
-ffffffff8230e968 d gpio_stub_drv
-ffffffff8230e9f8 d run_edge_events_on_boot
-ffffffff8230ea00 d acpi_gpio_deferred_req_irqs_lock
-ffffffff8230ea20 d acpi_gpio_deferred_req_irqs_list
-ffffffff8230ea30 d .compoundliteral
-ffffffff8230ea48 d .compoundliteral
-ffffffff8230ea58 d .compoundliteral
-ffffffff8230eb10 d .compoundliteral.34
-ffffffff8230eb28 d .compoundliteral.36
-ffffffff8230eb40 d .compoundliteral.38
-ffffffff8230eb58 d .compoundliteral.40
-ffffffff8230eb70 d .compoundliteral.42
-ffffffff8230eb88 d .compoundliteral.44
-ffffffff8230eba0 d .compoundliteral.46
-ffffffff8230ebb8 d bgpio_driver
-ffffffff8230ec80 d pci_cfg_wait
-ffffffff8230ec98 d pci_high
-ffffffff8230eca8 d pci_64_bit
-ffffffff8230ecb8 d pci_32_bit
-ffffffff8230ecc8 d busn_resource
-ffffffff8230ed08 d pci_rescan_remove_lock.llvm.16384162823192132837
-ffffffff8230ed28 d pcibus_class
-ffffffff8230eda0 d pci_domain_busn_res_list
-ffffffff8230edb0 d pci_root_buses
-ffffffff8230edc0 d pci_slot_mutex
-ffffffff8230ede0 d pci_power_names
-ffffffff8230ee18 d pci_domains_supported
-ffffffff8230ee1c d pci_dfl_cache_line_size
-ffffffff8230ee20 d pcibios_max_latency
-ffffffff8230ee28 d pci_pme_list_mutex
-ffffffff8230ee48 d pci_pme_list
-ffffffff8230ee58 d pci_pme_work
-ffffffff8230eeb0 d pci_dev_reset_method_attrs
-ffffffff8230eec0 d pci_set_full_power_state._rs
-ffffffff8230eee8 d pci_set_low_power_state._rs
-ffffffff8230ef10 d dev_attr_reset_method
-ffffffff8230ef30 d bus_attr_resource_alignment
-ffffffff8230ef50 d pcie_bus_config
-ffffffff8230ef58 d pci_hotplug_bus_size
-ffffffff8230ef60 d pci_cardbus_io_size
-ffffffff8230ef68 d pci_cardbus_mem_size
-ffffffff8230ef70 d pci_hotplug_io_size
-ffffffff8230ef78 d pci_hotplug_mmio_size
-ffffffff8230ef80 d pci_hotplug_mmio_pref_size
-ffffffff8230ef88 d pci_compat_driver
-ffffffff8230f0b0 d pci_drv_groups
-ffffffff8230f0c0 d pcie_port_bus_type
-ffffffff8230f180 d pci_drv_attrs
-ffffffff8230f198 d driver_attr_new_id
-ffffffff8230f1b8 d driver_attr_new_id
-ffffffff8230f1d8 d driver_attr_remove_id
-ffffffff8230f1f8 d driver_attr_remove_id
-ffffffff8230f218 d pci_bus_type
-ffffffff8230f2d0 d pci_bus_sem
-ffffffff8230f300 d pci_bus_groups
-ffffffff8230f310 d pci_dev_groups
-ffffffff8230f360 d pci_dev_attr_groups.llvm.12520832794413114532
-ffffffff8230f3b0 d pci_bus_attrs
-ffffffff8230f3c0 d bus_attr_rescan
-ffffffff8230f3e0 d pcibus_attrs
-ffffffff8230f400 d dev_attr_bus_rescan
-ffffffff8230f420 d dev_attr_cpuaffinity
-ffffffff8230f440 d dev_attr_cpulistaffinity
-ffffffff8230f460 d pci_dev_attrs
-ffffffff8230f510 d dev_attr_power_state
-ffffffff8230f530 d dev_attr_power_state
-ffffffff8230f550 d dev_attr_resource
-ffffffff8230f570 d dev_attr_resource
-ffffffff8230f590 d dev_attr_resource
-ffffffff8230f5b0 d dev_attr_resource
-ffffffff8230f5d0 d dev_attr_vendor
-ffffffff8230f5f0 d dev_attr_vendor
-ffffffff8230f610 d dev_attr_vendor
-ffffffff8230f630 d dev_attr_device
-ffffffff8230f650 d dev_attr_device
-ffffffff8230f670 d dev_attr_subsystem_vendor
-ffffffff8230f690 d dev_attr_subsystem_device
-ffffffff8230f6b0 d dev_attr_revision
-ffffffff8230f6d0 d dev_attr_class
-ffffffff8230f6f0 d dev_attr_irq
-ffffffff8230f710 d dev_attr_irq
-ffffffff8230f730 d dev_attr_local_cpus
-ffffffff8230f750 d dev_attr_local_cpulist
-ffffffff8230f770 d dev_attr_modalias
-ffffffff8230f790 d dev_attr_modalias
-ffffffff8230f7b0 d dev_attr_modalias
-ffffffff8230f7d0 d dev_attr_modalias
-ffffffff8230f7f0 d dev_attr_modalias
-ffffffff8230f810 d dev_attr_modalias
-ffffffff8230f830 d dev_attr_modalias
-ffffffff8230f850 d dev_attr_modalias
-ffffffff8230f870 d dev_attr_modalias
-ffffffff8230f890 d dev_attr_dma_mask_bits
-ffffffff8230f8b0 d dev_attr_consistent_dma_mask_bits
-ffffffff8230f8d0 d dev_attr_enable
-ffffffff8230f8f0 d dev_attr_broken_parity_status
-ffffffff8230f910 d dev_attr_msi_bus
-ffffffff8230f930 d dev_attr_d3cold_allowed
-ffffffff8230f950 d dev_attr_devspec
-ffffffff8230f970 d dev_attr_driver_override
-ffffffff8230f990 d dev_attr_driver_override
-ffffffff8230f9b0 d dev_attr_ari_enabled
-ffffffff8230f9d0 d pci_dev_config_attrs
-ffffffff8230f9e0 d bin_attr_config
-ffffffff8230fa20 d pci_dev_rom_attrs
-ffffffff8230fa30 d bin_attr_rom
-ffffffff8230fa70 d pci_dev_reset_attrs
-ffffffff8230fa80 d dev_attr_reset
-ffffffff8230faa0 d dev_attr_reset
-ffffffff8230fac0 d dev_attr_reset
-ffffffff8230fae0 d resource_resize_attrs
-ffffffff8230fb18 d dev_attr_resource0_resize
-ffffffff8230fb38 d dev_attr_resource1_resize
-ffffffff8230fb58 d dev_attr_resource2_resize
-ffffffff8230fb78 d dev_attr_resource3_resize
-ffffffff8230fb98 d dev_attr_resource4_resize
-ffffffff8230fbb8 d dev_attr_resource5_resize
-ffffffff8230fbe0 d pci_dev_dev_attrs
-ffffffff8230fbf0 d dev_attr_boot_vga
-ffffffff8230fc10 d pci_dev_hp_attrs
-ffffffff8230fc28 d dev_attr_remove
-ffffffff8230fc48 d dev_attr_dev_rescan
-ffffffff8230fc70 d pci_bridge_attrs
-ffffffff8230fc88 d dev_attr_subordinate_bus_number
-ffffffff8230fca8 d dev_attr_secondary_bus_number
-ffffffff8230fcd0 d pcie_dev_attrs
-ffffffff8230fcf8 d dev_attr_current_link_speed
-ffffffff8230fd18 d dev_attr_current_link_width
-ffffffff8230fd38 d dev_attr_max_link_width
-ffffffff8230fd58 d dev_attr_max_link_speed
-ffffffff8230fd80 d pcibus_groups
-ffffffff8230fd90 d vpd_attrs
-ffffffff8230fda0 d bin_attr_vpd
-ffffffff8230fde0 d pci_realloc_enable
-ffffffff8230fde8 d pci_msi_domain_ops_default
-ffffffff8230fe28 d pcie_portdriver
-ffffffff8230ff50 d aspm_lock
-ffffffff8230ff70 d aspm_ctrl_attrs
-ffffffff8230ffb0 d link_list
-ffffffff8230ffc0 d policy_str
-ffffffff8230ffe0 d dev_attr_clkpm
-ffffffff82310000 d dev_attr_l0s_aspm
-ffffffff82310020 d dev_attr_l1_aspm
-ffffffff82310040 d dev_attr_l1_1_aspm
-ffffffff82310060 d dev_attr_l1_2_aspm
-ffffffff82310080 d dev_attr_l1_1_pcipm
-ffffffff823100a0 d dev_attr_l1_2_pcipm
-ffffffff823100c0 d aerdriver
-ffffffff823101a0 d dev_attr_aer_rootport_total_err_cor
-ffffffff823101c0 d dev_attr_aer_rootport_total_err_fatal
-ffffffff823101e0 d dev_attr_aer_rootport_total_err_nonfatal
-ffffffff82310200 d dev_attr_aer_dev_correctable
-ffffffff82310220 d dev_attr_aer_dev_fatal
-ffffffff82310240 d dev_attr_aer_dev_nonfatal
-ffffffff82310260 d pcie_pme_driver.llvm.14024796030071296507
-ffffffff82310340 d pci_slot_ktype
-ffffffff82310370 d pci_slot_default_groups
-ffffffff82310380 d pci_slot_default_attrs
-ffffffff823103a0 d pci_slot_attr_address
-ffffffff823103c0 d pci_slot_attr_max_speed
-ffffffff823103e0 d pci_slot_attr_cur_speed
-ffffffff82310400 d pci_acpi_companion_lookup_sem
-ffffffff82310430 d via_vlink_dev_lo
-ffffffff82310434 d via_vlink_dev_hi
-ffffffff82310440 d sriov_vf_dev_attrs
-ffffffff82310450 d sriov_pf_dev_attrs
-ffffffff82310490 d dev_attr_sriov_vf_msix_count
-ffffffff823104b0 d dev_attr_sriov_totalvfs
-ffffffff823104d0 d dev_attr_sriov_numvfs
-ffffffff823104f0 d dev_attr_sriov_offset
-ffffffff82310510 d dev_attr_sriov_stride
-ffffffff82310530 d dev_attr_sriov_vf_device
-ffffffff82310550 d dev_attr_sriov_drivers_autoprobe
-ffffffff82310570 d dev_attr_sriov_vf_total_msix
-ffffffff82310590 d smbios_attrs
-ffffffff823105b0 d acpi_attrs
-ffffffff823105c8 d dev_attr_smbios_label
-ffffffff823105e8 d dev_attr_index
-ffffffff82310608 d dev_attr_label
-ffffffff82310628 d dev_attr_acpi_index
-ffffffff82310648 d vga_wait_queue
-ffffffff82310660 d vga_list
-ffffffff82310670 d vga_arb_device
-ffffffff823106c0 d pci_notifier
-ffffffff823106d8 d vga_user_list
-ffffffff823106e8 d pci_epf_bus_type
-ffffffff823107a0 d dw_plat_pcie_driver
-ffffffff82310868 d vgacon_startup.ega_console_resource
-ffffffff823108a8 d vgacon_startup.mda1_console_resource
-ffffffff823108e8 d vgacon_startup.mda2_console_resource
-ffffffff82310928 d vgacon_startup.ega_console_resource.4
-ffffffff82310968 d vgacon_startup.vga_console_resource
-ffffffff823109a8 d vgacon_startup.cga_console_resource
-ffffffff823109e8 d acpi_sci_irq
-ffffffff823109f0 d acpi_ioremap_lock
-ffffffff82310a10 d acpi_ioremaps
-ffffffff82310a20 d acpi_enforce_resources
-ffffffff82310a28 d nvs_region_list
-ffffffff82310a38 d nvs_list
-ffffffff82310a48 d acpi_wakeup_handler_mutex
-ffffffff82310a68 d acpi_wakeup_handler_head
-ffffffff82310a78 d tts_notifier
-ffffffff82310a90 d acpi_sleep_syscore_ops
-ffffffff82310ab8 d dev_attr_path
-ffffffff82310ad8 d dev_attr_hid
-ffffffff82310af8 d dev_attr_description
-ffffffff82310b18 d dev_attr_description
-ffffffff82310b38 d dev_attr_adr
-ffffffff82310b58 d dev_attr_uid
-ffffffff82310b78 d dev_attr_sun
-ffffffff82310b98 d dev_attr_hrv
-ffffffff82310bb8 d dev_attr_status
-ffffffff82310bd8 d dev_attr_status
-ffffffff82310bf8 d dev_attr_status
-ffffffff82310c18 d dev_attr_eject
-ffffffff82310c38 d dev_attr_real_power_state
-ffffffff82310c58 d acpi_data_node_ktype
-ffffffff82310c90 d acpi_data_node_default_groups
-ffffffff82310ca0 d acpi_data_node_default_attrs
-ffffffff82310cb0 d data_node_path
-ffffffff82310cd0 d acpi_pm_notifier_install_lock
-ffffffff82310cf0 d acpi_pm_notifier_lock
-ffffffff82310d10 d acpi_general_pm_domain
-ffffffff82310df0 d acpi_wakeup_lock
-ffffffff82310e10 d acpi_bus_type
-ffffffff82310ed0 d sb_uuid_str
-ffffffff82310f00 d sb_usb_uuid_str
-ffffffff82310f28 d acpi_sb_notify.acpi_sb_work
-ffffffff82310f48 d bus_type_sem
-ffffffff82310f78 d bus_type_list
-ffffffff82310f88 d acpi_bus_id_list
-ffffffff82310f98 d acpi_device_lock
-ffffffff82310fb8 d acpi_wakeup_device_list
-ffffffff82310fc8 d acpi_scan_lock.llvm.2357534268054253729
-ffffffff82310fe8 d acpi_hp_context_lock
-ffffffff82311008 d acpi_scan_handlers_list
-ffffffff82311018 d generic_device_handler
-ffffffff823110b0 d acpi_probe_mutex
-ffffffff823110d0 d acpi_reconfig_chain.llvm.2357534268054253729
-ffffffff82311108 d acpi_scan_drop_device.work
-ffffffff82311128 d acpi_device_del_lock
-ffffffff82311148 d acpi_device_del_list
-ffffffff82311158 d acpi_dep_list_lock
-ffffffff82311178 d acpi_dep_list
-ffffffff82311190 d duplicate_processor_ids
-ffffffff82311210 d processor_handler
-ffffffff823112a8 d processor_container_handler
-ffffffff82311340 d acpi_ec_driver
-ffffffff823114a0 d pci_root_handler
-ffffffff82311540 d cxl_osc_uuid_str
-ffffffff82311570 d pci_osc_uuid_str
-ffffffff82311598 d acpi_link_list
-ffffffff823115b0 d acpi_isa_irq_penalty
-ffffffff823115f0 d acpi_link_lock
-ffffffff82311610 d sci_irq
-ffffffff82311614 d acpi_irq_balance
-ffffffff82311618 d irqrouter_syscore_ops
-ffffffff82311640 d pci_link_handler
-ffffffff823116d8 d lpss_handler.llvm.13260320836390291702
-ffffffff82311770 d apd_handler.llvm.4036151600736070659
-ffffffff82311808 d acpi_platform_notifier.llvm.2466138398333883424
-ffffffff82311820 d acpi_pnp_handler.llvm.2998375819469415631
-ffffffff823118b8 d dev_attr_resource_in_use
-ffffffff823118d8 d power_resource_list_lock
-ffffffff823118f8 d acpi_power_resource_list
-ffffffff82311908 d acpi_chain_head.llvm.6510128692743609588
-ffffffff82311940 d ged_driver
-ffffffff82311a08 d acpi_table_attr_list
-ffffffff82311a18 d interrupt_stats_attr_group
-ffffffff82311a40 d acpi_hotplug_profile_ktype
-ffffffff82311a70 d hotplug_profile_groups
-ffffffff82311a80 d hotplug_profile_attrs
-ffffffff82311a90 d hotplug_enabled_attr
-ffffffff82311ab0 d cmos_rtc_handler.llvm.7467717979161619931
-ffffffff82311b48 d lps0_s2idle_devops_head
-ffffffff82311b58 d lps0_handler
-ffffffff82311bf0 d dev_attr_low_power_idle_system_residency_us
-ffffffff82311c10 d dev_attr_low_power_idle_cpu_residency_us
-ffffffff82311c30 d prm_module_list
-ffffffff82311c40 d acpi_platformrt_space_handler._rs
-ffffffff82311c68 d acpi_gbl_default_address_spaces
-ffffffff82311c70 d acpi_rs_convert_address16
-ffffffff82311c90 d acpi_rs_convert_address32
-ffffffff82311cb0 d acpi_rs_convert_address64
-ffffffff82311cd0 d acpi_rs_convert_ext_address64
-ffffffff82311cf0 d acpi_rs_convert_general_flags
-ffffffff82311d10 d acpi_rs_convert_mem_flags
-ffffffff82311d30 d acpi_rs_convert_io_flags
-ffffffff82311d40 d acpi_gbl_set_resource_dispatch
-ffffffff82311e10 d acpi_gbl_get_resource_dispatch
-ffffffff82311f30 d acpi_gbl_convert_resource_serial_bus_dispatch
-ffffffff82311f60 d acpi_rs_convert_io
-ffffffff82311f80 d acpi_rs_convert_fixed_io
-ffffffff82311f90 d acpi_rs_convert_generic_reg
-ffffffff82311fa0 d acpi_rs_convert_end_dpf
-ffffffff82311fa8 d acpi_rs_convert_end_tag
-ffffffff82311fb0 d acpi_rs_get_start_dpf
-ffffffff82311fd0 d acpi_rs_set_start_dpf
-ffffffff82312000 d acpi_rs_get_irq
-ffffffff82312030 d acpi_rs_set_irq
-ffffffff82312070 d acpi_rs_convert_ext_irq
-ffffffff823120a0 d acpi_rs_convert_dma
-ffffffff823120c0 d acpi_rs_convert_fixed_dma
-ffffffff823120d0 d acpi_rs_convert_memory24
-ffffffff823120e0 d acpi_rs_convert_memory32
-ffffffff823120f0 d acpi_rs_convert_fixed_memory32
-ffffffff82312100 d acpi_rs_get_vendor_small
-ffffffff8231210c d acpi_rs_get_vendor_large
-ffffffff82312120 d acpi_rs_set_vendor
-ffffffff82312140 d acpi_rs_convert_gpio
-ffffffff82312190 d acpi_rs_convert_pin_function
-ffffffff823121d0 d acpi_rs_convert_csi2_serial_bus
-ffffffff82312210 d acpi_rs_convert_i2c_serial_bus
-ffffffff82312260 d acpi_rs_convert_spi_serial_bus
-ffffffff823122c0 d acpi_rs_convert_uart_serial_bus
-ffffffff82312320 d acpi_rs_convert_pin_config
-ffffffff82312360 d acpi_rs_convert_pin_group
-ffffffff82312390 d acpi_rs_convert_pin_group_function
-ffffffff823123d0 d acpi_rs_convert_pin_group_config
-ffffffff82312410 d acpi_gbl_region_types
-ffffffff82312470 d acpi_gbl_auto_serialize_methods
-ffffffff82312471 d acpi_gbl_create_osi_method
-ffffffff82312472 d acpi_gbl_use_default_register_widths
-ffffffff82312473 d acpi_gbl_enable_table_validation
-ffffffff82312474 d acpi_gbl_use32_bit_facs_addresses
-ffffffff82312475 d acpi_gbl_runtime_namespace_override
-ffffffff82312478 d acpi_gbl_max_loop_iterations
-ffffffff8231247c d acpi_gbl_trace_dbg_level
-ffffffff82312480 d acpi_gbl_trace_dbg_layer
-ffffffff82312484 d acpi_dbg_level
-ffffffff82312488 d acpi_gbl_dsdt_index
-ffffffff8231248c d acpi_gbl_facs_index
-ffffffff82312490 d acpi_gbl_xfacs_index
-ffffffff82312494 d acpi_gbl_fadt_index
-ffffffff82312498 d acpi_gbl_shutdown
-ffffffff82312499 d acpi_gbl_early_initialization
-ffffffff8231249a d acpi_gbl_db_output_flags
-ffffffff823124a0 d acpi_gbl_sleep_state_names
-ffffffff823124d0 d acpi_gbl_lowest_dstate_names
-ffffffff82312500 d acpi_gbl_highest_dstate_names
-ffffffff82312520 d acpi_gbl_bit_register_info
-ffffffff82312570 d acpi_gbl_fixed_event_info
-ffffffff82312590 d acpi_default_supported_interfaces
-ffffffff82312830 d acpi_ac_driver
-ffffffff82312990 d ac_props
-ffffffff82312998 d acpi_button_driver
-ffffffff82312af8 d lid_init_state
-ffffffff82312b00 d acpi_fan_driver
-ffffffff82312bc8 d acpi_processor_notifier_block
-ffffffff82312be0 d acpi_processor_driver
-ffffffff82312c70 d acpi_idle_driver
-ffffffff823130b0 d acpi_processor_power_verify_c3.bm_check_flag
-ffffffff823130b4 d acpi_processor_power_verify_c3.bm_control_flag
-ffffffff823130b8 d acpi_idle_enter_bm.safe_cx
-ffffffff823130ec d ignore_ppc
-ffffffff823130f0 d performance_mutex
-ffffffff82313110 d container_handler.llvm.11596750171375237086
-ffffffff823131a8 d acpi_thermal_driver
-ffffffff82313308 d acpi_thermal_zone_ops
-ffffffff82313380 d memory_device_handler.llvm.12205074629526266102
-ffffffff82313418 d ioapic_list_lock
-ffffffff82313438 d ioapic_list
-ffffffff82313448 d cache_time
-ffffffff82313450 d hook_mutex
-ffffffff82313470 d battery_hook_list
-ffffffff82313480 d acpi_battery_list
-ffffffff82313490 d acpi_battery_driver
-ffffffff823135f0 d charge_battery_full_cap_broken_props
-ffffffff82313620 d charge_battery_props
-ffffffff82313660 d energy_battery_full_cap_broken_props
-ffffffff82313690 d energy_battery_props
-ffffffff823136d0 d cppc_ktype
-ffffffff82313700 d cppc_mbox_cl
-ffffffff82313740 d cppc_groups
-ffffffff82313750 d cppc_attrs
-ffffffff823137a0 d feedback_ctrs
-ffffffff823137c0 d reference_perf
-ffffffff823137e0 d wraparound_time
-ffffffff82313800 d highest_perf
-ffffffff82313820 d lowest_perf
-ffffffff82313840 d lowest_nonlinear_perf
-ffffffff82313860 d nominal_perf
-ffffffff82313880 d nominal_freq
-ffffffff823138a0 d lowest_freq
-ffffffff823138c0 d int340x_thermal_handler.llvm.3272078482442495914
-ffffffff82313958 d pnp_global
-ffffffff82313968 d pnp_lock
-ffffffff82313988 d pnp_protocols
-ffffffff82313998 d pnp_cards
-ffffffff823139a8 d pnp_card_drivers
-ffffffff823139b8 d dev_attr_name
-ffffffff823139d8 d dev_attr_name
-ffffffff823139f8 d dev_attr_name
-ffffffff82313a18 d dev_attr_name
-ffffffff82313a38 d dev_attr_name
-ffffffff82313a58 d dev_attr_name
-ffffffff82313a78 d dev_attr_name
-ffffffff82313a98 d dev_attr_card_id
-ffffffff82313ab8 d pnp_bus_type
-ffffffff82313b70 d pnp_reserve_io
-ffffffff82313bb0 d pnp_reserve_mem
-ffffffff82313bf0 d pnp_reserve_irq
-ffffffff82313c30 d pnp_reserve_dma
-ffffffff82313c50 d pnp_res_mutex
-ffffffff82313c70 d pnp_dev_groups
-ffffffff82313c80 d pnp_dev_attrs
-ffffffff82313ca0 d dev_attr_resources
-ffffffff82313cc0 d dev_attr_options
-ffffffff82313ce0 d dev_attr_id
-ffffffff82313d00 d dev_attr_id
-ffffffff82313d20 d dev_attr_id
-ffffffff82313d40 d dev_attr_id
-ffffffff82313d60 d pnp_fixups
-ffffffff82313e90 d system_pnp_driver
-ffffffff82313f60 d pnpacpi_protocol
-ffffffff823142a8 d hp_ccsr_uuid
-ffffffff823142c0 d virtio_bus
-ffffffff82314378 d virtio_index_ida.llvm.13664165572380091271
-ffffffff82314390 d virtio_dev_groups
-ffffffff823143a0 d virtio_dev_attrs
-ffffffff823143d0 d dev_attr_features
-ffffffff823143f0 d virtio_check_mem_acc_cb
-ffffffff823143f8 d virtio_pci_driver
-ffffffff82314520 d virtio_balloon_driver
-ffffffff82314610 d features
-ffffffff82314630 d features
-ffffffff82314660 d features
-ffffffff82314668 d fill_balloon._rs
-ffffffff82314690 d tty_drivers
-ffffffff823146a0 d tty_mutex
-ffffffff823146c0 d tty_init_dev._rs
-ffffffff823146e8 d tty_init_dev._rs.4
-ffffffff82314710 d cons_dev_groups
-ffffffff82314720 d tty_set_serial._rs
-ffffffff82314750 d cons_dev_attrs
-ffffffff82314760 d tty_std_termios
-ffffffff82314790 d n_tty_ops.llvm.9492898493868202368
-ffffffff82314820 d n_tty_kick_worker._rs
-ffffffff82314848 d n_tty_kick_worker._rs.6
-ffffffff82314870 d tty_root_table.llvm.15371552177515968348
-ffffffff823148f0 d tty_ldisc_autoload
-ffffffff82314900 d tty_dir_table
-ffffffff82314980 d tty_table
-ffffffff82314a00 d null_ldisc
-ffffffff82314a90 d devpts_mutex
-ffffffff82314ab0 d __sysrq_reboot_op
-ffffffff82314ac0 d sysrq_key_table
-ffffffff82314cb0 d moom_work
-ffffffff82314cd0 d sysrq_reset_seq_version
-ffffffff82314cd8 d sysrq_handler
-ffffffff82314d50 d vt_events
-ffffffff82314d60 d vt_event_waitqueue
-ffffffff82314d78 d vc_sel.llvm.18117347047084825068
-ffffffff82314dc0 d inwordLut
-ffffffff82314dd0 d kd_mksound_timer
-ffffffff82314df8 d kbd_handler
-ffffffff82314e70 d brl_timeout
-ffffffff82314e74 d brl_nbchords
-ffffffff82314e78 d keyboard_tasklet
-ffffffff82314ea0 d kbd
-ffffffff82314ea8 d applkey.buf
-ffffffff82314eac d ledstate
-ffffffff82314eb0 d translations
-ffffffff823156b0 d dfont_unicount
-ffffffff823157b0 d dfont_unitable
-ffffffff82315a10 d global_cursor_default
-ffffffff82315a14 d cur_default
-ffffffff82315a18 d console_work.llvm.9716869111761671445
-ffffffff82315a38 d complement_pos.old_offset
-ffffffff82315a40 d default_red
-ffffffff82315a50 d default_grn
-ffffffff82315a60 d default_blu
-ffffffff82315a70 d default_color
-ffffffff82315a74 d default_italic_color
-ffffffff82315a78 d default_underline_color
-ffffffff82315a80 d vt_dev_groups
-ffffffff82315a90 d con_driver_unregister_work
-ffffffff82315ab0 d console_timer
-ffffffff82315ad8 d softcursor_original
-ffffffff82315ae0 d vt_console_driver
-ffffffff82315b60 d vt_dev_attrs
-ffffffff82315b70 d con_dev_groups
-ffffffff82315b80 d con_dev_attrs
-ffffffff82315b98 d dev_attr_bind
-ffffffff82315bb8 d default_utf8
-ffffffff82315bbc d want_console
-ffffffff82315bc0 d plain_map
-ffffffff82315dc0 d key_maps
-ffffffff823165c0 d keymap_count
-ffffffff823165d0 d func_buf
-ffffffff82316670 d funcbufptr
-ffffffff82316678 d funcbufsize
-ffffffff82316680 d func_table
-ffffffff82316e80 d accent_table
-ffffffff82317a80 d accent_table_size
-ffffffff82317a90 d shift_map
-ffffffff82317c90 d altgr_map
-ffffffff82317e90 d ctrl_map
-ffffffff82318090 d shift_ctrl_map
-ffffffff82318290 d alt_map
-ffffffff82318490 d ctrl_alt_map
-ffffffff82318690 d vtermnos
-ffffffff823186d0 d hvc_structs_mutex
-ffffffff823186f0 d last_hvc
-ffffffff823186f8 d hvc_structs
-ffffffff82318708 d hvc_console
-ffffffff82318780 d timeout
-ffffffff82318788 d port_mutex
-ffffffff823187a8 d uart_sanitize_serial_rs485._rs
-ffffffff823187d0 d uart_set_info._rs
-ffffffff82318800 d tty_dev_attrs
-ffffffff82318878 d dev_attr_uartclk
-ffffffff82318898 d dev_attr_line
-ffffffff823188b8 d dev_attr_port
-ffffffff823188d8 d dev_attr_flags
-ffffffff823188f8 d dev_attr_flags
-ffffffff82318918 d dev_attr_flags
-ffffffff82318938 d dev_attr_xmit_fifo_size
-ffffffff82318958 d dev_attr_close_delay
-ffffffff82318978 d dev_attr_closing_wait
-ffffffff82318998 d dev_attr_custom_divisor
-ffffffff823189b8 d dev_attr_io_type
-ffffffff823189d8 d dev_attr_iomem_base
-ffffffff823189f8 d dev_attr_iomem_reg_shift
-ffffffff82318a18 d dev_attr_console
-ffffffff82318a38 d uart_sanitize_serial_rs485_delays._rs
-ffffffff82318a60 d uart_sanitize_serial_rs485_delays._rs.71
-ffffffff82318a88 d uart_sanitize_serial_rs485_delays._rs.73
-ffffffff82318ab0 d uart_sanitize_serial_rs485_delays._rs.75
-ffffffff82318ad8 d early_con
-ffffffff82318b50 d early_console_dev
-ffffffff82318d70 d serial8250_reg
-ffffffff82318db0 d serial_mutex
-ffffffff82318dd0 d serial8250_isa_driver
-ffffffff82318e98 d univ8250_console
-ffffffff82318f10 d hash_mutex
-ffffffff82318f30 d serial_pnp_driver.llvm.12597879854829997786
-ffffffff82319000 d serial8250_em485_supported
-ffffffff82319020 d serial8250_do_startup._rs
-ffffffff82319048 d serial8250_do_startup._rs.4
-ffffffff82319070 d serial8250_dev_attr_group
-ffffffff823190a0 d serial8250_dev_attrs
-ffffffff823190b0 d dev_attr_rx_trig_bytes
-ffffffff823190d0 d lpss8250_pci_driver
-ffffffff823191f8 d mid8250_pci_driver
-ffffffff82319320 d pericom8250_pci_driver
-ffffffff82319448 d of_platform_serial_driver
-ffffffff82319510 d ttynull_console
-ffffffff82319588 d crng_init_wait
-ffffffff823195a0 d pm_notifier
-ffffffff823195b8 d input_pool
-ffffffff82319638 d add_input_randomness.input_timer_state
-ffffffff82319650 d urandom_warning
-ffffffff82319678 d crng_reseed_interval.early_boot
-ffffffff8231967c d urandom_read_iter.maxwarn
-ffffffff82319680 d random_table
-ffffffff82319840 d sysctl_poolsize
-ffffffff82319844 d sysctl_random_write_wakeup_bits
-ffffffff82319848 d sysctl_random_min_urandom_seed
-ffffffff82319850 d misc_mtx
-ffffffff82319870 d misc_list
-ffffffff82319880 d virtio_console
-ffffffff82319970 d virtio_rproc_serial
-ffffffff82319a60 d pdrvdata
-ffffffff82319a98 d pending_free_dma_bufs
-ffffffff82319aa8 d early_console_added
-ffffffff82319ad0 d port_sysfs_entries
-ffffffff82319ae0 d hpet_mmap_enabled
-ffffffff82319ae8 d hpet_misc
-ffffffff82319b40 d hpet_table
-ffffffff82319bc0 d hpet_acpi_driver
-ffffffff82319d20 d hpet_mutex
-ffffffff82319d40 d hpet_max_freq
-ffffffff82319d48 d rng_miscdev
-ffffffff82319d98 d rng_mutex
-ffffffff82319db8 d rng_list
-ffffffff82319dd0 d rng_dev_groups
-ffffffff82319de0 d reading_mutex
-ffffffff82319e00 d rng_dev_attrs
-ffffffff82319e28 d dev_attr_rng_current
-ffffffff82319e48 d dev_attr_rng_available
-ffffffff82319e68 d dev_attr_rng_selected
-ffffffff82319e88 d dev_attr_rng_quality
-ffffffff82319ea8 d intel_rng
-ffffffff82319f40 d amd_rng
-ffffffff82319fd8 d via_rng
-ffffffff8231a070 d virtio_rng_driver
-ffffffff8231a160 d rng_index_ida
-ffffffff8231a170 d iommu_device_list
-ffffffff8231a180 d iommu_group_ida
-ffffffff8231a190 d iommu_group_ktype
-ffffffff8231a1c0 d iommu_group_attr_reserved_regions
-ffffffff8231a1e0 d iommu_group_attr_type
-ffffffff8231a200 d iommu_group_attr_name
-ffffffff8231a220 d iommu_page_response._rs
-ffffffff8231a248 d __iommu_probe_device.iommu_probe_device_lock
-ffffffff8231a268 d iommu_group_store_type._rs
-ffffffff8231a290 d iommu_group_store_type._rs.46
-ffffffff8231a2b8 d iommu_change_dev_def_domain._rs
-ffffffff8231a2e0 d iommu_change_dev_def_domain._rs.49
-ffffffff8231a308 d iommu_change_dev_def_domain._rs.51
-ffffffff8231a330 d iommu_change_dev_def_domain._rs.53
-ffffffff8231a358 d __SCK__tp_func_add_device_to_group
-ffffffff8231a368 d __SCK__tp_func_remove_device_from_group
-ffffffff8231a378 d __SCK__tp_func_attach_device_to_domain
-ffffffff8231a388 d __SCK__tp_func_detach_device_from_domain
-ffffffff8231a398 d __SCK__tp_func_map
-ffffffff8231a3a8 d __SCK__tp_func_unmap
-ffffffff8231a3b8 d __SCK__tp_func_io_page_fault
-ffffffff8231a3d0 d trace_event_fields_iommu_group_event
-ffffffff8231a448 d trace_event_type_funcs_iommu_group_event
-ffffffff8231a470 d print_fmt_iommu_group_event
-ffffffff8231a4b0 d event_add_device_to_group
-ffffffff8231a540 d event_remove_device_from_group
-ffffffff8231a5d0 d trace_event_fields_iommu_device_event
-ffffffff8231a620 d trace_event_type_funcs_iommu_device_event
-ffffffff8231a640 d print_fmt_iommu_device_event
-ffffffff8231a668 d event_attach_device_to_domain
-ffffffff8231a6f8 d event_detach_device_from_domain
-ffffffff8231a790 d trace_event_fields_map
-ffffffff8231a830 d trace_event_type_funcs_map
-ffffffff8231a850 d print_fmt_map
-ffffffff8231a8c8 d event_map
-ffffffff8231a960 d trace_event_fields_unmap
-ffffffff8231aa00 d trace_event_type_funcs_unmap
-ffffffff8231aa20 d print_fmt_unmap
-ffffffff8231aaa0 d event_unmap
-ffffffff8231ab30 d trace_event_fields_iommu_error
-ffffffff8231abf8 d trace_event_type_funcs_iommu_error
-ffffffff8231ac20 d print_fmt_iommu_error
-ffffffff8231ac88 d event_io_page_fault
-ffffffff8231ad18 d iommu_class
-ffffffff8231ad90 d dev_groups
-ffffffff8231ada0 d iommu_dma_prepare_msi.msi_prepare_lock
-ffffffff8231adc0 d iova_cache_mutex
-ffffffff8231ade0 d component_mutex
-ffffffff8231ae00 d aggregate_devices
-ffffffff8231ae10 d component_list
-ffffffff8231ae20 d fwnode_link_lock
-ffffffff8231ae40 d device_links_srcu.llvm.4157689720821036174
-ffffffff8231afc0 d devlink_class.llvm.4157689720821036174
-ffffffff8231b038 d defer_sync_state_count
-ffffffff8231b040 d deferred_sync
-ffffffff8231b050 d dev_attr_waiting_for_supplier
-ffffffff8231b070 d fw_devlink_flags
-ffffffff8231b078 d device_hotplug_lock.llvm.4157689720821036174
-ffffffff8231b098 d device_ktype
-ffffffff8231b0c8 d dev_attr_uevent
-ffffffff8231b0e8 d dev_attr_dev
-ffffffff8231b108 d devlink_class_intf
-ffffffff8231b130 d device_links_lock.llvm.4157689720821036174
-ffffffff8231b150 d devlink_groups
-ffffffff8231b160 d devlink_attrs
-ffffffff8231b188 d dev_attr_auto_remove_on
-ffffffff8231b1a8 d dev_attr_runtime_pm
-ffffffff8231b1c8 d dev_attr_sync_state_only
-ffffffff8231b1e8 d gdp_mutex
-ffffffff8231b208 d class_dir_ktype
-ffffffff8231b238 d dev_attr_online
-ffffffff8231b258 d driver_ktype
-ffffffff8231b288 d driver_attr_uevent
-ffffffff8231b2a8 d bus_ktype
-ffffffff8231b2d8 d bus_attr_uevent
-ffffffff8231b2f8 d driver_attr_unbind
-ffffffff8231b318 d driver_attr_bind
-ffffffff8231b338 d bus_attr_drivers_probe
-ffffffff8231b358 d bus_attr_drivers_autoprobe
-ffffffff8231b378 d deferred_probe_mutex
-ffffffff8231b398 d deferred_probe_pending_list
-ffffffff8231b3a8 d deferred_probe_active_list
-ffffffff8231b3b8 d deferred_probe_work
-ffffffff8231b3d8 d deferred_probe_timeout_work
-ffffffff8231b430 d probe_waitqueue
-ffffffff8231b448 d dev_attr_state_synced
-ffffffff8231b468 d dev_attr_coredump
-ffffffff8231b488 d syscore_ops_lock
-ffffffff8231b4a8 d syscore_ops_list
-ffffffff8231b4b8 d class_ktype
-ffffffff8231b4e8 d platform_bus
-ffffffff8231b7c0 d platform_bus_type
-ffffffff8231b878 d platform_devid_ida
-ffffffff8231b890 d platform_dev_groups
-ffffffff8231b8a0 d platform_dev_attrs
-ffffffff8231b8c0 d dev_attr_numa_node
-ffffffff8231b8e0 d dev_attr_numa_node
-ffffffff8231b900 d dev_attr_numa_node
-ffffffff8231b920 d cpu_root_attr_groups
-ffffffff8231b930 d cpu_root_attrs
-ffffffff8231b970 d cpu_attrs
-ffffffff8231b9e8 d dev_attr_kernel_max
-ffffffff8231ba08 d dev_attr_offline
-ffffffff8231ba28 d dev_attr_isolated
-ffffffff8231ba50 d cpu_root_vulnerabilities_attrs
-ffffffff8231bab0 d dev_attr_meltdown
-ffffffff8231bad0 d dev_attr_spectre_v1
-ffffffff8231baf0 d dev_attr_spectre_v2
-ffffffff8231bb10 d dev_attr_spec_store_bypass
-ffffffff8231bb30 d dev_attr_l1tf
-ffffffff8231bb50 d dev_attr_mds
-ffffffff8231bb70 d dev_attr_tsx_async_abort
-ffffffff8231bb90 d dev_attr_itlb_multihit
-ffffffff8231bbb0 d dev_attr_srbds
-ffffffff8231bbd0 d dev_attr_mmio_stale_data
-ffffffff8231bbf0 d dev_attr_retbleed
-ffffffff8231bc10 d cpu_subsys
-ffffffff8231bcc8 d attribute_container_mutex
-ffffffff8231bce8 d attribute_container_list
-ffffffff8231bd00 d default_attrs
-ffffffff8231bd30 d default_attrs
-ffffffff8231bd60 d bin_attrs
-ffffffff8231bdc8 d dev_attr_ppin
-ffffffff8231bde8 d dev_attr_physical_package_id
-ffffffff8231be08 d dev_attr_die_id
-ffffffff8231be28 d dev_attr_cluster_id
-ffffffff8231be48 d dev_attr_core_id
-ffffffff8231be68 d bin_attr_core_cpus
-ffffffff8231bea8 d bin_attr_core_cpus_list
-ffffffff8231bee8 d bin_attr_thread_siblings
-ffffffff8231bf28 d bin_attr_thread_siblings_list
-ffffffff8231bf68 d bin_attr_core_siblings
-ffffffff8231bfa8 d bin_attr_core_siblings_list
-ffffffff8231bfe8 d bin_attr_cluster_cpus
-ffffffff8231c028 d bin_attr_cluster_cpus_list
-ffffffff8231c068 d bin_attr_die_cpus
-ffffffff8231c0a8 d bin_attr_die_cpus_list
-ffffffff8231c0e8 d bin_attr_package_cpus
-ffffffff8231c128 d bin_attr_package_cpus_list
-ffffffff8231c168 d container_subsys
-ffffffff8231c220 d cache_default_groups
-ffffffff8231c230 d cache_private_groups
-ffffffff8231c250 d cache_default_attrs
-ffffffff8231c2b8 d dev_attr_level
-ffffffff8231c2d8 d dev_attr_shared_cpu_map
-ffffffff8231c2f8 d dev_attr_shared_cpu_list
-ffffffff8231c318 d dev_attr_coherency_line_size
-ffffffff8231c338 d dev_attr_ways_of_associativity
-ffffffff8231c358 d dev_attr_number_of_sets
-ffffffff8231c378 d dev_attr_write_policy
-ffffffff8231c398 d dev_attr_allocation_policy
-ffffffff8231c3b8 d dev_attr_physical_line_partition
-ffffffff8231c3d8 d swnode_root_ids
-ffffffff8231c3e8 d software_node_type
-ffffffff8231c420 d runtime_attrs.llvm.8071123969191757284
-ffffffff8231c450 d dev_attr_runtime_status
-ffffffff8231c470 d dev_attr_runtime_suspended_time
-ffffffff8231c490 d dev_attr_runtime_active_time
-ffffffff8231c4b0 d dev_attr_autosuspend_delay_ms
-ffffffff8231c4d0 d wakeup_attrs.llvm.8071123969191757284
-ffffffff8231c520 d dev_attr_wakeup
-ffffffff8231c540 d dev_attr_wakeup_count
-ffffffff8231c560 d dev_attr_wakeup_count
-ffffffff8231c580 d dev_attr_wakeup_active_count
-ffffffff8231c5a0 d dev_attr_wakeup_abort_count
-ffffffff8231c5c0 d dev_attr_wakeup_expire_count
-ffffffff8231c5e0 d dev_attr_wakeup_active
-ffffffff8231c600 d dev_attr_wakeup_total_time_ms
-ffffffff8231c620 d dev_attr_wakeup_max_time_ms
-ffffffff8231c640 d dev_attr_wakeup_last_time_ms
-ffffffff8231c660 d pm_qos_latency_tolerance_attrs.llvm.8071123969191757284
-ffffffff8231c670 d dev_attr_pm_qos_latency_tolerance_us
-ffffffff8231c690 d pm_qos_resume_latency_attrs.llvm.8071123969191757284
-ffffffff8231c6a0 d dev_attr_pm_qos_resume_latency_us
-ffffffff8231c6c0 d pm_qos_flags_attrs.llvm.8071123969191757284
-ffffffff8231c6d0 d dev_attr_pm_qos_no_power_off
-ffffffff8231c6f0 d dev_pm_qos_sysfs_mtx
-ffffffff8231c710 d dev_pm_qos_mtx.llvm.334234074015421732
-ffffffff8231c730 d pm_runtime_set_memalloc_noio.dev_hotplug_mutex
-ffffffff8231c750 d dpm_list
-ffffffff8231c760 d dpm_list_mtx.llvm.6731220630752008821
-ffffffff8231c780 d dpm_late_early_list
-ffffffff8231c790 d dpm_suspended_list
-ffffffff8231c7a0 d dpm_prepared_list
-ffffffff8231c7b0 d dpm_noirq_list
-ffffffff8231c7c0 d wakeup_ida
-ffffffff8231c7d0 d wakeup_sources
-ffffffff8231c7e0 d wakeup_srcu
-ffffffff8231c960 d wakeup_count_wait_queue
-ffffffff8231c978 d deleted_ws
-ffffffff8231ca40 d wakeup_source_groups
-ffffffff8231ca50 d wakeup_source_attrs
-ffffffff8231caa8 d dev_attr_active_count
-ffffffff8231cac8 d dev_attr_event_count
-ffffffff8231cae8 d dev_attr_expire_count
-ffffffff8231cb08 d dev_attr_active_time_ms
-ffffffff8231cb28 d dev_attr_total_time_ms
-ffffffff8231cb48 d dev_attr_max_time_ms
-ffffffff8231cb68 d dev_attr_last_change_ms
-ffffffff8231cb88 d dev_attr_prevent_suspend_time_ms
-ffffffff8231cba8 d fw_fallback_config
-ffffffff8231cbc0 d firmware_config_table.llvm.10075264112113527747
-ffffffff8231cc80 d fw_shutdown_nb
-ffffffff8231cc98 d fw_lock
-ffffffff8231ccb8 d pending_fw_head
-ffffffff8231ccc8 d firmware_class.llvm.8599753237745112431
-ffffffff8231cd40 d dev_attr_loading
-ffffffff8231cd60 d fw_dev_attr_groups
-ffffffff8231cd70 d firmware_class_groups
-ffffffff8231cd80 d firmware_class_attrs
-ffffffff8231cd90 d class_attr_timeout
-ffffffff8231cdb0 d fw_dev_attrs
-ffffffff8231cdc0 d fw_dev_bin_attrs
-ffffffff8231cdd0 d firmware_attr_data
-ffffffff8231ce10 d memory_chain.llvm.17281159710394035446
-ffffffff8231ce48 d memory_subsys
-ffffffff8231cf00 d memory_root_attr_groups
-ffffffff8231cf10 d memory_groups.llvm.17281159710394035446
-ffffffff8231cf20 d memory_memblk_attr_groups
-ffffffff8231cf30 d memory_memblk_attrs
-ffffffff8231cf60 d dev_attr_phys_index
-ffffffff8231cf80 d dev_attr_phys_device
-ffffffff8231cfa0 d dev_attr_valid_zones
-ffffffff8231cfc0 d memory_root_attrs
-ffffffff8231cfd8 d dev_attr_block_size_bytes
-ffffffff8231cff8 d dev_attr_auto_online_blocks
-ffffffff8231d018 d __SCK__tp_func_regmap_reg_write
-ffffffff8231d028 d __SCK__tp_func_regmap_reg_read
-ffffffff8231d038 d __SCK__tp_func_regmap_reg_read_cache
-ffffffff8231d048 d __SCK__tp_func_regmap_bulk_write
-ffffffff8231d058 d __SCK__tp_func_regmap_bulk_read
-ffffffff8231d068 d __SCK__tp_func_regmap_hw_read_start
-ffffffff8231d078 d __SCK__tp_func_regmap_hw_read_done
-ffffffff8231d088 d __SCK__tp_func_regmap_hw_write_start
-ffffffff8231d098 d __SCK__tp_func_regmap_hw_write_done
-ffffffff8231d0a8 d __SCK__tp_func_regcache_sync
-ffffffff8231d0b8 d __SCK__tp_func_regmap_cache_only
-ffffffff8231d0c8 d __SCK__tp_func_regmap_cache_bypass
-ffffffff8231d0d8 d __SCK__tp_func_regmap_async_write_start
-ffffffff8231d0e8 d __SCK__tp_func_regmap_async_io_complete
-ffffffff8231d0f8 d __SCK__tp_func_regmap_async_complete_start
-ffffffff8231d108 d __SCK__tp_func_regmap_async_complete_done
-ffffffff8231d118 d __SCK__tp_func_regcache_drop_region
-ffffffff8231d130 d trace_event_fields_regmap_reg
-ffffffff8231d1d0 d trace_event_type_funcs_regmap_reg
-ffffffff8231d1f0 d print_fmt_regmap_reg
-ffffffff8231d228 d event_regmap_reg_write
-ffffffff8231d2b8 d event_regmap_reg_read
-ffffffff8231d348 d event_regmap_reg_read_cache
-ffffffff8231d3e0 d trace_event_fields_regmap_bulk
-ffffffff8231d4a8 d trace_event_type_funcs_regmap_bulk
-ffffffff8231d4d0 d print_fmt_regmap_bulk
-ffffffff8231d538 d event_regmap_bulk_write
-ffffffff8231d5c8 d event_regmap_bulk_read
-ffffffff8231d660 d trace_event_fields_regmap_block
-ffffffff8231d700 d trace_event_type_funcs_regmap_block
-ffffffff8231d720 d print_fmt_regmap_block
-ffffffff8231d760 d event_regmap_hw_read_start
-ffffffff8231d7f0 d event_regmap_hw_read_done
-ffffffff8231d880 d event_regmap_hw_write_start
-ffffffff8231d910 d event_regmap_hw_write_done
-ffffffff8231d9a0 d trace_event_fields_regcache_sync
-ffffffff8231da40 d trace_event_type_funcs_regcache_sync
-ffffffff8231da60 d print_fmt_regcache_sync
-ffffffff8231dab0 d event_regcache_sync
-ffffffff8231db40 d trace_event_fields_regmap_bool
-ffffffff8231dbb8 d trace_event_type_funcs_regmap_bool
-ffffffff8231dbe0 d print_fmt_regmap_bool
-ffffffff8231dc10 d event_regmap_cache_only
-ffffffff8231dca0 d event_regmap_cache_bypass
-ffffffff8231dd30 d trace_event_fields_regmap_async
-ffffffff8231dd80 d event_regmap_async_write_start
-ffffffff8231de10 d trace_event_type_funcs_regmap_async
-ffffffff8231de30 d print_fmt_regmap_async
-ffffffff8231de48 d event_regmap_async_io_complete
-ffffffff8231ded8 d event_regmap_async_complete_start
-ffffffff8231df68 d event_regmap_async_complete_done
-ffffffff8231e000 d trace_event_fields_regcache_drop_region
-ffffffff8231e0a0 d trace_event_type_funcs_regcache_drop_region
-ffffffff8231e0c0 d print_fmt_regcache_drop_region
-ffffffff8231e0f0 d event_regcache_drop_region
-ffffffff8231e180 d regcache_rbtree_ops
-ffffffff8231e1c8 d regcache_flat_ops
-ffffffff8231e210 d regmap_debugfs_early_lock
-ffffffff8231e230 d regmap_debugfs_early_list
-ffffffff8231e240 d platform_msi_devid_ida
-ffffffff8231e250 d dev_attr_physical_location.llvm.11709016535296654066
-ffffffff8231e280 d dev_attr_panel
-ffffffff8231e2a0 d dev_attr_vertical_position
-ffffffff8231e2c0 d dev_attr_horizontal_position
-ffffffff8231e2e0 d dev_attr_dock
-ffffffff8231e300 d dev_attr_lid
-ffffffff8231e320 d __SCK__tp_func_devres_log
-ffffffff8231e330 d trace_event_fields_devres
-ffffffff8231e448 d trace_event_type_funcs_devres
-ffffffff8231e470 d print_fmt_devres
-ffffffff8231e4d0 d event_devres_log
-ffffffff8231e560 d rd_nr
-ffffffff8231e568 d rd_size
-ffffffff8231e570 d max_part
-ffffffff8231e578 d brd_devices
-ffffffff8231e588 d max_loop
-ffffffff8231e58c d hw_queue_depth
-ffffffff8231e590 d loop_misc
-ffffffff8231e5e0 d loop_index_idr
-ffffffff8231e5f8 d loop_ctl_mutex
-ffffffff8231e618 d lo_write_bvec._rs
-ffffffff8231e640 d loop_attribute_group
-ffffffff8231e670 d loop_attrs
-ffffffff8231e6a8 d loop_attr_backing_file
-ffffffff8231e6c8 d loop_attr_offset
-ffffffff8231e6e8 d loop_attr_sizelimit
-ffffffff8231e708 d loop_attr_autoclear
-ffffffff8231e728 d loop_attr_partscan
-ffffffff8231e748 d loop_attr_dio
-ffffffff8231e768 d loop_validate_mutex
-ffffffff8231e788 d virtio_blk
-ffffffff8231e880 d features_legacy
-ffffffff8231e8b0 d vd_index_ida
-ffffffff8231e8c0 d virtblk_attr_groups
-ffffffff8231e8d0 d virtblk_attrs
-ffffffff8231e8e8 d dev_attr_cache_type
-ffffffff8231e908 d dev_attr_serial
-ffffffff8231e928 d num_devices
-ffffffff8231e930 d zram_control_class
-ffffffff8231e9a8 d zram_index_idr
-ffffffff8231e9c0 d zram_control_class_groups
-ffffffff8231e9d0 d zram_control_class_attrs
-ffffffff8231e9e8 d class_attr_hot_add
-ffffffff8231ea08 d class_attr_hot_remove
-ffffffff8231ea28 d zram_index_mutex
-ffffffff8231ea50 d zram_disk_groups
-ffffffff8231ea60 d zram_disk_attrs
-ffffffff8231eac8 d dev_attr_disksize
-ffffffff8231eae8 d dev_attr_initstate
-ffffffff8231eb08 d dev_attr_compact
-ffffffff8231eb28 d dev_attr_mem_limit
-ffffffff8231eb48 d dev_attr_mem_used_max
-ffffffff8231eb68 d dev_attr_idle
-ffffffff8231eb88 d dev_attr_max_comp_streams
-ffffffff8231eba8 d dev_attr_comp_algorithm
-ffffffff8231ebc8 d dev_attr_io_stat
-ffffffff8231ebe8 d dev_attr_mm_stat
-ffffffff8231ec08 d dev_attr_debug_stat
-ffffffff8231ec28 d syscon_list
-ffffffff8231ec38 d syscon_driver
-ffffffff8231ed00 d nvdimm_bus_attributes
-ffffffff8231ed20 d dev_attr_commands
-ffffffff8231ed40 d dev_attr_commands
-ffffffff8231ed60 d dev_attr_wait_probe
-ffffffff8231ed80 d dev_attr_provider
-ffffffff8231eda0 d nvdimm_bus_firmware_attributes
-ffffffff8231edb8 d dev_attr_activate
-ffffffff8231edd8 d dev_attr_activate
-ffffffff8231ee00 d nvdimm_bus_attribute_groups
-ffffffff8231ee18 d nvdimm_bus_list_mutex
-ffffffff8231ee38 d nvdimm_bus_list
-ffffffff8231ee48 d nd_ida
-ffffffff8231ee58 d nvdimm_bus_type
-ffffffff8231ef10 d nd_async_domain.llvm.15917668482514818688
-ffffffff8231ef30 d nd_device_attributes
-ffffffff8231ef50 d nd_numa_attributes
-ffffffff8231ef68 d nd_bus_driver
-ffffffff8231f020 d dev_attr_devtype
-ffffffff8231f040 d dev_attr_target_node
-ffffffff8231f060 d dev_attr_target_node
-ffffffff8231f080 d dimm_ida.llvm.13749472731363974932
-ffffffff8231f090 d nvdimm_attribute_groups.llvm.13749472731363974932
-ffffffff8231f0b0 d nvdimm_attributes
-ffffffff8231f0e8 d dev_attr_security
-ffffffff8231f108 d dev_attr_frozen
-ffffffff8231f128 d dev_attr_available_slots
-ffffffff8231f150 d nvdimm_firmware_attributes
-ffffffff8231f168 d dev_attr_result
-ffffffff8231f188 d nvdimm_pmu_format_group
-ffffffff8231f1b0 d nvdimm_pmu_events_group
-ffffffff8231f1e0 d nvdimm_pmu_format_attr
-ffffffff8231f1f0 d nvdimm_events_attr
-ffffffff8231f278 d event_attr_CTL_RES_CNT
-ffffffff8231f2a8 d event_attr_CTL_RES_TM
-ffffffff8231f2d8 d event_attr_POWERON_SECS
-ffffffff8231f308 d event_attr_MEM_LIFE
-ffffffff8231f338 d event_attr_CRI_RES_UTIL
-ffffffff8231f368 d event_attr_HOST_L_CNT
-ffffffff8231f398 d event_attr_HOST_S_CNT
-ffffffff8231f3c8 d event_attr_HOST_S_DUR
-ffffffff8231f3f8 d event_attr_HOST_L_DUR
-ffffffff8231f428 d event_attr_MED_R_CNT
-ffffffff8231f458 d event_attr_MED_W_CNT
-ffffffff8231f488 d event_attr_MED_R_DUR
-ffffffff8231f4b8 d event_attr_MED_W_DUR
-ffffffff8231f4e8 d event_attr_CACHE_RH_CNT
-ffffffff8231f518 d event_attr_CACHE_WH_CNT
-ffffffff8231f548 d event_attr_FAST_W_CNT
-ffffffff8231f578 d nvdimm_driver.llvm.18283442251517041340
-ffffffff8231f630 d nd_region_attribute_groups.llvm.2848778896877633854
-ffffffff8231f660 d nd_region_attributes
-ffffffff8231f6f0 d dev_attr_pfn_seed
-ffffffff8231f710 d dev_attr_dax_seed
-ffffffff8231f730 d dev_attr_deep_flush
-ffffffff8231f750 d dev_attr_persistence_domain
-ffffffff8231f770 d dev_attr_align
-ffffffff8231f790 d dev_attr_align
-ffffffff8231f7b0 d dev_attr_set_cookie
-ffffffff8231f7d0 d dev_attr_available_size
-ffffffff8231f7f0 d dev_attr_available_size
-ffffffff8231f810 d dev_attr_nstype
-ffffffff8231f830 d dev_attr_nstype
-ffffffff8231f850 d dev_attr_mappings
-ffffffff8231f870 d dev_attr_btt_seed
-ffffffff8231f890 d dev_attr_read_only
-ffffffff8231f8b0 d dev_attr_max_available_extent
-ffffffff8231f8d0 d dev_attr_namespace_seed
-ffffffff8231f8f0 d dev_attr_init_namespaces
-ffffffff8231f910 d mapping_attributes
-ffffffff8231fa18 d dev_attr_mapping0
-ffffffff8231fa38 d dev_attr_mapping1
-ffffffff8231fa58 d dev_attr_mapping2
-ffffffff8231fa78 d dev_attr_mapping3
-ffffffff8231fa98 d dev_attr_mapping4
-ffffffff8231fab8 d dev_attr_mapping5
-ffffffff8231fad8 d dev_attr_mapping6
-ffffffff8231faf8 d dev_attr_mapping7
-ffffffff8231fb18 d dev_attr_mapping8
-ffffffff8231fb38 d dev_attr_mapping9
-ffffffff8231fb58 d dev_attr_mapping10
-ffffffff8231fb78 d dev_attr_mapping11
-ffffffff8231fb98 d dev_attr_mapping12
-ffffffff8231fbb8 d dev_attr_mapping13
-ffffffff8231fbd8 d dev_attr_mapping14
-ffffffff8231fbf8 d dev_attr_mapping15
-ffffffff8231fc18 d dev_attr_mapping16
-ffffffff8231fc38 d dev_attr_mapping17
-ffffffff8231fc58 d dev_attr_mapping18
-ffffffff8231fc78 d dev_attr_mapping19
-ffffffff8231fc98 d dev_attr_mapping20
-ffffffff8231fcb8 d dev_attr_mapping21
-ffffffff8231fcd8 d dev_attr_mapping22
-ffffffff8231fcf8 d dev_attr_mapping23
-ffffffff8231fd18 d dev_attr_mapping24
-ffffffff8231fd38 d dev_attr_mapping25
-ffffffff8231fd58 d dev_attr_mapping26
-ffffffff8231fd78 d dev_attr_mapping27
-ffffffff8231fd98 d dev_attr_mapping28
-ffffffff8231fdb8 d dev_attr_mapping29
-ffffffff8231fdd8 d dev_attr_mapping30
-ffffffff8231fdf8 d dev_attr_mapping31
-ffffffff8231fe18 d nd_region_driver.llvm.9282635206396556747
-ffffffff8231fed0 d nd_namespace_attribute_groups
-ffffffff8231fef0 d nd_namespace_attribute_group
-ffffffff8231ff20 d nd_namespace_attributes
-ffffffff8231ff80 d dev_attr_holder
-ffffffff8231ffa0 d dev_attr_holder_class
-ffffffff8231ffc0 d dev_attr_force_raw
-ffffffff8231ffe0 d dev_attr_mode
-ffffffff82320000 d dev_attr_mode
-ffffffff82320020 d dev_attr_uuid
-ffffffff82320040 d dev_attr_uuid
-ffffffff82320060 d dev_attr_alt_name
-ffffffff82320080 d dev_attr_sector_size
-ffffffff823200a0 d dev_attr_sector_size
-ffffffff823200c0 d dev_attr_dpa_extents
-ffffffff823200e0 d nd_btt_attribute_groups.llvm.17839109793716951103
-ffffffff82320100 d nd_btt_attribute_group
-ffffffff82320130 d nd_btt_attributes
-ffffffff82320160 d dev_attr_namespace
-ffffffff82320180 d dev_attr_log_zero_flags
-ffffffff823201a0 d nd_pmem_driver
-ffffffff82320260 d pmem_attribute_groups
-ffffffff82320270 d dax_attributes
-ffffffff82320280 d dev_attr_write_cache
-ffffffff823202a0 d btt_freelist_init._rs
-ffffffff823202c8 d btt_map_read._rs
-ffffffff823202f0 d __btt_map_write._rs
-ffffffff82320318 d btt_submit_bio._rs
-ffffffff82320340 d btt_read_pg._rs
-ffffffff82320368 d of_pmem_region_driver
-ffffffff82320430 d dax_srcu
-ffffffff823205b0 d dax_minor_ida
-ffffffff823205c0 d dax_fs_type
-ffffffff82320610 d dax_region_attribute_groups
-ffffffff82320620 d dax_bus_type.llvm.5389007254773609688
-ffffffff823206d8 d dax_bus_lock
-ffffffff82320700 d dax_region_attributes
-ffffffff82320740 d dev_attr_create
-ffffffff82320760 d dev_attr_seed
-ffffffff82320780 d dev_attr_delete
-ffffffff823207a0 d dev_attr_region_size
-ffffffff823207c0 d dev_attr_region_align
-ffffffff823207e0 d dax_drv_groups
-ffffffff823207f0 d dax_drv_attrs
-ffffffff82320810 d dax_attribute_groups
-ffffffff82320820 d dev_dax_attributes
-ffffffff82320860 d dev_attr_mapping
-ffffffff82320880 d dax_mapping_type
-ffffffff823208b0 d dax_mapping_attribute_groups
-ffffffff823208c0 d dax_mapping_attributes
-ffffffff823208e0 d dev_attr_end
-ffffffff82320900 d dev_attr_page_offset
-ffffffff82320920 d dma_buf_fs_type
-ffffffff82320968 d __SCK__tp_func_dma_fence_emit
-ffffffff82320978 d __SCK__tp_func_dma_fence_init
-ffffffff82320988 d __SCK__tp_func_dma_fence_destroy
-ffffffff82320998 d __SCK__tp_func_dma_fence_enable_signal
-ffffffff823209a8 d __SCK__tp_func_dma_fence_signaled
-ffffffff823209b8 d __SCK__tp_func_dma_fence_wait_start
-ffffffff823209c8 d __SCK__tp_func_dma_fence_wait_end
-ffffffff823209e0 d trace_event_fields_dma_fence
-ffffffff82320aa8 d trace_event_type_funcs_dma_fence
-ffffffff82320ad0 d print_fmt_dma_fence
-ffffffff82320b40 d event_dma_fence_emit
-ffffffff82320bd0 d event_dma_fence_init
-ffffffff82320c60 d event_dma_fence_destroy
-ffffffff82320cf0 d event_dma_fence_enable_signal
-ffffffff82320d80 d event_dma_fence_signaled
-ffffffff82320e10 d event_dma_fence_wait_start
-ffffffff82320ea0 d event_dma_fence_wait_end
-ffffffff82320f30 d dma_fence_context_counter
-ffffffff82320f38 d reservation_ww_class
-ffffffff82320f58 d heap_list_lock
-ffffffff82320f78 d heap_list
-ffffffff82320f88 d dma_heap_minors
-ffffffff82320fa0 d dma_heap_sysfs_groups
-ffffffff82320fb0 d dma_heap_sysfs_attrs
-ffffffff82320fc0 d total_pools_kb_attr
-ffffffff82320fe0 d dma_buf_ktype
-ffffffff82321010 d dma_buf_stats_default_groups
-ffffffff82321020 d dma_buf_stats_default_attrs
-ffffffff82321038 d exporter_name_attribute
-ffffffff82321050 d size_attribute
-ffffffff82321068 d size_attribute
-ffffffff82321088 d uio_class
-ffffffff82321100 d uio_idr
-ffffffff82321118 d minor_lock
-ffffffff82321140 d uio_groups
-ffffffff82321150 d uio_attrs
-ffffffff82321170 d dev_attr_event
-ffffffff82321190 d map_attr_type
-ffffffff823211c0 d portio_attr_type
-ffffffff823211f0 d map_groups
-ffffffff82321200 d map_attrs
-ffffffff82321228 d name_attribute
-ffffffff82321248 d addr_attribute
-ffffffff82321268 d offset_attribute
-ffffffff82321290 d portio_groups
-ffffffff823212a0 d portio_attrs
-ffffffff823212c8 d portio_name_attribute
-ffffffff823212e8 d portio_start_attribute
-ffffffff82321308 d portio_size_attribute
-ffffffff82321328 d portio_porttype_attribute
-ffffffff82321348 d serio_mutex
-ffffffff82321368 d serio_bus
-ffffffff82321420 d serio_list
-ffffffff82321430 d serio_driver_groups
-ffffffff82321440 d serio_event_work
-ffffffff82321460 d serio_event_list
-ffffffff82321470 d serio_init_port.serio_no
-ffffffff82321480 d serio_device_attr_groups
-ffffffff823214a0 d serio_device_id_attrs
-ffffffff823214c8 d dev_attr_proto
-ffffffff823214e8 d dev_attr_extra
-ffffffff82321510 d serio_device_attrs
-ffffffff82321540 d dev_attr_drvctl
-ffffffff82321560 d dev_attr_bind_mode
-ffffffff82321580 d dev_attr_firmware_id
-ffffffff823215a0 d serio_driver_attrs
-ffffffff823215b8 d driver_attr_description
-ffffffff823215d8 d driver_attr_bind_mode
-ffffffff823215f8 d i8042_reset
-ffffffff82321600 d i8042_mutex
-ffffffff82321620 d i8042_driver
-ffffffff823216e8 d i8042_kbd_bind_notifier_block
-ffffffff82321700 d i8042_command_reg
-ffffffff82321704 d i8042_data_reg
-ffffffff82321708 d i8042_pnp_kbd_driver
-ffffffff823217d8 d i8042_pnp_aux_driver
-ffffffff823218a8 d serport_ldisc
-ffffffff82321938 d input_class
-ffffffff823219b0 d input_allocate_device.input_no
-ffffffff823219b8 d input_mutex
-ffffffff823219d8 d input_dev_list
-ffffffff823219e8 d input_handler_list
-ffffffff823219f8 d input_ida
-ffffffff82321a10 d input_dev_attr_groups
-ffffffff82321a40 d input_dev_attrs
-ffffffff82321a78 d dev_attr_phys
-ffffffff82321a98 d dev_attr_uniq
-ffffffff82321ab8 d dev_attr_properties
-ffffffff82321ad8 d dev_attr_inhibited
-ffffffff82321b00 d input_dev_id_attrs
-ffffffff82321b28 d dev_attr_bustype
-ffffffff82321b48 d dev_attr_product
-ffffffff82321b70 d input_dev_caps_attrs
-ffffffff82321bc0 d dev_attr_ev
-ffffffff82321be0 d dev_attr_key
-ffffffff82321c00 d dev_attr_rel
-ffffffff82321c20 d dev_attr_abs
-ffffffff82321c40 d dev_attr_msc
-ffffffff82321c60 d dev_attr_led
-ffffffff82321c80 d dev_attr_snd
-ffffffff82321ca0 d dev_attr_ff
-ffffffff82321cc0 d dev_attr_sw
-ffffffff82321ce0 d input_devices_poll_wait
-ffffffff82321d00 d input_poller_attrs
-ffffffff82321d20 d input_poller_attribute_group
-ffffffff82321d48 d dev_attr_poll
-ffffffff82321d68 d dev_attr_max
-ffffffff82321d88 d dev_attr_min
-ffffffff82321da8 d rtc_ida
-ffffffff82321db8 d rtc_hctosys_ret
-ffffffff82321dc0 d __SCK__tp_func_rtc_set_time
-ffffffff82321dd0 d __SCK__tp_func_rtc_read_time
-ffffffff82321de0 d __SCK__tp_func_rtc_set_alarm
-ffffffff82321df0 d __SCK__tp_func_rtc_read_alarm
-ffffffff82321e00 d __SCK__tp_func_rtc_irq_set_freq
-ffffffff82321e10 d __SCK__tp_func_rtc_irq_set_state
-ffffffff82321e20 d __SCK__tp_func_rtc_alarm_irq_enable
-ffffffff82321e30 d __SCK__tp_func_rtc_set_offset
-ffffffff82321e40 d __SCK__tp_func_rtc_read_offset
-ffffffff82321e50 d __SCK__tp_func_rtc_timer_enqueue
-ffffffff82321e60 d __SCK__tp_func_rtc_timer_dequeue
-ffffffff82321e70 d __SCK__tp_func_rtc_timer_fired
-ffffffff82321e80 d trace_event_fields_rtc_time_alarm_class
-ffffffff82321ef8 d trace_event_type_funcs_rtc_time_alarm_class
-ffffffff82321f20 d print_fmt_rtc_time_alarm_class
-ffffffff82321f48 d event_rtc_set_time
-ffffffff82321fd8 d event_rtc_read_time
-ffffffff82322068 d event_rtc_set_alarm
-ffffffff823220f8 d event_rtc_read_alarm
-ffffffff82322190 d trace_event_fields_rtc_irq_set_freq
-ffffffff82322208 d trace_event_type_funcs_rtc_irq_set_freq
-ffffffff82322230 d print_fmt_rtc_irq_set_freq
-ffffffff82322270 d event_rtc_irq_set_freq
-ffffffff82322300 d trace_event_fields_rtc_irq_set_state
-ffffffff82322378 d trace_event_type_funcs_rtc_irq_set_state
-ffffffff823223a0 d print_fmt_rtc_irq_set_state
-ffffffff823223f8 d event_rtc_irq_set_state
-ffffffff82322490 d trace_event_fields_rtc_alarm_irq_enable
-ffffffff82322508 d trace_event_type_funcs_rtc_alarm_irq_enable
-ffffffff82322530 d print_fmt_rtc_alarm_irq_enable
-ffffffff82322578 d event_rtc_alarm_irq_enable
-ffffffff82322610 d trace_event_fields_rtc_offset_class
-ffffffff82322688 d trace_event_type_funcs_rtc_offset_class
-ffffffff823226b0 d print_fmt_rtc_offset_class
-ffffffff823226e0 d event_rtc_set_offset
-ffffffff82322770 d event_rtc_read_offset
-ffffffff82322800 d trace_event_fields_rtc_timer_class
-ffffffff823228a0 d trace_event_type_funcs_rtc_timer_class
-ffffffff823228c0 d print_fmt_rtc_timer_class
-ffffffff82322918 d event_rtc_timer_enqueue
-ffffffff823229a8 d event_rtc_timer_dequeue
-ffffffff82322a38 d event_rtc_timer_fired
-ffffffff82322ad0 d rtc_attr_groups.llvm.14588617942274813063
-ffffffff82322ae0 d rtc_attr_group
-ffffffff82322b10 d rtc_attrs
-ffffffff82322b60 d dev_attr_wakealarm
-ffffffff82322b80 d dev_attr_offset
-ffffffff82322ba0 d dev_attr_offset
-ffffffff82322bc0 d dev_attr_date
-ffffffff82322be0 d dev_attr_time
-ffffffff82322c00 d dev_attr_since_epoch
-ffffffff82322c20 d dev_attr_max_user_freq
-ffffffff82322c40 d dev_attr_hctosys
-ffffffff82322c60 d cmos_pnp_driver
-ffffffff82322d30 d cmos_platform_driver
-ffffffff82322df8 d cmos_read_time._rs
-ffffffff82322e20 d psy_tzd_ops
-ffffffff82322ea0 d power_supply_attr_groups
-ffffffff82322eb0 d power_supply_attrs
-ffffffff823248d0 d power_supply_show_property._rs
-ffffffff823248f8 d __SCK__tp_func_thermal_temperature
-ffffffff82324908 d __SCK__tp_func_cdev_update
-ffffffff82324918 d __SCK__tp_func_thermal_zone_trip
-ffffffff82324928 d __SCK__tp_func_thermal_power_cpu_get_power_simple
-ffffffff82324938 d __SCK__tp_func_thermal_power_cpu_limit
-ffffffff82324950 d trace_event_fields_thermal_temperature
-ffffffff82324a18 d trace_event_type_funcs_thermal_temperature
-ffffffff82324a40 d print_fmt_thermal_temperature
-ffffffff82324ab0 d event_thermal_temperature
-ffffffff82324b40 d trace_event_fields_cdev_update
-ffffffff82324bb8 d trace_event_type_funcs_cdev_update
-ffffffff82324be0 d print_fmt_cdev_update
-ffffffff82324c18 d event_cdev_update
-ffffffff82324cb0 d trace_event_fields_thermal_zone_trip
-ffffffff82324d78 d trace_event_type_funcs_thermal_zone_trip
-ffffffff82324da0 d print_fmt_thermal_zone_trip
-ffffffff82324ea8 d event_thermal_zone_trip
-ffffffff82324f40 d trace_event_fields_thermal_power_cpu_get_power_simple
-ffffffff82324fb8 d trace_event_type_funcs_thermal_power_cpu_get_power_simple
-ffffffff82324fe0 d print_fmt_thermal_power_cpu_get_power_simple
-ffffffff82325008 d event_thermal_power_cpu_get_power_simple
-ffffffff823250a0 d trace_event_fields_thermal_power_cpu_limit
-ffffffff82325168 d trace_event_type_funcs_thermal_power_cpu_limit
-ffffffff82325190 d print_fmt_thermal_power_cpu_limit
-ffffffff82325200 d event_thermal_power_cpu_limit
-ffffffff82325290 d thermal_governor_lock
-ffffffff823252b0 d thermal_governor_list
-ffffffff823252c0 d thermal_list_lock
-ffffffff823252e0 d thermal_tz_list
-ffffffff823252f0 d thermal_cdev_list
-ffffffff82325300 d thermal_cdev_ida
-ffffffff82325310 d thermal_tz_ida
-ffffffff82325320 d thermal_class
-ffffffff82325398 d thermal_pm_nb
-ffffffff823253b0 d cooling_device_attr_groups
-ffffffff823253d0 d thermal_zone_dev_attrs
-ffffffff82325440 d dev_attr_temp
-ffffffff82325460 d dev_attr_emul_temp
-ffffffff82325480 d dev_attr_policy
-ffffffff823254a0 d dev_attr_available_policies
-ffffffff823254c0 d dev_attr_sustainable_power
-ffffffff823254e0 d dev_attr_k_po
-ffffffff82325500 d dev_attr_k_pu
-ffffffff82325520 d dev_attr_k_i
-ffffffff82325540 d dev_attr_k_d
-ffffffff82325560 d dev_attr_integral_cutoff
-ffffffff82325580 d dev_attr_slope
-ffffffff823255a0 d thermal_zone_mode_attrs
-ffffffff823255b0 d cooling_device_stats_attrs
-ffffffff823255d8 d dev_attr_total_trans
-ffffffff823255f8 d dev_attr_time_in_state_ms
-ffffffff82325618 d dev_attr_trans_table
-ffffffff82325640 d cooling_device_attrs
-ffffffff82325660 d dev_attr_cdev_type
-ffffffff82325680 d dev_attr_max_state
-ffffffff823256a0 d dev_attr_cur_state
-ffffffff823256c0 d thermal_gov_step_wise
-ffffffff82325700 d thermal_gov_user_space
-ffffffff82325740 d dev_attr_core_power_limit_count
-ffffffff82325760 d dev_attr_package_throttle_count
-ffffffff82325780 d dev_attr_package_throttle_max_time_ms
-ffffffff823257a0 d dev_attr_package_throttle_total_time_ms
-ffffffff823257c0 d dev_attr_package_power_limit_count
-ffffffff823257e0 d thermal_throttle_attrs
-ffffffff82325800 d dev_attr_core_throttle_count
-ffffffff82325820 d dev_attr_core_throttle_max_time_ms
-ffffffff82325840 d dev_attr_core_throttle_total_time_ms
-ffffffff82325860 d __SCK__tp_func_watchdog_start
-ffffffff82325870 d __SCK__tp_func_watchdog_ping
-ffffffff82325880 d __SCK__tp_func_watchdog_stop
-ffffffff82325890 d __SCK__tp_func_watchdog_set_timeout
-ffffffff823258a0 d trace_event_fields_watchdog_template
-ffffffff82325918 d trace_event_type_funcs_watchdog_template
-ffffffff82325940 d print_fmt_watchdog_template
-ffffffff82325968 d event_watchdog_start
-ffffffff823259f8 d event_watchdog_ping
-ffffffff82325a88 d event_watchdog_stop
-ffffffff82325b20 d trace_event_fields_watchdog_set_timeout
-ffffffff82325bc0 d trace_event_type_funcs_watchdog_set_timeout
-ffffffff82325be0 d print_fmt_watchdog_set_timeout
-ffffffff82325c20 d event_watchdog_set_timeout
-ffffffff82325cb0 d stop_on_reboot
-ffffffff82325cb8 d wtd_deferred_reg_mutex
-ffffffff82325cd8 d watchdog_ida
-ffffffff82325ce8 d wtd_deferred_reg_list
-ffffffff82325cf8 d handle_boot_enabled
-ffffffff82325d00 d watchdog_class
-ffffffff82325d78 d watchdog_miscdev
-ffffffff82325dc8 d dm_zone_map_bio_begin._rs
-ffffffff82325df0 d dm_zone_map_bio_end._rs
-ffffffff82325e18 d dm_zone_map_bio_end._rs.7
-ffffffff82325e40 d reserved_bio_based_ios
-ffffffff82325e48 d _minor_idr
-ffffffff82325e60 d dm_numa_node
-ffffffff82325e64 d swap_bios
-ffffffff82325e68 d deferred_remove_work
-ffffffff82325e88 d dm_global_eventq
-ffffffff82325ea0 d _event_lock
-ffffffff82325ec0 d _lock.llvm.14841493511807874612
-ffffffff82325ef0 d _targets
-ffffffff82325f00 d error_target
-ffffffff82325fe8 d linear_target
-ffffffff823260d0 d stripe_target
-ffffffff823261b8 d _dm_misc
-ffffffff82326208 d dm_hash_cells_mutex
-ffffffff82326228 d _hash_lock
-ffffffff82326258 d kcopyd_subjob_size_kb
-ffffffff82326260 d dm_ktype
-ffffffff82326290 d dm_groups
-ffffffff823262a0 d dm_attrs
-ffffffff823262d0 d dm_attr_name
-ffffffff823262f0 d dm_attr_uuid
-ffffffff82326310 d dm_attr_suspended
-ffffffff82326330 d dm_attr_use_blk_mq
-ffffffff82326350 d dm_attr_rq_based_seq_io_merge_deadline
-ffffffff82326370 d reserved_rq_based_ios.llvm.1764655114366602605
-ffffffff82326374 d use_blk_mq
-ffffffff82326378 d dm_mq_nr_hw_queues
-ffffffff8232637c d dm_mq_queue_depth
-ffffffff82326380 d dm_bufio_clients_lock
-ffffffff823263a0 d dm_bufio_all_clients
-ffffffff823263b0 d dm_bufio_max_age
-ffffffff823263b8 d dm_bufio_retain_bytes
-ffffffff823263c0 d global_queue
-ffffffff823263d0 d crypt_target
-ffffffff823264b8 d kcryptd_async_done._rs
-ffffffff823264e0 d crypt_convert_block_aead._rs
-ffffffff82326508 d verity_fec_decode._rs
-ffffffff82326530 d fec_decode_rsb._rs
-ffffffff82326558 d fec_read_bufs._rs
-ffffffff82326580 d fec_decode_bufs._rs
-ffffffff823265a8 d fec_decode_bufs._rs.34
-ffffffff823265d0 d dm_verity_prefetch_cluster
-ffffffff823265d8 d verity_target
-ffffffff823266c0 d verity_handle_err._rs
-ffffffff823266e8 d verity_map._rs
-ffffffff82326710 d verity_map._rs.61
-ffffffff82326738 d daemon_timeout_msec
-ffffffff82326740 d user_target
-ffffffff82326828 d edac_op_state
-ffffffff82326830 d mem_ctls_mutex
-ffffffff82326850 d mc_devices
-ffffffff82326860 d edac_layer_name
-ffffffff82326888 d device_ctls_mutex
-ffffffff823268a8 d edac_device_list
-ffffffff823268b8 d edac_mc_log_ue.llvm.535839469565872929
-ffffffff823268bc d edac_mc_log_ce.llvm.535839469565872929
-ffffffff823268c0 d edac_mc_poll_msec.llvm.535839469565872929
-ffffffff823268d0 d mci_attr_groups
-ffffffff823268e0 d mci_attrs
-ffffffff82326938 d dev_attr_sdram_scrub_rate
-ffffffff82326958 d dev_attr_reset_counters
-ffffffff82326978 d dev_attr_mc_name
-ffffffff82326998 d dev_attr_size_mb
-ffffffff823269b8 d dev_attr_seconds_since_reset
-ffffffff823269d8 d dev_attr_ue_noinfo_count
-ffffffff823269f8 d dev_attr_ce_noinfo_count
-ffffffff82326a18 d dev_attr_ue_count
-ffffffff82326a38 d dev_attr_ce_count
-ffffffff82326a58 d dev_attr_max_location
-ffffffff82326a80 d dimm_attr_groups
-ffffffff82326a90 d dimm_attrs
-ffffffff82326ad8 d dev_attr_dimm_label
-ffffffff82326af8 d dev_attr_dimm_location
-ffffffff82326b18 d dev_attr_dimm_mem_type
-ffffffff82326b38 d dev_attr_dimm_dev_type
-ffffffff82326b58 d dev_attr_dimm_edac_mode
-ffffffff82326b78 d dev_attr_dimm_ce_count
-ffffffff82326b98 d dev_attr_dimm_ue_count
-ffffffff82326bc0 d csrow_dev_groups
-ffffffff82326be0 d csrow_attr_groups
-ffffffff82326bf0 d csrow_attrs
-ffffffff82326c28 d dev_attr_legacy_dev_type
-ffffffff82326c48 d dev_attr_legacy_mem_type
-ffffffff82326c68 d dev_attr_legacy_edac_mode
-ffffffff82326c88 d dev_attr_legacy_size_mb
-ffffffff82326ca8 d dev_attr_legacy_ue_count
-ffffffff82326cc8 d dev_attr_legacy_ce_count
-ffffffff82326cf0 d dynamic_csrow_dimm_attr
-ffffffff82326d58 d dev_attr_legacy_ch0_dimm_label
-ffffffff82326d80 d dev_attr_legacy_ch1_dimm_label
-ffffffff82326da8 d dev_attr_legacy_ch2_dimm_label
-ffffffff82326dd0 d dev_attr_legacy_ch3_dimm_label
-ffffffff82326df8 d dev_attr_legacy_ch4_dimm_label
-ffffffff82326e20 d dev_attr_legacy_ch5_dimm_label
-ffffffff82326e48 d dev_attr_legacy_ch6_dimm_label
-ffffffff82326e70 d dev_attr_legacy_ch7_dimm_label
-ffffffff82326e98 d dev_attr_legacy_ch8_dimm_label
-ffffffff82326ec0 d dev_attr_legacy_ch9_dimm_label
-ffffffff82326ee8 d dev_attr_legacy_ch10_dimm_label
-ffffffff82326f10 d dev_attr_legacy_ch11_dimm_label
-ffffffff82326f40 d dynamic_csrow_ce_count_attr
-ffffffff82326fa8 d dev_attr_legacy_ch0_ce_count
-ffffffff82326fd0 d dev_attr_legacy_ch1_ce_count
-ffffffff82326ff8 d dev_attr_legacy_ch2_ce_count
-ffffffff82327020 d dev_attr_legacy_ch3_ce_count
-ffffffff82327048 d dev_attr_legacy_ch4_ce_count
-ffffffff82327070 d dev_attr_legacy_ch5_ce_count
-ffffffff82327098 d dev_attr_legacy_ch6_ce_count
-ffffffff823270c0 d dev_attr_legacy_ch7_ce_count
-ffffffff823270e8 d dev_attr_legacy_ch8_ce_count
-ffffffff82327110 d dev_attr_legacy_ch9_ce_count
-ffffffff82327138 d dev_attr_legacy_ch10_ce_count
-ffffffff82327160 d dev_attr_legacy_ch11_ce_count
-ffffffff82327188 d edac_subsys.llvm.8385697811811852941
-ffffffff82327240 d ktype_device_ctrl
-ffffffff82327270 d device_ctrl_groups
-ffffffff82327280 d device_ctrl_attrs
-ffffffff823272a8 d attr_ctl_info_panic_on_ue
-ffffffff823272c8 d attr_ctl_info_log_ue
-ffffffff823272e8 d attr_ctl_info_log_ce
-ffffffff82327308 d attr_ctl_info_poll_msec
-ffffffff82327328 d ktype_instance_ctrl
-ffffffff82327360 d device_instance_groups
-ffffffff82327370 d device_instance_attrs
-ffffffff82327388 d attr_instance_ce_count
-ffffffff823273a8 d attr_instance_ue_count
-ffffffff823273c8 d ktype_block_ctrl
-ffffffff82327400 d device_block_groups
-ffffffff82327410 d device_block_attrs
-ffffffff82327428 d attr_block_ce_count
-ffffffff82327458 d attr_block_ue_count
-ffffffff82327488 d edac_pci_ctls_mutex
-ffffffff823274a8 d edac_pci_list
-ffffffff823274b8 d ktype_edac_pci_main_kobj
-ffffffff823274f0 d edac_pci_groups
-ffffffff82327500 d edac_pci_attrs
-ffffffff82327538 d edac_pci_attr_check_pci_errors
-ffffffff82327560 d edac_pci_attr_edac_pci_log_pe
-ffffffff82327588 d edac_pci_attr_edac_pci_log_npe
-ffffffff823275b0 d edac_pci_attr_edac_pci_panic_on_pe
-ffffffff823275d8 d edac_pci_attr_pci_parity_count
-ffffffff82327600 d edac_pci_attr_pci_nonparity_count
-ffffffff82327628 d edac_pci_log_pe
-ffffffff8232762c d edac_pci_log_npe
-ffffffff82327630 d ktype_pci_instance
-ffffffff82327660 d pci_instance_groups
-ffffffff82327670 d pci_instance_attrs
-ffffffff82327688 d attr_instance_pe_count
-ffffffff823276a8 d attr_instance_npe_count
-ffffffff823276c8 d cpufreq_fast_switch_lock
-ffffffff823276e8 d cpufreq_policy_list
-ffffffff823276f8 d cpufreq_transition_notifier_list
-ffffffff823278a0 d cpufreq_policy_notifier_list
-ffffffff823278d8 d cpufreq_governor_mutex
-ffffffff823278f8 d cpufreq_governor_list
-ffffffff82327908 d cpufreq_interface
-ffffffff82327938 d boost
-ffffffff82327958 d ktype_cpufreq
-ffffffff82327990 d cpufreq_groups
-ffffffff823279a0 d cpufreq_attrs
-ffffffff82327a00 d cpuinfo_min_freq
-ffffffff82327a20 d cpuinfo_max_freq
-ffffffff82327a40 d cpuinfo_transition_latency
-ffffffff82327a60 d scaling_min_freq
-ffffffff82327a80 d scaling_max_freq
-ffffffff82327aa0 d affected_cpus
-ffffffff82327ac0 d related_cpus
-ffffffff82327ae0 d scaling_governor
-ffffffff82327b00 d scaling_driver
-ffffffff82327b20 d scaling_available_governors
-ffffffff82327b40 d scaling_setspeed
-ffffffff82327b60 d cpuinfo_cur_freq
-ffffffff82327b80 d scaling_cur_freq
-ffffffff82327ba0 d bios_limit
-ffffffff82327bc0 d cpufreq_freq_attr_scaling_available_freqs
-ffffffff82327be0 d cpufreq_freq_attr_scaling_boost_freqs
-ffffffff82327c00 d cpufreq_generic_attr
-ffffffff82327c10 d total_trans
-ffffffff82327c30 d time_in_state
-ffffffff82327c50 d reset
-ffffffff82327c70 d trans_table
-ffffffff82327c90 d cpufreq_gov_performance
-ffffffff82327cf8 d cpufreq_gov_powersave
-ffffffff82327d60 d cs_governor
-ffffffff82327e30 d cs_groups
-ffffffff82327e40 d cs_attrs
-ffffffff82327e78 d sampling_rate
-ffffffff82327e98 d sampling_down_factor
-ffffffff82327eb8 d up_threshold
-ffffffff82327ed8 d down_threshold
-ffffffff82327ef8 d ignore_nice_load
-ffffffff82327f18 d freq_step
-ffffffff82327f38 d gov_dbs_data_mutex
-ffffffff82327f58 d core_funcs
-ffffffff82327fa0 d hwp_cpufreq_attrs
-ffffffff82327fc0 d intel_pstate
-ffffffff82328090 d intel_cpufreq
-ffffffff82328160 d epp_values
-ffffffff82328178 d intel_pstate_driver_lock
-ffffffff82328198 d energy_performance_preference
-ffffffff823281b8 d energy_performance_available_preferences
-ffffffff823281d8 d base_frequency
-ffffffff823281f8 d intel_pstate_limits_lock
-ffffffff82328218 d intel_pstate_set_itmt_prio.min_highest_perf
-ffffffff82328220 d sched_itmt_work
-ffffffff82328240 d turbo_pct
-ffffffff82328260 d num_pstates
-ffffffff82328280 d max_perf_pct
-ffffffff823282a0 d min_perf_pct
-ffffffff823282c0 d energy_efficiency
-ffffffff823282e0 d intel_pstate_attributes
-ffffffff823282f8 d status
-ffffffff82328318 d no_turbo
-ffffffff82328338 d hwp_dynamic_boost
-ffffffff82328358 d cpuidle_detected_devices
-ffffffff82328368 d cpuidle_lock
-ffffffff82328388 d cpuidle_governors
-ffffffff82328398 d cpuidle_attr_group.llvm.550210760162619987
-ffffffff823283c0 d ktype_cpuidle
-ffffffff823283f0 d cpuidle_attrs
-ffffffff82328418 d dev_attr_available_governors
-ffffffff82328438 d dev_attr_current_driver
-ffffffff82328458 d dev_attr_current_governor
-ffffffff82328478 d dev_attr_current_governor_ro
-ffffffff82328498 d ktype_state_cpuidle
-ffffffff823284d0 d cpuidle_state_default_groups
-ffffffff823284e0 d cpuidle_state_default_attrs
-ffffffff82328548 d attr_name
-ffffffff82328568 d attr_desc
-ffffffff82328588 d attr_latency
-ffffffff823285a8 d attr_residency
-ffffffff823285c8 d attr_power
-ffffffff823285e8 d attr_usage
-ffffffff82328608 d attr_rejected
-ffffffff82328628 d attr_time
-ffffffff82328648 d attr_disable
-ffffffff82328668 d attr_above
-ffffffff82328688 d attr_below
-ffffffff823286a8 d attr_default_status
-ffffffff823286d0 d cpuidle_state_s2idle_attrs
-ffffffff823286e8 d attr_s2idle_usage
-ffffffff82328708 d attr_s2idle_time
-ffffffff82328728 d menu_governor
-ffffffff82328770 d haltpoll_driver
-ffffffff82328bb0 d dmi_devices
-ffffffff82328bc0 d bin_attr_smbios_entry_point
-ffffffff82328c00 d bin_attr_DMI
-ffffffff82328c40 d dmi_class
-ffffffff82328cc0 d sys_dmi_attribute_groups
-ffffffff82328cd0 d sys_dmi_bios_vendor_attr
-ffffffff82328cf8 d sys_dmi_bios_version_attr
-ffffffff82328d20 d sys_dmi_bios_date_attr
-ffffffff82328d48 d sys_dmi_bios_release_attr
-ffffffff82328d70 d sys_dmi_ec_firmware_release_attr
-ffffffff82328d98 d sys_dmi_sys_vendor_attr
-ffffffff82328dc0 d sys_dmi_product_name_attr
-ffffffff82328de8 d sys_dmi_product_version_attr
-ffffffff82328e10 d sys_dmi_product_serial_attr
-ffffffff82328e38 d sys_dmi_product_uuid_attr
-ffffffff82328e60 d sys_dmi_product_family_attr
-ffffffff82328e88 d sys_dmi_product_sku_attr
-ffffffff82328eb0 d sys_dmi_board_vendor_attr
-ffffffff82328ed8 d sys_dmi_board_name_attr
-ffffffff82328f00 d sys_dmi_board_version_attr
-ffffffff82328f28 d sys_dmi_board_serial_attr
-ffffffff82328f50 d sys_dmi_board_asset_tag_attr
-ffffffff82328f78 d sys_dmi_chassis_vendor_attr
-ffffffff82328fa0 d sys_dmi_chassis_type_attr
-ffffffff82328fc8 d sys_dmi_chassis_version_attr
-ffffffff82328ff0 d sys_dmi_chassis_serial_attr
-ffffffff82329018 d sys_dmi_chassis_asset_tag_attr
-ffffffff82329040 d sys_dmi_modalias_attr
-ffffffff82329060 d sys_dmi_attribute_group
-ffffffff82329088 d map_entries
-ffffffff82329098 d map_entries_bootmem
-ffffffff823290b0 d def_groups
-ffffffff823290c0 d def_groups
-ffffffff823290d0 d def_attrs
-ffffffff823290f0 d def_attrs
-ffffffff82329120 d memmap_start_attr
-ffffffff82329138 d memmap_end_attr
-ffffffff82329150 d memmap_type_attr
-ffffffff82329168 d efi_mm
-ffffffff82329560 d efi_subsys_attrs
-ffffffff82329590 d efi_attr_systab
-ffffffff823295b0 d efi_attr_fw_platform_size
-ffffffff823295d0 d efivars_lock
-ffffffff823295e8 d efi_reboot_quirk_mode
-ffffffff823295f0 d esrt_attrs
-ffffffff82329610 d esrt_fw_resource_count
-ffffffff82329630 d esrt_fw_resource_count_max
-ffffffff82329650 d esrt_fw_resource_version
-ffffffff82329670 d esre1_ktype
-ffffffff823296a0 d entry_list
-ffffffff823296b0 d esre1_groups
-ffffffff823296c0 d esre1_attrs
-ffffffff82329700 d esre_fw_class
-ffffffff82329720 d esre_fw_type
-ffffffff82329740 d esre_fw_version
-ffffffff82329760 d esre_lowest_supported_fw_version
-ffffffff82329780 d esre_capsule_flags
-ffffffff823297a0 d esre_last_attempt_version
-ffffffff823297c0 d esre_last_attempt_status
-ffffffff823297e0 d map_type_attr
-ffffffff823297f8 d map_phys_addr_attr
-ffffffff82329810 d map_virt_addr_attr
-ffffffff82329828 d map_num_pages_attr
-ffffffff82329840 d map_attribute_attr
-ffffffff82329858 d efi_call_virt_check_flags._rs
-ffffffff82329880 d efi_runtime_lock
-ffffffff82329898 d clocksource_acpi_pm
-ffffffff82329980 d i8253_clockevent
-ffffffff82329a80 d aliases_lookup
-ffffffff82329a90 d of_mutex
-ffffffff82329ab0 d of_node_ktype
-ffffffff82329ae0 d of_busses
-ffffffff82329ba0 d con_mutex
-ffffffff82329bc0 d mbox_cons
-ffffffff82329bd0 d pcc_mbox_driver
-ffffffff82329c98 d __SCK__tp_func_mc_event
-ffffffff82329ca8 d __SCK__tp_func_arm_event
-ffffffff82329cb8 d __SCK__tp_func_non_standard_event
-ffffffff82329cc8 d __SCK__tp_func_aer_event
-ffffffff82329ce0 d trace_event_fields_mc_event
-ffffffff82329ee8 d trace_event_type_funcs_mc_event
-ffffffff82329f10 d print_fmt_mc_event
-ffffffff8232a0c8 d event_mc_event
-ffffffff8232a160 d trace_event_fields_arm_event
-ffffffff8232a250 d trace_event_type_funcs_arm_event
-ffffffff8232a270 d print_fmt_arm_event
-ffffffff8232a318 d event_arm_event
-ffffffff8232a3b0 d trace_event_fields_non_standard_event
-ffffffff8232a4c8 d trace_event_type_funcs_non_standard_event
-ffffffff8232a4f0 d print_fmt_non_standard_event
-ffffffff8232a5b0 d event_non_standard_event
-ffffffff8232a640 d trace_event_fields_aer_event
-ffffffff8232a730 d trace_event_type_funcs_aer_event
-ffffffff8232a750 d print_fmt_aer_event
-ffffffff8232ac20 d event_aer_event
-ffffffff8232acb0 d nvmem_notifier
-ffffffff8232ace8 d nvmem_ida
-ffffffff8232acf8 d nvmem_bus_type
-ffffffff8232adb0 d nvmem_dev_groups
-ffffffff8232adc0 d nvmem_cell_mutex
-ffffffff8232ade0 d nvmem_cell_tables
-ffffffff8232adf0 d nvmem_lookup_mutex
-ffffffff8232ae10 d nvmem_lookup_list
-ffffffff8232ae20 d nvmem_attrs
-ffffffff8232ae30 d nvmem_bin_attributes
-ffffffff8232ae40 d bin_attr_rw_nvmem
-ffffffff8232ae80 d bin_attr_nvmem_eeprom_compat
-ffffffff8232aec0 d nvmem_mutex
-ffffffff8232aee0 d br_ioctl_mutex
-ffffffff8232af00 d vlan_ioctl_mutex
-ffffffff8232af20 d sock_fs_type
-ffffffff8232af70 d sockfs_xattr_handlers
-ffffffff8232af88 d proto_list_mutex
-ffffffff8232afa8 d proto_list
-ffffffff8232afb8 d net_inuse_ops
-ffffffff8232aff8 d net_rwsem
-ffffffff8232b028 d first_device.llvm.11034435689234402693
-ffffffff8232b030 d pernet_list
-ffffffff8232b040 d net_defaults_ops
-ffffffff8232b080 d max_gen_ptrs
-ffffffff8232b0c0 d net_cookie
-ffffffff8232b140 d net_generic_ids
-ffffffff8232b150 d net_namespace_list
-ffffffff8232b160 d pernet_ops_rwsem
-ffffffff8232b190 d ts_secret_init.___once_key
-ffffffff8232b1a0 d net_secret_init.___once_key
-ffffffff8232b1b0 d __flow_hash_secret_init.___once_key
-ffffffff8232b1c0 d net_core_table
-ffffffff8232b940 d min_sndbuf
-ffffffff8232b944 d min_rcvbuf
-ffffffff8232b948 d max_skb_frags
-ffffffff8232b94c d int_3600
-ffffffff8232b950 d proc_do_dev_weight.dev_weight_mutex
-ffffffff8232b970 d rps_sock_flow_sysctl.sock_flow_mutex
-ffffffff8232b990 d flow_limit_update_mutex
-ffffffff8232b9b0 d netns_core_table
-ffffffff8232ba70 d devnet_rename_sem
-ffffffff8232baa0 d ifalias_mutex
-ffffffff8232bac0 d netstamp_work
-ffffffff8232bae0 d xps_map_mutex
-ffffffff8232bb00 d dev_addr_sem.llvm.7372871604328025957
-ffffffff8232bb30 d napi_gen_id
-ffffffff8232bb38 d net_todo_list
-ffffffff8232bb48 d netdev_unregistering_wq
-ffffffff8232bb60 d dst_alloc._rs
-ffffffff8232bbc0 d dst_blackhole_ops
-ffffffff8232bc80 d unres_qlen_max
-ffffffff8232bc88 d rtnl_mutex.llvm.3271695376387194793
-ffffffff8232bca8 d link_ops
-ffffffff8232bcb8 d rtnl_af_ops
-ffffffff8232bcc8 d rtnetlink_net_ops
-ffffffff8232bd08 d rtnetlink_dev_notifier
-ffffffff8232bd20 d net_ratelimit_state
-ffffffff8232bd48 d lweventlist
-ffffffff8232bd58 d linkwatch_work
-ffffffff8232bdb0 d nf_conn_btf_access_lock
-ffffffff8232be00 d sock_cookie
-ffffffff8232be80 d sock_diag_table_mutex.llvm.16474778372402532622
-ffffffff8232bea0 d diag_net_ops
-ffffffff8232bee0 d sock_diag_mutex
-ffffffff8232bf00 d reuseport_ida
-ffffffff8232bf10 d fib_notifier_net_ops
-ffffffff8232bf50 d mem_id_lock
-ffffffff8232bf70 d mem_id_pool
-ffffffff8232bf80 d mem_id_next
-ffffffff8232bf88 d flow_indr_block_lock
-ffffffff8232bfa8 d flow_block_indr_dev_list
-ffffffff8232bfb8 d flow_block_indr_list
-ffffffff8232bfc8 d flow_indir_dev_list
-ffffffff8232bfe0 d rx_queue_default_groups
-ffffffff8232bff0 d store_rps_map.rps_map_mutex
-ffffffff8232c010 d netdev_queue_default_groups
-ffffffff8232c020 d net_class_groups
-ffffffff8232c030 d dev_attr_netdev_group
-ffffffff8232c050 d dev_attr_dev_id
-ffffffff8232c070 d dev_attr_dev_port
-ffffffff8232c090 d dev_attr_iflink
-ffffffff8232c0b0 d dev_attr_ifindex
-ffffffff8232c0d0 d dev_attr_name_assign_type
-ffffffff8232c0f0 d dev_attr_addr_assign_type
-ffffffff8232c110 d dev_attr_addr_len
-ffffffff8232c130 d dev_attr_link_mode
-ffffffff8232c150 d dev_attr_address
-ffffffff8232c170 d dev_attr_broadcast
-ffffffff8232c190 d dev_attr_speed
-ffffffff8232c1b0 d dev_attr_duplex
-ffffffff8232c1d0 d dev_attr_dormant
-ffffffff8232c1f0 d dev_attr_testing
-ffffffff8232c210 d dev_attr_operstate
-ffffffff8232c230 d dev_attr_carrier_changes
-ffffffff8232c250 d dev_attr_ifalias
-ffffffff8232c270 d dev_attr_carrier
-ffffffff8232c290 d dev_attr_mtu
-ffffffff8232c2b0 d dev_attr_tx_queue_len
-ffffffff8232c2d0 d dev_attr_gro_flush_timeout
-ffffffff8232c2f0 d dev_attr_napi_defer_hard_irqs
-ffffffff8232c310 d dev_attr_phys_port_id
-ffffffff8232c330 d dev_attr_phys_port_name
-ffffffff8232c350 d dev_attr_phys_switch_id
-ffffffff8232c370 d dev_attr_proto_down
-ffffffff8232c390 d dev_attr_carrier_up_count
-ffffffff8232c3b0 d dev_attr_carrier_down_count
-ffffffff8232c3d0 d dev_attr_threaded
-ffffffff8232c3f0 d dev_attr_rx_packets
-ffffffff8232c410 d dev_attr_tx_packets
-ffffffff8232c430 d dev_attr_rx_bytes
-ffffffff8232c450 d dev_attr_tx_bytes
-ffffffff8232c470 d dev_attr_rx_errors
-ffffffff8232c490 d dev_attr_tx_errors
-ffffffff8232c4b0 d dev_attr_rx_dropped
-ffffffff8232c4d0 d dev_attr_tx_dropped
-ffffffff8232c4f0 d dev_attr_multicast
-ffffffff8232c510 d dev_attr_collisions
-ffffffff8232c530 d dev_attr_rx_length_errors
-ffffffff8232c550 d dev_attr_rx_over_errors
-ffffffff8232c570 d dev_attr_rx_crc_errors
-ffffffff8232c590 d dev_attr_rx_frame_errors
-ffffffff8232c5b0 d dev_attr_rx_fifo_errors
-ffffffff8232c5d0 d dev_attr_rx_missed_errors
-ffffffff8232c5f0 d dev_attr_tx_aborted_errors
-ffffffff8232c610 d dev_attr_tx_carrier_errors
-ffffffff8232c630 d dev_attr_tx_fifo_errors
-ffffffff8232c650 d dev_attr_tx_heartbeat_errors
-ffffffff8232c670 d dev_attr_tx_window_errors
-ffffffff8232c690 d dev_attr_rx_compressed
-ffffffff8232c6b0 d dev_attr_tx_compressed
-ffffffff8232c6d0 d dev_attr_rx_nohandler
-ffffffff8232c6f0 d fib_rules_net_ops
-ffffffff8232c730 d fib_rules_notifier
-ffffffff8232c748 d __SCK__tp_func_kfree_skb
-ffffffff8232c758 d __SCK__tp_func_consume_skb
-ffffffff8232c768 d __SCK__tp_func_skb_copy_datagram_iovec
-ffffffff8232c780 d trace_event_fields_kfree_skb
-ffffffff8232c848 d trace_event_type_funcs_kfree_skb
-ffffffff8232c870 d print_fmt_kfree_skb
-ffffffff8232d590 d event_kfree_skb
-ffffffff8232d620 d trace_event_fields_consume_skb
-ffffffff8232d670 d trace_event_type_funcs_consume_skb
-ffffffff8232d690 d print_fmt_consume_skb
-ffffffff8232d6b0 d event_consume_skb
-ffffffff8232d740 d trace_event_fields_skb_copy_datagram_iovec
-ffffffff8232d7b8 d trace_event_type_funcs_skb_copy_datagram_iovec
-ffffffff8232d7e0 d print_fmt_skb_copy_datagram_iovec
-ffffffff8232d810 d event_skb_copy_datagram_iovec
-ffffffff8232d8a0 d __SCK__tp_func_net_dev_start_xmit
-ffffffff8232d8b0 d __SCK__tp_func_net_dev_xmit
-ffffffff8232d8c0 d __SCK__tp_func_net_dev_xmit_timeout
-ffffffff8232d8d0 d __SCK__tp_func_net_dev_queue
-ffffffff8232d8e0 d __SCK__tp_func_netif_receive_skb
-ffffffff8232d8f0 d __SCK__tp_func_netif_rx
-ffffffff8232d900 d __SCK__tp_func_napi_gro_frags_entry
-ffffffff8232d910 d __SCK__tp_func_napi_gro_receive_entry
-ffffffff8232d920 d __SCK__tp_func_netif_receive_skb_entry
-ffffffff8232d930 d __SCK__tp_func_netif_receive_skb_list_entry
-ffffffff8232d940 d __SCK__tp_func_netif_rx_entry
-ffffffff8232d950 d __SCK__tp_func_napi_gro_frags_exit
-ffffffff8232d960 d __SCK__tp_func_napi_gro_receive_exit
-ffffffff8232d970 d __SCK__tp_func_netif_receive_skb_exit
-ffffffff8232d980 d __SCK__tp_func_netif_rx_exit
-ffffffff8232d990 d __SCK__tp_func_netif_receive_skb_list_exit
-ffffffff8232d9a0 d trace_event_fields_net_dev_start_xmit
-ffffffff8232dc70 d trace_event_type_funcs_net_dev_start_xmit
-ffffffff8232dc90 d print_fmt_net_dev_start_xmit
-ffffffff8232deb0 d event_net_dev_start_xmit
-ffffffff8232df40 d trace_event_fields_net_dev_xmit
-ffffffff8232e008 d trace_event_type_funcs_net_dev_xmit
-ffffffff8232e030 d print_fmt_net_dev_xmit
-ffffffff8232e088 d event_net_dev_xmit
-ffffffff8232e120 d trace_event_fields_net_dev_xmit_timeout
-ffffffff8232e1c0 d trace_event_type_funcs_net_dev_xmit_timeout
-ffffffff8232e1e0 d print_fmt_net_dev_xmit_timeout
-ffffffff8232e238 d event_net_dev_xmit_timeout
-ffffffff8232e2d0 d trace_event_fields_net_dev_template
-ffffffff8232e370 d trace_event_type_funcs_net_dev_template
-ffffffff8232e390 d print_fmt_net_dev_template
-ffffffff8232e3d8 d event_net_dev_queue
-ffffffff8232e468 d event_netif_receive_skb
-ffffffff8232e4f8 d event_netif_rx
-ffffffff8232e590 d trace_event_fields_net_dev_rx_verbose_template
-ffffffff8232e8b0 d trace_event_type_funcs_net_dev_rx_verbose_template
-ffffffff8232e8d0 d print_fmt_net_dev_rx_verbose_template
-ffffffff8232eaf8 d event_napi_gro_frags_entry
-ffffffff8232eb88 d event_napi_gro_receive_entry
-ffffffff8232ec18 d event_netif_receive_skb_entry
-ffffffff8232eca8 d event_netif_receive_skb_list_entry
-ffffffff8232ed38 d event_netif_rx_entry
-ffffffff8232edd0 d trace_event_fields_net_dev_rx_exit_template
-ffffffff8232ee20 d trace_event_type_funcs_net_dev_rx_exit_template
-ffffffff8232ee40 d print_fmt_net_dev_rx_exit_template
-ffffffff8232ee58 d event_napi_gro_frags_exit
-ffffffff8232eee8 d event_napi_gro_receive_exit
-ffffffff8232ef78 d event_netif_receive_skb_exit
-ffffffff8232f008 d event_netif_rx_exit
-ffffffff8232f098 d event_netif_receive_skb_list_exit
-ffffffff8232f128 d __SCK__tp_func_napi_poll
-ffffffff8232f140 d trace_event_fields_napi_poll
-ffffffff8232f208 d trace_event_type_funcs_napi_poll
-ffffffff8232f230 d print_fmt_napi_poll
-ffffffff8232f2a8 d event_napi_poll
-ffffffff8232f338 d __SCK__tp_func_sock_rcvqueue_full
-ffffffff8232f348 d __SCK__tp_func_sock_exceed_buf_limit
-ffffffff8232f358 d __SCK__tp_func_inet_sock_set_state
-ffffffff8232f368 d __SCK__tp_func_inet_sk_error_report
-ffffffff8232f380 d trace_event_fields_sock_rcvqueue_full
-ffffffff8232f420 d trace_event_type_funcs_sock_rcvqueue_full
-ffffffff8232f440 d print_fmt_sock_rcvqueue_full
-ffffffff8232f4a0 d event_sock_rcvqueue_full
-ffffffff8232f530 d trace_event_fields_sock_exceed_buf_limit
-ffffffff8232f6c0 d trace_event_type_funcs_sock_exceed_buf_limit
-ffffffff8232f6e0 d print_fmt_sock_exceed_buf_limit
-ffffffff8232f860 d event_sock_exceed_buf_limit
-ffffffff8232f8f0 d trace_event_fields_inet_sock_set_state
-ffffffff8232fad0 d trace_event_type_funcs_inet_sock_set_state
-ffffffff8232faf0 d print_fmt_inet_sock_set_state
-ffffffff82330030 d event_inet_sock_set_state
-ffffffff823300c0 d trace_event_fields_inet_sk_error_report
-ffffffff82330250 d trace_event_type_funcs_inet_sk_error_report
-ffffffff82330270 d print_fmt_inet_sk_error_report
-ffffffff82330420 d event_inet_sk_error_report
-ffffffff823304b0 d __SCK__tp_func_udp_fail_queue_rcv_skb
-ffffffff823304c0 d trace_event_fields_udp_fail_queue_rcv_skb
-ffffffff82330538 d trace_event_type_funcs_udp_fail_queue_rcv_skb
-ffffffff82330560 d print_fmt_udp_fail_queue_rcv_skb
-ffffffff82330588 d event_udp_fail_queue_rcv_skb
-ffffffff82330618 d __SCK__tp_func_tcp_retransmit_skb
-ffffffff82330628 d __SCK__tp_func_tcp_send_reset
-ffffffff82330638 d __SCK__tp_func_tcp_receive_reset
-ffffffff82330648 d __SCK__tp_func_tcp_destroy_sock
-ffffffff82330658 d __SCK__tp_func_tcp_rcv_space_adjust
-ffffffff82330668 d __SCK__tp_func_tcp_retransmit_synack
-ffffffff82330678 d __SCK__tp_func_tcp_probe
-ffffffff82330688 d __SCK__tp_func_tcp_bad_csum
-ffffffff82330698 d __SCK__tp_func_tcp_cong_state_set
-ffffffff823306b0 d trace_event_fields_tcp_event_sk_skb
-ffffffff82330868 d trace_event_type_funcs_tcp_event_sk_skb
-ffffffff82330890 d print_fmt_tcp_event_sk_skb
-ffffffff82330b40 d event_tcp_retransmit_skb
-ffffffff82330bd0 d event_tcp_send_reset
-ffffffff82330c60 d trace_event_fields_tcp_event_sk
-ffffffff82330df0 d trace_event_type_funcs_tcp_event_sk
-ffffffff82330e10 d print_fmt_tcp_event_sk
-ffffffff82330f18 d event_tcp_receive_reset
-ffffffff82330fa8 d event_tcp_destroy_sock
-ffffffff82331038 d event_tcp_rcv_space_adjust
-ffffffff823310d0 d trace_event_fields_tcp_retransmit_synack
-ffffffff82331260 d trace_event_type_funcs_tcp_retransmit_synack
-ffffffff82331280 d print_fmt_tcp_retransmit_synack
-ffffffff82331368 d event_tcp_retransmit_synack
-ffffffff82331400 d trace_event_fields_tcp_probe
-ffffffff82331680 d trace_event_type_funcs_tcp_probe
-ffffffff823316a0 d print_fmt_tcp_probe
-ffffffff82331828 d event_tcp_probe
-ffffffff823318c0 d trace_event_fields_tcp_event_skb
-ffffffff82331960 d trace_event_type_funcs_tcp_event_skb
-ffffffff82331980 d print_fmt_tcp_event_skb
-ffffffff823319b8 d event_tcp_bad_csum
-ffffffff82331a50 d trace_event_fields_tcp_cong_state_set
-ffffffff82331bb8 d trace_event_type_funcs_tcp_cong_state_set
-ffffffff82331be0 d print_fmt_tcp_cong_state_set
-ffffffff82331c98 d event_tcp_cong_state_set
-ffffffff82331d28 d __SCK__tp_func_fib_table_lookup
-ffffffff82331d40 d trace_event_fields_fib_table_lookup
-ffffffff82331fc0 d trace_event_type_funcs_fib_table_lookup
-ffffffff82331fe0 d print_fmt_fib_table_lookup
-ffffffff823320f8 d event_fib_table_lookup
-ffffffff82332188 d __SCK__tp_func_qdisc_dequeue
-ffffffff82332198 d __SCK__tp_func_qdisc_enqueue
-ffffffff823321a8 d __SCK__tp_func_qdisc_reset
-ffffffff823321b8 d __SCK__tp_func_qdisc_destroy
-ffffffff823321c8 d __SCK__tp_func_qdisc_create
-ffffffff823321e0 d trace_event_fields_qdisc_dequeue
-ffffffff82332348 d trace_event_type_funcs_qdisc_dequeue
-ffffffff82332370 d print_fmt_qdisc_dequeue
-ffffffff82332420 d event_qdisc_dequeue
-ffffffff823324b0 d trace_event_fields_qdisc_enqueue
-ffffffff823325c8 d trace_event_type_funcs_qdisc_enqueue
-ffffffff823325f0 d print_fmt_qdisc_enqueue
-ffffffff82332668 d event_qdisc_enqueue
-ffffffff82332700 d trace_event_fields_qdisc_reset
-ffffffff823327c8 d trace_event_type_funcs_qdisc_reset
-ffffffff823327f0 d print_fmt_qdisc_reset
-ffffffff823328c8 d event_qdisc_reset
-ffffffff82332960 d trace_event_fields_qdisc_destroy
-ffffffff82332a28 d trace_event_type_funcs_qdisc_destroy
-ffffffff82332a50 d print_fmt_qdisc_destroy
-ffffffff82332b28 d event_qdisc_destroy
-ffffffff82332bc0 d trace_event_fields_qdisc_create
-ffffffff82332c60 d trace_event_type_funcs_qdisc_create
-ffffffff82332c80 d print_fmt_qdisc_create
-ffffffff82332d08 d event_qdisc_create
-ffffffff82332d98 d __SCK__tp_func_br_fdb_add
-ffffffff82332da8 d __SCK__tp_func_br_fdb_external_learn_add
-ffffffff82332db8 d __SCK__tp_func_fdb_delete
-ffffffff82332dc8 d __SCK__tp_func_br_fdb_update
-ffffffff82332de0 d trace_event_fields_br_fdb_add
-ffffffff82332ed0 d trace_event_type_funcs_br_fdb_add
-ffffffff82332ef0 d print_fmt_br_fdb_add
-ffffffff82332fd0 d event_br_fdb_add
-ffffffff82333060 d trace_event_fields_br_fdb_external_learn_add
-ffffffff82333128 d trace_event_type_funcs_br_fdb_external_learn_add
-ffffffff82333150 d print_fmt_br_fdb_external_learn_add
-ffffffff82333210 d event_br_fdb_external_learn_add
-ffffffff823332a0 d trace_event_fields_fdb_delete
-ffffffff82333368 d trace_event_type_funcs_fdb_delete
-ffffffff82333390 d print_fmt_fdb_delete
-ffffffff82333450 d event_fdb_delete
-ffffffff823334e0 d trace_event_fields_br_fdb_update
-ffffffff823335d0 d trace_event_type_funcs_br_fdb_update
-ffffffff823335f0 d print_fmt_br_fdb_update
-ffffffff823336d0 d event_br_fdb_update
-ffffffff82333760 d __SCK__tp_func_neigh_create
-ffffffff82333770 d __SCK__tp_func_neigh_update
-ffffffff82333780 d __SCK__tp_func_neigh_update_done
-ffffffff82333790 d __SCK__tp_func_neigh_timer_handler
-ffffffff823337a0 d __SCK__tp_func_neigh_event_send_done
-ffffffff823337b0 d __SCK__tp_func_neigh_event_send_dead
-ffffffff823337c0 d __SCK__tp_func_neigh_cleanup_and_release
-ffffffff823337d0 d trace_event_fields_neigh_create
-ffffffff82333910 d trace_event_type_funcs_neigh_create
-ffffffff82333930 d print_fmt_neigh_create
-ffffffff82333a00 d event_neigh_create
-ffffffff82333a90 d trace_event_fields_neigh_update
-ffffffff82333d88 d trace_event_type_funcs_neigh_update
-ffffffff82333db0 d print_fmt_neigh_update
-ffffffff82334128 d event_neigh_update
-ffffffff823341c0 d trace_event_fields_neigh__update
-ffffffff82334440 d trace_event_type_funcs_neigh__update
-ffffffff82334460 d print_fmt_neigh__update
-ffffffff823346a0 d event_neigh_update_done
-ffffffff82334730 d event_neigh_timer_handler
-ffffffff823347c0 d event_neigh_event_send_done
-ffffffff82334850 d event_neigh_event_send_dead
-ffffffff823348e0 d event_neigh_cleanup_and_release
-ffffffff82334970 d ss_files
-ffffffff82334bf8 d net_prio_cgrp_subsys
-ffffffff82334ce8 d netprio_device_notifier
-ffffffff82334d00 d default_qdisc_ops
-ffffffff82334d40 d noop_netdev_queue
-ffffffff82334e80 d noop_qdisc
-ffffffff82335000 d sch_frag_dst_ops
-ffffffff823350c0 d __SCK__tp_func_netlink_extack
-ffffffff823350d0 d trace_event_fields_netlink_extack
-ffffffff82335120 d trace_event_type_funcs_netlink_extack
-ffffffff82335140 d print_fmt_netlink_extack
-ffffffff82335160 d event_netlink_extack
-ffffffff823351f0 d nl_table_wait.llvm.11921960084454699519
-ffffffff82335208 d netlink_chain
-ffffffff82335240 d netlink_proto
-ffffffff823353f0 d netlink_tap_net_ops
-ffffffff82335430 d genl_mutex
-ffffffff82335450 d genl_fam_idr
-ffffffff82335468 d cb_lock
-ffffffff823354a0 d genl_policy_reject_all
-ffffffff823354c0 d mc_groups_longs
-ffffffff823354c8 d mc_groups
-ffffffff823354d0 d mc_group_start
-ffffffff823354d8 d genl_pernet_ops
-ffffffff82335518 d genl_sk_destructing_waitq
-ffffffff82335530 d netdev_rss_key_fill.___once_key
-ffffffff82335540 d ethnl_netdev_notifier
-ffffffff82335580 d ipv4_dst_ops
-ffffffff82335640 d ipv4_dst_blackhole_ops
-ffffffff82335700 d ipv4_route_table.llvm.714033031531569554
-ffffffff82335a40 d fnhe_hashfun.___once_key
-ffffffff82335a50 d ipv4_route_netns_table
-ffffffff82335b90 d ip4_frags_ops
-ffffffff82335bd0 d ip4_frags_ctl_table
-ffffffff82335c50 d ip4_frags_ns_ctl_table
-ffffffff82335d90 d __inet_hash_connect.___once_key
-ffffffff82335da0 d inet_ehashfn.___once_key
-ffffffff82335db0 d tcp4_net_ops.llvm.15653417039010767289
-ffffffff82335df0 d tcp_timewait_sock_ops
-ffffffff82335e18 d tcp_prot
-ffffffff82335fc8 d tcp4_seq_afinfo
-ffffffff82335fd0 d tcp_cong_list
-ffffffff82336000 d tcp_reno
-ffffffff823360c0 d tcp_ulp_list
-ffffffff823360d0 d raw_prot
-ffffffff82336280 d udp_prot
-ffffffff82336430 d udp4_net_ops.llvm.5723001391510987311
-ffffffff82336470 d udp_flow_hashrnd.___once_key
-ffffffff82336480 d udp_ehashfn.___once_key
-ffffffff82336490 d udp4_seq_afinfo
-ffffffff823364a0 d udplite_prot
-ffffffff82336650 d udplite4_protosw
-ffffffff82336680 d udplite4_net_ops
-ffffffff823366c0 d udplite4_seq_afinfo
-ffffffff823366d0 d arp_net_ops
-ffffffff82336710 d arp_netdev_notifier
-ffffffff82336728 d arp_tbl
-ffffffff82336978 d inetaddr_chain.llvm.10960118607326917406
-ffffffff823369b0 d inetaddr_validator_chain
-ffffffff823369e8 d ip_netdev_notifier
-ffffffff82336a00 d check_lifetime_work
-ffffffff82336a58 d ipv4_devconf
-ffffffff82336af0 d ipv4_devconf_dflt
-ffffffff82336b90 d ctl_forward_entry
-ffffffff82336c10 d devinet_sysctl
-ffffffff823374a0 d inetsw_array
-ffffffff82337560 d igmp_net_ops
-ffffffff823375a0 d igmp_notifier
-ffffffff823375b8 d fib_net_ops
-ffffffff823375f8 d fib_netdev_notifier
-ffffffff82337610 d fib_inetaddr_notifier
-ffffffff82337628 d sysctl_fib_sync_mem
-ffffffff8233762c d sysctl_fib_sync_mem_min
-ffffffff82337630 d sysctl_fib_sync_mem_max
-ffffffff82337638 d fqdir_free_work
-ffffffff82337658 d ping_prot
-ffffffff82337808 d ping_v4_net_ops.llvm.6473050963782165612
-ffffffff82337848 d nexthop_net_ops
-ffffffff82337888 d nh_netdev_notifier
-ffffffff823378a0 d nh_res_bucket_migrate._rs
-ffffffff823378d0 d ipv4_table
-ffffffff82337bd0 d ipv4_net_table
-ffffffff823394d0 d ip_ttl_min
-ffffffff823394d4 d ip_ttl_max
-ffffffff823394d8 d tcp_min_snd_mss_min
-ffffffff823394dc d tcp_min_snd_mss_max
-ffffffff823394e0 d u32_max_div_HZ
-ffffffff823394e4 d tcp_syn_retries_min
-ffffffff823394e8 d tcp_syn_retries_max
-ffffffff823394ec d tcp_retr1_max
-ffffffff823394f0 d tcp_app_win_max
-ffffffff823394f4 d tcp_adv_win_scale_min
-ffffffff823394f8 d tcp_adv_win_scale_max
-ffffffff823394fc d one_day_secs
-ffffffff82339500 d tcp_child_ehash_entries_max
-ffffffff82339504 d ip_ping_group_range_max
-ffffffff8233950c d ip_local_port_range_min
-ffffffff82339514 d ip_local_port_range_max
-ffffffff82339520 d set_local_port_range._rs
-ffffffff82339548 d ip_privileged_port_max
-ffffffff8233954c d log_ecn_error
-ffffffff8233954d d log_ecn_error
-ffffffff8233954e d log_ecn_error
-ffffffff8233954f d log_ecn_error
-ffffffff82339550 d log_ecn_error
-ffffffff82339558 d ipip_net_ops
-ffffffff82339598 d ipgre_tap_net_ops
-ffffffff823395d8 d ipgre_net_ops
-ffffffff82339618 d erspan_net_ops
-ffffffff82339658 d vti_net_ops
-ffffffff82339698 d esp4_protocol
-ffffffff823396c8 d tunnel4_mutex
-ffffffff823396e8 d inet_diag_table_mutex
-ffffffff82339740 d xfrm4_dst_ops_template
-ffffffff82339800 d xfrm4_policy_table
-ffffffff82339880 d xfrm4_state_afinfo.llvm.8123962908762668451
-ffffffff823398e0 d xfrm4_protocol_mutex
-ffffffff82339900 d hash_resize_mutex
-ffffffff82339920 d xfrm_state_gc_work.llvm.8683275436754393652
-ffffffff82339940 d xfrm_km_list
-ffffffff82339950 d xfrm_table
-ffffffff82339a90 d xfrm_dev_notifier.llvm.17050026566475854794
-ffffffff82339ab0 d aead_list
-ffffffff82339c30 d aalg_list.llvm.1263159533315933499
-ffffffff82339e10 d ealg_list.llvm.1263159533315933499
-ffffffff8233a020 d calg_list
-ffffffff8233a0b0 d netlink_mgr
-ffffffff8233a100 d xfrm_user_net_ops
-ffffffff8233a140 d ipcomp_resource_mutex
-ffffffff8233a160 d ipcomp_tfms_list
-ffffffff8233a170 d xfrmi_net_ops
-ffffffff8233a1b0 d unix_dgram_proto
-ffffffff8233a360 d unix_stream_proto
-ffffffff8233a510 d unix_net_ops
-ffffffff8233a550 d unix_gc_wait
-ffffffff8233a568 d gc_candidates
-ffffffff8233a580 d unix_table
-ffffffff8233a600 d gc_inflight_list
-ffffffff8233a610 d inet6_net_ops
-ffffffff8233a650 d ipv6_defaults
-ffffffff8233a658 d if6_proc_net_ops.llvm.8687801613065663081
-ffffffff8233a698 d addrconf_ops
-ffffffff8233a6d8 d ipv6_dev_notf
-ffffffff8233a6f0 d minus_one
-ffffffff8233a6f4 d ioam6_if_id_max
-ffffffff8233a6f8 d ipv6_addr_label_ops.llvm.7626218080908068607
-ffffffff8233a738 d .compoundliteral.3
-ffffffff8233a748 d .compoundliteral.4
-ffffffff8233a758 d .compoundliteral.5
-ffffffff8233a768 d .compoundliteral.6
-ffffffff8233a778 d .compoundliteral.7
-ffffffff8233a788 d .compoundliteral.8
-ffffffff8233a798 d __SCK__tp_func_fib6_table_lookup
-ffffffff8233a7b0 d trace_event_fields_fib6_table_lookup
-ffffffff8233aa30 d trace_event_type_funcs_fib6_table_lookup
-ffffffff8233aa50 d print_fmt_fib6_table_lookup
-ffffffff8233ab58 d event_fib6_table_lookup
-ffffffff8233ac00 d ip6_dst_blackhole_ops
-ffffffff8233acc0 d ipv6_route_table_template
-ffffffff8233afc0 d ip6_dst_ops_template
-ffffffff8233b080 d ipv6_inetpeer_ops
-ffffffff8233b0c0 d ip6_route_net_ops
-ffffffff8233b100 d ip6_route_net_late_ops
-ffffffff8233b140 d ip6_route_dev_notifier
-ffffffff8233b158 d rt6_exception_hash.___once_key
-ffffffff8233b168 d fib6_net_ops
-ffffffff8233b1a8 d ndisc_net_ops.llvm.12672799373770904422
-ffffffff8233b1e8 d ndisc_netdev_notifier.llvm.12672799373770904422
-ffffffff8233b200 d nd_tbl
-ffffffff8233b450 d udp6_seq_afinfo
-ffffffff8233b460 d udpv6_protosw.llvm.3078323922797927899
-ffffffff8233b490 d udp6_ehashfn.___once_key
-ffffffff8233b4a0 d udp6_ehashfn.___once_key.5
-ffffffff8233b4b0 d udpv6_prot
-ffffffff8233b660 d udplitev6_prot
-ffffffff8233b810 d udplite6_protosw.llvm.13785457115057781828
-ffffffff8233b840 d udplite6_net_ops.llvm.13785457115057781828
-ffffffff8233b880 d udplite6_seq_afinfo
-ffffffff8233b890 d rawv6_prot
-ffffffff8233ba40 d raw6_net_ops.llvm.9001313369304058378
-ffffffff8233ba80 d rawv6_protosw.llvm.9001313369304058378
-ffffffff8233bab0 d ipv6_icmp_table_template
-ffffffff8233bc30 d igmp6_net_ops.llvm.8540766267562702954
-ffffffff8233bc70 d igmp6_netdev_notifier.llvm.8540766267562702954
-ffffffff8233bc88 d ip6_frags_ops
-ffffffff8233bcd0 d ip6_frags_ctl_table
-ffffffff8233bd50 d ip6_frags_ns_ctl_table
-ffffffff8233be50 d tcp6_seq_afinfo
-ffffffff8233be58 d tcp6_timewait_sock_ops
-ffffffff8233be80 d tcpv6_protosw.llvm.8864556368208849951
-ffffffff8233beb0 d tcpv6_net_ops.llvm.8864556368208849951
-ffffffff8233bef0 d tcpv6_prot
-ffffffff8233c0a0 d pingv6_prot
-ffffffff8233c250 d ping_v6_net_ops
-ffffffff8233c290 d pingv6_protosw
-ffffffff8233c2c0 d ipv6_flowlabel_exclusive
-ffffffff8233c330 d ip6_flowlabel_net_ops.llvm.7134660243565579932
-ffffffff8233c370 d ip6_fl_gc_timer.llvm.7134660243565579932
-ffffffff8233c398 d ip6_segments_ops
-ffffffff8233c3d8 d ioam6_net_ops
-ffffffff8233c420 d ipv6_rotable
-ffffffff8233c4e0 d ipv6_sysctl_net_ops
-ffffffff8233c520 d ipv6_table_template
-ffffffff8233ca60 d auto_flowlabels_max
-ffffffff8233ca64 d flowlabel_reflect_max
-ffffffff8233ca68 d rt6_multipath_hash_fields_all_mask
-ffffffff8233ca6c d ioam6_id_max
-ffffffff8233ca70 d ioam6_id_wide_max
-ffffffff8233ca78 d xfrm6_net_ops.llvm.680911775214528811
-ffffffff8233cac0 d xfrm6_dst_ops_template.llvm.680911775214528811
-ffffffff8233cb80 d xfrm6_policy_table
-ffffffff8233cc00 d xfrm6_state_afinfo.llvm.16590831465597823007
-ffffffff8233cc60 d xfrm6_protocol_mutex
-ffffffff8233cc80 d fib6_rules_net_ops.llvm.11699099883352194613
-ffffffff8233ccc0 d ipv6_proc_ops.llvm.15863966279204880005
-ffffffff8233cd00 d esp6_protocol
-ffffffff8233cd30 d ipcomp6_protocol
-ffffffff8233cd60 d xfrm6_tunnel_net_ops
-ffffffff8233cda0 d tunnel6_mutex
-ffffffff8233cdc0 d vti6_net_ops
-ffffffff8233ce00 d sit_net_ops
-ffffffff8233ce40 d ip6_tnl_xmit_ctl._rs
-ffffffff8233ce68 d ip6_tnl_xmit_ctl._rs.1
-ffffffff8233ce90 d ip6_tnl_net_ops
-ffffffff8233ced0 d ip6gre_net_ops
-ffffffff8233cf10 d inet6addr_validator_chain.llvm.6153677004453161155
-ffffffff8233cf48 d inet6_ehashfn.___once_key
-ffffffff8233cf58 d inet6_ehashfn.___once_key.2
-ffffffff8233cf68 d fanout_mutex
-ffffffff8233cf88 d packet_proto
-ffffffff8233d138 d packet_netdev_notifier
-ffffffff8233d150 d packet_net_ops
-ffffffff8233d190 d fanout_list
-ffffffff8233d1a0 d pfkeyv2_mgr
-ffffffff8233d1f0 d pfkey_net_ops
-ffffffff8233d230 d key_proto
-ffffffff8233d3e0 d gen_reqid.reqid
-ffffffff8233d3e8 d pfkey_mutex
-ffffffff8233d408 d sysctl_pernet_ops
-ffffffff8233d448 d net_sysctl_root
-ffffffff8233d4c0 d vsock_device
-ffffffff8233d510 d vsock_proto
-ffffffff8233d6c0 d vsock_register_mutex
-ffffffff8233d6e0 d virtio_vsock_driver
-ffffffff8233d7d0 d virtio_transport
-ffffffff8233d8f0 d id_table
-ffffffff8233d900 d the_virtio_vsock_mutex
-ffffffff8233d920 d __SCK__tp_func_virtio_transport_alloc_pkt
-ffffffff8233d930 d __SCK__tp_func_virtio_transport_recv_pkt
-ffffffff8233d940 d trace_event_fields_virtio_transport_alloc_pkt
-ffffffff8233daa8 d trace_event_type_funcs_virtio_transport_alloc_pkt
-ffffffff8233dad0 d print_fmt_virtio_transport_alloc_pkt
-ffffffff8233dd30 d event_virtio_transport_alloc_pkt
-ffffffff8233ddc0 d trace_event_fields_virtio_transport_recv_pkt
-ffffffff8233df78 d trace_event_type_funcs_virtio_transport_recv_pkt
-ffffffff8233dfa0 d print_fmt_virtio_transport_recv_pkt
-ffffffff8233e230 d event_virtio_transport_recv_pkt
-ffffffff8233e2c0 d virtio_transport_max_vsock_pkt_buf_size
-ffffffff8233e2c8 d loopback_transport
-ffffffff8233e3e8 d pcibios_fwaddrmappings
-ffffffff8233e3f8 d pci_mmcfg_list
-ffffffff8233e408 d pci_mmcfg_lock
-ffffffff8233e428 d quirk_pcie_aspm_ops
-ffffffff8233e450 d pci_use_e820
-ffffffff8233e458 d acpi_pci_root_ops
-ffffffff8233e480 d pirq_penalty
-ffffffff8233e4c0 d pcibios_irq_mask
-ffffffff8233e4c8 d pcibios_enable_irq
-ffffffff8233e4d0 d pcibios_disable_irq
-ffffffff8233e4d8 d noioapicreroute
-ffffffff8233e4e0 d pci_root_ops
-ffffffff8233e508 d pci_probe
-ffffffff8233e50c d pcibios_last_bus
-ffffffff8233e510 d pci_root_infos
-ffffffff8233e520 d klist_remove_waiters
-ffffffff8233e530 d dynamic_kobj_ktype
-ffffffff8233e560 d kset_ktype
-ffffffff8233e590 d uevent_sock_mutex
-ffffffff8233e5b0 d uevent_sock_list
-ffffffff8233e5c0 d uevent_net_ops
-ffffffff8233e600 d io_range_mutex
-ffffffff8233e620 d io_range_list
-ffffffff8233e630 d __SCK__tp_func_ma_op
-ffffffff8233e640 d __SCK__tp_func_ma_read
-ffffffff8233e650 d __SCK__tp_func_ma_write
-ffffffff8233e660 d trace_event_fields_ma_op
-ffffffff8233e778 d trace_event_type_funcs_ma_op
-ffffffff8233e7a0 d print_fmt_ma_op
-ffffffff8233e850 d event_ma_op
-ffffffff8233e8e0 d trace_event_fields_ma_read
-ffffffff8233e9f8 d trace_event_type_funcs_ma_read
-ffffffff8233ea20 d print_fmt_ma_read
-ffffffff8233ead0 d event_ma_read
-ffffffff8233eb60 d trace_event_fields_ma_write
-ffffffff8233ecc8 d trace_event_type_funcs_ma_write
-ffffffff8233ecf0 d print_fmt_ma_write
-ffffffff8233ede0 d event_ma_write
-ffffffff8233ee70 d fill_ptr_key_work
-ffffffff8233eec8 d get_regno._rs
-ffffffff8233eef0 d init_uts_ns
-ffffffff8233f0c0 D initial_code
-ffffffff8233f0c8 D initial_gs
-ffffffff8233f0d0 D initial_stack
-ffffffff8233f0d8 d event_class_initcall_level
-ffffffff8233f120 d event_class_initcall_start
-ffffffff8233f168 d event_class_initcall_finish
-ffffffff8233f1b0 d event_class_emulate_vsyscall
-ffffffff8233f1f8 d event_class_x86_irq_vector
-ffffffff8233f240 d event_class_vector_config
-ffffffff8233f288 d event_class_vector_mod
-ffffffff8233f2d0 d event_class_vector_reserve
-ffffffff8233f318 d event_class_vector_alloc
-ffffffff8233f360 d event_class_vector_alloc_managed
-ffffffff8233f3a8 d event_class_vector_activate
-ffffffff8233f3f0 d event_class_vector_teardown
-ffffffff8233f438 d event_class_vector_setup
-ffffffff8233f480 d event_class_vector_free_moved
-ffffffff8233f4c8 d event_class_nmi_handler
-ffffffff8233f510 d e820_table_kexec
-ffffffff8233f518 d e820_table_firmware
-ffffffff8233f520 d e820_table
-ffffffff8233f528 d event_class_x86_fpu
-ffffffff8233f570 d x86_cpu_to_apicid_early_ptr
-ffffffff8233f578 d x86_bios_cpu_apicid_early_ptr
-ffffffff8233f580 d x86_cpu_to_acpiid_early_ptr
-ffffffff8233f588 d event_class_x86_exceptions
-ffffffff8233f5d0 d event_class_task_newtask
-ffffffff8233f618 d event_class_task_rename
-ffffffff8233f660 d event_class_cpuhp_enter
-ffffffff8233f6a8 d event_class_cpuhp_multi_enter
-ffffffff8233f6f0 d event_class_cpuhp_exit
-ffffffff8233f738 d event_class_irq_handler_entry
-ffffffff8233f780 d event_class_irq_handler_exit
-ffffffff8233f7c8 d event_class_softirq
-ffffffff8233f810 d event_class_tasklet
-ffffffff8233f858 d event_class_signal_generate
-ffffffff8233f8a0 d event_class_signal_deliver
-ffffffff8233f8e8 d event_class_workqueue_queue_work
-ffffffff8233f930 d event_class_workqueue_activate_work
-ffffffff8233f978 d event_class_workqueue_execute_start
-ffffffff8233f9c0 d event_class_workqueue_execute_end
-ffffffff8233fa08 d event_class_sched_kthread_stop
-ffffffff8233fa50 d event_class_sched_kthread_stop_ret
-ffffffff8233fa98 d event_class_sched_kthread_work_queue_work
-ffffffff8233fae0 d event_class_sched_kthread_work_execute_start
-ffffffff8233fb28 d event_class_sched_kthread_work_execute_end
-ffffffff8233fb70 d event_class_sched_wakeup_template
-ffffffff8233fbb8 d event_class_sched_switch
-ffffffff8233fc00 d event_class_sched_migrate_task
-ffffffff8233fc48 d event_class_sched_process_template
-ffffffff8233fc90 d event_class_sched_process_wait
-ffffffff8233fcd8 d event_class_sched_process_fork
-ffffffff8233fd20 d event_class_sched_process_exec
-ffffffff8233fd68 d event_class_sched_stat_template
-ffffffff8233fdb0 d event_class_sched_blocked_reason
-ffffffff8233fdf8 d event_class_sched_stat_runtime
-ffffffff8233fe40 d event_class_sched_pi_setprio
-ffffffff8233fe88 d event_class_sched_process_hang
-ffffffff8233fed0 d event_class_sched_move_numa
-ffffffff8233ff18 d event_class_sched_numa_pair_template
-ffffffff8233ff60 d event_class_sched_wake_idle_without_ipi
-ffffffff8233ffa8 d event_class_contention_begin
-ffffffff8233fff0 d event_class_contention_end
-ffffffff82340038 d event_class_console
-ffffffff82340080 d event_class_irq_matrix_global
-ffffffff823400c8 d event_class_irq_matrix_global_update
-ffffffff82340110 d event_class_irq_matrix_cpu
-ffffffff82340158 d event_class_rcu_utilization
-ffffffff823401a0 d event_class_rcu_grace_period
-ffffffff823401e8 d event_class_rcu_future_grace_period
-ffffffff82340230 d event_class_rcu_grace_period_init
-ffffffff82340278 d event_class_rcu_exp_grace_period
-ffffffff823402c0 d event_class_rcu_exp_funnel_lock
-ffffffff82340308 d event_class_rcu_nocb_wake
-ffffffff82340350 d event_class_rcu_preempt_task
-ffffffff82340398 d event_class_rcu_unlock_preempted_task
-ffffffff823403e0 d event_class_rcu_quiescent_state_report
-ffffffff82340428 d event_class_rcu_fqs
-ffffffff82340470 d event_class_rcu_stall_warning
-ffffffff823404b8 d event_class_rcu_dyntick
-ffffffff82340500 d event_class_rcu_callback
-ffffffff82340548 d event_class_rcu_segcb_stats
-ffffffff82340590 d event_class_rcu_kvfree_callback
-ffffffff823405d8 d event_class_rcu_batch_start
-ffffffff82340620 d event_class_rcu_invoke_callback
-ffffffff82340668 d event_class_rcu_invoke_kvfree_callback
-ffffffff823406b0 d event_class_rcu_invoke_kfree_bulk_callback
-ffffffff823406f8 d event_class_rcu_batch_end
-ffffffff82340740 d event_class_rcu_torture_read
-ffffffff82340788 d event_class_rcu_barrier
-ffffffff823407d0 d event_class_swiotlb_bounced
-ffffffff82340818 d event_class_sys_enter
-ffffffff82340860 d event_class_sys_exit
-ffffffff823408a8 d event_class_timer_class
-ffffffff823408f0 d event_class_timer_start
-ffffffff82340938 d event_class_timer_expire_entry
-ffffffff82340980 d event_class_hrtimer_init
-ffffffff823409c8 d event_class_hrtimer_start
-ffffffff82340a10 d event_class_hrtimer_expire_entry
-ffffffff82340a58 d event_class_hrtimer_class
-ffffffff82340aa0 d event_class_itimer_state
-ffffffff82340ae8 d event_class_itimer_expire
-ffffffff82340b30 d event_class_tick_stop
-ffffffff82340b78 d event_class_alarmtimer_suspend
-ffffffff82340bc0 d event_class_alarm_class
-ffffffff82340c08 d event_class_cgroup_root
-ffffffff82340c50 d event_class_cgroup
-ffffffff82340c98 d event_class_cgroup_migrate
-ffffffff82340ce0 d event_class_cgroup_event
-ffffffff82340d28 d event_class_ftrace_function
-ffffffff82340d70 d event_class_ftrace_funcgraph_entry
-ffffffff82340db8 d event_class_ftrace_funcgraph_exit
-ffffffff82340e00 d event_class_ftrace_context_switch
-ffffffff82340e48 d event_class_ftrace_wakeup
-ffffffff82340e90 d event_class_ftrace_kernel_stack
-ffffffff82340ed8 d event_class_ftrace_user_stack
-ffffffff82340f20 d event_class_ftrace_bprint
-ffffffff82340f68 d event_class_ftrace_print
-ffffffff82340fb0 d event_class_ftrace_raw_data
-ffffffff82340ff8 d event_class_ftrace_bputs
-ffffffff82341040 d event_class_ftrace_mmiotrace_rw
-ffffffff82341088 d event_class_ftrace_mmiotrace_map
-ffffffff823410d0 d event_class_ftrace_branch
-ffffffff82341118 d event_class_ftrace_hwlat
-ffffffff82341160 d event_class_ftrace_func_repeats
-ffffffff823411a8 d event_class_ftrace_osnoise
-ffffffff823411f0 d event_class_ftrace_timerlat
-ffffffff82341238 d event_class_error_report_template
-ffffffff82341280 d event_class_cpu
-ffffffff823412c8 d event_class_cpu_idle_miss
-ffffffff82341310 d event_class_powernv_throttle
-ffffffff82341358 d event_class_pstate_sample
-ffffffff823413a0 d event_class_cpu_frequency_limits
-ffffffff823413e8 d event_class_device_pm_callback_start
-ffffffff82341430 d event_class_device_pm_callback_end
-ffffffff82341478 d event_class_suspend_resume
-ffffffff823414c0 d event_class_wakeup_source
-ffffffff82341508 d event_class_clock
-ffffffff82341550 d event_class_power_domain
-ffffffff82341598 d event_class_cpu_latency_qos_request
-ffffffff823415e0 d event_class_pm_qos_update
-ffffffff82341628 d event_class_dev_pm_qos_request
-ffffffff82341670 d event_class_guest_halt_poll_ns
-ffffffff823416b8 d event_class_rpm_internal
-ffffffff82341700 d event_class_rpm_return_int
-ffffffff82341748 d event_class_xdp_exception
-ffffffff82341790 d event_class_xdp_bulk_tx
-ffffffff823417d8 d event_class_xdp_redirect_template
-ffffffff82341820 d event_class_xdp_cpumap_kthread
-ffffffff82341868 d event_class_xdp_cpumap_enqueue
-ffffffff823418b0 d event_class_xdp_devmap_xmit
-ffffffff823418f8 d event_class_mem_disconnect
-ffffffff82341940 d event_class_mem_connect
-ffffffff82341988 d event_class_mem_return_failed
-ffffffff823419d0 d event_class_rseq_update
-ffffffff82341a18 d event_class_rseq_ip_fixup
-ffffffff82341a60 d event_class_mm_filemap_op_page_cache
-ffffffff82341aa8 d event_class_filemap_set_wb_err
-ffffffff82341af0 d event_class_file_check_and_advance_wb_err
-ffffffff82341b38 d event_class_oom_score_adj_update
-ffffffff82341b80 d event_class_reclaim_retry_zone
-ffffffff82341bc8 d event_class_mark_victim
-ffffffff82341c10 d event_class_wake_reaper
-ffffffff82341c58 d event_class_start_task_reaping
-ffffffff82341ca0 d event_class_finish_task_reaping
-ffffffff82341ce8 d event_class_skip_task_reaping
-ffffffff82341d30 d event_class_compact_retry
-ffffffff82341d78 d event_class_mm_lru_insertion
-ffffffff82341dc0 d event_class_mm_lru_activate
-ffffffff82341e08 d event_class_mm_vmscan_kswapd_sleep
-ffffffff82341e50 d event_class_mm_vmscan_kswapd_wake
-ffffffff82341e98 d event_class_mm_vmscan_wakeup_kswapd
-ffffffff82341ee0 d event_class_mm_vmscan_direct_reclaim_begin_template
-ffffffff82341f28 d event_class_mm_vmscan_direct_reclaim_end_template
-ffffffff82341f70 d event_class_mm_shrink_slab_start
-ffffffff82341fb8 d event_class_mm_shrink_slab_end
-ffffffff82342000 d event_class_mm_vmscan_lru_isolate
-ffffffff82342048 d event_class_mm_vmscan_write_folio
-ffffffff82342090 d event_class_mm_vmscan_lru_shrink_inactive
-ffffffff823420d8 d event_class_mm_vmscan_lru_shrink_active
-ffffffff82342120 d event_class_mm_vmscan_node_reclaim_begin
-ffffffff82342168 d event_class_mm_vmscan_throttled
-ffffffff823421b0 d event_class_percpu_alloc_percpu
-ffffffff823421f8 d event_class_percpu_free_percpu
-ffffffff82342240 d event_class_percpu_alloc_percpu_fail
-ffffffff82342288 d event_class_percpu_create_chunk
-ffffffff823422d0 d event_class_percpu_destroy_chunk
-ffffffff82342318 d event_class_kmem_cache_alloc
-ffffffff82342360 d event_class_kmalloc
-ffffffff823423a8 d event_class_kfree
-ffffffff823423f0 d event_class_kmem_cache_free
-ffffffff82342438 d event_class_mm_page_free
-ffffffff82342480 d event_class_mm_page_free_batched
-ffffffff823424c8 d event_class_mm_page_alloc
-ffffffff82342510 d event_class_mm_page
-ffffffff82342558 d event_class_mm_page_pcpu_drain
-ffffffff823425a0 d event_class_mm_page_alloc_extfrag
-ffffffff823425e8 d event_class_rss_stat
-ffffffff82342630 d event_class_mm_compaction_isolate_template
-ffffffff82342678 d event_class_mm_compaction_migratepages
-ffffffff823426c0 d event_class_mm_compaction_begin
-ffffffff82342708 d event_class_mm_compaction_end
-ffffffff82342750 d event_class_mm_compaction_try_to_compact_pages
-ffffffff82342798 d event_class_mm_compaction_suitable_template
-ffffffff823427e0 d event_class_mm_compaction_defer_template
-ffffffff82342828 d event_class_mm_compaction_kcompactd_sleep
-ffffffff82342870 d event_class_kcompactd_wake_template
-ffffffff823428b8 d event_class_mmap_lock
-ffffffff82342900 d event_class_mmap_lock_acquire_returned
-ffffffff82342948 d event_class_vm_unmapped_area
-ffffffff82342990 d event_class_vma_mas_szero
-ffffffff823429d8 d event_class_vma_store
-ffffffff82342a20 d event_class_exit_mmap
-ffffffff82342a68 d event_class_tlb_flush
-ffffffff82342ab0 d event_class_mm_migrate_pages
-ffffffff82342af8 d event_class_mm_migrate_pages_start
-ffffffff82342b40 d event_class_migration_pte
-ffffffff82342bc0 d memblock_memory
-ffffffff82342c00 d contig_page_data
-ffffffff82344d00 d event_class_hugepage_set_pmd
-ffffffff82344d48 d event_class_hugepage_update
-ffffffff82344d90 d event_class_migration_pmd
-ffffffff82344dd8 d event_class_mm_khugepaged_scan_pmd
-ffffffff82344e20 d event_class_mm_collapse_huge_page
-ffffffff82344e68 d event_class_mm_collapse_huge_page_isolate
-ffffffff82344eb0 d event_class_mm_collapse_huge_page_swapin
-ffffffff82344ef8 d event_class_mm_khugepaged_scan_file
-ffffffff82344f40 d event_class_test_pages_isolated
-ffffffff82344f88 d event_class_damon_aggregated
-ffffffff82344fd0 d event_class_writeback_folio_template
-ffffffff82345018 d event_class_writeback_dirty_inode_template
-ffffffff82345060 d event_class_inode_foreign_history
-ffffffff823450a8 d event_class_inode_switch_wbs
-ffffffff823450f0 d event_class_track_foreign_dirty
-ffffffff82345138 d event_class_flush_foreign
-ffffffff82345180 d event_class_writeback_write_inode_template
-ffffffff823451c8 d event_class_writeback_work_class
-ffffffff82345210 d event_class_writeback_pages_written
-ffffffff82345258 d event_class_writeback_class
-ffffffff823452a0 d event_class_writeback_bdi_register
-ffffffff823452e8 d event_class_wbc_class
-ffffffff82345330 d event_class_writeback_queue_io
-ffffffff82345378 d event_class_global_dirty_state
-ffffffff823453c0 d event_class_bdi_dirty_ratelimit
-ffffffff82345408 d event_class_balance_dirty_pages
-ffffffff82345450 d event_class_writeback_sb_inodes_requeue
-ffffffff82345498 d event_class_writeback_single_inode_template
-ffffffff823454e0 d event_class_writeback_inode_template
-ffffffff82345528 d event_class_locks_get_lock_context
-ffffffff82345570 d event_class_filelock_lock
-ffffffff823455b8 d event_class_filelock_lease
-ffffffff82345600 d event_class_generic_add_lease
-ffffffff82345648 d event_class_leases_conflict
-ffffffff82345690 d event_class_iomap_readpage_class
-ffffffff823456d8 d event_class_iomap_range_class
-ffffffff82345720 d event_class_iomap_class
-ffffffff82345768 d event_class_iomap_iter
-ffffffff823457b0 d event_class_ext4_other_inode_update_time
-ffffffff823457f8 d event_class_ext4_free_inode
-ffffffff82345840 d event_class_ext4_request_inode
-ffffffff82345888 d event_class_ext4_allocate_inode
-ffffffff823458d0 d event_class_ext4_evict_inode
-ffffffff82345918 d event_class_ext4_drop_inode
-ffffffff82345960 d event_class_ext4_nfs_commit_metadata
-ffffffff823459a8 d event_class_ext4_mark_inode_dirty
-ffffffff823459f0 d event_class_ext4_begin_ordered_truncate
-ffffffff82345a38 d event_class_ext4__write_begin
-ffffffff82345a80 d event_class_ext4__write_end
-ffffffff82345ac8 d event_class_ext4_writepages
-ffffffff82345b10 d event_class_ext4_da_write_pages
-ffffffff82345b58 d event_class_ext4_da_write_pages_extent
-ffffffff82345ba0 d event_class_ext4_writepages_result
-ffffffff82345be8 d event_class_ext4__page_op
-ffffffff82345c30 d event_class_ext4_invalidate_folio_op
-ffffffff82345c78 d event_class_ext4_discard_blocks
-ffffffff82345cc0 d event_class_ext4__mb_new_pa
-ffffffff82345d08 d event_class_ext4_mb_release_inode_pa
-ffffffff82345d50 d event_class_ext4_mb_release_group_pa
-ffffffff82345d98 d event_class_ext4_discard_preallocations
-ffffffff82345de0 d event_class_ext4_mb_discard_preallocations
-ffffffff82345e28 d event_class_ext4_request_blocks
-ffffffff82345e70 d event_class_ext4_allocate_blocks
-ffffffff82345eb8 d event_class_ext4_free_blocks
-ffffffff82345f00 d event_class_ext4_sync_file_enter
-ffffffff82345f48 d event_class_ext4_sync_file_exit
-ffffffff82345f90 d event_class_ext4_sync_fs
-ffffffff82345fd8 d event_class_ext4_alloc_da_blocks
-ffffffff82346020 d event_class_ext4_mballoc_alloc
-ffffffff82346068 d event_class_ext4_mballoc_prealloc
-ffffffff823460b0 d event_class_ext4__mballoc
-ffffffff823460f8 d event_class_ext4_forget
-ffffffff82346140 d event_class_ext4_da_update_reserve_space
-ffffffff82346188 d event_class_ext4_da_reserve_space
-ffffffff823461d0 d event_class_ext4_da_release_space
-ffffffff82346218 d event_class_ext4__bitmap_load
-ffffffff82346260 d event_class_ext4_read_block_bitmap_load
-ffffffff823462a8 d event_class_ext4__fallocate_mode
-ffffffff823462f0 d event_class_ext4_fallocate_exit
-ffffffff82346338 d event_class_ext4_unlink_enter
-ffffffff82346380 d event_class_ext4_unlink_exit
-ffffffff823463c8 d event_class_ext4__truncate
-ffffffff82346410 d event_class_ext4_ext_convert_to_initialized_enter
-ffffffff82346458 d event_class_ext4_ext_convert_to_initialized_fastpath
-ffffffff823464a0 d event_class_ext4__map_blocks_enter
-ffffffff823464e8 d event_class_ext4__map_blocks_exit
-ffffffff82346530 d event_class_ext4_ext_load_extent
-ffffffff82346578 d event_class_ext4_load_inode
-ffffffff823465c0 d event_class_ext4_journal_start
-ffffffff82346608 d event_class_ext4_journal_start_reserved
-ffffffff82346650 d event_class_ext4__trim
-ffffffff82346698 d event_class_ext4_ext_handle_unwritten_extents
-ffffffff823466e0 d event_class_ext4_get_implied_cluster_alloc_exit
-ffffffff82346728 d event_class_ext4_ext_show_extent
-ffffffff82346770 d event_class_ext4_remove_blocks
-ffffffff823467b8 d event_class_ext4_ext_rm_leaf
-ffffffff82346800 d event_class_ext4_ext_rm_idx
-ffffffff82346848 d event_class_ext4_ext_remove_space
-ffffffff82346890 d event_class_ext4_ext_remove_space_done
-ffffffff823468d8 d event_class_ext4__es_extent
-ffffffff82346920 d event_class_ext4_es_remove_extent
-ffffffff82346968 d event_class_ext4_es_find_extent_range_enter
-ffffffff823469b0 d event_class_ext4_es_find_extent_range_exit
-ffffffff823469f8 d event_class_ext4_es_lookup_extent_enter
-ffffffff82346a40 d event_class_ext4_es_lookup_extent_exit
-ffffffff82346a88 d event_class_ext4__es_shrink_enter
-ffffffff82346ad0 d event_class_ext4_es_shrink_scan_exit
-ffffffff82346b18 d event_class_ext4_collapse_range
-ffffffff82346b60 d event_class_ext4_insert_range
-ffffffff82346ba8 d event_class_ext4_es_shrink
-ffffffff82346bf0 d event_class_ext4_es_insert_delayed_block
-ffffffff82346c38 d event_class_ext4_fsmap_class
-ffffffff82346c80 d event_class_ext4_getfsmap_class
-ffffffff82346cc8 d event_class_ext4_shutdown
-ffffffff82346d10 d event_class_ext4_error
-ffffffff82346d58 d event_class_ext4_prefetch_bitmaps
-ffffffff82346da0 d event_class_ext4_lazy_itable_init
-ffffffff82346de8 d event_class_ext4_fc_replay_scan
-ffffffff82346e30 d event_class_ext4_fc_replay
-ffffffff82346e78 d event_class_ext4_fc_commit_start
-ffffffff82346ec0 d event_class_ext4_fc_commit_stop
-ffffffff82346f08 d event_class_ext4_fc_stats
-ffffffff82346f50 d event_class_ext4_fc_track_dentry
-ffffffff82346f98 d event_class_ext4_fc_track_inode
-ffffffff82346fe0 d event_class_ext4_fc_track_range
-ffffffff82347028 d event_class_ext4_fc_cleanup
-ffffffff82347070 d event_class_ext4_update_sb
-ffffffff823470b8 d event_class_jbd2_checkpoint
-ffffffff82347100 d event_class_jbd2_commit
-ffffffff82347148 d event_class_jbd2_end_commit
-ffffffff82347190 d event_class_jbd2_submit_inode_data
-ffffffff823471d8 d event_class_jbd2_handle_start_class
-ffffffff82347220 d event_class_jbd2_handle_extend
-ffffffff82347268 d event_class_jbd2_handle_stats
-ffffffff823472b0 d event_class_jbd2_run_stats
-ffffffff823472f8 d event_class_jbd2_checkpoint_stats
-ffffffff82347340 d event_class_jbd2_update_log_tail
-ffffffff82347388 d event_class_jbd2_write_superblock
-ffffffff823473d0 d event_class_jbd2_lock_buffer_stall
-ffffffff82347418 d event_class_jbd2_journal_shrink
-ffffffff82347460 d event_class_jbd2_shrink_scan_exit
-ffffffff823474a8 d event_class_jbd2_shrink_checkpoint_list
-ffffffff823474f0 d event_class_erofs_lookup
-ffffffff82347538 d event_class_erofs_fill_inode
-ffffffff82347580 d event_class_erofs_readpage
-ffffffff823475c8 d event_class_erofs_readpages
-ffffffff82347610 d event_class_erofs__map_blocks_enter
-ffffffff82347658 d event_class_erofs__map_blocks_exit
-ffffffff823476a0 d event_class_erofs_destroy_inode
-ffffffff823476e8 d event_class_selinux_audited
-ffffffff82347730 d event_class_block_buffer
-ffffffff82347778 d event_class_block_rq_requeue
-ffffffff823477c0 d event_class_block_rq_completion
-ffffffff82347808 d event_class_block_rq
-ffffffff82347850 d event_class_block_bio_complete
-ffffffff82347898 d event_class_block_bio
-ffffffff823478e0 d event_class_block_plug
-ffffffff82347928 d event_class_block_unplug
-ffffffff82347970 d event_class_block_split
-ffffffff823479b8 d event_class_block_bio_remap
-ffffffff82347a00 d event_class_block_rq_remap
-ffffffff82347a48 d event_class_iocost_iocg_state
-ffffffff82347a90 d event_class_iocg_inuse_update
-ffffffff82347ad8 d event_class_iocost_ioc_vrate_adj
-ffffffff82347b20 d event_class_iocost_iocg_forgive_debt
-ffffffff82347b68 d event_class_kyber_latency
-ffffffff82347bb0 d event_class_kyber_adjust
-ffffffff82347bf8 d event_class_kyber_throttled
-ffffffff82347c40 d event_class_io_uring_create
-ffffffff82347c88 d event_class_io_uring_register
-ffffffff82347cd0 d event_class_io_uring_file_get
-ffffffff82347d18 d event_class_io_uring_queue_async_work
-ffffffff82347d60 d event_class_io_uring_defer
-ffffffff82347da8 d event_class_io_uring_link
-ffffffff82347df0 d event_class_io_uring_cqring_wait
-ffffffff82347e38 d event_class_io_uring_fail_link
-ffffffff82347e80 d event_class_io_uring_complete
-ffffffff82347ec8 d event_class_io_uring_submit_sqe
-ffffffff82347f10 d event_class_io_uring_poll_arm
-ffffffff82347f58 d event_class_io_uring_task_add
-ffffffff82347fa0 d event_class_io_uring_req_failed
-ffffffff82347fe8 d event_class_io_uring_cqe_overflow
-ffffffff82348030 d event_class_io_uring_task_work_run
-ffffffff82348078 d event_class_io_uring_short_write
-ffffffff823480c0 d event_class_io_uring_local_work_run
-ffffffff82348108 d event_class_msr_trace_class
-ffffffff82348150 d event_class_gpio_direction
-ffffffff82348198 d event_class_gpio_value
-ffffffff823481e0 d event_class_iommu_group_event
-ffffffff82348228 d event_class_iommu_device_event
-ffffffff82348270 d event_class_map
-ffffffff823482b8 d event_class_unmap
-ffffffff82348300 d event_class_iommu_error
-ffffffff82348348 d event_class_regmap_reg
-ffffffff82348390 d event_class_regmap_bulk
-ffffffff823483d8 d event_class_regmap_block
-ffffffff82348420 d event_class_regcache_sync
-ffffffff82348468 d event_class_regmap_bool
-ffffffff823484b0 d event_class_regmap_async
-ffffffff823484f8 d event_class_regcache_drop_region
-ffffffff82348540 d event_class_devres
-ffffffff82348588 d event_class_dma_fence
-ffffffff823485d0 d event_class_rtc_time_alarm_class
-ffffffff82348618 d event_class_rtc_irq_set_freq
-ffffffff82348660 d event_class_rtc_irq_set_state
-ffffffff823486a8 d event_class_rtc_alarm_irq_enable
-ffffffff823486f0 d event_class_rtc_offset_class
-ffffffff82348738 d event_class_rtc_timer_class
-ffffffff82348780 d event_class_thermal_temperature
-ffffffff823487c8 d event_class_cdev_update
-ffffffff82348810 d event_class_thermal_zone_trip
-ffffffff82348858 d event_class_thermal_power_cpu_get_power_simple
-ffffffff823488a0 d event_class_thermal_power_cpu_limit
-ffffffff823488e8 d event_class_watchdog_template
-ffffffff82348930 d event_class_watchdog_set_timeout
-ffffffff82348978 d memmap_ktype
-ffffffff823489a8 d map_ktype
-ffffffff823489d8 d event_class_mc_event
-ffffffff82348a20 d event_class_arm_event
-ffffffff82348a68 d event_class_non_standard_event
-ffffffff82348ab0 d event_class_aer_event
-ffffffff82348af8 d event_class_kfree_skb
-ffffffff82348b40 d event_class_consume_skb
-ffffffff82348b88 d event_class_skb_copy_datagram_iovec
-ffffffff82348bd0 d event_class_net_dev_start_xmit
-ffffffff82348c18 d event_class_net_dev_xmit
-ffffffff82348c60 d event_class_net_dev_xmit_timeout
-ffffffff82348ca8 d event_class_net_dev_template
-ffffffff82348cf0 d event_class_net_dev_rx_verbose_template
-ffffffff82348d38 d event_class_net_dev_rx_exit_template
-ffffffff82348d80 d event_class_napi_poll
-ffffffff82348dc8 d event_class_sock_rcvqueue_full
-ffffffff82348e10 d event_class_sock_exceed_buf_limit
-ffffffff82348e58 d event_class_inet_sock_set_state
-ffffffff82348ea0 d event_class_inet_sk_error_report
-ffffffff82348ee8 d event_class_udp_fail_queue_rcv_skb
-ffffffff82348f30 d event_class_tcp_event_sk_skb
-ffffffff82348f78 d event_class_tcp_event_sk
-ffffffff82348fc0 d event_class_tcp_retransmit_synack
-ffffffff82349008 d event_class_tcp_probe
-ffffffff82349050 d event_class_tcp_event_skb
-ffffffff82349098 d event_class_tcp_cong_state_set
-ffffffff823490e0 d event_class_fib_table_lookup
-ffffffff82349128 d event_class_qdisc_dequeue
-ffffffff82349170 d event_class_qdisc_enqueue
-ffffffff823491b8 d event_class_qdisc_reset
-ffffffff82349200 d event_class_qdisc_destroy
-ffffffff82349248 d event_class_qdisc_create
-ffffffff82349290 d event_class_br_fdb_add
-ffffffff823492d8 d event_class_br_fdb_external_learn_add
-ffffffff82349320 d event_class_fdb_delete
-ffffffff82349368 d event_class_br_fdb_update
-ffffffff823493b0 d event_class_neigh_create
-ffffffff823493f8 d event_class_neigh_update
-ffffffff82349440 d event_class_neigh__update
-ffffffff82349488 d event_class_netlink_extack
-ffffffff823494d0 d event_class_fib6_table_lookup
-ffffffff82349518 d event_class_virtio_transport_alloc_pkt
-ffffffff82349560 d event_class_virtio_transport_recv_pkt
-ffffffff823495a8 d event_class_ma_op
-ffffffff823495f0 d event_class_ma_read
-ffffffff82349638 d event_class_ma_write
-ffffffff82349680 d p_start
-ffffffff82349688 d p_end
-ffffffff82349690 d node_start
-ffffffff82349698 d unused_pmd_start
-ffffffff823496a0 d compute_batch_nb
-ffffffff823496b8 d mminit_loglevel
-ffffffff823496bc d mirrored_kernelcore
-ffffffff823496c0 d memblock_memory_init_regions
-ffffffff8234a2c0 d memblock_reserved_init_regions
-ffffffff8234aec0 d memblock_reserved_in_slab
-ffffffff8234aec4 d memblock_memory_in_slab
-ffffffff8234aec8 d memblock_debug
-ffffffff8234aec9 d system_has_some_mirror
-ffffffff8234aecc d memblock_can_resize
-ffffffff8234aed0 d memblock
-ffffffff8234af30 d sparsemap_buf
-ffffffff8234af38 d sparsemap_buf_end
-ffffffff8234af40 d page_ext_init.page_ext_callback_mem_nb
-ffffffff8234af58 D __end_once
-ffffffff8234af58 D __start_once
-ffffffff8234af60 d __tracepoint_initcall_level
-ffffffff8234afa8 d __tracepoint_initcall_start
-ffffffff8234aff0 d __tracepoint_initcall_finish
-ffffffff8234b038 d __tracepoint_emulate_vsyscall
-ffffffff8234b080 d __tracepoint_local_timer_entry
-ffffffff8234b0c8 d __tracepoint_local_timer_exit
-ffffffff8234b110 d __tracepoint_spurious_apic_entry
-ffffffff8234b158 d __tracepoint_spurious_apic_exit
-ffffffff8234b1a0 d __tracepoint_error_apic_entry
-ffffffff8234b1e8 d __tracepoint_error_apic_exit
-ffffffff8234b230 d __tracepoint_x86_platform_ipi_entry
-ffffffff8234b278 d __tracepoint_x86_platform_ipi_exit
-ffffffff8234b2c0 d __tracepoint_irq_work_entry
-ffffffff8234b308 d __tracepoint_irq_work_exit
-ffffffff8234b350 d __tracepoint_reschedule_entry
-ffffffff8234b398 d __tracepoint_reschedule_exit
-ffffffff8234b3e0 d __tracepoint_call_function_entry
-ffffffff8234b428 d __tracepoint_call_function_exit
-ffffffff8234b470 d __tracepoint_call_function_single_entry
-ffffffff8234b4b8 d __tracepoint_call_function_single_exit
-ffffffff8234b500 d __tracepoint_thermal_apic_entry
-ffffffff8234b548 d __tracepoint_thermal_apic_exit
-ffffffff8234b590 d __tracepoint_vector_config
-ffffffff8234b5d8 d __tracepoint_vector_update
-ffffffff8234b620 d __tracepoint_vector_clear
-ffffffff8234b668 d __tracepoint_vector_reserve_managed
-ffffffff8234b6b0 d __tracepoint_vector_reserve
-ffffffff8234b6f8 d __tracepoint_vector_alloc
-ffffffff8234b740 d __tracepoint_vector_alloc_managed
-ffffffff8234b788 d __tracepoint_vector_activate
-ffffffff8234b7d0 d __tracepoint_vector_deactivate
-ffffffff8234b818 d __tracepoint_vector_teardown
-ffffffff8234b860 d __tracepoint_vector_setup
-ffffffff8234b8a8 d __tracepoint_vector_free_moved
-ffffffff8234b8f0 d __tracepoint_nmi_handler
-ffffffff8234b938 d __tracepoint_x86_fpu_before_save
-ffffffff8234b980 d __tracepoint_x86_fpu_after_save
-ffffffff8234b9c8 d __tracepoint_x86_fpu_before_restore
-ffffffff8234ba10 d __tracepoint_x86_fpu_after_restore
-ffffffff8234ba58 d __tracepoint_x86_fpu_regs_activated
-ffffffff8234baa0 d __tracepoint_x86_fpu_regs_deactivated
-ffffffff8234bae8 d __tracepoint_x86_fpu_init_state
-ffffffff8234bb30 d __tracepoint_x86_fpu_dropped
-ffffffff8234bb78 d __tracepoint_x86_fpu_copy_src
-ffffffff8234bbc0 d __tracepoint_x86_fpu_copy_dst
-ffffffff8234bc08 d __tracepoint_x86_fpu_xstate_check_failed
-ffffffff8234bc50 d __tracepoint_page_fault_user
-ffffffff8234bc98 d __tracepoint_page_fault_kernel
-ffffffff8234bce0 d __tracepoint_task_newtask
-ffffffff8234bd28 d __tracepoint_task_rename
-ffffffff8234bd70 d __tracepoint_cpuhp_enter
-ffffffff8234bdb8 d __tracepoint_cpuhp_multi_enter
-ffffffff8234be00 d __tracepoint_cpuhp_exit
-ffffffff8234be48 d __tracepoint_irq_handler_entry
-ffffffff8234be90 d __tracepoint_irq_handler_exit
-ffffffff8234bed8 d __tracepoint_softirq_entry
-ffffffff8234bf20 d __tracepoint_softirq_exit
-ffffffff8234bf68 d __tracepoint_softirq_raise
-ffffffff8234bfb0 d __tracepoint_tasklet_entry
-ffffffff8234bff8 d __tracepoint_tasklet_exit
-ffffffff8234c040 d __tracepoint_signal_generate
-ffffffff8234c088 d __tracepoint_signal_deliver
-ffffffff8234c0d0 d __tracepoint_workqueue_queue_work
-ffffffff8234c118 d __tracepoint_workqueue_activate_work
-ffffffff8234c160 d __tracepoint_workqueue_execute_start
-ffffffff8234c1a8 d __tracepoint_workqueue_execute_end
-ffffffff8234c1f0 d __tracepoint_sched_kthread_stop
-ffffffff8234c238 d __tracepoint_sched_kthread_stop_ret
-ffffffff8234c280 d __tracepoint_sched_kthread_work_queue_work
-ffffffff8234c2c8 d __tracepoint_sched_kthread_work_execute_start
-ffffffff8234c310 d __tracepoint_sched_kthread_work_execute_end
-ffffffff8234c358 d __tracepoint_sched_waking
-ffffffff8234c3a0 d __tracepoint_sched_wakeup
-ffffffff8234c3e8 d __tracepoint_sched_wakeup_new
-ffffffff8234c430 d __tracepoint_sched_switch
-ffffffff8234c478 d __tracepoint_sched_migrate_task
-ffffffff8234c4c0 d __tracepoint_sched_process_free
-ffffffff8234c508 d __tracepoint_sched_process_exit
-ffffffff8234c550 d __tracepoint_sched_wait_task
-ffffffff8234c598 d __tracepoint_sched_process_wait
-ffffffff8234c5e0 d __tracepoint_sched_process_exec
-ffffffff8234c628 d __tracepoint_sched_blocked_reason
-ffffffff8234c670 d __tracepoint_sched_pi_setprio
-ffffffff8234c6b8 d __tracepoint_sched_process_hang
-ffffffff8234c700 d __tracepoint_sched_move_numa
-ffffffff8234c748 d __tracepoint_sched_stick_numa
-ffffffff8234c790 d __tracepoint_sched_swap_numa
-ffffffff8234c7d8 d __tracepoint_sched_wake_idle_without_ipi
-ffffffff8234c820 d __tracepoint_pelt_thermal_tp
-ffffffff8234c868 d __tracepoint_pelt_rt_tp
-ffffffff8234c8b0 d __tracepoint_pelt_dl_tp
-ffffffff8234c8f8 d __tracepoint_pelt_irq_tp
-ffffffff8234c940 d __tracepoint_pelt_cfs_tp
-ffffffff8234c988 d __tracepoint_pelt_se_tp
-ffffffff8234c9d0 d __tracepoint_sched_stat_runtime
-ffffffff8234ca18 d __tracepoint_sched_cpu_capacity_tp
-ffffffff8234ca60 d __tracepoint_sched_overutilized_tp
-ffffffff8234caa8 d __tracepoint_sched_util_est_cfs_tp
-ffffffff8234caf0 d __tracepoint_sched_stat_wait
-ffffffff8234cb38 d __tracepoint_sched_stat_sleep
-ffffffff8234cb80 d __tracepoint_sched_stat_iowait
-ffffffff8234cbc8 d __tracepoint_sched_stat_blocked
-ffffffff8234cc10 d __tracepoint_sched_update_nr_running_tp
-ffffffff8234cc58 d __tracepoint_sched_util_est_se_tp
-ffffffff8234cca0 d __tracepoint_sched_process_fork
-ffffffff8234cce8 d __tracepoint_contention_begin
-ffffffff8234cd30 d __tracepoint_contention_end
-ffffffff8234cd78 d __tracepoint_console
-ffffffff8234cdc0 d __tracepoint_irq_matrix_online
-ffffffff8234ce08 d __tracepoint_irq_matrix_offline
-ffffffff8234ce50 d __tracepoint_irq_matrix_reserve
-ffffffff8234ce98 d __tracepoint_irq_matrix_remove_reserved
-ffffffff8234cee0 d __tracepoint_irq_matrix_assign_system
-ffffffff8234cf28 d __tracepoint_irq_matrix_alloc_reserved
-ffffffff8234cf70 d __tracepoint_irq_matrix_reserve_managed
-ffffffff8234cfb8 d __tracepoint_irq_matrix_remove_managed
-ffffffff8234d000 d __tracepoint_irq_matrix_alloc_managed
-ffffffff8234d048 d __tracepoint_irq_matrix_assign
-ffffffff8234d090 d __tracepoint_irq_matrix_alloc
-ffffffff8234d0d8 d __tracepoint_irq_matrix_free
-ffffffff8234d120 d __tracepoint_rcu_dyntick
-ffffffff8234d168 d __tracepoint_rcu_torture_read
-ffffffff8234d1b0 d __tracepoint_rcu_grace_period
-ffffffff8234d1f8 d __tracepoint_rcu_utilization
-ffffffff8234d240 d __tracepoint_rcu_kvfree_callback
-ffffffff8234d288 d __tracepoint_rcu_callback
-ffffffff8234d2d0 d __tracepoint_rcu_segcb_stats
-ffffffff8234d318 d __tracepoint_rcu_future_grace_period
-ffffffff8234d360 d __tracepoint_rcu_stall_warning
-ffffffff8234d3a8 d __tracepoint_rcu_barrier
-ffffffff8234d3f0 d __tracepoint_rcu_quiescent_state_report
-ffffffff8234d438 d __tracepoint_rcu_unlock_preempted_task
-ffffffff8234d480 d __tracepoint_rcu_grace_period_init
-ffffffff8234d4c8 d __tracepoint_rcu_fqs
-ffffffff8234d510 d __tracepoint_rcu_batch_start
-ffffffff8234d558 d __tracepoint_rcu_batch_end
-ffffffff8234d5a0 d __tracepoint_rcu_invoke_callback
-ffffffff8234d5e8 d __tracepoint_rcu_invoke_kfree_bulk_callback
-ffffffff8234d630 d __tracepoint_rcu_invoke_kvfree_callback
-ffffffff8234d678 d __tracepoint_rcu_nocb_wake
-ffffffff8234d6c0 d __tracepoint_rcu_exp_grace_period
-ffffffff8234d708 d __tracepoint_rcu_exp_funnel_lock
-ffffffff8234d750 d __tracepoint_rcu_preempt_task
-ffffffff8234d798 d __tracepoint_swiotlb_bounced
-ffffffff8234d7e0 d __tracepoint_sys_enter
-ffffffff8234d828 d __tracepoint_sys_exit
-ffffffff8234d870 d __tracepoint_timer_init
-ffffffff8234d8b8 d __tracepoint_timer_start
-ffffffff8234d900 d __tracepoint_timer_expire_entry
-ffffffff8234d948 d __tracepoint_timer_expire_exit
-ffffffff8234d990 d __tracepoint_timer_cancel
-ffffffff8234d9d8 d __tracepoint_itimer_state
-ffffffff8234da20 d __tracepoint_itimer_expire
-ffffffff8234da68 d __tracepoint_hrtimer_start
-ffffffff8234dab0 d __tracepoint_hrtimer_cancel
-ffffffff8234daf8 d __tracepoint_hrtimer_init
-ffffffff8234db40 d __tracepoint_hrtimer_expire_entry
-ffffffff8234db88 d __tracepoint_hrtimer_expire_exit
-ffffffff8234dbd0 d __tracepoint_tick_stop
-ffffffff8234dc18 d __tracepoint_alarmtimer_suspend
-ffffffff8234dc60 d __tracepoint_alarmtimer_fired
-ffffffff8234dca8 d __tracepoint_alarmtimer_start
-ffffffff8234dcf0 d __tracepoint_alarmtimer_cancel
-ffffffff8234dd38 d __tracepoint_cgroup_setup_root
-ffffffff8234dd80 d __tracepoint_cgroup_destroy_root
-ffffffff8234ddc8 d __tracepoint_cgroup_remount
-ffffffff8234de10 d __tracepoint_cgroup_mkdir
-ffffffff8234de58 d __tracepoint_cgroup_rmdir
-ffffffff8234dea0 d __tracepoint_cgroup_release
-ffffffff8234dee8 d __tracepoint_cgroup_rename
-ffffffff8234df30 d __tracepoint_cgroup_freeze
-ffffffff8234df78 d __tracepoint_cgroup_unfreeze
-ffffffff8234dfc0 d __tracepoint_cgroup_attach_task
-ffffffff8234e008 d __tracepoint_cgroup_transfer_tasks
-ffffffff8234e050 d __tracepoint_cgroup_notify_populated
-ffffffff8234e098 d __tracepoint_cgroup_notify_frozen
-ffffffff8234e0e0 d __tracepoint_error_report_end
-ffffffff8234e128 d __tracepoint_cpu_idle
-ffffffff8234e170 d __tracepoint_cpu_idle_miss
-ffffffff8234e1b8 d __tracepoint_powernv_throttle
-ffffffff8234e200 d __tracepoint_pstate_sample
-ffffffff8234e248 d __tracepoint_cpu_frequency
-ffffffff8234e290 d __tracepoint_cpu_frequency_limits
-ffffffff8234e2d8 d __tracepoint_device_pm_callback_start
-ffffffff8234e320 d __tracepoint_device_pm_callback_end
-ffffffff8234e368 d __tracepoint_suspend_resume
-ffffffff8234e3b0 d __tracepoint_wakeup_source_activate
-ffffffff8234e3f8 d __tracepoint_wakeup_source_deactivate
-ffffffff8234e440 d __tracepoint_clock_enable
-ffffffff8234e488 d __tracepoint_clock_disable
-ffffffff8234e4d0 d __tracepoint_clock_set_rate
-ffffffff8234e518 d __tracepoint_power_domain_target
-ffffffff8234e560 d __tracepoint_pm_qos_add_request
-ffffffff8234e5a8 d __tracepoint_pm_qos_update_request
-ffffffff8234e5f0 d __tracepoint_pm_qos_remove_request
-ffffffff8234e638 d __tracepoint_pm_qos_update_target
-ffffffff8234e680 d __tracepoint_pm_qos_update_flags
-ffffffff8234e6c8 d __tracepoint_dev_pm_qos_add_request
-ffffffff8234e710 d __tracepoint_dev_pm_qos_update_request
-ffffffff8234e758 d __tracepoint_dev_pm_qos_remove_request
-ffffffff8234e7a0 d __tracepoint_guest_halt_poll_ns
-ffffffff8234e7e8 d __tracepoint_rpm_suspend
-ffffffff8234e830 d __tracepoint_rpm_resume
-ffffffff8234e878 d __tracepoint_rpm_idle
-ffffffff8234e8c0 d __tracepoint_rpm_usage
-ffffffff8234e908 d __tracepoint_rpm_return_int
-ffffffff8234e950 d __tracepoint_xdp_exception
-ffffffff8234e998 d __tracepoint_xdp_bulk_tx
-ffffffff8234e9e0 d __tracepoint_xdp_redirect
-ffffffff8234ea28 d __tracepoint_xdp_redirect_err
-ffffffff8234ea70 d __tracepoint_xdp_redirect_map
-ffffffff8234eab8 d __tracepoint_xdp_redirect_map_err
-ffffffff8234eb00 d __tracepoint_xdp_cpumap_kthread
-ffffffff8234eb48 d __tracepoint_xdp_cpumap_enqueue
-ffffffff8234eb90 d __tracepoint_xdp_devmap_xmit
-ffffffff8234ebd8 d __tracepoint_mem_disconnect
-ffffffff8234ec20 d __tracepoint_mem_connect
-ffffffff8234ec68 d __tracepoint_mem_return_failed
-ffffffff8234ecb0 d __tracepoint_rseq_update
-ffffffff8234ecf8 d __tracepoint_rseq_ip_fixup
-ffffffff8234ed40 d __tracepoint_mm_filemap_delete_from_page_cache
-ffffffff8234ed88 d __tracepoint_mm_filemap_add_to_page_cache
-ffffffff8234edd0 d __tracepoint_filemap_set_wb_err
-ffffffff8234ee18 d __tracepoint_file_check_and_advance_wb_err
-ffffffff8234ee60 d __tracepoint_oom_score_adj_update
-ffffffff8234eea8 d __tracepoint_mark_victim
-ffffffff8234eef0 d __tracepoint_wake_reaper
-ffffffff8234ef38 d __tracepoint_start_task_reaping
-ffffffff8234ef80 d __tracepoint_finish_task_reaping
-ffffffff8234efc8 d __tracepoint_skip_task_reaping
-ffffffff8234f010 d __tracepoint_reclaim_retry_zone
-ffffffff8234f058 d __tracepoint_compact_retry
-ffffffff8234f0a0 d __tracepoint_mm_lru_insertion
-ffffffff8234f0e8 d __tracepoint_mm_lru_activate
-ffffffff8234f130 d __tracepoint_mm_vmscan_kswapd_sleep
-ffffffff8234f178 d __tracepoint_mm_vmscan_kswapd_wake
-ffffffff8234f1c0 d __tracepoint_mm_vmscan_wakeup_kswapd
-ffffffff8234f208 d __tracepoint_mm_vmscan_direct_reclaim_begin
-ffffffff8234f250 d __tracepoint_mm_vmscan_memcg_reclaim_begin
-ffffffff8234f298 d __tracepoint_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff8234f2e0 d __tracepoint_mm_vmscan_direct_reclaim_end
-ffffffff8234f328 d __tracepoint_mm_vmscan_memcg_reclaim_end
-ffffffff8234f370 d __tracepoint_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff8234f3b8 d __tracepoint_mm_shrink_slab_start
-ffffffff8234f400 d __tracepoint_mm_shrink_slab_end
-ffffffff8234f448 d __tracepoint_mm_vmscan_lru_isolate
-ffffffff8234f490 d __tracepoint_mm_vmscan_write_folio
-ffffffff8234f4d8 d __tracepoint_mm_vmscan_lru_shrink_inactive
-ffffffff8234f520 d __tracepoint_mm_vmscan_lru_shrink_active
-ffffffff8234f568 d __tracepoint_mm_vmscan_node_reclaim_begin
-ffffffff8234f5b0 d __tracepoint_mm_vmscan_node_reclaim_end
-ffffffff8234f5f8 d __tracepoint_mm_vmscan_throttled
-ffffffff8234f640 d __tracepoint_percpu_alloc_percpu
-ffffffff8234f688 d __tracepoint_percpu_free_percpu
-ffffffff8234f6d0 d __tracepoint_percpu_alloc_percpu_fail
-ffffffff8234f718 d __tracepoint_percpu_create_chunk
-ffffffff8234f760 d __tracepoint_percpu_destroy_chunk
-ffffffff8234f7a8 d __tracepoint_kmalloc
-ffffffff8234f7f0 d __tracepoint_kfree
-ffffffff8234f838 d __tracepoint_mm_page_free
-ffffffff8234f880 d __tracepoint_mm_page_free_batched
-ffffffff8234f8c8 d __tracepoint_mm_page_alloc
-ffffffff8234f910 d __tracepoint_mm_page_alloc_zone_locked
-ffffffff8234f958 d __tracepoint_mm_page_pcpu_drain
-ffffffff8234f9a0 d __tracepoint_mm_page_alloc_extfrag
-ffffffff8234f9e8 d __tracepoint_rss_stat
-ffffffff8234fa30 d __tracepoint_kmem_cache_alloc
-ffffffff8234fa78 d __tracepoint_kmem_cache_free
-ffffffff8234fac0 d __tracepoint_mm_compaction_isolate_migratepages
-ffffffff8234fb08 d __tracepoint_mm_compaction_isolate_freepages
-ffffffff8234fb50 d __tracepoint_mm_compaction_migratepages
-ffffffff8234fb98 d __tracepoint_mm_compaction_begin
-ffffffff8234fbe0 d __tracepoint_mm_compaction_end
-ffffffff8234fc28 d __tracepoint_mm_compaction_try_to_compact_pages
-ffffffff8234fc70 d __tracepoint_mm_compaction_finished
-ffffffff8234fcb8 d __tracepoint_mm_compaction_suitable
-ffffffff8234fd00 d __tracepoint_mm_compaction_deferred
-ffffffff8234fd48 d __tracepoint_mm_compaction_defer_compaction
-ffffffff8234fd90 d __tracepoint_mm_compaction_defer_reset
-ffffffff8234fdd8 d __tracepoint_mm_compaction_kcompactd_sleep
-ffffffff8234fe20 d __tracepoint_mm_compaction_wakeup_kcompactd
-ffffffff8234fe68 d __tracepoint_mm_compaction_kcompactd_wake
-ffffffff8234feb0 d __tracepoint_mmap_lock_start_locking
-ffffffff8234fef8 d __tracepoint_mmap_lock_released
-ffffffff8234ff40 d __tracepoint_mmap_lock_acquire_returned
-ffffffff8234ff88 d __tracepoint_vm_unmapped_area
-ffffffff8234ffd0 d __tracepoint_vma_mas_szero
-ffffffff82350018 d __tracepoint_vma_store
-ffffffff82350060 d __tracepoint_exit_mmap
-ffffffff823500a8 d __tracepoint_tlb_flush
-ffffffff823500f0 d __tracepoint_mm_migrate_pages
-ffffffff82350138 d __tracepoint_mm_migrate_pages_start
-ffffffff82350180 d __tracepoint_set_migration_pte
-ffffffff823501c8 d __tracepoint_remove_migration_pte
-ffffffff82350210 d __tracepoint_hugepage_set_pmd
-ffffffff82350258 d __tracepoint_hugepage_update
-ffffffff823502a0 d __tracepoint_set_migration_pmd
-ffffffff823502e8 d __tracepoint_remove_migration_pmd
-ffffffff82350330 d __tracepoint_mm_khugepaged_scan_pmd
-ffffffff82350378 d __tracepoint_mm_collapse_huge_page
-ffffffff823503c0 d __tracepoint_mm_collapse_huge_page_isolate
-ffffffff82350408 d __tracepoint_mm_collapse_huge_page_swapin
-ffffffff82350450 d __tracepoint_mm_khugepaged_scan_file
-ffffffff82350498 d __tracepoint_test_pages_isolated
-ffffffff823504e0 d __tracepoint_damon_aggregated
-ffffffff82350528 d __tracepoint_writeback_mark_inode_dirty
-ffffffff82350570 d __tracepoint_writeback_dirty_inode_start
-ffffffff823505b8 d __tracepoint_writeback_dirty_inode
-ffffffff82350600 d __tracepoint_inode_foreign_history
-ffffffff82350648 d __tracepoint_inode_switch_wbs
-ffffffff82350690 d __tracepoint_track_foreign_dirty
-ffffffff823506d8 d __tracepoint_flush_foreign
-ffffffff82350720 d __tracepoint_writeback_write_inode_start
-ffffffff82350768 d __tracepoint_writeback_write_inode
-ffffffff823507b0 d __tracepoint_writeback_queue
-ffffffff823507f8 d __tracepoint_writeback_exec
-ffffffff82350840 d __tracepoint_writeback_start
-ffffffff82350888 d __tracepoint_writeback_written
-ffffffff823508d0 d __tracepoint_writeback_wait
-ffffffff82350918 d __tracepoint_writeback_pages_written
-ffffffff82350960 d __tracepoint_writeback_wake_background
-ffffffff823509a8 d __tracepoint_writeback_queue_io
-ffffffff823509f0 d __tracepoint_writeback_sb_inodes_requeue
-ffffffff82350a38 d __tracepoint_writeback_single_inode_start
-ffffffff82350a80 d __tracepoint_writeback_single_inode
-ffffffff82350ac8 d __tracepoint_writeback_lazytime
-ffffffff82350b10 d __tracepoint_writeback_lazytime_iput
-ffffffff82350b58 d __tracepoint_writeback_dirty_inode_enqueue
-ffffffff82350ba0 d __tracepoint_sb_mark_inode_writeback
-ffffffff82350be8 d __tracepoint_sb_clear_inode_writeback
-ffffffff82350c30 d __tracepoint_writeback_bdi_register
-ffffffff82350c78 d __tracepoint_global_dirty_state
-ffffffff82350cc0 d __tracepoint_bdi_dirty_ratelimit
-ffffffff82350d08 d __tracepoint_balance_dirty_pages
-ffffffff82350d50 d __tracepoint_wbc_writepage
-ffffffff82350d98 d __tracepoint_writeback_dirty_folio
-ffffffff82350de0 d __tracepoint_folio_wait_writeback
-ffffffff82350e28 d __tracepoint_locks_get_lock_context
-ffffffff82350e70 d __tracepoint_posix_lock_inode
-ffffffff82350eb8 d __tracepoint_fcntl_setlk
-ffffffff82350f00 d __tracepoint_locks_remove_posix
-ffffffff82350f48 d __tracepoint_flock_lock_inode
-ffffffff82350f90 d __tracepoint_break_lease_noblock
-ffffffff82350fd8 d __tracepoint_break_lease_block
-ffffffff82351020 d __tracepoint_break_lease_unblock
-ffffffff82351068 d __tracepoint_generic_delete_lease
-ffffffff823510b0 d __tracepoint_time_out_leases
-ffffffff823510f8 d __tracepoint_generic_add_lease
-ffffffff82351140 d __tracepoint_leases_conflict
-ffffffff82351188 d __tracepoint_iomap_readpage
-ffffffff823511d0 d __tracepoint_iomap_readahead
-ffffffff82351218 d __tracepoint_iomap_writepage
-ffffffff82351260 d __tracepoint_iomap_release_folio
-ffffffff823512a8 d __tracepoint_iomap_invalidate_folio
-ffffffff823512f0 d __tracepoint_iomap_dio_invalidate_fail
-ffffffff82351338 d __tracepoint_iomap_iter_dstmap
-ffffffff82351380 d __tracepoint_iomap_iter_srcmap
-ffffffff823513c8 d __tracepoint_iomap_writepage_map
-ffffffff82351410 d __tracepoint_iomap_iter
-ffffffff82351458 d __tracepoint_ext4_other_inode_update_time
-ffffffff823514a0 d __tracepoint_ext4_free_inode
-ffffffff823514e8 d __tracepoint_ext4_request_inode
-ffffffff82351530 d __tracepoint_ext4_allocate_inode
-ffffffff82351578 d __tracepoint_ext4_evict_inode
-ffffffff823515c0 d __tracepoint_ext4_drop_inode
-ffffffff82351608 d __tracepoint_ext4_nfs_commit_metadata
-ffffffff82351650 d __tracepoint_ext4_mark_inode_dirty
-ffffffff82351698 d __tracepoint_ext4_begin_ordered_truncate
-ffffffff823516e0 d __tracepoint_ext4_write_begin
-ffffffff82351728 d __tracepoint_ext4_da_write_begin
-ffffffff82351770 d __tracepoint_ext4_write_end
-ffffffff823517b8 d __tracepoint_ext4_journalled_write_end
-ffffffff82351800 d __tracepoint_ext4_da_write_end
-ffffffff82351848 d __tracepoint_ext4_writepages
-ffffffff82351890 d __tracepoint_ext4_da_write_pages
-ffffffff823518d8 d __tracepoint_ext4_da_write_pages_extent
-ffffffff82351920 d __tracepoint_ext4_writepages_result
-ffffffff82351968 d __tracepoint_ext4_writepage
-ffffffff823519b0 d __tracepoint_ext4_readpage
-ffffffff823519f8 d __tracepoint_ext4_releasepage
-ffffffff82351a40 d __tracepoint_ext4_invalidate_folio
-ffffffff82351a88 d __tracepoint_ext4_journalled_invalidate_folio
-ffffffff82351ad0 d __tracepoint_ext4_discard_blocks
-ffffffff82351b18 d __tracepoint_ext4_mb_new_inode_pa
-ffffffff82351b60 d __tracepoint_ext4_mb_new_group_pa
-ffffffff82351ba8 d __tracepoint_ext4_mb_release_inode_pa
-ffffffff82351bf0 d __tracepoint_ext4_mb_release_group_pa
-ffffffff82351c38 d __tracepoint_ext4_discard_preallocations
-ffffffff82351c80 d __tracepoint_ext4_mb_discard_preallocations
-ffffffff82351cc8 d __tracepoint_ext4_request_blocks
-ffffffff82351d10 d __tracepoint_ext4_allocate_blocks
-ffffffff82351d58 d __tracepoint_ext4_free_blocks
-ffffffff82351da0 d __tracepoint_ext4_sync_file_enter
-ffffffff82351de8 d __tracepoint_ext4_sync_file_exit
-ffffffff82351e30 d __tracepoint_ext4_sync_fs
-ffffffff82351e78 d __tracepoint_ext4_alloc_da_blocks
-ffffffff82351ec0 d __tracepoint_ext4_mballoc_alloc
-ffffffff82351f08 d __tracepoint_ext4_mballoc_prealloc
-ffffffff82351f50 d __tracepoint_ext4_mballoc_discard
-ffffffff82351f98 d __tracepoint_ext4_mballoc_free
-ffffffff82351fe0 d __tracepoint_ext4_forget
-ffffffff82352028 d __tracepoint_ext4_da_update_reserve_space
-ffffffff82352070 d __tracepoint_ext4_da_reserve_space
-ffffffff823520b8 d __tracepoint_ext4_da_release_space
-ffffffff82352100 d __tracepoint_ext4_mb_bitmap_load
-ffffffff82352148 d __tracepoint_ext4_mb_buddy_bitmap_load
-ffffffff82352190 d __tracepoint_ext4_load_inode_bitmap
-ffffffff823521d8 d __tracepoint_ext4_read_block_bitmap_load
-ffffffff82352220 d __tracepoint_ext4_punch_hole
-ffffffff82352268 d __tracepoint_ext4_unlink_enter
-ffffffff823522b0 d __tracepoint_ext4_unlink_exit
-ffffffff823522f8 d __tracepoint_ext4_truncate_enter
-ffffffff82352340 d __tracepoint_ext4_truncate_exit
-ffffffff82352388 d __tracepoint_ext4_ind_map_blocks_enter
-ffffffff823523d0 d __tracepoint_ext4_ind_map_blocks_exit
-ffffffff82352418 d __tracepoint_ext4_load_inode
-ffffffff82352460 d __tracepoint_ext4_journal_start
-ffffffff823524a8 d __tracepoint_ext4_journal_start_reserved
-ffffffff823524f0 d __tracepoint_ext4_trim_extent
-ffffffff82352538 d __tracepoint_ext4_trim_all_free
-ffffffff82352580 d __tracepoint_ext4_fsmap_low_key
-ffffffff823525c8 d __tracepoint_ext4_fsmap_high_key
-ffffffff82352610 d __tracepoint_ext4_fsmap_mapping
-ffffffff82352658 d __tracepoint_ext4_getfsmap_low_key
-ffffffff823526a0 d __tracepoint_ext4_getfsmap_high_key
-ffffffff823526e8 d __tracepoint_ext4_getfsmap_mapping
-ffffffff82352730 d __tracepoint_ext4_shutdown
-ffffffff82352778 d __tracepoint_ext4_error
-ffffffff823527c0 d __tracepoint_ext4_prefetch_bitmaps
-ffffffff82352808 d __tracepoint_ext4_lazy_itable_init
-ffffffff82352850 d __tracepoint_ext4_update_sb
-ffffffff82352898 d __tracepoint_ext4_ext_load_extent
-ffffffff823528e0 d __tracepoint_ext4_ext_remove_space
-ffffffff82352928 d __tracepoint_ext4_ext_rm_leaf
-ffffffff82352970 d __tracepoint_ext4_remove_blocks
-ffffffff823529b8 d __tracepoint_ext4_ext_rm_idx
-ffffffff82352a00 d __tracepoint_ext4_ext_remove_space_done
-ffffffff82352a48 d __tracepoint_ext4_ext_map_blocks_enter
-ffffffff82352a90 d __tracepoint_ext4_ext_show_extent
-ffffffff82352ad8 d __tracepoint_ext4_ext_handle_unwritten_extents
-ffffffff82352b20 d __tracepoint_ext4_ext_convert_to_initialized_enter
-ffffffff82352b68 d __tracepoint_ext4_ext_convert_to_initialized_fastpath
-ffffffff82352bb0 d __tracepoint_ext4_get_implied_cluster_alloc_exit
-ffffffff82352bf8 d __tracepoint_ext4_ext_map_blocks_exit
-ffffffff82352c40 d __tracepoint_ext4_zero_range
-ffffffff82352c88 d __tracepoint_ext4_fallocate_enter
-ffffffff82352cd0 d __tracepoint_ext4_fallocate_exit
-ffffffff82352d18 d __tracepoint_ext4_collapse_range
-ffffffff82352d60 d __tracepoint_ext4_insert_range
-ffffffff82352da8 d __tracepoint_ext4_es_find_extent_range_enter
-ffffffff82352df0 d __tracepoint_ext4_es_find_extent_range_exit
-ffffffff82352e38 d __tracepoint_ext4_es_insert_extent
-ffffffff82352e80 d __tracepoint_ext4_es_cache_extent
-ffffffff82352ec8 d __tracepoint_ext4_es_lookup_extent_enter
-ffffffff82352f10 d __tracepoint_ext4_es_lookup_extent_exit
-ffffffff82352f58 d __tracepoint_ext4_es_remove_extent
-ffffffff82352fa0 d __tracepoint_ext4_es_shrink
-ffffffff82352fe8 d __tracepoint_ext4_es_shrink_scan_enter
-ffffffff82353030 d __tracepoint_ext4_es_shrink_scan_exit
-ffffffff82353078 d __tracepoint_ext4_es_shrink_count
-ffffffff823530c0 d __tracepoint_ext4_es_insert_delayed_block
-ffffffff82353108 d __tracepoint_ext4_fc_track_unlink
-ffffffff82353150 d __tracepoint_ext4_fc_track_link
-ffffffff82353198 d __tracepoint_ext4_fc_track_create
-ffffffff823531e0 d __tracepoint_ext4_fc_track_inode
-ffffffff82353228 d __tracepoint_ext4_fc_track_range
-ffffffff82353270 d __tracepoint_ext4_fc_commit_start
-ffffffff823532b8 d __tracepoint_ext4_fc_commit_stop
-ffffffff82353300 d __tracepoint_ext4_fc_replay_scan
-ffffffff82353348 d __tracepoint_ext4_fc_replay
-ffffffff82353390 d __tracepoint_ext4_fc_cleanup
-ffffffff823533d8 d __tracepoint_ext4_fc_stats
-ffffffff82353420 d __tracepoint_jbd2_checkpoint
-ffffffff82353468 d __tracepoint_jbd2_start_commit
-ffffffff823534b0 d __tracepoint_jbd2_commit_locking
-ffffffff823534f8 d __tracepoint_jbd2_commit_flushing
-ffffffff82353540 d __tracepoint_jbd2_commit_logging
-ffffffff82353588 d __tracepoint_jbd2_drop_transaction
-ffffffff823535d0 d __tracepoint_jbd2_end_commit
-ffffffff82353618 d __tracepoint_jbd2_submit_inode_data
-ffffffff82353660 d __tracepoint_jbd2_run_stats
-ffffffff823536a8 d __tracepoint_jbd2_checkpoint_stats
-ffffffff823536f0 d __tracepoint_jbd2_update_log_tail
-ffffffff82353738 d __tracepoint_jbd2_write_superblock
-ffffffff82353780 d __tracepoint_jbd2_shrink_count
-ffffffff823537c8 d __tracepoint_jbd2_shrink_scan_enter
-ffffffff82353810 d __tracepoint_jbd2_shrink_scan_exit
-ffffffff82353858 d __tracepoint_jbd2_shrink_checkpoint_list
-ffffffff823538a0 d __tracepoint_jbd2_handle_start
-ffffffff823538e8 d __tracepoint_jbd2_handle_extend
-ffffffff82353930 d __tracepoint_jbd2_handle_restart
-ffffffff82353978 d __tracepoint_jbd2_lock_buffer_stall
-ffffffff823539c0 d __tracepoint_jbd2_handle_stats
-ffffffff82353a08 d __tracepoint_erofs_lookup
-ffffffff82353a50 d __tracepoint_erofs_readpage
-ffffffff82353a98 d __tracepoint_erofs_readpages
-ffffffff82353ae0 d __tracepoint_erofs_map_blocks_enter
-ffffffff82353b28 d __tracepoint_z_erofs_map_blocks_iter_enter
-ffffffff82353b70 d __tracepoint_erofs_map_blocks_exit
-ffffffff82353bb8 d __tracepoint_z_erofs_map_blocks_iter_exit
-ffffffff82353c00 d __tracepoint_erofs_destroy_inode
-ffffffff82353c48 d __tracepoint_erofs_fill_inode
-ffffffff82353c90 d __tracepoint_selinux_audited
-ffffffff82353cd8 d __tracepoint_block_touch_buffer
-ffffffff82353d20 d __tracepoint_block_dirty_buffer
-ffffffff82353d68 d __tracepoint_block_rq_requeue
-ffffffff82353db0 d __tracepoint_block_rq_complete
-ffffffff82353df8 d __tracepoint_block_rq_error
-ffffffff82353e40 d __tracepoint_block_rq_insert
-ffffffff82353e88 d __tracepoint_block_rq_issue
-ffffffff82353ed0 d __tracepoint_block_rq_merge
-ffffffff82353f18 d __tracepoint_block_bio_complete
-ffffffff82353f60 d __tracepoint_block_bio_bounce
-ffffffff82353fa8 d __tracepoint_block_bio_backmerge
-ffffffff82353ff0 d __tracepoint_block_bio_frontmerge
-ffffffff82354038 d __tracepoint_block_bio_queue
-ffffffff82354080 d __tracepoint_block_getrq
-ffffffff823540c8 d __tracepoint_block_plug
-ffffffff82354110 d __tracepoint_block_unplug
-ffffffff82354158 d __tracepoint_block_split
-ffffffff823541a0 d __tracepoint_block_bio_remap
-ffffffff823541e8 d __tracepoint_block_rq_remap
-ffffffff82354230 d __tracepoint_iocost_iocg_activate
-ffffffff82354278 d __tracepoint_iocost_iocg_idle
-ffffffff823542c0 d __tracepoint_iocost_inuse_shortage
-ffffffff82354308 d __tracepoint_iocost_inuse_transfer
-ffffffff82354350 d __tracepoint_iocost_inuse_adjust
-ffffffff82354398 d __tracepoint_iocost_ioc_vrate_adj
-ffffffff823543e0 d __tracepoint_iocost_iocg_forgive_debt
-ffffffff82354428 d __tracepoint_kyber_latency
-ffffffff82354470 d __tracepoint_kyber_adjust
-ffffffff823544b8 d __tracepoint_kyber_throttled
-ffffffff82354500 d __tracepoint_io_uring_create
-ffffffff82354548 d __tracepoint_io_uring_register
-ffffffff82354590 d __tracepoint_io_uring_file_get
-ffffffff823545d8 d __tracepoint_io_uring_queue_async_work
-ffffffff82354620 d __tracepoint_io_uring_defer
-ffffffff82354668 d __tracepoint_io_uring_link
-ffffffff823546b0 d __tracepoint_io_uring_cqring_wait
-ffffffff823546f8 d __tracepoint_io_uring_fail_link
-ffffffff82354740 d __tracepoint_io_uring_complete
-ffffffff82354788 d __tracepoint_io_uring_submit_sqe
-ffffffff823547d0 d __tracepoint_io_uring_req_failed
-ffffffff82354818 d __tracepoint_io_uring_cqe_overflow
-ffffffff82354860 d __tracepoint_io_uring_task_work_run
-ffffffff823548a8 d __tracepoint_io_uring_short_write
-ffffffff823548f0 d __tracepoint_io_uring_local_work_run
-ffffffff82354938 d __tracepoint_io_uring_task_add
-ffffffff82354980 d __tracepoint_io_uring_poll_arm
-ffffffff823549c8 d __tracepoint_rdpmc
-ffffffff82354a10 d __tracepoint_write_msr
-ffffffff82354a58 d __tracepoint_read_msr
-ffffffff82354aa0 d __tracepoint_gpio_direction
-ffffffff82354ae8 d __tracepoint_gpio_value
-ffffffff82354b30 d __tracepoint_add_device_to_group
-ffffffff82354b78 d __tracepoint_remove_device_from_group
-ffffffff82354bc0 d __tracepoint_attach_device_to_domain
-ffffffff82354c08 d __tracepoint_detach_device_from_domain
-ffffffff82354c50 d __tracepoint_map
-ffffffff82354c98 d __tracepoint_unmap
-ffffffff82354ce0 d __tracepoint_io_page_fault
-ffffffff82354d28 d __tracepoint_regmap_reg_write
-ffffffff82354d70 d __tracepoint_regmap_reg_read
-ffffffff82354db8 d __tracepoint_regmap_reg_read_cache
-ffffffff82354e00 d __tracepoint_regmap_bulk_write
-ffffffff82354e48 d __tracepoint_regmap_bulk_read
-ffffffff82354e90 d __tracepoint_regmap_hw_read_start
-ffffffff82354ed8 d __tracepoint_regmap_hw_read_done
-ffffffff82354f20 d __tracepoint_regmap_hw_write_start
-ffffffff82354f68 d __tracepoint_regmap_hw_write_done
-ffffffff82354fb0 d __tracepoint_regcache_sync
-ffffffff82354ff8 d __tracepoint_regmap_cache_only
-ffffffff82355040 d __tracepoint_regmap_cache_bypass
-ffffffff82355088 d __tracepoint_regmap_async_write_start
-ffffffff823550d0 d __tracepoint_regmap_async_io_complete
-ffffffff82355118 d __tracepoint_regmap_async_complete_start
-ffffffff82355160 d __tracepoint_regmap_async_complete_done
-ffffffff823551a8 d __tracepoint_regcache_drop_region
-ffffffff823551f0 d __tracepoint_devres_log
-ffffffff82355238 d __tracepoint_dma_fence_emit
-ffffffff82355280 d __tracepoint_dma_fence_init
-ffffffff823552c8 d __tracepoint_dma_fence_destroy
-ffffffff82355310 d __tracepoint_dma_fence_enable_signal
-ffffffff82355358 d __tracepoint_dma_fence_signaled
-ffffffff823553a0 d __tracepoint_dma_fence_wait_start
-ffffffff823553e8 d __tracepoint_dma_fence_wait_end
-ffffffff82355430 d __tracepoint_rtc_set_time
-ffffffff82355478 d __tracepoint_rtc_read_time
-ffffffff823554c0 d __tracepoint_rtc_set_alarm
-ffffffff82355508 d __tracepoint_rtc_read_alarm
-ffffffff82355550 d __tracepoint_rtc_irq_set_freq
-ffffffff82355598 d __tracepoint_rtc_irq_set_state
-ffffffff823555e0 d __tracepoint_rtc_alarm_irq_enable
-ffffffff82355628 d __tracepoint_rtc_set_offset
-ffffffff82355670 d __tracepoint_rtc_read_offset
-ffffffff823556b8 d __tracepoint_rtc_timer_enqueue
-ffffffff82355700 d __tracepoint_rtc_timer_dequeue
-ffffffff82355748 d __tracepoint_rtc_timer_fired
-ffffffff82355790 d __tracepoint_thermal_temperature
-ffffffff823557d8 d __tracepoint_cdev_update
-ffffffff82355820 d __tracepoint_thermal_zone_trip
-ffffffff82355868 d __tracepoint_thermal_power_cpu_get_power_simple
-ffffffff823558b0 d __tracepoint_thermal_power_cpu_limit
-ffffffff823558f8 d __tracepoint_watchdog_start
-ffffffff82355940 d __tracepoint_watchdog_ping
-ffffffff82355988 d __tracepoint_watchdog_stop
-ffffffff823559d0 d __tracepoint_watchdog_set_timeout
-ffffffff82355a18 d __tracepoint_mc_event
-ffffffff82355a60 d __tracepoint_arm_event
-ffffffff82355aa8 d __tracepoint_non_standard_event
-ffffffff82355af0 d __tracepoint_aer_event
-ffffffff82355b38 d __tracepoint_kfree_skb
-ffffffff82355b80 d __tracepoint_consume_skb
-ffffffff82355bc8 d __tracepoint_skb_copy_datagram_iovec
-ffffffff82355c10 d __tracepoint_net_dev_start_xmit
-ffffffff82355c58 d __tracepoint_net_dev_xmit
-ffffffff82355ca0 d __tracepoint_net_dev_xmit_timeout
-ffffffff82355ce8 d __tracepoint_net_dev_queue
-ffffffff82355d30 d __tracepoint_netif_receive_skb
-ffffffff82355d78 d __tracepoint_netif_rx
-ffffffff82355dc0 d __tracepoint_napi_gro_frags_entry
-ffffffff82355e08 d __tracepoint_napi_gro_receive_entry
-ffffffff82355e50 d __tracepoint_netif_receive_skb_entry
-ffffffff82355e98 d __tracepoint_netif_receive_skb_list_entry
-ffffffff82355ee0 d __tracepoint_netif_rx_entry
-ffffffff82355f28 d __tracepoint_napi_gro_frags_exit
-ffffffff82355f70 d __tracepoint_napi_gro_receive_exit
-ffffffff82355fb8 d __tracepoint_netif_receive_skb_exit
-ffffffff82356000 d __tracepoint_netif_rx_exit
-ffffffff82356048 d __tracepoint_netif_receive_skb_list_exit
-ffffffff82356090 d __tracepoint_napi_poll
-ffffffff823560d8 d __tracepoint_sock_rcvqueue_full
-ffffffff82356120 d __tracepoint_sock_exceed_buf_limit
-ffffffff82356168 d __tracepoint_inet_sock_set_state
-ffffffff823561b0 d __tracepoint_inet_sk_error_report
-ffffffff823561f8 d __tracepoint_udp_fail_queue_rcv_skb
-ffffffff82356240 d __tracepoint_tcp_retransmit_skb
-ffffffff82356288 d __tracepoint_tcp_send_reset
-ffffffff823562d0 d __tracepoint_tcp_receive_reset
-ffffffff82356318 d __tracepoint_tcp_destroy_sock
-ffffffff82356360 d __tracepoint_tcp_rcv_space_adjust
-ffffffff823563a8 d __tracepoint_tcp_retransmit_synack
-ffffffff823563f0 d __tracepoint_tcp_probe
-ffffffff82356438 d __tracepoint_tcp_bad_csum
-ffffffff82356480 d __tracepoint_tcp_cong_state_set
-ffffffff823564c8 d __tracepoint_fib_table_lookup
-ffffffff82356510 d __tracepoint_qdisc_dequeue
-ffffffff82356558 d __tracepoint_qdisc_enqueue
-ffffffff823565a0 d __tracepoint_qdisc_reset
-ffffffff823565e8 d __tracepoint_qdisc_destroy
-ffffffff82356630 d __tracepoint_qdisc_create
-ffffffff82356678 d __tracepoint_br_fdb_add
-ffffffff823566c0 d __tracepoint_br_fdb_external_learn_add
-ffffffff82356708 d __tracepoint_fdb_delete
-ffffffff82356750 d __tracepoint_br_fdb_update
-ffffffff82356798 d __tracepoint_neigh_create
-ffffffff823567e0 d __tracepoint_neigh_update
-ffffffff82356828 d __tracepoint_neigh_update_done
-ffffffff82356870 d __tracepoint_neigh_timer_handler
-ffffffff823568b8 d __tracepoint_neigh_event_send_done
-ffffffff82356900 d __tracepoint_neigh_event_send_dead
-ffffffff82356948 d __tracepoint_neigh_cleanup_and_release
-ffffffff82356990 d __tracepoint_netlink_extack
-ffffffff823569d8 d __tracepoint_fib6_table_lookup
-ffffffff82356a20 d __tracepoint_virtio_transport_alloc_pkt
-ffffffff82356a68 d __tracepoint_virtio_transport_recv_pkt
-ffffffff82356ab0 d __tracepoint_ma_op
-ffffffff82356af8 d __tracepoint_ma_read
-ffffffff82356b40 d __tracepoint_ma_write
-ffffffff82356b88 D __start___dyndbg
-ffffffff82356b88 D __start___dyndbg_classes
-ffffffff82356b88 D __start___trace_bprintk_fmt
-ffffffff82356b88 D __start___tracepoint_str
-ffffffff82356b88 D __stop___dyndbg
-ffffffff82356b88 D __stop___dyndbg_classes
-ffffffff82356b88 D __stop___trace_bprintk_fmt
-ffffffff82356b88 d freeze_secondary_cpus.___tp_str
-ffffffff82356b90 d freeze_secondary_cpus.___tp_str.9
-ffffffff82356b98 d thaw_secondary_cpus.___tp_str
-ffffffff82356ba0 d thaw_secondary_cpus.___tp_str.14
-ffffffff82356ba8 d thaw_processes.___tp_str
-ffffffff82356bb0 d thaw_processes.___tp_str.4
-ffffffff82356bb8 d suspend_devices_and_enter.___tp_str
-ffffffff82356bc0 d suspend_devices_and_enter.___tp_str.8
-ffffffff82356bc8 d suspend_enter.___tp_str
-ffffffff82356bd0 d suspend_enter.___tp_str.21
-ffffffff82356bd8 d s2idle_enter.___tp_str
-ffffffff82356be0 d s2idle_enter.___tp_str.22
-ffffffff82356be8 d enter_state.___tp_str
-ffffffff82356bf0 d enter_state.___tp_str.25
-ffffffff82356bf8 d enter_state.___tp_str.27
-ffffffff82356c00 d enter_state.___tp_str.28
-ffffffff82356c08 d suspend_prepare.___tp_str
-ffffffff82356c10 d suspend_prepare.___tp_str.30
-ffffffff82356c18 d tp_rcu_varname
-ffffffff82356c20 d rcutree_dying_cpu.___tp_str
-ffffffff82356c28 d rcutree_dying_cpu.___tp_str.2
-ffffffff82356c30 d rcu_sched_clock_irq.___tp_str
-ffffffff82356c38 d rcu_sched_clock_irq.___tp_str.6
-ffffffff82356c40 d call_rcu.___tp_str
-ffffffff82356c48 d rcu_barrier.___tp_str
-ffffffff82356c50 d rcu_barrier.___tp_str.12
-ffffffff82356c58 d rcu_barrier.___tp_str.14
-ffffffff82356c60 d rcu_barrier.___tp_str.16
-ffffffff82356c68 d rcu_barrier.___tp_str.18
-ffffffff82356c70 d rcu_barrier.___tp_str.20
-ffffffff82356c78 d rcu_barrier.___tp_str.22
-ffffffff82356c80 d rcutree_prepare_cpu.___tp_str
-ffffffff82356c88 d rcu_note_context_switch.___tp_str
-ffffffff82356c90 d rcu_note_context_switch.___tp_str.58
-ffffffff82356c98 d __note_gp_changes.___tp_str
-ffffffff82356ca0 d __note_gp_changes.___tp_str.65
-ffffffff82356ca8 d rcu_accelerate_cbs.___tp_str
-ffffffff82356cb0 d rcu_accelerate_cbs.___tp_str.68
-ffffffff82356cb8 d rcu_accelerate_cbs.___tp_str.70
-ffffffff82356cc0 d rcu_accelerate_cbs.___tp_str.72
-ffffffff82356cc8 d rcu_start_this_gp.___tp_str
-ffffffff82356cd0 d rcu_start_this_gp.___tp_str.75
-ffffffff82356cd8 d rcu_start_this_gp.___tp_str.77
-ffffffff82356ce0 d rcu_start_this_gp.___tp_str.79
-ffffffff82356ce8 d rcu_start_this_gp.___tp_str.81
-ffffffff82356cf0 d rcu_start_this_gp.___tp_str.83
-ffffffff82356cf8 d rcu_start_this_gp.___tp_str.85
-ffffffff82356d00 d print_cpu_stall.___tp_str
-ffffffff82356d08 d print_other_cpu_stall.___tp_str
-ffffffff82356d10 d rcu_barrier_entrain.___tp_str
-ffffffff82356d18 d rcu_barrier_entrain.___tp_str.127
-ffffffff82356d20 d rcu_barrier_callback.___tp_str
-ffffffff82356d28 d rcu_barrier_callback.___tp_str.130
-ffffffff82356d30 d rcu_gp_kthread.___tp_str
-ffffffff82356d38 d rcu_gp_kthread.___tp_str.135
-ffffffff82356d40 d rcu_gp_init.___tp_str
-ffffffff82356d48 d rcu_preempt_check_blocked_tasks.___tp_str
-ffffffff82356d50 d rcu_gp_fqs_loop.___tp_str
-ffffffff82356d58 d rcu_gp_fqs_loop.___tp_str.147
-ffffffff82356d60 d rcu_gp_fqs_loop.___tp_str.149
-ffffffff82356d68 d rcu_gp_fqs_loop.___tp_str.151
-ffffffff82356d70 d dyntick_save_progress_counter.___tp_str
-ffffffff82356d78 d rcu_implicit_dynticks_qs.___tp_str
-ffffffff82356d80 d rcu_gp_cleanup.___tp_str
-ffffffff82356d88 d rcu_gp_cleanup.___tp_str.157
-ffffffff82356d90 d rcu_gp_cleanup.___tp_str.159
-ffffffff82356d98 d rcu_future_gp_cleanup.___tp_str
-ffffffff82356da0 d rcu_future_gp_cleanup.___tp_str.160
-ffffffff82356da8 d rcu_cpu_kthread.___tp_str
-ffffffff82356db0 d rcu_cpu_kthread.___tp_str.165
-ffffffff82356db8 d rcu_cpu_kthread.___tp_str.167
-ffffffff82356dc0 d rcu_cpu_kthread.___tp_str.169
-ffffffff82356dc8 d rcu_core.___tp_str
-ffffffff82356dd0 d rcu_core.___tp_str.172
-ffffffff82356dd8 d rcu_do_batch.___tp_str
-ffffffff82356de0 d do_nocb_deferred_wakeup_timer.___tp_str
-ffffffff82356de8 d do_nocb_deferred_wakeup_common.___tp_str
-ffffffff82356df0 d __wake_nocb_gp.___tp_str
-ffffffff82356df8 d __wake_nocb_gp.___tp_str.215
-ffffffff82356e00 d rcu_exp_gp_seq_snap.___tp_str
-ffffffff82356e08 d exp_funnel_lock.___tp_str
-ffffffff82356e10 d exp_funnel_lock.___tp_str.234
-ffffffff82356e18 d exp_funnel_lock.___tp_str.236
-ffffffff82356e20 d sync_rcu_exp_select_cpus.___tp_str
-ffffffff82356e28 d sync_rcu_exp_select_cpus.___tp_str.238
-ffffffff82356e30 d __sync_rcu_exp_select_node_cpus.___tp_str
-ffffffff82356e38 d rcu_exp_wait_wake.___tp_str
-ffffffff82356e40 d rcu_exp_wait_wake.___tp_str.241
-ffffffff82356e48 d synchronize_rcu_expedited_wait.___tp_str
-ffffffff82356e50 d synchronize_rcu_expedited_wait.___tp_str.244
-ffffffff82356e58 d sync_exp_work_done.___tp_str
-ffffffff82356e60 d rcu_nocb_try_bypass.___tp_str
-ffffffff82356e68 d rcu_nocb_try_bypass.___tp_str.256
-ffffffff82356e70 d rcu_nocb_try_bypass.___tp_str.257
-ffffffff82356e78 d rcu_nocb_try_bypass.___tp_str.259
-ffffffff82356e80 d rcu_nocb_try_bypass.___tp_str.261
-ffffffff82356e88 d __call_rcu_nocb_wake.___tp_str
-ffffffff82356e90 d __call_rcu_nocb_wake.___tp_str.264
-ffffffff82356e98 d __call_rcu_nocb_wake.___tp_str.266
-ffffffff82356ea0 d __call_rcu_nocb_wake.___tp_str.268
-ffffffff82356ea8 d __call_rcu_nocb_wake.___tp_str.270
-ffffffff82356eb0 d __call_rcu_nocb_wake.___tp_str.272
-ffffffff82356eb8 d nocb_gp_wait.___tp_str
-ffffffff82356ec0 d nocb_gp_wait.___tp_str.281
-ffffffff82356ec8 d nocb_gp_wait.___tp_str.283
-ffffffff82356ed0 d nocb_gp_wait.___tp_str.285
-ffffffff82356ed8 d nocb_gp_wait.___tp_str.287
-ffffffff82356ee0 d nocb_gp_wait.___tp_str.289
-ffffffff82356ee8 d nocb_gp_wait.___tp_str.291
-ffffffff82356ef0 d nocb_gp_sleep.___tp_str
-ffffffff82356ef8 d nocb_gp_sleep.___tp_str.294
-ffffffff82356f00 d nocb_cb_wait.___tp_str
-ffffffff82356f08 d nocb_cb_wait.___tp_str.297
-ffffffff82356f10 d rcu_qs.___tp_str
-ffffffff82356f18 d rcu_qs.___tp_str.339
-ffffffff82356f20 d rcu_preempt_deferred_qs_irqrestore.___tp_str
-ffffffff82356f28 d rcu_preempt_deferred_qs_irqrestore.___tp_str.341
-ffffffff82356f30 d rcu_boost_kthread.___tp_str
-ffffffff82356f38 d rcu_boost_kthread.___tp_str.345
-ffffffff82356f40 d rcu_boost_kthread.___tp_str.347
-ffffffff82356f48 d rcu_boost_kthread.___tp_str.349
-ffffffff82356f50 d rcu_boost_kthread.___tp_str.351
-ffffffff82356f58 d tick_freeze.___tp_str
-ffffffff82356f60 d tick_unfreeze.___tp_str
-ffffffff82356f68 d ct_nmi_exit.___tp_str
-ffffffff82356f70 d ct_nmi_exit.___tp_str.2
-ffffffff82356f78 d ct_nmi_enter.___tp_str
-ffffffff82356f80 d ct_nmi_enter.___tp_str.5
-ffffffff82356f88 d ct_kernel_exit.___tp_str
-ffffffff82356f90 d ct_kernel_enter.___tp_str
-ffffffff82356f98 d acpi_suspend_enter.___tp_str
-ffffffff82356fa0 d acpi_suspend_enter.___tp_str.35
-ffffffff82356fa8 d syscore_suspend.___tp_str
-ffffffff82356fb0 d syscore_suspend.___tp_str.5
-ffffffff82356fb8 d syscore_resume.___tp_str
-ffffffff82356fc0 d syscore_resume.___tp_str.11
-ffffffff82356fc8 d dpm_resume_early.___tp_str
-ffffffff82356fd0 d dpm_resume_early.___tp_str.4
-ffffffff82356fd8 d dpm_resume.___tp_str
-ffffffff82356fe0 d dpm_resume.___tp_str.7
-ffffffff82356fe8 d dpm_complete.___tp_str
-ffffffff82356ff0 d dpm_complete.___tp_str.9
-ffffffff82356ff8 d dpm_suspend_late.___tp_str
-ffffffff82357000 d dpm_suspend_late.___tp_str.13
-ffffffff82357008 d dpm_suspend.___tp_str
-ffffffff82357010 d dpm_suspend.___tp_str.16
-ffffffff82357018 d dpm_prepare.___tp_str
-ffffffff82357020 d dpm_prepare.___tp_str.20
-ffffffff82357028 d dpm_noirq_resume_devices.___tp_str
-ffffffff82357030 d dpm_noirq_resume_devices.___tp_str.27
-ffffffff82357038 d dpm_noirq_suspend_devices.___tp_str
-ffffffff82357040 d dpm_noirq_suspend_devices.___tp_str.62
-ffffffff82357048 D __stop___tracepoint_str
-ffffffff82357080 d early_boot_irqs_disabled
-ffffffff82357081 d static_key_initialized
-ffffffff82357084 d system_state
-ffffffff82357088 d vdso64_enabled
-ffffffff8235708c d vclocks_used
-ffffffff82357090 d x86_pmu
-ffffffff82357310 d hw_cache_event_ids
-ffffffff82357460 d hw_cache_extra_regs
-ffffffff823575b0 d rapl_hw_unit
-ffffffff823575d0 d event_offsets
-ffffffff823576d0 d count_offsets
-ffffffff823577d0 d amd_pmu_global_cntr_mask
-ffffffff823577e0 d intel_nehalem_extra_regs
-ffffffff82357840 d intel_perfmon_event_map
-ffffffff82357890 d intel_slm_extra_regs
-ffffffff823578f0 d intel_glm_extra_regs
-ffffffff82357950 d intel_tnt_extra_regs
-ffffffff823579b0 d intel_grt_extra_regs
-ffffffff82357a30 d intel_westmere_extra_regs
-ffffffff82357ab0 d intel_snbep_extra_regs
-ffffffff82357b30 d intel_snb_extra_regs
-ffffffff82357bb0 d intel_knl_extra_regs
-ffffffff82357c10 d intel_skl_extra_regs
-ffffffff82357cb0 d intel_icl_extra_regs
-ffffffff82357d50 d intel_spr_extra_regs
-ffffffff82357e30 d intel_v1_event_constraints
-ffffffff82357e60 d intel_core_event_constraints
-ffffffff82357f80 d intel_core2_event_constraints
-ffffffff823581b0 d intel_nehalem_event_constraints
-ffffffff82358390 d intel_gen_event_constraints
-ffffffff82358430 d intel_slm_event_constraints
-ffffffff823584d0 d intel_westmere_event_constraints
-ffffffff82358610 d intel_snb_event_constraints
-ffffffff823588c0 d intel_ivb_event_constraints
-ffffffff82358b90 d intel_v5_gen_event_constraints
-ffffffff82358e40 d zx_pmon_event_map
-ffffffff82358e90 d zxc_event_constraints
-ffffffff82358ee0 d zxd_event_constraints
-ffffffff82358f80 d ignore_nmis
-ffffffff82358f88 d boot_cpu_data
-ffffffff823590a0 d panic_on_overflow
-ffffffff823590a4 d force_iommu
-ffffffff823590a8 d iommu_merge
-ffffffff823590ac d iommu_detected
-ffffffff823590b0 d no_iommu
-ffffffff823590b4 d disable_dac_quirk
-ffffffff823590b8 d alternatives_patched
-ffffffff823590bc d tsc_unstable
-ffffffff823590c0 d cpu_khz
-ffffffff823590c4 d tsc_khz
-ffffffff823590c8 d io_delay_type
-ffffffff823590cc d __max_die_per_package
-ffffffff823590d0 d elf_hwcap2
-ffffffff823590d4 d tlb_lli_4k
-ffffffff823590d6 d tlb_lli_2m
-ffffffff823590d8 d tlb_lli_4m
-ffffffff823590da d tlb_lld_4k
-ffffffff823590dc d tlb_lld_2m
-ffffffff823590de d tlb_lld_4m
-ffffffff823590e0 d tlb_lld_1g
-ffffffff823590e2 d ring3mwait_disabled
-ffffffff823590e8 d targets_supported
-ffffffff823590f0 d isa_irq_to_gsi
-ffffffff82359130 d __max_smt_threads
-ffffffff82359134 d logical_packages
-ffffffff82359138 d logical_die
-ffffffff8235913c d __max_logical_packages
-ffffffff82359140 d tsc_async_resets
-ffffffff82359148 d ioapic_chip
-ffffffff82359250 d ioapic_ir_chip
-ffffffff82359358 d lapic_chip
-ffffffff82359460 d x86_cpu_to_logical_apicid
-ffffffff82359468 d valid_flags
-ffffffff82359470 d pvti_cpu0_va
-ffffffff82359478 d sched_itmt_capable
-ffffffff8235947c d sysctl_sched_itmt_enabled
-ffffffff82359480 d __default_kernel_pte_mask
-ffffffff82359488 d __supported_pte_mask
-ffffffff823594c0 d va_align
-ffffffff82359500 d tlb_single_page_flush_ceiling
-ffffffff82359508 d pat_disabled
-ffffffff82359509 d pat_bp_initialized
-ffffffff8235950a d pat_bp_enabled
-ffffffff8235950b d pat_cm_initialized
-ffffffff8235950c d arch_task_struct_size
-ffffffff82359510 d panic_on_warn
-ffffffff82359514 d warn_limit
-ffffffff82359518 d sysctl_oops_all_cpu_backtrace
-ffffffff82359520 d cpu_smt_control
-ffffffff82359528 d __cpu_dying_mask
-ffffffff82359530 d __cpu_present_mask
-ffffffff82359538 d __num_online_cpus
-ffffffff82359540 d __cpu_online_mask
-ffffffff82359548 d __cpu_possible_mask
-ffffffff82359550 d __cpu_active_mask
-ffffffff82359558 d print_fatal_signals
-ffffffff82359560 d system_highpri_wq
-ffffffff82359568 d system_unbound_wq
-ffffffff82359570 d system_freezable_wq
-ffffffff82359578 d system_power_efficient_wq
-ffffffff82359580 d system_freezable_power_efficient_wq
-ffffffff82359588 d system_long_wq
-ffffffff82359590 d system_wq
-ffffffff82359598 d task_group_cache
-ffffffff823595a0 d scheduler_running
-ffffffff823595a4 d sched_smp_initialized
-ffffffff823595a8 d sysctl_resched_latency_warn_ms
-ffffffff823595ac d sysctl_resched_latency_warn_once
-ffffffff823595b0 d sysctl_sched_features
-ffffffff823595b4 d sysctl_sched_nr_migrate
-ffffffff823595b8 d max_load_balance_interval
-ffffffff823595c0 d sysctl_sched_child_runs_first
-ffffffff823595c4 d sysctl_sched_migration_cost
-ffffffff823595c8 d cpu_idle_force_poll
-ffffffff823595cc d sched_pelt_lshift
-ffffffff823595d0 d __sched_clock_offset
-ffffffff823595d8 d psi_period
-ffffffff823595d9 d sched_debug_verbose
-ffffffff823595e0 d __gtod_offset
-ffffffff823595e8 d psi_bug
-ffffffff823595ec d freeze_timeout_msecs
-ffffffff823595f0 d s2idle_state
-ffffffff823595f4 d ignore_console_lock_warning
-ffffffff823595f8 d devkmsg_log
-ffffffff823595fc d ignore_loglevel
-ffffffff82359600 d suppress_panic_printk
-ffffffff82359604 d keep_bootcon
-ffffffff82359608 d suppress_printk
-ffffffff8235960c d printk_delay_msec
-ffffffff82359610 d noirqdebug
-ffffffff82359614 d irqfixup
-ffffffff82359618 d rcu_boot_ended
-ffffffff8235961c d rcu_task_ipi_delay
-ffffffff82359620 d rcu_task_stall_timeout
-ffffffff82359624 d rcu_task_stall_info
-ffffffff82359628 d rcu_task_stall_info_mult
-ffffffff8235962c d rcu_task_enqueue_lim
-ffffffff82359630 d rcu_task_contend_lim
-ffffffff82359634 d rcu_task_collapse_lim
-ffffffff82359638 d rcu_exp_cpu_stall_timeout
-ffffffff8235963c d rcu_cpu_stall_timeout
-ffffffff82359640 d rcu_cpu_stall_suppress
-ffffffff82359644 d rcu_cpu_stall_ftrace_dump
-ffffffff82359648 d rcu_cpu_stall_suppress_at_boot
-ffffffff8235964c d big_cpu_lim
-ffffffff82359650 d small_contention_lim
-ffffffff82359654 d srcu_init_done
-ffffffff82359658 d rcu_num_lvls
-ffffffff8235965c d rcu_num_nodes
-ffffffff82359660 d rcu_nocb_poll
-ffffffff82359664 d sysctl_panic_on_rcu_stall
-ffffffff82359668 d sysctl_max_rcu_stall_to_panic
-ffffffff8235966c d rcu_scheduler_fully_active
-ffffffff82359670 d rcu_scheduler_active
-ffffffff82359674 d dma_direct_map_resource.__print_once
-ffffffff82359675 d swiotlb_tbl_map_single.__print_once
-ffffffff82359678 d prof_on
-ffffffff8235967c d hrtimer_resolution
-ffffffff82359680 d hrtimer_hres_enabled
-ffffffff82359684 d timekeeping_suspended
-ffffffff82359688 d tick_do_timer_cpu
-ffffffff82359690 d tick_nohz_enabled
-ffffffff82359698 d tick_nohz_active
-ffffffff823596a0 d __futex_data.0
-ffffffff823596b0 d __futex_data.1
-ffffffff823596b8 d nr_cpu_ids
-ffffffff823596bc d cgroup_feature_disable_mask
-ffffffff823596be d have_canfork_callback
-ffffffff823596c0 d have_fork_callback
-ffffffff823596c2 d have_exit_callback
-ffffffff823596c4 d have_release_callback
-ffffffff823596c6 d cgroup_debug
-ffffffff823596c8 d cpuset_memory_pressure_enabled
-ffffffff823596d0 d audit_tree_mark_cachep
-ffffffff823596d8 d sysctl_hung_task_check_count
-ffffffff823596e0 d sysctl_hung_task_timeout_secs
-ffffffff823596e8 d sysctl_hung_task_warnings
-ffffffff823596ec d sysctl_hung_task_panic
-ffffffff823596f0 d sysctl_hung_task_check_interval_secs
-ffffffff823596f8 d did_panic
-ffffffff823596fc d sysctl_hung_task_all_cpu_backtrace
-ffffffff82359700 d watchdog_user_enabled
-ffffffff82359704 d nmi_watchdog_user_enabled
-ffffffff82359708 d soft_watchdog_user_enabled
-ffffffff8235970c d watchdog_thresh
-ffffffff82359710 d watchdog_cpumask
-ffffffff82359718 d softlockup_panic
-ffffffff82359720 d watchdog_allowed_mask
-ffffffff82359728 d watchdog_enabled
-ffffffff82359730 d nmi_watchdog_available
-ffffffff82359734 d sysctl_softlockup_all_cpu_backtrace
-ffffffff82359738 d sample_period
-ffffffff82359740 d softlockup_initialized
-ffffffff82359748 d ftrace_exports_list
-ffffffff82359750 d tracing_selftest_running
-ffffffff82359758 d trace_types
-ffffffff82359760 d tracing_buffer_mask
-ffffffff82359768 d tracing_selftest_disabled
-ffffffff82359770 d tracing_thresh
-ffffffff82359780 d event_hash
-ffffffff82359b80 d trace_printk_enabled
-ffffffff82359b88 d nop_trace
-ffffffff82359c20 d sysctl_perf_event_paranoid
-ffffffff82359c24 d sysctl_perf_event_mlock
-ffffffff82359c28 d sysctl_perf_event_sample_rate
-ffffffff82359c2c d sysctl_perf_cpu_time_max_percent
-ffffffff82359c30 d max_samples_per_tick
-ffffffff82359c34 d perf_sample_period_ns
-ffffffff82359c38 d perf_sample_allowed_ns
-ffffffff82359c3c d nr_switch_events
-ffffffff82359c40 d nr_comm_events
-ffffffff82359c44 d nr_namespaces_events
-ffffffff82359c48 d nr_mmap_events
-ffffffff82359c4c d nr_ksymbol_events
-ffffffff82359c50 d nr_bpf_events
-ffffffff82359c54 d nr_text_poke_events
-ffffffff82359c58 d nr_build_id_events
-ffffffff82359c5c d nr_cgroup_events
-ffffffff82359c60 d nr_task_events
-ffffffff82359c64 d nr_freq_events
-ffffffff82359c68 d sysctl_perf_event_max_stack
-ffffffff82359c6c d sysctl_perf_event_max_contexts_per_stack
-ffffffff82359c70 d oom_killer_disabled
-ffffffff82359c78 d lru_gen_min_ttl
-ffffffff82359c80 d shmem_huge
-ffffffff82359c88 d sysctl_overcommit_memory
-ffffffff82359c8c d sysctl_overcommit_ratio
-ffffffff82359c90 d sysctl_overcommit_kbytes
-ffffffff82359c98 d sysctl_max_map_count
-ffffffff82359ca0 d sysctl_user_reserve_kbytes
-ffffffff82359ca8 d sysctl_admin_reserve_kbytes
-ffffffff82359cb0 d sysctl_stat_interval
-ffffffff82359cb4 d stable_pages_required_show.__print_once
-ffffffff82359cb5 d pcpu_async_enabled
-ffffffff82359cb8 d sysctl_compact_unevictable_allowed
-ffffffff82359cbc d sysctl_compaction_proactiveness
-ffffffff82359cc0 d bucket_order
-ffffffff82359cc8 d randomize_va_space
-ffffffff82359cd0 d highest_memmap_pfn
-ffffffff82359cd8 d fault_around_bytes
-ffffffff82359ce0 d zero_pfn
-ffffffff82359ce8 d mmap_rnd_bits
-ffffffff82359cec d vmap_initialized
-ffffffff82359cf0 d watermark_boost_factor
-ffffffff82359cf4 d _init_on_alloc_enabled_early
-ffffffff82359cf5 d _init_on_free_enabled_early
-ffffffff82359cf8 d totalreserve_pages
-ffffffff82359d00 d totalcma_pages
-ffffffff82359d08 d gfp_allowed_mask
-ffffffff82359d10 d node_states
-ffffffff82359d40 d page_group_by_mobility_disabled
-ffffffff82359d48 d _totalram_pages
-ffffffff82359d50 d online_policy
-ffffffff82359d54 d auto_movable_ratio
-ffffffff82359d60 d enable_vma_readahead
-ffffffff82359d70 d swapper_spaces
-ffffffff82359e48 d kfence_sample_interval
-ffffffff82359e50 d kfence_skip_covered_thresh
-ffffffff82359e58 d kfence_deferrable
-ffffffff82359e59 d kfence_check_on_panic
-ffffffff82359e60 d __kfence_pool
-ffffffff82359e68 d kfence_enabled
-ffffffff82359e69 d disabled_by_warn
-ffffffff82359e70 d transparent_hugepage_flags
-ffffffff82359e78 d huge_zero_pfn
-ffffffff82359e80 d huge_zero_page
-ffffffff82359e90 d mm_slot_cache
-ffffffff82359e98 d khugepaged_pages_to_scan
-ffffffff82359e9c d khugepaged_max_ptes_none
-ffffffff82359ea0 d khugepaged_max_ptes_swap
-ffffffff82359ea4 d khugepaged_max_ptes_shared
-ffffffff82359eb0 d mm_slots_hash
-ffffffff8235beb0 d khugepaged_thread
-ffffffff8235beb8 d khugepaged_scan_sleep_millisecs
-ffffffff8235bebc d khugepaged_alloc_sleep_millisecs
-ffffffff8235bec0 d soft_limit_tree
-ffffffff8235bed0 d mem_cgroup_events_index
-ffffffff8235c050 d memory_cgrp_subsys
-ffffffff8235c140 d root_mem_cgroup
-ffffffff8235c148 d commit_inputs
-ffffffff8235c150 d min_age
-ffffffff8235c158 d monitor_region_start
-ffffffff8235c160 d monitor_region_end
-ffffffff8235c168 d kdamond_pid
-ffffffff8235c16c d enabled
-ffffffff8235c170 d pr_dev_info
-ffffffff8235c178 d filp_cachep
-ffffffff8235c180 d pipe_mnt
-ffffffff8235c188 d sysctl_protected_hardlinks
-ffffffff8235c18c d sysctl_protected_symlinks
-ffffffff8235c190 d sysctl_protected_fifos
-ffffffff8235c194 d sysctl_protected_regular
-ffffffff8235c198 d fasync_cache
-ffffffff8235c1a0 d names_cachep
-ffffffff8235c1a8 d dentry_cache
-ffffffff8235c1b0 d dentry_hashtable
-ffffffff8235c1b8 d d_hash_shift
-ffffffff8235c1bc d sysctl_vfs_cache_pressure
-ffffffff8235c1c0 d inode_cachep
-ffffffff8235c1c8 d inode_hashtable
-ffffffff8235c1d0 d i_hash_shift
-ffffffff8235c1d4 d i_hash_mask
-ffffffff8235c1d8 d sysctl_nr_open
-ffffffff8235c1e0 d sysctl_mount_max
-ffffffff8235c1e8 d mnt_cache
-ffffffff8235c1f0 d m_hash_shift
-ffffffff8235c1f4 d m_hash_mask
-ffffffff8235c1f8 d mount_hashtable
-ffffffff8235c200 d mp_hash_shift
-ffffffff8235c204 d mp_hash_mask
-ffffffff8235c208 d mountpoint_hashtable
-ffffffff8235c210 d bh_cachep
-ffffffff8235c218 d dio_cache
-ffffffff8235c220 d inotify_max_queued_events
-ffffffff8235c228 d inotify_inode_mark_cachep
-ffffffff8235c230 d pwq_cache
-ffffffff8235c238 d ephead_cache
-ffffffff8235c240 d epi_cache
-ffffffff8235c248 d max_user_watches
-ffffffff8235c250 d anon_inode_mnt
-ffffffff8235c258 d userfaultfd_ctx_cachep
-ffffffff8235c260 d sysctl_unprivileged_userfaultfd
-ffffffff8235c268 d flctx_cache
-ffffffff8235c270 d filelock_cache
-ffffffff8235c278 d allow_sys_admin_access
-ffffffff8235c280 d erofs_inode_cachep
-ffffffff8235c290 d z_erofs_workqueue
-ffffffff8235c2a0 d pcluster_pool
-ffffffff8235c420 d iint_cache
-ffffffff8235c428 d bdev_cachep
-ffffffff8235c430 d blockdev_superblock
-ffffffff8235c440 d bvec_slabs
-ffffffff8235c4a0 d blk_timeout_mask
-ffffffff8235c4a4 d debug_locks
-ffffffff8235c4a8 d debug_locks_silent
-ffffffff8235c4ac d percpu_counter_batch
-ffffffff8235c4b0 d vga_vram_base
-ffffffff8235c4b8 d vga_video_port_reg
-ffffffff8235c4ba d vga_video_port_val
-ffffffff8235c4bc d vga_video_type
-ffffffff8235c4c0 d vga_vram_size
-ffffffff8235c4c8 d vga_vram_end
-ffffffff8235c4d0 d vga_default_font_height
-ffffffff8235c4d4 d vga_scan_lines
-ffffffff8235c4d8 d errata
-ffffffff8235c4e4 d acpi_processor_get_info.__print_once
-ffffffff8235c4e8 d ec_delay
-ffffffff8235c4ec d ec_max_queries
-ffffffff8235c4f0 d ec_busy_polling
-ffffffff8235c4f4 d ec_polling_guard
-ffffffff8235c4f8 d ec_storm_threshold
-ffffffff8235c4fc d ec_freeze_events
-ffffffff8235c4fd d ec_no_wakeup
-ffffffff8235c500 d ec_event_clearing
-ffffffff8235c504 d acpi_ged_irq_handler.__print_once
-ffffffff8235c505 d sleep_no_lps0
-ffffffff8235c508 d lid_report_interval
-ffffffff8235c510 d max_cstate
-ffffffff8235c514 d nocst
-ffffffff8235c515 d bm_check_disable
-ffffffff8235c518 d latency_factor
-ffffffff8235c51c d sysrq_always_enabled
-ffffffff8235c520 d sysrq_enabled
-ffffffff8235c524 d hvc_needs_init
-ffffffff8235c528 d ratelimit_disable
-ffffffff8235c52c d crng_init
-ffffffff8235c530 d iommu_dma_strict
-ffffffff8235c534 d iommu_def_domain_type
-ffffffff8235c538 d iommu_cmd_line
-ffffffff8235c53c d iommu_dma_forcedac
-ffffffff8235c53d d iommu_dma_map_page.__print_once
-ffffffff8235c540 d events_check_enabled
-ffffffff8235c544 d pm_abort_suspend
-ffffffff8235c548 d wakeup_irq.0
-ffffffff8235c54c d wakeup_irq.1
-ffffffff8235c550 d set_badblock.__print_once
-ffffffff8235c558 d dax_superblock
-ffffffff8235c560 d dax_cache
-ffffffff8235c568 d lvtthmr_init
-ffffffff8235c56c d off
-ffffffff8235c570 d hwp_active
-ffffffff8235c574 d hwp_mode_bdw
-ffffffff8235c578 d pstate_funcs.0
-ffffffff8235c580 d pstate_funcs.1
-ffffffff8235c588 d pstate_funcs.2
-ffffffff8235c590 d pstate_funcs.3
-ffffffff8235c598 d pstate_funcs.4
-ffffffff8235c5a0 d pstate_funcs.5
-ffffffff8235c5a8 d pstate_funcs.6
-ffffffff8235c5b0 d pstate_funcs.7
-ffffffff8235c5b8 d pstate_funcs.8
-ffffffff8235c5c0 d intel_pstate_driver
-ffffffff8235c5c8 d hwp_boost
-ffffffff8235c5c9 d per_cpu_limits
-ffffffff8235c5cc d off
-ffffffff8235c5d0 d initialized
-ffffffff8235c5d1 d force
-ffffffff8235c5d8 d efi
-ffffffff8235c6e0 d pmtmr_ioport
-ffffffff8235c6f0 d sock_mnt
-ffffffff8235c700 d net_families
-ffffffff8235c870 d sysctl_net_busy_poll
-ffffffff8235c874 d sysctl_net_busy_read
-ffffffff8235c878 d sysctl_wmem_max
-ffffffff8235c87c d sysctl_rmem_max
-ffffffff8235c880 d sysctl_wmem_default
-ffffffff8235c884 d sysctl_rmem_default
-ffffffff8235c888 d sysctl_optmem_max
-ffffffff8235c88c d sysctl_tstamp_allow_data
-ffffffff8235c890 d sock_set_timeout.warned
-ffffffff8235c898 d sysctl_max_skb_frags
-ffffffff8235c8a0 d crc32c_csum_stub
-ffffffff8235c8a8 d flow_keys_dissector_symmetric
-ffffffff8235c8ec d flow_keys_dissector
-ffffffff8235c930 d flow_keys_basic_dissector
-ffffffff8235c974 d sysctl_fb_tunnels_only_for_init_net
-ffffffff8235c978 d sysctl_devconf_inherit_init_net
-ffffffff8235c980 d ptype_all
-ffffffff8235c990 d xps_needed
-ffffffff8235c9a0 d xps_rxqs_needed
-ffffffff8235c9b0 d netdev_max_backlog
-ffffffff8235c9b4 d netdev_tstamp_prequeue
-ffffffff8235c9b8 d netdev_budget
-ffffffff8235c9bc d netdev_budget_usecs
-ffffffff8235c9c0 d weight_p
-ffffffff8235c9c4 d dev_weight_rx_bias
-ffffffff8235c9c8 d dev_weight_tx_bias
-ffffffff8235c9cc d dev_rx_weight
-ffffffff8235c9d0 d dev_tx_weight
-ffffffff8235c9d4 d netdev_flow_limit_table_len
-ffffffff8235c9d8 d rps_needed
-ffffffff8235c9e8 d netdev_unregister_timeout_secs
-ffffffff8235c9f0 d ptype_base
-ffffffff8235caf0 d rps_sock_flow_table
-ffffffff8235caf8 d rps_cpu_mask
-ffffffff8235cb00 d rfs_needed
-ffffffff8235cb10 d napi_hash
-ffffffff8235d310 d sysctl_skb_defer_max
-ffffffff8235d320 d neigh_tables
-ffffffff8235d338 d neigh_sysctl_template
-ffffffff8235d8c0 d ipv6_bpf_stub
-ffffffff8235d8c8 d gro_normal_batch
-ffffffff8235d8d0 d offload_base
-ffffffff8235d8e0 d eth_packet_offload
-ffffffff8235d910 d pfifo_fast_ops
-ffffffff8235d9c0 d noop_qdisc_ops
-ffffffff8235da70 d noqueue_qdisc_ops
-ffffffff8235db20 d mq_qdisc_ops
-ffffffff8235dbd0 d nl_table
-ffffffff8235dbe0 d netdev_rss_key
-ffffffff8235dc14 d ethnl_ok
-ffffffff8235dc18 d ip_rt_redirect_silence
-ffffffff8235dc1c d ip_rt_redirect_number
-ffffffff8235dc20 d ip_rt_redirect_load
-ffffffff8235dc24 d ip_idents_mask
-ffffffff8235dc28 d ip_idents
-ffffffff8235dc30 d ip_tstamps
-ffffffff8235dc38 d ip_rt_gc_timeout
-ffffffff8235dc3c d ip_rt_error_burst
-ffffffff8235dc40 d ip_rt_error_cost
-ffffffff8235dc44 d ip_min_valid_pmtu
-ffffffff8235dc48 d ip_rt_gc_min_interval
-ffffffff8235dc4c d ip_rt_gc_interval
-ffffffff8235dc50 d ip_rt_gc_elasticity
-ffffffff8235dc54 d inet_peer_minttl
-ffffffff8235dc58 d inet_peer_maxttl
-ffffffff8235dc5c d inet_peer_threshold
-ffffffff8235dc60 d inet_protos
-ffffffff8235e460 d inet_offloads
-ffffffff8235ec60 d inet_ehashfn.inet_ehash_secret
-ffffffff8235ec70 d sysctl_tcp_mem
-ffffffff8235ec88 d tcp_memory_pressure
-ffffffff8235ec90 d tcp_gro_dev_warn.__once
-ffffffff8235ec94 d sysctl_tcp_max_orphans
-ffffffff8235ec98 d tcp_request_sock_ops
-ffffffff8235ecd8 d tcp_metrics_hash_log
-ffffffff8235ece0 d tcp_metrics_hash
-ffffffff8235ecf0 d sysctl_udp_mem
-ffffffff8235ed08 d udp_flow_hashrnd.hashrnd
-ffffffff8235ed0c d udp_busylocks_log
-ffffffff8235ed10 d udp_busylocks
-ffffffff8235ed18 d udp_ehashfn.udp_ehash_secret
-ffffffff8235ed20 d udp_table
-ffffffff8235ed38 d udplite_table
-ffffffff8235ed50 d arp_packet_type
-ffffffff8235ed98 d sysctl_icmp_msgs_per_sec
-ffffffff8235ed9c d sysctl_icmp_msgs_burst
-ffffffff8235eda0 d inet_af_ops
-ffffffff8235ede8 d ip_packet_offload
-ffffffff8235ee18 d ip_packet_type
-ffffffff8235ee60 d iptun_encaps
-ffffffff8235eea0 d ip6tun_encaps
-ffffffff8235eee0 d sysctl_tcp_low_latency
-ffffffff8235eee8 d ipip_link_ops
-ffffffff8235efb8 d ipip_handler
-ffffffff8235efe0 d ipip_net_id
-ffffffff8235eff0 d gre_proto
-ffffffff8235f000 d ipgre_tap_ops
-ffffffff8235f0d0 d ipgre_link_ops
-ffffffff8235f1a0 d erspan_link_ops
-ffffffff8235f270 d gre_tap_net_id
-ffffffff8235f274 d ipgre_net_id
-ffffffff8235f278 d erspan_net_id
-ffffffff8235f280 d vti_link_ops
-ffffffff8235f350 d vti_ipcomp4_protocol
-ffffffff8235f380 d vti_ah4_protocol
-ffffffff8235f3b0 d vti_esp4_protocol
-ffffffff8235f3e0 d vti_net_id
-ffffffff8235f3e8 d tunnel4_handlers
-ffffffff8235f3f0 d tunnel64_handlers
-ffffffff8235f3f8 d tunnelmpls4_handlers
-ffffffff8235f400 d fast_convergence
-ffffffff8235f404 d beta
-ffffffff8235f408 d initial_ssthresh
-ffffffff8235f40c d bic_scale
-ffffffff8235f410 d tcp_friendliness
-ffffffff8235f414 d hystart
-ffffffff8235f418 d hystart_detect
-ffffffff8235f41c d hystart_low_window
-ffffffff8235f420 d hystart_ack_delta_us
-ffffffff8235f440 d cubictcp
-ffffffff8235f500 d cube_factor
-ffffffff8235f508 d cube_rtt_scale
-ffffffff8235f50c d beta_scale
-ffffffff8235f510 d esp4_handlers
-ffffffff8235f518 d ah4_handlers
-ffffffff8235f520 d ipcomp4_handlers
-ffffffff8235f530 d xfrm_policy_afinfo
-ffffffff8235f588 d xfrm_if_cb
-ffffffff8235f590 d xfrmi_link_ops
-ffffffff8235f660 d xfrmi_net_id
-ffffffff8235f668 d xfrmi_ipcomp4_protocol
-ffffffff8235f698 d xfrmi_ah4_protocol
-ffffffff8235f6c8 d xfrmi_esp4_protocol
-ffffffff8235f6f8 d xfrmi_ip6ip_handler
-ffffffff8235f720 d xfrmi_ipv6_handler
-ffffffff8235f748 d xfrmi_ipcomp6_protocol
-ffffffff8235f778 d xfrmi_ah6_protocol
-ffffffff8235f7a8 d xfrmi_esp6_protocol
-ffffffff8235f7d8 d ipv6_packet_type
-ffffffff8235f820 d inet6_ops
-ffffffff8235f868 d ipv6_devconf
-ffffffff8235f960 d ipv6_devconf_dflt
-ffffffff8235fa58 d fib6_node_kmem
-ffffffff8235fa60 d udp6_ehashfn.udp6_ehash_secret
-ffffffff8235fa64 d udp6_ehashfn.udp_ipv6_hash_secret
-ffffffff8235fa68 d mh_filter
-ffffffff8235fa70 d sysctl_mld_max_msf
-ffffffff8235fa74 d sysctl_mld_qrv
-ffffffff8235fa78 d tcp6_request_sock_ops
-ffffffff8235fab8 d esp6_handlers
-ffffffff8235fac0 d ah6_handlers
-ffffffff8235fac8 d ipcomp6_handlers
-ffffffff8235fad0 d xfrm46_tunnel_handler
-ffffffff8235faf8 d xfrm6_tunnel_handler
-ffffffff8235fb20 d xfrm6_tunnel_spi_kmem
-ffffffff8235fb28 d xfrm6_tunnel_net_id
-ffffffff8235fb30 d tunnel6_handlers
-ffffffff8235fb38 d tunnel46_handlers
-ffffffff8235fb40 d tunnelmpls6_handlers
-ffffffff8235fb48 d vti6_link_ops
-ffffffff8235fc18 d vti_ip6ip_handler
-ffffffff8235fc40 d vti_ipv6_handler
-ffffffff8235fc68 d vti_ipcomp6_protocol
-ffffffff8235fc98 d vti_ah6_protocol
-ffffffff8235fcc8 d vti_esp6_protocol
-ffffffff8235fcf8 d vti6_net_id
-ffffffff8235fd00 d sit_link_ops
-ffffffff8235fdd0 d sit_handler
-ffffffff8235fdf8 d ipip_handler
-ffffffff8235fe20 d sit_net_id
-ffffffff8235fe28 d ip6_link_ops
-ffffffff8235fef8 d ip4ip6_handler
-ffffffff8235ff20 d ip6ip6_handler
-ffffffff8235ff48 d ip6_tnl_net_id
-ffffffff8235ff50 d ip6gre_tap_ops
-ffffffff82360020 d ip6gre_link_ops
-ffffffff823600f0 d ip6erspan_tap_ops
-ffffffff823601c0 d ip6gre_protocol
-ffffffff823601d8 d ip6gre_net_id
-ffffffff823601e0 d ipv6_stub
-ffffffff823601f0 d inet6_protos
-ffffffff823609f0 d inet6_offloads
-ffffffff823611f0 d ipv6_packet_offload
-ffffffff82361220 d inet6_ehashfn.inet6_ehash_secret
-ffffffff82361224 d inet6_ehashfn.ipv6_hash_secret
-ffffffff82361228 d pfkey_net_id
-ffffffff82361230 d vsock_tap_all
-ffffffff82361240 d raw_pci_ext_ops
-ffffffff82361248 d raw_pci_ops
-ffffffff82361250 d backtrace_mask
-ffffffff82361258 d ptr_key
-ffffffff82361268 d filled_random_ptr_key
-ffffffff8236126c d kptr_restrict
-ffffffff82361280 D __start___bug_table
-ffffffff82361280 D _edata
-ffffffff82376ec8 D __stop___bug_table
-ffffffff82377000 D __vvar_beginning_hack
-ffffffff82377000 D __vvar_page
-ffffffff82377080 d _vdso_data
-ffffffff82378000 D __init_begin
-ffffffff82378000 D __per_cpu_load
-ffffffff82378000 D init_per_cpu__fixed_percpu_data
-ffffffff8237a000 D init_per_cpu__irq_stack_backing_store
-ffffffff82383000 D init_per_cpu__gdt_page
-ffffffff823a4000 T _sinittext
-ffffffff823a4000 T early_idt_handler_array
-ffffffff823a4120 t early_idt_handler_common
-ffffffff823a415a T __initstub__kmod_cpu__334_407_bsp_pm_check_init1
-ffffffff823a4173 T __initstub__kmod_cpu__336_544_pm_check_save_msr6
-ffffffff823a4238 t __early_make_pgtable
-ffffffff823a45e8 t do_early_exception
-ffffffff823a4633 t clear_bss
-ffffffff823a467c t x86_64_start_kernel
-ffffffff823a47a7 t copy_bootdata
-ffffffff823a4855 t x86_64_start_reservations
-ffffffff823a4880 t reserve_bios_regions
-ffffffff823a48e3 t x86_early_init_platform_quirks
-ffffffff823a4974 t x86_pnpbios_disabled
-ffffffff823a4989 t set_reset_devices
-ffffffff823a49a3 t debug_kernel
-ffffffff823a49ba t quiet_kernel
-ffffffff823a49d1 t loglevel
-ffffffff823a4a34 t warn_bootconfig
-ffffffff823a4a41 t init_setup
-ffffffff823a4a6b t rdinit_setup
-ffffffff823a4a95 t parse_early_options
-ffffffff823a4ac4 t do_early_param
-ffffffff823a4b65 t parse_early_param
-ffffffff823a4bc0 t smp_setup_processor_id
-ffffffff823a4bcb t thread_stack_cache_init
-ffffffff823a4bd6 t mem_encrypt_init
-ffffffff823a4be1 t pgtable_cache_init
-ffffffff823a4bec t early_randomize_kstack_offset
-ffffffff823a4c60 t arch_call_rest_init
-ffffffff823a4c69 t start_kernel
-ffffffff823a5121 t setup_boot_config
-ffffffff823a52a0 t setup_command_line
-ffffffff823a5477 t unknown_bootoption
-ffffffff823a556e t print_unknown_bootoptions
-ffffffff823a56c7 t set_init_arg
-ffffffff823a5736 t mm_init
-ffffffff823a5786 t initcall_debug_enable
-ffffffff823a57dd t initcall_blacklist
-ffffffff823a5926 t do_one_initcall
-ffffffff823a5b30 t initcall_blacklisted
-ffffffff823a5bfb t set_debug_rodata
-ffffffff823a5c59 t console_on_rootfs
-ffffffff823a5cb2 t get_boot_config_from_initrd
-ffffffff823a5d82 t bootconfig_params
-ffffffff823a5da6 t xbc_make_cmdline
-ffffffff823a5e52 t xbc_snprint_cmdline
-ffffffff823a5f98 t repair_env_string
-ffffffff823a5ff8 t obsolete_checksetup
-ffffffff823a60a9 t report_meminit
-ffffffff823a60f9 t trace_initcall_start_cb
-ffffffff823a612b t trace_initcall_finish_cb
-ffffffff823a617c t kernel_init_freeable
-ffffffff823a62d4 t do_pre_smp_initcalls
-ffffffff823a6366 t do_basic_setup
-ffffffff823a6385 t do_initcalls
-ffffffff823a6401 t do_initcall_level
-ffffffff823a64fa t ignore_unknown_bootoption
-ffffffff823a6507 t early_hostname
-ffffffff823a6541 t load_ramdisk
-ffffffff823a655d t readonly
-ffffffff823a657b t readwrite
-ffffffff823a6599 t root_dev_setup
-ffffffff823a65bd t rootwait_setup
-ffffffff823a65db t root_data_setup
-ffffffff823a65f2 t fs_names_setup
-ffffffff823a6609 t root_delay_setup
-ffffffff823a6628 t mount_block_root
-ffffffff823a6828 t split_fs_names
-ffffffff823a6865 t do_mount_root
-ffffffff823a699b t mount_root
-ffffffff823a69fc t mount_nodev_root
-ffffffff823a6aa8 t create_dev
-ffffffff823a6afe t prepare_namespace
-ffffffff823a6c77 t init_rootfs
-ffffffff823a6caf t prompt_ramdisk
-ffffffff823a6ccb t ramdisk_start_setup
-ffffffff823a6cea t rd_load_image
-ffffffff823a6fb6 t identify_ramdisk_image
-ffffffff823a7212 t crd_load
-ffffffff823a7273 t rd_load_disk
-ffffffff823a72b4 t create_dev
-ffffffff823a7306 t compr_fill
-ffffffff823a7350 t compr_flush
-ffffffff823a73ac t error
-ffffffff823a73cd t __initstub__kmod_mounts__315_40_kernel_do_mounts_initrd_sysctls_init7
-ffffffff823a73f4 t no_initrd
-ffffffff823a740b t early_initrdmem
-ffffffff823a747d t early_initrd
-ffffffff823a748f t initrd_load
-ffffffff823a752b t handle_initrd
-ffffffff823a7719 t init_linuxrc
-ffffffff823a776f t retain_initrd_param
-ffffffff823a778d t initramfs_async_setup
-ffffffff823a77a9 t reserve_initrd_mem
-ffffffff823a7898 t __initstub__kmod_initramfs__284_762_populate_rootfsrootfs
-ffffffff823a78aa t populate_rootfs
-ffffffff823a78eb t do_populate_rootfs
-ffffffff823a79a7 t unpack_to_rootfs
-ffffffff823a7c4d t populate_initrd_image
-ffffffff823a7d1c t kexec_free_initrd
-ffffffff823a7d9c t flush_buffer
-ffffffff823a7e49 t error
-ffffffff823a7e65 t dir_utime
-ffffffff823a7f36 t do_start
-ffffffff823a7fb1 t do_collect
-ffffffff823a8051 t do_header
-ffffffff823a820d t do_skip
-ffffffff823a828e t do_name
-ffffffff823a84b3 t do_copy
-ffffffff823a8629 t do_symlink
-ffffffff823a8709 t do_reset
-ffffffff823a877c t parse_header
-ffffffff823a88b5 t free_hash
-ffffffff823a88f3 t clean_path
-ffffffff823a89a8 t maybe_link
-ffffffff823a8a1b t dir_add
-ffffffff823a8ab7 t find_link
-ffffffff823a8baa t xwrite
-ffffffff823a8c44 t lpj_setup
-ffffffff823a8c64 t init_vdso_image
-ffffffff823a8c92 t vdso_setup
-ffffffff823a8cb1 t __initstub__kmod_vma__338_458_init_vdso4
-ffffffff823a8cca t vsyscall_setup
-ffffffff823a8d39 t set_vsyscall_pgtable_user_bits
-ffffffff823a8e53 t map_vsyscall
-ffffffff823a8ebe t __initstub__kmod_core__331_2226_init_hw_perf_eventsearly
-ffffffff823a8ece t init_hw_perf_events
-ffffffff823a95b3 t pmu_check_apic
-ffffffff823a95f6 t __initstub__kmod_rapl__281_867_rapl_pmu_init6
-ffffffff823a9606 t rapl_pmu_init
-ffffffff823a9784 t init_rapl_pmus
-ffffffff823a9833 t rapl_advertise
-ffffffff823a98b1 t amd_pmu_init
-ffffffff823a993f t amd_core_pmu_init
-ffffffff823a9bba t amd_pmu_lbr_init
-ffffffff823a9c09 t __initstub__kmod_ibs__292_1542_amd_ibs_init6
-ffffffff823a9c19 t amd_ibs_init
-ffffffff823a9c9b t __get_ibs_caps
-ffffffff823a9ce5 t perf_event_ibs_init
-ffffffff823a9d87 t perf_ibs_fetch_init
-ffffffff823a9df1 t perf_ibs_op_init
-ffffffff823a9e61 t perf_ibs_pmu_init
-ffffffff823a9ee0 t __initstub__kmod_amd_uncore__289_785_amd_uncore_init6
-ffffffff823a9ef0 t amd_uncore_init
-ffffffff823aa24e t __initstub__kmod_msr__279_316_msr_init6
-ffffffff823aa260 t msr_init
-ffffffff823aa2bd t intel_pmu_init
-ffffffff823ac088 t intel_arch_events_quirk
-ffffffff823ac130 t intel_clovertown_quirk
-ffffffff823ac159 t intel_nehalem_quirk
-ffffffff823ac192 t intel_sandybridge_quirk
-ffffffff823ac1b7 t intel_ht_bug
-ffffffff823ac1ea t intel_pebs_isolation_quirk
-ffffffff823ac236 t __initstub__kmod_core__336_6656_fixup_ht_bug4
-ffffffff823ac248 t fixup_ht_bug
-ffffffff823ac32f t __initstub__kmod_bts__283_625_bts_init3
-ffffffff823ac33f t bts_init
-ffffffff823ac400 t intel_pmu_pebs_data_source_nhm
-ffffffff823ac431 t intel_pmu_pebs_data_source_skl
-ffffffff823ac4ab t intel_pmu_pebs_data_source_grt
-ffffffff823ac4e5 t intel_pmu_pebs_data_source_adl
-ffffffff823ac5af t intel_ds_init
-ffffffff823ac7f9 t knc_pmu_init
-ffffffff823ac836 t intel_pmu_lbr_init_core
-ffffffff823ac866 t intel_pmu_lbr_init_nhm
-ffffffff823ac8ac t intel_pmu_lbr_init_snb
-ffffffff823ac8f2 t intel_pmu_lbr_init_skl
-ffffffff823ac978 t intel_pmu_lbr_init_atom
-ffffffff823ac9c8 t intel_pmu_lbr_init_slm
-ffffffff823aca1a t intel_pmu_arch_lbr_init
-ffffffff823acd22 t p4_pmu_init
-ffffffff823ace08 t p6_pmu_init
-ffffffff823ace8e t p6_pmu_rdpmc_quirk
-ffffffff823acebb t __initstub__kmod_pt__301_1814_pt_init3
-ffffffff823acecb t pt_init
-ffffffff823ad0b2 t pt_pmu_hw_init
-ffffffff823ad247 t __initstub__kmod_intel_uncore__288_1913_intel_uncore_init6
-ffffffff823ad257 t intel_uncore_init
-ffffffff823ad3c7 t uncore_pci_init
-ffffffff823ad778 t uncore_cpu_init
-ffffffff823ad7e0 t uncore_mmio_init
-ffffffff823ad862 t uncore_type_init
-ffffffff823ada95 t uncore_msr_pmus_register
-ffffffff823adad6 t type_pmu_register
-ffffffff823adb22 t __initstub__kmod_intel_cstate__284_787_cstate_pmu_init6
-ffffffff823adb32 t cstate_pmu_init
-ffffffff823adb7a t cstate_probe
-ffffffff823adc1c t cstate_init
-ffffffff823add77 t zhaoxin_pmu_init
-ffffffff823ae00a t zhaoxin_arch_events_quirk
-ffffffff823ae0b2 t reserve_real_mode
-ffffffff823ae13a t init_real_mode
-ffffffff823ae165 t setup_real_mode
-ffffffff823ae2cd t set_real_mode_permissions
-ffffffff823ae3b2 t __initstub__kmod_init__254_217_do_init_real_modeearly
-ffffffff823ae3cc t init_sigframe_size
-ffffffff823ae405 t strict_sas_size
-ffffffff823ae425 t trap_init
-ffffffff823ae444 t idt_setup_early_traps
-ffffffff823ae46c t idt_setup_from_table
-ffffffff823ae546 t idt_setup_traps
-ffffffff823ae567 t idt_setup_early_pf
-ffffffff823ae588 t idt_setup_apic_and_irq_gates
-ffffffff823ae71b t set_intr_gate
-ffffffff823ae781 t idt_setup_early_handler
-ffffffff823ae7bb t alloc_intr_gate
-ffffffff823ae7f5 t __initstub__kmod_irq__616_75_trace_init_perf_perm_irq_work_exitearly
-ffffffff823ae80d t hpet_time_init
-ffffffff823ae831 t setup_default_timer_irq
-ffffffff823ae86d t time_init
-ffffffff823ae883 t x86_late_time_init
-ffffffff823ae8c4 t setup_unknown_nmi_panic
-ffffffff823ae8de t __initstub__kmod_nmi__297_102_nmi_warning_debugfs5
-ffffffff823ae90a t extend_brk
-ffffffff823ae96e t reserve_standard_io_resources
-ffffffff823ae99d t setup_arch
-ffffffff823aef67 t early_reserve_memory
-ffffffff823aefbf t parse_setup_data
-ffffffff823af0bc t e820_add_kernel_range
-ffffffff823af13f t trim_bios_range
-ffffffff823af185 t reserve_brk
-ffffffff823af1c1 t reserve_initrd
-ffffffff823af2a8 t reserve_crashkernel
-ffffffff823af445 t __initstub__kmod_setup__354_1363_register_kernel_offset_dumper6
-ffffffff823af465 t early_reserve_initrd
-ffffffff823af4db t memblock_x86_reserve_range_setup_data
-ffffffff823af5a0 t trim_snb_memory
-ffffffff823af5fe t snb_gfx_workaround_needed
-ffffffff823af66b t relocate_initrd
-ffffffff823af771 t reserve_crashkernel_low
-ffffffff823af8a5 t x86_init_uint_noop
-ffffffff823af8b0 t bool_x86_init_noop
-ffffffff823af8bd t x86_wallclock_init
-ffffffff823af8ff t iommu_init_noop
-ffffffff823af90c t __initstub__kmod_i8259__216_435_i8259A_init_ops6
-ffffffff823af935 t init_ISA_irqs
-ffffffff823af9aa t init_IRQ
-ffffffff823afa22 t native_init_IRQ
-ffffffff823afa99 t probe_roms
-ffffffff823afce2 t romsignature
-ffffffff823afd48 t romchecksum
-ffffffff823afdd6 t control_va_addr_alignment
-ffffffff823afe88 t init_espfix_bsp
-ffffffff823affd4 t __initstub__kmod_ksysfs__255_401_boot_params_ksysfs_init3
-ffffffff823affe4 t boot_params_ksysfs_init
-ffffffff823b0065 t create_setup_data_nodes
-ffffffff823b01c1 t get_setup_data_total_num
-ffffffff823b0223 t create_setup_data_node
-ffffffff823b0309 t get_setup_data_size
-ffffffff823b03f2 t __initstub__kmod_bootflag__241_102_sbf_init3
-ffffffff823b0404 t sbf_init
-ffffffff823b0460 t sbf_read
-ffffffff823b04ac t sbf_write
-ffffffff823b0533 t e820__mapped_all
-ffffffff823b0549 t e820__range_add
-ffffffff823b0568 t __e820__range_add
-ffffffff823b05a8 t e820__print_table
-ffffffff823b062a t e820_print_type
-ffffffff823b06cb t e820__update_table
-ffffffff823b09e2 t cpcompare
-ffffffff823b0a26 t e820__range_update
-ffffffff823b0a48 t __e820__range_update
-ffffffff823b0bfd t e820__range_remove
-ffffffff823b0d6d t e820__update_table_print
-ffffffff823b0da2 t e820__setup_pci_gap
-ffffffff823b0e48 t e820_search_gap
-ffffffff823b0eae t e820__reallocate_tables
-ffffffff823b0f43 t e820__memory_setup_extended
-ffffffff823b0fdc t __append_e820_table
-ffffffff823b102c t e820__register_nosave_regions
-ffffffff823b1037 t __initstub__kmod_e820__329_792_e820__register_nvs_regions1
-ffffffff823b1049 t e820__register_nvs_regions
-ffffffff823b1091 t e820__memblock_alloc_reserved
-ffffffff823b10f0 t e820__end_of_ram_pfn
-ffffffff823b1119 t e820_end_pfn
-ffffffff823b11a9 t e820__end_of_low_ram_pfn
-ffffffff823b11be t parse_memopt
-ffffffff823b1267 t parse_memmap_opt
-ffffffff823b12b4 t e820__reserve_setup_data
-ffffffff823b1434 t e820__finish_early_params
-ffffffff823b148a t e820__reserve_resources
-ffffffff823b1635 t e820_type_to_string
-ffffffff823b16d6 t e820_type_to_iores_desc
-ffffffff823b1736 t e820__reserve_resources_late
-ffffffff823b1837 t e820__memory_setup_default
-ffffffff823b18e3 t e820__memory_setup
-ffffffff823b1947 t e820__memblock_setup
-ffffffff823b19d6 t parse_memmap_one
-ffffffff823b1bf7 t pci_iommu_alloc
-ffffffff823b1c39 t iommu_setup
-ffffffff823b1edb t __initstub__kmod_pci_dma__269_208_pci_iommu_initrootfs
-ffffffff823b1eed t pci_iommu_init
-ffffffff823b1f26 t early_platform_quirks
-ffffffff823b1f61 t enable_cpu0_hotplug
-ffffffff823b1f78 t __initstub__kmod_topology__199_162_topology_init4
-ffffffff823b1f8a t topology_init
-ffffffff823b1fc5 t __initstub__kmod_kdebugfs__251_195_arch_kdebugfs_init3
-ffffffff823b1fe7 t int3_magic
-ffffffff823b1ff2 t debug_alt
-ffffffff823b2009 t setup_noreplace_smp
-ffffffff823b2020 t apply_alternatives
-ffffffff823b23dd t recompute_jump
-ffffffff823b2490 t text_poke_early
-ffffffff823b2507 t optimize_nops
-ffffffff823b2704 t apply_retpolines
-ffffffff823b2aa9 t apply_returns
-ffffffff823b2d56 t apply_ibt_endbr
-ffffffff823b2d61 t alternatives_smp_module_add
-ffffffff823b2ef5 t alternatives_smp_module_del
-ffffffff823b2f78 t apply_paravirt
-ffffffff823b30aa t alternative_instructions
-ffffffff823b31b3 t int3_selftest
-ffffffff823b31e3 t int3_selftest_ip
-ffffffff823b321c t int3_exception_notify
-ffffffff823b3284 t pit_timer_init
-ffffffff823b32c0 t tsc_early_khz_setup
-ffffffff823b32d9 t notsc_setup
-ffffffff823b32f5 t tsc_setup
-ffffffff823b337c t __initstub__kmod_tsc__244_1029_cpufreq_register_tsc_scaling1
-ffffffff823b338e t cpufreq_register_tsc_scaling
-ffffffff823b33bf t __initstub__kmod_tsc__246_1436_init_tsc_clocksource6
-ffffffff823b33d1 t init_tsc_clocksource
-ffffffff823b3467 t tsc_early_init
-ffffffff823b3494 t determine_cpu_tsc_frequencies
-ffffffff823b35b0 t tsc_enable_sched_clock
-ffffffff823b35f6 t tsc_init
-ffffffff823b36dd t cyc2ns_init_secondary_cpus
-ffffffff823b3788 t check_system_tsc_reliable
-ffffffff823b37d7 t detect_art
-ffffffff823b3875 t cyc2ns_init_boot_cpu
-ffffffff823b38c3 t io_delay_init
-ffffffff823b38e3 t io_delay_param
-ffffffff823b3970 t dmi_io_delay_0xed_port
-ffffffff823b39a2 t __initstub__kmod_rtc__268_162_add_rtc_cmos6
-ffffffff823b39b2 t add_rtc_cmos
-ffffffff823b3a42 t arch_post_acpi_subsys_init
-ffffffff823b3ab5 t idle_setup
-ffffffff823b3b56 t fpu__init_system
-ffffffff823b3c87 t fpu__init_system_generic
-ffffffff823b3cbb t fpu__init_check_bugs
-ffffffff823b3d43 t fpu__get_fpstate_size
-ffffffff823b3d5d t fpu__init_system_xstate
-ffffffff823b3fa8 t setup_xstate_cache
-ffffffff823b4090 t init_xstate_size
-ffffffff823b4152 t setup_init_fpu_buf
-ffffffff823b4196 t print_xstate_offset_size
-ffffffff823b42c2 t fpu__init_disable_system_xstate
-ffffffff823b4369 t __initstub__kmod_xstate__363_1469_xfd_update_static_branch3
-ffffffff823b4396 t get_xsave_compacted_size
-ffffffff823b441a t paranoid_xstate_size_valid
-ffffffff823b4563 t check_xstate_against_struct
-ffffffff823b488f t __xstate_dump_leaves
-ffffffff823b48eb t check_xtile_data_against_struct
-ffffffff823b4985 t print_xstate_features
-ffffffff823b4a08 t os_xrstor_booting
-ffffffff823b4a4b t print_xstate_feature
-ffffffff823b4ab2 t update_regset_xstate_info
-ffffffff823b4acd t __initstub__kmod_i8237__183_76_i8237A_init_ops6
-ffffffff823b4add t i8237A_init_ops
-ffffffff823b4b1a t setup_cpu_local_masks
-ffffffff823b4b25 t x86_nopcid_setup
-ffffffff823b4b65 t x86_noinvpcid_setup
-ffffffff823b4ba3 t x86_nofsgsbase_setup
-ffffffff823b4be1 t setup_disable_pku
-ffffffff823b4c04 t early_cpu_init
-ffffffff823b4c4a t early_identify_cpu
-ffffffff823b4e2a t identify_boot_cpu
-ffffffff823b4ed7 t setup_clearcpuid
-ffffffff823b4ee7 t cpu_parse_early_param
-ffffffff823b50ee t cpu_set_bug_bits
-ffffffff823b5440 t check_bugs
-ffffffff823b5538 t spectre_v1_select_mitigation
-ffffffff823b55f0 t spectre_v2_select_mitigation
-ffffffff823b593e t retbleed_select_mitigation
-ffffffff823b5a94 t spectre_v2_user_select_mitigation
-ffffffff823b5c54 t ssb_select_mitigation
-ffffffff823b5c8f t l1tf_select_mitigation
-ffffffff823b5dcf t md_clear_select_mitigation
-ffffffff823b5dee t srbds_select_mitigation
-ffffffff823b5e8b t l1d_flush_select_mitigation
-ffffffff823b5ed0 t mds_cmdline
-ffffffff823b5f63 t tsx_async_abort_parse_cmdline
-ffffffff823b5ff6 t mmio_stale_data_parse_cmdline
-ffffffff823b6089 t srbds_parse_cmdline
-ffffffff823b60c8 t l1d_flush_parse_cmdline
-ffffffff823b60ec t nospectre_v1_cmdline
-ffffffff823b6100 t retbleed_parse_cmdline
-ffffffff823b61fe t l1tf_cmdline
-ffffffff823b62d6 t mds_select_mitigation
-ffffffff823b635f t taa_select_mitigation
-ffffffff823b640f t mmio_select_mitigation
-ffffffff823b6518 t md_clear_update_mitigation
-ffffffff823b6659 t spectre_v2_parse_user_cmdline
-ffffffff823b6774 t spectre_v2_parse_cmdline
-ffffffff823b6960 t spec_ctrl_disable_kernel_rrsba
-ffffffff823b6998 t spectre_v2_determine_rsb_fill_type_at_vmexit
-ffffffff823b6a24 t __ssb_select_mitigation
-ffffffff823b6abf t ssb_parse_cmdline
-ffffffff823b6bc0 t __initstub__kmod_aperfmperf__213_454_bp_init_aperfmperfearly
-ffffffff823b6bd2 t bp_init_aperfmperf
-ffffffff823b6bec t bp_init_freq_invariance
-ffffffff823b6c3c t intel_set_max_freq_ratio
-ffffffff823b6d83 t slv_set_max_freq_ratio
-ffffffff823b6e25 t skx_set_max_freq_ratio
-ffffffff823b6f2e t knl_set_max_freq_ratio
-ffffffff823b6fff t core_set_max_freq_ratio
-ffffffff823b70a2 t turbo_disabled
-ffffffff823b70f3 t __initstub__kmod_umwait__323_238_umwait_init6
-ffffffff823b7103 t umwait_init
-ffffffff823b71ab t nosgx
-ffffffff823b71c2 t ring3mwait_disable
-ffffffff823b71d9 t __initstub__kmod_intel__286_1060_sld_mitigate_sysctl_init7
-ffffffff823b7200 t sld_setup
-ffffffff823b7341 t split_lock_setup
-ffffffff823b73bf t sld_state_setup
-ffffffff823b751f t __split_lock_setup
-ffffffff823b75b6 t __initstub__kmod_intel_pconfig__12_82_intel_pconfig_init3
-ffffffff823b75c8 t intel_pconfig_init
-ffffffff823b764b t tsx_init
-ffffffff823b7867 t __initstub__kmod_intel_epb__197_235_intel_epb_init4
-ffffffff823b7877 t intel_epb_init
-ffffffff823b7919 t rdrand_cmdline
-ffffffff823b794b t set_mtrr_ops
-ffffffff823b7968 t mtrr_bp_init
-ffffffff823b7ae1 t set_num_var_ranges
-ffffffff823b7b44 t init_table
-ffffffff823b7b84 t __initstub__kmod_mtrr__265_887_mtrr_init_finialize4
-ffffffff823b7b96 t mtrr_init_finialize
-ffffffff823b7bd8 t __initstub__kmod_if__224_424_mtrr_if_init3
-ffffffff823b7be8 t mtrr_if_init
-ffffffff823b7c46 t mtrr_bp_pat_init
-ffffffff823b7ca2 t get_mtrr_state
-ffffffff823b7e4d t print_mtrr_state
-ffffffff823b7fc9 t mtrr_state_warn
-ffffffff823b802f t disable_mtrr_cleanup_setup
-ffffffff823b8043 t enable_mtrr_cleanup_setup
-ffffffff823b8057 t mtrr_cleanup_debug_setup
-ffffffff823b806b t parse_mtrr_chunk_size_opt
-ffffffff823b80c1 t parse_mtrr_gran_size_opt
-ffffffff823b8117 t parse_mtrr_spare_reg
-ffffffff823b8139 t mtrr_cleanup
-ffffffff823b84e7 t mtrr_need_cleanup
-ffffffff823b85b2 t x86_get_mtrr_mem_range
-ffffffff823b8773 t mtrr_calc_range_state
-ffffffff823b8957 t mtrr_print_out_one_result
-ffffffff823b8abf t set_var_mtrr_all
-ffffffff823b8b28 t mtrr_search_optimal_index
-ffffffff823b8bc6 t x86_setup_var_mtrrs
-ffffffff823b8cf6 t disable_mtrr_trim_setup
-ffffffff823b8d0a t amd_special_default_mtrr
-ffffffff823b8d79 t mtrr_trim_uncached_memory
-ffffffff823b918c t set_var_mtrr
-ffffffff823b91ec t set_var_mtrr_range
-ffffffff823b9261 t range_to_mtrr_with_hole
-ffffffff823b949a t range_to_mtrr
-ffffffff823b9557 t load_ucode_bsp
-ffffffff823b95d4 t check_loader_disabled_bsp
-ffffffff823b966e t __initstub__kmod_microcode__265_809_save_microcode_in_initrd5
-ffffffff823b967e t save_microcode_in_initrd
-ffffffff823b96cd t __initstub__kmod_microcode__267_810_microcode_init7
-ffffffff823b96dd t microcode_init
-ffffffff823b98d6 t save_microcode_in_initrd_intel
-ffffffff823b9a20 t load_ucode_intel_bsp
-ffffffff823b9a81 t init_intel_microcode
-ffffffff823b9ae2 t setup_vmw_sched_clock
-ffffffff823b9af6 t parse_no_stealacc
-ffffffff823b9b0a t __initstub__kmod_vmware__210_327_activate_jump_labels3
-ffffffff823b9b1c t activate_jump_labels
-ffffffff823b9b65 t vmware_platform
-ffffffff823b9c93 t vmware_platform_setup
-ffffffff823b9e06 t vmware_legacy_x2apic_available
-ffffffff823b9e70 t vmware_paravirt_ops_setup
-ffffffff823b9f6e t vmware_set_capabilities
-ffffffff823b9fe6 t vmware_cyc2ns_setup
-ffffffff823ba053 t vmware_smp_prepare_boot_cpu
-ffffffff823ba0ee t parse_nopv
-ffffffff823ba102 t init_hypervisor_platform
-ffffffff823ba167 t detect_hypervisor_vendor
-ffffffff823ba1ee t ms_hyperv_platform
-ffffffff823ba2a1 t ms_hyperv_init_platform
-ffffffff823ba584 t ms_hyperv_x2apic_available
-ffffffff823ba59c t ms_hyperv_msi_ext_dest_id
-ffffffff823ba5ce t __acpi_map_table
-ffffffff823ba5ea t __acpi_unmap_table
-ffffffff823ba60a t acpi_pic_sci_set_trigger
-ffffffff823ba67a t __initstub__kmod_boot__286_1026_hpet_insert_resource7
-ffffffff823ba6a4 t acpi_generic_reduced_hw_init
-ffffffff823ba6d0 t acpi_boot_table_init
-ffffffff823ba717 t early_acpi_boot_init
-ffffffff823ba7a9 t acpi_parse_sbf
-ffffffff823ba7c0 t early_acpi_process_madt
-ffffffff823ba82f t acpi_boot_init
-ffffffff823ba8bc t acpi_parse_fadt
-ffffffff823ba958 t acpi_process_madt
-ffffffff823baa70 t acpi_parse_hpet
-ffffffff823babc6 t parse_acpi
-ffffffff823bacda t parse_acpi_bgrt
-ffffffff823bace7 t parse_pci
-ffffffff823bad1a t acpi_mps_check
-ffffffff823bad27 t parse_acpi_skip_timer_override
-ffffffff823bad3e t parse_acpi_use_timer_override
-ffffffff823bad55 t setup_acpi_sci
-ffffffff823badf0 t arch_reserve_mem_area
-ffffffff823bae0a t dmi_disable_acpi
-ffffffff823bae55 t disable_acpi_irq
-ffffffff823bae87 t disable_acpi_pci
-ffffffff823baec0 t disable_acpi_xsdt
-ffffffff823baefb t acpi_parse_madt
-ffffffff823baf6c t early_acpi_parse_madt_lapic_addr_ovr
-ffffffff823bafc0 t acpi_parse_lapic_addr_ovr
-ffffffff823baffe t dmi_ignore_irq0_timer_override
-ffffffff823bb030 t acpi_parse_madt_lapic_entries
-ffffffff823bb19b t acpi_parse_madt_ioapic_entries
-ffffffff823bb28a t acpi_parse_mp_wake
-ffffffff823bb2d4 t acpi_parse_sapic
-ffffffff823bb321 t acpi_parse_lapic
-ffffffff823bb38c t acpi_parse_x2apic
-ffffffff823bb435 t acpi_parse_x2apic_nmi
-ffffffff823bb484 t acpi_parse_lapic_nmi
-ffffffff823bb4d3 t acpi_parse_ioapic
-ffffffff823bb575 t acpi_parse_int_src_ovr
-ffffffff823bb643 t acpi_sci_ioapic_setup
-ffffffff823bb6cd t mp_config_acpi_legacy_irqs
-ffffffff823bb816 t acpi_parse_nmi_src
-ffffffff823bb841 t mp_override_legacy_irq
-ffffffff823bb8c9 t mp_register_ioapic_irq
-ffffffff823bb983 t acpi_sleep_setup
-ffffffff823bbace t __initstub__kmod_cstate__212_229_ffh_cstate_init3
-ffffffff823bbb17 t __initstub__kmod_reboot__338_518_reboot_init1
-ffffffff823bbb29 t reboot_init
-ffffffff823bbb69 t set_kbd_reboot
-ffffffff823bbba2 t set_efi_reboot
-ffffffff823bbbdd t set_pci_reboot
-ffffffff823bbc16 t set_bios_reboot
-ffffffff823bbc4f t set_acpi_reboot
-ffffffff823bbc88 t early_quirks
-ffffffff823bbcaa t early_pci_scan_bus
-ffffffff823bbcea t check_dev_quirk
-ffffffff823bbeb5 t nvidia_bugs
-ffffffff823bbf03 t via_bugs
-ffffffff823bbf0e t fix_hypertransport_config
-ffffffff823bbf99 t ati_bugs
-ffffffff823bc006 t ati_bugs_contd
-ffffffff823bc0c0 t intel_remapping_check
-ffffffff823bc10e t intel_graphics_quirks
-ffffffff823bc18d t force_disable_hpet
-ffffffff823bc1ab t apple_airport_reset
-ffffffff823bc364 t nvidia_hpet_check
-ffffffff823bc371 t ati_ixp4x0_rev
-ffffffff823bc40c t intel_graphics_stolen
-ffffffff823bc4aa t i830_stolen_size
-ffffffff823bc4f2 t i830_stolen_base
-ffffffff823bc52c t i830_tseg_size
-ffffffff823bc569 t i845_stolen_base
-ffffffff823bc5a3 t i845_tseg_size
-ffffffff823bc5fe t gen3_stolen_size
-ffffffff823bc64c t i85x_stolen_base
-ffffffff823bc69d t i865_stolen_base
-ffffffff823bc6c9 t gen3_stolen_base
-ffffffff823bc6ee t gen6_stolen_size
-ffffffff823bc718 t gen8_stolen_size
-ffffffff823bc744 t chv_stolen_size
-ffffffff823bc79a t gen9_stolen_size
-ffffffff823bc7f7 t gen11_stolen_base
-ffffffff823bc85a t nonmi_ipi_setup
-ffffffff823bc871 t smp_store_boot_cpu_info
-ffffffff823bc8cc t cpu_init_udelay
-ffffffff823bc918 t smp_prepare_cpus_common
-ffffffff823bca86 t smp_cpu_index_default
-ffffffff823bcad6 t native_smp_prepare_cpus
-ffffffff823bcb83 t smp_sanity_check
-ffffffff823bcc2c t disable_smp
-ffffffff823bccee t smp_quirk_init_udelay
-ffffffff823bcd3c t native_smp_prepare_boot_cpu
-ffffffff823bcd6e t calculate_max_logical_packages
-ffffffff823bcdb0 t native_smp_cpus_done
-ffffffff823bce92 t _setup_possible_cpus
-ffffffff823bcede t prefill_possible_map
-ffffffff823bd036 t __initstub__kmod_tsc_sync__185_119_start_sync_check_timer7
-ffffffff823bd048 t start_sync_check_timer
-ffffffff823bd09a t pcpu_populate_pte
-ffffffff823bd0aa t setup_per_cpu_areas
-ffffffff823bd23b t pcpu_cpu_distance
-ffffffff823bd24b t pcpu_cpu_to_node
-ffffffff823bd258 t default_get_smp_config
-ffffffff823bd33e t construct_default_ISA_mptable
-ffffffff823bd42e t check_physptr
-ffffffff823bd528 t default_find_smp_config
-ffffffff823bd58c t smp_scan_config
-ffffffff823bd67b t update_mptable_setup
-ffffffff823bd699 t parse_alloc_mptable_opt
-ffffffff823bd700 t e820__memblock_alloc_reserved_mpc_new
-ffffffff823bd735 t __initstub__kmod_mpparse__266_945_update_mp_table7
-ffffffff823bd747 t update_mp_table
-ffffffff823bda1b t MP_processor_info
-ffffffff823bda7c t construct_ioapic_table
-ffffffff823bdb4c t MP_lintsrc_info
-ffffffff823bdb9b t MP_bus_info
-ffffffff823bdc59 t MP_ioapic_info
-ffffffff823bdccc t construct_default_ioirq_mptable
-ffffffff823bde10 t get_mpc_size
-ffffffff823bde61 t smp_read_mpc
-ffffffff823bdfb5 t smp_check_mpc
-ffffffff823be0a1 t smp_dump_mptable
-ffffffff823be105 t smp_reserve_memory
-ffffffff823be128 t replace_intsrc_all
-ffffffff823be320 t check_irq_src
-ffffffff823be3b7 t check_slot
-ffffffff823be3ec t print_mp_irq_info
-ffffffff823be43b t get_MP_intsrc_index
-ffffffff823be4d1 t parse_lapic
-ffffffff823be502 t setup_apicpmtimer
-ffffffff823be51e t apic_needs_pit
-ffffffff823be590 t setup_boot_APIC_clock
-ffffffff823be60b t calibrate_APIC_clock
-ffffffff823bea09 t sync_Arb_IDs
-ffffffff823bea9f t apic_intr_mode_select
-ffffffff823beab5 t __apic_intr_mode_select
-ffffffff823bebab t init_bsp_APIC
-ffffffff823bec4f t apic_intr_mode_init
-ffffffff823becd9 t apic_bsp_setup
-ffffffff823bed08 t setup_nox2apic
-ffffffff823bede7 t check_x2apic
-ffffffff823bee75 t enable_IR_x2apic
-ffffffff823bef39 t try_to_enable_x2apic
-ffffffff823befc6 t init_apic_mappings
-ffffffff823bf112 t apic_validate_deadline_timer
-ffffffff823bf17c t register_lapic_address
-ffffffff823bf23f t acpi_wake_cpu_handler_update
-ffffffff823bf26d t apic_set_eoi_write
-ffffffff823bf2b0 t __initstub__kmod_apic__531_2842_init_lapic_sysfs1
-ffffffff823bf2d6 t setup_disableapic
-ffffffff823bf2f7 t setup_nolapic
-ffffffff823bf318 t parse_lapic_timer_c2_ok
-ffffffff823bf32f t parse_disable_apic_timer
-ffffffff823bf343 t parse_nolapic_timer
-ffffffff823bf357 t apic_set_verbosity
-ffffffff823bf3c6 t __initstub__kmod_apic__533_2982_lapic_insert_resource7
-ffffffff823bf40d t apic_set_disabled_cpu_apicid
-ffffffff823bf46d t apic_set_extnmi
-ffffffff823bf50a t lapic_init_clockevent
-ffffffff823bf593 t lapic_cal_handler
-ffffffff823bf65c t calibrate_by_pmtimer
-ffffffff823bf772 t x2apic_disable
-ffffffff823bf80d t apic_bsp_up_setup
-ffffffff823bf86f t apic_ipi_shorthand
-ffffffff823bf8be t __initstub__kmod_ipi__85_27_print_ipi_mode7
-ffffffff823bf8f0 t arch_probe_nr_irqs
-ffffffff823bf956 t lapic_update_legacy_vectors
-ffffffff823bf9a3 t lapic_assign_system_vectors
-ffffffff823bfa5c t arch_early_irq_init
-ffffffff823bfadc t setup_show_lapic
-ffffffff823bfb55 t __initstub__kmod_vector__527_1340_print_ICs7
-ffffffff823bfb67 t print_ICs
-ffffffff823bfbb1 t print_PIC
-ffffffff823bfc05 t print_local_APICs
-ffffffff823bfc86 t print_local_APIC
-ffffffff823bffcb t print_APIC_field
-ffffffff823c0029 t __initstub__kmod_hw_nmi__274_58_register_nmi_cpu_backtrace_handlerearly
-ffffffff823c0044 t parse_noapic
-ffffffff823c006c t arch_early_ioapic_init
-ffffffff823c00ae t print_IO_APICs
-ffffffff823c023f t print_IO_APIC
-ffffffff823c0614 t enable_IO_APIC
-ffffffff823c073c t find_isa_irq_pin
-ffffffff823c07f3 t find_isa_irq_apic
-ffffffff823c08e8 t notimercheck
-ffffffff823c0902 t disable_timer_pin_setup
-ffffffff823c0916 t setup_IO_APIC
-ffffffff823c0a2f t setup_IO_APIC_irqs
-ffffffff823c0b8d t check_timer
-ffffffff823c0fdc t __initstub__kmod_io_apic__270_2463_ioapic_init_ops6
-ffffffff823c0ff5 t io_apic_init_mappings
-ffffffff823c1158 t ioapic_setup_resources
-ffffffff823c124b t ioapic_insert_resources
-ffffffff823c12a8 t timer_irq_works
-ffffffff823c12f8 t replace_pin_at_irq_node
-ffffffff823c132f t unlock_ExtINT_logic
-ffffffff823c148b t delay_with_tsc
-ffffffff823c14cd t delay_without_tsc
-ffffffff823c1513 t native_create_pci_msi_domain
-ffffffff823c158b t x86_create_pci_msi_domain
-ffffffff823c15aa t x2apic_set_max_apicid
-ffffffff823c15bb t set_x2apic_phys_mode
-ffffffff823c15d2 t default_setup_apic_routing
-ffffffff823c1642 t default_acpi_madt_oem_check
-ffffffff823c16d0 t setup_early_printk
-ffffffff823c1861 t early_serial_init
-ffffffff823c19c5 t early_pci_serial_init
-ffffffff823c1c21 t early_serial_hw_init
-ffffffff823c1d48 t hpet_setup
-ffffffff823c1df3 t disable_hpet
-ffffffff823c1e0a t hpet_enable
-ffffffff823c2125 t hpet_is_pc10_damaged
-ffffffff823c2194 t hpet_cfg_working
-ffffffff823c21f0 t hpet_counting
-ffffffff823c229e t hpet_legacy_clockevent_register
-ffffffff823c237d t __initstub__kmod_hpet__206_1165_hpet_late_init5
-ffffffff823c238d t hpet_late_init
-ffffffff823c24d0 t mwait_pc10_supported
-ffffffff823c2516 t hpet_select_clockevents
-ffffffff823c27b8 t hpet_reserve_platform_timers
-ffffffff823c28b8 t early_is_amd_nb
-ffffffff823c293f t __initstub__kmod_amd_nb__265_519_init_amd_nbs5
-ffffffff823c2951 t init_amd_nbs
-ffffffff823c2d2d t fix_erratum_688
-ffffffff823c2dca t parse_no_kvmapf
-ffffffff823c2dde t parse_no_stealacc
-ffffffff823c2df2 t __initstub__kmod_kvm__347_620_setup_efi_kvm_sev_migration7
-ffffffff823c2dff t __initstub__kmod_kvm__350_693_kvm_alloc_cpumask3
-ffffffff823c2e11 t kvm_alloc_cpumask
-ffffffff823c2eb3 t kvm_detect
-ffffffff823c2ed4 t kvm_init_platform
-ffffffff823c2eef t kvm_guest_init
-ffffffff823c3153 t kvm_msi_ext_dest_id
-ffffffff823c3185 t __initstub__kmod_kvm__352_1032_activate_jump_labels3
-ffffffff823c3197 t activate_jump_labels
-ffffffff823c31e0 t kvm_apic_init
-ffffffff823c3219 t paravirt_ops_setup
-ffffffff823c3269 t kvm_smp_prepare_boot_cpu
-ffffffff823c327e t parse_no_kvmclock
-ffffffff823c3292 t parse_no_kvmclock_vsyscall
-ffffffff823c32a6 t __initstub__kmod_kvmclock__261_261_kvm_setup_vsyscall_timeinfoearly
-ffffffff823c32b8 t kvm_setup_vsyscall_timeinfo
-ffffffff823c3319 t kvmclock_init
-ffffffff823c3553 t kvm_get_preset_lpj
-ffffffff823c359d t kvmclock_init_mem
-ffffffff823c3658 t default_banner
-ffffffff823c3676 t native_pv_lock_init
-ffffffff823c36a2 t __initstub__kmod_pcspeaker__197_14_add_pcspkr6
-ffffffff823c3722 t early_init_dt_add_memory_arch
-ffffffff823c3728 t add_dtb
-ffffffff823c373e t __initstub__kmod_devicetree__265_61_add_bus_probe6
-ffffffff823c3767 t x86_dtb_init
-ffffffff823c3788 t dtb_setup_hpet
-ffffffff823c3819 t dtb_apic_setup
-ffffffff823c3833 t dtb_lapic_setup
-ffffffff823c38e7 t dtb_cpu_setup
-ffffffff823c3960 t dtb_ioapic_setup
-ffffffff823c39c7 t dtb_add_ioapic
-ffffffff823c3a7a t __initstub__kmod_audit_64__258_85_audit_classes_init6
-ffffffff823c3a8c t audit_classes_init
-ffffffff823c3ae9 t set_check_enable_amd_mmconf
-ffffffff823c3afd t vsmp_init
-ffffffff823c3b35 t detect_vsmp_box
-ffffffff823c3b79 t vsmp_cap_cpus
-ffffffff823c3c07 t set_vsmp_ctl
-ffffffff823c3c92 t early_alloc_pgt_buf
-ffffffff823c3ce7 t parse_direct_gbpages_on
-ffffffff823c3cfe t parse_direct_gbpages_off
-ffffffff823c3d15 t init_mem_mapping
-ffffffff823c3e89 t probe_page_size_mask
-ffffffff823c3fc8 t init_trampoline
-ffffffff823c4007 t memory_map_bottom_up
-ffffffff823c4083 t memory_map_top_down
-ffffffff823c4166 t poking_init
-ffffffff823c42bc t free_initrd_mem
-ffffffff823c42e7 t memblock_find_dma_reserve
-ffffffff823c4479 t zone_sizes_init
-ffffffff823c44f5 t early_disable_dma32
-ffffffff823c4527 t init_range_memory_mapping
-ffffffff823c465d t nonx32_setup
-ffffffff823c46b3 t populate_extra_pmd
-ffffffff823c4873 t populate_extra_pte
-ffffffff823c493c t init_extra_mapping_wb
-ffffffff823c494e t __init_extra_mapping
-ffffffff823c4bc7 t init_extra_mapping_uc
-ffffffff823c4bdc t cleanup_highmap
-ffffffff823c4c7e t initmem_init
-ffffffff823c4c89 t paging_init
-ffffffff823c4c9e t mem_init
-ffffffff823c4cdb t preallocate_vmalloc_pages
-ffffffff823c4e32 t set_memory_block_size_order
-ffffffff823c4e5d t is_early_ioremap_ptep
-ffffffff823c4e84 t early_ioremap_init
-ffffffff823c4f83 t early_ioremap_pmd
-ffffffff823c501a t __early_set_fixmap
-ffffffff823c5097 t early_fixup_exception
-ffffffff823c5134 t setup_userpte
-ffffffff823c5166 t reserve_top_address
-ffffffff823c5171 t __initstub__kmod_tlb__284_1323_create_tlb_single_page_flush_ceiling7
-ffffffff823c51a6 t setup_cpu_entry_areas
-ffffffff823c51e0 t setup_cpu_entry_area
-ffffffff823c52b0 t cea_map_percpu_pages
-ffffffff823c5300 t percpu_setup_exception_stacks
-ffffffff823c53c9 t percpu_setup_debug_store
-ffffffff823c5462 t kernel_map_pages_in_pgd
-ffffffff823c5536 t kernel_unmap_pages_in_pgd
-ffffffff823c55e0 t nopat
-ffffffff823c5600 t pat_debug_setup
-ffffffff823c561a t init_cache_modes
-ffffffff823c569a t __initstub__kmod_memtype__254_1232_pat_memtype_list_init7
-ffffffff823c56d8 t __initstub__kmod_pkeys__275_184_create_init_pkru_value7
-ffffffff823c56ea t create_init_pkru_value
-ffffffff823c5722 t setup_init_pkru
-ffffffff823c5779 t kernel_randomize_memory
-ffffffff823c5968 t pti_check_boottime_disable
-ffffffff823c5ae0 t pti_init
-ffffffff823c5ba7 t pti_clone_user_shared
-ffffffff823c5c89 t pti_setup_vsyscall
-ffffffff823c5d1e t pti_clone_p4d
-ffffffff823c5d86 t __initstub__kmod_aesni_intel__279_1314_aesni_init7
-ffffffff823c5d96 t aesni_init
-ffffffff823c5f40 t __initstub__kmod_sha256_ssse3__262_403_sha256_ssse3_mod_init6
-ffffffff823c5f50 t sha256_ssse3_mod_init
-ffffffff823c607e t __initstub__kmod_sha512_ssse3__262_334_sha512_ssse3_mod_init6
-ffffffff823c608e t sha512_ssse3_mod_init
-ffffffff823c6192 t __initstub__kmod_polyval_clmulni__196_206_polyval_clmulni_mod_init6
-ffffffff823c61a2 t polyval_clmulni_mod_init
-ffffffff823c61df t setup_storage_paranoia
-ffffffff823c61f3 t efi_arch_mem_reserve
-ffffffff823c63b3 t efi_reserve_boot_services
-ffffffff823c6452 t can_free_region
-ffffffff823c649e t efi_free_boot_services
-ffffffff823c6700 t efi_unmap_pages
-ffffffff823c6771 t efi_reuse_config
-ffffffff823c6893 t efi_apply_memmap_quirks
-ffffffff823c68be t setup_add_efi_memmap
-ffffffff823c68d2 t efi_memblock_x86_reserve_range
-ffffffff823c69be t do_add_efi_memmap
-ffffffff823c6a89 t efi_print_memmap
-ffffffff823c6b7f t efi_init
-ffffffff823c6c6f t efi_systab_init
-ffffffff823c6dcc t efi_config_init
-ffffffff823c6e5d t efi_clean_memmap
-ffffffff823c6f58 t efi_enter_virtual_mode
-ffffffff823c6f96 t kexec_enter_virtual_mode
-ffffffff823c706d t __efi_enter_virtual_mode
-ffffffff823c71d7 t efi_memmap_entry_valid
-ffffffff823c7313 t efi_merge_regions
-ffffffff823c73b1 t efi_map_regions
-ffffffff823c7515 t efi_alloc_page_tables
-ffffffff823c76e0 t efi_setup_page_tables
-ffffffff823c7765 t efi_map_region
-ffffffff823c77fb t __map_region
-ffffffff823c7872 t efi_map_region_fixed
-ffffffff823c7897 t parse_efi_setup
-ffffffff823c78ad t efi_runtime_update_mappings
-ffffffff823c7966 t efi_update_mem_attr
-ffffffff823c799c t efi_update_mappings
-ffffffff823c7a37 t efi_dump_pagetable
-ffffffff823c7a42 t efi_thunk_runtime_setup
-ffffffff823c7a4d t efi_set_virtual_address_map
-ffffffff823c7b49 t arch_task_cache_init
-ffffffff823c7b54 t fork_init
-ffffffff823c7cb3 t coredump_filter_setup
-ffffffff823c7cdb t fork_idle
-ffffffff823c7de0 t proc_caches_init
-ffffffff823c7f51 t __initstub__kmod_exec_domain__279_35_proc_execdomains_init6
-ffffffff823c7f78 t __initstub__kmod_panic__285_109_kernel_panic_sysctls_init7
-ffffffff823c7f9f t __initstub__kmod_panic__287_128_kernel_panic_sysfs_init7
-ffffffff823c7fc1 t __initstub__kmod_panic__291_746_register_warn_debugfs6
-ffffffff823c7ff1 t oops_setup
-ffffffff823c8026 t panic_on_taint_setup
-ffffffff823c80fa t cpu_smt_disable
-ffffffff823c8140 t cpu_smt_check_topology
-ffffffff823c815e t smt_cmdline_disable
-ffffffff823c81bb t cpuhp_threads_init
-ffffffff823c81ea t cpuhp_init_state
-ffffffff823c8285 t __initstub__kmod_cpu__589_1624_alloc_frozen_cpus1
-ffffffff823c8292 t __initstub__kmod_cpu__591_1671_cpu_hotplug_pm_sync_init1
-ffffffff823c82b4 t __initstub__kmod_cpu__593_2600_cpuhp_sysfs_init6
-ffffffff823c82c4 t cpuhp_sysfs_init
-ffffffff823c835e t boot_cpu_init
-ffffffff823c83a3 t boot_cpu_hotplug_init
-ffffffff823c83c9 t mitigations_parse_cmdline
-ffffffff823c8444 t __initstub__kmod_exit__684_100_kernel_exit_sysctls_init7
-ffffffff823c846b t __initstub__kmod_exit__686_119_kernel_exit_sysfs_init7
-ffffffff823c848d t softirq_init
-ffffffff823c850a t __initstub__kmod_softirq__361_1038_spawn_ksoftirqdearly
-ffffffff823c851c t spawn_ksoftirqd
-ffffffff823c8562 t __initstub__kmod_resource__261_149_ioresources_init6
-ffffffff823c8574 t ioresources_init
-ffffffff823c85c1 t reserve_region_with_split
-ffffffff823c867e t __reserve_region_with_split
-ffffffff823c884d t reserve_setup
-ffffffff823c8981 t __initstub__kmod_resource__271_2015_iomem_init_inode5
-ffffffff823c8991 t iomem_init_inode
-ffffffff823c8a17 t strict_iomem
-ffffffff823c8a5f t sysctl_init_bases
-ffffffff823c8ad4 t file_caps_disable
-ffffffff823c8aee t __initstub__kmod_user__201_257_uid_cache_init4
-ffffffff823c8b00 t uid_cache_init
-ffffffff823c8bbc t setup_print_fatal_signals
-ffffffff823c8c0b t signals_init
-ffffffff823c8c44 t __initstub__kmod_workqueue__391_5698_wq_sysfs_init1
-ffffffff823c8c54 t wq_sysfs_init
-ffffffff823c8c84 t workqueue_init_early
-ffffffff823c8fd6 t workqueue_init
-ffffffff823c9245 t pid_idr_init
-ffffffff823c9314 t sort_main_extable
-ffffffff823c935c t __initstub__kmod_params__261_974_param_sysfs_init4
-ffffffff823c936c t param_sysfs_init
-ffffffff823c93d1 t version_sysfs_builtin
-ffffffff823c9439 t param_sysfs_builtin
-ffffffff823c9521 t locate_module_kobject
-ffffffff823c95cf t kernel_add_sysfs_param
-ffffffff823c9651 t add_sysfs_param
-ffffffff823c981f t nsproxy_cache_init
-ffffffff823c985a t __initstub__kmod_ksysfs__269_273_ksysfs_init1
-ffffffff823c986a t ksysfs_init
-ffffffff823c9915 t cred_init
-ffffffff823c994b t reboot_setup
-ffffffff823c9ad2 t __initstub__kmod_reboot__326_1310_reboot_ksysfs_init7
-ffffffff823c9ae2 t reboot_ksysfs_init
-ffffffff823c9b5c t idle_thread_set_boot_cpu
-ffffffff823c9b91 t idle_threads_init
-ffffffff823c9c2b t __initstub__kmod_ucount__172_376_user_namespace_sysctl_init4
-ffffffff823c9c3d t user_namespace_sysctl_init
-ffffffff823c9d1d t setup_schedstats
-ffffffff823c9d93 t __initstub__kmod_core__1125_4682_sched_core_sysctl_init7
-ffffffff823c9dba t setup_resched_latency_warn_ms
-ffffffff823c9e20 t setup_preempt_mode
-ffffffff823c9e58 t init_idle
-ffffffff823ca130 t sched_init_smp
-ffffffff823ca1f2 t __initstub__kmod_core__1179_9776_migration_initearly
-ffffffff823ca204 t migration_init
-ffffffff823ca23b t sched_init
-ffffffff823ca6c5 t init_uclamp
-ffffffff823ca7d4 t setup_sched_thermal_decay_shift
-ffffffff823ca84d t __initstub__kmod_fair__855_213_sched_fair_sysctl_init7
-ffffffff823ca874 t sched_init_granularity
-ffffffff823ca884 t init_sched_fair_class
-ffffffff823ca974 t __initstub__kmod_build_policy__886_65_sched_rt_sysctl_init7
-ffffffff823ca99b t init_sched_rt_class
-ffffffff823caa05 t __initstub__kmod_build_policy__906_534_sched_pelt_sysctl_init7
-ffffffff823caa2c t __initstub__kmod_build_policy__914_52_sched_dl_sysctl_init7
-ffffffff823caa53 t init_sched_dl_class
-ffffffff823caabd t sched_clock_init
-ffffffff823cab28 t __initstub__kmod_build_utility__863_241_sched_clock_init_late7
-ffffffff823cab3a t sched_clock_init_late
-ffffffff823cabe1 t __initstub__kmod_build_utility__878_844_schedutil_gov_init1
-ffffffff823cabf8 t __initstub__kmod_build_utility__880_345_sched_init_debug7
-ffffffff823cac0a t sched_init_debug
-ffffffff823cadfa t __initstub__kmod_build_utility__891_231_proc_schedstat_init4
-ffffffff823cae24 t wait_bit_init
-ffffffff823cae52 t sched_debug_setup
-ffffffff823cae66 t setup_relax_domain_level
-ffffffff823cae96 t setup_psi
-ffffffff823caeb6 t psi_init
-ffffffff823caf2a t __initstub__kmod_build_utility__972_1575_psi_proc_init6
-ffffffff823caf3c t psi_proc_init
-ffffffff823cafba t housekeeping_init
-ffffffff823cb046 t housekeeping_nohz_full_setup
-ffffffff823cb05b t housekeeping_isolcpus_setup
-ffffffff823cb1c0 t housekeeping_setup
-ffffffff823cb42c t __initstub__kmod_qos__485_425_cpu_latency_qos_init7
-ffffffff823cb43c t cpu_latency_qos_init
-ffffffff823cb479 t __initstub__kmod_main__327_467_pm_debugfs_init7
-ffffffff823cb4a9 t __initstub__kmod_main__329_940_pm_init1
-ffffffff823cb4b9 t pm_init
-ffffffff823cb538 t pm_states_init
-ffffffff823cb564 t mem_sleep_default_setup
-ffffffff823cb5a9 t __initstub__kmod_poweroff__81_45_pm_sysrq_init4
-ffffffff823cb5c9 t __initstub__kmod_wakeup_reason__317_438_wakeup_reason_init7
-ffffffff823cb5d9 t wakeup_reason_init
-ffffffff823cb6e6 t control_devkmsg
-ffffffff823cb78a t log_buf_len_setup
-ffffffff823cb7e1 t setup_log_buf
-ffffffff823cbb6e t log_buf_add_cpu
-ffffffff823cbbfe t add_to_rb
-ffffffff823cbd05 t ignore_loglevel_setup
-ffffffff823cbd25 t console_msg_format_setup
-ffffffff823cbd6b t console_setup
-ffffffff823cbe89 t console_suspend_disable
-ffffffff823cbea0 t keep_bootcon_setup
-ffffffff823cbec0 t console_init
-ffffffff823cc00c t __initstub__kmod_printk__331_3362_printk_late_init7
-ffffffff823cc01e t printk_late_init
-ffffffff823cc150 t log_buf_len_update
-ffffffff823cc1af t printk_sysctl_init
-ffffffff823cc1d4 t irq_affinity_setup
-ffffffff823cc206 t __initstub__kmod_irqdesc__200_334_irq_sysfs_init2
-ffffffff823cc216 t irq_sysfs_init
-ffffffff823cc2ed t early_irq_init
-ffffffff823cc3ba t init_irq_default_affinity
-ffffffff823cc403 t setup_forced_irqthreads
-ffffffff823cc426 t irqfixup_setup
-ffffffff823cc458 t irqpoll_setup
-ffffffff823cc48a t __initstub__kmod_pm__318_248_irq_pm_init_ops6
-ffffffff823cc4a3 t irq_alloc_matrix
-ffffffff823cc529 t __initstub__kmod_update__555_240_rcu_set_runtime_mode1
-ffffffff823cc545 t rcu_init_tasks_generic
-ffffffff823cc555 t rcu_spawn_tasks_kthread
-ffffffff823cc5b2 t rcupdate_announce_bootup_oddness
-ffffffff823cc623 t rcu_tasks_bootup_oddness
-ffffffff823cc68a t rcu_spawn_tasks_kthread_generic
-ffffffff823cc706 t __initstub__kmod_srcutree__480_1730_srcu_bootup_announceearly
-ffffffff823cc718 t srcu_bootup_announce
-ffffffff823cc793 t srcu_init
-ffffffff823cc872 t kfree_rcu_scheduler_running
-ffffffff823cc977 t __initstub__kmod_tree__727_4466_rcu_spawn_gp_kthreadearly
-ffffffff823cc989 t rcu_spawn_gp_kthread
-ffffffff823ccaf8 t rcu_init
-ffffffff823ccc0d t kfree_rcu_batch_init
-ffffffff823ccd9a t sanitize_kthread_prio
-ffffffff823ccddb t rcu_init_one
-ffffffff823cd1ff t rcu_dump_rcu_node_tree
-ffffffff823cd30e t __initstub__kmod_tree__744_135_check_cpu_stall_initearly
-ffffffff823cd32e t __initstub__kmod_tree__835_1025_rcu_sysrq_initearly
-ffffffff823cd359 t rcu_nocb_setup
-ffffffff823cd3c1 t parse_rcu_nocb_poll
-ffffffff823cd3d5 t rcu_init_nohz
-ffffffff823cd51c t rcu_organize_nocb_kthreads
-ffffffff823cd735 t rcu_spawn_core_kthreads
-ffffffff823cd7c1 t rcu_start_exp_gp_kworkers
-ffffffff823cd8ae t rcu_boot_init_percpu_data
-ffffffff823cd9af t rcu_boot_init_nocb_percpu_data
-ffffffff823cda64 t rcu_bootup_announce_oddness
-ffffffff823cdc6c t setup_io_tlb_npages
-ffffffff823cdd5f t swiotlb_adjust_size
-ffffffff823cde10 t swiotlb_update_mem_attributes
-ffffffff823cded4 t swiotlb_init_remap
-ffffffff823ce1ee t swiotlb_init
-ffffffff823ce200 t swiotlb_exit
-ffffffff823ce39a t __initstub__kmod_swiotlb__316_946_swiotlb_create_default_debugfs7
-ffffffff823ce3ac t swiotlb_create_default_debugfs
-ffffffff823ce41e t __initstub__kmod_common__351_42_trace_init_flags_sys_enterearly
-ffffffff823ce432 t __initstub__kmod_common__353_66_trace_init_flags_sys_exitearly
-ffffffff823ce446 t __initstub__kmod_profile__289_553_create_proc_profile4
-ffffffff823ce456 t __initstub__kmod_timer__472_276_timer_sysctl_init6
-ffffffff823ce47d t init_timers
-ffffffff823ce4a3 t init_timer_cpus
-ffffffff823ce530 t setup_hrtimer_hres
-ffffffff823ce550 t hrtimers_init
-ffffffff823ce578 t read_persistent_wall_and_boot_offset
-ffffffff823ce5a8 t timekeeping_init
-ffffffff823ce77d t __initstub__kmod_timekeeping__276_1928_timekeeping_init_ops6
-ffffffff823ce796 t ntp_tick_adj_setup
-ffffffff823ce7c0 t ntp_init
-ffffffff823ce871 t __initstub__kmod_clocksource__206_1057_clocksource_done_booting5
-ffffffff823ce883 t clocksource_done_booting
-ffffffff823ce8c5 t __initstub__kmod_clocksource__212_1458_init_clocksource_sysfs6
-ffffffff823ce8d5 t init_clocksource_sysfs
-ffffffff823ce915 t boot_override_clocksource
-ffffffff823ce95b t boot_override_clock
-ffffffff823ce9a9 t __initstub__kmod_jiffies__192_69_init_jiffies_clocksource1
-ffffffff823ce9c7 t clocksource_default_clock
-ffffffff823ce9d9 t __initstub__kmod_timer_list__264_359_init_timer_list_procfs6
-ffffffff823cea16 t __initstub__kmod_alarmtimer__326_964_alarmtimer_init6
-ffffffff823cea26 t alarmtimer_init
-ffffffff823ceaee t __initstub__kmod_posix_timers__285_280_init_posix_timers6
-ffffffff823ceb26 t posix_cputimers_init_work
-ffffffff823ceb59 t __initstub__kmod_clockevents__204_777_clockevents_init_sysfs6
-ffffffff823ceb69 t clockevents_init_sysfs
-ffffffff823ceb98 t tick_init_sysfs
-ffffffff823cec40 t tick_broadcast_init_sysfs
-ffffffff823cec7a t tick_init
-ffffffff823cec8a t tick_broadcast_init
-ffffffff823ced0e t setup_tick_nohz
-ffffffff823ced2e t skew_tick
-ffffffff823ced7a t __initstub__kmod_timekeeping_debug__320_44_tk_debug_sleep_time_init7
-ffffffff823cedaa t __initstub__kmod_core__289_1153_futex_init1
-ffffffff823cedbc t futex_init
-ffffffff823cee9e t __initstub__kmod_dma__222_144_proc_dma_init6
-ffffffff823ceec5 t call_function_init
-ffffffff823cef25 t nosmp
-ffffffff823cef41 t nrcpus
-ffffffff823cefa9 t maxcpus
-ffffffff823cf003 t setup_nr_cpu_ids
-ffffffff823cf036 t smp_init
-ffffffff823cf0a8 t __initstub__kmod_kallsyms__408_961_kallsyms_init6
-ffffffff823cf0cf t parse_crashkernel
-ffffffff823cf0e2 t __parse_crashkernel
-ffffffff823cf1a4 t parse_crashkernel_high
-ffffffff823cf1bb t parse_crashkernel_low
-ffffffff823cf1d2 t parse_crashkernel_dummy
-ffffffff823cf1df t __initstub__kmod_crash_core__260_514_crash_save_vmcoreinfo_init4
-ffffffff823cf1ef t crash_save_vmcoreinfo_init
-ffffffff823cf94f t get_last_crashkernel
-ffffffff823cfa3c t parse_crashkernel_suffix
-ffffffff823cfaff t parse_crashkernel_mem
-ffffffff823cfcc1 t parse_crashkernel_simple
-ffffffff823cfd70 t __initstub__kmod_kexec_core__337_952_kexec_core_sysctl_init7
-ffffffff823cfd97 t __initstub__kmod_kexec_core__342_1128_crash_notes_memory_init4
-ffffffff823cfda7 t crash_notes_memory_init
-ffffffff823cfded t cgroup_init_early
-ffffffff823cff08 t cgroup_init_subsys
-ffffffff823d00b7 t cgroup_init
-ffffffff823d050e t __initstub__kmod_cgroup__690_6184_cgroup_wq_init1
-ffffffff823d0520 t cgroup_wq_init
-ffffffff823d054c t cgroup_disable
-ffffffff823d067b t enable_debug_cgroup
-ffffffff823d0686 t enable_cgroup_debug
-ffffffff823d06a2 t __initstub__kmod_cgroup__700_7072_cgroup_sysfs_init4
-ffffffff823d06c2 t cgroup_rstat_boot
-ffffffff823d0711 t __initstub__kmod_rstat__280_549_bpf_rstat_kfunc_init7
-ffffffff823d071e t __initstub__kmod_namespace__264_157_cgroup_namespaces_init4
-ffffffff823d072b t __initstub__kmod_cgroup_v1__378_1280_cgroup1_wq_init1
-ffffffff823d073d t cgroup1_wq_init
-ffffffff823d0769 t cgroup_no_v1
-ffffffff823d088a t cpuset_init
-ffffffff823d0961 t cpuset_init_smp
-ffffffff823d09e5 t cpuset_init_current_mems_allowed
-ffffffff823d0a03 t __initstub__kmod_configs__232_75_ikconfig_init6
-ffffffff823d0a4f t __initstub__kmod_kheaders__189_61_ikheaders_init6
-ffffffff823d0a85 t __initstub__kmod_stop_machine__267_586_cpu_stop_initearly
-ffffffff823d0a97 t cpu_stop_init
-ffffffff823d0b37 t __initstub__kmod_audit__525_1712_audit_init2
-ffffffff823d0b49 t audit_init
-ffffffff823d0cd1 t audit_enable
-ffffffff823d0dd9 t audit_backlog_limit_set
-ffffffff823d0e6f t audit_net_init
-ffffffff823d0f22 t audit_register_class
-ffffffff823d0fbb t __initstub__kmod_audit_watch__313_503_audit_watch_init6
-ffffffff823d0fcd t audit_watch_init
-ffffffff823d100c t __initstub__kmod_audit_fsnotify__313_193_audit_fsnotify_init6
-ffffffff823d101e t audit_fsnotify_init
-ffffffff823d1060 t __initstub__kmod_audit_tree__317_1086_audit_tree_init6
-ffffffff823d1072 t audit_tree_init
-ffffffff823d10f0 t __initstub__kmod_hung_task__636_406_hung_task_init4
-ffffffff823d1102 t hung_task_init
-ffffffff823d118c t watchdog_nmi_probe
-ffffffff823d119c t nowatchdog_setup
-ffffffff823d11b6 t nosoftlockup_setup
-ffffffff823d11d0 t watchdog_thresh_setup
-ffffffff823d121f t lockup_detector_init
-ffffffff823d1280 t lockup_detector_setup
-ffffffff823d12fa t __initstub__kmod_seccomp__417_2406_seccomp_sysctl_init6
-ffffffff823d130c t seccomp_sysctl_init
-ffffffff823d1344 t __initstub__kmod_utsname_sysctl__145_154_utsname_sysctl_init6
-ffffffff823d136b t taskstats_init_early
-ffffffff823d1418 t __initstub__kmod_taskstats__322_724_taskstats_init7
-ffffffff823d1428 t taskstats_init
-ffffffff823d1463 t __initstub__kmod_tracepoint__213_140_release_early_probes2
-ffffffff823d1475 t release_early_probes
-ffffffff823d14ab t set_cmdline_ftrace
-ffffffff823d14e1 t set_ftrace_dump_on_oops
-ffffffff823d1557 t stop_trace_on_warning
-ffffffff823d1599 t boot_alloc_snapshot
-ffffffff823d15b0 t boot_snapshot
-ffffffff823d15ce t set_trace_boot_options
-ffffffff823d15f2 t set_trace_boot_clock
-ffffffff823d1621 t set_tracepoint_printk
-ffffffff823d1670 t set_tracepoint_printk_stop
-ffffffff823d1687 t set_buf_size
-ffffffff823d16ec t set_tracing_thresh
-ffffffff823d1756 t register_tracer
-ffffffff823d1948 t apply_trace_boot_options
-ffffffff823d19d3 t __initstub__kmod_trace__354_9737_trace_eval_init4
-ffffffff823d19e3 t trace_eval_init
-ffffffff823d1a91 t __initstub__kmod_trace__356_9747_trace_eval_sync7s
-ffffffff823d1aaf t __initstub__kmod_trace__358_9882_tracer_init_tracefs5
-ffffffff823d1ac1 t tracer_init_tracefs
-ffffffff823d1b90 t ftrace_boot_snapshot
-ffffffff823d1be3 t early_trace_init
-ffffffff823d1c5f t tracer_alloc_buffers
-ffffffff823d2007 t trace_init
-ffffffff823d2017 t __initstub__kmod_trace__361_10396_late_trace_init7s
-ffffffff823d2029 t late_trace_init
-ffffffff823d2090 t eval_map_work_func
-ffffffff823d20c0 t tracer_init_tracefs_work_func
-ffffffff823d21b9 t create_trace_instances
-ffffffff823d2294 t tracing_set_default_clock
-ffffffff823d22e8 t init_events
-ffffffff823d234a t __initstub__kmod_trace_printk__284_393_init_trace_printk_function_export5
-ffffffff823d235c t init_trace_printk_function_export
-ffffffff823d238c t __initstub__kmod_trace_printk__286_400_init_trace_printkearly
-ffffffff823d2399 t setup_trace_event
-ffffffff823d23c4 t __initstub__kmod_trace_events__644_3801_event_trace_enable_againearly
-ffffffff823d23d4 t event_trace_enable_again
-ffffffff823d241e t event_trace_init
-ffffffff823d2490 t early_event_add_tracer
-ffffffff823d24ee t trace_event_init
-ffffffff823d2508 t event_trace_memsetup
-ffffffff823d2571 t event_trace_enable
-ffffffff823d26a2 t event_trace_init_fields
-ffffffff823d2b24 t early_enable_events
-ffffffff823d2bf1 t register_event_command
-ffffffff823d2c89 t unregister_event_command
-ffffffff823d2d0c t register_trigger_cmds
-ffffffff823d2d41 t register_trigger_traceon_traceoff_cmds
-ffffffff823d2d8c t register_trigger_enable_disable_cmds
-ffffffff823d2dd7 t __initstub__kmod_trace_eprobe__294_1081_trace_events_eprobe_init_early1
-ffffffff823d2de7 t trace_events_eprobe_init_early
-ffffffff823d2e16 t __initstub__kmod_trace_events_synth__291_2249_trace_events_synth_init_early1
-ffffffff823d2e26 t trace_events_synth_init_early
-ffffffff823d2e55 t __initstub__kmod_trace_events_synth__293_2273_trace_events_synth_init5
-ffffffff823d2e65 t trace_events_synth_init
-ffffffff823d2eb7 t register_trigger_hist_cmd
-ffffffff823d2ed6 t register_trigger_hist_enable_disable_cmds
-ffffffff823d2f29 t __initstub__kmod_trace_dynevent__284_271_init_dynamic_event5
-ffffffff823d2f3b t init_dynamic_event
-ffffffff823d2f6b t __initstub__kmod_trace_uprobe__557_1667_init_uprobe_trace5
-ffffffff823d2f7b t init_uprobe_trace
-ffffffff823d2fdd t __initstub__kmod_irq_work__221_318_irq_work_init_threadsearly
-ffffffff823d2fea t static_call_init
-ffffffff823d3134 t __initstub__kmod_static_call_inline__199_500_static_call_initearly
-ffffffff823d3146 t perf_event_init
-ffffffff823d3267 t perf_event_init_all_cpus
-ffffffff823d335e t __initstub__kmod_core__605_13622_perf_event_sysfs_init6
-ffffffff823d336e t perf_event_sysfs_init
-ffffffff823d33fb t init_hw_breakpoint
-ffffffff823d344f t uprobes_init
-ffffffff823d3497 t jump_label_init
-ffffffff823d35aa t pagecache_init
-ffffffff823d35e5 t __initstub__kmod_oom_kill__442_741_oom_init4
-ffffffff823d35f7 t oom_init
-ffffffff823d3659 t page_writeback_init
-ffffffff823d3729 t swap_setup
-ffffffff823d374f t __initstub__kmod_vmscan__724_6167_init_lru_gen7
-ffffffff823d3761 t init_lru_gen
-ffffffff823d37d9 t __initstub__kmod_vmscan__759_7858_kswapd_init6
-ffffffff823d3808 t shmem_init
-ffffffff823d38d5 t init_mm_internals
-ffffffff823d3a18 t start_shepherd_timer
-ffffffff823d3afb t __initstub__kmod_vmstat__341_2248_extfrag_debug_init6
-ffffffff823d3b0d t extfrag_debug_init
-ffffffff823d3b73 t __initstub__kmod_backing_dev__566_232_bdi_class_init2
-ffffffff823d3b83 t bdi_class_init
-ffffffff823d3bd9 t __initstub__kmod_backing_dev__568_242_default_bdi_init4
-ffffffff823d3c0d t __initstub__kmod_backing_dev__587_762_cgwb_init4
-ffffffff823d3c41 t mminit_verify_zonelist
-ffffffff823d3d03 t mminit_verify_pageflags_layout
-ffffffff823d3df3 t set_mminit_loglevel
-ffffffff823d3e3f t __initstub__kmod_mm_init__332_194_mm_compute_batch_init6
-ffffffff823d3e51 t mm_compute_batch_init
-ffffffff823d3e7c t __initstub__kmod_mm_init__334_206_mm_sysfs_init2
-ffffffff823d3eae t pcpu_alloc_alloc_info
-ffffffff823d3f54 t pcpu_free_alloc_info
-ffffffff823d3f68 t pcpu_setup_first_chunk
-ffffffff823d47ad t pcpu_alloc_first_chunk
-ffffffff823d4a82 t percpu_alloc_setup
-ffffffff823d4aea t pcpu_embed_first_chunk
-ffffffff823d4e3f t pcpu_build_alloc_info
-ffffffff823d5389 t pcpu_page_first_chunk
-ffffffff823d57cd t __initstub__kmod_percpu__418_3463_percpu_enable_async4
-ffffffff823d57e1 t setup_slab_nomerge
-ffffffff823d57f8 t setup_slab_merge
-ffffffff823d580f t create_boot_cache
-ffffffff823d58be t create_kmalloc_cache
-ffffffff823d597c t setup_kmalloc_cache_index_table
-ffffffff823d5987 t create_kmalloc_caches
-ffffffff823d5a2b t new_kmalloc_cache
-ffffffff823d5b16 t __initstub__kmod_slab_common__458_1324_slab_proc_init6
-ffffffff823d5b3d t __initstub__kmod_compaction__543_3091_kcompactd_init4
-ffffffff823d5b4d t kcompactd_init
-ffffffff823d5bac t __initstub__kmod_workingset__352_748_workingset_init6
-ffffffff823d5bbc t workingset_init
-ffffffff823d5c65 t disable_randmaps
-ffffffff823d5c7f t __initstub__kmod_memory__441_164_init_zero_pfnearly
-ffffffff823d5cc8 t __initstub__kmod_memory__460_4481_fault_around_debugfs7
-ffffffff823d5cf8 t cmdline_parse_stack_guard_gap
-ffffffff823d5d5e t mmap_init
-ffffffff823d5d83 t __initstub__kmod_mmap__416_3678_init_user_reserve4
-ffffffff823d5dc4 t __initstub__kmod_mmap__420_3699_init_admin_reserve4
-ffffffff823d5e05 t __initstub__kmod_mmap__422_3769_init_reserve_notifier4
-ffffffff823d5e17 t anon_vma_init
-ffffffff823d5e7e t set_nohugeiomap
-ffffffff823d5e92 t set_nohugevmalloc
-ffffffff823d5ea6 t vm_area_add_early
-ffffffff823d5ef7 t vm_area_register_early
-ffffffff823d5fa0 t vmalloc_init
-ffffffff823d614b t __initstub__kmod_vmalloc__370_4201_proc_vmalloc_init6
-ffffffff823d6178 t early_init_on_alloc
-ffffffff823d618f t early_init_on_free
-ffffffff823d61a6 t init_mem_debugging_and_hardening
-ffffffff823d6201 t memblock_free_pages
-ffffffff823d6213 t page_alloc_init_late
-ffffffff823d6263 t build_all_zonelists_init
-ffffffff823d62fb t memmap_alloc
-ffffffff823d6321 t setup_per_cpu_pageset
-ffffffff823d6378 t get_pfn_range_for_nid
-ffffffff823d6454 t __absent_pages_in_range
-ffffffff823d6534 t absent_pages_in_range
-ffffffff823d654f t set_pageblock_order
-ffffffff823d655a t node_map_pfn_alignment
-ffffffff823d665d t free_area_init
-ffffffff823d68ac t find_zone_movable_pfns_for_nodes
-ffffffff823d6c95 t free_area_init_node
-ffffffff823d6d80 t memmap_init
-ffffffff823d6eaa t cmdline_parse_kernelcore
-ffffffff823d6eeb t cmdline_parse_movablecore
-ffffffff823d6f09 t mem_init_print_info
-ffffffff823d70d0 t set_dma_reserve
-ffffffff823d70e2 t page_alloc_init
-ffffffff823d7127 t __initstub__kmod_page_alloc__673_8942_init_per_zone_wmark_min2
-ffffffff823d7139 t alloc_large_system_hash
-ffffffff823d73d5 t early_calculate_totalpages
-ffffffff823d7489 t calculate_node_totalpages
-ffffffff823d7587 t free_area_init_core
-ffffffff823d76e0 t zone_spanned_pages_in_node
-ffffffff823d778f t zone_absent_pages_in_node
-ffffffff823d790f t adjust_zone_range_for_zone_movable
-ffffffff823d797e t memmap_init_zone_range
-ffffffff823d7a25 t init_unavailable_range
-ffffffff823d7b7a t cmdline_parse_core
-ffffffff823d7c18 t memblock_discard
-ffffffff823d7d04 t memblock_free_late
-ffffffff823d7dcb t memblock_alloc_range_nid
-ffffffff823d7f4c t memblock_phys_alloc_range
-ffffffff823d7fee t memblock_phys_alloc_try_nid
-ffffffff823d8008 t memblock_alloc_exact_nid_raw
-ffffffff823d80b4 t memblock_alloc_internal
-ffffffff823d8156 t memblock_alloc_try_nid_raw
-ffffffff823d81ff t memblock_alloc_try_nid
-ffffffff823d82c0 t memblock_enforce_memory_limit
-ffffffff823d833e t memblock_cap_memory_range
-ffffffff823d848e t memblock_mem_limit_remove_map
-ffffffff823d84e5 t memblock_allow_resize
-ffffffff823d84f7 t early_memblock
-ffffffff823d8521 t reset_all_zones_managed_pages
-ffffffff823d855d t memblock_free_all
-ffffffff823d85a6 t free_low_memory_core_early
-ffffffff823d86c8 t memmap_init_reserved_pages
-ffffffff823d87d9 t __free_pages_memory
-ffffffff823d8842 t setup_memhp_default_state
-ffffffff823d8861 t cmdline_parse_movable_node
-ffffffff823d8875 t __initstub__kmod_swap_state__347_909_swap_init_sysfs4
-ffffffff823d8885 t swap_init_sysfs
-ffffffff823d8900 t __initstub__kmod_swapfile__370_2688_procswaps_init6
-ffffffff823d8924 t __initstub__kmod_swapfile__373_2697_max_swapfiles_check7
-ffffffff823d8931 t __initstub__kmod_swapfile__397_3687_swapfile_init4
-ffffffff823d8941 t swapfile_init
-ffffffff823d89be t subsection_map_init
-ffffffff823d8a94 t sparse_init
-ffffffff823d8cdf t memblocks_present
-ffffffff823d8d90 t sparse_init_nid
-ffffffff823d90c9 t memory_present
-ffffffff823d9252 t sparse_early_usemaps_alloc_pgdat_section
-ffffffff823d92b5 t sparse_buffer_init
-ffffffff823d9340 t sparse_buffer_fini
-ffffffff823d9375 t check_usemap_section_nr
-ffffffff823d9492 t setup_slub_debug
-ffffffff823d95fd t setup_slub_min_order
-ffffffff823d964c t setup_slub_max_order
-ffffffff823d96b2 t setup_slub_min_objects
-ffffffff823d9701 t kmem_cache_init
-ffffffff823d982f t bootstrap
-ffffffff823d994c t init_freelist_randomization
-ffffffff823d99e7 t kmem_cache_init_late
-ffffffff823d9a15 t __initstub__kmod_slub__463_6078_slab_sysfs_init6
-ffffffff823d9a25 t slab_sysfs_init
-ffffffff823d9b8b t __initstub__kmod_slub__466_6293_slab_debugfs_init6
-ffffffff823d9b9d t slab_debugfs_init
-ffffffff823d9c50 t __initstub__kmod_core__340_743_kfence_debugfs_init7
-ffffffff823d9cc1 t kfence_alloc_pool
-ffffffff823d9d09 t kfence_init
-ffffffff823d9d4e t kfence_init_pool_early
-ffffffff823d9dba t __initstub__kmod_huge_memory__404_521_hugepage_init4
-ffffffff823d9dca t hugepage_init
-ffffffff823d9eb8 t setup_transparent_hugepage
-ffffffff823d9f4c t __initstub__kmod_huge_memory__418_3193_split_huge_pages_debugfs7
-ffffffff823d9f7c t hugepage_init_sysfs
-ffffffff823da02f t hugepage_exit_sysfs
-ffffffff823da062 t khugepaged_init
-ffffffff823da0d2 t khugepaged_destroy
-ffffffff823da0e9 t cgroup_memory
-ffffffff823da19b t __initstub__kmod_memcontrol__1051_7318_mem_cgroup_init4
-ffffffff823da1ad t mem_cgroup_init
-ffffffff823da292 t setup_swap_account
-ffffffff823da2c0 t __initstub__kmod_memcontrol__1060_7810_mem_cgroup_swap_init4
-ffffffff823da2d2 t mem_cgroup_swap_init
-ffffffff823da315 t early_page_owner_param
-ffffffff823da342 t need_page_owner
-ffffffff823da353 t init_page_owner
-ffffffff823da628 t __initstub__kmod_page_owner__332_745_pageowner_init7
-ffffffff823da63a t pageowner_init
-ffffffff823da678 t __initstub__kmod_zsmalloc__345_2366_zs_init6
-ffffffff823da6ba t early_ioremap_debug_setup
-ffffffff823da6ce t early_memremap_pgprot_adjust
-ffffffff823da6dc t early_ioremap_reset
-ffffffff823da6ee t early_ioremap_setup
-ffffffff823da736 t __initstub__kmod_early_ioremap__317_99_check_early_ioremap_leak7
-ffffffff823da746 t check_early_ioremap_leak
-ffffffff823da789 t early_iounmap
-ffffffff823da8a0 t early_ioremap
-ffffffff823da8c1 t __early_ioremap
-ffffffff823daa6f t early_memremap
-ffffffff823daaaa t early_memremap_ro
-ffffffff823daae5 t early_memremap_prot
-ffffffff823daaf5 t copy_from_early_mem
-ffffffff823dab86 t early_memunmap
-ffffffff823dab96 t setup_early_page_ext
-ffffffff823dabaa t page_ext_init
-ffffffff823dad01 t __initstub__kmod_secretmem__332_293_secretmem_init5
-ffffffff823dad11 t secretmem_init
-ffffffff823dad4e t __initstub__kmod_core__290_1301_damon_init4
-ffffffff823dad5e t damon_init
-ffffffff823dadb2 t __initstub__kmod_paddr__319_319_damon_pa_initcall4
-ffffffff823dae04 t __initstub__kmod_reclaim__219_284_damon_reclaim_init6
-ffffffff823dae14 t damon_reclaim_init
-ffffffff823daec1 t parse_hardened_usercopy
-ffffffff823daef7 t __initstub__kmod_usercopy__316_276_set_hardened_usercopy7
-ffffffff823daf26 t register_page_bootmem_info_node
-ffffffff823db058 t register_page_bootmem_info_section
-ffffffff823db12e t __initstub__kmod_file_table__328_130_init_fs_stat_sysctls5
-ffffffff823db140 t init_fs_stat_sysctls
-ffffffff823db17f t files_init
-ffffffff823db1cf t files_maxfiles_init
-ffffffff823db238 t chrdev_init
-ffffffff823db25d t __initstub__kmod_exec__699_2157_init_fs_exec_sysctls5
-ffffffff823db284 t __initstub__kmod_pipe__341_1511_init_pipe_fs5
-ffffffff823db294 t init_pipe_fs
-ffffffff823db302 t __initstub__kmod_namei__331_1076_init_fs_namei_sysctls5
-ffffffff823db329 t __initstub__kmod_fcntl__306_1041_fcntl_init6
-ffffffff823db361 t __initstub__kmod_dcache__259_202_init_fs_dcache_sysctls5
-ffffffff823db388 t set_dhash_entries
-ffffffff823db3e0 t vfs_caches_init_early
-ffffffff823db408 t dcache_init_early
-ffffffff823db45e t vfs_caches_init
-ffffffff823db500 t __initstub__kmod_inode__580_140_init_fs_inode_sysctlsearly
-ffffffff823db527 t set_ihash_entries
-ffffffff823db57f t inode_init_early
-ffffffff823db5c8 t inode_init
-ffffffff823db601 t list_bdev_fs_names
-ffffffff823db6b5 t __initstub__kmod_filesystems__279_258_proc_filesystems_init6
-ffffffff823db6dc t set_mhash_entries
-ffffffff823db734 t set_mphash_entries
-ffffffff823db78c t mnt_init
-ffffffff823db8b6 t init_mount_tree
-ffffffff823dba0e t __initstub__kmod_namespace__346_4719_init_fs_namespace_sysctls5
-ffffffff823dba35 t seq_file_init
-ffffffff823dba6e t __initstub__kmod_fs_writeback__698_1123_cgroup_writeback_init5
-ffffffff823dba9f t __initstub__kmod_fs_writeback__712_2339_start_dirtytime_writeback6
-ffffffff823dbace t nsfs_init
-ffffffff823dbb0c t init_mount
-ffffffff823dbba5 t init_umount
-ffffffff823dbc0d t init_chdir
-ffffffff823dbca3 t init_chroot
-ffffffff823dbd55 t init_chown
-ffffffff823dbdf8 t init_chmod
-ffffffff823dbe6f t init_eaccess
-ffffffff823dbeef t init_stat
-ffffffff823dbf83 t init_mknod
-ffffffff823dc0a7 t init_link
-ffffffff823dc185 t init_symlink
-ffffffff823dc21b t init_unlink
-ffffffff823dc238 t init_mkdir
-ffffffff823dc2ef t init_rmdir
-ffffffff823dc30c t init_utimes
-ffffffff823dc385 t init_dup
-ffffffff823dc3bb t buffer_init
-ffffffff823dc452 t __initstub__kmod_direct_io__301_1346_dio_init6
-ffffffff823dc48d t __initstub__kmod_fsnotify__274_601_fsnotify_init1
-ffffffff823dc49f t fsnotify_init
-ffffffff823dc500 t __initstub__kmod_inotify_user__349_891_inotify_user_setup5
-ffffffff823dc512 t inotify_user_setup
-ffffffff823dc615 t __initstub__kmod_eventpoll__589_2419_eventpoll_init5
-ffffffff823dc627 t eventpoll_init
-ffffffff823dc763 t __initstub__kmod_anon_inodes__261_270_anon_inode_init5
-ffffffff823dc775 t anon_inode_init
-ffffffff823dc7cb t __initstub__kmod_userfaultfd__359_2196_userfaultfd_init6
-ffffffff823dc7db t userfaultfd_init
-ffffffff823dc82a t __initstub__kmod_aio__337_307_aio_setup6
-ffffffff823dc83c t aio_setup
-ffffffff823dc8e6 t __initstub__kmod_locks__417_121_init_fs_locks_sysctlsearly
-ffffffff823dc90d t __initstub__kmod_locks__449_2916_proc_locks_init5
-ffffffff823dc93a t __initstub__kmod_locks__451_2939_filelock_init1
-ffffffff823dc94c t filelock_init
-ffffffff823dca0c t __initstub__kmod_binfmt_misc__298_834_init_misc_binfmt1
-ffffffff823dca1c t init_misc_binfmt
-ffffffff823dca4e t __initstub__kmod_binfmt_script__232_156_init_script_binfmt1
-ffffffff823dca69 t __initstub__kmod_binfmt_elf__342_2345_init_elf_binfmt1
-ffffffff823dca84 t __initstub__kmod_mbcache__232_440_mbcache_init6
-ffffffff823dcac9 t __initstub__kmod_coredump__679_985_init_fs_coredump_sysctls5
-ffffffff823dcaf0 t __initstub__kmod_iomap__427_1553_iomap_init5
-ffffffff823dcb16 t proc_init_kmemcache
-ffffffff823dcbad t proc_root_init
-ffffffff823dcc32 t set_proc_pid_nlink
-ffffffff823dcc4b t proc_tty_init
-ffffffff823dcccb t __initstub__kmod_proc__222_19_proc_cmdline_init5
-ffffffff823dccf2 t __initstub__kmod_proc__240_98_proc_consoles_init5
-ffffffff823dcd1c t __initstub__kmod_proc__252_28_proc_cpuinfo_init5
-ffffffff823dcd40 t __initstub__kmod_proc__297_64_proc_devices_init5
-ffffffff823dcd52 t proc_devices_init
-ffffffff823dcd81 t __initstub__kmod_proc__222_42_proc_interrupts_init5
-ffffffff823dcdab t __initstub__kmod_proc__254_37_proc_loadavg_init5
-ffffffff823dcdd9 t __initstub__kmod_proc__318_173_proc_meminfo_init5
-ffffffff823dce07 t __initstub__kmod_proc__232_242_proc_stat_init5
-ffffffff823dce2b t __initstub__kmod_proc__222_49_proc_uptime_init5
-ffffffff823dce59 t __initstub__kmod_proc__222_27_proc_version_init5
-ffffffff823dce87 t __initstub__kmod_proc__222_37_proc_softirqs_init5
-ffffffff823dceb5 t proc_self_init
-ffffffff823dcecc t proc_thread_self_init
-ffffffff823dcee3 t __register_sysctl_init
-ffffffff823dcf25 t proc_sys_init
-ffffffff823dcf5a t proc_net_init
-ffffffff823dcf86 t proc_net_ns_init
-ffffffff823dd047 t __initstub__kmod_proc__222_63_proc_kmsg_init5
-ffffffff823dd06e t __initstub__kmod_proc__324_342_proc_page_init5
-ffffffff823dd080 t proc_page_init
-ffffffff823dd0d9 t __initstub__kmod_proc__222_96_proc_boot_config_init5
-ffffffff823dd0e9 t proc_boot_config_init
-ffffffff823dd16b t copy_xbc_key_value_list
-ffffffff823dd360 t kernfs_init
-ffffffff823dd3c8 t kernfs_lock_init
-ffffffff823dd420 t sysfs_init
-ffffffff823dd482 t __initstub__kmod_devpts__268_637_init_devpts_fs6
-ffffffff823dd492 t init_devpts_fs
-ffffffff823dd4cd t ext4_init_system_zone
-ffffffff823dd512 t ext4_init_es
-ffffffff823dd557 t ext4_init_pending
-ffffffff823dd59c t ext4_init_mballoc
-ffffffff823dd66c t ext4_init_pageio
-ffffffff823dd6f1 t ext4_init_post_read_processing
-ffffffff823dd767 t __initstub__kmod_ext4__1652_7312_ext4_init_fs6
-ffffffff823dd777 t ext4_init_fs
-ffffffff823dd8e4 t init_inodecache
-ffffffff823dd92f t ext4_init_sysfs
-ffffffff823dd9f7 t ext4_fc_init_dentry_cache
-ffffffff823dda3f t jbd2_journal_init_transaction_cache
-ffffffff823dda9f t jbd2_journal_init_revoke_record_cache
-ffffffff823ddb02 t jbd2_journal_init_revoke_table_cache
-ffffffff823ddb65 t __initstub__kmod_jbd2__558_3198_journal_init6
-ffffffff823ddb75 t journal_init
-ffffffff823ddbab t journal_init_caches
-ffffffff823ddbea t jbd2_journal_init_journal_head_cache
-ffffffff823ddc4a t jbd2_journal_init_handle_cache
-ffffffff823ddcad t jbd2_journal_init_inode_cache
-ffffffff823ddd0d t __initstub__kmod_ramfs__302_299_init_ramfs_fs5
-ffffffff823ddd24 t __initstub__kmod_nls_cp437__189_384_init_nls_cp4376
-ffffffff823ddd3d t __initstub__kmod_nls_cp737__189_347_init_nls_cp7376
-ffffffff823ddd56 t __initstub__kmod_nls_cp775__189_316_init_nls_cp7756
-ffffffff823ddd6f t __initstub__kmod_nls_cp850__189_312_init_nls_cp8506
-ffffffff823ddd88 t __initstub__kmod_nls_cp852__189_334_init_nls_cp8526
-ffffffff823ddda1 t __initstub__kmod_nls_cp855__189_296_init_nls_cp8556
-ffffffff823dddba t __initstub__kmod_nls_cp857__189_298_init_nls_cp8576
-ffffffff823dddd3 t __initstub__kmod_nls_cp860__189_361_init_nls_cp8606
-ffffffff823dddec t __initstub__kmod_nls_cp861__189_384_init_nls_cp8616
-ffffffff823dde05 t __initstub__kmod_nls_cp862__189_418_init_nls_cp8626
-ffffffff823dde1e t __initstub__kmod_nls_cp863__189_378_init_nls_cp8636
-ffffffff823dde37 t __initstub__kmod_nls_cp864__189_404_init_nls_cp8646
-ffffffff823dde50 t __initstub__kmod_nls_cp865__189_384_init_nls_cp8656
-ffffffff823dde69 t __initstub__kmod_nls_cp866__189_302_init_nls_cp8666
-ffffffff823dde82 t __initstub__kmod_nls_cp869__189_312_init_nls_cp8696
-ffffffff823dde9b t __initstub__kmod_nls_cp874__189_271_init_nls_cp8746
-ffffffff823ddeb4 t __initstub__kmod_nls_cp932__189_7929_init_nls_cp9326
-ffffffff823ddecd t __initstub__kmod_nls_euc_jp__189_577_init_nls_euc_jp6
-ffffffff823ddedd t init_nls_euc_jp
-ffffffff823ddf2b t __initstub__kmod_nls_cp936__189_11107_init_nls_cp9366
-ffffffff823ddf44 t __initstub__kmod_nls_cp949__189_13942_init_nls_cp9496
-ffffffff823ddf5d t __initstub__kmod_nls_cp950__189_9478_init_nls_cp9506
-ffffffff823ddf76 t __initstub__kmod_nls_cp1250__189_343_init_nls_cp12506
-ffffffff823ddf8f t __initstub__kmod_nls_cp1251__189_298_init_nls_cp12516
-ffffffff823ddfa8 t __initstub__kmod_nls_ascii__189_163_init_nls_ascii6
-ffffffff823ddfc1 t __initstub__kmod_nls_iso8859_1__189_254_init_nls_iso8859_16
-ffffffff823ddfda t __initstub__kmod_nls_iso8859_2__189_305_init_nls_iso8859_26
-ffffffff823ddff3 t __initstub__kmod_nls_iso8859_3__189_305_init_nls_iso8859_36
-ffffffff823de00c t __initstub__kmod_nls_iso8859_4__189_305_init_nls_iso8859_46
-ffffffff823de025 t __initstub__kmod_nls_iso8859_5__189_269_init_nls_iso8859_56
-ffffffff823de03e t __initstub__kmod_nls_iso8859_6__189_260_init_nls_iso8859_66
-ffffffff823de057 t __initstub__kmod_nls_iso8859_7__189_314_init_nls_iso8859_76
-ffffffff823de070 t __initstub__kmod_nls_cp1255__189_380_init_nls_cp12556
-ffffffff823de089 t __initstub__kmod_nls_iso8859_9__189_269_init_nls_iso8859_96
-ffffffff823de0a2 t __initstub__kmod_nls_iso8859_13__189_282_init_nls_iso8859_136
-ffffffff823de0bb t __initstub__kmod_nls_iso8859_14__189_338_init_nls_iso8859_146
-ffffffff823de0d4 t __initstub__kmod_nls_iso8859_15__189_304_init_nls_iso8859_156
-ffffffff823de0ed t __initstub__kmod_nls_koi8_r__189_320_init_nls_koi8_r6
-ffffffff823de106 t __initstub__kmod_nls_koi8_u__189_327_init_nls_koi8_u6
-ffffffff823de11f t __initstub__kmod_nls_koi8_ru__189_79_init_nls_koi8_ru6
-ffffffff823de12f t init_nls_koi8_ru
-ffffffff823de17d t __initstub__kmod_nls_utf8__189_65_init_nls_utf86
-ffffffff823de1a9 t __initstub__kmod_mac_celtic__189_598_init_nls_macceltic6
-ffffffff823de1c2 t __initstub__kmod_mac_centeuro__189_528_init_nls_maccenteuro6
-ffffffff823de1db t __initstub__kmod_mac_croatian__189_598_init_nls_maccroatian6
-ffffffff823de1f4 t __initstub__kmod_mac_cyrillic__189_493_init_nls_maccyrillic6
-ffffffff823de20d t __initstub__kmod_mac_gaelic__189_563_init_nls_macgaelic6
-ffffffff823de226 t __initstub__kmod_mac_greek__189_493_init_nls_macgreek6
-ffffffff823de23f t __initstub__kmod_mac_iceland__189_598_init_nls_maciceland6
-ffffffff823de258 t __initstub__kmod_mac_inuit__189_528_init_nls_macinuit6
-ffffffff823de271 t __initstub__kmod_mac_romanian__189_598_init_nls_macromanian6
-ffffffff823de28a t __initstub__kmod_mac_roman__189_633_init_nls_macroman6
-ffffffff823de2a3 t __initstub__kmod_mac_turkish__189_598_init_nls_macturkish6
-ffffffff823de2bc t fuse_dev_init
-ffffffff823de327 t __initstub__kmod_fuse__448_2237_fuse_init6
-ffffffff823de337 t fuse_init
-ffffffff823de4d6 t fuse_fs_init
-ffffffff823de55f t fuse_ctl_init
-ffffffff823de576 t debugfs_kernel
-ffffffff823de5d9 t __initstub__kmod_debugfs__286_906_debugfs_init1
-ffffffff823de5e9 t debugfs_init
-ffffffff823de655 t tracefs_create_instance_dir
-ffffffff823de6a1 t __initstub__kmod_tracefs__269_645_tracefs_init1
-ffffffff823de6b1 t tracefs_init
-ffffffff823de6f3 t __initstub__kmod_erofs__442_1121_erofs_module_init6
-ffffffff823de703 t erofs_module_init
-ffffffff823de7cf t erofs_init_shrinker
-ffffffff823de7ed t erofs_init_sysfs
-ffffffff823de873 t z_erofs_init_zip_subsystem
-ffffffff823deaaf t capability_init
-ffffffff823dead4 t __initstub__kmod_min_addr__251_53_init_mmap_min_addr0
-ffffffff823deafe t early_security_init
-ffffffff823deb5c t prepare_lsm
-ffffffff823debf5 t initialize_lsm
-ffffffff823dec50 t security_init
-ffffffff823dec9c t ordered_lsm_init
-ffffffff823deee0 t choose_major_lsm
-ffffffff823deef7 t choose_lsm_order
-ffffffff823def0e t enable_debug
-ffffffff823def25 t security_add_hooks
-ffffffff823defb8 t lsm_allowed
-ffffffff823defff t lsm_set_blob_sizes
-ffffffff823df0d0 t ordered_lsm_parse
-ffffffff823df3c7 t lsm_early_cred
-ffffffff823df411 t lsm_early_task
-ffffffff823df461 t append_ordered_lsm
-ffffffff823df526 t __initstub__kmod_inode__273_350_securityfs_init1
-ffffffff823df536 t securityfs_init
-ffffffff823df5b3 t avc_init
-ffffffff823df66a t avc_add_callback
-ffffffff823df6bc t enforcing_setup
-ffffffff823df71b t checkreqprot_setup
-ffffffff823df78a t selinux_init
-ffffffff823df8cb t __initstub__kmod_selinux__557_2251_init_sel_fs6
-ffffffff823df8db t init_sel_fs
-ffffffff823dfa02 t __initstub__kmod_selinux__324_121_selnl_init6
-ffffffff823dfa14 t selnl_init
-ffffffff823dfa9a t __initstub__kmod_selinux__556_279_sel_netif_init6
-ffffffff823dfaac t sel_netif_init
-ffffffff823dfae8 t __initstub__kmod_selinux__557_305_sel_netnode_init6
-ffffffff823dfb21 t __initstub__kmod_selinux__557_238_sel_netport_init6
-ffffffff823dfb5a t ebitmap_cache_init
-ffffffff823dfb90 t hashtab_cache_init
-ffffffff823dfbc6 t avtab_cache_init
-ffffffff823dfc29 t __initstub__kmod_selinux__636_3831_aurule_init6
-ffffffff823dfc3b t aurule_init
-ffffffff823dfc69 t integrity_iintcache_init
-ffffffff823dfca4 t integrity_load_keys
-ffffffff823dfcaf t __initstub__kmod_integrity__258_232_integrity_fs_init7
-ffffffff823dfcbf t integrity_fs_init
-ffffffff823dfd1c t integrity_audit_setup
-ffffffff823dfd7b t __initstub__kmod_crypto_algapi__359_1311_crypto_algapi_init7
-ffffffff823dfda5 t crypto_init_proc
-ffffffff823dfdcd t __initstub__kmod_seqiv__276_183_seqiv_module_init4
-ffffffff823dfde4 t __initstub__kmod_echainiv__276_160_echainiv_module_init4
-ffffffff823dfdfb t __initstub__kmod_cryptomgr__358_257_cryptomgr_init3
-ffffffff823dfe1b t __initstub__kmod_hmac__276_258_hmac_module_init4
-ffffffff823dfe32 t __initstub__kmod_xcbc__191_270_crypto_xcbc_module_init4
-ffffffff823dfe49 t __initstub__kmod_crypto_null__267_221_crypto_null_mod_init4
-ffffffff823dfe59 t crypto_null_mod_init
-ffffffff823dfece t __initstub__kmod_md5__191_245_md5_mod_init4
-ffffffff823dfee5 t __initstub__kmod_sha1_generic__261_89_sha1_generic_mod_init4
-ffffffff823dfefc t __initstub__kmod_sha256_generic__261_101_sha256_generic_mod_init4
-ffffffff823dff18 t __initstub__kmod_sha512_generic__261_218_sha512_generic_mod_init4
-ffffffff823dff34 t __initstub__kmod_blake2b_generic__191_174_blake2b_mod_init4
-ffffffff823dff50 t __initstub__kmod_cbc__191_218_crypto_cbc_module_init4
-ffffffff823dff67 t __initstub__kmod_ctr__193_355_crypto_ctr_module_init4
-ffffffff823dff83 t __initstub__kmod_xctr__191_185_crypto_xctr_module_init4
-ffffffff823dff9a t __initstub__kmod_hctr2__281_575_hctr2_module_init4
-ffffffff823dffb6 t __initstub__kmod_adiantum__285_613_adiantum_module_init4
-ffffffff823dffcd t __initstub__kmod_nhpoly1305__200_248_nhpoly1305_mod_init4
-ffffffff823dffe4 t __initstub__kmod_gcm__278_1159_crypto_gcm_module_init4
-ffffffff823dfff4 t crypto_gcm_module_init
-ffffffff823e0067 t __initstub__kmod_chacha20poly1305__278_671_chacha20poly1305_module_init4
-ffffffff823e0083 t __initstub__kmod_cryptd__265_1097_cryptd_init4
-ffffffff823e0093 t cryptd_init
-ffffffff823e01c3 t __initstub__kmod_des_generic__191_125_des_generic_mod_init4
-ffffffff823e01df t __initstub__kmod_aes_generic__191_1314_aes_init4
-ffffffff823e01f6 t __initstub__kmod_chacha_generic__191_128_chacha_generic_mod_init4
-ffffffff823e0212 t __initstub__kmod_poly1305_generic__193_142_poly1305_mod_init4
-ffffffff823e0229 t __initstub__kmod_deflate__265_334_deflate_mod_init4
-ffffffff823e0239 t deflate_mod_init
-ffffffff823e0281 t __initstub__kmod_crc32c_generic__191_161_crc32c_mod_init4
-ffffffff823e0298 t __initstub__kmod_authenc__362_464_crypto_authenc_module_init4
-ffffffff823e02af t __initstub__kmod_authencesn__361_479_crypto_authenc_esn_module_init4
-ffffffff823e02c6 t __initstub__kmod_lzo__261_158_lzo_mod_init4
-ffffffff823e02d6 t lzo_mod_init
-ffffffff823e0319 t __initstub__kmod_lzo_rle__261_158_lzorle_mod_init4
-ffffffff823e0329 t lzorle_mod_init
-ffffffff823e036c t __initstub__kmod_lz4__191_155_lz4_mod_init4
-ffffffff823e037c t lz4_mod_init
-ffffffff823e03bf t __initstub__kmod_ansi_cprng__197_470_prng_mod_init4
-ffffffff823e03db t __initstub__kmod_drbg__277_2148_drbg_init4
-ffffffff823e03eb t drbg_init
-ffffffff823e0477 t drbg_fill_array
-ffffffff823e054b t __initstub__kmod_jitterentropy_rng__191_211_jent_mod_init6
-ffffffff823e055b t jent_mod_init
-ffffffff823e0590 t __initstub__kmod_ghash_generic__194_178_ghash_mod_init4
-ffffffff823e05a7 t __initstub__kmod_polyval_generic__194_239_polyval_mod_init4
-ffffffff823e05be t __initstub__kmod_zstd__265_253_zstd_mod_init4
-ffffffff823e05ce t zstd_mod_init
-ffffffff823e0611 t __initstub__kmod_essiv__277_646_essiv_module_init4
-ffffffff823e0628 t bdev_cache_init
-ffffffff823e06af t __initstub__kmod_fops__346_712_blkdev_init6
-ffffffff823e06d5 t __initstub__kmod_bio__522_1762_init_bio4
-ffffffff823e06e7 t init_bio
-ffffffff823e079f t elevator_setup
-ffffffff823e07bb t blk_dev_init
-ffffffff823e0860 t __initstub__kmod_blk_ioc__322_457_blk_ioc_init4
-ffffffff823e0898 t __initstub__kmod_blk_timeout__311_99_blk_timeout_init7
-ffffffff823e08ac t __initstub__kmod_blk_mq__509_4953_blk_mq_init4
-ffffffff823e08be t blk_mq_init
-ffffffff823e09ad t printk_all_partitions
-ffffffff823e0c15 t __initstub__kmod_genhd__324_923_genhd_device_init4
-ffffffff823e0c25 t genhd_device_init
-ffffffff823e0c88 t __initstub__kmod_genhd__328_1335_proc_genhd_init6
-ffffffff823e0c9a t proc_genhd_init
-ffffffff823e0cdf t force_gpt_fn
-ffffffff823e0cf6 t __initstub__kmod_blk_cgroup__371_2001_blkcg_init4
-ffffffff823e0d2a t __initstub__kmod_blk_iocost__495_3464_ioc_init6
-ffffffff823e0d41 t __initstub__kmod_mq_deadline__471_1242_deadline_init6
-ffffffff823e0d58 t __initstub__kmod_kyber_iosched__530_1051_kyber_init6
-ffffffff823e0d6f t __initstub__kmod_bfq__555_7527_bfq_init6
-ffffffff823e0d7f t bfq_init
-ffffffff823e0e1c t __initstub__kmod_blk_crypto__311_99_bio_crypt_ctx_init4
-ffffffff823e0e2e t bio_crypt_ctx_init
-ffffffff823e0ec6 t __initstub__kmod_blk_crypto_sysfs__309_173_blk_crypto_sysfs_init4
-ffffffff823e0f0a t __initstub__kmod_io_uring__881_4146_io_uring_init6
-ffffffff823e0f1c t io_uring_init
-ffffffff823e0f5a t io_uring_optable_init
-ffffffff823e0fbc t __initstub__kmod_io_wq__507_1417_io_wq_init4
-ffffffff823e0fcc t io_wq_init
-ffffffff823e1026 t __initstub__kmod_libblake2s__189_69_blake2s_mod_init6
-ffffffff823e1033 t __initstub__kmod_libcrc32c__191_74_libcrc32c_mod_init6
-ffffffff823e106f t __initstub__kmod_percpu_counter__201_257_percpu_counter_startup6
-ffffffff823e1081 t percpu_counter_startup
-ffffffff823e10f8 t dyndbg_setup
-ffffffff823e1108 t __initstub__kmod_dynamic_debug__535_1453_dynamic_debug_initearly
-ffffffff823e111a t dynamic_debug_init
-ffffffff823e1360 t __initstub__kmod_dynamic_debug__537_1456_dynamic_debug_init_control5
-ffffffff823e1370 t dynamic_debug_init_control
-ffffffff823e13f8 t __initstub__kmod_sg_pool__251_180_sg_pool_init4
-ffffffff823e1408 t sg_pool_init
-ffffffff823e1506 t is_stack_depot_disabled
-ffffffff823e1545 t stack_depot_want_early_init
-ffffffff823e1564 t stack_depot_early_init
-ffffffff823e15fd t xbc_get_info
-ffffffff823e1637 t xbc_root_node
-ffffffff823e1655 t xbc_node_index
-ffffffff823e166e t xbc_node_get_parent
-ffffffff823e1699 t xbc_node_get_child
-ffffffff823e16be t xbc_node_get_next
-ffffffff823e16e2 t xbc_node_get_data
-ffffffff823e170c t xbc_node_find_subkey
-ffffffff823e1827 t xbc_node_match_prefix
-ffffffff823e18a4 t xbc_node_find_value
-ffffffff823e1922 t xbc_node_compose_key_after
-ffffffff823e1ae9 t xbc_node_find_next_leaf
-ffffffff823e1bbb t xbc_node_find_next_key_value
-ffffffff823e1c1d t xbc_exit
-ffffffff823e1c71 t xbc_init
-ffffffff823e1df9 t xbc_parse_tree
-ffffffff823e1f61 t xbc_verify_tree
-ffffffff823e21eb t xbc_parse_kv
-ffffffff823e23a5 t xbc_parse_key
-ffffffff823e23f1 t xbc_close_brace
-ffffffff823e2417 t __xbc_parse_keys
-ffffffff823e2464 t __xbc_parse_value
-ffffffff823e25f4 t xbc_parse_array
-ffffffff823e26ae t __xbc_close_brace
-ffffffff823e273b t __xbc_add_key
-ffffffff823e2810 t xbc_valid_keyword
-ffffffff823e2847 t find_match_node
-ffffffff823e28c6 t __xbc_add_sibling
-ffffffff823e298a t xbc_add_node
-ffffffff823e29dc t __xbc_open_brace
-ffffffff823e2a40 t irqchip_init
-ffffffff823e2a78 t __initstub__kmod_simple_pm_bus__198_91_simple_pm_bus_driver_init6
-ffffffff823e2a91 t __initstub__kmod_gpiolib__304_4474_gpiolib_dev_init1
-ffffffff823e2aa1 t gpiolib_dev_init
-ffffffff823e2b9f t __initstub__kmod_gpiolib__306_4599_gpiolib_debugfs_init4
-ffffffff823e2bcf t __initstub__kmod_gpiolib_acpi__249_1492_acpi_gpio_handle_deferred_request_irqs7s
-ffffffff823e2be1 t acpi_gpio_handle_deferred_request_irqs
-ffffffff823e2c38 t __initstub__kmod_gpiolib_acpi__251_1645_acpi_gpio_setup_params2
-ffffffff823e2c4a t acpi_gpio_setup_params
-ffffffff823e2cd8 t __initstub__kmod_gpio_generic__240_816_bgpio_driver_init6
-ffffffff823e2cf1 t __initstub__kmod_probe__266_109_pcibus_class_init2
-ffffffff823e2d0f t pci_sort_breadthfirst
-ffffffff823e2d2d t pci_sort_bf_cmp
-ffffffff823e2d93 t pcie_port_pm_setup
-ffffffff823e2dde t pci_register_set_vga_state
-ffffffff823e2df0 t __initstub__kmod_pci__277_6732_pci_resource_alignment_sysfs_init7
-ffffffff823e2e0e t pci_setup
-ffffffff823e32de t __initstub__kmod_pci__279_6907_pci_realloc_setup_params0
-ffffffff823e32f0 t pci_realloc_setup_params
-ffffffff823e332b t __initstub__kmod_pci_driver__329_1726_pci_driver_init2
-ffffffff823e333b t pci_driver_init
-ffffffff823e3362 t __initstub__kmod_pci_sysfs__266_1530_pci_sysfs_init7
-ffffffff823e3372 t pci_sysfs_init
-ffffffff823e33d2 t pci_realloc_get_opt
-ffffffff823e341e t pci_assign_unassigned_resources
-ffffffff823e34b2 t pcie_port_setup
-ffffffff823e3528 t __initstub__kmod_pcieportdrv__266_252_pcie_portdrv_init6
-ffffffff823e3538 t pcie_portdrv_init
-ffffffff823e3583 t dmi_pcie_pme_disable_msi
-ffffffff823e35a7 t pcie_aspm_disable
-ffffffff823e3615 t pcie_aer_init
-ffffffff823e3643 t pcie_pme_setup
-ffffffff823e366f t pcie_pme_init
-ffffffff823e3686 t __initstub__kmod_proc__265_472_pci_proc_init6
-ffffffff823e3698 t pci_proc_init
-ffffffff823e371a t __initstub__kmod_slot__265_381_pci_slot_init4
-ffffffff823e3763 t __initstub__kmod_pci_acpi__266_1493_acpi_pci_init3
-ffffffff823e3775 t acpi_pci_init
-ffffffff823e37be t __initstub__kmod_quirks__322_195_pci_apply_final_quirks5s
-ffffffff823e37d0 t pci_apply_final_quirks
-ffffffff823e3932 t __initstub__kmod_vgaarb__266_1564_vga_arb_device_init4s
-ffffffff823e3942 t vga_arb_device_init
-ffffffff823e39eb t __initstub__kmod_pci_epc_core__265_849_pci_epc_init6
-ffffffff823e39fb t pci_epc_init
-ffffffff823e3a47 t __initstub__kmod_pci_epf_core__265_561_pci_epf_init6
-ffffffff823e3a57 t pci_epf_init
-ffffffff823e3a88 t __initstub__kmod_pcie_designware_plat__265_187_dw_plat_pcie_driver_init6
-ffffffff823e3aa1 t no_scroll
-ffffffff823e3abf t acpi_table_parse_entries_array
-ffffffff823e3b9a t acpi_parse_entries_array
-ffffffff823e3d74 t acpi_table_parse_cedt
-ffffffff823e3ddf t acpi_table_parse_entries
-ffffffff823e3e3c t acpi_table_parse_madt
-ffffffff823e3ea4 t acpi_table_parse
-ffffffff823e3f62 t acpi_table_upgrade
-ffffffff823e42e9 t acpi_locate_initial_tables
-ffffffff823e4338 t acpi_reserve_initial_tables
-ffffffff823e439d t acpi_table_init_complete
-ffffffff823e43b2 t acpi_table_initrd_scan
-ffffffff823e449d t check_multiple_madt
-ffffffff823e453a t acpi_table_init
-ffffffff823e4560 t acpi_parse_apic_instance
-ffffffff823e45a1 t acpi_force_table_verification_setup
-ffffffff823e45b5 t acpi_force_32bit_fadt_addr
-ffffffff823e45d5 t acpi_get_subtable_type
-ffffffff823e463e t acpi_blacklisted
-ffffffff823e46cb t dmi_enable_rev_override
-ffffffff823e46ef t acpi_osi_setup
-ffffffff823e4800 t osi_setup
-ffffffff823e48d4 t early_acpi_osi_init
-ffffffff823e48e6 t acpi_osi_dmi_blacklisted
-ffffffff823e490d t acpi_osi_init
-ffffffff823e492b t acpi_osi_setup_late
-ffffffff823e49d7 t __acpi_osi_setup_darwin
-ffffffff823e4a31 t acpi_osi_dmi_darwin
-ffffffff823e4a59 t dmi_disable_osi_vista
-ffffffff823e4a9a t dmi_disable_osi_win7
-ffffffff823e4ac3 t dmi_disable_osi_win8
-ffffffff823e4aec t dmi_enable_osi_linux
-ffffffff823e4afe t acpi_osi_dmi_linux
-ffffffff823e4b2c t __initstub__kmod_acpi__279_141_acpi_reserve_resources5s
-ffffffff823e4b3e t acpi_reserve_resources
-ffffffff823e4c30 t acpi_os_get_root_pointer
-ffffffff823e4cc4 t acpi_rev_override_setup
-ffffffff823e4cdb t acpi_os_name_setup
-ffffffff823e4d63 t acpi_no_auto_serialize_setup
-ffffffff823e4d86 t acpi_enforce_resources_setup
-ffffffff823e4dfd t acpi_no_static_ssdt_setup
-ffffffff823e4e1d t acpi_disable_return_repair
-ffffffff823e4e40 t acpi_os_initialize
-ffffffff823e4ea7 t acpi_os_initialize1
-ffffffff823e4f29 t acpi_request_region
-ffffffff823e4f6d t acpi_backlight
-ffffffff823e4f91 t acpi_wakeup_device_init
-ffffffff823e500d t acpi_nvs_nosave
-ffffffff823e501f t acpi_nvs_nosave_s3
-ffffffff823e5031 t acpi_old_suspend_ordering
-ffffffff823e5043 t acpi_sleep_no_blacklist
-ffffffff823e5055 t acpi_sleep_init
-ffffffff823e5278 t acpi_sleep_dmi_check
-ffffffff823e52ab t init_old_suspend_ordering
-ffffffff823e52bf t init_nvs_nosave
-ffffffff823e52d3 t init_nvs_save_s3
-ffffffff823e52e7 t init_default_s3
-ffffffff823e52fb t acpi_sleep_proc_init
-ffffffff823e5325 t acpi_early_init
-ffffffff823e53f2 t acpi_subsystem_init
-ffffffff823e5439 t __initstub__kmod_acpi__323_1420_acpi_init4
-ffffffff823e5449 t acpi_init
-ffffffff823e5517 t acpi_bus_init
-ffffffff823e584c t acpi_setup_sb_notify_handler
-ffffffff823e58b4 t acpi_bus_init_irq
-ffffffff823e592c t acpi_scan_init
-ffffffff823e5b7f t acpi_get_spcr_uart_addr
-ffffffff823e5bf2 t __acpi_probe_device_table
-ffffffff823e5c9e t acpi_match_madt
-ffffffff823e5cf5 t acpi_early_processor_osc
-ffffffff823e5d4b t acpi_hwp_native_thermal_lvt_osc
-ffffffff823e5e49 t acpi_processor_init
-ffffffff823e5e78 t acpi_processor_check_duplicates
-ffffffff823e5ec3 t acpi_processor_ids_walk
-ffffffff823e5f9b t processor_validated_ids_update
-ffffffff823e604c t acpi_map_madt_entry
-ffffffff823e60ce t acpi_early_processor_set_pdc
-ffffffff823e6125 t early_init_pdc
-ffffffff823e6148 t set_no_mwait
-ffffffff823e6170 t processor_physically_present
-ffffffff823e6244 t acpi_ec_dsdt_probe
-ffffffff823e62e7 t acpi_ec_ecdt_probe
-ffffffff823e6421 t acpi_ec_init
-ffffffff823e64ee t acpi_ec_ecdt_start
-ffffffff823e658f t acpi_pci_root_init
-ffffffff823e65bb t acpi_irq_penalty_init
-ffffffff823e6638 t acpi_irq_isa
-ffffffff823e6652 t acpi_irq_pci
-ffffffff823e6669 t acpi_irq_nobalance_set
-ffffffff823e6683 t acpi_irq_balance_set
-ffffffff823e669d t acpi_pci_link_init
-ffffffff823e66e4 t acpi_irq_penalty_update
-ffffffff823e67a8 t acpi_lpss_init
-ffffffff823e67bf t acpi_apd_init
-ffffffff823e67d6 t acpi_platform_init
-ffffffff823e67f6 t acpi_pnp_init
-ffffffff823e680d t __initstub__kmod_acpi__308_183_acpi_event_init5
-ffffffff823e681f t acpi_event_init
-ffffffff823e6851 t __initstub__kmod_acpi__200_196_ged_driver_init6
-ffffffff823e686a t acpi_gpe_set_masked_gpes
-ffffffff823e68e1 t acpi_gpe_apply_masked_gpes
-ffffffff823e69a7 t acpi_sysfs_init
-ffffffff823e6c25 t acpi_cmos_rtc_init
-ffffffff823e6c3c t acpi_s2idle_setup
-ffffffff823e6c6a t acpi_debugfs_init
-ffffffff823e6c8a t init_prmt
-ffffffff823e6d67 t acpi_parse_prmt
-ffffffff823e6fde t acpi_init_pcc
-ffffffff823e7021 t acpi_tb_parse_root_table
-ffffffff823e71fd t acpi_initialize_tables
-ffffffff823e727a t acpi_reallocate_root_table
-ffffffff823e73d1 t acpi_load_tables
-ffffffff823e7445 t acpi_install_table
-ffffffff823e7493 t acpi_install_physical_table
-ffffffff823e74e3 t acpi_find_root_pointer
-ffffffff823e764b t acpi_terminate
-ffffffff823e7665 t acpi_initialize_subsystem
-ffffffff823e7732 t acpi_enable_subsystem
-ffffffff823e77cf t acpi_initialize_objects
-ffffffff823e77f5 t __initstub__kmod_ac__204_331_acpi_ac_init6
-ffffffff823e7805 t acpi_ac_init
-ffffffff823e784b t ac_only_quirk
-ffffffff823e785f t thinkpad_e530_quirk
-ffffffff823e7873 t __initstub__kmod_button__248_659_acpi_button_driver_init6
-ffffffff823e7883 t acpi_button_driver_init
-ffffffff823e78d5 t __initstub__kmod_fan__204_456_acpi_fan_driver_init6
-ffffffff823e78ee t __initstub__kmod_processor__216_308_acpi_processor_driver_init6
-ffffffff823e78fe t acpi_processor_driver_init
-ffffffff823e79d0 t acpi_container_init
-ffffffff823e79e7 t __initstub__kmod_thermal__220_1222_acpi_thermal_init6
-ffffffff823e79f7 t acpi_thermal_init
-ffffffff823e7a6b t acpi_memory_hotplug_init
-ffffffff823e7a82 t __initstub__kmod_battery__324_1294_acpi_battery_init6
-ffffffff823e7ac2 t acpi_battery_init_async
-ffffffff823e7af7 t battery_bix_broken_package_quirk
-ffffffff823e7b0b t battery_notification_delay_quirk
-ffffffff823e7b1f t battery_ac_is_broken_quirk
-ffffffff823e7b33 t acpi_parse_spcr
-ffffffff823e7eb3 t acpi_int340x_thermal_init
-ffffffff823e7eca t __initstub__kmod_pnp__263_234_pnp_init4
-ffffffff823e7ee1 t pnp_setup_reserve_irq
-ffffffff823e7f4b t pnp_setup_reserve_dma
-ffffffff823e7fb5 t pnp_setup_reserve_io
-ffffffff823e801f t pnp_setup_reserve_mem
-ffffffff823e8089 t __initstub__kmod_pnp__199_113_pnp_system_init5
-ffffffff823e80a0 t __initstub__kmod_pnp__200_314_pnpacpi_init5
-ffffffff823e80b2 t pnpacpi_init
-ffffffff823e811f t pnpacpi_setup
-ffffffff823e8153 t pnpacpi_add_device_handler
-ffffffff823e8190 t pnpacpi_add_device
-ffffffff823e8383 t ispnpidacpi
-ffffffff823e8405 t pnpacpi_parse_resource_option_data
-ffffffff823e84bb t pnpacpi_option_resource
-ffffffff823e8690 t pnpacpi_parse_irq_option
-ffffffff823e872f t pnpacpi_parse_dma_option
-ffffffff823e8798 t pnpacpi_parse_port_option
-ffffffff823e87cd t pnpacpi_parse_mem24_option
-ffffffff823e8802 t pnpacpi_parse_mem32_option
-ffffffff823e8833 t pnpacpi_parse_fixed_mem32_option
-ffffffff823e885d t pnpacpi_parse_address_option
-ffffffff823e893d t pnpacpi_parse_ext_address_option
-ffffffff823e898d t pnpacpi_parse_ext_irq_option
-ffffffff823e8a58 t __initstub__kmod_virtio__264_568_virtio_init1
-ffffffff823e8a81 t __initstub__kmod_virtio_pci__284_647_virtio_pci_driver_init6
-ffffffff823e8aa1 t __initstub__kmod_virtio_balloon__330_1128_virtio_balloon_driver_init6
-ffffffff823e8ab8 t __initstub__kmod_tty_io__275_3518_tty_class_init2
-ffffffff823e8af9 t tty_init
-ffffffff823e8c2e t n_tty_init
-ffffffff823e8c45 t __initstub__kmod_n_null__261_63_n_null_init6
-ffffffff823e8c64 t __initstub__kmod_pty__263_947_pty_init6
-ffffffff823e8c76 t unix98_pty_init
-ffffffff823e8e62 t sysrq_always_enabled_setup
-ffffffff823e8e85 t __initstub__kmod_sysrq__329_1202_sysrq_init6
-ffffffff823e8e97 t sysrq_init
-ffffffff823e8ee6 t vcs_init
-ffffffff823e8f9a t kbd_init
-ffffffff823e9076 t console_map_init
-ffffffff823e90bd t __initstub__kmod_vt__288_3548_con_initcon
-ffffffff823e90cf t con_init
-ffffffff823e9419 t vty_init
-ffffffff823e9564 t __initstub__kmod_vt__294_4325_vtconsole_class_init2
-ffffffff823e9576 t vtconsole_class_init
-ffffffff823e9659 t __initstub__kmod_hvc_console__264_246_hvc_console_initcon
-ffffffff823e9672 t uart_get_console
-ffffffff823e96de t setup_earlycon
-ffffffff823e97ae t register_earlycon
-ffffffff823e9883 t param_setup_earlycon
-ffffffff823e98b8 t parse_options
-ffffffff823e99bd t earlycon_init
-ffffffff823e9a3b t earlycon_print_info
-ffffffff823e9ad1 t __initstub__kmod_8250__267_690_univ8250_console_initcon
-ffffffff823e9ae1 t univ8250_console_init
-ffffffff823e9b0f t early_serial_setup
-ffffffff823e9d2a t serial8250_isa_init_ports
-ffffffff823e9f23 t __initstub__kmod_8250__269_1249_serial8250_init6
-ffffffff823e9f33 t serial8250_init
-ffffffff823ea049 t serial8250_register_ports
-ffffffff823ea163 t early_serial8250_setup
-ffffffff823ea1da t init_port
-ffffffff823ea2d3 t __initstub__kmod_8250_lpss__270_433_lpss8250_pci_driver_init6
-ffffffff823ea2f3 t __initstub__kmod_8250_mid__270_397_mid8250_pci_driver_init6
-ffffffff823ea313 t __initstub__kmod_8250_pericom__272_211_pericom8250_pci_driver_init6
-ffffffff823ea333 t __initstub__kmod_8250_of__267_353_of_platform_serial_driver_init6
-ffffffff823ea34c t __initstub__kmod_ttynull__261_106_ttynull_init6
-ffffffff823ea35c t ttynull_init
-ffffffff823ea449 t __initstub__kmod_mem__329_787_chr_dev_init5
-ffffffff823ea459 t chr_dev_init
-ffffffff823ea513 t parse_trust_cpu
-ffffffff823ea52a t parse_trust_bootloader
-ffffffff823ea541 t random_init_early
-ffffffff823ea65d t arch_get_random_longs_early
-ffffffff823ea696 t random_init
-ffffffff823ea7ce t add_bootloader_randomness
-ffffffff823ea805 t __initstub__kmod_random__373_1642_random_sysctls_init6
-ffffffff823ea82c t __initstub__kmod_misc__261_293_misc_init4
-ffffffff823ea83c t misc_init
-ffffffff823ea906 t virtio_cons_early_init
-ffffffff823ea928 t __initstub__kmod_virtio_console__293_2293_virtio_console_init6
-ffffffff823ea938 t virtio_console_init
-ffffffff823eaa32 t hpet_mmap_enable
-ffffffff823eaaa6 t __initstub__kmod_hpet__267_1042_hpet_init6
-ffffffff823eaab6 t hpet_init
-ffffffff823eab2e t __initstub__kmod_rng_core__244_718_hwrng_modinit5
-ffffffff823eab3e t hwrng_modinit
-ffffffff823eabcd t __initstub__kmod_intel_rng__267_414_intel_rng_mod_init6
-ffffffff823eabdd t intel_rng_mod_init
-ffffffff823ead51 t intel_init_hw_struct
-ffffffff823eae1e t intel_rng_hw_init
-ffffffff823eaedc t __initstub__kmod_amd_rng__265_214_amd_rng_mod_init6
-ffffffff823eaeec t amd_rng_mod_init
-ffffffff823eb0ce t __initstub__kmod_via_rng__190_212_via_rng_mod_init6
-ffffffff823eb0de t via_rng_mod_init
-ffffffff823eb12d t __initstub__kmod_virtio_rng__266_262_virtio_rng_driver_init6
-ffffffff823eb144 t __initstub__kmod_iommu__377_195_iommu_subsys_init4
-ffffffff823eb154 t iommu_subsys_init
-ffffffff823eb294 t iommu_set_def_domain_type
-ffffffff823eb2f3 t iommu_dma_setup
-ffffffff823eb315 t __initstub__kmod_iommu__383_2590_iommu_init1
-ffffffff823eb327 t iommu_init
-ffffffff823eb355 t __initstub__kmod_iommu_sysfs__261_47_iommu_dev_init2
-ffffffff823eb373 t iommu_dma_forcedac_setup
-ffffffff823eb3ab t __initstub__kmod_dma_iommu__285_1712_iommu_dma_init3
-ffffffff823eb3bb t __initstub__kmod_component__240_118_component_debug_init1
-ffffffff823eb3dd t __initstub__kmod_core__391_700_devlink_class_init2
-ffffffff823eb3ed t devlink_class_init
-ffffffff823eb437 t __initstub__kmod_core__396_1269_sync_state_resume_initcall7
-ffffffff823eb449 t fw_devlink_setup
-ffffffff823eb4cf t fw_devlink_strict_setup
-ffffffff823eb4e6 t wait_for_init_devices_probe
-ffffffff823eb52d t devices_init
-ffffffff823eb5e7 t buses_init
-ffffffff823eb649 t deferred_probe_timeout_setup
-ffffffff823eb6a3 t __initstub__kmod_dd__264_371_deferred_probe_initcall7
-ffffffff823eb82a t save_async_options
-ffffffff823eb887 t classes_init
-ffffffff823eb8b8 t __platform_driver_probe
-ffffffff823eb98b t __platform_create_bundle
-ffffffff823eba5a t early_platform_cleanup
-ffffffff823eba65 t platform_bus_init
-ffffffff823ebac7 t cpu_dev_init
-ffffffff823ebb05 t cpu_register_vulnerabilities
-ffffffff823ebb37 t firmware_init
-ffffffff823ebb66 t driver_init
-ffffffff823ebbcc t __initstub__kmod_topology__261_194_topology_sysfs_init6
-ffffffff823ebc0e t container_dev_init
-ffffffff823ebc4d t __initstub__kmod_cacheinfo__200_723_cacheinfo_sysfs_init6
-ffffffff823ebc8f t __initstub__kmod_swnode__201_1167_software_node_init2
-ffffffff823ebcc5 t __initstub__kmod_wakeup__545_1240_wakeup_sources_debugfs_init2
-ffffffff823ebcf5 t __initstub__kmod_wakeup_stats__199_217_wakeup_sources_sysfs_init2
-ffffffff823ebd29 t __initstub__kmod_firmware_class__326_1659_firmware_class_init5
-ffffffff823ebd39 t firmware_class_init
-ffffffff823ebd86 t memory_dev_init
-ffffffff823ebe88 t add_boot_memory_block
-ffffffff823ebf29 t __initstub__kmod_regmap__468_3513_regmap_initcall2
-ffffffff823ebf3b t ramdisk_size
-ffffffff823ebf5b t __initstub__kmod_brd__335_528_brd_init6
-ffffffff823ebf6b t brd_init
-ffffffff823ec077 t __initstub__kmod_loop__358_2273_loop_init6
-ffffffff823ec087 t loop_init
-ffffffff823ec169 t max_loop_setup
-ffffffff823ec188 t __initstub__kmod_virtio_blk__333_1307_virtio_blk_init6
-ffffffff823ec198 t virtio_blk_init
-ffffffff823ec222 t __initstub__kmod_zram__326_2162_zram_init6
-ffffffff823ec232 t zram_init
-ffffffff823ec34a t __initstub__kmod_syscon__199_329_syscon_init2
-ffffffff823ec363 t __initstub__kmod_libnvdimm__345_575_libnvdimm_init4
-ffffffff823ec373 t libnvdimm_init
-ffffffff823ec3e5 t nvdimm_bus_init
-ffffffff823ec4ec t nvdimm_init
-ffffffff823ec50c t nd_region_init
-ffffffff823ec52c t nd_label_init
-ffffffff823ec671 t __initstub__kmod_nd_pmem__338_786_nd_pmem_driver_init6
-ffffffff823ec691 t __initstub__kmod_nd_btt__339_1738_nd_btt_init6
-ffffffff823ec6cb t __initstub__kmod_of_pmem__289_106_of_pmem_region_driver_init6
-ffffffff823ec6e4 t __initstub__kmod_dax__284_593_dax_core_init4
-ffffffff823ec6f4 t dax_core_init
-ffffffff823ec7bd t dax_bus_init
-ffffffff823ec7d4 t __initstub__kmod_dma_buf__269_1667_dma_buf_init4
-ffffffff823ec7e4 t dma_buf_init
-ffffffff823ec8b9 t __initstub__kmod_dma_heap__291_470_dma_heap_init4
-ffffffff823ec97b t loopback_net_init
-ffffffff823eca04 t __initstub__kmod_loopback__529_280_blackhole_netdev_init6
-ffffffff823eca14 t blackhole_netdev_init
-ffffffff823eca92 t __initstub__kmod_uio__263_1086_uio_init6
-ffffffff823ecaa2 t uio_init
-ffffffff823ecbce t __initstub__kmod_serio__203_1048_serio_init4
-ffffffff823ecbde t serio_init
-ffffffff823ecc0f t __initstub__kmod_i8042__351_1670_i8042_init6
-ffffffff823ecc1f t i8042_init
-ffffffff823ecd38 t i8042_platform_init
-ffffffff823ecdc4 t i8042_check_quirks
-ffffffff823ece9f t i8042_pnp_init
-ffffffff823ed1de t __initstub__kmod_serport__268_308_serport_init6
-ffffffff823ed1ee t serport_init
-ffffffff823ed21d t __initstub__kmod_input_core__302_2695_input_init4
-ffffffff823ed22d t input_init
-ffffffff823ed2ba t input_proc_init
-ffffffff823ed34e t __initstub__kmod_rtc_core__240_487_rtc_init4
-ffffffff823ed35e t rtc_init
-ffffffff823ed3b4 t rtc_dev_init
-ffffffff823ed3eb t __initstub__kmod_rtc_cmos__243_1557_cmos_init6
-ffffffff823ed3fb t cmos_init
-ffffffff823ed480 t cmos_platform_probe
-ffffffff823ed4ce t cmos_of_init
-ffffffff823ed52f t __initstub__kmod_power_supply__199_1560_power_supply_class_init4
-ffffffff823ed53f t power_supply_class_init
-ffffffff823ed58c t __initstub__kmod_thermal_sys__381_1510_thermal_init2
-ffffffff823ed59c t thermal_init
-ffffffff823ed646 t thermal_register_governors
-ffffffff823ed706 t thermal_netlink_init
-ffffffff823ed71d t int_pln_enable_setup
-ffffffff823ed734 t __initstub__kmod_therm_throt__294_529_thermal_throttle_init_device6
-ffffffff823ed744 t thermal_throttle_init_device
-ffffffff823ed798 t therm_lvt_init
-ffffffff823ed7e6 t __initstub__kmod_watchdog__372_479_watchdog_init4s
-ffffffff823ed803 t watchdog_deferred_registration
-ffffffff823ed89d t watchdog_dev_init
-ffffffff823ed95d t __initstub__kmod_dm_mod__297_300_dm_init_init7
-ffffffff823ed96d t dm_init_init
-ffffffff823eda7f t dm_parse_devices
-ffffffff823edb61 t dm_setup_cleanup
-ffffffff823edc28 t dm_parse_device_entry
-ffffffff823edd7b t str_field_delimit
-ffffffff823eddd8 t dm_parse_table
-ffffffff823ede46 t dm_parse_table_entry
-ffffffff823ee000 t __initstub__kmod_dm_mod__496_3395_dm_init6
-ffffffff823ee010 t dm_init
-ffffffff823ee07e t local_init
-ffffffff823ee116 t dm_target_init
-ffffffff823ee12d t dm_linear_init
-ffffffff823ee15e t dm_stripe_init
-ffffffff823ee18d t dm_interface_init
-ffffffff823ee1e2 t dm_early_create
-ffffffff823ee47a t dm_io_init
-ffffffff823ee4bf t dm_kcopyd_init
-ffffffff823ee55c t dm_statistics_init
-ffffffff823ee57e t __initstub__kmod_dm_bufio__311_2145_dm_bufio_init6
-ffffffff823ee58e t dm_bufio_init
-ffffffff823ee83a t __initstub__kmod_dm_crypt__426_3674_dm_crypt_init6
-ffffffff823ee84a t dm_crypt_init
-ffffffff823ee87b t __initstub__kmod_dm_verity__310_1515_dm_verity_init6
-ffffffff823ee88b t dm_verity_init
-ffffffff823ee8bc t __initstub__kmod_dm_user__315_1282_dm_user_init6
-ffffffff823ee8cc t dm_user_init
-ffffffff823ee8fd t edac_mc_sysfs_init
-ffffffff823ee97c t __initstub__kmod_edac_core__265_163_edac_init4
-ffffffff823ee98c t edac_init
-ffffffff823eea35 t __initstub__kmod_cpufreq__545_2970_cpufreq_core_init1
-ffffffff823eea45 t cpufreq_core_init
-ffffffff823eeaa6 t __initstub__kmod_cpufreq_performance__213_44_cpufreq_gov_performance_init1
-ffffffff823eeabd t __initstub__kmod_cpufreq_powersave__213_38_cpufreq_gov_powersave_init1
-ffffffff823eead4 t __initstub__kmod_cpufreq_conservative__234_343_CPU_FREQ_GOV_CONSERVATIVE_init1
-ffffffff823eeaeb t __initstub__kmod_intel_pstate__560_3496_intel_pstate_init6
-ffffffff823eeafb t intel_pstate_init
-ffffffff823eedd3 t intel_pstate_setup
-ffffffff823eeecf t copy_cpu_funcs
-ffffffff823eef31 t intel_pstate_msrs_not_valid
-ffffffff823eef87 t intel_pstate_platform_pwr_mgmt_exists
-ffffffff823ef027 t intel_pstate_sysfs_expose_params
-ffffffff823ef134 t intel_pstate_sysfs_remove
-ffffffff823ef20a t intel_pstate_no_acpi_pss
-ffffffff823ef2e9 t intel_pstate_no_acpi_pcch
-ffffffff823ef354 t intel_pstate_has_acpi_ppc
-ffffffff823ef3d7 t __initstub__kmod_cpuidle__553_797_cpuidle_init1
-ffffffff823ef405 t __initstub__kmod_menu__188_579_init_menu2
-ffffffff823ef41c t __initstub__kmod_cpuidle_haltpoll__199_143_haltpoll_init6
-ffffffff823ef42c t haltpoll_init
-ffffffff823ef50d t __initstub__kmod_dmi_scan__261_810_dmi_init4
-ffffffff823ef51d t dmi_init
-ffffffff823ef64f t dmi_setup
-ffffffff823ef682 t dmi_scan_machine
-ffffffff823ef8a0 t dmi_memdev_walk
-ffffffff823ef8ec t dmi_smbios3_present
-ffffffff823ef9d2 t dmi_present
-ffffffff823efb52 t dmi_walk_early
-ffffffff823efc67 t dmi_decode
-ffffffff823efe94 t dmi_format_ids
-ffffffff823effd1 t dmi_save_ident
-ffffffff823f000d t dmi_save_release
-ffffffff823f008a t dmi_save_uuid
-ffffffff823f0137 t dmi_save_type
-ffffffff823f018f t dmi_save_system_slot
-ffffffff823f01e5 t dmi_save_devices
-ffffffff823f0253 t dmi_save_oem_strings_devices
-ffffffff823f030e t dmi_save_ipmi_device
-ffffffff823f03a4 t dmi_save_extended_devices
-ffffffff823f0402 t dmi_string
-ffffffff823f0457 t dmi_string_nosave
-ffffffff823f04b7 t dmi_save_dev_pciaddr
-ffffffff823f0596 t dmi_save_one_device
-ffffffff823f0631 t print_filtered
-ffffffff823f06a7 t count_mem_devices
-ffffffff823f06bd t save_mem_devices
-ffffffff823f07a9 t __initstub__kmod_dmi_id__199_259_dmi_id_init3
-ffffffff823f07b9 t dmi_id_init
-ffffffff823f0888 t dmi_id_init_attr_table
-ffffffff823f0b51 t firmware_map_add_early
-ffffffff823f0baf t __initstub__kmod_memmap__261_418_firmware_memmap_init7
-ffffffff823f0be3 t setup_noefi
-ffffffff823f0bf7 t parse_efi_cmdline
-ffffffff823f0c8a t efivar_ssdt_setup
-ffffffff823f0cde t __initstub__kmod_efi__269_433_efisubsys_init4
-ffffffff823f0cee t efisubsys_init
-ffffffff823f0fb8 t efi_find_mirror
-ffffffff823f1067 t efi_mem_desc_end
-ffffffff823f107e t efi_mem_reserve
-ffffffff823f10c1 t efi_config_parse_tables
-ffffffff823f139a t match_config_table
-ffffffff823f142c t efi_systab_check_header
-ffffffff823f147e t efi_systab_report_header
-ffffffff823f1566 t map_fw_vendor
-ffffffff823f1596 t efi_md_typeattr_format
-ffffffff823f175d t efi_memreserve_map_root
-ffffffff823f17a3 t __initstub__kmod_efi__273_1039_efi_memreserve_root_initearly
-ffffffff823f17d0 t efivar_ssdt_load
-ffffffff823f19d5 t efi_debugfs_init
-ffffffff823f1b85 t __initstub__kmod_reboot__240_78_efi_shutdown_init7
-ffffffff823f1b95 t efi_shutdown_init
-ffffffff823f1be8 t efi_memattr_init
-ffffffff823f1c86 t efi_memattr_apply_permissions
-ffffffff823f1f73 t efi_tpm_eventlog_init
-ffffffff823f20d0 t tpm2_calc_event_log_size
-ffffffff823f231f t __efi_memmap_free
-ffffffff823f237a t efi_memmap_alloc
-ffffffff823f2416 t __efi_memmap_alloc_late
-ffffffff823f2460 t efi_memmap_init_early
-ffffffff823f2485 t __efi_memmap_init
-ffffffff823f256c t efi_memmap_unmap
-ffffffff823f25da t efi_memmap_init_late
-ffffffff823f2658 t efi_memmap_install
-ffffffff823f2675 t efi_memmap_split_count
-ffffffff823f26d4 t efi_memmap_insert
-ffffffff823f2939 t efi_esrt_init
-ffffffff823f2b2c t __initstub__kmod_esrt__261_434_esrt_sysfs_init6
-ffffffff823f2b3c t esrt_sysfs_init
-ffffffff823f2ccd t register_entries
-ffffffff823f2e32 t efi_runtime_map_init
-ffffffff823f3022 t __initstub__kmod_earlycon__264_41_efi_earlycon_remap_fbearly
-ffffffff823f3032 t efi_earlycon_remap_fb
-ffffffff823f308a t __initstub__kmod_earlycon__266_50_efi_earlycon_unmap_fb7
-ffffffff823f309c t efi_earlycon_unmap_fb
-ffffffff823f30d6 t efi_earlycon_setup
-ffffffff823f31e4 t acpi_pm_good_setup
-ffffffff823f31fb t __initstub__kmod_acpi_pm__274_220_init_acpi_pm_clocksource5
-ffffffff823f320b t init_acpi_pm_clocksource
-ffffffff823f32ef t parse_pmtmr
-ffffffff823f3374 t clockevent_i8253_init
-ffffffff823f33d6 t of_core_init
-ffffffff823f34ae t __initstub__kmod_platform__319_604_of_platform_default_populate_init3s
-ffffffff823f34be t of_platform_default_populate_init
-ffffffff823f357c t __initstub__kmod_platform__321_611_of_platform_sync_state_init7s
-ffffffff823f358e t of_dma_get_max_cpu_address
-ffffffff823f36c6 t of_irq_init
-ffffffff823f3aea t __initstub__kmod_pcc__200_758_pcc_init2
-ffffffff823f3afa t pcc_init
-ffffffff823f3b5b t acpi_pcc_probe
-ffffffff823f3c7b t __initstub__kmod_ras__331_38_ras_init4
-ffffffff823f3ca0 t parse_ras_param
-ffffffff823f3cb0 t ras_add_daemon_trace
-ffffffff823f3cfe t ras_debugfs_init
-ffffffff823f3d1e t __initstub__kmod_nvmem_core__244_1952_nvmem_init4
-ffffffff823f3d35 t __initstub__kmod_socket__610_3209_sock_init1
-ffffffff823f3d45 t sock_init
-ffffffff823f3dd4 t __initstub__kmod_sock__767_3772_net_inuse_init1
-ffffffff823f3de6 t net_inuse_init
-ffffffff823f3e0d t __initstub__kmod_sock__771_4089_proto_init4
-ffffffff823f3e24 t sock_inuse_init_net
-ffffffff823f3e64 t proto_init_net
-ffffffff823f3ea3 t skb_init
-ffffffff823f3f36 t __initstub__kmod_net_namespace__499_385_net_defaults_init1
-ffffffff823f3f48 t net_defaults_init
-ffffffff823f3f6f t net_ns_init
-ffffffff823f403c t setup_net
-ffffffff823f439f t net_defaults_init_net
-ffffffff823f43bd t net_ns_net_init
-ffffffff823f43d9 t __initstub__kmod_flow_dissector__677_1961_init_default_flow_dissectors1
-ffffffff823f43eb t init_default_flow_dissectors
-ffffffff823f443e t fb_tunnels_only_for_init_net_sysctl_setup
-ffffffff823f4492 t __initstub__kmod_sysctl_net_core__600_687_sysctl_core_init5
-ffffffff823f44a2 t sysctl_core_init
-ffffffff823f44d3 t sysctl_core_net_init
-ffffffff823f4511 t __initstub__kmod_dev__1184_11438_net_dev_init4
-ffffffff823f4521 t net_dev_init
-ffffffff823f47b2 t netdev_init
-ffffffff823f4884 t __initstub__kmod_neighbour__651_3906_neigh_init4
-ffffffff823f4896 t neigh_init
-ffffffff823f491e t rtnetlink_init
-ffffffff823f4b11 t rtnetlink_net_init
-ffffffff823f4b8a t __initstub__kmod_sock_diag__551_340_sock_diag_init6
-ffffffff823f4b9a t sock_diag_init
-ffffffff823f4bcf t diag_net_init
-ffffffff823f4c4d t __initstub__kmod_fib_notifier__365_199_fib_notifier_init4
-ffffffff823f4c64 t fib_notifier_net_init
-ffffffff823f4cac t netdev_kobject_init
-ffffffff823f4cd6 t dev_proc_init
-ffffffff823f4cfd t dev_proc_net_init
-ffffffff823f4dcb t dev_mc_net_init
-ffffffff823f4e07 t __initstub__kmod_fib_rules__620_1319_fib_rules_init4
-ffffffff823f4e17 t fib_rules_init
-ffffffff823f4ee6 t fib_rules_net_init
-ffffffff823f4f0f t __initstub__kmod_netprio_cgroup__531_295_init_cgroup_netprio4
-ffffffff823f4f28 t __initstub__kmod_eth__576_492_eth_offload_init5
-ffffffff823f4f41 t __initstub__kmod_af_netlink__648_2962_netlink_proto_init1
-ffffffff823f4f51 t netlink_proto_init
-ffffffff823f5055 t netlink_add_usersock_entry
-ffffffff823f510c t netlink_net_init
-ffffffff823f514b t netlink_tap_init_net
-ffffffff823f519e t __initstub__kmod_genetlink__500_1498_genl_init1
-ffffffff823f51b0 t genl_init
-ffffffff823f51e9 t genl_pernet_init
-ffffffff823f5264 t __initstub__kmod_ethtool_nl__494_1077_ethnl_init4
-ffffffff823f5274 t ethnl_init
-ffffffff823f52ce t ip_rt_init
-ffffffff823f54cd t ip_static_sysctl_init
-ffffffff823f54f2 t ip_rt_do_proc_init
-ffffffff823f5579 t sysctl_route_net_init
-ffffffff823f55be t netns_ip_rt_init
-ffffffff823f55e6 t rt_genid_init
-ffffffff823f560e t ipv4_inetpeer_init
-ffffffff823f565a t inet_initpeers
-ffffffff823f56ce t ipfrag_init
-ffffffff823f5767 t ipv4_frags_init_net
-ffffffff823f57f4 t ip4_frags_ns_ctl_register
-ffffffff823f5870 t ip_init
-ffffffff823f588a t inet_hashinfo2_init
-ffffffff823f592e t set_thash_entries
-ffffffff823f595d t tcp_init
-ffffffff823f5c67 t tcp_tasklet_init
-ffffffff823f5cd3 t tcp4_proc_init
-ffffffff823f5cea t tcp_v4_init
-ffffffff823f5dcc t tcp4_proc_init_net
-ffffffff823f5e10 t tcp_sk_init
-ffffffff823f5fe9 t __initstub__kmod_tcp_cong__698_266_tcp_congestion_default7
-ffffffff823f6007 t set_tcpmhash_entries
-ffffffff823f6036 t tcp_metrics_init
-ffffffff823f6079 t tcp_net_metrics_init
-ffffffff823f6102 t tcpv4_offload_init
-ffffffff823f611e t raw_proc_init
-ffffffff823f6135 t raw_proc_exit
-ffffffff823f6164 t raw_init
-ffffffff823f618b t raw_init_net
-ffffffff823f61cf t raw_sysctl_init
-ffffffff823f61dc t udp4_proc_init
-ffffffff823f61f3 t set_uhash_entries
-ffffffff823f623d t udp_table_init
-ffffffff823f6307 t udp_init
-ffffffff823f63e9 t udp4_proc_init_net
-ffffffff823f642d t udp_sysctl_init
-ffffffff823f644b t udplite4_register
-ffffffff823f64de t udplite4_proc_init_net
-ffffffff823f6522 t udpv4_offload_init
-ffffffff823f653e t arp_init
-ffffffff823f658b t arp_net_init
-ffffffff823f65cd t icmp_init
-ffffffff823f66b0 t icmp_sk_init
-ffffffff823f66df t devinet_init
-ffffffff823f67ac t devinet_init_net
-ffffffff823f6916 t __initstub__kmod_af_inet__763_1923_ipv4_offload_init5
-ffffffff823f6928 t ipv4_offload_init
-ffffffff823f69bd t __initstub__kmod_af_inet__766_2056_inet_init5
-ffffffff823f69cd t inet_init
-ffffffff823f6c1b t ipv4_proc_init
-ffffffff823f6c91 t ipv4_mib_init_net
-ffffffff823f6e6a t inet_init_net
-ffffffff823f6ef6 t igmp_mc_init
-ffffffff823f6f51 t igmp_net_init
-ffffffff823f7028 t ip_fib_init
-ffffffff823f70b6 t fib_net_init
-ffffffff823f717f t ip_fib_net_init
-ffffffff823f71f9 t fib_trie_init
-ffffffff823f725c t fib_proc_init
-ffffffff823f732d t fib4_notifier_init
-ffffffff823f7367 t __initstub__kmod_inet_fragment__581_216_inet_frag_wq_init0
-ffffffff823f7379 t inet_frag_wq_init
-ffffffff823f73b9 t ping_proc_init
-ffffffff823f73d0 t ping_init
-ffffffff823f7404 t ping_v4_proc_init_net
-ffffffff823f7446 t ip_tunnel_core_init
-ffffffff823f7451 t __initstub__kmod_gre_offload__613_286_gre_offload_init6
-ffffffff823f7461 t gre_offload_init
-ffffffff823f74b3 t __initstub__kmod_nexthop__685_3789_nexthop_init4
-ffffffff823f74c5 t nexthop_init
-ffffffff823f75be t nexthop_net_init
-ffffffff823f7629 t __initstub__kmod_sysctl_net_ipv4__623_1470_sysctl_ipv4_init6
-ffffffff823f7639 t sysctl_ipv4_init
-ffffffff823f768f t ipv4_sysctl_init_net
-ffffffff823f7705 t ip_misc_proc_init
-ffffffff823f771c t ip_proc_init_net
-ffffffff823f77dd t fib4_rules_init
-ffffffff823f788d t __initstub__kmod_ipip__619_658_ipip_init6
-ffffffff823f789d t ipip_init
-ffffffff823f7927 t ipip_init_net
-ffffffff823f794b t __initstub__kmod_gre__621_216_gre_init6
-ffffffff823f795b t gre_init
-ffffffff823f799e t __initstub__kmod_ip_gre__625_1789_ipgre_init6
-ffffffff823f79ae t ipgre_init
-ffffffff823f7ac0 t ipgre_tap_init_net
-ffffffff823f7ae4 t ipgre_init_net
-ffffffff823f7b03 t erspan_init_net
-ffffffff823f7b27 t __initstub__kmod_ip_vti__617_722_vti_init6
-ffffffff823f7b37 t vti_init
-ffffffff823f7c3c t vti_init_net
-ffffffff823f7ca7 t __initstub__kmod_esp4__647_1246_esp4_init6
-ffffffff823f7cb7 t esp4_init
-ffffffff823f7d30 t __initstub__kmod_tunnel4__568_295_tunnel4_init6
-ffffffff823f7d40 t tunnel4_init
-ffffffff823f7da4 t __initstub__kmod_inet_diag__634_1481_inet_diag_init6
-ffffffff823f7db4 t inet_diag_init
-ffffffff823f7e4f t __initstub__kmod_tcp_diag__627_247_tcp_diag_init6
-ffffffff823f7e66 t __initstub__kmod_udp_diag__535_296_udp_diag_init6
-ffffffff823f7e76 t udp_diag_init
-ffffffff823f7eb9 t __initstub__kmod_tcp_cubic__649_551_cubictcp_register6
-ffffffff823f7ec9 t cubictcp_register
-ffffffff823f7f3a t xfrm4_init
-ffffffff823f7f7a t xfrm4_net_init
-ffffffff823f7ffe t xfrm4_state_init
-ffffffff823f8015 t xfrm4_protocol_init
-ffffffff823f802c t xfrm_init
-ffffffff823f8054 t xfrm_net_init
-ffffffff823f8125 t xfrm_statistics_init
-ffffffff823f8181 t xfrm_policy_init
-ffffffff823f834d t xfrm_state_init
-ffffffff823f848c t xfrm_input_init
-ffffffff823f8543 t xfrm_sysctl_init
-ffffffff823f8616 t xfrm_dev_init
-ffffffff823f862d t xfrm_proc_init
-ffffffff823f8669 t __initstub__kmod_xfrm_user__559_3816_xfrm_user_init6
-ffffffff823f8679 t xfrm_user_init
-ffffffff823f86ae t xfrm_user_net_init
-ffffffff823f8731 t __initstub__kmod_xfrm_interface__720_1192_xfrmi_init6
-ffffffff823f8741 t xfrmi_init
-ffffffff823f87ef t xfrmi4_init
-ffffffff823f8873 t xfrmi6_init
-ffffffff823f894b t __initstub__kmod_unix__570_3782_af_unix_init5
-ffffffff823f895b t af_unix_init
-ffffffff823f8a0e t unix_net_init
-ffffffff823f8b04 t unix_sysctl_register
-ffffffff823f8b42 t __initstub__kmod_ipv6__728_1328_inet6_init6
-ffffffff823f8b52 t inet6_init
-ffffffff823f8f18 t inet6_net_init
-ffffffff823f908d t ipv6_init_mibs
-ffffffff823f91ce t ac6_proc_init
-ffffffff823f9210 t ipv6_anycast_init
-ffffffff823f9230 t if6_proc_init
-ffffffff823f9247 t addrconf_init
-ffffffff823f949c t if6_proc_net_init
-ffffffff823f94de t addrconf_init_net
-ffffffff823f96c1 t ipv6_addr_label_init
-ffffffff823f96d8 t ipv6_addr_label_rtnl_register
-ffffffff823f9752 t ip6addrlbl_net_init
-ffffffff823f9835 t ipv6_route_sysctl_init
-ffffffff823f990d t ip6_route_init_special_entries
-ffffffff823f9a89 t ip6_route_init
-ffffffff823f9cef t ipv6_inetpeer_init
-ffffffff823f9d3b t ip6_route_net_init
-ffffffff823f9f6d t ip6_route_net_init_late
-ffffffff823f9ff1 t fib6_init
-ffffffff823fa0b3 t fib6_net_init
-ffffffff823fa26f t fib6_tables_init
-ffffffff823fa2e0 t ndisc_init
-ffffffff823fa35b t ndisc_late_init
-ffffffff823fa372 t ndisc_net_init
-ffffffff823fa437 t udp6_proc_init
-ffffffff823fa47b t udpv6_init
-ffffffff823fa4c8 t udplitev6_init
-ffffffff823fa515 t udplite6_proc_init
-ffffffff823fa52c t udplite6_proc_init_net
-ffffffff823fa570 t raw6_proc_init
-ffffffff823fa587 t rawv6_init
-ffffffff823fa59e t raw6_init_net
-ffffffff823fa5e2 t icmpv6_init
-ffffffff823fa6ee t ipv6_icmp_sysctl_init
-ffffffff823fa759 t igmp6_init
-ffffffff823fa7cb t igmp6_late_init
-ffffffff823fa7e2 t igmp6_net_init
-ffffffff823fa8ef t igmp6_proc_init
-ffffffff823fa97c t ipv6_frag_init
-ffffffff823faa6c t ipv6_frags_init_net
-ffffffff823faaeb t ip6_frags_ns_sysctl_register
-ffffffff823fab5c t tcp6_proc_init
-ffffffff823faba0 t tcpv6_init
-ffffffff823fac0b t tcpv6_net_init
-ffffffff823fac34 t pingv6_init
-ffffffff823fac9d t ping_v6_proc_init_net
-ffffffff823facdf t ipv6_exthdrs_init
-ffffffff823fad59 t ip6_flowlabel_proc_init
-ffffffff823fad9b t seg6_init
-ffffffff823fadea t seg6_net_init
-ffffffff823fae6f t fib6_notifier_init
-ffffffff823fae9f t ioam6_init
-ffffffff823faf06 t ioam6_net_init
-ffffffff823fafc3 t ipv6_sysctl_net_init
-ffffffff823fb0f0 t xfrm6_init
-ffffffff823fb174 t xfrm6_net_init
-ffffffff823fb1f8 t xfrm6_state_init
-ffffffff823fb20f t xfrm6_protocol_init
-ffffffff823fb226 t fib6_rules_init
-ffffffff823fb23d t fib6_rules_net_init
-ffffffff823fb2cf t ipv6_misc_proc_init
-ffffffff823fb2e6 t ipv6_proc_init_net
-ffffffff823fb39f t __initstub__kmod_esp6__707_1299_esp6_init6
-ffffffff823fb3af t esp6_init
-ffffffff823fb428 t __initstub__kmod_ipcomp6__608_216_ipcomp6_init6
-ffffffff823fb438 t ipcomp6_init
-ffffffff823fb4b1 t __initstub__kmod_xfrm6_tunnel__555_402_xfrm6_tunnel_init6
-ffffffff823fb4c1 t xfrm6_tunnel_init
-ffffffff823fb5c0 t xfrm6_tunnel_net_init
-ffffffff823fb601 t __initstub__kmod_tunnel6__580_303_tunnel6_init6
-ffffffff823fb611 t tunnel6_init
-ffffffff823fb6cc t __initstub__kmod_mip6__550_405_mip6_init6
-ffffffff823fb6dc t mip6_init
-ffffffff823fb797 t __initstub__kmod_ip6_vti__738_1329_vti6_tunnel_init6
-ffffffff823fb7a7 t vti6_tunnel_init
-ffffffff823fb911 t vti6_init_net
-ffffffff823fb9da t vti6_fb_tnl_dev_init
-ffffffff823fba23 t __initstub__kmod_sit__663_1955_sit_init6
-ffffffff823fba33 t sit_init
-ffffffff823fbafa t sit_init_net
-ffffffff823fbbfa t ipip6_fb_tunnel_init
-ffffffff823fbc4c t __initstub__kmod_ip6_tunnel__760_2366_ip6_tunnel_init6
-ffffffff823fbc5c t ip6_tunnel_init
-ffffffff823fbd37 t ip6_tnl_init_net
-ffffffff823fbe0e t ip6_fb_tnl_dev_init
-ffffffff823fbe57 t __initstub__kmod_ip6_gre__674_2424_ip6gre_init6
-ffffffff823fbe67 t ip6gre_init
-ffffffff823fbf31 t ip6gre_init_net
-ffffffff823fc032 t __initstub__kmod_ip6_offload__633_488_ipv6_offload_init5
-ffffffff823fc044 t ipv6_offload_init
-ffffffff823fc0d6 t tcpv6_offload_init
-ffffffff823fc0f2 t ipv6_exthdrs_offload_init
-ffffffff823fc144 t __initstub__kmod_af_packet__658_4761_packet_init6
-ffffffff823fc154 t packet_init
-ffffffff823fc1f5 t packet_net_init
-ffffffff823fc259 t __initstub__kmod_af_key__561_3923_ipsec_pfkey_init6
-ffffffff823fc269 t ipsec_pfkey_init
-ffffffff823fc2f0 t pfkey_net_init
-ffffffff823fc360 t net_sysctl_init
-ffffffff823fc3c9 t sysctl_net_init
-ffffffff823fc3f0 t __initstub__kmod_vsock__494_2450_vsock_init6
-ffffffff823fc400 t vsock_init
-ffffffff823fc4ea t __initstub__kmod_vsock_diag__493_174_vsock_diag_init6
-ffffffff823fc501 t __initstub__kmod_vmw_vsock_virtio_transport__515_845_virtio_vsock_init6
-ffffffff823fc511 t virtio_vsock_init
-ffffffff823fc588 t __initstub__kmod_vsock_loopback__495_187_vsock_loopback_init6
-ffffffff823fc598 t vsock_loopback_init
-ffffffff823fc649 t __initstub__kmod_i386__265_373_pcibios_assign_resources5
-ffffffff823fc65b t pcibios_assign_resources
-ffffffff823fc69f t pcibios_resource_survey
-ffffffff823fc727 t pcibios_fw_addr_list_del
-ffffffff823fc7cf t __initstub__kmod_init__265_51_pci_arch_init3
-ffffffff823fc7e1 t pci_arch_init
-ffffffff823fc87a t pci_mmcfg_arch_init
-ffffffff823fc8c6 t pci_mmcfg_arch_free
-ffffffff823fc915 t pci_direct_init
-ffffffff823fc97f t pci_direct_probe
-ffffffff823fcaa5 t pci_check_type1
-ffffffff823fcb34 t pci_check_type2
-ffffffff823fcbc2 t pci_sanity_check
-ffffffff823fcca6 t pci_mmconfig_add
-ffffffff823fcd20 t pci_mmcfg_early_init
-ffffffff823fcd65 t pci_mmcfg_check_hostbridge
-ffffffff823fce57 t pci_parse_mcfg
-ffffffff823fcf17 t __pci_mmcfg_init
-ffffffff823fcf87 t pci_mmcfg_late_init
-ffffffff823fcfc6 t __initstub__kmod_mmconfig_shared__269_718_pci_mmcfg_late_insert_resources7
-ffffffff823fcfd6 t pci_mmcfg_late_insert_resources
-ffffffff823fd033 t free_all_mmcfg
-ffffffff823fd06c t pci_mmcfg_check_end_bus_number
-ffffffff823fd0b8 t pci_mmconfig_remove
-ffffffff823fd10f t pci_mmcfg_e7520
-ffffffff823fd1b5 t pci_mmcfg_intel_945
-ffffffff823fd278 t pci_mmcfg_amd_fam10h
-ffffffff823fd363 t pci_mmcfg_nvidia_mcp55
-ffffffff823fd4a8 t acpi_mcfg_check_entry
-ffffffff823fd52d t pci_mmcfg_reject_broken
-ffffffff823fd57b t pci_acpi_crs_quirks
-ffffffff823fd68a t pci_acpi_init
-ffffffff823fd736 t set_use_crs
-ffffffff823fd74a t set_nouse_crs
-ffffffff823fd75e t set_ignore_seg
-ffffffff823fd782 t set_no_e820
-ffffffff823fd7a6 t pci_legacy_init
-ffffffff823fd7db t __initstub__kmod_legacy__265_77_pci_subsys_init4
-ffffffff823fd7eb t pci_subsys_init
-ffffffff823fd8fd t pcibios_fixup_irqs
-ffffffff823fda1e t pcibios_irq_init
-ffffffff823fdb46 t pirq_find_routing_table
-ffffffff823fdd10 t pirq_peer_trick
-ffffffff823fddcf t pirq_find_router
-ffffffff823fde96 t fix_broken_hp_bios_irq9
-ffffffff823fdec5 t fix_acer_tm360_irqrouting
-ffffffff823fdef4 t pirq_try_router
-ffffffff823fdf79 t intel_router_probe
-ffffffff823fe218 t ali_router_probe
-ffffffff823fe27a t ite_router_probe
-ffffffff823fe2ab t via_router_probe
-ffffffff823fe351 t opti_router_probe
-ffffffff823fe382 t sis_router_probe
-ffffffff823fe3d8 t cyrix_router_probe
-ffffffff823fe407 t vlsi_router_probe
-ffffffff823fe438 t serverworks_router_probe
-ffffffff823fe46c t amd_router_probe
-ffffffff823fe4c2 t pico_router_probe
-ffffffff823fe505 t dmi_check_skip_isa_align
-ffffffff823fe51c t dmi_check_pciprobe
-ffffffff823fe533 t pcibios_set_cache_line_size
-ffffffff823fe57b t pcibios_init
-ffffffff823fe5be t pcibios_setup
-ffffffff823fe990 t can_skip_ioresource_align
-ffffffff823fe9b4 t set_bf_sort
-ffffffff823fe9e6 t find_sort_method
-ffffffff823fea02 t set_scan_all
-ffffffff823fea26 t read_dmi_type_b1
-ffffffff823fea6a t alloc_pci_root_info
-ffffffff823feb38 t __initstub__kmod_amd_bus__265_404_amd_postcore_init2
-ffffffff823feb4a t amd_postcore_init
-ffffffff823feb72 t early_root_info_init
-ffffffff823ff296 t pci_io_ecs_init
-ffffffff823ff2ff t pci_enable_pci_io_ecs
-ffffffff823ff3d2 t init_vmlinux_build_id
-ffffffff823ff400 t decompress_method
-ffffffff823ff477 t __gunzip
-ffffffff823ff7df t nofill
-ffffffff823ff7f1 t gunzip
-ffffffff823ff80f t unlz4
-ffffffff823ffb77 t unzstd
-ffffffff823ffb8e t __unzstd
-ffffffff823fff60 t decompress_single
-ffffffff82400050 t handle_zstd_error
-ffffffff824000c2 t dump_stack_set_arch_desc
-ffffffff82400147 t __initstub__kmod_kobject_uevent__492_814_kobject_uevent_init2
-ffffffff8240015e t maple_tree_init
-ffffffff82400197 t radix_tree_init
-ffffffff82400205 t debug_boot_weak_hash_enable
-ffffffff82400225 t __initstub__kmod_vsprintf__531_777_vsprintf_init_hashval4
-ffffffff82400237 t no_hash_pointers_enable
-ffffffff824002f5 t use_tsc_delay
-ffffffff8240031b t use_tpause_delay
-ffffffff8240033c T _einittext
-ffffffff82404000 D early_top_pgt
-ffffffff82406000 D early_dynamic_pgts
-ffffffff82446000 D early_recursion_flag
-ffffffff82447000 D real_mode_blob
-ffffffff8244d248 D real_mode_blob_end
-ffffffff8244d248 D real_mode_relocs
-ffffffff8244d2e0 d next_early_pgt
-ffffffff8244d2f0 d kthreadd_done
-ffffffff8244d310 d parse_early_param.done
-ffffffff8244d320 d parse_early_param.tmp_cmdline
-ffffffff8244db20 d late_time_init
-ffffffff8244db30 d setup_boot_config.tmp_cmdline
-ffffffff8244e330 d xbc_namebuf
-ffffffff8244e430 d blacklisted_initcalls
-ffffffff8244e440 d boot_command_line
-ffffffff8244ec40 d initcall_level_names
-ffffffff8244ec80 d initcall_levels
-ffffffff8244ecd0 d root_fs_names
-ffffffff8244ecd8 d root_mount_data
-ffffffff8244ece0 d root_device_name
-ffffffff8244ece8 d root_delay
-ffffffff8244ecf0 d saved_root_name
-ffffffff8244ed30 d rd_image_start
-ffffffff8244ed38 d mount_initrd
-ffffffff8244ed40 d phys_initrd_start
-ffffffff8244ed48 d phys_initrd_size
-ffffffff8244ed50 d do_retain_initrd
-ffffffff8244ed51 d initramfs_async
-ffffffff8244ed60 d unpack_to_rootfs.msg_buf
-ffffffff8244eda0 d header_buf
-ffffffff8244eda8 d symlink_buf
-ffffffff8244edb0 d name_buf
-ffffffff8244edb8 d state
-ffffffff8244edc0 d this_header
-ffffffff8244edc8 d message
-ffffffff8244edd0 d my_inptr
-ffffffff8244edd8 d byte_count
-ffffffff8244ede0 d victim
-ffffffff8244ede8 d collected
-ffffffff8244edf0 d collect
-ffffffff8244edf8 d remains
-ffffffff8244ee00 d next_state
-ffffffff8244ee04 d csum_present
-ffffffff8244ee08 d name_len
-ffffffff8244ee10 d body_len
-ffffffff8244ee18 d next_header
-ffffffff8244ee20 d mode
-ffffffff8244ee28 d ino
-ffffffff8244ee30 d uid
-ffffffff8244ee34 d gid
-ffffffff8244ee38 d nlink
-ffffffff8244ee40 d mtime
-ffffffff8244ee48 d major
-ffffffff8244ee50 d minor
-ffffffff8244ee58 d rdev
-ffffffff8244ee5c d hdr_csum
-ffffffff8244ee60 d wfile
-ffffffff8244ee68 d wfile_pos
-ffffffff8244ee70 d io_csum
-ffffffff8244ee80 d head
-ffffffff8244ef80 d dir_list
-ffffffff8244ef90 d actions
-ffffffff8244efd0 d intel_pmu_init.__quirk
-ffffffff8244efe0 d intel_pmu_init.__quirk.3
-ffffffff8244eff0 d intel_pmu_init.__quirk.6
-ffffffff8244f000 d intel_pmu_init.__quirk.24
-ffffffff8244f010 d intel_pmu_init.__quirk.25
-ffffffff8244f020 d intel_pmu_init.__quirk.28
-ffffffff8244f030 d intel_pmu_init.__quirk.31
-ffffffff8244f040 d intel_pmu_init.__quirk.32
-ffffffff8244f050 d intel_pmu_init.__quirk.35
-ffffffff8244f060 d intel_pmu_init.__quirk.40
-ffffffff8244f070 d p6_pmu_init.__quirk
-ffffffff8244f080 d zhaoxin_pmu_init.__quirk
-ffffffff8244f090 d idt_setup_done
-ffffffff8244f0a0 d builtin_cmdline
-ffffffff8244f8a0 d command_line
-ffffffff824500a0 d x86_init
-ffffffff82450198 d sbf_port
-ffffffff824501a0 d e820_table_init
-ffffffff82450be0 d e820_table_kexec_init
-ffffffff82451620 d e820_table_firmware_init
-ffffffff82452060 d change_point_list
-ffffffff824530c0 d change_point
-ffffffff824538f0 d overlap_list
-ffffffff82453d10 d new_entries
-ffffffff8245474c d userdef
-ffffffff82454750 d e820_res
-ffffffff82454758 d debug_alternative
-ffffffff82454760 d int3_selftest.int3_exception_nb
-ffffffff82454778 d tsc_early_khz
-ffffffff8245477c d io_delay_override
-ffffffff82454780 d fpu__init_system_mxcsr.fxregs
-ffffffff82454980 d x
-ffffffff82454988 d y
-ffffffff82454990 d xsave_cpuid_features
-ffffffff824549b8 d l1d_flush_mitigation
-ffffffff824549bc d changed_by_mtrr_cleanup
-ffffffff824549c0 d last_fixed_end
-ffffffff824549c4 d last_fixed_type
-ffffffff824549d0 d enable_mtrr_cleanup
-ffffffff824549e0 d range_state
-ffffffff824561e0 d range
-ffffffff824571e0 d nr_range
-ffffffff824571e8 d range_sums
-ffffffff824571f0 d mtrr_chunk_size
-ffffffff824571f8 d mtrr_gran_size
-ffffffff82457200 d result
-ffffffff82458300 d min_loss_pfn
-ffffffff82458b00 d debug_print
-ffffffff82458b08 d nr_mtrr_spare_reg
-ffffffff82458b10 d mtrr_calc_range_state.range_new
-ffffffff82459b10 d vmw_sched_clock
-ffffffff82459b11 d steal_acc
-ffffffff82459b12 d nopv
-ffffffff82459b18 d acpi_sci_override_gsi
-ffffffff82459b1c d acpi_force
-ffffffff82459b1d d acpi_sci_flags
-ffffffff82459b20 d acpi_skip_timer_override
-ffffffff82459b24 d acpi_use_timer_override
-ffffffff82459b28 d acpi_fix_pin2_polarity
-ffffffff82459b30 d hpet_res
-ffffffff82459b38 d acpi_lapic_addr
-ffffffff82459b40 d early_qrk
-ffffffff82459cc0 d setup_possible_cpus
-ffffffff82459cd0 d alloc_mptable
-ffffffff82459cd8 d mpc_new_length
-ffffffff82459ce0 d mpc_new_phys
-ffffffff82459cf0 d irq_used
-ffffffff8245a0f0 d m_spare
-ffffffff8245a190 d disable_apic_timer
-ffffffff8245a194 d lapic_cal_loops
-ffffffff8245a198 d lapic_cal_t1
-ffffffff8245a1a0 d lapic_cal_t2
-ffffffff8245a1a8 d lapic_cal_tsc2
-ffffffff8245a1b0 d lapic_cal_tsc1
-ffffffff8245a1b8 d lapic_cal_pm2
-ffffffff8245a1c0 d lapic_cal_pm1
-ffffffff8245a1c8 d lapic_cal_j2
-ffffffff8245a1d0 d lapic_cal_j1
-ffffffff8245a1e0 d x86_cpu_to_apicid_early_map
-ffffffff8245a220 d x86_bios_cpu_apicid_early_map
-ffffffff8245a260 d x86_cpu_to_acpiid_early_map
-ffffffff8245a2e0 d show_lapic
-ffffffff8245a2e4 d no_timer_check
-ffffffff8245a2e8 d disable_timer_pin_1
-ffffffff8245a2ec d kvmclock
-ffffffff8245a2f0 d kvmclock_vsyscall
-ffffffff8245a300 d initial_dtb
-ffffffff8245a310 d cmd_line
-ffffffff8245ab10 d of_ioapic
-ffffffff8245ab20 d ce4100_ids
-ffffffff8245ae40 d pgt_buf_end
-ffffffff8245ae48 d pgt_buf_top
-ffffffff8245ae50 d can_use_brk_pgt
-ffffffff8245ae51 d pat_force_disabled
-ffffffff8245ae60 d kaslr_regions
-ffffffff8245ae90 d add_efi_memmap
-ffffffff8245ae98 d efi_systab_phys
-ffffffff8245aea0 d __TRACE_SYSTEM_HI_SOFTIRQ
-ffffffff8245aeb8 d __TRACE_SYSTEM_TIMER_SOFTIRQ
-ffffffff8245aed0 d __TRACE_SYSTEM_NET_TX_SOFTIRQ
-ffffffff8245aee8 d __TRACE_SYSTEM_NET_RX_SOFTIRQ
-ffffffff8245af00 d __TRACE_SYSTEM_BLOCK_SOFTIRQ
-ffffffff8245af18 d __TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
-ffffffff8245af30 d __TRACE_SYSTEM_TASKLET_SOFTIRQ
-ffffffff8245af48 d __TRACE_SYSTEM_SCHED_SOFTIRQ
-ffffffff8245af60 d __TRACE_SYSTEM_HRTIMER_SOFTIRQ
-ffffffff8245af78 d __TRACE_SYSTEM_RCU_SOFTIRQ
-ffffffff8245af90 d main_extable_sort_needed
-ffffffff8245afa0 d new_log_buf_len
-ffffffff8245afb0 d setup_text_buf
-ffffffff8245b390 d __TRACE_SYSTEM_TICK_DEP_MASK_NONE
-ffffffff8245b3a8 d __TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
-ffffffff8245b3c0 d __TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
-ffffffff8245b3d8 d __TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
-ffffffff8245b3f0 d __TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
-ffffffff8245b408 d __TRACE_SYSTEM_TICK_DEP_BIT_SCHED
-ffffffff8245b420 d __TRACE_SYSTEM_TICK_DEP_MASK_SCHED
-ffffffff8245b438 d __TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
-ffffffff8245b450 d __TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
-ffffffff8245b468 d __TRACE_SYSTEM_TICK_DEP_BIT_RCU
-ffffffff8245b480 d __TRACE_SYSTEM_TICK_DEP_MASK_RCU
-ffffffff8245b498 d __TRACE_SYSTEM_ALARM_REALTIME
-ffffffff8245b4b0 d __TRACE_SYSTEM_ALARM_BOOTTIME
-ffffffff8245b4c8 d __TRACE_SYSTEM_ALARM_REALTIME_FREEZER
-ffffffff8245b4e0 d __TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
-ffffffff8245b500 d suffix_tbl
-ffffffff8245b518 d cgroup_init_early.ctx
-ffffffff8245b568 d audit_net_ops
-ffffffff8245b5b0 d bootup_tracer_buf
-ffffffff8245b620 d trace_boot_options_buf
-ffffffff8245b690 d trace_boot_clock_buf
-ffffffff8245b6f8 d trace_boot_clock
-ffffffff8245b700 d tracepoint_printk_stop_on_boot
-ffffffff8245b708 d eval_map_work
-ffffffff8245b728 d eval_map_wq
-ffffffff8245b730 d tracerfs_init_work
-ffffffff8245b750 d events
-ffffffff8245b7c0 d bootup_event_buf
-ffffffff8245bfc0 d __TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
-ffffffff8245bfd8 d __TRACE_SYSTEM_ERROR_DETECTOR_KASAN
-ffffffff8245bff0 d __TRACE_SYSTEM_ERROR_DETECTOR_WARN
-ffffffff8245c008 d __TRACE_SYSTEM_XDP_ABORTED
-ffffffff8245c020 d __TRACE_SYSTEM_XDP_DROP
-ffffffff8245c038 d __TRACE_SYSTEM_XDP_PASS
-ffffffff8245c050 d __TRACE_SYSTEM_XDP_TX
-ffffffff8245c068 d __TRACE_SYSTEM_XDP_REDIRECT
-ffffffff8245c080 d __TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
-ffffffff8245c098 d __TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
-ffffffff8245c0b0 d __TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
-ffffffff8245c0c8 d __TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
-ffffffff8245c0e0 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff8245c0f8 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff8245c110 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff8245c128 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff8245c140 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff8245c158 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff8245c170 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff8245c188 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff8245c1a0 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff8245c1b8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff8245c1d0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff8245c1e8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff8245c200 d __TRACE_SYSTEM_ZONE_DMA
-ffffffff8245c218 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffff8245c230 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffff8245c248 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff8245c260 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff8245c278 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff8245c290 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff8245c2a8 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff8245c2c0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff8245c2d8 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff8245c2f0 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff8245c308 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff8245c320 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff8245c338 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff8245c350 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff8245c368 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff8245c380 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff8245c398 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff8245c3b0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff8245c3c8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff8245c3e0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff8245c3f8 d __TRACE_SYSTEM_ZONE_DMA
-ffffffff8245c410 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffff8245c428 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffff8245c440 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff8245c458 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff8245c470 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff8245c488 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff8245c4a0 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff8245c4b8 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff8245c4d0 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff8245c4e8 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff8245c500 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff8245c518 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff8245c530 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff8245c548 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff8245c560 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff8245c578 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff8245c590 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff8245c5a8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff8245c5c0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff8245c5d8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff8245c5f0 d __TRACE_SYSTEM_ZONE_DMA
-ffffffff8245c608 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffff8245c620 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffff8245c638 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff8245c650 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff8245c668 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff8245c680 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff8245c698 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff8245c6b0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff8245c6d0 d pcpu_build_alloc_info.group_map
-ffffffff8245c750 d pcpu_build_alloc_info.group_cnt
-ffffffff8245c7d0 d pcpu_build_alloc_info.mask
-ffffffff8245c7d8 d pcpu_chosen_fc
-ffffffff8245c7e0 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff8245c7f8 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff8245c810 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff8245c828 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff8245c840 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff8245c858 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff8245c870 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff8245c888 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff8245c8a0 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff8245c8b8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff8245c8d0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff8245c8e8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff8245c900 d __TRACE_SYSTEM_ZONE_DMA
-ffffffff8245c918 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffff8245c930 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffff8245c948 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff8245c960 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff8245c978 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff8245c990 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff8245c9a8 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff8245c9c0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff8245c9d8 d __TRACE_SYSTEM_MM_FILEPAGES
-ffffffff8245c9f0 d __TRACE_SYSTEM_MM_ANONPAGES
-ffffffff8245ca08 d __TRACE_SYSTEM_MM_SWAPENTS
-ffffffff8245ca20 d __TRACE_SYSTEM_MM_SHMEMPAGES
-ffffffff8245ca38 d __TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff8245ca50 d __TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff8245ca68 d __TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff8245ca80 d __TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff8245ca98 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff8245cab0 d __TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff8245cac8 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff8245cae0 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff8245caf8 d __TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff8245cb10 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff8245cb28 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff8245cb40 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff8245cb58 d __TRACE_SYSTEM_ZONE_DMA
-ffffffff8245cb70 d __TRACE_SYSTEM_ZONE_DMA32
-ffffffff8245cb88 d __TRACE_SYSTEM_ZONE_NORMAL
-ffffffff8245cba0 d __TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff8245cbb8 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff8245cbd0 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff8245cbe8 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff8245cc00 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff8245cc18 d __TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff8245cc30 d __TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
-ffffffff8245cc48 d __TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
-ffffffff8245cc60 d __TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
-ffffffff8245cc78 d __TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
-ffffffff8245cc90 d __TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
-ffffffff8245cca8 d __TRACE_SYSTEM_MIGRATE_ASYNC
-ffffffff8245ccc0 d __TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
-ffffffff8245ccd8 d __TRACE_SYSTEM_MIGRATE_SYNC
-ffffffff8245ccf0 d __TRACE_SYSTEM_MR_COMPACTION
-ffffffff8245cd08 d __TRACE_SYSTEM_MR_MEMORY_FAILURE
-ffffffff8245cd20 d __TRACE_SYSTEM_MR_MEMORY_HOTPLUG
-ffffffff8245cd38 d __TRACE_SYSTEM_MR_SYSCALL
-ffffffff8245cd50 d __TRACE_SYSTEM_MR_MEMPOLICY_MBIND
-ffffffff8245cd68 d __TRACE_SYSTEM_MR_NUMA_MISPLACED
-ffffffff8245cd80 d __TRACE_SYSTEM_MR_CONTIG_RANGE
-ffffffff8245cd98 d __TRACE_SYSTEM_MR_LONGTERM_PIN
-ffffffff8245cdb0 d __TRACE_SYSTEM_MR_DEMOTION
-ffffffff8245cdc8 d vmlist
-ffffffff8245cdd0 d arch_zone_lowest_possible_pfn
-ffffffff8245cdf0 d arch_zone_highest_possible_pfn
-ffffffff8245ce10 d zone_movable_pfn.0
-ffffffff8245ce18 d dma_reserve
-ffffffff8245ce20 d nr_kernel_pages
-ffffffff8245ce28 d nr_all_pages
-ffffffff8245ce30 d required_kernelcore_percent
-ffffffff8245ce38 d required_kernelcore
-ffffffff8245ce40 d required_movablecore_percent
-ffffffff8245ce48 d required_movablecore
-ffffffff8245ce50 d reset_managed_pages_done
-ffffffff8245ce58 d kmem_cache_init.boot_kmem_cache
-ffffffff8245cf30 d kmem_cache_init.boot_kmem_cache_node
-ffffffff8245d008 d __TRACE_SYSTEM_SCAN_FAIL
-ffffffff8245d020 d __TRACE_SYSTEM_SCAN_SUCCEED
-ffffffff8245d038 d __TRACE_SYSTEM_SCAN_PMD_NULL
-ffffffff8245d050 d __TRACE_SYSTEM_SCAN_PMD_NONE
-ffffffff8245d068 d __TRACE_SYSTEM_SCAN_PMD_MAPPED
-ffffffff8245d080 d __TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
-ffffffff8245d098 d __TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
-ffffffff8245d0b0 d __TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
-ffffffff8245d0c8 d __TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
-ffffffff8245d0e0 d __TRACE_SYSTEM_SCAN_PTE_UFFD_WP
-ffffffff8245d0f8 d __TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
-ffffffff8245d110 d __TRACE_SYSTEM_SCAN_PAGE_RO
-ffffffff8245d128 d __TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
-ffffffff8245d140 d __TRACE_SYSTEM_SCAN_PAGE_NULL
-ffffffff8245d158 d __TRACE_SYSTEM_SCAN_SCAN_ABORT
-ffffffff8245d170 d __TRACE_SYSTEM_SCAN_PAGE_COUNT
-ffffffff8245d188 d __TRACE_SYSTEM_SCAN_PAGE_LRU
-ffffffff8245d1a0 d __TRACE_SYSTEM_SCAN_PAGE_LOCK
-ffffffff8245d1b8 d __TRACE_SYSTEM_SCAN_PAGE_ANON
-ffffffff8245d1d0 d __TRACE_SYSTEM_SCAN_PAGE_COMPOUND
-ffffffff8245d1e8 d __TRACE_SYSTEM_SCAN_ANY_PROCESS
-ffffffff8245d200 d __TRACE_SYSTEM_SCAN_VMA_NULL
-ffffffff8245d218 d __TRACE_SYSTEM_SCAN_VMA_CHECK
-ffffffff8245d230 d __TRACE_SYSTEM_SCAN_ADDRESS_RANGE
-ffffffff8245d248 d __TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
-ffffffff8245d260 d __TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
-ffffffff8245d278 d __TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
-ffffffff8245d290 d __TRACE_SYSTEM_SCAN_TRUNCATED
-ffffffff8245d2a8 d __TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
-ffffffff8245d2c0 d page_owner_enabled
-ffffffff8245d2d0 d after_paging_init
-ffffffff8245d2e0 d prev_map
-ffffffff8245d320 d slot_virt
-ffffffff8245d360 d prev_size
-ffffffff8245d3a0 d early_ioremap_debug
-ffffffff8245d3a1 d enable_checks
-ffffffff8245d3a8 d dhash_entries
-ffffffff8245d3b0 d ihash_entries
-ffffffff8245d3b8 d mhash_entries
-ffffffff8245d3c0 d mphash_entries
-ffffffff8245d3c8 d __TRACE_SYSTEM_WB_REASON_BACKGROUND
-ffffffff8245d3e0 d __TRACE_SYSTEM_WB_REASON_VMSCAN
-ffffffff8245d3f8 d __TRACE_SYSTEM_WB_REASON_SYNC
-ffffffff8245d410 d __TRACE_SYSTEM_WB_REASON_PERIODIC
-ffffffff8245d428 d __TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
-ffffffff8245d440 d __TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
-ffffffff8245d458 d __TRACE_SYSTEM_WB_REASON_FORKER_THREAD
-ffffffff8245d470 d __TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
-ffffffff8245d488 d proc_net_ns_ops
-ffffffff8245d4c8 d __TRACE_SYSTEM_BH_New
-ffffffff8245d4e0 d __TRACE_SYSTEM_BH_Mapped
-ffffffff8245d4f8 d __TRACE_SYSTEM_BH_Unwritten
-ffffffff8245d510 d __TRACE_SYSTEM_BH_Boundary
-ffffffff8245d528 d __TRACE_SYSTEM_ES_WRITTEN_B
-ffffffff8245d540 d __TRACE_SYSTEM_ES_UNWRITTEN_B
-ffffffff8245d558 d __TRACE_SYSTEM_ES_DELAYED_B
-ffffffff8245d570 d __TRACE_SYSTEM_ES_HOLE_B
-ffffffff8245d588 d __TRACE_SYSTEM_ES_REFERENCED_B
-ffffffff8245d5a0 d __TRACE_SYSTEM_EXT4_FC_REASON_XATTR
-ffffffff8245d5b8 d __TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
-ffffffff8245d5d0 d __TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
-ffffffff8245d5e8 d __TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
-ffffffff8245d600 d __TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
-ffffffff8245d618 d __TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
-ffffffff8245d630 d __TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
-ffffffff8245d648 d __TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
-ffffffff8245d660 d __TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
-ffffffff8245d678 d __TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
-ffffffff8245d690 d __TRACE_SYSTEM_EXT4_FC_REASON_MAX
-ffffffff8245d6a8 d lsm_enabled_true
-ffffffff8245d6b0 d exclusive
-ffffffff8245d6b8 d debug
-ffffffff8245d6bc d lsm_enabled_false
-ffffffff8245d6c0 d ordered_lsms
-ffffffff8245d6c8 d chosen_lsm_order
-ffffffff8245d6d0 d chosen_major_lsm
-ffffffff8245d6d8 d last_lsm
-ffffffff8245d6dc d selinux_enforcing_boot
-ffffffff8245d6e0 d selinux_enabled_boot
-ffffffff8245d6e4 d ddebug_init_success
-ffffffff8245d6e5 d __stack_depot_early_init_passed
-ffffffff8245d6e6 d __stack_depot_want_early_init
-ffffffff8245d6f0 d xbc_data
-ffffffff8245d6f8 d xbc_node_num
-ffffffff8245d700 d xbc_data_size
-ffffffff8245d708 d xbc_nodes
-ffffffff8245d710 d brace_index
-ffffffff8245d714 d xbc_err_pos
-ffffffff8245d718 d xbc_err_msg
-ffffffff8245d720 d last_parent
-ffffffff8245d730 d open_brace
-ffffffff8245d770 d acpi_apic_instance
-ffffffff8245d780 d acpi_initrd_files
-ffffffff8245e180 d acpi_verify_table_checksum
-ffffffff8245e190 d initial_tables
-ffffffff8245f190 d acpi_blacklist
-ffffffff8245f2b0 d osi_setup_entries
-ffffffff8245f6c0 d nr_unique_ids
-ffffffff8245f6d0 d unique_processor_ids
-ffffffff8245f750 d acpi_masked_gpes_map
-ffffffff8245f770 d pnpacpi_disabled
-ffffffff8245f774 d earlycon_acpi_spcr_enable
-ffffffff8245f775 d trust_cpu
-ffffffff8245f776 d trust_bootloader
-ffffffff8245f780 d no_fwh_detect
-ffffffff8245f790 d intel_init_hw_struct.warning
-ffffffff8245f888 d loopback_net_ops
-ffffffff8245f8c8 d __TRACE_SYSTEM_THERMAL_TRIP_CRITICAL
-ffffffff8245f8e0 d __TRACE_SYSTEM_THERMAL_TRIP_HOT
-ffffffff8245f8f8 d __TRACE_SYSTEM_THERMAL_TRIP_PASSIVE
-ffffffff8245f910 d __TRACE_SYSTEM_THERMAL_TRIP_ACTIVE
-ffffffff8245f930 d _inits
-ffffffff8245f970 d no_load
-ffffffff8245f974 d no_hwp
-ffffffff8245f978 d hwp_only
-ffffffff8245f980 d plat_info
-ffffffff8245fd00 d force_load
-ffffffff8245fd10 d dmi_ids_string
-ffffffff8245fd90 d dmi_ver
-ffffffff8245fda0 d mem_reserve
-ffffffff8245fda8 d rt_prop
-ffffffff8245fdb0 d initrd
-ffffffff8245fdc0 d memory_type_name
-ffffffff8245fe90 d efivar_ssdt
-ffffffff8245fea0 d tbl_size
-ffffffff8245fea8 d earlycon_console
-ffffffff8245feb0 d proto_net_ops
-ffffffff8245fef0 d net_ns_ops
-ffffffff8245ff30 d sysctl_core_ops
-ffffffff8245ff70 d netdev_net_ops
-ffffffff8245ffb0 d default_device_ops
-ffffffff8245fff0 d dev_proc_ops
-ffffffff82460030 d dev_mc_net_ops
-ffffffff82460070 d __TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
-ffffffff82460088 d __TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
-ffffffff824600a0 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
-ffffffff824600b8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
-ffffffff824600d0 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
-ffffffff824600e8 d __TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
-ffffffff82460100 d __TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
-ffffffff82460118 d __TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
-ffffffff82460130 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
-ffffffff82460148 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
-ffffffff82460160 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
-ffffffff82460178 d __TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
-ffffffff82460190 d __TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
-ffffffff824601a8 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
-ffffffff824601c0 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
-ffffffff824601d8 d __TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
-ffffffff824601f0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
-ffffffff82460208 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
-ffffffff82460220 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
-ffffffff82460238 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
-ffffffff82460250 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
-ffffffff82460268 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
-ffffffff82460280 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
-ffffffff82460298 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
-ffffffff824602b0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
-ffffffff824602c8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
-ffffffff824602e0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
-ffffffff824602f8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
-ffffffff82460310 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
-ffffffff82460328 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
-ffffffff82460340 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
-ffffffff82460358 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
-ffffffff82460370 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
-ffffffff82460388 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
-ffffffff824603a0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
-ffffffff824603b8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
-ffffffff824603d0 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
-ffffffff824603e8 d __TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
-ffffffff82460400 d __TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
-ffffffff82460418 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
-ffffffff82460430 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
-ffffffff82460448 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
-ffffffff82460460 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
-ffffffff82460478 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
-ffffffff82460490 d __TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
-ffffffff824604a8 d __TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
-ffffffff824604c0 d __TRACE_SYSTEM_SKB_DROP_REASON_XDP
-ffffffff824604d8 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
-ffffffff824604f0 d __TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
-ffffffff82460508 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
-ffffffff82460520 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
-ffffffff82460538 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
-ffffffff82460550 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
-ffffffff82460568 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
-ffffffff82460580 d __TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
-ffffffff82460598 d __TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
-ffffffff824605b0 d __TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
-ffffffff824605c8 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
-ffffffff824605e0 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
-ffffffff824605f8 d __TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
-ffffffff82460610 d __TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
-ffffffff82460628 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
-ffffffff82460640 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
-ffffffff82460658 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
-ffffffff82460670 d __TRACE_SYSTEM_SKB_DROP_REASON_MAX
-ffffffff82460688 d __TRACE_SYSTEM_2
-ffffffff824606a0 d __TRACE_SYSTEM_10
-ffffffff824606b8 d __TRACE_SYSTEM_IPPROTO_TCP
-ffffffff824606d0 d __TRACE_SYSTEM_IPPROTO_DCCP
-ffffffff824606e8 d __TRACE_SYSTEM_IPPROTO_SCTP
-ffffffff82460700 d __TRACE_SYSTEM_IPPROTO_MPTCP
-ffffffff82460718 d __TRACE_SYSTEM_TCP_ESTABLISHED
-ffffffff82460730 d __TRACE_SYSTEM_TCP_SYN_SENT
-ffffffff82460748 d __TRACE_SYSTEM_TCP_SYN_RECV
-ffffffff82460760 d __TRACE_SYSTEM_TCP_FIN_WAIT1
-ffffffff82460778 d __TRACE_SYSTEM_TCP_FIN_WAIT2
-ffffffff82460790 d __TRACE_SYSTEM_TCP_TIME_WAIT
-ffffffff824607a8 d __TRACE_SYSTEM_TCP_CLOSE
-ffffffff824607c0 d __TRACE_SYSTEM_TCP_CLOSE_WAIT
-ffffffff824607d8 d __TRACE_SYSTEM_TCP_LAST_ACK
-ffffffff824607f0 d __TRACE_SYSTEM_TCP_LISTEN
-ffffffff82460808 d __TRACE_SYSTEM_TCP_CLOSING
-ffffffff82460820 d __TRACE_SYSTEM_TCP_NEW_SYN_RECV
-ffffffff82460838 d __TRACE_SYSTEM_0
-ffffffff82460850 d __TRACE_SYSTEM_1
-ffffffff82460868 d netlink_net_ops
-ffffffff824608a8 d sysctl_route_ops
-ffffffff824608e8 d ip_rt_ops
-ffffffff82460928 d rt_genid_ops
-ffffffff82460968 d ipv4_inetpeer_ops
-ffffffff824609a8 d ip_rt_proc_ops
-ffffffff824609e8 d thash_entries
-ffffffff824609f0 d tcp_sk_ops
-ffffffff82460a30 d tcp_net_metrics_ops
-ffffffff82460a70 d raw_net_ops
-ffffffff82460ab0 d raw_sysctl_ops
-ffffffff82460af0 d uhash_entries
-ffffffff82460af8 d udp_sysctl_ops
-ffffffff82460b38 d icmp_sk_ops
-ffffffff82460b78 d devinet_ops
-ffffffff82460bb8 d ipv4_mib_ops
-ffffffff82460bf8 d af_inet_ops
-ffffffff82460c38 d ipv4_sysctl_ops
-ffffffff82460c78 d ip_proc_ops
-ffffffff82460cb8 d xfrm4_net_ops
-ffffffff82460cf8 d xfrm_net_ops
-ffffffff82460d38 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
-ffffffff82460d50 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
-ffffffff82460d68 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
-ffffffff82460d80 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
-ffffffff82460d98 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
-ffffffff82460db0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
-ffffffff82460dc8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
-ffffffff82460de0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
-ffffffff82460df8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
-ffffffff82460e10 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
-ffffffff82460e28 d known_bridge
-ffffffff82460e29 d mcp55_checked
-ffffffff82460e30 d pirq_routers
-ffffffff82460ef0 d intel_router_probe.pirq_440gx
-ffffffff82460f70 d hb_probes
-ffffffff82460fb0 d __setup_str_set_reset_devices
-ffffffff82460fbe d __setup_str_debug_kernel
-ffffffff82460fc4 d __setup_str_quiet_kernel
-ffffffff82460fca d __setup_str_loglevel
-ffffffff82460fd3 d __setup_str_warn_bootconfig
-ffffffff82460fde d __setup_str_init_setup
-ffffffff82460fe4 d __setup_str_rdinit_setup
-ffffffff82460fec d __setup_str_early_randomize_kstack_offset
-ffffffff82461004 d __setup_str_initcall_blacklist
-ffffffff82461018 d __setup_str_set_debug_rodata
-ffffffff8246101f d __setup_str_early_hostname
-ffffffff82461028 d __setup_str_load_ramdisk
-ffffffff82461036 d __setup_str_readonly
-ffffffff82461039 d __setup_str_readwrite
-ffffffff8246103c d __setup_str_root_dev_setup
-ffffffff82461042 d __setup_str_rootwait_setup
-ffffffff8246104b d __setup_str_root_data_setup
-ffffffff82461056 d __setup_str_fs_names_setup
-ffffffff82461062 d __setup_str_root_delay_setup
-ffffffff8246106d d __setup_str_prompt_ramdisk
-ffffffff8246107d d __setup_str_ramdisk_start_setup
-ffffffff8246108c d __setup_str_no_initrd
-ffffffff82461095 d __setup_str_early_initrdmem
-ffffffff8246109f d __setup_str_early_initrd
-ffffffff824610a6 d __setup_str_retain_initrd_param
-ffffffff824610b4 d __setup_str_initramfs_async_setup
-ffffffff824610c5 d __setup_str_lpj_setup
-ffffffff824610ca d __setup_str_vdso_setup
-ffffffff824610d0 d __setup_str_vsyscall_setup
-ffffffff824610e0 d rapl_model_match
-ffffffff824614f0 d rapl_domain_names
-ffffffff82461520 d amd_hw_cache_event_ids_f17h
-ffffffff82461670 d amd_hw_cache_event_ids
-ffffffff824617c0 d amd_pmu
-ffffffff82461a40 d core2_hw_cache_event_ids
-ffffffff82461b90 d nehalem_hw_cache_event_ids
-ffffffff82461ce0 d nehalem_hw_cache_extra_regs
-ffffffff82461e30 d atom_hw_cache_event_ids
-ffffffff82461f80 d slm_hw_cache_event_ids
-ffffffff824620d0 d slm_hw_cache_extra_regs
-ffffffff82462220 d glm_hw_cache_event_ids
-ffffffff82462370 d glm_hw_cache_extra_regs
-ffffffff824624c0 d glp_hw_cache_event_ids
-ffffffff82462610 d glp_hw_cache_extra_regs
-ffffffff82462760 d tnt_hw_cache_extra_regs
-ffffffff824628b0 d westmere_hw_cache_event_ids
-ffffffff82462a00 d snb_hw_cache_event_ids
-ffffffff82462b50 d snb_hw_cache_extra_regs
-ffffffff82462ca0 d hsw_hw_cache_event_ids
-ffffffff82462df0 d hsw_hw_cache_extra_regs
-ffffffff82462f40 d knl_hw_cache_extra_regs
-ffffffff82463090 d skl_hw_cache_event_ids
-ffffffff824631e0 d skl_hw_cache_extra_regs
-ffffffff82463330 d spr_hw_cache_event_ids
-ffffffff82463480 d spr_hw_cache_extra_regs
-ffffffff824635d0 d core_pmu
-ffffffff82463850 d intel_pmu
-ffffffff82463ad0 d intel_arch_events_map
-ffffffff82463b40 d knc_hw_cache_event_ids
-ffffffff82463c90 d knc_pmu
-ffffffff82463f10 d p4_hw_cache_event_ids
-ffffffff82464060 d p4_pmu
-ffffffff824642e0 d p6_hw_cache_event_ids
-ffffffff82464430 d p6_pmu
-ffffffff824646b0 d intel_uncore_match
-ffffffff82464b18 d generic_uncore_init
-ffffffff82464b38 d nhm_uncore_init
-ffffffff82464b58 d snb_uncore_init
-ffffffff82464b78 d ivb_uncore_init
-ffffffff82464b98 d hsw_uncore_init
-ffffffff82464bb8 d bdw_uncore_init
-ffffffff82464bd8 d snbep_uncore_init
-ffffffff82464bf8 d nhmex_uncore_init
-ffffffff82464c18 d ivbep_uncore_init
-ffffffff82464c38 d hswep_uncore_init
-ffffffff82464c58 d bdx_uncore_init
-ffffffff82464c78 d knl_uncore_init
-ffffffff82464c98 d skl_uncore_init
-ffffffff82464cb8 d skx_uncore_init
-ffffffff82464cd8 d icl_uncore_init
-ffffffff82464cf8 d icx_uncore_init
-ffffffff82464d18 d tgl_l_uncore_init
-ffffffff82464d38 d tgl_uncore_init
-ffffffff82464d58 d rkl_uncore_init
-ffffffff82464d78 d adl_uncore_init
-ffffffff82464d98 d mtl_uncore_init
-ffffffff82464db8 d spr_uncore_init
-ffffffff82464dd8 d snr_uncore_init
-ffffffff82464e00 d intel_cstates_match
-ffffffff82465328 d nhm_cstates
-ffffffff82465340 d snb_cstates
-ffffffff82465358 d hswult_cstates
-ffffffff82465370 d slm_cstates
-ffffffff82465388 d cnl_cstates
-ffffffff824653a0 d knl_cstates
-ffffffff824653b8 d glm_cstates
-ffffffff824653d0 d icl_cstates
-ffffffff824653e8 d icx_cstates
-ffffffff82465400 d adl_cstates
-ffffffff82465420 d zxd_hw_cache_event_ids
-ffffffff82465570 d zxe_hw_cache_event_ids
-ffffffff824656c0 d zhaoxin_pmu
-ffffffff82465940 d zx_arch_events_map
-ffffffff824659b0 d __setup_str_strict_sas_size
-ffffffff824659c0 d early_idts
-ffffffff824659f0 d def_idts
-ffffffff82465b90 d early_pf_idts
-ffffffff82465bb0 d apic_idts
-ffffffff82465d00 d __setup_str_setup_unknown_nmi_panic
-ffffffff82465d20 d trim_snb_memory.bad_pages
-ffffffff82465d48 d snb_gfx_workaround_needed.snb_ids
-ffffffff82465d60 d of_cmos_match
-ffffffff82465ef0 d __setup_str_control_va_addr_alignment
-ffffffff82465eff d __setup_str_parse_memopt
-ffffffff82465f03 d __setup_str_parse_memmap_opt
-ffffffff82465f0a d __setup_str_iommu_setup
-ffffffff82465f10 d __setup_str_enable_cpu0_hotplug
-ffffffff82465f1d d __setup_str_debug_alt
-ffffffff82465f2f d __setup_str_setup_noreplace_smp
-ffffffff82465f3d d __setup_str_tsc_early_khz_setup
-ffffffff82465f4b d __setup_str_notsc_setup
-ffffffff82465f51 d __setup_str_tsc_setup
-ffffffff82465f60 d io_delay_0xed_port_dmi_table
-ffffffff82466770 d __setup_str_io_delay_param
-ffffffff82466780 d add_rtc_cmos.ids
-ffffffff82466798 d __setup_str_idle_setup
-ffffffff824667a0 d __setup_str_x86_nopcid_setup
-ffffffff824667a7 d __setup_str_x86_noinvpcid_setup
-ffffffff824667b1 d __setup_str_x86_nofsgsbase_setup
-ffffffff824667bc d __setup_str_setup_disable_pku
-ffffffff824667c2 d __setup_str_setup_clearcpuid
-ffffffff824667d0 d cpu_vuln_whitelist
-ffffffff82466b80 d cpu_vuln_blacklist
-ffffffff82466e70 d __setup_str_mds_cmdline
-ffffffff82466e74 d __setup_str_tsx_async_abort_parse_cmdline
-ffffffff82466e84 d __setup_str_mmio_stale_data_parse_cmdline
-ffffffff82466e94 d __setup_str_srbds_parse_cmdline
-ffffffff82466e9a d __setup_str_l1d_flush_parse_cmdline
-ffffffff82466ea4 d __setup_str_nospectre_v1_cmdline
-ffffffff82466eb1 d __setup_str_retbleed_parse_cmdline
-ffffffff82466eba d __setup_str_l1tf_cmdline
-ffffffff82466ec0 d v2_user_options
-ffffffff82466f30 d mitigation_options
-ffffffff82466fe0 d ssb_mitigation_options
-ffffffff82467030 d has_glm_turbo_ratio_limits
-ffffffff82467090 d has_knl_turbo_ratio_limits
-ffffffff824670e0 d has_skx_turbo_ratio_limits
-ffffffff82467110 d __setup_str_nosgx
-ffffffff82467120 d __setup_str_ring3mwait_disable
-ffffffff82467140 d split_lock_cpu_ids
-ffffffff82467280 d sld_options
-ffffffff824672c0 d __setup_str_rdrand_cmdline
-ffffffff824672c7 d __setup_str_disable_mtrr_cleanup_setup
-ffffffff824672dc d __setup_str_enable_mtrr_cleanup_setup
-ffffffff824672f0 d __setup_str_mtrr_cleanup_debug_setup
-ffffffff82467303 d __setup_str_parse_mtrr_chunk_size_opt
-ffffffff82467313 d __setup_str_parse_mtrr_gran_size_opt
-ffffffff82467322 d __setup_str_parse_mtrr_spare_reg
-ffffffff82467334 d __setup_str_disable_mtrr_trim_setup
-ffffffff82467348 d __setup_str_setup_vmw_sched_clock
-ffffffff8246735b d __setup_str_parse_no_stealacc
-ffffffff82467368 d x86_hyper_vmware
-ffffffff824673d0 d __setup_str_parse_nopv
-ffffffff824673e0 d hypervisors
-ffffffff824673f8 d x86_hyper_ms_hyperv
-ffffffff82467460 d acpi_dmi_table
-ffffffff82467f20 d acpi_dmi_table_late
-ffffffff82468730 d __setup_str_parse_acpi
-ffffffff82468735 d __setup_str_parse_acpi_bgrt
-ffffffff82468742 d __setup_str_parse_pci
-ffffffff82468746 d __setup_str_parse_acpi_skip_timer_override
-ffffffff8246875f d __setup_str_parse_acpi_use_timer_override
-ffffffff82468777 d __setup_str_setup_acpi_sci
-ffffffff82468780 d __setup_str_acpi_sleep_setup
-ffffffff82468790 d reboot_dmi_table
-ffffffff8246bc00 d intel_early_ids
-ffffffff8246ef40 d i830_early_ops
-ffffffff8246ef50 d i845_early_ops
-ffffffff8246ef60 d i85x_early_ops
-ffffffff8246ef70 d i865_early_ops
-ffffffff8246ef80 d gen3_early_ops
-ffffffff8246ef90 d gen6_early_ops
-ffffffff8246efa0 d gen8_early_ops
-ffffffff8246efb0 d chv_early_ops
-ffffffff8246efc0 d gen9_early_ops
-ffffffff8246efd0 d gen11_early_ops
-ffffffff8246efe0 d __setup_str_nonmi_ipi_setup
-ffffffff8246efea d __setup_str_cpu_init_udelay
-ffffffff8246effa d __setup_str__setup_possible_cpus
-ffffffff8246f008 d __setup_str_update_mptable_setup
-ffffffff8246f017 d __setup_str_parse_alloc_mptable_opt
-ffffffff8246f030 d __setup_str_parse_lapic
-ffffffff8246f036 d __setup_str_setup_apicpmtimer
-ffffffff8246f042 d __setup_str_setup_nox2apic
-ffffffff8246f04b d __setup_str_setup_disableapic
-ffffffff8246f057 d __setup_str_setup_nolapic
-ffffffff8246f05f d __setup_str_parse_lapic_timer_c2_ok
-ffffffff8246f071 d __setup_str_parse_disable_apic_timer
-ffffffff8246f07d d __setup_str_parse_nolapic_timer
-ffffffff8246f08b d __setup_str_apic_set_verbosity
-ffffffff8246f090 d __setup_str_apic_set_disabled_cpu_apicid
-ffffffff8246f0a3 d __setup_str_apic_set_extnmi
-ffffffff8246f0b0 d deadline_match
-ffffffff8246f290 d __setup_str_apic_ipi_shorthand
-ffffffff8246f2a2 d __setup_str_setup_show_lapic
-ffffffff8246f2ae d __setup_str_parse_noapic
-ffffffff8246f2b5 d __setup_str_notimercheck
-ffffffff8246f2c4 d __setup_str_disable_timer_pin_setup
-ffffffff8246f2d8 d __setup_str_set_x2apic_phys_mode
-ffffffff8246f2e4 d __setup_str_setup_early_printk
-ffffffff8246f2f0 d early_serial_init.bases
-ffffffff8246f2f8 d __setup_str_hpet_setup
-ffffffff8246f2fe d __setup_str_disable_hpet
-ffffffff8246f305 d amd_nb_bus_dev_ranges
-ffffffff8246f318 d __setup_str_parse_no_kvmapf
-ffffffff8246f322 d __setup_str_parse_no_stealacc
-ffffffff8246f330 d x86_hyper_kvm
-ffffffff8246f398 d __setup_str_parse_no_kvmclock
-ffffffff8246f3a4 d __setup_str_parse_no_kvmclock_vsyscall
-ffffffff8246f3c0 d mmconf_dmi_table
-ffffffff8246f670 d __setup_str_parse_direct_gbpages_on
-ffffffff8246f678 d __setup_str_parse_direct_gbpages_off
-ffffffff8246f682 d __setup_str_early_disable_dma32
-ffffffff8246f690 d __setup_str_nonx32_setup
-ffffffff8246f69a d __setup_str_setup_userpte
-ffffffff8246f6a2 d __setup_str_nopat
-ffffffff8246f6a8 d __setup_str_pat_debug_setup
-ffffffff8246f6b1 d __setup_str_setup_init_pkru
-ffffffff8246f6bc d __setup_str_setup_storage_paranoia
-ffffffff8246f6e0 d __setup_str_setup_add_efi_memmap
-ffffffff8246f6f0 d arch_tables
-ffffffff8246f768 d __setup_str_coredump_filter_setup
-ffffffff8246f779 d __setup_str_oops_setup
-ffffffff8246f77e d __setup_str_panic_on_taint_setup
-ffffffff8246f78d d __setup_str_smt_cmdline_disable
-ffffffff8246f793 d __setup_str_mitigations_parse_cmdline
-ffffffff8246f79f d __setup_str_reserve_setup
-ffffffff8246f7a8 d __setup_str_strict_iomem
-ffffffff8246f7af d __setup_str_file_caps_disable
-ffffffff8246f7bc d __setup_str_setup_print_fatal_signals
-ffffffff8246f7d1 d __setup_str_reboot_setup
-ffffffff8246f7d9 d __setup_str_setup_schedstats
-ffffffff8246f7e5 d __setup_str_setup_resched_latency_warn_ms
-ffffffff8246f7fe d __setup_str_setup_preempt_mode
-ffffffff8246f807 d __setup_str_setup_sched_thermal_decay_shift
-ffffffff8246f822 d __setup_str_sched_debug_setup
-ffffffff8246f830 d __setup_str_setup_relax_domain_level
-ffffffff8246f844 d __setup_str_setup_psi
-ffffffff8246f849 d __setup_str_housekeeping_nohz_full_setup
-ffffffff8246f854 d __setup_str_housekeeping_isolcpus_setup
-ffffffff8246f85e d __setup_str_mem_sleep_default_setup
-ffffffff8246f871 d __setup_str_control_devkmsg
-ffffffff8246f881 d __setup_str_log_buf_len_setup
-ffffffff8246f88d d __setup_str_ignore_loglevel_setup
-ffffffff8246f89d d __setup_str_console_msg_format_setup
-ffffffff8246f8b1 d __setup_str_console_setup
-ffffffff8246f8ba d __setup_str_console_suspend_disable
-ffffffff8246f8cd d __setup_str_keep_bootcon_setup
-ffffffff8246f8da d __setup_str_irq_affinity_setup
-ffffffff8246f8e7 d __setup_str_setup_forced_irqthreads
-ffffffff8246f8f2 d __setup_str_noirqdebug_setup
-ffffffff8246f8fd d __setup_str_irqfixup_setup
-ffffffff8246f906 d __setup_str_irqpoll_setup
-ffffffff8246f90e d __setup_str_rcu_nocb_setup
-ffffffff8246f918 d __setup_str_parse_rcu_nocb_poll
-ffffffff8246f926 d __setup_str_setup_io_tlb_npages
-ffffffff8246f92e d __setup_str_profile_setup
-ffffffff8246f937 d __setup_str_setup_hrtimer_hres
-ffffffff8246f940 d __setup_str_ntp_tick_adj_setup
-ffffffff8246f94e d __setup_str_boot_override_clocksource
-ffffffff8246f95b d __setup_str_boot_override_clock
-ffffffff8246f962 d __setup_str_setup_tick_nohz
-ffffffff8246f968 d __setup_str_skew_tick
-ffffffff8246f972 d __setup_str_nosmp
-ffffffff8246f978 d __setup_str_nrcpus
-ffffffff8246f980 d __setup_str_maxcpus
-ffffffff8246f988 d __setup_str_parse_crashkernel_dummy
-ffffffff8246f994 d __setup_str_cgroup_disable
-ffffffff8246f9a4 d __setup_str_enable_cgroup_debug
-ffffffff8246f9b1 d __setup_str_cgroup_no_v1
-ffffffff8246f9bf d __setup_str_audit_enable
-ffffffff8246f9c6 d __setup_str_audit_backlog_limit_set
-ffffffff8246f9db d __setup_str_nowatchdog_setup
-ffffffff8246f9e6 d __setup_str_nosoftlockup_setup
-ffffffff8246f9f3 d __setup_str_watchdog_thresh_setup
-ffffffff8246fa04 d __setup_str_set_cmdline_ftrace
-ffffffff8246fa0c d __setup_str_set_ftrace_dump_on_oops
-ffffffff8246fa20 d __setup_str_stop_trace_on_warning
-ffffffff8246fa34 d __setup_str_boot_alloc_snapshot
-ffffffff8246fa43 d __setup_str_boot_snapshot
-ffffffff8246fa58 d __setup_str_set_trace_boot_options
-ffffffff8246fa67 d __setup_str_set_trace_boot_clock
-ffffffff8246fa74 d __setup_str_set_tracepoint_printk
-ffffffff8246fa7e d __setup_str_set_tracepoint_printk_stop
-ffffffff8246fa95 d __setup_str_set_buf_size
-ffffffff8246faa5 d __setup_str_set_tracing_thresh
-ffffffff8246fab5 d __setup_str_setup_trace_event
-ffffffff8246fac2 d __setup_str_set_mminit_loglevel
-ffffffff8246fae0 d __setup_str_percpu_alloc_setup
-ffffffff8246faf0 d pcpu_fc_names
-ffffffff8246fb10 d __setup_str_slub_nomerge
-ffffffff8246fb1d d __setup_str_slub_merge
-ffffffff8246fb28 d __setup_str_setup_slab_nomerge
-ffffffff8246fb35 d __setup_str_setup_slab_merge
-ffffffff8246fb40 d kmalloc_info
-ffffffff8246feb0 d __setup_str_disable_randmaps
-ffffffff8246febb d __setup_str_cmdline_parse_stack_guard_gap
-ffffffff8246fecc d __setup_str_set_nohugeiomap
-ffffffff8246fed8 d __setup_str_set_nohugevmalloc
-ffffffff8246fee6 d __setup_str_early_init_on_alloc
-ffffffff8246fef4 d __setup_str_early_init_on_free
-ffffffff8246ff01 d __setup_str_cmdline_parse_kernelcore
-ffffffff8246ff0c d __setup_str_cmdline_parse_movablecore
-ffffffff8246ff18 d __setup_str_early_memblock
-ffffffff8246ff21 d __setup_str_setup_memhp_default_state
-ffffffff8246ff36 d __setup_str_cmdline_parse_movable_node
-ffffffff8246ff43 d __setup_str_setup_slub_debug
-ffffffff8246ff4e d __setup_str_setup_slub_min_order
-ffffffff8246ff5e d __setup_str_setup_slub_max_order
-ffffffff8246ff6e d __setup_str_setup_slub_min_objects
-ffffffff8246ff80 d __setup_str_setup_transparent_hugepage
-ffffffff8246ff96 d __setup_str_cgroup_memory
-ffffffff8246ffa5 d __setup_str_setup_swap_account
-ffffffff8246ffb2 d __setup_str_early_page_owner_param
-ffffffff8246ffbd d __setup_str_early_ioremap_debug_setup
-ffffffff8246ffd1 d __setup_str_setup_early_page_ext
-ffffffff8246ffe0 d __setup_str_parse_hardened_usercopy
-ffffffff8246fff3 d __setup_str_set_dhash_entries
-ffffffff82470002 d __setup_str_set_ihash_entries
-ffffffff82470011 d __setup_str_set_mhash_entries
-ffffffff82470020 d __setup_str_set_mphash_entries
-ffffffff82470030 d __setup_str_debugfs_kernel
-ffffffff82470038 d __setup_str_choose_major_lsm
-ffffffff82470042 d __setup_str_choose_lsm_order
-ffffffff82470047 d __setup_str_enable_debug
-ffffffff82470051 d __setup_str_enforcing_setup
-ffffffff8247005c d __setup_str_checkreqprot_setup
-ffffffff8247006a d __setup_str_integrity_audit_setup
-ffffffff8247007b d __setup_str_elevator_setup
-ffffffff82470085 d __setup_str_force_gpt_fn
-ffffffff82470089 d __setup_str_dyndbg_setup
-ffffffff82470091 d __setup_str_is_stack_depot_disabled
-ffffffff824700b0 d gpiolib_acpi_quirks
-ffffffff82470cc8 d __setup_str_pcie_port_pm_setup
-ffffffff82470cd6 d __setup_str_pci_setup
-ffffffff82470ce0 d __setup_str_pcie_port_setup
-ffffffff82470cf0 d pcie_portdrv_dmi_table
-ffffffff82470fa0 d __setup_str_pcie_aspm_disable
-ffffffff82470fab d __setup_str_pcie_pme_setup
-ffffffff82470fb5 d __setup_str_no_scroll
-ffffffff82470fc0 d table_sigs
-ffffffff82471070 d __setup_str_acpi_parse_apic_instance
-ffffffff82471083 d __setup_str_acpi_force_table_verification_setup
-ffffffff824710a1 d __setup_str_acpi_force_32bit_fadt_addr
-ffffffff824710c0 d acpi_rev_dmi_table
-ffffffff824718d0 d __setup_str_osi_setup
-ffffffff824718e0 d acpi_osi_dmi_table
-ffffffff82473110 d __setup_str_acpi_rev_override_setup
-ffffffff82473122 d __setup_str_acpi_os_name_setup
-ffffffff82473130 d __setup_str_acpi_no_auto_serialize_setup
-ffffffff82473147 d __setup_str_acpi_enforce_resources_setup
-ffffffff8247315f d __setup_str_acpi_no_static_ssdt_setup
-ffffffff82473173 d __setup_str_acpi_disable_return_repair
-ffffffff8247318b d __setup_str_acpi_backlight
-ffffffff824731a0 d acpisleep_dmi_table
-ffffffff824755f0 d dsdt_dmi_table
-ffffffff824758a0 d processor_idle_dmi_table
-ffffffff82475b50 d ec_dmi_table
-ffffffff82476208 d __setup_str_acpi_irq_isa
-ffffffff82476216 d __setup_str_acpi_irq_pci
-ffffffff82476224 d __setup_str_acpi_irq_nobalance_set
-ffffffff82476237 d __setup_str_acpi_irq_balance_set
-ffffffff82476248 d __setup_str_acpi_gpe_set_masked_gpes
-ffffffff82476260 d ac_dmi_table
-ffffffff82476670 d thermal_dmi_table
-ffffffff82476d30 d bat_dmi_table
-ffffffff824773e8 d __setup_str_pnp_setup_reserve_irq
-ffffffff824773f9 d __setup_str_pnp_setup_reserve_dma
-ffffffff8247740a d __setup_str_pnp_setup_reserve_io
-ffffffff8247741a d __setup_str_pnp_setup_reserve_mem
-ffffffff8247742b d __setup_str_pnpacpi_setup
-ffffffff82477434 d __setup_str_sysrq_always_enabled_setup
-ffffffff82477449 d __setup_str_param_setup_earlycon
-ffffffff82477452 d __setup_str_parse_trust_cpu
-ffffffff82477463 d __setup_str_parse_trust_bootloader
-ffffffff8247747b d __setup_str_hpet_mmap_enable
-ffffffff82477486 d __setup_str_iommu_set_def_domain_type
-ffffffff82477498 d __setup_str_iommu_dma_setup
-ffffffff824774a5 d __setup_str_iommu_dma_forcedac_setup
-ffffffff824774b4 d __setup_str_fw_devlink_setup
-ffffffff824774bf d __setup_str_fw_devlink_strict_setup
-ffffffff824774d1 d __setup_str_deferred_probe_timeout_setup
-ffffffff824774e9 d __setup_str_save_async_options
-ffffffff824774fd d __setup_str_ramdisk_size
-ffffffff8247750b d __setup_str_max_loop_setup
-ffffffff82477520 d i8042_dmi_quirk_table
-ffffffff82482e90 d i8042_dmi_laptop_table
-ffffffff82483548 d __setup_str_int_pln_enable_setup
-ffffffff82483560 d dm_allowed_targets
-ffffffff82483590 d __setup_str_intel_pstate_setup
-ffffffff824835a0 d hwp_support_ids
-ffffffff82483600 d intel_pstate_cpu_oob_ids
-ffffffff82483690 d __setup_str_setup_noefi
-ffffffff82483696 d __setup_str_parse_efi_cmdline
-ffffffff8248369a d __setup_str_efivar_ssdt_setup
-ffffffff824836b0 d common_tables
-ffffffff824838b8 d __setup_str_acpi_pm_good_setup
-ffffffff824838c5 d __setup_str_parse_pmtmr
-ffffffff824838cc d __setup_str_parse_ras_param
-ffffffff824838d0 d __setup_str_fb_tunnels_only_for_init_net_sysctl_setup
-ffffffff824838dc d __setup_str_set_thash_entries
-ffffffff824838eb d __setup_str_set_tcpmhash_entries
-ffffffff824838fd d __setup_str_set_uhash_entries
-ffffffff82483910 d fib4_rules_ops_template
-ffffffff824839c0 d ip6addrlbl_init_table
-ffffffff82483a60 d fib6_rules_ops_template
-ffffffff82483b10 d pci_mmcfg_probes
-ffffffff82483b90 d pci_mmcfg_nvidia_mcp55.extcfg_base_mask
-ffffffff82483ba0 d pci_mmcfg_nvidia_mcp55.extcfg_sizebus
-ffffffff82483bb0 d pci_crs_quirks
-ffffffff82484d30 d pciirq_dmi_table
-ffffffff82485140 d can_skip_pciprobe_dmi_table
-ffffffff824856a0 d pciprobe_dmi_table
-ffffffff82487840 d compressed_formats
-ffffffff82487918 d __setup_str_debug_boot_weak_hash_enable
-ffffffff8248792d d __setup_str_no_hash_pointers_enable
-ffffffff82487940 d __event_initcall_level
-ffffffff82487940 D __start_ftrace_events
-ffffffff82487948 d __event_initcall_start
-ffffffff82487950 d __event_initcall_finish
-ffffffff82487958 d __event_emulate_vsyscall
-ffffffff82487960 d __event_local_timer_entry
-ffffffff82487968 d __event_local_timer_exit
-ffffffff82487970 d __event_spurious_apic_entry
-ffffffff82487978 d __event_spurious_apic_exit
-ffffffff82487980 d __event_error_apic_entry
-ffffffff82487988 d __event_error_apic_exit
-ffffffff82487990 d __event_x86_platform_ipi_entry
-ffffffff82487998 d __event_x86_platform_ipi_exit
-ffffffff824879a0 d __event_irq_work_entry
-ffffffff824879a8 d __event_irq_work_exit
-ffffffff824879b0 d __event_reschedule_entry
-ffffffff824879b8 d __event_reschedule_exit
-ffffffff824879c0 d __event_call_function_entry
-ffffffff824879c8 d __event_call_function_exit
-ffffffff824879d0 d __event_call_function_single_entry
-ffffffff824879d8 d __event_call_function_single_exit
-ffffffff824879e0 d __event_thermal_apic_entry
-ffffffff824879e8 d __event_thermal_apic_exit
-ffffffff824879f0 d __event_vector_config
-ffffffff824879f8 d __event_vector_update
-ffffffff82487a00 d __event_vector_clear
-ffffffff82487a08 d __event_vector_reserve_managed
-ffffffff82487a10 d __event_vector_reserve
-ffffffff82487a18 d __event_vector_alloc
-ffffffff82487a20 d __event_vector_alloc_managed
-ffffffff82487a28 d __event_vector_activate
-ffffffff82487a30 d __event_vector_deactivate
-ffffffff82487a38 d __event_vector_teardown
-ffffffff82487a40 d __event_vector_setup
-ffffffff82487a48 d __event_vector_free_moved
-ffffffff82487a50 d __event_nmi_handler
-ffffffff82487a58 d __event_x86_fpu_before_save
-ffffffff82487a60 d __event_x86_fpu_after_save
-ffffffff82487a68 d __event_x86_fpu_before_restore
-ffffffff82487a70 d __event_x86_fpu_after_restore
-ffffffff82487a78 d __event_x86_fpu_regs_activated
-ffffffff82487a80 d __event_x86_fpu_regs_deactivated
-ffffffff82487a88 d __event_x86_fpu_init_state
-ffffffff82487a90 d __event_x86_fpu_dropped
-ffffffff82487a98 d __event_x86_fpu_copy_src
-ffffffff82487aa0 d __event_x86_fpu_copy_dst
-ffffffff82487aa8 d __event_x86_fpu_xstate_check_failed
-ffffffff82487ab0 d __event_page_fault_user
-ffffffff82487ab8 d __event_page_fault_kernel
-ffffffff82487ac0 d __event_task_newtask
-ffffffff82487ac8 d __event_task_rename
-ffffffff82487ad0 d __event_cpuhp_enter
-ffffffff82487ad8 d __event_cpuhp_multi_enter
-ffffffff82487ae0 d __event_cpuhp_exit
-ffffffff82487ae8 d __event_irq_handler_entry
-ffffffff82487af0 d __event_irq_handler_exit
-ffffffff82487af8 d __event_softirq_entry
-ffffffff82487b00 d __event_softirq_exit
-ffffffff82487b08 d __event_softirq_raise
-ffffffff82487b10 d __event_tasklet_entry
-ffffffff82487b18 d __event_tasklet_exit
-ffffffff82487b20 d __event_signal_generate
-ffffffff82487b28 d __event_signal_deliver
-ffffffff82487b30 d __event_workqueue_queue_work
-ffffffff82487b38 d __event_workqueue_activate_work
-ffffffff82487b40 d __event_workqueue_execute_start
-ffffffff82487b48 d __event_workqueue_execute_end
-ffffffff82487b50 d __event_sched_kthread_stop
-ffffffff82487b58 d __event_sched_kthread_stop_ret
-ffffffff82487b60 d __event_sched_kthread_work_queue_work
-ffffffff82487b68 d __event_sched_kthread_work_execute_start
-ffffffff82487b70 d __event_sched_kthread_work_execute_end
-ffffffff82487b78 d __event_sched_waking
-ffffffff82487b80 d __event_sched_wakeup
-ffffffff82487b88 d __event_sched_wakeup_new
-ffffffff82487b90 d __event_sched_switch
-ffffffff82487b98 d __event_sched_migrate_task
-ffffffff82487ba0 d __event_sched_process_free
-ffffffff82487ba8 d __event_sched_process_exit
-ffffffff82487bb0 d __event_sched_wait_task
-ffffffff82487bb8 d __event_sched_process_wait
-ffffffff82487bc0 d __event_sched_process_fork
-ffffffff82487bc8 d __event_sched_process_exec
-ffffffff82487bd0 d __event_sched_stat_wait
-ffffffff82487bd8 d __event_sched_stat_sleep
-ffffffff82487be0 d __event_sched_stat_iowait
-ffffffff82487be8 d __event_sched_stat_blocked
-ffffffff82487bf0 d __event_sched_blocked_reason
-ffffffff82487bf8 d __event_sched_stat_runtime
-ffffffff82487c00 d __event_sched_pi_setprio
-ffffffff82487c08 d __event_sched_process_hang
-ffffffff82487c10 d __event_sched_move_numa
-ffffffff82487c18 d __event_sched_stick_numa
-ffffffff82487c20 d __event_sched_swap_numa
-ffffffff82487c28 d __event_sched_wake_idle_without_ipi
-ffffffff82487c30 d __event_contention_begin
-ffffffff82487c38 d __event_contention_end
-ffffffff82487c40 d __event_console
-ffffffff82487c48 d __event_irq_matrix_online
-ffffffff82487c50 d __event_irq_matrix_offline
-ffffffff82487c58 d __event_irq_matrix_reserve
-ffffffff82487c60 d __event_irq_matrix_remove_reserved
-ffffffff82487c68 d __event_irq_matrix_assign_system
-ffffffff82487c70 d __event_irq_matrix_alloc_reserved
-ffffffff82487c78 d __event_irq_matrix_reserve_managed
-ffffffff82487c80 d __event_irq_matrix_remove_managed
-ffffffff82487c88 d __event_irq_matrix_alloc_managed
-ffffffff82487c90 d __event_irq_matrix_assign
-ffffffff82487c98 d __event_irq_matrix_alloc
-ffffffff82487ca0 d __event_irq_matrix_free
-ffffffff82487ca8 d __event_rcu_utilization
-ffffffff82487cb0 d __event_rcu_grace_period
-ffffffff82487cb8 d __event_rcu_future_grace_period
-ffffffff82487cc0 d __event_rcu_grace_period_init
-ffffffff82487cc8 d __event_rcu_exp_grace_period
-ffffffff82487cd0 d __event_rcu_exp_funnel_lock
-ffffffff82487cd8 d __event_rcu_nocb_wake
-ffffffff82487ce0 d __event_rcu_preempt_task
-ffffffff82487ce8 d __event_rcu_unlock_preempted_task
-ffffffff82487cf0 d __event_rcu_quiescent_state_report
-ffffffff82487cf8 d __event_rcu_fqs
-ffffffff82487d00 d __event_rcu_stall_warning
-ffffffff82487d08 d __event_rcu_dyntick
-ffffffff82487d10 d __event_rcu_callback
-ffffffff82487d18 d __event_rcu_segcb_stats
-ffffffff82487d20 d __event_rcu_kvfree_callback
-ffffffff82487d28 d __event_rcu_batch_start
-ffffffff82487d30 d __event_rcu_invoke_callback
-ffffffff82487d38 d __event_rcu_invoke_kvfree_callback
-ffffffff82487d40 d __event_rcu_invoke_kfree_bulk_callback
-ffffffff82487d48 d __event_rcu_batch_end
-ffffffff82487d50 d __event_rcu_torture_read
-ffffffff82487d58 d __event_rcu_barrier
-ffffffff82487d60 d __event_swiotlb_bounced
-ffffffff82487d68 d __event_sys_enter
-ffffffff82487d70 d __event_sys_exit
-ffffffff82487d78 d __event_timer_init
-ffffffff82487d80 d __event_timer_start
-ffffffff82487d88 d __event_timer_expire_entry
-ffffffff82487d90 d __event_timer_expire_exit
-ffffffff82487d98 d __event_timer_cancel
-ffffffff82487da0 d __event_hrtimer_init
-ffffffff82487da8 d __event_hrtimer_start
-ffffffff82487db0 d __event_hrtimer_expire_entry
-ffffffff82487db8 d __event_hrtimer_expire_exit
-ffffffff82487dc0 d __event_hrtimer_cancel
-ffffffff82487dc8 d __event_itimer_state
-ffffffff82487dd0 d __event_itimer_expire
-ffffffff82487dd8 d __event_tick_stop
-ffffffff82487de0 d __event_alarmtimer_suspend
-ffffffff82487de8 d __event_alarmtimer_fired
-ffffffff82487df0 d __event_alarmtimer_start
-ffffffff82487df8 d __event_alarmtimer_cancel
-ffffffff82487e00 d __event_cgroup_setup_root
-ffffffff82487e08 d __event_cgroup_destroy_root
-ffffffff82487e10 d __event_cgroup_remount
-ffffffff82487e18 d __event_cgroup_mkdir
-ffffffff82487e20 d __event_cgroup_rmdir
-ffffffff82487e28 d __event_cgroup_release
-ffffffff82487e30 d __event_cgroup_rename
-ffffffff82487e38 d __event_cgroup_freeze
-ffffffff82487e40 d __event_cgroup_unfreeze
-ffffffff82487e48 d __event_cgroup_attach_task
-ffffffff82487e50 d __event_cgroup_transfer_tasks
-ffffffff82487e58 d __event_cgroup_notify_populated
-ffffffff82487e60 d __event_cgroup_notify_frozen
-ffffffff82487e68 d __event_function
-ffffffff82487e70 d __event_funcgraph_entry
-ffffffff82487e78 d __event_funcgraph_exit
-ffffffff82487e80 d __event_context_switch
-ffffffff82487e88 d __event_wakeup
-ffffffff82487e90 d __event_kernel_stack
-ffffffff82487e98 d __event_user_stack
-ffffffff82487ea0 d __event_bprint
-ffffffff82487ea8 d __event_print
-ffffffff82487eb0 d __event_raw_data
-ffffffff82487eb8 d __event_bputs
-ffffffff82487ec0 d __event_mmiotrace_rw
-ffffffff82487ec8 d __event_mmiotrace_map
-ffffffff82487ed0 d __event_branch
-ffffffff82487ed8 d __event_hwlat
-ffffffff82487ee0 d __event_func_repeats
-ffffffff82487ee8 d __event_osnoise
-ffffffff82487ef0 d __event_timerlat
-ffffffff82487ef8 d __event_error_report_end
-ffffffff82487f00 d __event_cpu_idle
-ffffffff82487f08 d __event_cpu_idle_miss
-ffffffff82487f10 d __event_powernv_throttle
-ffffffff82487f18 d __event_pstate_sample
-ffffffff82487f20 d __event_cpu_frequency
-ffffffff82487f28 d __event_cpu_frequency_limits
-ffffffff82487f30 d __event_device_pm_callback_start
-ffffffff82487f38 d __event_device_pm_callback_end
-ffffffff82487f40 d __event_suspend_resume
-ffffffff82487f48 d __event_wakeup_source_activate
-ffffffff82487f50 d __event_wakeup_source_deactivate
-ffffffff82487f58 d __event_clock_enable
-ffffffff82487f60 d __event_clock_disable
-ffffffff82487f68 d __event_clock_set_rate
-ffffffff82487f70 d __event_power_domain_target
-ffffffff82487f78 d __event_pm_qos_add_request
-ffffffff82487f80 d __event_pm_qos_update_request
-ffffffff82487f88 d __event_pm_qos_remove_request
-ffffffff82487f90 d __event_pm_qos_update_target
-ffffffff82487f98 d __event_pm_qos_update_flags
-ffffffff82487fa0 d __event_dev_pm_qos_add_request
-ffffffff82487fa8 d __event_dev_pm_qos_update_request
-ffffffff82487fb0 d __event_dev_pm_qos_remove_request
-ffffffff82487fb8 d __event_guest_halt_poll_ns
-ffffffff82487fc0 d __event_rpm_suspend
-ffffffff82487fc8 d __event_rpm_resume
-ffffffff82487fd0 d __event_rpm_idle
-ffffffff82487fd8 d __event_rpm_usage
-ffffffff82487fe0 d __event_rpm_return_int
-ffffffff82487fe8 d __event_xdp_exception
-ffffffff82487ff0 d __event_xdp_bulk_tx
-ffffffff82487ff8 d __event_xdp_redirect
-ffffffff82488000 d __event_xdp_redirect_err
-ffffffff82488008 d __event_xdp_redirect_map
-ffffffff82488010 d __event_xdp_redirect_map_err
-ffffffff82488018 d __event_xdp_cpumap_kthread
-ffffffff82488020 d __event_xdp_cpumap_enqueue
-ffffffff82488028 d __event_xdp_devmap_xmit
-ffffffff82488030 d __event_mem_disconnect
-ffffffff82488038 d __event_mem_connect
-ffffffff82488040 d __event_mem_return_failed
-ffffffff82488048 d __event_rseq_update
-ffffffff82488050 d __event_rseq_ip_fixup
-ffffffff82488058 d __event_mm_filemap_delete_from_page_cache
-ffffffff82488060 d __event_mm_filemap_add_to_page_cache
-ffffffff82488068 d __event_filemap_set_wb_err
-ffffffff82488070 d __event_file_check_and_advance_wb_err
-ffffffff82488078 d __event_oom_score_adj_update
-ffffffff82488080 d __event_reclaim_retry_zone
-ffffffff82488088 d __event_mark_victim
-ffffffff82488090 d __event_wake_reaper
-ffffffff82488098 d __event_start_task_reaping
-ffffffff824880a0 d __event_finish_task_reaping
-ffffffff824880a8 d __event_skip_task_reaping
-ffffffff824880b0 d __event_compact_retry
-ffffffff824880b8 d __event_mm_lru_insertion
-ffffffff824880c0 d __event_mm_lru_activate
-ffffffff824880c8 d __event_mm_vmscan_kswapd_sleep
-ffffffff824880d0 d __event_mm_vmscan_kswapd_wake
-ffffffff824880d8 d __event_mm_vmscan_wakeup_kswapd
-ffffffff824880e0 d __event_mm_vmscan_direct_reclaim_begin
-ffffffff824880e8 d __event_mm_vmscan_memcg_reclaim_begin
-ffffffff824880f0 d __event_mm_vmscan_memcg_softlimit_reclaim_begin
-ffffffff824880f8 d __event_mm_vmscan_direct_reclaim_end
-ffffffff82488100 d __event_mm_vmscan_memcg_reclaim_end
-ffffffff82488108 d __event_mm_vmscan_memcg_softlimit_reclaim_end
-ffffffff82488110 d __event_mm_shrink_slab_start
-ffffffff82488118 d __event_mm_shrink_slab_end
-ffffffff82488120 d __event_mm_vmscan_lru_isolate
-ffffffff82488128 d __event_mm_vmscan_write_folio
-ffffffff82488130 d __event_mm_vmscan_lru_shrink_inactive
-ffffffff82488138 d __event_mm_vmscan_lru_shrink_active
-ffffffff82488140 d __event_mm_vmscan_node_reclaim_begin
-ffffffff82488148 d __event_mm_vmscan_node_reclaim_end
-ffffffff82488150 d __event_mm_vmscan_throttled
-ffffffff82488158 d __event_percpu_alloc_percpu
-ffffffff82488160 d __event_percpu_free_percpu
-ffffffff82488168 d __event_percpu_alloc_percpu_fail
-ffffffff82488170 d __event_percpu_create_chunk
-ffffffff82488178 d __event_percpu_destroy_chunk
-ffffffff82488180 d __event_kmem_cache_alloc
-ffffffff82488188 d __event_kmalloc
-ffffffff82488190 d __event_kfree
-ffffffff82488198 d __event_kmem_cache_free
-ffffffff824881a0 d __event_mm_page_free
-ffffffff824881a8 d __event_mm_page_free_batched
-ffffffff824881b0 d __event_mm_page_alloc
-ffffffff824881b8 d __event_mm_page_alloc_zone_locked
-ffffffff824881c0 d __event_mm_page_pcpu_drain
-ffffffff824881c8 d __event_mm_page_alloc_extfrag
-ffffffff824881d0 d __event_rss_stat
-ffffffff824881d8 d __event_mm_compaction_isolate_migratepages
-ffffffff824881e0 d __event_mm_compaction_isolate_freepages
-ffffffff824881e8 d __event_mm_compaction_migratepages
-ffffffff824881f0 d __event_mm_compaction_begin
-ffffffff824881f8 d __event_mm_compaction_end
-ffffffff82488200 d __event_mm_compaction_try_to_compact_pages
-ffffffff82488208 d __event_mm_compaction_finished
-ffffffff82488210 d __event_mm_compaction_suitable
-ffffffff82488218 d __event_mm_compaction_deferred
-ffffffff82488220 d __event_mm_compaction_defer_compaction
-ffffffff82488228 d __event_mm_compaction_defer_reset
-ffffffff82488230 d __event_mm_compaction_kcompactd_sleep
-ffffffff82488238 d __event_mm_compaction_wakeup_kcompactd
-ffffffff82488240 d __event_mm_compaction_kcompactd_wake
-ffffffff82488248 d __event_mmap_lock_start_locking
-ffffffff82488250 d __event_mmap_lock_released
-ffffffff82488258 d __event_mmap_lock_acquire_returned
-ffffffff82488260 d __event_vm_unmapped_area
-ffffffff82488268 d __event_vma_mas_szero
-ffffffff82488270 d __event_vma_store
-ffffffff82488278 d __event_exit_mmap
-ffffffff82488280 d __event_tlb_flush
-ffffffff82488288 d __event_mm_migrate_pages
-ffffffff82488290 d __event_mm_migrate_pages_start
-ffffffff82488298 d __event_set_migration_pte
-ffffffff824882a0 d __event_remove_migration_pte
-ffffffff824882a8 d __event_hugepage_set_pmd
-ffffffff824882b0 d __event_hugepage_update
-ffffffff824882b8 d __event_set_migration_pmd
-ffffffff824882c0 d __event_remove_migration_pmd
-ffffffff824882c8 d __event_mm_khugepaged_scan_pmd
-ffffffff824882d0 d __event_mm_collapse_huge_page
-ffffffff824882d8 d __event_mm_collapse_huge_page_isolate
-ffffffff824882e0 d __event_mm_collapse_huge_page_swapin
-ffffffff824882e8 d __event_mm_khugepaged_scan_file
-ffffffff824882f0 d __event_test_pages_isolated
-ffffffff824882f8 d __event_damon_aggregated
-ffffffff82488300 d __event_writeback_dirty_folio
-ffffffff82488308 d __event_folio_wait_writeback
-ffffffff82488310 d __event_writeback_mark_inode_dirty
-ffffffff82488318 d __event_writeback_dirty_inode_start
-ffffffff82488320 d __event_writeback_dirty_inode
-ffffffff82488328 d __event_inode_foreign_history
-ffffffff82488330 d __event_inode_switch_wbs
-ffffffff82488338 d __event_track_foreign_dirty
-ffffffff82488340 d __event_flush_foreign
-ffffffff82488348 d __event_writeback_write_inode_start
-ffffffff82488350 d __event_writeback_write_inode
-ffffffff82488358 d __event_writeback_queue
-ffffffff82488360 d __event_writeback_exec
-ffffffff82488368 d __event_writeback_start
-ffffffff82488370 d __event_writeback_written
-ffffffff82488378 d __event_writeback_wait
-ffffffff82488380 d __event_writeback_pages_written
-ffffffff82488388 d __event_writeback_wake_background
-ffffffff82488390 d __event_writeback_bdi_register
-ffffffff82488398 d __event_wbc_writepage
-ffffffff824883a0 d __event_writeback_queue_io
-ffffffff824883a8 d __event_global_dirty_state
-ffffffff824883b0 d __event_bdi_dirty_ratelimit
-ffffffff824883b8 d __event_balance_dirty_pages
-ffffffff824883c0 d __event_writeback_sb_inodes_requeue
-ffffffff824883c8 d __event_writeback_single_inode_start
-ffffffff824883d0 d __event_writeback_single_inode
-ffffffff824883d8 d __event_writeback_lazytime
-ffffffff824883e0 d __event_writeback_lazytime_iput
-ffffffff824883e8 d __event_writeback_dirty_inode_enqueue
-ffffffff824883f0 d __event_sb_mark_inode_writeback
-ffffffff824883f8 d __event_sb_clear_inode_writeback
-ffffffff82488400 d __event_locks_get_lock_context
-ffffffff82488408 d __event_posix_lock_inode
-ffffffff82488410 d __event_fcntl_setlk
-ffffffff82488418 d __event_locks_remove_posix
-ffffffff82488420 d __event_flock_lock_inode
-ffffffff82488428 d __event_break_lease_noblock
-ffffffff82488430 d __event_break_lease_block
-ffffffff82488438 d __event_break_lease_unblock
-ffffffff82488440 d __event_generic_delete_lease
-ffffffff82488448 d __event_time_out_leases
-ffffffff82488450 d __event_generic_add_lease
-ffffffff82488458 d __event_leases_conflict
-ffffffff82488460 d __event_iomap_readpage
-ffffffff82488468 d __event_iomap_readahead
-ffffffff82488470 d __event_iomap_writepage
-ffffffff82488478 d __event_iomap_release_folio
-ffffffff82488480 d __event_iomap_invalidate_folio
-ffffffff82488488 d __event_iomap_dio_invalidate_fail
-ffffffff82488490 d __event_iomap_iter_dstmap
-ffffffff82488498 d __event_iomap_iter_srcmap
-ffffffff824884a0 d __event_iomap_writepage_map
-ffffffff824884a8 d __event_iomap_iter
-ffffffff824884b0 d __event_ext4_other_inode_update_time
-ffffffff824884b8 d __event_ext4_free_inode
-ffffffff824884c0 d __event_ext4_request_inode
-ffffffff824884c8 d __event_ext4_allocate_inode
-ffffffff824884d0 d __event_ext4_evict_inode
-ffffffff824884d8 d __event_ext4_drop_inode
-ffffffff824884e0 d __event_ext4_nfs_commit_metadata
-ffffffff824884e8 d __event_ext4_mark_inode_dirty
-ffffffff824884f0 d __event_ext4_begin_ordered_truncate
-ffffffff824884f8 d __event_ext4_write_begin
-ffffffff82488500 d __event_ext4_da_write_begin
-ffffffff82488508 d __event_ext4_write_end
-ffffffff82488510 d __event_ext4_journalled_write_end
-ffffffff82488518 d __event_ext4_da_write_end
-ffffffff82488520 d __event_ext4_writepages
-ffffffff82488528 d __event_ext4_da_write_pages
-ffffffff82488530 d __event_ext4_da_write_pages_extent
-ffffffff82488538 d __event_ext4_writepages_result
-ffffffff82488540 d __event_ext4_writepage
-ffffffff82488548 d __event_ext4_readpage
-ffffffff82488550 d __event_ext4_releasepage
-ffffffff82488558 d __event_ext4_invalidate_folio
-ffffffff82488560 d __event_ext4_journalled_invalidate_folio
-ffffffff82488568 d __event_ext4_discard_blocks
-ffffffff82488570 d __event_ext4_mb_new_inode_pa
-ffffffff82488578 d __event_ext4_mb_new_group_pa
-ffffffff82488580 d __event_ext4_mb_release_inode_pa
-ffffffff82488588 d __event_ext4_mb_release_group_pa
-ffffffff82488590 d __event_ext4_discard_preallocations
-ffffffff82488598 d __event_ext4_mb_discard_preallocations
-ffffffff824885a0 d __event_ext4_request_blocks
-ffffffff824885a8 d __event_ext4_allocate_blocks
-ffffffff824885b0 d __event_ext4_free_blocks
-ffffffff824885b8 d __event_ext4_sync_file_enter
-ffffffff824885c0 d __event_ext4_sync_file_exit
-ffffffff824885c8 d __event_ext4_sync_fs
-ffffffff824885d0 d __event_ext4_alloc_da_blocks
-ffffffff824885d8 d __event_ext4_mballoc_alloc
-ffffffff824885e0 d __event_ext4_mballoc_prealloc
-ffffffff824885e8 d __event_ext4_mballoc_discard
-ffffffff824885f0 d __event_ext4_mballoc_free
-ffffffff824885f8 d __event_ext4_forget
-ffffffff82488600 d __event_ext4_da_update_reserve_space
-ffffffff82488608 d __event_ext4_da_reserve_space
-ffffffff82488610 d __event_ext4_da_release_space
-ffffffff82488618 d __event_ext4_mb_bitmap_load
-ffffffff82488620 d __event_ext4_mb_buddy_bitmap_load
-ffffffff82488628 d __event_ext4_load_inode_bitmap
-ffffffff82488630 d __event_ext4_read_block_bitmap_load
-ffffffff82488638 d __event_ext4_fallocate_enter
-ffffffff82488640 d __event_ext4_punch_hole
-ffffffff82488648 d __event_ext4_zero_range
-ffffffff82488650 d __event_ext4_fallocate_exit
-ffffffff82488658 d __event_ext4_unlink_enter
-ffffffff82488660 d __event_ext4_unlink_exit
-ffffffff82488668 d __event_ext4_truncate_enter
-ffffffff82488670 d __event_ext4_truncate_exit
-ffffffff82488678 d __event_ext4_ext_convert_to_initialized_enter
-ffffffff82488680 d __event_ext4_ext_convert_to_initialized_fastpath
-ffffffff82488688 d __event_ext4_ext_map_blocks_enter
-ffffffff82488690 d __event_ext4_ind_map_blocks_enter
-ffffffff82488698 d __event_ext4_ext_map_blocks_exit
-ffffffff824886a0 d __event_ext4_ind_map_blocks_exit
-ffffffff824886a8 d __event_ext4_ext_load_extent
-ffffffff824886b0 d __event_ext4_load_inode
-ffffffff824886b8 d __event_ext4_journal_start
-ffffffff824886c0 d __event_ext4_journal_start_reserved
-ffffffff824886c8 d __event_ext4_trim_extent
-ffffffff824886d0 d __event_ext4_trim_all_free
-ffffffff824886d8 d __event_ext4_ext_handle_unwritten_extents
-ffffffff824886e0 d __event_ext4_get_implied_cluster_alloc_exit
-ffffffff824886e8 d __event_ext4_ext_show_extent
-ffffffff824886f0 d __event_ext4_remove_blocks
-ffffffff824886f8 d __event_ext4_ext_rm_leaf
-ffffffff82488700 d __event_ext4_ext_rm_idx
-ffffffff82488708 d __event_ext4_ext_remove_space
-ffffffff82488710 d __event_ext4_ext_remove_space_done
-ffffffff82488718 d __event_ext4_es_insert_extent
-ffffffff82488720 d __event_ext4_es_cache_extent
-ffffffff82488728 d __event_ext4_es_remove_extent
-ffffffff82488730 d __event_ext4_es_find_extent_range_enter
-ffffffff82488738 d __event_ext4_es_find_extent_range_exit
-ffffffff82488740 d __event_ext4_es_lookup_extent_enter
-ffffffff82488748 d __event_ext4_es_lookup_extent_exit
-ffffffff82488750 d __event_ext4_es_shrink_count
-ffffffff82488758 d __event_ext4_es_shrink_scan_enter
-ffffffff82488760 d __event_ext4_es_shrink_scan_exit
-ffffffff82488768 d __event_ext4_collapse_range
-ffffffff82488770 d __event_ext4_insert_range
-ffffffff82488778 d __event_ext4_es_shrink
-ffffffff82488780 d __event_ext4_es_insert_delayed_block
-ffffffff82488788 d __event_ext4_fsmap_low_key
-ffffffff82488790 d __event_ext4_fsmap_high_key
-ffffffff82488798 d __event_ext4_fsmap_mapping
-ffffffff824887a0 d __event_ext4_getfsmap_low_key
-ffffffff824887a8 d __event_ext4_getfsmap_high_key
-ffffffff824887b0 d __event_ext4_getfsmap_mapping
-ffffffff824887b8 d __event_ext4_shutdown
-ffffffff824887c0 d __event_ext4_error
-ffffffff824887c8 d __event_ext4_prefetch_bitmaps
-ffffffff824887d0 d __event_ext4_lazy_itable_init
-ffffffff824887d8 d __event_ext4_fc_replay_scan
-ffffffff824887e0 d __event_ext4_fc_replay
-ffffffff824887e8 d __event_ext4_fc_commit_start
-ffffffff824887f0 d __event_ext4_fc_commit_stop
-ffffffff824887f8 d __event_ext4_fc_stats
-ffffffff82488800 d __event_ext4_fc_track_create
-ffffffff82488808 d __event_ext4_fc_track_link
-ffffffff82488810 d __event_ext4_fc_track_unlink
-ffffffff82488818 d __event_ext4_fc_track_inode
-ffffffff82488820 d __event_ext4_fc_track_range
-ffffffff82488828 d __event_ext4_fc_cleanup
-ffffffff82488830 d __event_ext4_update_sb
-ffffffff82488838 d __event_jbd2_checkpoint
-ffffffff82488840 d __event_jbd2_start_commit
-ffffffff82488848 d __event_jbd2_commit_locking
-ffffffff82488850 d __event_jbd2_commit_flushing
-ffffffff82488858 d __event_jbd2_commit_logging
-ffffffff82488860 d __event_jbd2_drop_transaction
-ffffffff82488868 d __event_jbd2_end_commit
-ffffffff82488870 d __event_jbd2_submit_inode_data
-ffffffff82488878 d __event_jbd2_handle_start
-ffffffff82488880 d __event_jbd2_handle_restart
-ffffffff82488888 d __event_jbd2_handle_extend
-ffffffff82488890 d __event_jbd2_handle_stats
-ffffffff82488898 d __event_jbd2_run_stats
-ffffffff824888a0 d __event_jbd2_checkpoint_stats
-ffffffff824888a8 d __event_jbd2_update_log_tail
-ffffffff824888b0 d __event_jbd2_write_superblock
-ffffffff824888b8 d __event_jbd2_lock_buffer_stall
-ffffffff824888c0 d __event_jbd2_shrink_count
-ffffffff824888c8 d __event_jbd2_shrink_scan_enter
-ffffffff824888d0 d __event_jbd2_shrink_scan_exit
-ffffffff824888d8 d __event_jbd2_shrink_checkpoint_list
-ffffffff824888e0 d __event_erofs_lookup
-ffffffff824888e8 d __event_erofs_fill_inode
-ffffffff824888f0 d __event_erofs_readpage
-ffffffff824888f8 d __event_erofs_readpages
-ffffffff82488900 d __event_erofs_map_blocks_enter
-ffffffff82488908 d __event_z_erofs_map_blocks_iter_enter
-ffffffff82488910 d __event_erofs_map_blocks_exit
-ffffffff82488918 d __event_z_erofs_map_blocks_iter_exit
-ffffffff82488920 d __event_erofs_destroy_inode
-ffffffff82488928 d __event_selinux_audited
-ffffffff82488930 d __event_block_touch_buffer
-ffffffff82488938 d __event_block_dirty_buffer
-ffffffff82488940 d __event_block_rq_requeue
-ffffffff82488948 d __event_block_rq_complete
-ffffffff82488950 d __event_block_rq_error
-ffffffff82488958 d __event_block_rq_insert
-ffffffff82488960 d __event_block_rq_issue
-ffffffff82488968 d __event_block_rq_merge
-ffffffff82488970 d __event_block_bio_complete
-ffffffff82488978 d __event_block_bio_bounce
-ffffffff82488980 d __event_block_bio_backmerge
-ffffffff82488988 d __event_block_bio_frontmerge
-ffffffff82488990 d __event_block_bio_queue
-ffffffff82488998 d __event_block_getrq
-ffffffff824889a0 d __event_block_plug
-ffffffff824889a8 d __event_block_unplug
-ffffffff824889b0 d __event_block_split
-ffffffff824889b8 d __event_block_bio_remap
-ffffffff824889c0 d __event_block_rq_remap
-ffffffff824889c8 d __event_iocost_iocg_activate
-ffffffff824889d0 d __event_iocost_iocg_idle
-ffffffff824889d8 d __event_iocost_inuse_shortage
-ffffffff824889e0 d __event_iocost_inuse_transfer
-ffffffff824889e8 d __event_iocost_inuse_adjust
-ffffffff824889f0 d __event_iocost_ioc_vrate_adj
-ffffffff824889f8 d __event_iocost_iocg_forgive_debt
-ffffffff82488a00 d __event_kyber_latency
-ffffffff82488a08 d __event_kyber_adjust
-ffffffff82488a10 d __event_kyber_throttled
-ffffffff82488a18 d __event_io_uring_create
-ffffffff82488a20 d __event_io_uring_register
-ffffffff82488a28 d __event_io_uring_file_get
-ffffffff82488a30 d __event_io_uring_queue_async_work
-ffffffff82488a38 d __event_io_uring_defer
-ffffffff82488a40 d __event_io_uring_link
-ffffffff82488a48 d __event_io_uring_cqring_wait
-ffffffff82488a50 d __event_io_uring_fail_link
-ffffffff82488a58 d __event_io_uring_complete
-ffffffff82488a60 d __event_io_uring_submit_sqe
-ffffffff82488a68 d __event_io_uring_poll_arm
-ffffffff82488a70 d __event_io_uring_task_add
-ffffffff82488a78 d __event_io_uring_req_failed
-ffffffff82488a80 d __event_io_uring_cqe_overflow
-ffffffff82488a88 d __event_io_uring_task_work_run
-ffffffff82488a90 d __event_io_uring_short_write
-ffffffff82488a98 d __event_io_uring_local_work_run
-ffffffff82488aa0 d __event_read_msr
-ffffffff82488aa8 d __event_write_msr
-ffffffff82488ab0 d __event_rdpmc
-ffffffff82488ab8 d __event_gpio_direction
-ffffffff82488ac0 d __event_gpio_value
-ffffffff82488ac8 d __event_add_device_to_group
-ffffffff82488ad0 d __event_remove_device_from_group
-ffffffff82488ad8 d __event_attach_device_to_domain
-ffffffff82488ae0 d __event_detach_device_from_domain
-ffffffff82488ae8 d __event_map
-ffffffff82488af0 d __event_unmap
-ffffffff82488af8 d __event_io_page_fault
-ffffffff82488b00 d __event_regmap_reg_write
-ffffffff82488b08 d __event_regmap_reg_read
-ffffffff82488b10 d __event_regmap_reg_read_cache
-ffffffff82488b18 d __event_regmap_bulk_write
-ffffffff82488b20 d __event_regmap_bulk_read
-ffffffff82488b28 d __event_regmap_hw_read_start
-ffffffff82488b30 d __event_regmap_hw_read_done
-ffffffff82488b38 d __event_regmap_hw_write_start
-ffffffff82488b40 d __event_regmap_hw_write_done
-ffffffff82488b48 d __event_regcache_sync
-ffffffff82488b50 d __event_regmap_cache_only
-ffffffff82488b58 d __event_regmap_cache_bypass
-ffffffff82488b60 d __event_regmap_async_write_start
-ffffffff82488b68 d __event_regmap_async_io_complete
-ffffffff82488b70 d __event_regmap_async_complete_start
-ffffffff82488b78 d __event_regmap_async_complete_done
-ffffffff82488b80 d __event_regcache_drop_region
-ffffffff82488b88 d __event_devres_log
-ffffffff82488b90 d __event_dma_fence_emit
-ffffffff82488b98 d __event_dma_fence_init
-ffffffff82488ba0 d __event_dma_fence_destroy
-ffffffff82488ba8 d __event_dma_fence_enable_signal
-ffffffff82488bb0 d __event_dma_fence_signaled
-ffffffff82488bb8 d __event_dma_fence_wait_start
-ffffffff82488bc0 d __event_dma_fence_wait_end
-ffffffff82488bc8 d __event_rtc_set_time
-ffffffff82488bd0 d __event_rtc_read_time
-ffffffff82488bd8 d __event_rtc_set_alarm
-ffffffff82488be0 d __event_rtc_read_alarm
-ffffffff82488be8 d __event_rtc_irq_set_freq
-ffffffff82488bf0 d __event_rtc_irq_set_state
-ffffffff82488bf8 d __event_rtc_alarm_irq_enable
-ffffffff82488c00 d __event_rtc_set_offset
-ffffffff82488c08 d __event_rtc_read_offset
-ffffffff82488c10 d __event_rtc_timer_enqueue
-ffffffff82488c18 d __event_rtc_timer_dequeue
-ffffffff82488c20 d __event_rtc_timer_fired
-ffffffff82488c28 d __event_thermal_temperature
-ffffffff82488c30 d __event_cdev_update
-ffffffff82488c38 d __event_thermal_zone_trip
-ffffffff82488c40 d __event_thermal_power_cpu_get_power_simple
-ffffffff82488c48 d __event_thermal_power_cpu_limit
-ffffffff82488c50 d __event_watchdog_start
-ffffffff82488c58 d __event_watchdog_ping
-ffffffff82488c60 d __event_watchdog_stop
-ffffffff82488c68 d __event_watchdog_set_timeout
-ffffffff82488c70 d __event_mc_event
-ffffffff82488c78 d __event_arm_event
-ffffffff82488c80 d __event_non_standard_event
-ffffffff82488c88 d __event_aer_event
-ffffffff82488c90 d __event_kfree_skb
-ffffffff82488c98 d __event_consume_skb
-ffffffff82488ca0 d __event_skb_copy_datagram_iovec
-ffffffff82488ca8 d __event_net_dev_start_xmit
-ffffffff82488cb0 d __event_net_dev_xmit
-ffffffff82488cb8 d __event_net_dev_xmit_timeout
-ffffffff82488cc0 d __event_net_dev_queue
-ffffffff82488cc8 d __event_netif_receive_skb
-ffffffff82488cd0 d __event_netif_rx
-ffffffff82488cd8 d __event_napi_gro_frags_entry
-ffffffff82488ce0 d __event_napi_gro_receive_entry
-ffffffff82488ce8 d __event_netif_receive_skb_entry
-ffffffff82488cf0 d __event_netif_receive_skb_list_entry
-ffffffff82488cf8 d __event_netif_rx_entry
-ffffffff82488d00 d __event_napi_gro_frags_exit
-ffffffff82488d08 d __event_napi_gro_receive_exit
-ffffffff82488d10 d __event_netif_receive_skb_exit
-ffffffff82488d18 d __event_netif_rx_exit
-ffffffff82488d20 d __event_netif_receive_skb_list_exit
-ffffffff82488d28 d __event_napi_poll
-ffffffff82488d30 d __event_sock_rcvqueue_full
-ffffffff82488d38 d __event_sock_exceed_buf_limit
-ffffffff82488d40 d __event_inet_sock_set_state
-ffffffff82488d48 d __event_inet_sk_error_report
-ffffffff82488d50 d __event_udp_fail_queue_rcv_skb
-ffffffff82488d58 d __event_tcp_retransmit_skb
-ffffffff82488d60 d __event_tcp_send_reset
-ffffffff82488d68 d __event_tcp_receive_reset
-ffffffff82488d70 d __event_tcp_destroy_sock
-ffffffff82488d78 d __event_tcp_rcv_space_adjust
-ffffffff82488d80 d __event_tcp_retransmit_synack
-ffffffff82488d88 d __event_tcp_probe
-ffffffff82488d90 d __event_tcp_bad_csum
-ffffffff82488d98 d __event_tcp_cong_state_set
-ffffffff82488da0 d __event_fib_table_lookup
-ffffffff82488da8 d __event_qdisc_dequeue
-ffffffff82488db0 d __event_qdisc_enqueue
-ffffffff82488db8 d __event_qdisc_reset
-ffffffff82488dc0 d __event_qdisc_destroy
-ffffffff82488dc8 d __event_qdisc_create
-ffffffff82488dd0 d __event_br_fdb_add
-ffffffff82488dd8 d __event_br_fdb_external_learn_add
-ffffffff82488de0 d __event_fdb_delete
-ffffffff82488de8 d __event_br_fdb_update
-ffffffff82488df0 d __event_neigh_create
-ffffffff82488df8 d __event_neigh_update
-ffffffff82488e00 d __event_neigh_update_done
-ffffffff82488e08 d __event_neigh_timer_handler
-ffffffff82488e10 d __event_neigh_event_send_done
-ffffffff82488e18 d __event_neigh_event_send_dead
-ffffffff82488e20 d __event_neigh_cleanup_and_release
-ffffffff82488e28 d __event_netlink_extack
-ffffffff82488e30 d __event_fib6_table_lookup
-ffffffff82488e38 d __event_virtio_transport_alloc_pkt
-ffffffff82488e40 d __event_virtio_transport_recv_pkt
-ffffffff82488e48 d __event_ma_op
-ffffffff82488e50 d __event_ma_read
-ffffffff82488e58 d __event_ma_write
-ffffffff82488e60 d TRACE_SYSTEM_HI_SOFTIRQ
-ffffffff82488e60 D __start_ftrace_eval_maps
-ffffffff82488e60 D __stop_ftrace_events
-ffffffff82488e68 d TRACE_SYSTEM_TIMER_SOFTIRQ
-ffffffff82488e70 d TRACE_SYSTEM_NET_TX_SOFTIRQ
-ffffffff82488e78 d TRACE_SYSTEM_NET_RX_SOFTIRQ
-ffffffff82488e80 d TRACE_SYSTEM_BLOCK_SOFTIRQ
-ffffffff82488e88 d TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
-ffffffff82488e90 d TRACE_SYSTEM_TASKLET_SOFTIRQ
-ffffffff82488e98 d TRACE_SYSTEM_SCHED_SOFTIRQ
-ffffffff82488ea0 d TRACE_SYSTEM_HRTIMER_SOFTIRQ
-ffffffff82488ea8 d TRACE_SYSTEM_RCU_SOFTIRQ
-ffffffff82488eb0 d TRACE_SYSTEM_TICK_DEP_MASK_NONE
-ffffffff82488eb8 d TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
-ffffffff82488ec0 d TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
-ffffffff82488ec8 d TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
-ffffffff82488ed0 d TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
-ffffffff82488ed8 d TRACE_SYSTEM_TICK_DEP_BIT_SCHED
-ffffffff82488ee0 d TRACE_SYSTEM_TICK_DEP_MASK_SCHED
-ffffffff82488ee8 d TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
-ffffffff82488ef0 d TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
-ffffffff82488ef8 d TRACE_SYSTEM_TICK_DEP_BIT_RCU
-ffffffff82488f00 d TRACE_SYSTEM_TICK_DEP_MASK_RCU
-ffffffff82488f08 d TRACE_SYSTEM_ALARM_REALTIME
-ffffffff82488f10 d TRACE_SYSTEM_ALARM_BOOTTIME
-ffffffff82488f18 d TRACE_SYSTEM_ALARM_REALTIME_FREEZER
-ffffffff82488f20 d TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
-ffffffff82488f28 d TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
-ffffffff82488f30 d TRACE_SYSTEM_ERROR_DETECTOR_KASAN
-ffffffff82488f38 d TRACE_SYSTEM_ERROR_DETECTOR_WARN
-ffffffff82488f40 d TRACE_SYSTEM_XDP_ABORTED
-ffffffff82488f48 d TRACE_SYSTEM_XDP_DROP
-ffffffff82488f50 d TRACE_SYSTEM_XDP_PASS
-ffffffff82488f58 d TRACE_SYSTEM_XDP_TX
-ffffffff82488f60 d TRACE_SYSTEM_XDP_REDIRECT
-ffffffff82488f68 d TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
-ffffffff82488f70 d TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
-ffffffff82488f78 d TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
-ffffffff82488f80 d TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
-ffffffff82488f88 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff82488f90 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff82488f98 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff82488fa0 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff82488fa8 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff82488fb0 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff82488fb8 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff82488fc0 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff82488fc8 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff82488fd0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff82488fd8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff82488fe0 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff82488fe8 d TRACE_SYSTEM_ZONE_DMA
-ffffffff82488ff0 d TRACE_SYSTEM_ZONE_DMA32
-ffffffff82488ff8 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffff82489000 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff82489008 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff82489010 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff82489018 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff82489020 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff82489028 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff82489030 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff82489038 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff82489040 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff82489048 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff82489050 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff82489058 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff82489060 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff82489068 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff82489070 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff82489078 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff82489080 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff82489088 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff82489090 d TRACE_SYSTEM_ZONE_DMA
-ffffffff82489098 d TRACE_SYSTEM_ZONE_DMA32
-ffffffff824890a0 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffff824890a8 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff824890b0 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff824890b8 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff824890c0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff824890c8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff824890d0 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff824890d8 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff824890e0 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff824890e8 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff824890f0 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff824890f8 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff82489100 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff82489108 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff82489110 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff82489118 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff82489120 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff82489128 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff82489130 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff82489138 d TRACE_SYSTEM_ZONE_DMA
-ffffffff82489140 d TRACE_SYSTEM_ZONE_DMA32
-ffffffff82489148 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffff82489150 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff82489158 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff82489160 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff82489168 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff82489170 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff82489178 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff82489180 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff82489188 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff82489190 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff82489198 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff824891a0 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff824891a8 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff824891b0 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff824891b8 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff824891c0 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff824891c8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff824891d0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff824891d8 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff824891e0 d TRACE_SYSTEM_ZONE_DMA
-ffffffff824891e8 d TRACE_SYSTEM_ZONE_DMA32
-ffffffff824891f0 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffff824891f8 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff82489200 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff82489208 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff82489210 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff82489218 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff82489220 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff82489228 d TRACE_SYSTEM_MM_FILEPAGES
-ffffffff82489230 d TRACE_SYSTEM_MM_ANONPAGES
-ffffffff82489238 d TRACE_SYSTEM_MM_SWAPENTS
-ffffffff82489240 d TRACE_SYSTEM_MM_SHMEMPAGES
-ffffffff82489248 d TRACE_SYSTEM_COMPACT_SKIPPED
-ffffffff82489250 d TRACE_SYSTEM_COMPACT_DEFERRED
-ffffffff82489258 d TRACE_SYSTEM_COMPACT_CONTINUE
-ffffffff82489260 d TRACE_SYSTEM_COMPACT_SUCCESS
-ffffffff82489268 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
-ffffffff82489270 d TRACE_SYSTEM_COMPACT_COMPLETE
-ffffffff82489278 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
-ffffffff82489280 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
-ffffffff82489288 d TRACE_SYSTEM_COMPACT_CONTENDED
-ffffffff82489290 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
-ffffffff82489298 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
-ffffffff824892a0 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
-ffffffff824892a8 d TRACE_SYSTEM_ZONE_DMA
-ffffffff824892b0 d TRACE_SYSTEM_ZONE_DMA32
-ffffffff824892b8 d TRACE_SYSTEM_ZONE_NORMAL
-ffffffff824892c0 d TRACE_SYSTEM_ZONE_MOVABLE
-ffffffff824892c8 d TRACE_SYSTEM_LRU_INACTIVE_ANON
-ffffffff824892d0 d TRACE_SYSTEM_LRU_ACTIVE_ANON
-ffffffff824892d8 d TRACE_SYSTEM_LRU_INACTIVE_FILE
-ffffffff824892e0 d TRACE_SYSTEM_LRU_ACTIVE_FILE
-ffffffff824892e8 d TRACE_SYSTEM_LRU_UNEVICTABLE
-ffffffff824892f0 d TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
-ffffffff824892f8 d TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
-ffffffff82489300 d TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
-ffffffff82489308 d TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
-ffffffff82489310 d TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
-ffffffff82489318 d TRACE_SYSTEM_MIGRATE_ASYNC
-ffffffff82489320 d TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
-ffffffff82489328 d TRACE_SYSTEM_MIGRATE_SYNC
-ffffffff82489330 d TRACE_SYSTEM_MR_COMPACTION
-ffffffff82489338 d TRACE_SYSTEM_MR_MEMORY_FAILURE
-ffffffff82489340 d TRACE_SYSTEM_MR_MEMORY_HOTPLUG
-ffffffff82489348 d TRACE_SYSTEM_MR_SYSCALL
-ffffffff82489350 d TRACE_SYSTEM_MR_MEMPOLICY_MBIND
-ffffffff82489358 d TRACE_SYSTEM_MR_NUMA_MISPLACED
-ffffffff82489360 d TRACE_SYSTEM_MR_CONTIG_RANGE
-ffffffff82489368 d TRACE_SYSTEM_MR_LONGTERM_PIN
-ffffffff82489370 d TRACE_SYSTEM_MR_DEMOTION
-ffffffff82489378 d TRACE_SYSTEM_SCAN_FAIL
-ffffffff82489380 d TRACE_SYSTEM_SCAN_SUCCEED
-ffffffff82489388 d TRACE_SYSTEM_SCAN_PMD_NULL
-ffffffff82489390 d TRACE_SYSTEM_SCAN_PMD_NONE
-ffffffff82489398 d TRACE_SYSTEM_SCAN_PMD_MAPPED
-ffffffff824893a0 d TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
-ffffffff824893a8 d TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
-ffffffff824893b0 d TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
-ffffffff824893b8 d TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
-ffffffff824893c0 d TRACE_SYSTEM_SCAN_PTE_UFFD_WP
-ffffffff824893c8 d TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
-ffffffff824893d0 d TRACE_SYSTEM_SCAN_PAGE_RO
-ffffffff824893d8 d TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
-ffffffff824893e0 d TRACE_SYSTEM_SCAN_PAGE_NULL
-ffffffff824893e8 d TRACE_SYSTEM_SCAN_SCAN_ABORT
-ffffffff824893f0 d TRACE_SYSTEM_SCAN_PAGE_COUNT
-ffffffff824893f8 d TRACE_SYSTEM_SCAN_PAGE_LRU
-ffffffff82489400 d TRACE_SYSTEM_SCAN_PAGE_LOCK
-ffffffff82489408 d TRACE_SYSTEM_SCAN_PAGE_ANON
-ffffffff82489410 d TRACE_SYSTEM_SCAN_PAGE_COMPOUND
-ffffffff82489418 d TRACE_SYSTEM_SCAN_ANY_PROCESS
-ffffffff82489420 d TRACE_SYSTEM_SCAN_VMA_NULL
-ffffffff82489428 d TRACE_SYSTEM_SCAN_VMA_CHECK
-ffffffff82489430 d TRACE_SYSTEM_SCAN_ADDRESS_RANGE
-ffffffff82489438 d TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
-ffffffff82489440 d TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
-ffffffff82489448 d TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
-ffffffff82489450 d TRACE_SYSTEM_SCAN_TRUNCATED
-ffffffff82489458 d TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
-ffffffff82489460 d TRACE_SYSTEM_WB_REASON_BACKGROUND
-ffffffff82489468 d TRACE_SYSTEM_WB_REASON_VMSCAN
-ffffffff82489470 d TRACE_SYSTEM_WB_REASON_SYNC
-ffffffff82489478 d TRACE_SYSTEM_WB_REASON_PERIODIC
-ffffffff82489480 d TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
-ffffffff82489488 d TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
-ffffffff82489490 d TRACE_SYSTEM_WB_REASON_FORKER_THREAD
-ffffffff82489498 d TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
-ffffffff824894a0 d TRACE_SYSTEM_BH_New
-ffffffff824894a8 d TRACE_SYSTEM_BH_Mapped
-ffffffff824894b0 d TRACE_SYSTEM_BH_Unwritten
-ffffffff824894b8 d TRACE_SYSTEM_BH_Boundary
-ffffffff824894c0 d TRACE_SYSTEM_ES_WRITTEN_B
-ffffffff824894c8 d TRACE_SYSTEM_ES_UNWRITTEN_B
-ffffffff824894d0 d TRACE_SYSTEM_ES_DELAYED_B
-ffffffff824894d8 d TRACE_SYSTEM_ES_HOLE_B
-ffffffff824894e0 d TRACE_SYSTEM_ES_REFERENCED_B
-ffffffff824894e8 d TRACE_SYSTEM_EXT4_FC_REASON_XATTR
-ffffffff824894f0 d TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
-ffffffff824894f8 d TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
-ffffffff82489500 d TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
-ffffffff82489508 d TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
-ffffffff82489510 d TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
-ffffffff82489518 d TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
-ffffffff82489520 d TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
-ffffffff82489528 d TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
-ffffffff82489530 d TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
-ffffffff82489538 d TRACE_SYSTEM_EXT4_FC_REASON_MAX
-ffffffff82489540 d TRACE_SYSTEM_THERMAL_TRIP_CRITICAL
-ffffffff82489548 d TRACE_SYSTEM_THERMAL_TRIP_HOT
-ffffffff82489550 d TRACE_SYSTEM_THERMAL_TRIP_PASSIVE
-ffffffff82489558 d TRACE_SYSTEM_THERMAL_TRIP_ACTIVE
-ffffffff82489560 d TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
-ffffffff82489568 d TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
-ffffffff82489570 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
-ffffffff82489578 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
-ffffffff82489580 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
-ffffffff82489588 d TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
-ffffffff82489590 d TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
-ffffffff82489598 d TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
-ffffffff824895a0 d TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
-ffffffff824895a8 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
-ffffffff824895b0 d TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
-ffffffff824895b8 d TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
-ffffffff824895c0 d TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
-ffffffff824895c8 d TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
-ffffffff824895d0 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
-ffffffff824895d8 d TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
-ffffffff824895e0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
-ffffffff824895e8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
-ffffffff824895f0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
-ffffffff824895f8 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
-ffffffff82489600 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
-ffffffff82489608 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
-ffffffff82489610 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
-ffffffff82489618 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
-ffffffff82489620 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
-ffffffff82489628 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
-ffffffff82489630 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
-ffffffff82489638 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
-ffffffff82489640 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
-ffffffff82489648 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
-ffffffff82489650 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
-ffffffff82489658 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
-ffffffff82489660 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
-ffffffff82489668 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
-ffffffff82489670 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
-ffffffff82489678 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
-ffffffff82489680 d TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
-ffffffff82489688 d TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
-ffffffff82489690 d TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
-ffffffff82489698 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
-ffffffff824896a0 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
-ffffffff824896a8 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
-ffffffff824896b0 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
-ffffffff824896b8 d TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
-ffffffff824896c0 d TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
-ffffffff824896c8 d TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
-ffffffff824896d0 d TRACE_SYSTEM_SKB_DROP_REASON_XDP
-ffffffff824896d8 d TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
-ffffffff824896e0 d TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
-ffffffff824896e8 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
-ffffffff824896f0 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
-ffffffff824896f8 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
-ffffffff82489700 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
-ffffffff82489708 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
-ffffffff82489710 d TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
-ffffffff82489718 d TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
-ffffffff82489720 d TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
-ffffffff82489728 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
-ffffffff82489730 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
-ffffffff82489738 d TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
-ffffffff82489740 d TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
-ffffffff82489748 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
-ffffffff82489750 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
-ffffffff82489758 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
-ffffffff82489760 d TRACE_SYSTEM_SKB_DROP_REASON_MAX
-ffffffff82489768 d TRACE_SYSTEM_2
-ffffffff82489770 d TRACE_SYSTEM_10
-ffffffff82489778 d TRACE_SYSTEM_IPPROTO_TCP
-ffffffff82489780 d TRACE_SYSTEM_IPPROTO_DCCP
-ffffffff82489788 d TRACE_SYSTEM_IPPROTO_SCTP
-ffffffff82489790 d TRACE_SYSTEM_IPPROTO_MPTCP
-ffffffff82489798 d TRACE_SYSTEM_TCP_ESTABLISHED
-ffffffff824897a0 d TRACE_SYSTEM_TCP_SYN_SENT
-ffffffff824897a8 d TRACE_SYSTEM_TCP_SYN_RECV
-ffffffff824897b0 d TRACE_SYSTEM_TCP_FIN_WAIT1
-ffffffff824897b8 d TRACE_SYSTEM_TCP_FIN_WAIT2
-ffffffff824897c0 d TRACE_SYSTEM_TCP_TIME_WAIT
-ffffffff824897c8 d TRACE_SYSTEM_TCP_CLOSE
-ffffffff824897d0 d TRACE_SYSTEM_TCP_CLOSE_WAIT
-ffffffff824897d8 d TRACE_SYSTEM_TCP_LAST_ACK
-ffffffff824897e0 d TRACE_SYSTEM_TCP_LISTEN
-ffffffff824897e8 d TRACE_SYSTEM_TCP_CLOSING
-ffffffff824897f0 d TRACE_SYSTEM_TCP_NEW_SYN_RECV
-ffffffff824897f8 d TRACE_SYSTEM_0
-ffffffff82489800 d TRACE_SYSTEM_1
-ffffffff82489808 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
-ffffffff82489810 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
-ffffffff82489818 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
-ffffffff82489820 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
-ffffffff82489828 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
-ffffffff82489830 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
-ffffffff82489838 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
-ffffffff82489840 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
-ffffffff82489848 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
-ffffffff82489850 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
-ffffffff82489858 D __cpu_method_of_table
-ffffffff82489858 D __cpuidle_method_of_table
-ffffffff82489858 D __stop_ftrace_eval_maps
-ffffffff82489860 D __dtb_end
-ffffffff82489860 D __dtb_start
-ffffffff82489860 D __irqchip_of_table
-ffffffff82489860 d irqchip_of_match_end
-ffffffff82489928 D __governor_thermal_table
-ffffffff82489928 D __irqchip_acpi_probe_table
-ffffffff82489928 D __irqchip_acpi_probe_table_end
-ffffffff82489928 d __thermal_table_entry_thermal_gov_step_wise
-ffffffff82489928 D __timer_acpi_probe_table
-ffffffff82489928 D __timer_acpi_probe_table_end
-ffffffff82489930 d __thermal_table_entry_thermal_gov_user_space
-ffffffff82489938 d __UNIQUE_ID___earlycon_uart8250264
-ffffffff82489938 D __earlycon_table
-ffffffff82489938 D __governor_thermal_table_end
-ffffffff824899d0 d __UNIQUE_ID___earlycon_uart265
-ffffffff82489a68 d __UNIQUE_ID___earlycon_ns16550266
-ffffffff82489b00 d __UNIQUE_ID___earlycon_ns16550a267
-ffffffff82489b98 d __UNIQUE_ID___earlycon_uart268
-ffffffff82489c30 d __UNIQUE_ID___earlycon_uart269
-ffffffff82489cc8 d __UNIQUE_ID___earlycon_efifb268
-ffffffff82489d60 D __earlycon_table_end
-ffffffff82489d60 d __lsm_capability
-ffffffff82489d60 D __start_lsm_info
-ffffffff82489d90 d __lsm_selinux
-ffffffff82489dc0 d __lsm_integrity
-ffffffff82489df0 D __end_early_lsm_info
-ffffffff82489df0 D __end_lsm_info
-ffffffff82489df0 D __kunit_suites_end
-ffffffff82489df0 D __kunit_suites_start
-ffffffff82489df0 d __setup_set_reset_devices
-ffffffff82489df0 D __setup_start
-ffffffff82489df0 D __start_early_lsm_info
-ffffffff82489e08 d __setup_debug_kernel
-ffffffff82489e20 d __setup_quiet_kernel
-ffffffff82489e38 d __setup_loglevel
-ffffffff82489e50 d __setup_warn_bootconfig
-ffffffff82489e68 d __setup_init_setup
-ffffffff82489e80 d __setup_rdinit_setup
-ffffffff82489e98 d __setup_early_randomize_kstack_offset
-ffffffff82489eb0 d __setup_initcall_blacklist
-ffffffff82489ec8 d __setup_set_debug_rodata
-ffffffff82489ee0 d __setup_early_hostname
-ffffffff82489ef8 d __setup_load_ramdisk
-ffffffff82489f10 d __setup_readonly
-ffffffff82489f28 d __setup_readwrite
-ffffffff82489f40 d __setup_root_dev_setup
-ffffffff82489f58 d __setup_rootwait_setup
-ffffffff82489f70 d __setup_root_data_setup
-ffffffff82489f88 d __setup_fs_names_setup
-ffffffff82489fa0 d __setup_root_delay_setup
-ffffffff82489fb8 d __setup_prompt_ramdisk
-ffffffff82489fd0 d __setup_ramdisk_start_setup
-ffffffff82489fe8 d __setup_no_initrd
-ffffffff8248a000 d __setup_early_initrdmem
-ffffffff8248a018 d __setup_early_initrd
-ffffffff8248a030 d __setup_retain_initrd_param
-ffffffff8248a048 d __setup_initramfs_async_setup
-ffffffff8248a060 d __setup_lpj_setup
-ffffffff8248a078 d __setup_vdso_setup
-ffffffff8248a090 d __setup_vsyscall_setup
-ffffffff8248a0a8 d __setup_strict_sas_size
-ffffffff8248a0c0 d __setup_setup_unknown_nmi_panic
-ffffffff8248a0d8 d __setup_control_va_addr_alignment
-ffffffff8248a0f0 d __setup_parse_memopt
-ffffffff8248a108 d __setup_parse_memmap_opt
-ffffffff8248a120 d __setup_iommu_setup
-ffffffff8248a138 d __setup_enable_cpu0_hotplug
-ffffffff8248a150 d __setup_debug_alt
-ffffffff8248a168 d __setup_setup_noreplace_smp
-ffffffff8248a180 d __setup_tsc_early_khz_setup
-ffffffff8248a198 d __setup_notsc_setup
-ffffffff8248a1b0 d __setup_tsc_setup
-ffffffff8248a1c8 d __setup_io_delay_param
-ffffffff8248a1e0 d __setup_idle_setup
-ffffffff8248a1f8 d __setup_x86_nopcid_setup
-ffffffff8248a210 d __setup_x86_noinvpcid_setup
-ffffffff8248a228 d __setup_x86_nofsgsbase_setup
-ffffffff8248a240 d __setup_setup_disable_pku
-ffffffff8248a258 d __setup_setup_clearcpuid
-ffffffff8248a270 d __setup_mds_cmdline
-ffffffff8248a288 d __setup_tsx_async_abort_parse_cmdline
-ffffffff8248a2a0 d __setup_mmio_stale_data_parse_cmdline
-ffffffff8248a2b8 d __setup_srbds_parse_cmdline
-ffffffff8248a2d0 d __setup_l1d_flush_parse_cmdline
-ffffffff8248a2e8 d __setup_nospectre_v1_cmdline
-ffffffff8248a300 d __setup_retbleed_parse_cmdline
-ffffffff8248a318 d __setup_l1tf_cmdline
-ffffffff8248a330 d __setup_nosgx
-ffffffff8248a348 d __setup_ring3mwait_disable
-ffffffff8248a360 d __setup_rdrand_cmdline
-ffffffff8248a378 d __setup_disable_mtrr_cleanup_setup
-ffffffff8248a390 d __setup_enable_mtrr_cleanup_setup
-ffffffff8248a3a8 d __setup_mtrr_cleanup_debug_setup
-ffffffff8248a3c0 d __setup_parse_mtrr_chunk_size_opt
-ffffffff8248a3d8 d __setup_parse_mtrr_gran_size_opt
-ffffffff8248a3f0 d __setup_parse_mtrr_spare_reg
-ffffffff8248a408 d __setup_disable_mtrr_trim_setup
-ffffffff8248a420 d __setup_setup_vmw_sched_clock
-ffffffff8248a438 d __setup_parse_no_stealacc
-ffffffff8248a450 d __setup_parse_nopv
-ffffffff8248a468 d __setup_parse_acpi
-ffffffff8248a480 d __setup_parse_acpi_bgrt
-ffffffff8248a498 d __setup_parse_pci
-ffffffff8248a4b0 d __setup_parse_acpi_skip_timer_override
-ffffffff8248a4c8 d __setup_parse_acpi_use_timer_override
-ffffffff8248a4e0 d __setup_setup_acpi_sci
-ffffffff8248a4f8 d __setup_acpi_sleep_setup
-ffffffff8248a510 d __setup_nonmi_ipi_setup
-ffffffff8248a528 d __setup_cpu_init_udelay
-ffffffff8248a540 d __setup__setup_possible_cpus
-ffffffff8248a558 d __setup_update_mptable_setup
-ffffffff8248a570 d __setup_parse_alloc_mptable_opt
-ffffffff8248a588 d __setup_parse_lapic
-ffffffff8248a5a0 d __setup_setup_apicpmtimer
-ffffffff8248a5b8 d __setup_setup_nox2apic
-ffffffff8248a5d0 d __setup_setup_disableapic
-ffffffff8248a5e8 d __setup_setup_nolapic
-ffffffff8248a600 d __setup_parse_lapic_timer_c2_ok
-ffffffff8248a618 d __setup_parse_disable_apic_timer
-ffffffff8248a630 d __setup_parse_nolapic_timer
-ffffffff8248a648 d __setup_apic_set_verbosity
-ffffffff8248a660 d __setup_apic_set_disabled_cpu_apicid
-ffffffff8248a678 d __setup_apic_set_extnmi
-ffffffff8248a690 d __setup_apic_ipi_shorthand
-ffffffff8248a6a8 d __setup_setup_show_lapic
-ffffffff8248a6c0 d __setup_parse_noapic
-ffffffff8248a6d8 d __setup_notimercheck
-ffffffff8248a6f0 d __setup_disable_timer_pin_setup
-ffffffff8248a708 d __setup_set_x2apic_phys_mode
-ffffffff8248a720 d __setup_setup_early_printk
-ffffffff8248a738 d __setup_hpet_setup
-ffffffff8248a750 d __setup_disable_hpet
-ffffffff8248a768 d __setup_parse_no_kvmapf
-ffffffff8248a780 d __setup_parse_no_stealacc
-ffffffff8248a798 d __setup_parse_no_kvmclock
-ffffffff8248a7b0 d __setup_parse_no_kvmclock_vsyscall
-ffffffff8248a7c8 d __setup_parse_direct_gbpages_on
-ffffffff8248a7e0 d __setup_parse_direct_gbpages_off
-ffffffff8248a7f8 d __setup_early_disable_dma32
-ffffffff8248a810 d __setup_nonx32_setup
-ffffffff8248a828 d __setup_setup_userpte
-ffffffff8248a840 d __setup_nopat
-ffffffff8248a858 d __setup_pat_debug_setup
-ffffffff8248a870 d __setup_setup_init_pkru
-ffffffff8248a888 d __setup_setup_storage_paranoia
-ffffffff8248a8a0 d __setup_setup_add_efi_memmap
-ffffffff8248a8b8 d __setup_coredump_filter_setup
-ffffffff8248a8d0 d __setup_oops_setup
-ffffffff8248a8e8 d __setup_panic_on_taint_setup
-ffffffff8248a900 d __setup_smt_cmdline_disable
-ffffffff8248a918 d __setup_mitigations_parse_cmdline
-ffffffff8248a930 d __setup_reserve_setup
-ffffffff8248a948 d __setup_strict_iomem
-ffffffff8248a960 d __setup_file_caps_disable
-ffffffff8248a978 d __setup_setup_print_fatal_signals
-ffffffff8248a990 d __setup_reboot_setup
-ffffffff8248a9a8 d __setup_setup_schedstats
-ffffffff8248a9c0 d __setup_setup_resched_latency_warn_ms
-ffffffff8248a9d8 d __setup_setup_preempt_mode
-ffffffff8248a9f0 d __setup_setup_sched_thermal_decay_shift
-ffffffff8248aa08 d __setup_sched_debug_setup
-ffffffff8248aa20 d __setup_setup_relax_domain_level
-ffffffff8248aa38 d __setup_setup_psi
-ffffffff8248aa50 d __setup_housekeeping_nohz_full_setup
-ffffffff8248aa68 d __setup_housekeeping_isolcpus_setup
-ffffffff8248aa80 d __setup_mem_sleep_default_setup
-ffffffff8248aa98 d __setup_control_devkmsg
-ffffffff8248aab0 d __setup_log_buf_len_setup
-ffffffff8248aac8 d __setup_ignore_loglevel_setup
-ffffffff8248aae0 d __setup_console_msg_format_setup
-ffffffff8248aaf8 d __setup_console_setup
-ffffffff8248ab10 d __setup_console_suspend_disable
-ffffffff8248ab28 d __setup_keep_bootcon_setup
-ffffffff8248ab40 d __setup_irq_affinity_setup
-ffffffff8248ab58 d __setup_setup_forced_irqthreads
-ffffffff8248ab70 d __setup_noirqdebug_setup
-ffffffff8248ab88 d __setup_irqfixup_setup
-ffffffff8248aba0 d __setup_irqpoll_setup
-ffffffff8248abb8 d __setup_rcu_nocb_setup
-ffffffff8248abd0 d __setup_parse_rcu_nocb_poll
-ffffffff8248abe8 d __setup_setup_io_tlb_npages
-ffffffff8248ac00 d __setup_profile_setup
-ffffffff8248ac18 d __setup_setup_hrtimer_hres
-ffffffff8248ac30 d __setup_ntp_tick_adj_setup
-ffffffff8248ac48 d __setup_boot_override_clocksource
-ffffffff8248ac60 d __setup_boot_override_clock
-ffffffff8248ac78 d __setup_setup_tick_nohz
-ffffffff8248ac90 d __setup_skew_tick
-ffffffff8248aca8 d __setup_nosmp
-ffffffff8248acc0 d __setup_nrcpus
-ffffffff8248acd8 d __setup_maxcpus
-ffffffff8248acf0 d __setup_parse_crashkernel_dummy
-ffffffff8248ad08 d __setup_cgroup_disable
-ffffffff8248ad20 d __setup_enable_cgroup_debug
-ffffffff8248ad38 d __setup_cgroup_no_v1
-ffffffff8248ad50 d __setup_audit_enable
-ffffffff8248ad68 d __setup_audit_backlog_limit_set
-ffffffff8248ad80 d __setup_nowatchdog_setup
-ffffffff8248ad98 d __setup_nosoftlockup_setup
-ffffffff8248adb0 d __setup_watchdog_thresh_setup
-ffffffff8248adc8 d __setup_set_cmdline_ftrace
-ffffffff8248ade0 d __setup_set_ftrace_dump_on_oops
-ffffffff8248adf8 d __setup_stop_trace_on_warning
-ffffffff8248ae10 d __setup_boot_alloc_snapshot
-ffffffff8248ae28 d __setup_boot_snapshot
-ffffffff8248ae40 d __setup_set_trace_boot_options
-ffffffff8248ae58 d __setup_set_trace_boot_clock
-ffffffff8248ae70 d __setup_set_tracepoint_printk
-ffffffff8248ae88 d __setup_set_tracepoint_printk_stop
-ffffffff8248aea0 d __setup_set_buf_size
-ffffffff8248aeb8 d __setup_set_tracing_thresh
-ffffffff8248aed0 d __setup_setup_trace_event
-ffffffff8248aee8 d __setup_set_mminit_loglevel
-ffffffff8248af00 d __setup_percpu_alloc_setup
-ffffffff8248af18 d __setup_slub_nomerge
-ffffffff8248af30 d __setup_slub_merge
-ffffffff8248af48 d __setup_setup_slab_nomerge
-ffffffff8248af60 d __setup_setup_slab_merge
-ffffffff8248af78 d __setup_disable_randmaps
-ffffffff8248af90 d __setup_cmdline_parse_stack_guard_gap
-ffffffff8248afa8 d __setup_set_nohugeiomap
-ffffffff8248afc0 d __setup_set_nohugevmalloc
-ffffffff8248afd8 d __setup_early_init_on_alloc
-ffffffff8248aff0 d __setup_early_init_on_free
-ffffffff8248b008 d __setup_cmdline_parse_kernelcore
-ffffffff8248b020 d __setup_cmdline_parse_movablecore
-ffffffff8248b038 d __setup_early_memblock
-ffffffff8248b050 d __setup_setup_memhp_default_state
-ffffffff8248b068 d __setup_cmdline_parse_movable_node
-ffffffff8248b080 d __setup_setup_slub_debug
-ffffffff8248b098 d __setup_setup_slub_min_order
-ffffffff8248b0b0 d __setup_setup_slub_max_order
-ffffffff8248b0c8 d __setup_setup_slub_min_objects
-ffffffff8248b0e0 d __setup_setup_transparent_hugepage
-ffffffff8248b0f8 d __setup_cgroup_memory
-ffffffff8248b110 d __setup_setup_swap_account
-ffffffff8248b128 d __setup_early_page_owner_param
-ffffffff8248b140 d __setup_early_ioremap_debug_setup
-ffffffff8248b158 d __setup_setup_early_page_ext
-ffffffff8248b170 d __setup_parse_hardened_usercopy
-ffffffff8248b188 d __setup_set_dhash_entries
-ffffffff8248b1a0 d __setup_set_ihash_entries
-ffffffff8248b1b8 d __setup_set_mhash_entries
-ffffffff8248b1d0 d __setup_set_mphash_entries
-ffffffff8248b1e8 d __setup_debugfs_kernel
-ffffffff8248b200 d __setup_choose_major_lsm
-ffffffff8248b218 d __setup_choose_lsm_order
-ffffffff8248b230 d __setup_enable_debug
-ffffffff8248b248 d __setup_enforcing_setup
-ffffffff8248b260 d __setup_checkreqprot_setup
-ffffffff8248b278 d __setup_integrity_audit_setup
-ffffffff8248b290 d __setup_elevator_setup
-ffffffff8248b2a8 d __setup_force_gpt_fn
-ffffffff8248b2c0 d __setup_dyndbg_setup
-ffffffff8248b2d8 d __setup_is_stack_depot_disabled
-ffffffff8248b2f0 d __setup_pcie_port_pm_setup
-ffffffff8248b308 d __setup_pci_setup
-ffffffff8248b320 d __setup_pcie_port_setup
-ffffffff8248b338 d __setup_pcie_aspm_disable
-ffffffff8248b350 d __setup_pcie_pme_setup
-ffffffff8248b368 d __setup_no_scroll
-ffffffff8248b380 d __setup_acpi_parse_apic_instance
-ffffffff8248b398 d __setup_acpi_force_table_verification_setup
-ffffffff8248b3b0 d __setup_acpi_force_32bit_fadt_addr
-ffffffff8248b3c8 d __setup_osi_setup
-ffffffff8248b3e0 d __setup_acpi_rev_override_setup
-ffffffff8248b3f8 d __setup_acpi_os_name_setup
-ffffffff8248b410 d __setup_acpi_no_auto_serialize_setup
-ffffffff8248b428 d __setup_acpi_enforce_resources_setup
-ffffffff8248b440 d __setup_acpi_no_static_ssdt_setup
-ffffffff8248b458 d __setup_acpi_disable_return_repair
-ffffffff8248b470 d __setup_acpi_backlight
-ffffffff8248b488 d __setup_acpi_irq_isa
-ffffffff8248b4a0 d __setup_acpi_irq_pci
-ffffffff8248b4b8 d __setup_acpi_irq_nobalance_set
-ffffffff8248b4d0 d __setup_acpi_irq_balance_set
-ffffffff8248b4e8 d __setup_acpi_gpe_set_masked_gpes
-ffffffff8248b500 d __setup_pnp_setup_reserve_irq
-ffffffff8248b518 d __setup_pnp_setup_reserve_dma
-ffffffff8248b530 d __setup_pnp_setup_reserve_io
-ffffffff8248b548 d __setup_pnp_setup_reserve_mem
-ffffffff8248b560 d __setup_pnpacpi_setup
-ffffffff8248b578 d __setup_sysrq_always_enabled_setup
-ffffffff8248b590 d __setup_param_setup_earlycon
-ffffffff8248b5a8 d __setup_parse_trust_cpu
-ffffffff8248b5c0 d __setup_parse_trust_bootloader
-ffffffff8248b5d8 d __setup_hpet_mmap_enable
-ffffffff8248b5f0 d __setup_iommu_set_def_domain_type
-ffffffff8248b608 d __setup_iommu_dma_setup
-ffffffff8248b620 d __setup_iommu_dma_forcedac_setup
-ffffffff8248b638 d __setup_fw_devlink_setup
-ffffffff8248b650 d __setup_fw_devlink_strict_setup
-ffffffff8248b668 d __setup_deferred_probe_timeout_setup
-ffffffff8248b680 d __setup_save_async_options
-ffffffff8248b698 d __setup_ramdisk_size
-ffffffff8248b6b0 d __setup_max_loop_setup
-ffffffff8248b6c8 d __setup_int_pln_enable_setup
-ffffffff8248b6e0 d __setup_intel_pstate_setup
-ffffffff8248b6f8 d __setup_setup_noefi
-ffffffff8248b710 d __setup_parse_efi_cmdline
-ffffffff8248b728 d __setup_efivar_ssdt_setup
-ffffffff8248b740 d __setup_acpi_pm_good_setup
-ffffffff8248b758 d __setup_parse_pmtmr
-ffffffff8248b770 d __setup_parse_ras_param
-ffffffff8248b788 d __setup_fb_tunnels_only_for_init_net_sysctl_setup
-ffffffff8248b7a0 d __setup_set_thash_entries
-ffffffff8248b7b8 d __setup_set_tcpmhash_entries
-ffffffff8248b7d0 d __setup_set_uhash_entries
-ffffffff8248b7e8 d __setup_debug_boot_weak_hash_enable
-ffffffff8248b800 d __setup_no_hash_pointers_enable
-ffffffff8248b818 d __initcall__kmod_core__331_2226_init_hw_perf_eventsearly
-ffffffff8248b818 D __initcall_start
-ffffffff8248b818 D __setup_end
-ffffffff8248b81c d __initcall__kmod_init__254_217_do_init_real_modeearly
-ffffffff8248b820 d __initcall__kmod_irq__616_75_trace_init_perf_perm_irq_work_exitearly
-ffffffff8248b824 d __initcall__kmod_aperfmperf__213_454_bp_init_aperfmperfearly
-ffffffff8248b828 d __initcall__kmod_hw_nmi__274_58_register_nmi_cpu_backtrace_handlerearly
-ffffffff8248b82c d __initcall__kmod_kvmclock__261_261_kvm_setup_vsyscall_timeinfoearly
-ffffffff8248b830 d __initcall__kmod_softirq__361_1038_spawn_ksoftirqdearly
-ffffffff8248b834 d __initcall__kmod_core__1179_9776_migration_initearly
-ffffffff8248b838 d __initcall__kmod_srcutree__480_1730_srcu_bootup_announceearly
-ffffffff8248b83c d __initcall__kmod_tree__727_4466_rcu_spawn_gp_kthreadearly
-ffffffff8248b840 d __initcall__kmod_tree__744_135_check_cpu_stall_initearly
-ffffffff8248b844 d __initcall__kmod_tree__835_1025_rcu_sysrq_initearly
-ffffffff8248b848 d __initcall__kmod_common__351_42_trace_init_flags_sys_enterearly
-ffffffff8248b84c d __initcall__kmod_common__353_66_trace_init_flags_sys_exitearly
-ffffffff8248b850 d __initcall__kmod_stop_machine__267_586_cpu_stop_initearly
-ffffffff8248b854 d __initcall__kmod_trace_printk__286_400_init_trace_printkearly
-ffffffff8248b858 d __initcall__kmod_trace_events__644_3801_event_trace_enable_againearly
-ffffffff8248b85c d __initcall__kmod_irq_work__221_318_irq_work_init_threadsearly
-ffffffff8248b860 d __initcall__kmod_static_call_inline__199_500_static_call_initearly
-ffffffff8248b864 d __initcall__kmod_memory__441_164_init_zero_pfnearly
-ffffffff8248b868 d __initcall__kmod_inode__580_140_init_fs_inode_sysctlsearly
-ffffffff8248b86c d __initcall__kmod_locks__417_121_init_fs_locks_sysctlsearly
-ffffffff8248b870 d __initcall__kmod_dynamic_debug__535_1453_dynamic_debug_initearly
-ffffffff8248b874 d __initcall__kmod_efi__273_1039_efi_memreserve_root_initearly
-ffffffff8248b878 d __initcall__kmod_earlycon__264_41_efi_earlycon_remap_fbearly
-ffffffff8248b87c D __initcall0_start
-ffffffff8248b87c d __initcall__kmod_min_addr__251_53_init_mmap_min_addr0
-ffffffff8248b880 d __initcall__kmod_pci__279_6907_pci_realloc_setup_params0
-ffffffff8248b884 d __initcall__kmod_inet_fragment__581_216_inet_frag_wq_init0
-ffffffff8248b888 D __initcall1_start
-ffffffff8248b888 d __initcall__kmod_e820__329_792_e820__register_nvs_regions1
-ffffffff8248b88c d __initcall__kmod_tsc__244_1029_cpufreq_register_tsc_scaling1
-ffffffff8248b890 d __initcall__kmod_reboot__338_518_reboot_init1
-ffffffff8248b894 d __initcall__kmod_apic__531_2842_init_lapic_sysfs1
-ffffffff8248b898 d __initcall__kmod_cpu__589_1624_alloc_frozen_cpus1
-ffffffff8248b89c d __initcall__kmod_cpu__591_1671_cpu_hotplug_pm_sync_init1
-ffffffff8248b8a0 d __initcall__kmod_workqueue__391_5698_wq_sysfs_init1
-ffffffff8248b8a4 d __initcall__kmod_ksysfs__269_273_ksysfs_init1
-ffffffff8248b8a8 d __initcall__kmod_build_utility__878_844_schedutil_gov_init1
-ffffffff8248b8ac d __initcall__kmod_main__329_940_pm_init1
-ffffffff8248b8b0 d __initcall__kmod_update__555_240_rcu_set_runtime_mode1
-ffffffff8248b8b4 d __initcall__kmod_jiffies__192_69_init_jiffies_clocksource1
-ffffffff8248b8b8 d __initcall__kmod_core__289_1153_futex_init1
-ffffffff8248b8bc d __initcall__kmod_cgroup__690_6184_cgroup_wq_init1
-ffffffff8248b8c0 d __initcall__kmod_cgroup_v1__378_1280_cgroup1_wq_init1
-ffffffff8248b8c4 d __initcall__kmod_trace_eprobe__294_1081_trace_events_eprobe_init_early1
-ffffffff8248b8c8 d __initcall__kmod_trace_events_synth__291_2249_trace_events_synth_init_early1
-ffffffff8248b8cc d __initcall__kmod_fsnotify__274_601_fsnotify_init1
-ffffffff8248b8d0 d __initcall__kmod_locks__451_2939_filelock_init1
-ffffffff8248b8d4 d __initcall__kmod_binfmt_misc__298_834_init_misc_binfmt1
-ffffffff8248b8d8 d __initcall__kmod_binfmt_script__232_156_init_script_binfmt1
-ffffffff8248b8dc d __initcall__kmod_binfmt_elf__342_2345_init_elf_binfmt1
-ffffffff8248b8e0 d __initcall__kmod_debugfs__286_906_debugfs_init1
-ffffffff8248b8e4 d __initcall__kmod_tracefs__269_645_tracefs_init1
-ffffffff8248b8e8 d __initcall__kmod_inode__273_350_securityfs_init1
-ffffffff8248b8ec d __initcall__kmod_gpiolib__304_4474_gpiolib_dev_init1
-ffffffff8248b8f0 d __initcall__kmod_virtio__264_568_virtio_init1
-ffffffff8248b8f4 d __initcall__kmod_iommu__383_2590_iommu_init1
-ffffffff8248b8f8 d __initcall__kmod_component__240_118_component_debug_init1
-ffffffff8248b8fc d __initcall__kmod_cpufreq__545_2970_cpufreq_core_init1
-ffffffff8248b900 d __initcall__kmod_cpufreq_performance__213_44_cpufreq_gov_performance_init1
-ffffffff8248b904 d __initcall__kmod_cpufreq_powersave__213_38_cpufreq_gov_powersave_init1
-ffffffff8248b908 d __initcall__kmod_cpufreq_conservative__234_343_CPU_FREQ_GOV_CONSERVATIVE_init1
-ffffffff8248b90c d __initcall__kmod_cpuidle__553_797_cpuidle_init1
-ffffffff8248b910 d __initcall__kmod_socket__610_3209_sock_init1
-ffffffff8248b914 d __initcall__kmod_sock__767_3772_net_inuse_init1
-ffffffff8248b918 d __initcall__kmod_net_namespace__499_385_net_defaults_init1
-ffffffff8248b91c d __initcall__kmod_flow_dissector__677_1961_init_default_flow_dissectors1
-ffffffff8248b920 d __initcall__kmod_af_netlink__648_2962_netlink_proto_init1
-ffffffff8248b924 d __initcall__kmod_genetlink__500_1498_genl_init1
-ffffffff8248b928 d __initcall__kmod_cpu__334_407_bsp_pm_check_init1
-ffffffff8248b92c D __initcall2_start
-ffffffff8248b92c d __initcall__kmod_irqdesc__200_334_irq_sysfs_init2
-ffffffff8248b930 d __initcall__kmod_audit__525_1712_audit_init2
-ffffffff8248b934 d __initcall__kmod_tracepoint__213_140_release_early_probes2
-ffffffff8248b938 d __initcall__kmod_backing_dev__566_232_bdi_class_init2
-ffffffff8248b93c d __initcall__kmod_mm_init__334_206_mm_sysfs_init2
-ffffffff8248b940 d __initcall__kmod_page_alloc__673_8942_init_per_zone_wmark_min2
-ffffffff8248b944 d __initcall__kmod_gpiolib_acpi__251_1645_acpi_gpio_setup_params2
-ffffffff8248b948 d __initcall__kmod_probe__266_109_pcibus_class_init2
-ffffffff8248b94c d __initcall__kmod_pci_driver__329_1726_pci_driver_init2
-ffffffff8248b950 d __initcall__kmod_tty_io__275_3518_tty_class_init2
-ffffffff8248b954 d __initcall__kmod_vt__294_4325_vtconsole_class_init2
-ffffffff8248b958 d __initcall__kmod_iommu_sysfs__261_47_iommu_dev_init2
-ffffffff8248b95c d __initcall__kmod_core__391_700_devlink_class_init2
-ffffffff8248b960 d __initcall__kmod_swnode__201_1167_software_node_init2
-ffffffff8248b964 d __initcall__kmod_wakeup__545_1240_wakeup_sources_debugfs_init2
-ffffffff8248b968 d __initcall__kmod_wakeup_stats__199_217_wakeup_sources_sysfs_init2
-ffffffff8248b96c d __initcall__kmod_regmap__468_3513_regmap_initcall2
-ffffffff8248b970 d __initcall__kmod_syscon__199_329_syscon_init2
-ffffffff8248b974 d __initcall__kmod_thermal_sys__381_1510_thermal_init2
-ffffffff8248b978 d __initcall__kmod_menu__188_579_init_menu2
-ffffffff8248b97c d __initcall__kmod_pcc__200_758_pcc_init2
-ffffffff8248b980 d __initcall__kmod_amd_bus__265_404_amd_postcore_init2
-ffffffff8248b984 d __initcall__kmod_kobject_uevent__492_814_kobject_uevent_init2
-ffffffff8248b988 D __initcall3_start
-ffffffff8248b988 d __initcall__kmod_bts__283_625_bts_init3
-ffffffff8248b98c d __initcall__kmod_pt__301_1814_pt_init3
-ffffffff8248b990 d __initcall__kmod_ksysfs__255_401_boot_params_ksysfs_init3
-ffffffff8248b994 d __initcall__kmod_bootflag__241_102_sbf_init3
-ffffffff8248b998 d __initcall__kmod_kdebugfs__251_195_arch_kdebugfs_init3
-ffffffff8248b99c d __initcall__kmod_xstate__363_1469_xfd_update_static_branch3
-ffffffff8248b9a0 d __initcall__kmod_intel_pconfig__12_82_intel_pconfig_init3
-ffffffff8248b9a4 d __initcall__kmod_if__224_424_mtrr_if_init3
-ffffffff8248b9a8 d __initcall__kmod_vmware__210_327_activate_jump_labels3
-ffffffff8248b9ac d __initcall__kmod_cstate__212_229_ffh_cstate_init3
-ffffffff8248b9b0 d __initcall__kmod_kvm__350_693_kvm_alloc_cpumask3
-ffffffff8248b9b4 d __initcall__kmod_kvm__352_1032_activate_jump_labels3
-ffffffff8248b9b8 d __initcall__kmod_cryptomgr__358_257_cryptomgr_init3
-ffffffff8248b9bc d __initcall__kmod_pci_acpi__266_1493_acpi_pci_init3
-ffffffff8248b9c0 d __initcall__kmod_dma_iommu__285_1712_iommu_dma_init3
-ffffffff8248b9c4 d __initcall__kmod_dmi_id__199_259_dmi_id_init3
-ffffffff8248b9c8 d __initcall__kmod_init__265_51_pci_arch_init3
-ffffffff8248b9cc d __initcall__kmod_platform__319_604_of_platform_default_populate_init3s
-ffffffff8248b9d0 D __initcall4_start
-ffffffff8248b9d0 d __initcall__kmod_vma__338_458_init_vdso4
-ffffffff8248b9d4 d __initcall__kmod_core__336_6656_fixup_ht_bug4
-ffffffff8248b9d8 d __initcall__kmod_topology__199_162_topology_init4
-ffffffff8248b9dc d __initcall__kmod_intel_epb__197_235_intel_epb_init4
-ffffffff8248b9e0 d __initcall__kmod_mtrr__265_887_mtrr_init_finialize4
-ffffffff8248b9e4 d __initcall__kmod_user__201_257_uid_cache_init4
-ffffffff8248b9e8 d __initcall__kmod_params__261_974_param_sysfs_init4
-ffffffff8248b9ec d __initcall__kmod_ucount__172_376_user_namespace_sysctl_init4
-ffffffff8248b9f0 d __initcall__kmod_build_utility__891_231_proc_schedstat_init4
-ffffffff8248b9f4 d __initcall__kmod_poweroff__81_45_pm_sysrq_init4
-ffffffff8248b9f8 d __initcall__kmod_profile__289_553_create_proc_profile4
-ffffffff8248b9fc d __initcall__kmod_crash_core__260_514_crash_save_vmcoreinfo_init4
-ffffffff8248ba00 d __initcall__kmod_kexec_core__342_1128_crash_notes_memory_init4
-ffffffff8248ba04 d __initcall__kmod_cgroup__700_7072_cgroup_sysfs_init4
-ffffffff8248ba08 d __initcall__kmod_namespace__264_157_cgroup_namespaces_init4
-ffffffff8248ba0c d __initcall__kmod_hung_task__636_406_hung_task_init4
-ffffffff8248ba10 d __initcall__kmod_trace__354_9737_trace_eval_init4
-ffffffff8248ba14 d __initcall__kmod_oom_kill__442_741_oom_init4
-ffffffff8248ba18 d __initcall__kmod_backing_dev__568_242_default_bdi_init4
-ffffffff8248ba1c d __initcall__kmod_backing_dev__587_762_cgwb_init4
-ffffffff8248ba20 d __initcall__kmod_percpu__418_3463_percpu_enable_async4
-ffffffff8248ba24 d __initcall__kmod_compaction__543_3091_kcompactd_init4
-ffffffff8248ba28 d __initcall__kmod_mmap__416_3678_init_user_reserve4
-ffffffff8248ba2c d __initcall__kmod_mmap__420_3699_init_admin_reserve4
-ffffffff8248ba30 d __initcall__kmod_mmap__422_3769_init_reserve_notifier4
-ffffffff8248ba34 d __initcall__kmod_swap_state__347_909_swap_init_sysfs4
-ffffffff8248ba38 d __initcall__kmod_swapfile__397_3687_swapfile_init4
-ffffffff8248ba3c d __initcall__kmod_huge_memory__404_521_hugepage_init4
-ffffffff8248ba40 d __initcall__kmod_memcontrol__1051_7318_mem_cgroup_init4
-ffffffff8248ba44 d __initcall__kmod_memcontrol__1060_7810_mem_cgroup_swap_init4
-ffffffff8248ba48 d __initcall__kmod_core__290_1301_damon_init4
-ffffffff8248ba4c d __initcall__kmod_paddr__319_319_damon_pa_initcall4
-ffffffff8248ba50 d __initcall__kmod_seqiv__276_183_seqiv_module_init4
-ffffffff8248ba54 d __initcall__kmod_echainiv__276_160_echainiv_module_init4
-ffffffff8248ba58 d __initcall__kmod_hmac__276_258_hmac_module_init4
-ffffffff8248ba5c d __initcall__kmod_xcbc__191_270_crypto_xcbc_module_init4
-ffffffff8248ba60 d __initcall__kmod_crypto_null__267_221_crypto_null_mod_init4
-ffffffff8248ba64 d __initcall__kmod_md5__191_245_md5_mod_init4
-ffffffff8248ba68 d __initcall__kmod_sha1_generic__261_89_sha1_generic_mod_init4
-ffffffff8248ba6c d __initcall__kmod_sha256_generic__261_101_sha256_generic_mod_init4
-ffffffff8248ba70 d __initcall__kmod_sha512_generic__261_218_sha512_generic_mod_init4
-ffffffff8248ba74 d __initcall__kmod_blake2b_generic__191_174_blake2b_mod_init4
-ffffffff8248ba78 d __initcall__kmod_cbc__191_218_crypto_cbc_module_init4
-ffffffff8248ba7c d __initcall__kmod_ctr__193_355_crypto_ctr_module_init4
-ffffffff8248ba80 d __initcall__kmod_xctr__191_185_crypto_xctr_module_init4
-ffffffff8248ba84 d __initcall__kmod_hctr2__281_575_hctr2_module_init4
-ffffffff8248ba88 d __initcall__kmod_adiantum__285_613_adiantum_module_init4
-ffffffff8248ba8c d __initcall__kmod_nhpoly1305__200_248_nhpoly1305_mod_init4
-ffffffff8248ba90 d __initcall__kmod_gcm__278_1159_crypto_gcm_module_init4
-ffffffff8248ba94 d __initcall__kmod_chacha20poly1305__278_671_chacha20poly1305_module_init4
-ffffffff8248ba98 d __initcall__kmod_cryptd__265_1097_cryptd_init4
-ffffffff8248ba9c d __initcall__kmod_des_generic__191_125_des_generic_mod_init4
-ffffffff8248baa0 d __initcall__kmod_aes_generic__191_1314_aes_init4
-ffffffff8248baa4 d __initcall__kmod_chacha_generic__191_128_chacha_generic_mod_init4
-ffffffff8248baa8 d __initcall__kmod_poly1305_generic__193_142_poly1305_mod_init4
-ffffffff8248baac d __initcall__kmod_deflate__265_334_deflate_mod_init4
-ffffffff8248bab0 d __initcall__kmod_crc32c_generic__191_161_crc32c_mod_init4
-ffffffff8248bab4 d __initcall__kmod_authenc__362_464_crypto_authenc_module_init4
-ffffffff8248bab8 d __initcall__kmod_authencesn__361_479_crypto_authenc_esn_module_init4
-ffffffff8248babc d __initcall__kmod_lzo__261_158_lzo_mod_init4
-ffffffff8248bac0 d __initcall__kmod_lzo_rle__261_158_lzorle_mod_init4
-ffffffff8248bac4 d __initcall__kmod_lz4__191_155_lz4_mod_init4
-ffffffff8248bac8 d __initcall__kmod_ansi_cprng__197_470_prng_mod_init4
-ffffffff8248bacc d __initcall__kmod_drbg__277_2148_drbg_init4
-ffffffff8248bad0 d __initcall__kmod_ghash_generic__194_178_ghash_mod_init4
-ffffffff8248bad4 d __initcall__kmod_polyval_generic__194_239_polyval_mod_init4
-ffffffff8248bad8 d __initcall__kmod_zstd__265_253_zstd_mod_init4
-ffffffff8248badc d __initcall__kmod_essiv__277_646_essiv_module_init4
-ffffffff8248bae0 d __initcall__kmod_bio__522_1762_init_bio4
-ffffffff8248bae4 d __initcall__kmod_blk_ioc__322_457_blk_ioc_init4
-ffffffff8248bae8 d __initcall__kmod_blk_mq__509_4953_blk_mq_init4
-ffffffff8248baec d __initcall__kmod_genhd__324_923_genhd_device_init4
-ffffffff8248baf0 d __initcall__kmod_blk_cgroup__371_2001_blkcg_init4
-ffffffff8248baf4 d __initcall__kmod_blk_crypto__311_99_bio_crypt_ctx_init4
-ffffffff8248baf8 d __initcall__kmod_blk_crypto_sysfs__309_173_blk_crypto_sysfs_init4
-ffffffff8248bafc d __initcall__kmod_io_wq__507_1417_io_wq_init4
-ffffffff8248bb00 d __initcall__kmod_sg_pool__251_180_sg_pool_init4
-ffffffff8248bb04 d __initcall__kmod_gpiolib__306_4599_gpiolib_debugfs_init4
-ffffffff8248bb08 d __initcall__kmod_slot__265_381_pci_slot_init4
-ffffffff8248bb0c d __initcall__kmod_acpi__323_1420_acpi_init4
-ffffffff8248bb10 d __initcall__kmod_pnp__263_234_pnp_init4
-ffffffff8248bb14 d __initcall__kmod_misc__261_293_misc_init4
-ffffffff8248bb18 d __initcall__kmod_iommu__377_195_iommu_subsys_init4
-ffffffff8248bb1c d __initcall__kmod_libnvdimm__345_575_libnvdimm_init4
-ffffffff8248bb20 d __initcall__kmod_dax__284_593_dax_core_init4
-ffffffff8248bb24 d __initcall__kmod_dma_buf__269_1667_dma_buf_init4
-ffffffff8248bb28 d __initcall__kmod_dma_heap__291_470_dma_heap_init4
-ffffffff8248bb2c d __initcall__kmod_serio__203_1048_serio_init4
-ffffffff8248bb30 d __initcall__kmod_input_core__302_2695_input_init4
-ffffffff8248bb34 d __initcall__kmod_rtc_core__240_487_rtc_init4
-ffffffff8248bb38 d __initcall__kmod_power_supply__199_1560_power_supply_class_init4
-ffffffff8248bb3c d __initcall__kmod_edac_core__265_163_edac_init4
-ffffffff8248bb40 d __initcall__kmod_dmi_scan__261_810_dmi_init4
-ffffffff8248bb44 d __initcall__kmod_efi__269_433_efisubsys_init4
-ffffffff8248bb48 d __initcall__kmod_ras__331_38_ras_init4
-ffffffff8248bb4c d __initcall__kmod_nvmem_core__244_1952_nvmem_init4
-ffffffff8248bb50 d __initcall__kmod_sock__771_4089_proto_init4
-ffffffff8248bb54 d __initcall__kmod_dev__1184_11438_net_dev_init4
-ffffffff8248bb58 d __initcall__kmod_neighbour__651_3906_neigh_init4
-ffffffff8248bb5c d __initcall__kmod_fib_notifier__365_199_fib_notifier_init4
-ffffffff8248bb60 d __initcall__kmod_fib_rules__620_1319_fib_rules_init4
-ffffffff8248bb64 d __initcall__kmod_netprio_cgroup__531_295_init_cgroup_netprio4
-ffffffff8248bb68 d __initcall__kmod_ethtool_nl__494_1077_ethnl_init4
-ffffffff8248bb6c d __initcall__kmod_nexthop__685_3789_nexthop_init4
-ffffffff8248bb70 d __initcall__kmod_legacy__265_77_pci_subsys_init4
-ffffffff8248bb74 d __initcall__kmod_vsprintf__531_777_vsprintf_init_hashval4
-ffffffff8248bb78 d __initcall__kmod_vgaarb__266_1564_vga_arb_device_init4s
-ffffffff8248bb7c d __initcall__kmod_watchdog__372_479_watchdog_init4s
-ffffffff8248bb80 D __initcall5_start
-ffffffff8248bb80 d __initcall__kmod_nmi__297_102_nmi_warning_debugfs5
-ffffffff8248bb84 d __initcall__kmod_microcode__265_809_save_microcode_in_initrd5
-ffffffff8248bb88 d __initcall__kmod_hpet__206_1165_hpet_late_init5
-ffffffff8248bb8c d __initcall__kmod_amd_nb__265_519_init_amd_nbs5
-ffffffff8248bb90 d __initcall__kmod_resource__271_2015_iomem_init_inode5
-ffffffff8248bb94 d __initcall__kmod_clocksource__206_1057_clocksource_done_booting5
-ffffffff8248bb98 d __initcall__kmod_trace__358_9882_tracer_init_tracefs5
-ffffffff8248bb9c d __initcall__kmod_trace_printk__284_393_init_trace_printk_function_export5
-ffffffff8248bba0 d __initcall__kmod_trace_events_synth__293_2273_trace_events_synth_init5
-ffffffff8248bba4 d __initcall__kmod_trace_dynevent__284_271_init_dynamic_event5
-ffffffff8248bba8 d __initcall__kmod_trace_uprobe__557_1667_init_uprobe_trace5
-ffffffff8248bbac d __initcall__kmod_secretmem__332_293_secretmem_init5
-ffffffff8248bbb0 d __initcall__kmod_file_table__328_130_init_fs_stat_sysctls5
-ffffffff8248bbb4 d __initcall__kmod_exec__699_2157_init_fs_exec_sysctls5
-ffffffff8248bbb8 d __initcall__kmod_pipe__341_1511_init_pipe_fs5
-ffffffff8248bbbc d __initcall__kmod_namei__331_1076_init_fs_namei_sysctls5
-ffffffff8248bbc0 d __initcall__kmod_dcache__259_202_init_fs_dcache_sysctls5
-ffffffff8248bbc4 d __initcall__kmod_namespace__346_4719_init_fs_namespace_sysctls5
-ffffffff8248bbc8 d __initcall__kmod_fs_writeback__698_1123_cgroup_writeback_init5
-ffffffff8248bbcc d __initcall__kmod_inotify_user__349_891_inotify_user_setup5
-ffffffff8248bbd0 d __initcall__kmod_eventpoll__589_2419_eventpoll_init5
-ffffffff8248bbd4 d __initcall__kmod_anon_inodes__261_270_anon_inode_init5
-ffffffff8248bbd8 d __initcall__kmod_locks__449_2916_proc_locks_init5
-ffffffff8248bbdc d __initcall__kmod_coredump__679_985_init_fs_coredump_sysctls5
-ffffffff8248bbe0 d __initcall__kmod_iomap__427_1553_iomap_init5
-ffffffff8248bbe4 d __initcall__kmod_proc__222_19_proc_cmdline_init5
-ffffffff8248bbe8 d __initcall__kmod_proc__240_98_proc_consoles_init5
-ffffffff8248bbec d __initcall__kmod_proc__252_28_proc_cpuinfo_init5
-ffffffff8248bbf0 d __initcall__kmod_proc__297_64_proc_devices_init5
-ffffffff8248bbf4 d __initcall__kmod_proc__222_42_proc_interrupts_init5
-ffffffff8248bbf8 d __initcall__kmod_proc__254_37_proc_loadavg_init5
-ffffffff8248bbfc d __initcall__kmod_proc__318_173_proc_meminfo_init5
-ffffffff8248bc00 d __initcall__kmod_proc__232_242_proc_stat_init5
-ffffffff8248bc04 d __initcall__kmod_proc__222_49_proc_uptime_init5
-ffffffff8248bc08 d __initcall__kmod_proc__222_27_proc_version_init5
-ffffffff8248bc0c d __initcall__kmod_proc__222_37_proc_softirqs_init5
-ffffffff8248bc10 d __initcall__kmod_proc__222_63_proc_kmsg_init5
-ffffffff8248bc14 d __initcall__kmod_proc__324_342_proc_page_init5
-ffffffff8248bc18 d __initcall__kmod_proc__222_96_proc_boot_config_init5
-ffffffff8248bc1c d __initcall__kmod_ramfs__302_299_init_ramfs_fs5
-ffffffff8248bc20 d __initcall__kmod_dynamic_debug__537_1456_dynamic_debug_init_control5
-ffffffff8248bc24 d __initcall__kmod_acpi__308_183_acpi_event_init5
-ffffffff8248bc28 d __initcall__kmod_pnp__199_113_pnp_system_init5
-ffffffff8248bc2c d __initcall__kmod_pnp__200_314_pnpacpi_init5
-ffffffff8248bc30 d __initcall__kmod_mem__329_787_chr_dev_init5
-ffffffff8248bc34 d __initcall__kmod_rng_core__244_718_hwrng_modinit5
-ffffffff8248bc38 d __initcall__kmod_firmware_class__326_1659_firmware_class_init5
-ffffffff8248bc3c d __initcall__kmod_acpi_pm__274_220_init_acpi_pm_clocksource5
-ffffffff8248bc40 d __initcall__kmod_sysctl_net_core__600_687_sysctl_core_init5
-ffffffff8248bc44 d __initcall__kmod_eth__576_492_eth_offload_init5
-ffffffff8248bc48 d __initcall__kmod_af_inet__763_1923_ipv4_offload_init5
-ffffffff8248bc4c d __initcall__kmod_af_inet__766_2056_inet_init5
-ffffffff8248bc50 d __initcall__kmod_unix__570_3782_af_unix_init5
-ffffffff8248bc54 d __initcall__kmod_ip6_offload__633_488_ipv6_offload_init5
-ffffffff8248bc58 d __initcall__kmod_i386__265_373_pcibios_assign_resources5
-ffffffff8248bc5c d __initcall__kmod_quirks__322_195_pci_apply_final_quirks5s
-ffffffff8248bc60 d __initcall__kmod_acpi__279_141_acpi_reserve_resources5s
-ffffffff8248bc64 d __initcall__kmod_initramfs__284_762_populate_rootfsrootfs
-ffffffff8248bc64 D __initcallrootfs_start
-ffffffff8248bc68 d __initcall__kmod_pci_dma__269_208_pci_iommu_initrootfs
-ffffffff8248bc6c D __initcall6_start
-ffffffff8248bc6c d __initcall__kmod_rapl__281_867_rapl_pmu_init6
-ffffffff8248bc70 d __initcall__kmod_ibs__292_1542_amd_ibs_init6
-ffffffff8248bc74 d __initcall__kmod_amd_uncore__289_785_amd_uncore_init6
-ffffffff8248bc78 d __initcall__kmod_msr__279_316_msr_init6
-ffffffff8248bc7c d __initcall__kmod_intel_uncore__288_1913_intel_uncore_init6
-ffffffff8248bc80 d __initcall__kmod_intel_cstate__284_787_cstate_pmu_init6
-ffffffff8248bc84 d __initcall__kmod_setup__354_1363_register_kernel_offset_dumper6
-ffffffff8248bc88 d __initcall__kmod_i8259__216_435_i8259A_init_ops6
-ffffffff8248bc8c d __initcall__kmod_tsc__246_1436_init_tsc_clocksource6
-ffffffff8248bc90 d __initcall__kmod_rtc__268_162_add_rtc_cmos6
-ffffffff8248bc94 d __initcall__kmod_i8237__183_76_i8237A_init_ops6
-ffffffff8248bc98 d __initcall__kmod_umwait__323_238_umwait_init6
-ffffffff8248bc9c d __initcall__kmod_io_apic__270_2463_ioapic_init_ops6
-ffffffff8248bca0 d __initcall__kmod_pcspeaker__197_14_add_pcspkr6
-ffffffff8248bca4 d __initcall__kmod_devicetree__265_61_add_bus_probe6
-ffffffff8248bca8 d __initcall__kmod_audit_64__258_85_audit_classes_init6
-ffffffff8248bcac d __initcall__kmod_sha256_ssse3__262_403_sha256_ssse3_mod_init6
-ffffffff8248bcb0 d __initcall__kmod_sha512_ssse3__262_334_sha512_ssse3_mod_init6
-ffffffff8248bcb4 d __initcall__kmod_polyval_clmulni__196_206_polyval_clmulni_mod_init6
-ffffffff8248bcb8 d __initcall__kmod_exec_domain__279_35_proc_execdomains_init6
-ffffffff8248bcbc d __initcall__kmod_panic__291_746_register_warn_debugfs6
-ffffffff8248bcc0 d __initcall__kmod_cpu__593_2600_cpuhp_sysfs_init6
-ffffffff8248bcc4 d __initcall__kmod_resource__261_149_ioresources_init6
-ffffffff8248bcc8 d __initcall__kmod_build_utility__972_1575_psi_proc_init6
-ffffffff8248bccc d __initcall__kmod_pm__318_248_irq_pm_init_ops6
-ffffffff8248bcd0 d __initcall__kmod_timer__472_276_timer_sysctl_init6
-ffffffff8248bcd4 d __initcall__kmod_timekeeping__276_1928_timekeeping_init_ops6
-ffffffff8248bcd8 d __initcall__kmod_clocksource__212_1458_init_clocksource_sysfs6
-ffffffff8248bcdc d __initcall__kmod_timer_list__264_359_init_timer_list_procfs6
-ffffffff8248bce0 d __initcall__kmod_alarmtimer__326_964_alarmtimer_init6
-ffffffff8248bce4 d __initcall__kmod_posix_timers__285_280_init_posix_timers6
-ffffffff8248bce8 d __initcall__kmod_clockevents__204_777_clockevents_init_sysfs6
-ffffffff8248bcec d __initcall__kmod_dma__222_144_proc_dma_init6
-ffffffff8248bcf0 d __initcall__kmod_kallsyms__408_961_kallsyms_init6
-ffffffff8248bcf4 d __initcall__kmod_configs__232_75_ikconfig_init6
-ffffffff8248bcf8 d __initcall__kmod_kheaders__189_61_ikheaders_init6
-ffffffff8248bcfc d __initcall__kmod_audit_watch__313_503_audit_watch_init6
-ffffffff8248bd00 d __initcall__kmod_audit_fsnotify__313_193_audit_fsnotify_init6
-ffffffff8248bd04 d __initcall__kmod_audit_tree__317_1086_audit_tree_init6
-ffffffff8248bd08 d __initcall__kmod_seccomp__417_2406_seccomp_sysctl_init6
-ffffffff8248bd0c d __initcall__kmod_utsname_sysctl__145_154_utsname_sysctl_init6
-ffffffff8248bd10 d __initcall__kmod_core__605_13622_perf_event_sysfs_init6
-ffffffff8248bd14 d __initcall__kmod_vmscan__759_7858_kswapd_init6
-ffffffff8248bd18 d __initcall__kmod_vmstat__341_2248_extfrag_debug_init6
-ffffffff8248bd1c d __initcall__kmod_mm_init__332_194_mm_compute_batch_init6
-ffffffff8248bd20 d __initcall__kmod_slab_common__458_1324_slab_proc_init6
-ffffffff8248bd24 d __initcall__kmod_workingset__352_748_workingset_init6
-ffffffff8248bd28 d __initcall__kmod_vmalloc__370_4201_proc_vmalloc_init6
-ffffffff8248bd2c d __initcall__kmod_swapfile__370_2688_procswaps_init6
-ffffffff8248bd30 d __initcall__kmod_slub__463_6078_slab_sysfs_init6
-ffffffff8248bd34 d __initcall__kmod_slub__466_6293_slab_debugfs_init6
-ffffffff8248bd38 d __initcall__kmod_zsmalloc__345_2366_zs_init6
-ffffffff8248bd3c d __initcall__kmod_reclaim__219_284_damon_reclaim_init6
-ffffffff8248bd40 d __initcall__kmod_fcntl__306_1041_fcntl_init6
-ffffffff8248bd44 d __initcall__kmod_filesystems__279_258_proc_filesystems_init6
-ffffffff8248bd48 d __initcall__kmod_fs_writeback__712_2339_start_dirtytime_writeback6
-ffffffff8248bd4c d __initcall__kmod_direct_io__301_1346_dio_init6
-ffffffff8248bd50 d __initcall__kmod_userfaultfd__359_2196_userfaultfd_init6
-ffffffff8248bd54 d __initcall__kmod_aio__337_307_aio_setup6
-ffffffff8248bd58 d __initcall__kmod_mbcache__232_440_mbcache_init6
-ffffffff8248bd5c d __initcall__kmod_devpts__268_637_init_devpts_fs6
-ffffffff8248bd60 d __initcall__kmod_ext4__1652_7312_ext4_init_fs6
-ffffffff8248bd64 d __initcall__kmod_jbd2__558_3198_journal_init6
-ffffffff8248bd68 d __initcall__kmod_nls_cp437__189_384_init_nls_cp4376
-ffffffff8248bd6c d __initcall__kmod_nls_cp737__189_347_init_nls_cp7376
-ffffffff8248bd70 d __initcall__kmod_nls_cp775__189_316_init_nls_cp7756
-ffffffff8248bd74 d __initcall__kmod_nls_cp850__189_312_init_nls_cp8506
-ffffffff8248bd78 d __initcall__kmod_nls_cp852__189_334_init_nls_cp8526
-ffffffff8248bd7c d __initcall__kmod_nls_cp855__189_296_init_nls_cp8556
-ffffffff8248bd80 d __initcall__kmod_nls_cp857__189_298_init_nls_cp8576
-ffffffff8248bd84 d __initcall__kmod_nls_cp860__189_361_init_nls_cp8606
-ffffffff8248bd88 d __initcall__kmod_nls_cp861__189_384_init_nls_cp8616
-ffffffff8248bd8c d __initcall__kmod_nls_cp862__189_418_init_nls_cp8626
-ffffffff8248bd90 d __initcall__kmod_nls_cp863__189_378_init_nls_cp8636
-ffffffff8248bd94 d __initcall__kmod_nls_cp864__189_404_init_nls_cp8646
-ffffffff8248bd98 d __initcall__kmod_nls_cp865__189_384_init_nls_cp8656
-ffffffff8248bd9c d __initcall__kmod_nls_cp866__189_302_init_nls_cp8666
-ffffffff8248bda0 d __initcall__kmod_nls_cp869__189_312_init_nls_cp8696
-ffffffff8248bda4 d __initcall__kmod_nls_cp874__189_271_init_nls_cp8746
-ffffffff8248bda8 d __initcall__kmod_nls_cp932__189_7929_init_nls_cp9326
-ffffffff8248bdac d __initcall__kmod_nls_euc_jp__189_577_init_nls_euc_jp6
-ffffffff8248bdb0 d __initcall__kmod_nls_cp936__189_11107_init_nls_cp9366
-ffffffff8248bdb4 d __initcall__kmod_nls_cp949__189_13942_init_nls_cp9496
-ffffffff8248bdb8 d __initcall__kmod_nls_cp950__189_9478_init_nls_cp9506
-ffffffff8248bdbc d __initcall__kmod_nls_cp1250__189_343_init_nls_cp12506
-ffffffff8248bdc0 d __initcall__kmod_nls_cp1251__189_298_init_nls_cp12516
-ffffffff8248bdc4 d __initcall__kmod_nls_ascii__189_163_init_nls_ascii6
-ffffffff8248bdc8 d __initcall__kmod_nls_iso8859_1__189_254_init_nls_iso8859_16
-ffffffff8248bdcc d __initcall__kmod_nls_iso8859_2__189_305_init_nls_iso8859_26
-ffffffff8248bdd0 d __initcall__kmod_nls_iso8859_3__189_305_init_nls_iso8859_36
-ffffffff8248bdd4 d __initcall__kmod_nls_iso8859_4__189_305_init_nls_iso8859_46
-ffffffff8248bdd8 d __initcall__kmod_nls_iso8859_5__189_269_init_nls_iso8859_56
-ffffffff8248bddc d __initcall__kmod_nls_iso8859_6__189_260_init_nls_iso8859_66
-ffffffff8248bde0 d __initcall__kmod_nls_iso8859_7__189_314_init_nls_iso8859_76
-ffffffff8248bde4 d __initcall__kmod_nls_cp1255__189_380_init_nls_cp12556
-ffffffff8248bde8 d __initcall__kmod_nls_iso8859_9__189_269_init_nls_iso8859_96
-ffffffff8248bdec d __initcall__kmod_nls_iso8859_13__189_282_init_nls_iso8859_136
-ffffffff8248bdf0 d __initcall__kmod_nls_iso8859_14__189_338_init_nls_iso8859_146
-ffffffff8248bdf4 d __initcall__kmod_nls_iso8859_15__189_304_init_nls_iso8859_156
-ffffffff8248bdf8 d __initcall__kmod_nls_koi8_r__189_320_init_nls_koi8_r6
-ffffffff8248bdfc d __initcall__kmod_nls_koi8_u__189_327_init_nls_koi8_u6
-ffffffff8248be00 d __initcall__kmod_nls_koi8_ru__189_79_init_nls_koi8_ru6
-ffffffff8248be04 d __initcall__kmod_nls_utf8__189_65_init_nls_utf86
-ffffffff8248be08 d __initcall__kmod_mac_celtic__189_598_init_nls_macceltic6
-ffffffff8248be0c d __initcall__kmod_mac_centeuro__189_528_init_nls_maccenteuro6
-ffffffff8248be10 d __initcall__kmod_mac_croatian__189_598_init_nls_maccroatian6
-ffffffff8248be14 d __initcall__kmod_mac_cyrillic__189_493_init_nls_maccyrillic6
-ffffffff8248be18 d __initcall__kmod_mac_gaelic__189_563_init_nls_macgaelic6
-ffffffff8248be1c d __initcall__kmod_mac_greek__189_493_init_nls_macgreek6
-ffffffff8248be20 d __initcall__kmod_mac_iceland__189_598_init_nls_maciceland6
-ffffffff8248be24 d __initcall__kmod_mac_inuit__189_528_init_nls_macinuit6
-ffffffff8248be28 d __initcall__kmod_mac_romanian__189_598_init_nls_macromanian6
-ffffffff8248be2c d __initcall__kmod_mac_roman__189_633_init_nls_macroman6
-ffffffff8248be30 d __initcall__kmod_mac_turkish__189_598_init_nls_macturkish6
-ffffffff8248be34 d __initcall__kmod_fuse__448_2237_fuse_init6
-ffffffff8248be38 d __initcall__kmod_erofs__442_1121_erofs_module_init6
-ffffffff8248be3c d __initcall__kmod_selinux__557_2251_init_sel_fs6
-ffffffff8248be40 d __initcall__kmod_selinux__324_121_selnl_init6
-ffffffff8248be44 d __initcall__kmod_selinux__556_279_sel_netif_init6
-ffffffff8248be48 d __initcall__kmod_selinux__557_305_sel_netnode_init6
-ffffffff8248be4c d __initcall__kmod_selinux__557_238_sel_netport_init6
-ffffffff8248be50 d __initcall__kmod_selinux__636_3831_aurule_init6
-ffffffff8248be54 d __initcall__kmod_jitterentropy_rng__191_211_jent_mod_init6
-ffffffff8248be58 d __initcall__kmod_fops__346_712_blkdev_init6
-ffffffff8248be5c d __initcall__kmod_genhd__328_1335_proc_genhd_init6
-ffffffff8248be60 d __initcall__kmod_blk_iocost__495_3464_ioc_init6
-ffffffff8248be64 d __initcall__kmod_mq_deadline__471_1242_deadline_init6
-ffffffff8248be68 d __initcall__kmod_kyber_iosched__530_1051_kyber_init6
-ffffffff8248be6c d __initcall__kmod_bfq__555_7527_bfq_init6
-ffffffff8248be70 d __initcall__kmod_io_uring__881_4146_io_uring_init6
-ffffffff8248be74 d __initcall__kmod_libblake2s__189_69_blake2s_mod_init6
-ffffffff8248be78 d __initcall__kmod_libcrc32c__191_74_libcrc32c_mod_init6
-ffffffff8248be7c d __initcall__kmod_percpu_counter__201_257_percpu_counter_startup6
-ffffffff8248be80 d __initcall__kmod_simple_pm_bus__198_91_simple_pm_bus_driver_init6
-ffffffff8248be84 d __initcall__kmod_gpio_generic__240_816_bgpio_driver_init6
-ffffffff8248be88 d __initcall__kmod_pcieportdrv__266_252_pcie_portdrv_init6
-ffffffff8248be8c d __initcall__kmod_proc__265_472_pci_proc_init6
-ffffffff8248be90 d __initcall__kmod_pci_epc_core__265_849_pci_epc_init6
-ffffffff8248be94 d __initcall__kmod_pci_epf_core__265_561_pci_epf_init6
-ffffffff8248be98 d __initcall__kmod_pcie_designware_plat__265_187_dw_plat_pcie_driver_init6
-ffffffff8248be9c d __initcall__kmod_acpi__200_196_ged_driver_init6
-ffffffff8248bea0 d __initcall__kmod_ac__204_331_acpi_ac_init6
-ffffffff8248bea4 d __initcall__kmod_button__248_659_acpi_button_driver_init6
-ffffffff8248bea8 d __initcall__kmod_fan__204_456_acpi_fan_driver_init6
-ffffffff8248beac d __initcall__kmod_processor__216_308_acpi_processor_driver_init6
-ffffffff8248beb0 d __initcall__kmod_thermal__220_1222_acpi_thermal_init6
-ffffffff8248beb4 d __initcall__kmod_battery__324_1294_acpi_battery_init6
-ffffffff8248beb8 d __initcall__kmod_virtio_pci__284_647_virtio_pci_driver_init6
-ffffffff8248bebc d __initcall__kmod_virtio_balloon__330_1128_virtio_balloon_driver_init6
-ffffffff8248bec0 d __initcall__kmod_n_null__261_63_n_null_init6
-ffffffff8248bec4 d __initcall__kmod_pty__263_947_pty_init6
-ffffffff8248bec8 d __initcall__kmod_sysrq__329_1202_sysrq_init6
-ffffffff8248becc d __initcall__kmod_8250__269_1249_serial8250_init6
-ffffffff8248bed0 d __initcall__kmod_8250_lpss__270_433_lpss8250_pci_driver_init6
-ffffffff8248bed4 d __initcall__kmod_8250_mid__270_397_mid8250_pci_driver_init6
-ffffffff8248bed8 d __initcall__kmod_8250_pericom__272_211_pericom8250_pci_driver_init6
-ffffffff8248bedc d __initcall__kmod_8250_of__267_353_of_platform_serial_driver_init6
-ffffffff8248bee0 d __initcall__kmod_ttynull__261_106_ttynull_init6
-ffffffff8248bee4 d __initcall__kmod_random__373_1642_random_sysctls_init6
-ffffffff8248bee8 d __initcall__kmod_virtio_console__293_2293_virtio_console_init6
-ffffffff8248beec d __initcall__kmod_hpet__267_1042_hpet_init6
-ffffffff8248bef0 d __initcall__kmod_intel_rng__267_414_intel_rng_mod_init6
-ffffffff8248bef4 d __initcall__kmod_amd_rng__265_214_amd_rng_mod_init6
-ffffffff8248bef8 d __initcall__kmod_via_rng__190_212_via_rng_mod_init6
-ffffffff8248befc d __initcall__kmod_virtio_rng__266_262_virtio_rng_driver_init6
-ffffffff8248bf00 d __initcall__kmod_topology__261_194_topology_sysfs_init6
-ffffffff8248bf04 d __initcall__kmod_cacheinfo__200_723_cacheinfo_sysfs_init6
-ffffffff8248bf08 d __initcall__kmod_brd__335_528_brd_init6
-ffffffff8248bf0c d __initcall__kmod_loop__358_2273_loop_init6
-ffffffff8248bf10 d __initcall__kmod_virtio_blk__333_1307_virtio_blk_init6
-ffffffff8248bf14 d __initcall__kmod_zram__326_2162_zram_init6
-ffffffff8248bf18 d __initcall__kmod_nd_pmem__338_786_nd_pmem_driver_init6
-ffffffff8248bf1c d __initcall__kmod_nd_btt__339_1738_nd_btt_init6
-ffffffff8248bf20 d __initcall__kmod_of_pmem__289_106_of_pmem_region_driver_init6
-ffffffff8248bf24 d __initcall__kmod_loopback__529_280_blackhole_netdev_init6
-ffffffff8248bf28 d __initcall__kmod_uio__263_1086_uio_init6
-ffffffff8248bf2c d __initcall__kmod_i8042__351_1670_i8042_init6
-ffffffff8248bf30 d __initcall__kmod_serport__268_308_serport_init6
-ffffffff8248bf34 d __initcall__kmod_rtc_cmos__243_1557_cmos_init6
-ffffffff8248bf38 d __initcall__kmod_therm_throt__294_529_thermal_throttle_init_device6
-ffffffff8248bf3c d __initcall__kmod_dm_mod__496_3395_dm_init6
-ffffffff8248bf40 d __initcall__kmod_dm_bufio__311_2145_dm_bufio_init6
-ffffffff8248bf44 d __initcall__kmod_dm_crypt__426_3674_dm_crypt_init6
-ffffffff8248bf48 d __initcall__kmod_dm_verity__310_1515_dm_verity_init6
-ffffffff8248bf4c d __initcall__kmod_dm_user__315_1282_dm_user_init6
-ffffffff8248bf50 d __initcall__kmod_intel_pstate__560_3496_intel_pstate_init6
-ffffffff8248bf54 d __initcall__kmod_cpuidle_haltpoll__199_143_haltpoll_init6
-ffffffff8248bf58 d __initcall__kmod_esrt__261_434_esrt_sysfs_init6
-ffffffff8248bf5c d __initcall__kmod_sock_diag__551_340_sock_diag_init6
-ffffffff8248bf60 d __initcall__kmod_gre_offload__613_286_gre_offload_init6
-ffffffff8248bf64 d __initcall__kmod_sysctl_net_ipv4__623_1470_sysctl_ipv4_init6
-ffffffff8248bf68 d __initcall__kmod_ipip__619_658_ipip_init6
-ffffffff8248bf6c d __initcall__kmod_gre__621_216_gre_init6
-ffffffff8248bf70 d __initcall__kmod_ip_gre__625_1789_ipgre_init6
-ffffffff8248bf74 d __initcall__kmod_ip_vti__617_722_vti_init6
-ffffffff8248bf78 d __initcall__kmod_esp4__647_1246_esp4_init6
-ffffffff8248bf7c d __initcall__kmod_tunnel4__568_295_tunnel4_init6
-ffffffff8248bf80 d __initcall__kmod_inet_diag__634_1481_inet_diag_init6
-ffffffff8248bf84 d __initcall__kmod_tcp_diag__627_247_tcp_diag_init6
-ffffffff8248bf88 d __initcall__kmod_udp_diag__535_296_udp_diag_init6
-ffffffff8248bf8c d __initcall__kmod_tcp_cubic__649_551_cubictcp_register6
-ffffffff8248bf90 d __initcall__kmod_xfrm_user__559_3816_xfrm_user_init6
-ffffffff8248bf94 d __initcall__kmod_xfrm_interface__720_1192_xfrmi_init6
-ffffffff8248bf98 d __initcall__kmod_ipv6__728_1328_inet6_init6
-ffffffff8248bf9c d __initcall__kmod_esp6__707_1299_esp6_init6
-ffffffff8248bfa0 d __initcall__kmod_ipcomp6__608_216_ipcomp6_init6
-ffffffff8248bfa4 d __initcall__kmod_xfrm6_tunnel__555_402_xfrm6_tunnel_init6
-ffffffff8248bfa8 d __initcall__kmod_tunnel6__580_303_tunnel6_init6
-ffffffff8248bfac d __initcall__kmod_mip6__550_405_mip6_init6
-ffffffff8248bfb0 d __initcall__kmod_ip6_vti__738_1329_vti6_tunnel_init6
-ffffffff8248bfb4 d __initcall__kmod_sit__663_1955_sit_init6
-ffffffff8248bfb8 d __initcall__kmod_ip6_tunnel__760_2366_ip6_tunnel_init6
-ffffffff8248bfbc d __initcall__kmod_ip6_gre__674_2424_ip6gre_init6
-ffffffff8248bfc0 d __initcall__kmod_af_packet__658_4761_packet_init6
-ffffffff8248bfc4 d __initcall__kmod_af_key__561_3923_ipsec_pfkey_init6
-ffffffff8248bfc8 d __initcall__kmod_vsock__494_2450_vsock_init6
-ffffffff8248bfcc d __initcall__kmod_vsock_diag__493_174_vsock_diag_init6
-ffffffff8248bfd0 d __initcall__kmod_vmw_vsock_virtio_transport__515_845_virtio_vsock_init6
-ffffffff8248bfd4 d __initcall__kmod_vsock_loopback__495_187_vsock_loopback_init6
-ffffffff8248bfd8 d __initcall__kmod_cpu__336_544_pm_check_save_msr6
-ffffffff8248bfdc D __initcall7_start
-ffffffff8248bfdc d __initcall__kmod_mounts__315_40_kernel_do_mounts_initrd_sysctls_init7
-ffffffff8248bfe0 d __initcall__kmod_intel__286_1060_sld_mitigate_sysctl_init7
-ffffffff8248bfe4 d __initcall__kmod_microcode__267_810_microcode_init7
-ffffffff8248bfe8 d __initcall__kmod_boot__286_1026_hpet_insert_resource7
-ffffffff8248bfec d __initcall__kmod_tsc_sync__185_119_start_sync_check_timer7
-ffffffff8248bff0 d __initcall__kmod_mpparse__266_945_update_mp_table7
-ffffffff8248bff4 d __initcall__kmod_apic__533_2982_lapic_insert_resource7
-ffffffff8248bff8 d __initcall__kmod_ipi__85_27_print_ipi_mode7
-ffffffff8248bffc d __initcall__kmod_vector__527_1340_print_ICs7
-ffffffff8248c000 d __initcall__kmod_kvm__347_620_setup_efi_kvm_sev_migration7
-ffffffff8248c004 d __initcall__kmod_tlb__284_1323_create_tlb_single_page_flush_ceiling7
-ffffffff8248c008 d __initcall__kmod_memtype__254_1232_pat_memtype_list_init7
-ffffffff8248c00c d __initcall__kmod_pkeys__275_184_create_init_pkru_value7
-ffffffff8248c010 d __initcall__kmod_aesni_intel__279_1314_aesni_init7
-ffffffff8248c014 d __initcall__kmod_panic__285_109_kernel_panic_sysctls_init7
-ffffffff8248c018 d __initcall__kmod_panic__287_128_kernel_panic_sysfs_init7
-ffffffff8248c01c d __initcall__kmod_exit__684_100_kernel_exit_sysctls_init7
-ffffffff8248c020 d __initcall__kmod_exit__686_119_kernel_exit_sysfs_init7
-ffffffff8248c024 d __initcall__kmod_reboot__326_1310_reboot_ksysfs_init7
-ffffffff8248c028 d __initcall__kmod_core__1125_4682_sched_core_sysctl_init7
-ffffffff8248c02c d __initcall__kmod_fair__855_213_sched_fair_sysctl_init7
-ffffffff8248c030 d __initcall__kmod_build_policy__886_65_sched_rt_sysctl_init7
-ffffffff8248c034 d __initcall__kmod_build_policy__906_534_sched_pelt_sysctl_init7
-ffffffff8248c038 d __initcall__kmod_build_policy__914_52_sched_dl_sysctl_init7
-ffffffff8248c03c d __initcall__kmod_build_utility__863_241_sched_clock_init_late7
-ffffffff8248c040 d __initcall__kmod_build_utility__880_345_sched_init_debug7
-ffffffff8248c044 d __initcall__kmod_qos__485_425_cpu_latency_qos_init7
-ffffffff8248c048 d __initcall__kmod_main__327_467_pm_debugfs_init7
-ffffffff8248c04c d __initcall__kmod_wakeup_reason__317_438_wakeup_reason_init7
-ffffffff8248c050 d __initcall__kmod_printk__331_3362_printk_late_init7
-ffffffff8248c054 d __initcall__kmod_swiotlb__316_946_swiotlb_create_default_debugfs7
-ffffffff8248c058 d __initcall__kmod_timekeeping_debug__320_44_tk_debug_sleep_time_init7
-ffffffff8248c05c d __initcall__kmod_kexec_core__337_952_kexec_core_sysctl_init7
-ffffffff8248c060 d __initcall__kmod_rstat__280_549_bpf_rstat_kfunc_init7
-ffffffff8248c064 d __initcall__kmod_taskstats__322_724_taskstats_init7
-ffffffff8248c068 d __initcall__kmod_vmscan__724_6167_init_lru_gen7
-ffffffff8248c06c d __initcall__kmod_memory__460_4481_fault_around_debugfs7
-ffffffff8248c070 d __initcall__kmod_swapfile__373_2697_max_swapfiles_check7
-ffffffff8248c074 d __initcall__kmod_core__340_743_kfence_debugfs_init7
-ffffffff8248c078 d __initcall__kmod_huge_memory__418_3193_split_huge_pages_debugfs7
-ffffffff8248c07c d __initcall__kmod_page_owner__332_745_pageowner_init7
-ffffffff8248c080 d __initcall__kmod_early_ioremap__317_99_check_early_ioremap_leak7
-ffffffff8248c084 d __initcall__kmod_usercopy__316_276_set_hardened_usercopy7
-ffffffff8248c088 d __initcall__kmod_integrity__258_232_integrity_fs_init7
-ffffffff8248c08c d __initcall__kmod_crypto_algapi__359_1311_crypto_algapi_init7
-ffffffff8248c090 d __initcall__kmod_blk_timeout__311_99_blk_timeout_init7
-ffffffff8248c094 d __initcall__kmod_pci__277_6732_pci_resource_alignment_sysfs_init7
-ffffffff8248c098 d __initcall__kmod_pci_sysfs__266_1530_pci_sysfs_init7
-ffffffff8248c09c d __initcall__kmod_core__396_1269_sync_state_resume_initcall7
-ffffffff8248c0a0 d __initcall__kmod_dd__264_371_deferred_probe_initcall7
-ffffffff8248c0a4 d __initcall__kmod_dm_mod__297_300_dm_init_init7
-ffffffff8248c0a8 d __initcall__kmod_memmap__261_418_firmware_memmap_init7
-ffffffff8248c0ac d __initcall__kmod_reboot__240_78_efi_shutdown_init7
-ffffffff8248c0b0 d __initcall__kmod_earlycon__266_50_efi_earlycon_unmap_fb7
-ffffffff8248c0b4 d __initcall__kmod_tcp_cong__698_266_tcp_congestion_default7
-ffffffff8248c0b8 d __initcall__kmod_mmconfig_shared__269_718_pci_mmcfg_late_insert_resources7
-ffffffff8248c0bc d __initcall__kmod_trace__356_9747_trace_eval_sync7s
-ffffffff8248c0c0 d __initcall__kmod_trace__361_10396_late_trace_init7s
-ffffffff8248c0c4 d __initcall__kmod_gpiolib_acpi__249_1492_acpi_gpio_handle_deferred_request_irqs7s
-ffffffff8248c0c8 d __initcall__kmod_platform__321_611_of_platform_sync_state_init7s
-ffffffff8248c0cc D __con_initcall_start
-ffffffff8248c0cc d __initcall__kmod_vt__288_3548_con_initcon
-ffffffff8248c0cc D __initcall_end
-ffffffff8248c0d0 d __initcall__kmod_hvc_console__264_246_hvc_console_initcon
-ffffffff8248c0d4 d __initcall__kmod_8250__267_690_univ8250_console_initcon
-ffffffff8248c0d8 D __con_initcall_end
-ffffffff8248c0d8 D __initramfs_start
-ffffffff8248c0d8 d __irf_start
-ffffffff8248c2d8 D __initramfs_size
-ffffffff8248c2d8 d __irf_end
-ffffffff8248c2e0 r __cpu_dev_intel_cpu_dev
-ffffffff8248c2e0 R __x86_cpu_dev_start
-ffffffff8248c2e8 r __cpu_dev_amd_cpu_dev
-ffffffff8248c2f0 r __cpu_dev_hygon_cpu_dev
-ffffffff8248c2f8 r __cpu_dev_centaur_cpu_dev
-ffffffff8248c300 r __cpu_dev_zhaoxin_cpu_dev
-ffffffff8248c308 R __parainstructions
-ffffffff8248c308 R __x86_cpu_dev_end
-ffffffff8248cc68 R __parainstructions_end
-ffffffff8248cc68 R __retpoline_sites
-ffffffff8249438c R __retpoline_sites_end
-ffffffff82494390 R __return_sites
-ffffffff824b9fc0 R __alt_instructions
-ffffffff824b9fc0 R __return_sites_end
-ffffffff824c0530 R __alt_instructions_end
-ffffffff824c22e8 D __apicdrivers
-ffffffff824c22e8 d __apicdrivers_apic_x2apic_phys
-ffffffff824c22f0 d __apicdrivers_apic_x2apic_cluster
-ffffffff824c22f8 d __apicdrivers_apic_physflatapic_flat
-ffffffff824c2308 D __apicdrivers_end
-ffffffff824c2308 t exit_amd_microcode
-ffffffff824c2313 t exit_amd_microcode
-ffffffff824c231e t intel_rapl_exit
-ffffffff824c2350 t amd_uncore_exit
-ffffffff824c2406 t intel_uncore_exit
-ffffffff824c244c t cstate_pmu_exit
-ffffffff824c24ad t exit_amd_microcode
-ffffffff824c24b8 t exit_amd_microcode
-ffffffff824c24c3 t exit_amd_microcode
-ffffffff824c24ce t exit_amd_microcode
-ffffffff824c24d9 t ffh_cstate_exit
-ffffffff824c24fb t exit_amd_microcode
-ffffffff824c2506 t aesni_exit
-ffffffff824c2572 t sha256_ssse3_mod_fini
-ffffffff824c25c1 t sha512_ssse3_mod_fini
-ffffffff824c2643 t polyval_clmulni_mod_exit
-ffffffff824c265a t ikconfig_cleanup
-ffffffff824c2673 t ikheaders_cleanup
-ffffffff824c2697 t zs_stat_exit
-ffffffff824c26a2 t zs_exit
-ffffffff824c26c6 t exit_misc_binfmt
-ffffffff824c26e9 t exit_script_binfmt
-ffffffff824c2700 t exit_elf_binfmt
-ffffffff824c2717 t mbcache_exit
-ffffffff824c272e t ext4_exit_fs
-ffffffff824c27ec t jbd2_remove_jbd_stats_proc_entry
-ffffffff824c280f t journal_exit
-ffffffff824c2837 t exit_nls_cp437
-ffffffff824c284e t exit_nls_cp737
-ffffffff824c2865 t exit_nls_cp775
-ffffffff824c287c t exit_nls_cp850
-ffffffff824c2893 t exit_nls_cp852
-ffffffff824c28aa t exit_nls_cp855
-ffffffff824c28c1 t exit_nls_cp857
-ffffffff824c28d8 t exit_nls_cp860
-ffffffff824c28ef t exit_nls_cp861
-ffffffff824c2906 t exit_nls_cp862
-ffffffff824c291d t exit_nls_cp863
-ffffffff824c2934 t exit_nls_cp864
-ffffffff824c294b t exit_nls_cp865
-ffffffff824c2962 t exit_nls_cp866
-ffffffff824c2979 t exit_nls_cp869
-ffffffff824c2990 t exit_nls_cp874
-ffffffff824c29a7 t exit_nls_cp932
-ffffffff824c29be t exit_nls_euc_jp
-ffffffff824c29d5 t exit_nls_cp936
-ffffffff824c29ec t exit_nls_cp949
-ffffffff824c2a03 t exit_nls_cp950
-ffffffff824c2a1a t exit_nls_cp1250
-ffffffff824c2a31 t exit_nls_cp1251
-ffffffff824c2a48 t exit_nls_ascii
-ffffffff824c2a5f t exit_nls_iso8859_1
-ffffffff824c2a76 t exit_nls_iso8859_2
-ffffffff824c2a8d t exit_nls_iso8859_3
-ffffffff824c2aa4 t exit_nls_iso8859_4
-ffffffff824c2abb t exit_nls_iso8859_5
-ffffffff824c2ad2 t exit_nls_iso8859_6
-ffffffff824c2ae9 t exit_nls_iso8859_7
-ffffffff824c2b00 t exit_nls_cp1255
-ffffffff824c2b17 t exit_nls_iso8859_9
-ffffffff824c2b2e t exit_nls_iso8859_13
-ffffffff824c2b45 t exit_nls_iso8859_14
-ffffffff824c2b5c t exit_nls_iso8859_15
-ffffffff824c2b73 t exit_nls_koi8_r
-ffffffff824c2b8a t exit_nls_koi8_u
-ffffffff824c2ba1 t exit_nls_koi8_ru
-ffffffff824c2bb8 t exit_nls_utf8
-ffffffff824c2bcf t exit_nls_macceltic
-ffffffff824c2be6 t exit_nls_maccenteuro
-ffffffff824c2bfd t exit_nls_maccroatian
-ffffffff824c2c14 t exit_nls_maccyrillic
-ffffffff824c2c2b t exit_nls_macgaelic
-ffffffff824c2c42 t exit_nls_macgreek
-ffffffff824c2c59 t exit_nls_maciceland
-ffffffff824c2c70 t exit_nls_macinuit
-ffffffff824c2c87 t exit_nls_macromanian
-ffffffff824c2c9e t exit_nls_macroman
-ffffffff824c2cb5 t exit_nls_macturkish
-ffffffff824c2ccc t fuse_exit
-ffffffff824c2d05 t erofs_module_exit
-ffffffff824c2d5b t crypto_algapi_exit
-ffffffff824c2d74 t crypto_exit_proc
-ffffffff824c2d8d t seqiv_module_exit
-ffffffff824c2da4 t echainiv_module_exit
-ffffffff824c2dbb t cryptomgr_exit
-ffffffff824c2ddf t hmac_module_exit
-ffffffff824c2df6 t crypto_xcbc_module_exit
-ffffffff824c2e0d t crypto_null_mod_fini
-ffffffff824c2e41 t md5_mod_fini
-ffffffff824c2e58 t sha1_generic_mod_fini
-ffffffff824c2e6f t sha256_generic_mod_fini
-ffffffff824c2e8b t sha512_generic_mod_fini
-ffffffff824c2ea7 t blake2b_mod_fini
-ffffffff824c2ec3 t crypto_cbc_module_exit
-ffffffff824c2eda t crypto_ctr_module_exit
-ffffffff824c2ef6 t crypto_xctr_module_exit
-ffffffff824c2f0d t hctr2_module_exit
-ffffffff824c2f29 t adiantum_module_exit
-ffffffff824c2f40 t nhpoly1305_mod_exit
-ffffffff824c2f57 t crypto_gcm_module_exit
-ffffffff824c2f7f t chacha20poly1305_module_exit
-ffffffff824c2f9b t cryptd_exit
-ffffffff824c2fc3 t des_generic_mod_fini
-ffffffff824c2fdf t aes_fini
-ffffffff824c2ff6 t chacha_generic_mod_fini
-ffffffff824c3012 t poly1305_mod_exit
-ffffffff824c3029 t deflate_mod_fini
-ffffffff824c3051 t crc32c_mod_fini
-ffffffff824c3068 t crypto_authenc_module_exit
-ffffffff824c307f t crypto_authenc_esn_module_exit
-ffffffff824c3096 t lzo_mod_fini
-ffffffff824c30b9 t lzorle_mod_fini
-ffffffff824c30dc t lz4_mod_fini
-ffffffff824c30ff t prng_mod_fini
-ffffffff824c311b t drbg_exit
-ffffffff824c3137 t jent_mod_exit
-ffffffff824c314e t ghash_mod_exit
-ffffffff824c3165 t polyval_mod_exit
-ffffffff824c317c t zstd_mod_fini
-ffffffff824c319f t essiv_module_exit
-ffffffff824c31b6 t ioc_exit
-ffffffff824c31cd t deadline_exit
-ffffffff824c31e4 t kyber_exit
-ffffffff824c31fb t bfq_exit
-ffffffff824c322a t libcrc32c_mod_fini
-ffffffff824c3245 t simple_pm_bus_driver_exit
-ffffffff824c325c t bgpio_driver_exit
-ffffffff824c3273 t pci_epc_exit
-ffffffff824c328a t pci_epf_exit
-ffffffff824c32a1 t interrupt_stats_exit
-ffffffff824c332b t acpi_ac_exit
-ffffffff824c3342 t acpi_button_driver_exit
-ffffffff824c3362 t acpi_fan_driver_exit
-ffffffff824c3379 t acpi_processor_driver_exit
-ffffffff824c33eb t acpi_thermal_exit
-ffffffff824c340e t battery_hook_exit
-ffffffff824c34e2 t acpi_battery_exit
-ffffffff824c351f t virtio_exit
-ffffffff824c3542 t virtio_pci_driver_exit
-ffffffff824c3559 t virtio_balloon_driver_exit
-ffffffff824c3570 t n_null_exit
-ffffffff824c3587 t serial8250_exit
-ffffffff824c35d2 t lpss8250_pci_driver_exit
-ffffffff824c35e9 t mid8250_pci_driver_exit
-ffffffff824c3600 t pericom8250_pci_driver_exit
-ffffffff824c3617 t of_platform_serial_driver_exit
-ffffffff824c362e t ttynull_exit
-ffffffff824c3677 t virtio_console_fini
-ffffffff824c36b7 t unregister_miscdev
-ffffffff824c36ce t hwrng_modexit
-ffffffff824c3721 t intel_rng_mod_exit
-ffffffff824c3749 t amd_rng_mod_exit
-ffffffff824c3793 t via_rng_mod_exit
-ffffffff824c37aa t virtio_rng_driver_exit
-ffffffff824c37c1 t deferred_probe_exit
-ffffffff824c37da t software_node_exit
-ffffffff824c37fd t firmware_class_exit
-ffffffff824c382c t brd_exit
-ffffffff824c3859 t loop_exit
-ffffffff824c3943 t virtio_blk_fini
-ffffffff824c3978 t zram_exit
-ffffffff824c3988 t libnvdimm_exit
-ffffffff824c39d3 t nvdimm_devs_exit
-ffffffff824c39ea t nd_pmem_driver_exit
-ffffffff824c3a01 t nd_btt_exit
-ffffffff824c3a18 t of_pmem_region_driver_exit
-ffffffff824c3a2f t dax_core_exit
-ffffffff824c3a67 t dax_bus_exit
-ffffffff824c3a7e t dma_buf_deinit
-ffffffff824c3ab9 t uio_exit
-ffffffff824c3b02 t serio_exit
-ffffffff824c3b27 t i8042_exit
-ffffffff824c3bae t serport_exit
-ffffffff824c3bc5 t input_exit
-ffffffff824c3bf0 t cmos_exit
-ffffffff824c3c25 t power_supply_class_exit
-ffffffff824c3c3c t watchdog_exit
-ffffffff824c3c58 t watchdog_dev_exit
-ffffffff824c3c8b t dm_exit
-ffffffff824c3cbd t dm_bufio_exit
-ffffffff824c3d81 t dm_crypt_exit
-ffffffff824c3d98 t dm_verity_exit
-ffffffff824c3daf t dm_user_exit
-ffffffff824c3dc6 t edac_exit
-ffffffff824c3e00 t cpufreq_gov_performance_exit
-ffffffff824c3e17 t cpufreq_gov_powersave_exit
-ffffffff824c3e2e t CPU_FREQ_GOV_CONSERVATIVE_exit
-ffffffff824c3e45 t haltpoll_exit
-ffffffff824c3e55 t nvmem_exit
-ffffffff824c3e6c t ipip_fini
-ffffffff824c3eb9 t gre_exit
-ffffffff824c3ed5 t ipgre_fini
-ffffffff824c3f36 t vti_fini
-ffffffff824c3f8c t esp4_fini
-ffffffff824c3fd2 t tunnel4_fini
-ffffffff824c4023 t inet_diag_exit
-ffffffff824c4075 t tcp_diag_exit
-ffffffff824c408c t udp_diag_exit
-ffffffff824c40af t cubictcp_unregister
-ffffffff824c40c6 t xfrm_user_exit
-ffffffff824c4101 t xfrmi_fini
-ffffffff824c4133 t af_unix_exit
-ffffffff824c4184 t esp6_fini
-ffffffff824c41ca t ipcomp6_fini
-ffffffff824c4210 t xfrm6_tunnel_fini
-ffffffff824c4283 t tunnel6_fini
-ffffffff824c4307 t mip6_fini
-ffffffff824c4359 t vti6_tunnel_cleanup
-ffffffff824c43d1 t sit_cleanup
-ffffffff824c441b t ip6_tunnel_cleanup
-ffffffff824c4492 t ip6gre_fini
-ffffffff824c44de t packet_exit
-ffffffff824c452f t ipsec_pfkey_exit
-ffffffff824c4580 t vsock_exit
-ffffffff824c45ad t vsock_diag_exit
-ffffffff824c45c4 t virtio_vsock_exit
-ffffffff824c45f3 t vsock_loopback_exit
-ffffffff824c5000 T __init_end
-ffffffff824c5000 R __smp_locks
-ffffffff824ce000 B __bss_start
-ffffffff824ce000 R __nosave_begin
-ffffffff824ce000 R __nosave_end
-ffffffff824ce000 R __smp_locks_end
-ffffffff824ce000 B empty_zero_page
-ffffffff824cf000 b idt_table
-ffffffff824d0000 b espfix_pud_page
-ffffffff824d1000 b bm_pte
-ffffffff824d2000 B saved_context
-ffffffff824d2140 b sanitize_boot_params.scratch
-ffffffff824d3140 b initcall_debug
-ffffffff824d3148 b saved_command_line
-ffffffff824d3150 b static_command_line
-ffffffff824d3158 b extra_init_args
-ffffffff824d3160 b panic_later
-ffffffff824d3168 b panic_param
-ffffffff824d3170 b reset_devices
-ffffffff824d3178 b execute_command
-ffffffff824d3180 b bootconfig_found
-ffffffff824d3188 b initargs_offs
-ffffffff824d3190 b extra_command_line
-ffffffff824d3198 b initcall_calltime
-ffffffff824d31a0 b ROOT_DEV
-ffffffff824d31a4 b root_wait
-ffffffff824d31a5 b is_tmpfs
-ffffffff824d31a8 b out_file
-ffffffff824d31b0 b in_file
-ffffffff824d31b8 b in_pos
-ffffffff824d31c0 b out_pos
-ffffffff824d31c8 b decompress_error
-ffffffff824d31d0 b initrd_start
-ffffffff824d31d8 b initrd_end
-ffffffff824d31e0 b initrd_below_start_ok
-ffffffff824d31e4 b real_root_dev
-ffffffff824d31e8 b initramfs_cookie
-ffffffff824d31f0 b calibrate_delay.printed
-ffffffff824d31f8 b preset_lpj
-ffffffff824d3200 b lpj_fine
-ffffffff824d3208 b rdpmc_never_available_key
-ffffffff824d3218 b rdpmc_always_available_key
-ffffffff824d3228 b perf_is_hybrid
-ffffffff824d3238 b pmc_refcount
-ffffffff824d323c b active_events
-ffffffff824d3240 b emptyconstraint
-ffffffff824d3268 b unconstrained
-ffffffff824d3290 b empty_attrs
-ffffffff824d3298 b empty_attrs
-ffffffff824d32a0 b rapl_pmus
-ffffffff824d32a8 b rapl_msrs
-ffffffff824d32b0 b rapl_cntr_mask
-ffffffff824d32b8 b rapl_timer_ms
-ffffffff824d32c0 b rapl_cpu_mask
-ffffffff824d32c8 b attrs_empty
-ffffffff824d32d0 b attrs_empty
-ffffffff824d32d8 b attrs_empty
-ffffffff824d32e0 b perf_nmi_window
-ffffffff824d32e8 b pair_constraint
-ffffffff824d3310 b ibs_caps.llvm.663042411003399090
-ffffffff824d3314 b perf_ibs_cache_hit_st_valid.cache_hit_st_valid
-ffffffff824d3318 b amd_uncore_llc
-ffffffff824d3320 b amd_uncore_nb
-ffffffff824d3328 b amd_nb_active_mask
-ffffffff824d3330 b amd_llc_active_mask
-ffffffff824d3338 b pmu_version
-ffffffff824d3339 b l3_mask
-ffffffff824d333c b num_counters_nb
-ffffffff824d3340 b num_counters_llc
-ffffffff824d3348 b uncore_unused_list
-ffffffff824d3350 b msr_mask
-ffffffff824d3360 b pmu_name_str
-ffffffff824d337e b intel_pmu_handle_irq.warned
-ffffffff824d3380 b bts_pmu
-ffffffff824d34a8 b __intel_pmu_pebs_event.dummy_iregs
-ffffffff824d3550 b lbr_from_quirk_key
-ffffffff824d3560 b x86_lbr_mispred
-ffffffff824d3570 b x86_lbr_cycles
-ffffffff824d3580 b x86_lbr_type
-ffffffff824d3590 b pt_pmu.llvm.15753263162152246608
-ffffffff824d36f0 b uncore_no_discover
-ffffffff824d36f8 b empty_uncore
-ffffffff824d3700 b pci2phy_map_lock
-ffffffff824d3708 b uncore_constraint_empty
-ffffffff824d3730 b __uncore_max_dies
-ffffffff824d3738 b uncore_pci_driver
-ffffffff824d3740 b uncore_pci_sub_driver
-ffffffff824d3748 b uncore_extra_pci_dev
-ffffffff824d3750 b pcidrv_registered
-ffffffff824d3758 b uncore_cpu_mask
-ffffffff824d3760 b uncore_nhmex
-ffffffff824d3768 b discovery_tables
-ffffffff824d3770 b num_discovered_types
-ffffffff824d377c b logical_die_id
-ffffffff824d3780 b core_msr_mask
-ffffffff824d3788 b pkg_msr_mask
-ffffffff824d3790 b has_cstate_core
-ffffffff824d3791 b has_cstate_pkg
-ffffffff824d3798 b cstate_core_cpu_mask
-ffffffff824d37a0 b cstate_pkg_cpu_mask
-ffffffff824d37a8 b real_mode_header
-ffffffff824d37b0 b trampoline_cr4_features
-ffffffff824d37b8 b trampoline_pgd_entry
-ffffffff824d37c0 b system_vectors
-ffffffff824d37e0 b x86_platform_ipi_callback
-ffffffff824d37e8 b irq_err_count
-ffffffff824d37f0 b io_bitmap_sequence
-ffffffff824d37f8 b die_lock
-ffffffff824d37fc b die_nest_count
-ffffffff824d3800 b exec_summary_regs
-ffffffff824d38a8 b panic_on_unrecovered_nmi
-ffffffff824d38ac b panic_on_io_nmi
-ffffffff824d38b0 b die_counter
-ffffffff824d38b4 b unknown_nmi_panic
-ffffffff824d38b8 b nmi_reason_lock
-ffffffff824d38bc b edid_info
-ffffffff824d3940 b saved_video_mode
-ffffffff824d3948 b bootloader_type
-ffffffff824d394c b bootloader_version
-ffffffff824d3950 b max_low_pfn_mapped
-ffffffff824d3958 b relocated_ramdisk
-ffffffff824d3960 b boot_params
-ffffffff824d4960 b max_pfn_mapped
-ffffffff824d4968 b screen_info
-ffffffff824d49a8 b mask_and_ack_8259A.spurious_irq_mask
-ffffffff824d49ac b i8259A_auto_eoi
-ffffffff824d49b0 b irq_trigger.0
-ffffffff824d49b1 b irq_trigger.1
-ffffffff824d49b8 b io_apic_irqs
-ffffffff824d49c0 b i8259A_lock
-ffffffff824d49c4 b text_gen_insn.insn
-ffffffff824d49c9 b text_gen_insn.insn
-ffffffff824d49d0 b espfix_pages
-ffffffff824d49d8 b slot_random
-ffffffff824d49dc b page_random
-ffffffff824d49e0 b x86_swiotlb_enable
-ffffffff824d49e8 b dma_ops
-ffffffff824d49f0 b force_hpet_resume_type
-ffffffff824d49f4 b x86_apple_machine
-ffffffff824d49f8 b rcba_base
-ffffffff824d4a00 b cached_dev
-ffffffff824d4a08 b force_hpet_address
-ffffffff824d4a10 b cpu0_hotpluggable
-ffffffff824d4a18 b arch_debugfs_dir
-ffffffff824d4a20 b uniproc_patched
-ffffffff824d4a24 b noreplace_smp
-ffffffff824d4a30 b tp_vec
-ffffffff824d5a30 b tp_vec_nr
-ffffffff824d5a38 b bp_desc
-ffffffff824d5a48 b global_clock_event
-ffffffff824d5a50 b __use_tsc
-ffffffff824d5a60 b cyc2ns_suspend
-ffffffff824d5a68 b art_to_tsc_denominator
-ffffffff824d5a6c b art_to_tsc_numerator
-ffffffff824d5a70 b art_to_tsc_offset
-ffffffff824d5a78 b art_related_clocksource
-ffffffff824d5a80 b no_sched_irq_time
-ffffffff824d5a84 b no_tsc_watchdog
-ffffffff824d5a88 b ref_freq
-ffffffff824d5a90 b loops_per_jiffy_ref
-ffffffff824d5a98 b tsc_khz_ref
-ffffffff824d5aa0 b tsc_refine_calibration_work.ref_start
-ffffffff824d5aa8 b tsc_refine_calibration_work.hpet
-ffffffff824d5aac b tsc_clocksource_reliable
-ffffffff824d5ab0 b rtc_lock
-ffffffff824d5ab8 b boot_option_idle_override
-ffffffff824d5ac0 b x86_idle
-ffffffff824d5ac8 b __fpu_state_size_dynamic
-ffffffff824d5ad8 b __xstate_dump_leaves.should_dump
-ffffffff824d5ae0 b xstate_fx_sw_bytes
-ffffffff824d5b10 b num_cache_leaves
-ffffffff824d5b14 b init_intel_cacheinfo.is_initialized
-ffffffff824d5b18 b init_amd_l3_attrs.amd_l3_attrs
-ffffffff824d5b20 b cpu_initialized_mask
-ffffffff824d5b28 b cpu_callin_mask
-ffffffff824d5b30 b cpu_callout_mask
-ffffffff824d5b38 b cpu_sibling_setup_mask
-ffffffff824d5b40 b cpu_devs
-ffffffff824d5ba0 b cpu_caps_cleared
-ffffffff824d5bf8 b cpu_caps_set
-ffffffff824d5c4c b pku_disabled
-ffffffff824d5c50 b switch_to_cond_stibp
-ffffffff824d5c60 b switch_mm_cond_ibpb
-ffffffff824d5c70 b switch_mm_always_ibpb
-ffffffff824d5c80 b mds_user_clear
-ffffffff824d5c90 b switch_mm_cond_l1d_flush
-ffffffff824d5ca0 b mmio_stale_data_clear
-ffffffff824d5cb0 b x86_spec_ctrl_base
-ffffffff824d5cb8 b spectre_v2_bad_module
-ffffffff824d5cbc b l1tf_vmx_mitigation
-ffffffff824d5cc0 b itlb_multihit_kvm_mitigation
-ffffffff824d5cc1 b srbds_off
-ffffffff824d5cc8 b mds_idle_clear
-ffffffff824d5cd8 b arch_scale_freq_key
-ffffffff824d5ce8 b bld_ratelimit
-ffffffff824d5d10 b detect_tme.tme_activate_cpu0
-ffffffff824d5d18 b rdrand_force
-ffffffff824d5d20 b mtrr_usage_table
-ffffffff824d6120 b __mtrr_enabled
-ffffffff824d6121 b mtrr_aps_delayed_init
-ffffffff824d6130 b mtrr_value
-ffffffff824d7930 b num_var_ranges
-ffffffff824d7938 b mtrr_if
-ffffffff824d7940 b size_or_mask
-ffffffff824d7948 b size_and_mask
-ffffffff824d7950 b mtrr_state_set
-ffffffff824d7954 b mtrr_state
-ffffffff824d89b0 b mtrr_tom2
-ffffffff824d89b8 b smp_changes_mask
-ffffffff824d89c0 b set_atomicity_lock
-ffffffff824d89c8 b cr4
-ffffffff824d89d0 b deftype_lo
-ffffffff824d89d4 b deftype_hi
-ffffffff824d89d8 b disable_mtrr_trim
-ffffffff824d89d9 b initrd_gone
-ffffffff824d89e0 b ucode_cpu_info
-ffffffff824d8ce0 b microcode_ops
-ffffffff824d8ce8 b dis_ucode_ldr
-ffffffff824d8cf0 b microcode_pdev
-ffffffff824d8cf8 b cpu_root_microcode_attrs
-ffffffff824d8d00 b intel_ucode_patch
-ffffffff824d8d08 b llc_size_per_core
-ffffffff824d8d0c b apply_microcode_intel.prev_rev
-ffffffff824d8d10 b collect_cpu_info.prev
-ffffffff824d8d20 b perfctr_nmi_owner
-ffffffff824d8d30 b evntsel_nmi_owner
-ffffffff824d8d40 b has_steal_clock
-ffffffff824d8d44 b has_steal_clock
-ffffffff824d8d48 b x86_hyper_type
-ffffffff824d8d4c b hv_root_partition
-ffffffff824d8d50 b ms_hyperv
-ffffffff824d8d80 b acpi_irq_model
-ffffffff824d8d84 b acpi_noirq
-ffffffff824d8d88 b __acpi_unregister_gsi
-ffffffff824d8d90 b acpi_disabled
-ffffffff824d8d94 b acpi_pci_disabled
-ffffffff824d8d98 b acpi_strict
-ffffffff824d8d9c b acpi_disable_cmcff
-ffffffff824d8da0 b acpi_support_online_capable
-ffffffff824d8da8 b acpi_mp_wake_mailbox_paddr
-ffffffff824d8db0 b acpi_mp_wake_mailbox
-ffffffff824d8db8 b acpi_lapic
-ffffffff824d8dbc b acpi_ioapic
-ffffffff824d8dc0 b acpi_realmode_flags
-ffffffff824d8dd0 b temp_stack
-ffffffff824d9dd0 b init_freq_invariance_cppc.init_done
-ffffffff824d9dd8 b cpu_cstate_entry
-ffffffff824d9de0 b mwait_supported
-ffffffff824d9df0 b port_cf9_safe
-ffffffff824d9df4 b crash_ipi_issued
-ffffffff824d9df8 b shootdown_callback
-ffffffff824d9e00 b waiting_for_crash_ipi
-ffffffff824d9e04 b reboot_emergency.llvm.403937739861444575
-ffffffff824d9e08 b pm_power_off
-ffffffff824d9e10 b smp_no_nmi_ipi
-ffffffff824d9e14 b enable_start_cpu0
-ffffffff824d9e18 b announce_cpu.current_node
-ffffffff824d9e1c b announce_cpu.width
-ffffffff824d9e20 b announce_cpu.node_width
-ffffffff824d9e24 b cpu0_logical_apicid
-ffffffff824d9e28 b x86_topology_update
-ffffffff824d9e2c b test_runs
-ffffffff824d9e30 b start_count
-ffffffff824d9e34 b skip_test
-ffffffff824d9e38 b stop_count
-ffffffff824d9e3c b nr_warps
-ffffffff824d9e40 b random_warps
-ffffffff824d9e48 b max_warp
-ffffffff824d9e50 b last_tsc
-ffffffff824d9e58 b tsc_sync_check_timer
-ffffffff824d9e80 b sync_lock
-ffffffff824d9e84 b mpf_found
-ffffffff824d9e88 b mpf_base
-ffffffff824d9e90 b enable_update_mptable
-ffffffff824d9e94 b x2apic_state
-ffffffff824d9e98 b max_physical_apicid
-ffffffff824d9e9c b multi
-ffffffff824d9ea0 b eilvt_offsets
-ffffffff824d9eb0 b apic_pm_state.0
-ffffffff824d9eb4 b apic_pm_state.1
-ffffffff824d9eb8 b apic_pm_state.2
-ffffffff824d9ebc b apic_pm_state.3
-ffffffff824d9ec0 b apic_pm_state.4
-ffffffff824d9ec4 b apic_pm_state.5
-ffffffff824d9ec8 b apic_pm_state.6
-ffffffff824d9ecc b apic_pm_state.7
-ffffffff824d9ed0 b apic_pm_state.8
-ffffffff824d9ed4 b apic_pm_state.9
-ffffffff824d9ed8 b apic_pm_state.10
-ffffffff824d9edc b apic_pm_state.11
-ffffffff824d9ee0 b apic_pm_state.12
-ffffffff824d9ee4 b apic_pm_state.13
-ffffffff824d9ee8 b multi_checked
-ffffffff824d9ef0 b phys_cpu_present_map
-ffffffff824daef0 b num_processors
-ffffffff824daef4 b disabled_cpus
-ffffffff824daef8 b lapic_timer_period
-ffffffff824daefc b x2apic_mode
-ffffffff824daf00 b apic_use_ipi_shorthand
-ffffffff824daf10 b vector_lock.llvm.2897711216817875040
-ffffffff824daf18 b vector_matrix.llvm.2897711216817875040
-ffffffff824daf20 b vector_searchmask
-ffffffff824daf28 b x86_vector_domain
-ffffffff824daf30 b ioapics
-ffffffff824dd330 b mp_irq_entries
-ffffffff824dd340 b mp_irqs
-ffffffff824df340 b mp_bus_not_pci
-ffffffff824df360 b ioapic_lock.llvm.5462432680987278384
-ffffffff824df364 b ioapic_initialized
-ffffffff824df368 b ioapic_dynirq_base
-ffffffff824df370 b ioapic_resources
-ffffffff824df378 b irq_mis_count
-ffffffff824df37c b skip_ioapic_setup
-ffffffff824df380 b gsi_top
-ffffffff824df384 b nr_ioapics
-ffffffff824df388 b x2apic_phys
-ffffffff824df390 b cluster_hotplug_mask
-ffffffff824df398 b crash_vmclear_loaded_vmcss
-ffffffff824df3a0 b crash_smp_send_stop.cpus_stopped
-ffffffff824df3a4 b current_xpos
-ffffffff824df3a8 b hpet_virt_address
-ffffffff824df3b0 b hpet_legacy_int_enabled
-ffffffff824df3b8 b hpet_freq
-ffffffff824df3c0 b hpet_verbose
-ffffffff824df3c8 b hpet_base.0
-ffffffff824df3d0 b hpet_base.1
-ffffffff824df3d8 b hpet_base.2
-ffffffff824df3e0 b hpet_base.3
-ffffffff824df3e8 b irq_handler
-ffffffff824df3f0 b hpet_rtc_flags
-ffffffff824df3f8 b hpet_default_delta
-ffffffff824df400 b hpet_pie_limit
-ffffffff824df408 b hpet_pie_delta
-ffffffff824df40c b hpet_t1_cmp
-ffffffff824df410 b hpet_prev_update_sec
-ffffffff824df414 b hpet_alarm_time.0
-ffffffff824df418 b hpet_alarm_time.1
-ffffffff824df41c b hpet_alarm_time.2
-ffffffff824df420 b hpet_pie_count
-ffffffff824df428 b hpet_blockid
-ffffffff824df429 b boot_hpet_disable
-ffffffff824df430 b hpet_domain
-ffffffff824df438 b hpet_address
-ffffffff824df440 b hpet_force_user
-ffffffff824df441 b hpet_msi_disable
-ffffffff824df448 b amd_northbridges.0
-ffffffff824df450 b amd_northbridges.1.llvm.483022755006441585
-ffffffff824df458 b amd_northbridges.2
-ffffffff824df460 b amd_set_subcaches.reset
-ffffffff824df464 b amd_set_subcaches.ban
-ffffffff824df468 b amd_flush_garts.gart_lock
-ffffffff824df470 b flush_words
-ffffffff824df478 b kvm_async_pf_enabled
-ffffffff824df490 b async_pf_sleepers
-ffffffff824e0490 b kvm_async_pf_task_wake.__key
-ffffffff824e0490 b kvmapf
-ffffffff824e0494 b steal_acc
-ffffffff824e0495 b kvm_async_pf_queue_task.__key
-ffffffff824e0498 b has_guest_poll
-ffffffff824e1000 b hv_clock_boot
-ffffffff824e2000 b hvclock_mem
-ffffffff824e2008 b wall_clock
-ffffffff824e2018 b paravirt_steal_enabled
-ffffffff824e2028 b paravirt_steal_rq_enabled
-ffffffff824e2038 b last_value
-ffffffff824e2040 b ioapic_id
-ffffffff824e2048 b trace_pagefault_key
-ffffffff824e2058 b itmt_sysctl_header
-ffffffff824e2060 b unwind_dump.dumped_before
-ffffffff824e2068 b fam10h_pci_mmconf_base
-ffffffff824e2070 b min_pfn_mapped
-ffffffff824e2078 b nr_pfn_mapped
-ffffffff824e2080 b pfn_mapped
-ffffffff824e28b0 b page_size_mask
-ffffffff824e28b4 b after_bootmem
-ffffffff824e28b8 b set_memory_block_size
-ffffffff824e28c0 b memory_block_size_probed
-ffffffff824e28c8 b force_personality32
-ffffffff824e28cc b kernel_set_to_readonly
-ffffffff824e28d0 b pgd_lock
-ffffffff824e28d8 b pt_regs_nr.__dummy
-ffffffff824e28e0 b fixmaps_set
-ffffffff824e28f0 b direct_pages_count
-ffffffff824e2918 b cpa_lock
-ffffffff824e291c b memtype_lock
-ffffffff824e2920 b pat_debug_enable
-ffffffff824e2928 b memtype_rbroot
-ffffffff824e2938 b pti_mode
-ffffffff824e2940 b aesni_simd_aeads
-ffffffff824e2950 b aesni_simd_skciphers
-ffffffff824e2978 b aesni_simd_xctr
-ffffffff824e2980 b efi_no_storage_paranoia
-ffffffff824e2988 b efi_config_table
-ffffffff824e2990 b efi_nr_tables
-ffffffff824e2998 b efi_runtime
-ffffffff824e29a0 b efi_fw_vendor
-ffffffff824e29a8 b efi_setup
-ffffffff824e29b0 b efi_prev_mm
-ffffffff824e29b8 b init_new_context.__key
-ffffffff824e29b8 b init_new_context.__key
-ffffffff824e29b8 b init_new_context_ldt.__key
-ffffffff824e29b8 b init_new_context_ldt.__key
-ffffffff824e29b8 b vm_area_cachep
-ffffffff824e29c0 b mm_cachep
-ffffffff824e29c8 b task_struct_cachep
-ffffffff824e29d0 b max_threads
-ffffffff824e29d8 b sighand_cachep
-ffffffff824e29e0 b signal_cachep
-ffffffff824e29e8 b files_cachep
-ffffffff824e29f0 b fs_cachep
-ffffffff824e29f8 b total_forks
-ffffffff824e2a00 b nr_threads
-ffffffff824e2a04 b copy_signal.__key
-ffffffff824e2a04 b copy_signal.__key.38
-ffffffff824e2a04 b copy_signal.__key.40
-ffffffff824e2a04 b futex_init_task.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b init_completion.__key
-ffffffff824e2a04 b mmap_init_lock.__key
-ffffffff824e2a04 b panic_on_taint_nousertaint
-ffffffff824e2a04 b sighand_ctor.__key
-ffffffff824e2a08 b panic_notifier_list
-ffffffff824e2a18 b warn_count
-ffffffff824e2a20 b panic.buf
-ffffffff824e2e20 b crash_kexec_post_notifiers
-ffffffff824e2e28 b panic_blink
-ffffffff824e2e30 b print_tainted.buf
-ffffffff824e2e50 b tainted_mask.llvm.9761402500010473794
-ffffffff824e2e58 b panic_on_taint
-ffffffff824e2e60 b pause_on_oops_flag.llvm.9761402500010473794
-ffffffff824e2e68 b panic_print
-ffffffff824e2e70 b pause_on_oops
-ffffffff824e2e74 b do_oops_enter_exit.spin_counter
-ffffffff824e2e78 b pause_on_oops_lock
-ffffffff824e2e7c b cpu_hotplug_disabled
-ffffffff824e2e80 b cpus_booted_once_mask
-ffffffff824e2e88 b frozen_cpus
-ffffffff824e2e90 b __boot_cpu_id
-ffffffff824e2e94 b cpuhp_tasks_frozen
-ffffffff824e2e98 b oops_count
-ffffffff824e2e9c b check_stack_usage.low_water_lock
-ffffffff824e2ea0 b resource_lock.llvm.9515817954454269068
-ffffffff824e2ea8 b iomem_inode
-ffffffff824e2eb0 b strict_iomem_checks
-ffffffff824e2eb4 b reserve_setup.reserved
-ffffffff824e2ec0 b reserve_setup.reserve
-ffffffff824e2fc0 b iomem_init_inode.iomem_vfs_mount
-ffffffff824e2fc8 b iomem_init_inode.iomem_fs_cnt
-ffffffff824e2fcc b sysctl_legacy_va_layout
-ffffffff824e2fd0 b dev_table
-ffffffff824e3010 b uidhash_lock
-ffffffff824e3020 b uidhash_table
-ffffffff824e3420 b uid_cachep
-ffffffff824e3428 b sigqueue_cachep.llvm.70612449467024088
-ffffffff824e3428 b user_epoll_alloc.__key
-ffffffff824e3430 b running_helpers
-ffffffff824e3434 b umh_sysctl_lock
-ffffffff824e3438 b wq_disable_numa
-ffffffff824e3439 b wq_power_efficient
-ffffffff824e343a b wq_debug_force_rr_cpu
-ffffffff824e343b b wq_online
-ffffffff824e343c b alloc_workqueue.__key
-ffffffff824e343c b wq_mayday_lock
-ffffffff824e3440 b workqueue_freezing
-ffffffff824e3448 b wq_unbound_cpumask
-ffffffff824e3450 b pwq_cache
-ffffffff824e3460 b unbound_std_wq_attrs
-ffffffff824e3470 b ordered_wq_attrs
-ffffffff824e3480 b unbound_pool_hash
-ffffffff824e3680 b wq_select_unbound_cpu.printed_dbg_warning
-ffffffff824e3688 b manager_wait
-ffffffff824e3690 b restore_unbound_workers_cpumask.cpumask
-ffffffff824e3698 b wq_watchdog_timer
-ffffffff824e36c0 b alloc_pid.__key
-ffffffff824e36c0 b work_exited
-ffffffff824e36d0 b module_kset
-ffffffff824e36d8 b module_sysfs_initialized
-ffffffff824e36dc b kmalloced_params_lock
-ffffffff824e36e0 b kthread_create_lock
-ffffffff824e36e8 b kthreadd_task
-ffffffff824e36f0 b nsproxy_cachep.llvm.11205866996379258926
-ffffffff824e36f8 b die_chain
-ffffffff824e36f8 b srcu_init_notifier_head.__key
-ffffffff824e3708 b rcu_expedited
-ffffffff824e370c b rcu_normal
-ffffffff824e3710 b kernel_kobj
-ffffffff824e3718 b cred_jar.llvm.1755043206215399025
-ffffffff824e3720 b restart_handler_list.llvm.4504324690878579718
-ffffffff824e3730 b reboot_cpu
-ffffffff824e3738 b power_off_handler_list
-ffffffff824e3748 b platform_power_off_handler
-ffffffff824e3750 b poweroff_force
-ffffffff824e3758 b platform_sys_off_handler
-ffffffff824e3790 b cad_pid
-ffffffff824e3798 b reboot_force
-ffffffff824e379c b reboot_mode
-ffffffff824e37a0 b entry_count
-ffffffff824e37a4 b entry_count
-ffffffff824e37a8 b async_lock
-ffffffff824e37b0 b ucounts_hashtable
-ffffffff824e57b0 b ucounts_lock
-ffffffff824e57b8 b ue_zero
-ffffffff824e57c0 b user_namespace_sysctl_init.user_header
-ffffffff824e57d0 b user_namespace_sysctl_init.empty
-ffffffff824e5810 b task_group_lock
-ffffffff824e5814 b uclamp_default
-ffffffff824e581c b cpu_resched_latency.warned_once
-ffffffff824e5820 b num_cpus_frozen
-ffffffff824e5828 b sched_schedstats
-ffffffff824e5840 b root_task_group
-ffffffff824e5a00 b sched_uclamp_used
-ffffffff824e5a10 b sched_numa_balancing
-ffffffff824e5a40 b nohz
-ffffffff824e5a68 b sched_thermal_decay_shift
-ffffffff824e5a6c b balancing
-ffffffff824e5a70 b sched_smt_present
-ffffffff824e5a80 b sched_clock_irqtime.llvm.2249203583791563227
-ffffffff824e5a88 b dl_generation
-ffffffff824e5a90 b def_rt_bandwidth
-ffffffff824e5af0 b __sched_clock_stable.llvm.7973428303895222435
-ffffffff824e5b00 b __sched_clock_stable_early
-ffffffff824e5b08 b sched_clock_running
-ffffffff824e5b18 b debugfs_sched
-ffffffff824e5b20 b sd_sysctl_cpus
-ffffffff824e5b28 b sd_dentry
-ffffffff824e5b30 b sched_debug_lock
-ffffffff824e5b40 b group_path
-ffffffff824e6b40 b avenrun
-ffffffff824e6b58 b sched_domains_tmpmask
-ffffffff824e6b60 b sched_domains_tmpmask2
-ffffffff824e6b68 b fallback_doms
-ffffffff824e6b70 b ndoms_cur
-ffffffff824e6b78 b doms_cur
-ffffffff824e6b80 b dattr_cur
-ffffffff824e6b88 b housekeeping
-ffffffff824e6bd8 b sched_domain_level_max
-ffffffff824e6be0 b global_tunables
-ffffffff824e6be8 b sugov_kthread_create.__key
-ffffffff824e6be8 b sugov_kthread_create.__key.208
-ffffffff824e6bf0 b calc_load_nohz
-ffffffff824e6c00 b calc_load_idx
-ffffffff824e6c04 b group_init.__key
-ffffffff824e6c04 b group_init.__key.362
-ffffffff824e6c08 b def_root_domain
-ffffffff824e7330 b calc_load_update
-ffffffff824e7338 b psi_disabled
-ffffffff824e7348 b calc_load_tasks
-ffffffff824e7350 b sched_asym_cpucapacity
-ffffffff824e7360 b housekeeping_overridden
-ffffffff824e7370 b __percpu_init_rwsem.__key
-ffffffff824e7370 b rt_mutex_adjust_prio_chain.prev_max
-ffffffff824e7374 b pm_qos_lock
-ffffffff824e7378 b freq_constraints_init.__key
-ffffffff824e7378 b freq_constraints_init.__key.4
-ffffffff824e7378 b power_kobj
-ffffffff824e7380 b pm_wq
-ffffffff824e7388 b orig_fgconsole
-ffffffff824e738c b orig_kmsg
-ffffffff824e7390 b s2idle_ops.llvm.2207631519674298359
-ffffffff824e7398 b s2idle_lock
-ffffffff824e73a0 b suspend_ops
-ffffffff824e73a8 b pm_suspend_target_state
-ffffffff824e73ac b pm_suspend_global_flags
-ffffffff824e73b0 b pm_states
-ffffffff824e73d0 b mem_sleep_states
-ffffffff824e73f0 b wakelocks_tree
-ffffffff824e73f8 b wakeup_reason_lock
-ffffffff824e73fc b wakeup_reason
-ffffffff824e7400 b capture_reasons
-ffffffff824e7408 b wakeup_irq_nodes_cache
-ffffffff824e7410 b non_irq_wake_reason
-ffffffff824e7510 b kobj
-ffffffff824e7518 b last_monotime
-ffffffff824e7520 b last_stime
-ffffffff824e7528 b curr_monotime
-ffffffff824e7530 b curr_stime
-ffffffff824e7538 b clear_seq
-ffffffff824e7550 b __log_buf
-ffffffff82507550 b printk_rb_dynamic
-ffffffff825075a8 b syslog_seq
-ffffffff825075b0 b syslog_partial
-ffffffff825075b8 b syslog_time
-ffffffff825075c0 b early_console
-ffffffff825075c8 b printk_console_no_auto_verbose
-ffffffff825075cc b console_suspended
-ffffffff825075d0 b console_locked.llvm.8644960526485885767
-ffffffff825075d4 b console_may_schedule.llvm.8644960526485885767
-ffffffff825075d8 b console_drivers
-ffffffff825075e0 b dump_list_lock
-ffffffff825075e4 b always_kmsg_dump
-ffffffff825075e8 b printk_cpu_sync_nested
-ffffffff825075ec b console_set_on_cmdline
-ffffffff825075f0 b devkmsg_open.__key
-ffffffff825075f0 b printk_count_nmi_early
-ffffffff825075f1 b printk_count_early
-ffffffff825075f4 b console_owner_lock
-ffffffff825075f8 b console_owner
-ffffffff82507600 b console_waiter
-ffffffff82507604 b console_msg_format
-ffffffff82507610 b console_cmdline
-ffffffff82507710 b console_flush_all.dropped_text
-ffffffff82507750 b console_flush_all.ext_text
-ffffffff82509750 b console_flush_all.text
-ffffffff82509b50 b console_emit_next_record.panic_console_dropped
-ffffffff82509b54 b oops_in_progress
-ffffffff82509b58 b dmesg_restrict
-ffffffff82509b60 b allocated_irqs
-ffffffff8250a188 b irq_kobj_base
-ffffffff8250a190 b alloc_desc.__key
-ffffffff8250a190 b alloc_desc.__key.6
-ffffffff8250a190 b force_irqthreads_key
-ffffffff8250a1a0 b irq_do_set_affinity.tmp_mask_lock
-ffffffff8250a1a8 b irq_do_set_affinity.tmp_mask
-ffffffff8250a1b0 b irq_setup_affinity.mask_lock
-ffffffff8250a1b8 b irq_setup_affinity.mask
-ffffffff8250a1c0 b irq_default_affinity
-ffffffff8250a1c8 b irq_poll_cpu
-ffffffff8250a1cc b irq_poll_active
-ffffffff8250a1d0 b irqs_resend
-ffffffff8250a7f8 b irq_default_domain.llvm.2900055442092985048
-ffffffff8250a800 b __irq_domain_create.unknown_domains
-ffffffff8250a804 b __irq_domain_create.__key
-ffffffff8250a808 b root_irq_dir
-ffffffff8250a810 b show_interrupts.prec
-ffffffff8250a814 b no_irq_affinity
-ffffffff8250a818 b msi_dev_attrs
-ffffffff8250a818 b msi_setup_device_data.__key
-ffffffff8250a820 b rcu_normal_after_boot
-ffffffff8250a824 b rcu_task_cb_adjust
-ffffffff8250a825 b dump_tree
-ffffffff8250a825 b init_srcu_struct_fields.__key
-ffffffff8250a825 b init_srcu_struct_fields.__key.11
-ffffffff8250a825 b init_srcu_struct_fields.__key.13
-ffffffff8250a825 b rcu_sync_init.__key.llvm.580029301833864819
-ffffffff8250a826 b rcu_fanout_exact
-ffffffff8250a828 b gp_preinit_delay
-ffffffff8250a82c b gp_init_delay
-ffffffff8250a830 b gp_cleanup_delay
-ffffffff8250a838 b jiffies_to_sched_qs
-ffffffff8250a840 b rcu_kick_kthreads
-ffffffff8250a848 b rcu_gp_slow_suppress
-ffffffff8250a850 b rcu_init_geometry.old_nr_cpu_ids
-ffffffff8250a858 b rcu_init_geometry.initialized
-ffffffff8250a860 b rcu_gp_wq
-ffffffff8250a868 b sysrq_rcu
-ffffffff8250a870 b rcu_nocb_mask
-ffffffff8250a878 b rcu_exp_gp_kworker
-ffffffff8250a880 b rcu_exp_par_gp_kworker
-ffffffff8250a888 b check_cpu_stall.___rfd_beenhere
-ffffffff8250a88c b check_cpu_stall.___rfd_beenhere.89
-ffffffff8250a890 b rcu_stall_kick_kthreads.___rfd_beenhere
-ffffffff8250a894 b panic_on_rcu_stall.cpu_stall
-ffffffff8250a898 b dma_default_coherent
-ffffffff8250a898 b rcu_boot_init_nocb_percpu_data.__key
-ffffffff8250a898 b rcu_boot_init_nocb_percpu_data.__key.206
-ffffffff8250a898 b rcu_boot_init_nocb_percpu_data.__key.208
-ffffffff8250a898 b rcu_boot_init_nocb_percpu_data.__key.210
-ffffffff8250a898 b rcu_init_one.__key
-ffffffff8250a898 b rcu_init_one.__key.189
-ffffffff8250a898 b rcu_init_one.__key.191
-ffffffff8250a898 b rcu_init_one.__key.193
-ffffffff8250a898 b rcu_init_one.__key.195
-ffffffff8250a898 b rcu_init_one.__key.197
-ffffffff8250a898 b rcu_init_one.__key.199
-ffffffff8250a898 b rcu_init_one_nocb.__key
-ffffffff8250a898 b rcu_init_one_nocb.__key.202
-ffffffff8250a8a0 b io_tlb_default_mem
-ffffffff8250a8f0 b swiotlb_force_bounce
-ffffffff8250a8f1 b swiotlb_force_disable
-ffffffff8250a8f8 b default_nareas
-ffffffff8250a900 b swiotlb_unencrypted_base
-ffffffff8250a908 b freezer_active
-ffffffff8250a918 b pm_nosig_freezing
-ffffffff8250a919 b pm_freezing
-ffffffff8250a91c b freezer_lock
-ffffffff8250a920 b prof_shift
-ffffffff8250a928 b prof_len
-ffffffff8250a930 b prof_cpu_mask
-ffffffff8250a938 b prof_buffer
-ffffffff8250a940 b do_sys_settimeofday64.firsttime
-ffffffff8250a948 b sys_tz
-ffffffff8250a950 b timers_nohz_active
-ffffffff8250a960 b timers_migration_enabled
-ffffffff8250a970 b timekeeper_lock
-ffffffff8250a980 b tk_core.llvm.7019641539924101344
-ffffffff8250aaa0 b pvclock_gtod_chain
-ffffffff8250aaa8 b persistent_clock_exists.llvm.7019641539924101344
-ffffffff8250aaa9 b suspend_timing_needed.llvm.7019641539924101344
-ffffffff8250aab0 b timekeeping_suspend_time
-ffffffff8250aac0 b timekeeping_suspend.old_delta.0
-ffffffff8250aac8 b timekeeping_suspend.old_delta.1
-ffffffff8250aad0 b cycles_at_suspend
-ffffffff8250aad8 b shadow_timekeeper
-ffffffff8250abf0 b halt_fast_timekeeper.tkr_dummy
-ffffffff8250ac28 b persistent_clock_is_local
-ffffffff8250ac30 b time_adjust
-ffffffff8250ac38 b tick_length_base
-ffffffff8250ac40 b tick_length.llvm.7893451861636722902
-ffffffff8250ac48 b time_offset
-ffffffff8250ac50 b time_state
-ffffffff8250ac58 b sync_hrtimer
-ffffffff8250ac98 b time_freq
-ffffffff8250aca0 b tick_nsec
-ffffffff8250aca8 b ntp_tick_adj
-ffffffff8250acb0 b time_reftime
-ffffffff8250acb8 b watchdog_lock
-ffffffff8250acc0 b cpus_ahead
-ffffffff8250acc8 b cpus_behind
-ffffffff8250acd0 b cpus_chosen
-ffffffff8250acd8 b csnow_mid
-ffffffff8250ace0 b suspend_clocksource
-ffffffff8250ace8 b suspend_start
-ffffffff8250acf0 b finished_booting
-ffffffff8250acf8 b curr_clocksource
-ffffffff8250ad00 b watchdog_running
-ffffffff8250ad08 b watchdog
-ffffffff8250ad10 b watchdog_timer
-ffffffff8250ad38 b watchdog_reset_pending
-ffffffff8250ad40 b override_name
-ffffffff8250ad60 b refined_jiffies
-ffffffff8250ae18 b rtcdev_lock
-ffffffff8250ae20 b rtcdev
-ffffffff8250ae30 b alarm_bases
-ffffffff8250ae90 b freezer_delta_lock
-ffffffff8250ae98 b freezer_delta
-ffffffff8250aea0 b freezer_expires
-ffffffff8250aea8 b freezer_alarmtype
-ffffffff8250aeb0 b rtctimer
-ffffffff8250aef0 b posix_timers_cache
-ffffffff8250aef8 b hash_lock
-ffffffff8250af00 b posix_timers_hashtable
-ffffffff8250bf00 b do_cpu_nanosleep.zero_it
-ffffffff8250bf20 b clockevents_lock.llvm.11637695052356734510
-ffffffff8250bf20 b posix_clock_register.__key
-ffffffff8250bf24 b tick_freeze_lock
-ffffffff8250bf28 b tick_freeze_depth
-ffffffff8250bf30 b tick_next_period
-ffffffff8250bf38 b tick_broadcast_device.llvm.3279994145566876802
-ffffffff8250bf48 b tick_broadcast_mask.llvm.3279994145566876802
-ffffffff8250bf50 b tick_broadcast_on
-ffffffff8250bf58 b tick_broadcast_forced
-ffffffff8250bf60 b tick_broadcast_oneshot_mask.llvm.3279994145566876802
-ffffffff8250bf68 b tick_broadcast_force_mask
-ffffffff8250bf70 b tmpmask
-ffffffff8250bf78 b tick_broadcast_pending_mask
-ffffffff8250bf80 b bctimer
-ffffffff8250bfc0 b sched_skew_tick
-ffffffff8250bfc8 b last_jiffies_update
-ffffffff8250bfd0 b sleep_time_bin
-ffffffff8250c050 b get_inode_sequence_number.i_seq
-ffffffff8250c058 b dma_spin_lock
-ffffffff8250c05c b __flush_smp_call_function_queue.warned
-ffffffff8250c060 b vmcoreinfo_data
-ffffffff8250c068 b vmcoreinfo_size
-ffffffff8250c070 b vmcoreinfo_data_safecopy
-ffffffff8250c078 b vmcoreinfo_note
-ffffffff8250c080 b __kexec_lock
-ffffffff8250c084 b kexec_in_progress
-ffffffff8250c088 b crash_notes
-ffffffff8250c090 b kexec_image
-ffffffff8250c098 b kexec_load_disabled
-ffffffff8250c0a0 b kexec_crash_image
-ffffffff8250c0a8 b css_set_lock
-ffffffff8250c0ac b trace_cgroup_path_lock
-ffffffff8250c0b0 b cgrp_dfl_threaded_ss_mask
-ffffffff8250c0c0 b css_set_table
-ffffffff8250c4c0 b cgroup_root_count
-ffffffff8250c4d0 b trace_cgroup_path
-ffffffff8250c8d0 b cgroup_file_kn_lock
-ffffffff8250c8d4 b cgrp_dfl_implicit_ss_mask
-ffffffff8250c8d6 b cgrp_dfl_inhibit_ss_mask
-ffffffff8250c8d8 b cgrp_dfl_visible
-ffffffff8250c8d9 b init_cgroup_housekeeping.__key
-ffffffff8250c8d9 b init_cgroup_housekeeping.__key.43
-ffffffff8250c8e0 b cgroup_destroy_wq
-ffffffff8250c8e8 b cgroup_idr_lock
-ffffffff8250c8ec b cgroup_rstat_lock.llvm.12783222107080602034
-ffffffff8250c8f0 b cgroup_no_v1_mask
-ffffffff8250c8f8 b cgroup_pidlist_destroy_wq
-ffffffff8250c900 b release_agent_path_lock
-ffffffff8250c904 b cgroup_no_v1_named
-ffffffff8250c908 b cpuset_being_rebound
-ffffffff8250c910 b cpus_attach
-ffffffff8250c910 b cpuset_init.rwsem_key
-ffffffff8250c918 b force_rebuild.llvm.16417904120603559126
-ffffffff8250c920 b cpuset_migrate_mm_wq
-ffffffff8250c928 b callback_lock.llvm.16417904120603559126
-ffffffff8250c930 b cpuset_attach_old_cs
-ffffffff8250c938 b cpuset_attach_nodemask_to.0
-ffffffff8250c940 b cpuset_hotplug_workfn.new_cpus
-ffffffff8250c948 b cpuset_hotplug_workfn.new_mems.0
-ffffffff8250c950 b cpuset_hotplug_update_tasks.new_cpus
-ffffffff8250c958 b cpuset_hotplug_update_tasks.new_mems
-ffffffff8250c960 b cpusets_enabled_key
-ffffffff8250c970 b cpusets_pre_enable_key
-ffffffff8250c980 b cpusets_insane_config_key
-ffffffff8250c990 b stop_machine_initialized
-ffffffff8250c991 b stop_cpus_in_progress
-ffffffff8250c994 b audit_enabled
-ffffffff8250c998 b audit_ever_enabled
-ffffffff8250c9a0 b auditd_conn
-ffffffff8250c9a8 b audit_cmd_mutex.llvm.11890841603706756373
-ffffffff8250c9d0 b audit_log_lost.last_msg
-ffffffff8250c9d8 b audit_log_lost.lock
-ffffffff8250c9dc b audit_lost
-ffffffff8250c9e0 b audit_rate_limit
-ffffffff8250c9e4 b audit_serial.serial
-ffffffff8250c9e8 b audit_initialized
-ffffffff8250c9f0 b audit_queue
-ffffffff8250ca08 b audit_backlog_wait_time_actual
-ffffffff8250ca0c b session_id
-ffffffff8250ca10 b audit_sig_sid
-ffffffff8250ca20 b audit_inode_hash
-ffffffff8250cc20 b audit_net_id
-ffffffff8250cc28 b audit_buffer_cache
-ffffffff8250cc30 b audit_retry_queue
-ffffffff8250cc48 b audit_hold_queue
-ffffffff8250cc60 b audit_default
-ffffffff8250cc60 b audit_init.__key
-ffffffff8250cc68 b kauditd_task
-ffffffff8250cc70 b auditd_conn_lock
-ffffffff8250cc78 b audit_rate_check.last_check
-ffffffff8250cc80 b audit_rate_check.messages
-ffffffff8250cc84 b audit_rate_check.lock
-ffffffff8250cc90 b classes
-ffffffff8250cd10 b audit_n_rules
-ffffffff8250cd14 b audit_signals
-ffffffff8250cd18 b audit_watch_group
-ffffffff8250cd20 b audit_fsnotify_group.llvm.10669836848516835704
-ffffffff8250cd28 b prune_thread
-ffffffff8250cd30 b chunk_hash_heads
-ffffffff8250d530 b audit_tree_group
-ffffffff8250d538 b reset_hung_task.llvm.3242665727200036637
-ffffffff8250d540 b watchdog_task
-ffffffff8250d548 b hung_detector_suspended
-ffffffff8250d549 b hung_task_show_all_bt
-ffffffff8250d54a b hung_task_call_panic
-ffffffff8250d550 b soft_lockup_nmi_warn
-ffffffff8250d558 b family_registered
-ffffffff8250d558 b seccomp_prepare_filter.__key
-ffffffff8250d558 b seccomp_prepare_filter.__key.5
-ffffffff8250d560 b taskstats_cache
-ffffffff8250d568 b sys_tracepoint_refcount
-ffffffff8250d568 b taskstats_init_early.__key
-ffffffff8250d56c b ok_to_free_tracepoints
-ffffffff8250d570 b early_probes
-ffffffff8250d580 b tp_transition_snapshot.0
-ffffffff8250d590 b tp_transition_snapshot.1
-ffffffff8250d5a0 b tp_transition_snapshot.2
-ffffffff8250d5b0 b tp_transition_snapshot.3
-ffffffff8250d5c0 b tp_transition_snapshot.4
-ffffffff8250d5c8 b tp_transition_snapshot.5
-ffffffff8250d600 b trace_clock_struct
-ffffffff8250d610 b trace_counter
-ffffffff8250d618 b __ring_buffer_alloc.__key
-ffffffff8250d618 b __ring_buffer_alloc.__key.15
-ffffffff8250d618 b rb_add_timestamp.once
-ffffffff8250d618 b rb_allocate_cpu_buffer.__key
-ffffffff8250d618 b rb_allocate_cpu_buffer.__key.19
-ffffffff8250d618 b ring_buffer_alloc_ext.__key
-ffffffff8250d61c b tracing_disabled.llvm.7072116356185007960
-ffffffff8250d620 b dummy_tracer_opt
-ffffffff8250d630 b default_bootup_tracer
-ffffffff8250d638 b trace_cmdline_lock
-ffffffff8250d63c b trace_buffered_event_ref
-ffffffff8250d640 b temp_buffer
-ffffffff8250d648 b tracepoint_print_iter
-ffffffff8250d650 b tracepoint_printk_key
-ffffffff8250d660 b trace_event_exports_enabled
-ffffffff8250d670 b trace_function_exports_enabled
-ffffffff8250d680 b buffers_allocated.llvm.7072116356185007960
-ffffffff8250d688 b trace_no_verify
-ffffffff8250d6a0 b static_fmt_buf
-ffffffff8250d720 b static_temp_buf
-ffffffff8250d7a0 b tgid_map
-ffffffff8250d7a8 b tgid_map_max
-ffffffff8250d7b0 b ring_buffer_expanded
-ffffffff8250d7b8 b ftrace_dump.iter
-ffffffff8250f8d0 b ftrace_dump.dump_running
-ffffffff8250f8d4 b snapshot_at_boot
-ffffffff8250f8d8 b trace_marker_exports_enabled
-ffffffff8250f8e8 b savedcmd
-ffffffff8250f8f0 b tracepoint_iter_lock
-ffffffff8250f8f8 b trace_percpu_buffer
-ffffffff8250f900 b tracer_options_updated
-ffffffff8250f908 b trace_instance_dir
-ffffffff8250f910 b __tracing_open.__key
-ffffffff8250f910 b allocate_trace_buffer.__key
-ffffffff8250f910 b ftrace_dump_on_oops
-ffffffff8250f910 b trace_access_lock_init.__key
-ffffffff8250f910 b tracer_alloc_buffers.__key
-ffffffff8250f910 b tracing_open_pipe.__key
-ffffffff8250f914 b __disable_trace_on_warning
-ffffffff8250f918 b tracepoint_printk
-ffffffff8250f91c b register_stat_tracer.__key
-ffffffff8250f920 b stat_dir
-ffffffff8250f928 b sched_cmdline_ref
-ffffffff8250f92c b sched_tgid_ref
-ffffffff8250f930 b eventdir_initialized
-ffffffff8250f938 b field_cachep
-ffffffff8250f940 b file_cachep
-ffffffff8250f950 b perf_trace_buf
-ffffffff8250f970 b total_ref_count
-ffffffff8250f978 b ustring_per_cpu
-ffffffff8250f980 b last_cmd
-ffffffff8250f988 b last_cmd
-ffffffff8250f990 b hist_field_name.full_name
-ffffffff8250fa90 b last_cmd_loc
-ffffffff8250fb90 b trace_probe_log.llvm.5294730927966491449
-ffffffff8250fba8 b uprobe_cpu_buffer
-ffffffff8250fbb0 b uprobe_buffer_refcnt
-ffffffff8250fbb4 b bpf_prog_alloc_no_stats.__key
-ffffffff8250fbb4 b bpf_prog_alloc_no_stats.__key.1
-ffffffff8250fbb4 b uprobe_buffer_init.__key
-ffffffff8250fbb8 b bpf_empty_prog_array
-ffffffff8250fbd0 b bpf_stats_enabled_key
-ffffffff8250fbe0 b static_call_initialized
-ffffffff8250fbe8 b perf_sched_events
-ffffffff8250fbf8 b __report_avg
-ffffffff8250fc00 b __report_allowed
-ffffffff8250fc08 b __empty_callchain
-ffffffff8250fc10 b pmu_idr
-ffffffff8250fc28 b pmu_bus_running
-ffffffff8250fc2c b perf_pmu_register.hw_context_taken
-ffffffff8250fc30 b perf_online_mask
-ffffffff8250fc38 b pmus_srcu
-ffffffff8250fdb8 b perf_event_cache
-ffffffff8250fdb8 b perf_event_init_task.__key
-ffffffff8250fdc0 b perf_swevent_enabled
-ffffffff8250fe80 b perf_sched_count
-ffffffff8250fe84 b __perf_event_init_context.__key
-ffffffff8250fe84 b perf_event_alloc.__key
-ffffffff8250fe84 b perf_event_alloc.__key.40
-ffffffff8250fe84 b perf_event_alloc.__key.42
-ffffffff8250fe88 b perf_event_id
-ffffffff8250fe90 b nr_callchain_events
-ffffffff8250fe90 b perf_event_init_all_cpus.__key
-ffffffff8250fe98 b callchain_cpus_entries
-ffffffff8250fea0 b cpu_pinned
-ffffffff8250feb0 b tsk_pinned_all
-ffffffff8250fec0 b task_bps_ht
-ffffffff8250ff48 b uprobes_tree
-ffffffff8250ff50 b uprobes_mmap_mutex
-ffffffff825100f0 b uprobes_init.__key
-ffffffff825100f0 b uprobes_treelock
-ffffffff825100f4 b __create_xol_area.__key
-ffffffff825100f4 b alloc_uprobe.__key
-ffffffff825100f4 b alloc_uprobe.__key.13
-ffffffff825100f4 b mempool_init_node.__key
-ffffffff825100f4 b oom_victims
-ffffffff825100f4 b pagecache_init.__key
-ffffffff825100f8 b sysctl_oom_kill_allocating_task
-ffffffff82510100 b oom_reaper_th
-ffffffff82510108 b oom_reaper_list
-ffffffff82510110 b oom_reaper_lock
-ffffffff82510114 b sysctl_panic_on_oom
-ffffffff82510118 b bdi_min_ratio
-ffffffff8251011c b laptop_mode
-ffffffff82510120 b vm_dirty_bytes
-ffffffff82510128 b dirty_background_bytes
-ffffffff82510130 b global_wb_domain
-ffffffff825101a8 b page_cluster
-ffffffff825101ac b __lru_add_drain_all.lru_drain_gen
-ffffffff825101b0 b __lru_add_drain_all.has_work
-ffffffff825101b8 b lru_disable_count
-ffffffff825101bc b shrinker_nr_max
-ffffffff825101c0 b lru_gen_caps
-ffffffff825101c0 b lru_gen_init_lruvec.__key
-ffffffff825101f0 b shm_mnt.llvm.16562044943732629692
-ffffffff825101f8 b shmem_encode_fh.lock
-ffffffff825101f8 b shmem_fill_super.__key
-ffffffff82510200 b shmem_inode_cachep
-ffffffff82510240 b vm_committed_as
-ffffffff82510268 b mm_percpu_wq
-ffffffff82510270 b cgwb_lock
-ffffffff82510274 b bdi_init.__key
-ffffffff82510278 b bdi_class
-ffffffff82510280 b bdi_id_cursor
-ffffffff82510288 b bdi_tree
-ffffffff82510290 b noop_backing_dev_info
-ffffffff825106f8 b bdi_class_init.__key
-ffffffff825106f8 b bdi_debug_root
-ffffffff82510700 b cgwb_release_wq
-ffffffff82510700 b wb_init.__key
-ffffffff82510708 b bdi_lock
-ffffffff82510708 b cgwb_bdi_init.__key
-ffffffff82510708 b cgwb_bdi_init.__key.16
-ffffffff82510710 b bdi_wq
-ffffffff82510718 b mm_kobj
-ffffffff82510720 b pcpu_lock
-ffffffff82510724 b pcpu_nr_empty_pop_pages
-ffffffff82510728 b pcpu_nr_populated
-ffffffff82510730 b pcpu_page_first_chunk.vm
-ffffffff82510770 b pcpu_atomic_alloc_failed
-ffffffff82510778 b pcpu_get_pages.pages
-ffffffff82510780 b slab_nomerge
-ffffffff82510788 b kmem_cache
-ffffffff82510790 b slab_state
-ffffffff82510798 b shadow_nodes
-ffffffff825107c8 b reg_refcount
-ffffffff825107c8 b shadow_nodes_key
-ffffffff825107d0 b tmp_bufs
-ffffffff825107d8 b max_mapnr
-ffffffff825107e0 b mem_map
-ffffffff825107e8 b print_bad_pte.resume
-ffffffff825107f0 b print_bad_pte.nr_shown
-ffffffff825107f8 b print_bad_pte.nr_unshown
-ffffffff82510800 b high_memory
-ffffffff82510808 b shmlock_user_lock
-ffffffff8251080c b ignore_rlimit_data
-ffffffff8251080d b mmap_init.__key.llvm.302550460852299470
-ffffffff82510810 b anon_vma_cachep.llvm.3294496444446440601
-ffffffff82510818 b anon_vma_chain_cachep.llvm.3294496444446440601
-ffffffff82510820 b anon_vma_ctor.__key
-ffffffff82510820 b nr_vmalloc_pages.llvm.12820500289036678126
-ffffffff82510828 b vmap_area_lock
-ffffffff82510830 b vmap_area_root
-ffffffff82510838 b vmap_area_cachep
-ffffffff82510840 b free_vmap_area_lock
-ffffffff82510848 b free_vmap_area_root
-ffffffff82510850 b vmap_blocks
-ffffffff82510860 b vmap_lazy_nr
-ffffffff82510868 b purge_vmap_area_lock
-ffffffff82510870 b purge_vmap_area_root
-ffffffff82510878 b saved_gfp_mask
-ffffffff8251087c b setup_per_zone_wmarks.lock
-ffffffff82510880 b percpu_pagelist_high_fraction
-ffffffff82510884 b movable_zone
-ffffffff82510888 b bad_page.resume
-ffffffff82510890 b bad_page.nr_shown
-ffffffff82510898 b bad_page.nr_unshown
-ffffffff825108a0 b __drain_all_pages.cpus_with_pcps
-ffffffff825108a8 b zonelist_update_seq
-ffffffff825108b0 b overlap_memmap_init.r
-ffffffff825108b8 b init_on_free
-ffffffff825108b8 b pgdat_init_internals.__key
-ffffffff825108b8 b pgdat_init_internals.__key.63
-ffffffff825108b8 b pgdat_init_internals.__key.65
-ffffffff825108b8 b pgdat_init_kcompactd.__key
-ffffffff825108b8 b pgdat_kswapd_lock_init.__key
-ffffffff825108c8 b page_alloc_shuffle_key
-ffffffff825108d8 b shuffle_param
-ffffffff825108e0 b shuffle_pick_tail.rand
-ffffffff825108e8 b shuffle_pick_tail.rand_bits
-ffffffff825108f0 b max_low_pfn
-ffffffff825108f8 b min_low_pfn
-ffffffff82510900 b max_pfn
-ffffffff82510908 b max_possible_pfn
-ffffffff82510910 b mhp_default_online_type
-ffffffff82510914 b movable_node_enabled
-ffffffff82510918 b sio_pool
-ffffffff82510920 b swapin_nr_pages.prev_offset
-ffffffff82510928 b swapin_nr_pages.last_readahead_pages
-ffffffff8251092c b swap_avail_lock
-ffffffff82510930 b swap_avail_heads
-ffffffff82510938 b nr_swapfiles
-ffffffff8251093c b swap_lock.llvm.3077387714457161111
-ffffffff82510940 b swap_info
-ffffffff82510a18 b swapfile_maximum_size
-ffffffff82510a20 b swap_migration_ad_supported
-ffffffff82510a24 b proc_poll_event
-ffffffff82510a28 b nr_swap_pages
-ffffffff82510a30 b nr_rotate_swap
-ffffffff82510a38 b total_swap_pages
-ffffffff82510a40 b swap_slot_cache_enabled
-ffffffff82510a41 b swap_slot_cache_initialized
-ffffffff82510a42 b swap_slot_cache_active
-ffffffff82510a43 b alloc_swap_slot_cache.__key
-ffffffff82510a48 b __highest_present_section_nr
-ffffffff82510a50 b check_usemap_section_nr.old_usemap_snr
-ffffffff82510a58 b check_usemap_section_nr.old_pgdat_snr
-ffffffff82510a60 b mem_section
-ffffffff82510a68 b vmemmap_alloc_block.warned
-ffffffff82510a6c b slub_debug
-ffffffff82510a70 b slub_debug_string
-ffffffff82510a78 b kmem_cache_node
-ffffffff82510a80 b slab_nodes
-ffffffff82510a88 b slub_min_order
-ffffffff82510a8c b slub_min_objects
-ffffffff82510a90 b flushwq
-ffffffff82510a98 b slab_debugfs_root
-ffffffff82510aa0 b disable_higher_order_debug
-ffffffff82510aa4 b object_map_lock
-ffffffff82510ab0 b object_map
-ffffffff82511ab0 b slab_kset
-ffffffff82511ab8 b alias_list
-ffffffff82511ac0 b slub_debug_enabled
-ffffffff82511ad0 b kfence_allocation_key
-ffffffff82511ae0 b kfence_metadata
-ffffffff82523860 b counters
-ffffffff825238a0 b kfence_timer
-ffffffff825238f8 b kfence_freelist_lock
-ffffffff82523900 b alloc_covered
-ffffffff82523b00 b huge_zero_refcount
-ffffffff82523b04 b khugepaged_mm_lock
-ffffffff82523b08 b khugepaged_pages_collapsed
-ffffffff82523b0c b khugepaged_full_scans
-ffffffff82523b10 b khugepaged_sleep_expire
-ffffffff82523b18 b stats_flush_threshold
-ffffffff82523b20 b flush_next_time
-ffffffff82523b30 b mem_cgroup_print_oom_meminfo.buf
-ffffffff82524b30 b memcg_sockets_enabled_key
-ffffffff82524b40 b stats_flush_lock
-ffffffff82524b44 b memcg_oom_lock
-ffffffff82524b48 b mem_cgroup_alloc.__key
-ffffffff82524b48 b objcg_lock
-ffffffff82524b50 b memcg_kmem_enabled_key
-ffffffff82524b60 b swap_cgroup_ctrl
-ffffffff82524b60 b vmpressure_init.__key
-ffffffff82524de8 b dummy_handle
-ffffffff82524dec b failure_handle
-ffffffff82524df0 b early_handle
-ffffffff82524df8 b page_owner_inited
-ffffffff82524e08 b huge_class_size.llvm.2250579845905323200
-ffffffff82524e10 b total_usage
-ffffffff82524e18 b early_page_ext
-ffffffff82524e1c b secretmem_users
-ffffffff82524e20 b secretmem_mnt
-ffffffff82524e30 b damon_registered_ops
-ffffffff82524f20 b damon_new_ctx.__key
-ffffffff82524f20 b nr_running_ctxs
-ffffffff82524f24 b running_exclusive_ctxs
-ffffffff82524f28 b kdamond_split_regions.last_nr_regions
-ffffffff82524f30 b __damon_pa_check_access.last_addr
-ffffffff82524f38 b __damon_pa_check_access.last_accessed
-ffffffff82524f40 b damon_reclaim_stat
-ffffffff82524f68 b damon_reclaim_initialized
-ffffffff82524f69 b damon_reclaim_timer_fn.last_enabled
-ffffffff82524f70 b ctx
-ffffffff82524f78 b target
-ffffffff82524f80 b page_reporting_enabled
-ffffffff82524f90 b alloc_empty_file.old_max
-ffffffff82524f98 b delayed_fput_list
-ffffffff82524fa0 b __alloc_file.__key
-ffffffff82524fa0 b files_init.__key
-ffffffff82524fa0 b sb_lock
-ffffffff82524fa8 b super_setup_bdi.bdi_seq
-ffffffff82524fb0 b alloc_super.__key
-ffffffff82524fb0 b alloc_super.__key.14
-ffffffff82524fb0 b alloc_super.__key.16
-ffffffff82524fb0 b alloc_super.__key.18
-ffffffff82524fb0 b alloc_super.__key.20
-ffffffff82524fb0 b chrdevs
-ffffffff825257a8 b cdev_lock
-ffffffff825257b0 b cdev_map.llvm.4152600280532699754
-ffffffff825257b8 b suid_dumpable
-ffffffff825257bc b binfmt_lock
-ffffffff825257c8 b pipe_user_pages_hard
-ffffffff825257d0 b alloc_pipe_info.__key
-ffffffff825257d0 b alloc_pipe_info.__key.2
-ffffffff825257d0 b alloc_pipe_info.__key.4
-ffffffff825257d0 b fasync_lock
-ffffffff825257e0 b in_lookup_hashtable
-ffffffff825277e0 b get_next_ino.shared_last_ino
-ffffffff825277e0 b inode_init_always.__key
-ffffffff825277e0 b inode_init_always.__key.1
-ffffffff825277e4 b iunique.iunique_lock
-ffffffff825277e8 b iunique.counter
-ffffffff825277f0 b inodes_stat
-ffffffff82527828 b __address_space_init_once.__key
-ffffffff82527828 b dup_fd.__key
-ffffffff82527828 b file_systems_lock
-ffffffff82527830 b file_systems
-ffffffff82527838 b event
-ffffffff82527840 b unmounted
-ffffffff82527848 b fs_kobj
-ffffffff82527850 b delayed_mntput_list
-ffffffff82527858 b alloc_mnt_ns.__key
-ffffffff82527858 b pin_fs_lock
-ffffffff82527858 b seq_open.__key
-ffffffff8252785c b simple_transaction_get.simple_transaction_lock
-ffffffff82527860 b isw_nr_in_flight
-ffffffff82527860 b simple_attr_open.__key
-ffffffff82527868 b isw_wq
-ffffffff82527870 b last_dest
-ffffffff82527878 b first_source
-ffffffff82527880 b last_source
-ffffffff82527888 b mp
-ffffffff82527890 b list
-ffffffff82527898 b dest_master
-ffffffff825278a0 b pin_lock
-ffffffff825278a8 b nsfs_mnt
-ffffffff825278b0 b alloc_fs_context.__key
-ffffffff825278b0 b max_buffer_heads
-ffffffff825278b0 b vfs_dup_fs_context.__key
-ffffffff825278b8 b buffer_heads_over_limit
-ffffffff825278bc b fsnotify_sync_cookie.llvm.3033830458988000781
-ffffffff825278c0 b __fsnotify_alloc_group.__key
-ffffffff825278c0 b __fsnotify_alloc_group.__key.1
-ffffffff825278c0 b destroy_lock
-ffffffff825278c8 b connector_destroy_list
-ffffffff825278d0 b fsnotify_mark_srcu
-ffffffff82527a50 b fsnotify_mark_connector_cachep
-ffffffff82527a58 b idr_callback.warned
-ffffffff82527a60 b it_zero
-ffffffff82527a68 b loop_check_gen
-ffffffff82527a70 b ep_alloc.__key
-ffffffff82527a70 b ep_alloc.__key.2
-ffffffff82527a70 b ep_alloc.__key.4
-ffffffff82527a70 b inserting_into
-ffffffff82527a80 b path_count
-ffffffff82527a98 b long_zero
-ffffffff82527aa0 b anon_inode_inode
-ffffffff82527aa8 b __do_sys_timerfd_create.__key
-ffffffff82527aa8 b cancel_lock
-ffffffff82527aac b do_eventfd.__key
-ffffffff82527aac b init_once_userfaultfd_ctx.__key
-ffffffff82527aac b init_once_userfaultfd_ctx.__key.10
-ffffffff82527aac b init_once_userfaultfd_ctx.__key.12
-ffffffff82527aac b init_once_userfaultfd_ctx.__key.8
-ffffffff82527ab0 b aio_mnt
-ffffffff82527ab8 b kiocb_cachep
-ffffffff82527ac0 b kioctx_cachep
-ffffffff82527ac8 b aio_nr
-ffffffff82527ad0 b aio_nr_lock
-ffffffff82527ad4 b blocked_lock_lock
-ffffffff82527ad4 b ioctx_alloc.__key
-ffffffff82527ad4 b ioctx_alloc.__key.11
-ffffffff82527ad8 b lease_notifier_chain
-ffffffff82527c80 b blocked_hash
-ffffffff82527c80 b locks_init_lock_heads.__key
-ffffffff82528080 b enabled
-ffffffff82528084 b entries_lock
-ffffffff82528090 b bm_mnt
-ffffffff82528098 b mb_entry_cache
-ffffffff825280a0 b do_coredump.core_dump_count
-ffffffff825280a4 b core_pipe_limit
-ffffffff825280a8 b core_uses_pid
-ffffffff825280b0 b __dump_skip.zeroes
-ffffffff825290b0 b drop_caches_sysctl_handler.stfu
-ffffffff825290b4 b sysctl_drop_caches
-ffffffff825290b8 b iomap_ioend_bioset
-ffffffff825291b0 b proc_subdir_lock
-ffffffff825291b8 b proc_tty_driver
-ffffffff825291c0 b sysctl_mount_point
-ffffffff82529200 b sysctl_lock
-ffffffff82529208 b saved_boot_config
-ffffffff82529210 b kernfs_locks
-ffffffff82529218 b kernfs_iattrs_cache
-ffffffff82529218 b kernfs_mutex_init.__key
-ffffffff82529220 b kernfs_node_cache
-ffffffff82529228 b kernfs_rename_lock
-ffffffff8252922c b kernfs_pr_cont_lock
-ffffffff82529230 b kernfs_pr_cont_buf
-ffffffff8252a230 b kernfs_idr_lock
-ffffffff8252a234 b kernfs_create_root.__key
-ffffffff8252a234 b kernfs_create_root.__key.10
-ffffffff8252a234 b kernfs_notify_lock
-ffffffff8252a238 b kernfs_fop_open.__key
-ffffffff8252a238 b kernfs_fop_open.__key.4
-ffffffff8252a238 b kernfs_fop_open.__key.5
-ffffffff8252a238 b kernfs_get_open_node.__key
-ffffffff8252a238 b sysfs_symlink_target_lock
-ffffffff8252a240 b sysfs_root
-ffffffff8252a248 b sysfs_root_kn
-ffffffff8252a250 b pty_count
-ffffffff8252a254 b pty_limit_min
-ffffffff8252a258 b ext4_system_zone_cachep.llvm.4773943801090845047
-ffffffff8252a260 b ext4_es_cachep.llvm.3182768809261060338
-ffffffff8252a268 b ext4_es_register_shrinker.__key
-ffffffff8252a268 b ext4_es_register_shrinker.__key.10
-ffffffff8252a268 b ext4_es_register_shrinker.__key.11
-ffffffff8252a268 b ext4_es_register_shrinker.__key.9
-ffffffff8252a268 b ext4_pending_cachep.llvm.3182768809261060338
-ffffffff8252a270 b ext4_free_data_cachep
-ffffffff8252a270 b ext4_mb_add_groupinfo.__key
-ffffffff8252a270 b ext4_mb_init.__key
-ffffffff8252a278 b ext4_pspace_cachep
-ffffffff8252a280 b ext4_ac_cachep
-ffffffff8252a290 b ext4_groupinfo_caches
-ffffffff8252a2d0 b io_end_cachep.llvm.6685857236562388953
-ffffffff8252a2d8 b io_end_vec_cachep.llvm.6685857236562388953
-ffffffff8252a2e0 b bio_post_read_ctx_cache.llvm.3469943667933081094
-ffffffff8252a2e8 b bio_post_read_ctx_pool.llvm.3469943667933081094
-ffffffff8252a2f0 b ext4_li_info
-ffffffff8252a2f8 b ext4_lazyinit_task
-ffffffff8252a2f8 b ext4_li_info_new.__key
-ffffffff8252a300 b ext4_mount_msg_ratelimit
-ffffffff8252a328 b __ext4_fill_super.__key
-ffffffff8252a328 b __ext4_fill_super.__key.554
-ffffffff8252a328 b __ext4_fill_super.__key.555
-ffffffff8252a328 b __ext4_fill_super.__key.556
-ffffffff8252a328 b __ext4_fill_super.__key.557
-ffffffff8252a328 b __ext4_fill_super.__key.558
-ffffffff8252a328 b __ext4_fill_super.rwsem_key
-ffffffff8252a328 b ext4_inode_cachep
-ffffffff8252a330 b ext4__ioend_wq
-ffffffff8252a330 b ext4_alloc_inode.__key
-ffffffff8252a330 b ext4_init_fs.__key
-ffffffff8252a330 b init_once.__key
-ffffffff8252a330 b init_once.__key
-ffffffff8252a330 b init_once.__key.695
-ffffffff8252a6a8 b ext4_root
-ffffffff8252a6b0 b ext4_proc_root
-ffffffff8252a6b8 b ext4_feat
-ffffffff8252a6c0 b ext4_expand_extra_isize_ea.mnt_count
-ffffffff8252a6c4 b ext4_fc_init_inode.__key
-ffffffff8252a6c8 b ext4_fc_dentry_cachep.llvm.8396475704076135201
-ffffffff8252a6d0 b transaction_cache.llvm.10111664081187438077
-ffffffff8252a6d8 b jbd2_revoke_record_cache.llvm.13801467220621686083
-ffffffff8252a6e0 b jbd2_revoke_table_cache.llvm.13801467220621686083
-ffffffff8252a6e8 b proc_jbd2_stats
-ffffffff8252a6f0 b jbd2_inode_cache
-ffffffff8252a6f8 b journal_init_common.__key
-ffffffff8252a6f8 b journal_init_common.__key.102
-ffffffff8252a6f8 b journal_init_common.__key.84
-ffffffff8252a6f8 b journal_init_common.__key.86
-ffffffff8252a6f8 b journal_init_common.__key.88
-ffffffff8252a6f8 b journal_init_common.__key.90
-ffffffff8252a6f8 b journal_init_common.__key.92
-ffffffff8252a6f8 b journal_init_common.__key.94
-ffffffff8252a6f8 b journal_init_common.__key.96
-ffffffff8252a6f8 b journal_init_common.__key.98
-ffffffff8252a700 b jbd2_slab
-ffffffff8252a740 b jbd2_journal_head_cache
-ffffffff8252a748 b jbd2_handle_cache
-ffffffff8252a750 b nls_lock
-ffffffff8252a758 b p_nls
-ffffffff8252a760 b p_nls
-ffffffff8252a770 b identity
-ffffffff8252a870 b fuse_req_cachep.llvm.16961288504765282032
-ffffffff8252a878 b fuse_conn_init.__key
-ffffffff8252a878 b fuse_conn_init.__key.2
-ffffffff8252a878 b fuse_file_alloc.__key
-ffffffff8252a878 b fuse_file_alloc.__key.1
-ffffffff8252a878 b fuse_init_file_inode.__key
-ffffffff8252a878 b fuse_inode_cachep
-ffffffff8252a878 b fuse_iqueue_init.__key
-ffffffff8252a878 b fuse_request_init.__key
-ffffffff8252a878 b fuse_sync_bucket_alloc.__key
-ffffffff8252a880 b fuse_alloc_inode.__key
-ffffffff8252a880 b fuse_kobj
-ffffffff8252a888 b max_user_bgreq
-ffffffff8252a88c b max_user_congthresh
-ffffffff8252a890 b fuse_conn_list
-ffffffff8252a8a0 b fuse_control_sb
-ffffffff8252a8a8 b debugfs_mount
-ffffffff8252a8b0 b debugfs_mount_count
-ffffffff8252a8b4 b debugfs_registered.llvm.17954194297863102447
-ffffffff8252a8b8 b tracefs_mount
-ffffffff8252a8c0 b tracefs_mount_count
-ffffffff8252a8c4 b tracefs_registered.llvm.11720573198680001113
-ffffffff8252a8c5 b erofs_init_fs_context.__key
-ffffffff8252a8c8 b erofs_global_shrink_cnt
-ffffffff8252a8d0 b erofs_sb_list_lock
-ffffffff8252a8d0 b erofs_shrinker_register.__key
-ffffffff8252a8d4 b shrinker_run_no
-ffffffff8252a8d8 b erofs_pcpubuf_growsize.pcb_nrpages
-ffffffff8252a8dc b warn_setuid_and_fcaps_mixed.warned
-ffffffff8252a8dc b z_erofs_register_pcluster.__key
-ffffffff8252a8e0 b mmap_min_addr
-ffffffff8252a8e8 b lsm_names
-ffffffff8252a8f0 b lsm_inode_cache
-ffffffff8252a8f8 b lsm_file_cache
-ffffffff8252a900 b mount
-ffffffff8252a908 b mount_count
-ffffffff8252a910 b lsm_dentry
-ffffffff8252a918 b selinux_avc
-ffffffff8252c130 b avc_latest_notif_update.notif_lock
-ffffffff8252c134 b selinux_checkreqprot_boot
-ffffffff8252c138 b selinux_init.__key
-ffffffff8252c138 b selinux_init.__key.34
-ffffffff8252c138 b selinux_secmark_refcount
-ffffffff8252c13c b selinux_sb_alloc_security.__key
-ffffffff8252c140 b selinux_state
-ffffffff8252c1a8 b sel_netif_lock
-ffffffff8252c1b0 b sel_netif_hash
-ffffffff8252c5b0 b sel_netif_total
-ffffffff8252c5b4 b sel_netnode_lock
-ffffffff8252c5c0 b sel_netnode_hash
-ffffffff8252ddc0 b sel_netport_lock
-ffffffff8252ddd0 b sel_netport_hash
-ffffffff8252f5d0 b integrity_iint_lock
-ffffffff8252f5d8 b integrity_iint_tree
-ffffffff8252f5e0 b integrity_dir
-ffffffff8252f5e8 b integrity_audit_info
-ffffffff8252f5ec b scomp_scratch_users
-ffffffff8252f5f0 b notests
-ffffffff8252f5f1 b panic_on_fail
-ffffffff8252f5f8 b crypto_default_null_skcipher
-ffffffff8252f600 b crypto_default_null_skcipher_refcnt
-ffffffff8252f608 b gcm_zeroes
-ffffffff8252f610 b cryptd_wq
-ffffffff8252f618 b queue
-ffffffff8252f620 b crypto_default_rng
-ffffffff8252f628 b crypto_default_rng_refcnt
-ffffffff8252f62c b dbg
-ffffffff8252f630 b drbg_algs
-ffffffff825319f0 b bdev_cache_init.bd_mnt
-ffffffff825319f0 b drbg_kcapi_init.__key
-ffffffff825319f8 b bdev_alloc.__key
-ffffffff825319f8 b blkdev_dio_pool
-ffffffff82531af0 b bio_dirty_lock
-ffffffff82531af8 b bio_dirty_list
-ffffffff82531b00 b fs_bio_set
-ffffffff82531bf8 b bio_slabs
-ffffffff82531c08 b elevator_alloc.__key
-ffffffff82531c08 b elv_list_lock
-ffffffff82531c0c b blk_alloc_queue.__key
-ffffffff82531c0c b blk_alloc_queue.__key.10
-ffffffff82531c0c b blk_alloc_queue.__key.4
-ffffffff82531c0c b blk_alloc_queue.__key.6
-ffffffff82531c0c b blk_alloc_queue.__key.8
-ffffffff82531c10 b kblockd_workqueue.llvm.11130194848800275346
-ffffffff82531c18 b blk_requestq_cachep
-ffffffff82531c20 b blk_requestq_srcu_cachep
-ffffffff82531c28 b blk_debugfs_root
-ffffffff82531c30 b iocontext_cachep
-ffffffff82531c38 b blk_mq_alloc_tag_set.__key
-ffffffff82531c38 b major_names_spinlock
-ffffffff82531c40 b major_names
-ffffffff82532438 b block_depr
-ffffffff82532440 b __alloc_disk_node.__key
-ffffffff82532440 b diskseq
-ffffffff82532448 b force_gpt
-ffffffff82532448 b genhd_device_init.__key
-ffffffff82532450 b disk_events_dfl_poll_msecs
-ffffffff82532458 b blkcg_root
-ffffffff82532458 b disk_alloc_events.__key
-ffffffff82532598 b blkcg_debug_stats
-ffffffff825325a0 b blkcg_policy
-ffffffff825325d0 b blkcg_punt_bio_wq
-ffffffff825325d8 b blkg_rwstat_init.__key
-ffffffff825325d8 b trace_iocg_path_lock
-ffffffff825325e0 b trace_iocg_path
-ffffffff825329e0 b bfq_pool
-ffffffff825329e0 b ioc_pd_init.__key
-ffffffff825329e8 b ref_wr_duration
-ffffffff825329f0 b bio_crypt_ctx_pool
-ffffffff825329f8 b bio_crypt_ctx_cache
-ffffffff82532a00 b blk_crypto_mode_attrs
-ffffffff82532a00 b blk_crypto_profile_init.__key
-ffffffff82532a00 b blk_crypto_profile_init.__key.1
-ffffffff82532a30 b __blk_crypto_mode_attrs
-ffffffff82532aa8 b tfms_inited
-ffffffff82532ab0 b blk_crypto_fallback_profile.llvm.3335180242325204241
-ffffffff82532b70 b bio_fallback_crypt_ctx_pool
-ffffffff82532b78 b blk_crypto_keyslots
-ffffffff82532b80 b blk_crypto_bounce_page_pool
-ffffffff82532b88 b crypto_bio_split
-ffffffff82532c80 b blk_crypto_wq
-ffffffff82532c88 b blk_crypto_fallback_inited
-ffffffff82532c90 b blank_key
-ffffffff82532cd0 b bio_fallback_crypt_ctx_cache
-ffffffff82532cd8 b req_cachep
-ffffffff82532ce0 b io_get_sq_data.__key
-ffffffff82532ce0 b io_get_sq_data.__key.2
-ffffffff82532ce0 b io_init_wq_offload.__key
-ffffffff82532ce0 b io_ring_ctx_alloc.__key
-ffffffff82532ce0 b io_ring_ctx_alloc.__key.89
-ffffffff82532ce0 b io_ring_ctx_alloc.__key.91
-ffffffff82532ce0 b io_uring_alloc_task_context.__key
-ffffffff82532ce0 b io_uring_alloc_task_context.__key.1
-ffffffff82532ce0 b io_wq_online
-ffffffff82532ce4 b percpu_ref_switch_lock
-ffffffff82532ce8 b percpu_ref_switch_to_atomic_rcu.underflows
-ffffffff82532cec b rhashtable_init.__key
-ffffffff82532cf0 b rht_bucket_nested.rhnull
-ffffffff82532cf8 b once_lock
-ffffffff82532d00 b tfm
-ffffffff82532d10 b static_ltree
-ffffffff82533190 b static_dtree
-ffffffff82533210 b length_code
-ffffffff82533310 b dist_code
-ffffffff82533510 b tr_static_init.static_init_done
-ffffffff82533520 b base_length
-ffffffff825335a0 b base_dist
-ffffffff82533618 b g_debuglevel
-ffffffff8253361c b percpu_counters_lock
-ffffffff82533620 b verbose
-ffffffff82533624 b stack_depot_disable
-ffffffff82533628 b stack_hash_mask
-ffffffff82533630 b stack_table
-ffffffff82533638 b depot_index
-ffffffff82533640 b stack_slabs
-ffffffff82543640 b next_slab_inited
-ffffffff82543644 b depot_lock
-ffffffff82543648 b depot_offset
-ffffffff82543650 b gpiochip_add_data_with_key.__key
-ffffffff82543650 b gpiochip_add_data_with_key.__key.8
-ffffffff82543650 b gpiolib_initialized
-ffffffff82543650 b sbitmap_queue_init_node.__key
-ffffffff82543654 b gpio_devt
-ffffffff82543658 b gpio_lock
-ffffffff8254365c b gpio_chrdev_open.__key
-ffffffff8254365c b lineevent_create.__key
-ffffffff8254365c b linereq_create.__key
-ffffffff8254365c b linereq_create.__key.7
-ffffffff82543660 b ignore_wake
-ffffffff82543668 b ignore_interrupt
-ffffffff82543670 b acpi_gpio_deferred_req_irqs_done
-ffffffff82543671 b acpi_gpiochip_request_regions.__key
-ffffffff82543674 b pci_lock
-ffffffff82543678 b pcibus_class_init.__key
-ffffffff82543678 b pcie_ats_disabled.llvm.5933474857879622910
-ffffffff8254367c b pci_acs_enable.llvm.5933474857879622910
-ffffffff8254367d b pci_bridge_d3_disable
-ffffffff8254367e b pci_bridge_d3_force
-ffffffff8254367f b pcie_ari_disabled
-ffffffff82543680 b pci_cache_line_size
-ffffffff82543688 b arch_set_vga_state
-ffffffff82543690 b pci_pci_problems
-ffffffff82543694 b pci_pm_d3hot_delay
-ffffffff82543698 b disable_acs_redir_param
-ffffffff825436a0 b resource_alignment_lock
-ffffffff825436a8 b resource_alignment_param
-ffffffff825436b0 b pci_early_dump
-ffffffff825436b4 b sysfs_initialized.llvm.12520832794413114532
-ffffffff825436b5 b pci_vpd_init.__key
-ffffffff825436b8 b pci_flags
-ffffffff825436bc b pci_msi_enable.llvm.4927343577820698091
-ffffffff825436c0 b pci_msi_ignore_mask
-ffffffff825436c4 b pcie_ports_disabled
-ffffffff825436c5 b pcie_ports_native
-ffffffff825436c6 b pcie_ports_dpc_native
-ffffffff825436c7 b aspm_support_enabled.llvm.12306938874938390894
-ffffffff825436c8 b aspm_policy
-ffffffff825436cc b aspm_disabled
-ffffffff825436d0 b aspm_force
-ffffffff825436d4 b pcie_aer_disable.llvm.7587695388611412204
-ffffffff825436d5 b pcie_pme_msi_disabled
-ffffffff825436d8 b proc_initialized
-ffffffff825436e0 b proc_bus_pci_dir
-ffffffff825436e8 b pci_slots_kset
-ffffffff825436f0 b pci_acpi_find_companion_hook
-ffffffff825436f8 b pci_msi_get_fwnode_cb
-ffffffff82543700 b pci_apply_fixup_final_quirks
-ffffffff82543704 b asus_hides_smbus
-ffffffff82543708 b asus_rcba_base
-ffffffff82543710 b vga_default.llvm.3646696796888202688
-ffffffff82543718 b vga_lock
-ffffffff8254371c b vga_lock
-ffffffff82543720 b vga_arbiter_used
-ffffffff82543724 b vga_count
-ffffffff82543728 b vga_decode_count
-ffffffff8254372c b vga_user_lock
-ffffffff82543730 b pci_epc_class
-ffffffff82543738 b __pci_epc_create.__key
-ffffffff82543738 b pci_epc_init.__key
-ffffffff82543738 b pci_epc_multi_mem_init.__key
-ffffffff82543738 b pci_epf_create.__key
-ffffffff82543738 b vga_hardscroll_enabled
-ffffffff82543739 b vga_hardscroll_user_enable
-ffffffff8254373c b vga_video_num_lines
-ffffffff82543740 b vga_video_num_columns
-ffffffff82543744 b vga_video_font_height
-ffffffff82543748 b vga_can_do_color
-ffffffff8254374c b vgacon_xres
-ffffffff82543750 b vgacon_yres
-ffffffff82543754 b vga_512_chars
-ffffffff82543758 b vgacon_uni_pagedir
-ffffffff82543760 b vgacon_refcount
-ffffffff82543764 b cursor_size_lastfrom
-ffffffff82543768 b cursor_size_lastto
-ffffffff8254376c b vga_is_gfx
-ffffffff82543770 b vga_rolled_over
-ffffffff82543774 b vga_vesa_blanked
-ffffffff82543778 b vga_palette_blanked
-ffffffff82543779 b vga_state.0
-ffffffff8254377a b vga_state.1
-ffffffff8254377b b vga_state.2
-ffffffff8254377c b vga_state.3
-ffffffff8254377d b vga_state.4
-ffffffff8254377e b vga_state.5
-ffffffff8254377f b vga_state.6
-ffffffff82543780 b vga_state.7
-ffffffff82543781 b vga_state.8
-ffffffff82543782 b vga_state.9
-ffffffff82543783 b vga_state.10
-ffffffff82543784 b vga_state.11
-ffffffff82543788 b vgacon_save_screen.vga_bootup_console
-ffffffff8254378c b all_tables_size
-ffffffff82543790 b acpi_tables_addr
-ffffffff82543798 b acpi_initrd_installed
-ffffffff825437a0 b osi_config.0
-ffffffff825437a4 b osi_config.1
-ffffffff825437a5 b acpi_permanent_mmap
-ffffffff825437b0 b acpi_os_vprintf.buffer
-ffffffff825439b0 b acpi_rev_override.llvm.1691433165837039950
-ffffffff825439c0 b acpi_os_name
-ffffffff82543a28 b acpi_irq_handler
-ffffffff82543a30 b acpi_irq_context
-ffffffff82543a38 b kacpi_notify_wq
-ffffffff82543a40 b kacpid_wq
-ffffffff82543a48 b kacpi_hotplug_wq.llvm.1691433165837039950
-ffffffff82543a50 b acpi_os_initialized
-ffffffff82543a58 b __acpi_os_prepare_sleep
-ffffffff82543a60 b acpi_video_backlight_string
-ffffffff82543a70 b acpi_target_sleep_state.llvm.14834600757936223180
-ffffffff82543a74 b nvs_nosave.llvm.14834600757936223180
-ffffffff82543a75 b nvs_nosave_s3.llvm.14834600757936223180
-ffffffff82543a76 b old_suspend_ordering.llvm.14834600757936223180
-ffffffff82543a77 b ignore_blacklist.llvm.14834600757936223180
-ffffffff82543a78 b s2idle_wakeup.llvm.14834600757936223180
-ffffffff82543a79 b sleep_states
-ffffffff82543a7f b acpi_no_s5
-ffffffff82543a80 b acpi_sleep_default_s3
-ffffffff82543a84 b saved_bm_rld
-ffffffff82543a88 b pwr_btn_event_pending
-ffffffff82543a90 b acpi_root
-ffffffff82543a98 b osc_sb_apei_support_acked
-ffffffff82543a99 b osc_pc_lpi_support_confirmed
-ffffffff82543a9a b osc_cpc_flexible_adr_space_confirmed
-ffffffff82543a9b b osc_sb_native_usb4_support_confirmed
-ffffffff82543a9c b osc_sb_cppc2_support_acked
-ffffffff82543aa0 b osc_sb_native_usb4_control
-ffffffff82543aa8 b acpi_kobj
-ffffffff82543ab0 b acpi_root_dir
-ffffffff82543ab8 b acpi_bus_scan_second_pass
-ffffffff82543ab8 b acpi_device_add.__key
-ffffffff82543ab9 b acpi_scan_initialized
-ffffffff82543ac0 b ape
-ffffffff82543ac8 b acpi_probe_count
-ffffffff82543ad0 b spcr_uart_addr
-ffffffff82543ad8 b nr_duplicate_ids
-ffffffff82543adc b acpi_processor_claim_cst_control.cst_control_claimed
-ffffffff82543add b acpi_hwp_native_thermal_lvt_set
-ffffffff82543ae0 b acpi_processor_get_info.cpu0_initialized
-ffffffff82543ae8 b get_madt_table.madt
-ffffffff82543af0 b get_madt_table.read_madt
-ffffffff82543af8 b ec_wq
-ffffffff82543b00 b first_ec
-ffffffff82543b08 b boot_ec
-ffffffff82543b10 b EC_FLAGS_CORRECT_ECDT
-ffffffff82543b11 b boot_ec_is_ecdt
-ffffffff82543b18 b ec_query_wq
-ffffffff82543b20 b EC_FLAGS_CLEAR_ON_RESUME
-ffffffff82543b20 b acpi_ec_alloc.__key
-ffffffff82543b20 b acpi_ec_alloc.__key.11
-ffffffff82543b24 b EC_FLAGS_TRUST_DSDT_GPE
-ffffffff82543b28 b sci_penalty
-ffffffff82543b2c b acpi_add_power_resource.__key
-ffffffff82543b30 b attrs
-ffffffff82543b38 b acpi_event_seqnum
-ffffffff82543b40 b dynamic_tables_kobj
-ffffffff82543b48 b all_counters
-ffffffff82543b50 b num_gpes
-ffffffff82543b54 b num_counters
-ffffffff82543b58 b all_attrs
-ffffffff82543b60 b counter_attrs
-ffffffff82543b68 b hotplug_kobj
-ffffffff82543b70 b acpi_irq_handled
-ffffffff82543b74 b acpi_irq_not_handled
-ffffffff82543b78 b acpi_gpe_count
-ffffffff82543b7c b acpi_gpe_count
-ffffffff82543b80 b tables_kobj
-ffffffff82543b88 b tables_data_kobj
-ffffffff82543b90 b lps0_device_handle
-ffffffff82543b98 b lps0_dsm_func_mask
-ffffffff82543ba0 b lps0_dsm_guid
-ffffffff82543bb0 b lps0_dsm_func_mask_microsoft
-ffffffff82543bb8 b lps0_dsm_guid_microsoft
-ffffffff82543bc8 b rev_id
-ffffffff82543bd0 b lps0_device_attach.dev_id
-ffffffff82543bd8 b lpi_constraints_table
-ffffffff82543be0 b lpi_constraints_table_size
-ffffffff82543be8 b acpi_debugfs_dir
-ffffffff82543bf0 b residency_info_mem
-ffffffff82543c10 b residency_info_ffh
-ffffffff82543c30 b pcc_ctx
-ffffffff82543c40 b acpi_gbl_trace_method_object
-ffffffff82543c48 b acpi_gbl_enable_interpreter_slack
-ffffffff82543c49 b acpi_gbl_enable_aml_debug_object
-ffffffff82543c4a b acpi_gbl_copy_dsdt_locally
-ffffffff82543c4b b acpi_gbl_do_not_use_xsdt
-ffffffff82543c4c b acpi_gbl_use32_bit_fadt_addresses
-ffffffff82543c4d b acpi_gbl_truncate_io_addresses
-ffffffff82543c4e b acpi_gbl_disable_auto_repair
-ffffffff82543c4f b acpi_gbl_disable_ssdt_table_install
-ffffffff82543c50 b acpi_gbl_osi_data
-ffffffff82543c51 b acpi_gbl_reduced_hardware
-ffffffff82543c52 b acpi_gbl_ignore_package_resolution_errors
-ffffffff82543c54 b acpi_gbl_trace_flags
-ffffffff82543c58 b acpi_gbl_trace_method_name
-ffffffff82543c60 b acpi_dbg_layer
-ffffffff82543c64 b acpi_gbl_display_debug_timer
-ffffffff82543c68 b acpi_gbl_startup_flags
-ffffffff82543c6c b acpi_gbl_namespace_initialized
-ffffffff82543c70 b acpi_gbl_current_scope
-ffffffff82543c78 b acpi_gbl_capture_comments
-ffffffff82543c80 b acpi_gbl_last_list_head
-ffffffff82543c88 b acpi_gbl_FADT
-ffffffff82543d9c b acpi_current_gpe_count
-ffffffff82543da0 b acpi_gbl_system_awake_and_running
-ffffffff82543da8 b acpi_gbl_root_table_list
-ffffffff82543dc0 b acpi_gbl_DSDT
-ffffffff82543dc8 b acpi_gbl_original_dsdt_header
-ffffffff82543df0 b acpi_gbl_FACS
-ffffffff82543df8 b acpi_gbl_xpm1a_status
-ffffffff82543e04 b acpi_gbl_xpm1a_enable
-ffffffff82543e10 b acpi_gbl_xpm1b_status
-ffffffff82543e1c b acpi_gbl_xpm1b_enable
-ffffffff82543e28 b acpi_gbl_xgpe0_block_logical_address
-ffffffff82543e30 b acpi_gbl_xgpe1_block_logical_address
-ffffffff82543e38 b acpi_gbl_integer_bit_width
-ffffffff82543e39 b acpi_gbl_integer_byte_width
-ffffffff82543e3a b acpi_gbl_integer_nybble_width
-ffffffff82543e40 b acpi_gbl_mutex_info
-ffffffff82543ed0 b acpi_gbl_global_lock_mutex
-ffffffff82543ed8 b acpi_gbl_global_lock_semaphore
-ffffffff82543ee0 b acpi_gbl_global_lock_pending_lock
-ffffffff82543ee8 b acpi_gbl_global_lock_handle
-ffffffff82543eea b acpi_gbl_global_lock_acquired
-ffffffff82543eeb b acpi_gbl_global_lock_present
-ffffffff82543eec b acpi_gbl_global_lock_pending
-ffffffff82543ef0 b acpi_gbl_gpe_lock
-ffffffff82543ef8 b acpi_gbl_hardware_lock
-ffffffff82543f00 b acpi_gbl_reference_count_lock
-ffffffff82543f08 b acpi_gbl_osi_mutex
-ffffffff82543f10 b acpi_gbl_namespace_rw_lock
-ffffffff82543f28 b acpi_gbl_namespace_cache
-ffffffff82543f30 b acpi_gbl_state_cache
-ffffffff82543f38 b acpi_gbl_ps_node_cache
-ffffffff82543f40 b acpi_gbl_ps_node_ext_cache
-ffffffff82543f48 b acpi_gbl_operand_cache
-ffffffff82543f50 b acpi_gbl_global_notify
-ffffffff82543f70 b acpi_gbl_exception_handler
-ffffffff82543f78 b acpi_gbl_init_handler
-ffffffff82543f80 b acpi_gbl_table_handler
-ffffffff82543f88 b acpi_gbl_table_handler_context
-ffffffff82543f90 b acpi_gbl_interface_handler
-ffffffff82543f98 b acpi_gbl_sci_handler_list
-ffffffff82543fa0 b acpi_gbl_owner_id_mask
-ffffffff825441a0 b acpi_gbl_last_owner_id_index
-ffffffff825441a1 b acpi_gbl_next_owner_id_offset
-ffffffff825441a4 b acpi_gbl_original_mode
-ffffffff825441a8 b acpi_gbl_ns_lookup_count
-ffffffff825441ac b acpi_gbl_ps_find_count
-ffffffff825441b0 b acpi_gbl_pm1_enable_register_save
-ffffffff825441b2 b acpi_gbl_debugger_configuration
-ffffffff825441b3 b acpi_gbl_step_to_next_call
-ffffffff825441b4 b acpi_gbl_acpi_hardware_present
-ffffffff825441b5 b acpi_gbl_events_initialized
-ffffffff825441b8 b acpi_gbl_supported_interfaces
-ffffffff825441c0 b acpi_gbl_address_range_list
-ffffffff825441d0 b acpi_gbl_root_node_struct
-ffffffff82544200 b acpi_gbl_root_node
-ffffffff82544208 b acpi_gbl_fadt_gpe_device
-ffffffff82544210 b acpi_gbl_cm_single_step
-ffffffff82544218 b acpi_gbl_current_walk_list
-ffffffff82544220 b acpi_gbl_sleep_type_a
-ffffffff82544221 b acpi_gbl_sleep_type_b
-ffffffff82544222 b acpi_gbl_sleep_type_a_s0
-ffffffff82544223 b acpi_gbl_sleep_type_b_s0
-ffffffff82544224 b acpi_gbl_all_gpes_initialized
-ffffffff82544228 b acpi_gbl_gpe_xrupt_list_head
-ffffffff82544230 b acpi_gbl_gpe_fadt_blocks
-ffffffff82544240 b acpi_gbl_global_event_handler
-ffffffff82544248 b acpi_gbl_global_event_handler_context
-ffffffff82544250 b acpi_gbl_fixed_event_handlers
-ffffffff825442a0 b acpi_method_count
-ffffffff825442a4 b acpi_sci_count
-ffffffff825442b0 b acpi_fixed_event_count
-ffffffff825442c4 b acpi_gbl_original_dbg_level
-ffffffff825442c8 b acpi_gbl_original_dbg_layer
-ffffffff825442cc b ac_only
-ffffffff825442d0 b ac_sleep_before_get_state_ms
-ffffffff825442d8 b lid_device
-ffffffff825442e0 b acpi_button_dir
-ffffffff825442e8 b acpi_lid_dir
-ffffffff825442f0 b acpi_processor_cpufreq_init
-ffffffff825442f4 b hp_online
-ffffffff825442f8 b hp_online
-ffffffff825442fc b acpi_processor_registered
-ffffffff82544300 b flat_state_cnt
-ffffffff82544304 b c3_lock
-ffffffff82544308 b c3_cpu_count
-ffffffff8254430c b acpi_processor_cstate_first_run_checks.first_run
-ffffffff82544310 b ignore_tpc
-ffffffff82544314 b acpi_processor_notify_smm.is_done
-ffffffff82544318 b act
-ffffffff8254431c b crt
-ffffffff82544320 b tzp
-ffffffff82544324 b nocrt
-ffffffff82544328 b off
-ffffffff8254432c b psv
-ffffffff82544330 b acpi_thermal_pm_queue
-ffffffff82544338 b acpi_thermal_add.__key
-ffffffff82544338 b async_cookie
-ffffffff82544340 b battery_driver_registered
-ffffffff82544341 b acpi_battery_add.__key
-ffffffff82544341 b acpi_battery_add.__key.6
-ffffffff82544344 b battery_bix_broken_package
-ffffffff82544348 b battery_ac_is_broken
-ffffffff8254434c b battery_notification_delay_ms
-ffffffff82544350 b pcc_data
-ffffffff82544b50 b acpi_cppc_processor_probe.__key
-ffffffff82544b50 b acpi_cppc_processor_probe.__key.2
-ffffffff82544b50 b acpi_parse_spcr.opts
-ffffffff82544b90 b qdf2400_e44_present
-ffffffff82544b94 b pnp_debug
-ffffffff82544b98 b pnp_platform_devices
-ffffffff82544b9c b num
-ffffffff82544ba0 b force_legacy
-ffffffff82544ba1 b virtballoon_probe.__key
-ffffffff82544ba1 b virtballoon_probe.__key.4
-ffffffff82544ba4 b redirect_lock
-ffffffff82544ba8 b redirect
-ffffffff82544bb0 b alloc_tty_struct.__key
-ffffffff82544bb0 b alloc_tty_struct.__key.14
-ffffffff82544bb0 b alloc_tty_struct.__key.16
-ffffffff82544bb0 b alloc_tty_struct.__key.18
-ffffffff82544bb0 b alloc_tty_struct.__key.20
-ffffffff82544bb0 b alloc_tty_struct.__key.22
-ffffffff82544bb0 b alloc_tty_struct.__key.24
-ffffffff82544bb0 b alloc_tty_struct.__key.26
-ffffffff82544bb0 b consdev
-ffffffff82544bb8 b tty_cdev
-ffffffff82544c20 b console_cdev
-ffffffff82544c88 b tty_class
-ffffffff82544c88 b tty_class_init.__key
-ffffffff82544c90 b n_tty_open.__key
-ffffffff82544c90 b n_tty_open.__key.2
-ffffffff82544c90 b tty_ldiscs_lock
-ffffffff82544ca0 b tty_ldiscs
-ffffffff82544d98 b ptm_driver
-ffffffff82544d98 b tty_buffer_init.__key
-ffffffff82544d98 b tty_port_init.__key
-ffffffff82544d98 b tty_port_init.__key.1
-ffffffff82544d98 b tty_port_init.__key.3
-ffffffff82544d98 b tty_port_init.__key.5
-ffffffff82544da0 b pts_driver
-ffffffff82544da8 b ptmx_cdev
-ffffffff82544e10 b sysrq_reset_downtime_ms
-ffffffff82544e10 b tty_audit_buf_alloc.__key
-ffffffff82544e14 b sysrq_reset_seq_len
-ffffffff82544e20 b sysrq_reset_seq
-ffffffff82544e48 b sysrq_key_table_lock
-ffffffff82544e4c b vt_event_lock
-ffffffff82544e50 b disable_vt_switch
-ffffffff82544e54 b vt_dont_switch
-ffffffff82544e58 b vc_class
-ffffffff82544e60 b vcs_init.__key
-ffffffff82544e60 b vcs_poll_data_get.__key
-ffffffff82544e60 b vt_spawn_con
-ffffffff82544e78 b keyboard_notifier_list
-ffffffff82544e88 b vt_switch
-ffffffff82544e8c b kbd_event_lock
-ffffffff82544e90 b led_lock
-ffffffff82544e94 b ledioctl
-ffffffff82544ea0 b kbd_table
-ffffffff82544fdc b func_buf_lock
-ffffffff82544fe0 b shift_state.llvm.16783477650596309882
-ffffffff82544fe4 b kd_nosound.zero
-ffffffff82544fe8 b shift_down
-ffffffff82545000 b key_down
-ffffffff82545060 b rep
-ffffffff82545064 b diacr
-ffffffff82545068 b dead_key_next
-ffffffff82545069 b npadch_active
-ffffffff8254506c b npadch_value
-ffffffff82545070 b k_brl.pressed
-ffffffff82545074 b k_brl.committing
-ffffffff82545078 b k_brl.releasestart
-ffffffff82545080 b k_brlcommit.chords
-ffffffff82545088 b k_brlcommit.committed
-ffffffff82545090 b vt_kdskbsent.is_kmalloc
-ffffffff825450b0 b inv_translate
-ffffffff825451b0 b dflt
-ffffffff825451b8 b blankinterval
-ffffffff825451c0 b vt_notifier_list.llvm.9716869111761671445
-ffffffff825451d0 b complement_pos.old
-ffffffff825451d2 b complement_pos.oldx
-ffffffff825451d4 b complement_pos.oldy
-ffffffff825451d8 b tty0dev
-ffffffff825451e0 b vt_kmsg_redirect.kmsg_con
-ffffffff825451e4 b ignore_poke
-ffffffff825451e8 b console_blanked
-ffffffff825451f0 b vc0_cdev
-ffffffff82545260 b con_driver_map
-ffffffff82545458 b saved_fg_console
-ffffffff8254545c b saved_last_console
-ffffffff82545460 b saved_want_console
-ffffffff82545464 b saved_vc_mode
-ffffffff82545468 b saved_console_blanked
-ffffffff82545470 b conswitchp
-ffffffff82545480 b registered_con_driver
-ffffffff82545700 b blank_state
-ffffffff82545704 b vesa_blank_mode
-ffffffff82545708 b blank_timer_expired
-ffffffff8254570c b vesa_off_interval
-ffffffff82545710 b console_blank_hook
-ffffffff82545718 b scrollback_delta
-ffffffff82545720 b master_display_fg
-ffffffff82545728 b vc_init.__key
-ffffffff82545728 b vt_console_print.printing_lock
-ffffffff82545730 b vtconsole_class
-ffffffff82545738 b do_poke_blanked_console
-ffffffff82545738 b vtconsole_class_init.__key
-ffffffff82545740 b console_driver
-ffffffff82545748 b fg_console
-ffffffff82545750 b vc_cons
-ffffffff82546128 b last_console
-ffffffff8254612c b funcbufleft
-ffffffff82546130 b cons_ops
-ffffffff825461b0 b hvc_kicked.llvm.4250908402033475605
-ffffffff825461b8 b hvc_task.llvm.4250908402033475605
-ffffffff825461c0 b hvc_driver
-ffffffff825461c8 b sysrq_pressed
-ffffffff825461cc b uart_set_options.dummy
-ffffffff825461f8 b uart_add_one_port.__key
-ffffffff82546200 b serial8250_ports
-ffffffff82546e00 b serial8250_isa_config
-ffffffff82546e08 b nr_uarts
-ffffffff82546e10 b serial8250_isa_devs
-ffffffff82546e18 b share_irqs
-ffffffff82546e1c b skip_txen_test
-ffffffff82546e20 b serial8250_isa_init_ports.first
-ffffffff82546e28 b base_ops
-ffffffff82546e30 b univ8250_port_ops
-ffffffff82546ef0 b irq_lists
-ffffffff82546ff0 b ttynull_driver
-ffffffff82546ff8 b ttynull_port
-ffffffff82547170 b chr_dev_init.__key
-ffffffff82547170 b mem_class
-ffffffff82547178 b crng_is_ready
-ffffffff82547188 b base_crng
-ffffffff825471c0 b add_input_randomness.last_value
-ffffffff825471c8 b _credit_init_bits.set_ready
-ffffffff825471e8 b fasync
-ffffffff825471f0 b sysctl_bootid
-ffffffff82547200 b proc_do_uuid.bootid_spinlock
-ffffffff82547210 b misc_minors
-ffffffff82547220 b misc_class
-ffffffff82547228 b early_put_chars
-ffffffff82547228 b misc_init.__key
-ffffffff82547230 b pdrvdata_lock
-ffffffff82547234 b dma_bufs_lock
-ffffffff82547238 b add_port.__key
-ffffffff82547238 b hpet_alloc.last
-ffffffff82547238 b virtio_console_init.__key
-ffffffff82547240 b hpet_nhpet
-ffffffff82547248 b hpets
-ffffffff82547250 b hpet_alloc.__key
-ffffffff82547250 b sysctl_header
-ffffffff82547258 b hpet_lock
-ffffffff8254725c b current_quality
-ffffffff8254725e b default_quality
-ffffffff82547260 b current_rng
-ffffffff82547268 b cur_rng_set_by_user
-ffffffff82547270 b hwrng_fill
-ffffffff82547278 b rng_buffer
-ffffffff82547280 b rng_fillbuf
-ffffffff82547288 b data_avail
-ffffffff8254728c b iommu_device_lock
-ffffffff82547290 b iommu_group_kset
-ffffffff82547298 b dev_iommu_get.__key
-ffffffff82547298 b devices_attr
-ffffffff82547298 b iommu_dev_init.__key
-ffffffff82547298 b iommu_group_alloc.__key
-ffffffff82547298 b iommu_register_device_fault_handler.__key
-ffffffff825472a0 b iommu_deferred_attach_enabled
-ffffffff825472a0 b iommu_get_dma_cookie.__key
-ffffffff825472b0 b iova_cache_users
-ffffffff825472b8 b iova_cache
-ffffffff825472c0 b component_debugfs_dir
-ffffffff825472c8 b fw_devlink_strict
-ffffffff825472c9 b fw_devlink_drv_reg_done.llvm.4157689720821036174
-ffffffff825472ca b fw_devlink_best_effort
-ffffffff825472d0 b platform_notify
-ffffffff825472d8 b platform_notify_remove
-ffffffff825472e0 b devices_kset
-ffffffff825472e8 b device_initialize.__key
-ffffffff825472e8 b virtual_device_parent.virtual_dir
-ffffffff825472f0 b dev_kobj
-ffffffff825472f8 b sysfs_dev_block_kobj
-ffffffff82547300 b sysfs_dev_char_kobj
-ffffffff82547308 b bus_kset
-ffffffff82547308 b bus_register.__key
-ffffffff82547308 b devlink_class_init.__key
-ffffffff82547310 b system_kset.llvm.14726823957068119945
-ffffffff82547318 b driver_deferred_probe_enable
-ffffffff8254731c b deferred_trigger_count
-ffffffff82547320 b defer_all_probes.llvm.14026978907403598246
-ffffffff82547321 b initcalls_done
-ffffffff82547324 b driver_deferred_probe_timeout
-ffffffff82547328 b probe_count.llvm.14026978907403598246
-ffffffff82547330 b async_probe_drv_names
-ffffffff82547430 b async_probe_default
-ffffffff82547438 b class_kset.llvm.12064840473626432479
-ffffffff82547440 b common_cpu_attr_groups
-ffffffff82547448 b hotplugable_cpu_attr_groups
-ffffffff82547450 b total_cpus
-ffffffff82547458 b firmware_kobj
-ffffffff82547460 b coherency_max_size
-ffffffff82547460 b transport_class_register.__key
-ffffffff82547468 b cache_dev_map
-ffffffff82547470 b swnode_kset
-ffffffff82547478 b power_attrs
-ffffffff82547480 b dev_pm_qos_constraints_allocate.__key
-ffffffff82547480 b pm_runtime_init.__key
-ffffffff82547480 b pm_transition.0
-ffffffff82547484 b async_error
-ffffffff82547488 b suspend_stats
-ffffffff8254751c b events_lock
-ffffffff82547520 b saved_count
-ffffffff82547524 b wakeup_irq_lock
-ffffffff82547528 b combined_event_count
-ffffffff82547530 b wakeup_class
-ffffffff82547538 b firmware_config_sysct_table_header.llvm.10075264112113527747
-ffffffff82547538 b wakeup_sources_sysfs_init.__key
-ffffffff82547540 b fw_cache
-ffffffff82547560 b strpath
-ffffffff82547f60 b fw_path_para
-ffffffff82548956 b register_sysfs_loader.__key
-ffffffff82548958 b sections_per_block
-ffffffff82548960 b memory_blocks
-ffffffff82548970 b __regmap_init.__key
-ffffffff82548970 b __regmap_init.__key.5
-ffffffff82548970 b regmap_debugfs_root
-ffffffff82548978 b dummy_index
-ffffffff82548978 b regmap_debugfs_init.__key
-ffffffff82548980 b brd_debugfs_dir
-ffffffff82548988 b brd_alloc.__key
-ffffffff82548988 b max_part
-ffffffff8254898c b loop_add.__key
-ffffffff8254898c b part_shift
-ffffffff82548990 b loop_add.__key.2
-ffffffff82548990 b num_request_queues
-ffffffff82548994 b poll_queues
-ffffffff82548998 b virtblk_queue_depth
-ffffffff8254899c b major
-ffffffff825489a0 b major
-ffffffff825489a8 b virtblk_wq
-ffffffff825489b0 b virtblk_probe.__key
-ffffffff825489b0 b virtblk_probe.__key.4
-ffffffff825489b0 b zram_major
-ffffffff825489b4 b zram_add.__key
-ffffffff825489b4 b zram_add.__key.5
-ffffffff825489b8 b huge_class_size
-ffffffff825489c0 b syscon_list_slock
-ffffffff825489c0 b zram_init.__key
-ffffffff825489c4 b nvdimm_bus_major
-ffffffff825489c4 b nvdimm_bus_register.__key
-ffffffff825489c4 b nvdimm_bus_register.__key.3
-ffffffff825489c8 b nd_class
-ffffffff825489d0 b nvdimm_bus_init.__key
-ffffffff825489d0 b nvdimm_major
-ffffffff825489d4 b nd_region_create.__key
-ffffffff825489d8 b nd_region_probe.once
-ffffffff825489e0 b nvdimm_btt_guid
-ffffffff825489f0 b nvdimm_btt2_guid
-ffffffff82548a00 b nvdimm_pfn_guid
-ffffffff82548a10 b nvdimm_dax_guid
-ffffffff82548a20 b nvdimm_btt_uuid
-ffffffff82548a30 b nvdimm_btt2_uuid
-ffffffff82548a40 b nvdimm_pfn_uuid
-ffffffff82548a50 b nvdimm_dax_uuid
-ffffffff82548a60 b cxl_region_uuid
-ffffffff82548a70 b cxl_namespace_uuid
-ffffffff82548a80 b debugfs_root
-ffffffff82548a80 b pmem_attach_disk.__key
-ffffffff82548a88 b alloc_arena.__key
-ffffffff82548a88 b btt_blk_init.__key
-ffffffff82548a88 b btt_init.__key
-ffffffff82548a88 b dax_devt
-ffffffff82548a90 b dax_mnt
-ffffffff82548a98 b match_always_count
-ffffffff82548aa0 b db_list
-ffffffff82548ad0 b dma_buf_export.__key
-ffffffff82548ad0 b dma_buf_export.__key.2
-ffffffff82548ad0 b dma_buf_mnt
-ffffffff82548ad8 b dma_buf_getfile.dmabuf_inode
-ffffffff82548ae0 b dma_buf_debugfs_dir
-ffffffff82548ae0 b dma_buf_init.__key
-ffffffff82548ae8 b dma_fence_stub_lock
-ffffffff82548af0 b dma_fence_stub
-ffffffff82548b30 b dma_heap_devt
-ffffffff82548b38 b dma_heap_class
-ffffffff82548b40 b dma_heap_init.__key
-ffffffff82548b40 b dma_heap_kobject
-ffffffff82548b48 b dma_buf_stats_kset.llvm.2080070175061725742
-ffffffff82548b50 b dma_buf_per_buffer_stats_kset.llvm.2080070175061725742
-ffffffff82548b58 b blackhole_netdev
-ffffffff82548b60 b uio_class_registered
-ffffffff82548b61 b __uio_register_device.__key
-ffffffff82548b61 b __uio_register_device.__key.1
-ffffffff82548b64 b uio_major
-ffffffff82548b68 b uio_cdev
-ffffffff82548b70 b init_uio_class.__key
-ffffffff82548b70 b serio_event_lock
-ffffffff82548b74 b i8042_nokbd
-ffffffff82548b74 b serio_init_port.__key
-ffffffff82548b75 b i8042_noaux
-ffffffff82548b76 b i8042_nomux
-ffffffff82548b77 b i8042_unlock
-ffffffff82548b78 b i8042_probe_defer
-ffffffff82548b79 b i8042_direct
-ffffffff82548b7a b i8042_dumbkbd
-ffffffff82548b7b b i8042_noloop
-ffffffff82548b7c b i8042_notimeout
-ffffffff82548b7d b i8042_kbdreset
-ffffffff82548b7e b i8042_dritek
-ffffffff82548b7f b i8042_nopnp
-ffffffff82548b80 b i8042_debug
-ffffffff82548b81 b i8042_unmask_kbd_data
-ffffffff82548b84 b i8042_lock
-ffffffff82548b88 b i8042_platform_filter
-ffffffff82548b90 b i8042_present
-ffffffff82548b98 b i8042_platform_device
-ffffffff82548ba0 b i8042_start_time
-ffffffff82548ba8 b i8042_ctr
-ffffffff82548ba9 b i8042_initial_ctr
-ffffffff82548bac b i8042_aux_irq
-ffffffff82548bb0 b i8042_aux_irq_registered
-ffffffff82548bb1 b i8042_bypass_aux_irq_test
-ffffffff82548bb8 b i8042_aux_irq_delivered
-ffffffff82548bd8 b i8042_irq_being_tested
-ffffffff82548bd9 b i8042_mux_present
-ffffffff82548be0 b i8042_ports
-ffffffff82548c40 b i8042_aux_firmware_id
-ffffffff82548cc0 b i8042_kbd_irq
-ffffffff82548cc8 b i8042_interrupt.last_transmit
-ffffffff82548cd0 b i8042_interrupt.last_str
-ffffffff82548cd1 b i8042_suppress_kbd_ack
-ffffffff82548cd2 b i8042_kbd_irq_registered
-ffffffff82548ce0 b i8042_kbd_firmware_id
-ffffffff82548d60 b i8042_kbd_fwnode
-ffffffff82548d68 b i8042_pnp_kbd_registered
-ffffffff82548d69 b i8042_pnp_aux_registered
-ffffffff82548d6c b i8042_pnp_data_reg
-ffffffff82548d70 b i8042_pnp_command_reg
-ffffffff82548d74 b i8042_pnp_kbd_irq
-ffffffff82548d80 b i8042_pnp_kbd_name
-ffffffff82548da0 b i8042_pnp_kbd_devices
-ffffffff82548da4 b i8042_pnp_aux_irq
-ffffffff82548db0 b i8042_pnp_aux_name
-ffffffff82548dd0 b i8042_pnp_aux_devices
-ffffffff82548dd4 b input_allocate_device.__key
-ffffffff82548dd4 b input_devices_state
-ffffffff82548dd4 b serport_ldisc_open.__key
-ffffffff82548dd8 b proc_bus_input_dir
-ffffffff82548de0 b input_ff_create.__key
-ffffffff82548de0 b input_init.__key
-ffffffff82548de0 b rtc_class
-ffffffff82548de8 b old_system
-ffffffff82548de8 b rtc_allocate_device.__key
-ffffffff82548de8 b rtc_allocate_device.__key.7
-ffffffff82548de8 b rtc_init.__key
-ffffffff82548df8 b old_rtc.0
-ffffffff82548e00 b old_delta.0
-ffffffff82548e08 b old_delta.1
-ffffffff82548e10 b rtc_devt
-ffffffff82548e14 b use_acpi_alarm
-ffffffff82548e15 b pnp_driver_registered
-ffffffff82548e16 b platform_driver_registered
-ffffffff82548e18 b cmos_rtc
-ffffffff82548e80 b power_supply_notifier
-ffffffff82548e90 b power_supply_class
-ffffffff82548e98 b power_supply_dev_type
-ffffffff82548ec8 b power_supply_class_init.__key
-ffffffff82548ed0 b __power_supply_attrs
-ffffffff82549138 b def_governor
-ffffffff82549140 b in_suspend
-ffffffff82549144 b __thermal_cooling_device_register.__key
-ffffffff82549144 b int_pln_enable
-ffffffff82549144 b thermal_init.__key
-ffffffff82549144 b thermal_zone_device_register_with_trips.__key
-ffffffff82549148 b therm_throt_en.llvm.11716141392874196317
-ffffffff82549150 b platform_thermal_notify
-ffffffff82549158 b platform_thermal_package_notify
-ffffffff82549160 b platform_thermal_package_rate_control
-ffffffff82549168 b wtd_deferred_reg_done
-ffffffff82549170 b watchdog_kworker
-ffffffff82549178 b watchdog_dev_init.__key
-ffffffff82549178 b watchdog_devt
-ffffffff8254917c b open_timeout
-ffffffff82549180 b old_wd_data
-ffffffff82549180 b watchdog_cdev_register.__key
-ffffffff82549188 b create
-ffffffff82549190 b _dm_event_cache.llvm.11412908368929612187
-ffffffff82549198 b stats_enabled
-ffffffff825491a8 b _minor_lock
-ffffffff825491ac b _major
-ffffffff825491b0 b deferred_remove_workqueue
-ffffffff825491b8 b alloc_dev.__key
-ffffffff825491b8 b alloc_dev.__key.19
-ffffffff825491b8 b alloc_dev.__key.21
-ffffffff825491b8 b alloc_dev.__key.23
-ffffffff825491b8 b alloc_dev.__key.24
-ffffffff825491b8 b alloc_dev.__key.26
-ffffffff825491b8 b alloc_dev.__key.28
-ffffffff825491b8 b dm_global_event_nr
-ffffffff825491c0 b swap_bios_enabled
-ffffffff825491d0 b zoned_enabled
-ffffffff825491e0 b name_rb_tree
-ffffffff825491e8 b uuid_rb_tree
-ffffffff825491f0 b _dm_io_cache
-ffffffff825491f8 b _job_cache
-ffffffff82549200 b zero_page_list
-ffffffff82549210 b dm_kcopyd_client_create.__key
-ffffffff82549210 b dm_kcopyd_copy.__key
-ffffffff82549210 b throttle_spinlock
-ffffffff82549214 b dm_stats_init.__key
-ffffffff82549218 b shared_memory_amount
-ffffffff82549220 b dm_stat_need_rcu_barrier
-ffffffff82549224 b shared_memory_lock
-ffffffff82549228 b no_sleep_enabled
-ffffffff82549238 b dm_bufio_client_count
-ffffffff82549238 b dm_bufio_client_create.__key
-ffffffff82549238 b dm_bufio_client_create.__key.3
-ffffffff82549240 b dm_bufio_cleanup_old_work
-ffffffff82549298 b dm_bufio_wq
-ffffffff825492a0 b dm_bufio_current_allocated
-ffffffff825492a8 b dm_bufio_allocated_get_free_pages
-ffffffff825492b0 b dm_bufio_allocated_vmalloc
-ffffffff825492b8 b dm_bufio_cache_size
-ffffffff825492c0 b dm_bufio_peak_allocated
-ffffffff825492c8 b dm_bufio_allocated_kmem_cache
-ffffffff825492d0 b dm_bufio_cache_size_latch
-ffffffff825492d8 b global_spinlock
-ffffffff825492e0 b global_num
-ffffffff825492e8 b dm_bufio_replacement_work
-ffffffff82549308 b dm_bufio_default_cache_size
-ffffffff82549310 b dm_crypt_clients_lock
-ffffffff82549314 b dm_crypt_clients_n
-ffffffff82549318 b crypt_ctr.__key
-ffffffff82549318 b crypt_ctr.__key.7
-ffffffff82549318 b dm_crypt_pages_per_client
-ffffffff82549320 b use_tasklet_enabled
-ffffffff82549330 b channel_alloc.__key
-ffffffff82549330 b edac_mc_owner
-ffffffff82549330 b user_ctr.__key
-ffffffff82549330 b user_ctr.__key.3
-ffffffff82549338 b edac_device_alloc_index.device_indexes
-ffffffff8254933c b edac_mc_panic_on_ue.llvm.535839469565872929
-ffffffff82549340 b mci_pdev.llvm.535839469565872929
-ffffffff82549348 b wq.llvm.8044566205871360426
-ffffffff82549350 b pci_indexes
-ffffffff82549354 b edac_pci_idx
-ffffffff82549358 b check_pci_errors.llvm.16135481120929216150
-ffffffff8254935c b pci_parity_count
-ffffffff82549360 b edac_pci_panic_on_pe
-ffffffff82549364 b edac_pci_sysfs_refcount
-ffffffff82549368 b edac_pci_top_main_kobj
-ffffffff82549370 b pci_nonparity_count
-ffffffff82549378 b cpufreq_freq_invariance
-ffffffff82549388 b cpufreq_driver.llvm.12424873168283460255
-ffffffff82549390 b cpufreq_global_kobject
-ffffffff82549398 b cpufreq_driver_lock
-ffffffff825493a0 b cpufreq_fast_switch_count
-ffffffff825493a4 b cpufreq_suspended
-ffffffff825493a5 b cpufreq_policy_alloc.__key
-ffffffff825493a5 b cpufreq_policy_alloc.__key.40
-ffffffff825493b0 b default_governor
-ffffffff825493c0 b task_time_in_state_lock
-ffffffff825493c4 b next_offset
-ffffffff825493d0 b all_freqs
-ffffffff825494d0 b alloc_policy_dbs_info.__key
-ffffffff825494d0 b gov_attr_set_init.__key
-ffffffff825494d0 b hwp_notify_lock
-ffffffff825494d8 b hwp_intr_enable_mask
-ffffffff825494e0 b all_cpu_data
-ffffffff825494e8 b intel_pstate_init._all_cpu_data
-ffffffff825494f0 b default_driver
-ffffffff825494f8 b global
-ffffffff82549504 b intel_pstate_set_itmt_prio.max_highest_perf
-ffffffff82549508 b acpi_ppc
-ffffffff8254950c b power_ctl_ee_state
-ffffffff82549510 b intel_pstate_kobject
-ffffffff82549518 b enabled_devices
-ffffffff8254951c b cpuidle_driver_lock
-ffffffff82549520 b cpuidle_curr_driver.llvm.6597684087519261588
-ffffffff82549528 b cpuidle_curr_governor
-ffffffff82549530 b param_governor
-ffffffff82549540 b cpuidle_prev_governor
-ffffffff82549548 b haltpoll_hp_state
-ffffffff82549550 b haltpoll_cpuidle_devices
-ffffffff82549558 b dmi_available
-ffffffff82549560 b dmi_ident
-ffffffff82549618 b dmi_base
-ffffffff82549620 b dmi_len
-ffffffff82549628 b dmi_memdev
-ffffffff82549630 b dmi_memdev_nr
-ffffffff82549638 b dmi_kobj
-ffffffff82549640 b smbios_entry_point_size
-ffffffff82549650 b smbios_entry_point
-ffffffff82549670 b dmi_num
-ffffffff82549674 b save_mem_devices.nr
-ffffffff82549678 b dmi_dev
-ffffffff82549678 b dmi_id_init.__key
-ffffffff82549680 b sys_dmi_attributes
-ffffffff82549748 b map_entries_bootmem_lock
-ffffffff8254974c b map_entries_lock
-ffffffff82549750 b add_sysfs_fw_map_entry.map_entries_nr
-ffffffff82549758 b add_sysfs_fw_map_entry.mmap_kset
-ffffffff82549760 b disable_runtime.llvm.9494505439812322103
-ffffffff82549764 b efi_mem_reserve_persistent_lock
-ffffffff82549768 b efi_rts_wq
-ffffffff82549770 b efi_kobj
-ffffffff82549778 b generic_ops
-ffffffff825497a0 b generic_efivars
-ffffffff825497c0 b debugfs_blob
-ffffffff825499c0 b __efivars
-ffffffff825499c8 b efi_sys_off_handler
-ffffffff825499d0 b efi_tpm_final_log_size
-ffffffff825499d8 b esrt_data
-ffffffff825499e0 b esrt_data_size
-ffffffff825499e8 b esrt
-ffffffff825499f0 b esrt_kobj
-ffffffff825499f8 b esrt_kset
-ffffffff82549a00 b map_entries
-ffffffff82549a08 b map_kset
-ffffffff82549a10 b efi_rts_work
-ffffffff82549a88 b fb_base
-ffffffff82549a90 b fb_wb
-ffffffff82549a98 b efi_fb
-ffffffff82549aa0 b font
-ffffffff82549aa8 b efi_y
-ffffffff82549aac b efi_x
-ffffffff82549ab0 b acpi_pm_good
-ffffffff82549ab4 b i8253_lock
-ffffffff82549ab8 b devtree_lock
-ffffffff82549ac0 b phandle_cache
-ffffffff82549ec0 b of_kset
-ffffffff82549ec8 b of_root
-ffffffff82549ed0 b of_aliases
-ffffffff82549ed8 b of_chosen
-ffffffff82549ee0 b of_stdout_options
-ffffffff82549ee8 b of_stdout
-ffffffff82549ef0 b pcc_chan_count
-ffffffff82549ef8 b chan_info
-ffffffff82549f00 b trace_count
-ffffffff82549f08 b ras_debugfs_dir
-ffffffff82549f10 b br_ioctl_hook
-ffffffff82549f18 b vlan_ioctl_hook
-ffffffff82549f20 b net_family_lock
-ffffffff82549f24 b sock_alloc_inode.__key
-ffffffff82549f28 b net_high_order_alloc_disable_key
-ffffffff82549f38 b proto_inuse_idx
-ffffffff82549f38 b sock_lock_init.__key
-ffffffff82549f38 b sock_lock_init.__key.14
-ffffffff82549f40 b memalloc_socks_key
-ffffffff82549f50 b init_net_initialized
-ffffffff82549f51 b setup_net.__key
-ffffffff82549f80 b init_net
-ffffffff8254abc0 b ts_secret
-ffffffff8254abd0 b net_secret
-ffffffff8254abe0 b hashrnd
-ffffffff8254abf0 b net_msg_warn
-ffffffff8254abf4 b ptype_lock
-ffffffff8254abf8 b netdev_chain
-ffffffff8254ac00 b dev_boot_phase
-ffffffff8254ac08 b netstamp_needed_key
-ffffffff8254ac18 b netstamp_wanted
-ffffffff8254ac1c b netstamp_needed_deferred
-ffffffff8254ac20 b generic_xdp_needed_key
-ffffffff8254ac30 b napi_hash_lock
-ffffffff8254ac38 b flush_all_backlogs.flush_cpus
-ffffffff8254ac40 b dev_base_lock
-ffffffff8254ac48 b netevent_notif_chain.llvm.7731480291174786563
-ffffffff8254ac58 b defer_kfree_skb_list
-ffffffff8254ac60 b rtnl_msg_handlers
-ffffffff8254b070 b lweventlist_lock
-ffffffff8254b078 b linkwatch_nextevent
-ffffffff8254b080 b linkwatch_flags
-ffffffff8254b088 b bpf_xdp_get_buff_len_bpf_ids
-ffffffff8254b08c b bpf_skb_output_btf_ids
-ffffffff8254b090 b bpf_xdp_output_btf_ids
-ffffffff8254b0a0 b btf_sock_ids
-ffffffff8254b0e0 b bpf_sock_from_file_btf_ids
-ffffffff8254b120 b nfct_btf_struct_access
-ffffffff8254b128 b md_dst
-ffffffff8254b130 b bpf_master_redirect_enabled_key
-ffffffff8254b140 b bpf_sk_lookup_enabled
-ffffffff8254b150 b broadcast_wq
-ffffffff8254b158 b inet_rcv_compat.llvm.16474778372402532622
-ffffffff8254b160 b sock_diag_handlers
-ffffffff8254b2d0 b reuseport_lock
-ffffffff8254b2d4 b fib_notifier_net_id
-ffffffff8254b2d8 b mem_id_ht
-ffffffff8254b2e0 b mem_id_init
-ffffffff8254b2e4 b offload_lock
-ffffffff8254b2e8 b netdev_kobject_init.__key
-ffffffff8254b2e8 b store_rps_dev_flow_table_cnt.rps_dev_flow_lock
-ffffffff8254b2f0 b wireless_attrs
-ffffffff8254b2f8 b nl_table_lock
-ffffffff8254b300 b netlink_tap_net_id
-ffffffff8254b304 b nl_table_users
-ffffffff8254b308 b __netlink_create.__key
-ffffffff8254b308 b __netlink_create.__key.10
-ffffffff8254b308 b genl_sk_destructing_cnt
-ffffffff8254b308 b netlink_tap_init_net.__key
-ffffffff8254b30c b ethtool_rx_flow_rule_create.zero_addr
-ffffffff8254b31c b ethtool_phys_id.busy
-ffffffff8254b320 b ethtool_phy_ops
-ffffffff8254b328 b ethnl_bcast_seq
-ffffffff8254b32c b ip_rt_max_size
-ffffffff8254b330 b fnhe_lock
-ffffffff8254b340 b fnhe_hashfun.fnhe_hash_key
-ffffffff8254b350 b dst_entries_init.__key
-ffffffff8254b350 b dst_entries_init.__key
-ffffffff8254b350 b dst_entries_init.__key
-ffffffff8254b350 b dst_entries_init.__key
-ffffffff8254b350 b ip4_frags
-ffffffff8254b3d0 b ip4_frags_secret_interval_unused
-ffffffff8254b3d4 b dist_min
-ffffffff8254b3d8 b ip4_min_ttl
-ffffffff8254b3e8 b table_perturb
-ffffffff8254b3f0 b tcp_init.__key
-ffffffff8254b3f0 b tcp_orphan_timer
-ffffffff8254b418 b tcp_orphan_cache
-ffffffff8254b41c b tcp_enable_tx_delay.__tcp_tx_delay_enabled
-ffffffff8254b440 b tcp_memory_allocated
-ffffffff8254b480 b tcp_sockets_allocated
-ffffffff8254b4a8 b tcp_tx_delay_enabled
-ffffffff8254b4b8 b tcp_hashinfo
-ffffffff8254b508 b tcp_cong_list_lock
-ffffffff8254b50c b fastopen_seqlock
-ffffffff8254b514 b tcp_metrics_lock
-ffffffff8254b518 b tcpmhash_entries
-ffffffff8254b51c b tcp_ulp_list_lock
-ffffffff8254b540 b raw_v4_hashinfo
-ffffffff8254bd80 b udp_encap_needed_key
-ffffffff8254bdc0 b udp_memory_allocated
-ffffffff8254bdc8 b icmp_global
-ffffffff8254bde0 b inet_addr_lst
-ffffffff8254c5e0 b inetsw_lock
-ffffffff8254c5f0 b inetsw
-ffffffff8254c6a0 b fib_info_lock
-ffffffff8254c6a4 b fib_info_cnt
-ffffffff8254c6a8 b fib_info_hash_size
-ffffffff8254c6b0 b fib_info_hash
-ffffffff8254c6b8 b fib_info_laddrhash
-ffffffff8254c6c0 b fib_info_devhash
-ffffffff8254cec0 b fib_info_hash_bits
-ffffffff8254cec4 b tnode_free_size
-ffffffff8254cec8 b inet_frag_wq
-ffffffff8254ced0 b fqdir_free_list
-ffffffff8254ced8 b ping_table
-ffffffff8254d0e0 b ping_port_rover
-ffffffff8254d0e8 b pingv6_ops
-ffffffff8254d118 b ip_tunnel_metadata_cnt
-ffffffff8254d128 b nexthop_net_init.__key
-ffffffff8254d128 b udp_tunnel_nic_ops
-ffffffff8254d130 b ip_ping_group_range_min
-ffffffff8254d138 b ip_privileged_port_min
-ffffffff8254d140 b inet_diag_table
-ffffffff8254d148 b __xfrm_policy_check.dummy
-ffffffff8254d1a0 b xfrm_policy_afinfo_lock
-ffffffff8254d1a4 b xfrm_if_cb_lock
-ffffffff8254d1a8 b xfrm_policy_inexact_table
-ffffffff8254d230 b xfrm_gen_index.idx_generator
-ffffffff8254d234 b xfrm_net_init.__key
-ffffffff8254d234 b xfrm_state_gc_lock
-ffffffff8254d238 b xfrm_state_gc_list
-ffffffff8254d240 b xfrm_state_find.saddr_wildcard
-ffffffff8254d250 b xfrm_get_acqseq.acqseq
-ffffffff8254d254 b xfrm_km_lock
-ffffffff8254d258 b xfrm_state_afinfo_lock
-ffffffff8254d260 b xfrm_state_afinfo
-ffffffff8254d3d0 b xfrm_input_afinfo_lock
-ffffffff8254d3e0 b xfrm_input_afinfo
-ffffffff8254d490 b gro_cells
-ffffffff8254d4c0 b xfrm_napi_dev
-ffffffff8254dd00 b ipcomp_scratches
-ffffffff8254dd08 b ipcomp_scratch_users
-ffffffff8254dd10 b bsd_socket_locks
-ffffffff8254e110 b bsd_socket_buckets
-ffffffff8254e910 b unix_nr_socks
-ffffffff8254e918 b gc_in_progress
-ffffffff8254e918 b unix_create1.__key
-ffffffff8254e918 b unix_create1.__key.12
-ffffffff8254e918 b unix_create1.__key.14
-ffffffff8254e91c b unix_gc_lock
-ffffffff8254e920 b unix_tot_inflight
-ffffffff8254e924 b disable_ipv6_mod.llvm.10279634912201262867
-ffffffff8254e928 b inetsw6_lock
-ffffffff8254e930 b inetsw6
-ffffffff8254e9e0 b inet6_acaddr_lst.llvm.536057326884867110
-ffffffff8254f1e0 b acaddr_hash_lock
-ffffffff8254f1e8 b addrconf_wq
-ffffffff8254f1f0 b ipv6_generate_stable_address.lock
-ffffffff8254f200 b ipv6_generate_stable_address.digest
-ffffffff8254f220 b ipv6_generate_stable_address.workspace
-ffffffff8254f260 b ipv6_generate_stable_address.data
-ffffffff8254f2a0 b rt6_exception_lock
-ffffffff8254f2b0 b rt6_exception_hash.rt6_exception_key
-ffffffff8254f2c0 b ip6_ra_lock
-ffffffff8254f2c8 b ip6_min_hopcount
-ffffffff8254f2d8 b ip6_ra_chain
-ffffffff8254f2e0 b ndisc_warn_deprecated_sysctl.warncomm
-ffffffff8254f2f0 b ndisc_warn_deprecated_sysctl.warned
-ffffffff8254f2f8 b udpv6_encap_needed_key
-ffffffff8254f340 b raw_v6_hashinfo
-ffffffff8254fb80 b mld_wq.llvm.8540766267562702954
-ffffffff8254fb88 b ip6_frags
-ffffffff8254fb88 b ipv6_mc_init_dev.__key
-ffffffff8254fc08 b ip6_ctl_header
-ffffffff8254fc10 b ip6_frags_secret_interval_unused
-ffffffff8254fc14 b ip6_sk_fl_lock
-ffffffff8254fc18 b ip6_fl_lock
-ffffffff8254fc20 b fl_ht
-ffffffff82550420 b fl_size
-ffffffff82550424 b ioam6_net_init.__key
-ffffffff82550424 b seg6_net_init.__key
-ffffffff82550428 b ip6_header
-ffffffff82550430 b xfrm6_tunnel_spi_lock
-ffffffff82550438 b mip6_report_rl
-ffffffff82550470 b inet6addr_chain.llvm.6153677004453161155
-ffffffff82550480 b __fib6_flush_trees
-ffffffff82550488 b fanout_next_id
-ffffffff82550488 b packet_create.__key
-ffffffff82550488 b packet_net_init.__key
-ffffffff8255048c b get_acqseq.acqseq
-ffffffff82550490 b net_sysctl_init.empty
-ffffffff82550490 b pfkey_create.__key
-ffffffff825504d0 b net_header
-ffffffff825504d8 b vsock_table_lock
-ffffffff825504e0 b vsock_connected_table
-ffffffff82551490 b transport_dgram
-ffffffff82551498 b transport_local
-ffffffff825514a0 b transport_h2g
-ffffffff825514a8 b transport_g2h
-ffffffff825514b0 b vsock_bind_table
-ffffffff82552470 b __vsock_bind_connectible.port
-ffffffff82552474 b vsock_tap_lock
-ffffffff82552478 b virtio_vsock_workqueue
-ffffffff82552480 b the_virtio_vsock
-ffffffff82552488 b the_vsock_loopback
-ffffffff82552488 b virtio_vsock_probe.__key
-ffffffff82552488 b virtio_vsock_probe.__key.2
-ffffffff82552488 b virtio_vsock_probe.__key.4
-ffffffff825524c8 b pcibios_fw_addr_done
-ffffffff825524cc b pcibios_fwaddrmap_lock
-ffffffff825524d0 b pci_mmcfg_arch_init_failed
-ffffffff825524d1 b pci_mmcfg_running_state
-ffffffff825524e0 b quirk_aspm_offset
-ffffffff825525a0 b toshiba_line_size
-ffffffff825525a2 b pci_use_crs
-ffffffff825525a3 b pci_ignore_seg
-ffffffff825525a4 b elcr_set_level_irq.elcr_irq_mask
-ffffffff825525a8 b pirq_table
-ffffffff825525b0 b pirq_router
-ffffffff825525d8 b broken_hp_bios_irq9
-ffffffff825525e0 b pirq_router_dev
-ffffffff825525e8 b acer_tm360_irqrouting
-ffffffff825525ec b pci_config_lock
-ffffffff825525f0 b pci_bf_sort
-ffffffff825525f4 b noioapicquirk
-ffffffff825525f8 b pci_routeirq
-ffffffff82552600 b pirq_table_addr
-ffffffff82552610 b dump_stack_arch_desc_str
-ffffffff82552690 b fprop_global_init.__key
-ffffffff82552690 b fprop_local_init_percpu.__key
-ffffffff82552690 b klist_remove_lock
-ffffffff82552694 b kobj_ns_type_lock
-ffffffff825526a0 b kobj_ns_ops_tbl.0
-ffffffff825526a8 b uevent_seqnum
-ffffffff825526b0 b maple_node_cache.llvm.12049738637075140058
-ffffffff825526b8 b backtrace_flag
-ffffffff825526c0 b backtrace_idle
-ffffffff825526c8 b radix_tree_node_cachep
-ffffffff825526d0 b pc_conf_lock
+ffffffff822125c8 d blacklisted_initcalls
+ffffffff822125d8 d loops_per_jiffy
+ffffffff822125e0 d envp_init
+ffffffff822126f0 d __SCK__tp_func_initcall_level
+ffffffff82212700 d __SCK__tp_func_initcall_start
+ffffffff82212710 d __SCK__tp_func_initcall_finish
+ffffffff822128d0 d root_mountflags
+ffffffff822128d8 d rootfs_fs_type
+ffffffff82212920 d kern_do_mounts_initrd_table
+ffffffff822129a0 d handle_initrd.argv
+ffffffff822129b0 d wait_for_initramfs.__already_done
+ffffffff822129b1 d alloc_bts_buffer.__already_done
+ffffffff822129b2 d setup_pebs_adaptive_sample_data.__already_done
+ffffffff822129b3 d knc_pmu_handle_irq.__already_done
+ffffffff822129b4 d p4_get_escr_idx.__already_done
+ffffffff822129b5 d uncore_mmio_is_valid_offset.__already_done
+ffffffff822129b6 d uncore_mmio_is_valid_offset.__already_done
+ffffffff822129b7 d get_stack_info.__already_done
+ffffffff822129b8 d apply_returns.__already_done
+ffffffff822129b9 d arch_install_hw_breakpoint.__already_done
+ffffffff822129ba d arch_uninstall_hw_breakpoint.__already_done
+ffffffff822129bb d select_idle_routine.__already_done
+ffffffff822129bc d __xfd_enable_feature.__already_done
+ffffffff822129bd d setup_xstate_cache.__already_done
+ffffffff822129be d paranoid_xstate_size_valid.__already_done
+ffffffff822129bf d paranoid_xstate_size_valid.__already_done.26
+ffffffff822129c0 d check_xstate_against_struct.__already_done
+ffffffff822129c1 d check_xstate_against_struct.__already_done.30
+ffffffff822129c2 d check_xstate_against_struct.__already_done.32
+ffffffff822129c3 d check_xstate_against_struct.__already_done.34
+ffffffff822129c4 d check_xstate_against_struct.__already_done.36
+ffffffff822129c5 d check_xstate_against_struct.__already_done.38
+ffffffff822129c6 d check_xstate_against_struct.__already_done.40
+ffffffff822129c7 d check_xstate_against_struct.__already_done.42
+ffffffff822129c8 d check_xstate_against_struct.__already_done.44
+ffffffff822129c9 d check_xstate_against_struct.__already_done.46
+ffffffff822129ca d native_write_cr0.__already_done
+ffffffff822129cb d native_write_cr4.__already_done
+ffffffff822129cc d detect_ht_early.__already_done
+ffffffff822129cd d get_cpu_vendor.__already_done
+ffffffff822129ce d setup_umip.__already_done
+ffffffff822129cf d cpu_bugs_smt_update.__already_done.2
+ffffffff822129d0 d cpu_bugs_smt_update.__already_done.4
+ffffffff822129d1 d cpu_bugs_smt_update.__already_done.6
+ffffffff822129d2 d spectre_v2_determine_rsb_fill_type_at_vmexit.__already_done
+ffffffff822129d3 d handle_guest_split_lock.__already_done
+ffffffff822129d4 d detect_tme.__already_done
+ffffffff822129d5 d detect_tme.__already_done.11
+ffffffff822129d6 d detect_tme.__already_done.13
+ffffffff822129d7 d detect_tme.__already_done.18
+ffffffff822129d8 d detect_tme.__already_done.20
+ffffffff822129d9 d detect_tme.__already_done.22
+ffffffff822129da d intel_epb_restore.__already_done
+ffffffff822129db d early_init_amd.__already_done
+ffffffff822129dc d rdmsrl_amd_safe.__already_done
+ffffffff822129dd d wrmsrl_amd_safe.__already_done
+ffffffff822129de d clear_rdrand_cpuid_bit.__already_done
+ffffffff822129df d clear_rdrand_cpuid_bit.__already_done.11
+ffffffff822129e0 d print_ucode_info.__already_done
+ffffffff822129e1 d is_blacklisted.__already_done
+ffffffff822129e2 d is_blacklisted.__already_done.15
+ffffffff822129e3 d tsc_store_and_check_tsc_adjust.__already_done
+ffffffff822129e4 d __x2apic_disable.__already_done
+ffffffff822129e5 d __x2apic_enable.__already_done
+ffffffff822129e6 d allocate_logical_cpuid.__already_done
+ffffffff822129e7 d __kvm_handle_async_pf.__already_done
+ffffffff822129e8 d arch_haltpoll_enable.__already_done
+ffffffff822129e9 d arch_haltpoll_enable.__already_done.9
+ffffffff822129ea d __send_ipi_mask.__already_done
+ffffffff822129eb d __send_ipi_mask.__already_done.23
+ffffffff822129ec d unwind_next_frame.__already_done
+ffffffff822129ed d unwind_next_frame.__already_done.1
+ffffffff822129ee d spurious_kernel_fault.__already_done
+ffffffff822129ef d is_errata93.__already_done
+ffffffff822129f0 d __ioremap_caller.__already_done
+ffffffff822129f1 d ex_handler_uaccess.__already_done
+ffffffff822129f2 d ex_handler_copy.__already_done
+ffffffff822129f3 d ex_handler_fprestore.__already_done
+ffffffff822129f4 d ex_handler_msr.__already_done
+ffffffff822129f5 d ex_handler_msr.__already_done.5
+ffffffff822129f6 d pmd_set_huge.__already_done
+ffffffff822129f7 d kernel_map_pages_in_pgd.__already_done
+ffffffff822129f8 d kernel_unmap_pages_in_pgd.__already_done
+ffffffff822129f9 d verify_rwx.__already_done
+ffffffff822129fa d split_set_pte.__already_done
+ffffffff822129fb d pat_disable.__already_done
+ffffffff822129fc d pti_user_pagetable_walk_p4d.__already_done
+ffffffff822129fd d pti_user_pagetable_walk_pte.__already_done
+ffffffff822129fe d efi_memmap_entry_valid.__already_done
+ffffffff822129ff d dup_mm_exe_file.__already_done
+ffffffff82212a00 d __cpu_hotplug_enable.__already_done
+ffffffff82212a01 d tasklet_clear_sched.__already_done
+ffffffff82212a02 d warn_sysctl_write.__already_done
+ffffffff82212a03 d warn_legacy_capability_use.__already_done
+ffffffff82212a04 d warn_deprecated_v2.__already_done
+ffffffff82212a05 d __queue_work.__already_done
+ffffffff82212a06 d check_flush_dependency.__already_done
+ffffffff82212a07 d check_flush_dependency.__already_done.41
+ffffffff82212a08 d update_rq_clock.__already_done
+ffffffff82212a09 d rq_pin_lock.__already_done
+ffffffff82212a0a d assert_clock_updated.__already_done
+ffffffff82212a0b d uclamp_rq_dec_id.__already_done
+ffffffff82212a0c d uclamp_rq_dec_id.__already_done.116
+ffffffff82212a0d d __do_set_cpus_allowed.__already_done
+ffffffff82212a0e d finish_task_switch.__already_done
+ffffffff82212a0f d sched_submit_work.__already_done
+ffffffff82212a10 d nohz_balance_exit_idle.__already_done
+ffffffff82212a11 d nohz_balance_enter_idle.__already_done
+ffffffff82212a12 d assert_clock_updated.__already_done
+ffffffff82212a13 d hrtick_start_fair.__already_done
+ffffffff82212a14 d _nohz_idle_balance.__already_done
+ffffffff82212a15 d load_avg_is_decayed.__already_done
+ffffffff82212a16 d rq_pin_lock.__already_done
+ffffffff82212a17 d check_schedstat_required.__already_done
+ffffffff82212a18 d assert_list_leaf_cfs_rq.__already_done
+ffffffff82212a19 d set_next_buddy.__already_done
+ffffffff82212a1a d set_last_buddy.__already_done
+ffffffff82212a1b d rq_pin_lock.__already_done
+ffffffff82212a1c d assert_clock_updated.__already_done
+ffffffff82212a1d d check_schedstat_required.__already_done
+ffffffff82212a1e d pick_next_rt_entity.__already_done
+ffffffff82212a1f d sched_rt_runtime_exceeded.__already_done
+ffffffff82212a20 d replenish_dl_entity.__already_done
+ffffffff82212a21 d __sub_running_bw.__already_done
+ffffffff82212a22 d __sub_rq_bw.__already_done
+ffffffff82212a23 d __sub_rq_bw.__already_done.39
+ffffffff82212a24 d __add_rq_bw.__already_done
+ffffffff82212a25 d __add_running_bw.__already_done
+ffffffff82212a26 d __add_running_bw.__already_done.43
+ffffffff82212a27 d enqueue_task_dl.__already_done
+ffffffff82212a28 d psi_cgroup_free.__already_done
+ffffffff82212a29 d assert_clock_updated.__already_done
+ffffffff82212a2a d asym_cpu_capacity_update_data.__already_done
+ffffffff82212a2b d sd_init.__already_done
+ffffffff82212a2c d sd_init.__already_done.338
+ffffffff82212a2d d rq_pin_lock.__already_done
+ffffffff82212a2e d check_syslog_permissions.__already_done
+ffffffff82212a2f d console_emit_next_record.__already_done
+ffffffff82212a30 d prb_reserve_in_last.__already_done
+ffffffff82212a31 d prb_reserve_in_last.__already_done.2
+ffffffff82212a32 d __handle_irq_event_percpu.__already_done
+ffffffff82212a33 d irq_validate_effective_affinity.__already_done
+ffffffff82212a34 d irq_wait_for_poll.__already_done
+ffffffff82212a35 d handle_percpu_devid_irq.__already_done
+ffffffff82212a36 d bad_chained_irq.__already_done
+ffffffff82212a37 d synchronize_rcu_tasks_generic.__already_done
+ffffffff82212a38 d rcu_spawn_tasks_kthread_generic.__already_done
+ffffffff82212a39 d rcutree_migrate_callbacks.__already_done
+ffffffff82212a3a d rcu_note_context_switch.__already_done
+ffffffff82212a3b d rcu_stall_kick_kthreads.__already_done
+ffffffff82212a3c d rcu_spawn_gp_kthread.__already_done
+ffffffff82212a3d d rcu_spawn_core_kthreads.__already_done
+ffffffff82212a3e d rcu_spawn_cpu_nocb_kthread.__already_done
+ffffffff82212a3f d rcu_spawn_cpu_nocb_kthread.__already_done.278
+ffffffff82212a40 d dma_direct_map_page.__already_done
+ffffffff82212a41 d dma_direct_map_page.__already_done
+ffffffff82212a42 d swiotlb_map.__already_done
+ffffffff82212a43 d swiotlb_bounce.__already_done
+ffffffff82212a44 d swiotlb_bounce.__already_done.36
+ffffffff82212a45 d swiotlb_bounce.__already_done.38
+ffffffff82212a46 d call_timer_fn.__already_done
+ffffffff82212a47 d hrtimer_interrupt.__already_done
+ffffffff82212a48 d timekeeping_adjust.__already_done
+ffffffff82212a49 d clocksource_start_suspend_timing.__already_done
+ffffffff82212a4a d __clocksource_update_freq_scale.__already_done
+ffffffff82212a4b d alarmtimer_freezerset.__already_done
+ffffffff82212a4c d __do_sys_setitimer.__already_done
+ffffffff82212a4d d clockevents_program_event.__already_done
+ffffffff82212a4e d __clockevents_switch_state.__already_done
+ffffffff82212a4f d tick_device_setup_broadcast_func.__already_done
+ffffffff82212a50 d err_broadcast.__already_done
+ffffffff82212a51 d tick_nohz_stop_tick.__already_done
+ffffffff82212a52 d cpu_stopper_thread.__already_done
+ffffffff82212a53 d ring_buffer_event_time_stamp.__already_done
+ffffffff82212a54 d rb_check_timestamp.__already_done
+ffffffff82212a55 d tracing_snapshot.__already_done
+ffffffff82212a56 d tracing_snapshot_cond.__already_done
+ffffffff82212a57 d tracing_alloc_snapshot.__already_done
+ffffffff82212a58 d trace_check_vprintf.__already_done
+ffffffff82212a59 d early_trace_init.__already_done
+ffffffff82212a5a d alloc_percpu_trace_buffer.__already_done
+ffffffff82212a5b d create_trace_option_files.__already_done
+ffffffff82212a5c d tracing_read_pipe.__already_done
+ffffffff82212a5d d tracing_dentry_percpu.__already_done
+ffffffff82212a5e d create_trace_instances.__already_done
+ffffffff82212a5f d create_trace_instances.__already_done.212
+ffffffff82212a60 d tracer_alloc_buffers.__already_done
+ffffffff82212a61 d init_events.__already_done
+ffffffff82212a62 d detect_dups.__already_done
+ffffffff82212a63 d test_event_printk.__already_done
+ffffffff82212a64 d test_event_printk.__already_done.7
+ffffffff82212a65 d perf_trace_buf_alloc.__already_done
+ffffffff82212a66 d __uprobe_perf_func.__already_done
+ffffffff82212a67 d bpf_user_rnd_init_once.___done
+ffffffff82212a68 d __static_call_update.__already_done
+ffffffff82212a69 d perf_event_ksymbol.__already_done
+ffffffff82212a6a d jump_label_can_update.__already_done
+ffffffff82212a6b d memremap.__already_done
+ffffffff82212a6c d memremap.__already_done.2
+ffffffff82212a6d d rseq_warn_flags.__already_done
+ffffffff82212a6e d rseq_warn_flags.__already_done.14
+ffffffff82212a6f d free_large_kmalloc.__already_done
+ffffffff82212a70 d may_expand_vm.__already_done
+ffffffff82212a71 d __do_sys_remap_file_pages.__already_done
+ffffffff82212a72 d vma_to_resize.__already_done
+ffffffff82212a73 d __alloc_pages.__warned
+ffffffff82212a74 d __alloc_pages_slowpath.__warned
+ffffffff82212a75 d __alloc_pages_slowpath.__warned.56
+ffffffff82212a76 d __alloc_pages_slowpath.__warned.57
+ffffffff82212a77 d __alloc_pages_may_oom.__warned
+ffffffff82212a78 d __next_mem_range.__already_done
+ffffffff82212a79 d __next_mem_range_rev.__already_done
+ffffffff82212a7a d memblock_alloc_range_nid.__already_done
+ffffffff82212a7b d __add_pages.__already_done
+ffffffff82212a7c d madvise_populate.__already_done
+ffffffff82212a7d d enable_swap_slots_cache.__already_done
+ffffffff82212a7e d vmemmap_verify.__already_done
+ffffffff82212a7f d altmap_alloc_block_buf.__already_done
+ffffffff82212a80 d virt_to_cache.__already_done
+ffffffff82212a81 d page_counter_cancel.__already_done
+ffffffff82212a82 d mem_cgroup_update_lru_size.__already_done
+ffffffff82212a83 d mem_cgroup_hierarchy_write.__already_done
+ffffffff82212a84 d mem_cgroup_move_charge_write.__already_done
+ffffffff82212a85 d setup_swap_account.__already_done
+ffffffff82212a86 d setup_arg_pages.__already_done
+ffffffff82212a87 d do_execveat_common.__already_done
+ffffffff82212a88 d get_fs_type.__already_done
+ffffffff82212a89 d warn_mandlock.__already_done
+ffffffff82212a8a d mount_too_revealing.__already_done
+ffffffff82212a8b d show_mark_fhandle.__already_done
+ffffffff82212a8c d inotify_remove_from_idr.__already_done
+ffffffff82212a8d d inotify_remove_from_idr.__already_done.2
+ffffffff82212a8e d inotify_remove_from_idr.__already_done.3
+ffffffff82212a8f d __do_sys_flock.__already_done
+ffffffff82212a90 d hidepid2str.__already_done
+ffffffff82212a91 d __set_oom_adj.__already_done
+ffffffff82212a92 d find_next_ancestor.__already_done
+ffffffff82212a93 d kernfs_put.__already_done
+ffffffff82212a94 d ext4_end_bio.__already_done
+ffffffff82212a95 d ext4_journal_data_mode_check.__already_done
+ffffffff82212a96 d ext4_xattr_inode_update_ref.__already_done
+ffffffff82212a97 d ext4_xattr_inode_update_ref.__already_done.17
+ffffffff82212a98 d ext4_xattr_inode_update_ref.__already_done.19
+ffffffff82212a99 d ext4_xattr_inode_update_ref.__already_done.20
+ffffffff82212a9a d __jbd2_log_start_commit.__already_done
+ffffffff82212a9b d selinux_audit_rule_match.__already_done
+ffffffff82212a9c d selinux_audit_rule_match.__already_done.24
+ffffffff82212a9d d bvec_iter_advance.__already_done
+ffffffff82212a9e d dd_exit_sched.__already_done
+ffffffff82212a9f d blk_crypto_start_using_key.__already_done
+ffffffff82212aa0 d blk_crypto_fallback_start_using_mode.__already_done
+ffffffff82212aa1 d io_epoll_ctl_prep.__already_done
+ffffffff82212aa2 d io_wqe_create_worker.__already_done
+ffffffff82212aa3 d percpu_ref_kill_and_confirm.__already_done
+ffffffff82212aa4 d percpu_ref_switch_to_atomic_rcu.__already_done
+ffffffff82212aa5 d refcount_warn_saturate.__already_done
+ffffffff82212aa6 d refcount_warn_saturate.__already_done.2
+ffffffff82212aa7 d refcount_warn_saturate.__already_done.3
+ffffffff82212aa8 d refcount_warn_saturate.__already_done.5
+ffffffff82212aa9 d refcount_warn_saturate.__already_done.7
+ffffffff82212aaa d refcount_warn_saturate.__already_done.9
+ffffffff82212aab d refcount_dec_not_one.__already_done
+ffffffff82212aac d netdev_reg_state.__already_done
+ffffffff82212aad d depot_alloc_stack.__already_done
+ffffffff82212aae d acpi_gpio_in_ignore_list.__already_done
+ffffffff82212aaf d pci_disable_device.__already_done
+ffffffff82212ab0 d pci_remap_iospace.__already_done
+ffffffff82212ab1 d pci_disable_acs_redir.__already_done
+ffffffff82212ab2 d pci_specified_resource_alignment.__already_done
+ffffffff82212ab3 d pci_pm_suspend.__already_done
+ffffffff82212ab4 d pci_legacy_suspend.__already_done
+ffffffff82212ab5 d pci_pm_suspend_noirq.__already_done
+ffffffff82212ab6 d pci_pm_runtime_suspend.__already_done
+ffffffff82212ab7 d of_irq_parse_pci.__already_done
+ffffffff82212ab8 d quirk_intel_mc_errata.__already_done
+ffffffff82212ab9 d devm_pci_epc_destroy.__already_done
+ffffffff82212aba d acpi_osi_handler.__already_done
+ffffffff82212abb d acpi_osi_handler.__already_done.39
+ffffffff82212abc d acpi_quirk_skip_acpi_ac_and_battery.__already_done
+ffffffff82212abd d acpi_lid_notify_state.__already_done
+ffffffff82212abe d acpi_battery_get_state.__already_done
+ffffffff82212abf d dma_map_single_attrs.__already_done
+ffffffff82212ac0 d do_con_write.__already_done
+ffffffff82212ac1 d syscore_suspend.__already_done
+ffffffff82212ac2 d syscore_suspend.__already_done.3
+ffffffff82212ac3 d syscore_resume.__already_done
+ffffffff82212ac4 d syscore_resume.__already_done.10
+ffffffff82212ac5 d dev_pm_attach_wake_irq.__already_done
+ffffffff82212ac6 d wakeup_source_activate.__already_done
+ffffffff82212ac7 d fw_run_sysfs_fallback.__already_done
+ffffffff82212ac8 d regmap_register_patch.__already_done
+ffffffff82212ac9 d regmap_field_init.__already_done
+ffffffff82212aca d loop_control_remove.__already_done
+ffffffff82212acb d alloc_nvdimm_map.__already_done
+ffffffff82212acc d walk_to_nvdimm_bus.__already_done
+ffffffff82212acd d __available_slots_show.__already_done
+ffffffff82212ace d nvdimm_security_flags.__already_done
+ffffffff82212acf d dpa_align.__already_done
+ffffffff82212ad0 d dpa_align.__already_done.53
+ffffffff82212ad1 d __reserve_free_pmem.__already_done
+ffffffff82212ad2 d __nvdimm_namespace_capacity.__already_done
+ffffffff82212ad3 d nvdimm_namespace_common_probe.__already_done
+ffffffff82212ad4 d grow_dpa_allocation.__already_done
+ffffffff82212ad5 d nd_namespace_label_update.__already_done
+ffffffff82212ad6 d __pmem_label_update.__already_done
+ffffffff82212ad7 d nvdimm_badblocks_populate.__already_done
+ffffffff82212ad8 d __nd_detach_ndns.__already_done
+ffffffff82212ad9 d __nd_attach_ndns.__already_done
+ffffffff82212ada d nsio_rw_bytes.__already_done
+ffffffff82212adb d devm_exit_badblocks.__already_done
+ffffffff82212adc d nd_pmem_notify.__already_done
+ffffffff82212add d btt_map_init.__already_done
+ffffffff82212ade d btt_map_init.__already_done.21
+ffffffff82212adf d btt_log_init.__already_done
+ffffffff82212ae0 d btt_log_init.__already_done.24
+ffffffff82212ae1 d btt_info_write.__already_done
+ffffffff82212ae2 d btt_info_write.__already_done.26
+ffffffff82212ae3 d dax_destroy_inode.__already_done
+ffffffff82212ae4 d devm_create_dev_dax.__already_done
+ffffffff82212ae5 d devm_create_dev_dax.__already_done.3
+ffffffff82212ae6 d devm_create_dev_dax.__already_done.6
+ffffffff82212ae7 d alloc_dev_dax_range.__already_done
+ffffffff82212ae8 d dev_dax_resize.__already_done
+ffffffff82212ae9 d dev_dax_shrink.__already_done
+ffffffff82212aea d adjust_dev_dax_range.__already_done
+ffffffff82212aeb d devm_register_dax_mapping.__already_done
+ffffffff82212aec d thermal_zone_device_update.__already_done
+ffffffff82212aed d trans_table_show.__already_done
+ffffffff82212aee d user_space_bind.__already_done
+ffffffff82212aef d intel_init_thermal.__already_done
+ffffffff82212af0 d bvec_iter_advance.__already_done
+ffffffff82212af1 d dm_bvec_iter_rewind.__already_done
+ffffffff82212af2 d bvec_iter_advance.__already_done
+ffffffff82212af3 d bvec_iter_advance.__already_done
+ffffffff82212af4 d csrow_dev_is_visible.__already_done
+ffffffff82212af5 d show_trans_table.__already_done
+ffffffff82212af6 d store_no_turbo.__already_done
+ffffffff82212af7 d efi_mem_desc_lookup.__already_done
+ffffffff82212af8 d efi_mem_desc_lookup.__already_done.3
+ffffffff82212af9 d virt_efi_get_time.__already_done
+ffffffff82212afa d virt_efi_set_time.__already_done
+ffffffff82212afb d virt_efi_get_wakeup_time.__already_done
+ffffffff82212afc d virt_efi_set_wakeup_time.__already_done
+ffffffff82212afd d virt_efi_get_variable.__already_done
+ffffffff82212afe d virt_efi_get_next_variable.__already_done
+ffffffff82212aff d virt_efi_set_variable.__already_done
+ffffffff82212b00 d virt_efi_get_next_high_mono_count.__already_done
+ffffffff82212b01 d virt_efi_query_variable_info.__already_done
+ffffffff82212b02 d virt_efi_update_capsule.__already_done
+ffffffff82212b03 d virt_efi_query_capsule_caps.__already_done
+ffffffff82212b04 d of_graph_parse_endpoint.__already_done
+ffffffff82212b05 d of_graph_get_next_endpoint.__already_done
+ffffffff82212b06 d of_node_is_pcie.__already_done
+ffffffff82212b07 d __sock_create.__already_done
+ffffffff82212b08 d kernel_sendpage.__already_done
+ffffffff82212b09 d skb_expand_head.__already_done
+ffffffff82212b0a d __skb_vlan_pop.__already_done
+ffffffff82212b0b d skb_vlan_push.__already_done
+ffffffff82212b0c d ts_secret_init.___done
+ffffffff82212b0d d net_secret_init.___done
+ffffffff82212b0e d __flow_hash_secret_init.___done
+ffffffff82212b0f d __dev_get_by_flags.__already_done
+ffffffff82212b10 d dev_change_name.__already_done
+ffffffff82212b11 d __netdev_notify_peers.__already_done
+ffffffff82212b12 d netif_set_real_num_tx_queues.__already_done
+ffffffff82212b13 d netif_set_real_num_rx_queues.__already_done
+ffffffff82212b14 d skb_checksum_help.__already_done
+ffffffff82212b15 d skb_checksum_help.__already_done.52
+ffffffff82212b16 d netdev_rx_csum_fault.__already_done
+ffffffff82212b17 d netdev_is_rx_handler_busy.__already_done
+ffffffff82212b18 d netdev_rx_handler_unregister.__already_done
+ffffffff82212b19 d netif_napi_add_weight.__print_once
+ffffffff82212b1a d netdev_has_upper_dev.__already_done
+ffffffff82212b1b d netdev_has_any_upper_dev.__already_done
+ffffffff82212b1c d netdev_master_upper_dev_get.__already_done
+ffffffff82212b1d d netdev_offload_xstats_enable.__already_done
+ffffffff82212b1e d netdev_offload_xstats_disable.__already_done
+ffffffff82212b1f d netdev_offload_xstats_enabled.__already_done
+ffffffff82212b20 d netdev_offload_xstats_get.__already_done
+ffffffff82212b21 d netdev_offload_xstats_push_delta.__already_done
+ffffffff82212b22 d netdev_lower_state_changed.__already_done
+ffffffff82212b23 d __dev_change_flags.__already_done
+ffffffff82212b24 d dev_change_xdp_fd.__already_done
+ffffffff82212b25 d __netdev_update_features.__already_done
+ffffffff82212b26 d register_netdevice.__already_done
+ffffffff82212b27 d free_netdev.__already_done
+ffffffff82212b28 d unregister_netdevice_queue.__already_done
+ffffffff82212b29 d unregister_netdevice_many.__already_done
+ffffffff82212b2a d __dev_change_net_namespace.__already_done
+ffffffff82212b2b d __dev_open.__already_done
+ffffffff82212b2c d __dev_close_many.__already_done
+ffffffff82212b2d d netdev_reg_state.__already_done
+ffffffff82212b2e d call_netdevice_notifiers_info.__already_done
+ffffffff82212b2f d netif_get_rxqueue.__already_done
+ffffffff82212b30 d get_rps_cpu.__already_done
+ffffffff82212b31 d __napi_poll.__print_once
+ffffffff82212b32 d __napi_poll.__already_done
+ffffffff82212b33 d __netdev_upper_dev_link.__already_done
+ffffffff82212b34 d __netdev_has_upper_dev.__already_done
+ffffffff82212b35 d __netdev_master_upper_dev_get.__already_done
+ffffffff82212b36 d __netdev_upper_dev_unlink.__already_done
+ffffffff82212b37 d call_netdevice_notifiers_info_robust.__already_done
+ffffffff82212b38 d __dev_set_promiscuity.__already_done
+ffffffff82212b39 d __dev_set_allmulti.__already_done
+ffffffff82212b3a d dev_xdp_attach.__already_done
+ffffffff82212b3b d udp_tunnel_get_rx_info.__already_done
+ffffffff82212b3c d udp_tunnel_drop_rx_info.__already_done
+ffffffff82212b3d d vlan_get_rx_ctag_filter_info.__already_done
+ffffffff82212b3e d vlan_drop_rx_ctag_filter_info.__already_done
+ffffffff82212b3f d vlan_get_rx_stag_filter_info.__already_done
+ffffffff82212b40 d vlan_drop_rx_stag_filter_info.__already_done
+ffffffff82212b41 d list_netdevice.__already_done
+ffffffff82212b42 d unlist_netdevice.__already_done
+ffffffff82212b43 d flush_all_backlogs.__already_done
+ffffffff82212b44 d dev_xdp_uninstall.__already_done
+ffffffff82212b45 d netdev_has_any_lower_dev.__already_done
+ffffffff82212b46 d default_device_exit_net.__already_done
+ffffffff82212b47 d dev_addr_add.__already_done
+ffffffff82212b48 d dev_addr_del.__already_done
+ffffffff82212b49 d netdev_reg_state.__already_done
+ffffffff82212b4a d dst_release.__already_done
+ffffffff82212b4b d dst_release_immediate.__already_done
+ffffffff82212b4c d pneigh_lookup.__already_done
+ffffffff82212b4d d neigh_add.__already_done
+ffffffff82212b4e d neigh_delete.__already_done
+ffffffff82212b4f d rtnl_offload_xstats_notify.__already_done
+ffffffff82212b50 d rtnl_fill_ifinfo.__already_done
+ffffffff82212b51 d rtnl_xdp_prog_skb.__already_done
+ffffffff82212b52 d rtnl_fill_statsinfo.__already_done
+ffffffff82212b53 d rtnl_af_lookup.__already_done
+ffffffff82212b54 d bpf_warn_invalid_xdp_action.__already_done
+ffffffff82212b55 d ____bpf_xdp_adjust_tail.__already_done
+ffffffff82212b56 d sk_lookup.__already_done
+ffffffff82212b57 d bpf_sk_lookup.__already_done
+ffffffff82212b58 d __bpf_sk_lookup.__already_done
+ffffffff82212b59 d fib_rules_seq_read.__already_done
+ffffffff82212b5a d fib_rules_event.__already_done
+ffffffff82212b5b d dev_watchdog.__already_done
+ffffffff82212b5c d netlink_sendmsg.__already_done
+ffffffff82212b5d d __ethtool_get_link_ksettings.__already_done
+ffffffff82212b5e d netdev_rss_key_fill.___done
+ffffffff82212b5f d ethtool_get_settings.__already_done
+ffffffff82212b60 d ethtool_set_settings.__already_done
+ffffffff82212b61 d ethtool_get_link_ksettings.__already_done
+ffffffff82212b62 d ethtool_set_link_ksettings.__already_done
+ffffffff82212b63 d ethtool_notify.__already_done
+ffffffff82212b64 d ethtool_notify.__already_done.6
+ffffffff82212b65 d ethnl_default_notify.__already_done
+ffffffff82212b66 d ethnl_default_notify.__already_done.11
+ffffffff82212b67 d ethnl_default_doit.__already_done
+ffffffff82212b68 d ethnl_default_doit.__already_done.18
+ffffffff82212b69 d ethnl_default_doit.__already_done.20
+ffffffff82212b6a d ethnl_default_start.__already_done
+ffffffff82212b6b d strset_parse_request.__already_done
+ffffffff82212b6c d features_send_reply.__already_done
+ffffffff82212b6d d ethnl_get_priv_flags_info.__already_done
+ffffffff82212b6e d fnhe_hashfun.___done
+ffffffff82212b6f d __inet_hash_connect.___done
+ffffffff82212b70 d inet_ehashfn.___done
+ffffffff82212b71 d tcp_recv_skb.__already_done
+ffffffff82212b72 d tcp_recvmsg_locked.__already_done
+ffffffff82212b73 d tcp_send_loss_probe.__already_done
+ffffffff82212b74 d raw_sendmsg.__already_done
+ffffffff82212b75 d udp_flow_hashrnd.___done
+ffffffff82212b76 d udp_ehashfn.___done
+ffffffff82212b77 d inet_ifa_byprefix.__already_done
+ffffffff82212b78 d __inet_del_ifa.__already_done
+ffffffff82212b79 d inet_hash_remove.__already_done
+ffffffff82212b7a d inet_set_ifa.__already_done
+ffffffff82212b7b d __inet_insert_ifa.__already_done
+ffffffff82212b7c d inet_hash_insert.__already_done
+ffffffff82212b7d d inetdev_event.__already_done
+ffffffff82212b7e d inetdev_init.__already_done
+ffffffff82212b7f d inetdev_destroy.__already_done
+ffffffff82212b80 d inet_rtm_newaddr.__already_done
+ffffffff82212b81 d ip_mc_autojoin_config.__already_done
+ffffffff82212b82 d inet_rtm_deladdr.__already_done
+ffffffff82212b83 d __ip_mc_dec_group.__already_done
+ffffffff82212b84 d ip_mc_unmap.__already_done
+ffffffff82212b85 d ip_mc_remap.__already_done
+ffffffff82212b86 d ip_mc_down.__already_done
+ffffffff82212b87 d ip_mc_init_dev.__already_done
+ffffffff82212b88 d ip_mc_up.__already_done
+ffffffff82212b89 d ip_mc_destroy_dev.__already_done
+ffffffff82212b8a d ip_mc_leave_group.__already_done
+ffffffff82212b8b d ip_mc_source.__already_done
+ffffffff82212b8c d ip_mc_msfilter.__already_done
+ffffffff82212b8d d ip_mc_msfget.__already_done
+ffffffff82212b8e d ip_mc_gsfget.__already_done
+ffffffff82212b8f d ____ip_mc_inc_group.__already_done
+ffffffff82212b90 d __ip_mc_join_group.__already_done
+ffffffff82212b91 d ip_mc_rejoin_groups.__already_done
+ffffffff82212b92 d ip_valid_fib_dump_req.__already_done
+ffffffff82212b93 d ip_fib_net_exit.__already_done
+ffffffff82212b94 d call_fib4_notifiers.__already_done
+ffffffff82212b95 d fib4_seq_read.__already_done
+ffffffff82212b96 d call_nexthop_notifiers.__already_done
+ffffffff82212b97 d call_nexthop_res_table_notifiers.__already_done
+ffffffff82212b98 d __ip_tunnel_create.__already_done
+ffffffff82212b99 d xfrm_hash_rebuild.__already_done
+ffffffff82212b9a d ipv6_sock_ac_join.__already_done
+ffffffff82212b9b d ipv6_sock_ac_drop.__already_done
+ffffffff82212b9c d __ipv6_sock_ac_close.__already_done
+ffffffff82212b9d d __ipv6_dev_ac_inc.__already_done
+ffffffff82212b9e d __ipv6_dev_ac_dec.__already_done
+ffffffff82212b9f d ipv6_del_addr.__already_done
+ffffffff82212ba0 d addrconf_verify_rtnl.__already_done
+ffffffff82212ba1 d inet6_addr_add.__already_done
+ffffffff82212ba2 d addrconf_add_dev.__already_done
+ffffffff82212ba3 d ipv6_find_idev.__already_done
+ffffffff82212ba4 d ipv6_mc_config.__already_done
+ffffffff82212ba5 d __ipv6_ifa_notify.__already_done
+ffffffff82212ba6 d addrconf_sit_config.__already_done
+ffffffff82212ba7 d add_v4_addrs.__already_done
+ffffffff82212ba8 d addrconf_gre_config.__already_done
+ffffffff82212ba9 d init_loopback.__already_done
+ffffffff82212baa d addrconf_dev_config.__already_done
+ffffffff82212bab d addrconf_type_change.__already_done
+ffffffff82212bac d ipv6_add_dev.__already_done
+ffffffff82212bad d inet6_set_iftoken.__already_done
+ffffffff82212bae d inet6_addr_modify.__already_done
+ffffffff82212baf d addrconf_ifdown.__already_done
+ffffffff82212bb0 d rt6_exception_hash.___done
+ffffffff82212bb1 d udp6_ehashfn.___done
+ffffffff82212bb2 d udp6_ehashfn.___done.4
+ffffffff82212bb3 d ipv6_sock_mc_drop.__already_done
+ffffffff82212bb4 d __ipv6_sock_mc_close.__already_done
+ffffffff82212bb5 d __ipv6_dev_mc_dec.__already_done
+ffffffff82212bb6 d ipv6_dev_mc_dec.__already_done
+ffffffff82212bb7 d __ipv6_sock_mc_join.__already_done
+ffffffff82212bb8 d __ipv6_dev_mc_inc.__already_done
+ffffffff82212bb9 d ipv6_mc_rejoin_groups.__already_done
+ffffffff82212bba d ipip6_tunnel_del_prl.__already_done
+ffffffff82212bbb d ipip6_tunnel_add_prl.__already_done
+ffffffff82212bbc d inet6_ehashfn.___done
+ffffffff82212bbd d inet6_ehashfn.___done.1
+ffffffff82212bbe d tpacket_rcv.__already_done
+ffffffff82212bbf d tpacket_parse_header.__already_done
+ffffffff82212bc0 d format_decode.__already_done
+ffffffff82212bc1 d set_field_width.__already_done
+ffffffff82212bc2 d set_precision.__already_done
+ffffffff82212bc3 d pointer.__already_done
+ffffffff82212bc4 d get_regno.__already_done
+ffffffff82212bc8 d initramfs_domain
+ffffffff82212be0 d init_signals
+ffffffff82213048 d init_sighand
+ffffffff82213880 d init_task
+ffffffff822157c0 d __SCK__tp_func_emulate_vsyscall
+ffffffff822157d0 d trace_event_fields_emulate_vsyscall
+ffffffff82215820 d trace_event_type_funcs_emulate_vsyscall
+ffffffff82215840 d print_fmt_emulate_vsyscall
+ffffffff82215858 d event_emulate_vsyscall
+ffffffff822158e8 d warn_bad_vsyscall._rs
+ffffffff82215910 d pmu
+ffffffff82215a38 d __SCK__x86_pmu_handle_irq
+ffffffff82215a48 d __SCK__x86_pmu_disable_all
+ffffffff82215a58 d __SCK__x86_pmu_enable_all
+ffffffff82215a68 d __SCK__x86_pmu_enable
+ffffffff82215a78 d __SCK__x86_pmu_disable
+ffffffff82215a88 d __SCK__x86_pmu_assign
+ffffffff82215a98 d __SCK__x86_pmu_add
+ffffffff82215aa8 d __SCK__x86_pmu_del
+ffffffff82215ab8 d __SCK__x86_pmu_read
+ffffffff82215ac8 d __SCK__x86_pmu_set_period
+ffffffff82215ad8 d __SCK__x86_pmu_update
+ffffffff82215ae8 d __SCK__x86_pmu_limit_period
+ffffffff82215af8 d __SCK__x86_pmu_schedule_events
+ffffffff82215b08 d __SCK__x86_pmu_get_event_constraints
+ffffffff82215b18 d __SCK__x86_pmu_put_event_constraints
+ffffffff82215b28 d __SCK__x86_pmu_start_scheduling
+ffffffff82215b38 d __SCK__x86_pmu_commit_scheduling
+ffffffff82215b48 d __SCK__x86_pmu_stop_scheduling
+ffffffff82215b58 d __SCK__x86_pmu_sched_task
+ffffffff82215b68 d __SCK__x86_pmu_swap_task_ctx
+ffffffff82215b78 d __SCK__x86_pmu_drain_pebs
+ffffffff82215b88 d __SCK__x86_pmu_pebs_aliases
+ffffffff82215b98 d __SCK__x86_pmu_guest_get_msrs
+ffffffff82215ba8 d pmc_reserve_mutex
+ffffffff82215bd8 d init_hw_perf_events.perf_event_nmi_handler_na
+ffffffff82215c10 d events_attr
+ffffffff82215c68 d event_attr_CPU_CYCLES
+ffffffff82215c98 d event_attr_INSTRUCTIONS
+ffffffff82215cc8 d event_attr_CACHE_REFERENCES
+ffffffff82215cf8 d event_attr_CACHE_MISSES
+ffffffff82215d28 d event_attr_BRANCH_INSTRUCTIONS
+ffffffff82215d58 d event_attr_BRANCH_MISSES
+ffffffff82215d88 d event_attr_BUS_CYCLES
+ffffffff82215db8 d event_attr_STALLED_CYCLES_FRONTEND
+ffffffff82215de8 d event_attr_STALLED_CYCLES_BACKEND
+ffffffff82215e18 d event_attr_REF_CPU_CYCLES
+ffffffff82215e50 d x86_pmu_attr_groups
+ffffffff82215e80 d x86_pmu_attrs
+ffffffff82215e90 d dev_attr_rdpmc
+ffffffff82215eb0 d x86_pmu_caps_attrs
+ffffffff82215ec0 d dev_attr_max_precise
+ffffffff82215ee0 d model_amd_hygon
+ffffffff82215ef8 d model_snb
+ffffffff82215f10 d model_snbep
+ffffffff82215f28 d model_hsw
+ffffffff82215f40 d model_hsx
+ffffffff82215f58 d model_knl
+ffffffff82215f70 d model_skl
+ffffffff82215f88 d model_spr
+ffffffff82215fa0 d amd_rapl_msrs
+ffffffff82216068 d rapl_events_cores_group
+ffffffff82216090 d rapl_events_pkg_group
+ffffffff822160b8 d rapl_events_ram_group
+ffffffff822160e0 d rapl_events_gpu_group
+ffffffff82216108 d rapl_events_psys_group
+ffffffff82216130 d rapl_events_cores
+ffffffff82216150 d event_attr_rapl_cores
+ffffffff82216180 d event_attr_rapl_cores_unit
+ffffffff822161b0 d event_attr_rapl_cores_scale
+ffffffff822161e0 d rapl_events_pkg
+ffffffff82216200 d event_attr_rapl_pkg
+ffffffff82216230 d event_attr_rapl_pkg_unit
+ffffffff82216260 d event_attr_rapl_pkg_scale
+ffffffff82216290 d rapl_events_ram
+ffffffff822162b0 d event_attr_rapl_ram
+ffffffff822162e0 d event_attr_rapl_ram_unit
+ffffffff82216310 d event_attr_rapl_ram_scale
+ffffffff82216340 d rapl_events_gpu
+ffffffff82216360 d event_attr_rapl_gpu
+ffffffff82216390 d event_attr_rapl_gpu_unit
+ffffffff822163c0 d event_attr_rapl_gpu_scale
+ffffffff822163f0 d rapl_events_psys
+ffffffff82216410 d event_attr_rapl_psys
+ffffffff82216440 d event_attr_rapl_psys_unit
+ffffffff82216470 d event_attr_rapl_psys_scale
+ffffffff822164a0 d intel_rapl_msrs
+ffffffff82216570 d intel_rapl_spr_msrs
+ffffffff82216640 d rapl_attr_groups
+ffffffff82216660 d rapl_attr_update
+ffffffff82216690 d rapl_pmu_attr_group
+ffffffff822166b8 d rapl_pmu_format_group
+ffffffff822166e0 d rapl_pmu_events_group
+ffffffff82216710 d rapl_pmu_attrs
+ffffffff82216720 d dev_attr_cpumask
+ffffffff82216740 d dev_attr_cpumask
+ffffffff82216760 d dev_attr_cpumask
+ffffffff82216780 d dev_attr_cpumask
+ffffffff822167a0 d rapl_formats_attr
+ffffffff822167b0 d format_attr_event
+ffffffff822167d0 d format_attr_event
+ffffffff822167f0 d format_attr_event
+ffffffff82216810 d format_attr_event
+ffffffff82216830 d format_attr_event
+ffffffff82216850 d format_attr_event
+ffffffff82216870 d format_attr_event
+ffffffff82216890 d format_attr_event
+ffffffff822168b0 d format_attr_event
+ffffffff822168d0 d format_attr_event
+ffffffff822168f0 d format_attr_event
+ffffffff82216910 d format_attr_event
+ffffffff82216930 d format_attr_event
+ffffffff82216950 d __SCK__amd_pmu_branch_hw_config
+ffffffff82216960 d __SCK__amd_pmu_branch_reset
+ffffffff82216970 d __SCK__amd_pmu_test_overflow
+ffffffff82216980 d __SCK__amd_pmu_branch_add
+ffffffff82216990 d __SCK__amd_pmu_branch_del
+ffffffff822169a0 d amd_format_attr
+ffffffff822169d0 d format_attr_umask
+ffffffff822169f0 d format_attr_umask
+ffffffff82216a10 d format_attr_umask
+ffffffff82216a30 d format_attr_umask
+ffffffff82216a50 d format_attr_umask
+ffffffff82216a70 d format_attr_umask
+ffffffff82216a90 d format_attr_umask
+ffffffff82216ab0 d format_attr_umask
+ffffffff82216ad0 d format_attr_umask
+ffffffff82216af0 d format_attr_edge
+ffffffff82216b10 d format_attr_edge
+ffffffff82216b30 d format_attr_edge
+ffffffff82216b50 d format_attr_edge
+ffffffff82216b70 d format_attr_edge
+ffffffff82216b90 d format_attr_edge
+ffffffff82216bb0 d format_attr_edge
+ffffffff82216bd0 d format_attr_edge
+ffffffff82216bf0 d format_attr_edge
+ffffffff82216c10 d format_attr_inv
+ffffffff82216c30 d format_attr_inv
+ffffffff82216c50 d format_attr_inv
+ffffffff82216c70 d format_attr_inv
+ffffffff82216c90 d format_attr_inv
+ffffffff82216cb0 d format_attr_inv
+ffffffff82216cd0 d format_attr_inv
+ffffffff82216cf0 d format_attr_inv
+ffffffff82216d10 d format_attr_inv
+ffffffff82216d30 d format_attr_cmask
+ffffffff82216d50 d format_attr_cmask
+ffffffff82216d70 d format_attr_cmask
+ffffffff82216d90 d format_attr_cmask
+ffffffff82216db0 d format_attr_cmask
+ffffffff82216dd0 d amd_attr_update
+ffffffff82216de0 d amd_f15_PMC3
+ffffffff82216e08 d amd_f15_PMC53
+ffffffff82216e30 d amd_f15_PMC20
+ffffffff82216e58 d amd_f15_PMC30
+ffffffff82216e80 d amd_f15_PMC50
+ffffffff82216ea8 d amd_f15_PMC0
+ffffffff82216ed0 d amd_fam19h_brs_pair_cntr0_constraint
+ffffffff82216ef8 d amd_fam19h_brs_cntr0_constraint
+ffffffff82216f20 d group_caps_amd_branches
+ffffffff82216f50 d amd_pmu_branches_attrs
+ffffffff82216f60 d dev_attr_branches
+ffffffff82216f80 d dev_attr_branches
+ffffffff82216fa0 d perf_ibs_syscore_ops
+ffffffff82216fc8 d perf_event_ibs_init.perf_ibs_nmi_handler_na
+ffffffff82216ff8 d perf_ibs_op
+ffffffff82217170 d perf_ibs_fetch
+ffffffff822172f0 d fetch_attr_groups
+ffffffff82217310 d fetch_attr_update
+ffffffff82217328 d group_rand_en
+ffffffff82217350 d empty_caps_group
+ffffffff82217380 d rand_en_attrs
+ffffffff82217390 d format_attr_rand_en
+ffffffff822173b0 d group_fetch_l3missonly
+ffffffff822173d8 d group_zen4_ibs_extensions
+ffffffff82217400 d fetch_l3missonly_attrs
+ffffffff82217410 d fetch_l3missonly
+ffffffff82217440 d zen4_ibs_extensions_attrs
+ffffffff82217450 d zen4_ibs_extensions
+ffffffff82217480 d empty_attr_groups
+ffffffff822174a0 d op_attr_update
+ffffffff822174c0 d empty_format_group
+ffffffff822174e8 d group_cnt_ctl
+ffffffff82217510 d group_op_l3missonly
+ffffffff82217540 d cnt_ctl_attrs
+ffffffff82217550 d format_attr_cnt_ctl
+ffffffff82217570 d op_l3missonly_attrs
+ffffffff82217580 d op_l3missonly
+ffffffff822175b0 d amd_llc_pmu
+ffffffff822176d8 d amd_nb_pmu
+ffffffff82217800 d amd_uncore_l3_attr_groups
+ffffffff82217820 d amd_uncore_l3_attr_update
+ffffffff82217838 d amd_uncore_attr_group
+ffffffff82217860 d amd_uncore_l3_format_group
+ffffffff82217890 d amd_uncore_attrs
+ffffffff822178a0 d amd_uncore_l3_format_attr
+ffffffff822178c0 d format_attr_event12
+ffffffff822178e0 d format_attr_umask8
+ffffffff82217900 d amd_f17h_uncore_l3_format_group
+ffffffff82217928 d amd_f19h_uncore_l3_format_group
+ffffffff82217950 d amd_f17h_uncore_l3_format_attr
+ffffffff82217960 d format_attr_slicemask
+ffffffff82217980 d amd_f19h_uncore_l3_format_attr
+ffffffff822179a8 d format_attr_coreid
+ffffffff822179c8 d format_attr_enallslices
+ffffffff822179e8 d format_attr_enallcores
+ffffffff82217a08 d format_attr_sliceid
+ffffffff82217a30 d amd_uncore_df_attr_groups
+ffffffff82217a48 d amd_uncore_df_format_group
+ffffffff82217a70 d amd_uncore_df_format_attr
+ffffffff82217a88 d format_attr_event14v2
+ffffffff82217aa8 d format_attr_umask12
+ffffffff82217ac8 d format_attr_event14
+ffffffff82217ae8 d format_attr_event8
+ffffffff82217b08 d format_attr_threadmask2
+ffffffff82217b28 d format_attr_threadmask8
+ffffffff82217b50 d msr
+ffffffff82217c90 d pmu_msr
+ffffffff82217db8 d group_aperf
+ffffffff82217de0 d group_mperf
+ffffffff82217e08 d group_pperf
+ffffffff82217e30 d group_smi
+ffffffff82217e58 d group_ptsc
+ffffffff82217e80 d group_irperf
+ffffffff82217ea8 d group_therm
+ffffffff82217ed0 d attrs_aperf
+ffffffff82217ee0 d attr_aperf
+ffffffff82217f10 d attrs_mperf
+ffffffff82217f20 d attr_mperf
+ffffffff82217f50 d attrs_pperf
+ffffffff82217f60 d attr_pperf
+ffffffff82217f90 d attrs_smi
+ffffffff82217fa0 d attr_smi
+ffffffff82217fd0 d attrs_ptsc
+ffffffff82217fe0 d attr_ptsc
+ffffffff82218010 d attrs_irperf
+ffffffff82218020 d attr_irperf
+ffffffff82218050 d attrs_therm
+ffffffff82218070 d attr_therm
+ffffffff822180a0 d attr_therm_snap
+ffffffff822180d0 d attr_therm_unit
+ffffffff82218100 d attr_groups
+ffffffff82218120 d attr_groups
+ffffffff82218140 d attr_update
+ffffffff82218180 d attr_update
+ffffffff822181c8 d events_attr_group
+ffffffff822181f0 d format_attr_group
+ffffffff82218220 d events_attrs
+ffffffff82218230 d attr_tsc
+ffffffff82218260 d format_attrs
+ffffffff82218270 d __SCK__intel_pmu_set_topdown_event_period
+ffffffff82218280 d __SCK__intel_pmu_update_topdown_event
+ffffffff82218290 d nhm_mem_events_attrs
+ffffffff822182a0 d nhm_format_attr
+ffffffff822182c0 d slm_events_attrs
+ffffffff82218300 d slm_format_attr
+ffffffff82218310 d glm_events_attrs
+ffffffff82218348 d event_attr_td_total_slots_scale_glm
+ffffffff82218380 d tnt_events_attrs
+ffffffff822183b0 d grt_mem_attrs
+ffffffff822183d0 d snb_events_attrs
+ffffffff82218410 d snb_mem_events_attrs
+ffffffff82218430 d hsw_format_attr
+ffffffff82218460 d hsw_events_attrs
+ffffffff822184a0 d hsw_mem_events_attrs
+ffffffff822184c0 d hsw_tsx_events_attrs
+ffffffff82218528 d event_attr_td_recovery_bubbles
+ffffffff82218560 d skl_format_attr
+ffffffff82218570 d icl_events_attrs
+ffffffff82218590 d icl_td_events_attrs
+ffffffff822185c0 d icl_tsx_events_attrs
+ffffffff82218640 d spr_events_attrs
+ffffffff82218660 d spr_td_events_attrs
+ffffffff822186b0 d spr_tsx_events_attrs
+ffffffff82218700 d adl_hybrid_events_attrs
+ffffffff82218750 d adl_hybrid_mem_attrs
+ffffffff82218770 d adl_hybrid_tsx_attrs
+ffffffff822187c0 d adl_hybrid_extra_attr_rtm
+ffffffff822187f0 d adl_hybrid_extra_attr
+ffffffff82218810 d group_events_td
+ffffffff82218838 d group_events_mem
+ffffffff82218860 d group_events_tsx
+ffffffff82218888 d group_format_extra
+ffffffff822188b0 d group_format_extra_skl
+ffffffff822188d8 d hybrid_group_events_td
+ffffffff82218900 d hybrid_group_events_mem
+ffffffff82218928 d hybrid_group_events_tsx
+ffffffff82218950 d hybrid_group_format_extra
+ffffffff82218980 d hybrid_attr_update
+ffffffff822189d0 d intel_arch_formats_attr
+ffffffff82218a10 d intel_arch3_formats_attr
+ffffffff82218a50 d format_attr_pc
+ffffffff82218a70 d format_attr_pc
+ffffffff82218a90 d format_attr_any
+ffffffff82218ab0 d event_attr_mem_ld_nhm
+ffffffff82218ae0 d format_attr_offcore_rsp
+ffffffff82218b00 d format_attr_ldlat
+ffffffff82218b20 d event_attr_td_total_slots_slm
+ffffffff82218b50 d event_attr_td_total_slots_scale_slm
+ffffffff82218b80 d event_attr_td_fetch_bubbles_slm
+ffffffff82218bb0 d event_attr_td_fetch_bubbles_scale_slm
+ffffffff82218be0 d event_attr_td_slots_issued_slm
+ffffffff82218c10 d event_attr_td_slots_retired_slm
+ffffffff82218c40 d event_attr_td_total_slots_glm
+ffffffff82218c70 d event_attr_td_fetch_bubbles_glm
+ffffffff82218ca0 d event_attr_td_recovery_bubbles_glm
+ffffffff82218cd0 d event_attr_td_slots_issued_glm
+ffffffff82218d00 d event_attr_td_slots_retired_glm
+ffffffff82218d30 d counter0_constraint
+ffffffff82218d58 d fixed0_constraint
+ffffffff82218d80 d fixed0_counter0_constraint
+ffffffff82218da8 d event_attr_td_fe_bound_tnt
+ffffffff82218dd8 d event_attr_td_retiring_tnt
+ffffffff82218e08 d event_attr_td_bad_spec_tnt
+ffffffff82218e38 d event_attr_td_be_bound_tnt
+ffffffff82218e68 d event_attr_mem_ld_grt
+ffffffff82218e98 d event_attr_mem_st_grt
+ffffffff82218ec8 d event_attr_td_slots_issued
+ffffffff82218ef8 d event_attr_td_slots_retired
+ffffffff82218f28 d event_attr_td_fetch_bubbles
+ffffffff82218f58 d event_attr_td_total_slots
+ffffffff82218f90 d event_attr_td_total_slots_scale
+ffffffff82218fc8 d event_attr_td_recovery_bubbles_scale
+ffffffff82219000 d event_attr_mem_ld_snb
+ffffffff82219030 d event_attr_mem_st_snb
+ffffffff82219060 d intel_hsw_event_constraints
+ffffffff82219290 d counter2_constraint
+ffffffff822192b8 d format_attr_in_tx
+ffffffff822192d8 d format_attr_in_tx_cp
+ffffffff822192f8 d event_attr_mem_ld_hsw
+ffffffff82219328 d event_attr_mem_st_hsw
+ffffffff82219358 d event_attr_tx_start
+ffffffff82219388 d event_attr_tx_commit
+ffffffff822193b8 d event_attr_tx_abort
+ffffffff822193e8 d event_attr_tx_capacity
+ffffffff82219418 d event_attr_tx_conflict
+ffffffff82219448 d event_attr_el_start
+ffffffff82219478 d event_attr_el_commit
+ffffffff822194a8 d event_attr_el_abort
+ffffffff822194d8 d event_attr_el_capacity
+ffffffff82219508 d event_attr_el_conflict
+ffffffff82219538 d event_attr_cycles_t
+ffffffff82219568 d event_attr_cycles_ct
+ffffffff822195a0 d intel_bdw_event_constraints
+ffffffff82219730 d intel_skl_event_constraints
+ffffffff822198c0 d format_attr_frontend
+ffffffff822198e0 d allow_tsx_force_abort
+ffffffff822198f0 d intel_icl_event_constraints
+ffffffff82219cd8 d event_attr_slots
+ffffffff82219d08 d event_attr_td_retiring
+ffffffff82219d38 d event_attr_td_bad_spec
+ffffffff82219d68 d event_attr_td_fe_bound
+ffffffff82219d98 d event_attr_td_be_bound
+ffffffff82219dc8 d event_attr_tx_capacity_read
+ffffffff82219df8 d event_attr_tx_capacity_write
+ffffffff82219e28 d event_attr_el_capacity_read
+ffffffff82219e58 d event_attr_el_capacity_write
+ffffffff82219e90 d intel_spr_event_constraints
+ffffffff8221a2a0 d event_attr_mem_st_spr
+ffffffff8221a2d0 d event_attr_mem_ld_aux
+ffffffff8221a300 d event_attr_td_heavy_ops
+ffffffff8221a330 d event_attr_td_br_mispredict
+ffffffff8221a360 d event_attr_td_fetch_lat
+ffffffff8221a390 d event_attr_td_mem_bound
+ffffffff8221a3c0 d event_attr_slots_adl
+ffffffff8221a3f8 d event_attr_td_retiring_adl
+ffffffff8221a430 d event_attr_td_bad_spec_adl
+ffffffff8221a468 d event_attr_td_fe_bound_adl
+ffffffff8221a4a0 d event_attr_td_be_bound_adl
+ffffffff8221a4d8 d event_attr_td_heavy_ops_adl
+ffffffff8221a510 d event_attr_td_br_mis_adl
+ffffffff8221a548 d event_attr_td_fetch_lat_adl
+ffffffff8221a580 d event_attr_td_mem_bound_adl
+ffffffff8221a5b8 d event_attr_mem_ld_adl
+ffffffff8221a5f0 d event_attr_mem_st_adl
+ffffffff8221a628 d event_attr_mem_ld_aux_adl
+ffffffff8221a660 d event_attr_tx_start_adl
+ffffffff8221a698 d event_attr_tx_abort_adl
+ffffffff8221a6d0 d event_attr_tx_commit_adl
+ffffffff8221a708 d event_attr_tx_capacity_read_adl
+ffffffff8221a740 d event_attr_tx_capacity_write_adl
+ffffffff8221a778 d event_attr_tx_conflict_adl
+ffffffff8221a7b0 d event_attr_cycles_t_adl
+ffffffff8221a7e8 d event_attr_cycles_ct_adl
+ffffffff8221a820 d format_attr_hybrid_in_tx
+ffffffff8221a848 d format_attr_hybrid_in_tx_cp
+ffffffff8221a870 d format_attr_hybrid_offcore_rsp
+ffffffff8221a898 d format_attr_hybrid_ldlat
+ffffffff8221a8c0 d format_attr_hybrid_frontend
+ffffffff8221a8e8 d group_caps_gen
+ffffffff8221a910 d group_caps_lbr
+ffffffff8221a938 d group_default
+ffffffff8221a960 d intel_pmu_caps_attrs
+ffffffff8221a970 d dev_attr_pmu_name
+ffffffff8221a990 d lbr_attrs
+ffffffff8221a9a0 d intel_pmu_attrs
+ffffffff8221a9b8 d dev_attr_allow_tsx_force_abort
+ffffffff8221a9d8 d dev_attr_freeze_on_smi
+ffffffff8221a9f8 d freeze_on_smi_mutex
+ffffffff8221aa28 d hybrid_group_cpus
+ffffffff8221aa50 d intel_hybrid_cpus_attrs
+ffffffff8221aa60 d dev_attr_cpus
+ffffffff8221aa80 d pebs_data_source.llvm.1904239247845184421
+ffffffff8221ab00 d bts_constraint
+ffffffff8221ab30 d intel_core2_pebs_event_constraints
+ffffffff8221ac50 d intel_atom_pebs_event_constraints
+ffffffff8221ad40 d intel_slm_pebs_event_constraints
+ffffffff8221adc0 d intel_glm_pebs_event_constraints
+ffffffff8221ae10 d intel_grt_pebs_event_constraints
+ffffffff8221ae90 d intel_nehalem_pebs_event_constraints
+ffffffff8221b0a0 d intel_westmere_pebs_event_constraints
+ffffffff8221b2b0 d intel_snb_pebs_event_constraints
+ffffffff8221b440 d intel_ivb_pebs_event_constraints
+ffffffff8221b600 d intel_hsw_pebs_event_constraints
+ffffffff8221b8b0 d intel_bdw_pebs_event_constraints
+ffffffff8221bb60 d intel_skl_pebs_event_constraints
+ffffffff8221be10 d intel_icl_pebs_event_constraints
+ffffffff8221c040 d intel_spr_pebs_event_constraints
+ffffffff8221c2a0 d intel_knc_formats_attr
+ffffffff8221c2d0 d knc_event_constraints
+ffffffff8221c640 d arch_lbr_ctl_map
+ffffffff8221c690 d vlbr_constraint
+ffffffff8221c6c0 d intel_p4_formats_attr
+ffffffff8221c6e0 d format_attr_cccr
+ffffffff8221c700 d format_attr_escr
+ffffffff8221c720 d format_attr_ht
+ffffffff8221c740 d intel_p6_formats_attr
+ffffffff8221c780 d p6_event_constraints
+ffffffff8221c898 d pt_handle_status._rs
+ffffffff8221c8c0 d pt_attr_groups
+ffffffff8221c8e0 d pt_format_group
+ffffffff8221c908 d pt_timing_group
+ffffffff8221c930 d pt_formats_attr
+ffffffff8221c9a8 d format_attr_pt
+ffffffff8221c9c8 d format_attr_cyc
+ffffffff8221c9e8 d format_attr_pwr_evt
+ffffffff8221ca08 d format_attr_notnt
+ffffffff8221ca28 d format_attr_fup_on_ptw
+ffffffff8221ca48 d format_attr_mtc
+ffffffff8221ca68 d format_attr_tsc
+ffffffff8221ca88 d format_attr_noretcomp
+ffffffff8221caa8 d format_attr_ptw
+ffffffff8221cac8 d format_attr_branch
+ffffffff8221cae8 d format_attr_mtc_period
+ffffffff8221cb08 d format_attr_cyc_thresh
+ffffffff8221cb28 d format_attr_psb_period
+ffffffff8221cb50 d pt_timing_attr
+ffffffff8221cb68 d timing_attr_max_nonturbo_ratio
+ffffffff8221cb98 d timing_attr_tsc_art_ratio
+ffffffff8221cbc8 d uncore_msr_uncores
+ffffffff8221cbd0 d uncore_pci_uncores
+ffffffff8221cbd8 d uncore_mmio_uncores
+ffffffff8221cbe0 d pci2phy_map_head
+ffffffff8221cbf0 d uncore_constraint_fixed
+ffffffff8221cc20 d uncore_pmu_attrs
+ffffffff8221cc30 d uncore_pci_notifier
+ffffffff8221cc48 d uncore_pci_sub_notifier
+ffffffff8221cc60 d wsmex_uncore_mbox_events
+ffffffff8221cce0 d nhmex_msr_uncores
+ffffffff8221cd20 d nhmex_uncore_mbox_ops
+ffffffff8221cd70 d nhmex_uncore_mbox_events
+ffffffff8221cde8 d nhmex_uncore_mbox
+ffffffff8221cef0 d nhmex_uncore_mbox_formats_attr
+ffffffff8221cf78 d format_attr_count_mode
+ffffffff8221cf98 d format_attr_storage_mode
+ffffffff8221cfb8 d format_attr_wrap_mode
+ffffffff8221cfd8 d format_attr_flag_mode
+ffffffff8221cff8 d format_attr_inc_sel
+ffffffff8221d018 d format_attr_set_flag_sel
+ffffffff8221d038 d format_attr_filter_cfg_en
+ffffffff8221d058 d format_attr_filter_match
+ffffffff8221d078 d format_attr_filter_mask
+ffffffff8221d098 d format_attr_dsp
+ffffffff8221d0b8 d format_attr_thr
+ffffffff8221d0d8 d format_attr_fvc
+ffffffff8221d0f8 d format_attr_pgt
+ffffffff8221d118 d format_attr_map
+ffffffff8221d138 d format_attr_iss
+ffffffff8221d158 d format_attr_pld
+ffffffff8221d180 d nhmex_cbox_msr_offsets
+ffffffff8221d1a8 d nhmex_uncore_ops
+ffffffff8221d1f8 d nhmex_uncore_cbox
+ffffffff8221d300 d nhmex_uncore_cbox_formats_attr
+ffffffff8221d330 d format_attr_thresh8
+ffffffff8221d350 d format_attr_thresh8
+ffffffff8221d370 d nhmex_uncore_ubox
+ffffffff8221d480 d nhmex_uncore_ubox_formats_attr
+ffffffff8221d498 d nhmex_uncore_bbox_ops
+ffffffff8221d4e8 d nhmex_uncore_bbox
+ffffffff8221d5f0 d nhmex_uncore_bbox_constraints
+ffffffff8221d6c0 d nhmex_uncore_bbox_formats_attr
+ffffffff8221d6e8 d format_attr_event5
+ffffffff8221d708 d format_attr_counter
+ffffffff8221d728 d format_attr_match
+ffffffff8221d748 d format_attr_mask
+ffffffff8221d768 d nhmex_uncore_sbox_ops
+ffffffff8221d7b8 d nhmex_uncore_sbox
+ffffffff8221d8c0 d nhmex_uncore_sbox_formats_attr
+ffffffff8221d900 d nhmex_uncore_rbox_ops
+ffffffff8221d950 d nhmex_uncore_rbox_events
+ffffffff8221da68 d nhmex_uncore_rbox
+ffffffff8221db70 d nhmex_uncore_rbox_formats_attr
+ffffffff8221dba8 d format_attr_xbr_mm_cfg
+ffffffff8221dbc8 d format_attr_xbr_match
+ffffffff8221dbe8 d format_attr_xbr_mask
+ffffffff8221dc08 d format_attr_qlx_cfg
+ffffffff8221dc28 d format_attr_iperf_cfg
+ffffffff8221dc50 d nhmex_uncore_wbox_events
+ffffffff8221dca0 d nhmex_uncore_wbox
+ffffffff8221ddb0 d snb_msr_uncores
+ffffffff8221ddd0 d skl_msr_uncores
+ffffffff8221dde8 d skl_uncore_msr_ops
+ffffffff8221de40 d icl_msr_uncores
+ffffffff8221de60 d tgl_msr_uncores
+ffffffff8221de80 d adl_msr_uncores
+ffffffff8221dea0 d mtl_msr_uncores
+ffffffff8221dee0 d nhm_msr_uncores
+ffffffff8221def0 d tgl_l_uncore_imc_freerunning
+ffffffff8221df50 d tgl_mmio_uncores
+ffffffff8221df60 d adl_mmio_uncores
+ffffffff8221df78 d snb_uncore_msr_ops
+ffffffff8221dfd0 d snb_uncore_events
+ffffffff8221e020 d snb_uncore_cbox
+ffffffff8221e130 d snb_uncore_formats_attr
+ffffffff8221e160 d format_attr_cmask5
+ffffffff8221e180 d skl_uncore_cbox
+ffffffff8221e288 d snb_uncore_arb
+ffffffff8221e390 d snb_uncore_arb_constraints
+ffffffff8221e408 d icl_uncore_msr_ops
+ffffffff8221e458 d icl_uncore_arb
+ffffffff8221e560 d icl_uncore_cbox
+ffffffff8221e670 d icl_uncore_events
+ffffffff8221e6c0 d icl_uncore_clock_format_group
+ffffffff8221e6e8 d icl_uncore_clockbox
+ffffffff8221e7f0 d icl_uncore_clock_formats_attr
+ffffffff8221e800 d adl_uncore_msr_ops
+ffffffff8221e850 d adl_uncore_cbox
+ffffffff8221e960 d adl_uncore_formats_attr
+ffffffff8221e990 d format_attr_threshold
+ffffffff8221e9b0 d adl_uncore_arb
+ffffffff8221eab8 d adl_uncore_clockbox
+ffffffff8221ebc0 d mtl_uncore_cbox
+ffffffff8221ecc8 d mtl_uncore_hac_arb
+ffffffff8221edd0 d mtl_uncore_arb
+ffffffff8221eed8 d mtl_uncore_hac_cbox
+ffffffff8221efe0 d mtl_uncore_msr_ops
+ffffffff8221f030 d mtl_uncore_cncu
+ffffffff8221f138 d mtl_uncore_sncu
+ffffffff8221f240 d snb_pci_uncores
+ffffffff8221f250 d snb_uncore_pci_driver
+ffffffff8221f3b8 d ivb_uncore_pci_driver
+ffffffff8221f520 d hsw_uncore_pci_driver
+ffffffff8221f688 d bdw_uncore_pci_driver
+ffffffff8221f7f0 d skl_uncore_pci_driver
+ffffffff8221f958 d icl_uncore_pci_driver
+ffffffff8221fac0 d snb_uncore_imc_ops
+ffffffff8221fb10 d snb_uncore_imc_events
+ffffffff8221fd90 d snb_uncore_imc_freerunning
+ffffffff8221fe30 d snb_uncore_imc_pmu
+ffffffff8221ff58 d snb_uncore_imc
+ffffffff82220060 d snb_uncore_imc_formats_attr
+ffffffff82220070 d nhm_uncore_msr_ops
+ffffffff822200c0 d nhm_uncore_events
+ffffffff82220250 d nhm_uncore
+ffffffff82220360 d nhm_uncore_formats_attr
+ffffffff82220390 d format_attr_cmask8
+ffffffff822203b0 d tgl_uncore_imc_freerunning_ops
+ffffffff82220400 d tgl_uncore_imc_events
+ffffffff82220590 d tgl_uncore_imc_freerunning
+ffffffff822205f0 d tgl_uncore_imc_free_running
+ffffffff82220700 d tgl_uncore_imc_formats_attr
+ffffffff82220718 d adl_uncore_mmio_ops
+ffffffff82220768 d adl_uncore_imc
+ffffffff82220870 d adl_uncore_imc_formats_attr
+ffffffff82220890 d format_attr_chmask
+ffffffff822208b0 d adl_uncore_imc_freerunning_ops
+ffffffff82220900 d adl_uncore_imc_freerunning
+ffffffff82220960 d adl_uncore_imc_free_running
+ffffffff82220a70 d snbep_msr_uncores
+ffffffff82220a90 d snbep_pci_uncores
+ffffffff82220ac0 d snbep_uncore_pci_driver
+ffffffff82220c30 d ivbep_msr_uncores
+ffffffff82220c50 d ivbep_pci_uncores
+ffffffff82220c88 d ivbep_uncore_pci_driver
+ffffffff82220df0 d knl_msr_uncores
+ffffffff82220e10 d knl_pci_uncores
+ffffffff82220e48 d knl_uncore_pci_driver
+ffffffff82220fb0 d hswep_msr_uncores
+ffffffff82220fe0 d hswep_pci_uncores
+ffffffff82221018 d hswep_uncore_pci_driver
+ffffffff82221180 d bdx_msr_uncores
+ffffffff822211b0 d bdx_pci_uncores
+ffffffff822211e8 d bdx_uncore_pci_driver
+ffffffff82221350 d skx_msr_uncores
+ffffffff82221390 d skx_pci_uncores
+ffffffff822213c0 d skx_uncore_pci_driver
+ffffffff82221530 d snr_msr_uncores
+ffffffff82221570 d snr_pci_uncores
+ffffffff82221588 d snr_uncore_pci_driver
+ffffffff822216f0 d snr_uncore_pci_sub_driver
+ffffffff82221860 d snr_mmio_uncores
+ffffffff82221880 d icx_msr_uncores
+ffffffff822218c0 d icx_pci_uncores
+ffffffff822218e0 d icx_uncore_pci_driver
+ffffffff82221a50 d icx_mmio_uncores
+ffffffff82221a68 d spr_msr_uncores
+ffffffff82221a70 d spr_mmio_uncores
+ffffffff82221a78 d snbep_uncore_cbox_ops
+ffffffff82221ac8 d snbep_uncore_cbox
+ffffffff82221bd0 d snbep_uncore_cbox_constraints
+ffffffff82222010 d snbep_uncore_cbox_formats_attr
+ffffffff82222068 d format_attr_tid_en
+ffffffff82222088 d format_attr_filter_tid
+ffffffff822220a8 d format_attr_filter_nid
+ffffffff822220c8 d format_attr_filter_state
+ffffffff822220e8 d format_attr_filter_opc
+ffffffff82222108 d snbep_uncore_msr_ops
+ffffffff82222158 d snbep_uncore_ubox
+ffffffff82222260 d snbep_uncore_ubox_formats_attr
+ffffffff82222290 d format_attr_thresh5
+ffffffff822222b0 d snbep_uncore_pcu_ops
+ffffffff82222300 d snbep_uncore_pcu
+ffffffff82222410 d snbep_uncore_pcu_formats_attr
+ffffffff82222470 d format_attr_occ_sel
+ffffffff82222490 d format_attr_occ_invert
+ffffffff822224b0 d format_attr_occ_edge
+ffffffff822224d0 d format_attr_filter_band0
+ffffffff822224f0 d format_attr_filter_band1
+ffffffff82222510 d format_attr_filter_band2
+ffffffff82222530 d format_attr_filter_band3
+ffffffff82222550 d snbep_uncore_pci_ops
+ffffffff822225a0 d snbep_uncore_ha
+ffffffff822226b0 d snbep_uncore_formats_attr
+ffffffff822226e0 d snbep_uncore_imc_events
+ffffffff82222820 d snbep_uncore_imc
+ffffffff82222928 d snbep_uncore_qpi_ops
+ffffffff82222980 d snbep_uncore_qpi_events
+ffffffff82222a48 d snbep_uncore_qpi
+ffffffff82222b50 d snbep_uncore_qpi_formats_attr
+ffffffff82222c10 d format_attr_event_ext
+ffffffff82222c30 d format_attr_match_rds
+ffffffff82222c50 d format_attr_match_rnid30
+ffffffff82222c70 d format_attr_match_rnid4
+ffffffff82222c90 d format_attr_match_dnid
+ffffffff82222cb0 d format_attr_match_mc
+ffffffff82222cd0 d format_attr_match_opc
+ffffffff82222cf0 d format_attr_match_vnw
+ffffffff82222d10 d format_attr_match0
+ffffffff82222d30 d format_attr_match1
+ffffffff82222d50 d format_attr_mask_rds
+ffffffff82222d70 d format_attr_mask_rnid30
+ffffffff82222d90 d format_attr_mask_rnid4
+ffffffff82222db0 d format_attr_mask_dnid
+ffffffff82222dd0 d format_attr_mask_mc
+ffffffff82222df0 d format_attr_mask_opc
+ffffffff82222e10 d format_attr_mask_vnw
+ffffffff82222e30 d format_attr_mask0
+ffffffff82222e50 d format_attr_mask1
+ffffffff82222e70 d snbep_uncore_r2pcie
+ffffffff82222f80 d snbep_uncore_r2pcie_constraints
+ffffffff82223138 d snbep_uncore_r3qpi
+ffffffff82223240 d snbep_uncore_r3qpi_constraints
+ffffffff822236c8 d ivbep_uncore_cbox_ops
+ffffffff82223718 d ivbep_uncore_cbox
+ffffffff82223820 d ivbep_uncore_cbox_formats_attr
+ffffffff82223890 d format_attr_filter_link
+ffffffff822238b0 d format_attr_filter_state2
+ffffffff822238d0 d format_attr_filter_nid2
+ffffffff822238f0 d format_attr_filter_opc2
+ffffffff82223910 d format_attr_filter_nc
+ffffffff82223930 d format_attr_filter_c6
+ffffffff82223950 d format_attr_filter_isoc
+ffffffff82223970 d ivbep_uncore_msr_ops
+ffffffff822239c0 d ivbep_uncore_ubox
+ffffffff82223ad0 d ivbep_uncore_ubox_formats_attr
+ffffffff82223b00 d ivbep_uncore_pcu_ops
+ffffffff82223b50 d ivbep_uncore_pcu
+ffffffff82223c60 d ivbep_uncore_pcu_formats_attr
+ffffffff82223cb8 d ivbep_uncore_pci_ops
+ffffffff82223d08 d ivbep_uncore_ha
+ffffffff82223e10 d ivbep_uncore_formats_attr
+ffffffff82223e40 d ivbep_uncore_imc
+ffffffff82223f48 d ivbep_uncore_irp_ops
+ffffffff82223f98 d ivbep_uncore_irp
+ffffffff822240a0 d ivbep_uncore_qpi_ops
+ffffffff822240f0 d ivbep_uncore_qpi
+ffffffff82224200 d ivbep_uncore_qpi_formats_attr
+ffffffff822242b8 d ivbep_uncore_r2pcie
+ffffffff822243c0 d ivbep_uncore_r3qpi
+ffffffff822244c8 d knl_uncore_ubox
+ffffffff822245d0 d knl_uncore_ubox_formats_attr
+ffffffff82224608 d knl_uncore_cha_ops
+ffffffff82224658 d knl_uncore_cha
+ffffffff82224760 d knl_uncore_cha_constraints
+ffffffff82224800 d knl_uncore_cha_formats_attr
+ffffffff82224888 d format_attr_qor
+ffffffff822248a8 d format_attr_filter_tid4
+ffffffff822248c8 d format_attr_filter_link3
+ffffffff822248e8 d format_attr_filter_state4
+ffffffff82224908 d format_attr_filter_local
+ffffffff82224928 d format_attr_filter_all_op
+ffffffff82224948 d format_attr_filter_nnm
+ffffffff82224968 d format_attr_filter_opc3
+ffffffff82224988 d knl_uncore_pcu
+ffffffff82224a90 d knl_uncore_pcu_formats_attr
+ffffffff82224ae0 d format_attr_event2
+ffffffff82224b00 d format_attr_use_occ_ctr
+ffffffff82224b20 d format_attr_thresh6
+ffffffff82224b40 d format_attr_occ_edge_det
+ffffffff82224b60 d knl_uncore_imc_ops
+ffffffff82224bb0 d knl_uncore_imc_uclk
+ffffffff82224cb8 d knl_uncore_imc_dclk
+ffffffff82224dc0 d knl_uncore_edc_uclk
+ffffffff82224ec8 d knl_uncore_edc_eclk
+ffffffff82224fd0 d knl_uncore_m2pcie
+ffffffff822250e0 d knl_uncore_m2pcie_constraints
+ffffffff82225130 d knl_uncore_irp
+ffffffff82225240 d knl_uncore_irp_formats_attr
+ffffffff82225278 d hswep_uncore_cbox_ops
+ffffffff822252c8 d hswep_uncore_cbox
+ffffffff822253d0 d hswep_uncore_cbox_constraints
+ffffffff82225510 d hswep_uncore_cbox_formats_attr
+ffffffff82225580 d format_attr_filter_tid3
+ffffffff822255a0 d format_attr_filter_link2
+ffffffff822255c0 d format_attr_filter_state3
+ffffffff822255e0 d hswep_uncore_sbox_msr_ops
+ffffffff82225630 d hswep_uncore_sbox
+ffffffff82225740 d hswep_uncore_sbox_formats_attr
+ffffffff82225778 d hswep_uncore_ubox_ops
+ffffffff822257c8 d hswep_uncore_ubox
+ffffffff822258d0 d hswep_uncore_ubox_formats_attr
+ffffffff82225910 d format_attr_filter_tid2
+ffffffff82225930 d format_attr_filter_cid
+ffffffff82225950 d hswep_uncore_ha
+ffffffff82225a60 d hswep_uncore_imc_events
+ffffffff82225ba0 d hswep_uncore_imc
+ffffffff82225ca8 d hswep_uncore_irp_ops
+ffffffff82225cf8 d hswep_uncore_irp
+ffffffff82225e00 d hswep_uncore_qpi
+ffffffff82225f08 d hswep_uncore_r2pcie
+ffffffff82226010 d hswep_uncore_r2pcie_constraints
+ffffffff82226308 d hswep_uncore_r3qpi
+ffffffff82226410 d hswep_uncore_r3qpi_constraints
+ffffffff82226960 d bdx_uncore_cbox
+ffffffff82226a70 d bdx_uncore_cbox_constraints
+ffffffff82226b38 d bdx_uncore_ubox
+ffffffff82226c40 d bdx_uncore_sbox
+ffffffff82226d50 d bdx_uncore_pcu_constraints
+ffffffff82226da0 d hswep_uncore_pcu_ops
+ffffffff82226df0 d hswep_uncore_pcu
+ffffffff82226ef8 d bdx_uncore_ha
+ffffffff82227000 d bdx_uncore_imc
+ffffffff82227108 d bdx_uncore_irp
+ffffffff82227210 d bdx_uncore_qpi
+ffffffff82227318 d bdx_uncore_r2pcie
+ffffffff82227420 d bdx_uncore_r2pcie_constraints
+ffffffff822275b0 d bdx_uncore_r3qpi
+ffffffff822276c0 d bdx_uncore_r3qpi_constraints
+ffffffff82227b98 d skx_uncore_chabox_ops
+ffffffff82227be8 d skx_uncore_chabox
+ffffffff82227cf0 d skx_uncore_chabox_constraints
+ffffffff82227d70 d skx_uncore_cha_formats_attr
+ffffffff82227e00 d format_attr_filter_state5
+ffffffff82227e20 d format_attr_filter_rem
+ffffffff82227e40 d format_attr_filter_loc
+ffffffff82227e60 d format_attr_filter_nm
+ffffffff82227e80 d format_attr_filter_not_nm
+ffffffff82227ea0 d format_attr_filter_opc_0
+ffffffff82227ec0 d format_attr_filter_opc_1
+ffffffff82227ee0 d skx_uncore_ubox
+ffffffff82227fe8 d skx_uncore_iio_ops
+ffffffff82228040 d skx_iio_attr_update
+ffffffff82228050 d skx_uncore_iio
+ffffffff82228160 d skx_uncore_iio_constraints
+ffffffff822282a0 d skx_uncore_iio_formats_attr
+ffffffff822282e0 d format_attr_thresh9
+ffffffff82228300 d format_attr_ch_mask
+ffffffff82228320 d format_attr_fc_mask
+ffffffff82228340 d skx_iio_mapping_group
+ffffffff82228368 d skx_uncore_iio_freerunning_ops
+ffffffff822283c0 d skx_uncore_iio_freerunning_events
+ffffffff82228910 d skx_iio_freerunning
+ffffffff82228970 d skx_uncore_iio_free_running
+ffffffff82228a80 d skx_uncore_iio_freerunning_formats_attr
+ffffffff82228a98 d skx_uncore_irp
+ffffffff82228ba0 d skx_uncore_formats_attr
+ffffffff82228bd0 d skx_uncore_pcu_ops
+ffffffff82228c20 d skx_uncore_pcu_format_group
+ffffffff82228c48 d skx_uncore_pcu
+ffffffff82228d50 d skx_uncore_pcu_formats_attr
+ffffffff82228db0 d skx_uncore_imc
+ffffffff82228eb8 d skx_m2m_uncore_pci_ops
+ffffffff82228f08 d skx_uncore_m2m
+ffffffff82229010 d skx_upi_uncore_pci_ops
+ffffffff82229060 d skx_uncore_upi
+ffffffff82229170 d skx_upi_uncore_formats_attr
+ffffffff822291a0 d format_attr_umask_ext
+ffffffff822291c0 d skx_uncore_m2pcie
+ffffffff822292d0 d skx_uncore_m2pcie_constraints
+ffffffff82229320 d skx_uncore_m3upi
+ffffffff82229430 d skx_uncore_m3upi_constraints
+ffffffff82229598 d snr_uncore_ubox
+ffffffff822296a0 d snr_uncore_chabox_ops
+ffffffff822296f0 d snr_uncore_chabox
+ffffffff82229800 d snr_uncore_cha_formats_attr
+ffffffff82229840 d format_attr_umask_ext2
+ffffffff82229860 d format_attr_filter_tid5
+ffffffff82229880 d snr_iio_attr_update
+ffffffff82229890 d snr_uncore_iio
+ffffffff822299a0 d snr_uncore_iio_constraints
+ffffffff82229a40 d snr_uncore_iio_formats_attr
+ffffffff82229a80 d format_attr_ch_mask2
+ffffffff82229aa0 d format_attr_fc_mask2
+ffffffff82229ac0 d snr_iio_mapping_group
+ffffffff82229ae8 d snr_sad_pmon_mapping
+ffffffff82229af0 d snr_uncore_irp
+ffffffff82229bf8 d snr_uncore_m2pcie
+ffffffff82229d00 d snr_uncore_pcu_ops
+ffffffff82229d50 d snr_uncore_pcu
+ffffffff82229e60 d snr_uncore_iio_freerunning_events
+ffffffff8222a270 d snr_iio_freerunning
+ffffffff8222a2b0 d snr_uncore_iio_free_running
+ffffffff8222a3b8 d snr_m2m_uncore_pci_ops
+ffffffff8222a408 d snr_uncore_m2m
+ffffffff8222a510 d snr_m2m_uncore_formats_attr
+ffffffff8222a540 d format_attr_umask_ext3
+ffffffff8222a560 d snr_pcie3_uncore_pci_ops
+ffffffff8222a5b0 d snr_uncore_pcie3
+ffffffff8222a6b8 d snr_uncore_mmio_ops
+ffffffff8222a710 d snr_uncore_imc_events
+ffffffff8222a850 d snr_uncore_imc
+ffffffff8222a958 d snr_uncore_imc_freerunning_ops
+ffffffff8222a9b0 d snr_uncore_imc_freerunning_events
+ffffffff8222aaf0 d snr_imc_freerunning
+ffffffff8222ab30 d snr_uncore_imc_free_running
+ffffffff8222ac40 d icx_cha_msr_offsets
+ffffffff8222ace0 d icx_uncore_chabox_ops
+ffffffff8222ad30 d icx_uncore_chabox
+ffffffff8222ae40 d icx_msr_offsets
+ffffffff8222ae60 d icx_iio_attr_update
+ffffffff8222ae70 d icx_uncore_iio
+ffffffff8222af80 d icx_uncore_iio_constraints
+ffffffff8222b0c0 d icx_iio_mapping_group
+ffffffff8222b0e8 d icx_sad_pmon_mapping
+ffffffff8222b0f0 d icx_uncore_irp
+ffffffff8222b1f8 d icx_uncore_m2pcie
+ffffffff8222b300 d icx_uncore_m2pcie_constraints
+ffffffff8222b3a0 d icx_uncore_iio_freerunning_events
+ffffffff8222b7b0 d icx_iio_freerunning
+ffffffff8222b7f0 d icx_uncore_iio_free_running
+ffffffff8222b900 d icx_iio_clk_freerunning_box_offsets
+ffffffff8222b920 d icx_iio_bw_freerunning_box_offsets
+ffffffff8222b938 d icx_uncore_m2m
+ffffffff8222ba40 d icx_uncore_upi
+ffffffff8222bb50 d icx_upi_uncore_formats_attr
+ffffffff8222bb80 d format_attr_umask_ext4
+ffffffff8222bba0 d icx_uncore_m3upi
+ffffffff8222bcb0 d icx_uncore_m3upi_constraints
+ffffffff8222be18 d icx_uncore_mmio_ops
+ffffffff8222be68 d icx_uncore_imc
+ffffffff8222bf70 d icx_uncore_imc_freerunning_ops
+ffffffff8222bfc0 d icx_uncore_imc_freerunning_events
+ffffffff8222c1f0 d icx_imc_freerunning
+ffffffff8222c250 d icx_uncore_imc_free_running
+ffffffff8222c358 d spr_uncore_chabox_ops
+ffffffff8222c3b0 d uncore_alias_groups
+ffffffff8222c3c0 d spr_uncore_chabox
+ffffffff8222c4d0 d spr_uncore_cha_formats_attr
+ffffffff8222c510 d format_attr_tid_en2
+ffffffff8222c530 d uncore_alias_attrs
+ffffffff8222c540 d dev_attr_alias
+ffffffff8222c560 d spr_uncore_iio
+ffffffff8222c668 d spr_uncore_irp
+ffffffff8222c770 d spr_uncore_raw_formats_attr
+ffffffff8222c7a0 d spr_uncore_m2pcie
+ffffffff8222c8b0 d spr_uncore_m2pcie_constraints
+ffffffff8222c928 d spr_uncore_pcu
+ffffffff8222ca30 d spr_uncore_mmio_ops
+ffffffff8222ca80 d spr_uncore_imc
+ffffffff8222cb88 d spr_uncore_pci_ops
+ffffffff8222cbd8 d spr_uncore_m2m
+ffffffff8222cce0 d spr_uncore_upi
+ffffffff8222cde8 d spr_uncore_m3upi
+ffffffff8222cef0 d spr_uncore_mdf
+ffffffff8222d000 d spr_uncore_iio_freerunning_events
+ffffffff8222d7d0 d spr_iio_freerunning
+ffffffff8222d830 d spr_uncore_iio_free_running
+ffffffff8222d938 d spr_uncore_imc_freerunning_ops
+ffffffff8222d990 d spr_uncore_imc_freerunning_events
+ffffffff8222da30 d spr_imc_freerunning
+ffffffff8222da70 d spr_uncore_imc_free_running
+ffffffff8222db80 d generic_uncore_formats_attr
+ffffffff8222dbb0 d format_attr_thresh
+ffffffff8222dbd0 d generic_uncore_msr_ops
+ffffffff8222dc20 d generic_uncore_pci_ops
+ffffffff8222dc70 d generic_uncore_mmio_ops
+ffffffff8222dcc0 d pkg_msr
+ffffffff8222dde0 d core_msr
+ffffffff8222de80 d group_cstate_pkg_c2
+ffffffff8222dea8 d group_cstate_pkg_c3
+ffffffff8222ded0 d group_cstate_pkg_c6
+ffffffff8222def8 d group_cstate_pkg_c7
+ffffffff8222df20 d group_cstate_pkg_c8
+ffffffff8222df48 d group_cstate_pkg_c9
+ffffffff8222df70 d group_cstate_pkg_c10
+ffffffff8222dfa0 d attrs_cstate_pkg_c2
+ffffffff8222dfb0 d attr_cstate_pkg_c2
+ffffffff8222dfe0 d attrs_cstate_pkg_c3
+ffffffff8222dff0 d attr_cstate_pkg_c3
+ffffffff8222e020 d attrs_cstate_pkg_c6
+ffffffff8222e030 d attr_cstate_pkg_c6
+ffffffff8222e060 d attrs_cstate_pkg_c7
+ffffffff8222e070 d attr_cstate_pkg_c7
+ffffffff8222e0a0 d attrs_cstate_pkg_c8
+ffffffff8222e0b0 d attr_cstate_pkg_c8
+ffffffff8222e0e0 d attrs_cstate_pkg_c9
+ffffffff8222e0f0 d attr_cstate_pkg_c9
+ffffffff8222e120 d attrs_cstate_pkg_c10
+ffffffff8222e130 d attr_cstate_pkg_c10
+ffffffff8222e160 d group_cstate_core_c1
+ffffffff8222e188 d group_cstate_core_c3
+ffffffff8222e1b0 d group_cstate_core_c6
+ffffffff8222e1d8 d group_cstate_core_c7
+ffffffff8222e200 d attrs_cstate_core_c1
+ffffffff8222e210 d attr_cstate_core_c1
+ffffffff8222e240 d attrs_cstate_core_c3
+ffffffff8222e250 d attr_cstate_core_c3
+ffffffff8222e280 d attrs_cstate_core_c6
+ffffffff8222e290 d attr_cstate_core_c6
+ffffffff8222e2c0 d attrs_cstate_core_c7
+ffffffff8222e2d0 d attr_cstate_core_c7
+ffffffff8222e300 d cstate_core_pmu
+ffffffff8222e428 d cstate_pkg_pmu
+ffffffff8222e550 d core_attr_groups
+ffffffff8222e570 d core_attr_update
+ffffffff8222e598 d core_events_attr_group
+ffffffff8222e5c0 d core_format_attr_group
+ffffffff8222e5e8 d cpumask_attr_group
+ffffffff8222e610 d core_format_attrs
+ffffffff8222e620 d format_attr_core_event
+ffffffff8222e640 d cstate_cpumask_attrs
+ffffffff8222e650 d pkg_attr_groups
+ffffffff8222e670 d pkg_attr_update
+ffffffff8222e6b0 d pkg_events_attr_group
+ffffffff8222e6d8 d pkg_format_attr_group
+ffffffff8222e700 d pkg_format_attrs
+ffffffff8222e710 d format_attr_pkg_event
+ffffffff8222e730 d zx_arch_formats_attr
+ffffffff8222e760 d __SCK__tp_func_local_timer_entry
+ffffffff8222e770 d __SCK__tp_func_local_timer_exit
+ffffffff8222e780 d __SCK__tp_func_spurious_apic_entry
+ffffffff8222e790 d __SCK__tp_func_spurious_apic_exit
+ffffffff8222e7a0 d __SCK__tp_func_error_apic_entry
+ffffffff8222e7b0 d __SCK__tp_func_error_apic_exit
+ffffffff8222e7c0 d __SCK__tp_func_x86_platform_ipi_entry
+ffffffff8222e7d0 d __SCK__tp_func_x86_platform_ipi_exit
+ffffffff8222e7e0 d __SCK__tp_func_irq_work_entry
+ffffffff8222e7f0 d __SCK__tp_func_irq_work_exit
+ffffffff8222e800 d __SCK__tp_func_reschedule_entry
+ffffffff8222e810 d __SCK__tp_func_reschedule_exit
+ffffffff8222e820 d __SCK__tp_func_call_function_entry
+ffffffff8222e830 d __SCK__tp_func_call_function_exit
+ffffffff8222e840 d __SCK__tp_func_call_function_single_entry
+ffffffff8222e850 d __SCK__tp_func_call_function_single_exit
+ffffffff8222e860 d __SCK__tp_func_thermal_apic_entry
+ffffffff8222e870 d __SCK__tp_func_thermal_apic_exit
+ffffffff8222e880 d __SCK__tp_func_vector_config
+ffffffff8222e890 d __SCK__tp_func_vector_update
+ffffffff8222e8a0 d __SCK__tp_func_vector_clear
+ffffffff8222e8b0 d __SCK__tp_func_vector_reserve_managed
+ffffffff8222e8c0 d __SCK__tp_func_vector_reserve
+ffffffff8222e8d0 d __SCK__tp_func_vector_alloc
+ffffffff8222e8e0 d __SCK__tp_func_vector_alloc_managed
+ffffffff8222e8f0 d __SCK__tp_func_vector_activate
+ffffffff8222e900 d __SCK__tp_func_vector_deactivate
+ffffffff8222e910 d __SCK__tp_func_vector_teardown
+ffffffff8222e920 d __SCK__tp_func_vector_setup
+ffffffff8222e930 d __SCK__tp_func_vector_free_moved
+ffffffff8222e940 d trace_event_fields_x86_irq_vector
+ffffffff8222e990 d trace_event_type_funcs_x86_irq_vector
+ffffffff8222e9b0 d print_fmt_x86_irq_vector
+ffffffff8222e9d0 d event_local_timer_entry
+ffffffff8222ea60 d event_local_timer_exit
+ffffffff8222eaf0 d event_spurious_apic_entry
+ffffffff8222eb80 d event_spurious_apic_exit
+ffffffff8222ec10 d event_error_apic_entry
+ffffffff8222eca0 d event_error_apic_exit
+ffffffff8222ed30 d event_x86_platform_ipi_entry
+ffffffff8222edc0 d event_x86_platform_ipi_exit
+ffffffff8222ee50 d event_irq_work_entry
+ffffffff8222eee0 d event_irq_work_exit
+ffffffff8222ef70 d event_reschedule_entry
+ffffffff8222f000 d event_reschedule_exit
+ffffffff8222f090 d event_call_function_entry
+ffffffff8222f120 d event_call_function_exit
+ffffffff8222f1b0 d event_call_function_single_entry
+ffffffff8222f240 d event_call_function_single_exit
+ffffffff8222f2d0 d event_thermal_apic_entry
+ffffffff8222f360 d event_thermal_apic_exit
+ffffffff8222f3f0 d trace_event_fields_vector_config
+ffffffff8222f4b8 d trace_event_type_funcs_vector_config
+ffffffff8222f4e0 d print_fmt_vector_config
+ffffffff8222f540 d event_vector_config
+ffffffff8222f5d0 d trace_event_fields_vector_mod
+ffffffff8222f6c0 d trace_event_type_funcs_vector_mod
+ffffffff8222f6e0 d print_fmt_vector_mod
+ffffffff8222f758 d event_vector_update
+ffffffff8222f7e8 d event_vector_clear
+ffffffff8222f880 d trace_event_fields_vector_reserve
+ffffffff8222f8f8 d trace_event_type_funcs_vector_reserve
+ffffffff8222f920 d print_fmt_vector_reserve
+ffffffff8222f948 d event_vector_reserve_managed
+ffffffff8222f9d8 d event_vector_reserve
+ffffffff8222fa70 d trace_event_fields_vector_alloc
+ffffffff8222fb38 d trace_event_type_funcs_vector_alloc
+ffffffff8222fb60 d print_fmt_vector_alloc
+ffffffff8222fbb8 d event_vector_alloc
+ffffffff8222fc50 d trace_event_fields_vector_alloc_managed
+ffffffff8222fcf0 d trace_event_type_funcs_vector_alloc_managed
+ffffffff8222fd10 d print_fmt_vector_alloc_managed
+ffffffff8222fd50 d event_vector_alloc_managed
+ffffffff8222fde0 d trace_event_fields_vector_activate
+ffffffff8222fea8 d trace_event_type_funcs_vector_activate
+ffffffff8222fed0 d print_fmt_vector_activate
+ffffffff8222ff40 d event_vector_activate
+ffffffff8222ffd0 d event_vector_deactivate
+ffffffff82230060 d trace_event_fields_vector_teardown
+ffffffff82230100 d trace_event_type_funcs_vector_teardown
+ffffffff82230120 d print_fmt_vector_teardown
+ffffffff82230178 d event_vector_teardown
+ffffffff82230210 d trace_event_fields_vector_setup
+ffffffff822302b0 d trace_event_type_funcs_vector_setup
+ffffffff822302d0 d print_fmt_vector_setup
+ffffffff82230318 d event_vector_setup
+ffffffff822303b0 d trace_event_fields_vector_free_moved
+ffffffff82230478 d trace_event_type_funcs_vector_free_moved
+ffffffff822304a0 d print_fmt_vector_free_moved
+ffffffff82230500 d event_vector_free_moved
+ffffffff82230590 d kvm_posted_intr_wakeup_handler
+ffffffff82230598 d __common_interrupt._rs
+ffffffff822305c0 d die_owner
+ffffffff822305c8 d __SCK__tp_func_nmi_handler
+ffffffff822305e0 d trace_event_fields_nmi_handler
+ffffffff82230680 d trace_event_type_funcs_nmi_handler
+ffffffff822306a0 d print_fmt_nmi_handler
+ffffffff822306f0 d event_nmi_handler
+ffffffff82230780 d nmi_desc
+ffffffff822307e0 d nmi_longest_ns
+ffffffff822307e8 d nmi_check_duration._rs
+ffffffff82230810 d _brk_start
+ffffffff82230820 d standard_io_resources
+ffffffff82230be0 d code_resource
+ffffffff82230c40 d rodata_resource
+ffffffff82230ca0 d data_resource
+ffffffff82230d00 d bss_resource
+ffffffff82230d60 d kernel_offset_notifier
+ffffffff82230d78 d _brk_end
+ffffffff82230d80 d x86_cpuinit
+ffffffff82230d98 d cached_irq_mask
+ffffffff82230da0 d i8259A_chip
+ffffffff82230ea8 d null_legacy_pic
+ffffffff82230ef8 d default_legacy_pic
+ffffffff82230f48 d i8259_syscore_ops
+ffffffff82230f70 d legacy_pic
+ffffffff82230f78 d video_rom_resource
+ffffffff82230fd8 d system_rom_resource
+ffffffff82231040 d adapter_rom_resources
+ffffffff82231280 d extension_rom_resource
+ffffffff822312e0 d espfix_init_mutex
+ffffffff82231310 d boot_params_version_attrs
+ffffffff82231320 d boot_params_data_attrs
+ffffffff82231330 d boot_params_version_attr
+ffffffff82231350 d boot_params_data_attr
+ffffffff82231390 d setup_data_type_attrs
+ffffffff822313a0 d setup_data_data_attrs
+ffffffff822313b0 d type_attr
+ffffffff822313d0 d type_attr
+ffffffff822313f0 d pci_mem_start
+ffffffff822313f8 d smp_alt_modules
+ffffffff82231408 d clocksource_tsc_early
+ffffffff822314c0 d clocksource_tsc
+ffffffff82231578 d time_cpufreq_notifier_block
+ffffffff82231590 d tsc_irqwork
+ffffffff82231618 d tsc_refine_calibration_work.tsc_start
+ffffffff82231620 d rtc_device
+ffffffff822319f0 d rtc_resources
+ffffffff82231ab0 d __SCK__tp_func_x86_fpu_before_save
+ffffffff82231ac0 d __SCK__tp_func_x86_fpu_after_save
+ffffffff82231ad0 d __SCK__tp_func_x86_fpu_before_restore
+ffffffff82231ae0 d __SCK__tp_func_x86_fpu_after_restore
+ffffffff82231af0 d __SCK__tp_func_x86_fpu_regs_activated
+ffffffff82231b00 d __SCK__tp_func_x86_fpu_regs_deactivated
+ffffffff82231b10 d __SCK__tp_func_x86_fpu_init_state
+ffffffff82231b20 d __SCK__tp_func_x86_fpu_dropped
+ffffffff82231b30 d __SCK__tp_func_x86_fpu_copy_src
+ffffffff82231b40 d __SCK__tp_func_x86_fpu_copy_dst
+ffffffff82231b50 d __SCK__tp_func_x86_fpu_xstate_check_failed
+ffffffff82231b60 d trace_event_fields_x86_fpu
+ffffffff82231c28 d trace_event_type_funcs_x86_fpu
+ffffffff82231c50 d print_fmt_x86_fpu
+ffffffff82231cc0 d event_x86_fpu_before_save
+ffffffff82231d50 d event_x86_fpu_after_save
+ffffffff82231de0 d event_x86_fpu_before_restore
+ffffffff82231e70 d event_x86_fpu_after_restore
+ffffffff82231f00 d event_x86_fpu_regs_activated
+ffffffff82231f90 d event_x86_fpu_regs_deactivated
+ffffffff82232020 d event_x86_fpu_init_state
+ffffffff822320b0 d event_x86_fpu_dropped
+ffffffff82232140 d event_x86_fpu_copy_src
+ffffffff822321d0 d event_x86_fpu_copy_dst
+ffffffff82232260 d event_x86_fpu_xstate_check_failed
+ffffffff822322f0 d i8237_syscore_ops
+ffffffff82232318 d cache_private_group
+ffffffff82232340 d dev_attr_cache_disable_0
+ffffffff82232360 d dev_attr_cache_disable_1
+ffffffff82232380 d dev_attr_subcaches
+ffffffff822323a0 d this_cpu
+ffffffff822323b0 d ppin_info
+ffffffff822323d4 d smp_num_siblings
+ffffffff822323d8 d spec_ctrl_mutex
+ffffffff82232408 d arch_turbo_freq_ratio.llvm.10532599917384001013
+ffffffff82232410 d arch_max_freq_ratio.llvm.10532599917384001013
+ffffffff82232418 d freq_invariance_syscore_ops
+ffffffff82232440 d disable_freq_invariance_work
+ffffffff82232470 d umwait_syscore_ops
+ffffffff82232498 d umwait_attr_group
+ffffffff822324c0 d umwait_control_cached
+ffffffff822324d0 d umwait_attrs
+ffffffff822324e8 d dev_attr_enable_c02
+ffffffff82232508 d dev_attr_max_time
+ffffffff82232528 d umwait_lock
+ffffffff82232558 d handle_bus_lock._rs
+ffffffff82232580 d mktme_status
+ffffffff82232590 d sld_sysctls
+ffffffff82232610 d sysctl_sld_mitigate
+ffffffff82232618 d split_lock_warn._rs
+ffffffff82232640 d buslock_sem
+ffffffff82232658 d sl_reenable_unlock
+ffffffff822326e0 d sl_reenable
+ffffffff82232768 d energ_perf_values
+ffffffff82232770 d intel_epb_syscore_ops
+ffffffff822327a0 d intel_epb_attrs
+ffffffff822327b0 d dev_attr_energy_perf_bias
+ffffffff822327d0 d nodes_per_socket
+ffffffff822327d4 d nodes_per_socket
+ffffffff822327d8 d mtrr_mutex
+ffffffff82232808 d mtrr_syscore_ops
+ffffffff82232830 d microcode_cache
+ffffffff82232840 d microcode_mutex
+ffffffff82232870 d mc_cpu_interface
+ffffffff822328a0 d mc_syscore_ops
+ffffffff822328d0 d mc_default_attrs
+ffffffff822328e8 d dev_attr_version
+ffffffff82232908 d dev_attr_version
+ffffffff82232928 d dev_attr_version
+ffffffff82232948 d dev_attr_processor_flags
+ffffffff82232968 d microcode_intel_ops
+ffffffff82232988 d save_mc_for_early.x86_cpu_microcode_mutex
+ffffffff822329b8 d vmware_pv_reboot_nb
+ffffffff822329d0 d ms_hyperv_init_platform.hv_nmi_unknown_na
+ffffffff82232a00 d hv_nmi_unknown.nmi_cpu
+ffffffff82232a08 d __acpi_register_gsi
+ffffffff82232a10 d acpi_suspend_lowlevel
+ffffffff82232a18 d acpi_ioapic_lock.llvm.1830531517365048223
+ffffffff82232a48 d freq_invariance_lock
+ffffffff82232a78 d crashing_cpu
+ffffffff82232a80 d nmi_shootdown_cpus.crash_nmi_callback_na
+ffffffff82232ab0 d stopping_cpu
+ffffffff82232ab8 d register_stop_handler.smp_stop_nmi_callback_na
+ffffffff82232ae8 d smp_ops
+ffffffff82232b50 d x86_topology
+ffffffff82232c90 d x86_hybrid_topology
+ffffffff82232d90 d init_udelay
+ffffffff82232d98 d wakeup_cpu_via_init_nmi.wakeup_cpu0_nmi_na
+ffffffff82232e00 d lapic_clockevent
+ffffffff82232f00 d cpuid_to_apicid
+ffffffff82232f80 d nr_logical_cpuids
+ffffffff82232f88 d lapic_syscore_ops
+ffffffff82232fb0 d lapic_resource
+ffffffff82233010 d lapic_controller
+ffffffff82233118 d register_nmi_cpu_backtrace_handler.nmi_cpu_backtrace_handler_na
+ffffffff82233148 d ioapic_mutex
+ffffffff82233178 d ioapic_i8259.0
+ffffffff8223317c d ioapic_i8259.1
+ffffffff82233180 d ioapic_syscore_ops
+ffffffff822331a8 d pci_msi_domain_info
+ffffffff822331e8 d pci_msi_domain_ops
+ffffffff82233228 d pci_msi_controller
+ffffffff82233330 d module_kaslr_mutex
+ffffffff82233360 d early_serial_console
+ffffffff822333d8 d max_xpos
+ffffffff822333dc d max_ypos
+ffffffff822333e0 d current_ypos
+ffffffff822333e8 d early_vga_console
+ffffffff82233460 d early_serial_base
+ffffffff82233468 d serial_in
+ffffffff82233470 d serial_out
+ffffffff82233478 d clocksource_hpet
+ffffffff82233530 d hpet_rtc_interrupt._rs
+ffffffff82233558 d hpet_msi_domain_ops
+ffffffff82233598 d smn_mutex
+ffffffff822335c8 d kvm_cpuid_base.kvm_cpuid_base
+ffffffff822335d0 d kvm_pv_reboot_nb
+ffffffff822335e8 d kvm_syscore_ops
+ffffffff82233610 d kvm_clock
+ffffffff822336c8 d pv_info
+ffffffff822336d0 d virt_spin_lock_key
+ffffffff822336e0 d pv_ops
+ffffffff82233748 d __SCK__pv_steal_clock
+ffffffff82233758 d __SCK__pv_sched_clock
+ffffffff82233768 d reserve_ioports
+ffffffff822337d0 d good_insns_64
+ffffffff822337f0 d good_2byte_insns
+ffffffff82233810 d itmt_update_mutex
+ffffffff82233840 d itmt_root_table
+ffffffff822338c0 d itmt_kern_table
+ffffffff82233940 d umip_printk.ratelimit
+ffffffff82233970 d write_class
+ffffffff822339d0 d read_class
+ffffffff82233a00 d dir_class
+ffffffff82233a40 d chattr_class
+ffffffff82233a80 d signal_class
+ffffffff82233a90 d is_vsmp
+ffffffff82233aa0 d __cachemode2pte_tbl
+ffffffff82233ab0 d __pte2cachemode_tbl
+ffffffff82233ab8 d direct_gbpages
+ffffffff82233ac0 d __SCK__tp_func_page_fault_user
+ffffffff82233ad0 d __SCK__tp_func_page_fault_kernel
+ffffffff82233ae0 d trace_event_fields_x86_exceptions
+ffffffff82233b80 d trace_event_type_funcs_x86_exceptions
+ffffffff82233ba0 d print_fmt_x86_exceptions
+ffffffff82233c00 d event_page_fault_user
+ffffffff82233c90 d event_page_fault_kernel
+ffffffff82233d20 d pgd_list
+ffffffff82233d30 d show_unhandled_signals
+ffffffff82233d34 d __userpte_alloc_gfp
+ffffffff82233d38 d last_mm_ctx_id
+ffffffff82233d40 d init_pkru_value
+ffffffff82233d48 d __SCK__aesni_ctr_enc_tfm
+ffffffff82233d60 d aesni_aeads
+ffffffff822340e0 d aesni_skciphers
+ffffffff822349a0 d aesni_cipher_alg
+ffffffff82234b20 d aesni_xctr
+ffffffff82234ce0 d sha256_ni_algs
+ffffffff822350a0 d sha256_avx2_algs
+ffffffff82235460 d sha256_avx_algs
+ffffffff82235820 d sha256_ssse3_algs
+ffffffff82235be0 d sha512_avx2_algs
+ffffffff82235fa0 d sha512_avx_algs
+ffffffff82236360 d sha512_ssse3_algs
+ffffffff82236720 d polyval_alg
+ffffffff82236900 d polyval_alg
+ffffffff82236ae0 d prop_phys
+ffffffff82236ae8 d uga_phys
+ffffffff82236af0 d efi_attr_fw_vendor
+ffffffff82236b10 d efi_attr_runtime
+ffffffff82236b30 d efi_attr_config_table
+ffffffff82236b50 d efi_va
+ffffffff82236b58 d __SCK__tp_func_task_newtask
+ffffffff82236b68 d __SCK__tp_func_task_rename
+ffffffff82236b80 d trace_event_fields_task_newtask
+ffffffff82236c48 d trace_event_type_funcs_task_newtask
+ffffffff82236c70 d print_fmt_task_newtask
+ffffffff82236ce0 d event_task_newtask
+ffffffff82236d70 d trace_event_fields_task_rename
+ffffffff82236e38 d trace_event_type_funcs_task_rename
+ffffffff82236e60 d print_fmt_task_rename
+ffffffff82236ed0 d event_task_rename
+ffffffff82236f60 d default_dump_filter
+ffffffff82236f68 d panic_on_oops
+ffffffff82236f6c d panic_timeout
+ffffffff82236f70 d kern_panic_table
+ffffffff82237030 d warn_count_attr
+ffffffff82237050 d panic_cpu
+ffffffff82237058 d __SCK__tp_func_cpuhp_enter
+ffffffff82237068 d __SCK__tp_func_cpuhp_multi_enter
+ffffffff82237078 d __SCK__tp_func_cpuhp_exit
+ffffffff82237090 d trace_event_fields_cpuhp_enter
+ffffffff82237158 d trace_event_type_funcs_cpuhp_enter
+ffffffff82237180 d print_fmt_cpuhp_enter
+ffffffff822371d8 d event_cpuhp_enter
+ffffffff82237270 d trace_event_fields_cpuhp_multi_enter
+ffffffff82237338 d trace_event_type_funcs_cpuhp_multi_enter
+ffffffff82237360 d print_fmt_cpuhp_multi_enter
+ffffffff822373b8 d event_cpuhp_multi_enter
+ffffffff82237450 d trace_event_fields_cpuhp_exit
+ffffffff82237518 d trace_event_type_funcs_cpuhp_exit
+ffffffff82237540 d print_fmt_cpuhp_exit
+ffffffff82237598 d event_cpuhp_exit
+ffffffff82237628 d cpu_add_remove_lock.llvm.1315302404838068721
+ffffffff82237658 d cpu_hotplug_lock.llvm.1315302404838068721
+ffffffff822376b8 d cpuhp_threads
+ffffffff82237718 d cpuhp_state_mutex
+ffffffff82237748 d cpu_hotplug_pm_sync_init.cpu_hotplug_pm_callback_nb
+ffffffff82237760 d cpuhp_hp_states
+ffffffff82239d10 d cpuhp_smt_attrs
+ffffffff82239d28 d dev_attr_control
+ffffffff82239d48 d dev_attr_control
+ffffffff82239d68 d dev_attr_active
+ffffffff82239d88 d dev_attr_active
+ffffffff82239da8 d dev_attr_active
+ffffffff82239dd0 d cpuhp_cpu_root_attrs
+ffffffff82239de0 d dev_attr_states
+ffffffff82239e00 d cpuhp_cpu_attrs
+ffffffff82239e20 d dev_attr_state
+ffffffff82239e40 d dev_attr_state
+ffffffff82239e60 d dev_attr_state
+ffffffff82239e80 d dev_attr_target
+ffffffff82239ea0 d dev_attr_fail
+ffffffff82239ec0 d oops_limit
+ffffffff82239ed0 d kern_exit_table
+ffffffff82239f50 d oops_count_attr
+ffffffff82239f70 d check_stack_usage.lowest_to_date
+ffffffff82239f78 d __SCK__tp_func_irq_handler_entry
+ffffffff82239f88 d __SCK__tp_func_irq_handler_exit
+ffffffff82239f98 d __SCK__tp_func_softirq_entry
+ffffffff82239fa8 d __SCK__tp_func_softirq_exit
+ffffffff82239fb8 d __SCK__tp_func_softirq_raise
+ffffffff82239fc8 d __SCK__tp_func_tasklet_entry
+ffffffff82239fd8 d __SCK__tp_func_tasklet_exit
+ffffffff82239ff0 d trace_event_fields_irq_handler_entry
+ffffffff8223a068 d trace_event_type_funcs_irq_handler_entry
+ffffffff8223a090 d print_fmt_irq_handler_entry
+ffffffff8223a0c0 d event_irq_handler_entry
+ffffffff8223a150 d trace_event_fields_irq_handler_exit
+ffffffff8223a1c8 d trace_event_type_funcs_irq_handler_exit
+ffffffff8223a1f0 d print_fmt_irq_handler_exit
+ffffffff8223a230 d event_irq_handler_exit
+ffffffff8223a2c0 d trace_event_fields_softirq
+ffffffff8223a310 d trace_event_type_funcs_softirq
+ffffffff8223a330 d print_fmt_softirq
+ffffffff8223a490 d event_softirq_entry
+ffffffff8223a520 d event_softirq_exit
+ffffffff8223a5b0 d event_softirq_raise
+ffffffff8223a640 d trace_event_fields_tasklet
+ffffffff8223a690 d trace_event_type_funcs_tasklet
+ffffffff8223a6b0 d print_fmt_tasklet
+ffffffff8223a6d0 d event_tasklet_entry
+ffffffff8223a760 d event_tasklet_exit
+ffffffff8223a7f0 d softirq_threads
+ffffffff8223a850 d ioport_resource
+ffffffff8223a8b0 d iomem_resource
+ffffffff8223a910 d muxed_resource_wait
+ffffffff8223a928 d iomem_fs_type
+ffffffff8223a970 d proc_do_static_key.static_key_mutex
+ffffffff8223a9a0 d kernel_base_table.llvm.16294858378822551814
+ffffffff8223aa20 d vm_base_table.llvm.16294858378822551814
+ffffffff8223aaa0 d debug_base_table.llvm.16294858378822551814
+ffffffff8223ab20 d dev_base_table.llvm.16294858378822551814
+ffffffff8223aba0 d sysctl_writes_strict
+ffffffff8223abb0 d kern_table
+ffffffff8223b570 d vm_table
+ffffffff8223bc70 d debug_table
+ffffffff8223bcf0 d file_caps_enabled
+ffffffff8223bcf8 d init_user_ns
+ffffffff8223bf30 d root_user
+ffffffff8223bfd8 d __SCK__tp_func_signal_generate
+ffffffff8223bfe8 d __SCK__tp_func_signal_deliver
+ffffffff8223c000 d trace_event_fields_signal_generate
+ffffffff8223c140 d trace_event_type_funcs_signal_generate
+ffffffff8223c160 d print_fmt_signal_generate
+ffffffff8223c1e8 d event_signal_generate
+ffffffff8223c280 d trace_event_fields_signal_deliver
+ffffffff8223c370 d trace_event_type_funcs_signal_deliver
+ffffffff8223c390 d print_fmt_signal_deliver
+ffffffff8223c408 d event_signal_deliver
+ffffffff8223c498 d print_dropped_signal.ratelimit_state
+ffffffff8223c4c0 d overflowuid
+ffffffff8223c4c4 d overflowgid
+ffffffff8223c4c8 d fs_overflowuid
+ffffffff8223c4cc d fs_overflowgid
+ffffffff8223c4d0 d uts_sem
+ffffffff8223c510 d umhelper_sem.llvm.1846387875470504681
+ffffffff8223c550 d usermodehelper_disabled_waitq.llvm.1846387875470504681
+ffffffff8223c568 d usermodehelper_disabled.llvm.1846387875470504681
+ffffffff8223c570 d running_helpers_waitq
+ffffffff8223c588 d usermodehelper_bset
+ffffffff8223c590 d usermodehelper_inheritable
+ffffffff8223c5a0 d usermodehelper_table
+ffffffff8223c660 d __SCK__tp_func_workqueue_queue_work
+ffffffff8223c670 d __SCK__tp_func_workqueue_activate_work
+ffffffff8223c680 d __SCK__tp_func_workqueue_execute_start
+ffffffff8223c690 d __SCK__tp_func_workqueue_execute_end
+ffffffff8223c6a0 d trace_event_fields_workqueue_queue_work
+ffffffff8223c790 d trace_event_type_funcs_workqueue_queue_work
+ffffffff8223c7b0 d print_fmt_workqueue_queue_work
+ffffffff8223c838 d event_workqueue_queue_work
+ffffffff8223c8d0 d trace_event_fields_workqueue_activate_work
+ffffffff8223c920 d trace_event_type_funcs_workqueue_activate_work
+ffffffff8223c940 d print_fmt_workqueue_activate_work
+ffffffff8223c960 d event_workqueue_activate_work
+ffffffff8223c9f0 d trace_event_fields_workqueue_execute_start
+ffffffff8223ca68 d trace_event_type_funcs_workqueue_execute_start
+ffffffff8223ca90 d print_fmt_workqueue_execute_start
+ffffffff8223cad0 d event_workqueue_execute_start
+ffffffff8223cb60 d trace_event_fields_workqueue_execute_end
+ffffffff8223cbd8 d trace_event_type_funcs_workqueue_execute_end
+ffffffff8223cc00 d print_fmt_workqueue_execute_end
+ffffffff8223cc40 d event_workqueue_execute_end
+ffffffff8223ccd0 d wq_pool_mutex
+ffffffff8223cd00 d workqueues
+ffffffff8223cd10 d worker_pool_idr
+ffffffff8223cd28 d wq_pool_attach_mutex
+ffffffff8223cd58 d wq_subsys
+ffffffff8223ce30 d wq_sysfs_unbound_attrs
+ffffffff8223ced0 d wq_watchdog_touched
+ffffffff8223ced8 d wq_watchdog_thresh
+ffffffff8223cee0 d __cancel_work_timer.cancel_waitq
+ffffffff8223cef8 d wq_sysfs_cpumask_attr
+ffffffff8223cf20 d wq_sysfs_groups
+ffffffff8223cf30 d wq_sysfs_attrs
+ffffffff8223cf48 d dev_attr_per_cpu
+ffffffff8223cf68 d dev_attr_max_active
+ffffffff8223cf88 d init_pid_ns
+ffffffff8223d008 d pid_max
+ffffffff8223d00c d pid_max_min
+ffffffff8223d010 d pid_max_max
+ffffffff8223d018 d init_struct_pid
+ffffffff8223d088 d text_mutex
+ffffffff8223d0b8 d param_lock
+ffffffff8223d0e8 d module_ktype
+ffffffff8223d138 d kmalloced_params
+ffffffff8223d148 d kthread_create_list
+ffffffff8223d158 d init_nsproxy
+ffffffff8223d1a0 d reboot_notifier_list
+ffffffff8223d1f0 d kernel_attrs
+ffffffff8223d240 d fscaps_attr
+ffffffff8223d260 d uevent_seqnum_attr
+ffffffff8223d280 d profiling_attr
+ffffffff8223d2a0 d kexec_loaded_attr
+ffffffff8223d2c0 d kexec_crash_loaded_attr
+ffffffff8223d2e0 d kexec_crash_size_attr
+ffffffff8223d300 d vmcoreinfo_attr
+ffffffff8223d320 d rcu_expedited_attr
+ffffffff8223d340 d rcu_normal_attr
+ffffffff8223d360 d init_groups
+ffffffff8223d368 d init_cred
+ffffffff8223d3f0 d panic_reboot_mode
+ffffffff8223d3f8 d power_off_prep_handler_list
+ffffffff8223d440 d restart_prep_handler_list
+ffffffff8223d488 d system_transition_mutex
+ffffffff8223d4b8 d ctrl_alt_del.cad_work
+ffffffff8223d4e8 d C_A_D
+ffffffff8223d4f0 d poweroff_work
+ffffffff8223d520 d poweroff_work
+ffffffff8223d550 d reboot_work.llvm.6169594305914463644
+ffffffff8223d580 d hw_protection_shutdown.allow_proceed
+ffffffff8223d590 d poweroff_cmd
+ffffffff8223d690 d run_cmd.envp
+ffffffff8223d6a8 d hw_failure_emergency_poweroff_work
+ffffffff8223d730 d reboot_attrs
+ffffffff8223d758 d reboot_mode_attr
+ffffffff8223d778 d reboot_force_attr
+ffffffff8223d798 d reboot_type_attr
+ffffffff8223d7b8 d reboot_cpu_attr
+ffffffff8223d7e0 d kern_reboot_table
+ffffffff8223d8a0 d reboot_default
+ffffffff8223d8a4 d reboot_type
+ffffffff8223d8a8 d next_cookie
+ffffffff8223d8b0 d async_global_pending
+ffffffff8223d8c0 d async_dfl_domain.llvm.7320707561625966392
+ffffffff8223d8d8 d async_done
+ffffffff8223d8f0 d smpboot_threads_lock
+ffffffff8223d920 d hotplug_threads
+ffffffff8223d930 d init_ucounts
+ffffffff8223d9c0 d set_root
+ffffffff8223da40 d user_table
+ffffffff8223dd00 d ue_int_max
+ffffffff8223dd10 d modprobe_path
+ffffffff8223de10 d kmod_concurrent_max
+ffffffff8223de18 d __request_module._rs
+ffffffff8223de40 d kmod_wq
+ffffffff8223de58 d __request_module._rs.2
+ffffffff8223de80 d __request_module._rs.4
+ffffffff8223deb0 d call_modprobe.envp
+ffffffff8223ded0 d __SCK__tp_func_sched_kthread_stop
+ffffffff8223dee0 d __SCK__tp_func_sched_kthread_stop_ret
+ffffffff8223def0 d __SCK__tp_func_sched_kthread_work_queue_work
+ffffffff8223df00 d __SCK__tp_func_sched_kthread_work_execute_start
+ffffffff8223df10 d __SCK__tp_func_sched_kthread_work_execute_end
+ffffffff8223df20 d __SCK__tp_func_sched_waking
+ffffffff8223df30 d __SCK__tp_func_sched_wakeup
+ffffffff8223df40 d __SCK__tp_func_sched_wakeup_new
+ffffffff8223df50 d __SCK__tp_func_sched_switch
+ffffffff8223df60 d __SCK__tp_func_sched_migrate_task
+ffffffff8223df70 d __SCK__tp_func_sched_process_free
+ffffffff8223df80 d __SCK__tp_func_sched_process_exit
+ffffffff8223df90 d __SCK__tp_func_sched_wait_task
+ffffffff8223dfa0 d __SCK__tp_func_sched_process_wait
+ffffffff8223dfb0 d __SCK__tp_func_sched_process_exec
+ffffffff8223dfc0 d __SCK__tp_func_sched_blocked_reason
+ffffffff8223dfd0 d __SCK__tp_func_sched_pi_setprio
+ffffffff8223dfe0 d __SCK__tp_func_sched_process_hang
+ffffffff8223dff0 d __SCK__tp_func_sched_move_numa
+ffffffff8223e000 d __SCK__tp_func_sched_stick_numa
+ffffffff8223e010 d __SCK__tp_func_sched_swap_numa
+ffffffff8223e020 d __SCK__tp_func_sched_wake_idle_without_ipi
+ffffffff8223e030 d __SCK__tp_func_pelt_thermal_tp
+ffffffff8223e040 d __SCK__tp_func_sched_update_nr_running_tp
+ffffffff8223e050 d trace_event_fields_sched_kthread_stop
+ffffffff8223e0c8 d trace_event_type_funcs_sched_kthread_stop
+ffffffff8223e0f0 d print_fmt_sched_kthread_stop
+ffffffff8223e118 d event_sched_kthread_stop
+ffffffff8223e1b0 d trace_event_fields_sched_kthread_stop_ret
+ffffffff8223e200 d trace_event_type_funcs_sched_kthread_stop_ret
+ffffffff8223e220 d print_fmt_sched_kthread_stop_ret
+ffffffff8223e238 d event_sched_kthread_stop_ret
+ffffffff8223e2d0 d trace_event_fields_sched_kthread_work_queue_work
+ffffffff8223e370 d trace_event_type_funcs_sched_kthread_work_queue_work
+ffffffff8223e390 d print_fmt_sched_kthread_work_queue_work
+ffffffff8223e3e0 d event_sched_kthread_work_queue_work
+ffffffff8223e470 d trace_event_fields_sched_kthread_work_execute_start
+ffffffff8223e4e8 d trace_event_type_funcs_sched_kthread_work_execute_start
+ffffffff8223e510 d print_fmt_sched_kthread_work_execute_start
+ffffffff8223e550 d event_sched_kthread_work_execute_start
+ffffffff8223e5e0 d trace_event_fields_sched_kthread_work_execute_end
+ffffffff8223e658 d trace_event_type_funcs_sched_kthread_work_execute_end
+ffffffff8223e680 d print_fmt_sched_kthread_work_execute_end
+ffffffff8223e6c0 d event_sched_kthread_work_execute_end
+ffffffff8223e750 d trace_event_fields_sched_wakeup_template
+ffffffff8223e818 d trace_event_type_funcs_sched_wakeup_template
+ffffffff8223e840 d print_fmt_sched_wakeup_template
+ffffffff8223e8a0 d event_sched_waking
+ffffffff8223e930 d event_sched_wakeup
+ffffffff8223e9c0 d event_sched_wakeup_new
+ffffffff8223ea50 d trace_event_fields_sched_switch
+ffffffff8223eb90 d trace_event_type_funcs_sched_switch
+ffffffff8223ebb0 d print_fmt_sched_switch
+ffffffff8223eee8 d event_sched_switch
+ffffffff8223ef80 d trace_event_fields_sched_migrate_task
+ffffffff8223f070 d trace_event_type_funcs_sched_migrate_task
+ffffffff8223f090 d print_fmt_sched_migrate_task
+ffffffff8223f100 d event_sched_migrate_task
+ffffffff8223f190 d trace_event_fields_sched_process_template
+ffffffff8223f230 d trace_event_type_funcs_sched_process_template
+ffffffff8223f250 d print_fmt_sched_process_template
+ffffffff8223f290 d event_sched_process_free
+ffffffff8223f320 d event_sched_process_exit
+ffffffff8223f3b0 d event_sched_wait_task
+ffffffff8223f440 d trace_event_fields_sched_process_wait
+ffffffff8223f4e0 d trace_event_type_funcs_sched_process_wait
+ffffffff8223f500 d print_fmt_sched_process_wait
+ffffffff8223f540 d event_sched_process_wait
+ffffffff8223f5d0 d trace_event_fields_sched_process_fork
+ffffffff8223f698 d trace_event_type_funcs_sched_process_fork
+ffffffff8223f6c0 d print_fmt_sched_process_fork
+ffffffff8223f730 d event_sched_process_fork
+ffffffff8223f7c0 d trace_event_fields_sched_process_exec
+ffffffff8223f860 d trace_event_type_funcs_sched_process_exec
+ffffffff8223f880 d print_fmt_sched_process_exec
+ffffffff8223f8d0 d event_sched_process_exec
+ffffffff8223f960 d trace_event_fields_sched_stat_template
+ffffffff8223fa00 d trace_event_type_funcs_sched_stat_template
+ffffffff8223fa20 d print_fmt_sched_stat_template
+ffffffff8223fa78 d event_sched_stat_wait
+ffffffff8223fb08 d event_sched_stat_sleep
+ffffffff8223fb98 d event_sched_stat_iowait
+ffffffff8223fc28 d event_sched_stat_blocked
+ffffffff8223fcc0 d trace_event_fields_sched_blocked_reason
+ffffffff8223fd60 d trace_event_type_funcs_sched_blocked_reason
+ffffffff8223fd80 d print_fmt_sched_blocked_reason
+ffffffff8223fdc8 d event_sched_blocked_reason
+ffffffff8223fe60 d trace_event_fields_sched_stat_runtime
+ffffffff8223ff28 d trace_event_type_funcs_sched_stat_runtime
+ffffffff8223ff50 d print_fmt_sched_stat_runtime
+ffffffff8223ffe0 d event_sched_stat_runtime
+ffffffff82240070 d trace_event_fields_sched_pi_setprio
+ffffffff82240138 d trace_event_type_funcs_sched_pi_setprio
+ffffffff82240160 d print_fmt_sched_pi_setprio
+ffffffff822401b8 d event_sched_pi_setprio
+ffffffff82240250 d trace_event_fields_sched_process_hang
+ffffffff822402c8 d trace_event_type_funcs_sched_process_hang
+ffffffff822402f0 d print_fmt_sched_process_hang
+ffffffff82240318 d event_sched_process_hang
+ffffffff822403b0 d trace_event_fields_sched_move_numa
+ffffffff822404f0 d trace_event_type_funcs_sched_move_numa
+ffffffff82240510 d print_fmt_sched_move_numa
+ffffffff822405b0 d event_sched_move_numa
+ffffffff82240640 d trace_event_fields_sched_numa_pair_template
+ffffffff822407f8 d trace_event_type_funcs_sched_numa_pair_template
+ffffffff82240820 d print_fmt_sched_numa_pair_template
+ffffffff82240928 d event_sched_stick_numa
+ffffffff822409b8 d event_sched_swap_numa
+ffffffff82240a50 d trace_event_fields_sched_wake_idle_without_ipi
+ffffffff82240aa0 d trace_event_type_funcs_sched_wake_idle_without_ipi
+ffffffff82240ac0 d print_fmt_sched_wake_idle_without_ipi
+ffffffff82240ad8 d event_sched_wake_idle_without_ipi
+ffffffff82240b68 d task_groups
+ffffffff82240b80 d cpu_files
+ffffffff82241170 d cpu_legacy_files
+ffffffff82241680 d cpu_cgrp_subsys
+ffffffff82241770 d sched_core_sysctls
+ffffffff822418b0 d sysctl_sched_uclamp_util_min
+ffffffff822418b4 d sysctl_sched_uclamp_util_max
+ffffffff822418b8 d sysctl_sched_uclamp_util_min_rt_default
+ffffffff822418c0 d uclamp_mutex
+ffffffff822418f0 d __SCK__tp_func_pelt_rt_tp
+ffffffff82241900 d __SCK__tp_func_pelt_dl_tp
+ffffffff82241910 d __SCK__tp_func_pelt_irq_tp
+ffffffff82241920 d preempt_dynamic_mode
+ffffffff82241928 d __SCK__tp_func_sched_stat_wait
+ffffffff82241938 d __SCK__tp_func_sched_stat_sleep
+ffffffff82241948 d __SCK__tp_func_sched_stat_iowait
+ffffffff82241958 d __SCK__tp_func_sched_stat_blocked
+ffffffff82241968 d __SCK__tp_func_sched_stat_runtime
+ffffffff82241978 d __SCK__tp_func_pelt_cfs_tp
+ffffffff82241988 d __SCK__tp_func_pelt_se_tp
+ffffffff82241998 d __SCK__tp_func_sched_cpu_capacity_tp
+ffffffff822419a8 d __SCK__tp_func_sched_overutilized_tp
+ffffffff822419b8 d balance_push_callback
+ffffffff822419c8 d __SCK__tp_func_sched_util_est_cfs_tp
+ffffffff822419d8 d __SCK__tp_func_sched_util_est_se_tp
+ffffffff822419e8 d __SCK__tp_func_sched_process_fork
+ffffffff822419f8 d __SCK__preempt_schedule
+ffffffff82241a08 d __SCK__preempt_schedule_notrace
+ffffffff82241a18 d __SCK__might_resched
+ffffffff82241a28 d __SCK__cond_resched
+ffffffff82241a38 d sched_nr_latency
+ffffffff82241a3c d normalized_sysctl_sched_min_granularity
+ffffffff82241a40 d normalized_sysctl_sched_latency
+ffffffff82241a44 d normalized_sysctl_sched_wakeup_granularity
+ffffffff82241a48 d shares_mutex
+ffffffff82241a80 d sched_fair_sysctls
+ffffffff82241b00 d sysctl_sched_latency
+ffffffff82241b04 d sysctl_sched_min_granularity
+ffffffff82241b08 d sysctl_sched_idle_min_granularity
+ffffffff82241b0c d sysctl_sched_wakeup_granularity
+ffffffff82241b10 d sysctl_sched_tunable_scaling
+ffffffff82241b18 d sched_pelt_multiplier.mutex
+ffffffff82241b48 d sysctl_sched_pelt_multiplier
+ffffffff82241b4c d sysctl_sched_dl_period_max
+ffffffff82241b50 d sysctl_sched_dl_period_min
+ffffffff82241b60 d sched_rt_sysctls
+ffffffff82241c60 d sysctl_sched_rr_timeslice
+ffffffff82241c68 d sched_rt_handler.mutex
+ffffffff82241c98 d sched_rr_handler.mutex
+ffffffff82241cd0 d sched_pelt_sysctls
+ffffffff82241d50 d sched_dl_sysctls
+ffffffff82241e10 d sched_rr_timeslice
+ffffffff82241e14 d sysctl_sched_rt_runtime
+ffffffff82241e18 d sysctl_sched_rt_period
+ffffffff82241e20 d root_cpuacct
+ffffffff82241f20 d files
+ffffffff822426c0 d files
+ffffffff82242a20 d cpuacct_cgrp_subsys
+ffffffff82242b10 d schedutil_gov
+ffffffff82242b78 d resched_latency_warn.latency_check_ratelimit
+ffffffff82242ba0 d sched_domain_topology
+ffffffff82242ba8 d psi_cgroups_enabled
+ffffffff82242bb8 d psi_system
+ffffffff82242ef8 d psi_enable
+ffffffff82242f00 d sched_clock_work
+ffffffff82242f30 d global_tunables_lock
+ffffffff82242f60 d sugov_tunables_ktype
+ffffffff82242fb0 d sugov_groups
+ffffffff82242fc0 d sugov_attrs
+ffffffff82242fd0 d rate_limit_us
+ffffffff82242ff0 d default_relax_domain_level
+ffffffff82243000 d default_topology
+ffffffff82243140 d asym_cap_list
+ffffffff82243150 d sched_domains_mutex
+ffffffff82243180 d sched_feat_keys
+ffffffff82243320 d __SCK__tp_func_contention_begin
+ffffffff82243330 d __SCK__tp_func_contention_end
+ffffffff82243340 d trace_event_fields_contention_begin
+ffffffff822433b8 d trace_event_type_funcs_contention_begin
+ffffffff822433e0 d print_fmt_contention_begin
+ffffffff822434b0 d event_contention_begin
+ffffffff82243540 d trace_event_fields_contention_end
+ffffffff822435b8 d trace_event_type_funcs_contention_end
+ffffffff822435e0 d print_fmt_contention_end
+ffffffff82243608 d event_contention_end
+ffffffff82243698 d max_lock_depth
+ffffffff822436a0 d cpu_latency_constraints.llvm.10487103017399536318
+ffffffff822436c8 d cpu_latency_qos_miscdev
+ffffffff82243718 d pm_chain_head.llvm.9853125709577799511
+ffffffff82243760 d g
+ffffffff822437a8 d state_attr
+ffffffff822437c8 d pm_async_attr
+ffffffff822437e8 d wakeup_count_attr
+ffffffff82243808 d mem_sleep_attr
+ffffffff82243828 d sync_on_suspend_attr
+ffffffff82243848 d wake_lock_attr
+ffffffff82243868 d wake_unlock_attr
+ffffffff82243888 d pm_freeze_timeout_attr
+ffffffff822438b0 d suspend_attrs
+ffffffff82243920 d success
+ffffffff82243940 d fail
+ffffffff82243960 d failed_freeze
+ffffffff82243980 d failed_prepare
+ffffffff822439a0 d failed_suspend
+ffffffff822439c0 d failed_suspend_late
+ffffffff822439e0 d failed_suspend_noirq
+ffffffff82243a00 d failed_resume
+ffffffff82243a20 d failed_resume_early
+ffffffff82243a40 d failed_resume_noirq
+ffffffff82243a60 d last_failed_dev
+ffffffff82243a80 d last_failed_errno
+ffffffff82243aa0 d last_failed_step
+ffffffff82243ac0 d pm_async_enabled
+ffffffff82243ac4 d sync_on_suspend_enabled
+ffffffff82243ac8 d vt_switch_mutex
+ffffffff82243af8 d pm_vt_switch_list
+ffffffff82243b08 d mem_sleep_default
+ffffffff82243b10 d s2idle_wait_head
+ffffffff82243b28 d mem_sleep_current
+ffffffff82243b30 d wakelocks_lock
+ffffffff82243b60 d parent_irqs
+ffffffff82243b70 d leaf_irqs
+ffffffff82243b80 d wakeup_reason_pm_notifier_block
+ffffffff82243b98 d attr_group
+ffffffff82243bc0 d attrs
+ffffffff82243bd8 d resume_reason
+ffffffff82243bf8 d suspend_time
+ffffffff82243c18 d __SCK__tp_func_console
+ffffffff82243c30 d trace_event_fields_console
+ffffffff82243c80 d trace_event_type_funcs_console
+ffffffff82243ca0 d print_fmt_console
+ffffffff82243cb8 d event_console
+ffffffff82243d48 d log_wait
+ffffffff82243d60 d log_buf
+ffffffff82243d68 d log_buf_len
+ffffffff82243d70 d prb
+ffffffff82243d78 d printk_rb_static
+ffffffff82243dd0 d printk_time
+ffffffff82243dd4 d do_syslog.saved_console_loglevel
+ffffffff82243dd8 d syslog_lock
+ffffffff82243e08 d console_suspend_enabled
+ffffffff82243e10 d console_sem
+ffffffff82243e28 d preferred_console
+ffffffff82243e30 d dump_list
+ffffffff82243e40 d printk_cpu_sync_owner
+ffffffff82243e50 d _printk_rb_static_descs
+ffffffff8225be50 d _printk_rb_static_infos
+ffffffff822b3e50 d console_printk
+ffffffff822b3e60 d printk_ratelimit_state
+ffffffff822b3e88 d devkmsg_log_str
+ffffffff822b3ea0 d printk_sysctls.llvm.6317896902096129061
+ffffffff822b40a0 d nr_irqs
+ffffffff822b40a8 d irq_desc_tree.llvm.3268937999608831060
+ffffffff822b40b8 d sparse_irq_lock.llvm.3268937999608831060
+ffffffff822b40e8 d irq_kobj_type
+ffffffff822b4140 d irq_groups
+ffffffff822b4150 d irq_attrs
+ffffffff822b4190 d per_cpu_count_attr
+ffffffff822b41b0 d chip_name_attr
+ffffffff822b41d0 d hwirq_attr
+ffffffff822b41f0 d wakeup_attr
+ffffffff822b4210 d name_attr
+ffffffff822b4230 d actions_attr
+ffffffff822b4250 d print_irq_desc.ratelimit
+ffffffff822b4278 d print_irq_desc.ratelimit
+ffffffff822b42a0 d poll_spurious_irq_timer
+ffffffff822b42d8 d report_bad_irq.count
+ffffffff822b42e0 d resend_tasklet
+ffffffff822b4340 d chained_action
+ffffffff822b43c0 d no_irq_chip
+ffffffff822b44c8 d dummy_irq_chip
+ffffffff822b45d0 d probing_active
+ffffffff822b4600 d irq_domain_mutex
+ffffffff822b4630 d irq_domain_list
+ffffffff822b4640 d register_irq_proc.register_lock
+ffffffff822b4670 d migrate_one_irq._rs
+ffffffff822b4698 d irq_pm_syscore_ops
+ffffffff822b46c0 d msi_domain_ops_default
+ffffffff822b4700 d __SCK__tp_func_irq_matrix_online
+ffffffff822b4710 d __SCK__tp_func_irq_matrix_offline
+ffffffff822b4720 d __SCK__tp_func_irq_matrix_reserve
+ffffffff822b4730 d __SCK__tp_func_irq_matrix_remove_reserved
+ffffffff822b4740 d __SCK__tp_func_irq_matrix_assign_system
+ffffffff822b4750 d __SCK__tp_func_irq_matrix_alloc_reserved
+ffffffff822b4760 d __SCK__tp_func_irq_matrix_reserve_managed
+ffffffff822b4770 d __SCK__tp_func_irq_matrix_remove_managed
+ffffffff822b4780 d __SCK__tp_func_irq_matrix_alloc_managed
+ffffffff822b4790 d __SCK__tp_func_irq_matrix_assign
+ffffffff822b47a0 d __SCK__tp_func_irq_matrix_alloc
+ffffffff822b47b0 d __SCK__tp_func_irq_matrix_free
+ffffffff822b47c0 d trace_event_fields_irq_matrix_global
+ffffffff822b4890 d trace_event_fields_irq_matrix_global_update
+ffffffff822b4980 d trace_event_fields_irq_matrix_cpu
+ffffffff822b4b38 d trace_event_type_funcs_irq_matrix_global
+ffffffff822b4b60 d print_fmt_irq_matrix_global
+ffffffff822b4bf8 d event_irq_matrix_online
+ffffffff822b4c88 d event_irq_matrix_offline
+ffffffff822b4d18 d event_irq_matrix_reserve
+ffffffff822b4da8 d event_irq_matrix_remove_reserved
+ffffffff822b4e38 d trace_event_type_funcs_irq_matrix_global_update
+ffffffff822b4e60 d print_fmt_irq_matrix_global_update
+ffffffff822b4f08 d event_irq_matrix_assign_system
+ffffffff822b4f98 d trace_event_type_funcs_irq_matrix_cpu
+ffffffff822b4fc0 d print_fmt_irq_matrix_cpu
+ffffffff822b50d8 d event_irq_matrix_alloc_reserved
+ffffffff822b5168 d event_irq_matrix_reserve_managed
+ffffffff822b51f8 d event_irq_matrix_remove_managed
+ffffffff822b5288 d event_irq_matrix_alloc_managed
+ffffffff822b5318 d event_irq_matrix_assign
+ffffffff822b53a8 d event_irq_matrix_alloc
+ffffffff822b5438 d event_irq_matrix_free
+ffffffff822b54c8 d __SCK__tp_func_rcu_dyntick
+ffffffff822b54d8 d __SCK__tp_func_rcu_torture_read
+ffffffff822b54f0 d trace_event_fields_rcu_utilization
+ffffffff822b5540 d trace_event_type_funcs_rcu_utilization
+ffffffff822b5560 d print_fmt_rcu_utilization
+ffffffff822b5570 d event_rcu_utilization
+ffffffff822b5600 d trace_event_fields_rcu_grace_period
+ffffffff822b56a0 d trace_event_type_funcs_rcu_grace_period
+ffffffff822b56c0 d print_fmt_rcu_grace_period
+ffffffff822b56f8 d event_rcu_grace_period
+ffffffff822b5790 d trace_event_fields_rcu_future_grace_period
+ffffffff822b58d0 d trace_event_type_funcs_rcu_future_grace_period
+ffffffff822b58f0 d print_fmt_rcu_future_grace_period
+ffffffff822b5978 d event_rcu_future_grace_period
+ffffffff822b5a10 d trace_event_fields_rcu_grace_period_init
+ffffffff822b5b28 d trace_event_type_funcs_rcu_grace_period_init
+ffffffff822b5b50 d print_fmt_rcu_grace_period_init
+ffffffff822b5bb8 d event_rcu_grace_period_init
+ffffffff822b5c50 d trace_event_fields_rcu_exp_grace_period
+ffffffff822b5cf0 d trace_event_type_funcs_rcu_exp_grace_period
+ffffffff822b5d10 d print_fmt_rcu_exp_grace_period
+ffffffff822b5d48 d event_rcu_exp_grace_period
+ffffffff822b5de0 d trace_event_fields_rcu_exp_funnel_lock
+ffffffff822b5ed0 d trace_event_type_funcs_rcu_exp_funnel_lock
+ffffffff822b5ef0 d print_fmt_rcu_exp_funnel_lock
+ffffffff822b5f48 d event_rcu_exp_funnel_lock
+ffffffff822b5fe0 d trace_event_fields_rcu_nocb_wake
+ffffffff822b6080 d trace_event_type_funcs_rcu_nocb_wake
+ffffffff822b60a0 d print_fmt_rcu_nocb_wake
+ffffffff822b60d0 d event_rcu_nocb_wake
+ffffffff822b6160 d trace_event_fields_rcu_preempt_task
+ffffffff822b6200 d trace_event_type_funcs_rcu_preempt_task
+ffffffff822b6220 d print_fmt_rcu_preempt_task
+ffffffff822b6258 d event_rcu_preempt_task
+ffffffff822b62f0 d trace_event_fields_rcu_unlock_preempted_task
+ffffffff822b6390 d trace_event_type_funcs_rcu_unlock_preempted_task
+ffffffff822b63b0 d print_fmt_rcu_unlock_preempted_task
+ffffffff822b63e8 d event_rcu_unlock_preempted_task
+ffffffff822b6480 d trace_event_fields_rcu_quiescent_state_report
+ffffffff822b65e8 d trace_event_type_funcs_rcu_quiescent_state_report
+ffffffff822b6610 d print_fmt_rcu_quiescent_state_report
+ffffffff822b6698 d event_rcu_quiescent_state_report
+ffffffff822b6730 d trace_event_fields_rcu_fqs
+ffffffff822b67f8 d trace_event_type_funcs_rcu_fqs
+ffffffff822b6820 d print_fmt_rcu_fqs
+ffffffff822b6868 d event_rcu_fqs
+ffffffff822b6900 d trace_event_fields_rcu_stall_warning
+ffffffff822b6978 d trace_event_type_funcs_rcu_stall_warning
+ffffffff822b69a0 d print_fmt_rcu_stall_warning
+ffffffff822b69c0 d event_rcu_stall_warning
+ffffffff822b6a50 d trace_event_fields_rcu_dyntick
+ffffffff822b6b18 d trace_event_type_funcs_rcu_dyntick
+ffffffff822b6b40 d print_fmt_rcu_dyntick
+ffffffff822b6ba0 d event_rcu_dyntick
+ffffffff822b6c30 d trace_event_fields_rcu_callback
+ffffffff822b6cf8 d trace_event_type_funcs_rcu_callback
+ffffffff822b6d20 d print_fmt_rcu_callback
+ffffffff822b6d68 d event_rcu_callback
+ffffffff822b6e00 d trace_event_fields_rcu_segcb_stats
+ffffffff822b6ea0 d trace_event_type_funcs_rcu_segcb_stats
+ffffffff822b6ec0 d print_fmt_rcu_segcb_stats
+ffffffff822b6fc0 d event_rcu_segcb_stats
+ffffffff822b7050 d trace_event_fields_rcu_kvfree_callback
+ffffffff822b7118 d trace_event_type_funcs_rcu_kvfree_callback
+ffffffff822b7140 d print_fmt_rcu_kvfree_callback
+ffffffff822b7190 d event_rcu_kvfree_callback
+ffffffff822b7220 d trace_event_fields_rcu_batch_start
+ffffffff822b72c0 d trace_event_type_funcs_rcu_batch_start
+ffffffff822b72e0 d print_fmt_rcu_batch_start
+ffffffff822b7320 d event_rcu_batch_start
+ffffffff822b73b0 d trace_event_fields_rcu_invoke_callback
+ffffffff822b7450 d trace_event_type_funcs_rcu_invoke_callback
+ffffffff822b7470 d print_fmt_rcu_invoke_callback
+ffffffff822b74a8 d event_rcu_invoke_callback
+ffffffff822b7540 d trace_event_fields_rcu_invoke_kvfree_callback
+ffffffff822b75e0 d trace_event_type_funcs_rcu_invoke_kvfree_callback
+ffffffff822b7600 d print_fmt_rcu_invoke_kvfree_callback
+ffffffff822b7640 d event_rcu_invoke_kvfree_callback
+ffffffff822b76d0 d trace_event_fields_rcu_invoke_kfree_bulk_callback
+ffffffff822b7770 d trace_event_type_funcs_rcu_invoke_kfree_bulk_callback
+ffffffff822b7790 d print_fmt_rcu_invoke_kfree_bulk_callback
+ffffffff822b77d8 d event_rcu_invoke_kfree_bulk_callback
+ffffffff822b7870 d trace_event_fields_rcu_batch_end
+ffffffff822b7988 d trace_event_type_funcs_rcu_batch_end
+ffffffff822b79b0 d print_fmt_rcu_batch_end
+ffffffff822b7a50 d event_rcu_batch_end
+ffffffff822b7ae0 d trace_event_fields_rcu_torture_read
+ffffffff822b7bd0 d trace_event_type_funcs_rcu_torture_read
+ffffffff822b7bf0 d print_fmt_rcu_torture_read
+ffffffff822b7c58 d event_rcu_torture_read
+ffffffff822b7cf0 d trace_event_fields_rcu_barrier
+ffffffff822b7de0 d trace_event_type_funcs_rcu_barrier
+ffffffff822b7e00 d print_fmt_rcu_barrier
+ffffffff822b7e58 d event_rcu_barrier
+ffffffff822b7ee8 d rcu_expedited_nesting
+ffffffff822b7ef0 d rcu_tasks
+ffffffff822b8038 d tasks_rcu_exit_srcu
+ffffffff822b8218 d __SCK__tp_func_rcu_grace_period
+ffffffff822b8228 d __SCK__tp_func_rcu_utilization
+ffffffff822b8238 d __SCK__tp_func_rcu_kvfree_callback
+ffffffff822b8248 d __SCK__tp_func_rcu_callback
+ffffffff822b8258 d __SCK__tp_func_rcu_segcb_stats
+ffffffff822b8268 d __SCK__tp_func_rcu_future_grace_period
+ffffffff822b8278 d __SCK__tp_func_rcu_stall_warning
+ffffffff822b8288 d __SCK__tp_func_rcu_barrier
+ffffffff822b8298 d __SCK__tp_func_rcu_quiescent_state_report
+ffffffff822b82a8 d __SCK__tp_func_rcu_unlock_preempted_task
+ffffffff822b82b8 d __SCK__tp_func_rcu_grace_period_init
+ffffffff822b82c8 d __SCK__tp_func_rcu_fqs
+ffffffff822b82d8 d __SCK__tp_func_rcu_batch_start
+ffffffff822b82e8 d __SCK__tp_func_rcu_batch_end
+ffffffff822b82f8 d __SCK__tp_func_rcu_invoke_callback
+ffffffff822b8308 d __SCK__tp_func_rcu_invoke_kfree_bulk_callback
+ffffffff822b8318 d __SCK__tp_func_rcu_invoke_kvfree_callback
+ffffffff822b8328 d __SCK__tp_func_rcu_nocb_wake
+ffffffff822b8338 d __SCK__tp_func_rcu_exp_grace_period
+ffffffff822b8348 d __SCK__tp_func_rcu_exp_funnel_lock
+ffffffff822b8358 d __SCK__tp_func_rcu_preempt_task
+ffffffff822b8368 d exp_holdoff
+ffffffff822b8370 d counter_wrap_check
+ffffffff822b8378 d convert_to_big
+ffffffff822b8380 d srcu_retry_check_delay
+ffffffff822b8388 d srcu_max_nodelay_phase
+ffffffff822b8390 d srcu_max_nodelay
+ffffffff822b8398 d srcu_boot_list
+ffffffff822b83a8 d srcu_module_nb
+ffffffff822b83c0 d rcu_name
+ffffffff822b83cc d use_softirq
+ffffffff822b83d0 d rcu_fanout_leaf
+ffffffff822b83d4 d num_rcu_lvl
+ffffffff822b83dc d kthread_prio
+ffffffff822b83e0 d rcu_min_cached_objs
+ffffffff822b83e4 d rcu_delay_page_cache_fill_msec
+ffffffff822b83e8 d blimit
+ffffffff822b83f0 d qhimark
+ffffffff822b83f8 d qlowmark
+ffffffff822b8400 d qovld
+ffffffff822b8408 d rcu_divisor
+ffffffff822b8410 d rcu_resched_ns
+ffffffff822b8418 d jiffies_till_sched_qs
+ffffffff822b8420 d jiffies_till_first_fqs
+ffffffff822b8428 d jiffies_till_next_fqs
+ffffffff822b8440 d rcu_state
+ffffffff822b8ec0 d rcu_init.rcu_pm_notify_nb
+ffffffff822b8ed8 d qovld_calc
+ffffffff822b8ee0 d nocb_nobypass_lim_per_jiffy
+ffffffff822b8ee4 d rcu_nocb_gp_stride
+ffffffff822b8ee8 d rcu_cpu_thread_spec
+ffffffff822b8f48 d kfree_rcu_shrinker
+ffffffff822b8f88 d rcu_panic_block
+ffffffff822b8fa0 d __SCK__tp_func_swiotlb_bounced
+ffffffff822b8fb0 d trace_event_fields_swiotlb_bounced
+ffffffff822b90a0 d trace_event_type_funcs_swiotlb_bounced
+ffffffff822b90c0 d print_fmt_swiotlb_bounced
+ffffffff822b9170 d event_swiotlb_bounced
+ffffffff822b9200 d default_nslabs.llvm.18236869237113676970
+ffffffff822b9208 d swiotlb_tbl_map_single._rs
+ffffffff822b9230 d swiotlb_tbl_map_single._rs.12
+ffffffff822b9258 d __SCK__tp_func_sys_enter
+ffffffff822b9268 d __SCK__tp_func_sys_exit
+ffffffff822b9280 d trace_event_fields_sys_enter
+ffffffff822b92f8 d trace_event_type_funcs_sys_enter
+ffffffff822b9320 d print_fmt_sys_enter
+ffffffff822b93a8 d event_sys_enter
+ffffffff822b9440 d trace_event_fields_sys_exit
+ffffffff822b94b8 d trace_event_type_funcs_sys_exit
+ffffffff822b94e0 d print_fmt_sys_exit
+ffffffff822b9508 d event_sys_exit
+ffffffff822b9598 d __SCK__irqentry_exit_cond_resched
+ffffffff822b95a8 d __SCK__tp_func_module_load
+ffffffff822b95b8 d __SCK__tp_func_module_free
+ffffffff822b95c8 d __SCK__tp_func_module_request
+ffffffff822b95e0 d trace_event_fields_module_load
+ffffffff822b9658 d trace_event_type_funcs_module_load
+ffffffff822b9680 d print_fmt_module_load
+ffffffff822b9728 d event_module_load
+ffffffff822b97c0 d trace_event_fields_module_free
+ffffffff822b9810 d trace_event_type_funcs_module_free
+ffffffff822b9830 d print_fmt_module_free
+ffffffff822b9848 d event_module_free
+ffffffff822b98e0 d trace_event_fields_module_request
+ffffffff822b9980 d trace_event_type_funcs_module_request
+ffffffff822b99a0 d print_fmt_module_request
+ffffffff822b99f0 d event_module_request
+ffffffff822b9a80 d module_mutex
+ffffffff822b9ab0 d module_notify_list.llvm.9924284733682672630
+ffffffff822b9af8 d module_uevent
+ffffffff822b9b30 d modinfo_version
+ffffffff822b9b68 d modinfo_srcversion
+ffffffff822b9ba0 d modinfo_scmversion
+ffffffff822b9bd8 d modinfo_initstate
+ffffffff822b9c10 d modinfo_coresize
+ffffffff822b9c48 d modinfo_initsize
+ffffffff822b9c80 d modinfo_taint
+ffffffff822b9cb8 d module_wq
+ffffffff822b9cd0 d init_free_wq
+ffffffff822b9d00 d modules
+ffffffff822b9d10 d modinfo_attrs_count
+ffffffff822b9d20 d modinfo_attrs
+ffffffff822b9d68 d task_exit_notifier.llvm.13204379759103738364
+ffffffff822b9db0 d munmap_notifier.llvm.13204379759103738364
+ffffffff822b9df8 d profile_flip_mutex
+ffffffff822b9e28 d __SCK__tp_func_timer_init
+ffffffff822b9e38 d __SCK__tp_func_timer_start
+ffffffff822b9e48 d __SCK__tp_func_timer_expire_entry
+ffffffff822b9e58 d __SCK__tp_func_timer_expire_exit
+ffffffff822b9e68 d __SCK__tp_func_timer_cancel
+ffffffff822b9e78 d __SCK__tp_func_itimer_state
+ffffffff822b9e88 d __SCK__tp_func_itimer_expire
+ffffffff822b9ea0 d trace_event_fields_timer_class
+ffffffff822b9ef0 d trace_event_type_funcs_timer_class
+ffffffff822b9f10 d print_fmt_timer_class
+ffffffff822b9f28 d event_timer_init
+ffffffff822b9fc0 d trace_event_fields_timer_start
+ffffffff822ba0b0 d trace_event_type_funcs_timer_start
+ffffffff822ba0d0 d print_fmt_timer_start
+ffffffff822ba238 d event_timer_start
+ffffffff822ba2d0 d trace_event_fields_timer_expire_entry
+ffffffff822ba398 d trace_event_type_funcs_timer_expire_entry
+ffffffff822ba3c0 d print_fmt_timer_expire_entry
+ffffffff822ba420 d event_timer_expire_entry
+ffffffff822ba4b0 d event_timer_expire_exit
+ffffffff822ba540 d event_timer_cancel
+ffffffff822ba5d0 d trace_event_fields_hrtimer_init
+ffffffff822ba670 d trace_event_type_funcs_hrtimer_init
+ffffffff822ba690 d print_fmt_hrtimer_init
+ffffffff822ba8a8 d event_hrtimer_init
+ffffffff822ba940 d trace_event_fields_hrtimer_start
+ffffffff822baa30 d trace_event_type_funcs_hrtimer_start
+ffffffff822baa50 d print_fmt_hrtimer_start
+ffffffff822bac60 d event_hrtimer_start
+ffffffff822bacf0 d trace_event_fields_hrtimer_expire_entry
+ffffffff822bad90 d trace_event_type_funcs_hrtimer_expire_entry
+ffffffff822badb0 d print_fmt_hrtimer_expire_entry
+ffffffff822bae10 d event_hrtimer_expire_entry
+ffffffff822baea0 d trace_event_fields_hrtimer_class
+ffffffff822baef0 d trace_event_type_funcs_hrtimer_class
+ffffffff822baf10 d print_fmt_hrtimer_class
+ffffffff822baf30 d event_hrtimer_expire_exit
+ffffffff822bafc0 d event_hrtimer_cancel
+ffffffff822bb050 d trace_event_fields_itimer_state
+ffffffff822bb168 d trace_event_type_funcs_itimer_state
+ffffffff822bb190 d print_fmt_itimer_state
+ffffffff822bb248 d event_itimer_state
+ffffffff822bb2e0 d trace_event_fields_itimer_expire
+ffffffff822bb380 d trace_event_type_funcs_itimer_expire
+ffffffff822bb3a0 d print_fmt_itimer_expire
+ffffffff822bb3e8 d event_itimer_expire
+ffffffff822bb480 d trace_event_fields_tick_stop
+ffffffff822bb4f8 d trace_event_type_funcs_tick_stop
+ffffffff822bb520 d print_fmt_tick_stop
+ffffffff822bb670 d event_tick_stop
+ffffffff822bb700 d timer_update_work.llvm.3723309689587386746
+ffffffff822bb730 d timer_sysctl
+ffffffff822bb7b0 d sysctl_timer_migration
+ffffffff822bb7b8 d timer_keys_mutex
+ffffffff822bb7e8 d __SCK__tp_func_hrtimer_start
+ffffffff822bb7f8 d __SCK__tp_func_hrtimer_cancel
+ffffffff822bb808 d __SCK__tp_func_hrtimer_init
+ffffffff822bb818 d __SCK__tp_func_hrtimer_expire_entry
+ffffffff822bb828 d __SCK__tp_func_hrtimer_expire_exit
+ffffffff822bb838 d __SCK__tp_func_tick_stop
+ffffffff822bb848 d hrtimer_work.llvm.5156696644657162503
+ffffffff822bb880 d migration_cpu_base
+ffffffff822bbac0 d tk_fast_mono
+ffffffff822bbb40 d tk_fast_raw
+ffffffff822bbbb8 d dummy_clock
+ffffffff822bbc70 d timekeeping_syscore_ops
+ffffffff822bbc98 d tick_usec
+ffffffff822bbca0 d time_status
+ffffffff822bbca8 d time_maxerror
+ffffffff822bbcb0 d time_esterror
+ffffffff822bbcb8 d ntp_next_leap_sec
+ffffffff822bbcc0 d sync_work
+ffffffff822bbcf0 d time_constant
+ffffffff822bbcf8 d sync_hw_clock.offset_nsec
+ffffffff822bbd00 d watchdog_list
+ffffffff822bbd10 d max_cswd_read_retries
+ffffffff822bbd18 d verify_n_cpus
+ffffffff822bbd20 d clocksource_list
+ffffffff822bbd30 d clocksource_mutex
+ffffffff822bbd60 d watchdog_work
+ffffffff822bbd90 d clocksource_subsys
+ffffffff822bbe68 d device_clocksource
+ffffffff822bc1e0 d clocksource_groups
+ffffffff822bc1f0 d clocksource_attrs
+ffffffff822bc210 d dev_attr_current_clocksource
+ffffffff822bc230 d dev_attr_unbind_clocksource
+ffffffff822bc250 d dev_attr_available_clocksource
+ffffffff822bc270 d clocksource_jiffies
+ffffffff822bc328 d __SCK__tp_func_alarmtimer_suspend
+ffffffff822bc338 d __SCK__tp_func_alarmtimer_fired
+ffffffff822bc348 d __SCK__tp_func_alarmtimer_start
+ffffffff822bc358 d __SCK__tp_func_alarmtimer_cancel
+ffffffff822bc370 d trace_event_fields_alarmtimer_suspend
+ffffffff822bc3e8 d trace_event_type_funcs_alarmtimer_suspend
+ffffffff822bc410 d print_fmt_alarmtimer_suspend
+ffffffff822bc528 d event_alarmtimer_suspend
+ffffffff822bc5c0 d trace_event_fields_alarm_class
+ffffffff822bc688 d trace_event_type_funcs_alarm_class
+ffffffff822bc6b0 d print_fmt_alarm_class
+ffffffff822bc7e8 d event_alarmtimer_fired
+ffffffff822bc878 d event_alarmtimer_start
+ffffffff822bc908 d event_alarmtimer_cancel
+ffffffff822bc998 d alarmtimer_driver
+ffffffff822bca88 d alarmtimer_rtc_interface
+ffffffff822bcab0 d clockevents_mutex
+ffffffff822bcae0 d clockevent_devices
+ffffffff822bcaf0 d clockevents_released
+ffffffff822bcb00 d clockevents_subsys
+ffffffff822bcbd8 d dev_attr_current_device
+ffffffff822bcbf8 d dev_attr_unbind_device
+ffffffff822bcc18 d tick_bc_dev
+ffffffff822bcfc0 d ce_broadcast_hrtimer
+ffffffff822bd0c0 d futex_atomic_op_inuser._rs
+ffffffff822bd0f0 d dma_chan_busy
+ffffffff822bd170 d setup_max_cpus
+ffffffff822bd180 d kexec_core_sysctls
+ffffffff822bd200 d crashk_res
+ffffffff822bd260 d crashk_low_res
+ffffffff822bd2c0 d __SCK__tp_func_cgroup_setup_root
+ffffffff822bd2d0 d __SCK__tp_func_cgroup_destroy_root
+ffffffff822bd2e0 d __SCK__tp_func_cgroup_remount
+ffffffff822bd2f0 d __SCK__tp_func_cgroup_mkdir
+ffffffff822bd300 d __SCK__tp_func_cgroup_rmdir
+ffffffff822bd310 d __SCK__tp_func_cgroup_release
+ffffffff822bd320 d __SCK__tp_func_cgroup_rename
+ffffffff822bd330 d __SCK__tp_func_cgroup_freeze
+ffffffff822bd340 d __SCK__tp_func_cgroup_unfreeze
+ffffffff822bd350 d __SCK__tp_func_cgroup_attach_task
+ffffffff822bd360 d __SCK__tp_func_cgroup_transfer_tasks
+ffffffff822bd370 d __SCK__tp_func_cgroup_notify_populated
+ffffffff822bd380 d __SCK__tp_func_cgroup_notify_frozen
+ffffffff822bd390 d trace_event_fields_cgroup_root
+ffffffff822bd430 d trace_event_type_funcs_cgroup_root
+ffffffff822bd450 d print_fmt_cgroup_root
+ffffffff822bd498 d event_cgroup_setup_root
+ffffffff822bd528 d event_cgroup_destroy_root
+ffffffff822bd5b8 d event_cgroup_remount
+ffffffff822bd650 d trace_event_fields_cgroup
+ffffffff822bd718 d trace_event_type_funcs_cgroup
+ffffffff822bd740 d print_fmt_cgroup
+ffffffff822bd798 d event_cgroup_mkdir
+ffffffff822bd828 d event_cgroup_rmdir
+ffffffff822bd8b8 d event_cgroup_release
+ffffffff822bd948 d event_cgroup_rename
+ffffffff822bd9d8 d event_cgroup_freeze
+ffffffff822bda68 d event_cgroup_unfreeze
+ffffffff822bdb00 d trace_event_fields_cgroup_migrate
+ffffffff822bdc18 d trace_event_type_funcs_cgroup_migrate
+ffffffff822bdc40 d print_fmt_cgroup_migrate
+ffffffff822bdce0 d event_cgroup_attach_task
+ffffffff822bdd70 d event_cgroup_transfer_tasks
+ffffffff822bde00 d trace_event_fields_cgroup_event
+ffffffff822bdef0 d trace_event_type_funcs_cgroup_event
+ffffffff822bdf10 d print_fmt_cgroup_event
+ffffffff822bdf78 d event_cgroup_notify_populated
+ffffffff822be008 d event_cgroup_notify_frozen
+ffffffff822be098 d cgroup_mutex
+ffffffff822be0c8 d cgroup_threadgroup_rwsem
+ffffffff822be130 d cgroup_subsys
+ffffffff822be168 d cpuset_cgrp_subsys_enabled_key
+ffffffff822be178 d cpuset_cgrp_subsys_on_dfl_key
+ffffffff822be188 d cpu_cgrp_subsys_enabled_key
+ffffffff822be198 d cpu_cgrp_subsys_on_dfl_key
+ffffffff822be1a8 d cpuacct_cgrp_subsys_enabled_key
+ffffffff822be1b8 d cpuacct_cgrp_subsys_on_dfl_key
+ffffffff822be1c8 d io_cgrp_subsys_enabled_key
+ffffffff822be1d8 d io_cgrp_subsys_on_dfl_key
+ffffffff822be1e8 d memory_cgrp_subsys_enabled_key
+ffffffff822be1f8 d memory_cgrp_subsys_on_dfl_key
+ffffffff822be208 d freezer_cgrp_subsys_enabled_key
+ffffffff822be218 d freezer_cgrp_subsys_on_dfl_key
+ffffffff822be228 d net_prio_cgrp_subsys_enabled_key
+ffffffff822be238 d net_prio_cgrp_subsys_on_dfl_key
+ffffffff822be248 d cgrp_dfl_root
+ffffffff822bf770 d cgroup_roots
+ffffffff822bf780 d init_css_set
+ffffffff822bf928 d init_cgroup_ns
+ffffffff822bf958 d css_set_count
+ffffffff822bf960 d cgroup_kf_syscall_ops
+ffffffff822bf9a8 d cgroup2_fs_type
+ffffffff822bf9f0 d cgroup_fs_type
+ffffffff822bfa38 d cgroup_hierarchy_idr
+ffffffff822bfa50 d cgroup_base_files
+ffffffff822c0550 d cgroup_psi_files
+ffffffff822c0a60 d cpuset_fs_type
+ffffffff822c0aa8 d css_serial_nr_next
+ffffffff822c0ab0 d cgroup_kf_ops
+ffffffff822c0b20 d cgroup_kf_single_ops
+ffffffff822c0b90 d cgroup_sysfs_attrs
+ffffffff822c0ba8 d cgroup_delegate_attr
+ffffffff822c0bc8 d cgroup_features_attr
+ffffffff822c0be8 d cgroup1_kf_syscall_ops
+ffffffff822c0c30 d cgroup1_base_files
+ffffffff822c1218 d freezer_cgrp_subsys
+ffffffff822c1308 d freezer_mutex
+ffffffff822c1338 d cpuset_rwsem
+ffffffff822c13a0 d dfl_files
+ffffffff822c1990 d legacy_files
+ffffffff822c2638 d top_cpuset
+ffffffff822c27e0 d cpuset_hotplug_work.llvm.1604414782671841489
+ffffffff822c2810 d cpuset_track_online_nodes_nb
+ffffffff822c2828 d generate_sched_domains.warnings
+ffffffff822c2830 d cpuset_attach_wq
+ffffffff822c2848 d cpuset_cgrp_subsys
+ffffffff822c2938 d stop_cpus_mutex
+ffffffff822c2968 d cpu_stop_threads
+ffffffff822c29c8 d audit_failure
+ffffffff822c29cc d audit_backlog_limit
+ffffffff822c29d0 d audit_backlog_wait_time
+ffffffff822c29d8 d kauditd_wait
+ffffffff822c29f0 d audit_backlog_wait
+ffffffff822c2a08 d audit_sig_pid
+ffffffff822c2a0c d audit_sig_uid.0
+ffffffff822c2a10 d af
+ffffffff822c2a20 d audit_rules_list
+ffffffff822c2aa0 d prio_high
+ffffffff822c2aa8 d prio_low
+ffffffff822c2ab0 d audit_filter_mutex
+ffffffff822c2ae0 d audit_filter_list
+ffffffff822c2b60 d prune_list
+ffffffff822c2b70 d tree_list
+ffffffff822c2b80 d panic_block
+ffffffff822c2b98 d hung_task_init.hungtask_pm_notify_nb
+ffffffff822c2bb0 d hung_task_sysctls
+ffffffff822c2d70 d watchdog_cpumask_bits
+ffffffff822c2d78 d watchdog_mutex.llvm.15098045955768405557
+ffffffff822c2db0 d watchdog_sysctls
+ffffffff822c2fb0 d seccomp_actions_logged
+ffffffff822c2fc0 d seccomp_sysctl_path
+ffffffff822c2fe0 d seccomp_sysctl_table
+ffffffff822c30a0 d uts_kern_table
+ffffffff822c3260 d hostname_poll
+ffffffff822c3280 d domainname_poll
+ffffffff822c32a0 d uts_root_table
+ffffffff822c3320 d tracepoint_srcu
+ffffffff822c3500 d tracepoints_mutex
+ffffffff822c3530 d tracepoint_module_list_mutex
+ffffffff822c3560 d tracepoint_notify_list
+ffffffff822c35a8 d tracepoint_module_list
+ffffffff822c35b8 d tracepoint_module_nb
+ffffffff822c35d0 d ftrace_export_lock
+ffffffff822c3600 d ftrace_trace_arrays
+ffffffff822c3610 d trace_types_lock
+ffffffff822c3640 d global_trace.llvm.9205078670796757768
+ffffffff822c3778 d tracepoint_printk_mutex
+ffffffff822c37b0 d trace_options
+ffffffff822c3880 d trace_buf_size
+ffffffff822c3888 d tracing_err_log_lock
+ffffffff822c38b8 d all_cpu_access_lock
+ffffffff822c38f8 d trace_module_nb
+ffffffff822c3910 d trace_module_nb
+ffffffff822c3928 d trace_panic_notifier
+ffffffff822c3940 d trace_die_notifier
+ffffffff822c3958 d trace_event_sem
+ffffffff822c3998 d next_event_type
+ffffffff822c39a0 d ftrace_event_list
+ffffffff822c39b0 d trace_fn_event
+ffffffff822c39e0 d trace_ctx_event
+ffffffff822c3a10 d trace_wake_event
+ffffffff822c3a40 d trace_stack_event
+ffffffff822c3a70 d trace_user_stack_event
+ffffffff822c3aa0 d trace_bputs_event
+ffffffff822c3ad0 d trace_bprint_event
+ffffffff822c3b00 d trace_print_event
+ffffffff822c3b30 d trace_hwlat_event
+ffffffff822c3b60 d trace_osnoise_event
+ffffffff822c3b90 d trace_timerlat_event
+ffffffff822c3bc0 d trace_raw_data_event
+ffffffff822c3bf0 d trace_func_repeats_event
+ffffffff822c3c20 d trace_fn_funcs
+ffffffff822c3c40 d trace_ctx_funcs
+ffffffff822c3c60 d trace_wake_funcs
+ffffffff822c3c80 d trace_stack_funcs
+ffffffff822c3ca0 d trace_user_stack_funcs
+ffffffff822c3cc0 d trace_bputs_funcs
+ffffffff822c3ce0 d trace_bprint_funcs
+ffffffff822c3d00 d trace_print_funcs
+ffffffff822c3d20 d trace_hwlat_funcs
+ffffffff822c3d40 d trace_osnoise_funcs
+ffffffff822c3d60 d trace_timerlat_funcs
+ffffffff822c3d80 d trace_raw_data_funcs
+ffffffff822c3da0 d trace_func_repeats_funcs
+ffffffff822c3dc0 d all_stat_sessions_mutex
+ffffffff822c3df0 d all_stat_sessions
+ffffffff822c3e00 d btrace_mutex
+ffffffff822c3e30 d trace_bprintk_fmt_list
+ffffffff822c3e40 d module_trace_bprintk_format_nb
+ffffffff822c3e58 d sched_register_mutex
+ffffffff822c3e88 d nop_flags
+ffffffff822c3ea0 d nop_opts
+ffffffff822c3ed0 d ftrace_events
+ffffffff822c3ee0 d ftrace_generic_fields
+ffffffff822c3ef0 d ftrace_common_fields
+ffffffff822c3f00 d module_strings
+ffffffff822c3f10 d event_subsystems
+ffffffff822c3f20 d event_mutex
+ffffffff822c3f50 d event_function
+ffffffff822c3fe0 d event_funcgraph_entry
+ffffffff822c4070 d event_funcgraph_exit
+ffffffff822c4100 d event_context_switch
+ffffffff822c4190 d event_wakeup
+ffffffff822c4220 d event_kernel_stack
+ffffffff822c42b0 d event_user_stack
+ffffffff822c4340 d event_bprint
+ffffffff822c43d0 d event_print
+ffffffff822c4460 d event_raw_data
+ffffffff822c44f0 d event_bputs
+ffffffff822c4580 d event_mmiotrace_rw
+ffffffff822c4610 d event_mmiotrace_map
+ffffffff822c46a0 d event_branch
+ffffffff822c4730 d event_hwlat
+ffffffff822c47c0 d event_func_repeats
+ffffffff822c4850 d event_osnoise
+ffffffff822c48e0 d event_timerlat
+ffffffff822c4970 d ftrace_event_fields_function
+ffffffff822c49f0 d ftrace_event_fields_funcgraph_entry
+ffffffff822c4a70 d ftrace_event_fields_funcgraph_exit
+ffffffff822c4b60 d ftrace_event_fields_context_switch
+ffffffff822c4ca0 d ftrace_event_fields_wakeup
+ffffffff822c4de0 d ftrace_event_fields_kernel_stack
+ffffffff822c4e60 d ftrace_event_fields_user_stack
+ffffffff822c4ee0 d ftrace_event_fields_bprint
+ffffffff822c4f80 d ftrace_event_fields_print
+ffffffff822c5000 d ftrace_event_fields_raw_data
+ffffffff822c5080 d ftrace_event_fields_bputs
+ffffffff822c5100 d ftrace_event_fields_mmiotrace_rw
+ffffffff822c5220 d ftrace_event_fields_mmiotrace_map
+ffffffff822c5310 d ftrace_event_fields_branch
+ffffffff822c5400 d ftrace_event_fields_hwlat
+ffffffff822c5570 d ftrace_event_fields_func_repeats
+ffffffff822c5660 d ftrace_event_fields_osnoise
+ffffffff822c57d0 d ftrace_event_fields_timerlat
+ffffffff822c5870 d err_text
+ffffffff822c5900 d err_text
+ffffffff822c5950 d err_text
+ffffffff822c5ad0 d trigger_cmd_mutex
+ffffffff822c5b00 d trigger_commands
+ffffffff822c5b10 d named_triggers
+ffffffff822c5b20 d trigger_traceon_cmd
+ffffffff822c5b70 d trigger_traceoff_cmd
+ffffffff822c5bc0 d traceon_count_trigger_ops
+ffffffff822c5be0 d traceon_trigger_ops
+ffffffff822c5c00 d traceoff_count_trigger_ops
+ffffffff822c5c20 d traceoff_trigger_ops
+ffffffff822c5c40 d trigger_stacktrace_cmd
+ffffffff822c5c90 d stacktrace_count_trigger_ops
+ffffffff822c5cb0 d stacktrace_trigger_ops
+ffffffff822c5cd0 d trigger_enable_cmd
+ffffffff822c5d20 d trigger_disable_cmd
+ffffffff822c5d70 d event_enable_count_trigger_ops
+ffffffff822c5d90 d event_enable_trigger_ops
+ffffffff822c5db0 d event_disable_count_trigger_ops
+ffffffff822c5dd0 d event_disable_trigger_ops
+ffffffff822c5df0 d eprobe_dyn_event_ops
+ffffffff822c5e28 d eprobe_funcs
+ffffffff822c5e50 d eprobe_fields_array
+ffffffff822c5ea0 d eprobe_trigger_ops
+ffffffff822c5ec0 d event_trigger_cmd
+ffffffff822c5f10 d synth_event_ops
+ffffffff822c5f48 d lastcmd_mutex
+ffffffff822c5f78 d synth_event_funcs
+ffffffff822c5fa0 d synth_event_fields_array
+ffffffff822c5ff0 d trigger_hist_cmd
+ffffffff822c6040 d trigger_hist_enable_cmd
+ffffffff822c6090 d trigger_hist_disable_cmd
+ffffffff822c60e0 d event_hist_trigger_named_ops
+ffffffff822c6100 d event_hist_trigger_ops
+ffffffff822c6120 d hist_enable_count_trigger_ops
+ffffffff822c6140 d hist_enable_trigger_ops
+ffffffff822c6160 d hist_disable_count_trigger_ops
+ffffffff822c6180 d hist_disable_trigger_ops
+ffffffff822c61a0 d __SCK__tp_func_error_report_end
+ffffffff822c61b0 d trace_event_fields_error_report_template
+ffffffff822c6228 d trace_event_type_funcs_error_report_template
+ffffffff822c6250 d print_fmt_error_report_template
+ffffffff822c62f8 d event_error_report_end
+ffffffff822c6388 d __SCK__tp_func_cpu_idle
+ffffffff822c6398 d __SCK__tp_func_cpu_idle_miss
+ffffffff822c63a8 d __SCK__tp_func_powernv_throttle
+ffffffff822c63b8 d __SCK__tp_func_pstate_sample
+ffffffff822c63c8 d __SCK__tp_func_cpu_frequency
+ffffffff822c63d8 d __SCK__tp_func_cpu_frequency_limits
+ffffffff822c63e8 d __SCK__tp_func_device_pm_callback_start
+ffffffff822c63f8 d __SCK__tp_func_device_pm_callback_end
+ffffffff822c6408 d __SCK__tp_func_suspend_resume
+ffffffff822c6418 d __SCK__tp_func_wakeup_source_activate
+ffffffff822c6428 d __SCK__tp_func_wakeup_source_deactivate
+ffffffff822c6438 d __SCK__tp_func_clock_enable
+ffffffff822c6448 d __SCK__tp_func_clock_disable
+ffffffff822c6458 d __SCK__tp_func_clock_set_rate
+ffffffff822c6468 d __SCK__tp_func_power_domain_target
+ffffffff822c6478 d __SCK__tp_func_pm_qos_add_request
+ffffffff822c6488 d __SCK__tp_func_pm_qos_update_request
+ffffffff822c6498 d __SCK__tp_func_pm_qos_remove_request
+ffffffff822c64a8 d __SCK__tp_func_pm_qos_update_target
+ffffffff822c64b8 d __SCK__tp_func_pm_qos_update_flags
+ffffffff822c64c8 d __SCK__tp_func_dev_pm_qos_add_request
+ffffffff822c64d8 d __SCK__tp_func_dev_pm_qos_update_request
+ffffffff822c64e8 d __SCK__tp_func_dev_pm_qos_remove_request
+ffffffff822c64f8 d __SCK__tp_func_guest_halt_poll_ns
+ffffffff822c6510 d trace_event_fields_cpu
+ffffffff822c6588 d trace_event_type_funcs_cpu
+ffffffff822c65b0 d print_fmt_cpu
+ffffffff822c6600 d event_cpu_idle
+ffffffff822c6690 d trace_event_fields_cpu_idle_miss
+ffffffff822c6730 d trace_event_type_funcs_cpu_idle_miss
+ffffffff822c6750 d print_fmt_cpu_idle_miss
+ffffffff822c67c8 d event_cpu_idle_miss
+ffffffff822c6860 d trace_event_fields_powernv_throttle
+ffffffff822c6900 d trace_event_type_funcs_powernv_throttle
+ffffffff822c6920 d print_fmt_powernv_throttle
+ffffffff822c6968 d event_powernv_throttle
+ffffffff822c6a00 d trace_event_fields_pstate_sample
+ffffffff822c6b90 d trace_event_type_funcs_pstate_sample
+ffffffff822c6bb0 d print_fmt_pstate_sample
+ffffffff822c6d18 d event_pstate_sample
+ffffffff822c6da8 d event_cpu_frequency
+ffffffff822c6e40 d trace_event_fields_cpu_frequency_limits
+ffffffff822c6ee0 d trace_event_type_funcs_cpu_frequency_limits
+ffffffff822c6f00 d print_fmt_cpu_frequency_limits
+ffffffff822c6f78 d event_cpu_frequency_limits
+ffffffff822c7010 d trace_event_fields_device_pm_callback_start
+ffffffff822c7100 d trace_event_type_funcs_device_pm_callback_start
+ffffffff822c7120 d print_fmt_device_pm_callback_start
+ffffffff822c7260 d event_device_pm_callback_start
+ffffffff822c72f0 d trace_event_fields_device_pm_callback_end
+ffffffff822c7390 d trace_event_type_funcs_device_pm_callback_end
+ffffffff822c73b0 d print_fmt_device_pm_callback_end
+ffffffff822c73f8 d event_device_pm_callback_end
+ffffffff822c7490 d trace_event_fields_suspend_resume
+ffffffff822c7530 d trace_event_type_funcs_suspend_resume
+ffffffff822c7550 d print_fmt_suspend_resume
+ffffffff822c75a0 d event_suspend_resume
+ffffffff822c7630 d trace_event_fields_wakeup_source
+ffffffff822c76a8 d trace_event_type_funcs_wakeup_source
+ffffffff822c76d0 d print_fmt_wakeup_source
+ffffffff822c7710 d event_wakeup_source_activate
+ffffffff822c77a0 d event_wakeup_source_deactivate
+ffffffff822c7830 d trace_event_fields_clock
+ffffffff822c78d0 d trace_event_type_funcs_clock
+ffffffff822c78f0 d print_fmt_clock
+ffffffff822c7958 d event_clock_enable
+ffffffff822c79e8 d event_clock_disable
+ffffffff822c7a78 d event_clock_set_rate
+ffffffff822c7b10 d trace_event_fields_power_domain
+ffffffff822c7bb0 d trace_event_type_funcs_power_domain
+ffffffff822c7bd0 d print_fmt_power_domain
+ffffffff822c7c38 d event_power_domain_target
+ffffffff822c7cd0 d trace_event_fields_cpu_latency_qos_request
+ffffffff822c7d20 d trace_event_type_funcs_cpu_latency_qos_request
+ffffffff822c7d40 d print_fmt_cpu_latency_qos_request
+ffffffff822c7d68 d event_pm_qos_add_request
+ffffffff822c7df8 d event_pm_qos_update_request
+ffffffff822c7e88 d event_pm_qos_remove_request
+ffffffff822c7f20 d trace_event_fields_pm_qos_update
+ffffffff822c7fc0 d trace_event_type_funcs_pm_qos_update
+ffffffff822c7fe0 d print_fmt_pm_qos_update
+ffffffff822c80b8 d event_pm_qos_update_target
+ffffffff822c8148 d trace_event_type_funcs_pm_qos_update_flags
+ffffffff822c8170 d print_fmt_pm_qos_update_flags
+ffffffff822c8248 d event_pm_qos_update_flags
+ffffffff822c82e0 d trace_event_fields_dev_pm_qos_request
+ffffffff822c8380 d trace_event_type_funcs_dev_pm_qos_request
+ffffffff822c83a0 d print_fmt_dev_pm_qos_request
+ffffffff822c8468 d event_dev_pm_qos_add_request
+ffffffff822c84f8 d event_dev_pm_qos_update_request
+ffffffff822c8588 d event_dev_pm_qos_remove_request
+ffffffff822c8620 d trace_event_fields_guest_halt_poll_ns
+ffffffff822c86c0 d trace_event_type_funcs_guest_halt_poll_ns
+ffffffff822c86e0 d print_fmt_guest_halt_poll_ns
+ffffffff822c8730 d event_guest_halt_poll_ns
+ffffffff822c87c0 d __SCK__tp_func_rpm_suspend
+ffffffff822c87d0 d __SCK__tp_func_rpm_resume
+ffffffff822c87e0 d __SCK__tp_func_rpm_idle
+ffffffff822c87f0 d __SCK__tp_func_rpm_usage
+ffffffff822c8800 d __SCK__tp_func_rpm_return_int
+ffffffff822c8810 d trace_event_fields_rpm_internal
+ffffffff822c8978 d trace_event_type_funcs_rpm_internal
+ffffffff822c89a0 d print_fmt_rpm_internal
+ffffffff822c8a70 d event_rpm_suspend
+ffffffff822c8b00 d event_rpm_resume
+ffffffff822c8b90 d event_rpm_idle
+ffffffff822c8c20 d event_rpm_usage
+ffffffff822c8cb0 d trace_event_fields_rpm_return_int
+ffffffff822c8d50 d trace_event_type_funcs_rpm_return_int
+ffffffff822c8d70 d print_fmt_rpm_return_int
+ffffffff822c8db0 d event_rpm_return_int
+ffffffff822c8e40 d dyn_event_ops_mutex
+ffffffff822c8e70 d dyn_event_ops_list
+ffffffff822c8e80 d dyn_event_list
+ffffffff822c8e90 d trace_probe_err_text
+ffffffff822c9060 d trace_uprobe_ops
+ffffffff822c9098 d uprobe_funcs
+ffffffff822c90c0 d uprobe_fields_array
+ffffffff822c9110 d bpf_user_rnd_init_once.___once_key
+ffffffff822c9120 d __SCK__tp_func_xdp_exception
+ffffffff822c9130 d __SCK__tp_func_xdp_bulk_tx
+ffffffff822c9140 d __SCK__tp_func_xdp_redirect
+ffffffff822c9150 d __SCK__tp_func_xdp_redirect_err
+ffffffff822c9160 d __SCK__tp_func_xdp_redirect_map
+ffffffff822c9170 d __SCK__tp_func_xdp_redirect_map_err
+ffffffff822c9180 d __SCK__tp_func_xdp_cpumap_kthread
+ffffffff822c9190 d __SCK__tp_func_xdp_cpumap_enqueue
+ffffffff822c91a0 d __SCK__tp_func_xdp_devmap_xmit
+ffffffff822c91b0 d __SCK__tp_func_mem_disconnect
+ffffffff822c91c0 d __SCK__tp_func_mem_connect
+ffffffff822c91d0 d __SCK__tp_func_mem_return_failed
+ffffffff822c91e0 d trace_event_fields_xdp_exception
+ffffffff822c9280 d trace_event_type_funcs_xdp_exception
+ffffffff822c92a0 d print_fmt_xdp_exception
+ffffffff822c9388 d event_xdp_exception
+ffffffff822c9420 d trace_event_fields_xdp_bulk_tx
+ffffffff822c9510 d trace_event_type_funcs_xdp_bulk_tx
+ffffffff822c9530 d print_fmt_xdp_bulk_tx
+ffffffff822c9638 d event_xdp_bulk_tx
+ffffffff822c96d0 d trace_event_fields_xdp_redirect_template
+ffffffff822c9810 d trace_event_type_funcs_xdp_redirect_template
+ffffffff822c9830 d print_fmt_xdp_redirect_template
+ffffffff822c9980 d event_xdp_redirect
+ffffffff822c9a10 d event_xdp_redirect_err
+ffffffff822c9aa0 d event_xdp_redirect_map
+ffffffff822c9b30 d event_xdp_redirect_map_err
+ffffffff822c9bc0 d trace_event_fields_xdp_cpumap_kthread
+ffffffff822c9d50 d trace_event_type_funcs_xdp_cpumap_kthread
+ffffffff822c9d70 d print_fmt_xdp_cpumap_kthread
+ffffffff822c9ef8 d event_xdp_cpumap_kthread
+ffffffff822c9f90 d trace_event_fields_xdp_cpumap_enqueue
+ffffffff822ca0a8 d trace_event_type_funcs_xdp_cpumap_enqueue
+ffffffff822ca0d0 d print_fmt_xdp_cpumap_enqueue
+ffffffff822ca200 d event_xdp_cpumap_enqueue
+ffffffff822ca290 d trace_event_fields_xdp_devmap_xmit
+ffffffff822ca3a8 d trace_event_type_funcs_xdp_devmap_xmit
+ffffffff822ca3d0 d print_fmt_xdp_devmap_xmit
+ffffffff822ca510 d event_xdp_devmap_xmit
+ffffffff822ca5a0 d trace_event_fields_mem_disconnect
+ffffffff822ca668 d trace_event_type_funcs_mem_disconnect
+ffffffff822ca690 d print_fmt_mem_disconnect
+ffffffff822ca7a8 d event_mem_disconnect
+ffffffff822ca840 d trace_event_fields_mem_connect
+ffffffff822ca958 d trace_event_type_funcs_mem_connect
+ffffffff822ca980 d print_fmt_mem_connect
+ffffffff822caab0 d event_mem_connect
+ffffffff822cab40 d trace_event_fields_mem_return_failed
+ffffffff822cabe0 d trace_event_type_funcs_mem_return_failed
+ffffffff822cac00 d print_fmt_mem_return_failed
+ffffffff822cad08 d event_mem_return_failed
+ffffffff822cad98 d dummy_bpf_prog
+ffffffff822cade8 d static_call_module_nb
+ffffffff822cae00 d static_call_mutex
+ffffffff822cae30 d perf_duration_work
+ffffffff822cae50 d dev_attr_nr_addr_filters
+ffffffff822cae70 d pmus_lock
+ffffffff822caea0 d pmus
+ffffffff822caeb0 d perf_swevent
+ffffffff822cafd8 d perf_cpu_clock
+ffffffff822cb100 d perf_task_clock
+ffffffff822cb228 d perf_reboot_notifier
+ffffffff822cb240 d __SCK__perf_snapshot_branch_stack
+ffffffff822cb250 d perf_duration_warn._rs
+ffffffff822cb278 d perf_sched_work
+ffffffff822cb300 d perf_sched_mutex
+ffffffff822cb330 d perf_tracepoint
+ffffffff822cb458 d perf_uprobe
+ffffffff822cb580 d uprobe_attr_groups
+ffffffff822cb590 d uprobe_format_group
+ffffffff822cb5c0 d uprobe_attrs
+ffffffff822cb5d8 d format_attr_retprobe
+ffffffff822cb5f8 d format_attr_ref_ctr_offset
+ffffffff822cb618 d pmu_bus
+ffffffff822cb6f0 d pmu_dev_groups
+ffffffff822cb700 d pmu_dev_attrs
+ffffffff822cb718 d dev_attr_type
+ffffffff822cb738 d dev_attr_type
+ffffffff822cb758 d dev_attr_type
+ffffffff822cb778 d dev_attr_type
+ffffffff822cb798 d dev_attr_type
+ffffffff822cb7b8 d dev_attr_type
+ffffffff822cb7d8 d dev_attr_type
+ffffffff822cb7f8 d dev_attr_perf_event_mux_interval_ms
+ffffffff822cb818 d mux_interval_mutex
+ffffffff822cb848 d callchain_mutex
+ffffffff822cb878 d perf_breakpoint
+ffffffff822cb9a0 d hw_breakpoint_exceptions_nb
+ffffffff822cb9b8 d bp_cpuinfo_sem
+ffffffff822cba18 d delayed_uprobe_lock
+ffffffff822cba48 d dup_mmap_sem
+ffffffff822cbaa8 d uprobe_exception_nb
+ffffffff822cbac0 d delayed_uprobe_list
+ffffffff822cbad0 d prepare_uretprobe._rs
+ffffffff822cbaf8 d jump_label_mutex
+ffffffff822cbb28 d jump_label_module_nb
+ffffffff822cbb40 d __SCK__tp_func_rseq_update
+ffffffff822cbb50 d __SCK__tp_func_rseq_ip_fixup
+ffffffff822cbb60 d trace_event_fields_rseq_update
+ffffffff822cbbb0 d trace_event_type_funcs_rseq_update
+ffffffff822cbbd0 d print_fmt_rseq_update
+ffffffff822cbbf0 d event_rseq_update
+ffffffff822cbc80 d trace_event_fields_rseq_ip_fixup
+ffffffff822cbd48 d trace_event_type_funcs_rseq_ip_fixup
+ffffffff822cbd70 d print_fmt_rseq_ip_fixup
+ffffffff822cbe00 d event_rseq_ip_fixup
+ffffffff822cbe90 d rseq_get_rseq_cs._rs
+ffffffff822cbeb8 d __SCK__tp_func_mm_filemap_delete_from_page_cache
+ffffffff822cbec8 d __SCK__tp_func_mm_filemap_add_to_page_cache
+ffffffff822cbed8 d __SCK__tp_func_filemap_set_wb_err
+ffffffff822cbee8 d __SCK__tp_func_file_check_and_advance_wb_err
+ffffffff822cbf00 d trace_event_fields_mm_filemap_op_page_cache
+ffffffff822cbff0 d trace_event_type_funcs_mm_filemap_op_page_cache
+ffffffff822cc010 d print_fmt_mm_filemap_op_page_cache
+ffffffff822cc0d0 d event_mm_filemap_delete_from_page_cache
+ffffffff822cc160 d event_mm_filemap_add_to_page_cache
+ffffffff822cc1f0 d trace_event_fields_filemap_set_wb_err
+ffffffff822cc290 d trace_event_type_funcs_filemap_set_wb_err
+ffffffff822cc2b0 d print_fmt_filemap_set_wb_err
+ffffffff822cc348 d event_filemap_set_wb_err
+ffffffff822cc3e0 d trace_event_fields_file_check_and_advance_wb_err
+ffffffff822cc4d0 d trace_event_type_funcs_file_check_and_advance_wb_err
+ffffffff822cc4f0 d print_fmt_file_check_and_advance_wb_err
+ffffffff822cc5a8 d event_file_check_and_advance_wb_err
+ffffffff822cc638 d sysctl_page_lock_unfairness
+ffffffff822cc640 d dio_warn_stale_pagecache._rs
+ffffffff822cc668 d __SCK__tp_func_oom_score_adj_update
+ffffffff822cc678 d __SCK__tp_func_mark_victim
+ffffffff822cc688 d __SCK__tp_func_wake_reaper
+ffffffff822cc698 d __SCK__tp_func_start_task_reaping
+ffffffff822cc6a8 d __SCK__tp_func_finish_task_reaping
+ffffffff822cc6b8 d __SCK__tp_func_skip_task_reaping
+ffffffff822cc6d0 d trace_event_fields_oom_score_adj_update
+ffffffff822cc770 d trace_event_type_funcs_oom_score_adj_update
+ffffffff822cc790 d print_fmt_oom_score_adj_update
+ffffffff822cc7e0 d event_oom_score_adj_update
+ffffffff822cc870 d trace_event_fields_reclaim_retry_zone
+ffffffff822cc9d8 d trace_event_type_funcs_reclaim_retry_zone
+ffffffff822cca00 d print_fmt_reclaim_retry_zone
+ffffffff822ccb60 d event_reclaim_retry_zone
+ffffffff822ccbf0 d trace_event_fields_mark_victim
+ffffffff822ccc40 d trace_event_type_funcs_mark_victim
+ffffffff822ccc60 d print_fmt_mark_victim
+ffffffff822ccc78 d event_mark_victim
+ffffffff822ccd10 d trace_event_fields_wake_reaper
+ffffffff822ccd60 d trace_event_type_funcs_wake_reaper
+ffffffff822ccd80 d print_fmt_wake_reaper
+ffffffff822ccd98 d event_wake_reaper
+ffffffff822cce30 d trace_event_fields_start_task_reaping
+ffffffff822cce80 d trace_event_type_funcs_start_task_reaping
+ffffffff822ccea0 d print_fmt_start_task_reaping
+ffffffff822cceb8 d event_start_task_reaping
+ffffffff822ccf50 d trace_event_fields_finish_task_reaping
+ffffffff822ccfa0 d trace_event_type_funcs_finish_task_reaping
+ffffffff822ccfc0 d print_fmt_finish_task_reaping
+ffffffff822ccfd8 d event_finish_task_reaping
+ffffffff822cd070 d trace_event_fields_skip_task_reaping
+ffffffff822cd0c0 d trace_event_type_funcs_skip_task_reaping
+ffffffff822cd0e0 d print_fmt_skip_task_reaping
+ffffffff822cd0f8 d event_skip_task_reaping
+ffffffff822cd190 d trace_event_fields_compact_retry
+ffffffff822cd2a8 d trace_event_type_funcs_compact_retry
+ffffffff822cd2d0 d print_fmt_compact_retry
+ffffffff822cd468 d event_compact_retry
+ffffffff822cd4f8 d oom_adj_mutex
+ffffffff822cd528 d oom_victims_wait
+ffffffff822cd540 d oom_notify_list.llvm.6048692579812598777
+ffffffff822cd588 d pagefault_out_of_memory.pfoom_rs
+ffffffff822cd5b0 d vm_oom_kill_table
+ffffffff822cd6b0 d oom_reaper_wait
+ffffffff822cd6c8 d sysctl_oom_dump_tasks
+ffffffff822cd6d0 d oom_kill_process.oom_rs
+ffffffff822cd6f8 d __SCK__tp_func_reclaim_retry_zone
+ffffffff822cd708 d __SCK__tp_func_compact_retry
+ffffffff822cd718 d oom_lock
+ffffffff822cd748 d ratelimit_pages
+ffffffff822cd750 d vm_page_writeback_sysctls
+ffffffff822cd950 d vm_dirty_ratio
+ffffffff822cd954 d dirty_background_ratio
+ffffffff822cd958 d dirty_writeback_interval
+ffffffff822cd95c d dirty_expire_interval
+ffffffff822cd960 d isolate_lru_page._rs
+ffffffff822cd988 d __SCK__tp_func_mm_lru_insertion
+ffffffff822cd998 d __SCK__tp_func_mm_lru_activate
+ffffffff822cd9b0 d trace_event_fields_mm_lru_insertion
+ffffffff822cda78 d trace_event_type_funcs_mm_lru_insertion
+ffffffff822cdaa0 d print_fmt_mm_lru_insertion
+ffffffff822cdbc0 d event_mm_lru_insertion
+ffffffff822cdc50 d trace_event_fields_mm_lru_activate
+ffffffff822cdcc8 d trace_event_type_funcs_mm_lru_activate
+ffffffff822cdcf0 d print_fmt_mm_lru_activate
+ffffffff822cdd20 d event_mm_lru_activate
+ffffffff822cddb0 d __lru_add_drain_all.lock
+ffffffff822cdde0 d __SCK__tp_func_mm_vmscan_kswapd_sleep
+ffffffff822cddf0 d __SCK__tp_func_mm_vmscan_kswapd_wake
+ffffffff822cde00 d __SCK__tp_func_mm_vmscan_wakeup_kswapd
+ffffffff822cde10 d __SCK__tp_func_mm_vmscan_direct_reclaim_begin
+ffffffff822cde20 d __SCK__tp_func_mm_vmscan_memcg_reclaim_begin
+ffffffff822cde30 d __SCK__tp_func_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff822cde40 d __SCK__tp_func_mm_vmscan_direct_reclaim_end
+ffffffff822cde50 d __SCK__tp_func_mm_vmscan_memcg_reclaim_end
+ffffffff822cde60 d __SCK__tp_func_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff822cde70 d __SCK__tp_func_mm_shrink_slab_start
+ffffffff822cde80 d __SCK__tp_func_mm_shrink_slab_end
+ffffffff822cde90 d __SCK__tp_func_mm_vmscan_lru_isolate
+ffffffff822cdea0 d __SCK__tp_func_mm_vmscan_write_folio
+ffffffff822cdeb0 d __SCK__tp_func_mm_vmscan_lru_shrink_inactive
+ffffffff822cdec0 d __SCK__tp_func_mm_vmscan_lru_shrink_active
+ffffffff822cded0 d __SCK__tp_func_mm_vmscan_node_reclaim_begin
+ffffffff822cdee0 d __SCK__tp_func_mm_vmscan_node_reclaim_end
+ffffffff822cdef0 d __SCK__tp_func_mm_vmscan_throttled
+ffffffff822cdf00 d trace_event_fields_mm_vmscan_kswapd_sleep
+ffffffff822cdf50 d trace_event_type_funcs_mm_vmscan_kswapd_sleep
+ffffffff822cdf70 d print_fmt_mm_vmscan_kswapd_sleep
+ffffffff822cdf88 d event_mm_vmscan_kswapd_sleep
+ffffffff822ce020 d trace_event_fields_mm_vmscan_kswapd_wake
+ffffffff822ce0c0 d trace_event_type_funcs_mm_vmscan_kswapd_wake
+ffffffff822ce0e0 d print_fmt_mm_vmscan_kswapd_wake
+ffffffff822ce108 d event_mm_vmscan_kswapd_wake
+ffffffff822ce1a0 d trace_event_fields_mm_vmscan_wakeup_kswapd
+ffffffff822ce268 d trace_event_type_funcs_mm_vmscan_wakeup_kswapd
+ffffffff822ce290 d print_fmt_mm_vmscan_wakeup_kswapd
+ffffffff822cee58 d event_mm_vmscan_wakeup_kswapd
+ffffffff822ceef0 d trace_event_fields_mm_vmscan_direct_reclaim_begin_template
+ffffffff822cef68 d trace_event_type_funcs_mm_vmscan_direct_reclaim_begin_template
+ffffffff822cef90 d print_fmt_mm_vmscan_direct_reclaim_begin_template
+ffffffff822cfb48 d event_mm_vmscan_direct_reclaim_begin
+ffffffff822cfbd8 d event_mm_vmscan_memcg_reclaim_begin
+ffffffff822cfc68 d event_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff822cfd00 d trace_event_fields_mm_vmscan_direct_reclaim_end_template
+ffffffff822cfd50 d trace_event_type_funcs_mm_vmscan_direct_reclaim_end_template
+ffffffff822cfd70 d print_fmt_mm_vmscan_direct_reclaim_end_template
+ffffffff822cfd98 d event_mm_vmscan_direct_reclaim_end
+ffffffff822cfe28 d event_mm_vmscan_memcg_reclaim_end
+ffffffff822cfeb8 d event_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff822cff50 d trace_event_fields_mm_shrink_slab_start
+ffffffff822d00e0 d trace_event_type_funcs_mm_shrink_slab_start
+ffffffff822d0100 d print_fmt_mm_shrink_slab_start
+ffffffff822d0d78 d event_mm_shrink_slab_start
+ffffffff822d0e10 d trace_event_fields_mm_shrink_slab_end
+ffffffff822d0f50 d trace_event_type_funcs_mm_shrink_slab_end
+ffffffff822d0f70 d print_fmt_mm_shrink_slab_end
+ffffffff822d1038 d event_mm_shrink_slab_end
+ffffffff822d10d0 d trace_event_fields_mm_vmscan_lru_isolate
+ffffffff822d1238 d trace_event_type_funcs_mm_vmscan_lru_isolate
+ffffffff822d1260 d print_fmt_mm_vmscan_lru_isolate
+ffffffff822d1418 d event_mm_vmscan_lru_isolate
+ffffffff822d14b0 d trace_event_fields_mm_vmscan_write_folio
+ffffffff822d1528 d trace_event_type_funcs_mm_vmscan_write_folio
+ffffffff822d1550 d print_fmt_mm_vmscan_write_folio
+ffffffff822d1698 d event_mm_vmscan_write_folio
+ffffffff822d1730 d trace_event_fields_mm_vmscan_lru_shrink_inactive
+ffffffff822d1960 d trace_event_type_funcs_mm_vmscan_lru_shrink_inactive
+ffffffff822d1980 d print_fmt_mm_vmscan_lru_shrink_inactive
+ffffffff822d1c08 d event_mm_vmscan_lru_shrink_inactive
+ffffffff822d1ca0 d trace_event_fields_mm_vmscan_lru_shrink_active
+ffffffff822d1de0 d trace_event_type_funcs_mm_vmscan_lru_shrink_active
+ffffffff822d1e00 d print_fmt_mm_vmscan_lru_shrink_active
+ffffffff822d1fb0 d event_mm_vmscan_lru_shrink_active
+ffffffff822d2040 d trace_event_fields_mm_vmscan_node_reclaim_begin
+ffffffff822d20e0 d trace_event_type_funcs_mm_vmscan_node_reclaim_begin
+ffffffff822d2100 d print_fmt_mm_vmscan_node_reclaim_begin
+ffffffff822d2cc8 d event_mm_vmscan_node_reclaim_begin
+ffffffff822d2d58 d event_mm_vmscan_node_reclaim_end
+ffffffff822d2df0 d trace_event_fields_mm_vmscan_throttled
+ffffffff822d2eb8 d trace_event_type_funcs_mm_vmscan_throttled
+ffffffff822d2ee0 d print_fmt_mm_vmscan_throttled
+ffffffff822d3098 d event_mm_vmscan_throttled
+ffffffff822d3128 d shrinker_list
+ffffffff822d3138 d shrinker_rwsem
+ffffffff822d3178 d shrinker_idr
+ffffffff822d3190 d get_mm_list.mm_list
+ffffffff822d31a8 d lru_gen_attr_group
+ffffffff822d31d0 d lru_gen_attrs
+ffffffff822d31e8 d lru_gen_min_ttl_attr
+ffffffff822d3208 d lru_gen_enabled_attr
+ffffffff822d3228 d lru_gen_change_state.state_mutex
+ffffffff822d3258 d vm_swappiness
+ffffffff822d3260 d shmem_swaplist
+ffffffff822d3270 d shmem_swaplist_mutex
+ffffffff822d32a0 d shmem_fs_type
+ffffffff822d32e8 d shmem_enabled_attr
+ffffffff822d3310 d shmem_xattr_handlers
+ffffffff822d3338 d __vm_enough_memory._rs
+ffffffff822d3360 d page_offline_rwsem
+ffffffff822d33a0 d shepherd
+ffffffff822d3428 d cleanup_offline_cgwbs_work
+ffffffff822d3460 d bdi_dev_groups
+ffffffff822d3470 d bdi_dev_attrs
+ffffffff822d3498 d dev_attr_read_ahead_kb
+ffffffff822d34b8 d dev_attr_min_ratio
+ffffffff822d34d8 d dev_attr_max_ratio
+ffffffff822d34f8 d dev_attr_stable_pages_required
+ffffffff822d3518 d offline_cgwbs
+ffffffff822d3528 d bdi_list
+ffffffff822d3538 d vm_committed_as_batch
+ffffffff822d3540 d __SCK__tp_func_percpu_alloc_percpu
+ffffffff822d3550 d __SCK__tp_func_percpu_free_percpu
+ffffffff822d3560 d __SCK__tp_func_percpu_alloc_percpu_fail
+ffffffff822d3570 d __SCK__tp_func_percpu_create_chunk
+ffffffff822d3580 d __SCK__tp_func_percpu_destroy_chunk
+ffffffff822d3590 d trace_event_fields_percpu_alloc_percpu
+ffffffff822d3748 d trace_event_type_funcs_percpu_alloc_percpu
+ffffffff822d3770 d print_fmt_percpu_alloc_percpu
+ffffffff822d4400 d event_percpu_alloc_percpu
+ffffffff822d4490 d trace_event_fields_percpu_free_percpu
+ffffffff822d4530 d trace_event_type_funcs_percpu_free_percpu
+ffffffff822d4550 d print_fmt_percpu_free_percpu
+ffffffff822d4598 d event_percpu_free_percpu
+ffffffff822d4630 d trace_event_fields_percpu_alloc_percpu_fail
+ffffffff822d46f8 d trace_event_type_funcs_percpu_alloc_percpu_fail
+ffffffff822d4720 d print_fmt_percpu_alloc_percpu_fail
+ffffffff822d4788 d event_percpu_alloc_percpu_fail
+ffffffff822d4820 d trace_event_fields_percpu_create_chunk
+ffffffff822d4870 d trace_event_type_funcs_percpu_create_chunk
+ffffffff822d4890 d print_fmt_percpu_create_chunk
+ffffffff822d48b0 d event_percpu_create_chunk
+ffffffff822d4940 d trace_event_fields_percpu_destroy_chunk
+ffffffff822d4990 d trace_event_type_funcs_percpu_destroy_chunk
+ffffffff822d49b0 d print_fmt_percpu_destroy_chunk
+ffffffff822d49d0 d event_percpu_destroy_chunk
+ffffffff822d4a60 d pcpu_alloc.warn_limit
+ffffffff822d4a68 d pcpu_alloc_mutex
+ffffffff822d4a98 d pcpu_balance_work
+ffffffff822d4ac8 d __SCK__tp_func_kmalloc
+ffffffff822d4ad8 d __SCK__tp_func_kfree
+ffffffff822d4ae8 d __SCK__tp_func_mm_page_free
+ffffffff822d4af8 d __SCK__tp_func_mm_page_free_batched
+ffffffff822d4b08 d __SCK__tp_func_mm_page_alloc
+ffffffff822d4b18 d __SCK__tp_func_mm_page_alloc_zone_locked
+ffffffff822d4b28 d __SCK__tp_func_mm_page_pcpu_drain
+ffffffff822d4b38 d __SCK__tp_func_mm_page_alloc_extfrag
+ffffffff822d4b48 d __SCK__tp_func_rss_stat
+ffffffff822d4b60 d trace_event_fields_kmem_cache_alloc
+ffffffff822d4ca0 d trace_event_type_funcs_kmem_cache_alloc
+ffffffff822d4cc0 d print_fmt_kmem_cache_alloc
+ffffffff822d5920 d event_kmem_cache_alloc
+ffffffff822d59b0 d trace_event_fields_kmalloc
+ffffffff822d5ac8 d trace_event_type_funcs_kmalloc
+ffffffff822d5af0 d print_fmt_kmalloc
+ffffffff822d6780 d event_kmalloc
+ffffffff822d6810 d trace_event_fields_kfree
+ffffffff822d6888 d trace_event_type_funcs_kfree
+ffffffff822d68b0 d print_fmt_kfree
+ffffffff822d68f0 d event_kfree
+ffffffff822d6980 d trace_event_fields_kmem_cache_free
+ffffffff822d6a20 d trace_event_type_funcs_kmem_cache_free
+ffffffff822d6a40 d print_fmt_kmem_cache_free
+ffffffff822d6a98 d event_kmem_cache_free
+ffffffff822d6b30 d trace_event_fields_mm_page_free
+ffffffff822d6ba8 d trace_event_type_funcs_mm_page_free
+ffffffff822d6bd0 d print_fmt_mm_page_free
+ffffffff822d6c38 d event_mm_page_free
+ffffffff822d6cd0 d trace_event_fields_mm_page_free_batched
+ffffffff822d6d20 d trace_event_type_funcs_mm_page_free_batched
+ffffffff822d6d40 d print_fmt_mm_page_free_batched
+ffffffff822d6d98 d event_mm_page_free_batched
+ffffffff822d6e30 d trace_event_fields_mm_page_alloc
+ffffffff822d6ef8 d trace_event_type_funcs_mm_page_alloc
+ffffffff822d6f20 d print_fmt_mm_page_alloc
+ffffffff822d7b80 d event_mm_page_alloc
+ffffffff822d7c10 d trace_event_fields_mm_page
+ffffffff822d7cd8 d trace_event_type_funcs_mm_page
+ffffffff822d7d00 d print_fmt_mm_page
+ffffffff822d7de0 d event_mm_page_alloc_zone_locked
+ffffffff822d7e70 d trace_event_fields_mm_page_pcpu_drain
+ffffffff822d7f10 d trace_event_type_funcs_mm_page_pcpu_drain
+ffffffff822d7f30 d print_fmt_mm_page_pcpu_drain
+ffffffff822d7fb8 d event_mm_page_pcpu_drain
+ffffffff822d8050 d trace_event_fields_mm_page_alloc_extfrag
+ffffffff822d8168 d trace_event_type_funcs_mm_page_alloc_extfrag
+ffffffff822d8190 d print_fmt_mm_page_alloc_extfrag
+ffffffff822d82f8 d event_mm_page_alloc_extfrag
+ffffffff822d8390 d trace_event_fields_rss_stat
+ffffffff822d8458 d trace_event_type_funcs_rss_stat
+ffffffff822d8480 d print_fmt_rss_stat
+ffffffff822d8570 d event_rss_stat
+ffffffff822d8600 d slab_caches_to_rcu_destroy
+ffffffff822d8610 d slab_caches_to_rcu_destroy_work
+ffffffff822d8640 d __SCK__tp_func_kmem_cache_alloc
+ffffffff822d8650 d __SCK__tp_func_kmem_cache_free
+ffffffff822d8660 d slab_mutex
+ffffffff822d8690 d slab_caches
+ffffffff822d86a0 d __SCK__tp_func_mm_compaction_isolate_migratepages
+ffffffff822d86b0 d __SCK__tp_func_mm_compaction_isolate_freepages
+ffffffff822d86c0 d __SCK__tp_func_mm_compaction_migratepages
+ffffffff822d86d0 d __SCK__tp_func_mm_compaction_begin
+ffffffff822d86e0 d __SCK__tp_func_mm_compaction_end
+ffffffff822d86f0 d __SCK__tp_func_mm_compaction_try_to_compact_pages
+ffffffff822d8700 d __SCK__tp_func_mm_compaction_finished
+ffffffff822d8710 d __SCK__tp_func_mm_compaction_suitable
+ffffffff822d8720 d __SCK__tp_func_mm_compaction_deferred
+ffffffff822d8730 d __SCK__tp_func_mm_compaction_defer_compaction
+ffffffff822d8740 d __SCK__tp_func_mm_compaction_defer_reset
+ffffffff822d8750 d __SCK__tp_func_mm_compaction_kcompactd_sleep
+ffffffff822d8760 d __SCK__tp_func_mm_compaction_wakeup_kcompactd
+ffffffff822d8770 d __SCK__tp_func_mm_compaction_kcompactd_wake
+ffffffff822d8780 d trace_event_fields_mm_compaction_isolate_template
+ffffffff822d8848 d trace_event_type_funcs_mm_compaction_isolate_template
+ffffffff822d8870 d print_fmt_mm_compaction_isolate_template
+ffffffff822d88e8 d event_mm_compaction_isolate_migratepages
+ffffffff822d8978 d event_mm_compaction_isolate_freepages
+ffffffff822d8a10 d trace_event_fields_mm_compaction_migratepages
+ffffffff822d8a88 d trace_event_type_funcs_mm_compaction_migratepages
+ffffffff822d8ab0 d print_fmt_mm_compaction_migratepages
+ffffffff822d8af8 d event_mm_compaction_migratepages
+ffffffff822d8b90 d trace_event_fields_mm_compaction_begin
+ffffffff822d8c80 d trace_event_type_funcs_mm_compaction_begin
+ffffffff822d8ca0 d print_fmt_mm_compaction_begin
+ffffffff822d8d50 d event_mm_compaction_begin
+ffffffff822d8de0 d trace_event_fields_mm_compaction_end
+ffffffff822d8ef8 d trace_event_type_funcs_mm_compaction_end
+ffffffff822d8f20 d print_fmt_mm_compaction_end
+ffffffff822d9148 d event_mm_compaction_end
+ffffffff822d91e0 d trace_event_fields_mm_compaction_try_to_compact_pages
+ffffffff822d9280 d trace_event_type_funcs_mm_compaction_try_to_compact_pages
+ffffffff822d92a0 d print_fmt_mm_compaction_try_to_compact_pages
+ffffffff822d9e70 d event_mm_compaction_try_to_compact_pages
+ffffffff822d9f00 d trace_event_fields_mm_compaction_suitable_template
+ffffffff822d9fc8 d trace_event_type_funcs_mm_compaction_suitable_template
+ffffffff822d9ff0 d print_fmt_mm_compaction_suitable_template
+ffffffff822da210 d event_mm_compaction_finished
+ffffffff822da2a0 d event_mm_compaction_suitable
+ffffffff822da330 d trace_event_fields_mm_compaction_defer_template
+ffffffff822da448 d trace_event_type_funcs_mm_compaction_defer_template
+ffffffff822da470 d print_fmt_mm_compaction_defer_template
+ffffffff822da580 d event_mm_compaction_deferred
+ffffffff822da610 d event_mm_compaction_defer_compaction
+ffffffff822da6a0 d event_mm_compaction_defer_reset
+ffffffff822da730 d trace_event_fields_mm_compaction_kcompactd_sleep
+ffffffff822da780 d trace_event_type_funcs_mm_compaction_kcompactd_sleep
+ffffffff822da7a0 d print_fmt_mm_compaction_kcompactd_sleep
+ffffffff822da7b8 d event_mm_compaction_kcompactd_sleep
+ffffffff822da850 d trace_event_fields_kcompactd_wake_template
+ffffffff822da8f0 d trace_event_type_funcs_kcompactd_wake_template
+ffffffff822da910 d print_fmt_kcompactd_wake_template
+ffffffff822da9d8 d event_mm_compaction_wakeup_kcompactd
+ffffffff822daa68 d event_mm_compaction_kcompactd_wake
+ffffffff822daaf8 d sysctl_extfrag_threshold
+ffffffff822dab00 d list_lrus_mutex
+ffffffff822dab30 d memcg_list_lrus
+ffffffff822dab40 d workingset_shadow_shrinker
+ffffffff822dab80 d migrate_reason_names
+ffffffff822dabc8 d __SCK__tp_func_mmap_lock_start_locking
+ffffffff822dabd8 d __SCK__tp_func_mmap_lock_released
+ffffffff822dabe8 d __SCK__tp_func_mmap_lock_acquire_returned
+ffffffff822dac00 d trace_event_fields_mmap_lock
+ffffffff822daca0 d trace_event_type_funcs_mmap_lock
+ffffffff822dacc0 d print_fmt_mmap_lock
+ffffffff822dad20 d event_mmap_lock_start_locking
+ffffffff822dadb0 d event_mmap_lock_released
+ffffffff822dae40 d trace_event_fields_mmap_lock_acquire_returned
+ffffffff822daf08 d trace_event_type_funcs_mmap_lock_acquire_returned
+ffffffff822daf30 d print_fmt_mmap_lock_acquire_returned
+ffffffff822dafc0 d event_mmap_lock_acquire_returned
+ffffffff822db050 d reg_lock
+ffffffff822db080 d __SCK__tp_func_vm_unmapped_area
+ffffffff822db090 d __SCK__tp_func_vma_mas_szero
+ffffffff822db0a0 d __SCK__tp_func_vma_store
+ffffffff822db0b0 d __SCK__tp_func_exit_mmap
+ffffffff822db0c0 d trace_event_fields_vm_unmapped_area
+ffffffff822db228 d trace_event_type_funcs_vm_unmapped_area
+ffffffff822db250 d print_fmt_vm_unmapped_area
+ffffffff822db3f0 d event_vm_unmapped_area
+ffffffff822db480 d trace_event_fields_vma_mas_szero
+ffffffff822db520 d trace_event_type_funcs_vma_mas_szero
+ffffffff822db540 d print_fmt_vma_mas_szero
+ffffffff822db5a8 d event_vma_mas_szero
+ffffffff822db640 d trace_event_fields_vma_store
+ffffffff822db708 d trace_event_type_funcs_vma_store
+ffffffff822db730 d print_fmt_vma_store
+ffffffff822db7a8 d event_vma_store
+ffffffff822db840 d trace_event_fields_exit_mmap
+ffffffff822db8b8 d trace_event_type_funcs_exit_mmap
+ffffffff822db8e0 d print_fmt_exit_mmap
+ffffffff822db900 d event_exit_mmap
+ffffffff822db990 d stack_guard_gap
+ffffffff822db998 d mm_all_locks_mutex
+ffffffff822db9c8 d reserve_mem_nb
+ffffffff822db9e0 d __SCK__tp_func_tlb_flush
+ffffffff822db9f0 d trace_event_fields_tlb_flush
+ffffffff822dba68 d trace_event_type_funcs_tlb_flush
+ffffffff822dba90 d print_fmt_tlb_flush
+ffffffff822dbbd8 d event_tlb_flush
+ffffffff822dbc68 d __SCK__tp_func_mm_migrate_pages
+ffffffff822dbc78 d __SCK__tp_func_mm_migrate_pages_start
+ffffffff822dbc88 d __SCK__tp_func_set_migration_pte
+ffffffff822dbc98 d __SCK__tp_func_remove_migration_pte
+ffffffff822dbcb0 d trace_event_fields_mm_migrate_pages
+ffffffff822dbdf0 d trace_event_type_funcs_mm_migrate_pages
+ffffffff822dbe10 d print_fmt_mm_migrate_pages
+ffffffff822dc0b8 d event_mm_migrate_pages
+ffffffff822dc150 d trace_event_fields_mm_migrate_pages_start
+ffffffff822dc1c8 d trace_event_type_funcs_mm_migrate_pages_start
+ffffffff822dc1f0 d print_fmt_mm_migrate_pages_start
+ffffffff822dc3f0 d event_mm_migrate_pages_start
+ffffffff822dc480 d trace_event_fields_migration_pte
+ffffffff822dc520 d trace_event_type_funcs_migration_pte
+ffffffff822dc540 d print_fmt_migration_pte
+ffffffff822dc580 d event_set_migration_pte
+ffffffff822dc610 d event_remove_migration_pte
+ffffffff822dc6a0 d vmap_area_list
+ffffffff822dc6b0 d vmap_notify_list
+ffffffff822dc6f8 d free_vmap_area_list
+ffffffff822dc708 d vmap_purge_lock
+ffffffff822dc738 d purge_vmap_area_list
+ffffffff822dc748 d drain_vmap_work
+ffffffff822dc778 d vm_numa_stat_key
+ffffffff822dc790 d sysctl_lowmem_reserve_ratio
+ffffffff822dc7a0 d min_free_kbytes
+ffffffff822dc7a4 d user_min_free_kbytes
+ffffffff822dc7a8 d watermark_scale_factor
+ffffffff822dc7b0 d warn_alloc.nopage_rs
+ffffffff822dc7d8 d pcp_batch_high_lock
+ffffffff822dc808 d pcpu_drain_mutex
+ffffffff822dc838 d init_on_alloc
+ffffffff822dc848 d init_mm
+ffffffff822dcc88 d memblock_alloc_range_nid._rs
+ffffffff822dccb0 d memblock_find_in_range._rs
+ffffffff822dccd8 d mem_hotplug_lock
+ffffffff822dcd38 d max_mem_size
+ffffffff822dcd40 d online_page_callback_lock
+ffffffff822dcd70 d online_page_callback
+ffffffff822dcd78 d do_migrate_range.migrate_rs
+ffffffff822dcda0 d end_swap_bio_write._rs
+ffffffff822dcdc8 d sio_write_complete._rs
+ffffffff822dcdf0 d end_swap_bio_read._rs
+ffffffff822dce18 d sio_read_complete._rs
+ffffffff822dce40 d swapin_readahead_hits
+ffffffff822dce50 d swap_attrs
+ffffffff822dce60 d vma_ra_enabled_attr
+ffffffff822dce80 d swap_active_head.llvm.13098503744718219347
+ffffffff822dce90 d least_priority
+ffffffff822dce98 d swapon_mutex
+ffffffff822dcec8 d proc_poll_wait
+ffffffff822dcee0 d swap_slots_cache_enable_mutex.llvm.8619961679708013833
+ffffffff822dcf10 d swap_slots_cache_mutex
+ffffffff822dcf40 d pools_reg_lock
+ffffffff822dcf70 d pools_lock
+ffffffff822dcfa0 d dev_attr_pools
+ffffffff822dcfc0 d slub_max_order
+ffffffff822dcfc8 d slab_memory_callback_nb
+ffffffff822dcfe0 d slab_out_of_memory.slub_oom_rs
+ffffffff822dd008 d flush_lock
+ffffffff822dd038 d slab_ktype
+ffffffff822dd090 d slab_attrs
+ffffffff822dd180 d slab_size_attr
+ffffffff822dd1a0 d object_size_attr
+ffffffff822dd1c0 d objs_per_slab_attr
+ffffffff822dd1e0 d order_attr
+ffffffff822dd200 d min_partial_attr
+ffffffff822dd220 d cpu_partial_attr
+ffffffff822dd240 d objects_attr
+ffffffff822dd260 d objects_partial_attr
+ffffffff822dd280 d partial_attr
+ffffffff822dd2a0 d cpu_slabs_attr
+ffffffff822dd2c0 d ctor_attr
+ffffffff822dd2e0 d aliases_attr
+ffffffff822dd300 d align_attr
+ffffffff822dd320 d hwcache_align_attr
+ffffffff822dd340 d reclaim_account_attr
+ffffffff822dd360 d destroy_by_rcu_attr
+ffffffff822dd380 d shrink_attr
+ffffffff822dd3a0 d slabs_cpu_partial_attr
+ffffffff822dd3c0 d total_objects_attr
+ffffffff822dd3e0 d slabs_attr
+ffffffff822dd400 d sanity_checks_attr
+ffffffff822dd420 d trace_attr
+ffffffff822dd440 d red_zone_attr
+ffffffff822dd460 d poison_attr
+ffffffff822dd480 d store_user_attr
+ffffffff822dd4a0 d validate_attr
+ffffffff822dd4c0 d cache_dma_attr
+ffffffff822dd4e0 d usersize_attr
+ffffffff822dd500 d skip_kfence_attr
+ffffffff822dd520 d kfence_allocation_gate
+ffffffff822dd528 d kfence_freelist
+ffffffff822dd538 d kfence_check_canary_notifier
+ffffffff822dd550 d __SCK__tp_func_hugepage_set_pmd
+ffffffff822dd560 d __SCK__tp_func_hugepage_update
+ffffffff822dd570 d __SCK__tp_func_set_migration_pmd
+ffffffff822dd580 d __SCK__tp_func_remove_migration_pmd
+ffffffff822dd590 d trace_event_fields_hugepage_set_pmd
+ffffffff822dd608 d trace_event_type_funcs_hugepage_set_pmd
+ffffffff822dd630 d print_fmt_hugepage_set_pmd
+ffffffff822dd668 d event_hugepage_set_pmd
+ffffffff822dd700 d trace_event_fields_hugepage_update
+ffffffff822dd7c8 d trace_event_type_funcs_hugepage_update
+ffffffff822dd7f0 d print_fmt_hugepage_update
+ffffffff822dd868 d event_hugepage_update
+ffffffff822dd900 d trace_event_fields_migration_pmd
+ffffffff822dd978 d trace_event_type_funcs_migration_pmd
+ffffffff822dd9a0 d print_fmt_migration_pmd
+ffffffff822dd9d0 d event_set_migration_pmd
+ffffffff822dda60 d event_remove_migration_pmd
+ffffffff822ddaf0 d split_huge_page_to_list._rs
+ffffffff822ddb18 d deferred_split_shrinker
+ffffffff822ddb58 d huge_zero_page_shrinker
+ffffffff822ddba0 d hugepage_attr
+ffffffff822ddbd0 d enabled_attr
+ffffffff822ddbf0 d defrag_attr
+ffffffff822ddc10 d use_zero_page_attr
+ffffffff822ddc30 d hpage_pmd_size_attr
+ffffffff822ddc50 d split_huge_pages_write.split_debug_mutex
+ffffffff822ddc80 d __SCK__tp_func_mm_khugepaged_scan_pmd
+ffffffff822ddc90 d __SCK__tp_func_mm_collapse_huge_page
+ffffffff822ddca0 d __SCK__tp_func_mm_collapse_huge_page_isolate
+ffffffff822ddcb0 d __SCK__tp_func_mm_collapse_huge_page_swapin
+ffffffff822ddcc0 d __SCK__tp_func_mm_khugepaged_scan_file
+ffffffff822ddcd0 d trace_event_fields_mm_khugepaged_scan_pmd
+ffffffff822dde10 d trace_event_type_funcs_mm_khugepaged_scan_pmd
+ffffffff822dde30 d print_fmt_mm_khugepaged_scan_pmd
+ffffffff822de388 d event_mm_khugepaged_scan_pmd
+ffffffff822de420 d trace_event_fields_mm_collapse_huge_page
+ffffffff822de4c0 d trace_event_type_funcs_mm_collapse_huge_page
+ffffffff822de4e0 d print_fmt_mm_collapse_huge_page
+ffffffff822de9c0 d event_mm_collapse_huge_page
+ffffffff822dea50 d trace_event_fields_mm_collapse_huge_page_isolate
+ffffffff822deb40 d trace_event_type_funcs_mm_collapse_huge_page_isolate
+ffffffff822deb60 d print_fmt_mm_collapse_huge_page_isolate
+ffffffff822df088 d event_mm_collapse_huge_page_isolate
+ffffffff822df120 d trace_event_fields_mm_collapse_huge_page_swapin
+ffffffff822df1e8 d trace_event_type_funcs_mm_collapse_huge_page_swapin
+ffffffff822df210 d print_fmt_mm_collapse_huge_page_swapin
+ffffffff822df278 d event_mm_collapse_huge_page_swapin
+ffffffff822df310 d trace_event_fields_mm_khugepaged_scan_file
+ffffffff822df428 d trace_event_type_funcs_mm_khugepaged_scan_file
+ffffffff822df450 d print_fmt_mm_khugepaged_scan_file
+ffffffff822df978 d event_mm_khugepaged_scan_file
+ffffffff822dfa10 d khugepaged_attr
+ffffffff822dfa60 d khugepaged_scan
+ffffffff822dfa80 d khugepaged_wait
+ffffffff822dfa98 d khugepaged_collapse_control
+ffffffff822dfaa8 d khugepaged_mutex
+ffffffff822dfad8 d khugepaged_defrag_attr
+ffffffff822dfaf8 d khugepaged_max_ptes_none_attr
+ffffffff822dfb18 d khugepaged_max_ptes_swap_attr
+ffffffff822dfb38 d khugepaged_max_ptes_shared_attr
+ffffffff822dfb58 d pages_to_scan_attr
+ffffffff822dfb78 d pages_collapsed_attr
+ffffffff822dfb98 d full_scans_attr
+ffffffff822dfbb8 d scan_sleep_millisecs_attr
+ffffffff822dfbd8 d alloc_sleep_millisecs_attr
+ffffffff822dfbf8 d khugepaged_attr_group
+ffffffff822dfc20 d memcg_oom_waitq
+ffffffff822dfc38 d mem_cgroup_idr.llvm.18350821595688034204
+ffffffff822dfc50 d memory_files
+ffffffff822e0670 d mem_cgroup_legacy_files
+ffffffff822e19d8 d percpu_charge_mutex
+ffffffff822e1a08 d mc
+ffffffff822e1a68 d memcg_cgwb_frn_waitq
+ffffffff822e1a80 d stats_flush_dwork
+ffffffff822e1b08 d memcg_max_mutex
+ffffffff822e1b40 d swap_files
+ffffffff822e1f80 d memsw_files
+ffffffff822e23b8 d swap_cgroup_mutex
+ffffffff822e23e8 d page_owner_ops
+ffffffff822e2408 d __SCK__tp_func_test_pages_isolated
+ffffffff822e2420 d trace_event_fields_test_pages_isolated
+ffffffff822e24c0 d trace_event_type_funcs_test_pages_isolated
+ffffffff822e24e0 d print_fmt_test_pages_isolated
+ffffffff822e2578 d event_test_pages_isolated
+ffffffff822e2608 d page_ext_size
+ffffffff822e2610 d secretmem_fs
+ffffffff822e2658 d __SCK__tp_func_damon_aggregated
+ffffffff822e2670 d trace_event_fields_damon_aggregated
+ffffffff822e2788 d trace_event_type_funcs_damon_aggregated
+ffffffff822e27b0 d print_fmt_damon_aggregated
+ffffffff822e2830 d event_damon_aggregated
+ffffffff822e28c0 d damon_ops_lock
+ffffffff822e28f0 d damon_lock
+ffffffff822e2920 d __damon_pa_check_access.last_page_sz
+ffffffff822e2928 d damon_reclaim_quota
+ffffffff822e2cb0 d damon_reclaim_wmarks
+ffffffff822e2ce0 d damon_reclaim_mon_attrs
+ffffffff822e2d08 d damon_reclaim_timer
+ffffffff822e2d90 d page_reporting_mutex
+ffffffff822e2dc0 d page_reporting_order
+ffffffff822e2dc8 d warn_unsupported._rs
+ffffffff822e2df0 d files_stat.llvm.6938575688275069709
+ffffffff822e2e08 d delayed_fput_work
+ffffffff822e2e90 d fs_stat_sysctls
+ffffffff822e2f90 d super_blocks
+ffffffff822e2fa0 d unnamed_dev_ida
+ffffffff822e2fb0 d chrdevs_lock.llvm.7778121972292407816
+ffffffff822e2fe0 d ktype_cdev_dynamic
+ffffffff822e3030 d ktype_cdev_default
+ffffffff822e3080 d cp_old_stat.warncount
+ffffffff822e3088 d formats
+ffffffff822e30a0 d fs_exec_sysctls
+ffffffff822e3120 d pipe_user_pages_soft
+ffffffff822e3128 d pipe_max_size
+ffffffff822e3130 d pipe_fs_type
+ffffffff822e3180 d fs_pipe_sysctls
+ffffffff822e3280 d namei_sysctls
+ffffffff822e33c0 d ioctl_fibmap._rs
+ffffffff822e33e8 d d_splice_alias._rs
+ffffffff822e3410 d fs_dcache_sysctls
+ffffffff822e3490 d dentry_stat
+ffffffff822e34c0 d inodes_sysctls
+ffffffff822e3580 d sysctl_nr_open_min
+ffffffff822e3584 d sysctl_nr_open_max
+ffffffff822e35c0 d init_files
+ffffffff822e3880 d mnt_group_ida.llvm.16968001797173734495
+ffffffff822e3890 d namespace_sem
+ffffffff822e38d0 d ex_mountpoints
+ffffffff822e38e0 d mnt_id_ida
+ffffffff822e38f0 d delayed_mntput_work
+ffffffff822e3978 d mnt_ns_seq
+ffffffff822e3980 d fs_namespace_sysctls
+ffffffff822e3a00 d seq_read_iter._rs
+ffffffff822e3a28 d dirtytime_expire_interval
+ffffffff822e3a30 d __SCK__tp_func_writeback_mark_inode_dirty
+ffffffff822e3a40 d __SCK__tp_func_writeback_dirty_inode_start
+ffffffff822e3a50 d __SCK__tp_func_writeback_dirty_inode
+ffffffff822e3a60 d __SCK__tp_func_inode_foreign_history
+ffffffff822e3a70 d __SCK__tp_func_inode_switch_wbs
+ffffffff822e3a80 d __SCK__tp_func_track_foreign_dirty
+ffffffff822e3a90 d __SCK__tp_func_flush_foreign
+ffffffff822e3aa0 d __SCK__tp_func_writeback_write_inode_start
+ffffffff822e3ab0 d __SCK__tp_func_writeback_write_inode
+ffffffff822e3ac0 d __SCK__tp_func_writeback_queue
+ffffffff822e3ad0 d __SCK__tp_func_writeback_exec
+ffffffff822e3ae0 d __SCK__tp_func_writeback_start
+ffffffff822e3af0 d __SCK__tp_func_writeback_written
+ffffffff822e3b00 d __SCK__tp_func_writeback_wait
+ffffffff822e3b10 d __SCK__tp_func_writeback_pages_written
+ffffffff822e3b20 d __SCK__tp_func_writeback_wake_background
+ffffffff822e3b30 d __SCK__tp_func_writeback_queue_io
+ffffffff822e3b40 d __SCK__tp_func_writeback_sb_inodes_requeue
+ffffffff822e3b50 d __SCK__tp_func_writeback_single_inode_start
+ffffffff822e3b60 d __SCK__tp_func_writeback_single_inode
+ffffffff822e3b70 d __SCK__tp_func_writeback_lazytime
+ffffffff822e3b80 d __SCK__tp_func_writeback_lazytime_iput
+ffffffff822e3b90 d __SCK__tp_func_writeback_dirty_inode_enqueue
+ffffffff822e3ba0 d __SCK__tp_func_sb_mark_inode_writeback
+ffffffff822e3bb0 d __SCK__tp_func_sb_clear_inode_writeback
+ffffffff822e3bc0 d trace_event_fields_writeback_folio_template
+ffffffff822e3c60 d trace_event_type_funcs_writeback_folio_template
+ffffffff822e3c80 d print_fmt_writeback_folio_template
+ffffffff822e3cd0 d event_writeback_dirty_folio
+ffffffff822e3d60 d event_folio_wait_writeback
+ffffffff822e3df0 d trace_event_fields_writeback_dirty_inode_template
+ffffffff822e3eb8 d trace_event_type_funcs_writeback_dirty_inode_template
+ffffffff822e3ee0 d print_fmt_writeback_dirty_inode_template
+ffffffff822e4180 d event_writeback_mark_inode_dirty
+ffffffff822e4210 d event_writeback_dirty_inode_start
+ffffffff822e42a0 d event_writeback_dirty_inode
+ffffffff822e4330 d trace_event_fields_inode_foreign_history
+ffffffff822e43f8 d trace_event_type_funcs_inode_foreign_history
+ffffffff822e4420 d print_fmt_inode_foreign_history
+ffffffff822e44a0 d event_inode_foreign_history
+ffffffff822e4530 d trace_event_fields_inode_switch_wbs
+ffffffff822e45f8 d trace_event_type_funcs_inode_switch_wbs
+ffffffff822e4620 d print_fmt_inode_switch_wbs
+ffffffff822e46c8 d event_inode_switch_wbs
+ffffffff822e4760 d trace_event_fields_track_foreign_dirty
+ffffffff822e4878 d trace_event_type_funcs_track_foreign_dirty
+ffffffff822e48a0 d print_fmt_track_foreign_dirty
+ffffffff822e4970 d event_track_foreign_dirty
+ffffffff822e4a00 d trace_event_fields_flush_foreign
+ffffffff822e4ac8 d trace_event_type_funcs_flush_foreign
+ffffffff822e4af0 d print_fmt_flush_foreign
+ffffffff822e4b78 d event_flush_foreign
+ffffffff822e4c10 d trace_event_fields_writeback_write_inode_template
+ffffffff822e4cd8 d trace_event_type_funcs_writeback_write_inode_template
+ffffffff822e4d00 d print_fmt_writeback_write_inode_template
+ffffffff822e4d88 d event_writeback_write_inode_start
+ffffffff822e4e18 d event_writeback_write_inode
+ffffffff822e4eb0 d trace_event_fields_writeback_work_class
+ffffffff822e5040 d trace_event_type_funcs_writeback_work_class
+ffffffff822e5060 d print_fmt_writeback_work_class
+ffffffff822e5318 d event_writeback_queue
+ffffffff822e53a8 d event_writeback_exec
+ffffffff822e5438 d event_writeback_start
+ffffffff822e54c8 d event_writeback_written
+ffffffff822e5558 d event_writeback_wait
+ffffffff822e55f0 d trace_event_fields_writeback_pages_written
+ffffffff822e5640 d trace_event_type_funcs_writeback_pages_written
+ffffffff822e5660 d print_fmt_writeback_pages_written
+ffffffff822e5678 d event_writeback_pages_written
+ffffffff822e5710 d trace_event_fields_writeback_class
+ffffffff822e5788 d trace_event_type_funcs_writeback_class
+ffffffff822e57b0 d print_fmt_writeback_class
+ffffffff822e57f8 d event_writeback_wake_background
+ffffffff822e5890 d trace_event_fields_writeback_bdi_register
+ffffffff822e58e0 d trace_event_type_funcs_writeback_bdi_register
+ffffffff822e5900 d print_fmt_writeback_bdi_register
+ffffffff822e5918 d event_writeback_bdi_register
+ffffffff822e59b0 d trace_event_fields_wbc_class
+ffffffff822e5b90 d trace_event_type_funcs_wbc_class
+ffffffff822e5bb0 d print_fmt_wbc_class
+ffffffff822e5cf0 d event_wbc_writepage
+ffffffff822e5d80 d trace_event_fields_writeback_queue_io
+ffffffff822e5e98 d trace_event_type_funcs_writeback_queue_io
+ffffffff822e5ec0 d print_fmt_writeback_queue_io
+ffffffff822e60b0 d event_writeback_queue_io
+ffffffff822e6140 d trace_event_fields_global_dirty_state
+ffffffff822e6280 d trace_event_type_funcs_global_dirty_state
+ffffffff822e62a0 d print_fmt_global_dirty_state
+ffffffff822e6378 d event_global_dirty_state
+ffffffff822e6410 d trace_event_fields_bdi_dirty_ratelimit
+ffffffff822e6578 d trace_event_type_funcs_bdi_dirty_ratelimit
+ffffffff822e65a0 d print_fmt_bdi_dirty_ratelimit
+ffffffff822e66d0 d event_bdi_dirty_ratelimit
+ffffffff822e6760 d trace_event_fields_balance_dirty_pages
+ffffffff822e69e0 d trace_event_type_funcs_balance_dirty_pages
+ffffffff822e6a00 d print_fmt_balance_dirty_pages
+ffffffff822e6bc0 d event_balance_dirty_pages
+ffffffff822e6c50 d trace_event_fields_writeback_sb_inodes_requeue
+ffffffff822e6d40 d trace_event_type_funcs_writeback_sb_inodes_requeue
+ffffffff822e6d60 d print_fmt_writeback_sb_inodes_requeue
+ffffffff822e6f48 d event_writeback_sb_inodes_requeue
+ffffffff822e6fe0 d trace_event_fields_writeback_single_inode_template
+ffffffff822e7148 d trace_event_type_funcs_writeback_single_inode_template
+ffffffff822e7170 d print_fmt_writeback_single_inode_template
+ffffffff822e73b0 d event_writeback_single_inode_start
+ffffffff822e7440 d event_writeback_single_inode
+ffffffff822e74d0 d trace_event_fields_writeback_inode_template
+ffffffff822e75c0 d trace_event_type_funcs_writeback_inode_template
+ffffffff822e75e0 d print_fmt_writeback_inode_template
+ffffffff822e77d0 d event_writeback_lazytime
+ffffffff822e7860 d event_writeback_lazytime_iput
+ffffffff822e78f0 d event_writeback_dirty_inode_enqueue
+ffffffff822e7980 d event_sb_mark_inode_writeback
+ffffffff822e7a10 d event_sb_clear_inode_writeback
+ffffffff822e7aa0 d dirtytime_work
+ffffffff822e7b28 d __SCK__tp_func_writeback_bdi_register
+ffffffff822e7b38 d __SCK__tp_func_global_dirty_state
+ffffffff822e7b48 d __SCK__tp_func_bdi_dirty_ratelimit
+ffffffff822e7b58 d __SCK__tp_func_balance_dirty_pages
+ffffffff822e7b68 d __SCK__tp_func_wbc_writepage
+ffffffff822e7b78 d __SCK__tp_func_writeback_dirty_folio
+ffffffff822e7b88 d __SCK__tp_func_folio_wait_writeback
+ffffffff822e7b98 d init_fs
+ffffffff822e7bd0 d nsfs
+ffffffff822e7c18 d buffer_io_error._rs
+ffffffff822e7c40 d buffer_io_error._rs
+ffffffff822e7c68 d __find_get_block_slow.last_warned
+ffffffff822e7c90 d connector_reaper_work
+ffffffff822e7cc0 d destroy_list
+ffffffff822e7cd0 d reaper_work.llvm.15038835186307569259
+ffffffff822e7d58 d fsnotify_add_mark_list._rs
+ffffffff822e7d80 d inotify_table
+ffffffff822e7e80 d it_int_max
+ffffffff822e7e88 d epmutex
+ffffffff822e7eb8 d tfile_check_list
+ffffffff822e7ec0 d epoll_table
+ffffffff822e7f40 d long_max
+ffffffff822e7f48 d anon_inode_fs_type
+ffffffff822e7f90 d cancel_list
+ffffffff822e7fa0 d timerfd_work.llvm.12103830624500475409
+ffffffff822e7fd0 d eventfd_ida
+ffffffff822e7fe0 d userfaultfd_misc
+ffffffff822e8030 d aio_setup.aio_fs
+ffffffff822e8080 d aio_sysctls
+ffffffff822e8140 d aio_max_nr
+ffffffff822e8148 d __SCK__tp_func_locks_get_lock_context
+ffffffff822e8158 d __SCK__tp_func_posix_lock_inode
+ffffffff822e8168 d __SCK__tp_func_fcntl_setlk
+ffffffff822e8178 d __SCK__tp_func_locks_remove_posix
+ffffffff822e8188 d __SCK__tp_func_flock_lock_inode
+ffffffff822e8198 d __SCK__tp_func_break_lease_noblock
+ffffffff822e81a8 d __SCK__tp_func_break_lease_block
+ffffffff822e81b8 d __SCK__tp_func_break_lease_unblock
+ffffffff822e81c8 d __SCK__tp_func_generic_delete_lease
+ffffffff822e81d8 d __SCK__tp_func_time_out_leases
+ffffffff822e81e8 d __SCK__tp_func_generic_add_lease
+ffffffff822e81f8 d __SCK__tp_func_leases_conflict
+ffffffff822e8210 d trace_event_fields_locks_get_lock_context
+ffffffff822e82d8 d trace_event_type_funcs_locks_get_lock_context
+ffffffff822e8300 d print_fmt_locks_get_lock_context
+ffffffff822e83f0 d event_locks_get_lock_context
+ffffffff822e8480 d trace_event_fields_filelock_lock
+ffffffff822e8660 d trace_event_type_funcs_filelock_lock
+ffffffff822e8680 d print_fmt_filelock_lock
+ffffffff822e8930 d event_posix_lock_inode
+ffffffff822e89c0 d event_fcntl_setlk
+ffffffff822e8a50 d event_locks_remove_posix
+ffffffff822e8ae0 d event_flock_lock_inode
+ffffffff822e8b70 d trace_event_fields_filelock_lease
+ffffffff822e8d00 d trace_event_type_funcs_filelock_lease
+ffffffff822e8d20 d print_fmt_filelock_lease
+ffffffff822e8fc8 d event_break_lease_noblock
+ffffffff822e9058 d event_break_lease_block
+ffffffff822e90e8 d event_break_lease_unblock
+ffffffff822e9178 d event_generic_delete_lease
+ffffffff822e9208 d event_time_out_leases
+ffffffff822e92a0 d trace_event_fields_generic_add_lease
+ffffffff822e9408 d trace_event_type_funcs_generic_add_lease
+ffffffff822e9430 d print_fmt_generic_add_lease
+ffffffff822e9698 d event_generic_add_lease
+ffffffff822e9730 d trace_event_fields_leases_conflict
+ffffffff822e9870 d trace_event_type_funcs_leases_conflict
+ffffffff822e9890 d print_fmt_leases_conflict
+ffffffff822e9bf0 d event_leases_conflict
+ffffffff822e9c80 d file_rwsem
+ffffffff822e9ce0 d lease_break_time
+ffffffff822e9cf0 d locks_sysctls
+ffffffff822e9db0 d leases_enable
+ffffffff822e9db8 d misc_format
+ffffffff822e9df0 d bm_fs_type
+ffffffff822e9e38 d entries
+ffffffff822e9e48 d script_format
+ffffffff822e9e80 d elf_format
+ffffffff822e9eb8 d do_coredump._rs
+ffffffff822e9ee0 d do_coredump._rs.9
+ffffffff822e9f10 d core_pattern
+ffffffff822e9f90 d core_name_size
+ffffffff822e9fa0 d coredump_sysctls
+ffffffff822ea0a0 d __SCK__tp_func_iomap_readpage
+ffffffff822ea0b0 d __SCK__tp_func_iomap_readahead
+ffffffff822ea0c0 d __SCK__tp_func_iomap_writepage
+ffffffff822ea0d0 d __SCK__tp_func_iomap_release_folio
+ffffffff822ea0e0 d __SCK__tp_func_iomap_invalidate_folio
+ffffffff822ea0f0 d __SCK__tp_func_iomap_dio_invalidate_fail
+ffffffff822ea100 d __SCK__tp_func_iomap_iter_dstmap
+ffffffff822ea110 d __SCK__tp_func_iomap_iter_srcmap
+ffffffff822ea120 d __SCK__tp_func_iomap_writepage_map
+ffffffff822ea130 d __SCK__tp_func_iomap_iter
+ffffffff822ea140 d trace_event_fields_iomap_readpage_class
+ffffffff822ea1e0 d trace_event_type_funcs_iomap_readpage_class
+ffffffff822ea200 d print_fmt_iomap_readpage_class
+ffffffff822ea298 d event_iomap_readpage
+ffffffff822ea328 d event_iomap_readahead
+ffffffff822ea3c0 d trace_event_fields_iomap_range_class
+ffffffff822ea4b0 d trace_event_type_funcs_iomap_range_class
+ffffffff822ea4d0 d print_fmt_iomap_range_class
+ffffffff822ea598 d event_iomap_writepage
+ffffffff822ea628 d event_iomap_release_folio
+ffffffff822ea6b8 d event_iomap_invalidate_folio
+ffffffff822ea748 d event_iomap_dio_invalidate_fail
+ffffffff822ea7e0 d trace_event_fields_iomap_class
+ffffffff822ea948 d trace_event_type_funcs_iomap_class
+ffffffff822ea970 d print_fmt_iomap_class
+ffffffff822eabb8 d event_iomap_iter_dstmap
+ffffffff822eac48 d event_iomap_iter_srcmap
+ffffffff822eacd8 d event_iomap_writepage_map
+ffffffff822ead70 d trace_event_fields_iomap_iter
+ffffffff822eaeb0 d trace_event_type_funcs_iomap_iter
+ffffffff822eaed0 d print_fmt_iomap_iter
+ffffffff822eb078 d event_iomap_iter
+ffffffff822eb108 d iomap_finish_ioend._rs
+ffffffff822eb130 d iomap_dio_iter._rs
+ffffffff822eb158 d proc_fs_type
+ffffffff822eb1a0 d proc_root
+ffffffff822eb250 d proc_inum_ida.llvm.6547391318368070919
+ffffffff822eb260 d sysctl_table_root.llvm.194383397209702251
+ffffffff822eb2e0 d root_table
+ffffffff822eb360 d __kernfs_iattrs.iattr_mutex
+ffffffff822eb390 d kernfs_xattr_handlers
+ffffffff822eb3b0 d kernfs_notify.kernfs_notify_work
+ffffffff822eb3e0 d kernfs_notify_list
+ffffffff822eb3e8 d sysfs_fs_type
+ffffffff822eb430 d pty_limit
+ffffffff822eb434 d pty_reserve
+ffffffff822eb438 d devpts_fs_type
+ffffffff822eb480 d pty_root_table
+ffffffff822eb500 d pty_kern_table
+ffffffff822eb580 d pty_table
+ffffffff822eb680 d pty_limit_max
+ffffffff822eb688 d es_reclaim_extents._rs
+ffffffff822eb6b0 d ext4_ioctl_checkpoint._rs
+ffffffff822eb6d8 d ext4_groupinfo_create_slab.ext4_grpinfo_slab_create_mutex
+ffffffff822eb708 d __SCK__tp_func_ext4_other_inode_update_time
+ffffffff822eb718 d __SCK__tp_func_ext4_free_inode
+ffffffff822eb728 d __SCK__tp_func_ext4_request_inode
+ffffffff822eb738 d __SCK__tp_func_ext4_allocate_inode
+ffffffff822eb748 d __SCK__tp_func_ext4_evict_inode
+ffffffff822eb758 d __SCK__tp_func_ext4_drop_inode
+ffffffff822eb768 d __SCK__tp_func_ext4_nfs_commit_metadata
+ffffffff822eb778 d __SCK__tp_func_ext4_mark_inode_dirty
+ffffffff822eb788 d __SCK__tp_func_ext4_begin_ordered_truncate
+ffffffff822eb798 d __SCK__tp_func_ext4_write_begin
+ffffffff822eb7a8 d __SCK__tp_func_ext4_da_write_begin
+ffffffff822eb7b8 d __SCK__tp_func_ext4_write_end
+ffffffff822eb7c8 d __SCK__tp_func_ext4_journalled_write_end
+ffffffff822eb7d8 d __SCK__tp_func_ext4_da_write_end
+ffffffff822eb7e8 d __SCK__tp_func_ext4_writepages
+ffffffff822eb7f8 d __SCK__tp_func_ext4_da_write_pages
+ffffffff822eb808 d __SCK__tp_func_ext4_da_write_pages_extent
+ffffffff822eb818 d __SCK__tp_func_ext4_writepages_result
+ffffffff822eb828 d __SCK__tp_func_ext4_writepage
+ffffffff822eb838 d __SCK__tp_func_ext4_readpage
+ffffffff822eb848 d __SCK__tp_func_ext4_releasepage
+ffffffff822eb858 d __SCK__tp_func_ext4_invalidate_folio
+ffffffff822eb868 d __SCK__tp_func_ext4_journalled_invalidate_folio
+ffffffff822eb878 d __SCK__tp_func_ext4_discard_blocks
+ffffffff822eb888 d __SCK__tp_func_ext4_mb_new_inode_pa
+ffffffff822eb898 d __SCK__tp_func_ext4_mb_new_group_pa
+ffffffff822eb8a8 d __SCK__tp_func_ext4_mb_release_inode_pa
+ffffffff822eb8b8 d __SCK__tp_func_ext4_mb_release_group_pa
+ffffffff822eb8c8 d __SCK__tp_func_ext4_discard_preallocations
+ffffffff822eb8d8 d __SCK__tp_func_ext4_mb_discard_preallocations
+ffffffff822eb8e8 d __SCK__tp_func_ext4_request_blocks
+ffffffff822eb8f8 d __SCK__tp_func_ext4_allocate_blocks
+ffffffff822eb908 d __SCK__tp_func_ext4_free_blocks
+ffffffff822eb918 d __SCK__tp_func_ext4_sync_file_enter
+ffffffff822eb928 d __SCK__tp_func_ext4_sync_file_exit
+ffffffff822eb938 d __SCK__tp_func_ext4_sync_fs
+ffffffff822eb948 d __SCK__tp_func_ext4_alloc_da_blocks
+ffffffff822eb958 d __SCK__tp_func_ext4_mballoc_alloc
+ffffffff822eb968 d __SCK__tp_func_ext4_mballoc_prealloc
+ffffffff822eb978 d __SCK__tp_func_ext4_mballoc_discard
+ffffffff822eb988 d __SCK__tp_func_ext4_mballoc_free
+ffffffff822eb998 d __SCK__tp_func_ext4_forget
+ffffffff822eb9a8 d __SCK__tp_func_ext4_da_update_reserve_space
+ffffffff822eb9b8 d __SCK__tp_func_ext4_da_reserve_space
+ffffffff822eb9c8 d __SCK__tp_func_ext4_da_release_space
+ffffffff822eb9d8 d __SCK__tp_func_ext4_mb_bitmap_load
+ffffffff822eb9e8 d __SCK__tp_func_ext4_mb_buddy_bitmap_load
+ffffffff822eb9f8 d __SCK__tp_func_ext4_load_inode_bitmap
+ffffffff822eba08 d __SCK__tp_func_ext4_read_block_bitmap_load
+ffffffff822eba18 d __SCK__tp_func_ext4_punch_hole
+ffffffff822eba28 d __SCK__tp_func_ext4_unlink_enter
+ffffffff822eba38 d __SCK__tp_func_ext4_unlink_exit
+ffffffff822eba48 d __SCK__tp_func_ext4_truncate_enter
+ffffffff822eba58 d __SCK__tp_func_ext4_truncate_exit
+ffffffff822eba68 d __SCK__tp_func_ext4_ind_map_blocks_enter
+ffffffff822eba78 d __SCK__tp_func_ext4_ind_map_blocks_exit
+ffffffff822eba88 d __SCK__tp_func_ext4_load_inode
+ffffffff822eba98 d __SCK__tp_func_ext4_journal_start
+ffffffff822ebaa8 d __SCK__tp_func_ext4_journal_start_reserved
+ffffffff822ebab8 d __SCK__tp_func_ext4_trim_extent
+ffffffff822ebac8 d __SCK__tp_func_ext4_trim_all_free
+ffffffff822ebad8 d __SCK__tp_func_ext4_fsmap_low_key
+ffffffff822ebae8 d __SCK__tp_func_ext4_fsmap_high_key
+ffffffff822ebaf8 d __SCK__tp_func_ext4_fsmap_mapping
+ffffffff822ebb08 d __SCK__tp_func_ext4_getfsmap_low_key
+ffffffff822ebb18 d __SCK__tp_func_ext4_getfsmap_high_key
+ffffffff822ebb28 d __SCK__tp_func_ext4_getfsmap_mapping
+ffffffff822ebb38 d __SCK__tp_func_ext4_shutdown
+ffffffff822ebb48 d __SCK__tp_func_ext4_error
+ffffffff822ebb58 d __SCK__tp_func_ext4_prefetch_bitmaps
+ffffffff822ebb68 d __SCK__tp_func_ext4_lazy_itable_init
+ffffffff822ebb78 d __SCK__tp_func_ext4_update_sb
+ffffffff822ebb90 d trace_event_fields_ext4_other_inode_update_time
+ffffffff822ebca8 d trace_event_type_funcs_ext4_other_inode_update_time
+ffffffff822ebcd0 d print_fmt_ext4_other_inode_update_time
+ffffffff822ebdb8 d event_ext4_other_inode_update_time
+ffffffff822ebe50 d trace_event_fields_ext4_free_inode
+ffffffff822ebf68 d trace_event_type_funcs_ext4_free_inode
+ffffffff822ebf90 d print_fmt_ext4_free_inode
+ffffffff822ec068 d event_ext4_free_inode
+ffffffff822ec100 d trace_event_fields_ext4_request_inode
+ffffffff822ec1a0 d trace_event_type_funcs_ext4_request_inode
+ffffffff822ec1c0 d print_fmt_ext4_request_inode
+ffffffff822ec260 d event_ext4_request_inode
+ffffffff822ec2f0 d trace_event_fields_ext4_allocate_inode
+ffffffff822ec3b8 d trace_event_type_funcs_ext4_allocate_inode
+ffffffff822ec3e0 d print_fmt_ext4_allocate_inode
+ffffffff822ec4a0 d event_ext4_allocate_inode
+ffffffff822ec530 d trace_event_fields_ext4_evict_inode
+ffffffff822ec5d0 d trace_event_type_funcs_ext4_evict_inode
+ffffffff822ec5f0 d print_fmt_ext4_evict_inode
+ffffffff822ec690 d event_ext4_evict_inode
+ffffffff822ec720 d trace_event_fields_ext4_drop_inode
+ffffffff822ec7c0 d trace_event_type_funcs_ext4_drop_inode
+ffffffff822ec7e0 d print_fmt_ext4_drop_inode
+ffffffff822ec878 d event_ext4_drop_inode
+ffffffff822ec910 d trace_event_fields_ext4_nfs_commit_metadata
+ffffffff822ec988 d trace_event_type_funcs_ext4_nfs_commit_metadata
+ffffffff822ec9b0 d print_fmt_ext4_nfs_commit_metadata
+ffffffff822eca38 d event_ext4_nfs_commit_metadata
+ffffffff822ecad0 d trace_event_fields_ext4_mark_inode_dirty
+ffffffff822ecb70 d trace_event_type_funcs_ext4_mark_inode_dirty
+ffffffff822ecb90 d print_fmt_ext4_mark_inode_dirty
+ffffffff822ecc38 d event_ext4_mark_inode_dirty
+ffffffff822eccd0 d trace_event_fields_ext4_begin_ordered_truncate
+ffffffff822ecd70 d trace_event_type_funcs_ext4_begin_ordered_truncate
+ffffffff822ecd90 d print_fmt_ext4_begin_ordered_truncate
+ffffffff822ece38 d event_ext4_begin_ordered_truncate
+ffffffff822eced0 d trace_event_fields_ext4__write_begin
+ffffffff822ecf98 d trace_event_type_funcs_ext4__write_begin
+ffffffff822ecfc0 d print_fmt_ext4__write_begin
+ffffffff822ed070 d event_ext4_write_begin
+ffffffff822ed100 d event_ext4_da_write_begin
+ffffffff822ed190 d trace_event_fields_ext4__write_end
+ffffffff822ed280 d trace_event_type_funcs_ext4__write_end
+ffffffff822ed2a0 d print_fmt_ext4__write_end
+ffffffff822ed360 d event_ext4_write_end
+ffffffff822ed3f0 d event_ext4_journalled_write_end
+ffffffff822ed480 d event_ext4_da_write_end
+ffffffff822ed510 d trace_event_fields_ext4_writepages
+ffffffff822ed6c8 d trace_event_type_funcs_ext4_writepages
+ffffffff822ed6f0 d print_fmt_ext4_writepages
+ffffffff822ed8a0 d event_ext4_writepages
+ffffffff822ed930 d trace_event_fields_ext4_da_write_pages
+ffffffff822eda20 d trace_event_type_funcs_ext4_da_write_pages
+ffffffff822eda40 d print_fmt_ext4_da_write_pages
+ffffffff822edb28 d event_ext4_da_write_pages
+ffffffff822edbc0 d trace_event_fields_ext4_da_write_pages_extent
+ffffffff822edcb0 d trace_event_type_funcs_ext4_da_write_pages_extent
+ffffffff822edcd0 d print_fmt_ext4_da_write_pages_extent
+ffffffff822ede40 d event_ext4_da_write_pages_extent
+ffffffff822eded0 d trace_event_fields_ext4_writepages_result
+ffffffff822ee010 d trace_event_type_funcs_ext4_writepages_result
+ffffffff822ee030 d print_fmt_ext4_writepages_result
+ffffffff822ee168 d event_ext4_writepages_result
+ffffffff822ee200 d trace_event_fields_ext4__page_op
+ffffffff822ee2a0 d trace_event_type_funcs_ext4__page_op
+ffffffff822ee2c0 d print_fmt_ext4__page_op
+ffffffff822ee370 d event_ext4_writepage
+ffffffff822ee400 d event_ext4_readpage
+ffffffff822ee490 d event_ext4_releasepage
+ffffffff822ee520 d trace_event_fields_ext4_invalidate_folio_op
+ffffffff822ee610 d trace_event_type_funcs_ext4_invalidate_folio_op
+ffffffff822ee630 d print_fmt_ext4_invalidate_folio_op
+ffffffff822ee718 d event_ext4_invalidate_folio
+ffffffff822ee7a8 d event_ext4_journalled_invalidate_folio
+ffffffff822ee840 d trace_event_fields_ext4_discard_blocks
+ffffffff822ee8e0 d trace_event_type_funcs_ext4_discard_blocks
+ffffffff822ee900 d print_fmt_ext4_discard_blocks
+ffffffff822ee990 d event_ext4_discard_blocks
+ffffffff822eea20 d trace_event_fields_ext4__mb_new_pa
+ffffffff822eeb10 d trace_event_type_funcs_ext4__mb_new_pa
+ffffffff822eeb30 d print_fmt_ext4__mb_new_pa
+ffffffff822eec08 d event_ext4_mb_new_inode_pa
+ffffffff822eec98 d event_ext4_mb_new_group_pa
+ffffffff822eed30 d trace_event_fields_ext4_mb_release_inode_pa
+ffffffff822eedf8 d trace_event_type_funcs_ext4_mb_release_inode_pa
+ffffffff822eee20 d print_fmt_ext4_mb_release_inode_pa
+ffffffff822eeed8 d event_ext4_mb_release_inode_pa
+ffffffff822eef70 d trace_event_fields_ext4_mb_release_group_pa
+ffffffff822ef010 d trace_event_type_funcs_ext4_mb_release_group_pa
+ffffffff822ef030 d print_fmt_ext4_mb_release_group_pa
+ffffffff822ef0c8 d event_ext4_mb_release_group_pa
+ffffffff822ef160 d trace_event_fields_ext4_discard_preallocations
+ffffffff822ef228 d trace_event_type_funcs_ext4_discard_preallocations
+ffffffff822ef250 d print_fmt_ext4_discard_preallocations
+ffffffff822ef300 d event_ext4_discard_preallocations
+ffffffff822ef390 d trace_event_fields_ext4_mb_discard_preallocations
+ffffffff822ef408 d trace_event_type_funcs_ext4_mb_discard_preallocations
+ffffffff822ef430 d print_fmt_ext4_mb_discard_preallocations
+ffffffff822ef4b0 d event_ext4_mb_discard_preallocations
+ffffffff822ef540 d trace_event_fields_ext4_request_blocks
+ffffffff822ef6f8 d trace_event_type_funcs_ext4_request_blocks
+ffffffff822ef720 d print_fmt_ext4_request_blocks
+ffffffff822efa08 d event_ext4_request_blocks
+ffffffff822efaa0 d trace_event_fields_ext4_allocate_blocks
+ffffffff822efc80 d trace_event_type_funcs_ext4_allocate_blocks
+ffffffff822efca0 d print_fmt_ext4_allocate_blocks
+ffffffff822eff98 d event_ext4_allocate_blocks
+ffffffff822f0030 d trace_event_fields_ext4_free_blocks
+ffffffff822f0148 d trace_event_type_funcs_ext4_free_blocks
+ffffffff822f0170 d print_fmt_ext4_free_blocks
+ffffffff822f02f8 d event_ext4_free_blocks
+ffffffff822f0390 d trace_event_fields_ext4_sync_file_enter
+ffffffff822f0458 d trace_event_type_funcs_ext4_sync_file_enter
+ffffffff822f0480 d print_fmt_ext4_sync_file_enter
+ffffffff822f0550 d event_ext4_sync_file_enter
+ffffffff822f05e0 d trace_event_fields_ext4_sync_file_exit
+ffffffff822f0680 d trace_event_type_funcs_ext4_sync_file_exit
+ffffffff822f06a0 d print_fmt_ext4_sync_file_exit
+ffffffff822f0738 d event_ext4_sync_file_exit
+ffffffff822f07d0 d trace_event_fields_ext4_sync_fs
+ffffffff822f0848 d trace_event_type_funcs_ext4_sync_fs
+ffffffff822f0870 d print_fmt_ext4_sync_fs
+ffffffff822f08e8 d event_ext4_sync_fs
+ffffffff822f0980 d trace_event_fields_ext4_alloc_da_blocks
+ffffffff822f0a20 d trace_event_type_funcs_ext4_alloc_da_blocks
+ffffffff822f0a40 d print_fmt_ext4_alloc_da_blocks
+ffffffff822f0af0 d event_ext4_alloc_da_blocks
+ffffffff822f0b80 d trace_event_fields_ext4_mballoc_alloc
+ffffffff822f0ec8 d trace_event_type_funcs_ext4_mballoc_alloc
+ffffffff822f0ef0 d print_fmt_ext4_mballoc_alloc
+ffffffff822f12c0 d event_ext4_mballoc_alloc
+ffffffff822f1350 d trace_event_fields_ext4_mballoc_prealloc
+ffffffff822f1508 d trace_event_type_funcs_ext4_mballoc_prealloc
+ffffffff822f1530 d print_fmt_ext4_mballoc_prealloc
+ffffffff822f1670 d event_ext4_mballoc_prealloc
+ffffffff822f1700 d trace_event_fields_ext4__mballoc
+ffffffff822f17f0 d trace_event_type_funcs_ext4__mballoc
+ffffffff822f1810 d print_fmt_ext4__mballoc
+ffffffff822f18e0 d event_ext4_mballoc_discard
+ffffffff822f1970 d event_ext4_mballoc_free
+ffffffff822f1a00 d trace_event_fields_ext4_forget
+ffffffff822f1af0 d trace_event_type_funcs_ext4_forget
+ffffffff822f1b10 d print_fmt_ext4_forget
+ffffffff822f1be8 d event_ext4_forget
+ffffffff822f1c80 d trace_event_fields_ext4_da_update_reserve_space
+ffffffff822f1dc0 d trace_event_type_funcs_ext4_da_update_reserve_space
+ffffffff822f1de0 d print_fmt_ext4_da_update_reserve_space
+ffffffff822f1f10 d event_ext4_da_update_reserve_space
+ffffffff822f1fa0 d trace_event_fields_ext4_da_reserve_space
+ffffffff822f2090 d trace_event_type_funcs_ext4_da_reserve_space
+ffffffff822f20b0 d print_fmt_ext4_da_reserve_space
+ffffffff822f21a0 d event_ext4_da_reserve_space
+ffffffff822f2230 d trace_event_fields_ext4_da_release_space
+ffffffff822f2348 d trace_event_type_funcs_ext4_da_release_space
+ffffffff822f2370 d print_fmt_ext4_da_release_space
+ffffffff822f2480 d event_ext4_da_release_space
+ffffffff822f2510 d trace_event_fields_ext4__bitmap_load
+ffffffff822f2588 d trace_event_type_funcs_ext4__bitmap_load
+ffffffff822f25b0 d print_fmt_ext4__bitmap_load
+ffffffff822f2628 d event_ext4_mb_bitmap_load
+ffffffff822f26b8 d event_ext4_mb_buddy_bitmap_load
+ffffffff822f2748 d event_ext4_load_inode_bitmap
+ffffffff822f27e0 d trace_event_fields_ext4_read_block_bitmap_load
+ffffffff822f2880 d trace_event_type_funcs_ext4_read_block_bitmap_load
+ffffffff822f28a0 d print_fmt_ext4_read_block_bitmap_load
+ffffffff822f2938 d event_ext4_read_block_bitmap_load
+ffffffff822f29d0 d trace_event_fields_ext4__fallocate_mode
+ffffffff822f2ac0 d trace_event_type_funcs_ext4__fallocate_mode
+ffffffff822f2ae0 d print_fmt_ext4__fallocate_mode
+ffffffff822f2c38 d event_ext4_fallocate_enter
+ffffffff822f2cc8 d event_ext4_punch_hole
+ffffffff822f2d58 d event_ext4_zero_range
+ffffffff822f2df0 d trace_event_fields_ext4_fallocate_exit
+ffffffff822f2ee0 d trace_event_type_funcs_ext4_fallocate_exit
+ffffffff822f2f00 d print_fmt_ext4_fallocate_exit
+ffffffff822f2fc0 d event_ext4_fallocate_exit
+ffffffff822f3050 d trace_event_fields_ext4_unlink_enter
+ffffffff822f3118 d trace_event_type_funcs_ext4_unlink_enter
+ffffffff822f3140 d print_fmt_ext4_unlink_enter
+ffffffff822f3208 d event_ext4_unlink_enter
+ffffffff822f32a0 d trace_event_fields_ext4_unlink_exit
+ffffffff822f3340 d trace_event_type_funcs_ext4_unlink_exit
+ffffffff822f3360 d print_fmt_ext4_unlink_exit
+ffffffff822f33f8 d event_ext4_unlink_exit
+ffffffff822f3490 d trace_event_fields_ext4__truncate
+ffffffff822f3530 d trace_event_type_funcs_ext4__truncate
+ffffffff822f3550 d print_fmt_ext4__truncate
+ffffffff822f35f0 d event_ext4_truncate_enter
+ffffffff822f3680 d event_ext4_truncate_exit
+ffffffff822f3710 d trace_event_fields_ext4_ext_convert_to_initialized_enter
+ffffffff822f3850 d trace_event_type_funcs_ext4_ext_convert_to_initialized_enter
+ffffffff822f3870 d print_fmt_ext4_ext_convert_to_initialized_enter
+ffffffff822f3968 d event_ext4_ext_convert_to_initialized_enter
+ffffffff822f3a00 d trace_event_fields_ext4_ext_convert_to_initialized_fastpath
+ffffffff822f3bb8 d trace_event_type_funcs_ext4_ext_convert_to_initialized_fastpath
+ffffffff822f3be0 d print_fmt_ext4_ext_convert_to_initialized_fastpath
+ffffffff822f3d20 d event_ext4_ext_convert_to_initialized_fastpath
+ffffffff822f3db0 d trace_event_fields_ext4__map_blocks_enter
+ffffffff822f3ea0 d trace_event_type_funcs_ext4__map_blocks_enter
+ffffffff822f3ec0 d print_fmt_ext4__map_blocks_enter
+ffffffff822f40b0 d event_ext4_ext_map_blocks_enter
+ffffffff822f4140 d event_ext4_ind_map_blocks_enter
+ffffffff822f41d0 d trace_event_fields_ext4__map_blocks_exit
+ffffffff822f4338 d trace_event_type_funcs_ext4__map_blocks_exit
+ffffffff822f4360 d print_fmt_ext4__map_blocks_exit
+ffffffff822f4630 d event_ext4_ext_map_blocks_exit
+ffffffff822f46c0 d event_ext4_ind_map_blocks_exit
+ffffffff822f4750 d trace_event_fields_ext4_ext_load_extent
+ffffffff822f4818 d trace_event_type_funcs_ext4_ext_load_extent
+ffffffff822f4840 d print_fmt_ext4_ext_load_extent
+ffffffff822f48f0 d event_ext4_ext_load_extent
+ffffffff822f4980 d trace_event_fields_ext4_load_inode
+ffffffff822f49f8 d trace_event_type_funcs_ext4_load_inode
+ffffffff822f4a20 d print_fmt_ext4_load_inode
+ffffffff822f4aa8 d event_ext4_load_inode
+ffffffff822f4b40 d trace_event_fields_ext4_journal_start
+ffffffff822f4c30 d trace_event_type_funcs_ext4_journal_start
+ffffffff822f4c50 d print_fmt_ext4_journal_start
+ffffffff822f4d30 d event_ext4_journal_start
+ffffffff822f4dc0 d trace_event_fields_ext4_journal_start_reserved
+ffffffff822f4e60 d trace_event_type_funcs_ext4_journal_start_reserved
+ffffffff822f4e80 d print_fmt_ext4_journal_start_reserved
+ffffffff822f4f18 d event_ext4_journal_start_reserved
+ffffffff822f4fb0 d trace_event_fields_ext4__trim
+ffffffff822f50a0 d trace_event_type_funcs_ext4__trim
+ffffffff822f50c0 d print_fmt_ext4__trim
+ffffffff822f5130 d event_ext4_trim_extent
+ffffffff822f51c0 d event_ext4_trim_all_free
+ffffffff822f5250 d trace_event_fields_ext4_ext_handle_unwritten_extents
+ffffffff822f53b8 d trace_event_type_funcs_ext4_ext_handle_unwritten_extents
+ffffffff822f53e0 d print_fmt_ext4_ext_handle_unwritten_extents
+ffffffff822f5668 d event_ext4_ext_handle_unwritten_extents
+ffffffff822f5700 d trace_event_fields_ext4_get_implied_cluster_alloc_exit
+ffffffff822f5818 d trace_event_type_funcs_ext4_get_implied_cluster_alloc_exit
+ffffffff822f5840 d print_fmt_ext4_get_implied_cluster_alloc_exit
+ffffffff822f59c8 d event_ext4_get_implied_cluster_alloc_exit
+ffffffff822f5a60 d trace_event_fields_ext4_ext_show_extent
+ffffffff822f5b50 d trace_event_type_funcs_ext4_ext_show_extent
+ffffffff822f5b70 d print_fmt_ext4_ext_show_extent
+ffffffff822f5c60 d event_ext4_ext_show_extent
+ffffffff822f5cf0 d trace_event_fields_ext4_remove_blocks
+ffffffff822f5ea8 d trace_event_type_funcs_ext4_remove_blocks
+ffffffff822f5ed0 d print_fmt_ext4_remove_blocks
+ffffffff822f6070 d event_ext4_remove_blocks
+ffffffff822f6100 d trace_event_fields_ext4_ext_rm_leaf
+ffffffff822f6290 d trace_event_type_funcs_ext4_ext_rm_leaf
+ffffffff822f62b0 d print_fmt_ext4_ext_rm_leaf
+ffffffff822f6440 d event_ext4_ext_rm_leaf
+ffffffff822f64d0 d trace_event_fields_ext4_ext_rm_idx
+ffffffff822f6570 d trace_event_type_funcs_ext4_ext_rm_idx
+ffffffff822f6590 d print_fmt_ext4_ext_rm_idx
+ffffffff822f6648 d event_ext4_ext_rm_idx
+ffffffff822f66e0 d trace_event_fields_ext4_ext_remove_space
+ffffffff822f67d0 d trace_event_type_funcs_ext4_ext_remove_space
+ffffffff822f67f0 d print_fmt_ext4_ext_remove_space
+ffffffff822f68c8 d event_ext4_ext_remove_space
+ffffffff822f6960 d trace_event_fields_ext4_ext_remove_space_done
+ffffffff822f6af0 d trace_event_type_funcs_ext4_ext_remove_space_done
+ffffffff822f6b10 d print_fmt_ext4_ext_remove_space_done
+ffffffff822f6c90 d event_ext4_ext_remove_space_done
+ffffffff822f6d20 d trace_event_fields_ext4__es_extent
+ffffffff822f6e38 d trace_event_type_funcs_ext4__es_extent
+ffffffff822f6e60 d print_fmt_ext4__es_extent
+ffffffff822f6fe0 d event_ext4_es_insert_extent
+ffffffff822f7070 d event_ext4_es_cache_extent
+ffffffff822f7100 d trace_event_fields_ext4_es_remove_extent
+ffffffff822f71c8 d trace_event_type_funcs_ext4_es_remove_extent
+ffffffff822f71f0 d print_fmt_ext4_es_remove_extent
+ffffffff822f72a0 d event_ext4_es_remove_extent
+ffffffff822f7330 d trace_event_fields_ext4_es_find_extent_range_enter
+ffffffff822f73d0 d trace_event_type_funcs_ext4_es_find_extent_range_enter
+ffffffff822f73f0 d print_fmt_ext4_es_find_extent_range_enter
+ffffffff822f7488 d event_ext4_es_find_extent_range_enter
+ffffffff822f7520 d trace_event_fields_ext4_es_find_extent_range_exit
+ffffffff822f7638 d trace_event_type_funcs_ext4_es_find_extent_range_exit
+ffffffff822f7660 d print_fmt_ext4_es_find_extent_range_exit
+ffffffff822f77e0 d event_ext4_es_find_extent_range_exit
+ffffffff822f7870 d trace_event_fields_ext4_es_lookup_extent_enter
+ffffffff822f7910 d trace_event_type_funcs_ext4_es_lookup_extent_enter
+ffffffff822f7930 d print_fmt_ext4_es_lookup_extent_enter
+ffffffff822f79c8 d event_ext4_es_lookup_extent_enter
+ffffffff822f7a60 d trace_event_fields_ext4_es_lookup_extent_exit
+ffffffff822f7ba0 d trace_event_type_funcs_ext4_es_lookup_extent_exit
+ffffffff822f7bc0 d print_fmt_ext4_es_lookup_extent_exit
+ffffffff822f7d68 d event_ext4_es_lookup_extent_exit
+ffffffff822f7e00 d trace_event_fields_ext4__es_shrink_enter
+ffffffff822f7ea0 d trace_event_type_funcs_ext4__es_shrink_enter
+ffffffff822f7ec0 d print_fmt_ext4__es_shrink_enter
+ffffffff822f7f60 d event_ext4_es_shrink_count
+ffffffff822f7ff0 d event_ext4_es_shrink_scan_enter
+ffffffff822f8080 d trace_event_fields_ext4_es_shrink_scan_exit
+ffffffff822f8120 d trace_event_type_funcs_ext4_es_shrink_scan_exit
+ffffffff822f8140 d print_fmt_ext4_es_shrink_scan_exit
+ffffffff822f81e0 d event_ext4_es_shrink_scan_exit
+ffffffff822f8270 d trace_event_fields_ext4_collapse_range
+ffffffff822f8338 d trace_event_type_funcs_ext4_collapse_range
+ffffffff822f8360 d print_fmt_ext4_collapse_range
+ffffffff822f8418 d event_ext4_collapse_range
+ffffffff822f84b0 d trace_event_fields_ext4_insert_range
+ffffffff822f8578 d trace_event_type_funcs_ext4_insert_range
+ffffffff822f85a0 d print_fmt_ext4_insert_range
+ffffffff822f8658 d event_ext4_insert_range
+ffffffff822f86f0 d trace_event_fields_ext4_es_shrink
+ffffffff822f87e0 d trace_event_type_funcs_ext4_es_shrink
+ffffffff822f8800 d print_fmt_ext4_es_shrink
+ffffffff822f88d8 d event_ext4_es_shrink
+ffffffff822f8970 d trace_event_fields_ext4_es_insert_delayed_block
+ffffffff822f8ab0 d trace_event_type_funcs_ext4_es_insert_delayed_block
+ffffffff822f8ad0 d print_fmt_ext4_es_insert_delayed_block
+ffffffff822f8c70 d event_ext4_es_insert_delayed_block
+ffffffff822f8d00 d trace_event_fields_ext4_fsmap_class
+ffffffff822f8e18 d trace_event_type_funcs_ext4_fsmap_class
+ffffffff822f8e40 d print_fmt_ext4_fsmap_class
+ffffffff822f8f60 d event_ext4_fsmap_low_key
+ffffffff822f8ff0 d event_ext4_fsmap_high_key
+ffffffff822f9080 d event_ext4_fsmap_mapping
+ffffffff822f9110 d trace_event_fields_ext4_getfsmap_class
+ffffffff822f9228 d trace_event_type_funcs_ext4_getfsmap_class
+ffffffff822f9250 d print_fmt_ext4_getfsmap_class
+ffffffff822f9378 d event_ext4_getfsmap_low_key
+ffffffff822f9408 d event_ext4_getfsmap_high_key
+ffffffff822f9498 d event_ext4_getfsmap_mapping
+ffffffff822f9530 d trace_event_fields_ext4_shutdown
+ffffffff822f95a8 d trace_event_type_funcs_ext4_shutdown
+ffffffff822f95d0 d print_fmt_ext4_shutdown
+ffffffff822f9648 d event_ext4_shutdown
+ffffffff822f96e0 d trace_event_fields_ext4_error
+ffffffff822f9780 d trace_event_type_funcs_ext4_error
+ffffffff822f97a0 d print_fmt_ext4_error
+ffffffff822f9838 d event_ext4_error
+ffffffff822f98d0 d trace_event_fields_ext4_prefetch_bitmaps
+ffffffff822f9998 d trace_event_type_funcs_ext4_prefetch_bitmaps
+ffffffff822f99c0 d print_fmt_ext4_prefetch_bitmaps
+ffffffff822f9a60 d event_ext4_prefetch_bitmaps
+ffffffff822f9af0 d trace_event_fields_ext4_lazy_itable_init
+ffffffff822f9b68 d trace_event_type_funcs_ext4_lazy_itable_init
+ffffffff822f9b90 d print_fmt_ext4_lazy_itable_init
+ffffffff822f9c08 d event_ext4_lazy_itable_init
+ffffffff822f9ca0 d trace_event_fields_ext4_fc_replay_scan
+ffffffff822f9d40 d trace_event_type_funcs_ext4_fc_replay_scan
+ffffffff822f9d60 d print_fmt_ext4_fc_replay_scan
+ffffffff822f9df0 d event_ext4_fc_replay_scan
+ffffffff822f9e80 d trace_event_fields_ext4_fc_replay
+ffffffff822f9f70 d trace_event_type_funcs_ext4_fc_replay
+ffffffff822f9f90 d print_fmt_ext4_fc_replay
+ffffffff822fa048 d event_ext4_fc_replay
+ffffffff822fa0e0 d trace_event_fields_ext4_fc_commit_start
+ffffffff822fa158 d trace_event_type_funcs_ext4_fc_commit_start
+ffffffff822fa180 d print_fmt_ext4_fc_commit_start
+ffffffff822fa1f8 d event_ext4_fc_commit_start
+ffffffff822fa290 d trace_event_fields_ext4_fc_commit_stop
+ffffffff822fa3d0 d trace_event_type_funcs_ext4_fc_commit_stop
+ffffffff822fa3f0 d print_fmt_ext4_fc_commit_stop
+ffffffff822fa4f0 d event_ext4_fc_commit_stop
+ffffffff822fa580 d trace_event_fields_ext4_fc_stats
+ffffffff822fa670 d trace_event_type_funcs_ext4_fc_stats
+ffffffff822fa690 d print_fmt_ext4_fc_stats
+ffffffff822fbde0 d event_ext4_fc_stats
+ffffffff822fbe70 d trace_event_fields_ext4_fc_track_dentry
+ffffffff822fbf60 d trace_event_type_funcs_ext4_fc_track_dentry
+ffffffff822fbf80 d print_fmt_ext4_fc_track_dentry
+ffffffff822fc048 d event_ext4_fc_track_create
+ffffffff822fc0d8 d event_ext4_fc_track_link
+ffffffff822fc168 d event_ext4_fc_track_unlink
+ffffffff822fc200 d trace_event_fields_ext4_fc_track_inode
+ffffffff822fc2f0 d trace_event_type_funcs_ext4_fc_track_inode
+ffffffff822fc310 d print_fmt_ext4_fc_track_inode
+ffffffff822fc3d8 d event_ext4_fc_track_inode
+ffffffff822fc470 d trace_event_fields_ext4_fc_track_range
+ffffffff822fc5b0 d trace_event_type_funcs_ext4_fc_track_range
+ffffffff822fc5d0 d print_fmt_ext4_fc_track_range
+ffffffff822fc6c0 d event_ext4_fc_track_range
+ffffffff822fc750 d trace_event_fields_ext4_fc_cleanup
+ffffffff822fc818 d trace_event_type_funcs_ext4_fc_cleanup
+ffffffff822fc840 d print_fmt_ext4_fc_cleanup
+ffffffff822fc8e8 d event_ext4_fc_cleanup
+ffffffff822fc980 d trace_event_fields_ext4_update_sb
+ffffffff822fca20 d trace_event_type_funcs_ext4_update_sb
+ffffffff822fca40 d print_fmt_ext4_update_sb
+ffffffff822fcad0 d event_ext4_update_sb
+ffffffff822fcb60 d ext4_li_mtx
+ffffffff822fcb90 d ext4_fs_type
+ffffffff822fcbd8 d ext3_fs_type
+ffffffff822fcc20 d __SCK__tp_func_ext4_ext_load_extent
+ffffffff822fcc30 d __SCK__tp_func_ext4_ext_remove_space
+ffffffff822fcc40 d __SCK__tp_func_ext4_ext_rm_leaf
+ffffffff822fcc50 d __SCK__tp_func_ext4_remove_blocks
+ffffffff822fcc60 d __SCK__tp_func_ext4_ext_rm_idx
+ffffffff822fcc70 d __SCK__tp_func_ext4_ext_remove_space_done
+ffffffff822fcc80 d __SCK__tp_func_ext4_ext_map_blocks_enter
+ffffffff822fcc90 d __SCK__tp_func_ext4_ext_show_extent
+ffffffff822fcca0 d __SCK__tp_func_ext4_ext_handle_unwritten_extents
+ffffffff822fccb0 d __SCK__tp_func_ext4_ext_convert_to_initialized_enter
+ffffffff822fccc0 d __SCK__tp_func_ext4_ext_convert_to_initialized_fastpath
+ffffffff822fccd0 d __SCK__tp_func_ext4_get_implied_cluster_alloc_exit
+ffffffff822fcce0 d __SCK__tp_func_ext4_ext_map_blocks_exit
+ffffffff822fccf0 d __SCK__tp_func_ext4_zero_range
+ffffffff822fcd00 d __SCK__tp_func_ext4_fallocate_enter
+ffffffff822fcd10 d __SCK__tp_func_ext4_fallocate_exit
+ffffffff822fcd20 d __SCK__tp_func_ext4_collapse_range
+ffffffff822fcd30 d __SCK__tp_func_ext4_insert_range
+ffffffff822fcd40 d __SCK__tp_func_ext4_es_find_extent_range_enter
+ffffffff822fcd50 d __SCK__tp_func_ext4_es_find_extent_range_exit
+ffffffff822fcd60 d __SCK__tp_func_ext4_es_insert_extent
+ffffffff822fcd70 d __SCK__tp_func_ext4_es_cache_extent
+ffffffff822fcd80 d __SCK__tp_func_ext4_es_lookup_extent_enter
+ffffffff822fcd90 d __SCK__tp_func_ext4_es_lookup_extent_exit
+ffffffff822fcda0 d __SCK__tp_func_ext4_es_remove_extent
+ffffffff822fcdb0 d __SCK__tp_func_ext4_es_shrink
+ffffffff822fcdc0 d __SCK__tp_func_ext4_es_shrink_scan_enter
+ffffffff822fcdd0 d __SCK__tp_func_ext4_es_shrink_scan_exit
+ffffffff822fcde0 d __SCK__tp_func_ext4_es_shrink_count
+ffffffff822fcdf0 d __SCK__tp_func_ext4_es_insert_delayed_block
+ffffffff822fce00 d __SCK__tp_func_ext4_fc_track_unlink
+ffffffff822fce10 d __SCK__tp_func_ext4_fc_track_link
+ffffffff822fce20 d __SCK__tp_func_ext4_fc_track_create
+ffffffff822fce30 d __SCK__tp_func_ext4_fc_track_inode
+ffffffff822fce40 d __SCK__tp_func_ext4_fc_track_range
+ffffffff822fce50 d __SCK__tp_func_ext4_fc_commit_start
+ffffffff822fce60 d __SCK__tp_func_ext4_fc_commit_stop
+ffffffff822fce70 d __SCK__tp_func_ext4_fc_replay_scan
+ffffffff822fce80 d __SCK__tp_func_ext4_fc_replay
+ffffffff822fce90 d __SCK__tp_func_ext4_fc_cleanup
+ffffffff822fcea0 d __SCK__tp_func_ext4_fc_stats
+ffffffff822fceb0 d ext4_sb_ktype
+ffffffff822fcf00 d ext4_feat_ktype
+ffffffff822fcf50 d ext4_groups
+ffffffff822fcf60 d ext4_attrs
+ffffffff822fd0c0 d ext4_attr_delayed_allocation_blocks
+ffffffff822fd0e0 d ext4_attr_session_write_kbytes
+ffffffff822fd100 d ext4_attr_lifetime_write_kbytes
+ffffffff822fd120 d ext4_attr_reserved_clusters
+ffffffff822fd140 d ext4_attr_sra_exceeded_retry_limit
+ffffffff822fd160 d ext4_attr_max_writeback_mb_bump
+ffffffff822fd180 d ext4_attr_trigger_fs_error
+ffffffff822fd1a0 d ext4_attr_first_error_time
+ffffffff822fd1c0 d ext4_attr_last_error_time
+ffffffff822fd1e0 d ext4_attr_journal_task
+ffffffff822fd200 d ext4_attr_inode_readahead_blks
+ffffffff822fd220 d ext4_attr_inode_goal
+ffffffff822fd240 d ext4_attr_mb_stats
+ffffffff822fd260 d ext4_attr_mb_max_to_scan
+ffffffff822fd280 d ext4_attr_mb_min_to_scan
+ffffffff822fd2a0 d ext4_attr_mb_order2_req
+ffffffff822fd2c0 d ext4_attr_mb_stream_req
+ffffffff822fd2e0 d ext4_attr_mb_group_prealloc
+ffffffff822fd300 d ext4_attr_mb_max_inode_prealloc
+ffffffff822fd320 d ext4_attr_mb_max_linear_groups
+ffffffff822fd340 d old_bump_val
+ffffffff822fd348 d ext4_attr_extent_max_zeroout_kb
+ffffffff822fd368 d ext4_attr_err_ratelimit_interval_ms
+ffffffff822fd388 d ext4_attr_err_ratelimit_burst
+ffffffff822fd3a8 d ext4_attr_warning_ratelimit_interval_ms
+ffffffff822fd3c8 d ext4_attr_warning_ratelimit_burst
+ffffffff822fd3e8 d ext4_attr_msg_ratelimit_interval_ms
+ffffffff822fd408 d ext4_attr_msg_ratelimit_burst
+ffffffff822fd428 d ext4_attr_errors_count
+ffffffff822fd448 d ext4_attr_warning_count
+ffffffff822fd468 d ext4_attr_msg_count
+ffffffff822fd488 d ext4_attr_first_error_ino
+ffffffff822fd4a8 d ext4_attr_last_error_ino
+ffffffff822fd4c8 d ext4_attr_first_error_block
+ffffffff822fd4e8 d ext4_attr_last_error_block
+ffffffff822fd508 d ext4_attr_first_error_line
+ffffffff822fd528 d ext4_attr_last_error_line
+ffffffff822fd548 d ext4_attr_first_error_func
+ffffffff822fd568 d ext4_attr_last_error_func
+ffffffff822fd588 d ext4_attr_first_error_errcode
+ffffffff822fd5a8 d ext4_attr_last_error_errcode
+ffffffff822fd5c8 d ext4_attr_mb_prefetch
+ffffffff822fd5e8 d ext4_attr_mb_prefetch_limit
+ffffffff822fd608 d ext4_attr_last_trim_minblks
+ffffffff822fd630 d ext4_feat_groups
+ffffffff822fd640 d ext4_feat_attrs
+ffffffff822fd678 d ext4_attr_lazy_itable_init
+ffffffff822fd698 d ext4_attr_batched_discard
+ffffffff822fd6b8 d ext4_attr_meta_bg_resize
+ffffffff822fd6d8 d ext4_attr_casefold
+ffffffff822fd6f8 d ext4_attr_metadata_csum_seed
+ffffffff822fd718 d ext4_attr_fast_commit
+ffffffff822fd740 d ext4_xattr_handlers
+ffffffff822fd778 d __SCK__tp_func_jbd2_checkpoint
+ffffffff822fd788 d __SCK__tp_func_jbd2_start_commit
+ffffffff822fd798 d __SCK__tp_func_jbd2_commit_locking
+ffffffff822fd7a8 d __SCK__tp_func_jbd2_commit_flushing
+ffffffff822fd7b8 d __SCK__tp_func_jbd2_commit_logging
+ffffffff822fd7c8 d __SCK__tp_func_jbd2_drop_transaction
+ffffffff822fd7d8 d __SCK__tp_func_jbd2_end_commit
+ffffffff822fd7e8 d __SCK__tp_func_jbd2_submit_inode_data
+ffffffff822fd7f8 d __SCK__tp_func_jbd2_run_stats
+ffffffff822fd808 d __SCK__tp_func_jbd2_checkpoint_stats
+ffffffff822fd818 d __SCK__tp_func_jbd2_update_log_tail
+ffffffff822fd828 d __SCK__tp_func_jbd2_write_superblock
+ffffffff822fd838 d __SCK__tp_func_jbd2_shrink_count
+ffffffff822fd848 d __SCK__tp_func_jbd2_shrink_scan_enter
+ffffffff822fd858 d __SCK__tp_func_jbd2_shrink_scan_exit
+ffffffff822fd868 d __SCK__tp_func_jbd2_shrink_checkpoint_list
+ffffffff822fd880 d trace_event_fields_jbd2_checkpoint
+ffffffff822fd8f8 d trace_event_type_funcs_jbd2_checkpoint
+ffffffff822fd920 d print_fmt_jbd2_checkpoint
+ffffffff822fd9a0 d event_jbd2_checkpoint
+ffffffff822fda30 d trace_event_fields_jbd2_commit
+ffffffff822fdad0 d trace_event_type_funcs_jbd2_commit
+ffffffff822fdaf0 d print_fmt_jbd2_commit
+ffffffff822fdb90 d event_jbd2_start_commit
+ffffffff822fdc20 d event_jbd2_commit_locking
+ffffffff822fdcb0 d event_jbd2_commit_flushing
+ffffffff822fdd40 d event_jbd2_commit_logging
+ffffffff822fddd0 d event_jbd2_drop_transaction
+ffffffff822fde60 d trace_event_fields_jbd2_end_commit
+ffffffff822fdf28 d trace_event_type_funcs_jbd2_end_commit
+ffffffff822fdf50 d print_fmt_jbd2_end_commit
+ffffffff822fe008 d event_jbd2_end_commit
+ffffffff822fe0a0 d trace_event_fields_jbd2_submit_inode_data
+ffffffff822fe118 d trace_event_type_funcs_jbd2_submit_inode_data
+ffffffff822fe140 d print_fmt_jbd2_submit_inode_data
+ffffffff822fe1c8 d event_jbd2_submit_inode_data
+ffffffff822fe260 d trace_event_fields_jbd2_handle_start_class
+ffffffff822fe350 d trace_event_type_funcs_jbd2_handle_start_class
+ffffffff822fe370 d print_fmt_jbd2_handle_start_class
+ffffffff822fe440 d event_jbd2_handle_start
+ffffffff822fe4d0 d event_jbd2_handle_restart
+ffffffff822fe560 d trace_event_fields_jbd2_handle_extend
+ffffffff822fe678 d trace_event_type_funcs_jbd2_handle_extend
+ffffffff822fe6a0 d print_fmt_jbd2_handle_extend
+ffffffff822fe798 d event_jbd2_handle_extend
+ffffffff822fe830 d trace_event_fields_jbd2_handle_stats
+ffffffff822fe998 d trace_event_type_funcs_jbd2_handle_stats
+ffffffff822fe9c0 d print_fmt_jbd2_handle_stats
+ffffffff822feae0 d event_jbd2_handle_stats
+ffffffff822feb70 d trace_event_fields_jbd2_run_stats
+ffffffff822fed50 d trace_event_type_funcs_jbd2_run_stats
+ffffffff822fed70 d print_fmt_jbd2_run_stats
+ffffffff822fef50 d event_jbd2_run_stats
+ffffffff822fefe0 d trace_event_fields_jbd2_checkpoint_stats
+ffffffff822ff0f8 d trace_event_type_funcs_jbd2_checkpoint_stats
+ffffffff822ff120 d print_fmt_jbd2_checkpoint_stats
+ffffffff822ff220 d event_jbd2_checkpoint_stats
+ffffffff822ff2b0 d trace_event_fields_jbd2_update_log_tail
+ffffffff822ff3a0 d trace_event_type_funcs_jbd2_update_log_tail
+ffffffff822ff3c0 d print_fmt_jbd2_update_log_tail
+ffffffff822ff488 d event_jbd2_update_log_tail
+ffffffff822ff520 d trace_event_fields_jbd2_write_superblock
+ffffffff822ff598 d trace_event_type_funcs_jbd2_write_superblock
+ffffffff822ff5c0 d print_fmt_jbd2_write_superblock
+ffffffff822ff650 d event_jbd2_write_superblock
+ffffffff822ff6e0 d trace_event_fields_jbd2_lock_buffer_stall
+ffffffff822ff758 d trace_event_type_funcs_jbd2_lock_buffer_stall
+ffffffff822ff780 d print_fmt_jbd2_lock_buffer_stall
+ffffffff822ff800 d event_jbd2_lock_buffer_stall
+ffffffff822ff890 d trace_event_fields_jbd2_journal_shrink
+ffffffff822ff930 d trace_event_type_funcs_jbd2_journal_shrink
+ffffffff822ff950 d print_fmt_jbd2_journal_shrink
+ffffffff822ff9f0 d event_jbd2_shrink_count
+ffffffff822ffa80 d event_jbd2_shrink_scan_enter
+ffffffff822ffb10 d trace_event_fields_jbd2_shrink_scan_exit
+ffffffff822ffbd8 d trace_event_type_funcs_jbd2_shrink_scan_exit
+ffffffff822ffc00 d print_fmt_jbd2_shrink_scan_exit
+ffffffff822ffcb8 d event_jbd2_shrink_scan_exit
+ffffffff822ffd50 d trace_event_fields_jbd2_shrink_checkpoint_list
+ffffffff822ffe90 d trace_event_type_funcs_jbd2_shrink_checkpoint_list
+ffffffff822ffeb0 d print_fmt_jbd2_shrink_checkpoint_list
+ffffffff822fffb8 d event_jbd2_shrink_checkpoint_list
+ffffffff82300048 d jbd2_journal_create_slab.jbd2_slab_create_mutex
+ffffffff82300078 d journal_alloc_journal_head._rs
+ffffffff823000a0 d __SCK__tp_func_jbd2_handle_start
+ffffffff823000b0 d __SCK__tp_func_jbd2_handle_extend
+ffffffff823000c0 d __SCK__tp_func_jbd2_handle_restart
+ffffffff823000d0 d __SCK__tp_func_jbd2_lock_buffer_stall
+ffffffff823000e0 d __SCK__tp_func_jbd2_handle_stats
+ffffffff823000f0 d ramfs_fs_type
+ffffffff82300138 d tables
+ffffffff82300140 d default_table
+ffffffff82300180 d table
+ffffffff823001c0 d table
+ffffffff82300200 d table
+ffffffff82300240 d table
+ffffffff82300280 d table
+ffffffff823002c0 d table
+ffffffff82300300 d table
+ffffffff82300340 d table
+ffffffff82300380 d table
+ffffffff823003c0 d table
+ffffffff82300400 d table
+ffffffff82300440 d table
+ffffffff82300480 d table
+ffffffff823004c0 d table
+ffffffff82300500 d table
+ffffffff82300540 d table
+ffffffff82300580 d table
+ffffffff823005c0 d table
+ffffffff82300600 d table
+ffffffff82300640 d table
+ffffffff82300680 d table
+ffffffff823006c0 d table
+ffffffff82300700 d table
+ffffffff82300740 d table
+ffffffff82300780 d table
+ffffffff823007c0 d table
+ffffffff82300800 d table
+ffffffff82300840 d table
+ffffffff82300880 d table
+ffffffff823008c0 d table
+ffffffff82300900 d table
+ffffffff82300940 d table
+ffffffff82300980 d table
+ffffffff823009c0 d table
+ffffffff82300a00 d table
+ffffffff82300a40 d table
+ffffffff82300a80 d table
+ffffffff82300ac0 d table
+ffffffff82300b00 d table
+ffffffff82300b40 d table
+ffffffff82300b80 d table
+ffffffff82300bc0 d table
+ffffffff82300c00 d table
+ffffffff82300c40 d table
+ffffffff82300c80 d table
+ffffffff82300cc0 d table
+ffffffff82300d00 d table
+ffffffff82300d40 d table
+ffffffff82300d80 d table
+ffffffff82300dc0 d table
+ffffffff82300e00 d table
+ffffffff82300e40 d utf8_data_table
+ffffffff82300e78 d fuse_miscdevice.llvm.8514887056761313685
+ffffffff82300ed0 d attribute_groups
+ffffffff82300ef0 d bpf_features
+ffffffff82300f00 d fuse_bpf_attr
+ffffffff82300f20 d bpf_attributes
+ffffffff82300f30 d bpf_prog_type_fuse_attr
+ffffffff82300f50 d fuse_fs_type
+ffffffff82300f98 d fuseblk_fs_type
+ffffffff82300fe0 d fuse_mutex
+ffffffff82301010 d fuse_ctl_fs_type.llvm.4450974127246690120
+ffffffff82301060 d fuse_xattr_handlers
+ffffffff82301070 d fuse_acl_xattr_handlers
+ffffffff82301090 d fuse_no_acl_xattr_handlers
+ffffffff823010b0 d debug_fs_type
+ffffffff823010f8 d trace_fs_type
+ffffffff82301140 d __SCK__tp_func_erofs_lookup
+ffffffff82301150 d __SCK__tp_func_erofs_readpage
+ffffffff82301160 d __SCK__tp_func_erofs_readpages
+ffffffff82301170 d __SCK__tp_func_erofs_map_blocks_enter
+ffffffff82301180 d __SCK__tp_func_z_erofs_map_blocks_iter_enter
+ffffffff82301190 d __SCK__tp_func_erofs_map_blocks_exit
+ffffffff823011a0 d __SCK__tp_func_z_erofs_map_blocks_iter_exit
+ffffffff823011b0 d __SCK__tp_func_erofs_destroy_inode
+ffffffff823011c0 d trace_event_fields_erofs_lookup
+ffffffff82301288 d trace_event_type_funcs_erofs_lookup
+ffffffff823012b0 d print_fmt_erofs_lookup
+ffffffff82301360 d event_erofs_lookup
+ffffffff823013f0 d trace_event_fields_erofs_fill_inode
+ffffffff823014b8 d trace_event_type_funcs_erofs_fill_inode
+ffffffff823014e0 d print_fmt_erofs_fill_inode
+ffffffff82301588 d event_erofs_fill_inode
+ffffffff82301620 d trace_event_fields_erofs_readpage
+ffffffff82301738 d trace_event_type_funcs_erofs_readpage
+ffffffff82301760 d print_fmt_erofs_readpage
+ffffffff82301878 d event_erofs_readpage
+ffffffff82301910 d trace_event_fields_erofs_readpages
+ffffffff82301a00 d trace_event_type_funcs_erofs_readpages
+ffffffff82301a20 d print_fmt_erofs_readpages
+ffffffff82301af8 d event_erofs_readpages
+ffffffff82301b90 d trace_event_fields_erofs__map_blocks_enter
+ffffffff82301c80 d trace_event_type_funcs_erofs__map_blocks_enter
+ffffffff82301ca0 d print_fmt_erofs__map_blocks_enter
+ffffffff82301d98 d event_erofs_map_blocks_enter
+ffffffff82301e28 d event_z_erofs_map_blocks_iter_enter
+ffffffff82301ec0 d trace_event_fields_erofs__map_blocks_exit
+ffffffff82302050 d trace_event_type_funcs_erofs__map_blocks_exit
+ffffffff82302070 d print_fmt_erofs__map_blocks_exit
+ffffffff82302218 d event_erofs_map_blocks_exit
+ffffffff823022a8 d event_z_erofs_map_blocks_iter_exit
+ffffffff82302340 d trace_event_fields_erofs_destroy_inode
+ffffffff823023b8 d trace_event_type_funcs_erofs_destroy_inode
+ffffffff823023e0 d print_fmt_erofs_destroy_inode
+ffffffff82302460 d event_erofs_destroy_inode
+ffffffff823024f0 d erofs_fs_type
+ffffffff82302538 d __SCK__tp_func_erofs_fill_inode
+ffffffff82302548 d erofs_sb_list
+ffffffff82302558 d erofs_shrinker_info.llvm.14719007145941832085
+ffffffff82302598 d erofs_pcpubuf_growsize.pcb_resize_mutex
+ffffffff823025c8 d erofs_root.llvm.7306472960977238302
+ffffffff82302668 d erofs_sb_ktype
+ffffffff823026b8 d erofs_feat.llvm.7306472960977238302
+ffffffff82302718 d erofs_feat_ktype
+ffffffff82302768 d erofs_ktype
+ffffffff823027c0 d erofs_groups
+ffffffff823027d0 d erofs_attrs
+ffffffff823027e0 d erofs_attr_sync_decompress
+ffffffff82302800 d erofs_feat_groups
+ffffffff82302810 d erofs_feat_attrs
+ffffffff82302868 d erofs_attr_zero_padding
+ffffffff82302888 d erofs_attr_compr_cfgs
+ffffffff823028a8 d erofs_attr_big_pcluster
+ffffffff823028c8 d erofs_attr_chunked_file
+ffffffff823028e8 d erofs_attr_device_table
+ffffffff82302908 d erofs_attr_compr_head2
+ffffffff82302928 d erofs_attr_sb_chksum
+ffffffff82302948 d erofs_attr_ztailpacking
+ffffffff82302968 d erofs_attr_fragments
+ffffffff82302988 d erofs_attr_dedupe
+ffffffff823029b0 d erofs_xattr_handlers
+ffffffff823029e0 d dac_mmap_min_addr
+ffffffff823029e8 d blocking_lsm_notifier_chain.llvm.6889905807811859416
+ffffffff82302a30 d fs_type
+ffffffff82302a78 d __SCK__tp_func_selinux_audited
+ffffffff82302a90 d trace_event_fields_selinux_audited
+ffffffff82302bd0 d trace_event_type_funcs_selinux_audited
+ffffffff82302bf0 d print_fmt_selinux_audited
+ffffffff82302cc0 d event_selinux_audited
+ffffffff82302d50 d inode_doinit_use_xattr._rs
+ffffffff82302d78 d selinux_netlink_send._rs
+ffffffff82302da0 d sel_fs_type
+ffffffff82302de8 d sel_write_load._rs
+ffffffff82302e10 d sel_write_load._rs.33
+ffffffff82302e38 d sel_make_bools._rs
+ffffffff82302e60 d nlmsg_route_perms
+ffffffff82303080 d sel_netif_netdev_notifier
+ffffffff82303098 d security_compute_xperms_decision._rs
+ffffffff823030c0 d crypto_alg_list
+ffffffff823030d0 d crypto_alg_sem
+ffffffff82303110 d crypto_chain
+ffffffff82303158 d crypto_template_list
+ffffffff82303168 d seqiv_tmpl
+ffffffff82303210 d echainiv_tmpl
+ffffffff823032b8 d scomp_lock
+ffffffff823032e8 d cryptomgr_notifier
+ffffffff82303300 d hmac_tmpl
+ffffffff823033a8 d crypto_xcbc_tmpl
+ffffffff82303450 d ks
+ffffffff82303480 d crypto_default_null_skcipher_lock
+ffffffff823034b0 d digest_null
+ffffffff82303690 d skcipher_null
+ffffffff82303850 d null_algs
+ffffffff82303b50 d alg
+ffffffff82303d30 d alg
+ffffffff82303f10 d alg
+ffffffff82304090 d alg
+ffffffff82304270 d alg
+ffffffff823043f0 d alg
+ffffffff82304570 d alg
+ffffffff823046f0 d sha256_algs
+ffffffff82304ab0 d sha512_algs
+ffffffff82304e70 d blake2b_algs
+ffffffff823055f0 d crypto_cbc_tmpl
+ffffffff823056a0 d crypto_ctr_tmpls
+ffffffff823057f0 d crypto_xctr_tmpl
+ffffffff823058a0 d hctr2_tmpls
+ffffffff823059f0 d adiantum_tmpl
+ffffffff82305a98 d nhpoly1305_alg
+ffffffff82305c80 d crypto_gcm_tmpls
+ffffffff82305f20 d rfc7539_tmpls
+ffffffff82306070 d cryptd_max_cpu_qlen
+ffffffff82306078 d cryptd_tmpl
+ffffffff82306120 d des_algs
+ffffffff82306420 d aes_alg
+ffffffff823065a0 d algs
+ffffffff82306ae0 d poly1305_alg
+ffffffff82306cc0 d scomp
+ffffffff82307000 d scomp
+ffffffff823071a0 d scomp
+ffffffff82307340 d scomp
+ffffffff823074e0 d scomp
+ffffffff82307680 d crypto_authenc_tmpl
+ffffffff82307728 d crypto_authenc_esn_tmpl
+ffffffff823077d0 d alg_lz4
+ffffffff82307950 d crypto_default_rng_lock
+ffffffff82307980 d rng_algs
+ffffffff82307b20 d drbg_fill_array.priority
+ffffffff82307b28 d jent_alg
+ffffffff82307cc8 d jent_kcapi_random._rs
+ffffffff82307cf0 d ghash_alg
+ffffffff82307ed0 d essiv_tmpl
+ffffffff82307f78 d bd_type
+ffffffff82307fc0 d blkdev_get_no_open._rs
+ffffffff82307fe8 d bdev_write_inode._rs
+ffffffff82308010 d bio_dirty_work
+ffffffff82308040 d bio_slab_lock
+ffffffff82308070 d elv_ktype
+ffffffff823080c0 d elv_list
+ffffffff823080d0 d __SCK__tp_func_block_touch_buffer
+ffffffff823080e0 d __SCK__tp_func_block_dirty_buffer
+ffffffff823080f0 d __SCK__tp_func_block_rq_requeue
+ffffffff82308100 d __SCK__tp_func_block_rq_complete
+ffffffff82308110 d __SCK__tp_func_block_rq_error
+ffffffff82308120 d __SCK__tp_func_block_rq_insert
+ffffffff82308130 d __SCK__tp_func_block_rq_issue
+ffffffff82308140 d __SCK__tp_func_block_rq_merge
+ffffffff82308150 d __SCK__tp_func_block_bio_complete
+ffffffff82308160 d __SCK__tp_func_block_bio_bounce
+ffffffff82308170 d __SCK__tp_func_block_bio_backmerge
+ffffffff82308180 d __SCK__tp_func_block_bio_frontmerge
+ffffffff82308190 d __SCK__tp_func_block_bio_queue
+ffffffff823081a0 d __SCK__tp_func_block_getrq
+ffffffff823081b0 d __SCK__tp_func_block_plug
+ffffffff823081c0 d __SCK__tp_func_block_unplug
+ffffffff823081d0 d __SCK__tp_func_block_split
+ffffffff823081e0 d __SCK__tp_func_block_bio_remap
+ffffffff823081f0 d __SCK__tp_func_block_rq_remap
+ffffffff82308200 d trace_event_fields_block_buffer
+ffffffff823082a0 d trace_event_type_funcs_block_buffer
+ffffffff823082c0 d print_fmt_block_buffer
+ffffffff82308360 d event_block_touch_buffer
+ffffffff823083f0 d event_block_dirty_buffer
+ffffffff82308480 d trace_event_fields_block_rq_requeue
+ffffffff82308570 d trace_event_type_funcs_block_rq_requeue
+ffffffff82308590 d print_fmt_block_rq_requeue
+ffffffff82308658 d event_block_rq_requeue
+ffffffff823086f0 d trace_event_fields_block_rq_completion
+ffffffff82308808 d trace_event_type_funcs_block_rq_completion
+ffffffff82308830 d print_fmt_block_rq_completion
+ffffffff82308900 d event_block_rq_complete
+ffffffff82308990 d event_block_rq_error
+ffffffff82308a20 d trace_event_fields_block_rq
+ffffffff82308b60 d trace_event_type_funcs_block_rq
+ffffffff82308b80 d print_fmt_block_rq
+ffffffff82308c60 d event_block_rq_insert
+ffffffff82308cf0 d event_block_rq_issue
+ffffffff82308d80 d event_block_rq_merge
+ffffffff82308e10 d trace_event_fields_block_bio_complete
+ffffffff82308f00 d trace_event_type_funcs_block_bio_complete
+ffffffff82308f20 d print_fmt_block_bio_complete
+ffffffff82308fe0 d event_block_bio_complete
+ffffffff82309070 d trace_event_fields_block_bio
+ffffffff82309160 d trace_event_type_funcs_block_bio
+ffffffff82309180 d print_fmt_block_bio
+ffffffff82309238 d event_block_bio_bounce
+ffffffff823092c8 d event_block_bio_backmerge
+ffffffff82309358 d event_block_bio_frontmerge
+ffffffff823093e8 d event_block_bio_queue
+ffffffff82309478 d event_block_getrq
+ffffffff82309510 d trace_event_fields_block_plug
+ffffffff82309560 d trace_event_type_funcs_block_plug
+ffffffff82309580 d print_fmt_block_plug
+ffffffff82309598 d event_block_plug
+ffffffff82309630 d trace_event_fields_block_unplug
+ffffffff823096a8 d trace_event_type_funcs_block_unplug
+ffffffff823096d0 d print_fmt_block_unplug
+ffffffff823096f8 d event_block_unplug
+ffffffff82309790 d trace_event_fields_block_split
+ffffffff82309880 d trace_event_type_funcs_block_split
+ffffffff823098a0 d print_fmt_block_split
+ffffffff82309970 d event_block_split
+ffffffff82309a00 d trace_event_fields_block_bio_remap
+ffffffff82309b18 d trace_event_type_funcs_block_bio_remap
+ffffffff82309b40 d print_fmt_block_bio_remap
+ffffffff82309c80 d event_block_bio_remap
+ffffffff82309d10 d trace_event_fields_block_rq_remap
+ffffffff82309e50 d trace_event_type_funcs_block_rq_remap
+ffffffff82309e70 d print_fmt_block_rq_remap
+ffffffff82309fc0 d event_block_rq_remap
+ffffffff8230a050 d blk_queue_ida
+ffffffff8230a060 d bio_check_eod._rs
+ffffffff8230a090 d blk_queue_attr_groups
+ffffffff8230a0a0 d queue_attr_group
+ffffffff8230a0d0 d queue_attrs
+ffffffff8230a228 d queue_io_timeout_entry
+ffffffff8230a248 d queue_max_open_zones_entry
+ffffffff8230a268 d queue_max_active_zones_entry
+ffffffff8230a288 d queue_requests_entry
+ffffffff8230a2a8 d queue_ra_entry
+ffffffff8230a2c8 d queue_max_hw_sectors_entry
+ffffffff8230a2e8 d queue_max_sectors_entry
+ffffffff8230a308 d queue_max_segments_entry
+ffffffff8230a328 d queue_max_discard_segments_entry
+ffffffff8230a348 d queue_max_integrity_segments_entry
+ffffffff8230a368 d queue_max_segment_size_entry
+ffffffff8230a388 d elv_iosched_entry
+ffffffff8230a3a8 d queue_hw_sector_size_entry
+ffffffff8230a3c8 d queue_logical_block_size_entry
+ffffffff8230a3e8 d queue_physical_block_size_entry
+ffffffff8230a408 d queue_chunk_sectors_entry
+ffffffff8230a428 d queue_io_min_entry
+ffffffff8230a448 d queue_io_opt_entry
+ffffffff8230a468 d queue_discard_granularity_entry
+ffffffff8230a488 d queue_discard_max_entry
+ffffffff8230a4a8 d queue_discard_max_hw_entry
+ffffffff8230a4c8 d queue_discard_zeroes_data_entry
+ffffffff8230a4e8 d queue_write_same_max_entry
+ffffffff8230a508 d queue_write_zeroes_max_entry
+ffffffff8230a528 d queue_zone_append_max_entry
+ffffffff8230a548 d queue_zone_write_granularity_entry
+ffffffff8230a568 d queue_nonrot_entry
+ffffffff8230a588 d queue_zoned_entry
+ffffffff8230a5a8 d queue_nr_zones_entry
+ffffffff8230a5c8 d queue_nomerges_entry
+ffffffff8230a5e8 d queue_rq_affinity_entry
+ffffffff8230a608 d queue_iostats_entry
+ffffffff8230a628 d queue_stable_writes_entry
+ffffffff8230a648 d queue_random_entry
+ffffffff8230a668 d queue_poll_entry
+ffffffff8230a688 d queue_wc_entry
+ffffffff8230a6a8 d queue_fua_entry
+ffffffff8230a6c8 d queue_dax_entry
+ffffffff8230a6e8 d queue_wb_lat_entry
+ffffffff8230a708 d queue_poll_delay_entry
+ffffffff8230a728 d queue_virt_boundary_mask_entry
+ffffffff8230a748 d queue_dma_alignment_entry
+ffffffff8230a768 d queue_poll_store._rs
+ffffffff8230a790 d queue_poll_store._rs.44
+ffffffff8230a7b8 d blk_queue_ktype
+ffffffff8230a808 d __blkdev_issue_discard._rs
+ffffffff8230a830 d blk_print_req_error._rs
+ffffffff8230a858 d blk_mq_hw_ktype.llvm.8441269614185694582
+ffffffff8230a8a8 d blk_mq_ktype
+ffffffff8230a8f8 d blk_mq_ctx_ktype
+ffffffff8230a950 d default_hw_ctx_groups
+ffffffff8230a960 d default_hw_ctx_attrs
+ffffffff8230a980 d blk_mq_hw_sysfs_nr_tags
+ffffffff8230a9a0 d blk_mq_hw_sysfs_nr_reserved_tags
+ffffffff8230a9c0 d blk_mq_hw_sysfs_cpus
+ffffffff8230a9e0 d major_names_lock
+ffffffff8230aa10 d ext_devt_ida.llvm.885230624384216800
+ffffffff8230aa20 d block_class
+ffffffff8230aac0 d disk_attr_groups.llvm.885230624384216800
+ffffffff8230aad0 d disk_attr_group
+ffffffff8230ab00 d disk_attrs
+ffffffff8230ab88 d dev_attr_badblocks
+ffffffff8230aba8 d dev_attr_badblocks
+ffffffff8230abc8 d dev_attr_range
+ffffffff8230abe8 d dev_attr_range
+ffffffff8230ac08 d dev_attr_ext_range
+ffffffff8230ac28 d dev_attr_removable
+ffffffff8230ac48 d dev_attr_removable
+ffffffff8230ac68 d dev_attr_removable
+ffffffff8230ac88 d dev_attr_hidden
+ffffffff8230aca8 d dev_attr_ro
+ffffffff8230acc8 d dev_attr_ro
+ffffffff8230ace8 d dev_attr_size
+ffffffff8230ad08 d dev_attr_size
+ffffffff8230ad28 d dev_attr_size
+ffffffff8230ad48 d dev_attr_size
+ffffffff8230ad68 d dev_attr_size
+ffffffff8230ad88 d dev_attr_size
+ffffffff8230ada8 d dev_attr_size
+ffffffff8230adc8 d dev_attr_size
+ffffffff8230ade8 d dev_attr_alignment_offset
+ffffffff8230ae08 d dev_attr_alignment_offset
+ffffffff8230ae28 d dev_attr_discard_alignment
+ffffffff8230ae48 d dev_attr_discard_alignment
+ffffffff8230ae68 d dev_attr_capability
+ffffffff8230ae88 d dev_attr_capability
+ffffffff8230aea8 d dev_attr_stat
+ffffffff8230aec8 d dev_attr_stat
+ffffffff8230aee8 d dev_attr_inflight
+ffffffff8230af08 d dev_attr_inflight
+ffffffff8230af28 d dev_attr_diskseq
+ffffffff8230af50 d part_attr_groups
+ffffffff8230af60 d part_attr_group
+ffffffff8230af90 d part_attrs
+ffffffff8230afd8 d dev_attr_partition
+ffffffff8230aff8 d dev_attr_start
+ffffffff8230b018 d dev_attr_start
+ffffffff8230b038 d dev_attr_whole_disk
+ffffffff8230b058 d part_type
+ffffffff8230b088 d dev_attr_events
+ffffffff8230b0a8 d dev_attr_events_async
+ffffffff8230b0c8 d dev_attr_events_poll_msecs
+ffffffff8230b0e8 d disk_events_mutex
+ffffffff8230b118 d disk_events
+ffffffff8230b128 d blk_ia_ranges_ktype
+ffffffff8230b178 d blk_ia_range_ktype
+ffffffff8230b1d0 d blk_ia_range_groups
+ffffffff8230b1e0 d blk_ia_range_attrs
+ffffffff8230b1f8 d blk_ia_range_sector_entry
+ffffffff8230b210 d blk_ia_range_nr_sectors_entry
+ffffffff8230b230 d blkcg_files
+ffffffff8230b3e0 d blkcg_legacy_files
+ffffffff8230b590 d blkcg_pol_register_mutex
+ffffffff8230b5c0 d blkcg_pol_mutex
+ffffffff8230b5f0 d all_blkcgs
+ffffffff8230b600 d io_cgrp_subsys
+ffffffff8230b6f0 d __SCK__tp_func_iocost_iocg_activate
+ffffffff8230b700 d __SCK__tp_func_iocost_iocg_idle
+ffffffff8230b710 d __SCK__tp_func_iocost_inuse_shortage
+ffffffff8230b720 d __SCK__tp_func_iocost_inuse_transfer
+ffffffff8230b730 d __SCK__tp_func_iocost_inuse_adjust
+ffffffff8230b740 d __SCK__tp_func_iocost_ioc_vrate_adj
+ffffffff8230b750 d __SCK__tp_func_iocost_iocg_forgive_debt
+ffffffff8230b760 d trace_event_fields_iocost_iocg_state
+ffffffff8230b968 d trace_event_type_funcs_iocost_iocg_state
+ffffffff8230b990 d print_fmt_iocost_iocg_state
+ffffffff8230baa8 d event_iocost_iocg_activate
+ffffffff8230bb38 d event_iocost_iocg_idle
+ffffffff8230bbd0 d trace_event_fields_iocg_inuse_update
+ffffffff8230bd10 d trace_event_type_funcs_iocg_inuse_update
+ffffffff8230bd30 d print_fmt_iocg_inuse_update
+ffffffff8230bde8 d event_iocost_inuse_shortage
+ffffffff8230be78 d event_iocost_inuse_transfer
+ffffffff8230bf08 d event_iocost_inuse_adjust
+ffffffff8230bfa0 d trace_event_fields_iocost_ioc_vrate_adj
+ffffffff8230c130 d trace_event_type_funcs_iocost_ioc_vrate_adj
+ffffffff8230c150 d print_fmt_iocost_ioc_vrate_adj
+ffffffff8230c250 d event_iocost_ioc_vrate_adj
+ffffffff8230c2e0 d trace_event_fields_iocost_iocg_forgive_debt
+ffffffff8230c470 d trace_event_type_funcs_iocost_iocg_forgive_debt
+ffffffff8230c490 d print_fmt_iocost_iocg_forgive_debt
+ffffffff8230c560 d event_iocost_iocg_forgive_debt
+ffffffff8230c5f0 d blkcg_policy_iocost
+ffffffff8230c660 d ioc_files
+ffffffff8230c9c0 d ioc_rqos_ops
+ffffffff8230ca18 d mq_deadline
+ffffffff8230cb70 d deadline_attrs
+ffffffff8230cc70 d __SCK__tp_func_kyber_latency
+ffffffff8230cc80 d __SCK__tp_func_kyber_adjust
+ffffffff8230cc90 d __SCK__tp_func_kyber_throttled
+ffffffff8230cca0 d trace_event_fields_kyber_latency
+ffffffff8230cde0 d trace_event_type_funcs_kyber_latency
+ffffffff8230ce00 d print_fmt_kyber_latency
+ffffffff8230ced8 d event_kyber_latency
+ffffffff8230cf70 d trace_event_fields_kyber_adjust
+ffffffff8230d010 d trace_event_type_funcs_kyber_adjust
+ffffffff8230d030 d print_fmt_kyber_adjust
+ffffffff8230d0b0 d event_kyber_adjust
+ffffffff8230d140 d trace_event_fields_kyber_throttled
+ffffffff8230d1b8 d trace_event_type_funcs_kyber_throttled
+ffffffff8230d1e0 d print_fmt_kyber_throttled
+ffffffff8230d250 d event_kyber_throttled
+ffffffff8230d2e0 d kyber_sched
+ffffffff8230d440 d kyber_sched_attrs
+ffffffff8230d4a0 d iosched_bfq_mq
+ffffffff8230d600 d bfq_attrs
+ffffffff8230d760 d bfq_blkcg_legacy_files
+ffffffff8230dd50 d bfq_blkg_files
+ffffffff8230df00 d blkcg_policy_bfq
+ffffffff8230df70 d blk_zone_cond_str.zone_cond_str
+ffffffff8230df78 d num_prealloc_crypt_ctxs
+ffffffff8230df80 d blk_crypto_evict_key._rs
+ffffffff8230dfa8 d blk_crypto_ktype
+ffffffff8230e000 d blk_crypto_attr_groups
+ffffffff8230e020 d blk_crypto_attrs
+ffffffff8230e038 d max_dun_bits_attr
+ffffffff8230e050 d num_keyslots_attr
+ffffffff8230e068 d num_prealloc_bounce_pg
+ffffffff8230e06c d blk_crypto_num_keyslots
+ffffffff8230e070 d num_prealloc_fallback_crypt_ctxs
+ffffffff8230e078 d tfms_init_lock
+ffffffff8230e0a8 d __SCK__tp_func_io_uring_create
+ffffffff8230e0b8 d __SCK__tp_func_io_uring_register
+ffffffff8230e0c8 d __SCK__tp_func_io_uring_file_get
+ffffffff8230e0d8 d __SCK__tp_func_io_uring_queue_async_work
+ffffffff8230e0e8 d __SCK__tp_func_io_uring_defer
+ffffffff8230e0f8 d __SCK__tp_func_io_uring_link
+ffffffff8230e108 d __SCK__tp_func_io_uring_cqring_wait
+ffffffff8230e118 d __SCK__tp_func_io_uring_fail_link
+ffffffff8230e128 d __SCK__tp_func_io_uring_complete
+ffffffff8230e138 d __SCK__tp_func_io_uring_submit_sqe
+ffffffff8230e148 d __SCK__tp_func_io_uring_req_failed
+ffffffff8230e158 d __SCK__tp_func_io_uring_cqe_overflow
+ffffffff8230e168 d __SCK__tp_func_io_uring_task_work_run
+ffffffff8230e178 d __SCK__tp_func_io_uring_short_write
+ffffffff8230e188 d __SCK__tp_func_io_uring_local_work_run
+ffffffff8230e1a0 d trace_event_fields_io_uring_create
+ffffffff8230e290 d trace_event_type_funcs_io_uring_create
+ffffffff8230e2b0 d print_fmt_io_uring_create
+ffffffff8230e328 d event_io_uring_create
+ffffffff8230e3c0 d trace_event_fields_io_uring_register
+ffffffff8230e4b0 d trace_event_type_funcs_io_uring_register
+ffffffff8230e4d0 d print_fmt_io_uring_register
+ffffffff8230e550 d event_io_uring_register
+ffffffff8230e5e0 d trace_event_fields_io_uring_file_get
+ffffffff8230e6a8 d trace_event_type_funcs_io_uring_file_get
+ffffffff8230e6d0 d print_fmt_io_uring_file_get
+ffffffff8230e728 d event_io_uring_file_get
+ffffffff8230e7c0 d trace_event_fields_io_uring_queue_async_work
+ffffffff8230e928 d trace_event_type_funcs_io_uring_queue_async_work
+ffffffff8230e950 d print_fmt_io_uring_queue_async_work
+ffffffff8230ea10 d event_io_uring_queue_async_work
+ffffffff8230eaa0 d trace_event_fields_io_uring_defer
+ffffffff8230eb90 d trace_event_type_funcs_io_uring_defer
+ffffffff8230ebb0 d print_fmt_io_uring_defer
+ffffffff8230ec18 d event_io_uring_defer
+ffffffff8230ecb0 d trace_event_fields_io_uring_link
+ffffffff8230ed50 d trace_event_type_funcs_io_uring_link
+ffffffff8230ed70 d print_fmt_io_uring_link
+ffffffff8230edc0 d event_io_uring_link
+ffffffff8230ee50 d trace_event_fields_io_uring_cqring_wait
+ffffffff8230eec8 d trace_event_type_funcs_io_uring_cqring_wait
+ffffffff8230eef0 d print_fmt_io_uring_cqring_wait
+ffffffff8230ef28 d event_io_uring_cqring_wait
+ffffffff8230efc0 d trace_event_fields_io_uring_fail_link
+ffffffff8230f0d8 d trace_event_type_funcs_io_uring_fail_link
+ffffffff8230f100 d print_fmt_io_uring_fail_link
+ffffffff8230f180 d event_io_uring_fail_link
+ffffffff8230f210 d trace_event_fields_io_uring_complete
+ffffffff8230f350 d trace_event_type_funcs_io_uring_complete
+ffffffff8230f370 d print_fmt_io_uring_complete
+ffffffff8230f448 d event_io_uring_complete
+ffffffff8230f4e0 d trace_event_fields_io_uring_submit_sqe
+ffffffff8230f648 d trace_event_type_funcs_io_uring_submit_sqe
+ffffffff8230f670 d print_fmt_io_uring_submit_sqe
+ffffffff8230f730 d event_io_uring_submit_sqe
+ffffffff8230f7c0 d trace_event_fields_io_uring_poll_arm
+ffffffff8230f900 d trace_event_type_funcs_io_uring_poll_arm
+ffffffff8230f920 d print_fmt_io_uring_poll_arm
+ffffffff8230f9b8 d event_io_uring_poll_arm
+ffffffff8230fa50 d trace_event_fields_io_uring_task_add
+ffffffff8230fb68 d trace_event_type_funcs_io_uring_task_add
+ffffffff8230fb90 d print_fmt_io_uring_task_add
+ffffffff8230fc10 d event_io_uring_task_add
+ffffffff8230fca0 d trace_event_fields_io_uring_req_failed
+ffffffff8230ff70 d trace_event_type_funcs_io_uring_req_failed
+ffffffff8230ff90 d print_fmt_io_uring_req_failed
+ffffffff82310178 d event_io_uring_req_failed
+ffffffff82310210 d trace_event_fields_io_uring_cqe_overflow
+ffffffff82310300 d trace_event_type_funcs_io_uring_cqe_overflow
+ffffffff82310320 d print_fmt_io_uring_cqe_overflow
+ffffffff823103a0 d event_io_uring_cqe_overflow
+ffffffff82310430 d trace_event_fields_io_uring_task_work_run
+ffffffff823104d0 d trace_event_type_funcs_io_uring_task_work_run
+ffffffff823104f0 d print_fmt_io_uring_task_work_run
+ffffffff82310538 d event_io_uring_task_work_run
+ffffffff823105d0 d trace_event_fields_io_uring_short_write
+ffffffff82310698 d trace_event_type_funcs_io_uring_short_write
+ffffffff823106c0 d print_fmt_io_uring_short_write
+ffffffff82310718 d event_io_uring_short_write
+ffffffff823107b0 d trace_event_fields_io_uring_local_work_run
+ffffffff82310850 d trace_event_type_funcs_io_uring_local_work_run
+ffffffff82310870 d print_fmt_io_uring_local_work_run
+ffffffff823108b0 d event_io_uring_local_work_run
+ffffffff82310940 d __SCK__tp_func_io_uring_task_add
+ffffffff82310950 d __SCK__tp_func_io_uring_poll_arm
+ffffffff82310960 d percpu_ref_switch_waitq
+ffffffff82310978 d once_mutex
+ffffffff823109a8 d bad_io_access.count
+ffffffff823109b0 d static_l_desc
+ffffffff823109d0 d static_d_desc
+ffffffff823109f0 d static_bl_desc
+ffffffff82310a10 d rslistlock
+ffffffff82310a40 d codec_list
+ffffffff82310a50 d percpu_counters
+ffffffff82310a60 d ddebug_lock
+ffffffff82310a90 d ddebug_tables
+ffffffff82310aa0 d __nla_validate_parse._rs
+ffffffff82310ac8 d validate_nla._rs
+ffffffff82310af0 d nla_validate_range_unsigned._rs
+ffffffff82310b20 d sg_pools
+ffffffff82310bc0 d memregion_ids.llvm.2070565233884726677
+ffffffff82310bd0 d stack_depot_init.stack_depot_init_mutex
+ffffffff82310c00 d __SCK__tp_func_read_msr
+ffffffff82310c10 d __SCK__tp_func_write_msr
+ffffffff82310c20 d __SCK__tp_func_rdpmc
+ffffffff82310c30 d trace_event_fields_msr_trace_class
+ffffffff82310cd0 d trace_event_type_funcs_msr_trace_class
+ffffffff82310cf0 d print_fmt_msr_trace_class
+ffffffff82310d38 d event_read_msr
+ffffffff82310dc8 d event_write_msr
+ffffffff82310e58 d event_rdpmc
+ffffffff82310ee8 d simple_pm_bus_driver
+ffffffff82310fd8 d __SCK__tp_func_gpio_direction
+ffffffff82310fe8 d __SCK__tp_func_gpio_value
+ffffffff82311000 d trace_event_fields_gpio_direction
+ffffffff823110a0 d trace_event_type_funcs_gpio_direction
+ffffffff823110c0 d print_fmt_gpio_direction
+ffffffff82311100 d event_gpio_direction
+ffffffff82311190 d trace_event_fields_gpio_value
+ffffffff82311230 d trace_event_type_funcs_gpio_value
+ffffffff82311250 d print_fmt_gpio_value
+ffffffff82311290 d event_gpio_value
+ffffffff82311320 d gpio_devices
+ffffffff82311330 d gpio_bus_type
+ffffffff82311408 d gpio_ida
+ffffffff82311418 d gpio_lookup_lock
+ffffffff82311448 d gpio_lookup_list
+ffffffff82311458 d gpio_machine_hogs_mutex
+ffffffff82311488 d gpio_machine_hogs
+ffffffff82311498 d gpio_stub_drv
+ffffffff82311548 d run_edge_events_on_boot
+ffffffff82311550 d acpi_gpio_deferred_req_irqs_lock
+ffffffff82311580 d acpi_gpio_deferred_req_irqs_list
+ffffffff82311590 d .compoundliteral
+ffffffff823115a8 d .compoundliteral
+ffffffff823115b8 d .compoundliteral
+ffffffff82311670 d .compoundliteral.34
+ffffffff82311688 d .compoundliteral.36
+ffffffff823116a0 d .compoundliteral.38
+ffffffff823116b8 d .compoundliteral.40
+ffffffff823116d0 d .compoundliteral.42
+ffffffff823116e8 d .compoundliteral.44
+ffffffff82311700 d .compoundliteral.46
+ffffffff82311718 d bgpio_driver
+ffffffff82311808 d pci_cfg_wait
+ffffffff82311820 d pci_high
+ffffffff82311830 d pci_64_bit
+ffffffff82311840 d pci_32_bit
+ffffffff82311850 d busn_resource
+ffffffff823118b0 d pci_rescan_remove_lock.llvm.11235229719753489230
+ffffffff823118e0 d pcibus_class
+ffffffff82311978 d pci_domain_busn_res_list
+ffffffff82311988 d pci_root_buses
+ffffffff82311998 d pci_slot_mutex
+ffffffff823119d0 d pci_power_names
+ffffffff82311a08 d pci_domains_supported
+ffffffff82311a0c d pci_dfl_cache_line_size
+ffffffff82311a10 d pcibios_max_latency
+ffffffff82311a18 d pci_pme_list_mutex
+ffffffff82311a48 d pci_pme_list
+ffffffff82311a58 d pci_pme_work
+ffffffff82311ae0 d pci_dev_reset_method_attrs
+ffffffff82311af0 d pci_set_full_power_state._rs
+ffffffff82311b18 d pci_set_low_power_state._rs
+ffffffff82311b40 d dev_attr_reset_method
+ffffffff82311b60 d bus_attr_resource_alignment
+ffffffff82311b80 d pcie_bus_config
+ffffffff82311b88 d pci_hotplug_bus_size
+ffffffff82311b90 d pci_cardbus_io_size
+ffffffff82311b98 d pci_cardbus_mem_size
+ffffffff82311ba0 d pci_hotplug_io_size
+ffffffff82311ba8 d pci_hotplug_mmio_size
+ffffffff82311bb0 d pci_hotplug_mmio_pref_size
+ffffffff82311bb8 d pci_compat_driver
+ffffffff82311d20 d pci_drv_groups
+ffffffff82311d30 d pcie_port_bus_type
+ffffffff82311e10 d pci_drv_attrs
+ffffffff82311e28 d driver_attr_new_id
+ffffffff82311e48 d driver_attr_new_id
+ffffffff82311e68 d driver_attr_remove_id
+ffffffff82311e88 d driver_attr_remove_id
+ffffffff82311ea8 d pci_bus_type
+ffffffff82311f80 d pci_bus_sem
+ffffffff82311fc0 d pci_bus_groups
+ffffffff82311fd0 d pci_dev_groups
+ffffffff82312020 d pci_dev_attr_groups.llvm.10079066930483942760
+ffffffff82312070 d pci_bus_attrs
+ffffffff82312080 d bus_attr_rescan
+ffffffff823120a0 d pcibus_attrs
+ffffffff823120c0 d dev_attr_bus_rescan
+ffffffff823120e0 d dev_attr_cpuaffinity
+ffffffff82312100 d dev_attr_cpulistaffinity
+ffffffff82312120 d pci_dev_attrs
+ffffffff823121d0 d dev_attr_power_state
+ffffffff823121f0 d dev_attr_power_state
+ffffffff82312210 d dev_attr_resource
+ffffffff82312230 d dev_attr_resource
+ffffffff82312250 d dev_attr_resource
+ffffffff82312270 d dev_attr_resource
+ffffffff82312290 d dev_attr_vendor
+ffffffff823122b0 d dev_attr_vendor
+ffffffff823122d0 d dev_attr_vendor
+ffffffff823122f0 d dev_attr_device
+ffffffff82312310 d dev_attr_device
+ffffffff82312330 d dev_attr_subsystem_vendor
+ffffffff82312350 d dev_attr_subsystem_device
+ffffffff82312370 d dev_attr_revision
+ffffffff82312390 d dev_attr_class
+ffffffff823123b0 d dev_attr_irq
+ffffffff823123d0 d dev_attr_irq
+ffffffff823123f0 d dev_attr_local_cpus
+ffffffff82312410 d dev_attr_local_cpulist
+ffffffff82312430 d dev_attr_modalias
+ffffffff82312450 d dev_attr_modalias
+ffffffff82312470 d dev_attr_modalias
+ffffffff82312490 d dev_attr_modalias
+ffffffff823124b0 d dev_attr_modalias
+ffffffff823124d0 d dev_attr_modalias
+ffffffff823124f0 d dev_attr_modalias
+ffffffff82312510 d dev_attr_modalias
+ffffffff82312530 d dev_attr_modalias
+ffffffff82312550 d dev_attr_dma_mask_bits
+ffffffff82312570 d dev_attr_consistent_dma_mask_bits
+ffffffff82312590 d dev_attr_enable
+ffffffff823125b0 d dev_attr_broken_parity_status
+ffffffff823125d0 d dev_attr_msi_bus
+ffffffff823125f0 d dev_attr_d3cold_allowed
+ffffffff82312610 d dev_attr_devspec
+ffffffff82312630 d dev_attr_driver_override
+ffffffff82312650 d dev_attr_driver_override
+ffffffff82312670 d dev_attr_ari_enabled
+ffffffff82312690 d pci_dev_config_attrs
+ffffffff823126a0 d bin_attr_config
+ffffffff823126e0 d pci_dev_rom_attrs
+ffffffff823126f0 d bin_attr_rom
+ffffffff82312730 d pci_dev_reset_attrs
+ffffffff82312740 d dev_attr_reset
+ffffffff82312760 d dev_attr_reset
+ffffffff82312780 d dev_attr_reset
+ffffffff823127a0 d resource_resize_attrs
+ffffffff823127d8 d dev_attr_resource0_resize
+ffffffff823127f8 d dev_attr_resource1_resize
+ffffffff82312818 d dev_attr_resource2_resize
+ffffffff82312838 d dev_attr_resource3_resize
+ffffffff82312858 d dev_attr_resource4_resize
+ffffffff82312878 d dev_attr_resource5_resize
+ffffffff823128a0 d pci_dev_dev_attrs
+ffffffff823128b0 d dev_attr_boot_vga
+ffffffff823128d0 d pci_dev_hp_attrs
+ffffffff823128e8 d dev_attr_remove
+ffffffff82312908 d dev_attr_dev_rescan
+ffffffff82312930 d pci_bridge_attrs
+ffffffff82312948 d dev_attr_subordinate_bus_number
+ffffffff82312968 d dev_attr_secondary_bus_number
+ffffffff82312990 d pcie_dev_attrs
+ffffffff823129b8 d dev_attr_current_link_speed
+ffffffff823129d8 d dev_attr_current_link_width
+ffffffff823129f8 d dev_attr_max_link_width
+ffffffff82312a18 d dev_attr_max_link_speed
+ffffffff82312a40 d pcibus_groups
+ffffffff82312a50 d vpd_attrs
+ffffffff82312a60 d bin_attr_vpd
+ffffffff82312aa0 d pci_realloc_enable
+ffffffff82312aa8 d pci_msi_domain_ops_default
+ffffffff82312ae8 d pcie_portdriver
+ffffffff82312c50 d aspm_lock
+ffffffff82312c80 d aspm_ctrl_attrs
+ffffffff82312cc0 d link_list
+ffffffff82312cd0 d policy_str
+ffffffff82312cf0 d dev_attr_clkpm
+ffffffff82312d10 d dev_attr_l0s_aspm
+ffffffff82312d30 d dev_attr_l1_aspm
+ffffffff82312d50 d dev_attr_l1_1_aspm
+ffffffff82312d70 d dev_attr_l1_2_aspm
+ffffffff82312d90 d dev_attr_l1_1_pcipm
+ffffffff82312db0 d dev_attr_l1_2_pcipm
+ffffffff82312dd0 d aerdriver
+ffffffff82312ed0 d dev_attr_aer_rootport_total_err_cor
+ffffffff82312ef0 d dev_attr_aer_rootport_total_err_fatal
+ffffffff82312f10 d dev_attr_aer_rootport_total_err_nonfatal
+ffffffff82312f30 d dev_attr_aer_dev_correctable
+ffffffff82312f50 d dev_attr_aer_dev_fatal
+ffffffff82312f70 d dev_attr_aer_dev_nonfatal
+ffffffff82312f90 d pcie_pme_driver.llvm.362074392736131318
+ffffffff82313090 d pci_slot_ktype
+ffffffff823130e0 d pci_slot_default_groups
+ffffffff823130f0 d pci_slot_default_attrs
+ffffffff82313110 d pci_slot_attr_address
+ffffffff82313130 d pci_slot_attr_max_speed
+ffffffff82313150 d pci_slot_attr_cur_speed
+ffffffff82313170 d pci_acpi_companion_lookup_sem
+ffffffff823131b0 d via_vlink_dev_lo
+ffffffff823131b4 d via_vlink_dev_hi
+ffffffff823131c0 d sriov_vf_dev_attrs
+ffffffff823131d0 d sriov_pf_dev_attrs
+ffffffff82313210 d dev_attr_sriov_vf_msix_count
+ffffffff82313230 d dev_attr_sriov_totalvfs
+ffffffff82313250 d dev_attr_sriov_numvfs
+ffffffff82313270 d dev_attr_sriov_offset
+ffffffff82313290 d dev_attr_sriov_stride
+ffffffff823132b0 d dev_attr_sriov_vf_device
+ffffffff823132d0 d dev_attr_sriov_drivers_autoprobe
+ffffffff823132f0 d dev_attr_sriov_vf_total_msix
+ffffffff82313310 d smbios_attrs
+ffffffff82313330 d acpi_attrs
+ffffffff82313348 d dev_attr_smbios_label
+ffffffff82313368 d dev_attr_index
+ffffffff82313388 d dev_attr_label
+ffffffff823133a8 d dev_attr_acpi_index
+ffffffff823133c8 d vga_wait_queue
+ffffffff823133e0 d vga_list
+ffffffff823133f0 d vga_arb_device
+ffffffff82313440 d pci_notifier
+ffffffff82313458 d vga_user_list
+ffffffff82313468 d pci_epf_bus_type
+ffffffff82313540 d dw_plat_pcie_driver
+ffffffff82313630 d vgacon_startup.ega_console_resource
+ffffffff82313690 d vgacon_startup.mda1_console_resource
+ffffffff823136f0 d vgacon_startup.mda2_console_resource
+ffffffff82313750 d vgacon_startup.ega_console_resource.4
+ffffffff823137b0 d vgacon_startup.vga_console_resource
+ffffffff82313810 d vgacon_startup.cga_console_resource
+ffffffff82313870 d acpi_sci_irq
+ffffffff82313878 d acpi_ioremap_lock
+ffffffff823138a8 d acpi_ioremaps
+ffffffff823138b8 d acpi_enforce_resources
+ffffffff823138c0 d nvs_region_list
+ffffffff823138d0 d nvs_list
+ffffffff823138e0 d acpi_wakeup_handler_mutex
+ffffffff82313910 d acpi_wakeup_handler_head
+ffffffff82313920 d tts_notifier
+ffffffff82313938 d acpi_sleep_syscore_ops
+ffffffff82313960 d dev_attr_path
+ffffffff82313980 d dev_attr_hid
+ffffffff823139a0 d dev_attr_description
+ffffffff823139c0 d dev_attr_description
+ffffffff823139e0 d dev_attr_adr
+ffffffff82313a00 d dev_attr_uid
+ffffffff82313a20 d dev_attr_sun
+ffffffff82313a40 d dev_attr_hrv
+ffffffff82313a60 d dev_attr_status
+ffffffff82313a80 d dev_attr_status
+ffffffff82313aa0 d dev_attr_status
+ffffffff82313ac0 d dev_attr_eject
+ffffffff82313ae0 d dev_attr_real_power_state
+ffffffff82313b00 d acpi_data_node_ktype
+ffffffff82313b50 d acpi_data_node_default_groups
+ffffffff82313b60 d acpi_data_node_default_attrs
+ffffffff82313b70 d data_node_path
+ffffffff82313b90 d acpi_pm_notifier_install_lock
+ffffffff82313bc0 d acpi_pm_notifier_lock
+ffffffff82313bf0 d acpi_general_pm_domain
+ffffffff82313ce0 d acpi_wakeup_lock
+ffffffff82313d10 d acpi_bus_type
+ffffffff82313df0 d sb_uuid_str
+ffffffff82313e20 d sb_usb_uuid_str
+ffffffff82313e48 d acpi_sb_notify.acpi_sb_work
+ffffffff82313e78 d bus_type_sem
+ffffffff82313eb8 d bus_type_list
+ffffffff82313ec8 d acpi_bus_id_list
+ffffffff82313ed8 d acpi_device_lock
+ffffffff82313f08 d acpi_wakeup_device_list
+ffffffff82313f18 d acpi_scan_lock.llvm.16269400837680127528
+ffffffff82313f48 d acpi_hp_context_lock
+ffffffff82313f78 d acpi_scan_handlers_list
+ffffffff82313f88 d generic_device_handler
+ffffffff82314040 d acpi_probe_mutex
+ffffffff82314070 d acpi_reconfig_chain.llvm.16269400837680127528
+ffffffff823140b8 d acpi_scan_drop_device.work
+ffffffff823140e8 d acpi_device_del_lock
+ffffffff82314118 d acpi_device_del_list
+ffffffff82314128 d acpi_dep_list_lock
+ffffffff82314158 d acpi_dep_list
+ffffffff82314170 d duplicate_processor_ids
+ffffffff823141f0 d processor_handler
+ffffffff823142a8 d processor_container_handler
+ffffffff82314360 d acpi_ec_driver
+ffffffff823144e0 d pci_root_handler
+ffffffff823145a0 d cxl_osc_uuid_str
+ffffffff823145d0 d pci_osc_uuid_str
+ffffffff823145f8 d acpi_link_list
+ffffffff82314610 d acpi_isa_irq_penalty
+ffffffff82314650 d acpi_link_lock
+ffffffff82314680 d sci_irq
+ffffffff82314684 d acpi_irq_balance
+ffffffff82314688 d irqrouter_syscore_ops
+ffffffff823146b0 d pci_link_handler
+ffffffff82314768 d lpss_handler.llvm.3096925480673637936
+ffffffff82314820 d apd_handler.llvm.6315687673930755888
+ffffffff823148d8 d acpi_platform_notifier.llvm.11804380725444868878
+ffffffff823148f0 d acpi_pnp_handler.llvm.5792141065482290023
+ffffffff823149a8 d dev_attr_resource_in_use
+ffffffff823149c8 d power_resource_list_lock
+ffffffff823149f8 d acpi_power_resource_list
+ffffffff82314a08 d acpi_chain_head.llvm.13700687744494551219
+ffffffff82314a50 d ged_driver
+ffffffff82314b40 d acpi_table_attr_list
+ffffffff82314b50 d interrupt_stats_attr_group
+ffffffff82314b78 d acpi_hotplug_profile_ktype
+ffffffff82314bd0 d hotplug_profile_groups
+ffffffff82314be0 d hotplug_profile_attrs
+ffffffff82314bf0 d hotplug_enabled_attr
+ffffffff82314c10 d cmos_rtc_handler.llvm.13579036708108290367
+ffffffff82314cc8 d lps0_s2idle_devops_head
+ffffffff82314cd8 d lps0_handler
+ffffffff82314d90 d dev_attr_low_power_idle_system_residency_us
+ffffffff82314db0 d dev_attr_low_power_idle_cpu_residency_us
+ffffffff82314dd0 d prm_module_list
+ffffffff82314de0 d acpi_platformrt_space_handler._rs
+ffffffff82314e08 d acpi_gbl_default_address_spaces
+ffffffff82314e10 d acpi_rs_convert_address16
+ffffffff82314e30 d acpi_rs_convert_address32
+ffffffff82314e50 d acpi_rs_convert_address64
+ffffffff82314e70 d acpi_rs_convert_ext_address64
+ffffffff82314e90 d acpi_rs_convert_general_flags
+ffffffff82314eb0 d acpi_rs_convert_mem_flags
+ffffffff82314ed0 d acpi_rs_convert_io_flags
+ffffffff82314ee0 d acpi_gbl_set_resource_dispatch
+ffffffff82314fb0 d acpi_gbl_get_resource_dispatch
+ffffffff823150d0 d acpi_gbl_convert_resource_serial_bus_dispatch
+ffffffff82315100 d acpi_rs_convert_io
+ffffffff82315120 d acpi_rs_convert_fixed_io
+ffffffff82315130 d acpi_rs_convert_generic_reg
+ffffffff82315140 d acpi_rs_convert_end_dpf
+ffffffff82315148 d acpi_rs_convert_end_tag
+ffffffff82315150 d acpi_rs_get_start_dpf
+ffffffff82315170 d acpi_rs_set_start_dpf
+ffffffff823151a0 d acpi_rs_get_irq
+ffffffff823151d0 d acpi_rs_set_irq
+ffffffff82315210 d acpi_rs_convert_ext_irq
+ffffffff82315240 d acpi_rs_convert_dma
+ffffffff82315260 d acpi_rs_convert_fixed_dma
+ffffffff82315270 d acpi_rs_convert_memory24
+ffffffff82315280 d acpi_rs_convert_memory32
+ffffffff82315290 d acpi_rs_convert_fixed_memory32
+ffffffff823152a0 d acpi_rs_get_vendor_small
+ffffffff823152ac d acpi_rs_get_vendor_large
+ffffffff823152c0 d acpi_rs_set_vendor
+ffffffff823152e0 d acpi_rs_convert_gpio
+ffffffff82315330 d acpi_rs_convert_pin_function
+ffffffff82315370 d acpi_rs_convert_csi2_serial_bus
+ffffffff823153b0 d acpi_rs_convert_i2c_serial_bus
+ffffffff82315400 d acpi_rs_convert_spi_serial_bus
+ffffffff82315460 d acpi_rs_convert_uart_serial_bus
+ffffffff823154c0 d acpi_rs_convert_pin_config
+ffffffff82315500 d acpi_rs_convert_pin_group
+ffffffff82315530 d acpi_rs_convert_pin_group_function
+ffffffff82315570 d acpi_rs_convert_pin_group_config
+ffffffff823155b0 d acpi_gbl_region_types
+ffffffff82315610 d acpi_gbl_auto_serialize_methods
+ffffffff82315611 d acpi_gbl_create_osi_method
+ffffffff82315612 d acpi_gbl_use_default_register_widths
+ffffffff82315613 d acpi_gbl_enable_table_validation
+ffffffff82315614 d acpi_gbl_use32_bit_facs_addresses
+ffffffff82315615 d acpi_gbl_runtime_namespace_override
+ffffffff82315618 d acpi_gbl_max_loop_iterations
+ffffffff8231561c d acpi_gbl_trace_dbg_level
+ffffffff82315620 d acpi_gbl_trace_dbg_layer
+ffffffff82315624 d acpi_dbg_level
+ffffffff82315628 d acpi_gbl_dsdt_index
+ffffffff8231562c d acpi_gbl_facs_index
+ffffffff82315630 d acpi_gbl_xfacs_index
+ffffffff82315634 d acpi_gbl_fadt_index
+ffffffff82315638 d acpi_gbl_shutdown
+ffffffff82315639 d acpi_gbl_early_initialization
+ffffffff8231563a d acpi_gbl_db_output_flags
+ffffffff82315640 d acpi_gbl_sleep_state_names
+ffffffff82315670 d acpi_gbl_lowest_dstate_names
+ffffffff823156a0 d acpi_gbl_highest_dstate_names
+ffffffff823156c0 d acpi_gbl_bit_register_info
+ffffffff82315710 d acpi_gbl_fixed_event_info
+ffffffff82315730 d acpi_default_supported_interfaces
+ffffffff823159d0 d acpi_ac_driver
+ffffffff82315b50 d ac_props
+ffffffff82315b58 d acpi_button_driver
+ffffffff82315cd8 d lid_init_state
+ffffffff82315ce0 d acpi_fan_driver
+ffffffff82315dd0 d acpi_processor_notifier_block
+ffffffff82315de8 d acpi_processor_driver
+ffffffff82315e98 d acpi_idle_driver
+ffffffff823162e0 d acpi_processor_power_verify_c3.bm_check_flag
+ffffffff823162e4 d acpi_processor_power_verify_c3.bm_control_flag
+ffffffff823162e8 d acpi_idle_enter_bm.safe_cx
+ffffffff8231631c d ignore_ppc
+ffffffff82316320 d performance_mutex
+ffffffff82316350 d container_handler.llvm.9603953884516489924
+ffffffff82316408 d acpi_thermal_driver
+ffffffff82316588 d acpi_thermal_zone_ops
+ffffffff82316608 d memory_device_handler.llvm.19011070330779767
+ffffffff823166c0 d ioapic_list_lock
+ffffffff823166f0 d ioapic_list
+ffffffff82316700 d cache_time
+ffffffff82316708 d hook_mutex
+ffffffff82316738 d battery_hook_list
+ffffffff82316748 d acpi_battery_list
+ffffffff82316758 d acpi_battery_driver
+ffffffff823168e0 d charge_battery_full_cap_broken_props
+ffffffff82316910 d charge_battery_props
+ffffffff82316950 d energy_battery_full_cap_broken_props
+ffffffff82316980 d energy_battery_props
+ffffffff823169c0 d cppc_ktype
+ffffffff82316a10 d cppc_mbox_cl
+ffffffff82316a50 d cppc_groups
+ffffffff82316a60 d cppc_attrs
+ffffffff82316ab0 d feedback_ctrs
+ffffffff82316ad0 d reference_perf
+ffffffff82316af0 d wraparound_time
+ffffffff82316b10 d highest_perf
+ffffffff82316b30 d lowest_perf
+ffffffff82316b50 d lowest_nonlinear_perf
+ffffffff82316b70 d nominal_perf
+ffffffff82316b90 d nominal_freq
+ffffffff82316bb0 d lowest_freq
+ffffffff82316bd0 d int340x_thermal_handler.llvm.8173969328109514523
+ffffffff82316c88 d pnp_global
+ffffffff82316c98 d pnp_lock
+ffffffff82316cc8 d pnp_protocols
+ffffffff82316cd8 d pnp_cards
+ffffffff82316ce8 d pnp_card_drivers
+ffffffff82316cf8 d dev_attr_name
+ffffffff82316d18 d dev_attr_name
+ffffffff82316d38 d dev_attr_name
+ffffffff82316d58 d dev_attr_name
+ffffffff82316d78 d dev_attr_name
+ffffffff82316d98 d dev_attr_name
+ffffffff82316db8 d dev_attr_name
+ffffffff82316dd8 d dev_attr_card_id
+ffffffff82316df8 d pnp_bus_type
+ffffffff82316ed0 d pnp_reserve_io
+ffffffff82316f10 d pnp_reserve_mem
+ffffffff82316f50 d pnp_reserve_irq
+ffffffff82316f90 d pnp_reserve_dma
+ffffffff82316fb0 d pnp_res_mutex
+ffffffff82316fe0 d pnp_dev_groups
+ffffffff82316ff0 d pnp_dev_attrs
+ffffffff82317010 d dev_attr_resources
+ffffffff82317030 d dev_attr_options
+ffffffff82317050 d dev_attr_id
+ffffffff82317070 d dev_attr_id
+ffffffff82317090 d dev_attr_id
+ffffffff823170b0 d dev_attr_id
+ffffffff823170d0 d pnp_fixups
+ffffffff82317200 d system_pnp_driver
+ffffffff823172f0 d pnpacpi_protocol
+ffffffff823176d0 d hp_ccsr_uuid
+ffffffff823176e8 d virtio_bus
+ffffffff823177c0 d virtio_index_ida.llvm.4824948138259700038
+ffffffff823177d0 d virtio_dev_groups
+ffffffff823177e0 d virtio_dev_attrs
+ffffffff82317810 d dev_attr_features
+ffffffff82317830 d virtio_check_mem_acc_cb
+ffffffff82317838 d virtio_pci_driver
+ffffffff823179a0 d virtio_balloon_driver
+ffffffff82317ab0 d features
+ffffffff82317ad0 d features
+ffffffff82317b00 d features
+ffffffff82317b08 d fill_balloon._rs
+ffffffff82317b30 d tty_drivers
+ffffffff82317b40 d tty_mutex
+ffffffff82317b70 d tty_init_dev._rs
+ffffffff82317b98 d tty_init_dev._rs.4
+ffffffff82317bc0 d cons_dev_groups
+ffffffff82317bd0 d tty_set_serial._rs
+ffffffff82317c00 d cons_dev_attrs
+ffffffff82317c10 d tty_std_termios
+ffffffff82317c40 d n_tty_ops.llvm.10395474028706935430
+ffffffff82317ce0 d n_tty_kick_worker._rs
+ffffffff82317d08 d n_tty_kick_worker._rs.6
+ffffffff82317d30 d tty_root_table.llvm.9499103308063362964
+ffffffff82317db0 d tty_ldisc_autoload
+ffffffff82317dc0 d tty_dir_table
+ffffffff82317e40 d tty_table
+ffffffff82317ec0 d null_ldisc
+ffffffff82317f60 d devpts_mutex
+ffffffff82317f90 d __sysrq_reboot_op
+ffffffff82317fa0 d sysrq_key_table
+ffffffff82318190 d moom_work
+ffffffff823181c0 d sysrq_reset_seq_version
+ffffffff823181c8 d sysrq_handler
+ffffffff82318248 d vt_events
+ffffffff82318258 d vt_event_waitqueue
+ffffffff82318270 d vc_sel.llvm.10959839953650621189
+ffffffff823182c0 d inwordLut
+ffffffff823182d0 d kd_mksound_timer
+ffffffff82318308 d kbd_handler
+ffffffff82318388 d brl_timeout
+ffffffff8231838c d brl_nbchords
+ffffffff82318390 d keyboard_tasklet
+ffffffff823183b8 d kbd
+ffffffff823183c0 d applkey.buf
+ffffffff823183c4 d ledstate
+ffffffff823183d0 d translations
+ffffffff82318bd0 d dfont_unicount
+ffffffff82318cd0 d dfont_unitable
+ffffffff82318f30 d global_cursor_default
+ffffffff82318f34 d cur_default
+ffffffff82318f38 d console_work.llvm.1374852128680100967
+ffffffff82318f68 d complement_pos.old_offset
+ffffffff82318f70 d default_red
+ffffffff82318f80 d default_grn
+ffffffff82318f90 d default_blu
+ffffffff82318fa0 d default_color
+ffffffff82318fa4 d default_italic_color
+ffffffff82318fa8 d default_underline_color
+ffffffff82318fb0 d vt_dev_groups
+ffffffff82318fc0 d con_driver_unregister_work
+ffffffff82318ff0 d console_timer
+ffffffff82319028 d softcursor_original
+ffffffff82319030 d vt_console_driver
+ffffffff823190b0 d vt_dev_attrs
+ffffffff823190c0 d con_dev_groups
+ffffffff823190d0 d con_dev_attrs
+ffffffff823190e8 d dev_attr_bind
+ffffffff82319108 d default_utf8
+ffffffff8231910c d want_console
+ffffffff82319110 d plain_map
+ffffffff82319310 d key_maps
+ffffffff82319b10 d keymap_count
+ffffffff82319b20 d func_buf
+ffffffff82319bc0 d funcbufptr
+ffffffff82319bc8 d funcbufsize
+ffffffff82319bd0 d func_table
+ffffffff8231a3d0 d accent_table
+ffffffff8231afd0 d accent_table_size
+ffffffff8231afe0 d shift_map
+ffffffff8231b1e0 d altgr_map
+ffffffff8231b3e0 d ctrl_map
+ffffffff8231b5e0 d shift_ctrl_map
+ffffffff8231b7e0 d alt_map
+ffffffff8231b9e0 d ctrl_alt_map
+ffffffff8231bbe0 d vtermnos
+ffffffff8231bc20 d hvc_structs_mutex
+ffffffff8231bc50 d last_hvc
+ffffffff8231bc58 d hvc_structs
+ffffffff8231bc68 d hvc_console
+ffffffff8231bce0 d timeout
+ffffffff8231bce8 d port_mutex
+ffffffff8231bd18 d uart_sanitize_serial_rs485._rs
+ffffffff8231bd40 d uart_set_info._rs
+ffffffff8231bd70 d tty_dev_attrs
+ffffffff8231bde8 d dev_attr_uartclk
+ffffffff8231be08 d dev_attr_line
+ffffffff8231be28 d dev_attr_port
+ffffffff8231be48 d dev_attr_flags
+ffffffff8231be68 d dev_attr_flags
+ffffffff8231be88 d dev_attr_flags
+ffffffff8231bea8 d dev_attr_xmit_fifo_size
+ffffffff8231bec8 d dev_attr_close_delay
+ffffffff8231bee8 d dev_attr_closing_wait
+ffffffff8231bf08 d dev_attr_custom_divisor
+ffffffff8231bf28 d dev_attr_io_type
+ffffffff8231bf48 d dev_attr_iomem_base
+ffffffff8231bf68 d dev_attr_iomem_reg_shift
+ffffffff8231bf88 d dev_attr_console
+ffffffff8231bfa8 d uart_sanitize_serial_rs485_delays._rs
+ffffffff8231bfd0 d uart_sanitize_serial_rs485_delays._rs.71
+ffffffff8231bff8 d uart_sanitize_serial_rs485_delays._rs.73
+ffffffff8231c020 d uart_sanitize_serial_rs485_delays._rs.75
+ffffffff8231c048 d early_con
+ffffffff8231c0c0 d early_console_dev
+ffffffff8231c2f0 d serial8250_reg
+ffffffff8231c338 d serial_mutex
+ffffffff8231c368 d serial8250_isa_driver
+ffffffff8231c458 d univ8250_console
+ffffffff8231c4d0 d hash_mutex
+ffffffff8231c500 d serial_pnp_driver.llvm.7602227295262498020
+ffffffff8231c5f0 d serial8250_em485_supported
+ffffffff8231c610 d serial8250_do_startup._rs
+ffffffff8231c638 d serial8250_do_startup._rs.4
+ffffffff8231c660 d serial8250_dev_attr_group
+ffffffff8231c690 d serial8250_dev_attrs
+ffffffff8231c6a0 d dev_attr_rx_trig_bytes
+ffffffff8231c6c0 d lpss8250_pci_driver
+ffffffff8231c828 d mid8250_pci_driver
+ffffffff8231c990 d pericom8250_pci_driver
+ffffffff8231caf8 d of_platform_serial_driver
+ffffffff8231cbe8 d ttynull_console
+ffffffff8231cc60 d crng_init_wait
+ffffffff8231cc78 d pm_notifier
+ffffffff8231cc90 d input_pool
+ffffffff8231cd10 d add_input_randomness.input_timer_state
+ffffffff8231cd28 d urandom_warning
+ffffffff8231cd50 d crng_reseed_interval.early_boot
+ffffffff8231cd54 d urandom_read_iter.maxwarn
+ffffffff8231cd60 d random_table
+ffffffff8231cf20 d sysctl_poolsize
+ffffffff8231cf24 d sysctl_random_write_wakeup_bits
+ffffffff8231cf28 d sysctl_random_min_urandom_seed
+ffffffff8231cf30 d misc_mtx
+ffffffff8231cf60 d misc_list
+ffffffff8231cf70 d virtio_console
+ffffffff8231d080 d virtio_rproc_serial
+ffffffff8231d190 d pdrvdata
+ffffffff8231d1c8 d pending_free_dma_bufs
+ffffffff8231d1d8 d early_console_added
+ffffffff8231d200 d port_sysfs_entries
+ffffffff8231d210 d hpet_mmap_enabled
+ffffffff8231d218 d hpet_misc
+ffffffff8231d270 d hpet_table
+ffffffff8231d2f0 d hpet_acpi_driver
+ffffffff8231d470 d hpet_mutex
+ffffffff8231d4a0 d hpet_max_freq
+ffffffff8231d4a8 d rng_miscdev
+ffffffff8231d4f8 d rng_mutex
+ffffffff8231d528 d rng_list
+ffffffff8231d540 d rng_dev_groups
+ffffffff8231d550 d reading_mutex
+ffffffff8231d580 d rng_dev_attrs
+ffffffff8231d5a8 d dev_attr_rng_current
+ffffffff8231d5c8 d dev_attr_rng_available
+ffffffff8231d5e8 d dev_attr_rng_selected
+ffffffff8231d608 d dev_attr_rng_quality
+ffffffff8231d628 d intel_rng
+ffffffff8231d6c0 d amd_rng
+ffffffff8231d758 d via_rng
+ffffffff8231d7f0 d virtio_rng_driver
+ffffffff8231d900 d rng_index_ida
+ffffffff8231d910 d iommu_device_list
+ffffffff8231d920 d iommu_group_ida
+ffffffff8231d930 d iommu_group_ktype
+ffffffff8231d980 d iommu_group_attr_reserved_regions
+ffffffff8231d9a0 d iommu_group_attr_type
+ffffffff8231d9c0 d iommu_group_attr_name
+ffffffff8231d9e0 d iommu_page_response._rs
+ffffffff8231da08 d __iommu_probe_device.iommu_probe_device_lock
+ffffffff8231da38 d iommu_group_store_type._rs
+ffffffff8231da60 d iommu_group_store_type._rs.46
+ffffffff8231da88 d iommu_change_dev_def_domain._rs
+ffffffff8231dab0 d iommu_change_dev_def_domain._rs.49
+ffffffff8231dad8 d iommu_change_dev_def_domain._rs.51
+ffffffff8231db00 d iommu_change_dev_def_domain._rs.53
+ffffffff8231db28 d __SCK__tp_func_add_device_to_group
+ffffffff8231db38 d __SCK__tp_func_remove_device_from_group
+ffffffff8231db48 d __SCK__tp_func_attach_device_to_domain
+ffffffff8231db58 d __SCK__tp_func_detach_device_from_domain
+ffffffff8231db68 d __SCK__tp_func_map
+ffffffff8231db78 d __SCK__tp_func_unmap
+ffffffff8231db88 d __SCK__tp_func_io_page_fault
+ffffffff8231dba0 d trace_event_fields_iommu_group_event
+ffffffff8231dc18 d trace_event_type_funcs_iommu_group_event
+ffffffff8231dc40 d print_fmt_iommu_group_event
+ffffffff8231dc80 d event_add_device_to_group
+ffffffff8231dd10 d event_remove_device_from_group
+ffffffff8231dda0 d trace_event_fields_iommu_device_event
+ffffffff8231ddf0 d trace_event_type_funcs_iommu_device_event
+ffffffff8231de10 d print_fmt_iommu_device_event
+ffffffff8231de38 d event_attach_device_to_domain
+ffffffff8231dec8 d event_detach_device_from_domain
+ffffffff8231df60 d trace_event_fields_map
+ffffffff8231e000 d trace_event_type_funcs_map
+ffffffff8231e020 d print_fmt_map
+ffffffff8231e098 d event_map
+ffffffff8231e130 d trace_event_fields_unmap
+ffffffff8231e1d0 d trace_event_type_funcs_unmap
+ffffffff8231e1f0 d print_fmt_unmap
+ffffffff8231e270 d event_unmap
+ffffffff8231e300 d trace_event_fields_iommu_error
+ffffffff8231e3c8 d trace_event_type_funcs_iommu_error
+ffffffff8231e3f0 d print_fmt_iommu_error
+ffffffff8231e458 d event_io_page_fault
+ffffffff8231e4e8 d iommu_class
+ffffffff8231e580 d dev_groups
+ffffffff8231e590 d iommu_dma_prepare_msi.msi_prepare_lock
+ffffffff8231e5c0 d iova_cache_mutex
+ffffffff8231e5f0 d component_mutex
+ffffffff8231e620 d aggregate_devices
+ffffffff8231e630 d component_list
+ffffffff8231e640 d fwnode_link_lock
+ffffffff8231e670 d device_links_srcu.llvm.1475585395194520759
+ffffffff8231e850 d devlink_class.llvm.1475585395194520759
+ffffffff8231e8e8 d defer_sync_state_count
+ffffffff8231e8f0 d deferred_sync
+ffffffff8231e900 d dev_attr_waiting_for_supplier
+ffffffff8231e920 d fw_devlink_flags
+ffffffff8231e928 d device_hotplug_lock.llvm.1475585395194520759
+ffffffff8231e958 d device_ktype
+ffffffff8231e9a8 d dev_attr_uevent
+ffffffff8231e9c8 d dev_attr_dev
+ffffffff8231e9e8 d devlink_class_intf
+ffffffff8231ea10 d device_links_lock.llvm.1475585395194520759
+ffffffff8231ea40 d devlink_groups
+ffffffff8231ea50 d devlink_attrs
+ffffffff8231ea78 d dev_attr_auto_remove_on
+ffffffff8231ea98 d dev_attr_runtime_pm
+ffffffff8231eab8 d dev_attr_sync_state_only
+ffffffff8231ead8 d gdp_mutex
+ffffffff8231eb08 d class_dir_ktype
+ffffffff8231eb58 d dev_attr_online
+ffffffff8231eb78 d driver_ktype
+ffffffff8231ebc8 d driver_attr_uevent
+ffffffff8231ebe8 d bus_ktype
+ffffffff8231ec38 d bus_attr_uevent
+ffffffff8231ec58 d driver_attr_unbind
+ffffffff8231ec78 d driver_attr_bind
+ffffffff8231ec98 d bus_attr_drivers_probe
+ffffffff8231ecb8 d bus_attr_drivers_autoprobe
+ffffffff8231ecd8 d deferred_probe_mutex
+ffffffff8231ed08 d deferred_probe_pending_list
+ffffffff8231ed18 d deferred_probe_active_list
+ffffffff8231ed28 d deferred_probe_work
+ffffffff8231ed58 d driver_deferred_probe_timeout
+ffffffff8231ed60 d deferred_probe_timeout_work
+ffffffff8231ede8 d probe_waitqueue
+ffffffff8231ee00 d dev_attr_state_synced
+ffffffff8231ee20 d dev_attr_coredump
+ffffffff8231ee40 d syscore_ops_lock
+ffffffff8231ee70 d syscore_ops_list
+ffffffff8231ee80 d class_ktype
+ffffffff8231eed0 d platform_bus
+ffffffff8231f240 d platform_bus_type
+ffffffff8231f318 d platform_devid_ida
+ffffffff8231f330 d platform_dev_groups
+ffffffff8231f340 d platform_dev_attrs
+ffffffff8231f360 d dev_attr_numa_node
+ffffffff8231f380 d dev_attr_numa_node
+ffffffff8231f3a0 d dev_attr_numa_node
+ffffffff8231f3c0 d cpu_root_attr_groups
+ffffffff8231f3d0 d cpu_root_attrs
+ffffffff8231f410 d cpu_attrs
+ffffffff8231f488 d dev_attr_kernel_max
+ffffffff8231f4a8 d dev_attr_offline
+ffffffff8231f4c8 d dev_attr_isolated
+ffffffff8231f4f0 d cpu_root_vulnerabilities_attrs
+ffffffff8231f550 d dev_attr_meltdown
+ffffffff8231f570 d dev_attr_spectre_v1
+ffffffff8231f590 d dev_attr_spectre_v2
+ffffffff8231f5b0 d dev_attr_spec_store_bypass
+ffffffff8231f5d0 d dev_attr_l1tf
+ffffffff8231f5f0 d dev_attr_mds
+ffffffff8231f610 d dev_attr_tsx_async_abort
+ffffffff8231f630 d dev_attr_itlb_multihit
+ffffffff8231f650 d dev_attr_srbds
+ffffffff8231f670 d dev_attr_mmio_stale_data
+ffffffff8231f690 d dev_attr_retbleed
+ffffffff8231f6b0 d cpu_subsys
+ffffffff8231f788 d attribute_container_mutex
+ffffffff8231f7b8 d attribute_container_list
+ffffffff8231f7d0 d default_attrs
+ffffffff8231f800 d default_attrs
+ffffffff8231f830 d bin_attrs
+ffffffff8231f898 d dev_attr_ppin
+ffffffff8231f8b8 d dev_attr_physical_package_id
+ffffffff8231f8d8 d dev_attr_die_id
+ffffffff8231f8f8 d dev_attr_cluster_id
+ffffffff8231f918 d dev_attr_core_id
+ffffffff8231f938 d bin_attr_core_cpus
+ffffffff8231f978 d bin_attr_core_cpus_list
+ffffffff8231f9b8 d bin_attr_thread_siblings
+ffffffff8231f9f8 d bin_attr_thread_siblings_list
+ffffffff8231fa38 d bin_attr_core_siblings
+ffffffff8231fa78 d bin_attr_core_siblings_list
+ffffffff8231fab8 d bin_attr_cluster_cpus
+ffffffff8231faf8 d bin_attr_cluster_cpus_list
+ffffffff8231fb38 d bin_attr_die_cpus
+ffffffff8231fb78 d bin_attr_die_cpus_list
+ffffffff8231fbb8 d bin_attr_package_cpus
+ffffffff8231fbf8 d bin_attr_package_cpus_list
+ffffffff8231fc38 d container_subsys
+ffffffff8231fd10 d cache_default_groups
+ffffffff8231fd20 d cache_private_groups
+ffffffff8231fd40 d cache_default_attrs
+ffffffff8231fda8 d dev_attr_level
+ffffffff8231fdc8 d dev_attr_shared_cpu_map
+ffffffff8231fde8 d dev_attr_shared_cpu_list
+ffffffff8231fe08 d dev_attr_coherency_line_size
+ffffffff8231fe28 d dev_attr_ways_of_associativity
+ffffffff8231fe48 d dev_attr_number_of_sets
+ffffffff8231fe68 d dev_attr_write_policy
+ffffffff8231fe88 d dev_attr_allocation_policy
+ffffffff8231fea8 d dev_attr_physical_line_partition
+ffffffff8231fec8 d swnode_root_ids
+ffffffff8231fed8 d software_node_type
+ffffffff8231ff30 d runtime_attrs.llvm.6253406015395676325
+ffffffff8231ff60 d dev_attr_runtime_status
+ffffffff8231ff80 d dev_attr_runtime_suspended_time
+ffffffff8231ffa0 d dev_attr_runtime_active_time
+ffffffff8231ffc0 d dev_attr_autosuspend_delay_ms
+ffffffff8231ffe0 d wakeup_attrs.llvm.6253406015395676325
+ffffffff82320030 d dev_attr_wakeup
+ffffffff82320050 d dev_attr_wakeup_count
+ffffffff82320070 d dev_attr_wakeup_count
+ffffffff82320090 d dev_attr_wakeup_active_count
+ffffffff823200b0 d dev_attr_wakeup_abort_count
+ffffffff823200d0 d dev_attr_wakeup_expire_count
+ffffffff823200f0 d dev_attr_wakeup_active
+ffffffff82320110 d dev_attr_wakeup_total_time_ms
+ffffffff82320130 d dev_attr_wakeup_max_time_ms
+ffffffff82320150 d dev_attr_wakeup_last_time_ms
+ffffffff82320170 d pm_qos_latency_tolerance_attrs.llvm.6253406015395676325
+ffffffff82320180 d dev_attr_pm_qos_latency_tolerance_us
+ffffffff823201a0 d pm_qos_resume_latency_attrs.llvm.6253406015395676325
+ffffffff823201b0 d dev_attr_pm_qos_resume_latency_us
+ffffffff823201d0 d pm_qos_flags_attrs.llvm.6253406015395676325
+ffffffff823201e0 d dev_attr_pm_qos_no_power_off
+ffffffff82320200 d dev_pm_qos_sysfs_mtx
+ffffffff82320230 d dev_pm_qos_mtx.llvm.14738229075806529406
+ffffffff82320260 d pm_runtime_set_memalloc_noio.dev_hotplug_mutex
+ffffffff82320290 d dpm_list
+ffffffff823202a0 d dpm_list_mtx.llvm.17087584452155380504
+ffffffff823202d0 d dpm_late_early_list
+ffffffff823202e0 d dpm_suspended_list
+ffffffff823202f0 d dpm_prepared_list
+ffffffff82320300 d dpm_noirq_list
+ffffffff82320310 d wakeup_ida
+ffffffff82320320 d wakeup_sources
+ffffffff82320330 d wakeup_srcu
+ffffffff82320510 d wakeup_count_wait_queue
+ffffffff82320528 d deleted_ws
+ffffffff82320600 d wakeup_source_groups
+ffffffff82320610 d wakeup_source_attrs
+ffffffff82320668 d dev_attr_active_count
+ffffffff82320688 d dev_attr_event_count
+ffffffff823206a8 d dev_attr_expire_count
+ffffffff823206c8 d dev_attr_active_time_ms
+ffffffff823206e8 d dev_attr_total_time_ms
+ffffffff82320708 d dev_attr_max_time_ms
+ffffffff82320728 d dev_attr_last_change_ms
+ffffffff82320748 d dev_attr_prevent_suspend_time_ms
+ffffffff82320768 d fw_fallback_config
+ffffffff82320780 d firmware_config_table.llvm.393697337037755989
+ffffffff82320840 d fw_shutdown_nb
+ffffffff82320858 d fw_lock
+ffffffff82320888 d pending_fw_head
+ffffffff82320898 d firmware_class.llvm.5463759349568932627
+ffffffff82320930 d dev_attr_loading
+ffffffff82320950 d fw_dev_attr_groups
+ffffffff82320960 d firmware_class_groups
+ffffffff82320970 d firmware_class_attrs
+ffffffff82320980 d class_attr_timeout
+ffffffff823209a0 d fw_dev_attrs
+ffffffff823209b0 d fw_dev_bin_attrs
+ffffffff823209c0 d firmware_attr_data
+ffffffff82320a00 d memory_chain.llvm.796049820297242604
+ffffffff82320a48 d memory_subsys
+ffffffff82320b20 d memory_root_attr_groups
+ffffffff82320b30 d memory_groups.llvm.796049820297242604
+ffffffff82320b40 d memory_memblk_attr_groups
+ffffffff82320b50 d memory_memblk_attrs
+ffffffff82320b80 d dev_attr_phys_index
+ffffffff82320ba0 d dev_attr_phys_device
+ffffffff82320bc0 d dev_attr_valid_zones
+ffffffff82320be0 d memory_root_attrs
+ffffffff82320bf8 d dev_attr_block_size_bytes
+ffffffff82320c18 d dev_attr_auto_online_blocks
+ffffffff82320c38 d module_create_drivers_dir.drivers_dir_mutex
+ffffffff82320c68 d __SCK__tp_func_regmap_reg_write
+ffffffff82320c78 d __SCK__tp_func_regmap_reg_read
+ffffffff82320c88 d __SCK__tp_func_regmap_reg_read_cache
+ffffffff82320c98 d __SCK__tp_func_regmap_bulk_write
+ffffffff82320ca8 d __SCK__tp_func_regmap_bulk_read
+ffffffff82320cb8 d __SCK__tp_func_regmap_hw_read_start
+ffffffff82320cc8 d __SCK__tp_func_regmap_hw_read_done
+ffffffff82320cd8 d __SCK__tp_func_regmap_hw_write_start
+ffffffff82320ce8 d __SCK__tp_func_regmap_hw_write_done
+ffffffff82320cf8 d __SCK__tp_func_regcache_sync
+ffffffff82320d08 d __SCK__tp_func_regmap_cache_only
+ffffffff82320d18 d __SCK__tp_func_regmap_cache_bypass
+ffffffff82320d28 d __SCK__tp_func_regmap_async_write_start
+ffffffff82320d38 d __SCK__tp_func_regmap_async_io_complete
+ffffffff82320d48 d __SCK__tp_func_regmap_async_complete_start
+ffffffff82320d58 d __SCK__tp_func_regmap_async_complete_done
+ffffffff82320d68 d __SCK__tp_func_regcache_drop_region
+ffffffff82320d80 d trace_event_fields_regmap_reg
+ffffffff82320e20 d trace_event_type_funcs_regmap_reg
+ffffffff82320e40 d print_fmt_regmap_reg
+ffffffff82320e78 d event_regmap_reg_write
+ffffffff82320f08 d event_regmap_reg_read
+ffffffff82320f98 d event_regmap_reg_read_cache
+ffffffff82321030 d trace_event_fields_regmap_bulk
+ffffffff823210f8 d trace_event_type_funcs_regmap_bulk
+ffffffff82321120 d print_fmt_regmap_bulk
+ffffffff82321188 d event_regmap_bulk_write
+ffffffff82321218 d event_regmap_bulk_read
+ffffffff823212b0 d trace_event_fields_regmap_block
+ffffffff82321350 d trace_event_type_funcs_regmap_block
+ffffffff82321370 d print_fmt_regmap_block
+ffffffff823213b0 d event_regmap_hw_read_start
+ffffffff82321440 d event_regmap_hw_read_done
+ffffffff823214d0 d event_regmap_hw_write_start
+ffffffff82321560 d event_regmap_hw_write_done
+ffffffff823215f0 d trace_event_fields_regcache_sync
+ffffffff82321690 d trace_event_type_funcs_regcache_sync
+ffffffff823216b0 d print_fmt_regcache_sync
+ffffffff82321700 d event_regcache_sync
+ffffffff82321790 d trace_event_fields_regmap_bool
+ffffffff82321808 d trace_event_type_funcs_regmap_bool
+ffffffff82321830 d print_fmt_regmap_bool
+ffffffff82321860 d event_regmap_cache_only
+ffffffff823218f0 d event_regmap_cache_bypass
+ffffffff82321980 d trace_event_fields_regmap_async
+ffffffff823219d0 d event_regmap_async_write_start
+ffffffff82321a60 d trace_event_type_funcs_regmap_async
+ffffffff82321a80 d print_fmt_regmap_async
+ffffffff82321a98 d event_regmap_async_io_complete
+ffffffff82321b28 d event_regmap_async_complete_start
+ffffffff82321bb8 d event_regmap_async_complete_done
+ffffffff82321c50 d trace_event_fields_regcache_drop_region
+ffffffff82321cf0 d trace_event_type_funcs_regcache_drop_region
+ffffffff82321d10 d print_fmt_regcache_drop_region
+ffffffff82321d40 d event_regcache_drop_region
+ffffffff82321dd0 d regcache_rbtree_ops
+ffffffff82321e18 d regcache_flat_ops
+ffffffff82321e60 d regmap_debugfs_early_lock
+ffffffff82321e90 d regmap_debugfs_early_list
+ffffffff82321ea0 d platform_msi_devid_ida
+ffffffff82321eb0 d dev_attr_physical_location.llvm.131465668642156839
+ffffffff82321ee0 d dev_attr_panel
+ffffffff82321f00 d dev_attr_vertical_position
+ffffffff82321f20 d dev_attr_horizontal_position
+ffffffff82321f40 d dev_attr_dock
+ffffffff82321f60 d dev_attr_lid
+ffffffff82321f80 d __SCK__tp_func_devres_log
+ffffffff82321f90 d trace_event_fields_devres
+ffffffff823220a8 d trace_event_type_funcs_devres
+ffffffff823220d0 d print_fmt_devres
+ffffffff82322130 d event_devres_log
+ffffffff823221c0 d rd_nr
+ffffffff823221c8 d rd_size
+ffffffff823221d0 d max_part
+ffffffff823221d8 d brd_devices
+ffffffff823221e8 d max_loop
+ffffffff823221ec d hw_queue_depth
+ffffffff823221f0 d loop_misc
+ffffffff82322240 d loop_index_idr
+ffffffff82322258 d loop_ctl_mutex
+ffffffff82322288 d lo_write_bvec._rs
+ffffffff823222b0 d loop_attribute_group
+ffffffff823222e0 d loop_attrs
+ffffffff82322318 d loop_attr_backing_file
+ffffffff82322338 d loop_attr_offset
+ffffffff82322358 d loop_attr_sizelimit
+ffffffff82322378 d loop_attr_autoclear
+ffffffff82322398 d loop_attr_partscan
+ffffffff823223b8 d loop_attr_dio
+ffffffff823223d8 d loop_validate_mutex
+ffffffff82322408 d virtio_blk
+ffffffff82322520 d features_legacy
+ffffffff82322550 d vd_index_ida
+ffffffff82322560 d virtblk_attr_groups
+ffffffff82322570 d virtblk_attrs
+ffffffff82322588 d dev_attr_cache_type
+ffffffff823225a8 d dev_attr_serial
+ffffffff823225c8 d num_devices
+ffffffff823225d0 d zram_control_class
+ffffffff82322668 d zram_index_idr
+ffffffff82322680 d zram_control_class_groups
+ffffffff82322690 d zram_control_class_attrs
+ffffffff823226a8 d class_attr_hot_add
+ffffffff823226c8 d class_attr_hot_remove
+ffffffff823226e8 d zram_index_mutex
+ffffffff82322720 d zram_disk_groups
+ffffffff82322730 d zram_disk_attrs
+ffffffff82322798 d dev_attr_disksize
+ffffffff823227b8 d dev_attr_initstate
+ffffffff823227d8 d dev_attr_compact
+ffffffff823227f8 d dev_attr_mem_limit
+ffffffff82322818 d dev_attr_mem_used_max
+ffffffff82322838 d dev_attr_idle
+ffffffff82322858 d dev_attr_max_comp_streams
+ffffffff82322878 d dev_attr_comp_algorithm
+ffffffff82322898 d dev_attr_io_stat
+ffffffff823228b8 d dev_attr_mm_stat
+ffffffff823228d8 d dev_attr_debug_stat
+ffffffff823228f8 d syscon_list
+ffffffff82322908 d syscon_driver
+ffffffff82322a00 d nvdimm_bus_attributes
+ffffffff82322a20 d dev_attr_commands
+ffffffff82322a40 d dev_attr_commands
+ffffffff82322a60 d dev_attr_wait_probe
+ffffffff82322a80 d dev_attr_provider
+ffffffff82322aa0 d nvdimm_bus_firmware_attributes
+ffffffff82322ab8 d dev_attr_activate
+ffffffff82322ad8 d dev_attr_activate
+ffffffff82322b00 d nvdimm_bus_attribute_groups
+ffffffff82322b18 d nvdimm_bus_list_mutex
+ffffffff82322b48 d nvdimm_bus_list
+ffffffff82322b58 d nd_ida
+ffffffff82322b68 d nvdimm_bus_type
+ffffffff82322c40 d nd_async_domain.llvm.10714734933821872331
+ffffffff82322c60 d nd_device_attributes
+ffffffff82322c80 d nd_numa_attributes
+ffffffff82322c98 d nd_bus_driver
+ffffffff82322d70 d dev_attr_devtype
+ffffffff82322d90 d dev_attr_target_node
+ffffffff82322db0 d dev_attr_target_node
+ffffffff82322dd0 d dimm_ida.llvm.16457450038437133464
+ffffffff82322de0 d nvdimm_attribute_groups.llvm.16457450038437133464
+ffffffff82322e00 d nvdimm_attributes
+ffffffff82322e38 d dev_attr_security
+ffffffff82322e58 d dev_attr_frozen
+ffffffff82322e78 d dev_attr_available_slots
+ffffffff82322ea0 d nvdimm_firmware_attributes
+ffffffff82322eb8 d dev_attr_result
+ffffffff82322ed8 d nvdimm_pmu_format_group
+ffffffff82322f00 d nvdimm_pmu_events_group
+ffffffff82322f30 d nvdimm_pmu_format_attr
+ffffffff82322f40 d nvdimm_events_attr
+ffffffff82322fc8 d event_attr_CTL_RES_CNT
+ffffffff82322ff8 d event_attr_CTL_RES_TM
+ffffffff82323028 d event_attr_POWERON_SECS
+ffffffff82323058 d event_attr_MEM_LIFE
+ffffffff82323088 d event_attr_CRI_RES_UTIL
+ffffffff823230b8 d event_attr_HOST_L_CNT
+ffffffff823230e8 d event_attr_HOST_S_CNT
+ffffffff82323118 d event_attr_HOST_S_DUR
+ffffffff82323148 d event_attr_HOST_L_DUR
+ffffffff82323178 d event_attr_MED_R_CNT
+ffffffff823231a8 d event_attr_MED_W_CNT
+ffffffff823231d8 d event_attr_MED_R_DUR
+ffffffff82323208 d event_attr_MED_W_DUR
+ffffffff82323238 d event_attr_CACHE_RH_CNT
+ffffffff82323268 d event_attr_CACHE_WH_CNT
+ffffffff82323298 d event_attr_FAST_W_CNT
+ffffffff823232c8 d nvdimm_driver.llvm.5753852448143542236
+ffffffff823233a0 d nd_region_attribute_groups.llvm.3745560375144724132
+ffffffff823233d0 d nd_region_attributes
+ffffffff82323460 d dev_attr_pfn_seed
+ffffffff82323480 d dev_attr_dax_seed
+ffffffff823234a0 d dev_attr_deep_flush
+ffffffff823234c0 d dev_attr_persistence_domain
+ffffffff823234e0 d dev_attr_align
+ffffffff82323500 d dev_attr_align
+ffffffff82323520 d dev_attr_set_cookie
+ffffffff82323540 d dev_attr_available_size
+ffffffff82323560 d dev_attr_available_size
+ffffffff82323580 d dev_attr_nstype
+ffffffff823235a0 d dev_attr_nstype
+ffffffff823235c0 d dev_attr_mappings
+ffffffff823235e0 d dev_attr_btt_seed
+ffffffff82323600 d dev_attr_read_only
+ffffffff82323620 d dev_attr_max_available_extent
+ffffffff82323640 d dev_attr_namespace_seed
+ffffffff82323660 d dev_attr_init_namespaces
+ffffffff82323680 d mapping_attributes
+ffffffff82323788 d dev_attr_mapping0
+ffffffff823237a8 d dev_attr_mapping1
+ffffffff823237c8 d dev_attr_mapping2
+ffffffff823237e8 d dev_attr_mapping3
+ffffffff82323808 d dev_attr_mapping4
+ffffffff82323828 d dev_attr_mapping5
+ffffffff82323848 d dev_attr_mapping6
+ffffffff82323868 d dev_attr_mapping7
+ffffffff82323888 d dev_attr_mapping8
+ffffffff823238a8 d dev_attr_mapping9
+ffffffff823238c8 d dev_attr_mapping10
+ffffffff823238e8 d dev_attr_mapping11
+ffffffff82323908 d dev_attr_mapping12
+ffffffff82323928 d dev_attr_mapping13
+ffffffff82323948 d dev_attr_mapping14
+ffffffff82323968 d dev_attr_mapping15
+ffffffff82323988 d dev_attr_mapping16
+ffffffff823239a8 d dev_attr_mapping17
+ffffffff823239c8 d dev_attr_mapping18
+ffffffff823239e8 d dev_attr_mapping19
+ffffffff82323a08 d dev_attr_mapping20
+ffffffff82323a28 d dev_attr_mapping21
+ffffffff82323a48 d dev_attr_mapping22
+ffffffff82323a68 d dev_attr_mapping23
+ffffffff82323a88 d dev_attr_mapping24
+ffffffff82323aa8 d dev_attr_mapping25
+ffffffff82323ac8 d dev_attr_mapping26
+ffffffff82323ae8 d dev_attr_mapping27
+ffffffff82323b08 d dev_attr_mapping28
+ffffffff82323b28 d dev_attr_mapping29
+ffffffff82323b48 d dev_attr_mapping30
+ffffffff82323b68 d dev_attr_mapping31
+ffffffff82323b88 d nd_region_driver.llvm.600803129930813883
+ffffffff82323c60 d nd_namespace_attribute_groups
+ffffffff82323c80 d nd_namespace_attribute_group
+ffffffff82323cb0 d nd_namespace_attributes
+ffffffff82323d10 d dev_attr_holder
+ffffffff82323d30 d dev_attr_holder_class
+ffffffff82323d50 d dev_attr_force_raw
+ffffffff82323d70 d dev_attr_mode
+ffffffff82323d90 d dev_attr_mode
+ffffffff82323db0 d dev_attr_uuid
+ffffffff82323dd0 d dev_attr_uuid
+ffffffff82323df0 d dev_attr_alt_name
+ffffffff82323e10 d dev_attr_sector_size
+ffffffff82323e30 d dev_attr_sector_size
+ffffffff82323e50 d dev_attr_dpa_extents
+ffffffff82323e70 d nd_btt_attribute_groups.llvm.18421582928704709732
+ffffffff82323e90 d nd_btt_attribute_group
+ffffffff82323ec0 d nd_btt_attributes
+ffffffff82323ef0 d dev_attr_namespace
+ffffffff82323f10 d dev_attr_log_zero_flags
+ffffffff82323f30 d nd_pmem_driver
+ffffffff82324010 d pmem_attribute_groups
+ffffffff82324020 d dax_attributes
+ffffffff82324030 d dev_attr_write_cache
+ffffffff82324050 d btt_freelist_init._rs
+ffffffff82324078 d btt_map_read._rs
+ffffffff823240a0 d __btt_map_write._rs
+ffffffff823240c8 d btt_submit_bio._rs
+ffffffff823240f0 d btt_read_pg._rs
+ffffffff82324118 d of_pmem_region_driver
+ffffffff82324208 d dax_srcu
+ffffffff823243e8 d dax_minor_ida
+ffffffff823243f8 d dax_fs_type
+ffffffff82324440 d dax_region_attribute_groups
+ffffffff82324450 d dax_bus_type.llvm.10017040839472986128
+ffffffff82324528 d dax_bus_lock
+ffffffff82324560 d dax_region_attributes
+ffffffff823245a0 d dev_attr_create
+ffffffff823245c0 d dev_attr_seed
+ffffffff823245e0 d dev_attr_delete
+ffffffff82324600 d dev_attr_region_size
+ffffffff82324620 d dev_attr_region_align
+ffffffff82324640 d dax_drv_groups
+ffffffff82324650 d dax_drv_attrs
+ffffffff82324670 d dax_attribute_groups
+ffffffff82324680 d dev_dax_attributes
+ffffffff823246c0 d dev_attr_mapping
+ffffffff823246e0 d dax_mapping_type
+ffffffff82324710 d dax_mapping_attribute_groups
+ffffffff82324720 d dax_mapping_attributes
+ffffffff82324740 d dev_attr_end
+ffffffff82324760 d dev_attr_page_offset
+ffffffff82324780 d dma_buf_fs_type
+ffffffff823247c8 d __SCK__tp_func_dma_fence_emit
+ffffffff823247d8 d __SCK__tp_func_dma_fence_init
+ffffffff823247e8 d __SCK__tp_func_dma_fence_destroy
+ffffffff823247f8 d __SCK__tp_func_dma_fence_enable_signal
+ffffffff82324808 d __SCK__tp_func_dma_fence_signaled
+ffffffff82324818 d __SCK__tp_func_dma_fence_wait_start
+ffffffff82324828 d __SCK__tp_func_dma_fence_wait_end
+ffffffff82324840 d trace_event_fields_dma_fence
+ffffffff82324908 d trace_event_type_funcs_dma_fence
+ffffffff82324930 d print_fmt_dma_fence
+ffffffff823249a0 d event_dma_fence_emit
+ffffffff82324a30 d event_dma_fence_init
+ffffffff82324ac0 d event_dma_fence_destroy
+ffffffff82324b50 d event_dma_fence_enable_signal
+ffffffff82324be0 d event_dma_fence_signaled
+ffffffff82324c70 d event_dma_fence_wait_start
+ffffffff82324d00 d event_dma_fence_wait_end
+ffffffff82324d90 d dma_fence_context_counter
+ffffffff82324d98 d reservation_ww_class
+ffffffff82324db8 d heap_list_lock
+ffffffff82324de8 d heap_list
+ffffffff82324df8 d dma_heap_minors
+ffffffff82324e10 d dma_heap_sysfs_groups
+ffffffff82324e20 d dma_heap_sysfs_attrs
+ffffffff82324e30 d total_pools_kb_attr
+ffffffff82324e50 d dma_buf_ktype
+ffffffff82324ea0 d dma_buf_stats_default_groups
+ffffffff82324eb0 d dma_buf_stats_default_attrs
+ffffffff82324ec8 d exporter_name_attribute
+ffffffff82324ee0 d size_attribute
+ffffffff82324ef8 d size_attribute
+ffffffff82324f18 d uio_class
+ffffffff82324fb0 d uio_idr
+ffffffff82324fc8 d minor_lock
+ffffffff82325000 d uio_groups
+ffffffff82325010 d uio_attrs
+ffffffff82325030 d dev_attr_event
+ffffffff82325050 d map_attr_type
+ffffffff823250a0 d portio_attr_type
+ffffffff823250f0 d map_groups
+ffffffff82325100 d map_attrs
+ffffffff82325128 d name_attribute
+ffffffff82325148 d addr_attribute
+ffffffff82325168 d offset_attribute
+ffffffff82325190 d portio_groups
+ffffffff823251a0 d portio_attrs
+ffffffff823251c8 d portio_name_attribute
+ffffffff823251e8 d portio_start_attribute
+ffffffff82325208 d portio_size_attribute
+ffffffff82325228 d portio_porttype_attribute
+ffffffff82325248 d serio_mutex
+ffffffff82325278 d serio_bus
+ffffffff82325350 d serio_list
+ffffffff82325360 d serio_driver_groups
+ffffffff82325370 d serio_event_work
+ffffffff823253a0 d serio_event_list
+ffffffff823253b0 d serio_init_port.serio_no
+ffffffff823253c0 d serio_device_attr_groups
+ffffffff823253e0 d serio_device_id_attrs
+ffffffff82325408 d dev_attr_proto
+ffffffff82325428 d dev_attr_extra
+ffffffff82325450 d serio_device_attrs
+ffffffff82325480 d dev_attr_drvctl
+ffffffff823254a0 d dev_attr_bind_mode
+ffffffff823254c0 d dev_attr_firmware_id
+ffffffff823254e0 d serio_driver_attrs
+ffffffff823254f8 d driver_attr_description
+ffffffff82325518 d driver_attr_bind_mode
+ffffffff82325538 d i8042_reset
+ffffffff82325540 d i8042_mutex
+ffffffff82325570 d i8042_driver
+ffffffff82325660 d i8042_kbd_bind_notifier_block
+ffffffff82325678 d i8042_command_reg
+ffffffff8232567c d i8042_data_reg
+ffffffff82325680 d i8042_pnp_kbd_driver
+ffffffff82325770 d i8042_pnp_aux_driver
+ffffffff82325860 d serport_ldisc
+ffffffff82325900 d input_class
+ffffffff82325998 d input_allocate_device.input_no
+ffffffff823259a0 d input_mutex
+ffffffff823259d0 d input_dev_list
+ffffffff823259e0 d input_handler_list
+ffffffff823259f0 d input_ida
+ffffffff82325a00 d input_dev_attr_groups
+ffffffff82325a30 d input_dev_attrs
+ffffffff82325a68 d dev_attr_phys
+ffffffff82325a88 d dev_attr_uniq
+ffffffff82325aa8 d dev_attr_properties
+ffffffff82325ac8 d dev_attr_inhibited
+ffffffff82325af0 d input_dev_id_attrs
+ffffffff82325b18 d dev_attr_bustype
+ffffffff82325b38 d dev_attr_product
+ffffffff82325b60 d input_dev_caps_attrs
+ffffffff82325bb0 d dev_attr_ev
+ffffffff82325bd0 d dev_attr_key
+ffffffff82325bf0 d dev_attr_rel
+ffffffff82325c10 d dev_attr_abs
+ffffffff82325c30 d dev_attr_msc
+ffffffff82325c50 d dev_attr_led
+ffffffff82325c70 d dev_attr_snd
+ffffffff82325c90 d dev_attr_ff
+ffffffff82325cb0 d dev_attr_sw
+ffffffff82325cd0 d input_devices_poll_wait
+ffffffff82325cf0 d input_poller_attrs
+ffffffff82325d10 d input_poller_attribute_group
+ffffffff82325d38 d dev_attr_poll
+ffffffff82325d58 d dev_attr_max
+ffffffff82325d78 d dev_attr_min
+ffffffff82325d98 d rtc_ida
+ffffffff82325da8 d rtc_hctosys_ret
+ffffffff82325db0 d __SCK__tp_func_rtc_set_time
+ffffffff82325dc0 d __SCK__tp_func_rtc_read_time
+ffffffff82325dd0 d __SCK__tp_func_rtc_set_alarm
+ffffffff82325de0 d __SCK__tp_func_rtc_read_alarm
+ffffffff82325df0 d __SCK__tp_func_rtc_irq_set_freq
+ffffffff82325e00 d __SCK__tp_func_rtc_irq_set_state
+ffffffff82325e10 d __SCK__tp_func_rtc_alarm_irq_enable
+ffffffff82325e20 d __SCK__tp_func_rtc_set_offset
+ffffffff82325e30 d __SCK__tp_func_rtc_read_offset
+ffffffff82325e40 d __SCK__tp_func_rtc_timer_enqueue
+ffffffff82325e50 d __SCK__tp_func_rtc_timer_dequeue
+ffffffff82325e60 d __SCK__tp_func_rtc_timer_fired
+ffffffff82325e70 d trace_event_fields_rtc_time_alarm_class
+ffffffff82325ee8 d trace_event_type_funcs_rtc_time_alarm_class
+ffffffff82325f10 d print_fmt_rtc_time_alarm_class
+ffffffff82325f38 d event_rtc_set_time
+ffffffff82325fc8 d event_rtc_read_time
+ffffffff82326058 d event_rtc_set_alarm
+ffffffff823260e8 d event_rtc_read_alarm
+ffffffff82326180 d trace_event_fields_rtc_irq_set_freq
+ffffffff823261f8 d trace_event_type_funcs_rtc_irq_set_freq
+ffffffff82326220 d print_fmt_rtc_irq_set_freq
+ffffffff82326260 d event_rtc_irq_set_freq
+ffffffff823262f0 d trace_event_fields_rtc_irq_set_state
+ffffffff82326368 d trace_event_type_funcs_rtc_irq_set_state
+ffffffff82326390 d print_fmt_rtc_irq_set_state
+ffffffff823263e8 d event_rtc_irq_set_state
+ffffffff82326480 d trace_event_fields_rtc_alarm_irq_enable
+ffffffff823264f8 d trace_event_type_funcs_rtc_alarm_irq_enable
+ffffffff82326520 d print_fmt_rtc_alarm_irq_enable
+ffffffff82326568 d event_rtc_alarm_irq_enable
+ffffffff82326600 d trace_event_fields_rtc_offset_class
+ffffffff82326678 d trace_event_type_funcs_rtc_offset_class
+ffffffff823266a0 d print_fmt_rtc_offset_class
+ffffffff823266d0 d event_rtc_set_offset
+ffffffff82326760 d event_rtc_read_offset
+ffffffff823267f0 d trace_event_fields_rtc_timer_class
+ffffffff82326890 d trace_event_type_funcs_rtc_timer_class
+ffffffff823268b0 d print_fmt_rtc_timer_class
+ffffffff82326908 d event_rtc_timer_enqueue
+ffffffff82326998 d event_rtc_timer_dequeue
+ffffffff82326a28 d event_rtc_timer_fired
+ffffffff82326ac0 d rtc_attr_groups.llvm.2565962149203921660
+ffffffff82326ad0 d rtc_attr_group
+ffffffff82326b00 d rtc_attrs
+ffffffff82326b50 d dev_attr_wakealarm
+ffffffff82326b70 d dev_attr_offset
+ffffffff82326b90 d dev_attr_offset
+ffffffff82326bb0 d dev_attr_date
+ffffffff82326bd0 d dev_attr_time
+ffffffff82326bf0 d dev_attr_since_epoch
+ffffffff82326c10 d dev_attr_max_user_freq
+ffffffff82326c30 d dev_attr_hctosys
+ffffffff82326c50 d cmos_pnp_driver
+ffffffff82326d40 d cmos_platform_driver
+ffffffff82326e30 d cmos_read_time._rs
+ffffffff82326e58 d psy_tzd_ops
+ffffffff82326ee0 d power_supply_attr_groups
+ffffffff82326ef0 d power_supply_attrs
+ffffffff82328910 d power_supply_show_property._rs
+ffffffff82328938 d __SCK__tp_func_thermal_temperature
+ffffffff82328948 d __SCK__tp_func_cdev_update
+ffffffff82328958 d __SCK__tp_func_thermal_zone_trip
+ffffffff82328968 d __SCK__tp_func_thermal_power_cpu_get_power_simple
+ffffffff82328978 d __SCK__tp_func_thermal_power_cpu_limit
+ffffffff82328990 d trace_event_fields_thermal_temperature
+ffffffff82328a58 d trace_event_type_funcs_thermal_temperature
+ffffffff82328a80 d print_fmt_thermal_temperature
+ffffffff82328af0 d event_thermal_temperature
+ffffffff82328b80 d trace_event_fields_cdev_update
+ffffffff82328bf8 d trace_event_type_funcs_cdev_update
+ffffffff82328c20 d print_fmt_cdev_update
+ffffffff82328c58 d event_cdev_update
+ffffffff82328cf0 d trace_event_fields_thermal_zone_trip
+ffffffff82328db8 d trace_event_type_funcs_thermal_zone_trip
+ffffffff82328de0 d print_fmt_thermal_zone_trip
+ffffffff82328ee8 d event_thermal_zone_trip
+ffffffff82328f80 d trace_event_fields_thermal_power_cpu_get_power_simple
+ffffffff82328ff8 d trace_event_type_funcs_thermal_power_cpu_get_power_simple
+ffffffff82329020 d print_fmt_thermal_power_cpu_get_power_simple
+ffffffff82329048 d event_thermal_power_cpu_get_power_simple
+ffffffff823290e0 d trace_event_fields_thermal_power_cpu_limit
+ffffffff823291a8 d trace_event_type_funcs_thermal_power_cpu_limit
+ffffffff823291d0 d print_fmt_thermal_power_cpu_limit
+ffffffff82329240 d event_thermal_power_cpu_limit
+ffffffff823292d0 d thermal_governor_lock
+ffffffff82329300 d thermal_governor_list
+ffffffff82329310 d thermal_list_lock
+ffffffff82329340 d thermal_tz_list
+ffffffff82329350 d thermal_cdev_list
+ffffffff82329360 d thermal_cdev_ida
+ffffffff82329370 d thermal_tz_ida
+ffffffff82329380 d thermal_class
+ffffffff82329418 d thermal_pm_nb
+ffffffff82329430 d cooling_device_attr_groups
+ffffffff82329450 d thermal_zone_dev_attrs
+ffffffff823294c0 d dev_attr_temp
+ffffffff823294e0 d dev_attr_emul_temp
+ffffffff82329500 d dev_attr_policy
+ffffffff82329520 d dev_attr_available_policies
+ffffffff82329540 d dev_attr_sustainable_power
+ffffffff82329560 d dev_attr_k_po
+ffffffff82329580 d dev_attr_k_pu
+ffffffff823295a0 d dev_attr_k_i
+ffffffff823295c0 d dev_attr_k_d
+ffffffff823295e0 d dev_attr_integral_cutoff
+ffffffff82329600 d dev_attr_slope
+ffffffff82329620 d thermal_zone_mode_attrs
+ffffffff82329630 d cooling_device_stats_attrs
+ffffffff82329658 d dev_attr_total_trans
+ffffffff82329678 d dev_attr_time_in_state_ms
+ffffffff82329698 d dev_attr_trans_table
+ffffffff823296c0 d cooling_device_attrs
+ffffffff823296e0 d dev_attr_cdev_type
+ffffffff82329700 d dev_attr_max_state
+ffffffff82329720 d dev_attr_cur_state
+ffffffff82329740 d thermal_gov_step_wise
+ffffffff82329788 d thermal_gov_user_space
+ffffffff823297d0 d dev_attr_core_power_limit_count
+ffffffff823297f0 d dev_attr_package_throttle_count
+ffffffff82329810 d dev_attr_package_throttle_max_time_ms
+ffffffff82329830 d dev_attr_package_throttle_total_time_ms
+ffffffff82329850 d dev_attr_package_power_limit_count
+ffffffff82329870 d thermal_throttle_attrs
+ffffffff82329890 d dev_attr_core_throttle_count
+ffffffff823298b0 d dev_attr_core_throttle_max_time_ms
+ffffffff823298d0 d dev_attr_core_throttle_total_time_ms
+ffffffff823298f0 d __SCK__tp_func_watchdog_start
+ffffffff82329900 d __SCK__tp_func_watchdog_ping
+ffffffff82329910 d __SCK__tp_func_watchdog_stop
+ffffffff82329920 d __SCK__tp_func_watchdog_set_timeout
+ffffffff82329930 d trace_event_fields_watchdog_template
+ffffffff823299a8 d trace_event_type_funcs_watchdog_template
+ffffffff823299d0 d print_fmt_watchdog_template
+ffffffff823299f8 d event_watchdog_start
+ffffffff82329a88 d event_watchdog_ping
+ffffffff82329b18 d event_watchdog_stop
+ffffffff82329bb0 d trace_event_fields_watchdog_set_timeout
+ffffffff82329c50 d trace_event_type_funcs_watchdog_set_timeout
+ffffffff82329c70 d print_fmt_watchdog_set_timeout
+ffffffff82329cb0 d event_watchdog_set_timeout
+ffffffff82329d40 d stop_on_reboot
+ffffffff82329d48 d wtd_deferred_reg_mutex
+ffffffff82329d78 d watchdog_ida
+ffffffff82329d88 d wtd_deferred_reg_list
+ffffffff82329d98 d handle_boot_enabled
+ffffffff82329da0 d watchdog_class
+ffffffff82329e38 d watchdog_miscdev
+ffffffff82329e88 d dm_zone_map_bio_begin._rs
+ffffffff82329eb0 d dm_zone_map_bio_end._rs
+ffffffff82329ed8 d dm_zone_map_bio_end._rs.7
+ffffffff82329f00 d reserved_bio_based_ios
+ffffffff82329f08 d _minor_idr
+ffffffff82329f20 d dm_numa_node
+ffffffff82329f24 d swap_bios
+ffffffff82329f28 d deferred_remove_work
+ffffffff82329f58 d dm_global_eventq
+ffffffff82329f70 d _event_lock
+ffffffff82329fa0 d _lock.llvm.9592842377190946614
+ffffffff82329fe0 d _targets
+ffffffff82329ff0 d error_target
+ffffffff8232a0e8 d linear_target
+ffffffff8232a1e0 d stripe_target
+ffffffff8232a2d8 d _dm_misc
+ffffffff8232a328 d dm_hash_cells_mutex
+ffffffff8232a358 d _hash_lock
+ffffffff8232a398 d kcopyd_subjob_size_kb
+ffffffff8232a3a0 d dm_ktype
+ffffffff8232a3f0 d dm_groups
+ffffffff8232a400 d dm_attrs
+ffffffff8232a430 d dm_attr_name
+ffffffff8232a450 d dm_attr_uuid
+ffffffff8232a470 d dm_attr_suspended
+ffffffff8232a490 d dm_attr_use_blk_mq
+ffffffff8232a4b0 d dm_attr_rq_based_seq_io_merge_deadline
+ffffffff8232a4d0 d reserved_rq_based_ios.llvm.17965589877692752238
+ffffffff8232a4d4 d use_blk_mq
+ffffffff8232a4d8 d dm_mq_nr_hw_queues
+ffffffff8232a4dc d dm_mq_queue_depth
+ffffffff8232a4e0 d dm_bufio_clients_lock
+ffffffff8232a510 d dm_bufio_all_clients
+ffffffff8232a520 d dm_bufio_max_age
+ffffffff8232a528 d dm_bufio_retain_bytes
+ffffffff8232a530 d global_queue
+ffffffff8232a540 d crypt_target
+ffffffff8232a638 d kcryptd_async_done._rs
+ffffffff8232a660 d crypt_convert_block_aead._rs
+ffffffff8232a688 d verity_fec_decode._rs
+ffffffff8232a6b0 d fec_decode_rsb._rs
+ffffffff8232a6d8 d fec_read_bufs._rs
+ffffffff8232a700 d fec_decode_bufs._rs
+ffffffff8232a728 d fec_decode_bufs._rs.34
+ffffffff8232a750 d dm_verity_prefetch_cluster
+ffffffff8232a758 d verity_target
+ffffffff8232a850 d verity_handle_err._rs
+ffffffff8232a878 d verity_map._rs
+ffffffff8232a8a0 d verity_map._rs.61
+ffffffff8232a8c8 d daemon_timeout_msec
+ffffffff8232a8d0 d user_target
+ffffffff8232a9c8 d edac_op_state
+ffffffff8232a9d0 d mem_ctls_mutex
+ffffffff8232aa00 d mc_devices
+ffffffff8232aa10 d edac_layer_name
+ffffffff8232aa38 d device_ctls_mutex
+ffffffff8232aa68 d edac_device_list
+ffffffff8232aa78 d edac_mc_log_ue.llvm.3399786716803917150
+ffffffff8232aa7c d edac_mc_log_ce.llvm.3399786716803917150
+ffffffff8232aa80 d edac_mc_poll_msec.llvm.3399786716803917150
+ffffffff8232aa90 d mci_attr_groups
+ffffffff8232aaa0 d mci_attrs
+ffffffff8232aaf8 d dev_attr_sdram_scrub_rate
+ffffffff8232ab18 d dev_attr_reset_counters
+ffffffff8232ab38 d dev_attr_mc_name
+ffffffff8232ab58 d dev_attr_size_mb
+ffffffff8232ab78 d dev_attr_seconds_since_reset
+ffffffff8232ab98 d dev_attr_ue_noinfo_count
+ffffffff8232abb8 d dev_attr_ce_noinfo_count
+ffffffff8232abd8 d dev_attr_ue_count
+ffffffff8232abf8 d dev_attr_ce_count
+ffffffff8232ac18 d dev_attr_max_location
+ffffffff8232ac40 d dimm_attr_groups
+ffffffff8232ac50 d dimm_attrs
+ffffffff8232ac98 d dev_attr_dimm_label
+ffffffff8232acb8 d dev_attr_dimm_location
+ffffffff8232acd8 d dev_attr_dimm_mem_type
+ffffffff8232acf8 d dev_attr_dimm_dev_type
+ffffffff8232ad18 d dev_attr_dimm_edac_mode
+ffffffff8232ad38 d dev_attr_dimm_ce_count
+ffffffff8232ad58 d dev_attr_dimm_ue_count
+ffffffff8232ad80 d csrow_dev_groups
+ffffffff8232ada0 d csrow_attr_groups
+ffffffff8232adb0 d csrow_attrs
+ffffffff8232ade8 d dev_attr_legacy_dev_type
+ffffffff8232ae08 d dev_attr_legacy_mem_type
+ffffffff8232ae28 d dev_attr_legacy_edac_mode
+ffffffff8232ae48 d dev_attr_legacy_size_mb
+ffffffff8232ae68 d dev_attr_legacy_ue_count
+ffffffff8232ae88 d dev_attr_legacy_ce_count
+ffffffff8232aeb0 d dynamic_csrow_dimm_attr
+ffffffff8232af18 d dev_attr_legacy_ch0_dimm_label
+ffffffff8232af40 d dev_attr_legacy_ch1_dimm_label
+ffffffff8232af68 d dev_attr_legacy_ch2_dimm_label
+ffffffff8232af90 d dev_attr_legacy_ch3_dimm_label
+ffffffff8232afb8 d dev_attr_legacy_ch4_dimm_label
+ffffffff8232afe0 d dev_attr_legacy_ch5_dimm_label
+ffffffff8232b008 d dev_attr_legacy_ch6_dimm_label
+ffffffff8232b030 d dev_attr_legacy_ch7_dimm_label
+ffffffff8232b058 d dev_attr_legacy_ch8_dimm_label
+ffffffff8232b080 d dev_attr_legacy_ch9_dimm_label
+ffffffff8232b0a8 d dev_attr_legacy_ch10_dimm_label
+ffffffff8232b0d0 d dev_attr_legacy_ch11_dimm_label
+ffffffff8232b100 d dynamic_csrow_ce_count_attr
+ffffffff8232b168 d dev_attr_legacy_ch0_ce_count
+ffffffff8232b190 d dev_attr_legacy_ch1_ce_count
+ffffffff8232b1b8 d dev_attr_legacy_ch2_ce_count
+ffffffff8232b1e0 d dev_attr_legacy_ch3_ce_count
+ffffffff8232b208 d dev_attr_legacy_ch4_ce_count
+ffffffff8232b230 d dev_attr_legacy_ch5_ce_count
+ffffffff8232b258 d dev_attr_legacy_ch6_ce_count
+ffffffff8232b280 d dev_attr_legacy_ch7_ce_count
+ffffffff8232b2a8 d dev_attr_legacy_ch8_ce_count
+ffffffff8232b2d0 d dev_attr_legacy_ch9_ce_count
+ffffffff8232b2f8 d dev_attr_legacy_ch10_ce_count
+ffffffff8232b320 d dev_attr_legacy_ch11_ce_count
+ffffffff8232b348 d edac_subsys.llvm.9252988680450684190
+ffffffff8232b420 d ktype_device_ctrl
+ffffffff8232b470 d device_ctrl_groups
+ffffffff8232b480 d device_ctrl_attrs
+ffffffff8232b4a8 d attr_ctl_info_panic_on_ue
+ffffffff8232b4c8 d attr_ctl_info_log_ue
+ffffffff8232b4e8 d attr_ctl_info_log_ce
+ffffffff8232b508 d attr_ctl_info_poll_msec
+ffffffff8232b528 d ktype_instance_ctrl
+ffffffff8232b580 d device_instance_groups
+ffffffff8232b590 d device_instance_attrs
+ffffffff8232b5a8 d attr_instance_ce_count
+ffffffff8232b5c8 d attr_instance_ue_count
+ffffffff8232b5e8 d ktype_block_ctrl
+ffffffff8232b640 d device_block_groups
+ffffffff8232b650 d device_block_attrs
+ffffffff8232b668 d attr_block_ce_count
+ffffffff8232b698 d attr_block_ue_count
+ffffffff8232b6c8 d edac_pci_ctls_mutex
+ffffffff8232b6f8 d edac_pci_list
+ffffffff8232b708 d ktype_edac_pci_main_kobj
+ffffffff8232b760 d edac_pci_groups
+ffffffff8232b770 d edac_pci_attrs
+ffffffff8232b7a8 d edac_pci_attr_check_pci_errors
+ffffffff8232b7d0 d edac_pci_attr_edac_pci_log_pe
+ffffffff8232b7f8 d edac_pci_attr_edac_pci_log_npe
+ffffffff8232b820 d edac_pci_attr_edac_pci_panic_on_pe
+ffffffff8232b848 d edac_pci_attr_pci_parity_count
+ffffffff8232b870 d edac_pci_attr_pci_nonparity_count
+ffffffff8232b898 d edac_pci_log_pe
+ffffffff8232b89c d edac_pci_log_npe
+ffffffff8232b8a0 d ktype_pci_instance
+ffffffff8232b8f0 d pci_instance_groups
+ffffffff8232b900 d pci_instance_attrs
+ffffffff8232b918 d attr_instance_pe_count
+ffffffff8232b938 d attr_instance_npe_count
+ffffffff8232b958 d cpufreq_fast_switch_lock
+ffffffff8232b988 d cpufreq_policy_list
+ffffffff8232b998 d cpufreq_transition_notifier_list
+ffffffff8232bbb0 d cpufreq_policy_notifier_list
+ffffffff8232bbf8 d cpufreq_governor_mutex
+ffffffff8232bc28 d cpufreq_governor_list
+ffffffff8232bc38 d cpufreq_interface
+ffffffff8232bc68 d boost
+ffffffff8232bc88 d ktype_cpufreq
+ffffffff8232bce0 d cpufreq_groups
+ffffffff8232bcf0 d cpufreq_attrs
+ffffffff8232bd50 d cpuinfo_min_freq
+ffffffff8232bd70 d cpuinfo_max_freq
+ffffffff8232bd90 d cpuinfo_transition_latency
+ffffffff8232bdb0 d scaling_min_freq
+ffffffff8232bdd0 d scaling_max_freq
+ffffffff8232bdf0 d affected_cpus
+ffffffff8232be10 d related_cpus
+ffffffff8232be30 d scaling_governor
+ffffffff8232be50 d scaling_driver
+ffffffff8232be70 d scaling_available_governors
+ffffffff8232be90 d scaling_setspeed
+ffffffff8232beb0 d cpuinfo_cur_freq
+ffffffff8232bed0 d scaling_cur_freq
+ffffffff8232bef0 d bios_limit
+ffffffff8232bf10 d cpufreq_freq_attr_scaling_available_freqs
+ffffffff8232bf30 d cpufreq_freq_attr_scaling_boost_freqs
+ffffffff8232bf50 d cpufreq_generic_attr
+ffffffff8232bf60 d total_trans
+ffffffff8232bf80 d time_in_state
+ffffffff8232bfa0 d reset
+ffffffff8232bfc0 d trans_table
+ffffffff8232bfe0 d cpufreq_gov_performance
+ffffffff8232c048 d cpufreq_gov_powersave
+ffffffff8232c0b0 d cs_governor
+ffffffff8232c1a0 d cs_groups
+ffffffff8232c1b0 d cs_attrs
+ffffffff8232c1e8 d sampling_rate
+ffffffff8232c208 d sampling_down_factor
+ffffffff8232c228 d up_threshold
+ffffffff8232c248 d down_threshold
+ffffffff8232c268 d ignore_nice_load
+ffffffff8232c288 d freq_step
+ffffffff8232c2a8 d gov_dbs_data_mutex
+ffffffff8232c2d8 d core_funcs
+ffffffff8232c320 d hwp_cpufreq_attrs
+ffffffff8232c340 d intel_pstate
+ffffffff8232c410 d intel_cpufreq
+ffffffff8232c4e0 d epp_values
+ffffffff8232c4f8 d intel_pstate_driver_lock
+ffffffff8232c528 d energy_performance_preference
+ffffffff8232c548 d energy_performance_available_preferences
+ffffffff8232c568 d base_frequency
+ffffffff8232c588 d intel_pstate_limits_lock
+ffffffff8232c5b8 d intel_pstate_set_itmt_prio.min_highest_perf
+ffffffff8232c5c0 d sched_itmt_work
+ffffffff8232c5f0 d turbo_pct
+ffffffff8232c610 d num_pstates
+ffffffff8232c630 d max_perf_pct
+ffffffff8232c650 d min_perf_pct
+ffffffff8232c670 d energy_efficiency
+ffffffff8232c690 d intel_pstate_attributes
+ffffffff8232c6a8 d status
+ffffffff8232c6c8 d no_turbo
+ffffffff8232c6e8 d hwp_dynamic_boost
+ffffffff8232c708 d cpuidle_detected_devices
+ffffffff8232c718 d cpuidle_lock
+ffffffff8232c748 d cpuidle_governors
+ffffffff8232c758 d cpuidle_attr_group.llvm.2764848753074657208
+ffffffff8232c780 d ktype_cpuidle
+ffffffff8232c7d0 d cpuidle_attrs
+ffffffff8232c7f8 d dev_attr_available_governors
+ffffffff8232c818 d dev_attr_current_driver
+ffffffff8232c838 d dev_attr_current_governor
+ffffffff8232c858 d dev_attr_current_governor_ro
+ffffffff8232c878 d ktype_state_cpuidle
+ffffffff8232c8d0 d cpuidle_state_default_groups
+ffffffff8232c8e0 d cpuidle_state_default_attrs
+ffffffff8232c948 d attr_name
+ffffffff8232c968 d attr_desc
+ffffffff8232c988 d attr_latency
+ffffffff8232c9a8 d attr_residency
+ffffffff8232c9c8 d attr_power
+ffffffff8232c9e8 d attr_usage
+ffffffff8232ca08 d attr_rejected
+ffffffff8232ca28 d attr_time
+ffffffff8232ca48 d attr_disable
+ffffffff8232ca68 d attr_above
+ffffffff8232ca88 d attr_below
+ffffffff8232caa8 d attr_default_status
+ffffffff8232cad0 d cpuidle_state_s2idle_attrs
+ffffffff8232cae8 d attr_s2idle_usage
+ffffffff8232cb08 d attr_s2idle_time
+ffffffff8232cb28 d menu_governor
+ffffffff8232cb70 d haltpoll_driver
+ffffffff8232cfb8 d dmi_devices
+ffffffff8232cfc8 d bin_attr_smbios_entry_point
+ffffffff8232d008 d bin_attr_DMI
+ffffffff8232d048 d dmi_class
+ffffffff8232d0e0 d sys_dmi_attribute_groups
+ffffffff8232d0f0 d sys_dmi_bios_vendor_attr
+ffffffff8232d118 d sys_dmi_bios_version_attr
+ffffffff8232d140 d sys_dmi_bios_date_attr
+ffffffff8232d168 d sys_dmi_bios_release_attr
+ffffffff8232d190 d sys_dmi_ec_firmware_release_attr
+ffffffff8232d1b8 d sys_dmi_sys_vendor_attr
+ffffffff8232d1e0 d sys_dmi_product_name_attr
+ffffffff8232d208 d sys_dmi_product_version_attr
+ffffffff8232d230 d sys_dmi_product_serial_attr
+ffffffff8232d258 d sys_dmi_product_uuid_attr
+ffffffff8232d280 d sys_dmi_product_family_attr
+ffffffff8232d2a8 d sys_dmi_product_sku_attr
+ffffffff8232d2d0 d sys_dmi_board_vendor_attr
+ffffffff8232d2f8 d sys_dmi_board_name_attr
+ffffffff8232d320 d sys_dmi_board_version_attr
+ffffffff8232d348 d sys_dmi_board_serial_attr
+ffffffff8232d370 d sys_dmi_board_asset_tag_attr
+ffffffff8232d398 d sys_dmi_chassis_vendor_attr
+ffffffff8232d3c0 d sys_dmi_chassis_type_attr
+ffffffff8232d3e8 d sys_dmi_chassis_version_attr
+ffffffff8232d410 d sys_dmi_chassis_serial_attr
+ffffffff8232d438 d sys_dmi_chassis_asset_tag_attr
+ffffffff8232d460 d sys_dmi_modalias_attr
+ffffffff8232d480 d sys_dmi_attribute_group
+ffffffff8232d4a8 d map_entries
+ffffffff8232d4b8 d map_entries_bootmem
+ffffffff8232d4d0 d def_groups
+ffffffff8232d4e0 d def_groups
+ffffffff8232d4f0 d def_attrs
+ffffffff8232d510 d def_attrs
+ffffffff8232d540 d memmap_start_attr
+ffffffff8232d558 d memmap_end_attr
+ffffffff8232d570 d memmap_type_attr
+ffffffff8232d588 d efi_mm
+ffffffff8232d9d0 d efi_subsys_attrs
+ffffffff8232da00 d efi_attr_systab
+ffffffff8232da20 d efi_attr_fw_platform_size
+ffffffff8232da40 d efivars_lock
+ffffffff8232da58 d efi_reboot_quirk_mode
+ffffffff8232da60 d esrt_attrs
+ffffffff8232da80 d esrt_fw_resource_count
+ffffffff8232daa0 d esrt_fw_resource_count_max
+ffffffff8232dac0 d esrt_fw_resource_version
+ffffffff8232dae0 d esre1_ktype
+ffffffff8232db30 d entry_list
+ffffffff8232db40 d esre1_groups
+ffffffff8232db50 d esre1_attrs
+ffffffff8232db90 d esre_fw_class
+ffffffff8232dbb0 d esre_fw_type
+ffffffff8232dbd0 d esre_fw_version
+ffffffff8232dbf0 d esre_lowest_supported_fw_version
+ffffffff8232dc10 d esre_capsule_flags
+ffffffff8232dc30 d esre_last_attempt_version
+ffffffff8232dc50 d esre_last_attempt_status
+ffffffff8232dc70 d map_type_attr
+ffffffff8232dc88 d map_phys_addr_attr
+ffffffff8232dca0 d map_virt_addr_attr
+ffffffff8232dcb8 d map_num_pages_attr
+ffffffff8232dcd0 d map_attribute_attr
+ffffffff8232dce8 d efi_call_virt_check_flags._rs
+ffffffff8232dd10 d efi_runtime_lock
+ffffffff8232dd28 d clocksource_acpi_pm
+ffffffff8232de00 d i8253_clockevent
+ffffffff8232df00 d aliases_lookup
+ffffffff8232df10 d of_mutex
+ffffffff8232df40 d of_node_ktype
+ffffffff8232df90 d of_busses
+ffffffff8232e050 d con_mutex
+ffffffff8232e080 d mbox_cons
+ffffffff8232e090 d pcc_mbox_driver
+ffffffff8232e180 d __SCK__tp_func_mc_event
+ffffffff8232e190 d __SCK__tp_func_arm_event
+ffffffff8232e1a0 d __SCK__tp_func_non_standard_event
+ffffffff8232e1b0 d __SCK__tp_func_aer_event
+ffffffff8232e1c0 d trace_event_fields_mc_event
+ffffffff8232e3c8 d trace_event_type_funcs_mc_event
+ffffffff8232e3f0 d print_fmt_mc_event
+ffffffff8232e5a8 d event_mc_event
+ffffffff8232e640 d trace_event_fields_arm_event
+ffffffff8232e730 d trace_event_type_funcs_arm_event
+ffffffff8232e750 d print_fmt_arm_event
+ffffffff8232e7f8 d event_arm_event
+ffffffff8232e890 d trace_event_fields_non_standard_event
+ffffffff8232e9a8 d trace_event_type_funcs_non_standard_event
+ffffffff8232e9d0 d print_fmt_non_standard_event
+ffffffff8232ea90 d event_non_standard_event
+ffffffff8232eb20 d trace_event_fields_aer_event
+ffffffff8232ec10 d trace_event_type_funcs_aer_event
+ffffffff8232ec30 d print_fmt_aer_event
+ffffffff8232f100 d event_aer_event
+ffffffff8232f190 d nvmem_notifier
+ffffffff8232f1d8 d nvmem_ida
+ffffffff8232f1e8 d nvmem_bus_type
+ffffffff8232f2c0 d nvmem_dev_groups
+ffffffff8232f2d0 d nvmem_cell_mutex
+ffffffff8232f300 d nvmem_cell_tables
+ffffffff8232f310 d nvmem_lookup_mutex
+ffffffff8232f340 d nvmem_lookup_list
+ffffffff8232f350 d nvmem_attrs
+ffffffff8232f360 d nvmem_bin_attributes
+ffffffff8232f370 d bin_attr_rw_nvmem
+ffffffff8232f3b0 d bin_attr_nvmem_eeprom_compat
+ffffffff8232f3f0 d nvmem_mutex
+ffffffff8232f420 d br_ioctl_mutex
+ffffffff8232f450 d vlan_ioctl_mutex
+ffffffff8232f480 d sock_fs_type
+ffffffff8232f4d0 d sockfs_xattr_handlers
+ffffffff8232f4e8 d proto_list_mutex
+ffffffff8232f518 d proto_list
+ffffffff8232f528 d net_inuse_ops
+ffffffff8232f568 d net_rwsem
+ffffffff8232f5a8 d first_device.llvm.9729805271779603795
+ffffffff8232f5b0 d pernet_list
+ffffffff8232f5c0 d net_defaults_ops
+ffffffff8232f600 d max_gen_ptrs
+ffffffff8232f640 d net_cookie
+ffffffff8232f6c0 d net_generic_ids
+ffffffff8232f6d0 d net_namespace_list
+ffffffff8232f6e0 d pernet_ops_rwsem
+ffffffff8232f720 d ts_secret_init.___once_key
+ffffffff8232f730 d net_secret_init.___once_key
+ffffffff8232f740 d __flow_hash_secret_init.___once_key
+ffffffff8232f750 d net_core_table
+ffffffff8232fed0 d min_sndbuf
+ffffffff8232fed4 d min_rcvbuf
+ffffffff8232fed8 d max_skb_frags
+ffffffff8232fedc d int_3600
+ffffffff8232fee0 d proc_do_dev_weight.dev_weight_mutex
+ffffffff8232ff10 d rps_sock_flow_sysctl.sock_flow_mutex
+ffffffff8232ff40 d flow_limit_update_mutex
+ffffffff8232ff70 d netns_core_table
+ffffffff82330030 d devnet_rename_sem
+ffffffff82330070 d ifalias_mutex
+ffffffff823300a0 d netstamp_work
+ffffffff823300d0 d xps_map_mutex
+ffffffff82330100 d dev_addr_sem.llvm.1021418273301669317
+ffffffff82330140 d napi_gen_id
+ffffffff82330148 d net_todo_list
+ffffffff82330158 d netdev_unregistering_wq
+ffffffff82330170 d dst_alloc._rs
+ffffffff823301c0 d dst_blackhole_ops
+ffffffff82330280 d unres_qlen_max
+ffffffff82330288 d rtnl_mutex.llvm.4300115734004119168
+ffffffff823302b8 d link_ops
+ffffffff823302c8 d rtnl_af_ops
+ffffffff823302d8 d rtnetlink_net_ops
+ffffffff82330318 d rtnetlink_dev_notifier
+ffffffff82330330 d net_ratelimit_state
+ffffffff82330358 d lweventlist
+ffffffff82330368 d linkwatch_work
+ffffffff823303f0 d nf_conn_btf_access_lock
+ffffffff82330440 d sock_cookie
+ffffffff823304c0 d sock_diag_table_mutex.llvm.12304338072109932202
+ffffffff823304f0 d diag_net_ops
+ffffffff82330530 d sock_diag_mutex
+ffffffff82330560 d reuseport_ida
+ffffffff82330570 d fib_notifier_net_ops
+ffffffff823305b0 d mem_id_lock
+ffffffff823305e0 d mem_id_pool
+ffffffff823305f0 d mem_id_next
+ffffffff823305f8 d flow_indr_block_lock
+ffffffff82330628 d flow_block_indr_dev_list
+ffffffff82330638 d flow_block_indr_list
+ffffffff82330648 d flow_indir_dev_list
+ffffffff82330660 d rx_queue_default_groups
+ffffffff82330670 d store_rps_map.rps_map_mutex
+ffffffff823306a0 d netdev_queue_default_groups
+ffffffff823306b0 d net_class_groups
+ffffffff823306c0 d dev_attr_netdev_group
+ffffffff823306e0 d dev_attr_dev_id
+ffffffff82330700 d dev_attr_dev_port
+ffffffff82330720 d dev_attr_iflink
+ffffffff82330740 d dev_attr_ifindex
+ffffffff82330760 d dev_attr_name_assign_type
+ffffffff82330780 d dev_attr_addr_assign_type
+ffffffff823307a0 d dev_attr_addr_len
+ffffffff823307c0 d dev_attr_link_mode
+ffffffff823307e0 d dev_attr_address
+ffffffff82330800 d dev_attr_broadcast
+ffffffff82330820 d dev_attr_speed
+ffffffff82330840 d dev_attr_duplex
+ffffffff82330860 d dev_attr_dormant
+ffffffff82330880 d dev_attr_testing
+ffffffff823308a0 d dev_attr_operstate
+ffffffff823308c0 d dev_attr_carrier_changes
+ffffffff823308e0 d dev_attr_ifalias
+ffffffff82330900 d dev_attr_carrier
+ffffffff82330920 d dev_attr_mtu
+ffffffff82330940 d dev_attr_tx_queue_len
+ffffffff82330960 d dev_attr_gro_flush_timeout
+ffffffff82330980 d dev_attr_napi_defer_hard_irqs
+ffffffff823309a0 d dev_attr_phys_port_id
+ffffffff823309c0 d dev_attr_phys_port_name
+ffffffff823309e0 d dev_attr_phys_switch_id
+ffffffff82330a00 d dev_attr_proto_down
+ffffffff82330a20 d dev_attr_carrier_up_count
+ffffffff82330a40 d dev_attr_carrier_down_count
+ffffffff82330a60 d dev_attr_threaded
+ffffffff82330a80 d dev_attr_rx_packets
+ffffffff82330aa0 d dev_attr_tx_packets
+ffffffff82330ac0 d dev_attr_rx_bytes
+ffffffff82330ae0 d dev_attr_tx_bytes
+ffffffff82330b00 d dev_attr_rx_errors
+ffffffff82330b20 d dev_attr_tx_errors
+ffffffff82330b40 d dev_attr_rx_dropped
+ffffffff82330b60 d dev_attr_tx_dropped
+ffffffff82330b80 d dev_attr_multicast
+ffffffff82330ba0 d dev_attr_collisions
+ffffffff82330bc0 d dev_attr_rx_length_errors
+ffffffff82330be0 d dev_attr_rx_over_errors
+ffffffff82330c00 d dev_attr_rx_crc_errors
+ffffffff82330c20 d dev_attr_rx_frame_errors
+ffffffff82330c40 d dev_attr_rx_fifo_errors
+ffffffff82330c60 d dev_attr_rx_missed_errors
+ffffffff82330c80 d dev_attr_tx_aborted_errors
+ffffffff82330ca0 d dev_attr_tx_carrier_errors
+ffffffff82330cc0 d dev_attr_tx_fifo_errors
+ffffffff82330ce0 d dev_attr_tx_heartbeat_errors
+ffffffff82330d00 d dev_attr_tx_window_errors
+ffffffff82330d20 d dev_attr_rx_compressed
+ffffffff82330d40 d dev_attr_tx_compressed
+ffffffff82330d60 d dev_attr_rx_nohandler
+ffffffff82330d80 d fib_rules_net_ops
+ffffffff82330dc0 d fib_rules_notifier
+ffffffff82330dd8 d __SCK__tp_func_kfree_skb
+ffffffff82330de8 d __SCK__tp_func_consume_skb
+ffffffff82330df8 d __SCK__tp_func_skb_copy_datagram_iovec
+ffffffff82330e10 d trace_event_fields_kfree_skb
+ffffffff82330ed8 d trace_event_type_funcs_kfree_skb
+ffffffff82330f00 d print_fmt_kfree_skb
+ffffffff82331c20 d event_kfree_skb
+ffffffff82331cb0 d trace_event_fields_consume_skb
+ffffffff82331d00 d trace_event_type_funcs_consume_skb
+ffffffff82331d20 d print_fmt_consume_skb
+ffffffff82331d40 d event_consume_skb
+ffffffff82331dd0 d trace_event_fields_skb_copy_datagram_iovec
+ffffffff82331e48 d trace_event_type_funcs_skb_copy_datagram_iovec
+ffffffff82331e70 d print_fmt_skb_copy_datagram_iovec
+ffffffff82331ea0 d event_skb_copy_datagram_iovec
+ffffffff82331f30 d __SCK__tp_func_net_dev_start_xmit
+ffffffff82331f40 d __SCK__tp_func_net_dev_xmit
+ffffffff82331f50 d __SCK__tp_func_net_dev_xmit_timeout
+ffffffff82331f60 d __SCK__tp_func_net_dev_queue
+ffffffff82331f70 d __SCK__tp_func_netif_receive_skb
+ffffffff82331f80 d __SCK__tp_func_netif_rx
+ffffffff82331f90 d __SCK__tp_func_napi_gro_frags_entry
+ffffffff82331fa0 d __SCK__tp_func_napi_gro_receive_entry
+ffffffff82331fb0 d __SCK__tp_func_netif_receive_skb_entry
+ffffffff82331fc0 d __SCK__tp_func_netif_receive_skb_list_entry
+ffffffff82331fd0 d __SCK__tp_func_netif_rx_entry
+ffffffff82331fe0 d __SCK__tp_func_napi_gro_frags_exit
+ffffffff82331ff0 d __SCK__tp_func_napi_gro_receive_exit
+ffffffff82332000 d __SCK__tp_func_netif_receive_skb_exit
+ffffffff82332010 d __SCK__tp_func_netif_rx_exit
+ffffffff82332020 d __SCK__tp_func_netif_receive_skb_list_exit
+ffffffff82332030 d trace_event_fields_net_dev_start_xmit
+ffffffff82332300 d trace_event_type_funcs_net_dev_start_xmit
+ffffffff82332320 d print_fmt_net_dev_start_xmit
+ffffffff82332540 d event_net_dev_start_xmit
+ffffffff823325d0 d trace_event_fields_net_dev_xmit
+ffffffff82332698 d trace_event_type_funcs_net_dev_xmit
+ffffffff823326c0 d print_fmt_net_dev_xmit
+ffffffff82332718 d event_net_dev_xmit
+ffffffff823327b0 d trace_event_fields_net_dev_xmit_timeout
+ffffffff82332850 d trace_event_type_funcs_net_dev_xmit_timeout
+ffffffff82332870 d print_fmt_net_dev_xmit_timeout
+ffffffff823328c8 d event_net_dev_xmit_timeout
+ffffffff82332960 d trace_event_fields_net_dev_template
+ffffffff82332a00 d trace_event_type_funcs_net_dev_template
+ffffffff82332a20 d print_fmt_net_dev_template
+ffffffff82332a68 d event_net_dev_queue
+ffffffff82332af8 d event_netif_receive_skb
+ffffffff82332b88 d event_netif_rx
+ffffffff82332c20 d trace_event_fields_net_dev_rx_verbose_template
+ffffffff82332f40 d trace_event_type_funcs_net_dev_rx_verbose_template
+ffffffff82332f60 d print_fmt_net_dev_rx_verbose_template
+ffffffff82333188 d event_napi_gro_frags_entry
+ffffffff82333218 d event_napi_gro_receive_entry
+ffffffff823332a8 d event_netif_receive_skb_entry
+ffffffff82333338 d event_netif_receive_skb_list_entry
+ffffffff823333c8 d event_netif_rx_entry
+ffffffff82333460 d trace_event_fields_net_dev_rx_exit_template
+ffffffff823334b0 d trace_event_type_funcs_net_dev_rx_exit_template
+ffffffff823334d0 d print_fmt_net_dev_rx_exit_template
+ffffffff823334e8 d event_napi_gro_frags_exit
+ffffffff82333578 d event_napi_gro_receive_exit
+ffffffff82333608 d event_netif_receive_skb_exit
+ffffffff82333698 d event_netif_rx_exit
+ffffffff82333728 d event_netif_receive_skb_list_exit
+ffffffff823337b8 d __SCK__tp_func_napi_poll
+ffffffff823337d0 d trace_event_fields_napi_poll
+ffffffff82333898 d trace_event_type_funcs_napi_poll
+ffffffff823338c0 d print_fmt_napi_poll
+ffffffff82333938 d event_napi_poll
+ffffffff823339c8 d __SCK__tp_func_sock_rcvqueue_full
+ffffffff823339d8 d __SCK__tp_func_sock_exceed_buf_limit
+ffffffff823339e8 d __SCK__tp_func_inet_sock_set_state
+ffffffff823339f8 d __SCK__tp_func_inet_sk_error_report
+ffffffff82333a10 d trace_event_fields_sock_rcvqueue_full
+ffffffff82333ab0 d trace_event_type_funcs_sock_rcvqueue_full
+ffffffff82333ad0 d print_fmt_sock_rcvqueue_full
+ffffffff82333b30 d event_sock_rcvqueue_full
+ffffffff82333bc0 d trace_event_fields_sock_exceed_buf_limit
+ffffffff82333d50 d trace_event_type_funcs_sock_exceed_buf_limit
+ffffffff82333d70 d print_fmt_sock_exceed_buf_limit
+ffffffff82333ef0 d event_sock_exceed_buf_limit
+ffffffff82333f80 d trace_event_fields_inet_sock_set_state
+ffffffff82334160 d trace_event_type_funcs_inet_sock_set_state
+ffffffff82334180 d print_fmt_inet_sock_set_state
+ffffffff823346c0 d event_inet_sock_set_state
+ffffffff82334750 d trace_event_fields_inet_sk_error_report
+ffffffff823348e0 d trace_event_type_funcs_inet_sk_error_report
+ffffffff82334900 d print_fmt_inet_sk_error_report
+ffffffff82334ab0 d event_inet_sk_error_report
+ffffffff82334b40 d __SCK__tp_func_udp_fail_queue_rcv_skb
+ffffffff82334b50 d trace_event_fields_udp_fail_queue_rcv_skb
+ffffffff82334bc8 d trace_event_type_funcs_udp_fail_queue_rcv_skb
+ffffffff82334bf0 d print_fmt_udp_fail_queue_rcv_skb
+ffffffff82334c18 d event_udp_fail_queue_rcv_skb
+ffffffff82334ca8 d __SCK__tp_func_tcp_retransmit_skb
+ffffffff82334cb8 d __SCK__tp_func_tcp_send_reset
+ffffffff82334cc8 d __SCK__tp_func_tcp_receive_reset
+ffffffff82334cd8 d __SCK__tp_func_tcp_destroy_sock
+ffffffff82334ce8 d __SCK__tp_func_tcp_rcv_space_adjust
+ffffffff82334cf8 d __SCK__tp_func_tcp_retransmit_synack
+ffffffff82334d08 d __SCK__tp_func_tcp_probe
+ffffffff82334d18 d __SCK__tp_func_tcp_bad_csum
+ffffffff82334d28 d __SCK__tp_func_tcp_cong_state_set
+ffffffff82334d40 d trace_event_fields_tcp_event_sk_skb
+ffffffff82334ef8 d trace_event_type_funcs_tcp_event_sk_skb
+ffffffff82334f20 d print_fmt_tcp_event_sk_skb
+ffffffff823351d0 d event_tcp_retransmit_skb
+ffffffff82335260 d event_tcp_send_reset
+ffffffff823352f0 d trace_event_fields_tcp_event_sk
+ffffffff82335480 d trace_event_type_funcs_tcp_event_sk
+ffffffff823354a0 d print_fmt_tcp_event_sk
+ffffffff823355a8 d event_tcp_receive_reset
+ffffffff82335638 d event_tcp_destroy_sock
+ffffffff823356c8 d event_tcp_rcv_space_adjust
+ffffffff82335760 d trace_event_fields_tcp_retransmit_synack
+ffffffff823358f0 d trace_event_type_funcs_tcp_retransmit_synack
+ffffffff82335910 d print_fmt_tcp_retransmit_synack
+ffffffff823359f8 d event_tcp_retransmit_synack
+ffffffff82335a90 d trace_event_fields_tcp_probe
+ffffffff82335d10 d trace_event_type_funcs_tcp_probe
+ffffffff82335d30 d print_fmt_tcp_probe
+ffffffff82335eb8 d event_tcp_probe
+ffffffff82335f50 d trace_event_fields_tcp_event_skb
+ffffffff82335ff0 d trace_event_type_funcs_tcp_event_skb
+ffffffff82336010 d print_fmt_tcp_event_skb
+ffffffff82336048 d event_tcp_bad_csum
+ffffffff823360e0 d trace_event_fields_tcp_cong_state_set
+ffffffff82336248 d trace_event_type_funcs_tcp_cong_state_set
+ffffffff82336270 d print_fmt_tcp_cong_state_set
+ffffffff82336328 d event_tcp_cong_state_set
+ffffffff823363b8 d __SCK__tp_func_fib_table_lookup
+ffffffff823363d0 d trace_event_fields_fib_table_lookup
+ffffffff82336650 d trace_event_type_funcs_fib_table_lookup
+ffffffff82336670 d print_fmt_fib_table_lookup
+ffffffff82336788 d event_fib_table_lookup
+ffffffff82336818 d __SCK__tp_func_qdisc_dequeue
+ffffffff82336828 d __SCK__tp_func_qdisc_enqueue
+ffffffff82336838 d __SCK__tp_func_qdisc_reset
+ffffffff82336848 d __SCK__tp_func_qdisc_destroy
+ffffffff82336858 d __SCK__tp_func_qdisc_create
+ffffffff82336870 d trace_event_fields_qdisc_dequeue
+ffffffff823369d8 d trace_event_type_funcs_qdisc_dequeue
+ffffffff82336a00 d print_fmt_qdisc_dequeue
+ffffffff82336ab0 d event_qdisc_dequeue
+ffffffff82336b40 d trace_event_fields_qdisc_enqueue
+ffffffff82336c58 d trace_event_type_funcs_qdisc_enqueue
+ffffffff82336c80 d print_fmt_qdisc_enqueue
+ffffffff82336cf8 d event_qdisc_enqueue
+ffffffff82336d90 d trace_event_fields_qdisc_reset
+ffffffff82336e58 d trace_event_type_funcs_qdisc_reset
+ffffffff82336e80 d print_fmt_qdisc_reset
+ffffffff82336f58 d event_qdisc_reset
+ffffffff82336ff0 d trace_event_fields_qdisc_destroy
+ffffffff823370b8 d trace_event_type_funcs_qdisc_destroy
+ffffffff823370e0 d print_fmt_qdisc_destroy
+ffffffff823371b8 d event_qdisc_destroy
+ffffffff82337250 d trace_event_fields_qdisc_create
+ffffffff823372f0 d trace_event_type_funcs_qdisc_create
+ffffffff82337310 d print_fmt_qdisc_create
+ffffffff82337398 d event_qdisc_create
+ffffffff82337428 d __SCK__tp_func_br_fdb_add
+ffffffff82337438 d __SCK__tp_func_br_fdb_external_learn_add
+ffffffff82337448 d __SCK__tp_func_fdb_delete
+ffffffff82337458 d __SCK__tp_func_br_fdb_update
+ffffffff82337470 d trace_event_fields_br_fdb_add
+ffffffff82337560 d trace_event_type_funcs_br_fdb_add
+ffffffff82337580 d print_fmt_br_fdb_add
+ffffffff82337660 d event_br_fdb_add
+ffffffff823376f0 d trace_event_fields_br_fdb_external_learn_add
+ffffffff823377b8 d trace_event_type_funcs_br_fdb_external_learn_add
+ffffffff823377e0 d print_fmt_br_fdb_external_learn_add
+ffffffff823378a0 d event_br_fdb_external_learn_add
+ffffffff82337930 d trace_event_fields_fdb_delete
+ffffffff823379f8 d trace_event_type_funcs_fdb_delete
+ffffffff82337a20 d print_fmt_fdb_delete
+ffffffff82337ae0 d event_fdb_delete
+ffffffff82337b70 d trace_event_fields_br_fdb_update
+ffffffff82337c60 d trace_event_type_funcs_br_fdb_update
+ffffffff82337c80 d print_fmt_br_fdb_update
+ffffffff82337d60 d event_br_fdb_update
+ffffffff82337df0 d __SCK__tp_func_neigh_create
+ffffffff82337e00 d __SCK__tp_func_neigh_update
+ffffffff82337e10 d __SCK__tp_func_neigh_update_done
+ffffffff82337e20 d __SCK__tp_func_neigh_timer_handler
+ffffffff82337e30 d __SCK__tp_func_neigh_event_send_done
+ffffffff82337e40 d __SCK__tp_func_neigh_event_send_dead
+ffffffff82337e50 d __SCK__tp_func_neigh_cleanup_and_release
+ffffffff82337e60 d trace_event_fields_neigh_create
+ffffffff82337fa0 d trace_event_type_funcs_neigh_create
+ffffffff82337fc0 d print_fmt_neigh_create
+ffffffff82338090 d event_neigh_create
+ffffffff82338120 d trace_event_fields_neigh_update
+ffffffff82338418 d trace_event_type_funcs_neigh_update
+ffffffff82338440 d print_fmt_neigh_update
+ffffffff823387b8 d event_neigh_update
+ffffffff82338850 d trace_event_fields_neigh__update
+ffffffff82338ad0 d trace_event_type_funcs_neigh__update
+ffffffff82338af0 d print_fmt_neigh__update
+ffffffff82338d30 d event_neigh_update_done
+ffffffff82338dc0 d event_neigh_timer_handler
+ffffffff82338e50 d event_neigh_event_send_done
+ffffffff82338ee0 d event_neigh_event_send_dead
+ffffffff82338f70 d event_neigh_cleanup_and_release
+ffffffff82339000 d ss_files
+ffffffff82339288 d net_prio_cgrp_subsys
+ffffffff82339378 d netprio_device_notifier
+ffffffff82339390 d default_qdisc_ops
+ffffffff823393c0 d noop_netdev_queue
+ffffffff82339580 d noop_qdisc
+ffffffff82339700 d sch_frag_dst_ops
+ffffffff823397c0 d __SCK__tp_func_netlink_extack
+ffffffff823397d0 d trace_event_fields_netlink_extack
+ffffffff82339820 d trace_event_type_funcs_netlink_extack
+ffffffff82339840 d print_fmt_netlink_extack
+ffffffff82339860 d event_netlink_extack
+ffffffff823398f0 d nl_table_wait.llvm.3615483888222845873
+ffffffff82339908 d netlink_chain
+ffffffff82339950 d netlink_proto
+ffffffff82339b00 d netlink_tap_net_ops
+ffffffff82339b40 d genl_mutex
+ffffffff82339b70 d genl_fam_idr
+ffffffff82339b88 d cb_lock
+ffffffff82339bd0 d genl_policy_reject_all
+ffffffff82339bf0 d mc_groups_longs
+ffffffff82339bf8 d mc_groups
+ffffffff82339c00 d mc_group_start
+ffffffff82339c08 d genl_pernet_ops
+ffffffff82339c48 d genl_sk_destructing_waitq
+ffffffff82339c60 d netdev_rss_key_fill.___once_key
+ffffffff82339c70 d ethnl_netdev_notifier
+ffffffff82339cc0 d ipv4_dst_ops
+ffffffff82339d80 d ipv4_dst_blackhole_ops
+ffffffff82339e40 d ipv4_route_table.llvm.7632681561677256914
+ffffffff8233a180 d fnhe_hashfun.___once_key
+ffffffff8233a190 d ipv4_route_netns_table
+ffffffff8233a2d0 d ip4_frags_ops
+ffffffff8233a310 d ip4_frags_ctl_table
+ffffffff8233a390 d ip4_frags_ns_ctl_table
+ffffffff8233a4d0 d __inet_hash_connect.___once_key
+ffffffff8233a4e0 d inet_ehashfn.___once_key
+ffffffff8233a4f0 d tcp4_net_ops.llvm.3966033566977201281
+ffffffff8233a530 d tcp_timewait_sock_ops
+ffffffff8233a558 d tcp_prot
+ffffffff8233a708 d tcp4_seq_afinfo
+ffffffff8233a710 d tcp_cong_list
+ffffffff8233a740 d tcp_reno
+ffffffff8233a800 d tcp_ulp_list
+ffffffff8233a810 d raw_prot
+ffffffff8233a9c0 d udp_prot
+ffffffff8233ab70 d udp4_net_ops.llvm.8606795124249973464
+ffffffff8233abb0 d udp_flow_hashrnd.___once_key
+ffffffff8233abc0 d udp_ehashfn.___once_key
+ffffffff8233abd0 d udp4_seq_afinfo
+ffffffff8233abe0 d udplite_prot
+ffffffff8233ad90 d udplite4_protosw
+ffffffff8233adc0 d udplite4_net_ops
+ffffffff8233ae00 d udplite4_seq_afinfo
+ffffffff8233ae10 d arp_net_ops
+ffffffff8233ae50 d arp_netdev_notifier
+ffffffff8233ae68 d arp_tbl
+ffffffff8233b138 d inetaddr_chain.llvm.2940183447538559241
+ffffffff8233b180 d inetaddr_validator_chain
+ffffffff8233b1c8 d ip_netdev_notifier
+ffffffff8233b1e0 d check_lifetime_work
+ffffffff8233b268 d ipv4_devconf
+ffffffff8233b300 d ipv4_devconf_dflt
+ffffffff8233b3a0 d ctl_forward_entry
+ffffffff8233b420 d devinet_sysctl
+ffffffff8233bcb0 d inetsw_array
+ffffffff8233bd70 d igmp_net_ops
+ffffffff8233bdb0 d igmp_notifier
+ffffffff8233bdc8 d fib_net_ops
+ffffffff8233be08 d fib_netdev_notifier
+ffffffff8233be20 d fib_inetaddr_notifier
+ffffffff8233be38 d sysctl_fib_sync_mem
+ffffffff8233be3c d sysctl_fib_sync_mem_min
+ffffffff8233be40 d sysctl_fib_sync_mem_max
+ffffffff8233be48 d fqdir_free_work
+ffffffff8233be78 d ping_prot
+ffffffff8233c028 d ping_v4_net_ops.llvm.11943150587373463788
+ffffffff8233c068 d nexthop_net_ops
+ffffffff8233c0a8 d nh_netdev_notifier
+ffffffff8233c0c0 d nh_res_bucket_migrate._rs
+ffffffff8233c0f0 d ipv4_table
+ffffffff8233c3f0 d ipv4_net_table
+ffffffff8233dcf0 d ip_ttl_min
+ffffffff8233dcf4 d ip_ttl_max
+ffffffff8233dcf8 d tcp_min_snd_mss_min
+ffffffff8233dcfc d tcp_min_snd_mss_max
+ffffffff8233dd00 d u32_max_div_HZ
+ffffffff8233dd04 d tcp_syn_retries_min
+ffffffff8233dd08 d tcp_syn_retries_max
+ffffffff8233dd0c d tcp_retr1_max
+ffffffff8233dd10 d tcp_app_win_max
+ffffffff8233dd14 d tcp_adv_win_scale_min
+ffffffff8233dd18 d tcp_adv_win_scale_max
+ffffffff8233dd1c d one_day_secs
+ffffffff8233dd20 d tcp_child_ehash_entries_max
+ffffffff8233dd24 d ip_ping_group_range_max
+ffffffff8233dd2c d ip_local_port_range_min
+ffffffff8233dd34 d ip_local_port_range_max
+ffffffff8233dd40 d set_local_port_range._rs
+ffffffff8233dd68 d ip_privileged_port_max
+ffffffff8233dd6c d log_ecn_error
+ffffffff8233dd6d d log_ecn_error
+ffffffff8233dd6e d log_ecn_error
+ffffffff8233dd6f d log_ecn_error
+ffffffff8233dd70 d log_ecn_error
+ffffffff8233dd78 d ipip_net_ops
+ffffffff8233ddb8 d ipgre_tap_net_ops
+ffffffff8233ddf8 d ipgre_net_ops
+ffffffff8233de38 d erspan_net_ops
+ffffffff8233de78 d vti_net_ops
+ffffffff8233deb8 d esp4_protocol
+ffffffff8233dee8 d tunnel4_mutex
+ffffffff8233df18 d inet_diag_table_mutex
+ffffffff8233df80 d xfrm4_dst_ops_template
+ffffffff8233e040 d xfrm4_policy_table
+ffffffff8233e0c0 d xfrm4_state_afinfo.llvm.7022140398901533173
+ffffffff8233e120 d xfrm4_protocol_mutex
+ffffffff8233e150 d hash_resize_mutex
+ffffffff8233e180 d xfrm_state_gc_work.llvm.16903622493477125495
+ffffffff8233e1b0 d xfrm_km_list
+ffffffff8233e1c0 d xfrm_table
+ffffffff8233e300 d xfrm_dev_notifier.llvm.4625550635777634670
+ffffffff8233e320 d aead_list
+ffffffff8233e4a0 d aalg_list.llvm.15276888344029137128
+ffffffff8233e680 d ealg_list.llvm.15276888344029137128
+ffffffff8233e890 d calg_list
+ffffffff8233e920 d netlink_mgr
+ffffffff8233e970 d xfrm_user_net_ops
+ffffffff8233e9b0 d ipcomp_resource_mutex
+ffffffff8233e9e0 d ipcomp_tfms_list
+ffffffff8233e9f0 d xfrmi_net_ops
+ffffffff8233ea30 d unix_dgram_proto
+ffffffff8233ebe0 d unix_stream_proto
+ffffffff8233ed90 d unix_net_ops
+ffffffff8233edd0 d unix_gc_wait
+ffffffff8233ede8 d gc_candidates
+ffffffff8233ee00 d unix_table
+ffffffff8233ee80 d gc_inflight_list
+ffffffff8233ee90 d inet6_net_ops
+ffffffff8233eed0 d ipv6_defaults
+ffffffff8233eed8 d if6_proc_net_ops.llvm.17032380467912426127
+ffffffff8233ef18 d addrconf_ops
+ffffffff8233ef58 d ipv6_dev_notf
+ffffffff8233ef70 d minus_one
+ffffffff8233ef74 d ioam6_if_id_max
+ffffffff8233ef78 d ipv6_addr_label_ops.llvm.10394165773057423806
+ffffffff8233efb8 d .compoundliteral.3
+ffffffff8233efc8 d .compoundliteral.4
+ffffffff8233efd8 d .compoundliteral.5
+ffffffff8233efe8 d .compoundliteral.6
+ffffffff8233eff8 d .compoundliteral.7
+ffffffff8233f008 d .compoundliteral.8
+ffffffff8233f018 d __SCK__tp_func_fib6_table_lookup
+ffffffff8233f030 d trace_event_fields_fib6_table_lookup
+ffffffff8233f2b0 d trace_event_type_funcs_fib6_table_lookup
+ffffffff8233f2d0 d print_fmt_fib6_table_lookup
+ffffffff8233f3d8 d event_fib6_table_lookup
+ffffffff8233f480 d ip6_dst_blackhole_ops
+ffffffff8233f540 d ipv6_route_table_template
+ffffffff8233f840 d ip6_dst_ops_template
+ffffffff8233f900 d ipv6_inetpeer_ops
+ffffffff8233f940 d ip6_route_net_ops
+ffffffff8233f980 d ip6_route_net_late_ops
+ffffffff8233f9c0 d ip6_route_dev_notifier
+ffffffff8233f9d8 d rt6_exception_hash.___once_key
+ffffffff8233f9e8 d fib6_net_ops
+ffffffff8233fa28 d ndisc_net_ops.llvm.13916427064687477036
+ffffffff8233fa68 d ndisc_netdev_notifier.llvm.13916427064687477036
+ffffffff8233fa80 d nd_tbl
+ffffffff8233fd50 d udp6_seq_afinfo
+ffffffff8233fd60 d udpv6_protosw.llvm.6596198281680024860
+ffffffff8233fd90 d udp6_ehashfn.___once_key
+ffffffff8233fda0 d udp6_ehashfn.___once_key.5
+ffffffff8233fdb0 d udpv6_prot
+ffffffff8233ff60 d udplitev6_prot
+ffffffff82340110 d udplite6_protosw.llvm.4618968079149398189
+ffffffff82340140 d udplite6_net_ops.llvm.4618968079149398189
+ffffffff82340180 d udplite6_seq_afinfo
+ffffffff82340190 d rawv6_prot
+ffffffff82340340 d raw6_net_ops.llvm.16460711620932576953
+ffffffff82340380 d rawv6_protosw.llvm.16460711620932576953
+ffffffff823403b0 d ipv6_icmp_table_template
+ffffffff82340530 d igmp6_net_ops.llvm.17779412827458804697
+ffffffff82340570 d igmp6_netdev_notifier.llvm.17779412827458804697
+ffffffff82340588 d ip6_frags_ops
+ffffffff823405d0 d ip6_frags_ctl_table
+ffffffff82340650 d ip6_frags_ns_ctl_table
+ffffffff82340750 d tcp6_seq_afinfo
+ffffffff82340758 d tcp6_timewait_sock_ops
+ffffffff82340780 d tcpv6_protosw.llvm.5268515325539988706
+ffffffff823407b0 d tcpv6_net_ops.llvm.5268515325539988706
+ffffffff823407f0 d tcpv6_prot
+ffffffff823409a0 d pingv6_prot
+ffffffff82340b50 d ping_v6_net_ops
+ffffffff82340b90 d pingv6_protosw
+ffffffff82340bc0 d ipv6_flowlabel_exclusive
+ffffffff82340c60 d ip6_flowlabel_net_ops.llvm.1109775480230339803
+ffffffff82340ca0 d ip6_fl_gc_timer.llvm.1109775480230339803
+ffffffff82340cd8 d ip6_segments_ops
+ffffffff82340d18 d ioam6_net_ops
+ffffffff82340d60 d ipv6_rotable
+ffffffff82340e20 d ipv6_sysctl_net_ops
+ffffffff82340e60 d ipv6_table_template
+ffffffff823413a0 d auto_flowlabels_max
+ffffffff823413a4 d flowlabel_reflect_max
+ffffffff823413a8 d rt6_multipath_hash_fields_all_mask
+ffffffff823413ac d ioam6_id_max
+ffffffff823413b0 d ioam6_id_wide_max
+ffffffff823413b8 d xfrm6_net_ops.llvm.17827822419562766634
+ffffffff82341400 d xfrm6_dst_ops_template.llvm.17827822419562766634
+ffffffff823414c0 d xfrm6_policy_table
+ffffffff82341540 d xfrm6_state_afinfo.llvm.14425311643938128132
+ffffffff823415a0 d xfrm6_protocol_mutex
+ffffffff823415d0 d fib6_rules_net_ops.llvm.15761707410759053633
+ffffffff82341610 d ipv6_proc_ops.llvm.9175371501168389251
+ffffffff82341650 d esp6_protocol
+ffffffff82341680 d ipcomp6_protocol
+ffffffff823416b0 d xfrm6_tunnel_net_ops
+ffffffff823416f0 d tunnel6_mutex
+ffffffff82341720 d vti6_net_ops
+ffffffff82341760 d sit_net_ops
+ffffffff823417a0 d ip6_tnl_xmit_ctl._rs
+ffffffff823417c8 d ip6_tnl_xmit_ctl._rs.1
+ffffffff823417f0 d ip6_tnl_net_ops
+ffffffff82341830 d ip6gre_net_ops
+ffffffff82341870 d inet6addr_validator_chain.llvm.281655867137589782
+ffffffff823418b8 d inet6_ehashfn.___once_key
+ffffffff823418c8 d inet6_ehashfn.___once_key.2
+ffffffff823418d8 d fanout_mutex
+ffffffff82341908 d packet_proto
+ffffffff82341ab8 d packet_netdev_notifier
+ffffffff82341ad0 d packet_net_ops
+ffffffff82341b10 d fanout_list
+ffffffff82341b20 d pfkeyv2_mgr
+ffffffff82341b70 d pfkey_net_ops
+ffffffff82341bb0 d key_proto
+ffffffff82341d60 d gen_reqid.reqid
+ffffffff82341d68 d pfkey_mutex
+ffffffff82341d98 d sysctl_pernet_ops
+ffffffff82341dd8 d net_sysctl_root
+ffffffff82341e50 d vsock_device
+ffffffff82341ea0 d vsock_proto
+ffffffff82342050 d vsock_register_mutex
+ffffffff82342080 d virtio_vsock_driver
+ffffffff82342190 d virtio_transport
+ffffffff823422b0 d id_table
+ffffffff823422c0 d the_virtio_vsock_mutex
+ffffffff823422f0 d __SCK__tp_func_virtio_transport_alloc_pkt
+ffffffff82342300 d __SCK__tp_func_virtio_transport_recv_pkt
+ffffffff82342310 d trace_event_fields_virtio_transport_alloc_pkt
+ffffffff82342478 d trace_event_type_funcs_virtio_transport_alloc_pkt
+ffffffff823424a0 d print_fmt_virtio_transport_alloc_pkt
+ffffffff82342700 d event_virtio_transport_alloc_pkt
+ffffffff82342790 d trace_event_fields_virtio_transport_recv_pkt
+ffffffff82342948 d trace_event_type_funcs_virtio_transport_recv_pkt
+ffffffff82342970 d print_fmt_virtio_transport_recv_pkt
+ffffffff82342c00 d event_virtio_transport_recv_pkt
+ffffffff82342c90 d virtio_transport_max_vsock_pkt_buf_size
+ffffffff82342c98 d loopback_transport
+ffffffff82342db8 d pcibios_fwaddrmappings
+ffffffff82342dc8 d pci_mmcfg_list
+ffffffff82342dd8 d pci_mmcfg_lock
+ffffffff82342e08 d quirk_pcie_aspm_ops
+ffffffff82342e38 d pci_use_e820
+ffffffff82342e40 d acpi_pci_root_ops
+ffffffff82342e60 d pirq_penalty
+ffffffff82342ea0 d pcibios_irq_mask
+ffffffff82342ea8 d pcibios_enable_irq
+ffffffff82342eb0 d pcibios_disable_irq
+ffffffff82342eb8 d noioapicreroute
+ffffffff82342ec0 d pci_root_ops
+ffffffff82342ef0 d pci_probe
+ffffffff82342ef4 d pcibios_last_bus
+ffffffff82342ef8 d pci_root_infos
+ffffffff82342f08 d module_bug_list
+ffffffff82342f18 d klist_remove_waiters
+ffffffff82342f28 d dynamic_kobj_ktype
+ffffffff82342f78 d kset_ktype
+ffffffff82342fc8 d uevent_sock_mutex
+ffffffff82342ff8 d uevent_sock_list
+ffffffff82343008 d uevent_net_ops
+ffffffff82343048 d io_range_mutex
+ffffffff82343078 d io_range_list
+ffffffff82343088 d __SCK__tp_func_ma_op
+ffffffff82343098 d __SCK__tp_func_ma_read
+ffffffff823430a8 d __SCK__tp_func_ma_write
+ffffffff823430c0 d trace_event_fields_ma_op
+ffffffff823431d8 d trace_event_type_funcs_ma_op
+ffffffff82343200 d print_fmt_ma_op
+ffffffff823432b0 d event_ma_op
+ffffffff82343340 d trace_event_fields_ma_read
+ffffffff82343458 d trace_event_type_funcs_ma_read
+ffffffff82343480 d print_fmt_ma_read
+ffffffff82343530 d event_ma_read
+ffffffff823435c0 d trace_event_fields_ma_write
+ffffffff82343728 d trace_event_type_funcs_ma_write
+ffffffff82343750 d print_fmt_ma_write
+ffffffff82343840 d event_ma_write
+ffffffff823438d0 d fill_ptr_key_work
+ffffffff82343958 d get_regno._rs
+ffffffff82343980 d init_uts_ns
+ffffffff82343b40 D initial_code
+ffffffff82343b48 D initial_gs
+ffffffff82343b50 D initial_stack
+ffffffff82343b58 d event_class_initcall_level
+ffffffff82343ba0 d event_class_initcall_start
+ffffffff82343be8 d event_class_initcall_finish
+ffffffff82343c30 d event_class_emulate_vsyscall
+ffffffff82343c78 d event_class_x86_irq_vector
+ffffffff82343cc0 d event_class_vector_config
+ffffffff82343d08 d event_class_vector_mod
+ffffffff82343d50 d event_class_vector_reserve
+ffffffff82343d98 d event_class_vector_alloc
+ffffffff82343de0 d event_class_vector_alloc_managed
+ffffffff82343e28 d event_class_vector_activate
+ffffffff82343e70 d event_class_vector_teardown
+ffffffff82343eb8 d event_class_vector_setup
+ffffffff82343f00 d event_class_vector_free_moved
+ffffffff82343f48 d event_class_nmi_handler
+ffffffff82343f90 d e820_table_kexec
+ffffffff82343f98 d e820_table_firmware
+ffffffff82343fa0 d e820_table
+ffffffff82343fa8 d event_class_x86_fpu
+ffffffff82343ff0 d x86_cpu_to_apicid_early_ptr
+ffffffff82343ff8 d x86_bios_cpu_apicid_early_ptr
+ffffffff82344000 d x86_cpu_to_acpiid_early_ptr
+ffffffff82344008 d event_class_x86_exceptions
+ffffffff82344050 d event_class_task_newtask
+ffffffff82344098 d event_class_task_rename
+ffffffff823440e0 d event_class_cpuhp_enter
+ffffffff82344128 d event_class_cpuhp_multi_enter
+ffffffff82344170 d event_class_cpuhp_exit
+ffffffff823441b8 d event_class_irq_handler_entry
+ffffffff82344200 d event_class_irq_handler_exit
+ffffffff82344248 d event_class_softirq
+ffffffff82344290 d event_class_tasklet
+ffffffff823442d8 d event_class_signal_generate
+ffffffff82344320 d event_class_signal_deliver
+ffffffff82344368 d event_class_workqueue_queue_work
+ffffffff823443b0 d event_class_workqueue_activate_work
+ffffffff823443f8 d event_class_workqueue_execute_start
+ffffffff82344440 d event_class_workqueue_execute_end
+ffffffff82344488 d event_class_sched_kthread_stop
+ffffffff823444d0 d event_class_sched_kthread_stop_ret
+ffffffff82344518 d event_class_sched_kthread_work_queue_work
+ffffffff82344560 d event_class_sched_kthread_work_execute_start
+ffffffff823445a8 d event_class_sched_kthread_work_execute_end
+ffffffff823445f0 d event_class_sched_wakeup_template
+ffffffff82344638 d event_class_sched_switch
+ffffffff82344680 d event_class_sched_migrate_task
+ffffffff823446c8 d event_class_sched_process_template
+ffffffff82344710 d event_class_sched_process_wait
+ffffffff82344758 d event_class_sched_process_fork
+ffffffff823447a0 d event_class_sched_process_exec
+ffffffff823447e8 d event_class_sched_stat_template
+ffffffff82344830 d event_class_sched_blocked_reason
+ffffffff82344878 d event_class_sched_stat_runtime
+ffffffff823448c0 d event_class_sched_pi_setprio
+ffffffff82344908 d event_class_sched_process_hang
+ffffffff82344950 d event_class_sched_move_numa
+ffffffff82344998 d event_class_sched_numa_pair_template
+ffffffff823449e0 d event_class_sched_wake_idle_without_ipi
+ffffffff82344a28 d event_class_contention_begin
+ffffffff82344a70 d event_class_contention_end
+ffffffff82344ab8 d event_class_console
+ffffffff82344b00 d event_class_irq_matrix_global
+ffffffff82344b48 d event_class_irq_matrix_global_update
+ffffffff82344b90 d event_class_irq_matrix_cpu
+ffffffff82344bd8 d event_class_rcu_utilization
+ffffffff82344c20 d event_class_rcu_grace_period
+ffffffff82344c68 d event_class_rcu_future_grace_period
+ffffffff82344cb0 d event_class_rcu_grace_period_init
+ffffffff82344cf8 d event_class_rcu_exp_grace_period
+ffffffff82344d40 d event_class_rcu_exp_funnel_lock
+ffffffff82344d88 d event_class_rcu_nocb_wake
+ffffffff82344dd0 d event_class_rcu_preempt_task
+ffffffff82344e18 d event_class_rcu_unlock_preempted_task
+ffffffff82344e60 d event_class_rcu_quiescent_state_report
+ffffffff82344ea8 d event_class_rcu_fqs
+ffffffff82344ef0 d event_class_rcu_stall_warning
+ffffffff82344f38 d event_class_rcu_dyntick
+ffffffff82344f80 d event_class_rcu_callback
+ffffffff82344fc8 d event_class_rcu_segcb_stats
+ffffffff82345010 d event_class_rcu_kvfree_callback
+ffffffff82345058 d event_class_rcu_batch_start
+ffffffff823450a0 d event_class_rcu_invoke_callback
+ffffffff823450e8 d event_class_rcu_invoke_kvfree_callback
+ffffffff82345130 d event_class_rcu_invoke_kfree_bulk_callback
+ffffffff82345178 d event_class_rcu_batch_end
+ffffffff823451c0 d event_class_rcu_torture_read
+ffffffff82345208 d event_class_rcu_barrier
+ffffffff82345250 d event_class_swiotlb_bounced
+ffffffff82345298 d event_class_sys_enter
+ffffffff823452e0 d event_class_sys_exit
+ffffffff82345328 d event_class_module_load
+ffffffff82345370 d event_class_module_free
+ffffffff823453b8 d event_class_module_request
+ffffffff82345400 d event_class_timer_class
+ffffffff82345448 d event_class_timer_start
+ffffffff82345490 d event_class_timer_expire_entry
+ffffffff823454d8 d event_class_hrtimer_init
+ffffffff82345520 d event_class_hrtimer_start
+ffffffff82345568 d event_class_hrtimer_expire_entry
+ffffffff823455b0 d event_class_hrtimer_class
+ffffffff823455f8 d event_class_itimer_state
+ffffffff82345640 d event_class_itimer_expire
+ffffffff82345688 d event_class_tick_stop
+ffffffff823456d0 d event_class_alarmtimer_suspend
+ffffffff82345718 d event_class_alarm_class
+ffffffff82345760 d event_class_cgroup_root
+ffffffff823457a8 d event_class_cgroup
+ffffffff823457f0 d event_class_cgroup_migrate
+ffffffff82345838 d event_class_cgroup_event
+ffffffff82345880 d event_class_ftrace_function
+ffffffff823458c8 d event_class_ftrace_funcgraph_entry
+ffffffff82345910 d event_class_ftrace_funcgraph_exit
+ffffffff82345958 d event_class_ftrace_context_switch
+ffffffff823459a0 d event_class_ftrace_wakeup
+ffffffff823459e8 d event_class_ftrace_kernel_stack
+ffffffff82345a30 d event_class_ftrace_user_stack
+ffffffff82345a78 d event_class_ftrace_bprint
+ffffffff82345ac0 d event_class_ftrace_print
+ffffffff82345b08 d event_class_ftrace_raw_data
+ffffffff82345b50 d event_class_ftrace_bputs
+ffffffff82345b98 d event_class_ftrace_mmiotrace_rw
+ffffffff82345be0 d event_class_ftrace_mmiotrace_map
+ffffffff82345c28 d event_class_ftrace_branch
+ffffffff82345c70 d event_class_ftrace_hwlat
+ffffffff82345cb8 d event_class_ftrace_func_repeats
+ffffffff82345d00 d event_class_ftrace_osnoise
+ffffffff82345d48 d event_class_ftrace_timerlat
+ffffffff82345d90 d event_class_error_report_template
+ffffffff82345dd8 d event_class_cpu
+ffffffff82345e20 d event_class_cpu_idle_miss
+ffffffff82345e68 d event_class_powernv_throttle
+ffffffff82345eb0 d event_class_pstate_sample
+ffffffff82345ef8 d event_class_cpu_frequency_limits
+ffffffff82345f40 d event_class_device_pm_callback_start
+ffffffff82345f88 d event_class_device_pm_callback_end
+ffffffff82345fd0 d event_class_suspend_resume
+ffffffff82346018 d event_class_wakeup_source
+ffffffff82346060 d event_class_clock
+ffffffff823460a8 d event_class_power_domain
+ffffffff823460f0 d event_class_cpu_latency_qos_request
+ffffffff82346138 d event_class_pm_qos_update
+ffffffff82346180 d event_class_dev_pm_qos_request
+ffffffff823461c8 d event_class_guest_halt_poll_ns
+ffffffff82346210 d event_class_rpm_internal
+ffffffff82346258 d event_class_rpm_return_int
+ffffffff823462a0 d event_class_xdp_exception
+ffffffff823462e8 d event_class_xdp_bulk_tx
+ffffffff82346330 d event_class_xdp_redirect_template
+ffffffff82346378 d event_class_xdp_cpumap_kthread
+ffffffff823463c0 d event_class_xdp_cpumap_enqueue
+ffffffff82346408 d event_class_xdp_devmap_xmit
+ffffffff82346450 d event_class_mem_disconnect
+ffffffff82346498 d event_class_mem_connect
+ffffffff823464e0 d event_class_mem_return_failed
+ffffffff82346528 d event_class_rseq_update
+ffffffff82346570 d event_class_rseq_ip_fixup
+ffffffff823465b8 d event_class_mm_filemap_op_page_cache
+ffffffff82346600 d event_class_filemap_set_wb_err
+ffffffff82346648 d event_class_file_check_and_advance_wb_err
+ffffffff82346690 d event_class_oom_score_adj_update
+ffffffff823466d8 d event_class_reclaim_retry_zone
+ffffffff82346720 d event_class_mark_victim
+ffffffff82346768 d event_class_wake_reaper
+ffffffff823467b0 d event_class_start_task_reaping
+ffffffff823467f8 d event_class_finish_task_reaping
+ffffffff82346840 d event_class_skip_task_reaping
+ffffffff82346888 d event_class_compact_retry
+ffffffff823468d0 d event_class_mm_lru_insertion
+ffffffff82346918 d event_class_mm_lru_activate
+ffffffff82346960 d event_class_mm_vmscan_kswapd_sleep
+ffffffff823469a8 d event_class_mm_vmscan_kswapd_wake
+ffffffff823469f0 d event_class_mm_vmscan_wakeup_kswapd
+ffffffff82346a38 d event_class_mm_vmscan_direct_reclaim_begin_template
+ffffffff82346a80 d event_class_mm_vmscan_direct_reclaim_end_template
+ffffffff82346ac8 d event_class_mm_shrink_slab_start
+ffffffff82346b10 d event_class_mm_shrink_slab_end
+ffffffff82346b58 d event_class_mm_vmscan_lru_isolate
+ffffffff82346ba0 d event_class_mm_vmscan_write_folio
+ffffffff82346be8 d event_class_mm_vmscan_lru_shrink_inactive
+ffffffff82346c30 d event_class_mm_vmscan_lru_shrink_active
+ffffffff82346c78 d event_class_mm_vmscan_node_reclaim_begin
+ffffffff82346cc0 d event_class_mm_vmscan_throttled
+ffffffff82346d08 d event_class_percpu_alloc_percpu
+ffffffff82346d50 d event_class_percpu_free_percpu
+ffffffff82346d98 d event_class_percpu_alloc_percpu_fail
+ffffffff82346de0 d event_class_percpu_create_chunk
+ffffffff82346e28 d event_class_percpu_destroy_chunk
+ffffffff82346e70 d event_class_kmem_cache_alloc
+ffffffff82346eb8 d event_class_kmalloc
+ffffffff82346f00 d event_class_kfree
+ffffffff82346f48 d event_class_kmem_cache_free
+ffffffff82346f90 d event_class_mm_page_free
+ffffffff82346fd8 d event_class_mm_page_free_batched
+ffffffff82347020 d event_class_mm_page_alloc
+ffffffff82347068 d event_class_mm_page
+ffffffff823470b0 d event_class_mm_page_pcpu_drain
+ffffffff823470f8 d event_class_mm_page_alloc_extfrag
+ffffffff82347140 d event_class_rss_stat
+ffffffff82347188 d event_class_mm_compaction_isolate_template
+ffffffff823471d0 d event_class_mm_compaction_migratepages
+ffffffff82347218 d event_class_mm_compaction_begin
+ffffffff82347260 d event_class_mm_compaction_end
+ffffffff823472a8 d event_class_mm_compaction_try_to_compact_pages
+ffffffff823472f0 d event_class_mm_compaction_suitable_template
+ffffffff82347338 d event_class_mm_compaction_defer_template
+ffffffff82347380 d event_class_mm_compaction_kcompactd_sleep
+ffffffff823473c8 d event_class_kcompactd_wake_template
+ffffffff82347410 d event_class_mmap_lock
+ffffffff82347458 d event_class_mmap_lock_acquire_returned
+ffffffff823474a0 d event_class_vm_unmapped_area
+ffffffff823474e8 d event_class_vma_mas_szero
+ffffffff82347530 d event_class_vma_store
+ffffffff82347578 d event_class_exit_mmap
+ffffffff823475c0 d event_class_tlb_flush
+ffffffff82347608 d event_class_mm_migrate_pages
+ffffffff82347650 d event_class_mm_migrate_pages_start
+ffffffff82347698 d event_class_migration_pte
+ffffffff82347700 d memblock_memory
+ffffffff82347740 d contig_page_data
+ffffffff82349840 d event_class_hugepage_set_pmd
+ffffffff82349888 d event_class_hugepage_update
+ffffffff823498d0 d event_class_migration_pmd
+ffffffff82349918 d event_class_mm_khugepaged_scan_pmd
+ffffffff82349960 d event_class_mm_collapse_huge_page
+ffffffff823499a8 d event_class_mm_collapse_huge_page_isolate
+ffffffff823499f0 d event_class_mm_collapse_huge_page_swapin
+ffffffff82349a38 d event_class_mm_khugepaged_scan_file
+ffffffff82349a80 d event_class_test_pages_isolated
+ffffffff82349ac8 d event_class_damon_aggregated
+ffffffff82349b10 d event_class_writeback_folio_template
+ffffffff82349b58 d event_class_writeback_dirty_inode_template
+ffffffff82349ba0 d event_class_inode_foreign_history
+ffffffff82349be8 d event_class_inode_switch_wbs
+ffffffff82349c30 d event_class_track_foreign_dirty
+ffffffff82349c78 d event_class_flush_foreign
+ffffffff82349cc0 d event_class_writeback_write_inode_template
+ffffffff82349d08 d event_class_writeback_work_class
+ffffffff82349d50 d event_class_writeback_pages_written
+ffffffff82349d98 d event_class_writeback_class
+ffffffff82349de0 d event_class_writeback_bdi_register
+ffffffff82349e28 d event_class_wbc_class
+ffffffff82349e70 d event_class_writeback_queue_io
+ffffffff82349eb8 d event_class_global_dirty_state
+ffffffff82349f00 d event_class_bdi_dirty_ratelimit
+ffffffff82349f48 d event_class_balance_dirty_pages
+ffffffff82349f90 d event_class_writeback_sb_inodes_requeue
+ffffffff82349fd8 d event_class_writeback_single_inode_template
+ffffffff8234a020 d event_class_writeback_inode_template
+ffffffff8234a068 d event_class_locks_get_lock_context
+ffffffff8234a0b0 d event_class_filelock_lock
+ffffffff8234a0f8 d event_class_filelock_lease
+ffffffff8234a140 d event_class_generic_add_lease
+ffffffff8234a188 d event_class_leases_conflict
+ffffffff8234a1d0 d event_class_iomap_readpage_class
+ffffffff8234a218 d event_class_iomap_range_class
+ffffffff8234a260 d event_class_iomap_class
+ffffffff8234a2a8 d event_class_iomap_iter
+ffffffff8234a2f0 d event_class_ext4_other_inode_update_time
+ffffffff8234a338 d event_class_ext4_free_inode
+ffffffff8234a380 d event_class_ext4_request_inode
+ffffffff8234a3c8 d event_class_ext4_allocate_inode
+ffffffff8234a410 d event_class_ext4_evict_inode
+ffffffff8234a458 d event_class_ext4_drop_inode
+ffffffff8234a4a0 d event_class_ext4_nfs_commit_metadata
+ffffffff8234a4e8 d event_class_ext4_mark_inode_dirty
+ffffffff8234a530 d event_class_ext4_begin_ordered_truncate
+ffffffff8234a578 d event_class_ext4__write_begin
+ffffffff8234a5c0 d event_class_ext4__write_end
+ffffffff8234a608 d event_class_ext4_writepages
+ffffffff8234a650 d event_class_ext4_da_write_pages
+ffffffff8234a698 d event_class_ext4_da_write_pages_extent
+ffffffff8234a6e0 d event_class_ext4_writepages_result
+ffffffff8234a728 d event_class_ext4__page_op
+ffffffff8234a770 d event_class_ext4_invalidate_folio_op
+ffffffff8234a7b8 d event_class_ext4_discard_blocks
+ffffffff8234a800 d event_class_ext4__mb_new_pa
+ffffffff8234a848 d event_class_ext4_mb_release_inode_pa
+ffffffff8234a890 d event_class_ext4_mb_release_group_pa
+ffffffff8234a8d8 d event_class_ext4_discard_preallocations
+ffffffff8234a920 d event_class_ext4_mb_discard_preallocations
+ffffffff8234a968 d event_class_ext4_request_blocks
+ffffffff8234a9b0 d event_class_ext4_allocate_blocks
+ffffffff8234a9f8 d event_class_ext4_free_blocks
+ffffffff8234aa40 d event_class_ext4_sync_file_enter
+ffffffff8234aa88 d event_class_ext4_sync_file_exit
+ffffffff8234aad0 d event_class_ext4_sync_fs
+ffffffff8234ab18 d event_class_ext4_alloc_da_blocks
+ffffffff8234ab60 d event_class_ext4_mballoc_alloc
+ffffffff8234aba8 d event_class_ext4_mballoc_prealloc
+ffffffff8234abf0 d event_class_ext4__mballoc
+ffffffff8234ac38 d event_class_ext4_forget
+ffffffff8234ac80 d event_class_ext4_da_update_reserve_space
+ffffffff8234acc8 d event_class_ext4_da_reserve_space
+ffffffff8234ad10 d event_class_ext4_da_release_space
+ffffffff8234ad58 d event_class_ext4__bitmap_load
+ffffffff8234ada0 d event_class_ext4_read_block_bitmap_load
+ffffffff8234ade8 d event_class_ext4__fallocate_mode
+ffffffff8234ae30 d event_class_ext4_fallocate_exit
+ffffffff8234ae78 d event_class_ext4_unlink_enter
+ffffffff8234aec0 d event_class_ext4_unlink_exit
+ffffffff8234af08 d event_class_ext4__truncate
+ffffffff8234af50 d event_class_ext4_ext_convert_to_initialized_enter
+ffffffff8234af98 d event_class_ext4_ext_convert_to_initialized_fastpath
+ffffffff8234afe0 d event_class_ext4__map_blocks_enter
+ffffffff8234b028 d event_class_ext4__map_blocks_exit
+ffffffff8234b070 d event_class_ext4_ext_load_extent
+ffffffff8234b0b8 d event_class_ext4_load_inode
+ffffffff8234b100 d event_class_ext4_journal_start
+ffffffff8234b148 d event_class_ext4_journal_start_reserved
+ffffffff8234b190 d event_class_ext4__trim
+ffffffff8234b1d8 d event_class_ext4_ext_handle_unwritten_extents
+ffffffff8234b220 d event_class_ext4_get_implied_cluster_alloc_exit
+ffffffff8234b268 d event_class_ext4_ext_show_extent
+ffffffff8234b2b0 d event_class_ext4_remove_blocks
+ffffffff8234b2f8 d event_class_ext4_ext_rm_leaf
+ffffffff8234b340 d event_class_ext4_ext_rm_idx
+ffffffff8234b388 d event_class_ext4_ext_remove_space
+ffffffff8234b3d0 d event_class_ext4_ext_remove_space_done
+ffffffff8234b418 d event_class_ext4__es_extent
+ffffffff8234b460 d event_class_ext4_es_remove_extent
+ffffffff8234b4a8 d event_class_ext4_es_find_extent_range_enter
+ffffffff8234b4f0 d event_class_ext4_es_find_extent_range_exit
+ffffffff8234b538 d event_class_ext4_es_lookup_extent_enter
+ffffffff8234b580 d event_class_ext4_es_lookup_extent_exit
+ffffffff8234b5c8 d event_class_ext4__es_shrink_enter
+ffffffff8234b610 d event_class_ext4_es_shrink_scan_exit
+ffffffff8234b658 d event_class_ext4_collapse_range
+ffffffff8234b6a0 d event_class_ext4_insert_range
+ffffffff8234b6e8 d event_class_ext4_es_shrink
+ffffffff8234b730 d event_class_ext4_es_insert_delayed_block
+ffffffff8234b778 d event_class_ext4_fsmap_class
+ffffffff8234b7c0 d event_class_ext4_getfsmap_class
+ffffffff8234b808 d event_class_ext4_shutdown
+ffffffff8234b850 d event_class_ext4_error
+ffffffff8234b898 d event_class_ext4_prefetch_bitmaps
+ffffffff8234b8e0 d event_class_ext4_lazy_itable_init
+ffffffff8234b928 d event_class_ext4_fc_replay_scan
+ffffffff8234b970 d event_class_ext4_fc_replay
+ffffffff8234b9b8 d event_class_ext4_fc_commit_start
+ffffffff8234ba00 d event_class_ext4_fc_commit_stop
+ffffffff8234ba48 d event_class_ext4_fc_stats
+ffffffff8234ba90 d event_class_ext4_fc_track_dentry
+ffffffff8234bad8 d event_class_ext4_fc_track_inode
+ffffffff8234bb20 d event_class_ext4_fc_track_range
+ffffffff8234bb68 d event_class_ext4_fc_cleanup
+ffffffff8234bbb0 d event_class_ext4_update_sb
+ffffffff8234bbf8 d event_class_jbd2_checkpoint
+ffffffff8234bc40 d event_class_jbd2_commit
+ffffffff8234bc88 d event_class_jbd2_end_commit
+ffffffff8234bcd0 d event_class_jbd2_submit_inode_data
+ffffffff8234bd18 d event_class_jbd2_handle_start_class
+ffffffff8234bd60 d event_class_jbd2_handle_extend
+ffffffff8234bda8 d event_class_jbd2_handle_stats
+ffffffff8234bdf0 d event_class_jbd2_run_stats
+ffffffff8234be38 d event_class_jbd2_checkpoint_stats
+ffffffff8234be80 d event_class_jbd2_update_log_tail
+ffffffff8234bec8 d event_class_jbd2_write_superblock
+ffffffff8234bf10 d event_class_jbd2_lock_buffer_stall
+ffffffff8234bf58 d event_class_jbd2_journal_shrink
+ffffffff8234bfa0 d event_class_jbd2_shrink_scan_exit
+ffffffff8234bfe8 d event_class_jbd2_shrink_checkpoint_list
+ffffffff8234c030 d event_class_erofs_lookup
+ffffffff8234c078 d event_class_erofs_fill_inode
+ffffffff8234c0c0 d event_class_erofs_readpage
+ffffffff8234c108 d event_class_erofs_readpages
+ffffffff8234c150 d event_class_erofs__map_blocks_enter
+ffffffff8234c198 d event_class_erofs__map_blocks_exit
+ffffffff8234c1e0 d event_class_erofs_destroy_inode
+ffffffff8234c228 d event_class_selinux_audited
+ffffffff8234c270 d event_class_block_buffer
+ffffffff8234c2b8 d event_class_block_rq_requeue
+ffffffff8234c300 d event_class_block_rq_completion
+ffffffff8234c348 d event_class_block_rq
+ffffffff8234c390 d event_class_block_bio_complete
+ffffffff8234c3d8 d event_class_block_bio
+ffffffff8234c420 d event_class_block_plug
+ffffffff8234c468 d event_class_block_unplug
+ffffffff8234c4b0 d event_class_block_split
+ffffffff8234c4f8 d event_class_block_bio_remap
+ffffffff8234c540 d event_class_block_rq_remap
+ffffffff8234c588 d event_class_iocost_iocg_state
+ffffffff8234c5d0 d event_class_iocg_inuse_update
+ffffffff8234c618 d event_class_iocost_ioc_vrate_adj
+ffffffff8234c660 d event_class_iocost_iocg_forgive_debt
+ffffffff8234c6a8 d event_class_kyber_latency
+ffffffff8234c6f0 d event_class_kyber_adjust
+ffffffff8234c738 d event_class_kyber_throttled
+ffffffff8234c780 d event_class_io_uring_create
+ffffffff8234c7c8 d event_class_io_uring_register
+ffffffff8234c810 d event_class_io_uring_file_get
+ffffffff8234c858 d event_class_io_uring_queue_async_work
+ffffffff8234c8a0 d event_class_io_uring_defer
+ffffffff8234c8e8 d event_class_io_uring_link
+ffffffff8234c930 d event_class_io_uring_cqring_wait
+ffffffff8234c978 d event_class_io_uring_fail_link
+ffffffff8234c9c0 d event_class_io_uring_complete
+ffffffff8234ca08 d event_class_io_uring_submit_sqe
+ffffffff8234ca50 d event_class_io_uring_poll_arm
+ffffffff8234ca98 d event_class_io_uring_task_add
+ffffffff8234cae0 d event_class_io_uring_req_failed
+ffffffff8234cb28 d event_class_io_uring_cqe_overflow
+ffffffff8234cb70 d event_class_io_uring_task_work_run
+ffffffff8234cbb8 d event_class_io_uring_short_write
+ffffffff8234cc00 d event_class_io_uring_local_work_run
+ffffffff8234cc48 d event_class_msr_trace_class
+ffffffff8234cc90 d event_class_gpio_direction
+ffffffff8234ccd8 d event_class_gpio_value
+ffffffff8234cd20 d event_class_iommu_group_event
+ffffffff8234cd68 d event_class_iommu_device_event
+ffffffff8234cdb0 d event_class_map
+ffffffff8234cdf8 d event_class_unmap
+ffffffff8234ce40 d event_class_iommu_error
+ffffffff8234ce88 d event_class_regmap_reg
+ffffffff8234ced0 d event_class_regmap_bulk
+ffffffff8234cf18 d event_class_regmap_block
+ffffffff8234cf60 d event_class_regcache_sync
+ffffffff8234cfa8 d event_class_regmap_bool
+ffffffff8234cff0 d event_class_regmap_async
+ffffffff8234d038 d event_class_regcache_drop_region
+ffffffff8234d080 d event_class_devres
+ffffffff8234d0c8 d event_class_dma_fence
+ffffffff8234d110 d event_class_rtc_time_alarm_class
+ffffffff8234d158 d event_class_rtc_irq_set_freq
+ffffffff8234d1a0 d event_class_rtc_irq_set_state
+ffffffff8234d1e8 d event_class_rtc_alarm_irq_enable
+ffffffff8234d230 d event_class_rtc_offset_class
+ffffffff8234d278 d event_class_rtc_timer_class
+ffffffff8234d2c0 d event_class_thermal_temperature
+ffffffff8234d308 d event_class_cdev_update
+ffffffff8234d350 d event_class_thermal_zone_trip
+ffffffff8234d398 d event_class_thermal_power_cpu_get_power_simple
+ffffffff8234d3e0 d event_class_thermal_power_cpu_limit
+ffffffff8234d428 d event_class_watchdog_template
+ffffffff8234d470 d event_class_watchdog_set_timeout
+ffffffff8234d4b8 d memmap_ktype
+ffffffff8234d508 d map_ktype
+ffffffff8234d558 d event_class_mc_event
+ffffffff8234d5a0 d event_class_arm_event
+ffffffff8234d5e8 d event_class_non_standard_event
+ffffffff8234d630 d event_class_aer_event
+ffffffff8234d678 d event_class_kfree_skb
+ffffffff8234d6c0 d event_class_consume_skb
+ffffffff8234d708 d event_class_skb_copy_datagram_iovec
+ffffffff8234d750 d event_class_net_dev_start_xmit
+ffffffff8234d798 d event_class_net_dev_xmit
+ffffffff8234d7e0 d event_class_net_dev_xmit_timeout
+ffffffff8234d828 d event_class_net_dev_template
+ffffffff8234d870 d event_class_net_dev_rx_verbose_template
+ffffffff8234d8b8 d event_class_net_dev_rx_exit_template
+ffffffff8234d900 d event_class_napi_poll
+ffffffff8234d948 d event_class_sock_rcvqueue_full
+ffffffff8234d990 d event_class_sock_exceed_buf_limit
+ffffffff8234d9d8 d event_class_inet_sock_set_state
+ffffffff8234da20 d event_class_inet_sk_error_report
+ffffffff8234da68 d event_class_udp_fail_queue_rcv_skb
+ffffffff8234dab0 d event_class_tcp_event_sk_skb
+ffffffff8234daf8 d event_class_tcp_event_sk
+ffffffff8234db40 d event_class_tcp_retransmit_synack
+ffffffff8234db88 d event_class_tcp_probe
+ffffffff8234dbd0 d event_class_tcp_event_skb
+ffffffff8234dc18 d event_class_tcp_cong_state_set
+ffffffff8234dc60 d event_class_fib_table_lookup
+ffffffff8234dca8 d event_class_qdisc_dequeue
+ffffffff8234dcf0 d event_class_qdisc_enqueue
+ffffffff8234dd38 d event_class_qdisc_reset
+ffffffff8234dd80 d event_class_qdisc_destroy
+ffffffff8234ddc8 d event_class_qdisc_create
+ffffffff8234de10 d event_class_br_fdb_add
+ffffffff8234de58 d event_class_br_fdb_external_learn_add
+ffffffff8234dea0 d event_class_fdb_delete
+ffffffff8234dee8 d event_class_br_fdb_update
+ffffffff8234df30 d event_class_neigh_create
+ffffffff8234df78 d event_class_neigh_update
+ffffffff8234dfc0 d event_class_neigh__update
+ffffffff8234e008 d event_class_netlink_extack
+ffffffff8234e050 d event_class_fib6_table_lookup
+ffffffff8234e098 d event_class_virtio_transport_alloc_pkt
+ffffffff8234e0e0 d event_class_virtio_transport_recv_pkt
+ffffffff8234e128 d event_class_ma_op
+ffffffff8234e170 d event_class_ma_read
+ffffffff8234e1b8 d event_class_ma_write
+ffffffff8234e200 d p_start
+ffffffff8234e208 d p_end
+ffffffff8234e210 d node_start
+ffffffff8234e218 d unused_pmd_start
+ffffffff8234e220 d compute_batch_nb
+ffffffff8234e238 d mminit_loglevel
+ffffffff8234e23c d mirrored_kernelcore
+ffffffff8234e240 d memblock_memory_init_regions
+ffffffff8234ee40 d memblock_reserved_init_regions
+ffffffff8234fa40 d memblock_reserved_in_slab
+ffffffff8234fa44 d memblock_memory_in_slab
+ffffffff8234fa48 d memblock_debug
+ffffffff8234fa49 d system_has_some_mirror
+ffffffff8234fa4c d memblock_can_resize
+ffffffff8234fa50 d memblock
+ffffffff8234fab0 d sparsemap_buf
+ffffffff8234fab8 d sparsemap_buf_end
+ffffffff8234fac0 d page_ext_init.page_ext_callback_mem_nb
+ffffffff8234fad8 D __end_once
+ffffffff8234fad8 D __start_once
+ffffffff8234fae0 d __tracepoint_initcall_level
+ffffffff8234fb28 d __tracepoint_initcall_start
+ffffffff8234fb70 d __tracepoint_initcall_finish
+ffffffff8234fbb8 d __tracepoint_emulate_vsyscall
+ffffffff8234fc00 d __tracepoint_local_timer_entry
+ffffffff8234fc48 d __tracepoint_local_timer_exit
+ffffffff8234fc90 d __tracepoint_spurious_apic_entry
+ffffffff8234fcd8 d __tracepoint_spurious_apic_exit
+ffffffff8234fd20 d __tracepoint_error_apic_entry
+ffffffff8234fd68 d __tracepoint_error_apic_exit
+ffffffff8234fdb0 d __tracepoint_x86_platform_ipi_entry
+ffffffff8234fdf8 d __tracepoint_x86_platform_ipi_exit
+ffffffff8234fe40 d __tracepoint_irq_work_entry
+ffffffff8234fe88 d __tracepoint_irq_work_exit
+ffffffff8234fed0 d __tracepoint_reschedule_entry
+ffffffff8234ff18 d __tracepoint_reschedule_exit
+ffffffff8234ff60 d __tracepoint_call_function_entry
+ffffffff8234ffa8 d __tracepoint_call_function_exit
+ffffffff8234fff0 d __tracepoint_call_function_single_entry
+ffffffff82350038 d __tracepoint_call_function_single_exit
+ffffffff82350080 d __tracepoint_thermal_apic_entry
+ffffffff823500c8 d __tracepoint_thermal_apic_exit
+ffffffff82350110 d __tracepoint_vector_config
+ffffffff82350158 d __tracepoint_vector_update
+ffffffff823501a0 d __tracepoint_vector_clear
+ffffffff823501e8 d __tracepoint_vector_reserve_managed
+ffffffff82350230 d __tracepoint_vector_reserve
+ffffffff82350278 d __tracepoint_vector_alloc
+ffffffff823502c0 d __tracepoint_vector_alloc_managed
+ffffffff82350308 d __tracepoint_vector_activate
+ffffffff82350350 d __tracepoint_vector_deactivate
+ffffffff82350398 d __tracepoint_vector_teardown
+ffffffff823503e0 d __tracepoint_vector_setup
+ffffffff82350428 d __tracepoint_vector_free_moved
+ffffffff82350470 d __tracepoint_nmi_handler
+ffffffff823504b8 d __tracepoint_x86_fpu_before_save
+ffffffff82350500 d __tracepoint_x86_fpu_after_save
+ffffffff82350548 d __tracepoint_x86_fpu_before_restore
+ffffffff82350590 d __tracepoint_x86_fpu_after_restore
+ffffffff823505d8 d __tracepoint_x86_fpu_regs_activated
+ffffffff82350620 d __tracepoint_x86_fpu_regs_deactivated
+ffffffff82350668 d __tracepoint_x86_fpu_init_state
+ffffffff823506b0 d __tracepoint_x86_fpu_dropped
+ffffffff823506f8 d __tracepoint_x86_fpu_copy_src
+ffffffff82350740 d __tracepoint_x86_fpu_copy_dst
+ffffffff82350788 d __tracepoint_x86_fpu_xstate_check_failed
+ffffffff823507d0 d __tracepoint_page_fault_user
+ffffffff82350818 d __tracepoint_page_fault_kernel
+ffffffff82350860 d __tracepoint_task_newtask
+ffffffff823508a8 d __tracepoint_task_rename
+ffffffff823508f0 d __tracepoint_cpuhp_enter
+ffffffff82350938 d __tracepoint_cpuhp_multi_enter
+ffffffff82350980 d __tracepoint_cpuhp_exit
+ffffffff823509c8 d __tracepoint_irq_handler_entry
+ffffffff82350a10 d __tracepoint_irq_handler_exit
+ffffffff82350a58 d __tracepoint_softirq_entry
+ffffffff82350aa0 d __tracepoint_softirq_exit
+ffffffff82350ae8 d __tracepoint_softirq_raise
+ffffffff82350b30 d __tracepoint_tasklet_entry
+ffffffff82350b78 d __tracepoint_tasklet_exit
+ffffffff82350bc0 d __tracepoint_signal_generate
+ffffffff82350c08 d __tracepoint_signal_deliver
+ffffffff82350c50 d __tracepoint_workqueue_queue_work
+ffffffff82350c98 d __tracepoint_workqueue_activate_work
+ffffffff82350ce0 d __tracepoint_workqueue_execute_start
+ffffffff82350d28 d __tracepoint_workqueue_execute_end
+ffffffff82350d70 d __tracepoint_sched_kthread_stop
+ffffffff82350db8 d __tracepoint_sched_kthread_stop_ret
+ffffffff82350e00 d __tracepoint_sched_kthread_work_queue_work
+ffffffff82350e48 d __tracepoint_sched_kthread_work_execute_start
+ffffffff82350e90 d __tracepoint_sched_kthread_work_execute_end
+ffffffff82350ed8 d __tracepoint_sched_waking
+ffffffff82350f20 d __tracepoint_sched_wakeup
+ffffffff82350f68 d __tracepoint_sched_wakeup_new
+ffffffff82350fb0 d __tracepoint_sched_switch
+ffffffff82350ff8 d __tracepoint_sched_migrate_task
+ffffffff82351040 d __tracepoint_sched_process_free
+ffffffff82351088 d __tracepoint_sched_process_exit
+ffffffff823510d0 d __tracepoint_sched_wait_task
+ffffffff82351118 d __tracepoint_sched_process_wait
+ffffffff82351160 d __tracepoint_sched_process_exec
+ffffffff823511a8 d __tracepoint_sched_blocked_reason
+ffffffff823511f0 d __tracepoint_sched_pi_setprio
+ffffffff82351238 d __tracepoint_sched_process_hang
+ffffffff82351280 d __tracepoint_sched_move_numa
+ffffffff823512c8 d __tracepoint_sched_stick_numa
+ffffffff82351310 d __tracepoint_sched_swap_numa
+ffffffff82351358 d __tracepoint_sched_wake_idle_without_ipi
+ffffffff823513a0 d __tracepoint_pelt_thermal_tp
+ffffffff823513e8 d __tracepoint_pelt_rt_tp
+ffffffff82351430 d __tracepoint_pelt_dl_tp
+ffffffff82351478 d __tracepoint_pelt_irq_tp
+ffffffff823514c0 d __tracepoint_sched_stat_runtime
+ffffffff82351508 d __tracepoint_pelt_cfs_tp
+ffffffff82351550 d __tracepoint_pelt_se_tp
+ffffffff82351598 d __tracepoint_sched_cpu_capacity_tp
+ffffffff823515e0 d __tracepoint_sched_overutilized_tp
+ffffffff82351628 d __tracepoint_sched_util_est_cfs_tp
+ffffffff82351670 d __tracepoint_sched_stat_wait
+ffffffff823516b8 d __tracepoint_sched_stat_sleep
+ffffffff82351700 d __tracepoint_sched_stat_iowait
+ffffffff82351748 d __tracepoint_sched_stat_blocked
+ffffffff82351790 d __tracepoint_sched_update_nr_running_tp
+ffffffff823517d8 d __tracepoint_sched_util_est_se_tp
+ffffffff82351820 d __tracepoint_sched_process_fork
+ffffffff82351868 d __tracepoint_contention_begin
+ffffffff823518b0 d __tracepoint_contention_end
+ffffffff823518f8 d __tracepoint_console
+ffffffff82351940 d __tracepoint_irq_matrix_online
+ffffffff82351988 d __tracepoint_irq_matrix_offline
+ffffffff823519d0 d __tracepoint_irq_matrix_reserve
+ffffffff82351a18 d __tracepoint_irq_matrix_remove_reserved
+ffffffff82351a60 d __tracepoint_irq_matrix_assign_system
+ffffffff82351aa8 d __tracepoint_irq_matrix_alloc_reserved
+ffffffff82351af0 d __tracepoint_irq_matrix_reserve_managed
+ffffffff82351b38 d __tracepoint_irq_matrix_remove_managed
+ffffffff82351b80 d __tracepoint_irq_matrix_alloc_managed
+ffffffff82351bc8 d __tracepoint_irq_matrix_assign
+ffffffff82351c10 d __tracepoint_irq_matrix_alloc
+ffffffff82351c58 d __tracepoint_irq_matrix_free
+ffffffff82351ca0 d __tracepoint_rcu_dyntick
+ffffffff82351ce8 d __tracepoint_rcu_torture_read
+ffffffff82351d30 d __tracepoint_rcu_grace_period
+ffffffff82351d78 d __tracepoint_rcu_utilization
+ffffffff82351dc0 d __tracepoint_rcu_kvfree_callback
+ffffffff82351e08 d __tracepoint_rcu_callback
+ffffffff82351e50 d __tracepoint_rcu_segcb_stats
+ffffffff82351e98 d __tracepoint_rcu_future_grace_period
+ffffffff82351ee0 d __tracepoint_rcu_stall_warning
+ffffffff82351f28 d __tracepoint_rcu_barrier
+ffffffff82351f70 d __tracepoint_rcu_quiescent_state_report
+ffffffff82351fb8 d __tracepoint_rcu_unlock_preempted_task
+ffffffff82352000 d __tracepoint_rcu_grace_period_init
+ffffffff82352048 d __tracepoint_rcu_fqs
+ffffffff82352090 d __tracepoint_rcu_batch_start
+ffffffff823520d8 d __tracepoint_rcu_batch_end
+ffffffff82352120 d __tracepoint_rcu_invoke_callback
+ffffffff82352168 d __tracepoint_rcu_invoke_kfree_bulk_callback
+ffffffff823521b0 d __tracepoint_rcu_invoke_kvfree_callback
+ffffffff823521f8 d __tracepoint_rcu_nocb_wake
+ffffffff82352240 d __tracepoint_rcu_exp_grace_period
+ffffffff82352288 d __tracepoint_rcu_exp_funnel_lock
+ffffffff823522d0 d __tracepoint_rcu_preempt_task
+ffffffff82352318 d __tracepoint_swiotlb_bounced
+ffffffff82352360 d __tracepoint_sys_enter
+ffffffff823523a8 d __tracepoint_sys_exit
+ffffffff823523f0 d __tracepoint_module_load
+ffffffff82352438 d __tracepoint_module_free
+ffffffff82352480 d __tracepoint_module_request
+ffffffff823524c8 d __tracepoint_timer_init
+ffffffff82352510 d __tracepoint_timer_start
+ffffffff82352558 d __tracepoint_timer_expire_entry
+ffffffff823525a0 d __tracepoint_timer_expire_exit
+ffffffff823525e8 d __tracepoint_timer_cancel
+ffffffff82352630 d __tracepoint_itimer_state
+ffffffff82352678 d __tracepoint_itimer_expire
+ffffffff823526c0 d __tracepoint_hrtimer_start
+ffffffff82352708 d __tracepoint_hrtimer_cancel
+ffffffff82352750 d __tracepoint_hrtimer_init
+ffffffff82352798 d __tracepoint_hrtimer_expire_entry
+ffffffff823527e0 d __tracepoint_hrtimer_expire_exit
+ffffffff82352828 d __tracepoint_tick_stop
+ffffffff82352870 d __tracepoint_alarmtimer_suspend
+ffffffff823528b8 d __tracepoint_alarmtimer_fired
+ffffffff82352900 d __tracepoint_alarmtimer_start
+ffffffff82352948 d __tracepoint_alarmtimer_cancel
+ffffffff82352990 d __tracepoint_cgroup_setup_root
+ffffffff823529d8 d __tracepoint_cgroup_destroy_root
+ffffffff82352a20 d __tracepoint_cgroup_remount
+ffffffff82352a68 d __tracepoint_cgroup_mkdir
+ffffffff82352ab0 d __tracepoint_cgroup_rmdir
+ffffffff82352af8 d __tracepoint_cgroup_release
+ffffffff82352b40 d __tracepoint_cgroup_rename
+ffffffff82352b88 d __tracepoint_cgroup_freeze
+ffffffff82352bd0 d __tracepoint_cgroup_unfreeze
+ffffffff82352c18 d __tracepoint_cgroup_attach_task
+ffffffff82352c60 d __tracepoint_cgroup_transfer_tasks
+ffffffff82352ca8 d __tracepoint_cgroup_notify_populated
+ffffffff82352cf0 d __tracepoint_cgroup_notify_frozen
+ffffffff82352d38 d __tracepoint_error_report_end
+ffffffff82352d80 d __tracepoint_cpu_idle
+ffffffff82352dc8 d __tracepoint_cpu_idle_miss
+ffffffff82352e10 d __tracepoint_powernv_throttle
+ffffffff82352e58 d __tracepoint_pstate_sample
+ffffffff82352ea0 d __tracepoint_cpu_frequency
+ffffffff82352ee8 d __tracepoint_cpu_frequency_limits
+ffffffff82352f30 d __tracepoint_device_pm_callback_start
+ffffffff82352f78 d __tracepoint_device_pm_callback_end
+ffffffff82352fc0 d __tracepoint_suspend_resume
+ffffffff82353008 d __tracepoint_wakeup_source_activate
+ffffffff82353050 d __tracepoint_wakeup_source_deactivate
+ffffffff82353098 d __tracepoint_clock_enable
+ffffffff823530e0 d __tracepoint_clock_disable
+ffffffff82353128 d __tracepoint_clock_set_rate
+ffffffff82353170 d __tracepoint_power_domain_target
+ffffffff823531b8 d __tracepoint_pm_qos_add_request
+ffffffff82353200 d __tracepoint_pm_qos_update_request
+ffffffff82353248 d __tracepoint_pm_qos_remove_request
+ffffffff82353290 d __tracepoint_pm_qos_update_target
+ffffffff823532d8 d __tracepoint_pm_qos_update_flags
+ffffffff82353320 d __tracepoint_dev_pm_qos_add_request
+ffffffff82353368 d __tracepoint_dev_pm_qos_update_request
+ffffffff823533b0 d __tracepoint_dev_pm_qos_remove_request
+ffffffff823533f8 d __tracepoint_guest_halt_poll_ns
+ffffffff82353440 d __tracepoint_rpm_suspend
+ffffffff82353488 d __tracepoint_rpm_resume
+ffffffff823534d0 d __tracepoint_rpm_idle
+ffffffff82353518 d __tracepoint_rpm_usage
+ffffffff82353560 d __tracepoint_rpm_return_int
+ffffffff823535a8 d __tracepoint_xdp_exception
+ffffffff823535f0 d __tracepoint_xdp_bulk_tx
+ffffffff82353638 d __tracepoint_xdp_redirect
+ffffffff82353680 d __tracepoint_xdp_redirect_err
+ffffffff823536c8 d __tracepoint_xdp_redirect_map
+ffffffff82353710 d __tracepoint_xdp_redirect_map_err
+ffffffff82353758 d __tracepoint_xdp_cpumap_kthread
+ffffffff823537a0 d __tracepoint_xdp_cpumap_enqueue
+ffffffff823537e8 d __tracepoint_xdp_devmap_xmit
+ffffffff82353830 d __tracepoint_mem_disconnect
+ffffffff82353878 d __tracepoint_mem_connect
+ffffffff823538c0 d __tracepoint_mem_return_failed
+ffffffff82353908 d __tracepoint_rseq_update
+ffffffff82353950 d __tracepoint_rseq_ip_fixup
+ffffffff82353998 d __tracepoint_mm_filemap_delete_from_page_cache
+ffffffff823539e0 d __tracepoint_mm_filemap_add_to_page_cache
+ffffffff82353a28 d __tracepoint_filemap_set_wb_err
+ffffffff82353a70 d __tracepoint_file_check_and_advance_wb_err
+ffffffff82353ab8 d __tracepoint_oom_score_adj_update
+ffffffff82353b00 d __tracepoint_mark_victim
+ffffffff82353b48 d __tracepoint_wake_reaper
+ffffffff82353b90 d __tracepoint_start_task_reaping
+ffffffff82353bd8 d __tracepoint_finish_task_reaping
+ffffffff82353c20 d __tracepoint_skip_task_reaping
+ffffffff82353c68 d __tracepoint_reclaim_retry_zone
+ffffffff82353cb0 d __tracepoint_compact_retry
+ffffffff82353cf8 d __tracepoint_mm_lru_insertion
+ffffffff82353d40 d __tracepoint_mm_lru_activate
+ffffffff82353d88 d __tracepoint_mm_vmscan_kswapd_sleep
+ffffffff82353dd0 d __tracepoint_mm_vmscan_kswapd_wake
+ffffffff82353e18 d __tracepoint_mm_vmscan_wakeup_kswapd
+ffffffff82353e60 d __tracepoint_mm_vmscan_direct_reclaim_begin
+ffffffff82353ea8 d __tracepoint_mm_vmscan_memcg_reclaim_begin
+ffffffff82353ef0 d __tracepoint_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff82353f38 d __tracepoint_mm_vmscan_direct_reclaim_end
+ffffffff82353f80 d __tracepoint_mm_vmscan_memcg_reclaim_end
+ffffffff82353fc8 d __tracepoint_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff82354010 d __tracepoint_mm_shrink_slab_start
+ffffffff82354058 d __tracepoint_mm_shrink_slab_end
+ffffffff823540a0 d __tracepoint_mm_vmscan_lru_isolate
+ffffffff823540e8 d __tracepoint_mm_vmscan_write_folio
+ffffffff82354130 d __tracepoint_mm_vmscan_lru_shrink_inactive
+ffffffff82354178 d __tracepoint_mm_vmscan_lru_shrink_active
+ffffffff823541c0 d __tracepoint_mm_vmscan_node_reclaim_begin
+ffffffff82354208 d __tracepoint_mm_vmscan_node_reclaim_end
+ffffffff82354250 d __tracepoint_mm_vmscan_throttled
+ffffffff82354298 d __tracepoint_percpu_alloc_percpu
+ffffffff823542e0 d __tracepoint_percpu_free_percpu
+ffffffff82354328 d __tracepoint_percpu_alloc_percpu_fail
+ffffffff82354370 d __tracepoint_percpu_create_chunk
+ffffffff823543b8 d __tracepoint_percpu_destroy_chunk
+ffffffff82354400 d __tracepoint_kmalloc
+ffffffff82354448 d __tracepoint_kfree
+ffffffff82354490 d __tracepoint_mm_page_free
+ffffffff823544d8 d __tracepoint_mm_page_free_batched
+ffffffff82354520 d __tracepoint_mm_page_alloc
+ffffffff82354568 d __tracepoint_mm_page_alloc_zone_locked
+ffffffff823545b0 d __tracepoint_mm_page_pcpu_drain
+ffffffff823545f8 d __tracepoint_mm_page_alloc_extfrag
+ffffffff82354640 d __tracepoint_rss_stat
+ffffffff82354688 d __tracepoint_kmem_cache_alloc
+ffffffff823546d0 d __tracepoint_kmem_cache_free
+ffffffff82354718 d __tracepoint_mm_compaction_isolate_migratepages
+ffffffff82354760 d __tracepoint_mm_compaction_isolate_freepages
+ffffffff823547a8 d __tracepoint_mm_compaction_migratepages
+ffffffff823547f0 d __tracepoint_mm_compaction_begin
+ffffffff82354838 d __tracepoint_mm_compaction_end
+ffffffff82354880 d __tracepoint_mm_compaction_try_to_compact_pages
+ffffffff823548c8 d __tracepoint_mm_compaction_finished
+ffffffff82354910 d __tracepoint_mm_compaction_suitable
+ffffffff82354958 d __tracepoint_mm_compaction_deferred
+ffffffff823549a0 d __tracepoint_mm_compaction_defer_compaction
+ffffffff823549e8 d __tracepoint_mm_compaction_defer_reset
+ffffffff82354a30 d __tracepoint_mm_compaction_kcompactd_sleep
+ffffffff82354a78 d __tracepoint_mm_compaction_wakeup_kcompactd
+ffffffff82354ac0 d __tracepoint_mm_compaction_kcompactd_wake
+ffffffff82354b08 d __tracepoint_mmap_lock_start_locking
+ffffffff82354b50 d __tracepoint_mmap_lock_released
+ffffffff82354b98 d __tracepoint_mmap_lock_acquire_returned
+ffffffff82354be0 d __tracepoint_vm_unmapped_area
+ffffffff82354c28 d __tracepoint_vma_mas_szero
+ffffffff82354c70 d __tracepoint_vma_store
+ffffffff82354cb8 d __tracepoint_exit_mmap
+ffffffff82354d00 d __tracepoint_tlb_flush
+ffffffff82354d48 d __tracepoint_mm_migrate_pages
+ffffffff82354d90 d __tracepoint_mm_migrate_pages_start
+ffffffff82354dd8 d __tracepoint_set_migration_pte
+ffffffff82354e20 d __tracepoint_remove_migration_pte
+ffffffff82354e68 d __tracepoint_hugepage_set_pmd
+ffffffff82354eb0 d __tracepoint_hugepage_update
+ffffffff82354ef8 d __tracepoint_set_migration_pmd
+ffffffff82354f40 d __tracepoint_remove_migration_pmd
+ffffffff82354f88 d __tracepoint_mm_khugepaged_scan_pmd
+ffffffff82354fd0 d __tracepoint_mm_collapse_huge_page
+ffffffff82355018 d __tracepoint_mm_collapse_huge_page_isolate
+ffffffff82355060 d __tracepoint_mm_collapse_huge_page_swapin
+ffffffff823550a8 d __tracepoint_mm_khugepaged_scan_file
+ffffffff823550f0 d __tracepoint_test_pages_isolated
+ffffffff82355138 d __tracepoint_damon_aggregated
+ffffffff82355180 d __tracepoint_writeback_mark_inode_dirty
+ffffffff823551c8 d __tracepoint_writeback_dirty_inode_start
+ffffffff82355210 d __tracepoint_writeback_dirty_inode
+ffffffff82355258 d __tracepoint_inode_foreign_history
+ffffffff823552a0 d __tracepoint_inode_switch_wbs
+ffffffff823552e8 d __tracepoint_track_foreign_dirty
+ffffffff82355330 d __tracepoint_flush_foreign
+ffffffff82355378 d __tracepoint_writeback_write_inode_start
+ffffffff823553c0 d __tracepoint_writeback_write_inode
+ffffffff82355408 d __tracepoint_writeback_queue
+ffffffff82355450 d __tracepoint_writeback_exec
+ffffffff82355498 d __tracepoint_writeback_start
+ffffffff823554e0 d __tracepoint_writeback_written
+ffffffff82355528 d __tracepoint_writeback_wait
+ffffffff82355570 d __tracepoint_writeback_pages_written
+ffffffff823555b8 d __tracepoint_writeback_wake_background
+ffffffff82355600 d __tracepoint_writeback_queue_io
+ffffffff82355648 d __tracepoint_writeback_sb_inodes_requeue
+ffffffff82355690 d __tracepoint_writeback_single_inode_start
+ffffffff823556d8 d __tracepoint_writeback_single_inode
+ffffffff82355720 d __tracepoint_writeback_lazytime
+ffffffff82355768 d __tracepoint_writeback_lazytime_iput
+ffffffff823557b0 d __tracepoint_writeback_dirty_inode_enqueue
+ffffffff823557f8 d __tracepoint_sb_mark_inode_writeback
+ffffffff82355840 d __tracepoint_sb_clear_inode_writeback
+ffffffff82355888 d __tracepoint_writeback_bdi_register
+ffffffff823558d0 d __tracepoint_global_dirty_state
+ffffffff82355918 d __tracepoint_bdi_dirty_ratelimit
+ffffffff82355960 d __tracepoint_balance_dirty_pages
+ffffffff823559a8 d __tracepoint_wbc_writepage
+ffffffff823559f0 d __tracepoint_writeback_dirty_folio
+ffffffff82355a38 d __tracepoint_folio_wait_writeback
+ffffffff82355a80 d __tracepoint_locks_get_lock_context
+ffffffff82355ac8 d __tracepoint_posix_lock_inode
+ffffffff82355b10 d __tracepoint_fcntl_setlk
+ffffffff82355b58 d __tracepoint_locks_remove_posix
+ffffffff82355ba0 d __tracepoint_flock_lock_inode
+ffffffff82355be8 d __tracepoint_break_lease_noblock
+ffffffff82355c30 d __tracepoint_break_lease_block
+ffffffff82355c78 d __tracepoint_break_lease_unblock
+ffffffff82355cc0 d __tracepoint_generic_delete_lease
+ffffffff82355d08 d __tracepoint_time_out_leases
+ffffffff82355d50 d __tracepoint_generic_add_lease
+ffffffff82355d98 d __tracepoint_leases_conflict
+ffffffff82355de0 d __tracepoint_iomap_readpage
+ffffffff82355e28 d __tracepoint_iomap_readahead
+ffffffff82355e70 d __tracepoint_iomap_writepage
+ffffffff82355eb8 d __tracepoint_iomap_release_folio
+ffffffff82355f00 d __tracepoint_iomap_invalidate_folio
+ffffffff82355f48 d __tracepoint_iomap_dio_invalidate_fail
+ffffffff82355f90 d __tracepoint_iomap_iter_dstmap
+ffffffff82355fd8 d __tracepoint_iomap_iter_srcmap
+ffffffff82356020 d __tracepoint_iomap_writepage_map
+ffffffff82356068 d __tracepoint_iomap_iter
+ffffffff823560b0 d __tracepoint_ext4_other_inode_update_time
+ffffffff823560f8 d __tracepoint_ext4_free_inode
+ffffffff82356140 d __tracepoint_ext4_request_inode
+ffffffff82356188 d __tracepoint_ext4_allocate_inode
+ffffffff823561d0 d __tracepoint_ext4_evict_inode
+ffffffff82356218 d __tracepoint_ext4_drop_inode
+ffffffff82356260 d __tracepoint_ext4_nfs_commit_metadata
+ffffffff823562a8 d __tracepoint_ext4_mark_inode_dirty
+ffffffff823562f0 d __tracepoint_ext4_begin_ordered_truncate
+ffffffff82356338 d __tracepoint_ext4_write_begin
+ffffffff82356380 d __tracepoint_ext4_da_write_begin
+ffffffff823563c8 d __tracepoint_ext4_write_end
+ffffffff82356410 d __tracepoint_ext4_journalled_write_end
+ffffffff82356458 d __tracepoint_ext4_da_write_end
+ffffffff823564a0 d __tracepoint_ext4_writepages
+ffffffff823564e8 d __tracepoint_ext4_da_write_pages
+ffffffff82356530 d __tracepoint_ext4_da_write_pages_extent
+ffffffff82356578 d __tracepoint_ext4_writepages_result
+ffffffff823565c0 d __tracepoint_ext4_writepage
+ffffffff82356608 d __tracepoint_ext4_readpage
+ffffffff82356650 d __tracepoint_ext4_releasepage
+ffffffff82356698 d __tracepoint_ext4_invalidate_folio
+ffffffff823566e0 d __tracepoint_ext4_journalled_invalidate_folio
+ffffffff82356728 d __tracepoint_ext4_discard_blocks
+ffffffff82356770 d __tracepoint_ext4_mb_new_inode_pa
+ffffffff823567b8 d __tracepoint_ext4_mb_new_group_pa
+ffffffff82356800 d __tracepoint_ext4_mb_release_inode_pa
+ffffffff82356848 d __tracepoint_ext4_mb_release_group_pa
+ffffffff82356890 d __tracepoint_ext4_discard_preallocations
+ffffffff823568d8 d __tracepoint_ext4_mb_discard_preallocations
+ffffffff82356920 d __tracepoint_ext4_request_blocks
+ffffffff82356968 d __tracepoint_ext4_allocate_blocks
+ffffffff823569b0 d __tracepoint_ext4_free_blocks
+ffffffff823569f8 d __tracepoint_ext4_sync_file_enter
+ffffffff82356a40 d __tracepoint_ext4_sync_file_exit
+ffffffff82356a88 d __tracepoint_ext4_sync_fs
+ffffffff82356ad0 d __tracepoint_ext4_alloc_da_blocks
+ffffffff82356b18 d __tracepoint_ext4_mballoc_alloc
+ffffffff82356b60 d __tracepoint_ext4_mballoc_prealloc
+ffffffff82356ba8 d __tracepoint_ext4_mballoc_discard
+ffffffff82356bf0 d __tracepoint_ext4_mballoc_free
+ffffffff82356c38 d __tracepoint_ext4_forget
+ffffffff82356c80 d __tracepoint_ext4_da_update_reserve_space
+ffffffff82356cc8 d __tracepoint_ext4_da_reserve_space
+ffffffff82356d10 d __tracepoint_ext4_da_release_space
+ffffffff82356d58 d __tracepoint_ext4_mb_bitmap_load
+ffffffff82356da0 d __tracepoint_ext4_mb_buddy_bitmap_load
+ffffffff82356de8 d __tracepoint_ext4_load_inode_bitmap
+ffffffff82356e30 d __tracepoint_ext4_read_block_bitmap_load
+ffffffff82356e78 d __tracepoint_ext4_punch_hole
+ffffffff82356ec0 d __tracepoint_ext4_unlink_enter
+ffffffff82356f08 d __tracepoint_ext4_unlink_exit
+ffffffff82356f50 d __tracepoint_ext4_truncate_enter
+ffffffff82356f98 d __tracepoint_ext4_truncate_exit
+ffffffff82356fe0 d __tracepoint_ext4_ind_map_blocks_enter
+ffffffff82357028 d __tracepoint_ext4_ind_map_blocks_exit
+ffffffff82357070 d __tracepoint_ext4_load_inode
+ffffffff823570b8 d __tracepoint_ext4_journal_start
+ffffffff82357100 d __tracepoint_ext4_journal_start_reserved
+ffffffff82357148 d __tracepoint_ext4_trim_extent
+ffffffff82357190 d __tracepoint_ext4_trim_all_free
+ffffffff823571d8 d __tracepoint_ext4_fsmap_low_key
+ffffffff82357220 d __tracepoint_ext4_fsmap_high_key
+ffffffff82357268 d __tracepoint_ext4_fsmap_mapping
+ffffffff823572b0 d __tracepoint_ext4_getfsmap_low_key
+ffffffff823572f8 d __tracepoint_ext4_getfsmap_high_key
+ffffffff82357340 d __tracepoint_ext4_getfsmap_mapping
+ffffffff82357388 d __tracepoint_ext4_shutdown
+ffffffff823573d0 d __tracepoint_ext4_error
+ffffffff82357418 d __tracepoint_ext4_prefetch_bitmaps
+ffffffff82357460 d __tracepoint_ext4_lazy_itable_init
+ffffffff823574a8 d __tracepoint_ext4_update_sb
+ffffffff823574f0 d __tracepoint_ext4_ext_load_extent
+ffffffff82357538 d __tracepoint_ext4_ext_remove_space
+ffffffff82357580 d __tracepoint_ext4_ext_rm_leaf
+ffffffff823575c8 d __tracepoint_ext4_remove_blocks
+ffffffff82357610 d __tracepoint_ext4_ext_rm_idx
+ffffffff82357658 d __tracepoint_ext4_ext_remove_space_done
+ffffffff823576a0 d __tracepoint_ext4_ext_map_blocks_enter
+ffffffff823576e8 d __tracepoint_ext4_ext_show_extent
+ffffffff82357730 d __tracepoint_ext4_ext_handle_unwritten_extents
+ffffffff82357778 d __tracepoint_ext4_ext_convert_to_initialized_enter
+ffffffff823577c0 d __tracepoint_ext4_ext_convert_to_initialized_fastpath
+ffffffff82357808 d __tracepoint_ext4_get_implied_cluster_alloc_exit
+ffffffff82357850 d __tracepoint_ext4_ext_map_blocks_exit
+ffffffff82357898 d __tracepoint_ext4_zero_range
+ffffffff823578e0 d __tracepoint_ext4_fallocate_enter
+ffffffff82357928 d __tracepoint_ext4_fallocate_exit
+ffffffff82357970 d __tracepoint_ext4_collapse_range
+ffffffff823579b8 d __tracepoint_ext4_insert_range
+ffffffff82357a00 d __tracepoint_ext4_es_find_extent_range_enter
+ffffffff82357a48 d __tracepoint_ext4_es_find_extent_range_exit
+ffffffff82357a90 d __tracepoint_ext4_es_insert_extent
+ffffffff82357ad8 d __tracepoint_ext4_es_cache_extent
+ffffffff82357b20 d __tracepoint_ext4_es_lookup_extent_enter
+ffffffff82357b68 d __tracepoint_ext4_es_lookup_extent_exit
+ffffffff82357bb0 d __tracepoint_ext4_es_remove_extent
+ffffffff82357bf8 d __tracepoint_ext4_es_shrink
+ffffffff82357c40 d __tracepoint_ext4_es_shrink_scan_enter
+ffffffff82357c88 d __tracepoint_ext4_es_shrink_scan_exit
+ffffffff82357cd0 d __tracepoint_ext4_es_shrink_count
+ffffffff82357d18 d __tracepoint_ext4_es_insert_delayed_block
+ffffffff82357d60 d __tracepoint_ext4_fc_track_unlink
+ffffffff82357da8 d __tracepoint_ext4_fc_track_link
+ffffffff82357df0 d __tracepoint_ext4_fc_track_create
+ffffffff82357e38 d __tracepoint_ext4_fc_track_inode
+ffffffff82357e80 d __tracepoint_ext4_fc_track_range
+ffffffff82357ec8 d __tracepoint_ext4_fc_commit_start
+ffffffff82357f10 d __tracepoint_ext4_fc_commit_stop
+ffffffff82357f58 d __tracepoint_ext4_fc_replay_scan
+ffffffff82357fa0 d __tracepoint_ext4_fc_replay
+ffffffff82357fe8 d __tracepoint_ext4_fc_cleanup
+ffffffff82358030 d __tracepoint_ext4_fc_stats
+ffffffff82358078 d __tracepoint_jbd2_checkpoint
+ffffffff823580c0 d __tracepoint_jbd2_start_commit
+ffffffff82358108 d __tracepoint_jbd2_commit_locking
+ffffffff82358150 d __tracepoint_jbd2_commit_flushing
+ffffffff82358198 d __tracepoint_jbd2_commit_logging
+ffffffff823581e0 d __tracepoint_jbd2_drop_transaction
+ffffffff82358228 d __tracepoint_jbd2_end_commit
+ffffffff82358270 d __tracepoint_jbd2_submit_inode_data
+ffffffff823582b8 d __tracepoint_jbd2_run_stats
+ffffffff82358300 d __tracepoint_jbd2_checkpoint_stats
+ffffffff82358348 d __tracepoint_jbd2_update_log_tail
+ffffffff82358390 d __tracepoint_jbd2_write_superblock
+ffffffff823583d8 d __tracepoint_jbd2_shrink_count
+ffffffff82358420 d __tracepoint_jbd2_shrink_scan_enter
+ffffffff82358468 d __tracepoint_jbd2_shrink_scan_exit
+ffffffff823584b0 d __tracepoint_jbd2_shrink_checkpoint_list
+ffffffff823584f8 d __tracepoint_jbd2_handle_start
+ffffffff82358540 d __tracepoint_jbd2_handle_extend
+ffffffff82358588 d __tracepoint_jbd2_handle_restart
+ffffffff823585d0 d __tracepoint_jbd2_lock_buffer_stall
+ffffffff82358618 d __tracepoint_jbd2_handle_stats
+ffffffff82358660 d __tracepoint_erofs_lookup
+ffffffff823586a8 d __tracepoint_erofs_readpage
+ffffffff823586f0 d __tracepoint_erofs_readpages
+ffffffff82358738 d __tracepoint_erofs_map_blocks_enter
+ffffffff82358780 d __tracepoint_z_erofs_map_blocks_iter_enter
+ffffffff823587c8 d __tracepoint_erofs_map_blocks_exit
+ffffffff82358810 d __tracepoint_z_erofs_map_blocks_iter_exit
+ffffffff82358858 d __tracepoint_erofs_destroy_inode
+ffffffff823588a0 d __tracepoint_erofs_fill_inode
+ffffffff823588e8 d __tracepoint_selinux_audited
+ffffffff82358930 d __tracepoint_block_touch_buffer
+ffffffff82358978 d __tracepoint_block_dirty_buffer
+ffffffff823589c0 d __tracepoint_block_rq_requeue
+ffffffff82358a08 d __tracepoint_block_rq_complete
+ffffffff82358a50 d __tracepoint_block_rq_error
+ffffffff82358a98 d __tracepoint_block_rq_insert
+ffffffff82358ae0 d __tracepoint_block_rq_issue
+ffffffff82358b28 d __tracepoint_block_rq_merge
+ffffffff82358b70 d __tracepoint_block_bio_complete
+ffffffff82358bb8 d __tracepoint_block_bio_bounce
+ffffffff82358c00 d __tracepoint_block_bio_backmerge
+ffffffff82358c48 d __tracepoint_block_bio_frontmerge
+ffffffff82358c90 d __tracepoint_block_bio_queue
+ffffffff82358cd8 d __tracepoint_block_getrq
+ffffffff82358d20 d __tracepoint_block_plug
+ffffffff82358d68 d __tracepoint_block_unplug
+ffffffff82358db0 d __tracepoint_block_split
+ffffffff82358df8 d __tracepoint_block_bio_remap
+ffffffff82358e40 d __tracepoint_block_rq_remap
+ffffffff82358e88 d __tracepoint_iocost_iocg_activate
+ffffffff82358ed0 d __tracepoint_iocost_iocg_idle
+ffffffff82358f18 d __tracepoint_iocost_inuse_shortage
+ffffffff82358f60 d __tracepoint_iocost_inuse_transfer
+ffffffff82358fa8 d __tracepoint_iocost_inuse_adjust
+ffffffff82358ff0 d __tracepoint_iocost_ioc_vrate_adj
+ffffffff82359038 d __tracepoint_iocost_iocg_forgive_debt
+ffffffff82359080 d __tracepoint_kyber_latency
+ffffffff823590c8 d __tracepoint_kyber_adjust
+ffffffff82359110 d __tracepoint_kyber_throttled
+ffffffff82359158 d __tracepoint_io_uring_create
+ffffffff823591a0 d __tracepoint_io_uring_register
+ffffffff823591e8 d __tracepoint_io_uring_file_get
+ffffffff82359230 d __tracepoint_io_uring_queue_async_work
+ffffffff82359278 d __tracepoint_io_uring_defer
+ffffffff823592c0 d __tracepoint_io_uring_link
+ffffffff82359308 d __tracepoint_io_uring_cqring_wait
+ffffffff82359350 d __tracepoint_io_uring_fail_link
+ffffffff82359398 d __tracepoint_io_uring_complete
+ffffffff823593e0 d __tracepoint_io_uring_submit_sqe
+ffffffff82359428 d __tracepoint_io_uring_req_failed
+ffffffff82359470 d __tracepoint_io_uring_cqe_overflow
+ffffffff823594b8 d __tracepoint_io_uring_task_work_run
+ffffffff82359500 d __tracepoint_io_uring_short_write
+ffffffff82359548 d __tracepoint_io_uring_local_work_run
+ffffffff82359590 d __tracepoint_io_uring_task_add
+ffffffff823595d8 d __tracepoint_io_uring_poll_arm
+ffffffff82359620 d __tracepoint_rdpmc
+ffffffff82359668 d __tracepoint_write_msr
+ffffffff823596b0 d __tracepoint_read_msr
+ffffffff823596f8 d __tracepoint_gpio_direction
+ffffffff82359740 d __tracepoint_gpio_value
+ffffffff82359788 d __tracepoint_add_device_to_group
+ffffffff823597d0 d __tracepoint_remove_device_from_group
+ffffffff82359818 d __tracepoint_attach_device_to_domain
+ffffffff82359860 d __tracepoint_detach_device_from_domain
+ffffffff823598a8 d __tracepoint_map
+ffffffff823598f0 d __tracepoint_unmap
+ffffffff82359938 d __tracepoint_io_page_fault
+ffffffff82359980 d __tracepoint_regmap_reg_write
+ffffffff823599c8 d __tracepoint_regmap_reg_read
+ffffffff82359a10 d __tracepoint_regmap_reg_read_cache
+ffffffff82359a58 d __tracepoint_regmap_bulk_write
+ffffffff82359aa0 d __tracepoint_regmap_bulk_read
+ffffffff82359ae8 d __tracepoint_regmap_hw_read_start
+ffffffff82359b30 d __tracepoint_regmap_hw_read_done
+ffffffff82359b78 d __tracepoint_regmap_hw_write_start
+ffffffff82359bc0 d __tracepoint_regmap_hw_write_done
+ffffffff82359c08 d __tracepoint_regcache_sync
+ffffffff82359c50 d __tracepoint_regmap_cache_only
+ffffffff82359c98 d __tracepoint_regmap_cache_bypass
+ffffffff82359ce0 d __tracepoint_regmap_async_write_start
+ffffffff82359d28 d __tracepoint_regmap_async_io_complete
+ffffffff82359d70 d __tracepoint_regmap_async_complete_start
+ffffffff82359db8 d __tracepoint_regmap_async_complete_done
+ffffffff82359e00 d __tracepoint_regcache_drop_region
+ffffffff82359e48 d __tracepoint_devres_log
+ffffffff82359e90 d __tracepoint_dma_fence_emit
+ffffffff82359ed8 d __tracepoint_dma_fence_init
+ffffffff82359f20 d __tracepoint_dma_fence_destroy
+ffffffff82359f68 d __tracepoint_dma_fence_enable_signal
+ffffffff82359fb0 d __tracepoint_dma_fence_signaled
+ffffffff82359ff8 d __tracepoint_dma_fence_wait_start
+ffffffff8235a040 d __tracepoint_dma_fence_wait_end
+ffffffff8235a088 d __tracepoint_rtc_set_time
+ffffffff8235a0d0 d __tracepoint_rtc_read_time
+ffffffff8235a118 d __tracepoint_rtc_set_alarm
+ffffffff8235a160 d __tracepoint_rtc_read_alarm
+ffffffff8235a1a8 d __tracepoint_rtc_irq_set_freq
+ffffffff8235a1f0 d __tracepoint_rtc_irq_set_state
+ffffffff8235a238 d __tracepoint_rtc_alarm_irq_enable
+ffffffff8235a280 d __tracepoint_rtc_set_offset
+ffffffff8235a2c8 d __tracepoint_rtc_read_offset
+ffffffff8235a310 d __tracepoint_rtc_timer_enqueue
+ffffffff8235a358 d __tracepoint_rtc_timer_dequeue
+ffffffff8235a3a0 d __tracepoint_rtc_timer_fired
+ffffffff8235a3e8 d __tracepoint_thermal_temperature
+ffffffff8235a430 d __tracepoint_cdev_update
+ffffffff8235a478 d __tracepoint_thermal_zone_trip
+ffffffff8235a4c0 d __tracepoint_thermal_power_cpu_get_power_simple
+ffffffff8235a508 d __tracepoint_thermal_power_cpu_limit
+ffffffff8235a550 d __tracepoint_watchdog_start
+ffffffff8235a598 d __tracepoint_watchdog_ping
+ffffffff8235a5e0 d __tracepoint_watchdog_stop
+ffffffff8235a628 d __tracepoint_watchdog_set_timeout
+ffffffff8235a670 d __tracepoint_mc_event
+ffffffff8235a6b8 d __tracepoint_arm_event
+ffffffff8235a700 d __tracepoint_non_standard_event
+ffffffff8235a748 d __tracepoint_aer_event
+ffffffff8235a790 d __tracepoint_kfree_skb
+ffffffff8235a7d8 d __tracepoint_consume_skb
+ffffffff8235a820 d __tracepoint_skb_copy_datagram_iovec
+ffffffff8235a868 d __tracepoint_net_dev_start_xmit
+ffffffff8235a8b0 d __tracepoint_net_dev_xmit
+ffffffff8235a8f8 d __tracepoint_net_dev_xmit_timeout
+ffffffff8235a940 d __tracepoint_net_dev_queue
+ffffffff8235a988 d __tracepoint_netif_receive_skb
+ffffffff8235a9d0 d __tracepoint_netif_rx
+ffffffff8235aa18 d __tracepoint_napi_gro_frags_entry
+ffffffff8235aa60 d __tracepoint_napi_gro_receive_entry
+ffffffff8235aaa8 d __tracepoint_netif_receive_skb_entry
+ffffffff8235aaf0 d __tracepoint_netif_receive_skb_list_entry
+ffffffff8235ab38 d __tracepoint_netif_rx_entry
+ffffffff8235ab80 d __tracepoint_napi_gro_frags_exit
+ffffffff8235abc8 d __tracepoint_napi_gro_receive_exit
+ffffffff8235ac10 d __tracepoint_netif_receive_skb_exit
+ffffffff8235ac58 d __tracepoint_netif_rx_exit
+ffffffff8235aca0 d __tracepoint_netif_receive_skb_list_exit
+ffffffff8235ace8 d __tracepoint_napi_poll
+ffffffff8235ad30 d __tracepoint_sock_rcvqueue_full
+ffffffff8235ad78 d __tracepoint_sock_exceed_buf_limit
+ffffffff8235adc0 d __tracepoint_inet_sock_set_state
+ffffffff8235ae08 d __tracepoint_inet_sk_error_report
+ffffffff8235ae50 d __tracepoint_udp_fail_queue_rcv_skb
+ffffffff8235ae98 d __tracepoint_tcp_retransmit_skb
+ffffffff8235aee0 d __tracepoint_tcp_send_reset
+ffffffff8235af28 d __tracepoint_tcp_receive_reset
+ffffffff8235af70 d __tracepoint_tcp_destroy_sock
+ffffffff8235afb8 d __tracepoint_tcp_rcv_space_adjust
+ffffffff8235b000 d __tracepoint_tcp_retransmit_synack
+ffffffff8235b048 d __tracepoint_tcp_probe
+ffffffff8235b090 d __tracepoint_tcp_bad_csum
+ffffffff8235b0d8 d __tracepoint_tcp_cong_state_set
+ffffffff8235b120 d __tracepoint_fib_table_lookup
+ffffffff8235b168 d __tracepoint_qdisc_dequeue
+ffffffff8235b1b0 d __tracepoint_qdisc_enqueue
+ffffffff8235b1f8 d __tracepoint_qdisc_reset
+ffffffff8235b240 d __tracepoint_qdisc_destroy
+ffffffff8235b288 d __tracepoint_qdisc_create
+ffffffff8235b2d0 d __tracepoint_br_fdb_add
+ffffffff8235b318 d __tracepoint_br_fdb_external_learn_add
+ffffffff8235b360 d __tracepoint_fdb_delete
+ffffffff8235b3a8 d __tracepoint_br_fdb_update
+ffffffff8235b3f0 d __tracepoint_neigh_create
+ffffffff8235b438 d __tracepoint_neigh_update
+ffffffff8235b480 d __tracepoint_neigh_update_done
+ffffffff8235b4c8 d __tracepoint_neigh_timer_handler
+ffffffff8235b510 d __tracepoint_neigh_event_send_done
+ffffffff8235b558 d __tracepoint_neigh_event_send_dead
+ffffffff8235b5a0 d __tracepoint_neigh_cleanup_and_release
+ffffffff8235b5e8 d __tracepoint_netlink_extack
+ffffffff8235b630 d __tracepoint_fib6_table_lookup
+ffffffff8235b678 d __tracepoint_virtio_transport_alloc_pkt
+ffffffff8235b6c0 d __tracepoint_virtio_transport_recv_pkt
+ffffffff8235b708 d __tracepoint_ma_op
+ffffffff8235b750 d __tracepoint_ma_read
+ffffffff8235b798 d __tracepoint_ma_write
+ffffffff8235b7e0 D __start___dyndbg
+ffffffff8235b7e0 D __start___dyndbg_classes
+ffffffff8235b7e0 D __start___trace_bprintk_fmt
+ffffffff8235b7e0 D __start___tracepoint_str
+ffffffff8235b7e0 D __stop___dyndbg
+ffffffff8235b7e0 D __stop___dyndbg_classes
+ffffffff8235b7e0 D __stop___trace_bprintk_fmt
+ffffffff8235b7e0 d freeze_secondary_cpus.___tp_str
+ffffffff8235b7e8 d freeze_secondary_cpus.___tp_str.9
+ffffffff8235b7f0 d thaw_secondary_cpus.___tp_str
+ffffffff8235b7f8 d thaw_secondary_cpus.___tp_str.14
+ffffffff8235b800 d thaw_processes.___tp_str
+ffffffff8235b808 d thaw_processes.___tp_str.4
+ffffffff8235b810 d suspend_devices_and_enter.___tp_str
+ffffffff8235b818 d suspend_devices_and_enter.___tp_str.8
+ffffffff8235b820 d suspend_enter.___tp_str
+ffffffff8235b828 d suspend_enter.___tp_str.21
+ffffffff8235b830 d s2idle_enter.___tp_str
+ffffffff8235b838 d s2idle_enter.___tp_str.22
+ffffffff8235b840 d enter_state.___tp_str
+ffffffff8235b848 d enter_state.___tp_str.25
+ffffffff8235b850 d enter_state.___tp_str.27
+ffffffff8235b858 d enter_state.___tp_str.28
+ffffffff8235b860 d suspend_prepare.___tp_str
+ffffffff8235b868 d suspend_prepare.___tp_str.30
+ffffffff8235b870 d tp_rcu_varname
+ffffffff8235b878 d rcutree_dying_cpu.___tp_str
+ffffffff8235b880 d rcutree_dying_cpu.___tp_str.2
+ffffffff8235b888 d rcu_sched_clock_irq.___tp_str
+ffffffff8235b890 d rcu_sched_clock_irq.___tp_str.6
+ffffffff8235b898 d call_rcu.___tp_str
+ffffffff8235b8a0 d rcu_barrier.___tp_str
+ffffffff8235b8a8 d rcu_barrier.___tp_str.12
+ffffffff8235b8b0 d rcu_barrier.___tp_str.14
+ffffffff8235b8b8 d rcu_barrier.___tp_str.16
+ffffffff8235b8c0 d rcu_barrier.___tp_str.18
+ffffffff8235b8c8 d rcu_barrier.___tp_str.20
+ffffffff8235b8d0 d rcu_barrier.___tp_str.22
+ffffffff8235b8d8 d rcutree_prepare_cpu.___tp_str
+ffffffff8235b8e0 d rcu_note_context_switch.___tp_str
+ffffffff8235b8e8 d rcu_note_context_switch.___tp_str.58
+ffffffff8235b8f0 d __note_gp_changes.___tp_str
+ffffffff8235b8f8 d __note_gp_changes.___tp_str.65
+ffffffff8235b900 d rcu_accelerate_cbs.___tp_str
+ffffffff8235b908 d rcu_accelerate_cbs.___tp_str.68
+ffffffff8235b910 d rcu_accelerate_cbs.___tp_str.70
+ffffffff8235b918 d rcu_accelerate_cbs.___tp_str.72
+ffffffff8235b920 d rcu_start_this_gp.___tp_str
+ffffffff8235b928 d rcu_start_this_gp.___tp_str.75
+ffffffff8235b930 d rcu_start_this_gp.___tp_str.77
+ffffffff8235b938 d rcu_start_this_gp.___tp_str.79
+ffffffff8235b940 d rcu_start_this_gp.___tp_str.81
+ffffffff8235b948 d rcu_start_this_gp.___tp_str.83
+ffffffff8235b950 d rcu_start_this_gp.___tp_str.85
+ffffffff8235b958 d print_cpu_stall.___tp_str
+ffffffff8235b960 d print_other_cpu_stall.___tp_str
+ffffffff8235b968 d rcu_barrier_entrain.___tp_str
+ffffffff8235b970 d rcu_barrier_entrain.___tp_str.127
+ffffffff8235b978 d rcu_barrier_callback.___tp_str
+ffffffff8235b980 d rcu_barrier_callback.___tp_str.130
+ffffffff8235b988 d rcu_gp_kthread.___tp_str
+ffffffff8235b990 d rcu_gp_kthread.___tp_str.135
+ffffffff8235b998 d rcu_gp_init.___tp_str
+ffffffff8235b9a0 d rcu_preempt_check_blocked_tasks.___tp_str
+ffffffff8235b9a8 d rcu_gp_fqs_loop.___tp_str
+ffffffff8235b9b0 d rcu_gp_fqs_loop.___tp_str.147
+ffffffff8235b9b8 d rcu_gp_fqs_loop.___tp_str.149
+ffffffff8235b9c0 d rcu_gp_fqs_loop.___tp_str.151
+ffffffff8235b9c8 d dyntick_save_progress_counter.___tp_str
+ffffffff8235b9d0 d rcu_implicit_dynticks_qs.___tp_str
+ffffffff8235b9d8 d rcu_gp_cleanup.___tp_str
+ffffffff8235b9e0 d rcu_gp_cleanup.___tp_str.157
+ffffffff8235b9e8 d rcu_gp_cleanup.___tp_str.159
+ffffffff8235b9f0 d rcu_future_gp_cleanup.___tp_str
+ffffffff8235b9f8 d rcu_future_gp_cleanup.___tp_str.160
+ffffffff8235ba00 d rcu_cpu_kthread.___tp_str
+ffffffff8235ba08 d rcu_cpu_kthread.___tp_str.165
+ffffffff8235ba10 d rcu_cpu_kthread.___tp_str.167
+ffffffff8235ba18 d rcu_cpu_kthread.___tp_str.169
+ffffffff8235ba20 d rcu_core.___tp_str
+ffffffff8235ba28 d rcu_core.___tp_str.172
+ffffffff8235ba30 d rcu_do_batch.___tp_str
+ffffffff8235ba38 d do_nocb_deferred_wakeup_timer.___tp_str
+ffffffff8235ba40 d do_nocb_deferred_wakeup_common.___tp_str
+ffffffff8235ba48 d __wake_nocb_gp.___tp_str
+ffffffff8235ba50 d __wake_nocb_gp.___tp_str.215
+ffffffff8235ba58 d rcu_exp_gp_seq_snap.___tp_str
+ffffffff8235ba60 d exp_funnel_lock.___tp_str
+ffffffff8235ba68 d exp_funnel_lock.___tp_str.234
+ffffffff8235ba70 d exp_funnel_lock.___tp_str.236
+ffffffff8235ba78 d sync_rcu_exp_select_cpus.___tp_str
+ffffffff8235ba80 d sync_rcu_exp_select_cpus.___tp_str.238
+ffffffff8235ba88 d __sync_rcu_exp_select_node_cpus.___tp_str
+ffffffff8235ba90 d rcu_exp_wait_wake.___tp_str
+ffffffff8235ba98 d rcu_exp_wait_wake.___tp_str.241
+ffffffff8235baa0 d synchronize_rcu_expedited_wait.___tp_str
+ffffffff8235baa8 d synchronize_rcu_expedited_wait.___tp_str.244
+ffffffff8235bab0 d sync_exp_work_done.___tp_str
+ffffffff8235bab8 d rcu_nocb_try_bypass.___tp_str
+ffffffff8235bac0 d rcu_nocb_try_bypass.___tp_str.256
+ffffffff8235bac8 d rcu_nocb_try_bypass.___tp_str.257
+ffffffff8235bad0 d rcu_nocb_try_bypass.___tp_str.259
+ffffffff8235bad8 d rcu_nocb_try_bypass.___tp_str.261
+ffffffff8235bae0 d __call_rcu_nocb_wake.___tp_str
+ffffffff8235bae8 d __call_rcu_nocb_wake.___tp_str.264
+ffffffff8235baf0 d __call_rcu_nocb_wake.___tp_str.266
+ffffffff8235baf8 d __call_rcu_nocb_wake.___tp_str.268
+ffffffff8235bb00 d __call_rcu_nocb_wake.___tp_str.270
+ffffffff8235bb08 d __call_rcu_nocb_wake.___tp_str.272
+ffffffff8235bb10 d nocb_gp_wait.___tp_str
+ffffffff8235bb18 d nocb_gp_wait.___tp_str.281
+ffffffff8235bb20 d nocb_gp_wait.___tp_str.283
+ffffffff8235bb28 d nocb_gp_wait.___tp_str.285
+ffffffff8235bb30 d nocb_gp_wait.___tp_str.287
+ffffffff8235bb38 d nocb_gp_wait.___tp_str.289
+ffffffff8235bb40 d nocb_gp_wait.___tp_str.291
+ffffffff8235bb48 d nocb_gp_sleep.___tp_str
+ffffffff8235bb50 d nocb_gp_sleep.___tp_str.294
+ffffffff8235bb58 d nocb_cb_wait.___tp_str
+ffffffff8235bb60 d nocb_cb_wait.___tp_str.297
+ffffffff8235bb68 d rcu_qs.___tp_str
+ffffffff8235bb70 d rcu_qs.___tp_str.339
+ffffffff8235bb78 d rcu_preempt_deferred_qs_irqrestore.___tp_str
+ffffffff8235bb80 d rcu_preempt_deferred_qs_irqrestore.___tp_str.341
+ffffffff8235bb88 d rcu_boost_kthread.___tp_str
+ffffffff8235bb90 d rcu_boost_kthread.___tp_str.345
+ffffffff8235bb98 d rcu_boost_kthread.___tp_str.347
+ffffffff8235bba0 d rcu_boost_kthread.___tp_str.349
+ffffffff8235bba8 d rcu_boost_kthread.___tp_str.351
+ffffffff8235bbb0 d tick_freeze.___tp_str
+ffffffff8235bbb8 d tick_unfreeze.___tp_str
+ffffffff8235bbc0 d ct_nmi_exit.___tp_str
+ffffffff8235bbc8 d ct_nmi_exit.___tp_str.2
+ffffffff8235bbd0 d ct_nmi_enter.___tp_str
+ffffffff8235bbd8 d ct_nmi_enter.___tp_str.5
+ffffffff8235bbe0 d ct_kernel_exit.___tp_str
+ffffffff8235bbe8 d ct_kernel_enter.___tp_str
+ffffffff8235bbf0 d acpi_suspend_enter.___tp_str
+ffffffff8235bbf8 d acpi_suspend_enter.___tp_str.35
+ffffffff8235bc00 d syscore_suspend.___tp_str
+ffffffff8235bc08 d syscore_suspend.___tp_str.5
+ffffffff8235bc10 d syscore_resume.___tp_str
+ffffffff8235bc18 d syscore_resume.___tp_str.11
+ffffffff8235bc20 d dpm_resume_early.___tp_str
+ffffffff8235bc28 d dpm_resume_early.___tp_str.4
+ffffffff8235bc30 d dpm_resume.___tp_str
+ffffffff8235bc38 d dpm_resume.___tp_str.7
+ffffffff8235bc40 d dpm_complete.___tp_str
+ffffffff8235bc48 d dpm_complete.___tp_str.9
+ffffffff8235bc50 d dpm_suspend_late.___tp_str
+ffffffff8235bc58 d dpm_suspend_late.___tp_str.13
+ffffffff8235bc60 d dpm_suspend.___tp_str
+ffffffff8235bc68 d dpm_suspend.___tp_str.16
+ffffffff8235bc70 d dpm_prepare.___tp_str
+ffffffff8235bc78 d dpm_prepare.___tp_str.20
+ffffffff8235bc80 d dpm_noirq_resume_devices.___tp_str
+ffffffff8235bc88 d dpm_noirq_resume_devices.___tp_str.27
+ffffffff8235bc90 d dpm_noirq_suspend_devices.___tp_str
+ffffffff8235bc98 d dpm_noirq_suspend_devices.___tp_str.62
+ffffffff8235bca0 D __stop___tracepoint_str
+ffffffff8235bcc0 d early_boot_irqs_disabled
+ffffffff8235bcc1 d static_key_initialized
+ffffffff8235bcc4 d system_state
+ffffffff8235bcc8 d vdso64_enabled
+ffffffff8235bccc d vclocks_used
+ffffffff8235bcd0 d x86_pmu
+ffffffff8235bf50 d hw_cache_event_ids
+ffffffff8235c0a0 d hw_cache_extra_regs
+ffffffff8235c1f0 d rapl_hw_unit
+ffffffff8235c210 d event_offsets
+ffffffff8235c310 d count_offsets
+ffffffff8235c410 d amd_pmu_global_cntr_mask
+ffffffff8235c420 d intel_nehalem_extra_regs
+ffffffff8235c480 d intel_perfmon_event_map
+ffffffff8235c4d0 d intel_slm_extra_regs
+ffffffff8235c530 d intel_glm_extra_regs
+ffffffff8235c590 d intel_tnt_extra_regs
+ffffffff8235c5f0 d intel_grt_extra_regs
+ffffffff8235c670 d intel_westmere_extra_regs
+ffffffff8235c6f0 d intel_snbep_extra_regs
+ffffffff8235c770 d intel_snb_extra_regs
+ffffffff8235c7f0 d intel_knl_extra_regs
+ffffffff8235c850 d intel_skl_extra_regs
+ffffffff8235c8f0 d intel_icl_extra_regs
+ffffffff8235c990 d intel_spr_extra_regs
+ffffffff8235ca70 d intel_v1_event_constraints
+ffffffff8235caa0 d intel_core_event_constraints
+ffffffff8235cbc0 d intel_core2_event_constraints
+ffffffff8235cdf0 d intel_nehalem_event_constraints
+ffffffff8235cfd0 d intel_gen_event_constraints
+ffffffff8235d070 d intel_slm_event_constraints
+ffffffff8235d110 d intel_westmere_event_constraints
+ffffffff8235d250 d intel_snb_event_constraints
+ffffffff8235d500 d intel_ivb_event_constraints
+ffffffff8235d7d0 d intel_v5_gen_event_constraints
+ffffffff8235da80 d zx_pmon_event_map
+ffffffff8235dad0 d zxc_event_constraints
+ffffffff8235db20 d zxd_event_constraints
+ffffffff8235dbc0 d ignore_nmis
+ffffffff8235dbc8 d boot_cpu_data
+ffffffff8235dce0 d panic_on_overflow
+ffffffff8235dce4 d force_iommu
+ffffffff8235dce8 d iommu_merge
+ffffffff8235dcec d iommu_detected
+ffffffff8235dcf0 d no_iommu
+ffffffff8235dcf4 d disable_dac_quirk
+ffffffff8235dcf8 d alternatives_patched
+ffffffff8235dcfc d tsc_unstable
+ffffffff8235dd00 d cpu_khz
+ffffffff8235dd04 d tsc_khz
+ffffffff8235dd08 d io_delay_type
+ffffffff8235dd0c d __max_die_per_package
+ffffffff8235dd10 d elf_hwcap2
+ffffffff8235dd14 d tlb_lli_4k
+ffffffff8235dd16 d tlb_lli_2m
+ffffffff8235dd18 d tlb_lli_4m
+ffffffff8235dd1a d tlb_lld_4k
+ffffffff8235dd1c d tlb_lld_2m
+ffffffff8235dd1e d tlb_lld_4m
+ffffffff8235dd20 d tlb_lld_1g
+ffffffff8235dd22 d ring3mwait_disabled
+ffffffff8235dd28 d targets_supported
+ffffffff8235dd30 d isa_irq_to_gsi
+ffffffff8235dd70 d __max_logical_packages
+ffffffff8235dd74 d __max_smt_threads
+ffffffff8235dd78 d logical_packages
+ffffffff8235dd7c d logical_die
+ffffffff8235dd80 d tsc_async_resets
+ffffffff8235dd88 d ioapic_chip
+ffffffff8235de90 d ioapic_ir_chip
+ffffffff8235df98 d lapic_chip
+ffffffff8235e0a0 d x86_cpu_to_logical_apicid
+ffffffff8235e0a8 d valid_flags
+ffffffff8235e0b0 d pvti_cpu0_va
+ffffffff8235e0b8 d sched_itmt_capable
+ffffffff8235e0bc d sysctl_sched_itmt_enabled
+ffffffff8235e0c0 d __default_kernel_pte_mask
+ffffffff8235e0c8 d __supported_pte_mask
+ffffffff8235e100 d va_align
+ffffffff8235e140 d tlb_single_page_flush_ceiling
+ffffffff8235e148 d pat_disabled
+ffffffff8235e149 d pat_bp_initialized
+ffffffff8235e14a d pat_bp_enabled
+ffffffff8235e14b d pat_cm_initialized
+ffffffff8235e14c d arch_task_struct_size
+ffffffff8235e150 d panic_on_warn
+ffffffff8235e154 d warn_limit
+ffffffff8235e158 d sysctl_oops_all_cpu_backtrace
+ffffffff8235e160 d cpu_smt_control
+ffffffff8235e168 d __cpu_dying_mask
+ffffffff8235e170 d __cpu_present_mask
+ffffffff8235e178 d __num_online_cpus
+ffffffff8235e180 d __cpu_online_mask
+ffffffff8235e188 d __cpu_possible_mask
+ffffffff8235e190 d __cpu_active_mask
+ffffffff8235e198 d print_fatal_signals
+ffffffff8235e1a0 d system_highpri_wq
+ffffffff8235e1a8 d system_unbound_wq
+ffffffff8235e1b0 d system_freezable_wq
+ffffffff8235e1b8 d system_power_efficient_wq
+ffffffff8235e1c0 d system_freezable_power_efficient_wq
+ffffffff8235e1c8 d system_long_wq
+ffffffff8235e1d0 d system_wq
+ffffffff8235e1d8 d task_group_cache
+ffffffff8235e1e0 d scheduler_running
+ffffffff8235e1e4 d sched_smp_initialized
+ffffffff8235e1e8 d sysctl_resched_latency_warn_ms
+ffffffff8235e1ec d sysctl_resched_latency_warn_once
+ffffffff8235e1f0 d sysctl_sched_features
+ffffffff8235e1f4 d sysctl_sched_nr_migrate
+ffffffff8235e1f8 d max_load_balance_interval
+ffffffff8235e200 d sysctl_sched_child_runs_first
+ffffffff8235e204 d sysctl_sched_migration_cost
+ffffffff8235e208 d cpu_idle_force_poll
+ffffffff8235e20c d sched_pelt_lshift
+ffffffff8235e210 d __sched_clock_offset
+ffffffff8235e218 d psi_period
+ffffffff8235e219 d sched_debug_verbose
+ffffffff8235e220 d __gtod_offset
+ffffffff8235e228 d psi_bug
+ffffffff8235e22c d freeze_timeout_msecs
+ffffffff8235e230 d s2idle_state
+ffffffff8235e234 d ignore_console_lock_warning
+ffffffff8235e238 d devkmsg_log
+ffffffff8235e23c d ignore_loglevel
+ffffffff8235e240 d suppress_panic_printk
+ffffffff8235e244 d keep_bootcon
+ffffffff8235e248 d suppress_printk
+ffffffff8235e24c d printk_delay_msec
+ffffffff8235e250 d noirqdebug
+ffffffff8235e254 d irqfixup
+ffffffff8235e258 d rcu_boot_ended
+ffffffff8235e25c d rcu_task_ipi_delay
+ffffffff8235e260 d rcu_task_stall_timeout
+ffffffff8235e264 d rcu_task_stall_info
+ffffffff8235e268 d rcu_task_stall_info_mult
+ffffffff8235e26c d rcu_task_enqueue_lim
+ffffffff8235e270 d rcu_task_contend_lim
+ffffffff8235e274 d rcu_task_collapse_lim
+ffffffff8235e278 d rcu_exp_cpu_stall_timeout
+ffffffff8235e27c d rcu_cpu_stall_timeout
+ffffffff8235e280 d rcu_cpu_stall_suppress
+ffffffff8235e284 d rcu_cpu_stall_ftrace_dump
+ffffffff8235e288 d rcu_cpu_stall_suppress_at_boot
+ffffffff8235e28c d big_cpu_lim
+ffffffff8235e290 d small_contention_lim
+ffffffff8235e294 d srcu_init_done
+ffffffff8235e298 d rcu_num_lvls
+ffffffff8235e29c d rcu_num_nodes
+ffffffff8235e2a0 d rcu_nocb_poll
+ffffffff8235e2a4 d sysctl_panic_on_rcu_stall
+ffffffff8235e2a8 d sysctl_max_rcu_stall_to_panic
+ffffffff8235e2ac d rcu_scheduler_fully_active
+ffffffff8235e2b0 d rcu_scheduler_active
+ffffffff8235e2b4 d dma_direct_map_resource.__print_once
+ffffffff8235e2b5 d swiotlb_tbl_map_single.__print_once
+ffffffff8235e2b8 d prof_on
+ffffffff8235e2bc d hrtimer_resolution
+ffffffff8235e2c0 d hrtimer_hres_enabled
+ffffffff8235e2c4 d timekeeping_suspended
+ffffffff8235e2c8 d tick_do_timer_cpu
+ffffffff8235e2d0 d tick_nohz_enabled
+ffffffff8235e2d8 d tick_nohz_active
+ffffffff8235e2e0 d __futex_data.0
+ffffffff8235e2f0 d __futex_data.1
+ffffffff8235e2f8 d nr_cpu_ids
+ffffffff8235e2fc d cgroup_feature_disable_mask
+ffffffff8235e2fe d have_canfork_callback
+ffffffff8235e300 d have_fork_callback
+ffffffff8235e302 d have_exit_callback
+ffffffff8235e304 d have_release_callback
+ffffffff8235e306 d cgroup_debug
+ffffffff8235e308 d cpuset_memory_pressure_enabled
+ffffffff8235e310 d audit_tree_mark_cachep
+ffffffff8235e318 d sysctl_hung_task_check_count
+ffffffff8235e320 d sysctl_hung_task_timeout_secs
+ffffffff8235e328 d sysctl_hung_task_warnings
+ffffffff8235e32c d sysctl_hung_task_panic
+ffffffff8235e330 d sysctl_hung_task_check_interval_secs
+ffffffff8235e338 d did_panic
+ffffffff8235e33c d sysctl_hung_task_all_cpu_backtrace
+ffffffff8235e340 d watchdog_user_enabled
+ffffffff8235e344 d nmi_watchdog_user_enabled
+ffffffff8235e348 d soft_watchdog_user_enabled
+ffffffff8235e34c d watchdog_thresh
+ffffffff8235e350 d watchdog_cpumask
+ffffffff8235e358 d softlockup_panic
+ffffffff8235e360 d watchdog_allowed_mask
+ffffffff8235e368 d watchdog_enabled
+ffffffff8235e370 d nmi_watchdog_available
+ffffffff8235e374 d sysctl_softlockup_all_cpu_backtrace
+ffffffff8235e378 d sample_period
+ffffffff8235e380 d softlockup_initialized
+ffffffff8235e388 d ftrace_exports_list
+ffffffff8235e390 d tracing_selftest_running
+ffffffff8235e398 d trace_types
+ffffffff8235e3a0 d tracing_buffer_mask
+ffffffff8235e3a8 d tracing_selftest_disabled
+ffffffff8235e3b0 d tracing_thresh
+ffffffff8235e3c0 d event_hash
+ffffffff8235e7c0 d trace_printk_enabled
+ffffffff8235e7c8 d nop_trace
+ffffffff8235e860 d sysctl_perf_event_paranoid
+ffffffff8235e864 d sysctl_perf_event_mlock
+ffffffff8235e868 d sysctl_perf_event_sample_rate
+ffffffff8235e86c d sysctl_perf_cpu_time_max_percent
+ffffffff8235e870 d max_samples_per_tick
+ffffffff8235e874 d perf_sample_period_ns
+ffffffff8235e878 d perf_sample_allowed_ns
+ffffffff8235e87c d nr_switch_events
+ffffffff8235e880 d nr_comm_events
+ffffffff8235e884 d nr_namespaces_events
+ffffffff8235e888 d nr_mmap_events
+ffffffff8235e88c d nr_ksymbol_events
+ffffffff8235e890 d nr_bpf_events
+ffffffff8235e894 d nr_text_poke_events
+ffffffff8235e898 d nr_build_id_events
+ffffffff8235e89c d nr_cgroup_events
+ffffffff8235e8a0 d nr_task_events
+ffffffff8235e8a4 d nr_freq_events
+ffffffff8235e8a8 d sysctl_perf_event_max_stack
+ffffffff8235e8ac d sysctl_perf_event_max_contexts_per_stack
+ffffffff8235e8b0 d oom_killer_disabled
+ffffffff8235e8b8 d lru_gen_min_ttl
+ffffffff8235e8c0 d shmem_huge
+ffffffff8235e8c8 d sysctl_overcommit_memory
+ffffffff8235e8cc d sysctl_overcommit_ratio
+ffffffff8235e8d0 d sysctl_overcommit_kbytes
+ffffffff8235e8d8 d sysctl_max_map_count
+ffffffff8235e8e0 d sysctl_user_reserve_kbytes
+ffffffff8235e8e8 d sysctl_admin_reserve_kbytes
+ffffffff8235e8f0 d sysctl_stat_interval
+ffffffff8235e8f4 d stable_pages_required_show.__print_once
+ffffffff8235e8f5 d pcpu_async_enabled
+ffffffff8235e8f8 d sysctl_compact_unevictable_allowed
+ffffffff8235e8fc d sysctl_compaction_proactiveness
+ffffffff8235e900 d bucket_order
+ffffffff8235e908 d randomize_va_space
+ffffffff8235e910 d highest_memmap_pfn
+ffffffff8235e918 d fault_around_bytes
+ffffffff8235e920 d zero_pfn
+ffffffff8235e928 d mmap_rnd_bits
+ffffffff8235e92c d vmap_initialized
+ffffffff8235e930 d watermark_boost_factor
+ffffffff8235e934 d _init_on_alloc_enabled_early
+ffffffff8235e935 d _init_on_free_enabled_early
+ffffffff8235e938 d totalreserve_pages
+ffffffff8235e940 d totalcma_pages
+ffffffff8235e948 d gfp_allowed_mask
+ffffffff8235e950 d node_states
+ffffffff8235e980 d page_group_by_mobility_disabled
+ffffffff8235e988 d _totalram_pages
+ffffffff8235e990 d online_policy
+ffffffff8235e994 d auto_movable_ratio
+ffffffff8235e9a0 d enable_vma_readahead
+ffffffff8235e9b0 d swapper_spaces
+ffffffff8235ea88 d kfence_sample_interval
+ffffffff8235ea90 d kfence_skip_covered_thresh
+ffffffff8235ea98 d kfence_deferrable
+ffffffff8235ea99 d kfence_check_on_panic
+ffffffff8235eaa0 d __kfence_pool
+ffffffff8235eaa8 d kfence_enabled
+ffffffff8235eaa9 d disabled_by_warn
+ffffffff8235eab0 d transparent_hugepage_flags
+ffffffff8235eab8 d huge_zero_pfn
+ffffffff8235eac0 d huge_zero_page
+ffffffff8235ead0 d mm_slot_cache
+ffffffff8235ead8 d khugepaged_pages_to_scan
+ffffffff8235eadc d khugepaged_max_ptes_none
+ffffffff8235eae0 d khugepaged_max_ptes_swap
+ffffffff8235eae4 d khugepaged_max_ptes_shared
+ffffffff8235eaf0 d mm_slots_hash
+ffffffff82360af0 d khugepaged_thread
+ffffffff82360af8 d khugepaged_scan_sleep_millisecs
+ffffffff82360afc d khugepaged_alloc_sleep_millisecs
+ffffffff82360b00 d soft_limit_tree
+ffffffff82360b10 d mem_cgroup_events_index
+ffffffff82360c90 d memory_cgrp_subsys
+ffffffff82360d80 d root_mem_cgroup
+ffffffff82360d88 d commit_inputs
+ffffffff82360d90 d min_age
+ffffffff82360d98 d monitor_region_start
+ffffffff82360da0 d monitor_region_end
+ffffffff82360da8 d kdamond_pid
+ffffffff82360dac d enabled
+ffffffff82360db0 d pr_dev_info
+ffffffff82360db8 d filp_cachep
+ffffffff82360dc0 d pipe_mnt
+ffffffff82360dc8 d sysctl_protected_hardlinks
+ffffffff82360dcc d sysctl_protected_symlinks
+ffffffff82360dd0 d sysctl_protected_fifos
+ffffffff82360dd4 d sysctl_protected_regular
+ffffffff82360dd8 d fasync_cache
+ffffffff82360de0 d names_cachep
+ffffffff82360de8 d dentry_cache
+ffffffff82360df0 d dentry_hashtable
+ffffffff82360df8 d d_hash_shift
+ffffffff82360dfc d sysctl_vfs_cache_pressure
+ffffffff82360e00 d inode_cachep
+ffffffff82360e08 d inode_hashtable
+ffffffff82360e10 d i_hash_shift
+ffffffff82360e14 d i_hash_mask
+ffffffff82360e18 d sysctl_nr_open
+ffffffff82360e20 d sysctl_mount_max
+ffffffff82360e28 d mnt_cache
+ffffffff82360e30 d m_hash_shift
+ffffffff82360e34 d m_hash_mask
+ffffffff82360e38 d mount_hashtable
+ffffffff82360e40 d mp_hash_shift
+ffffffff82360e44 d mp_hash_mask
+ffffffff82360e48 d mountpoint_hashtable
+ffffffff82360e50 d bh_cachep
+ffffffff82360e58 d dio_cache
+ffffffff82360e60 d inotify_max_queued_events
+ffffffff82360e68 d inotify_inode_mark_cachep
+ffffffff82360e70 d pwq_cache
+ffffffff82360e78 d ephead_cache
+ffffffff82360e80 d epi_cache
+ffffffff82360e88 d max_user_watches
+ffffffff82360e90 d anon_inode_mnt
+ffffffff82360e98 d userfaultfd_ctx_cachep
+ffffffff82360ea0 d sysctl_unprivileged_userfaultfd
+ffffffff82360ea8 d flctx_cache
+ffffffff82360eb0 d filelock_cache
+ffffffff82360eb8 d allow_sys_admin_access
+ffffffff82360ec0 d erofs_inode_cachep
+ffffffff82360ed0 d z_erofs_workqueue
+ffffffff82360ee0 d pcluster_pool
+ffffffff82361060 d iint_cache
+ffffffff82361068 d blockdev_superblock
+ffffffff82361070 d bdev_cachep
+ffffffff82361080 d bvec_slabs
+ffffffff823610e0 d blk_timeout_mask
+ffffffff823610e4 d debug_locks
+ffffffff823610e8 d debug_locks_silent
+ffffffff823610ec d percpu_counter_batch
+ffffffff823610f0 d vga_vram_base
+ffffffff823610f8 d vga_video_port_reg
+ffffffff823610fa d vga_video_port_val
+ffffffff823610fc d vga_video_type
+ffffffff82361100 d vga_vram_size
+ffffffff82361108 d vga_vram_end
+ffffffff82361110 d vga_default_font_height
+ffffffff82361114 d vga_scan_lines
+ffffffff82361118 d errata
+ffffffff82361124 d acpi_processor_get_info.__print_once
+ffffffff82361128 d ec_delay
+ffffffff8236112c d ec_max_queries
+ffffffff82361130 d ec_busy_polling
+ffffffff82361134 d ec_polling_guard
+ffffffff82361138 d ec_storm_threshold
+ffffffff8236113c d ec_freeze_events
+ffffffff8236113d d ec_no_wakeup
+ffffffff82361140 d ec_event_clearing
+ffffffff82361144 d acpi_ged_irq_handler.__print_once
+ffffffff82361145 d sleep_no_lps0
+ffffffff82361148 d lid_report_interval
+ffffffff82361150 d max_cstate
+ffffffff82361154 d nocst
+ffffffff82361155 d bm_check_disable
+ffffffff82361158 d latency_factor
+ffffffff8236115c d sysrq_always_enabled
+ffffffff82361160 d sysrq_enabled
+ffffffff82361164 d hvc_needs_init
+ffffffff82361168 d ratelimit_disable
+ffffffff8236116c d crng_init
+ffffffff82361170 d iommu_dma_strict
+ffffffff82361174 d iommu_def_domain_type
+ffffffff82361178 d iommu_cmd_line
+ffffffff8236117c d iommu_dma_forcedac
+ffffffff8236117d d iommu_dma_map_page.__print_once
+ffffffff82361180 d events_check_enabled
+ffffffff82361184 d pm_abort_suspend
+ffffffff82361188 d wakeup_irq.0
+ffffffff8236118c d wakeup_irq.1
+ffffffff82361190 d set_badblock.__print_once
+ffffffff82361198 d dax_superblock
+ffffffff823611a0 d dax_cache
+ffffffff823611a8 d lvtthmr_init
+ffffffff823611ac d off
+ffffffff823611b0 d hwp_active
+ffffffff823611b4 d hwp_mode_bdw
+ffffffff823611b8 d pstate_funcs.0
+ffffffff823611c0 d pstate_funcs.1
+ffffffff823611c8 d pstate_funcs.2
+ffffffff823611d0 d pstate_funcs.3
+ffffffff823611d8 d pstate_funcs.4
+ffffffff823611e0 d pstate_funcs.5
+ffffffff823611e8 d pstate_funcs.6
+ffffffff823611f0 d pstate_funcs.7
+ffffffff823611f8 d pstate_funcs.8
+ffffffff82361200 d intel_pstate_driver
+ffffffff82361208 d hwp_boost
+ffffffff82361209 d per_cpu_limits
+ffffffff8236120c d off
+ffffffff82361210 d initialized
+ffffffff82361211 d force
+ffffffff82361218 d efi
+ffffffff82361320 d pmtmr_ioport
+ffffffff82361330 d sock_mnt
+ffffffff82361340 d net_families
+ffffffff823614b0 d sysctl_net_busy_poll
+ffffffff823614b4 d sysctl_net_busy_read
+ffffffff823614b8 d sysctl_wmem_max
+ffffffff823614bc d sysctl_rmem_max
+ffffffff823614c0 d sysctl_wmem_default
+ffffffff823614c4 d sysctl_rmem_default
+ffffffff823614c8 d sysctl_optmem_max
+ffffffff823614cc d sysctl_tstamp_allow_data
+ffffffff823614d0 d sock_set_timeout.warned
+ffffffff823614d8 d sysctl_max_skb_frags
+ffffffff823614e0 d crc32c_csum_stub
+ffffffff823614e8 d flow_keys_dissector_symmetric
+ffffffff8236152c d flow_keys_dissector
+ffffffff82361570 d flow_keys_basic_dissector
+ffffffff823615b4 d sysctl_fb_tunnels_only_for_init_net
+ffffffff823615b8 d sysctl_devconf_inherit_init_net
+ffffffff823615c0 d ptype_all
+ffffffff823615d0 d xps_needed
+ffffffff823615e0 d xps_rxqs_needed
+ffffffff823615f0 d netdev_max_backlog
+ffffffff823615f4 d netdev_tstamp_prequeue
+ffffffff823615f8 d netdev_budget
+ffffffff823615fc d netdev_budget_usecs
+ffffffff82361600 d weight_p
+ffffffff82361604 d dev_weight_rx_bias
+ffffffff82361608 d dev_weight_tx_bias
+ffffffff8236160c d dev_rx_weight
+ffffffff82361610 d dev_tx_weight
+ffffffff82361618 d rps_sock_flow_table
+ffffffff82361620 d rps_cpu_mask
+ffffffff82361628 d rps_needed
+ffffffff82361638 d rfs_needed
+ffffffff82361648 d netdev_flow_limit_table_len
+ffffffff8236164c d netdev_unregister_timeout_secs
+ffffffff82361650 d ptype_base
+ffffffff82361750 d napi_hash
+ffffffff82361f50 d sysctl_skb_defer_max
+ffffffff82361f60 d neigh_tables
+ffffffff82361f78 d neigh_sysctl_template
+ffffffff82362500 d ipv6_bpf_stub
+ffffffff82362508 d gro_normal_batch
+ffffffff82362510 d offload_base
+ffffffff82362520 d eth_packet_offload
+ffffffff82362550 d pfifo_fast_ops
+ffffffff82362608 d noop_qdisc_ops
+ffffffff823626c0 d noqueue_qdisc_ops
+ffffffff82362778 d mq_qdisc_ops
+ffffffff82362830 d nl_table
+ffffffff82362840 d netdev_rss_key
+ffffffff82362874 d ethnl_ok
+ffffffff82362878 d ip_rt_redirect_silence
+ffffffff8236287c d ip_rt_redirect_number
+ffffffff82362880 d ip_rt_redirect_load
+ffffffff82362884 d ip_idents_mask
+ffffffff82362888 d ip_idents
+ffffffff82362890 d ip_tstamps
+ffffffff82362898 d ip_rt_gc_timeout
+ffffffff8236289c d ip_rt_error_burst
+ffffffff823628a0 d ip_rt_error_cost
+ffffffff823628a4 d ip_min_valid_pmtu
+ffffffff823628a8 d ip_rt_gc_min_interval
+ffffffff823628ac d ip_rt_gc_interval
+ffffffff823628b0 d ip_rt_gc_elasticity
+ffffffff823628b4 d inet_peer_minttl
+ffffffff823628b8 d inet_peer_maxttl
+ffffffff823628bc d inet_peer_threshold
+ffffffff823628c0 d inet_protos
+ffffffff823630c0 d inet_offloads
+ffffffff823638c0 d inet_ehashfn.inet_ehash_secret
+ffffffff823638d0 d sysctl_tcp_mem
+ffffffff823638e8 d tcp_memory_pressure
+ffffffff823638f0 d tcp_gro_dev_warn.__once
+ffffffff823638f4 d sysctl_tcp_max_orphans
+ffffffff823638f8 d tcp_request_sock_ops
+ffffffff82363938 d tcp_metrics_hash_log
+ffffffff82363940 d tcp_metrics_hash
+ffffffff82363950 d sysctl_udp_mem
+ffffffff82363968 d udp_flow_hashrnd.hashrnd
+ffffffff8236396c d udp_busylocks_log
+ffffffff82363970 d udp_busylocks
+ffffffff82363978 d udp_ehashfn.udp_ehash_secret
+ffffffff82363980 d udp_table
+ffffffff82363998 d udplite_table
+ffffffff823639b0 d arp_packet_type
+ffffffff82363a18 d sysctl_icmp_msgs_per_sec
+ffffffff82363a1c d sysctl_icmp_msgs_burst
+ffffffff82363a20 d inet_af_ops
+ffffffff82363a68 d ip_packet_offload
+ffffffff82363a98 d ip_packet_type
+ffffffff82363b00 d iptun_encaps
+ffffffff82363b40 d ip6tun_encaps
+ffffffff82363b80 d sysctl_tcp_low_latency
+ffffffff82363b88 d ipip_link_ops
+ffffffff82363c58 d ipip_handler
+ffffffff82363c80 d ipip_net_id
+ffffffff82363c90 d gre_proto
+ffffffff82363ca0 d ipgre_tap_ops
+ffffffff82363d70 d ipgre_link_ops
+ffffffff82363e40 d erspan_link_ops
+ffffffff82363f10 d gre_tap_net_id
+ffffffff82363f14 d ipgre_net_id
+ffffffff82363f18 d erspan_net_id
+ffffffff82363f20 d vti_link_ops
+ffffffff82363ff0 d vti_ipcomp4_protocol
+ffffffff82364020 d vti_ah4_protocol
+ffffffff82364050 d vti_esp4_protocol
+ffffffff82364080 d vti_net_id
+ffffffff82364088 d tunnel4_handlers
+ffffffff82364090 d tunnel64_handlers
+ffffffff82364098 d tunnelmpls4_handlers
+ffffffff823640c0 d fast_convergence
+ffffffff823640c4 d beta
+ffffffff823640c8 d initial_ssthresh
+ffffffff823640cc d bic_scale
+ffffffff823640d0 d tcp_friendliness
+ffffffff823640d4 d hystart
+ffffffff823640d8 d hystart_detect
+ffffffff823640dc d hystart_low_window
+ffffffff823640e0 d hystart_ack_delta_us
+ffffffff82364100 d cubictcp
+ffffffff823641c0 d cube_factor
+ffffffff823641c8 d cube_rtt_scale
+ffffffff823641cc d beta_scale
+ffffffff823641d0 d esp4_handlers
+ffffffff823641d8 d ah4_handlers
+ffffffff823641e0 d ipcomp4_handlers
+ffffffff823641f0 d xfrm_policy_afinfo
+ffffffff82364248 d xfrm_if_cb
+ffffffff82364250 d xfrmi_link_ops
+ffffffff82364320 d xfrmi_net_id
+ffffffff82364328 d xfrmi_ipcomp4_protocol
+ffffffff82364358 d xfrmi_ah4_protocol
+ffffffff82364388 d xfrmi_esp4_protocol
+ffffffff823643b8 d xfrmi_ip6ip_handler
+ffffffff823643e0 d xfrmi_ipv6_handler
+ffffffff82364408 d xfrmi_ipcomp6_protocol
+ffffffff82364438 d xfrmi_ah6_protocol
+ffffffff82364468 d xfrmi_esp6_protocol
+ffffffff82364498 d ipv6_packet_type
+ffffffff82364500 d inet6_ops
+ffffffff82364548 d ipv6_devconf
+ffffffff82364660 d ipv6_devconf_dflt
+ffffffff82364778 d fib6_node_kmem
+ffffffff82364780 d udp6_ehashfn.udp6_ehash_secret
+ffffffff82364784 d udp6_ehashfn.udp_ipv6_hash_secret
+ffffffff82364788 d mh_filter
+ffffffff82364790 d sysctl_mld_max_msf
+ffffffff82364794 d sysctl_mld_qrv
+ffffffff82364798 d tcp6_request_sock_ops
+ffffffff823647d8 d esp6_handlers
+ffffffff823647e0 d ah6_handlers
+ffffffff823647e8 d ipcomp6_handlers
+ffffffff823647f0 d xfrm46_tunnel_handler
+ffffffff82364818 d xfrm6_tunnel_handler
+ffffffff82364840 d xfrm6_tunnel_spi_kmem
+ffffffff82364848 d xfrm6_tunnel_net_id
+ffffffff82364850 d tunnel6_handlers
+ffffffff82364858 d tunnel46_handlers
+ffffffff82364860 d tunnelmpls6_handlers
+ffffffff82364868 d vti6_link_ops
+ffffffff82364938 d vti_ip6ip_handler
+ffffffff82364960 d vti_ipv6_handler
+ffffffff82364988 d vti_ipcomp6_protocol
+ffffffff823649b8 d vti_ah6_protocol
+ffffffff823649e8 d vti_esp6_protocol
+ffffffff82364a18 d vti6_net_id
+ffffffff82364a20 d sit_link_ops
+ffffffff82364af0 d sit_handler
+ffffffff82364b18 d ipip_handler
+ffffffff82364b40 d sit_net_id
+ffffffff82364b48 d ip6_link_ops
+ffffffff82364c18 d ip4ip6_handler
+ffffffff82364c40 d ip6ip6_handler
+ffffffff82364c68 d ip6_tnl_net_id
+ffffffff82364c70 d ip6gre_tap_ops
+ffffffff82364d40 d ip6gre_link_ops
+ffffffff82364e10 d ip6erspan_tap_ops
+ffffffff82364ee0 d ip6gre_protocol
+ffffffff82364ef8 d ip6gre_net_id
+ffffffff82364f00 d ipv6_stub
+ffffffff82364f10 d inet6_protos
+ffffffff82365710 d inet6_offloads
+ffffffff82365f10 d ipv6_packet_offload
+ffffffff82365f40 d inet6_ehashfn.inet6_ehash_secret
+ffffffff82365f44 d inet6_ehashfn.ipv6_hash_secret
+ffffffff82365f48 d pfkey_net_id
+ffffffff82365f50 d vsock_tap_all
+ffffffff82365f60 d raw_pci_ext_ops
+ffffffff82365f68 d raw_pci_ops
+ffffffff82365f70 d backtrace_mask
+ffffffff82365f78 d ptr_key
+ffffffff82365f88 d filled_random_ptr_key
+ffffffff82365f8c d kptr_restrict
+ffffffff82365fc0 D __start___bug_table
+ffffffff82365fc0 D _edata
+ffffffff8237bce0 D __stop___bug_table
+ffffffff8237c000 D __vvar_beginning_hack
+ffffffff8237c000 D __vvar_page
+ffffffff8237c080 d _vdso_data
+ffffffff8237d000 D __init_begin
+ffffffff8237d000 D __per_cpu_load
+ffffffff8237d000 D init_per_cpu__fixed_percpu_data
+ffffffff8237f000 D init_per_cpu__irq_stack_backing_store
+ffffffff82388000 D init_per_cpu__gdt_page
+ffffffff823aa000 T _sinittext
+ffffffff823aa000 T early_idt_handler_array
+ffffffff823aa120 t early_idt_handler_common
+ffffffff823aa15a T __initstub__kmod_cpu__339_407_bsp_pm_check_init1
+ffffffff823aa173 T __initstub__kmod_cpu__341_544_pm_check_save_msr6
+ffffffff823aa238 t __early_make_pgtable
+ffffffff823aa5e8 t do_early_exception
+ffffffff823aa633 t clear_bss
+ffffffff823aa67c t x86_64_start_kernel
+ffffffff823aa7a7 t copy_bootdata
+ffffffff823aa855 t x86_64_start_reservations
+ffffffff823aa880 t reserve_bios_regions
+ffffffff823aa8e3 t x86_early_init_platform_quirks
+ffffffff823aa974 t x86_pnpbios_disabled
+ffffffff823aa989 t set_reset_devices
+ffffffff823aa9a3 t debug_kernel
+ffffffff823aa9ba t quiet_kernel
+ffffffff823aa9d1 t loglevel
+ffffffff823aaa34 t warn_bootconfig
+ffffffff823aaa41 t init_setup
+ffffffff823aaa6b t rdinit_setup
+ffffffff823aaa95 t parse_early_options
+ffffffff823aaac4 t do_early_param
+ffffffff823aab65 t parse_early_param
+ffffffff823aabc0 t smp_setup_processor_id
+ffffffff823aabcb t thread_stack_cache_init
+ffffffff823aabd6 t mem_encrypt_init
+ffffffff823aabe1 t pgtable_cache_init
+ffffffff823aabec t early_randomize_kstack_offset
+ffffffff823aac60 t arch_call_rest_init
+ffffffff823aac69 t start_kernel
+ffffffff823ab121 t setup_boot_config
+ffffffff823ab2a0 t setup_command_line
+ffffffff823ab477 t unknown_bootoption
+ffffffff823ab56e t print_unknown_bootoptions
+ffffffff823ab6c7 t set_init_arg
+ffffffff823ab736 t mm_init
+ffffffff823ab786 t initcall_debug_enable
+ffffffff823ab7dd t initcall_blacklist
+ffffffff823ab926 t set_debug_rodata
+ffffffff823ab984 t console_on_rootfs
+ffffffff823ab9dd t get_boot_config_from_initrd
+ffffffff823abaad t bootconfig_params
+ffffffff823abad1 t xbc_make_cmdline
+ffffffff823abb7d t xbc_snprint_cmdline
+ffffffff823abcc3 t repair_env_string
+ffffffff823abd23 t obsolete_checksetup
+ffffffff823abdd4 t report_meminit
+ffffffff823abe24 t kernel_init_freeable
+ffffffff823abf7c t do_pre_smp_initcalls
+ffffffff823ac00e t do_basic_setup
+ffffffff823ac02d t do_initcalls
+ffffffff823ac0a9 t do_initcall_level
+ffffffff823ac1a2 t ignore_unknown_bootoption
+ffffffff823ac1af t early_hostname
+ffffffff823ac1e9 t load_ramdisk
+ffffffff823ac205 t readonly
+ffffffff823ac223 t readwrite
+ffffffff823ac241 t root_dev_setup
+ffffffff823ac265 t rootwait_setup
+ffffffff823ac283 t root_data_setup
+ffffffff823ac29a t fs_names_setup
+ffffffff823ac2b1 t root_delay_setup
+ffffffff823ac2d0 t mount_block_root
+ffffffff823ac4d0 t split_fs_names
+ffffffff823ac50d t do_mount_root
+ffffffff823ac643 t mount_root
+ffffffff823ac6a4 t mount_nodev_root
+ffffffff823ac750 t create_dev
+ffffffff823ac7a6 t prepare_namespace
+ffffffff823ac91f t init_rootfs
+ffffffff823ac957 t prompt_ramdisk
+ffffffff823ac973 t ramdisk_start_setup
+ffffffff823ac992 t rd_load_image
+ffffffff823acc5e t identify_ramdisk_image
+ffffffff823aceba t crd_load
+ffffffff823acf1b t rd_load_disk
+ffffffff823acf5c t create_dev
+ffffffff823acfae t compr_fill
+ffffffff823acff8 t compr_flush
+ffffffff823ad054 t error
+ffffffff823ad075 t __initstub__kmod_mounts__320_40_kernel_do_mounts_initrd_sysctls_init7
+ffffffff823ad09c t no_initrd
+ffffffff823ad0b3 t early_initrdmem
+ffffffff823ad125 t early_initrd
+ffffffff823ad137 t initrd_load
+ffffffff823ad1d3 t handle_initrd
+ffffffff823ad3c1 t init_linuxrc
+ffffffff823ad417 t retain_initrd_param
+ffffffff823ad435 t initramfs_async_setup
+ffffffff823ad451 t reserve_initrd_mem
+ffffffff823ad540 t __initstub__kmod_initramfs__290_762_populate_rootfsrootfs
+ffffffff823ad552 t populate_rootfs
+ffffffff823ad593 t do_populate_rootfs
+ffffffff823ad64f t unpack_to_rootfs
+ffffffff823ad8f5 t populate_initrd_image
+ffffffff823ad9c4 t kexec_free_initrd
+ffffffff823ada44 t flush_buffer
+ffffffff823adaf1 t error
+ffffffff823adb0d t dir_utime
+ffffffff823adbde t do_start
+ffffffff823adc59 t do_collect
+ffffffff823adcf9 t do_header
+ffffffff823adeb5 t do_skip
+ffffffff823adf36 t do_name
+ffffffff823ae15b t do_copy
+ffffffff823ae2d1 t do_symlink
+ffffffff823ae3b1 t do_reset
+ffffffff823ae424 t parse_header
+ffffffff823ae55d t free_hash
+ffffffff823ae59b t clean_path
+ffffffff823ae650 t maybe_link
+ffffffff823ae6c3 t dir_add
+ffffffff823ae75f t find_link
+ffffffff823ae852 t xwrite
+ffffffff823ae8ec t lpj_setup
+ffffffff823ae90c t init_vdso_image
+ffffffff823ae93a t vdso_setup
+ffffffff823ae959 t __initstub__kmod_vma__343_458_init_vdso4
+ffffffff823ae972 t vsyscall_setup
+ffffffff823ae9e1 t set_vsyscall_pgtable_user_bits
+ffffffff823aeafb t map_vsyscall
+ffffffff823aeb66 t __initstub__kmod_core__340_2226_init_hw_perf_eventsearly
+ffffffff823aeb76 t init_hw_perf_events
+ffffffff823af25b t pmu_check_apic
+ffffffff823af29e t __initstub__kmod_rapl__286_867_rapl_pmu_init6
+ffffffff823af2ae t rapl_pmu_init
+ffffffff823af42c t init_rapl_pmus
+ffffffff823af4db t rapl_advertise
+ffffffff823af559 t amd_pmu_init
+ffffffff823af5e7 t amd_core_pmu_init
+ffffffff823af862 t amd_pmu_lbr_init
+ffffffff823af8b1 t __initstub__kmod_ibs__298_1542_amd_ibs_init6
+ffffffff823af8c1 t amd_ibs_init
+ffffffff823af943 t __get_ibs_caps
+ffffffff823af98d t perf_event_ibs_init
+ffffffff823afa2f t perf_ibs_fetch_init
+ffffffff823afa99 t perf_ibs_op_init
+ffffffff823afb09 t perf_ibs_pmu_init
+ffffffff823afb88 t __initstub__kmod_amd_uncore__294_785_amd_uncore_init6
+ffffffff823afb98 t amd_uncore_init
+ffffffff823afef6 t __initstub__kmod_msr__284_316_msr_init6
+ffffffff823aff08 t msr_init
+ffffffff823aff65 t intel_pmu_init
+ffffffff823b1d30 t intel_arch_events_quirk
+ffffffff823b1dd8 t intel_clovertown_quirk
+ffffffff823b1e01 t intel_nehalem_quirk
+ffffffff823b1e3a t intel_sandybridge_quirk
+ffffffff823b1e5f t intel_ht_bug
+ffffffff823b1e92 t intel_pebs_isolation_quirk
+ffffffff823b1ede t __initstub__kmod_core__341_6656_fixup_ht_bug4
+ffffffff823b1ef0 t fixup_ht_bug
+ffffffff823b1fd7 t __initstub__kmod_bts__288_625_bts_init3
+ffffffff823b1fe7 t bts_init
+ffffffff823b20a8 t intel_pmu_pebs_data_source_nhm
+ffffffff823b20d9 t intel_pmu_pebs_data_source_skl
+ffffffff823b2153 t intel_pmu_pebs_data_source_grt
+ffffffff823b218d t intel_pmu_pebs_data_source_adl
+ffffffff823b2257 t intel_ds_init
+ffffffff823b24a1 t knc_pmu_init
+ffffffff823b24de t intel_pmu_lbr_init_core
+ffffffff823b250e t intel_pmu_lbr_init_nhm
+ffffffff823b2554 t intel_pmu_lbr_init_snb
+ffffffff823b259a t intel_pmu_lbr_init_skl
+ffffffff823b2620 t intel_pmu_lbr_init_atom
+ffffffff823b2670 t intel_pmu_lbr_init_slm
+ffffffff823b26c2 t intel_pmu_arch_lbr_init
+ffffffff823b29ca t p4_pmu_init
+ffffffff823b2ab0 t p6_pmu_init
+ffffffff823b2b36 t p6_pmu_rdpmc_quirk
+ffffffff823b2b63 t __initstub__kmod_pt__309_1814_pt_init3
+ffffffff823b2b73 t pt_init
+ffffffff823b2d5a t pt_pmu_hw_init
+ffffffff823b2eef t __initstub__kmod_intel_uncore__293_1913_intel_uncore_init6
+ffffffff823b2eff t intel_uncore_init
+ffffffff823b306f t uncore_pci_init
+ffffffff823b3420 t uncore_cpu_init
+ffffffff823b3488 t uncore_mmio_init
+ffffffff823b350a t uncore_type_init
+ffffffff823b373d t uncore_msr_pmus_register
+ffffffff823b377e t type_pmu_register
+ffffffff823b37ca t __initstub__kmod_intel_cstate__289_787_cstate_pmu_init6
+ffffffff823b37da t cstate_pmu_init
+ffffffff823b3822 t cstate_probe
+ffffffff823b38c4 t cstate_init
+ffffffff823b3a1f t zhaoxin_pmu_init
+ffffffff823b3cb2 t zhaoxin_arch_events_quirk
+ffffffff823b3d5a t reserve_real_mode
+ffffffff823b3de2 t init_real_mode
+ffffffff823b3e0d t setup_real_mode
+ffffffff823b3f75 t set_real_mode_permissions
+ffffffff823b405a t __initstub__kmod_init__259_217_do_init_real_modeearly
+ffffffff823b4074 t init_sigframe_size
+ffffffff823b40ad t strict_sas_size
+ffffffff823b40cd t trap_init
+ffffffff823b40ec t idt_setup_early_traps
+ffffffff823b4114 t idt_setup_from_table
+ffffffff823b41ee t idt_setup_traps
+ffffffff823b420f t idt_setup_early_pf
+ffffffff823b4230 t idt_setup_apic_and_irq_gates
+ffffffff823b43c3 t set_intr_gate
+ffffffff823b4429 t idt_setup_early_handler
+ffffffff823b4463 t alloc_intr_gate
+ffffffff823b449d t __initstub__kmod_irq__621_75_trace_init_perf_perm_irq_work_exitearly
+ffffffff823b44b5 t hpet_time_init
+ffffffff823b44d9 t setup_default_timer_irq
+ffffffff823b4515 t time_init
+ffffffff823b452b t x86_late_time_init
+ffffffff823b456c t setup_unknown_nmi_panic
+ffffffff823b4586 t __initstub__kmod_nmi__302_102_nmi_warning_debugfs5
+ffffffff823b45b2 t extend_brk
+ffffffff823b4616 t reserve_standard_io_resources
+ffffffff823b4645 t setup_arch
+ffffffff823b4c0f t early_reserve_memory
+ffffffff823b4c67 t parse_setup_data
+ffffffff823b4d64 t e820_add_kernel_range
+ffffffff823b4de7 t trim_bios_range
+ffffffff823b4e2d t reserve_brk
+ffffffff823b4e69 t reserve_initrd
+ffffffff823b4f50 t reserve_crashkernel
+ffffffff823b50ed t __initstub__kmod_setup__362_1363_register_kernel_offset_dumper6
+ffffffff823b510d t early_reserve_initrd
+ffffffff823b5183 t memblock_x86_reserve_range_setup_data
+ffffffff823b5248 t trim_snb_memory
+ffffffff823b52a6 t snb_gfx_workaround_needed
+ffffffff823b5313 t relocate_initrd
+ffffffff823b5419 t reserve_crashkernel_low
+ffffffff823b554d t x86_init_uint_noop
+ffffffff823b5558 t bool_x86_init_noop
+ffffffff823b5565 t x86_wallclock_init
+ffffffff823b55a7 t iommu_init_noop
+ffffffff823b55b4 t __initstub__kmod_i8259__217_435_i8259A_init_ops6
+ffffffff823b55dd t init_ISA_irqs
+ffffffff823b5652 t init_IRQ
+ffffffff823b56ca t native_init_IRQ
+ffffffff823b5741 t probe_roms
+ffffffff823b597b t romsignature
+ffffffff823b59e1 t romchecksum
+ffffffff823b5a6f t control_va_addr_alignment
+ffffffff823b5b21 t init_espfix_bsp
+ffffffff823b5c6d t __initstub__kmod_ksysfs__260_401_boot_params_ksysfs_init3
+ffffffff823b5c7d t boot_params_ksysfs_init
+ffffffff823b5cfe t create_setup_data_nodes
+ffffffff823b5e5a t get_setup_data_total_num
+ffffffff823b5ebc t create_setup_data_node
+ffffffff823b5fa2 t get_setup_data_size
+ffffffff823b608b t __initstub__kmod_bootflag__241_102_sbf_init3
+ffffffff823b609d t sbf_init
+ffffffff823b60f9 t sbf_read
+ffffffff823b6145 t sbf_write
+ffffffff823b61cc t e820__mapped_all
+ffffffff823b61e2 t e820__range_add
+ffffffff823b6201 t __e820__range_add
+ffffffff823b6241 t e820__print_table
+ffffffff823b62c3 t e820_print_type
+ffffffff823b6364 t e820__update_table
+ffffffff823b667b t cpcompare
+ffffffff823b66bf t e820__range_update
+ffffffff823b66e1 t __e820__range_update
+ffffffff823b6896 t e820__range_remove
+ffffffff823b6a06 t e820__update_table_print
+ffffffff823b6a3b t e820__setup_pci_gap
+ffffffff823b6ae1 t e820_search_gap
+ffffffff823b6b47 t e820__reallocate_tables
+ffffffff823b6bdc t e820__memory_setup_extended
+ffffffff823b6c75 t __append_e820_table
+ffffffff823b6cc5 t e820__register_nosave_regions
+ffffffff823b6cd0 t __initstub__kmod_e820__337_792_e820__register_nvs_regions1
+ffffffff823b6ce2 t e820__register_nvs_regions
+ffffffff823b6d2a t e820__memblock_alloc_reserved
+ffffffff823b6d89 t e820__end_of_ram_pfn
+ffffffff823b6db2 t e820_end_pfn
+ffffffff823b6e42 t e820__end_of_low_ram_pfn
+ffffffff823b6e57 t parse_memopt
+ffffffff823b6f00 t parse_memmap_opt
+ffffffff823b6f4d t e820__reserve_setup_data
+ffffffff823b70cd t e820__finish_early_params
+ffffffff823b7123 t e820__reserve_resources
+ffffffff823b72d6 t e820_type_to_string
+ffffffff823b7377 t e820_type_to_iores_desc
+ffffffff823b73d7 t e820__reserve_resources_late
+ffffffff823b74d8 t e820__memory_setup_default
+ffffffff823b7584 t e820__memory_setup
+ffffffff823b75e8 t e820__memblock_setup
+ffffffff823b7677 t parse_memmap_one
+ffffffff823b7898 t pci_iommu_alloc
+ffffffff823b78da t iommu_setup
+ffffffff823b7b7c t __initstub__kmod_pci_dma__275_208_pci_iommu_initrootfs
+ffffffff823b7b8e t pci_iommu_init
+ffffffff823b7bc7 t early_platform_quirks
+ffffffff823b7c02 t enable_cpu0_hotplug
+ffffffff823b7c19 t __initstub__kmod_topology__201_162_topology_init4
+ffffffff823b7c2b t topology_init
+ffffffff823b7c66 t __initstub__kmod_kdebugfs__257_195_arch_kdebugfs_init3
+ffffffff823b7c88 t int3_magic
+ffffffff823b7c93 t debug_alt
+ffffffff823b7caa t setup_noreplace_smp
+ffffffff823b7cc1 t alternative_instructions
+ffffffff823b7dc5 t int3_selftest
+ffffffff823b7df5 t int3_selftest_ip
+ffffffff823b7e2e t int3_exception_notify
+ffffffff823b7e96 t pit_timer_init
+ffffffff823b7ed2 t tsc_early_khz_setup
+ffffffff823b7eeb t notsc_setup
+ffffffff823b7f07 t tsc_setup
+ffffffff823b7f8e t __initstub__kmod_tsc__248_1029_cpufreq_register_tsc_scaling1
+ffffffff823b7fa0 t cpufreq_register_tsc_scaling
+ffffffff823b7fd1 t __initstub__kmod_tsc__253_1436_init_tsc_clocksource6
+ffffffff823b7fe3 t init_tsc_clocksource
+ffffffff823b8079 t tsc_early_init
+ffffffff823b80a6 t determine_cpu_tsc_frequencies
+ffffffff823b81c2 t tsc_enable_sched_clock
+ffffffff823b8208 t tsc_init
+ffffffff823b82ef t cyc2ns_init_secondary_cpus
+ffffffff823b839a t check_system_tsc_reliable
+ffffffff823b83e9 t detect_art
+ffffffff823b8487 t cyc2ns_init_boot_cpu
+ffffffff823b84d5 t io_delay_init
+ffffffff823b84f5 t io_delay_param
+ffffffff823b8582 t dmi_io_delay_0xed_port
+ffffffff823b85b4 t __initstub__kmod_rtc__276_162_add_rtc_cmos6
+ffffffff823b85c4 t add_rtc_cmos
+ffffffff823b8654 t arch_post_acpi_subsys_init
+ffffffff823b86c7 t idle_setup
+ffffffff823b8768 t fpu__init_system
+ffffffff823b8899 t fpu__init_system_generic
+ffffffff823b88cd t fpu__init_check_bugs
+ffffffff823b8955 t fpu__get_fpstate_size
+ffffffff823b896f t fpu__init_system_xstate
+ffffffff823b8bba t setup_xstate_cache
+ffffffff823b8ca2 t init_xstate_size
+ffffffff823b8d64 t setup_init_fpu_buf
+ffffffff823b8da8 t print_xstate_offset_size
+ffffffff823b8ed4 t fpu__init_disable_system_xstate
+ffffffff823b8f7b t __initstub__kmod_xstate__369_1469_xfd_update_static_branch3
+ffffffff823b8fa8 t get_xsave_compacted_size
+ffffffff823b902c t paranoid_xstate_size_valid
+ffffffff823b9175 t check_xstate_against_struct
+ffffffff823b94a1 t __xstate_dump_leaves
+ffffffff823b94fd t check_xtile_data_against_struct
+ffffffff823b9597 t print_xstate_features
+ffffffff823b961a t os_xrstor_booting
+ffffffff823b965d t print_xstate_feature
+ffffffff823b96c4 t update_regset_xstate_info
+ffffffff823b96df t __initstub__kmod_i8237__183_76_i8237A_init_ops6
+ffffffff823b96ef t i8237A_init_ops
+ffffffff823b972c t setup_cpu_local_masks
+ffffffff823b9737 t x86_nopcid_setup
+ffffffff823b9777 t x86_noinvpcid_setup
+ffffffff823b97b5 t x86_nofsgsbase_setup
+ffffffff823b97f3 t setup_disable_pku
+ffffffff823b9816 t early_cpu_init
+ffffffff823b985c t early_identify_cpu
+ffffffff823b9a3c t identify_boot_cpu
+ffffffff823b9ae9 t setup_clearcpuid
+ffffffff823b9af9 t cpu_parse_early_param
+ffffffff823b9d00 t cpu_set_bug_bits
+ffffffff823ba052 t check_bugs
+ffffffff823ba14a t spectre_v1_select_mitigation
+ffffffff823ba202 t spectre_v2_select_mitigation
+ffffffff823ba550 t retbleed_select_mitigation
+ffffffff823ba6a6 t spectre_v2_user_select_mitigation
+ffffffff823ba866 t ssb_select_mitigation
+ffffffff823ba8a1 t l1tf_select_mitigation
+ffffffff823ba9e1 t md_clear_select_mitigation
+ffffffff823baa00 t srbds_select_mitigation
+ffffffff823baa9d t l1d_flush_select_mitigation
+ffffffff823baae2 t mds_cmdline
+ffffffff823bab75 t tsx_async_abort_parse_cmdline
+ffffffff823bac08 t mmio_stale_data_parse_cmdline
+ffffffff823bac9b t srbds_parse_cmdline
+ffffffff823bacda t l1d_flush_parse_cmdline
+ffffffff823bacfe t nospectre_v1_cmdline
+ffffffff823bad12 t retbleed_parse_cmdline
+ffffffff823bae10 t l1tf_cmdline
+ffffffff823baee8 t mds_select_mitigation
+ffffffff823baf71 t taa_select_mitigation
+ffffffff823bb021 t mmio_select_mitigation
+ffffffff823bb12a t md_clear_update_mitigation
+ffffffff823bb26b t spectre_v2_parse_user_cmdline
+ffffffff823bb386 t spectre_v2_parse_cmdline
+ffffffff823bb572 t spec_ctrl_disable_kernel_rrsba
+ffffffff823bb5aa t spectre_v2_determine_rsb_fill_type_at_vmexit
+ffffffff823bb636 t __ssb_select_mitigation
+ffffffff823bb6d1 t ssb_parse_cmdline
+ffffffff823bb7d2 t __initstub__kmod_aperfmperf__214_454_bp_init_aperfmperfearly
+ffffffff823bb7e4 t bp_init_aperfmperf
+ffffffff823bb7fe t bp_init_freq_invariance
+ffffffff823bb84e t intel_set_max_freq_ratio
+ffffffff823bb995 t slv_set_max_freq_ratio
+ffffffff823bba37 t skx_set_max_freq_ratio
+ffffffff823bbb40 t knl_set_max_freq_ratio
+ffffffff823bbc11 t core_set_max_freq_ratio
+ffffffff823bbcb4 t turbo_disabled
+ffffffff823bbd05 t __initstub__kmod_umwait__328_238_umwait_init6
+ffffffff823bbd15 t umwait_init
+ffffffff823bbdbd t nosgx
+ffffffff823bbdd4 t ring3mwait_disable
+ffffffff823bbdeb t __initstub__kmod_intel__292_1060_sld_mitigate_sysctl_init7
+ffffffff823bbe12 t sld_setup
+ffffffff823bbf53 t split_lock_setup
+ffffffff823bbfd1 t sld_state_setup
+ffffffff823bc131 t __split_lock_setup
+ffffffff823bc1c8 t __initstub__kmod_intel_pconfig__12_82_intel_pconfig_init3
+ffffffff823bc1da t intel_pconfig_init
+ffffffff823bc25d t tsx_init
+ffffffff823bc479 t __initstub__kmod_intel_epb__197_235_intel_epb_init4
+ffffffff823bc489 t intel_epb_init
+ffffffff823bc52b t rdrand_cmdline
+ffffffff823bc55d t set_mtrr_ops
+ffffffff823bc57a t mtrr_bp_init
+ffffffff823bc6f3 t set_num_var_ranges
+ffffffff823bc756 t init_table
+ffffffff823bc796 t __initstub__kmod_mtrr__273_887_mtrr_init_finialize4
+ffffffff823bc7a8 t mtrr_init_finialize
+ffffffff823bc7ea t __initstub__kmod_if__224_424_mtrr_if_init3
+ffffffff823bc7fa t mtrr_if_init
+ffffffff823bc858 t mtrr_bp_pat_init
+ffffffff823bc8b4 t get_mtrr_state
+ffffffff823bca5f t print_mtrr_state
+ffffffff823bcbdb t mtrr_state_warn
+ffffffff823bcc41 t disable_mtrr_cleanup_setup
+ffffffff823bcc55 t enable_mtrr_cleanup_setup
+ffffffff823bcc69 t mtrr_cleanup_debug_setup
+ffffffff823bcc7d t parse_mtrr_chunk_size_opt
+ffffffff823bccd3 t parse_mtrr_gran_size_opt
+ffffffff823bcd29 t parse_mtrr_spare_reg
+ffffffff823bcd4b t mtrr_cleanup
+ffffffff823bd0f9 t mtrr_need_cleanup
+ffffffff823bd1c4 t x86_get_mtrr_mem_range
+ffffffff823bd385 t mtrr_calc_range_state
+ffffffff823bd569 t mtrr_print_out_one_result
+ffffffff823bd6d1 t set_var_mtrr_all
+ffffffff823bd73a t mtrr_search_optimal_index
+ffffffff823bd7d8 t x86_setup_var_mtrrs
+ffffffff823bd908 t disable_mtrr_trim_setup
+ffffffff823bd91c t amd_special_default_mtrr
+ffffffff823bd98b t mtrr_trim_uncached_memory
+ffffffff823bdd9e t set_var_mtrr
+ffffffff823bddfe t set_var_mtrr_range
+ffffffff823bde73 t range_to_mtrr_with_hole
+ffffffff823be0ac t range_to_mtrr
+ffffffff823be169 t load_ucode_bsp
+ffffffff823be1e6 t check_loader_disabled_bsp
+ffffffff823be280 t __initstub__kmod_microcode__270_809_save_microcode_in_initrd5
+ffffffff823be290 t save_microcode_in_initrd
+ffffffff823be2df t __initstub__kmod_microcode__272_810_microcode_init7
+ffffffff823be2ef t microcode_init
+ffffffff823be4ec t save_microcode_in_initrd_intel
+ffffffff823be636 t load_ucode_intel_bsp
+ffffffff823be697 t init_intel_microcode
+ffffffff823be6f8 t setup_vmw_sched_clock
+ffffffff823be70c t parse_no_stealacc
+ffffffff823be720 t __initstub__kmod_vmware__210_327_activate_jump_labels3
+ffffffff823be732 t activate_jump_labels
+ffffffff823be77b t vmware_platform
+ffffffff823be8a9 t vmware_platform_setup
+ffffffff823bea1c t vmware_legacy_x2apic_available
+ffffffff823bea86 t vmware_paravirt_ops_setup
+ffffffff823beb84 t vmware_set_capabilities
+ffffffff823bebfc t vmware_cyc2ns_setup
+ffffffff823bec69 t vmware_smp_prepare_boot_cpu
+ffffffff823bed04 t parse_nopv
+ffffffff823bed18 t init_hypervisor_platform
+ffffffff823bed7d t detect_hypervisor_vendor
+ffffffff823bee04 t ms_hyperv_platform
+ffffffff823beeb7 t ms_hyperv_init_platform
+ffffffff823bf19a t ms_hyperv_x2apic_available
+ffffffff823bf1b2 t ms_hyperv_msi_ext_dest_id
+ffffffff823bf1e4 t __acpi_map_table
+ffffffff823bf200 t __acpi_unmap_table
+ffffffff823bf220 t acpi_pic_sci_set_trigger
+ffffffff823bf290 t __initstub__kmod_boot__300_1026_hpet_insert_resource7
+ffffffff823bf2ba t acpi_generic_reduced_hw_init
+ffffffff823bf2e6 t acpi_boot_table_init
+ffffffff823bf32d t early_acpi_boot_init
+ffffffff823bf3bf t acpi_parse_sbf
+ffffffff823bf3d6 t early_acpi_process_madt
+ffffffff823bf445 t acpi_boot_init
+ffffffff823bf4d2 t acpi_parse_fadt
+ffffffff823bf56e t acpi_process_madt
+ffffffff823bf686 t acpi_parse_hpet
+ffffffff823bf7dc t parse_acpi
+ffffffff823bf8f0 t parse_acpi_bgrt
+ffffffff823bf8fd t parse_pci
+ffffffff823bf930 t acpi_mps_check
+ffffffff823bf93d t parse_acpi_skip_timer_override
+ffffffff823bf954 t parse_acpi_use_timer_override
+ffffffff823bf96b t setup_acpi_sci
+ffffffff823bfa06 t arch_reserve_mem_area
+ffffffff823bfa20 t dmi_disable_acpi
+ffffffff823bfa6b t disable_acpi_irq
+ffffffff823bfa9d t disable_acpi_pci
+ffffffff823bfad6 t disable_acpi_xsdt
+ffffffff823bfb11 t acpi_parse_madt
+ffffffff823bfb82 t early_acpi_parse_madt_lapic_addr_ovr
+ffffffff823bfbd6 t acpi_parse_lapic_addr_ovr
+ffffffff823bfc14 t dmi_ignore_irq0_timer_override
+ffffffff823bfc46 t acpi_parse_madt_lapic_entries
+ffffffff823bfdb1 t acpi_parse_madt_ioapic_entries
+ffffffff823bfea0 t acpi_parse_mp_wake
+ffffffff823bfeea t acpi_parse_sapic
+ffffffff823bff37 t acpi_parse_lapic
+ffffffff823bffa2 t acpi_parse_x2apic
+ffffffff823c004b t acpi_parse_x2apic_nmi
+ffffffff823c009a t acpi_parse_lapic_nmi
+ffffffff823c00e9 t acpi_parse_ioapic
+ffffffff823c018b t acpi_parse_int_src_ovr
+ffffffff823c0259 t acpi_sci_ioapic_setup
+ffffffff823c02e3 t mp_config_acpi_legacy_irqs
+ffffffff823c042c t acpi_parse_nmi_src
+ffffffff823c0457 t mp_override_legacy_irq
+ffffffff823c04df t mp_register_ioapic_irq
+ffffffff823c0599 t acpi_sleep_setup
+ffffffff823c06e4 t __initstub__kmod_cstate__215_229_ffh_cstate_init3
+ffffffff823c072d t __initstub__kmod_reboot__344_518_reboot_init1
+ffffffff823c073f t reboot_init
+ffffffff823c077f t set_kbd_reboot
+ffffffff823c07b8 t set_efi_reboot
+ffffffff823c07f3 t set_pci_reboot
+ffffffff823c082c t set_bios_reboot
+ffffffff823c0865 t set_acpi_reboot
+ffffffff823c089e t early_quirks
+ffffffff823c08c0 t early_pci_scan_bus
+ffffffff823c0900 t check_dev_quirk
+ffffffff823c0acb t nvidia_bugs
+ffffffff823c0b19 t via_bugs
+ffffffff823c0b24 t fix_hypertransport_config
+ffffffff823c0baf t ati_bugs
+ffffffff823c0c1c t ati_bugs_contd
+ffffffff823c0cd6 t intel_remapping_check
+ffffffff823c0d24 t intel_graphics_quirks
+ffffffff823c0da3 t force_disable_hpet
+ffffffff823c0dc1 t apple_airport_reset
+ffffffff823c0f7a t nvidia_hpet_check
+ffffffff823c0f87 t ati_ixp4x0_rev
+ffffffff823c1022 t intel_graphics_stolen
+ffffffff823c10c0 t i830_stolen_size
+ffffffff823c1108 t i830_stolen_base
+ffffffff823c1142 t i830_tseg_size
+ffffffff823c117f t i845_stolen_base
+ffffffff823c11b9 t i845_tseg_size
+ffffffff823c1214 t gen3_stolen_size
+ffffffff823c1262 t i85x_stolen_base
+ffffffff823c12b3 t i865_stolen_base
+ffffffff823c12df t gen3_stolen_base
+ffffffff823c1304 t gen6_stolen_size
+ffffffff823c132e t gen8_stolen_size
+ffffffff823c135a t chv_stolen_size
+ffffffff823c13b0 t gen9_stolen_size
+ffffffff823c140d t gen11_stolen_base
+ffffffff823c1470 t nonmi_ipi_setup
+ffffffff823c1487 t smp_store_boot_cpu_info
+ffffffff823c14e2 t cpu_init_udelay
+ffffffff823c152e t smp_prepare_cpus_common
+ffffffff823c169c t smp_cpu_index_default
+ffffffff823c16ec t native_smp_prepare_cpus
+ffffffff823c1799 t smp_sanity_check
+ffffffff823c1842 t disable_smp
+ffffffff823c1904 t smp_quirk_init_udelay
+ffffffff823c1952 t native_smp_prepare_boot_cpu
+ffffffff823c1984 t calculate_max_logical_packages
+ffffffff823c19c6 t native_smp_cpus_done
+ffffffff823c1aa8 t _setup_possible_cpus
+ffffffff823c1af4 t prefill_possible_map
+ffffffff823c1c4c t __initstub__kmod_tsc_sync__185_119_start_sync_check_timer7
+ffffffff823c1c5e t start_sync_check_timer
+ffffffff823c1cb0 t pcpu_populate_pte
+ffffffff823c1cc0 t setup_per_cpu_areas
+ffffffff823c1e57 t pcpu_cpu_distance
+ffffffff823c1e67 t pcpu_cpu_to_node
+ffffffff823c1e74 t default_get_smp_config
+ffffffff823c1f5a t construct_default_ISA_mptable
+ffffffff823c204a t check_physptr
+ffffffff823c2144 t default_find_smp_config
+ffffffff823c21a8 t smp_scan_config
+ffffffff823c2297 t update_mptable_setup
+ffffffff823c22b5 t parse_alloc_mptable_opt
+ffffffff823c231c t e820__memblock_alloc_reserved_mpc_new
+ffffffff823c2351 t __initstub__kmod_mpparse__271_945_update_mp_table7
+ffffffff823c2363 t update_mp_table
+ffffffff823c2637 t MP_processor_info
+ffffffff823c2698 t construct_ioapic_table
+ffffffff823c2768 t MP_lintsrc_info
+ffffffff823c27b7 t MP_bus_info
+ffffffff823c2875 t MP_ioapic_info
+ffffffff823c28e8 t construct_default_ioirq_mptable
+ffffffff823c2a2c t get_mpc_size
+ffffffff823c2a7d t smp_read_mpc
+ffffffff823c2bd1 t smp_check_mpc
+ffffffff823c2cbd t smp_dump_mptable
+ffffffff823c2d21 t smp_reserve_memory
+ffffffff823c2d44 t replace_intsrc_all
+ffffffff823c2f3c t check_irq_src
+ffffffff823c2fd3 t check_slot
+ffffffff823c3008 t print_mp_irq_info
+ffffffff823c3057 t get_MP_intsrc_index
+ffffffff823c30ed t parse_lapic
+ffffffff823c311e t setup_apicpmtimer
+ffffffff823c313a t apic_needs_pit
+ffffffff823c31ac t setup_boot_APIC_clock
+ffffffff823c3227 t calibrate_APIC_clock
+ffffffff823c3625 t sync_Arb_IDs
+ffffffff823c36bb t apic_intr_mode_select
+ffffffff823c36d1 t __apic_intr_mode_select
+ffffffff823c37c7 t init_bsp_APIC
+ffffffff823c386b t apic_intr_mode_init
+ffffffff823c38f5 t apic_bsp_setup
+ffffffff823c3924 t setup_nox2apic
+ffffffff823c3a03 t check_x2apic
+ffffffff823c3a91 t enable_IR_x2apic
+ffffffff823c3b55 t try_to_enable_x2apic
+ffffffff823c3be2 t init_apic_mappings
+ffffffff823c3d2e t apic_validate_deadline_timer
+ffffffff823c3d98 t register_lapic_address
+ffffffff823c3e5b t acpi_wake_cpu_handler_update
+ffffffff823c3e89 t apic_set_eoi_write
+ffffffff823c3ecc t __initstub__kmod_apic__544_2842_init_lapic_sysfs1
+ffffffff823c3ef2 t setup_disableapic
+ffffffff823c3f13 t setup_nolapic
+ffffffff823c3f34 t parse_lapic_timer_c2_ok
+ffffffff823c3f4b t parse_disable_apic_timer
+ffffffff823c3f5f t parse_nolapic_timer
+ffffffff823c3f73 t apic_set_verbosity
+ffffffff823c3fe2 t __initstub__kmod_apic__546_2982_lapic_insert_resource7
+ffffffff823c4029 t apic_set_disabled_cpu_apicid
+ffffffff823c4089 t apic_set_extnmi
+ffffffff823c4126 t lapic_init_clockevent
+ffffffff823c41af t lapic_cal_handler
+ffffffff823c4278 t calibrate_by_pmtimer
+ffffffff823c438e t x2apic_disable
+ffffffff823c4429 t apic_bsp_up_setup
+ffffffff823c448b t apic_ipi_shorthand
+ffffffff823c44da t __initstub__kmod_ipi__85_27_print_ipi_mode7
+ffffffff823c450c t arch_probe_nr_irqs
+ffffffff823c4572 t lapic_update_legacy_vectors
+ffffffff823c45bf t lapic_assign_system_vectors
+ffffffff823c4678 t arch_early_irq_init
+ffffffff823c46f8 t setup_show_lapic
+ffffffff823c4771 t __initstub__kmod_vector__534_1340_print_ICs7
+ffffffff823c4783 t print_ICs
+ffffffff823c47cd t print_PIC
+ffffffff823c4821 t print_local_APICs
+ffffffff823c48a2 t print_local_APIC
+ffffffff823c4be7 t print_APIC_field
+ffffffff823c4c45 t __initstub__kmod_hw_nmi__279_58_register_nmi_cpu_backtrace_handlerearly
+ffffffff823c4c60 t parse_noapic
+ffffffff823c4c88 t arch_early_ioapic_init
+ffffffff823c4cca t print_IO_APICs
+ffffffff823c4e5b t print_IO_APIC
+ffffffff823c5230 t enable_IO_APIC
+ffffffff823c5358 t find_isa_irq_pin
+ffffffff823c540f t find_isa_irq_apic
+ffffffff823c5504 t notimercheck
+ffffffff823c551e t disable_timer_pin_setup
+ffffffff823c5532 t setup_IO_APIC
+ffffffff823c564b t setup_IO_APIC_irqs
+ffffffff823c57a9 t check_timer
+ffffffff823c5bf8 t __initstub__kmod_io_apic__276_2463_ioapic_init_ops6
+ffffffff823c5c11 t io_apic_init_mappings
+ffffffff823c5d74 t ioapic_setup_resources
+ffffffff823c5e6b t ioapic_insert_resources
+ffffffff823c5ec8 t timer_irq_works
+ffffffff823c5f18 t replace_pin_at_irq_node
+ffffffff823c5f4f t unlock_ExtINT_logic
+ffffffff823c60ab t delay_with_tsc
+ffffffff823c60ed t delay_without_tsc
+ffffffff823c6133 t native_create_pci_msi_domain
+ffffffff823c61ab t x86_create_pci_msi_domain
+ffffffff823c61ca t x2apic_set_max_apicid
+ffffffff823c61db t set_x2apic_phys_mode
+ffffffff823c61f2 t default_setup_apic_routing
+ffffffff823c6262 t default_acpi_madt_oem_check
+ffffffff823c62f0 t setup_early_printk
+ffffffff823c6481 t early_serial_init
+ffffffff823c65e5 t early_pci_serial_init
+ffffffff823c6841 t early_serial_hw_init
+ffffffff823c6968 t hpet_setup
+ffffffff823c6a13 t disable_hpet
+ffffffff823c6a2a t hpet_enable
+ffffffff823c6d45 t hpet_is_pc10_damaged
+ffffffff823c6db4 t hpet_cfg_working
+ffffffff823c6e10 t hpet_counting
+ffffffff823c6ebe t hpet_legacy_clockevent_register
+ffffffff823c6f9d t __initstub__kmod_hpet__207_1165_hpet_late_init5
+ffffffff823c6fad t hpet_late_init
+ffffffff823c70f0 t mwait_pc10_supported
+ffffffff823c7136 t hpet_select_clockevents
+ffffffff823c73d8 t hpet_reserve_platform_timers
+ffffffff823c74d8 t early_is_amd_nb
+ffffffff823c755f t __initstub__kmod_amd_nb__276_519_init_amd_nbs5
+ffffffff823c7571 t init_amd_nbs
+ffffffff823c794d t fix_erratum_688
+ffffffff823c79ea t parse_no_kvmapf
+ffffffff823c79fe t parse_no_stealacc
+ffffffff823c7a12 t __initstub__kmod_kvm__355_620_setup_efi_kvm_sev_migration7
+ffffffff823c7a1f t __initstub__kmod_kvm__358_693_kvm_alloc_cpumask3
+ffffffff823c7a31 t kvm_alloc_cpumask
+ffffffff823c7ad3 t kvm_detect
+ffffffff823c7af4 t kvm_init_platform
+ffffffff823c7b0f t kvm_guest_init
+ffffffff823c7d73 t kvm_msi_ext_dest_id
+ffffffff823c7da5 t __initstub__kmod_kvm__362_1032_activate_jump_labels3
+ffffffff823c7db7 t activate_jump_labels
+ffffffff823c7e00 t kvm_apic_init
+ffffffff823c7e39 t paravirt_ops_setup
+ffffffff823c7e89 t kvm_smp_prepare_boot_cpu
+ffffffff823c7e9e t parse_no_kvmclock
+ffffffff823c7eb2 t parse_no_kvmclock_vsyscall
+ffffffff823c7ec6 t __initstub__kmod_kvmclock__268_261_kvm_setup_vsyscall_timeinfoearly
+ffffffff823c7ed8 t kvm_setup_vsyscall_timeinfo
+ffffffff823c7f39 t kvmclock_init
+ffffffff823c8173 t kvm_get_preset_lpj
+ffffffff823c81bd t kvmclock_init_mem
+ffffffff823c8278 t default_banner
+ffffffff823c8296 t native_pv_lock_init
+ffffffff823c82c2 t __initstub__kmod_pcspeaker__197_14_add_pcspkr6
+ffffffff823c8346 t early_init_dt_add_memory_arch
+ffffffff823c834c t add_dtb
+ffffffff823c8362 t __initstub__kmod_devicetree__270_61_add_bus_probe6
+ffffffff823c838b t x86_dtb_init
+ffffffff823c83ac t dtb_setup_hpet
+ffffffff823c8428 t dtb_apic_setup
+ffffffff823c8442 t dtb_lapic_setup
+ffffffff823c84e1 t dtb_cpu_setup
+ffffffff823c855a t dtb_ioapic_setup
+ffffffff823c85c1 t dtb_add_ioapic
+ffffffff823c8671 t __initstub__kmod_audit_64__263_85_audit_classes_init6
+ffffffff823c8683 t audit_classes_init
+ffffffff823c86e0 t set_check_enable_amd_mmconf
+ffffffff823c86f4 t vsmp_init
+ffffffff823c872c t detect_vsmp_box
+ffffffff823c8770 t vsmp_cap_cpus
+ffffffff823c87fe t set_vsmp_ctl
+ffffffff823c8889 t early_alloc_pgt_buf
+ffffffff823c88de t parse_direct_gbpages_on
+ffffffff823c88f5 t parse_direct_gbpages_off
+ffffffff823c890c t init_mem_mapping
+ffffffff823c8a80 t probe_page_size_mask
+ffffffff823c8bbf t init_trampoline
+ffffffff823c8bfe t memory_map_bottom_up
+ffffffff823c8c7a t memory_map_top_down
+ffffffff823c8d5d t poking_init
+ffffffff823c8eb3 t free_initrd_mem
+ffffffff823c8ede t memblock_find_dma_reserve
+ffffffff823c9070 t zone_sizes_init
+ffffffff823c90ec t early_disable_dma32
+ffffffff823c911e t init_range_memory_mapping
+ffffffff823c9254 t nonx32_setup
+ffffffff823c92aa t populate_extra_pmd
+ffffffff823c946a t populate_extra_pte
+ffffffff823c9533 t init_extra_mapping_wb
+ffffffff823c9545 t __init_extra_mapping
+ffffffff823c97be t init_extra_mapping_uc
+ffffffff823c97d3 t cleanup_highmap
+ffffffff823c9875 t initmem_init
+ffffffff823c9880 t paging_init
+ffffffff823c9895 t mem_init
+ffffffff823c98d2 t preallocate_vmalloc_pages
+ffffffff823c9a29 t set_memory_block_size_order
+ffffffff823c9a54 t is_early_ioremap_ptep
+ffffffff823c9a7b t early_ioremap_init
+ffffffff823c9b7a t early_ioremap_pmd
+ffffffff823c9c11 t __early_set_fixmap
+ffffffff823c9c8e t early_fixup_exception
+ffffffff823c9d2b t setup_userpte
+ffffffff823c9d5d t reserve_top_address
+ffffffff823c9d68 t __initstub__kmod_tlb__293_1323_create_tlb_single_page_flush_ceiling7
+ffffffff823c9d9d t setup_cpu_entry_areas
+ffffffff823c9dd7 t setup_cpu_entry_area
+ffffffff823c9ea7 t cea_map_percpu_pages
+ffffffff823c9ef7 t percpu_setup_exception_stacks
+ffffffff823c9fc0 t percpu_setup_debug_store
+ffffffff823ca059 t kernel_map_pages_in_pgd
+ffffffff823ca12d t kernel_unmap_pages_in_pgd
+ffffffff823ca1d7 t nopat
+ffffffff823ca1f7 t pat_debug_setup
+ffffffff823ca211 t init_cache_modes
+ffffffff823ca291 t __initstub__kmod_memtype__265_1236_pat_memtype_list_init7
+ffffffff823ca2cf t __initstub__kmod_pkeys__280_184_create_init_pkru_value7
+ffffffff823ca2e1 t create_init_pkru_value
+ffffffff823ca319 t setup_init_pkru
+ffffffff823ca370 t kernel_randomize_memory
+ffffffff823ca55f t pti_check_boottime_disable
+ffffffff823ca6d7 t pti_init
+ffffffff823ca79e t pti_clone_user_shared
+ffffffff823ca880 t pti_setup_vsyscall
+ffffffff823ca915 t pti_clone_p4d
+ffffffff823ca97d t __initstub__kmod_aesni_intel__284_1314_aesni_init7
+ffffffff823ca98d t aesni_init
+ffffffff823cab37 t __initstub__kmod_sha256_ssse3__267_403_sha256_ssse3_mod_init6
+ffffffff823cab47 t sha256_ssse3_mod_init
+ffffffff823cac75 t __initstub__kmod_sha512_ssse3__267_334_sha512_ssse3_mod_init6
+ffffffff823cac85 t sha512_ssse3_mod_init
+ffffffff823cad89 t __initstub__kmod_polyval_clmulni__196_206_polyval_clmulni_mod_init6
+ffffffff823cad99 t polyval_clmulni_mod_init
+ffffffff823cadd6 t setup_storage_paranoia
+ffffffff823cadea t efi_arch_mem_reserve
+ffffffff823cafaa t efi_reserve_boot_services
+ffffffff823cb049 t can_free_region
+ffffffff823cb095 t efi_free_boot_services
+ffffffff823cb2f7 t efi_unmap_pages
+ffffffff823cb368 t efi_reuse_config
+ffffffff823cb48a t efi_apply_memmap_quirks
+ffffffff823cb4b5 t setup_add_efi_memmap
+ffffffff823cb4c9 t efi_memblock_x86_reserve_range
+ffffffff823cb5b5 t do_add_efi_memmap
+ffffffff823cb680 t efi_print_memmap
+ffffffff823cb776 t efi_init
+ffffffff823cb866 t efi_systab_init
+ffffffff823cb9c3 t efi_config_init
+ffffffff823cba54 t efi_clean_memmap
+ffffffff823cbb4f t efi_enter_virtual_mode
+ffffffff823cbb8d t kexec_enter_virtual_mode
+ffffffff823cbc64 t __efi_enter_virtual_mode
+ffffffff823cbdce t efi_memmap_entry_valid
+ffffffff823cbf0a t efi_merge_regions
+ffffffff823cbfa8 t efi_map_regions
+ffffffff823cc10c t efi_alloc_page_tables
+ffffffff823cc2d7 t efi_setup_page_tables
+ffffffff823cc35c t efi_map_region
+ffffffff823cc3f2 t __map_region
+ffffffff823cc469 t efi_map_region_fixed
+ffffffff823cc48e t parse_efi_setup
+ffffffff823cc4a4 t efi_runtime_update_mappings
+ffffffff823cc55d t efi_update_mem_attr
+ffffffff823cc593 t efi_update_mappings
+ffffffff823cc62e t efi_dump_pagetable
+ffffffff823cc639 t efi_thunk_runtime_setup
+ffffffff823cc644 t efi_set_virtual_address_map
+ffffffff823cc740 t arch_task_cache_init
+ffffffff823cc74b t fork_init
+ffffffff823cc8aa t coredump_filter_setup
+ffffffff823cc8d2 t fork_idle
+ffffffff823cc9d7 t proc_caches_init
+ffffffff823ccb75 t __initstub__kmod_exec_domain__284_35_proc_execdomains_init6
+ffffffff823ccb9c t __initstub__kmod_panic__292_109_kernel_panic_sysctls_init7
+ffffffff823ccbc3 t __initstub__kmod_panic__294_128_kernel_panic_sysfs_init7
+ffffffff823ccbe5 t __initstub__kmod_panic__304_746_register_warn_debugfs6
+ffffffff823ccc15 t oops_setup
+ffffffff823ccc4a t panic_on_taint_setup
+ffffffff823ccd1e t cpu_smt_disable
+ffffffff823ccd64 t cpu_smt_check_topology
+ffffffff823ccd82 t smt_cmdline_disable
+ffffffff823ccddf t cpuhp_threads_init
+ffffffff823cce0e t cpuhp_init_state
+ffffffff823ccea9 t __initstub__kmod_cpu__603_1624_alloc_frozen_cpus1
+ffffffff823cceb6 t __initstub__kmod_cpu__605_1671_cpu_hotplug_pm_sync_init1
+ffffffff823cced8 t __initstub__kmod_cpu__613_2600_cpuhp_sysfs_init6
+ffffffff823ccee8 t cpuhp_sysfs_init
+ffffffff823ccf82 t boot_cpu_init
+ffffffff823ccfc7 t boot_cpu_hotplug_init
+ffffffff823ccfed t mitigations_parse_cmdline
+ffffffff823cd068 t __initstub__kmod_exit__689_101_kernel_exit_sysctls_init7
+ffffffff823cd08f t __initstub__kmod_exit__691_120_kernel_exit_sysfs_init7
+ffffffff823cd0b1 t softirq_init
+ffffffff823cd12e t __initstub__kmod_softirq__385_1038_spawn_ksoftirqdearly
+ffffffff823cd140 t spawn_ksoftirqd
+ffffffff823cd186 t __initstub__kmod_resource__268_149_ioresources_init6
+ffffffff823cd198 t ioresources_init
+ffffffff823cd1e5 t reserve_region_with_split
+ffffffff823cd2a2 t __reserve_region_with_split
+ffffffff823cd471 t reserve_setup
+ffffffff823cd60b t __initstub__kmod_resource__296_2015_iomem_init_inode5
+ffffffff823cd61b t iomem_init_inode
+ffffffff823cd6a1 t strict_iomem
+ffffffff823cd6e9 t sysctl_init_bases
+ffffffff823cd75e t file_caps_disable
+ffffffff823cd778 t __initstub__kmod_user__204_257_uid_cache_init4
+ffffffff823cd78a t uid_cache_init
+ffffffff823cd846 t setup_print_fatal_signals
+ffffffff823cd895 t signals_init
+ffffffff823cd8ce t __initstub__kmod_workqueue__437_5698_wq_sysfs_init1
+ffffffff823cd8de t wq_sysfs_init
+ffffffff823cd90e t workqueue_init_early
+ffffffff823cdc60 t workqueue_init
+ffffffff823cdecf t pid_idr_init
+ffffffff823cdf9e t sort_main_extable
+ffffffff823cdfe6 t __initstub__kmod_params__314_974_param_sysfs_init4
+ffffffff823cdff6 t param_sysfs_init
+ffffffff823ce05b t version_sysfs_builtin
+ffffffff823ce0c3 t param_sysfs_builtin
+ffffffff823ce1ab t locate_module_kobject
+ffffffff823ce272 t kernel_add_sysfs_param
+ffffffff823ce2f2 t nsproxy_cache_init
+ffffffff823ce32d t __initstub__kmod_ksysfs__275_273_ksysfs_init1
+ffffffff823ce33d t ksysfs_init
+ffffffff823ce3e8 t cred_init
+ffffffff823ce41e t reboot_setup
+ffffffff823ce5a5 t __initstub__kmod_reboot__354_1310_reboot_ksysfs_init7
+ffffffff823ce5b5 t reboot_ksysfs_init
+ffffffff823ce62f t idle_thread_set_boot_cpu
+ffffffff823ce664 t idle_threads_init
+ffffffff823ce6fe t __initstub__kmod_ucount__172_376_user_namespace_sysctl_init4
+ffffffff823ce710 t user_namespace_sysctl_init
+ffffffff823ce7f0 t setup_schedstats
+ffffffff823ce866 t __initstub__kmod_core__1222_4682_sched_core_sysctl_init7
+ffffffff823ce88d t setup_resched_latency_warn_ms
+ffffffff823ce8f3 t setup_preempt_mode
+ffffffff823ce92b t init_idle
+ffffffff823cec03 t sched_init_smp
+ffffffff823cecc5 t __initstub__kmod_core__1313_9781_migration_initearly
+ffffffff823cecd7 t migration_init
+ffffffff823ced0e t sched_init
+ffffffff823cf198 t init_uclamp
+ffffffff823cf2a7 t setup_sched_thermal_decay_shift
+ffffffff823cf320 t __initstub__kmod_fair__865_213_sched_fair_sysctl_init7
+ffffffff823cf347 t sched_init_granularity
+ffffffff823cf357 t init_sched_fair_class
+ffffffff823cf447 t __initstub__kmod_build_policy__892_65_sched_rt_sysctl_init7
+ffffffff823cf46e t init_sched_rt_class
+ffffffff823cf4d8 t __initstub__kmod_build_policy__914_534_sched_pelt_sysctl_init7
+ffffffff823cf4ff t __initstub__kmod_build_policy__925_52_sched_dl_sysctl_init7
+ffffffff823cf526 t init_sched_dl_class
+ffffffff823cf590 t sched_clock_init
+ffffffff823cf5fb t __initstub__kmod_build_utility__869_241_sched_clock_init_late7
+ffffffff823cf60d t sched_clock_init_late
+ffffffff823cf6b4 t __initstub__kmod_build_utility__891_844_schedutil_gov_init1
+ffffffff823cf6cb t __initstub__kmod_build_utility__895_345_sched_init_debug7
+ffffffff823cf6dd t sched_init_debug
+ffffffff823cf8cd t __initstub__kmod_build_utility__906_231_proc_schedstat_init4
+ffffffff823cf8f7 t wait_bit_init
+ffffffff823cf925 t sched_debug_setup
+ffffffff823cf939 t setup_relax_domain_level
+ffffffff823cf969 t setup_psi
+ffffffff823cf989 t psi_init
+ffffffff823cf9fd t __initstub__kmod_build_utility__1049_1575_psi_proc_init6
+ffffffff823cfa0f t psi_proc_init
+ffffffff823cfa8d t housekeeping_init
+ffffffff823cfb19 t housekeeping_nohz_full_setup
+ffffffff823cfb2e t housekeeping_isolcpus_setup
+ffffffff823cfc93 t housekeeping_setup
+ffffffff823cfeff t __initstub__kmod_qos__494_425_cpu_latency_qos_init7
+ffffffff823cff0f t cpu_latency_qos_init
+ffffffff823cff4c t __initstub__kmod_main__337_467_pm_debugfs_init7
+ffffffff823cff7c t __initstub__kmod_main__340_940_pm_init1
+ffffffff823cff8c t pm_init
+ffffffff823d000b t pm_states_init
+ffffffff823d0037 t mem_sleep_default_setup
+ffffffff823d007c t __initstub__kmod_poweroff__81_45_pm_sysrq_init4
+ffffffff823d009c t __initstub__kmod_wakeup_reason__325_438_wakeup_reason_init7
+ffffffff823d00ac t wakeup_reason_init
+ffffffff823d01b9 t control_devkmsg
+ffffffff823d025d t log_buf_len_setup
+ffffffff823d02b4 t setup_log_buf
+ffffffff823d0641 t log_buf_add_cpu
+ffffffff823d06d1 t add_to_rb
+ffffffff823d07d8 t ignore_loglevel_setup
+ffffffff823d07f8 t console_msg_format_setup
+ffffffff823d083e t console_setup
+ffffffff823d095c t console_suspend_disable
+ffffffff823d0973 t keep_bootcon_setup
+ffffffff823d0993 t console_init
+ffffffff823d0adf t __initstub__kmod_printk__359_3362_printk_late_init7
+ffffffff823d0af1 t printk_late_init
+ffffffff823d0c23 t log_buf_len_update
+ffffffff823d0c82 t printk_sysctl_init
+ffffffff823d0ca7 t irq_affinity_setup
+ffffffff823d0cd9 t __initstub__kmod_irqdesc__201_334_irq_sysfs_init2
+ffffffff823d0ce9 t irq_sysfs_init
+ffffffff823d0dc0 t early_irq_init
+ffffffff823d0e8d t init_irq_default_affinity
+ffffffff823d0ed6 t setup_forced_irqthreads
+ffffffff823d0ef9 t irqfixup_setup
+ffffffff823d0f2b t irqpoll_setup
+ffffffff823d0f5d t __initstub__kmod_pm__323_248_irq_pm_init_ops6
+ffffffff823d0f76 t irq_alloc_matrix
+ffffffff823d0ffc t __initstub__kmod_update__565_240_rcu_set_runtime_mode1
+ffffffff823d1018 t rcu_init_tasks_generic
+ffffffff823d1028 t rcu_spawn_tasks_kthread
+ffffffff823d1085 t rcupdate_announce_bootup_oddness
+ffffffff823d10f6 t rcu_tasks_bootup_oddness
+ffffffff823d115d t rcu_spawn_tasks_kthread_generic
+ffffffff823d11d9 t __initstub__kmod_srcutree__494_1730_srcu_bootup_announceearly
+ffffffff823d11eb t srcu_bootup_announce
+ffffffff823d1266 t srcu_init
+ffffffff823d1345 t __initstub__kmod_srcutree__496_1824_init_srcu_module_notifier7
+ffffffff823d1355 t init_srcu_module_notifier
+ffffffff823d138d t kfree_rcu_scheduler_running
+ffffffff823d1492 t __initstub__kmod_tree__756_4466_rcu_spawn_gp_kthreadearly
+ffffffff823d14a4 t rcu_spawn_gp_kthread
+ffffffff823d1613 t rcu_init
+ffffffff823d1728 t kfree_rcu_batch_init
+ffffffff823d18b5 t sanitize_kthread_prio
+ffffffff823d18f6 t rcu_init_one
+ffffffff823d1d18 t rcu_dump_rcu_node_tree
+ffffffff823d1df4 t __initstub__kmod_tree__775_135_check_cpu_stall_initearly
+ffffffff823d1e14 t __initstub__kmod_tree__869_1025_rcu_sysrq_initearly
+ffffffff823d1e3f t rcu_nocb_setup
+ffffffff823d1ea7 t parse_rcu_nocb_poll
+ffffffff823d1ebb t rcu_init_nohz
+ffffffff823d2002 t rcu_organize_nocb_kthreads
+ffffffff823d221b t rcu_spawn_core_kthreads
+ffffffff823d22a7 t rcu_start_exp_gp_kworkers
+ffffffff823d2394 t rcu_boot_init_percpu_data
+ffffffff823d2495 t rcu_boot_init_nocb_percpu_data
+ffffffff823d254a t rcu_bootup_announce_oddness
+ffffffff823d2752 t setup_io_tlb_npages
+ffffffff823d2845 t swiotlb_adjust_size
+ffffffff823d28f6 t swiotlb_update_mem_attributes
+ffffffff823d29ba t swiotlb_init_remap
+ffffffff823d2cd4 t swiotlb_init
+ffffffff823d2ce6 t swiotlb_exit
+ffffffff823d2e80 t __initstub__kmod_swiotlb__323_946_swiotlb_create_default_debugfs7
+ffffffff823d2e92 t swiotlb_create_default_debugfs
+ffffffff823d2f04 t __initstub__kmod_common__356_42_trace_init_flags_sys_enterearly
+ffffffff823d2f18 t __initstub__kmod_common__358_66_trace_init_flags_sys_exitearly
+ffffffff823d2f2c t __initstub__kmod_procfs__266_146_proc_modules_init6
+ffffffff823d2f50 t __initstub__kmod_profile__298_553_create_proc_profile4
+ffffffff823d2f60 t __initstub__kmod_timer__486_276_timer_sysctl_init6
+ffffffff823d2f87 t init_timers
+ffffffff823d2fad t init_timer_cpus
+ffffffff823d303a t setup_hrtimer_hres
+ffffffff823d305a t hrtimers_init
+ffffffff823d3082 t read_persistent_wall_and_boot_offset
+ffffffff823d30b2 t timekeeping_init
+ffffffff823d3287 t __initstub__kmod_timekeeping__302_1928_timekeeping_init_ops6
+ffffffff823d32a0 t ntp_tick_adj_setup
+ffffffff823d32ca t ntp_init
+ffffffff823d337b t __initstub__kmod_clocksource__209_1057_clocksource_done_booting5
+ffffffff823d338d t clocksource_done_booting
+ffffffff823d33cf t __initstub__kmod_clocksource__219_1458_init_clocksource_sysfs6
+ffffffff823d33df t init_clocksource_sysfs
+ffffffff823d341f t boot_override_clocksource
+ffffffff823d3465 t boot_override_clock
+ffffffff823d34b3 t __initstub__kmod_jiffies__193_69_init_jiffies_clocksource1
+ffffffff823d34d1 t clocksource_default_clock
+ffffffff823d34e3 t __initstub__kmod_timer_list__269_359_init_timer_list_procfs6
+ffffffff823d3520 t __initstub__kmod_alarmtimer__341_964_alarmtimer_init6
+ffffffff823d3530 t alarmtimer_init
+ffffffff823d35f8 t __initstub__kmod_posix_timers__290_280_init_posix_timers6
+ffffffff823d3630 t posix_cputimers_init_work
+ffffffff823d3663 t __initstub__kmod_clockevents__208_777_clockevents_init_sysfs6
+ffffffff823d3673 t clockevents_init_sysfs
+ffffffff823d36a2 t tick_init_sysfs
+ffffffff823d374d t tick_broadcast_init_sysfs
+ffffffff823d3787 t tick_init
+ffffffff823d3797 t tick_broadcast_init
+ffffffff823d381b t setup_tick_nohz
+ffffffff823d383b t skew_tick
+ffffffff823d3887 t __initstub__kmod_timekeeping_debug__325_44_tk_debug_sleep_time_init7
+ffffffff823d38b7 t __initstub__kmod_core__294_1153_futex_init1
+ffffffff823d38c9 t futex_init
+ffffffff823d39ab t __initstub__kmod_dma__222_144_proc_dma_init6
+ffffffff823d39d2 t call_function_init
+ffffffff823d3a32 t nosmp
+ffffffff823d3a4e t nrcpus
+ffffffff823d3ab6 t maxcpus
+ffffffff823d3b10 t setup_nr_cpu_ids
+ffffffff823d3b43 t smp_init
+ffffffff823d3bb5 t __initstub__kmod_kallsyms__416_961_kallsyms_init6
+ffffffff823d3bdc t parse_crashkernel
+ffffffff823d3bef t __parse_crashkernel
+ffffffff823d3cb1 t parse_crashkernel_high
+ffffffff823d3cc8 t parse_crashkernel_low
+ffffffff823d3cdf t parse_crashkernel_dummy
+ffffffff823d3cec t __initstub__kmod_crash_core__266_514_crash_save_vmcoreinfo_init4
+ffffffff823d3cfc t crash_save_vmcoreinfo_init
+ffffffff823d445c t get_last_crashkernel
+ffffffff823d4549 t parse_crashkernel_suffix
+ffffffff823d460c t parse_crashkernel_mem
+ffffffff823d47ce t parse_crashkernel_simple
+ffffffff823d487d t __initstub__kmod_kexec_core__343_952_kexec_core_sysctl_init7
+ffffffff823d48a4 t __initstub__kmod_kexec_core__348_1128_crash_notes_memory_init4
+ffffffff823d48b4 t crash_notes_memory_init
+ffffffff823d48fa t cgroup_init_early
+ffffffff823d4a15 t cgroup_init_subsys
+ffffffff823d4bc4 t cgroup_init
+ffffffff823d501b t __initstub__kmod_cgroup__719_6185_cgroup_wq_init1
+ffffffff823d502d t cgroup_wq_init
+ffffffff823d5059 t cgroup_disable
+ffffffff823d5188 t enable_debug_cgroup
+ffffffff823d5193 t enable_cgroup_debug
+ffffffff823d51af t __initstub__kmod_cgroup__732_7073_cgroup_sysfs_init4
+ffffffff823d51cf t cgroup_rstat_boot
+ffffffff823d521e t __initstub__kmod_rstat__285_549_bpf_rstat_kfunc_init7
+ffffffff823d522b t __initstub__kmod_namespace__270_157_cgroup_namespaces_init4
+ffffffff823d5238 t __initstub__kmod_cgroup_v1__384_1280_cgroup1_wq_init1
+ffffffff823d524a t cgroup1_wq_init
+ffffffff823d5276 t cgroup_no_v1
+ffffffff823d5397 t cpuset_init
+ffffffff823d546e t cpuset_init_smp
+ffffffff823d54f2 t cpuset_init_current_mems_allowed
+ffffffff823d5510 t __initstub__kmod_stop_machine__274_586_cpu_stop_initearly
+ffffffff823d5522 t cpu_stop_init
+ffffffff823d55c2 t __initstub__kmod_audit__531_1712_audit_init2
+ffffffff823d55d4 t audit_init
+ffffffff823d575c t audit_enable
+ffffffff823d5864 t audit_backlog_limit_set
+ffffffff823d58fa t audit_net_init
+ffffffff823d59ad t audit_register_class
+ffffffff823d5a46 t __initstub__kmod_audit_watch__318_503_audit_watch_init6
+ffffffff823d5a58 t audit_watch_init
+ffffffff823d5a97 t __initstub__kmod_audit_fsnotify__318_193_audit_fsnotify_init6
+ffffffff823d5aa9 t audit_fsnotify_init
+ffffffff823d5aeb t __initstub__kmod_audit_tree__322_1086_audit_tree_init6
+ffffffff823d5afd t audit_tree_init
+ffffffff823d5b7b t __initstub__kmod_hung_task__642_406_hung_task_init4
+ffffffff823d5b8d t hung_task_init
+ffffffff823d5c17 t watchdog_nmi_probe
+ffffffff823d5c27 t nowatchdog_setup
+ffffffff823d5c41 t nosoftlockup_setup
+ffffffff823d5c5b t watchdog_thresh_setup
+ffffffff823d5caa t lockup_detector_init
+ffffffff823d5d0b t lockup_detector_setup
+ffffffff823d5d85 t __initstub__kmod_seccomp__422_2406_seccomp_sysctl_init6
+ffffffff823d5d97 t seccomp_sysctl_init
+ffffffff823d5dcf t __initstub__kmod_utsname_sysctl__145_154_utsname_sysctl_init6
+ffffffff823d5df6 t taskstats_init_early
+ffffffff823d5ea3 t __initstub__kmod_taskstats__327_724_taskstats_init7
+ffffffff823d5eb3 t taskstats_init
+ffffffff823d5eee t __initstub__kmod_tracepoint__214_140_release_early_probes2
+ffffffff823d5f00 t release_early_probes
+ffffffff823d5f36 t __initstub__kmod_tracepoint__238_737_init_tracepoints6
+ffffffff823d5f46 t init_tracepoints
+ffffffff823d5f7e t set_cmdline_ftrace
+ffffffff823d5fb4 t set_ftrace_dump_on_oops
+ffffffff823d602a t stop_trace_on_warning
+ffffffff823d606c t boot_alloc_snapshot
+ffffffff823d6083 t boot_snapshot
+ffffffff823d60a1 t set_trace_boot_options
+ffffffff823d60c5 t set_trace_boot_clock
+ffffffff823d60f4 t set_tracepoint_printk
+ffffffff823d6143 t set_tracepoint_printk_stop
+ffffffff823d615a t set_buf_size
+ffffffff823d61bf t set_tracing_thresh
+ffffffff823d6229 t register_tracer
+ffffffff823d641b t apply_trace_boot_options
+ffffffff823d64a6 t __initstub__kmod_trace__386_9737_trace_eval_init4
+ffffffff823d64b6 t trace_eval_init
+ffffffff823d6564 t __initstub__kmod_trace__388_9747_trace_eval_sync7s
+ffffffff823d6582 t __initstub__kmod_trace__390_9882_tracer_init_tracefs5
+ffffffff823d6594 t tracer_init_tracefs
+ffffffff823d6663 t ftrace_boot_snapshot
+ffffffff823d66b6 t early_trace_init
+ffffffff823d6732 t tracer_alloc_buffers
+ffffffff823d6ada t trace_init
+ffffffff823d6aea t __initstub__kmod_trace__394_10396_late_trace_init7s
+ffffffff823d6afc t late_trace_init
+ffffffff823d6b63 t eval_map_work_func
+ffffffff823d6b93 t tracer_init_tracefs_work_func
+ffffffff823d6ca1 t create_trace_instances
+ffffffff823d6d7c t tracing_set_default_clock
+ffffffff823d6dd0 t init_events
+ffffffff823d6e32 t __initstub__kmod_trace_printk__293_393_init_trace_printk_function_export5
+ffffffff823d6e44 t init_trace_printk_function_export
+ffffffff823d6e74 t __initstub__kmod_trace_printk__295_400_init_trace_printkearly
+ffffffff823d6e94 t setup_trace_event
+ffffffff823d6ebf t __initstub__kmod_trace_events__660_3801_event_trace_enable_againearly
+ffffffff823d6ecf t event_trace_enable_again
+ffffffff823d6f19 t event_trace_init
+ffffffff823d6fbb t early_event_add_tracer
+ffffffff823d7019 t trace_event_init
+ffffffff823d7033 t event_trace_memsetup
+ffffffff823d709c t event_trace_enable
+ffffffff823d71cd t event_trace_init_fields
+ffffffff823d764f t early_enable_events
+ffffffff823d771c t register_event_command
+ffffffff823d77b4 t unregister_event_command
+ffffffff823d7837 t register_trigger_cmds
+ffffffff823d786c t register_trigger_traceon_traceoff_cmds
+ffffffff823d78b7 t register_trigger_enable_disable_cmds
+ffffffff823d7902 t __initstub__kmod_trace_eprobe__299_1081_trace_events_eprobe_init_early1
+ffffffff823d7912 t trace_events_eprobe_init_early
+ffffffff823d7941 t __initstub__kmod_trace_events_synth__310_2249_trace_events_synth_init_early1
+ffffffff823d7951 t trace_events_synth_init_early
+ffffffff823d7980 t __initstub__kmod_trace_events_synth__312_2273_trace_events_synth_init5
+ffffffff823d7990 t trace_events_synth_init
+ffffffff823d79e2 t register_trigger_hist_cmd
+ffffffff823d7a01 t register_trigger_hist_enable_disable_cmds
+ffffffff823d7a54 t __initstub__kmod_trace_dynevent__289_271_init_dynamic_event5
+ffffffff823d7a66 t init_dynamic_event
+ffffffff823d7a96 t __initstub__kmod_trace_uprobe__562_1667_init_uprobe_trace5
+ffffffff823d7aa6 t init_uprobe_trace
+ffffffff823d7b08 t __initstub__kmod_irq_work__225_318_irq_work_init_threadsearly
+ffffffff823d7b15 t static_call_init
+ffffffff823d7b94 t __initstub__kmod_static_call_inline__201_500_static_call_initearly
+ffffffff823d7ba6 t perf_event_init
+ffffffff823d7cc7 t perf_event_init_all_cpus
+ffffffff823d7dbe t __initstub__kmod_core__628_13622_perf_event_sysfs_init6
+ffffffff823d7dce t perf_event_sysfs_init
+ffffffff823d7e5b t init_hw_breakpoint
+ffffffff823d7eaf t uprobes_init
+ffffffff823d7ef7 t jump_label_init
+ffffffff823d800a t __initstub__kmod_jump_label__218_745_jump_label_init_moduleearly
+ffffffff823d802a t pagecache_init
+ffffffff823d8065 t __initstub__kmod_oom_kill__447_741_oom_init4
+ffffffff823d8077 t oom_init
+ffffffff823d80d9 t page_writeback_init
+ffffffff823d81ac t swap_setup
+ffffffff823d81d2 t __initstub__kmod_vmscan__730_6147_init_lru_gen7
+ffffffff823d81e4 t init_lru_gen
+ffffffff823d825c t __initstub__kmod_vmscan__767_7870_kswapd_init6
+ffffffff823d828b t shmem_init
+ffffffff823d8358 t init_mm_internals
+ffffffff823d849b t start_shepherd_timer
+ffffffff823d857e t __initstub__kmod_vmstat__362_2254_extfrag_debug_init6
+ffffffff823d8590 t extfrag_debug_init
+ffffffff823d85f6 t __initstub__kmod_backing_dev__572_232_bdi_class_init2
+ffffffff823d8606 t bdi_class_init
+ffffffff823d865c t __initstub__kmod_backing_dev__574_242_default_bdi_init4
+ffffffff823d8690 t __initstub__kmod_backing_dev__593_762_cgwb_init4
+ffffffff823d86c4 t mminit_verify_zonelist
+ffffffff823d8786 t mminit_verify_pageflags_layout
+ffffffff823d8876 t set_mminit_loglevel
+ffffffff823d88c2 t __initstub__kmod_mm_init__338_194_mm_compute_batch_init6
+ffffffff823d88d4 t mm_compute_batch_init
+ffffffff823d88ff t __initstub__kmod_mm_init__340_206_mm_sysfs_init2
+ffffffff823d8931 t pcpu_alloc_alloc_info
+ffffffff823d89d7 t pcpu_free_alloc_info
+ffffffff823d89eb t pcpu_setup_first_chunk
+ffffffff823d9230 t pcpu_alloc_first_chunk
+ffffffff823d9505 t percpu_alloc_setup
+ffffffff823d956d t pcpu_embed_first_chunk
+ffffffff823d98c2 t pcpu_build_alloc_info
+ffffffff823d9e0c t pcpu_page_first_chunk
+ffffffff823da250 t __initstub__kmod_percpu__428_3463_percpu_enable_async4
+ffffffff823da264 t setup_slab_nomerge
+ffffffff823da27b t setup_slab_merge
+ffffffff823da292 t create_boot_cache
+ffffffff823da341 t create_kmalloc_cache
+ffffffff823da3ff t setup_kmalloc_cache_index_table
+ffffffff823da40a t create_kmalloc_caches
+ffffffff823da4ae t new_kmalloc_cache
+ffffffff823da599 t __initstub__kmod_slab_common__480_1328_slab_proc_init6
+ffffffff823da5c0 t __initstub__kmod_compaction__552_3091_kcompactd_init4
+ffffffff823da5d0 t kcompactd_init
+ffffffff823da62f t __initstub__kmod_workingset__357_750_workingset_init6
+ffffffff823da63f t workingset_init
+ffffffff823da6e8 t disable_randmaps
+ffffffff823da702 t __initstub__kmod_memory__450_164_init_zero_pfnearly
+ffffffff823da74b t __initstub__kmod_memory__486_4500_fault_around_debugfs7
+ffffffff823da77b t cmdline_parse_stack_guard_gap
+ffffffff823da7e1 t mmap_init
+ffffffff823da806 t __initstub__kmod_mmap__429_3756_init_user_reserve4
+ffffffff823da847 t __initstub__kmod_mmap__433_3777_init_admin_reserve4
+ffffffff823da888 t __initstub__kmod_mmap__435_3847_init_reserve_notifier4
+ffffffff823da89a t anon_vma_init
+ffffffff823da901 t set_nohugeiomap
+ffffffff823da915 t set_nohugevmalloc
+ffffffff823da929 t vm_area_add_early
+ffffffff823da97a t vm_area_register_early
+ffffffff823daa23 t vmalloc_init
+ffffffff823dabce t __initstub__kmod_vmalloc__398_4205_proc_vmalloc_init6
+ffffffff823dabfb t early_init_on_alloc
+ffffffff823dac12 t early_init_on_free
+ffffffff823dac29 t init_mem_debugging_and_hardening
+ffffffff823dac84 t memblock_free_pages
+ffffffff823dac96 t page_alloc_init_late
+ffffffff823dace6 t build_all_zonelists_init
+ffffffff823dad55 t memmap_alloc
+ffffffff823dad7b t setup_per_cpu_pageset
+ffffffff823dadd2 t get_pfn_range_for_nid
+ffffffff823daeae t __absent_pages_in_range
+ffffffff823daf8e t absent_pages_in_range
+ffffffff823dafa9 t set_pageblock_order
+ffffffff823dafb4 t node_map_pfn_alignment
+ffffffff823db0b7 t free_area_init
+ffffffff823db306 t find_zone_movable_pfns_for_nodes
+ffffffff823db6ef t free_area_init_node
+ffffffff823db7da t memmap_init
+ffffffff823db904 t cmdline_parse_kernelcore
+ffffffff823db945 t cmdline_parse_movablecore
+ffffffff823db963 t mem_init_print_info
+ffffffff823dbb2a t set_dma_reserve
+ffffffff823dbb3c t page_alloc_init
+ffffffff823dbb81 t __initstub__kmod_page_alloc__702_8978_init_per_zone_wmark_min2
+ffffffff823dbb93 t alloc_large_system_hash
+ffffffff823dbe2f t early_calculate_totalpages
+ffffffff823dbee3 t calculate_node_totalpages
+ffffffff823dbfe1 t free_area_init_core
+ffffffff823dc13a t zone_spanned_pages_in_node
+ffffffff823dc1e9 t zone_absent_pages_in_node
+ffffffff823dc369 t adjust_zone_range_for_zone_movable
+ffffffff823dc3d8 t memmap_init_zone_range
+ffffffff823dc47f t init_unavailable_range
+ffffffff823dc5d4 t cmdline_parse_core
+ffffffff823dc672 t memblock_discard
+ffffffff823dc75e t memblock_free_late
+ffffffff823dc825 t memblock_alloc_range_nid
+ffffffff823dc9a6 t memblock_phys_alloc_range
+ffffffff823dca48 t memblock_phys_alloc_try_nid
+ffffffff823dca62 t memblock_alloc_exact_nid_raw
+ffffffff823dcb0e t memblock_alloc_internal
+ffffffff823dcbb0 t memblock_alloc_try_nid_raw
+ffffffff823dcc59 t memblock_alloc_try_nid
+ffffffff823dcd1a t memblock_enforce_memory_limit
+ffffffff823dcd98 t memblock_cap_memory_range
+ffffffff823dcee8 t memblock_mem_limit_remove_map
+ffffffff823dcf3f t memblock_allow_resize
+ffffffff823dcf51 t early_memblock
+ffffffff823dcf7b t reset_all_zones_managed_pages
+ffffffff823dcfb7 t memblock_free_all
+ffffffff823dd000 t free_low_memory_core_early
+ffffffff823dd122 t memmap_init_reserved_pages
+ffffffff823dd233 t __free_pages_memory
+ffffffff823dd29c t setup_memhp_default_state
+ffffffff823dd2bb t cmdline_parse_movable_node
+ffffffff823dd2cf t __initstub__kmod_swap_state__352_909_swap_init_sysfs4
+ffffffff823dd2df t swap_init_sysfs
+ffffffff823dd35a t __initstub__kmod_swapfile__377_2701_procswaps_init6
+ffffffff823dd37e t __initstub__kmod_swapfile__380_2710_max_swapfiles_check7
+ffffffff823dd38b t __initstub__kmod_swapfile__407_3704_swapfile_init4
+ffffffff823dd39b t swapfile_init
+ffffffff823dd418 t subsection_map_init
+ffffffff823dd4ee t sparse_init
+ffffffff823dd739 t memblocks_present
+ffffffff823dd7ea t sparse_init_nid
+ffffffff823ddb23 t memory_present
+ffffffff823ddcac t sparse_early_usemaps_alloc_pgdat_section
+ffffffff823ddd0f t sparse_buffer_init
+ffffffff823ddd9a t sparse_buffer_fini
+ffffffff823dddcf t check_usemap_section_nr
+ffffffff823ddeec t setup_slub_debug
+ffffffff823de057 t setup_slub_min_order
+ffffffff823de0a6 t setup_slub_max_order
+ffffffff823de10c t setup_slub_min_objects
+ffffffff823de15b t kmem_cache_init
+ffffffff823de289 t bootstrap
+ffffffff823de3a6 t init_freelist_randomization
+ffffffff823de441 t kmem_cache_init_late
+ffffffff823de46f t __initstub__kmod_slub__476_6078_slab_sysfs_init6
+ffffffff823de47f t slab_sysfs_init
+ffffffff823de5e5 t __initstub__kmod_slub__479_6293_slab_debugfs_init6
+ffffffff823de5f7 t slab_debugfs_init
+ffffffff823de6aa t __initstub__kmod_core__347_743_kfence_debugfs_init7
+ffffffff823de71b t kfence_alloc_pool
+ffffffff823de76d t kfence_init
+ffffffff823de7b2 t kfence_init_pool_early
+ffffffff823de81e t __initstub__kmod_huge_memory__409_521_hugepage_init4
+ffffffff823de82e t hugepage_init
+ffffffff823de91c t setup_transparent_hugepage
+ffffffff823de9b0 t __initstub__kmod_huge_memory__426_3202_split_huge_pages_debugfs7
+ffffffff823de9e0 t hugepage_init_sysfs
+ffffffff823dea93 t hugepage_exit_sysfs
+ffffffff823deac6 t khugepaged_init
+ffffffff823deb36 t khugepaged_destroy
+ffffffff823deb4d t cgroup_memory
+ffffffff823debff t __initstub__kmod_memcontrol__1064_7325_mem_cgroup_init4
+ffffffff823dec11 t mem_cgroup_init
+ffffffff823decf6 t setup_swap_account
+ffffffff823ded24 t __initstub__kmod_memcontrol__1073_7817_mem_cgroup_swap_init4
+ffffffff823ded36 t mem_cgroup_swap_init
+ffffffff823ded79 t early_page_owner_param
+ffffffff823deda6 t need_page_owner
+ffffffff823dedb7 t init_page_owner
+ffffffff823df08c t __initstub__kmod_page_owner__338_745_pageowner_init7
+ffffffff823df09e t pageowner_init
+ffffffff823df0dc t __initstub__kmod_zsmalloc__360_2366_zs_init6
+ffffffff823df11e t early_ioremap_debug_setup
+ffffffff823df132 t early_memremap_pgprot_adjust
+ffffffff823df140 t early_ioremap_reset
+ffffffff823df152 t early_ioremap_setup
+ffffffff823df19a t __initstub__kmod_early_ioremap__322_99_check_early_ioremap_leak7
+ffffffff823df1aa t check_early_ioremap_leak
+ffffffff823df1ed t early_iounmap
+ffffffff823df304 t early_ioremap
+ffffffff823df325 t __early_ioremap
+ffffffff823df4d3 t early_memremap
+ffffffff823df50e t early_memremap_ro
+ffffffff823df549 t early_memremap_prot
+ffffffff823df559 t copy_from_early_mem
+ffffffff823df5ea t early_memunmap
+ffffffff823df5fa t setup_early_page_ext
+ffffffff823df60e t page_ext_init
+ffffffff823df765 t __initstub__kmod_secretmem__337_293_secretmem_init5
+ffffffff823df775 t secretmem_init
+ffffffff823df7b2 t __initstub__kmod_core__295_1301_damon_init4
+ffffffff823df7c2 t damon_init
+ffffffff823df816 t __initstub__kmod_paddr__324_319_damon_pa_initcall4
+ffffffff823df868 t __initstub__kmod_reclaim__219_284_damon_reclaim_init6
+ffffffff823df878 t damon_reclaim_init
+ffffffff823df925 t parse_hardened_usercopy
+ffffffff823df95b t __initstub__kmod_usercopy__322_276_set_hardened_usercopy7
+ffffffff823df98a t register_page_bootmem_info_node
+ffffffff823dfabc t register_page_bootmem_info_section
+ffffffff823dfb92 t __initstub__kmod_file_table__334_130_init_fs_stat_sysctls5
+ffffffff823dfba4 t init_fs_stat_sysctls
+ffffffff823dfbe3 t files_init
+ffffffff823dfc33 t files_maxfiles_init
+ffffffff823dfc9c t chrdev_init
+ffffffff823dfcc1 t __initstub__kmod_exec__717_2157_init_fs_exec_sysctls5
+ffffffff823dfce8 t __initstub__kmod_pipe__351_1511_init_pipe_fs5
+ffffffff823dfcf8 t init_pipe_fs
+ffffffff823dfd66 t __initstub__kmod_namei__340_1076_init_fs_namei_sysctls5
+ffffffff823dfd8d t __initstub__kmod_fcntl__315_1041_fcntl_init6
+ffffffff823dfdc5 t __initstub__kmod_dcache__269_202_init_fs_dcache_sysctls5
+ffffffff823dfdec t set_dhash_entries
+ffffffff823dfe44 t vfs_caches_init_early
+ffffffff823dfe6c t dcache_init_early
+ffffffff823dfec2 t vfs_caches_init
+ffffffff823dff64 t __initstub__kmod_inode__586_140_init_fs_inode_sysctlsearly
+ffffffff823dff8b t set_ihash_entries
+ffffffff823dffe3 t inode_init_early
+ffffffff823e002c t inode_init
+ffffffff823e0065 t list_bdev_fs_names
+ffffffff823e0119 t __initstub__kmod_filesystems__286_258_proc_filesystems_init6
+ffffffff823e0140 t set_mhash_entries
+ffffffff823e0198 t set_mphash_entries
+ffffffff823e01f0 t mnt_init
+ffffffff823e031a t init_mount_tree
+ffffffff823e047b t __initstub__kmod_namespace__374_4719_init_fs_namespace_sysctls5
+ffffffff823e04a2 t seq_file_init
+ffffffff823e04db t __initstub__kmod_fs_writeback__711_1123_cgroup_writeback_init5
+ffffffff823e050c t __initstub__kmod_fs_writeback__726_2339_start_dirtytime_writeback6
+ffffffff823e053b t nsfs_init
+ffffffff823e0579 t init_mount
+ffffffff823e0612 t init_umount
+ffffffff823e067a t init_chdir
+ffffffff823e0710 t init_chroot
+ffffffff823e07c2 t init_chown
+ffffffff823e0865 t init_chmod
+ffffffff823e08dc t init_eaccess
+ffffffff823e095c t init_stat
+ffffffff823e09f0 t init_mknod
+ffffffff823e0b14 t init_link
+ffffffff823e0bf2 t init_symlink
+ffffffff823e0c88 t init_unlink
+ffffffff823e0ca5 t init_mkdir
+ffffffff823e0d5c t init_rmdir
+ffffffff823e0d79 t init_utimes
+ffffffff823e0df2 t init_dup
+ffffffff823e0e28 t buffer_init
+ffffffff823e0ebf t __initstub__kmod_direct_io__307_1346_dio_init6
+ffffffff823e0efa t __initstub__kmod_fsnotify__282_601_fsnotify_init1
+ffffffff823e0f0c t fsnotify_init
+ffffffff823e0f6d t __initstub__kmod_inotify_user__354_891_inotify_user_setup5
+ffffffff823e0f7f t inotify_user_setup
+ffffffff823e1088 t __initstub__kmod_eventpoll__594_2419_eventpoll_init5
+ffffffff823e109a t eventpoll_init
+ffffffff823e11d6 t __initstub__kmod_anon_inodes__269_270_anon_inode_init5
+ffffffff823e11e8 t anon_inode_init
+ffffffff823e123e t __initstub__kmod_userfaultfd__364_2191_userfaultfd_init6
+ffffffff823e124e t userfaultfd_init
+ffffffff823e129d t __initstub__kmod_aio__342_307_aio_setup6
+ffffffff823e12af t aio_setup
+ffffffff823e1359 t __initstub__kmod_locks__422_121_init_fs_locks_sysctlsearly
+ffffffff823e1380 t __initstub__kmod_locks__477_2916_proc_locks_init5
+ffffffff823e13ad t __initstub__kmod_locks__479_2939_filelock_init1
+ffffffff823e13bf t filelock_init
+ffffffff823e147f t __initstub__kmod_binfmt_misc__303_834_init_misc_binfmt1
+ffffffff823e148f t init_misc_binfmt
+ffffffff823e14c1 t __initstub__kmod_binfmt_script__232_156_init_script_binfmt1
+ffffffff823e14dc t __initstub__kmod_binfmt_elf__347_2345_init_elf_binfmt1
+ffffffff823e14f7 t __initstub__kmod_mbcache__242_440_mbcache_init6
+ffffffff823e153c t __initstub__kmod_coredump__688_985_init_fs_coredump_sysctls5
+ffffffff823e1563 t __initstub__kmod_iomap__446_1553_iomap_init5
+ffffffff823e1589 t proc_init_kmemcache
+ffffffff823e1620 t proc_root_init
+ffffffff823e16a5 t set_proc_pid_nlink
+ffffffff823e16be t proc_tty_init
+ffffffff823e173e t __initstub__kmod_proc__222_19_proc_cmdline_init5
+ffffffff823e1765 t __initstub__kmod_proc__240_98_proc_consoles_init5
+ffffffff823e178f t __initstub__kmod_proc__252_28_proc_cpuinfo_init5
+ffffffff823e17b3 t __initstub__kmod_proc__302_64_proc_devices_init5
+ffffffff823e17c5 t proc_devices_init
+ffffffff823e17f4 t __initstub__kmod_proc__222_42_proc_interrupts_init5
+ffffffff823e181e t __initstub__kmod_proc__259_37_proc_loadavg_init5
+ffffffff823e184c t __initstub__kmod_proc__323_177_proc_meminfo_init5
+ffffffff823e187a t __initstub__kmod_proc__232_242_proc_stat_init5
+ffffffff823e189e t __initstub__kmod_proc__222_49_proc_uptime_init5
+ffffffff823e18cc t __initstub__kmod_proc__222_27_proc_version_init5
+ffffffff823e18fa t __initstub__kmod_proc__222_37_proc_softirqs_init5
+ffffffff823e1928 t proc_self_init
+ffffffff823e193f t proc_thread_self_init
+ffffffff823e1956 t __register_sysctl_init
+ffffffff823e1998 t proc_sys_init
+ffffffff823e19cd t proc_net_init
+ffffffff823e19f9 t proc_net_ns_init
+ffffffff823e1aba t __initstub__kmod_proc__222_63_proc_kmsg_init5
+ffffffff823e1ae1 t __initstub__kmod_proc__329_342_proc_page_init5
+ffffffff823e1af3 t proc_page_init
+ffffffff823e1b4c t __initstub__kmod_proc__222_96_proc_boot_config_init5
+ffffffff823e1b5c t proc_boot_config_init
+ffffffff823e1bde t copy_xbc_key_value_list
+ffffffff823e1dd3 t kernfs_init
+ffffffff823e1e3b t kernfs_lock_init
+ffffffff823e1e93 t sysfs_init
+ffffffff823e1ef5 t __initstub__kmod_devpts__273_637_init_devpts_fs6
+ffffffff823e1f05 t init_devpts_fs
+ffffffff823e1f40 t ext4_init_system_zone
+ffffffff823e1f85 t ext4_init_es
+ffffffff823e1fca t ext4_init_pending
+ffffffff823e200f t ext4_init_mballoc
+ffffffff823e20df t ext4_init_pageio
+ffffffff823e2164 t ext4_init_post_read_processing
+ffffffff823e21da t __initstub__kmod_ext4__1657_7310_ext4_init_fs6
+ffffffff823e21ea t ext4_init_fs
+ffffffff823e2357 t init_inodecache
+ffffffff823e23a2 t ext4_init_sysfs
+ffffffff823e246a t ext4_fc_init_dentry_cache
+ffffffff823e24b2 t jbd2_journal_init_transaction_cache
+ffffffff823e2512 t jbd2_journal_init_revoke_record_cache
+ffffffff823e2575 t jbd2_journal_init_revoke_table_cache
+ffffffff823e25d8 t __initstub__kmod_jbd2__615_3198_journal_init6
+ffffffff823e25e8 t journal_init
+ffffffff823e261e t journal_init_caches
+ffffffff823e265d t jbd2_journal_init_journal_head_cache
+ffffffff823e26bd t jbd2_journal_init_handle_cache
+ffffffff823e2720 t jbd2_journal_init_inode_cache
+ffffffff823e2780 t __initstub__kmod_ramfs__307_299_init_ramfs_fs5
+ffffffff823e2797 t __initstub__kmod_nls_cp437__189_384_init_nls_cp4376
+ffffffff823e27b0 t __initstub__kmod_nls_cp737__189_347_init_nls_cp7376
+ffffffff823e27c9 t __initstub__kmod_nls_cp775__189_316_init_nls_cp7756
+ffffffff823e27e2 t __initstub__kmod_nls_cp850__189_312_init_nls_cp8506
+ffffffff823e27fb t __initstub__kmod_nls_cp852__189_334_init_nls_cp8526
+ffffffff823e2814 t __initstub__kmod_nls_cp855__189_296_init_nls_cp8556
+ffffffff823e282d t __initstub__kmod_nls_cp857__189_298_init_nls_cp8576
+ffffffff823e2846 t __initstub__kmod_nls_cp860__189_361_init_nls_cp8606
+ffffffff823e285f t __initstub__kmod_nls_cp861__189_384_init_nls_cp8616
+ffffffff823e2878 t __initstub__kmod_nls_cp862__189_418_init_nls_cp8626
+ffffffff823e2891 t __initstub__kmod_nls_cp863__189_378_init_nls_cp8636
+ffffffff823e28aa t __initstub__kmod_nls_cp864__189_404_init_nls_cp8646
+ffffffff823e28c3 t __initstub__kmod_nls_cp865__189_384_init_nls_cp8656
+ffffffff823e28dc t __initstub__kmod_nls_cp866__189_302_init_nls_cp8666
+ffffffff823e28f5 t __initstub__kmod_nls_cp869__189_312_init_nls_cp8696
+ffffffff823e290e t __initstub__kmod_nls_cp874__189_271_init_nls_cp8746
+ffffffff823e2927 t __initstub__kmod_nls_cp932__189_7929_init_nls_cp9326
+ffffffff823e2940 t __initstub__kmod_nls_euc_jp__189_577_init_nls_euc_jp6
+ffffffff823e2950 t init_nls_euc_jp
+ffffffff823e299e t __initstub__kmod_nls_cp936__189_11107_init_nls_cp9366
+ffffffff823e29b7 t __initstub__kmod_nls_cp949__189_13942_init_nls_cp9496
+ffffffff823e29d0 t __initstub__kmod_nls_cp950__189_9478_init_nls_cp9506
+ffffffff823e29e9 t __initstub__kmod_nls_cp1250__189_343_init_nls_cp12506
+ffffffff823e2a02 t __initstub__kmod_nls_cp1251__189_298_init_nls_cp12516
+ffffffff823e2a1b t __initstub__kmod_nls_ascii__189_163_init_nls_ascii6
+ffffffff823e2a34 t __initstub__kmod_nls_iso8859_1__189_254_init_nls_iso8859_16
+ffffffff823e2a4d t __initstub__kmod_nls_iso8859_2__189_305_init_nls_iso8859_26
+ffffffff823e2a66 t __initstub__kmod_nls_iso8859_3__189_305_init_nls_iso8859_36
+ffffffff823e2a7f t __initstub__kmod_nls_iso8859_4__189_305_init_nls_iso8859_46
+ffffffff823e2a98 t __initstub__kmod_nls_iso8859_5__189_269_init_nls_iso8859_56
+ffffffff823e2ab1 t __initstub__kmod_nls_iso8859_6__189_260_init_nls_iso8859_66
+ffffffff823e2aca t __initstub__kmod_nls_iso8859_7__189_314_init_nls_iso8859_76
+ffffffff823e2ae3 t __initstub__kmod_nls_cp1255__189_380_init_nls_cp12556
+ffffffff823e2afc t __initstub__kmod_nls_iso8859_9__189_269_init_nls_iso8859_96
+ffffffff823e2b15 t __initstub__kmod_nls_iso8859_13__189_282_init_nls_iso8859_136
+ffffffff823e2b2e t __initstub__kmod_nls_iso8859_14__189_338_init_nls_iso8859_146
+ffffffff823e2b47 t __initstub__kmod_nls_iso8859_15__189_304_init_nls_iso8859_156
+ffffffff823e2b60 t __initstub__kmod_nls_koi8_r__189_320_init_nls_koi8_r6
+ffffffff823e2b79 t __initstub__kmod_nls_koi8_u__189_327_init_nls_koi8_u6
+ffffffff823e2b92 t __initstub__kmod_nls_koi8_ru__189_79_init_nls_koi8_ru6
+ffffffff823e2ba2 t init_nls_koi8_ru
+ffffffff823e2bf0 t __initstub__kmod_nls_utf8__189_65_init_nls_utf86
+ffffffff823e2c1c t __initstub__kmod_mac_celtic__189_598_init_nls_macceltic6
+ffffffff823e2c35 t __initstub__kmod_mac_centeuro__189_528_init_nls_maccenteuro6
+ffffffff823e2c4e t __initstub__kmod_mac_croatian__189_598_init_nls_maccroatian6
+ffffffff823e2c67 t __initstub__kmod_mac_cyrillic__189_493_init_nls_maccyrillic6
+ffffffff823e2c80 t __initstub__kmod_mac_gaelic__189_563_init_nls_macgaelic6
+ffffffff823e2c99 t __initstub__kmod_mac_greek__189_493_init_nls_macgreek6
+ffffffff823e2cb2 t __initstub__kmod_mac_iceland__189_598_init_nls_maciceland6
+ffffffff823e2ccb t __initstub__kmod_mac_inuit__189_528_init_nls_macinuit6
+ffffffff823e2ce4 t __initstub__kmod_mac_romanian__189_598_init_nls_macromanian6
+ffffffff823e2cfd t __initstub__kmod_mac_roman__189_633_init_nls_macroman6
+ffffffff823e2d16 t __initstub__kmod_mac_turkish__189_598_init_nls_macturkish6
+ffffffff823e2d2f t fuse_dev_init
+ffffffff823e2d9a t __initstub__kmod_fuse__467_2237_fuse_init6
+ffffffff823e2daa t fuse_init
+ffffffff823e2f49 t fuse_fs_init
+ffffffff823e2fd2 t fuse_ctl_init
+ffffffff823e2fe9 t debugfs_kernel
+ffffffff823e304c t __initstub__kmod_debugfs__302_906_debugfs_init1
+ffffffff823e305c t debugfs_init
+ffffffff823e30c8 t tracefs_create_instance_dir
+ffffffff823e3114 t __initstub__kmod_tracefs__274_645_tracefs_init1
+ffffffff823e3124 t tracefs_init
+ffffffff823e3166 t __initstub__kmod_erofs__447_1121_erofs_module_init6
+ffffffff823e3176 t erofs_module_init
+ffffffff823e3242 t erofs_init_shrinker
+ffffffff823e3260 t erofs_init_sysfs
+ffffffff823e32e6 t z_erofs_init_zip_subsystem
+ffffffff823e3534 t capability_init
+ffffffff823e3559 t __initstub__kmod_min_addr__256_53_init_mmap_min_addr0
+ffffffff823e3583 t early_security_init
+ffffffff823e35e1 t prepare_lsm
+ffffffff823e367a t initialize_lsm
+ffffffff823e36d5 t security_init
+ffffffff823e3721 t ordered_lsm_init
+ffffffff823e3965 t choose_major_lsm
+ffffffff823e397c t choose_lsm_order
+ffffffff823e3993 t enable_debug
+ffffffff823e39aa t security_add_hooks
+ffffffff823e3a3d t lsm_allowed
+ffffffff823e3a84 t lsm_set_blob_sizes
+ffffffff823e3b55 t ordered_lsm_parse
+ffffffff823e3e4c t lsm_early_cred
+ffffffff823e3e96 t lsm_early_task
+ffffffff823e3ee6 t append_ordered_lsm
+ffffffff823e3fab t __initstub__kmod_inode__282_350_securityfs_init1
+ffffffff823e3fbb t securityfs_init
+ffffffff823e4038 t avc_init
+ffffffff823e40ef t avc_add_callback
+ffffffff823e4141 t enforcing_setup
+ffffffff823e41a0 t checkreqprot_setup
+ffffffff823e420f t selinux_init
+ffffffff823e4353 t __initstub__kmod_selinux__562_2251_init_sel_fs6
+ffffffff823e4363 t init_sel_fs
+ffffffff823e448a t __initstub__kmod_selinux__329_121_selnl_init6
+ffffffff823e449c t selnl_init
+ffffffff823e4522 t __initstub__kmod_selinux__561_279_sel_netif_init6
+ffffffff823e4534 t sel_netif_init
+ffffffff823e4570 t __initstub__kmod_selinux__562_305_sel_netnode_init6
+ffffffff823e45a9 t __initstub__kmod_selinux__562_238_sel_netport_init6
+ffffffff823e45e2 t ebitmap_cache_init
+ffffffff823e4618 t hashtab_cache_init
+ffffffff823e464e t avtab_cache_init
+ffffffff823e46b1 t __initstub__kmod_selinux__641_3831_aurule_init6
+ffffffff823e46c3 t aurule_init
+ffffffff823e46f1 t integrity_iintcache_init
+ffffffff823e472c t integrity_load_keys
+ffffffff823e4737 t __initstub__kmod_integrity__263_232_integrity_fs_init7
+ffffffff823e4747 t integrity_fs_init
+ffffffff823e47a4 t integrity_audit_setup
+ffffffff823e4803 t __initstub__kmod_crypto_algapi__395_1311_crypto_algapi_init7
+ffffffff823e482d t crypto_init_proc
+ffffffff823e4855 t __initstub__kmod_seqiv__281_183_seqiv_module_init4
+ffffffff823e486c t __initstub__kmod_echainiv__281_160_echainiv_module_init4
+ffffffff823e4883 t __initstub__kmod_cryptomgr__363_257_cryptomgr_init3
+ffffffff823e48a3 t __initstub__kmod_hmac__281_258_hmac_module_init4
+ffffffff823e48ba t __initstub__kmod_xcbc__191_270_crypto_xcbc_module_init4
+ffffffff823e48d1 t __initstub__kmod_crypto_null__274_221_crypto_null_mod_init4
+ffffffff823e48e1 t crypto_null_mod_init
+ffffffff823e4956 t __initstub__kmod_md5__192_245_md5_mod_init4
+ffffffff823e496d t __initstub__kmod_sha1_generic__269_89_sha1_generic_mod_init4
+ffffffff823e4984 t __initstub__kmod_sha256_generic__270_101_sha256_generic_mod_init4
+ffffffff823e49a0 t __initstub__kmod_sha512_generic__270_218_sha512_generic_mod_init4
+ffffffff823e49bc t __initstub__kmod_blake2b_generic__192_174_blake2b_mod_init4
+ffffffff823e49d8 t __initstub__kmod_cbc__191_218_crypto_cbc_module_init4
+ffffffff823e49ef t __initstub__kmod_ctr__193_355_crypto_ctr_module_init4
+ffffffff823e4a0b t __initstub__kmod_xctr__191_185_crypto_xctr_module_init4
+ffffffff823e4a22 t __initstub__kmod_hctr2__286_575_hctr2_module_init4
+ffffffff823e4a3e t __initstub__kmod_adiantum__290_613_adiantum_module_init4
+ffffffff823e4a55 t __initstub__kmod_nhpoly1305__206_248_nhpoly1305_mod_init4
+ffffffff823e4a6c t __initstub__kmod_gcm__283_1159_crypto_gcm_module_init4
+ffffffff823e4a7c t crypto_gcm_module_init
+ffffffff823e4aef t __initstub__kmod_chacha20poly1305__283_671_chacha20poly1305_module_init4
+ffffffff823e4b0b t __initstub__kmod_cryptd__283_1097_cryptd_init4
+ffffffff823e4b1b t cryptd_init
+ffffffff823e4c4b t __initstub__kmod_des_generic__191_125_des_generic_mod_init4
+ffffffff823e4c67 t __initstub__kmod_aes_generic__194_1314_aes_init4
+ffffffff823e4c7e t __initstub__kmod_chacha_generic__191_128_chacha_generic_mod_init4
+ffffffff823e4c9a t __initstub__kmod_poly1305_generic__193_142_poly1305_mod_init4
+ffffffff823e4cb1 t __initstub__kmod_deflate__270_334_deflate_mod_init4
+ffffffff823e4cc1 t deflate_mod_init
+ffffffff823e4d09 t __initstub__kmod_crc32c_generic__191_161_crc32c_mod_init4
+ffffffff823e4d20 t __initstub__kmod_authenc__368_464_crypto_authenc_module_init4
+ffffffff823e4d37 t __initstub__kmod_authencesn__366_479_crypto_authenc_esn_module_init4
+ffffffff823e4d4e t __initstub__kmod_lzo__266_158_lzo_mod_init4
+ffffffff823e4d5e t lzo_mod_init
+ffffffff823e4da1 t __initstub__kmod_lzo_rle__266_158_lzorle_mod_init4
+ffffffff823e4db1 t lzorle_mod_init
+ffffffff823e4df4 t __initstub__kmod_lz4__191_155_lz4_mod_init4
+ffffffff823e4e04 t lz4_mod_init
+ffffffff823e4e47 t __initstub__kmod_ansi_cprng__197_470_prng_mod_init4
+ffffffff823e4e63 t __initstub__kmod_drbg__282_2148_drbg_init4
+ffffffff823e4e73 t drbg_init
+ffffffff823e4eff t drbg_fill_array
+ffffffff823e4fd3 t __initstub__kmod_jitterentropy_rng__191_211_jent_mod_init6
+ffffffff823e4fe3 t jent_mod_init
+ffffffff823e5018 t __initstub__kmod_ghash_generic__194_178_ghash_mod_init4
+ffffffff823e502f t __initstub__kmod_polyval_generic__196_239_polyval_mod_init4
+ffffffff823e5046 t __initstub__kmod_zstd__270_253_zstd_mod_init4
+ffffffff823e5056 t zstd_mod_init
+ffffffff823e5099 t __initstub__kmod_essiv__282_646_essiv_module_init4
+ffffffff823e50b0 t bdev_cache_init
+ffffffff823e5137 t __initstub__kmod_fops__351_712_blkdev_init6
+ffffffff823e515d t __initstub__kmod_bio__555_1762_init_bio4
+ffffffff823e516f t init_bio
+ffffffff823e5227 t elevator_setup
+ffffffff823e5243 t blk_dev_init
+ffffffff823e52e8 t __initstub__kmod_blk_ioc__331_457_blk_ioc_init4
+ffffffff823e5320 t __initstub__kmod_blk_timeout__317_99_blk_timeout_init7
+ffffffff823e5334 t __initstub__kmod_blk_mq__567_4953_blk_mq_init4
+ffffffff823e5346 t blk_mq_init
+ffffffff823e5435 t printk_all_partitions
+ffffffff823e56a0 t __initstub__kmod_genhd__338_923_genhd_device_init4
+ffffffff823e56b0 t genhd_device_init
+ffffffff823e5713 t __initstub__kmod_genhd__342_1335_proc_genhd_init6
+ffffffff823e5725 t proc_genhd_init
+ffffffff823e576a t force_gpt_fn
+ffffffff823e5781 t __initstub__kmod_blk_cgroup__391_2001_blkcg_init4
+ffffffff823e57b5 t __initstub__kmod_blk_iocost__500_3464_ioc_init6
+ffffffff823e57cc t __initstub__kmod_mq_deadline__476_1242_deadline_init6
+ffffffff823e57e3 t __initstub__kmod_kyber_iosched__535_1051_kyber_init6
+ffffffff823e57fa t __initstub__kmod_bfq__560_7527_bfq_init6
+ffffffff823e580a t bfq_init
+ffffffff823e58a7 t __initstub__kmod_blk_crypto__316_99_bio_crypt_ctx_init4
+ffffffff823e58b9 t bio_crypt_ctx_init
+ffffffff823e5951 t __initstub__kmod_blk_crypto_sysfs__314_173_blk_crypto_sysfs_init4
+ffffffff823e5995 t __initstub__kmod_io_uring__887_4146_io_uring_init6
+ffffffff823e59a7 t io_uring_init
+ffffffff823e59e5 t io_uring_optable_init
+ffffffff823e5a47 t __initstub__kmod_io_wq__512_1417_io_wq_init4
+ffffffff823e5a57 t io_wq_init
+ffffffff823e5ab1 t __initstub__kmod_libblake2s__191_69_blake2s_mod_init6
+ffffffff823e5abe t __initstub__kmod_libcrc32c__193_74_libcrc32c_mod_init6
+ffffffff823e5afa t __initstub__kmod_percpu_counter__209_257_percpu_counter_startup6
+ffffffff823e5b0c t percpu_counter_startup
+ffffffff823e5b83 t dyndbg_setup
+ffffffff823e5b93 t __initstub__kmod_dynamic_debug__546_1453_dynamic_debug_initearly
+ffffffff823e5ba5 t dynamic_debug_init
+ffffffff823e5deb t __initstub__kmod_dynamic_debug__548_1456_dynamic_debug_init_control5
+ffffffff823e5dfb t dynamic_debug_init_control
+ffffffff823e5e83 t __initstub__kmod_sg_pool__258_180_sg_pool_init4
+ffffffff823e5e93 t sg_pool_init
+ffffffff823e5f91 t is_stack_depot_disabled
+ffffffff823e5fd0 t stack_depot_want_early_init
+ffffffff823e5fef t stack_depot_early_init
+ffffffff823e6088 t xbc_get_info
+ffffffff823e60c2 t xbc_root_node
+ffffffff823e60e0 t xbc_node_index
+ffffffff823e60f9 t xbc_node_get_parent
+ffffffff823e6124 t xbc_node_get_child
+ffffffff823e6149 t xbc_node_get_next
+ffffffff823e616d t xbc_node_get_data
+ffffffff823e6197 t xbc_node_find_subkey
+ffffffff823e62b2 t xbc_node_match_prefix
+ffffffff823e632f t xbc_node_find_value
+ffffffff823e63ad t xbc_node_compose_key_after
+ffffffff823e6574 t xbc_node_find_next_leaf
+ffffffff823e6646 t xbc_node_find_next_key_value
+ffffffff823e66a8 t xbc_exit
+ffffffff823e66fc t xbc_init
+ffffffff823e6884 t xbc_parse_tree
+ffffffff823e69ec t xbc_verify_tree
+ffffffff823e6c76 t xbc_parse_kv
+ffffffff823e6e30 t xbc_parse_key
+ffffffff823e6e7c t xbc_close_brace
+ffffffff823e6ea2 t __xbc_parse_keys
+ffffffff823e6eef t __xbc_parse_value
+ffffffff823e707f t xbc_parse_array
+ffffffff823e7139 t __xbc_close_brace
+ffffffff823e71c6 t __xbc_add_key
+ffffffff823e729b t xbc_valid_keyword
+ffffffff823e72d2 t find_match_node
+ffffffff823e7351 t __xbc_add_sibling
+ffffffff823e7415 t xbc_add_node
+ffffffff823e7467 t __xbc_open_brace
+ffffffff823e74cb t irqchip_init
+ffffffff823e7503 t __initstub__kmod_simple_pm_bus__198_91_simple_pm_bus_driver_init6
+ffffffff823e751c t __initstub__kmod_gpiolib__378_4474_gpiolib_dev_init1
+ffffffff823e752c t gpiolib_dev_init
+ffffffff823e762a t __initstub__kmod_gpiolib__380_4599_gpiolib_debugfs_init4
+ffffffff823e765a t __initstub__kmod_gpiolib_acpi__258_1492_acpi_gpio_handle_deferred_request_irqs7s
+ffffffff823e766c t acpi_gpio_handle_deferred_request_irqs
+ffffffff823e76c3 t __initstub__kmod_gpiolib_acpi__260_1645_acpi_gpio_setup_params2
+ffffffff823e76d5 t acpi_gpio_setup_params
+ffffffff823e7763 t __initstub__kmod_gpio_generic__241_816_bgpio_driver_init6
+ffffffff823e777c t __initstub__kmod_probe__273_109_pcibus_class_init2
+ffffffff823e779a t pci_sort_breadthfirst
+ffffffff823e77b8 t pci_sort_bf_cmp
+ffffffff823e781e t pcie_port_pm_setup
+ffffffff823e7869 t pci_register_set_vga_state
+ffffffff823e787b t __initstub__kmod_pci__382_6732_pci_resource_alignment_sysfs_init7
+ffffffff823e7899 t pci_setup
+ffffffff823e7d69 t __initstub__kmod_pci__385_6907_pci_realloc_setup_params0
+ffffffff823e7d7b t pci_realloc_setup_params
+ffffffff823e7db6 t __initstub__kmod_pci_driver__343_1726_pci_driver_init2
+ffffffff823e7dc6 t pci_driver_init
+ffffffff823e7ded t __initstub__kmod_pci_sysfs__271_1530_pci_sysfs_init7
+ffffffff823e7dfd t pci_sysfs_init
+ffffffff823e7e5d t pci_realloc_get_opt
+ffffffff823e7ea9 t pci_assign_unassigned_resources
+ffffffff823e7f3d t pcie_port_setup
+ffffffff823e7fb3 t __initstub__kmod_pcieportdrv__271_252_pcie_portdrv_init6
+ffffffff823e7fc3 t pcie_portdrv_init
+ffffffff823e800e t dmi_pcie_pme_disable_msi
+ffffffff823e8032 t pcie_aspm_disable
+ffffffff823e80a0 t pcie_aer_init
+ffffffff823e80ce t pcie_pme_setup
+ffffffff823e80fa t pcie_pme_init
+ffffffff823e8111 t __initstub__kmod_proc__270_472_pci_proc_init6
+ffffffff823e8123 t pci_proc_init
+ffffffff823e81a5 t __initstub__kmod_slot__273_381_pci_slot_init4
+ffffffff823e81ee t __initstub__kmod_pci_acpi__273_1493_acpi_pci_init3
+ffffffff823e8200 t acpi_pci_init
+ffffffff823e8249 t __initstub__kmod_quirks__328_195_pci_apply_final_quirks5s
+ffffffff823e825b t pci_apply_final_quirks
+ffffffff823e83bd t __initstub__kmod_vgaarb__277_1564_vga_arb_device_init4s
+ffffffff823e83cd t vga_arb_device_init
+ffffffff823e8476 t __initstub__kmod_pci_epc_core__296_849_pci_epc_init6
+ffffffff823e8486 t pci_epc_init
+ffffffff823e84d2 t __initstub__kmod_pci_epf_core__281_561_pci_epf_init6
+ffffffff823e84e2 t pci_epf_init
+ffffffff823e8513 t __initstub__kmod_pcie_designware_plat__270_187_dw_plat_pcie_driver_init6
+ffffffff823e852c t no_scroll
+ffffffff823e854a t acpi_table_parse_entries_array
+ffffffff823e8625 t acpi_parse_entries_array
+ffffffff823e87ff t acpi_table_parse_cedt
+ffffffff823e886a t acpi_table_parse_entries
+ffffffff823e88c7 t acpi_table_parse_madt
+ffffffff823e892f t acpi_table_parse
+ffffffff823e89ed t acpi_table_upgrade
+ffffffff823e8d74 t acpi_locate_initial_tables
+ffffffff823e8dc3 t acpi_reserve_initial_tables
+ffffffff823e8e28 t acpi_table_init_complete
+ffffffff823e8e3d t acpi_table_initrd_scan
+ffffffff823e8f28 t check_multiple_madt
+ffffffff823e8fc5 t acpi_table_init
+ffffffff823e8feb t acpi_parse_apic_instance
+ffffffff823e902c t acpi_force_table_verification_setup
+ffffffff823e9040 t acpi_force_32bit_fadt_addr
+ffffffff823e9060 t acpi_get_subtable_type
+ffffffff823e90c9 t acpi_blacklisted
+ffffffff823e9156 t dmi_enable_rev_override
+ffffffff823e917a t acpi_osi_setup
+ffffffff823e928b t osi_setup
+ffffffff823e935f t early_acpi_osi_init
+ffffffff823e9371 t acpi_osi_dmi_blacklisted
+ffffffff823e9398 t acpi_osi_init
+ffffffff823e93b6 t acpi_osi_setup_late
+ffffffff823e9462 t __acpi_osi_setup_darwin
+ffffffff823e94bc t acpi_osi_dmi_darwin
+ffffffff823e94e4 t dmi_disable_osi_vista
+ffffffff823e9525 t dmi_disable_osi_win7
+ffffffff823e954e t dmi_disable_osi_win8
+ffffffff823e9577 t dmi_enable_osi_linux
+ffffffff823e9589 t acpi_osi_dmi_linux
+ffffffff823e95b7 t __initstub__kmod_acpi__284_141_acpi_reserve_resources5s
+ffffffff823e95c9 t acpi_reserve_resources
+ffffffff823e96bb t acpi_os_get_root_pointer
+ffffffff823e974f t acpi_rev_override_setup
+ffffffff823e9766 t acpi_os_name_setup
+ffffffff823e97ee t acpi_no_auto_serialize_setup
+ffffffff823e9811 t acpi_enforce_resources_setup
+ffffffff823e9888 t acpi_no_static_ssdt_setup
+ffffffff823e98a8 t acpi_disable_return_repair
+ffffffff823e98cb t acpi_os_initialize
+ffffffff823e9932 t acpi_os_initialize1
+ffffffff823e99b4 t acpi_request_region
+ffffffff823e99f8 t acpi_backlight
+ffffffff823e9a1c t acpi_wakeup_device_init
+ffffffff823e9a98 t acpi_nvs_nosave
+ffffffff823e9aaa t acpi_nvs_nosave_s3
+ffffffff823e9abc t acpi_old_suspend_ordering
+ffffffff823e9ace t acpi_sleep_no_blacklist
+ffffffff823e9ae0 t acpi_sleep_init
+ffffffff823e9d03 t acpi_sleep_dmi_check
+ffffffff823e9d36 t init_old_suspend_ordering
+ffffffff823e9d4a t init_nvs_nosave
+ffffffff823e9d5e t init_nvs_save_s3
+ffffffff823e9d72 t init_default_s3
+ffffffff823e9d86 t acpi_sleep_proc_init
+ffffffff823e9db0 t acpi_early_init
+ffffffff823e9e7d t acpi_subsystem_init
+ffffffff823e9ec4 t __initstub__kmod_acpi__351_1420_acpi_init4
+ffffffff823e9ed4 t acpi_init
+ffffffff823e9fa2 t acpi_bus_init
+ffffffff823ea2d7 t acpi_setup_sb_notify_handler
+ffffffff823ea33f t acpi_bus_init_irq
+ffffffff823ea3b7 t acpi_scan_init
+ffffffff823ea60a t acpi_get_spcr_uart_addr
+ffffffff823ea67d t __acpi_probe_device_table
+ffffffff823ea729 t acpi_match_madt
+ffffffff823ea780 t acpi_early_processor_osc
+ffffffff823ea7d6 t acpi_hwp_native_thermal_lvt_osc
+ffffffff823ea8d4 t acpi_processor_init
+ffffffff823ea903 t acpi_processor_check_duplicates
+ffffffff823ea94e t acpi_processor_ids_walk
+ffffffff823eaa26 t processor_validated_ids_update
+ffffffff823eaad7 t acpi_map_madt_entry
+ffffffff823eab59 t acpi_early_processor_set_pdc
+ffffffff823eabb0 t early_init_pdc
+ffffffff823eabd3 t set_no_mwait
+ffffffff823eabfb t processor_physically_present
+ffffffff823eaccf t acpi_ec_dsdt_probe
+ffffffff823ead72 t acpi_ec_ecdt_probe
+ffffffff823eaeac t acpi_ec_init
+ffffffff823eaf79 t acpi_ec_ecdt_start
+ffffffff823eb01a t acpi_pci_root_init
+ffffffff823eb046 t acpi_irq_penalty_init
+ffffffff823eb0c3 t acpi_irq_isa
+ffffffff823eb0dd t acpi_irq_pci
+ffffffff823eb0f4 t acpi_irq_nobalance_set
+ffffffff823eb10e t acpi_irq_balance_set
+ffffffff823eb128 t acpi_pci_link_init
+ffffffff823eb16f t acpi_irq_penalty_update
+ffffffff823eb233 t acpi_lpss_init
+ffffffff823eb24a t acpi_apd_init
+ffffffff823eb261 t acpi_platform_init
+ffffffff823eb281 t acpi_pnp_init
+ffffffff823eb298 t __initstub__kmod_acpi__317_183_acpi_event_init5
+ffffffff823eb2aa t acpi_event_init
+ffffffff823eb2dc t __initstub__kmod_acpi__200_196_ged_driver_init6
+ffffffff823eb2f5 t acpi_gpe_set_masked_gpes
+ffffffff823eb36c t acpi_gpe_apply_masked_gpes
+ffffffff823eb432 t acpi_sysfs_init
+ffffffff823eb6b0 t acpi_cmos_rtc_init
+ffffffff823eb6c7 t acpi_s2idle_setup
+ffffffff823eb6f5 t acpi_debugfs_init
+ffffffff823eb715 t init_prmt
+ffffffff823eb7f2 t acpi_parse_prmt
+ffffffff823eba69 t acpi_init_pcc
+ffffffff823ebaac t acpi_tb_parse_root_table
+ffffffff823ebc88 t acpi_initialize_tables
+ffffffff823ebd05 t acpi_reallocate_root_table
+ffffffff823ebe5c t acpi_load_tables
+ffffffff823ebed0 t acpi_install_table
+ffffffff823ebf1e t acpi_install_physical_table
+ffffffff823ebf6e t acpi_find_root_pointer
+ffffffff823ec0d6 t acpi_terminate
+ffffffff823ec0f0 t acpi_initialize_subsystem
+ffffffff823ec1bd t acpi_enable_subsystem
+ffffffff823ec25a t acpi_initialize_objects
+ffffffff823ec280 t __initstub__kmod_ac__204_331_acpi_ac_init6
+ffffffff823ec290 t acpi_ac_init
+ffffffff823ec2d6 t ac_only_quirk
+ffffffff823ec2ea t thinkpad_e530_quirk
+ffffffff823ec2fe t __initstub__kmod_button__249_659_acpi_button_driver_init6
+ffffffff823ec30e t acpi_button_driver_init
+ffffffff823ec360 t __initstub__kmod_fan__204_456_acpi_fan_driver_init6
+ffffffff823ec379 t __initstub__kmod_processor__216_308_acpi_processor_driver_init6
+ffffffff823ec389 t acpi_processor_driver_init
+ffffffff823ec45b t acpi_container_init
+ffffffff823ec472 t __initstub__kmod_thermal__220_1222_acpi_thermal_init6
+ffffffff823ec482 t acpi_thermal_init
+ffffffff823ec4f6 t acpi_memory_hotplug_init
+ffffffff823ec50d t __initstub__kmod_battery__331_1294_acpi_battery_init6
+ffffffff823ec54d t acpi_battery_init_async
+ffffffff823ec582 t battery_bix_broken_package_quirk
+ffffffff823ec596 t battery_notification_delay_quirk
+ffffffff823ec5aa t battery_ac_is_broken_quirk
+ffffffff823ec5be t acpi_parse_spcr
+ffffffff823ec93e t acpi_int340x_thermal_init
+ffffffff823ec955 t __initstub__kmod_pnp__269_234_pnp_init4
+ffffffff823ec96c t pnp_setup_reserve_irq
+ffffffff823ec9d6 t pnp_setup_reserve_dma
+ffffffff823eca40 t pnp_setup_reserve_io
+ffffffff823ecaaa t pnp_setup_reserve_mem
+ffffffff823ecb14 t __initstub__kmod_pnp__199_113_pnp_system_init5
+ffffffff823ecb2b t __initstub__kmod_pnp__201_314_pnpacpi_init5
+ffffffff823ecb3d t pnpacpi_init
+ffffffff823ecbaa t pnpacpi_setup
+ffffffff823ecbde t pnpacpi_add_device_handler
+ffffffff823ecc1b t pnpacpi_add_device
+ffffffff823ece11 t ispnpidacpi
+ffffffff823ece93 t pnpacpi_parse_resource_option_data
+ffffffff823ecf49 t pnpacpi_option_resource
+ffffffff823ed11e t pnpacpi_parse_irq_option
+ffffffff823ed1bd t pnpacpi_parse_dma_option
+ffffffff823ed226 t pnpacpi_parse_port_option
+ffffffff823ed25b t pnpacpi_parse_mem24_option
+ffffffff823ed290 t pnpacpi_parse_mem32_option
+ffffffff823ed2c1 t pnpacpi_parse_fixed_mem32_option
+ffffffff823ed2eb t pnpacpi_parse_address_option
+ffffffff823ed3cb t pnpacpi_parse_ext_address_option
+ffffffff823ed41b t pnpacpi_parse_ext_irq_option
+ffffffff823ed4e6 t __initstub__kmod_virtio__280_568_virtio_init1
+ffffffff823ed50f t __initstub__kmod_virtio_pci__289_647_virtio_pci_driver_init6
+ffffffff823ed52f t __initstub__kmod_virtio_balloon__335_1128_virtio_balloon_driver_init6
+ffffffff823ed546 t __initstub__kmod_tty_io__309_3518_tty_class_init2
+ffffffff823ed587 t tty_init
+ffffffff823ed6bc t n_tty_init
+ffffffff823ed6d3 t __initstub__kmod_n_null__266_63_n_null_init6
+ffffffff823ed6f2 t __initstub__kmod_pty__268_947_pty_init6
+ffffffff823ed704 t unix98_pty_init
+ffffffff823ed8f0 t sysrq_always_enabled_setup
+ffffffff823ed913 t __initstub__kmod_sysrq__339_1202_sysrq_init6
+ffffffff823ed925 t sysrq_init
+ffffffff823ed974 t vcs_init
+ffffffff823eda28 t kbd_init
+ffffffff823edb04 t console_map_init
+ffffffff823edb4b t __initstub__kmod_vt__295_3548_con_initcon
+ffffffff823edb5d t con_init
+ffffffff823edea7 t vty_init
+ffffffff823edff2 t __initstub__kmod_vt__307_4325_vtconsole_class_init2
+ffffffff823ee004 t vtconsole_class_init
+ffffffff823ee0e7 t __initstub__kmod_hvc_console__269_246_hvc_console_initcon
+ffffffff823ee100 t uart_get_console
+ffffffff823ee172 t setup_earlycon
+ffffffff823ee242 t register_earlycon
+ffffffff823ee317 t param_setup_earlycon
+ffffffff823ee34c t parse_options
+ffffffff823ee451 t earlycon_init
+ffffffff823ee4cf t earlycon_print_info
+ffffffff823ee565 t __initstub__kmod_8250__274_690_univ8250_console_initcon
+ffffffff823ee575 t univ8250_console_init
+ffffffff823ee5a3 t early_serial_setup
+ffffffff823ee6f4 t serial8250_isa_init_ports
+ffffffff823ee8f0 t __initstub__kmod_8250__280_1249_serial8250_init6
+ffffffff823ee900 t serial8250_init
+ffffffff823eea16 t serial8250_register_ports
+ffffffff823eeb31 t early_serial8250_setup
+ffffffff823eeba8 t init_port
+ffffffff823eeca1 t __initstub__kmod_8250_lpss__275_433_lpss8250_pci_driver_init6
+ffffffff823eecc1 t __initstub__kmod_8250_mid__275_397_mid8250_pci_driver_init6
+ffffffff823eece1 t __initstub__kmod_8250_pericom__277_211_pericom8250_pci_driver_init6
+ffffffff823eed01 t __initstub__kmod_8250_of__272_353_of_platform_serial_driver_init6
+ffffffff823eed1a t __initstub__kmod_ttynull__266_106_ttynull_init6
+ffffffff823eed2a t ttynull_init
+ffffffff823eee17 t __initstub__kmod_mem__334_787_chr_dev_init5
+ffffffff823eee27 t chr_dev_init
+ffffffff823eeee1 t parse_trust_cpu
+ffffffff823eeef8 t parse_trust_bootloader
+ffffffff823eef0f t random_init_early
+ffffffff823ef02b t arch_get_random_longs_early
+ffffffff823ef064 t random_init
+ffffffff823ef19c t add_bootloader_randomness
+ffffffff823ef1d3 t __initstub__kmod_random__391_1642_random_sysctls_init6
+ffffffff823ef1fa t __initstub__kmod_misc__268_293_misc_init4
+ffffffff823ef20a t misc_init
+ffffffff823ef2d4 t virtio_cons_early_init
+ffffffff823ef2f6 t __initstub__kmod_virtio_console__298_2293_virtio_console_init6
+ffffffff823ef306 t virtio_console_init
+ffffffff823ef400 t hpet_mmap_enable
+ffffffff823ef474 t __initstub__kmod_hpet__272_1042_hpet_init6
+ffffffff823ef484 t hpet_init
+ffffffff823ef4fc t __initstub__kmod_rng_core__249_718_hwrng_modinit5
+ffffffff823ef50c t hwrng_modinit
+ffffffff823ef59b t __initstub__kmod_intel_rng__272_414_intel_rng_mod_init6
+ffffffff823ef5ab t intel_rng_mod_init
+ffffffff823ef71f t intel_init_hw_struct
+ffffffff823ef7ec t intel_rng_hw_init
+ffffffff823ef8aa t __initstub__kmod_amd_rng__270_214_amd_rng_mod_init6
+ffffffff823ef8ba t amd_rng_mod_init
+ffffffff823efa9c t __initstub__kmod_via_rng__190_212_via_rng_mod_init6
+ffffffff823efaac t via_rng_mod_init
+ffffffff823efafb t __initstub__kmod_virtio_rng__271_262_virtio_rng_driver_init6
+ffffffff823efb12 t __initstub__kmod_iommu__382_195_iommu_subsys_init4
+ffffffff823efb22 t iommu_subsys_init
+ffffffff823efc62 t iommu_set_def_domain_type
+ffffffff823efcc1 t iommu_dma_setup
+ffffffff823efce3 t __initstub__kmod_iommu__427_2590_iommu_init1
+ffffffff823efcf5 t iommu_init
+ffffffff823efd23 t __initstub__kmod_iommu_sysfs__266_47_iommu_dev_init2
+ffffffff823efd41 t iommu_dma_forcedac_setup
+ffffffff823efd79 t __initstub__kmod_dma_iommu__293_1712_iommu_dma_init3
+ffffffff823efd89 t __initstub__kmod_component__240_118_component_debug_init1
+ffffffff823efdab t __initstub__kmod_core__397_700_devlink_class_init2
+ffffffff823efdbb t devlink_class_init
+ffffffff823efe05 t __initstub__kmod_core__405_1269_sync_state_resume_initcall7
+ffffffff823efe17 t fw_devlink_setup
+ffffffff823efe9d t fw_devlink_strict_setup
+ffffffff823efeb4 t wait_for_init_devices_probe
+ffffffff823efefb t devices_init
+ffffffff823effb5 t buses_init
+ffffffff823f0017 t deferred_probe_timeout_setup
+ffffffff823f0071 t __initstub__kmod_dd__271_371_deferred_probe_initcall7
+ffffffff823f01f3 t save_async_options
+ffffffff823f0250 t classes_init
+ffffffff823f0281 t early_platform_cleanup
+ffffffff823f028c t platform_bus_init
+ffffffff823f02ee t cpu_dev_init
+ffffffff823f032c t cpu_register_vulnerabilities
+ffffffff823f035e t firmware_init
+ffffffff823f038d t driver_init
+ffffffff823f03f3 t __initstub__kmod_topology__266_194_topology_sysfs_init6
+ffffffff823f0435 t container_dev_init
+ffffffff823f0474 t __initstub__kmod_cacheinfo__200_723_cacheinfo_sysfs_init6
+ffffffff823f04b6 t __initstub__kmod_swnode__218_1167_software_node_init2
+ffffffff823f04ec t __initstub__kmod_wakeup__574_1240_wakeup_sources_debugfs_init2
+ffffffff823f051c t __initstub__kmod_wakeup_stats__199_217_wakeup_sources_sysfs_init2
+ffffffff823f0550 t __initstub__kmod_firmware_class__340_1659_firmware_class_init5
+ffffffff823f0560 t firmware_class_init
+ffffffff823f05ad t memory_dev_init
+ffffffff823f06af t add_boot_memory_block
+ffffffff823f0750 t __initstub__kmod_regmap__520_3513_regmap_initcall2
+ffffffff823f0762 t ramdisk_size
+ffffffff823f0782 t __initstub__kmod_brd__340_528_brd_init6
+ffffffff823f0792 t brd_init
+ffffffff823f089e t __initstub__kmod_loop__363_2273_loop_init6
+ffffffff823f08ae t loop_init
+ffffffff823f0990 t max_loop_setup
+ffffffff823f09af t __initstub__kmod_virtio_blk__338_1307_virtio_blk_init6
+ffffffff823f09bf t virtio_blk_init
+ffffffff823f0a49 t __initstub__kmod_zram__331_2162_zram_init6
+ffffffff823f0a59 t zram_init
+ffffffff823f0b71 t __initstub__kmod_syscon__205_329_syscon_init2
+ffffffff823f0b8a t __initstub__kmod_libnvdimm__359_575_libnvdimm_init4
+ffffffff823f0b9a t libnvdimm_init
+ffffffff823f0c0c t nvdimm_bus_init
+ffffffff823f0d13 t nvdimm_init
+ffffffff823f0d33 t nd_region_init
+ffffffff823f0d53 t nd_label_init
+ffffffff823f0e98 t __initstub__kmod_nd_pmem__343_786_nd_pmem_driver_init6
+ffffffff823f0eb8 t __initstub__kmod_nd_btt__346_1738_nd_btt_init6
+ffffffff823f0ef2 t __initstub__kmod_of_pmem__294_106_of_pmem_region_driver_init6
+ffffffff823f0f0b t __initstub__kmod_dax__311_593_dax_core_init4
+ffffffff823f0f1b t dax_core_init
+ffffffff823f0fe4 t dax_bus_init
+ffffffff823f0ffb t __initstub__kmod_dma_buf__296_1667_dma_buf_init4
+ffffffff823f100b t dma_buf_init
+ffffffff823f10e0 t __initstub__kmod_dma_heap__305_470_dma_heap_init4
+ffffffff823f11a2 t loopback_net_init
+ffffffff823f122b t __initstub__kmod_loopback__536_280_blackhole_netdev_init6
+ffffffff823f123b t blackhole_netdev_init
+ffffffff823f12b9 t __initstub__kmod_uio__272_1086_uio_init6
+ffffffff823f12c9 t uio_init
+ffffffff823f13f5 t __initstub__kmod_serio__214_1048_serio_init4
+ffffffff823f1405 t serio_init
+ffffffff823f1436 t __initstub__kmod_i8042__361_1670_i8042_init6
+ffffffff823f1446 t i8042_init
+ffffffff823f155f t i8042_platform_init
+ffffffff823f15eb t i8042_check_quirks
+ffffffff823f16c6 t i8042_pnp_init
+ffffffff823f1a05 t __initstub__kmod_serport__273_308_serport_init6
+ffffffff823f1a15 t serport_init
+ffffffff823f1a44 t __initstub__kmod_input_core__335_2695_input_init4
+ffffffff823f1a54 t input_init
+ffffffff823f1ae1 t input_proc_init
+ffffffff823f1b75 t __initstub__kmod_rtc_core__243_487_rtc_init4
+ffffffff823f1b85 t rtc_init
+ffffffff823f1bdb t rtc_dev_init
+ffffffff823f1c12 t __initstub__kmod_rtc_cmos__243_1557_cmos_init6
+ffffffff823f1c22 t cmos_init
+ffffffff823f1ca7 t cmos_platform_probe
+ffffffff823f1cf5 t cmos_of_init
+ffffffff823f1d56 t __initstub__kmod_power_supply__233_1560_power_supply_class_init4
+ffffffff823f1d66 t power_supply_class_init
+ffffffff823f1db3 t __initstub__kmod_thermal_sys__400_1514_thermal_init2
+ffffffff823f1dc3 t thermal_init
+ffffffff823f1e6d t thermal_register_governors
+ffffffff823f1f2d t thermal_netlink_init
+ffffffff823f1f44 t int_pln_enable_setup
+ffffffff823f1f5b t __initstub__kmod_therm_throt__302_529_thermal_throttle_init_device6
+ffffffff823f1f6b t thermal_throttle_init_device
+ffffffff823f1fbf t therm_lvt_init
+ffffffff823f200d t __initstub__kmod_watchdog__382_479_watchdog_init4s
+ffffffff823f202a t watchdog_deferred_registration
+ffffffff823f20c4 t watchdog_dev_init
+ffffffff823f2184 t __initstub__kmod_dm_mod__302_300_dm_init_init7
+ffffffff823f2194 t dm_init_init
+ffffffff823f22a6 t dm_parse_devices
+ffffffff823f2388 t dm_setup_cleanup
+ffffffff823f244f t dm_parse_device_entry
+ffffffff823f25a2 t str_field_delimit
+ffffffff823f25ff t dm_parse_table
+ffffffff823f266d t dm_parse_table_entry
+ffffffff823f2827 t __initstub__kmod_dm_mod__522_3395_dm_init6
+ffffffff823f2837 t dm_init
+ffffffff823f28a5 t local_init
+ffffffff823f293d t dm_target_init
+ffffffff823f2954 t dm_linear_init
+ffffffff823f2985 t dm_stripe_init
+ffffffff823f29b4 t dm_interface_init
+ffffffff823f2a09 t dm_early_create
+ffffffff823f2ca1 t dm_io_init
+ffffffff823f2ce6 t dm_kcopyd_init
+ffffffff823f2d83 t dm_statistics_init
+ffffffff823f2da5 t __initstub__kmod_dm_bufio__341_2162_dm_bufio_init6
+ffffffff823f2db5 t dm_bufio_init
+ffffffff823f3061 t __initstub__kmod_dm_crypt__431_3674_dm_crypt_init6
+ffffffff823f3071 t dm_crypt_init
+ffffffff823f30a2 t __initstub__kmod_dm_verity__315_1515_dm_verity_init6
+ffffffff823f30b2 t dm_verity_init
+ffffffff823f30e3 t __initstub__kmod_dm_user__320_1282_dm_user_init6
+ffffffff823f30f3 t dm_user_init
+ffffffff823f3124 t edac_mc_sysfs_init
+ffffffff823f31a6 t __initstub__kmod_edac_core__271_163_edac_init4
+ffffffff823f31b6 t edac_init
+ffffffff823f325f t __initstub__kmod_cpufreq__591_2975_cpufreq_core_init1
+ffffffff823f326f t cpufreq_core_init
+ffffffff823f32d0 t __initstub__kmod_cpufreq_performance__213_44_cpufreq_gov_performance_init1
+ffffffff823f32e7 t __initstub__kmod_cpufreq_powersave__213_38_cpufreq_gov_powersave_init1
+ffffffff823f32fe t __initstub__kmod_cpufreq_conservative__234_343_CPU_FREQ_GOV_CONSERVATIVE_init1
+ffffffff823f3315 t __initstub__kmod_intel_pstate__565_3496_intel_pstate_init6
+ffffffff823f3325 t intel_pstate_init
+ffffffff823f35fd t intel_pstate_setup
+ffffffff823f36f9 t copy_cpu_funcs
+ffffffff823f375b t intel_pstate_msrs_not_valid
+ffffffff823f37b1 t intel_pstate_platform_pwr_mgmt_exists
+ffffffff823f3851 t intel_pstate_sysfs_expose_params
+ffffffff823f395e t intel_pstate_sysfs_remove
+ffffffff823f3a34 t intel_pstate_no_acpi_pss
+ffffffff823f3b13 t intel_pstate_no_acpi_pcch
+ffffffff823f3b7e t intel_pstate_has_acpi_ppc
+ffffffff823f3c01 t __initstub__kmod_cpuidle__566_797_cpuidle_init1
+ffffffff823f3c2f t __initstub__kmod_menu__188_579_init_menu2
+ffffffff823f3c46 t __initstub__kmod_cpuidle_haltpoll__199_143_haltpoll_init6
+ffffffff823f3c56 t haltpoll_init
+ffffffff823f3d37 t __initstub__kmod_dmi_scan__268_810_dmi_init4
+ffffffff823f3d47 t dmi_init
+ffffffff823f3e79 t dmi_setup
+ffffffff823f3eac t dmi_scan_machine
+ffffffff823f40ca t dmi_memdev_walk
+ffffffff823f4116 t dmi_smbios3_present
+ffffffff823f41fc t dmi_present
+ffffffff823f437c t dmi_walk_early
+ffffffff823f4491 t dmi_decode
+ffffffff823f46be t dmi_format_ids
+ffffffff823f47fb t dmi_save_ident
+ffffffff823f4837 t dmi_save_release
+ffffffff823f48b4 t dmi_save_uuid
+ffffffff823f4961 t dmi_save_type
+ffffffff823f49b9 t dmi_save_system_slot
+ffffffff823f4a0f t dmi_save_devices
+ffffffff823f4a7d t dmi_save_oem_strings_devices
+ffffffff823f4b38 t dmi_save_ipmi_device
+ffffffff823f4bce t dmi_save_extended_devices
+ffffffff823f4c2c t dmi_string
+ffffffff823f4c81 t dmi_string_nosave
+ffffffff823f4ce1 t dmi_save_dev_pciaddr
+ffffffff823f4dc0 t dmi_save_one_device
+ffffffff823f4e5b t print_filtered
+ffffffff823f4ed1 t count_mem_devices
+ffffffff823f4ee7 t save_mem_devices
+ffffffff823f4fd3 t __initstub__kmod_dmi_id__199_259_dmi_id_init3
+ffffffff823f4fe3 t dmi_id_init
+ffffffff823f50b2 t dmi_id_init_attr_table
+ffffffff823f537b t firmware_map_add_early
+ffffffff823f53d9 t __initstub__kmod_memmap__266_418_firmware_memmap_init7
+ffffffff823f540d t setup_noefi
+ffffffff823f5421 t parse_efi_cmdline
+ffffffff823f54b4 t efivar_ssdt_setup
+ffffffff823f5508 t __initstub__kmod_efi__275_433_efisubsys_init4
+ffffffff823f5518 t efisubsys_init
+ffffffff823f57ea t efi_find_mirror
+ffffffff823f5899 t efi_mem_desc_end
+ffffffff823f58b0 t efi_mem_reserve
+ffffffff823f58f3 t efi_config_parse_tables
+ffffffff823f5bcc t match_config_table
+ffffffff823f5c5e t efi_systab_check_header
+ffffffff823f5cb0 t efi_systab_report_header
+ffffffff823f5d98 t map_fw_vendor
+ffffffff823f5dc8 t efi_md_typeattr_format
+ffffffff823f5f8f t efi_memreserve_map_root
+ffffffff823f5fd5 t __initstub__kmod_efi__280_1039_efi_memreserve_root_initearly
+ffffffff823f6002 t efivar_ssdt_load
+ffffffff823f6207 t efi_debugfs_init
+ffffffff823f63b7 t __initstub__kmod_reboot__240_78_efi_shutdown_init7
+ffffffff823f63c7 t efi_shutdown_init
+ffffffff823f641a t efi_memattr_init
+ffffffff823f64b8 t efi_memattr_apply_permissions
+ffffffff823f67a5 t efi_tpm_eventlog_init
+ffffffff823f6902 t tpm2_calc_event_log_size
+ffffffff823f6b51 t __efi_memmap_free
+ffffffff823f6bac t efi_memmap_alloc
+ffffffff823f6c48 t __efi_memmap_alloc_late
+ffffffff823f6c92 t efi_memmap_init_early
+ffffffff823f6cb7 t __efi_memmap_init
+ffffffff823f6d9e t efi_memmap_unmap
+ffffffff823f6e0c t efi_memmap_init_late
+ffffffff823f6e8a t efi_memmap_install
+ffffffff823f6ea7 t efi_memmap_split_count
+ffffffff823f6f06 t efi_memmap_insert
+ffffffff823f716b t efi_esrt_init
+ffffffff823f735e t __initstub__kmod_esrt__266_434_esrt_sysfs_init6
+ffffffff823f736e t esrt_sysfs_init
+ffffffff823f74ff t register_entries
+ffffffff823f7664 t efi_runtime_map_init
+ffffffff823f7854 t __initstub__kmod_earlycon__269_41_efi_earlycon_remap_fbearly
+ffffffff823f7864 t efi_earlycon_remap_fb
+ffffffff823f78bc t __initstub__kmod_earlycon__271_50_efi_earlycon_unmap_fb7
+ffffffff823f78ce t efi_earlycon_unmap_fb
+ffffffff823f7908 t efi_earlycon_setup
+ffffffff823f7a16 t acpi_pm_good_setup
+ffffffff823f7a2d t __initstub__kmod_acpi_pm__279_220_init_acpi_pm_clocksource5
+ffffffff823f7a3d t init_acpi_pm_clocksource
+ffffffff823f7b21 t parse_pmtmr
+ffffffff823f7ba6 t clockevent_i8253_init
+ffffffff823f7c08 t of_core_init
+ffffffff823f7ce3 t __initstub__kmod_platform__330_604_of_platform_default_populate_init3s
+ffffffff823f7cf3 t of_platform_default_populate_init
+ffffffff823f7db1 t __initstub__kmod_platform__332_611_of_platform_sync_state_init7s
+ffffffff823f7dc3 t of_dma_get_max_cpu_address
+ffffffff823f7efb t of_irq_init
+ffffffff823f831f t __initstub__kmod_pcc__202_758_pcc_init2
+ffffffff823f832f t pcc_init
+ffffffff823f8390 t acpi_pcc_probe
+ffffffff823f84b0 t __initstub__kmod_ras__336_38_ras_init4
+ffffffff823f84d5 t parse_ras_param
+ffffffff823f84e5 t ras_add_daemon_trace
+ffffffff823f8533 t ras_debugfs_init
+ffffffff823f8553 t __initstub__kmod_nvmem_core__277_1952_nvmem_init4
+ffffffff823f856a t __initstub__kmod_socket__640_3209_sock_init1
+ffffffff823f857a t sock_init
+ffffffff823f8609 t __initstub__kmod_sock__864_3777_net_inuse_init1
+ffffffff823f861b t net_inuse_init
+ffffffff823f8642 t __initstub__kmod_sock__871_4094_proto_init4
+ffffffff823f8659 t sock_inuse_init_net
+ffffffff823f8699 t proto_init_net
+ffffffff823f86d8 t skb_init
+ffffffff823f876b t __initstub__kmod_net_namespace__511_385_net_defaults_init1
+ffffffff823f877d t net_defaults_init
+ffffffff823f87a4 t net_ns_init
+ffffffff823f8871 t setup_net
+ffffffff823f8bd4 t net_defaults_init_net
+ffffffff823f8bf2 t net_ns_net_init
+ffffffff823f8c0e t __initstub__kmod_flow_dissector__700_1961_init_default_flow_dissectors1
+ffffffff823f8c20 t init_default_flow_dissectors
+ffffffff823f8c73 t fb_tunnels_only_for_init_net_sysctl_setup
+ffffffff823f8cc7 t __initstub__kmod_sysctl_net_core__607_687_sysctl_core_init5
+ffffffff823f8cd7 t sysctl_core_init
+ffffffff823f8d08 t sysctl_core_net_init
+ffffffff823f8d46 t __initstub__kmod_dev__1372_11438_net_dev_init4
+ffffffff823f8d56 t net_dev_init
+ffffffff823f8fe7 t netdev_init
+ffffffff823f90b9 t __initstub__kmod_neighbour__690_3906_neigh_init4
+ffffffff823f90cb t neigh_init
+ffffffff823f9153 t rtnetlink_init
+ffffffff823f9346 t rtnetlink_net_init
+ffffffff823f93bf t __initstub__kmod_sock_diag__565_340_sock_diag_init6
+ffffffff823f93cf t sock_diag_init
+ffffffff823f9404 t diag_net_init
+ffffffff823f9482 t __initstub__kmod_fib_notifier__376_199_fib_notifier_init4
+ffffffff823f9499 t fib_notifier_net_init
+ffffffff823f94e1 t netdev_kobject_init
+ffffffff823f950b t dev_proc_init
+ffffffff823f9532 t dev_proc_net_init
+ffffffff823f9600 t dev_mc_net_init
+ffffffff823f963c t __initstub__kmod_fib_rules__634_1319_fib_rules_init4
+ffffffff823f964c t fib_rules_init
+ffffffff823f971b t fib_rules_net_init
+ffffffff823f9744 t __initstub__kmod_netprio_cgroup__536_295_init_cgroup_netprio4
+ffffffff823f975d t __initstub__kmod_eth__597_492_eth_offload_init5
+ffffffff823f9776 t __initstub__kmod_af_netlink__676_2962_netlink_proto_init1
+ffffffff823f9786 t netlink_proto_init
+ffffffff823f988a t netlink_add_usersock_entry
+ffffffff823f9941 t netlink_net_init
+ffffffff823f9980 t netlink_tap_init_net
+ffffffff823f99d3 t __initstub__kmod_genetlink__510_1498_genl_init1
+ffffffff823f99e5 t genl_init
+ffffffff823f9a1e t genl_pernet_init
+ffffffff823f9a99 t __initstub__kmod_ethtool_nl__500_1077_ethnl_init4
+ffffffff823f9aa9 t ethnl_init
+ffffffff823f9b03 t ip_rt_init
+ffffffff823f9d02 t ip_static_sysctl_init
+ffffffff823f9d27 t ip_rt_do_proc_init
+ffffffff823f9dae t sysctl_route_net_init
+ffffffff823f9df3 t netns_ip_rt_init
+ffffffff823f9e1b t rt_genid_init
+ffffffff823f9e43 t ipv4_inetpeer_init
+ffffffff823f9e8f t inet_initpeers
+ffffffff823f9f03 t ipfrag_init
+ffffffff823f9f9c t ipv4_frags_init_net
+ffffffff823fa029 t ip4_frags_ns_ctl_register
+ffffffff823fa0a5 t ip_init
+ffffffff823fa0bf t inet_hashinfo2_init
+ffffffff823fa163 t set_thash_entries
+ffffffff823fa192 t tcp_init
+ffffffff823fa49c t tcp_tasklet_init
+ffffffff823fa508 t tcp4_proc_init
+ffffffff823fa51f t tcp_v4_init
+ffffffff823fa601 t tcp4_proc_init_net
+ffffffff823fa645 t tcp_sk_init
+ffffffff823fa81e t __initstub__kmod_tcp_cong__705_266_tcp_congestion_default7
+ffffffff823fa83c t set_tcpmhash_entries
+ffffffff823fa86b t tcp_metrics_init
+ffffffff823fa8ae t tcp_net_metrics_init
+ffffffff823fa937 t tcpv4_offload_init
+ffffffff823fa953 t raw_proc_init
+ffffffff823fa96a t raw_proc_exit
+ffffffff823fa999 t raw_init
+ffffffff823fa9c0 t raw_init_net
+ffffffff823faa04 t raw_sysctl_init
+ffffffff823faa11 t udp4_proc_init
+ffffffff823faa28 t set_uhash_entries
+ffffffff823faa72 t udp_table_init
+ffffffff823fab3c t udp_init
+ffffffff823fac1e t udp4_proc_init_net
+ffffffff823fac62 t udp_sysctl_init
+ffffffff823fac80 t udplite4_register
+ffffffff823fad13 t udplite4_proc_init_net
+ffffffff823fad57 t udpv4_offload_init
+ffffffff823fad73 t arp_init
+ffffffff823fadc0 t arp_net_init
+ffffffff823fae02 t icmp_init
+ffffffff823faee5 t icmp_sk_init
+ffffffff823faf14 t devinet_init
+ffffffff823fafe1 t devinet_init_net
+ffffffff823fb14b t __initstub__kmod_af_inet__792_1923_ipv4_offload_init5
+ffffffff823fb15d t ipv4_offload_init
+ffffffff823fb1f2 t __initstub__kmod_af_inet__795_2056_inet_init5
+ffffffff823fb202 t inet_init
+ffffffff823fb450 t ipv4_proc_init
+ffffffff823fb4c6 t ipv4_mib_init_net
+ffffffff823fb69f t inet_init_net
+ffffffff823fb72b t igmp_mc_init
+ffffffff823fb786 t igmp_net_init
+ffffffff823fb85d t ip_fib_init
+ffffffff823fb8eb t fib_net_init
+ffffffff823fb9b4 t ip_fib_net_init
+ffffffff823fba2e t fib_trie_init
+ffffffff823fba91 t fib_proc_init
+ffffffff823fbb62 t fib4_notifier_init
+ffffffff823fbb9c t __initstub__kmod_inet_fragment__590_216_inet_frag_wq_init0
+ffffffff823fbbae t inet_frag_wq_init
+ffffffff823fbbee t ping_proc_init
+ffffffff823fbc05 t ping_init
+ffffffff823fbc39 t ping_v4_proc_init_net
+ffffffff823fbc7b t ip_tunnel_core_init
+ffffffff823fbc86 t __initstub__kmod_gre_offload__618_286_gre_offload_init6
+ffffffff823fbc96 t gre_offload_init
+ffffffff823fbce8 t __initstub__kmod_nexthop__700_3789_nexthop_init4
+ffffffff823fbcfa t nexthop_init
+ffffffff823fbdf3 t nexthop_net_init
+ffffffff823fbe5e t __initstub__kmod_sysctl_net_ipv4__628_1470_sysctl_ipv4_init6
+ffffffff823fbe6e t sysctl_ipv4_init
+ffffffff823fbec4 t ipv4_sysctl_init_net
+ffffffff823fbf3a t ip_misc_proc_init
+ffffffff823fbf51 t ip_proc_init_net
+ffffffff823fc012 t fib4_rules_init
+ffffffff823fc0c2 t __initstub__kmod_ipip__624_658_ipip_init6
+ffffffff823fc0d2 t ipip_init
+ffffffff823fc15c t ipip_init_net
+ffffffff823fc180 t __initstub__kmod_gre__629_216_gre_init6
+ffffffff823fc190 t gre_init
+ffffffff823fc1d3 t __initstub__kmod_ip_gre__631_1789_ipgre_init6
+ffffffff823fc1e3 t ipgre_init
+ffffffff823fc2f5 t ipgre_tap_init_net
+ffffffff823fc319 t ipgre_init_net
+ffffffff823fc338 t erspan_init_net
+ffffffff823fc35c t __initstub__kmod_ip_vti__622_722_vti_init6
+ffffffff823fc36c t vti_init
+ffffffff823fc471 t vti_init_net
+ffffffff823fc4dc t __initstub__kmod_esp4__655_1246_esp4_init6
+ffffffff823fc4ec t esp4_init
+ffffffff823fc565 t __initstub__kmod_tunnel4__575_295_tunnel4_init6
+ffffffff823fc575 t tunnel4_init
+ffffffff823fc5d9 t __initstub__kmod_inet_diag__648_1481_inet_diag_init6
+ffffffff823fc5e9 t inet_diag_init
+ffffffff823fc684 t __initstub__kmod_tcp_diag__632_247_tcp_diag_init6
+ffffffff823fc69b t __initstub__kmod_udp_diag__540_296_udp_diag_init6
+ffffffff823fc6ab t udp_diag_init
+ffffffff823fc6ee t __initstub__kmod_tcp_cubic__654_551_cubictcp_register6
+ffffffff823fc6fe t cubictcp_register
+ffffffff823fc76f t xfrm4_init
+ffffffff823fc7af t xfrm4_net_init
+ffffffff823fc833 t xfrm4_state_init
+ffffffff823fc84a t xfrm4_protocol_init
+ffffffff823fc861 t xfrm_init
+ffffffff823fc889 t xfrm_net_init
+ffffffff823fc95a t xfrm_statistics_init
+ffffffff823fc9b6 t xfrm_policy_init
+ffffffff823fcb82 t xfrm_state_init
+ffffffff823fccc1 t xfrm_input_init
+ffffffff823fcd78 t xfrm_sysctl_init
+ffffffff823fce4b t xfrm_dev_init
+ffffffff823fce62 t xfrm_proc_init
+ffffffff823fce9e t __initstub__kmod_xfrm_user__566_3816_xfrm_user_init6
+ffffffff823fceae t xfrm_user_init
+ffffffff823fcee3 t xfrm_user_net_init
+ffffffff823fcf66 t __initstub__kmod_xfrm_interface__725_1192_xfrmi_init6
+ffffffff823fcf76 t xfrmi_init
+ffffffff823fd024 t xfrmi4_init
+ffffffff823fd0a8 t xfrmi6_init
+ffffffff823fd180 t __initstub__kmod_unix__578_3782_af_unix_init5
+ffffffff823fd190 t af_unix_init
+ffffffff823fd243 t unix_net_init
+ffffffff823fd339 t unix_sysctl_register
+ffffffff823fd377 t __initstub__kmod_ipv6__745_1328_inet6_init6
+ffffffff823fd387 t inet6_init
+ffffffff823fd74d t inet6_net_init
+ffffffff823fd8c2 t ipv6_init_mibs
+ffffffff823fda03 t ac6_proc_init
+ffffffff823fda45 t ipv6_anycast_init
+ffffffff823fda65 t if6_proc_init
+ffffffff823fda7c t addrconf_init
+ffffffff823fdcd1 t if6_proc_net_init
+ffffffff823fdd13 t addrconf_init_net
+ffffffff823fdef6 t ipv6_addr_label_init
+ffffffff823fdf0d t ipv6_addr_label_rtnl_register
+ffffffff823fdf87 t ip6addrlbl_net_init
+ffffffff823fe06a t ipv6_route_sysctl_init
+ffffffff823fe142 t ip6_route_init_special_entries
+ffffffff823fe2be t ip6_route_init
+ffffffff823fe524 t ipv6_inetpeer_init
+ffffffff823fe570 t ip6_route_net_init
+ffffffff823fe7a2 t ip6_route_net_init_late
+ffffffff823fe826 t fib6_init
+ffffffff823fe8e8 t fib6_net_init
+ffffffff823feaa4 t fib6_tables_init
+ffffffff823feb15 t ndisc_init
+ffffffff823feb90 t ndisc_late_init
+ffffffff823feba7 t ndisc_net_init
+ffffffff823fec6c t udp6_proc_init
+ffffffff823fecb0 t udpv6_init
+ffffffff823fecfd t udplitev6_init
+ffffffff823fed4a t udplite6_proc_init
+ffffffff823fed61 t udplite6_proc_init_net
+ffffffff823feda5 t raw6_proc_init
+ffffffff823fedbc t rawv6_init
+ffffffff823fedd3 t raw6_init_net
+ffffffff823fee17 t icmpv6_init
+ffffffff823fef23 t ipv6_icmp_sysctl_init
+ffffffff823fef8e t igmp6_init
+ffffffff823ff000 t igmp6_late_init
+ffffffff823ff017 t igmp6_net_init
+ffffffff823ff124 t igmp6_proc_init
+ffffffff823ff1b1 t ipv6_frag_init
+ffffffff823ff2a1 t ipv6_frags_init_net
+ffffffff823ff320 t ip6_frags_ns_sysctl_register
+ffffffff823ff391 t tcp6_proc_init
+ffffffff823ff3d5 t tcpv6_init
+ffffffff823ff440 t tcpv6_net_init
+ffffffff823ff469 t pingv6_init
+ffffffff823ff4d2 t ping_v6_proc_init_net
+ffffffff823ff514 t ipv6_exthdrs_init
+ffffffff823ff58e t ip6_flowlabel_proc_init
+ffffffff823ff5d0 t seg6_init
+ffffffff823ff61f t seg6_net_init
+ffffffff823ff6a4 t fib6_notifier_init
+ffffffff823ff6d4 t ioam6_init
+ffffffff823ff73b t ioam6_net_init
+ffffffff823ff7f8 t ipv6_sysctl_net_init
+ffffffff823ff925 t xfrm6_init
+ffffffff823ff9a9 t xfrm6_net_init
+ffffffff823ffa2d t xfrm6_state_init
+ffffffff823ffa44 t xfrm6_protocol_init
+ffffffff823ffa5b t fib6_rules_init
+ffffffff823ffa72 t fib6_rules_net_init
+ffffffff823ffb04 t ipv6_misc_proc_init
+ffffffff823ffb1b t ipv6_proc_init_net
+ffffffff823ffbd4 t __initstub__kmod_esp6__715_1299_esp6_init6
+ffffffff823ffbe4 t esp6_init
+ffffffff823ffc5d t __initstub__kmod_ipcomp6__613_216_ipcomp6_init6
+ffffffff823ffc6d t ipcomp6_init
+ffffffff823ffce6 t __initstub__kmod_xfrm6_tunnel__562_402_xfrm6_tunnel_init6
+ffffffff823ffcf6 t xfrm6_tunnel_init
+ffffffff823ffdf5 t xfrm6_tunnel_net_init
+ffffffff823ffe36 t __initstub__kmod_tunnel6__587_303_tunnel6_init6
+ffffffff823ffe46 t tunnel6_init
+ffffffff823fff01 t __initstub__kmod_mip6__555_405_mip6_init6
+ffffffff823fff11 t mip6_init
+ffffffff823fffcc t __initstub__kmod_ip6_vti__743_1329_vti6_tunnel_init6
+ffffffff823fffdc t vti6_tunnel_init
+ffffffff82400146 t vti6_init_net
+ffffffff8240020f t vti6_fb_tnl_dev_init
+ffffffff82400258 t __initstub__kmod_sit__668_1955_sit_init6
+ffffffff82400268 t sit_init
+ffffffff8240032f t sit_init_net
+ffffffff8240042f t ipip6_fb_tunnel_init
+ffffffff82400481 t __initstub__kmod_ip6_tunnel__777_2366_ip6_tunnel_init6
+ffffffff82400491 t ip6_tunnel_init
+ffffffff8240056c t ip6_tnl_init_net
+ffffffff82400643 t ip6_fb_tnl_dev_init
+ffffffff8240068c t __initstub__kmod_ip6_gre__679_2424_ip6gre_init6
+ffffffff8240069c t ip6gre_init
+ffffffff82400766 t ip6gre_init_net
+ffffffff82400867 t __initstub__kmod_ip6_offload__638_488_ipv6_offload_init5
+ffffffff82400879 t ipv6_offload_init
+ffffffff8240090b t tcpv6_offload_init
+ffffffff82400927 t ipv6_exthdrs_offload_init
+ffffffff82400979 t __initstub__kmod_af_packet__664_4761_packet_init6
+ffffffff82400989 t packet_init
+ffffffff82400a2a t packet_net_init
+ffffffff82400a8e t __initstub__kmod_af_key__566_3923_ipsec_pfkey_init6
+ffffffff82400a9e t ipsec_pfkey_init
+ffffffff82400b25 t pfkey_net_init
+ffffffff82400b95 t net_sysctl_init
+ffffffff82400bfe t sysctl_net_init
+ffffffff82400c25 t __initstub__kmod_vsock__521_2450_vsock_init6
+ffffffff82400c35 t vsock_init
+ffffffff82400d1f t __initstub__kmod_vsock_diag__498_174_vsock_diag_init6
+ffffffff82400d36 t __initstub__kmod_vmw_vsock_virtio_transport__520_845_virtio_vsock_init6
+ffffffff82400d46 t virtio_vsock_init
+ffffffff82400dbd t __initstub__kmod_vsock_loopback__500_187_vsock_loopback_init6
+ffffffff82400dcd t vsock_loopback_init
+ffffffff82400e7e t __initstub__kmod_i386__271_373_pcibios_assign_resources5
+ffffffff82400e90 t pcibios_assign_resources
+ffffffff82400ed4 t pcibios_resource_survey
+ffffffff82400f5c t pcibios_fw_addr_list_del
+ffffffff82401004 t __initstub__kmod_init__270_51_pci_arch_init3
+ffffffff82401016 t pci_arch_init
+ffffffff824010af t pci_mmcfg_arch_init
+ffffffff824010fb t pci_mmcfg_arch_free
+ffffffff8240114d t pci_direct_init
+ffffffff824011b7 t pci_direct_probe
+ffffffff824012dd t pci_check_type1
+ffffffff8240136c t pci_check_type2
+ffffffff824013fa t pci_sanity_check
+ffffffff824014de t pci_mmconfig_add
+ffffffff82401558 t pci_mmcfg_early_init
+ffffffff8240159d t pci_mmcfg_check_hostbridge
+ffffffff8240168f t pci_parse_mcfg
+ffffffff8240174f t __pci_mmcfg_init
+ffffffff824017c5 t pci_mmcfg_late_init
+ffffffff82401804 t __initstub__kmod_mmconfig_shared__274_718_pci_mmcfg_late_insert_resources7
+ffffffff82401814 t pci_mmcfg_late_insert_resources
+ffffffff82401871 t free_all_mmcfg
+ffffffff824018aa t pci_mmcfg_check_end_bus_number
+ffffffff82401905 t pci_mmconfig_remove
+ffffffff8240195c t pci_mmcfg_e7520
+ffffffff82401a02 t pci_mmcfg_intel_945
+ffffffff82401ac5 t pci_mmcfg_amd_fam10h
+ffffffff82401bb0 t pci_mmcfg_nvidia_mcp55
+ffffffff82401cf5 t acpi_mcfg_check_entry
+ffffffff82401d7a t pci_mmcfg_reject_broken
+ffffffff82401dc8 t pci_acpi_crs_quirks
+ffffffff82401ed7 t pci_acpi_init
+ffffffff82401f83 t set_use_crs
+ffffffff82401f97 t set_nouse_crs
+ffffffff82401fab t set_ignore_seg
+ffffffff82401fcf t set_no_e820
+ffffffff82401ff3 t pci_legacy_init
+ffffffff82402028 t __initstub__kmod_legacy__271_77_pci_subsys_init4
+ffffffff82402038 t pci_subsys_init
+ffffffff8240214a t pcibios_fixup_irqs
+ffffffff8240226b t pcibios_irq_init
+ffffffff82402393 t pirq_find_routing_table
+ffffffff8240255d t pirq_peer_trick
+ffffffff8240261c t pirq_find_router
+ffffffff824026e3 t fix_broken_hp_bios_irq9
+ffffffff82402712 t fix_acer_tm360_irqrouting
+ffffffff82402741 t pirq_try_router
+ffffffff824027c6 t intel_router_probe
+ffffffff82402a65 t ali_router_probe
+ffffffff82402ac7 t ite_router_probe
+ffffffff82402af8 t via_router_probe
+ffffffff82402b9e t opti_router_probe
+ffffffff82402bcf t sis_router_probe
+ffffffff82402c25 t cyrix_router_probe
+ffffffff82402c54 t vlsi_router_probe
+ffffffff82402c85 t serverworks_router_probe
+ffffffff82402cb9 t amd_router_probe
+ffffffff82402d0f t pico_router_probe
+ffffffff82402d52 t dmi_check_skip_isa_align
+ffffffff82402d69 t dmi_check_pciprobe
+ffffffff82402d80 t pcibios_set_cache_line_size
+ffffffff82402dc8 t pcibios_init
+ffffffff82402e0b t pcibios_setup
+ffffffff824031dd t can_skip_ioresource_align
+ffffffff82403201 t set_bf_sort
+ffffffff82403233 t find_sort_method
+ffffffff8240324f t set_scan_all
+ffffffff82403273 t read_dmi_type_b1
+ffffffff824032b7 t alloc_pci_root_info
+ffffffff8240338f t __initstub__kmod_amd_bus__270_404_amd_postcore_init2
+ffffffff824033a1 t amd_postcore_init
+ffffffff824033c9 t early_root_info_init
+ffffffff82403b13 t pci_io_ecs_init
+ffffffff82403b7c t pci_enable_pci_io_ecs
+ffffffff82403c4f t init_vmlinux_build_id
+ffffffff82403c7d t decompress_method
+ffffffff82403cf4 t __gunzip
+ffffffff8240405c t nofill
+ffffffff8240406e t gunzip
+ffffffff8240408c t unlz4
+ffffffff824043f4 t unzstd
+ffffffff8240440b t __unzstd
+ffffffff824047dd t decompress_single
+ffffffff824048cd t handle_zstd_error
+ffffffff8240493f t dump_stack_set_arch_desc
+ffffffff824049c4 t __initstub__kmod_kobject_uevent__500_814_kobject_uevent_init2
+ffffffff824049db t maple_tree_init
+ffffffff82404a14 t radix_tree_init
+ffffffff82404a82 t debug_boot_weak_hash_enable
+ffffffff82404aa2 t __initstub__kmod_vsprintf__541_777_vsprintf_init_hashval4
+ffffffff82404ab4 t no_hash_pointers_enable
+ffffffff82404b72 t use_tsc_delay
+ffffffff82404b98 t use_tpause_delay
+ffffffff82404bb9 T _einittext
+ffffffff82408000 D early_top_pgt
+ffffffff8240a000 D early_dynamic_pgts
+ffffffff8244a000 D early_recursion_flag
+ffffffff8244b000 D real_mode_blob
+ffffffff82451248 D real_mode_blob_end
+ffffffff82451248 D real_mode_relocs
+ffffffff824512e0 d next_early_pgt
+ffffffff824512f0 d kthreadd_done
+ffffffff82451310 d parse_early_param.done
+ffffffff82451320 d parse_early_param.tmp_cmdline
+ffffffff82451b20 d late_time_init
+ffffffff82451b30 d setup_boot_config.tmp_cmdline
+ffffffff82452330 d xbc_namebuf
+ffffffff82452430 d boot_command_line
+ffffffff82452c30 d initcall_level_names
+ffffffff82452c70 d initcall_levels
+ffffffff82452cc0 d root_fs_names
+ffffffff82452cc8 d root_mount_data
+ffffffff82452cd0 d root_device_name
+ffffffff82452cd8 d root_delay
+ffffffff82452ce0 d saved_root_name
+ffffffff82452d20 d rd_image_start
+ffffffff82452d28 d mount_initrd
+ffffffff82452d30 d phys_initrd_start
+ffffffff82452d38 d phys_initrd_size
+ffffffff82452d40 d do_retain_initrd
+ffffffff82452d41 d initramfs_async
+ffffffff82452d50 d unpack_to_rootfs.msg_buf
+ffffffff82452d90 d header_buf
+ffffffff82452d98 d symlink_buf
+ffffffff82452da0 d name_buf
+ffffffff82452da8 d state
+ffffffff82452db0 d this_header
+ffffffff82452db8 d message
+ffffffff82452dc0 d my_inptr
+ffffffff82452dc8 d byte_count
+ffffffff82452dd0 d victim
+ffffffff82452dd8 d collected
+ffffffff82452de0 d collect
+ffffffff82452de8 d remains
+ffffffff82452df0 d next_state
+ffffffff82452df4 d csum_present
+ffffffff82452df8 d name_len
+ffffffff82452e00 d body_len
+ffffffff82452e08 d next_header
+ffffffff82452e10 d mode
+ffffffff82452e18 d ino
+ffffffff82452e20 d uid
+ffffffff82452e24 d gid
+ffffffff82452e28 d nlink
+ffffffff82452e30 d mtime
+ffffffff82452e38 d major
+ffffffff82452e40 d minor
+ffffffff82452e48 d rdev
+ffffffff82452e4c d hdr_csum
+ffffffff82452e50 d wfile
+ffffffff82452e58 d wfile_pos
+ffffffff82452e60 d io_csum
+ffffffff82452e70 d head
+ffffffff82452f70 d dir_list
+ffffffff82452f80 d actions
+ffffffff82452fc0 d intel_pmu_init.__quirk
+ffffffff82452fd0 d intel_pmu_init.__quirk.3
+ffffffff82452fe0 d intel_pmu_init.__quirk.6
+ffffffff82452ff0 d intel_pmu_init.__quirk.24
+ffffffff82453000 d intel_pmu_init.__quirk.25
+ffffffff82453010 d intel_pmu_init.__quirk.28
+ffffffff82453020 d intel_pmu_init.__quirk.31
+ffffffff82453030 d intel_pmu_init.__quirk.32
+ffffffff82453040 d intel_pmu_init.__quirk.35
+ffffffff82453050 d intel_pmu_init.__quirk.40
+ffffffff82453060 d p6_pmu_init.__quirk
+ffffffff82453070 d zhaoxin_pmu_init.__quirk
+ffffffff82453080 d idt_setup_done
+ffffffff82453090 d builtin_cmdline
+ffffffff82453890 d command_line
+ffffffff82454090 d x86_init
+ffffffff82454188 d sbf_port
+ffffffff82454190 d e820_table_init
+ffffffff82454bd0 d e820_table_kexec_init
+ffffffff82455610 d e820_table_firmware_init
+ffffffff82456050 d change_point_list
+ffffffff824570b0 d change_point
+ffffffff824578e0 d overlap_list
+ffffffff82457d00 d new_entries
+ffffffff8245873c d userdef
+ffffffff82458740 d e820_res
+ffffffff82458748 d int3_selftest.int3_exception_nb
+ffffffff82458760 d tsc_early_khz
+ffffffff82458764 d io_delay_override
+ffffffff82458770 d fpu__init_system_mxcsr.fxregs
+ffffffff82458970 d x
+ffffffff82458978 d y
+ffffffff82458980 d xsave_cpuid_features
+ffffffff824589a8 d l1d_flush_mitigation
+ffffffff824589ac d changed_by_mtrr_cleanup
+ffffffff824589b0 d last_fixed_end
+ffffffff824589b4 d last_fixed_type
+ffffffff824589c0 d enable_mtrr_cleanup
+ffffffff824589d0 d range_state
+ffffffff8245a1d0 d range
+ffffffff8245b1d0 d nr_range
+ffffffff8245b1d8 d range_sums
+ffffffff8245b1e0 d mtrr_chunk_size
+ffffffff8245b1e8 d mtrr_gran_size
+ffffffff8245b1f0 d result
+ffffffff8245c2f0 d min_loss_pfn
+ffffffff8245caf0 d debug_print
+ffffffff8245caf8 d nr_mtrr_spare_reg
+ffffffff8245cb00 d mtrr_calc_range_state.range_new
+ffffffff8245db00 d vmw_sched_clock
+ffffffff8245db01 d steal_acc
+ffffffff8245db02 d nopv
+ffffffff8245db08 d acpi_sci_override_gsi
+ffffffff8245db0c d acpi_force
+ffffffff8245db0d d acpi_sci_flags
+ffffffff8245db10 d acpi_skip_timer_override
+ffffffff8245db14 d acpi_use_timer_override
+ffffffff8245db18 d acpi_fix_pin2_polarity
+ffffffff8245db20 d hpet_res
+ffffffff8245db28 d acpi_lapic_addr
+ffffffff8245db30 d early_qrk
+ffffffff8245dcb0 d setup_possible_cpus
+ffffffff8245dcc0 d alloc_mptable
+ffffffff8245dcc8 d mpc_new_length
+ffffffff8245dcd0 d mpc_new_phys
+ffffffff8245dce0 d irq_used
+ffffffff8245e0e0 d m_spare
+ffffffff8245e180 d disable_apic_timer
+ffffffff8245e184 d lapic_cal_loops
+ffffffff8245e188 d lapic_cal_t1
+ffffffff8245e190 d lapic_cal_t2
+ffffffff8245e198 d lapic_cal_tsc2
+ffffffff8245e1a0 d lapic_cal_tsc1
+ffffffff8245e1a8 d lapic_cal_pm2
+ffffffff8245e1b0 d lapic_cal_pm1
+ffffffff8245e1b8 d lapic_cal_j2
+ffffffff8245e1c0 d lapic_cal_j1
+ffffffff8245e1d0 d x86_cpu_to_apicid_early_map
+ffffffff8245e210 d x86_bios_cpu_apicid_early_map
+ffffffff8245e250 d x86_cpu_to_acpiid_early_map
+ffffffff8245e2d0 d show_lapic
+ffffffff8245e2d4 d no_timer_check
+ffffffff8245e2d8 d disable_timer_pin_1
+ffffffff8245e2dc d kvmclock
+ffffffff8245e2e0 d kvmclock_vsyscall
+ffffffff8245e2f0 d initial_dtb
+ffffffff8245e300 d cmd_line
+ffffffff8245eb00 d of_ioapic
+ffffffff8245eb10 d ce4100_ids
+ffffffff8245ee30 d pgt_buf_end
+ffffffff8245ee38 d pgt_buf_top
+ffffffff8245ee40 d can_use_brk_pgt
+ffffffff8245ee41 d pat_force_disabled
+ffffffff8245ee50 d kaslr_regions
+ffffffff8245ee80 d add_efi_memmap
+ffffffff8245ee88 d efi_systab_phys
+ffffffff8245ee90 d __TRACE_SYSTEM_HI_SOFTIRQ
+ffffffff8245eea8 d __TRACE_SYSTEM_TIMER_SOFTIRQ
+ffffffff8245eec0 d __TRACE_SYSTEM_NET_TX_SOFTIRQ
+ffffffff8245eed8 d __TRACE_SYSTEM_NET_RX_SOFTIRQ
+ffffffff8245eef0 d __TRACE_SYSTEM_BLOCK_SOFTIRQ
+ffffffff8245ef08 d __TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
+ffffffff8245ef20 d __TRACE_SYSTEM_TASKLET_SOFTIRQ
+ffffffff8245ef38 d __TRACE_SYSTEM_SCHED_SOFTIRQ
+ffffffff8245ef50 d __TRACE_SYSTEM_HRTIMER_SOFTIRQ
+ffffffff8245ef68 d __TRACE_SYSTEM_RCU_SOFTIRQ
+ffffffff8245ef80 d main_extable_sort_needed
+ffffffff8245ef90 d new_log_buf_len
+ffffffff8245efa0 d setup_text_buf
+ffffffff8245f380 d __TRACE_SYSTEM_TICK_DEP_MASK_NONE
+ffffffff8245f398 d __TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
+ffffffff8245f3b0 d __TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
+ffffffff8245f3c8 d __TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
+ffffffff8245f3e0 d __TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
+ffffffff8245f3f8 d __TRACE_SYSTEM_TICK_DEP_BIT_SCHED
+ffffffff8245f410 d __TRACE_SYSTEM_TICK_DEP_MASK_SCHED
+ffffffff8245f428 d __TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
+ffffffff8245f440 d __TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
+ffffffff8245f458 d __TRACE_SYSTEM_TICK_DEP_BIT_RCU
+ffffffff8245f470 d __TRACE_SYSTEM_TICK_DEP_MASK_RCU
+ffffffff8245f488 d __TRACE_SYSTEM_ALARM_REALTIME
+ffffffff8245f4a0 d __TRACE_SYSTEM_ALARM_BOOTTIME
+ffffffff8245f4b8 d __TRACE_SYSTEM_ALARM_REALTIME_FREEZER
+ffffffff8245f4d0 d __TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
+ffffffff8245f4f0 d suffix_tbl
+ffffffff8245f508 d cgroup_init_early.ctx
+ffffffff8245f558 d audit_net_ops
+ffffffff8245f5a0 d bootup_tracer_buf
+ffffffff8245f610 d trace_boot_options_buf
+ffffffff8245f680 d trace_boot_clock_buf
+ffffffff8245f6e8 d trace_boot_clock
+ffffffff8245f6f0 d tracepoint_printk_stop_on_boot
+ffffffff8245f6f8 d eval_map_work
+ffffffff8245f728 d eval_map_wq
+ffffffff8245f730 d tracerfs_init_work
+ffffffff8245f760 d events
+ffffffff8245f7d0 d bootup_event_buf
+ffffffff8245ffd0 d __TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
+ffffffff8245ffe8 d __TRACE_SYSTEM_ERROR_DETECTOR_KASAN
+ffffffff82460000 d __TRACE_SYSTEM_ERROR_DETECTOR_WARN
+ffffffff82460018 d __TRACE_SYSTEM_XDP_ABORTED
+ffffffff82460030 d __TRACE_SYSTEM_XDP_DROP
+ffffffff82460048 d __TRACE_SYSTEM_XDP_PASS
+ffffffff82460060 d __TRACE_SYSTEM_XDP_TX
+ffffffff82460078 d __TRACE_SYSTEM_XDP_REDIRECT
+ffffffff82460090 d __TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
+ffffffff824600a8 d __TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
+ffffffff824600c0 d __TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
+ffffffff824600d8 d __TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
+ffffffff824600f0 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff82460108 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff82460120 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff82460138 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff82460150 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff82460168 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff82460180 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff82460198 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff824601b0 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff824601c8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff824601e0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff824601f8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff82460210 d __TRACE_SYSTEM_ZONE_DMA
+ffffffff82460228 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffff82460240 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffff82460258 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff82460270 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff82460288 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff824602a0 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff824602b8 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff824602d0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff824602e8 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff82460300 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff82460318 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff82460330 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff82460348 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff82460360 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff82460378 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff82460390 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff824603a8 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff824603c0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff824603d8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff824603f0 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff82460408 d __TRACE_SYSTEM_ZONE_DMA
+ffffffff82460420 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffff82460438 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffff82460450 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff82460468 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff82460480 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff82460498 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff824604b0 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff824604c8 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff824604e0 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff824604f8 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff82460510 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff82460528 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff82460540 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff82460558 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff82460570 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff82460588 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff824605a0 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff824605b8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff824605d0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff824605e8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff82460600 d __TRACE_SYSTEM_ZONE_DMA
+ffffffff82460618 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffff82460630 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffff82460648 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff82460660 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff82460678 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff82460690 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff824606a8 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff824606c0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff824606e0 d pcpu_build_alloc_info.group_map
+ffffffff82460760 d pcpu_build_alloc_info.group_cnt
+ffffffff824607e0 d pcpu_build_alloc_info.mask
+ffffffff824607e8 d pcpu_chosen_fc
+ffffffff824607f0 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff82460808 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff82460820 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff82460838 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff82460850 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff82460868 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff82460880 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff82460898 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff824608b0 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff824608c8 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff824608e0 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff824608f8 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff82460910 d __TRACE_SYSTEM_ZONE_DMA
+ffffffff82460928 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffff82460940 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffff82460958 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff82460970 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff82460988 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff824609a0 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff824609b8 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff824609d0 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff824609e8 d __TRACE_SYSTEM_MM_FILEPAGES
+ffffffff82460a00 d __TRACE_SYSTEM_MM_ANONPAGES
+ffffffff82460a18 d __TRACE_SYSTEM_MM_SWAPENTS
+ffffffff82460a30 d __TRACE_SYSTEM_MM_SHMEMPAGES
+ffffffff82460a48 d __TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff82460a60 d __TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff82460a78 d __TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff82460a90 d __TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff82460aa8 d __TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff82460ac0 d __TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff82460ad8 d __TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff82460af0 d __TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff82460b08 d __TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff82460b20 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff82460b38 d __TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff82460b50 d __TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff82460b68 d __TRACE_SYSTEM_ZONE_DMA
+ffffffff82460b80 d __TRACE_SYSTEM_ZONE_DMA32
+ffffffff82460b98 d __TRACE_SYSTEM_ZONE_NORMAL
+ffffffff82460bb0 d __TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff82460bc8 d __TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff82460be0 d __TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff82460bf8 d __TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff82460c10 d __TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff82460c28 d __TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff82460c40 d __TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
+ffffffff82460c58 d __TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
+ffffffff82460c70 d __TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
+ffffffff82460c88 d __TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
+ffffffff82460ca0 d __TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
+ffffffff82460cb8 d __TRACE_SYSTEM_MIGRATE_ASYNC
+ffffffff82460cd0 d __TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
+ffffffff82460ce8 d __TRACE_SYSTEM_MIGRATE_SYNC
+ffffffff82460d00 d __TRACE_SYSTEM_MR_COMPACTION
+ffffffff82460d18 d __TRACE_SYSTEM_MR_MEMORY_FAILURE
+ffffffff82460d30 d __TRACE_SYSTEM_MR_MEMORY_HOTPLUG
+ffffffff82460d48 d __TRACE_SYSTEM_MR_SYSCALL
+ffffffff82460d60 d __TRACE_SYSTEM_MR_MEMPOLICY_MBIND
+ffffffff82460d78 d __TRACE_SYSTEM_MR_NUMA_MISPLACED
+ffffffff82460d90 d __TRACE_SYSTEM_MR_CONTIG_RANGE
+ffffffff82460da8 d __TRACE_SYSTEM_MR_LONGTERM_PIN
+ffffffff82460dc0 d __TRACE_SYSTEM_MR_DEMOTION
+ffffffff82460dd8 d vmlist
+ffffffff82460de0 d arch_zone_lowest_possible_pfn
+ffffffff82460e00 d arch_zone_highest_possible_pfn
+ffffffff82460e20 d zone_movable_pfn.0
+ffffffff82460e28 d dma_reserve
+ffffffff82460e30 d nr_kernel_pages
+ffffffff82460e38 d nr_all_pages
+ffffffff82460e40 d required_kernelcore_percent
+ffffffff82460e48 d required_kernelcore
+ffffffff82460e50 d required_movablecore_percent
+ffffffff82460e58 d required_movablecore
+ffffffff82460e60 d reset_managed_pages_done
+ffffffff82460e68 d kmem_cache_init.boot_kmem_cache
+ffffffff82460f60 d kmem_cache_init.boot_kmem_cache_node
+ffffffff82461058 d __TRACE_SYSTEM_SCAN_FAIL
+ffffffff82461070 d __TRACE_SYSTEM_SCAN_SUCCEED
+ffffffff82461088 d __TRACE_SYSTEM_SCAN_PMD_NULL
+ffffffff824610a0 d __TRACE_SYSTEM_SCAN_PMD_NONE
+ffffffff824610b8 d __TRACE_SYSTEM_SCAN_PMD_MAPPED
+ffffffff824610d0 d __TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
+ffffffff824610e8 d __TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
+ffffffff82461100 d __TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
+ffffffff82461118 d __TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
+ffffffff82461130 d __TRACE_SYSTEM_SCAN_PTE_UFFD_WP
+ffffffff82461148 d __TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
+ffffffff82461160 d __TRACE_SYSTEM_SCAN_PAGE_RO
+ffffffff82461178 d __TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
+ffffffff82461190 d __TRACE_SYSTEM_SCAN_PAGE_NULL
+ffffffff824611a8 d __TRACE_SYSTEM_SCAN_SCAN_ABORT
+ffffffff824611c0 d __TRACE_SYSTEM_SCAN_PAGE_COUNT
+ffffffff824611d8 d __TRACE_SYSTEM_SCAN_PAGE_LRU
+ffffffff824611f0 d __TRACE_SYSTEM_SCAN_PAGE_LOCK
+ffffffff82461208 d __TRACE_SYSTEM_SCAN_PAGE_ANON
+ffffffff82461220 d __TRACE_SYSTEM_SCAN_PAGE_COMPOUND
+ffffffff82461238 d __TRACE_SYSTEM_SCAN_ANY_PROCESS
+ffffffff82461250 d __TRACE_SYSTEM_SCAN_VMA_NULL
+ffffffff82461268 d __TRACE_SYSTEM_SCAN_VMA_CHECK
+ffffffff82461280 d __TRACE_SYSTEM_SCAN_ADDRESS_RANGE
+ffffffff82461298 d __TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
+ffffffff824612b0 d __TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
+ffffffff824612c8 d __TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
+ffffffff824612e0 d __TRACE_SYSTEM_SCAN_TRUNCATED
+ffffffff824612f8 d __TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
+ffffffff82461310 d page_owner_enabled
+ffffffff82461320 d after_paging_init
+ffffffff82461330 d prev_map
+ffffffff82461370 d slot_virt
+ffffffff824613b0 d prev_size
+ffffffff824613f0 d early_ioremap_debug
+ffffffff824613f1 d enable_checks
+ffffffff824613f8 d dhash_entries
+ffffffff82461400 d ihash_entries
+ffffffff82461408 d mhash_entries
+ffffffff82461410 d mphash_entries
+ffffffff82461418 d __TRACE_SYSTEM_WB_REASON_BACKGROUND
+ffffffff82461430 d __TRACE_SYSTEM_WB_REASON_VMSCAN
+ffffffff82461448 d __TRACE_SYSTEM_WB_REASON_SYNC
+ffffffff82461460 d __TRACE_SYSTEM_WB_REASON_PERIODIC
+ffffffff82461478 d __TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
+ffffffff82461490 d __TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
+ffffffff824614a8 d __TRACE_SYSTEM_WB_REASON_FORKER_THREAD
+ffffffff824614c0 d __TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
+ffffffff824614d8 d proc_net_ns_ops
+ffffffff82461518 d __TRACE_SYSTEM_BH_New
+ffffffff82461530 d __TRACE_SYSTEM_BH_Mapped
+ffffffff82461548 d __TRACE_SYSTEM_BH_Unwritten
+ffffffff82461560 d __TRACE_SYSTEM_BH_Boundary
+ffffffff82461578 d __TRACE_SYSTEM_ES_WRITTEN_B
+ffffffff82461590 d __TRACE_SYSTEM_ES_UNWRITTEN_B
+ffffffff824615a8 d __TRACE_SYSTEM_ES_DELAYED_B
+ffffffff824615c0 d __TRACE_SYSTEM_ES_HOLE_B
+ffffffff824615d8 d __TRACE_SYSTEM_ES_REFERENCED_B
+ffffffff824615f0 d __TRACE_SYSTEM_EXT4_FC_REASON_XATTR
+ffffffff82461608 d __TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
+ffffffff82461620 d __TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
+ffffffff82461638 d __TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
+ffffffff82461650 d __TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
+ffffffff82461668 d __TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
+ffffffff82461680 d __TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
+ffffffff82461698 d __TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
+ffffffff824616b0 d __TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
+ffffffff824616c8 d __TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
+ffffffff824616e0 d __TRACE_SYSTEM_EXT4_FC_REASON_MAX
+ffffffff824616f8 d lsm_enabled_true
+ffffffff82461700 d exclusive
+ffffffff82461708 d debug
+ffffffff8246170c d lsm_enabled_false
+ffffffff82461710 d ordered_lsms
+ffffffff82461718 d chosen_lsm_order
+ffffffff82461720 d chosen_major_lsm
+ffffffff82461728 d last_lsm
+ffffffff8246172c d selinux_enforcing_boot
+ffffffff82461730 d selinux_enabled_boot
+ffffffff82461734 d ddebug_init_success
+ffffffff82461735 d __stack_depot_early_init_passed
+ffffffff82461736 d __stack_depot_want_early_init
+ffffffff82461740 d xbc_data
+ffffffff82461748 d xbc_node_num
+ffffffff82461750 d xbc_data_size
+ffffffff82461758 d xbc_nodes
+ffffffff82461760 d brace_index
+ffffffff82461764 d xbc_err_pos
+ffffffff82461768 d xbc_err_msg
+ffffffff82461770 d last_parent
+ffffffff82461780 d open_brace
+ffffffff824617c0 d acpi_apic_instance
+ffffffff824617d0 d acpi_initrd_files
+ffffffff824621d0 d acpi_verify_table_checksum
+ffffffff824621e0 d initial_tables
+ffffffff824631e0 d acpi_blacklist
+ffffffff82463300 d osi_setup_entries
+ffffffff82463710 d nr_unique_ids
+ffffffff82463720 d unique_processor_ids
+ffffffff824637a0 d acpi_masked_gpes_map
+ffffffff824637c0 d pnpacpi_disabled
+ffffffff824637c4 d earlycon_acpi_spcr_enable
+ffffffff824637c5 d trust_cpu
+ffffffff824637c6 d trust_bootloader
+ffffffff824637d0 d no_fwh_detect
+ffffffff824637e0 d intel_init_hw_struct.warning
+ffffffff824638d8 d loopback_net_ops
+ffffffff82463918 d __TRACE_SYSTEM_THERMAL_TRIP_CRITICAL
+ffffffff82463930 d __TRACE_SYSTEM_THERMAL_TRIP_HOT
+ffffffff82463948 d __TRACE_SYSTEM_THERMAL_TRIP_PASSIVE
+ffffffff82463960 d __TRACE_SYSTEM_THERMAL_TRIP_ACTIVE
+ffffffff82463980 d _inits
+ffffffff824639c0 d no_load
+ffffffff824639c4 d no_hwp
+ffffffff824639c8 d hwp_only
+ffffffff824639d0 d plat_info
+ffffffff82463d50 d force_load
+ffffffff82463d60 d dmi_ids_string
+ffffffff82463de0 d dmi_ver
+ffffffff82463df0 d mem_reserve
+ffffffff82463df8 d rt_prop
+ffffffff82463e00 d initrd
+ffffffff82463e10 d memory_type_name
+ffffffff82463ee0 d efivar_ssdt
+ffffffff82463ef0 d tbl_size
+ffffffff82463ef8 d earlycon_console
+ffffffff82463f00 d proto_net_ops
+ffffffff82463f40 d net_ns_ops
+ffffffff82463f80 d sysctl_core_ops
+ffffffff82463fc0 d netdev_net_ops
+ffffffff82464000 d default_device_ops
+ffffffff82464040 d dev_proc_ops
+ffffffff82464080 d dev_mc_net_ops
+ffffffff824640c0 d __TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
+ffffffff824640d8 d __TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
+ffffffff824640f0 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
+ffffffff82464108 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
+ffffffff82464120 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
+ffffffff82464138 d __TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
+ffffffff82464150 d __TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
+ffffffff82464168 d __TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
+ffffffff82464180 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
+ffffffff82464198 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
+ffffffff824641b0 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
+ffffffff824641c8 d __TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
+ffffffff824641e0 d __TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
+ffffffff824641f8 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
+ffffffff82464210 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
+ffffffff82464228 d __TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
+ffffffff82464240 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
+ffffffff82464258 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
+ffffffff82464270 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
+ffffffff82464288 d __TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
+ffffffff824642a0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
+ffffffff824642b8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
+ffffffff824642d0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
+ffffffff824642e8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
+ffffffff82464300 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
+ffffffff82464318 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
+ffffffff82464330 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
+ffffffff82464348 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
+ffffffff82464360 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
+ffffffff82464378 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
+ffffffff82464390 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
+ffffffff824643a8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
+ffffffff824643c0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
+ffffffff824643d8 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
+ffffffff824643f0 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
+ffffffff82464408 d __TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
+ffffffff82464420 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
+ffffffff82464438 d __TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
+ffffffff82464450 d __TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
+ffffffff82464468 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
+ffffffff82464480 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
+ffffffff82464498 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
+ffffffff824644b0 d __TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
+ffffffff824644c8 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
+ffffffff824644e0 d __TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
+ffffffff824644f8 d __TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
+ffffffff82464510 d __TRACE_SYSTEM_SKB_DROP_REASON_XDP
+ffffffff82464528 d __TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
+ffffffff82464540 d __TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
+ffffffff82464558 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
+ffffffff82464570 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
+ffffffff82464588 d __TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
+ffffffff824645a0 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
+ffffffff824645b8 d __TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
+ffffffff824645d0 d __TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
+ffffffff824645e8 d __TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
+ffffffff82464600 d __TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
+ffffffff82464618 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
+ffffffff82464630 d __TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
+ffffffff82464648 d __TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
+ffffffff82464660 d __TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
+ffffffff82464678 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
+ffffffff82464690 d __TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
+ffffffff824646a8 d __TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
+ffffffff824646c0 d __TRACE_SYSTEM_SKB_DROP_REASON_MAX
+ffffffff824646d8 d __TRACE_SYSTEM_2
+ffffffff824646f0 d __TRACE_SYSTEM_10
+ffffffff82464708 d __TRACE_SYSTEM_IPPROTO_TCP
+ffffffff82464720 d __TRACE_SYSTEM_IPPROTO_DCCP
+ffffffff82464738 d __TRACE_SYSTEM_IPPROTO_SCTP
+ffffffff82464750 d __TRACE_SYSTEM_IPPROTO_MPTCP
+ffffffff82464768 d __TRACE_SYSTEM_TCP_ESTABLISHED
+ffffffff82464780 d __TRACE_SYSTEM_TCP_SYN_SENT
+ffffffff82464798 d __TRACE_SYSTEM_TCP_SYN_RECV
+ffffffff824647b0 d __TRACE_SYSTEM_TCP_FIN_WAIT1
+ffffffff824647c8 d __TRACE_SYSTEM_TCP_FIN_WAIT2
+ffffffff824647e0 d __TRACE_SYSTEM_TCP_TIME_WAIT
+ffffffff824647f8 d __TRACE_SYSTEM_TCP_CLOSE
+ffffffff82464810 d __TRACE_SYSTEM_TCP_CLOSE_WAIT
+ffffffff82464828 d __TRACE_SYSTEM_TCP_LAST_ACK
+ffffffff82464840 d __TRACE_SYSTEM_TCP_LISTEN
+ffffffff82464858 d __TRACE_SYSTEM_TCP_CLOSING
+ffffffff82464870 d __TRACE_SYSTEM_TCP_NEW_SYN_RECV
+ffffffff82464888 d __TRACE_SYSTEM_0
+ffffffff824648a0 d __TRACE_SYSTEM_1
+ffffffff824648b8 d netlink_net_ops
+ffffffff824648f8 d sysctl_route_ops
+ffffffff82464938 d ip_rt_ops
+ffffffff82464978 d rt_genid_ops
+ffffffff824649b8 d ipv4_inetpeer_ops
+ffffffff824649f8 d ip_rt_proc_ops
+ffffffff82464a38 d thash_entries
+ffffffff82464a40 d tcp_sk_ops
+ffffffff82464a80 d tcp_net_metrics_ops
+ffffffff82464ac0 d raw_net_ops
+ffffffff82464b00 d raw_sysctl_ops
+ffffffff82464b40 d uhash_entries
+ffffffff82464b48 d udp_sysctl_ops
+ffffffff82464b88 d icmp_sk_ops
+ffffffff82464bc8 d devinet_ops
+ffffffff82464c08 d ipv4_mib_ops
+ffffffff82464c48 d af_inet_ops
+ffffffff82464c88 d ipv4_sysctl_ops
+ffffffff82464cc8 d ip_proc_ops
+ffffffff82464d08 d xfrm4_net_ops
+ffffffff82464d48 d xfrm_net_ops
+ffffffff82464d88 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
+ffffffff82464da0 d __TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
+ffffffff82464db8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
+ffffffff82464dd0 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
+ffffffff82464de8 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
+ffffffff82464e00 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
+ffffffff82464e18 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
+ffffffff82464e30 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
+ffffffff82464e48 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
+ffffffff82464e60 d __TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
+ffffffff82464e78 d known_bridge
+ffffffff82464e79 d mcp55_checked
+ffffffff82464e80 d pirq_routers
+ffffffff82464f40 d intel_router_probe.pirq_440gx
+ffffffff82464fc0 d hb_probes
+ffffffff82465000 d __setup_str_set_reset_devices
+ffffffff8246500e d __setup_str_debug_kernel
+ffffffff82465014 d __setup_str_quiet_kernel
+ffffffff8246501a d __setup_str_loglevel
+ffffffff82465023 d __setup_str_warn_bootconfig
+ffffffff8246502e d __setup_str_init_setup
+ffffffff82465034 d __setup_str_rdinit_setup
+ffffffff8246503c d __setup_str_early_randomize_kstack_offset
+ffffffff82465054 d __setup_str_initcall_blacklist
+ffffffff82465068 d __setup_str_set_debug_rodata
+ffffffff8246506f d __setup_str_early_hostname
+ffffffff82465078 d __setup_str_load_ramdisk
+ffffffff82465086 d __setup_str_readonly
+ffffffff82465089 d __setup_str_readwrite
+ffffffff8246508c d __setup_str_root_dev_setup
+ffffffff82465092 d __setup_str_rootwait_setup
+ffffffff8246509b d __setup_str_root_data_setup
+ffffffff824650a6 d __setup_str_fs_names_setup
+ffffffff824650b2 d __setup_str_root_delay_setup
+ffffffff824650bd d __setup_str_prompt_ramdisk
+ffffffff824650cd d __setup_str_ramdisk_start_setup
+ffffffff824650dc d __setup_str_no_initrd
+ffffffff824650e5 d __setup_str_early_initrdmem
+ffffffff824650ef d __setup_str_early_initrd
+ffffffff824650f6 d __setup_str_retain_initrd_param
+ffffffff82465104 d __setup_str_initramfs_async_setup
+ffffffff82465115 d __setup_str_lpj_setup
+ffffffff8246511a d __setup_str_vdso_setup
+ffffffff82465120 d __setup_str_vsyscall_setup
+ffffffff82465130 d rapl_model_match
+ffffffff82465540 d rapl_domain_names
+ffffffff82465570 d amd_hw_cache_event_ids_f17h
+ffffffff824656c0 d amd_hw_cache_event_ids
+ffffffff82465810 d amd_pmu
+ffffffff82465a90 d core2_hw_cache_event_ids
+ffffffff82465be0 d nehalem_hw_cache_event_ids
+ffffffff82465d30 d nehalem_hw_cache_extra_regs
+ffffffff82465e80 d atom_hw_cache_event_ids
+ffffffff82465fd0 d slm_hw_cache_event_ids
+ffffffff82466120 d slm_hw_cache_extra_regs
+ffffffff82466270 d glm_hw_cache_event_ids
+ffffffff824663c0 d glm_hw_cache_extra_regs
+ffffffff82466510 d glp_hw_cache_event_ids
+ffffffff82466660 d glp_hw_cache_extra_regs
+ffffffff824667b0 d tnt_hw_cache_extra_regs
+ffffffff82466900 d westmere_hw_cache_event_ids
+ffffffff82466a50 d snb_hw_cache_event_ids
+ffffffff82466ba0 d snb_hw_cache_extra_regs
+ffffffff82466cf0 d hsw_hw_cache_event_ids
+ffffffff82466e40 d hsw_hw_cache_extra_regs
+ffffffff82466f90 d knl_hw_cache_extra_regs
+ffffffff824670e0 d skl_hw_cache_event_ids
+ffffffff82467230 d skl_hw_cache_extra_regs
+ffffffff82467380 d spr_hw_cache_event_ids
+ffffffff824674d0 d spr_hw_cache_extra_regs
+ffffffff82467620 d core_pmu
+ffffffff824678a0 d intel_pmu
+ffffffff82467b20 d intel_arch_events_map
+ffffffff82467b90 d knc_hw_cache_event_ids
+ffffffff82467ce0 d knc_pmu
+ffffffff82467f60 d p4_hw_cache_event_ids
+ffffffff824680b0 d p4_pmu
+ffffffff82468330 d p6_hw_cache_event_ids
+ffffffff82468480 d p6_pmu
+ffffffff82468700 d intel_uncore_match
+ffffffff82468b68 d generic_uncore_init
+ffffffff82468b88 d nhm_uncore_init
+ffffffff82468ba8 d snb_uncore_init
+ffffffff82468bc8 d ivb_uncore_init
+ffffffff82468be8 d hsw_uncore_init
+ffffffff82468c08 d bdw_uncore_init
+ffffffff82468c28 d snbep_uncore_init
+ffffffff82468c48 d nhmex_uncore_init
+ffffffff82468c68 d ivbep_uncore_init
+ffffffff82468c88 d hswep_uncore_init
+ffffffff82468ca8 d bdx_uncore_init
+ffffffff82468cc8 d knl_uncore_init
+ffffffff82468ce8 d skl_uncore_init
+ffffffff82468d08 d skx_uncore_init
+ffffffff82468d28 d icl_uncore_init
+ffffffff82468d48 d icx_uncore_init
+ffffffff82468d68 d tgl_l_uncore_init
+ffffffff82468d88 d tgl_uncore_init
+ffffffff82468da8 d rkl_uncore_init
+ffffffff82468dc8 d adl_uncore_init
+ffffffff82468de8 d mtl_uncore_init
+ffffffff82468e08 d spr_uncore_init
+ffffffff82468e28 d snr_uncore_init
+ffffffff82468e50 d intel_cstates_match
+ffffffff82469378 d nhm_cstates
+ffffffff82469390 d snb_cstates
+ffffffff824693a8 d hswult_cstates
+ffffffff824693c0 d slm_cstates
+ffffffff824693d8 d cnl_cstates
+ffffffff824693f0 d knl_cstates
+ffffffff82469408 d glm_cstates
+ffffffff82469420 d icl_cstates
+ffffffff82469438 d icx_cstates
+ffffffff82469450 d adl_cstates
+ffffffff82469470 d zxd_hw_cache_event_ids
+ffffffff824695c0 d zxe_hw_cache_event_ids
+ffffffff82469710 d zhaoxin_pmu
+ffffffff82469990 d zx_arch_events_map
+ffffffff82469a00 d __setup_str_strict_sas_size
+ffffffff82469a10 d early_idts
+ffffffff82469a40 d def_idts
+ffffffff82469be0 d early_pf_idts
+ffffffff82469c00 d apic_idts
+ffffffff82469d50 d __setup_str_setup_unknown_nmi_panic
+ffffffff82469d70 d trim_snb_memory.bad_pages
+ffffffff82469d98 d snb_gfx_workaround_needed.snb_ids
+ffffffff82469db0 d of_cmos_match
+ffffffff82469f40 d __setup_str_control_va_addr_alignment
+ffffffff82469f4f d __setup_str_parse_memopt
+ffffffff82469f53 d __setup_str_parse_memmap_opt
+ffffffff82469f5a d __setup_str_iommu_setup
+ffffffff82469f60 d __setup_str_enable_cpu0_hotplug
+ffffffff82469f6d d __setup_str_debug_alt
+ffffffff82469f7f d __setup_str_setup_noreplace_smp
+ffffffff82469f8d d __setup_str_tsc_early_khz_setup
+ffffffff82469f9b d __setup_str_notsc_setup
+ffffffff82469fa1 d __setup_str_tsc_setup
+ffffffff82469fb0 d io_delay_0xed_port_dmi_table
+ffffffff8246a7c0 d __setup_str_io_delay_param
+ffffffff8246a7d0 d add_rtc_cmos.ids
+ffffffff8246a7e8 d __setup_str_idle_setup
+ffffffff8246a7f0 d __setup_str_x86_nopcid_setup
+ffffffff8246a7f7 d __setup_str_x86_noinvpcid_setup
+ffffffff8246a801 d __setup_str_x86_nofsgsbase_setup
+ffffffff8246a80c d __setup_str_setup_disable_pku
+ffffffff8246a812 d __setup_str_setup_clearcpuid
+ffffffff8246a820 d cpu_vuln_whitelist
+ffffffff8246abd0 d cpu_vuln_blacklist
+ffffffff8246aec0 d __setup_str_mds_cmdline
+ffffffff8246aec4 d __setup_str_tsx_async_abort_parse_cmdline
+ffffffff8246aed4 d __setup_str_mmio_stale_data_parse_cmdline
+ffffffff8246aee4 d __setup_str_srbds_parse_cmdline
+ffffffff8246aeea d __setup_str_l1d_flush_parse_cmdline
+ffffffff8246aef4 d __setup_str_nospectre_v1_cmdline
+ffffffff8246af01 d __setup_str_retbleed_parse_cmdline
+ffffffff8246af0a d __setup_str_l1tf_cmdline
+ffffffff8246af10 d v2_user_options
+ffffffff8246af80 d mitigation_options
+ffffffff8246b030 d ssb_mitigation_options
+ffffffff8246b080 d has_glm_turbo_ratio_limits
+ffffffff8246b0e0 d has_knl_turbo_ratio_limits
+ffffffff8246b130 d has_skx_turbo_ratio_limits
+ffffffff8246b160 d __setup_str_nosgx
+ffffffff8246b170 d __setup_str_ring3mwait_disable
+ffffffff8246b190 d split_lock_cpu_ids
+ffffffff8246b2d0 d sld_options
+ffffffff8246b310 d __setup_str_rdrand_cmdline
+ffffffff8246b317 d __setup_str_disable_mtrr_cleanup_setup
+ffffffff8246b32c d __setup_str_enable_mtrr_cleanup_setup
+ffffffff8246b340 d __setup_str_mtrr_cleanup_debug_setup
+ffffffff8246b353 d __setup_str_parse_mtrr_chunk_size_opt
+ffffffff8246b363 d __setup_str_parse_mtrr_gran_size_opt
+ffffffff8246b372 d __setup_str_parse_mtrr_spare_reg
+ffffffff8246b384 d __setup_str_disable_mtrr_trim_setup
+ffffffff8246b398 d __setup_str_setup_vmw_sched_clock
+ffffffff8246b3ab d __setup_str_parse_no_stealacc
+ffffffff8246b3b8 d x86_hyper_vmware
+ffffffff8246b420 d __setup_str_parse_nopv
+ffffffff8246b430 d hypervisors
+ffffffff8246b448 d x86_hyper_ms_hyperv
+ffffffff8246b4b0 d acpi_dmi_table
+ffffffff8246bf70 d acpi_dmi_table_late
+ffffffff8246c780 d __setup_str_parse_acpi
+ffffffff8246c785 d __setup_str_parse_acpi_bgrt
+ffffffff8246c792 d __setup_str_parse_pci
+ffffffff8246c796 d __setup_str_parse_acpi_skip_timer_override
+ffffffff8246c7af d __setup_str_parse_acpi_use_timer_override
+ffffffff8246c7c7 d __setup_str_setup_acpi_sci
+ffffffff8246c7d0 d __setup_str_acpi_sleep_setup
+ffffffff8246c7e0 d reboot_dmi_table
+ffffffff8246fc50 d intel_early_ids
+ffffffff82472f90 d i830_early_ops
+ffffffff82472fa0 d i845_early_ops
+ffffffff82472fb0 d i85x_early_ops
+ffffffff82472fc0 d i865_early_ops
+ffffffff82472fd0 d gen3_early_ops
+ffffffff82472fe0 d gen6_early_ops
+ffffffff82472ff0 d gen8_early_ops
+ffffffff82473000 d chv_early_ops
+ffffffff82473010 d gen9_early_ops
+ffffffff82473020 d gen11_early_ops
+ffffffff82473030 d __setup_str_nonmi_ipi_setup
+ffffffff8247303a d __setup_str_cpu_init_udelay
+ffffffff8247304a d __setup_str__setup_possible_cpus
+ffffffff82473058 d __setup_str_update_mptable_setup
+ffffffff82473067 d __setup_str_parse_alloc_mptable_opt
+ffffffff82473080 d __setup_str_parse_lapic
+ffffffff82473086 d __setup_str_setup_apicpmtimer
+ffffffff82473092 d __setup_str_setup_nox2apic
+ffffffff8247309b d __setup_str_setup_disableapic
+ffffffff824730a7 d __setup_str_setup_nolapic
+ffffffff824730af d __setup_str_parse_lapic_timer_c2_ok
+ffffffff824730c1 d __setup_str_parse_disable_apic_timer
+ffffffff824730cd d __setup_str_parse_nolapic_timer
+ffffffff824730db d __setup_str_apic_set_verbosity
+ffffffff824730e0 d __setup_str_apic_set_disabled_cpu_apicid
+ffffffff824730f3 d __setup_str_apic_set_extnmi
+ffffffff82473100 d deadline_match
+ffffffff824732e0 d __setup_str_apic_ipi_shorthand
+ffffffff824732f2 d __setup_str_setup_show_lapic
+ffffffff824732fe d __setup_str_parse_noapic
+ffffffff82473305 d __setup_str_notimercheck
+ffffffff82473314 d __setup_str_disable_timer_pin_setup
+ffffffff82473328 d __setup_str_set_x2apic_phys_mode
+ffffffff82473334 d __setup_str_setup_early_printk
+ffffffff82473340 d early_serial_init.bases
+ffffffff82473348 d __setup_str_hpet_setup
+ffffffff8247334e d __setup_str_disable_hpet
+ffffffff82473355 d amd_nb_bus_dev_ranges
+ffffffff82473368 d __setup_str_parse_no_kvmapf
+ffffffff82473372 d __setup_str_parse_no_stealacc
+ffffffff82473380 d x86_hyper_kvm
+ffffffff824733e8 d __setup_str_parse_no_kvmclock
+ffffffff824733f4 d __setup_str_parse_no_kvmclock_vsyscall
+ffffffff82473410 d mmconf_dmi_table
+ffffffff824736c0 d __setup_str_parse_direct_gbpages_on
+ffffffff824736c8 d __setup_str_parse_direct_gbpages_off
+ffffffff824736d2 d __setup_str_early_disable_dma32
+ffffffff824736e0 d __setup_str_nonx32_setup
+ffffffff824736ea d __setup_str_setup_userpte
+ffffffff824736f2 d __setup_str_nopat
+ffffffff824736f8 d __setup_str_pat_debug_setup
+ffffffff82473701 d __setup_str_setup_init_pkru
+ffffffff8247370c d __setup_str_setup_storage_paranoia
+ffffffff82473730 d __setup_str_setup_add_efi_memmap
+ffffffff82473740 d arch_tables
+ffffffff824737b8 d __setup_str_coredump_filter_setup
+ffffffff824737c9 d __setup_str_oops_setup
+ffffffff824737ce d __setup_str_panic_on_taint_setup
+ffffffff824737dd d __setup_str_smt_cmdline_disable
+ffffffff824737e3 d __setup_str_mitigations_parse_cmdline
+ffffffff824737ef d __setup_str_reserve_setup
+ffffffff824737f8 d __setup_str_strict_iomem
+ffffffff824737ff d __setup_str_file_caps_disable
+ffffffff8247380c d __setup_str_setup_print_fatal_signals
+ffffffff82473821 d __setup_str_reboot_setup
+ffffffff82473829 d __setup_str_setup_schedstats
+ffffffff82473835 d __setup_str_setup_resched_latency_warn_ms
+ffffffff8247384e d __setup_str_setup_preempt_mode
+ffffffff82473857 d __setup_str_setup_sched_thermal_decay_shift
+ffffffff82473872 d __setup_str_sched_debug_setup
+ffffffff82473880 d __setup_str_setup_relax_domain_level
+ffffffff82473894 d __setup_str_setup_psi
+ffffffff82473899 d __setup_str_housekeeping_nohz_full_setup
+ffffffff824738a4 d __setup_str_housekeeping_isolcpus_setup
+ffffffff824738ae d __setup_str_mem_sleep_default_setup
+ffffffff824738c1 d __setup_str_control_devkmsg
+ffffffff824738d1 d __setup_str_log_buf_len_setup
+ffffffff824738dd d __setup_str_ignore_loglevel_setup
+ffffffff824738ed d __setup_str_console_msg_format_setup
+ffffffff82473901 d __setup_str_console_setup
+ffffffff8247390a d __setup_str_console_suspend_disable
+ffffffff8247391d d __setup_str_keep_bootcon_setup
+ffffffff8247392a d __setup_str_irq_affinity_setup
+ffffffff82473937 d __setup_str_setup_forced_irqthreads
+ffffffff82473942 d __setup_str_noirqdebug_setup
+ffffffff8247394d d __setup_str_irqfixup_setup
+ffffffff82473956 d __setup_str_irqpoll_setup
+ffffffff8247395e d __setup_str_rcu_nocb_setup
+ffffffff82473968 d __setup_str_parse_rcu_nocb_poll
+ffffffff82473976 d __setup_str_setup_io_tlb_npages
+ffffffff8247397e d __setup_str_profile_setup
+ffffffff82473987 d __setup_str_setup_hrtimer_hres
+ffffffff82473990 d __setup_str_ntp_tick_adj_setup
+ffffffff8247399e d __setup_str_boot_override_clocksource
+ffffffff824739ab d __setup_str_boot_override_clock
+ffffffff824739b2 d __setup_str_setup_tick_nohz
+ffffffff824739b8 d __setup_str_skew_tick
+ffffffff824739c2 d __setup_str_nosmp
+ffffffff824739c8 d __setup_str_nrcpus
+ffffffff824739d0 d __setup_str_maxcpus
+ffffffff824739d8 d __setup_str_parse_crashkernel_dummy
+ffffffff824739e4 d __setup_str_cgroup_disable
+ffffffff824739f4 d __setup_str_enable_cgroup_debug
+ffffffff82473a01 d __setup_str_cgroup_no_v1
+ffffffff82473a0f d __setup_str_audit_enable
+ffffffff82473a16 d __setup_str_audit_backlog_limit_set
+ffffffff82473a2b d __setup_str_nowatchdog_setup
+ffffffff82473a36 d __setup_str_nosoftlockup_setup
+ffffffff82473a43 d __setup_str_watchdog_thresh_setup
+ffffffff82473a54 d __setup_str_set_cmdline_ftrace
+ffffffff82473a5c d __setup_str_set_ftrace_dump_on_oops
+ffffffff82473a70 d __setup_str_stop_trace_on_warning
+ffffffff82473a84 d __setup_str_boot_alloc_snapshot
+ffffffff82473a93 d __setup_str_boot_snapshot
+ffffffff82473aa8 d __setup_str_set_trace_boot_options
+ffffffff82473ab7 d __setup_str_set_trace_boot_clock
+ffffffff82473ac4 d __setup_str_set_tracepoint_printk
+ffffffff82473ace d __setup_str_set_tracepoint_printk_stop
+ffffffff82473ae5 d __setup_str_set_buf_size
+ffffffff82473af5 d __setup_str_set_tracing_thresh
+ffffffff82473b05 d __setup_str_setup_trace_event
+ffffffff82473b12 d __setup_str_set_mminit_loglevel
+ffffffff82473b30 d __setup_str_percpu_alloc_setup
+ffffffff82473b40 d pcpu_fc_names
+ffffffff82473b60 d __setup_str_slub_nomerge
+ffffffff82473b6d d __setup_str_slub_merge
+ffffffff82473b78 d __setup_str_setup_slab_nomerge
+ffffffff82473b85 d __setup_str_setup_slab_merge
+ffffffff82473b90 d kmalloc_info
+ffffffff82473f00 d __setup_str_disable_randmaps
+ffffffff82473f0b d __setup_str_cmdline_parse_stack_guard_gap
+ffffffff82473f1c d __setup_str_set_nohugeiomap
+ffffffff82473f28 d __setup_str_set_nohugevmalloc
+ffffffff82473f36 d __setup_str_early_init_on_alloc
+ffffffff82473f44 d __setup_str_early_init_on_free
+ffffffff82473f51 d __setup_str_cmdline_parse_kernelcore
+ffffffff82473f5c d __setup_str_cmdline_parse_movablecore
+ffffffff82473f68 d __setup_str_early_memblock
+ffffffff82473f71 d __setup_str_setup_memhp_default_state
+ffffffff82473f86 d __setup_str_cmdline_parse_movable_node
+ffffffff82473f93 d __setup_str_setup_slub_debug
+ffffffff82473f9e d __setup_str_setup_slub_min_order
+ffffffff82473fae d __setup_str_setup_slub_max_order
+ffffffff82473fbe d __setup_str_setup_slub_min_objects
+ffffffff82473fd0 d __setup_str_setup_transparent_hugepage
+ffffffff82473fe6 d __setup_str_cgroup_memory
+ffffffff82473ff5 d __setup_str_setup_swap_account
+ffffffff82474002 d __setup_str_early_page_owner_param
+ffffffff8247400d d __setup_str_early_ioremap_debug_setup
+ffffffff82474021 d __setup_str_setup_early_page_ext
+ffffffff82474030 d __setup_str_parse_hardened_usercopy
+ffffffff82474043 d __setup_str_set_dhash_entries
+ffffffff82474052 d __setup_str_set_ihash_entries
+ffffffff82474061 d __setup_str_set_mhash_entries
+ffffffff82474070 d __setup_str_set_mphash_entries
+ffffffff82474080 d __setup_str_debugfs_kernel
+ffffffff82474088 d __setup_str_choose_major_lsm
+ffffffff82474092 d __setup_str_choose_lsm_order
+ffffffff82474097 d __setup_str_enable_debug
+ffffffff824740a1 d __setup_str_enforcing_setup
+ffffffff824740ac d __setup_str_checkreqprot_setup
+ffffffff824740ba d __setup_str_integrity_audit_setup
+ffffffff824740cb d __setup_str_elevator_setup
+ffffffff824740d5 d __setup_str_force_gpt_fn
+ffffffff824740d9 d __setup_str_dyndbg_setup
+ffffffff824740e1 d __setup_str_is_stack_depot_disabled
+ffffffff82474100 d gpiolib_acpi_quirks
+ffffffff82474d18 d __setup_str_pcie_port_pm_setup
+ffffffff82474d26 d __setup_str_pci_setup
+ffffffff82474d30 d __setup_str_pcie_port_setup
+ffffffff82474d40 d pcie_portdrv_dmi_table
+ffffffff82474ff0 d __setup_str_pcie_aspm_disable
+ffffffff82474ffb d __setup_str_pcie_pme_setup
+ffffffff82475005 d __setup_str_no_scroll
+ffffffff82475010 d table_sigs
+ffffffff824750c0 d __setup_str_acpi_parse_apic_instance
+ffffffff824750d3 d __setup_str_acpi_force_table_verification_setup
+ffffffff824750f1 d __setup_str_acpi_force_32bit_fadt_addr
+ffffffff82475110 d acpi_rev_dmi_table
+ffffffff82475920 d __setup_str_osi_setup
+ffffffff82475930 d acpi_osi_dmi_table
+ffffffff82477160 d __setup_str_acpi_rev_override_setup
+ffffffff82477172 d __setup_str_acpi_os_name_setup
+ffffffff82477180 d __setup_str_acpi_no_auto_serialize_setup
+ffffffff82477197 d __setup_str_acpi_enforce_resources_setup
+ffffffff824771af d __setup_str_acpi_no_static_ssdt_setup
+ffffffff824771c3 d __setup_str_acpi_disable_return_repair
+ffffffff824771db d __setup_str_acpi_backlight
+ffffffff824771f0 d acpisleep_dmi_table
+ffffffff82479640 d dsdt_dmi_table
+ffffffff824798f0 d processor_idle_dmi_table
+ffffffff82479ba0 d ec_dmi_table
+ffffffff8247a258 d __setup_str_acpi_irq_isa
+ffffffff8247a266 d __setup_str_acpi_irq_pci
+ffffffff8247a274 d __setup_str_acpi_irq_nobalance_set
+ffffffff8247a287 d __setup_str_acpi_irq_balance_set
+ffffffff8247a298 d __setup_str_acpi_gpe_set_masked_gpes
+ffffffff8247a2b0 d ac_dmi_table
+ffffffff8247a6c0 d thermal_dmi_table
+ffffffff8247ad80 d bat_dmi_table
+ffffffff8247b438 d __setup_str_pnp_setup_reserve_irq
+ffffffff8247b449 d __setup_str_pnp_setup_reserve_dma
+ffffffff8247b45a d __setup_str_pnp_setup_reserve_io
+ffffffff8247b46a d __setup_str_pnp_setup_reserve_mem
+ffffffff8247b47b d __setup_str_pnpacpi_setup
+ffffffff8247b484 d __setup_str_sysrq_always_enabled_setup
+ffffffff8247b499 d __setup_str_param_setup_earlycon
+ffffffff8247b4a2 d __setup_str_parse_trust_cpu
+ffffffff8247b4b3 d __setup_str_parse_trust_bootloader
+ffffffff8247b4cb d __setup_str_hpet_mmap_enable
+ffffffff8247b4d6 d __setup_str_iommu_set_def_domain_type
+ffffffff8247b4e8 d __setup_str_iommu_dma_setup
+ffffffff8247b4f5 d __setup_str_iommu_dma_forcedac_setup
+ffffffff8247b504 d __setup_str_fw_devlink_setup
+ffffffff8247b50f d __setup_str_fw_devlink_strict_setup
+ffffffff8247b521 d __setup_str_deferred_probe_timeout_setup
+ffffffff8247b539 d __setup_str_save_async_options
+ffffffff8247b54d d __setup_str_ramdisk_size
+ffffffff8247b55b d __setup_str_max_loop_setup
+ffffffff8247b570 d i8042_dmi_quirk_table
+ffffffff82486ee0 d i8042_dmi_laptop_table
+ffffffff82487598 d __setup_str_int_pln_enable_setup
+ffffffff824875b0 d dm_allowed_targets
+ffffffff824875e0 d __setup_str_intel_pstate_setup
+ffffffff824875f0 d hwp_support_ids
+ffffffff82487650 d intel_pstate_cpu_oob_ids
+ffffffff824876e0 d __setup_str_setup_noefi
+ffffffff824876e6 d __setup_str_parse_efi_cmdline
+ffffffff824876ea d __setup_str_efivar_ssdt_setup
+ffffffff82487700 d common_tables
+ffffffff82487908 d __setup_str_acpi_pm_good_setup
+ffffffff82487915 d __setup_str_parse_pmtmr
+ffffffff8248791c d __setup_str_parse_ras_param
+ffffffff82487920 d __setup_str_fb_tunnels_only_for_init_net_sysctl_setup
+ffffffff8248792c d __setup_str_set_thash_entries
+ffffffff8248793b d __setup_str_set_tcpmhash_entries
+ffffffff8248794d d __setup_str_set_uhash_entries
+ffffffff82487960 d fib4_rules_ops_template
+ffffffff82487a10 d ip6addrlbl_init_table
+ffffffff82487ab0 d fib6_rules_ops_template
+ffffffff82487b60 d pci_mmcfg_probes
+ffffffff82487be0 d pci_mmcfg_nvidia_mcp55.extcfg_base_mask
+ffffffff82487bf0 d pci_mmcfg_nvidia_mcp55.extcfg_sizebus
+ffffffff82487c00 d pci_crs_quirks
+ffffffff82488d80 d pciirq_dmi_table
+ffffffff82489190 d can_skip_pciprobe_dmi_table
+ffffffff824896f0 d pciprobe_dmi_table
+ffffffff8248b890 d compressed_formats
+ffffffff8248b968 d __setup_str_debug_boot_weak_hash_enable
+ffffffff8248b97d d __setup_str_no_hash_pointers_enable
+ffffffff8248b990 d __event_initcall_level
+ffffffff8248b990 D __start_ftrace_events
+ffffffff8248b998 d __event_initcall_start
+ffffffff8248b9a0 d __event_initcall_finish
+ffffffff8248b9a8 d __event_emulate_vsyscall
+ffffffff8248b9b0 d __event_local_timer_entry
+ffffffff8248b9b8 d __event_local_timer_exit
+ffffffff8248b9c0 d __event_spurious_apic_entry
+ffffffff8248b9c8 d __event_spurious_apic_exit
+ffffffff8248b9d0 d __event_error_apic_entry
+ffffffff8248b9d8 d __event_error_apic_exit
+ffffffff8248b9e0 d __event_x86_platform_ipi_entry
+ffffffff8248b9e8 d __event_x86_platform_ipi_exit
+ffffffff8248b9f0 d __event_irq_work_entry
+ffffffff8248b9f8 d __event_irq_work_exit
+ffffffff8248ba00 d __event_reschedule_entry
+ffffffff8248ba08 d __event_reschedule_exit
+ffffffff8248ba10 d __event_call_function_entry
+ffffffff8248ba18 d __event_call_function_exit
+ffffffff8248ba20 d __event_call_function_single_entry
+ffffffff8248ba28 d __event_call_function_single_exit
+ffffffff8248ba30 d __event_thermal_apic_entry
+ffffffff8248ba38 d __event_thermal_apic_exit
+ffffffff8248ba40 d __event_vector_config
+ffffffff8248ba48 d __event_vector_update
+ffffffff8248ba50 d __event_vector_clear
+ffffffff8248ba58 d __event_vector_reserve_managed
+ffffffff8248ba60 d __event_vector_reserve
+ffffffff8248ba68 d __event_vector_alloc
+ffffffff8248ba70 d __event_vector_alloc_managed
+ffffffff8248ba78 d __event_vector_activate
+ffffffff8248ba80 d __event_vector_deactivate
+ffffffff8248ba88 d __event_vector_teardown
+ffffffff8248ba90 d __event_vector_setup
+ffffffff8248ba98 d __event_vector_free_moved
+ffffffff8248baa0 d __event_nmi_handler
+ffffffff8248baa8 d __event_x86_fpu_before_save
+ffffffff8248bab0 d __event_x86_fpu_after_save
+ffffffff8248bab8 d __event_x86_fpu_before_restore
+ffffffff8248bac0 d __event_x86_fpu_after_restore
+ffffffff8248bac8 d __event_x86_fpu_regs_activated
+ffffffff8248bad0 d __event_x86_fpu_regs_deactivated
+ffffffff8248bad8 d __event_x86_fpu_init_state
+ffffffff8248bae0 d __event_x86_fpu_dropped
+ffffffff8248bae8 d __event_x86_fpu_copy_src
+ffffffff8248baf0 d __event_x86_fpu_copy_dst
+ffffffff8248baf8 d __event_x86_fpu_xstate_check_failed
+ffffffff8248bb00 d __event_page_fault_user
+ffffffff8248bb08 d __event_page_fault_kernel
+ffffffff8248bb10 d __event_task_newtask
+ffffffff8248bb18 d __event_task_rename
+ffffffff8248bb20 d __event_cpuhp_enter
+ffffffff8248bb28 d __event_cpuhp_multi_enter
+ffffffff8248bb30 d __event_cpuhp_exit
+ffffffff8248bb38 d __event_irq_handler_entry
+ffffffff8248bb40 d __event_irq_handler_exit
+ffffffff8248bb48 d __event_softirq_entry
+ffffffff8248bb50 d __event_softirq_exit
+ffffffff8248bb58 d __event_softirq_raise
+ffffffff8248bb60 d __event_tasklet_entry
+ffffffff8248bb68 d __event_tasklet_exit
+ffffffff8248bb70 d __event_signal_generate
+ffffffff8248bb78 d __event_signal_deliver
+ffffffff8248bb80 d __event_workqueue_queue_work
+ffffffff8248bb88 d __event_workqueue_activate_work
+ffffffff8248bb90 d __event_workqueue_execute_start
+ffffffff8248bb98 d __event_workqueue_execute_end
+ffffffff8248bba0 d __event_sched_kthread_stop
+ffffffff8248bba8 d __event_sched_kthread_stop_ret
+ffffffff8248bbb0 d __event_sched_kthread_work_queue_work
+ffffffff8248bbb8 d __event_sched_kthread_work_execute_start
+ffffffff8248bbc0 d __event_sched_kthread_work_execute_end
+ffffffff8248bbc8 d __event_sched_waking
+ffffffff8248bbd0 d __event_sched_wakeup
+ffffffff8248bbd8 d __event_sched_wakeup_new
+ffffffff8248bbe0 d __event_sched_switch
+ffffffff8248bbe8 d __event_sched_migrate_task
+ffffffff8248bbf0 d __event_sched_process_free
+ffffffff8248bbf8 d __event_sched_process_exit
+ffffffff8248bc00 d __event_sched_wait_task
+ffffffff8248bc08 d __event_sched_process_wait
+ffffffff8248bc10 d __event_sched_process_fork
+ffffffff8248bc18 d __event_sched_process_exec
+ffffffff8248bc20 d __event_sched_stat_wait
+ffffffff8248bc28 d __event_sched_stat_sleep
+ffffffff8248bc30 d __event_sched_stat_iowait
+ffffffff8248bc38 d __event_sched_stat_blocked
+ffffffff8248bc40 d __event_sched_blocked_reason
+ffffffff8248bc48 d __event_sched_stat_runtime
+ffffffff8248bc50 d __event_sched_pi_setprio
+ffffffff8248bc58 d __event_sched_process_hang
+ffffffff8248bc60 d __event_sched_move_numa
+ffffffff8248bc68 d __event_sched_stick_numa
+ffffffff8248bc70 d __event_sched_swap_numa
+ffffffff8248bc78 d __event_sched_wake_idle_without_ipi
+ffffffff8248bc80 d __event_contention_begin
+ffffffff8248bc88 d __event_contention_end
+ffffffff8248bc90 d __event_console
+ffffffff8248bc98 d __event_irq_matrix_online
+ffffffff8248bca0 d __event_irq_matrix_offline
+ffffffff8248bca8 d __event_irq_matrix_reserve
+ffffffff8248bcb0 d __event_irq_matrix_remove_reserved
+ffffffff8248bcb8 d __event_irq_matrix_assign_system
+ffffffff8248bcc0 d __event_irq_matrix_alloc_reserved
+ffffffff8248bcc8 d __event_irq_matrix_reserve_managed
+ffffffff8248bcd0 d __event_irq_matrix_remove_managed
+ffffffff8248bcd8 d __event_irq_matrix_alloc_managed
+ffffffff8248bce0 d __event_irq_matrix_assign
+ffffffff8248bce8 d __event_irq_matrix_alloc
+ffffffff8248bcf0 d __event_irq_matrix_free
+ffffffff8248bcf8 d __event_rcu_utilization
+ffffffff8248bd00 d __event_rcu_grace_period
+ffffffff8248bd08 d __event_rcu_future_grace_period
+ffffffff8248bd10 d __event_rcu_grace_period_init
+ffffffff8248bd18 d __event_rcu_exp_grace_period
+ffffffff8248bd20 d __event_rcu_exp_funnel_lock
+ffffffff8248bd28 d __event_rcu_nocb_wake
+ffffffff8248bd30 d __event_rcu_preempt_task
+ffffffff8248bd38 d __event_rcu_unlock_preempted_task
+ffffffff8248bd40 d __event_rcu_quiescent_state_report
+ffffffff8248bd48 d __event_rcu_fqs
+ffffffff8248bd50 d __event_rcu_stall_warning
+ffffffff8248bd58 d __event_rcu_dyntick
+ffffffff8248bd60 d __event_rcu_callback
+ffffffff8248bd68 d __event_rcu_segcb_stats
+ffffffff8248bd70 d __event_rcu_kvfree_callback
+ffffffff8248bd78 d __event_rcu_batch_start
+ffffffff8248bd80 d __event_rcu_invoke_callback
+ffffffff8248bd88 d __event_rcu_invoke_kvfree_callback
+ffffffff8248bd90 d __event_rcu_invoke_kfree_bulk_callback
+ffffffff8248bd98 d __event_rcu_batch_end
+ffffffff8248bda0 d __event_rcu_torture_read
+ffffffff8248bda8 d __event_rcu_barrier
+ffffffff8248bdb0 d __event_swiotlb_bounced
+ffffffff8248bdb8 d __event_sys_enter
+ffffffff8248bdc0 d __event_sys_exit
+ffffffff8248bdc8 d __event_module_load
+ffffffff8248bdd0 d __event_module_free
+ffffffff8248bdd8 d __event_module_request
+ffffffff8248bde0 d __event_timer_init
+ffffffff8248bde8 d __event_timer_start
+ffffffff8248bdf0 d __event_timer_expire_entry
+ffffffff8248bdf8 d __event_timer_expire_exit
+ffffffff8248be00 d __event_timer_cancel
+ffffffff8248be08 d __event_hrtimer_init
+ffffffff8248be10 d __event_hrtimer_start
+ffffffff8248be18 d __event_hrtimer_expire_entry
+ffffffff8248be20 d __event_hrtimer_expire_exit
+ffffffff8248be28 d __event_hrtimer_cancel
+ffffffff8248be30 d __event_itimer_state
+ffffffff8248be38 d __event_itimer_expire
+ffffffff8248be40 d __event_tick_stop
+ffffffff8248be48 d __event_alarmtimer_suspend
+ffffffff8248be50 d __event_alarmtimer_fired
+ffffffff8248be58 d __event_alarmtimer_start
+ffffffff8248be60 d __event_alarmtimer_cancel
+ffffffff8248be68 d __event_cgroup_setup_root
+ffffffff8248be70 d __event_cgroup_destroy_root
+ffffffff8248be78 d __event_cgroup_remount
+ffffffff8248be80 d __event_cgroup_mkdir
+ffffffff8248be88 d __event_cgroup_rmdir
+ffffffff8248be90 d __event_cgroup_release
+ffffffff8248be98 d __event_cgroup_rename
+ffffffff8248bea0 d __event_cgroup_freeze
+ffffffff8248bea8 d __event_cgroup_unfreeze
+ffffffff8248beb0 d __event_cgroup_attach_task
+ffffffff8248beb8 d __event_cgroup_transfer_tasks
+ffffffff8248bec0 d __event_cgroup_notify_populated
+ffffffff8248bec8 d __event_cgroup_notify_frozen
+ffffffff8248bed0 d __event_function
+ffffffff8248bed8 d __event_funcgraph_entry
+ffffffff8248bee0 d __event_funcgraph_exit
+ffffffff8248bee8 d __event_context_switch
+ffffffff8248bef0 d __event_wakeup
+ffffffff8248bef8 d __event_kernel_stack
+ffffffff8248bf00 d __event_user_stack
+ffffffff8248bf08 d __event_bprint
+ffffffff8248bf10 d __event_print
+ffffffff8248bf18 d __event_raw_data
+ffffffff8248bf20 d __event_bputs
+ffffffff8248bf28 d __event_mmiotrace_rw
+ffffffff8248bf30 d __event_mmiotrace_map
+ffffffff8248bf38 d __event_branch
+ffffffff8248bf40 d __event_hwlat
+ffffffff8248bf48 d __event_func_repeats
+ffffffff8248bf50 d __event_osnoise
+ffffffff8248bf58 d __event_timerlat
+ffffffff8248bf60 d __event_error_report_end
+ffffffff8248bf68 d __event_cpu_idle
+ffffffff8248bf70 d __event_cpu_idle_miss
+ffffffff8248bf78 d __event_powernv_throttle
+ffffffff8248bf80 d __event_pstate_sample
+ffffffff8248bf88 d __event_cpu_frequency
+ffffffff8248bf90 d __event_cpu_frequency_limits
+ffffffff8248bf98 d __event_device_pm_callback_start
+ffffffff8248bfa0 d __event_device_pm_callback_end
+ffffffff8248bfa8 d __event_suspend_resume
+ffffffff8248bfb0 d __event_wakeup_source_activate
+ffffffff8248bfb8 d __event_wakeup_source_deactivate
+ffffffff8248bfc0 d __event_clock_enable
+ffffffff8248bfc8 d __event_clock_disable
+ffffffff8248bfd0 d __event_clock_set_rate
+ffffffff8248bfd8 d __event_power_domain_target
+ffffffff8248bfe0 d __event_pm_qos_add_request
+ffffffff8248bfe8 d __event_pm_qos_update_request
+ffffffff8248bff0 d __event_pm_qos_remove_request
+ffffffff8248bff8 d __event_pm_qos_update_target
+ffffffff8248c000 d __event_pm_qos_update_flags
+ffffffff8248c008 d __event_dev_pm_qos_add_request
+ffffffff8248c010 d __event_dev_pm_qos_update_request
+ffffffff8248c018 d __event_dev_pm_qos_remove_request
+ffffffff8248c020 d __event_guest_halt_poll_ns
+ffffffff8248c028 d __event_rpm_suspend
+ffffffff8248c030 d __event_rpm_resume
+ffffffff8248c038 d __event_rpm_idle
+ffffffff8248c040 d __event_rpm_usage
+ffffffff8248c048 d __event_rpm_return_int
+ffffffff8248c050 d __event_xdp_exception
+ffffffff8248c058 d __event_xdp_bulk_tx
+ffffffff8248c060 d __event_xdp_redirect
+ffffffff8248c068 d __event_xdp_redirect_err
+ffffffff8248c070 d __event_xdp_redirect_map
+ffffffff8248c078 d __event_xdp_redirect_map_err
+ffffffff8248c080 d __event_xdp_cpumap_kthread
+ffffffff8248c088 d __event_xdp_cpumap_enqueue
+ffffffff8248c090 d __event_xdp_devmap_xmit
+ffffffff8248c098 d __event_mem_disconnect
+ffffffff8248c0a0 d __event_mem_connect
+ffffffff8248c0a8 d __event_mem_return_failed
+ffffffff8248c0b0 d __event_rseq_update
+ffffffff8248c0b8 d __event_rseq_ip_fixup
+ffffffff8248c0c0 d __event_mm_filemap_delete_from_page_cache
+ffffffff8248c0c8 d __event_mm_filemap_add_to_page_cache
+ffffffff8248c0d0 d __event_filemap_set_wb_err
+ffffffff8248c0d8 d __event_file_check_and_advance_wb_err
+ffffffff8248c0e0 d __event_oom_score_adj_update
+ffffffff8248c0e8 d __event_reclaim_retry_zone
+ffffffff8248c0f0 d __event_mark_victim
+ffffffff8248c0f8 d __event_wake_reaper
+ffffffff8248c100 d __event_start_task_reaping
+ffffffff8248c108 d __event_finish_task_reaping
+ffffffff8248c110 d __event_skip_task_reaping
+ffffffff8248c118 d __event_compact_retry
+ffffffff8248c120 d __event_mm_lru_insertion
+ffffffff8248c128 d __event_mm_lru_activate
+ffffffff8248c130 d __event_mm_vmscan_kswapd_sleep
+ffffffff8248c138 d __event_mm_vmscan_kswapd_wake
+ffffffff8248c140 d __event_mm_vmscan_wakeup_kswapd
+ffffffff8248c148 d __event_mm_vmscan_direct_reclaim_begin
+ffffffff8248c150 d __event_mm_vmscan_memcg_reclaim_begin
+ffffffff8248c158 d __event_mm_vmscan_memcg_softlimit_reclaim_begin
+ffffffff8248c160 d __event_mm_vmscan_direct_reclaim_end
+ffffffff8248c168 d __event_mm_vmscan_memcg_reclaim_end
+ffffffff8248c170 d __event_mm_vmscan_memcg_softlimit_reclaim_end
+ffffffff8248c178 d __event_mm_shrink_slab_start
+ffffffff8248c180 d __event_mm_shrink_slab_end
+ffffffff8248c188 d __event_mm_vmscan_lru_isolate
+ffffffff8248c190 d __event_mm_vmscan_write_folio
+ffffffff8248c198 d __event_mm_vmscan_lru_shrink_inactive
+ffffffff8248c1a0 d __event_mm_vmscan_lru_shrink_active
+ffffffff8248c1a8 d __event_mm_vmscan_node_reclaim_begin
+ffffffff8248c1b0 d __event_mm_vmscan_node_reclaim_end
+ffffffff8248c1b8 d __event_mm_vmscan_throttled
+ffffffff8248c1c0 d __event_percpu_alloc_percpu
+ffffffff8248c1c8 d __event_percpu_free_percpu
+ffffffff8248c1d0 d __event_percpu_alloc_percpu_fail
+ffffffff8248c1d8 d __event_percpu_create_chunk
+ffffffff8248c1e0 d __event_percpu_destroy_chunk
+ffffffff8248c1e8 d __event_kmem_cache_alloc
+ffffffff8248c1f0 d __event_kmalloc
+ffffffff8248c1f8 d __event_kfree
+ffffffff8248c200 d __event_kmem_cache_free
+ffffffff8248c208 d __event_mm_page_free
+ffffffff8248c210 d __event_mm_page_free_batched
+ffffffff8248c218 d __event_mm_page_alloc
+ffffffff8248c220 d __event_mm_page_alloc_zone_locked
+ffffffff8248c228 d __event_mm_page_pcpu_drain
+ffffffff8248c230 d __event_mm_page_alloc_extfrag
+ffffffff8248c238 d __event_rss_stat
+ffffffff8248c240 d __event_mm_compaction_isolate_migratepages
+ffffffff8248c248 d __event_mm_compaction_isolate_freepages
+ffffffff8248c250 d __event_mm_compaction_migratepages
+ffffffff8248c258 d __event_mm_compaction_begin
+ffffffff8248c260 d __event_mm_compaction_end
+ffffffff8248c268 d __event_mm_compaction_try_to_compact_pages
+ffffffff8248c270 d __event_mm_compaction_finished
+ffffffff8248c278 d __event_mm_compaction_suitable
+ffffffff8248c280 d __event_mm_compaction_deferred
+ffffffff8248c288 d __event_mm_compaction_defer_compaction
+ffffffff8248c290 d __event_mm_compaction_defer_reset
+ffffffff8248c298 d __event_mm_compaction_kcompactd_sleep
+ffffffff8248c2a0 d __event_mm_compaction_wakeup_kcompactd
+ffffffff8248c2a8 d __event_mm_compaction_kcompactd_wake
+ffffffff8248c2b0 d __event_mmap_lock_start_locking
+ffffffff8248c2b8 d __event_mmap_lock_released
+ffffffff8248c2c0 d __event_mmap_lock_acquire_returned
+ffffffff8248c2c8 d __event_vm_unmapped_area
+ffffffff8248c2d0 d __event_vma_mas_szero
+ffffffff8248c2d8 d __event_vma_store
+ffffffff8248c2e0 d __event_exit_mmap
+ffffffff8248c2e8 d __event_tlb_flush
+ffffffff8248c2f0 d __event_mm_migrate_pages
+ffffffff8248c2f8 d __event_mm_migrate_pages_start
+ffffffff8248c300 d __event_set_migration_pte
+ffffffff8248c308 d __event_remove_migration_pte
+ffffffff8248c310 d __event_hugepage_set_pmd
+ffffffff8248c318 d __event_hugepage_update
+ffffffff8248c320 d __event_set_migration_pmd
+ffffffff8248c328 d __event_remove_migration_pmd
+ffffffff8248c330 d __event_mm_khugepaged_scan_pmd
+ffffffff8248c338 d __event_mm_collapse_huge_page
+ffffffff8248c340 d __event_mm_collapse_huge_page_isolate
+ffffffff8248c348 d __event_mm_collapse_huge_page_swapin
+ffffffff8248c350 d __event_mm_khugepaged_scan_file
+ffffffff8248c358 d __event_test_pages_isolated
+ffffffff8248c360 d __event_damon_aggregated
+ffffffff8248c368 d __event_writeback_dirty_folio
+ffffffff8248c370 d __event_folio_wait_writeback
+ffffffff8248c378 d __event_writeback_mark_inode_dirty
+ffffffff8248c380 d __event_writeback_dirty_inode_start
+ffffffff8248c388 d __event_writeback_dirty_inode
+ffffffff8248c390 d __event_inode_foreign_history
+ffffffff8248c398 d __event_inode_switch_wbs
+ffffffff8248c3a0 d __event_track_foreign_dirty
+ffffffff8248c3a8 d __event_flush_foreign
+ffffffff8248c3b0 d __event_writeback_write_inode_start
+ffffffff8248c3b8 d __event_writeback_write_inode
+ffffffff8248c3c0 d __event_writeback_queue
+ffffffff8248c3c8 d __event_writeback_exec
+ffffffff8248c3d0 d __event_writeback_start
+ffffffff8248c3d8 d __event_writeback_written
+ffffffff8248c3e0 d __event_writeback_wait
+ffffffff8248c3e8 d __event_writeback_pages_written
+ffffffff8248c3f0 d __event_writeback_wake_background
+ffffffff8248c3f8 d __event_writeback_bdi_register
+ffffffff8248c400 d __event_wbc_writepage
+ffffffff8248c408 d __event_writeback_queue_io
+ffffffff8248c410 d __event_global_dirty_state
+ffffffff8248c418 d __event_bdi_dirty_ratelimit
+ffffffff8248c420 d __event_balance_dirty_pages
+ffffffff8248c428 d __event_writeback_sb_inodes_requeue
+ffffffff8248c430 d __event_writeback_single_inode_start
+ffffffff8248c438 d __event_writeback_single_inode
+ffffffff8248c440 d __event_writeback_lazytime
+ffffffff8248c448 d __event_writeback_lazytime_iput
+ffffffff8248c450 d __event_writeback_dirty_inode_enqueue
+ffffffff8248c458 d __event_sb_mark_inode_writeback
+ffffffff8248c460 d __event_sb_clear_inode_writeback
+ffffffff8248c468 d __event_locks_get_lock_context
+ffffffff8248c470 d __event_posix_lock_inode
+ffffffff8248c478 d __event_fcntl_setlk
+ffffffff8248c480 d __event_locks_remove_posix
+ffffffff8248c488 d __event_flock_lock_inode
+ffffffff8248c490 d __event_break_lease_noblock
+ffffffff8248c498 d __event_break_lease_block
+ffffffff8248c4a0 d __event_break_lease_unblock
+ffffffff8248c4a8 d __event_generic_delete_lease
+ffffffff8248c4b0 d __event_time_out_leases
+ffffffff8248c4b8 d __event_generic_add_lease
+ffffffff8248c4c0 d __event_leases_conflict
+ffffffff8248c4c8 d __event_iomap_readpage
+ffffffff8248c4d0 d __event_iomap_readahead
+ffffffff8248c4d8 d __event_iomap_writepage
+ffffffff8248c4e0 d __event_iomap_release_folio
+ffffffff8248c4e8 d __event_iomap_invalidate_folio
+ffffffff8248c4f0 d __event_iomap_dio_invalidate_fail
+ffffffff8248c4f8 d __event_iomap_iter_dstmap
+ffffffff8248c500 d __event_iomap_iter_srcmap
+ffffffff8248c508 d __event_iomap_writepage_map
+ffffffff8248c510 d __event_iomap_iter
+ffffffff8248c518 d __event_ext4_other_inode_update_time
+ffffffff8248c520 d __event_ext4_free_inode
+ffffffff8248c528 d __event_ext4_request_inode
+ffffffff8248c530 d __event_ext4_allocate_inode
+ffffffff8248c538 d __event_ext4_evict_inode
+ffffffff8248c540 d __event_ext4_drop_inode
+ffffffff8248c548 d __event_ext4_nfs_commit_metadata
+ffffffff8248c550 d __event_ext4_mark_inode_dirty
+ffffffff8248c558 d __event_ext4_begin_ordered_truncate
+ffffffff8248c560 d __event_ext4_write_begin
+ffffffff8248c568 d __event_ext4_da_write_begin
+ffffffff8248c570 d __event_ext4_write_end
+ffffffff8248c578 d __event_ext4_journalled_write_end
+ffffffff8248c580 d __event_ext4_da_write_end
+ffffffff8248c588 d __event_ext4_writepages
+ffffffff8248c590 d __event_ext4_da_write_pages
+ffffffff8248c598 d __event_ext4_da_write_pages_extent
+ffffffff8248c5a0 d __event_ext4_writepages_result
+ffffffff8248c5a8 d __event_ext4_writepage
+ffffffff8248c5b0 d __event_ext4_readpage
+ffffffff8248c5b8 d __event_ext4_releasepage
+ffffffff8248c5c0 d __event_ext4_invalidate_folio
+ffffffff8248c5c8 d __event_ext4_journalled_invalidate_folio
+ffffffff8248c5d0 d __event_ext4_discard_blocks
+ffffffff8248c5d8 d __event_ext4_mb_new_inode_pa
+ffffffff8248c5e0 d __event_ext4_mb_new_group_pa
+ffffffff8248c5e8 d __event_ext4_mb_release_inode_pa
+ffffffff8248c5f0 d __event_ext4_mb_release_group_pa
+ffffffff8248c5f8 d __event_ext4_discard_preallocations
+ffffffff8248c600 d __event_ext4_mb_discard_preallocations
+ffffffff8248c608 d __event_ext4_request_blocks
+ffffffff8248c610 d __event_ext4_allocate_blocks
+ffffffff8248c618 d __event_ext4_free_blocks
+ffffffff8248c620 d __event_ext4_sync_file_enter
+ffffffff8248c628 d __event_ext4_sync_file_exit
+ffffffff8248c630 d __event_ext4_sync_fs
+ffffffff8248c638 d __event_ext4_alloc_da_blocks
+ffffffff8248c640 d __event_ext4_mballoc_alloc
+ffffffff8248c648 d __event_ext4_mballoc_prealloc
+ffffffff8248c650 d __event_ext4_mballoc_discard
+ffffffff8248c658 d __event_ext4_mballoc_free
+ffffffff8248c660 d __event_ext4_forget
+ffffffff8248c668 d __event_ext4_da_update_reserve_space
+ffffffff8248c670 d __event_ext4_da_reserve_space
+ffffffff8248c678 d __event_ext4_da_release_space
+ffffffff8248c680 d __event_ext4_mb_bitmap_load
+ffffffff8248c688 d __event_ext4_mb_buddy_bitmap_load
+ffffffff8248c690 d __event_ext4_load_inode_bitmap
+ffffffff8248c698 d __event_ext4_read_block_bitmap_load
+ffffffff8248c6a0 d __event_ext4_fallocate_enter
+ffffffff8248c6a8 d __event_ext4_punch_hole
+ffffffff8248c6b0 d __event_ext4_zero_range
+ffffffff8248c6b8 d __event_ext4_fallocate_exit
+ffffffff8248c6c0 d __event_ext4_unlink_enter
+ffffffff8248c6c8 d __event_ext4_unlink_exit
+ffffffff8248c6d0 d __event_ext4_truncate_enter
+ffffffff8248c6d8 d __event_ext4_truncate_exit
+ffffffff8248c6e0 d __event_ext4_ext_convert_to_initialized_enter
+ffffffff8248c6e8 d __event_ext4_ext_convert_to_initialized_fastpath
+ffffffff8248c6f0 d __event_ext4_ext_map_blocks_enter
+ffffffff8248c6f8 d __event_ext4_ind_map_blocks_enter
+ffffffff8248c700 d __event_ext4_ext_map_blocks_exit
+ffffffff8248c708 d __event_ext4_ind_map_blocks_exit
+ffffffff8248c710 d __event_ext4_ext_load_extent
+ffffffff8248c718 d __event_ext4_load_inode
+ffffffff8248c720 d __event_ext4_journal_start
+ffffffff8248c728 d __event_ext4_journal_start_reserved
+ffffffff8248c730 d __event_ext4_trim_extent
+ffffffff8248c738 d __event_ext4_trim_all_free
+ffffffff8248c740 d __event_ext4_ext_handle_unwritten_extents
+ffffffff8248c748 d __event_ext4_get_implied_cluster_alloc_exit
+ffffffff8248c750 d __event_ext4_ext_show_extent
+ffffffff8248c758 d __event_ext4_remove_blocks
+ffffffff8248c760 d __event_ext4_ext_rm_leaf
+ffffffff8248c768 d __event_ext4_ext_rm_idx
+ffffffff8248c770 d __event_ext4_ext_remove_space
+ffffffff8248c778 d __event_ext4_ext_remove_space_done
+ffffffff8248c780 d __event_ext4_es_insert_extent
+ffffffff8248c788 d __event_ext4_es_cache_extent
+ffffffff8248c790 d __event_ext4_es_remove_extent
+ffffffff8248c798 d __event_ext4_es_find_extent_range_enter
+ffffffff8248c7a0 d __event_ext4_es_find_extent_range_exit
+ffffffff8248c7a8 d __event_ext4_es_lookup_extent_enter
+ffffffff8248c7b0 d __event_ext4_es_lookup_extent_exit
+ffffffff8248c7b8 d __event_ext4_es_shrink_count
+ffffffff8248c7c0 d __event_ext4_es_shrink_scan_enter
+ffffffff8248c7c8 d __event_ext4_es_shrink_scan_exit
+ffffffff8248c7d0 d __event_ext4_collapse_range
+ffffffff8248c7d8 d __event_ext4_insert_range
+ffffffff8248c7e0 d __event_ext4_es_shrink
+ffffffff8248c7e8 d __event_ext4_es_insert_delayed_block
+ffffffff8248c7f0 d __event_ext4_fsmap_low_key
+ffffffff8248c7f8 d __event_ext4_fsmap_high_key
+ffffffff8248c800 d __event_ext4_fsmap_mapping
+ffffffff8248c808 d __event_ext4_getfsmap_low_key
+ffffffff8248c810 d __event_ext4_getfsmap_high_key
+ffffffff8248c818 d __event_ext4_getfsmap_mapping
+ffffffff8248c820 d __event_ext4_shutdown
+ffffffff8248c828 d __event_ext4_error
+ffffffff8248c830 d __event_ext4_prefetch_bitmaps
+ffffffff8248c838 d __event_ext4_lazy_itable_init
+ffffffff8248c840 d __event_ext4_fc_replay_scan
+ffffffff8248c848 d __event_ext4_fc_replay
+ffffffff8248c850 d __event_ext4_fc_commit_start
+ffffffff8248c858 d __event_ext4_fc_commit_stop
+ffffffff8248c860 d __event_ext4_fc_stats
+ffffffff8248c868 d __event_ext4_fc_track_create
+ffffffff8248c870 d __event_ext4_fc_track_link
+ffffffff8248c878 d __event_ext4_fc_track_unlink
+ffffffff8248c880 d __event_ext4_fc_track_inode
+ffffffff8248c888 d __event_ext4_fc_track_range
+ffffffff8248c890 d __event_ext4_fc_cleanup
+ffffffff8248c898 d __event_ext4_update_sb
+ffffffff8248c8a0 d __event_jbd2_checkpoint
+ffffffff8248c8a8 d __event_jbd2_start_commit
+ffffffff8248c8b0 d __event_jbd2_commit_locking
+ffffffff8248c8b8 d __event_jbd2_commit_flushing
+ffffffff8248c8c0 d __event_jbd2_commit_logging
+ffffffff8248c8c8 d __event_jbd2_drop_transaction
+ffffffff8248c8d0 d __event_jbd2_end_commit
+ffffffff8248c8d8 d __event_jbd2_submit_inode_data
+ffffffff8248c8e0 d __event_jbd2_handle_start
+ffffffff8248c8e8 d __event_jbd2_handle_restart
+ffffffff8248c8f0 d __event_jbd2_handle_extend
+ffffffff8248c8f8 d __event_jbd2_handle_stats
+ffffffff8248c900 d __event_jbd2_run_stats
+ffffffff8248c908 d __event_jbd2_checkpoint_stats
+ffffffff8248c910 d __event_jbd2_update_log_tail
+ffffffff8248c918 d __event_jbd2_write_superblock
+ffffffff8248c920 d __event_jbd2_lock_buffer_stall
+ffffffff8248c928 d __event_jbd2_shrink_count
+ffffffff8248c930 d __event_jbd2_shrink_scan_enter
+ffffffff8248c938 d __event_jbd2_shrink_scan_exit
+ffffffff8248c940 d __event_jbd2_shrink_checkpoint_list
+ffffffff8248c948 d __event_erofs_lookup
+ffffffff8248c950 d __event_erofs_fill_inode
+ffffffff8248c958 d __event_erofs_readpage
+ffffffff8248c960 d __event_erofs_readpages
+ffffffff8248c968 d __event_erofs_map_blocks_enter
+ffffffff8248c970 d __event_z_erofs_map_blocks_iter_enter
+ffffffff8248c978 d __event_erofs_map_blocks_exit
+ffffffff8248c980 d __event_z_erofs_map_blocks_iter_exit
+ffffffff8248c988 d __event_erofs_destroy_inode
+ffffffff8248c990 d __event_selinux_audited
+ffffffff8248c998 d __event_block_touch_buffer
+ffffffff8248c9a0 d __event_block_dirty_buffer
+ffffffff8248c9a8 d __event_block_rq_requeue
+ffffffff8248c9b0 d __event_block_rq_complete
+ffffffff8248c9b8 d __event_block_rq_error
+ffffffff8248c9c0 d __event_block_rq_insert
+ffffffff8248c9c8 d __event_block_rq_issue
+ffffffff8248c9d0 d __event_block_rq_merge
+ffffffff8248c9d8 d __event_block_bio_complete
+ffffffff8248c9e0 d __event_block_bio_bounce
+ffffffff8248c9e8 d __event_block_bio_backmerge
+ffffffff8248c9f0 d __event_block_bio_frontmerge
+ffffffff8248c9f8 d __event_block_bio_queue
+ffffffff8248ca00 d __event_block_getrq
+ffffffff8248ca08 d __event_block_plug
+ffffffff8248ca10 d __event_block_unplug
+ffffffff8248ca18 d __event_block_split
+ffffffff8248ca20 d __event_block_bio_remap
+ffffffff8248ca28 d __event_block_rq_remap
+ffffffff8248ca30 d __event_iocost_iocg_activate
+ffffffff8248ca38 d __event_iocost_iocg_idle
+ffffffff8248ca40 d __event_iocost_inuse_shortage
+ffffffff8248ca48 d __event_iocost_inuse_transfer
+ffffffff8248ca50 d __event_iocost_inuse_adjust
+ffffffff8248ca58 d __event_iocost_ioc_vrate_adj
+ffffffff8248ca60 d __event_iocost_iocg_forgive_debt
+ffffffff8248ca68 d __event_kyber_latency
+ffffffff8248ca70 d __event_kyber_adjust
+ffffffff8248ca78 d __event_kyber_throttled
+ffffffff8248ca80 d __event_io_uring_create
+ffffffff8248ca88 d __event_io_uring_register
+ffffffff8248ca90 d __event_io_uring_file_get
+ffffffff8248ca98 d __event_io_uring_queue_async_work
+ffffffff8248caa0 d __event_io_uring_defer
+ffffffff8248caa8 d __event_io_uring_link
+ffffffff8248cab0 d __event_io_uring_cqring_wait
+ffffffff8248cab8 d __event_io_uring_fail_link
+ffffffff8248cac0 d __event_io_uring_complete
+ffffffff8248cac8 d __event_io_uring_submit_sqe
+ffffffff8248cad0 d __event_io_uring_poll_arm
+ffffffff8248cad8 d __event_io_uring_task_add
+ffffffff8248cae0 d __event_io_uring_req_failed
+ffffffff8248cae8 d __event_io_uring_cqe_overflow
+ffffffff8248caf0 d __event_io_uring_task_work_run
+ffffffff8248caf8 d __event_io_uring_short_write
+ffffffff8248cb00 d __event_io_uring_local_work_run
+ffffffff8248cb08 d __event_read_msr
+ffffffff8248cb10 d __event_write_msr
+ffffffff8248cb18 d __event_rdpmc
+ffffffff8248cb20 d __event_gpio_direction
+ffffffff8248cb28 d __event_gpio_value
+ffffffff8248cb30 d __event_add_device_to_group
+ffffffff8248cb38 d __event_remove_device_from_group
+ffffffff8248cb40 d __event_attach_device_to_domain
+ffffffff8248cb48 d __event_detach_device_from_domain
+ffffffff8248cb50 d __event_map
+ffffffff8248cb58 d __event_unmap
+ffffffff8248cb60 d __event_io_page_fault
+ffffffff8248cb68 d __event_regmap_reg_write
+ffffffff8248cb70 d __event_regmap_reg_read
+ffffffff8248cb78 d __event_regmap_reg_read_cache
+ffffffff8248cb80 d __event_regmap_bulk_write
+ffffffff8248cb88 d __event_regmap_bulk_read
+ffffffff8248cb90 d __event_regmap_hw_read_start
+ffffffff8248cb98 d __event_regmap_hw_read_done
+ffffffff8248cba0 d __event_regmap_hw_write_start
+ffffffff8248cba8 d __event_regmap_hw_write_done
+ffffffff8248cbb0 d __event_regcache_sync
+ffffffff8248cbb8 d __event_regmap_cache_only
+ffffffff8248cbc0 d __event_regmap_cache_bypass
+ffffffff8248cbc8 d __event_regmap_async_write_start
+ffffffff8248cbd0 d __event_regmap_async_io_complete
+ffffffff8248cbd8 d __event_regmap_async_complete_start
+ffffffff8248cbe0 d __event_regmap_async_complete_done
+ffffffff8248cbe8 d __event_regcache_drop_region
+ffffffff8248cbf0 d __event_devres_log
+ffffffff8248cbf8 d __event_dma_fence_emit
+ffffffff8248cc00 d __event_dma_fence_init
+ffffffff8248cc08 d __event_dma_fence_destroy
+ffffffff8248cc10 d __event_dma_fence_enable_signal
+ffffffff8248cc18 d __event_dma_fence_signaled
+ffffffff8248cc20 d __event_dma_fence_wait_start
+ffffffff8248cc28 d __event_dma_fence_wait_end
+ffffffff8248cc30 d __event_rtc_set_time
+ffffffff8248cc38 d __event_rtc_read_time
+ffffffff8248cc40 d __event_rtc_set_alarm
+ffffffff8248cc48 d __event_rtc_read_alarm
+ffffffff8248cc50 d __event_rtc_irq_set_freq
+ffffffff8248cc58 d __event_rtc_irq_set_state
+ffffffff8248cc60 d __event_rtc_alarm_irq_enable
+ffffffff8248cc68 d __event_rtc_set_offset
+ffffffff8248cc70 d __event_rtc_read_offset
+ffffffff8248cc78 d __event_rtc_timer_enqueue
+ffffffff8248cc80 d __event_rtc_timer_dequeue
+ffffffff8248cc88 d __event_rtc_timer_fired
+ffffffff8248cc90 d __event_thermal_temperature
+ffffffff8248cc98 d __event_cdev_update
+ffffffff8248cca0 d __event_thermal_zone_trip
+ffffffff8248cca8 d __event_thermal_power_cpu_get_power_simple
+ffffffff8248ccb0 d __event_thermal_power_cpu_limit
+ffffffff8248ccb8 d __event_watchdog_start
+ffffffff8248ccc0 d __event_watchdog_ping
+ffffffff8248ccc8 d __event_watchdog_stop
+ffffffff8248ccd0 d __event_watchdog_set_timeout
+ffffffff8248ccd8 d __event_mc_event
+ffffffff8248cce0 d __event_arm_event
+ffffffff8248cce8 d __event_non_standard_event
+ffffffff8248ccf0 d __event_aer_event
+ffffffff8248ccf8 d __event_kfree_skb
+ffffffff8248cd00 d __event_consume_skb
+ffffffff8248cd08 d __event_skb_copy_datagram_iovec
+ffffffff8248cd10 d __event_net_dev_start_xmit
+ffffffff8248cd18 d __event_net_dev_xmit
+ffffffff8248cd20 d __event_net_dev_xmit_timeout
+ffffffff8248cd28 d __event_net_dev_queue
+ffffffff8248cd30 d __event_netif_receive_skb
+ffffffff8248cd38 d __event_netif_rx
+ffffffff8248cd40 d __event_napi_gro_frags_entry
+ffffffff8248cd48 d __event_napi_gro_receive_entry
+ffffffff8248cd50 d __event_netif_receive_skb_entry
+ffffffff8248cd58 d __event_netif_receive_skb_list_entry
+ffffffff8248cd60 d __event_netif_rx_entry
+ffffffff8248cd68 d __event_napi_gro_frags_exit
+ffffffff8248cd70 d __event_napi_gro_receive_exit
+ffffffff8248cd78 d __event_netif_receive_skb_exit
+ffffffff8248cd80 d __event_netif_rx_exit
+ffffffff8248cd88 d __event_netif_receive_skb_list_exit
+ffffffff8248cd90 d __event_napi_poll
+ffffffff8248cd98 d __event_sock_rcvqueue_full
+ffffffff8248cda0 d __event_sock_exceed_buf_limit
+ffffffff8248cda8 d __event_inet_sock_set_state
+ffffffff8248cdb0 d __event_inet_sk_error_report
+ffffffff8248cdb8 d __event_udp_fail_queue_rcv_skb
+ffffffff8248cdc0 d __event_tcp_retransmit_skb
+ffffffff8248cdc8 d __event_tcp_send_reset
+ffffffff8248cdd0 d __event_tcp_receive_reset
+ffffffff8248cdd8 d __event_tcp_destroy_sock
+ffffffff8248cde0 d __event_tcp_rcv_space_adjust
+ffffffff8248cde8 d __event_tcp_retransmit_synack
+ffffffff8248cdf0 d __event_tcp_probe
+ffffffff8248cdf8 d __event_tcp_bad_csum
+ffffffff8248ce00 d __event_tcp_cong_state_set
+ffffffff8248ce08 d __event_fib_table_lookup
+ffffffff8248ce10 d __event_qdisc_dequeue
+ffffffff8248ce18 d __event_qdisc_enqueue
+ffffffff8248ce20 d __event_qdisc_reset
+ffffffff8248ce28 d __event_qdisc_destroy
+ffffffff8248ce30 d __event_qdisc_create
+ffffffff8248ce38 d __event_br_fdb_add
+ffffffff8248ce40 d __event_br_fdb_external_learn_add
+ffffffff8248ce48 d __event_fdb_delete
+ffffffff8248ce50 d __event_br_fdb_update
+ffffffff8248ce58 d __event_neigh_create
+ffffffff8248ce60 d __event_neigh_update
+ffffffff8248ce68 d __event_neigh_update_done
+ffffffff8248ce70 d __event_neigh_timer_handler
+ffffffff8248ce78 d __event_neigh_event_send_done
+ffffffff8248ce80 d __event_neigh_event_send_dead
+ffffffff8248ce88 d __event_neigh_cleanup_and_release
+ffffffff8248ce90 d __event_netlink_extack
+ffffffff8248ce98 d __event_fib6_table_lookup
+ffffffff8248cea0 d __event_virtio_transport_alloc_pkt
+ffffffff8248cea8 d __event_virtio_transport_recv_pkt
+ffffffff8248ceb0 d __event_ma_op
+ffffffff8248ceb8 d __event_ma_read
+ffffffff8248cec0 d __event_ma_write
+ffffffff8248cec8 d TRACE_SYSTEM_HI_SOFTIRQ
+ffffffff8248cec8 D __start_ftrace_eval_maps
+ffffffff8248cec8 D __stop_ftrace_events
+ffffffff8248ced0 d TRACE_SYSTEM_TIMER_SOFTIRQ
+ffffffff8248ced8 d TRACE_SYSTEM_NET_TX_SOFTIRQ
+ffffffff8248cee0 d TRACE_SYSTEM_NET_RX_SOFTIRQ
+ffffffff8248cee8 d TRACE_SYSTEM_BLOCK_SOFTIRQ
+ffffffff8248cef0 d TRACE_SYSTEM_IRQ_POLL_SOFTIRQ
+ffffffff8248cef8 d TRACE_SYSTEM_TASKLET_SOFTIRQ
+ffffffff8248cf00 d TRACE_SYSTEM_SCHED_SOFTIRQ
+ffffffff8248cf08 d TRACE_SYSTEM_HRTIMER_SOFTIRQ
+ffffffff8248cf10 d TRACE_SYSTEM_RCU_SOFTIRQ
+ffffffff8248cf18 d TRACE_SYSTEM_TICK_DEP_MASK_NONE
+ffffffff8248cf20 d TRACE_SYSTEM_TICK_DEP_BIT_POSIX_TIMER
+ffffffff8248cf28 d TRACE_SYSTEM_TICK_DEP_MASK_POSIX_TIMER
+ffffffff8248cf30 d TRACE_SYSTEM_TICK_DEP_BIT_PERF_EVENTS
+ffffffff8248cf38 d TRACE_SYSTEM_TICK_DEP_MASK_PERF_EVENTS
+ffffffff8248cf40 d TRACE_SYSTEM_TICK_DEP_BIT_SCHED
+ffffffff8248cf48 d TRACE_SYSTEM_TICK_DEP_MASK_SCHED
+ffffffff8248cf50 d TRACE_SYSTEM_TICK_DEP_BIT_CLOCK_UNSTABLE
+ffffffff8248cf58 d TRACE_SYSTEM_TICK_DEP_MASK_CLOCK_UNSTABLE
+ffffffff8248cf60 d TRACE_SYSTEM_TICK_DEP_BIT_RCU
+ffffffff8248cf68 d TRACE_SYSTEM_TICK_DEP_MASK_RCU
+ffffffff8248cf70 d TRACE_SYSTEM_ALARM_REALTIME
+ffffffff8248cf78 d TRACE_SYSTEM_ALARM_BOOTTIME
+ffffffff8248cf80 d TRACE_SYSTEM_ALARM_REALTIME_FREEZER
+ffffffff8248cf88 d TRACE_SYSTEM_ALARM_BOOTTIME_FREEZER
+ffffffff8248cf90 d TRACE_SYSTEM_ERROR_DETECTOR_KFENCE
+ffffffff8248cf98 d TRACE_SYSTEM_ERROR_DETECTOR_KASAN
+ffffffff8248cfa0 d TRACE_SYSTEM_ERROR_DETECTOR_WARN
+ffffffff8248cfa8 d TRACE_SYSTEM_XDP_ABORTED
+ffffffff8248cfb0 d TRACE_SYSTEM_XDP_DROP
+ffffffff8248cfb8 d TRACE_SYSTEM_XDP_PASS
+ffffffff8248cfc0 d TRACE_SYSTEM_XDP_TX
+ffffffff8248cfc8 d TRACE_SYSTEM_XDP_REDIRECT
+ffffffff8248cfd0 d TRACE_SYSTEM_MEM_TYPE_PAGE_SHARED
+ffffffff8248cfd8 d TRACE_SYSTEM_MEM_TYPE_PAGE_ORDER0
+ffffffff8248cfe0 d TRACE_SYSTEM_MEM_TYPE_PAGE_POOL
+ffffffff8248cfe8 d TRACE_SYSTEM_MEM_TYPE_XSK_BUFF_POOL
+ffffffff8248cff0 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff8248cff8 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff8248d000 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff8248d008 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff8248d010 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff8248d018 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff8248d020 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff8248d028 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff8248d030 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff8248d038 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff8248d040 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff8248d048 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff8248d050 d TRACE_SYSTEM_ZONE_DMA
+ffffffff8248d058 d TRACE_SYSTEM_ZONE_DMA32
+ffffffff8248d060 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffff8248d068 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff8248d070 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff8248d078 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff8248d080 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff8248d088 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff8248d090 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff8248d098 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff8248d0a0 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff8248d0a8 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff8248d0b0 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff8248d0b8 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff8248d0c0 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff8248d0c8 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff8248d0d0 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff8248d0d8 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff8248d0e0 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff8248d0e8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff8248d0f0 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff8248d0f8 d TRACE_SYSTEM_ZONE_DMA
+ffffffff8248d100 d TRACE_SYSTEM_ZONE_DMA32
+ffffffff8248d108 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffff8248d110 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff8248d118 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff8248d120 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff8248d128 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff8248d130 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff8248d138 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff8248d140 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff8248d148 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff8248d150 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff8248d158 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff8248d160 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff8248d168 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff8248d170 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff8248d178 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff8248d180 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff8248d188 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff8248d190 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff8248d198 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff8248d1a0 d TRACE_SYSTEM_ZONE_DMA
+ffffffff8248d1a8 d TRACE_SYSTEM_ZONE_DMA32
+ffffffff8248d1b0 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffff8248d1b8 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff8248d1c0 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff8248d1c8 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff8248d1d0 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff8248d1d8 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff8248d1e0 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff8248d1e8 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff8248d1f0 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff8248d1f8 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff8248d200 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff8248d208 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff8248d210 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff8248d218 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff8248d220 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff8248d228 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff8248d230 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff8248d238 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff8248d240 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff8248d248 d TRACE_SYSTEM_ZONE_DMA
+ffffffff8248d250 d TRACE_SYSTEM_ZONE_DMA32
+ffffffff8248d258 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffff8248d260 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff8248d268 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff8248d270 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff8248d278 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff8248d280 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff8248d288 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff8248d290 d TRACE_SYSTEM_MM_FILEPAGES
+ffffffff8248d298 d TRACE_SYSTEM_MM_ANONPAGES
+ffffffff8248d2a0 d TRACE_SYSTEM_MM_SWAPENTS
+ffffffff8248d2a8 d TRACE_SYSTEM_MM_SHMEMPAGES
+ffffffff8248d2b0 d TRACE_SYSTEM_COMPACT_SKIPPED
+ffffffff8248d2b8 d TRACE_SYSTEM_COMPACT_DEFERRED
+ffffffff8248d2c0 d TRACE_SYSTEM_COMPACT_CONTINUE
+ffffffff8248d2c8 d TRACE_SYSTEM_COMPACT_SUCCESS
+ffffffff8248d2d0 d TRACE_SYSTEM_COMPACT_PARTIAL_SKIPPED
+ffffffff8248d2d8 d TRACE_SYSTEM_COMPACT_COMPLETE
+ffffffff8248d2e0 d TRACE_SYSTEM_COMPACT_NO_SUITABLE_PAGE
+ffffffff8248d2e8 d TRACE_SYSTEM_COMPACT_NOT_SUITABLE_ZONE
+ffffffff8248d2f0 d TRACE_SYSTEM_COMPACT_CONTENDED
+ffffffff8248d2f8 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_FULL
+ffffffff8248d300 d TRACE_SYSTEM_COMPACT_PRIO_SYNC_LIGHT
+ffffffff8248d308 d TRACE_SYSTEM_COMPACT_PRIO_ASYNC
+ffffffff8248d310 d TRACE_SYSTEM_ZONE_DMA
+ffffffff8248d318 d TRACE_SYSTEM_ZONE_DMA32
+ffffffff8248d320 d TRACE_SYSTEM_ZONE_NORMAL
+ffffffff8248d328 d TRACE_SYSTEM_ZONE_MOVABLE
+ffffffff8248d330 d TRACE_SYSTEM_LRU_INACTIVE_ANON
+ffffffff8248d338 d TRACE_SYSTEM_LRU_ACTIVE_ANON
+ffffffff8248d340 d TRACE_SYSTEM_LRU_INACTIVE_FILE
+ffffffff8248d348 d TRACE_SYSTEM_LRU_ACTIVE_FILE
+ffffffff8248d350 d TRACE_SYSTEM_LRU_UNEVICTABLE
+ffffffff8248d358 d TRACE_SYSTEM_TLB_FLUSH_ON_TASK_SWITCH
+ffffffff8248d360 d TRACE_SYSTEM_TLB_REMOTE_SHOOTDOWN
+ffffffff8248d368 d TRACE_SYSTEM_TLB_LOCAL_SHOOTDOWN
+ffffffff8248d370 d TRACE_SYSTEM_TLB_LOCAL_MM_SHOOTDOWN
+ffffffff8248d378 d TRACE_SYSTEM_TLB_REMOTE_SEND_IPI
+ffffffff8248d380 d TRACE_SYSTEM_MIGRATE_ASYNC
+ffffffff8248d388 d TRACE_SYSTEM_MIGRATE_SYNC_LIGHT
+ffffffff8248d390 d TRACE_SYSTEM_MIGRATE_SYNC
+ffffffff8248d398 d TRACE_SYSTEM_MR_COMPACTION
+ffffffff8248d3a0 d TRACE_SYSTEM_MR_MEMORY_FAILURE
+ffffffff8248d3a8 d TRACE_SYSTEM_MR_MEMORY_HOTPLUG
+ffffffff8248d3b0 d TRACE_SYSTEM_MR_SYSCALL
+ffffffff8248d3b8 d TRACE_SYSTEM_MR_MEMPOLICY_MBIND
+ffffffff8248d3c0 d TRACE_SYSTEM_MR_NUMA_MISPLACED
+ffffffff8248d3c8 d TRACE_SYSTEM_MR_CONTIG_RANGE
+ffffffff8248d3d0 d TRACE_SYSTEM_MR_LONGTERM_PIN
+ffffffff8248d3d8 d TRACE_SYSTEM_MR_DEMOTION
+ffffffff8248d3e0 d TRACE_SYSTEM_SCAN_FAIL
+ffffffff8248d3e8 d TRACE_SYSTEM_SCAN_SUCCEED
+ffffffff8248d3f0 d TRACE_SYSTEM_SCAN_PMD_NULL
+ffffffff8248d3f8 d TRACE_SYSTEM_SCAN_PMD_NONE
+ffffffff8248d400 d TRACE_SYSTEM_SCAN_PMD_MAPPED
+ffffffff8248d408 d TRACE_SYSTEM_SCAN_EXCEED_NONE_PTE
+ffffffff8248d410 d TRACE_SYSTEM_SCAN_EXCEED_SWAP_PTE
+ffffffff8248d418 d TRACE_SYSTEM_SCAN_EXCEED_SHARED_PTE
+ffffffff8248d420 d TRACE_SYSTEM_SCAN_PTE_NON_PRESENT
+ffffffff8248d428 d TRACE_SYSTEM_SCAN_PTE_UFFD_WP
+ffffffff8248d430 d TRACE_SYSTEM_SCAN_PTE_MAPPED_HUGEPAGE
+ffffffff8248d438 d TRACE_SYSTEM_SCAN_PAGE_RO
+ffffffff8248d440 d TRACE_SYSTEM_SCAN_LACK_REFERENCED_PAGE
+ffffffff8248d448 d TRACE_SYSTEM_SCAN_PAGE_NULL
+ffffffff8248d450 d TRACE_SYSTEM_SCAN_SCAN_ABORT
+ffffffff8248d458 d TRACE_SYSTEM_SCAN_PAGE_COUNT
+ffffffff8248d460 d TRACE_SYSTEM_SCAN_PAGE_LRU
+ffffffff8248d468 d TRACE_SYSTEM_SCAN_PAGE_LOCK
+ffffffff8248d470 d TRACE_SYSTEM_SCAN_PAGE_ANON
+ffffffff8248d478 d TRACE_SYSTEM_SCAN_PAGE_COMPOUND
+ffffffff8248d480 d TRACE_SYSTEM_SCAN_ANY_PROCESS
+ffffffff8248d488 d TRACE_SYSTEM_SCAN_VMA_NULL
+ffffffff8248d490 d TRACE_SYSTEM_SCAN_VMA_CHECK
+ffffffff8248d498 d TRACE_SYSTEM_SCAN_ADDRESS_RANGE
+ffffffff8248d4a0 d TRACE_SYSTEM_SCAN_DEL_PAGE_LRU
+ffffffff8248d4a8 d TRACE_SYSTEM_SCAN_ALLOC_HUGE_PAGE_FAIL
+ffffffff8248d4b0 d TRACE_SYSTEM_SCAN_CGROUP_CHARGE_FAIL
+ffffffff8248d4b8 d TRACE_SYSTEM_SCAN_TRUNCATED
+ffffffff8248d4c0 d TRACE_SYSTEM_SCAN_PAGE_HAS_PRIVATE
+ffffffff8248d4c8 d TRACE_SYSTEM_WB_REASON_BACKGROUND
+ffffffff8248d4d0 d TRACE_SYSTEM_WB_REASON_VMSCAN
+ffffffff8248d4d8 d TRACE_SYSTEM_WB_REASON_SYNC
+ffffffff8248d4e0 d TRACE_SYSTEM_WB_REASON_PERIODIC
+ffffffff8248d4e8 d TRACE_SYSTEM_WB_REASON_LAPTOP_TIMER
+ffffffff8248d4f0 d TRACE_SYSTEM_WB_REASON_FS_FREE_SPACE
+ffffffff8248d4f8 d TRACE_SYSTEM_WB_REASON_FORKER_THREAD
+ffffffff8248d500 d TRACE_SYSTEM_WB_REASON_FOREIGN_FLUSH
+ffffffff8248d508 d TRACE_SYSTEM_BH_New
+ffffffff8248d510 d TRACE_SYSTEM_BH_Mapped
+ffffffff8248d518 d TRACE_SYSTEM_BH_Unwritten
+ffffffff8248d520 d TRACE_SYSTEM_BH_Boundary
+ffffffff8248d528 d TRACE_SYSTEM_ES_WRITTEN_B
+ffffffff8248d530 d TRACE_SYSTEM_ES_UNWRITTEN_B
+ffffffff8248d538 d TRACE_SYSTEM_ES_DELAYED_B
+ffffffff8248d540 d TRACE_SYSTEM_ES_HOLE_B
+ffffffff8248d548 d TRACE_SYSTEM_ES_REFERENCED_B
+ffffffff8248d550 d TRACE_SYSTEM_EXT4_FC_REASON_XATTR
+ffffffff8248d558 d TRACE_SYSTEM_EXT4_FC_REASON_CROSS_RENAME
+ffffffff8248d560 d TRACE_SYSTEM_EXT4_FC_REASON_JOURNAL_FLAG_CHANGE
+ffffffff8248d568 d TRACE_SYSTEM_EXT4_FC_REASON_NOMEM
+ffffffff8248d570 d TRACE_SYSTEM_EXT4_FC_REASON_SWAP_BOOT
+ffffffff8248d578 d TRACE_SYSTEM_EXT4_FC_REASON_RESIZE
+ffffffff8248d580 d TRACE_SYSTEM_EXT4_FC_REASON_RENAME_DIR
+ffffffff8248d588 d TRACE_SYSTEM_EXT4_FC_REASON_FALLOC_RANGE
+ffffffff8248d590 d TRACE_SYSTEM_EXT4_FC_REASON_INODE_JOURNAL_DATA
+ffffffff8248d598 d TRACE_SYSTEM_EXT4_FC_REASON_ENCRYPTED_FILENAME
+ffffffff8248d5a0 d TRACE_SYSTEM_EXT4_FC_REASON_MAX
+ffffffff8248d5a8 d TRACE_SYSTEM_THERMAL_TRIP_CRITICAL
+ffffffff8248d5b0 d TRACE_SYSTEM_THERMAL_TRIP_HOT
+ffffffff8248d5b8 d TRACE_SYSTEM_THERMAL_TRIP_PASSIVE
+ffffffff8248d5c0 d TRACE_SYSTEM_THERMAL_TRIP_ACTIVE
+ffffffff8248d5c8 d TRACE_SYSTEM_SKB_DROP_REASON_NOT_SPECIFIED
+ffffffff8248d5d0 d TRACE_SYSTEM_SKB_DROP_REASON_NO_SOCKET
+ffffffff8248d5d8 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_SMALL
+ffffffff8248d5e0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CSUM
+ffffffff8248d5e8 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_FILTER
+ffffffff8248d5f0 d TRACE_SYSTEM_SKB_DROP_REASON_UDP_CSUM
+ffffffff8248d5f8 d TRACE_SYSTEM_SKB_DROP_REASON_NETFILTER_DROP
+ffffffff8248d600 d TRACE_SYSTEM_SKB_DROP_REASON_OTHERHOST
+ffffffff8248d608 d TRACE_SYSTEM_SKB_DROP_REASON_IP_CSUM
+ffffffff8248d610 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INHDR
+ffffffff8248d618 d TRACE_SYSTEM_SKB_DROP_REASON_IP_RPFILTER
+ffffffff8248d620 d TRACE_SYSTEM_SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST
+ffffffff8248d628 d TRACE_SYSTEM_SKB_DROP_REASON_XFRM_POLICY
+ffffffff8248d630 d TRACE_SYSTEM_SKB_DROP_REASON_IP_NOPROTO
+ffffffff8248d638 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_RCVBUFF
+ffffffff8248d640 d TRACE_SYSTEM_SKB_DROP_REASON_PROTO_MEM
+ffffffff8248d648 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5NOTFOUND
+ffffffff8248d650 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5UNEXPECTED
+ffffffff8248d658 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_MD5FAILURE
+ffffffff8248d660 d TRACE_SYSTEM_SKB_DROP_REASON_SOCKET_BACKLOG
+ffffffff8248d668 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FLAGS
+ffffffff8248d670 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ZEROWINDOW
+ffffffff8248d678 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_DATA
+ffffffff8248d680 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OVERWINDOW
+ffffffff8248d688 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFOMERGE
+ffffffff8248d690 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RFC7323_PAWS
+ffffffff8248d698 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SEQUENCE
+ffffffff8248d6a0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_RESET
+ffffffff8248d6a8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_INVALID_SYN
+ffffffff8248d6b0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_CLOSE
+ffffffff8248d6b8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_FASTOPEN
+ffffffff8248d6c0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OLD_ACK
+ffffffff8248d6c8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_TOO_OLD_ACK
+ffffffff8248d6d0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_ACK_UNSENT_DATA
+ffffffff8248d6d8 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE
+ffffffff8248d6e0 d TRACE_SYSTEM_SKB_DROP_REASON_TCP_OFO_DROP
+ffffffff8248d6e8 d TRACE_SYSTEM_SKB_DROP_REASON_IP_OUTNOROUTES
+ffffffff8248d6f0 d TRACE_SYSTEM_SKB_DROP_REASON_BPF_CGROUP_EGRESS
+ffffffff8248d6f8 d TRACE_SYSTEM_SKB_DROP_REASON_IPV6DISABLED
+ffffffff8248d700 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_CREATEFAIL
+ffffffff8248d708 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_FAILED
+ffffffff8248d710 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_QUEUEFULL
+ffffffff8248d718 d TRACE_SYSTEM_SKB_DROP_REASON_NEIGH_DEAD
+ffffffff8248d720 d TRACE_SYSTEM_SKB_DROP_REASON_TC_EGRESS
+ffffffff8248d728 d TRACE_SYSTEM_SKB_DROP_REASON_QDISC_DROP
+ffffffff8248d730 d TRACE_SYSTEM_SKB_DROP_REASON_CPU_BACKLOG
+ffffffff8248d738 d TRACE_SYSTEM_SKB_DROP_REASON_XDP
+ffffffff8248d740 d TRACE_SYSTEM_SKB_DROP_REASON_TC_INGRESS
+ffffffff8248d748 d TRACE_SYSTEM_SKB_DROP_REASON_UNHANDLED_PROTO
+ffffffff8248d750 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_CSUM
+ffffffff8248d758 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_GSO_SEG
+ffffffff8248d760 d TRACE_SYSTEM_SKB_DROP_REASON_SKB_UCOPY_FAULT
+ffffffff8248d768 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_HDR
+ffffffff8248d770 d TRACE_SYSTEM_SKB_DROP_REASON_DEV_READY
+ffffffff8248d778 d TRACE_SYSTEM_SKB_DROP_REASON_FULL_RING
+ffffffff8248d780 d TRACE_SYSTEM_SKB_DROP_REASON_NOMEM
+ffffffff8248d788 d TRACE_SYSTEM_SKB_DROP_REASON_HDR_TRUNC
+ffffffff8248d790 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_FILTER
+ffffffff8248d798 d TRACE_SYSTEM_SKB_DROP_REASON_TAP_TXFILTER
+ffffffff8248d7a0 d TRACE_SYSTEM_SKB_DROP_REASON_ICMP_CSUM
+ffffffff8248d7a8 d TRACE_SYSTEM_SKB_DROP_REASON_INVALID_PROTO
+ffffffff8248d7b0 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INADDRERRORS
+ffffffff8248d7b8 d TRACE_SYSTEM_SKB_DROP_REASON_IP_INNOROUTES
+ffffffff8248d7c0 d TRACE_SYSTEM_SKB_DROP_REASON_PKT_TOO_BIG
+ffffffff8248d7c8 d TRACE_SYSTEM_SKB_DROP_REASON_MAX
+ffffffff8248d7d0 d TRACE_SYSTEM_2
+ffffffff8248d7d8 d TRACE_SYSTEM_10
+ffffffff8248d7e0 d TRACE_SYSTEM_IPPROTO_TCP
+ffffffff8248d7e8 d TRACE_SYSTEM_IPPROTO_DCCP
+ffffffff8248d7f0 d TRACE_SYSTEM_IPPROTO_SCTP
+ffffffff8248d7f8 d TRACE_SYSTEM_IPPROTO_MPTCP
+ffffffff8248d800 d TRACE_SYSTEM_TCP_ESTABLISHED
+ffffffff8248d808 d TRACE_SYSTEM_TCP_SYN_SENT
+ffffffff8248d810 d TRACE_SYSTEM_TCP_SYN_RECV
+ffffffff8248d818 d TRACE_SYSTEM_TCP_FIN_WAIT1
+ffffffff8248d820 d TRACE_SYSTEM_TCP_FIN_WAIT2
+ffffffff8248d828 d TRACE_SYSTEM_TCP_TIME_WAIT
+ffffffff8248d830 d TRACE_SYSTEM_TCP_CLOSE
+ffffffff8248d838 d TRACE_SYSTEM_TCP_CLOSE_WAIT
+ffffffff8248d840 d TRACE_SYSTEM_TCP_LAST_ACK
+ffffffff8248d848 d TRACE_SYSTEM_TCP_LISTEN
+ffffffff8248d850 d TRACE_SYSTEM_TCP_CLOSING
+ffffffff8248d858 d TRACE_SYSTEM_TCP_NEW_SYN_RECV
+ffffffff8248d860 d TRACE_SYSTEM_0
+ffffffff8248d868 d TRACE_SYSTEM_1
+ffffffff8248d870 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_STREAM
+ffffffff8248d878 d TRACE_SYSTEM_VIRTIO_VSOCK_TYPE_SEQPACKET
+ffffffff8248d880 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_INVALID
+ffffffff8248d888 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_REQUEST
+ffffffff8248d890 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RESPONSE
+ffffffff8248d898 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RST
+ffffffff8248d8a0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_SHUTDOWN
+ffffffff8248d8a8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_RW
+ffffffff8248d8b0 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_UPDATE
+ffffffff8248d8b8 d TRACE_SYSTEM_VIRTIO_VSOCK_OP_CREDIT_REQUEST
+ffffffff8248d8c0 D __cpu_method_of_table
+ffffffff8248d8c0 D __cpuidle_method_of_table
+ffffffff8248d8c0 D __dtb_end
+ffffffff8248d8c0 D __dtb_start
+ffffffff8248d8c0 D __irqchip_of_table
+ffffffff8248d8c0 D __stop_ftrace_eval_maps
+ffffffff8248d8c0 d irqchip_of_match_end
+ffffffff8248d988 D __governor_thermal_table
+ffffffff8248d988 D __irqchip_acpi_probe_table
+ffffffff8248d988 D __irqchip_acpi_probe_table_end
+ffffffff8248d988 d __thermal_table_entry_thermal_gov_step_wise
+ffffffff8248d988 D __timer_acpi_probe_table
+ffffffff8248d988 D __timer_acpi_probe_table_end
+ffffffff8248d990 d __thermal_table_entry_thermal_gov_user_space
+ffffffff8248d998 d __UNIQUE_ID___earlycon_uart8250269
+ffffffff8248d998 D __earlycon_table
+ffffffff8248d998 D __governor_thermal_table_end
+ffffffff8248da30 d __UNIQUE_ID___earlycon_uart270
+ffffffff8248dac8 d __UNIQUE_ID___earlycon_ns16550271
+ffffffff8248db60 d __UNIQUE_ID___earlycon_ns16550a272
+ffffffff8248dbf8 d __UNIQUE_ID___earlycon_uart273
+ffffffff8248dc90 d __UNIQUE_ID___earlycon_uart274
+ffffffff8248dd28 d __UNIQUE_ID___earlycon_efifb273
+ffffffff8248ddc0 D __earlycon_table_end
+ffffffff8248ddc0 d __lsm_capability
+ffffffff8248ddc0 D __start_lsm_info
+ffffffff8248ddf0 d __lsm_selinux
+ffffffff8248de20 d __lsm_integrity
+ffffffff8248de50 D __end_early_lsm_info
+ffffffff8248de50 D __end_lsm_info
+ffffffff8248de50 D __kunit_suites_end
+ffffffff8248de50 D __kunit_suites_start
+ffffffff8248de50 d __setup_set_reset_devices
+ffffffff8248de50 D __setup_start
+ffffffff8248de50 D __start_early_lsm_info
+ffffffff8248de68 d __setup_debug_kernel
+ffffffff8248de80 d __setup_quiet_kernel
+ffffffff8248de98 d __setup_loglevel
+ffffffff8248deb0 d __setup_warn_bootconfig
+ffffffff8248dec8 d __setup_init_setup
+ffffffff8248dee0 d __setup_rdinit_setup
+ffffffff8248def8 d __setup_early_randomize_kstack_offset
+ffffffff8248df10 d __setup_initcall_blacklist
+ffffffff8248df28 d __setup_set_debug_rodata
+ffffffff8248df40 d __setup_early_hostname
+ffffffff8248df58 d __setup_load_ramdisk
+ffffffff8248df70 d __setup_readonly
+ffffffff8248df88 d __setup_readwrite
+ffffffff8248dfa0 d __setup_root_dev_setup
+ffffffff8248dfb8 d __setup_rootwait_setup
+ffffffff8248dfd0 d __setup_root_data_setup
+ffffffff8248dfe8 d __setup_fs_names_setup
+ffffffff8248e000 d __setup_root_delay_setup
+ffffffff8248e018 d __setup_prompt_ramdisk
+ffffffff8248e030 d __setup_ramdisk_start_setup
+ffffffff8248e048 d __setup_no_initrd
+ffffffff8248e060 d __setup_early_initrdmem
+ffffffff8248e078 d __setup_early_initrd
+ffffffff8248e090 d __setup_retain_initrd_param
+ffffffff8248e0a8 d __setup_initramfs_async_setup
+ffffffff8248e0c0 d __setup_lpj_setup
+ffffffff8248e0d8 d __setup_vdso_setup
+ffffffff8248e0f0 d __setup_vsyscall_setup
+ffffffff8248e108 d __setup_strict_sas_size
+ffffffff8248e120 d __setup_setup_unknown_nmi_panic
+ffffffff8248e138 d __setup_control_va_addr_alignment
+ffffffff8248e150 d __setup_parse_memopt
+ffffffff8248e168 d __setup_parse_memmap_opt
+ffffffff8248e180 d __setup_iommu_setup
+ffffffff8248e198 d __setup_enable_cpu0_hotplug
+ffffffff8248e1b0 d __setup_debug_alt
+ffffffff8248e1c8 d __setup_setup_noreplace_smp
+ffffffff8248e1e0 d __setup_tsc_early_khz_setup
+ffffffff8248e1f8 d __setup_notsc_setup
+ffffffff8248e210 d __setup_tsc_setup
+ffffffff8248e228 d __setup_io_delay_param
+ffffffff8248e240 d __setup_idle_setup
+ffffffff8248e258 d __setup_x86_nopcid_setup
+ffffffff8248e270 d __setup_x86_noinvpcid_setup
+ffffffff8248e288 d __setup_x86_nofsgsbase_setup
+ffffffff8248e2a0 d __setup_setup_disable_pku
+ffffffff8248e2b8 d __setup_setup_clearcpuid
+ffffffff8248e2d0 d __setup_mds_cmdline
+ffffffff8248e2e8 d __setup_tsx_async_abort_parse_cmdline
+ffffffff8248e300 d __setup_mmio_stale_data_parse_cmdline
+ffffffff8248e318 d __setup_srbds_parse_cmdline
+ffffffff8248e330 d __setup_l1d_flush_parse_cmdline
+ffffffff8248e348 d __setup_nospectre_v1_cmdline
+ffffffff8248e360 d __setup_retbleed_parse_cmdline
+ffffffff8248e378 d __setup_l1tf_cmdline
+ffffffff8248e390 d __setup_nosgx
+ffffffff8248e3a8 d __setup_ring3mwait_disable
+ffffffff8248e3c0 d __setup_rdrand_cmdline
+ffffffff8248e3d8 d __setup_disable_mtrr_cleanup_setup
+ffffffff8248e3f0 d __setup_enable_mtrr_cleanup_setup
+ffffffff8248e408 d __setup_mtrr_cleanup_debug_setup
+ffffffff8248e420 d __setup_parse_mtrr_chunk_size_opt
+ffffffff8248e438 d __setup_parse_mtrr_gran_size_opt
+ffffffff8248e450 d __setup_parse_mtrr_spare_reg
+ffffffff8248e468 d __setup_disable_mtrr_trim_setup
+ffffffff8248e480 d __setup_setup_vmw_sched_clock
+ffffffff8248e498 d __setup_parse_no_stealacc
+ffffffff8248e4b0 d __setup_parse_nopv
+ffffffff8248e4c8 d __setup_parse_acpi
+ffffffff8248e4e0 d __setup_parse_acpi_bgrt
+ffffffff8248e4f8 d __setup_parse_pci
+ffffffff8248e510 d __setup_parse_acpi_skip_timer_override
+ffffffff8248e528 d __setup_parse_acpi_use_timer_override
+ffffffff8248e540 d __setup_setup_acpi_sci
+ffffffff8248e558 d __setup_acpi_sleep_setup
+ffffffff8248e570 d __setup_nonmi_ipi_setup
+ffffffff8248e588 d __setup_cpu_init_udelay
+ffffffff8248e5a0 d __setup__setup_possible_cpus
+ffffffff8248e5b8 d __setup_update_mptable_setup
+ffffffff8248e5d0 d __setup_parse_alloc_mptable_opt
+ffffffff8248e5e8 d __setup_parse_lapic
+ffffffff8248e600 d __setup_setup_apicpmtimer
+ffffffff8248e618 d __setup_setup_nox2apic
+ffffffff8248e630 d __setup_setup_disableapic
+ffffffff8248e648 d __setup_setup_nolapic
+ffffffff8248e660 d __setup_parse_lapic_timer_c2_ok
+ffffffff8248e678 d __setup_parse_disable_apic_timer
+ffffffff8248e690 d __setup_parse_nolapic_timer
+ffffffff8248e6a8 d __setup_apic_set_verbosity
+ffffffff8248e6c0 d __setup_apic_set_disabled_cpu_apicid
+ffffffff8248e6d8 d __setup_apic_set_extnmi
+ffffffff8248e6f0 d __setup_apic_ipi_shorthand
+ffffffff8248e708 d __setup_setup_show_lapic
+ffffffff8248e720 d __setup_parse_noapic
+ffffffff8248e738 d __setup_notimercheck
+ffffffff8248e750 d __setup_disable_timer_pin_setup
+ffffffff8248e768 d __setup_set_x2apic_phys_mode
+ffffffff8248e780 d __setup_setup_early_printk
+ffffffff8248e798 d __setup_hpet_setup
+ffffffff8248e7b0 d __setup_disable_hpet
+ffffffff8248e7c8 d __setup_parse_no_kvmapf
+ffffffff8248e7e0 d __setup_parse_no_stealacc
+ffffffff8248e7f8 d __setup_parse_no_kvmclock
+ffffffff8248e810 d __setup_parse_no_kvmclock_vsyscall
+ffffffff8248e828 d __setup_parse_direct_gbpages_on
+ffffffff8248e840 d __setup_parse_direct_gbpages_off
+ffffffff8248e858 d __setup_early_disable_dma32
+ffffffff8248e870 d __setup_nonx32_setup
+ffffffff8248e888 d __setup_setup_userpte
+ffffffff8248e8a0 d __setup_nopat
+ffffffff8248e8b8 d __setup_pat_debug_setup
+ffffffff8248e8d0 d __setup_setup_init_pkru
+ffffffff8248e8e8 d __setup_setup_storage_paranoia
+ffffffff8248e900 d __setup_setup_add_efi_memmap
+ffffffff8248e918 d __setup_coredump_filter_setup
+ffffffff8248e930 d __setup_oops_setup
+ffffffff8248e948 d __setup_panic_on_taint_setup
+ffffffff8248e960 d __setup_smt_cmdline_disable
+ffffffff8248e978 d __setup_mitigations_parse_cmdline
+ffffffff8248e990 d __setup_reserve_setup
+ffffffff8248e9a8 d __setup_strict_iomem
+ffffffff8248e9c0 d __setup_file_caps_disable
+ffffffff8248e9d8 d __setup_setup_print_fatal_signals
+ffffffff8248e9f0 d __setup_reboot_setup
+ffffffff8248ea08 d __setup_setup_schedstats
+ffffffff8248ea20 d __setup_setup_resched_latency_warn_ms
+ffffffff8248ea38 d __setup_setup_preempt_mode
+ffffffff8248ea50 d __setup_setup_sched_thermal_decay_shift
+ffffffff8248ea68 d __setup_sched_debug_setup
+ffffffff8248ea80 d __setup_setup_relax_domain_level
+ffffffff8248ea98 d __setup_setup_psi
+ffffffff8248eab0 d __setup_housekeeping_nohz_full_setup
+ffffffff8248eac8 d __setup_housekeeping_isolcpus_setup
+ffffffff8248eae0 d __setup_mem_sleep_default_setup
+ffffffff8248eaf8 d __setup_control_devkmsg
+ffffffff8248eb10 d __setup_log_buf_len_setup
+ffffffff8248eb28 d __setup_ignore_loglevel_setup
+ffffffff8248eb40 d __setup_console_msg_format_setup
+ffffffff8248eb58 d __setup_console_setup
+ffffffff8248eb70 d __setup_console_suspend_disable
+ffffffff8248eb88 d __setup_keep_bootcon_setup
+ffffffff8248eba0 d __setup_irq_affinity_setup
+ffffffff8248ebb8 d __setup_setup_forced_irqthreads
+ffffffff8248ebd0 d __setup_noirqdebug_setup
+ffffffff8248ebe8 d __setup_irqfixup_setup
+ffffffff8248ec00 d __setup_irqpoll_setup
+ffffffff8248ec18 d __setup_rcu_nocb_setup
+ffffffff8248ec30 d __setup_parse_rcu_nocb_poll
+ffffffff8248ec48 d __setup_setup_io_tlb_npages
+ffffffff8248ec60 d __setup_profile_setup
+ffffffff8248ec78 d __setup_setup_hrtimer_hres
+ffffffff8248ec90 d __setup_ntp_tick_adj_setup
+ffffffff8248eca8 d __setup_boot_override_clocksource
+ffffffff8248ecc0 d __setup_boot_override_clock
+ffffffff8248ecd8 d __setup_setup_tick_nohz
+ffffffff8248ecf0 d __setup_skew_tick
+ffffffff8248ed08 d __setup_nosmp
+ffffffff8248ed20 d __setup_nrcpus
+ffffffff8248ed38 d __setup_maxcpus
+ffffffff8248ed50 d __setup_parse_crashkernel_dummy
+ffffffff8248ed68 d __setup_cgroup_disable
+ffffffff8248ed80 d __setup_enable_cgroup_debug
+ffffffff8248ed98 d __setup_cgroup_no_v1
+ffffffff8248edb0 d __setup_audit_enable
+ffffffff8248edc8 d __setup_audit_backlog_limit_set
+ffffffff8248ede0 d __setup_nowatchdog_setup
+ffffffff8248edf8 d __setup_nosoftlockup_setup
+ffffffff8248ee10 d __setup_watchdog_thresh_setup
+ffffffff8248ee28 d __setup_set_cmdline_ftrace
+ffffffff8248ee40 d __setup_set_ftrace_dump_on_oops
+ffffffff8248ee58 d __setup_stop_trace_on_warning
+ffffffff8248ee70 d __setup_boot_alloc_snapshot
+ffffffff8248ee88 d __setup_boot_snapshot
+ffffffff8248eea0 d __setup_set_trace_boot_options
+ffffffff8248eeb8 d __setup_set_trace_boot_clock
+ffffffff8248eed0 d __setup_set_tracepoint_printk
+ffffffff8248eee8 d __setup_set_tracepoint_printk_stop
+ffffffff8248ef00 d __setup_set_buf_size
+ffffffff8248ef18 d __setup_set_tracing_thresh
+ffffffff8248ef30 d __setup_setup_trace_event
+ffffffff8248ef48 d __setup_set_mminit_loglevel
+ffffffff8248ef60 d __setup_percpu_alloc_setup
+ffffffff8248ef78 d __setup_slub_nomerge
+ffffffff8248ef90 d __setup_slub_merge
+ffffffff8248efa8 d __setup_setup_slab_nomerge
+ffffffff8248efc0 d __setup_setup_slab_merge
+ffffffff8248efd8 d __setup_disable_randmaps
+ffffffff8248eff0 d __setup_cmdline_parse_stack_guard_gap
+ffffffff8248f008 d __setup_set_nohugeiomap
+ffffffff8248f020 d __setup_set_nohugevmalloc
+ffffffff8248f038 d __setup_early_init_on_alloc
+ffffffff8248f050 d __setup_early_init_on_free
+ffffffff8248f068 d __setup_cmdline_parse_kernelcore
+ffffffff8248f080 d __setup_cmdline_parse_movablecore
+ffffffff8248f098 d __setup_early_memblock
+ffffffff8248f0b0 d __setup_setup_memhp_default_state
+ffffffff8248f0c8 d __setup_cmdline_parse_movable_node
+ffffffff8248f0e0 d __setup_setup_slub_debug
+ffffffff8248f0f8 d __setup_setup_slub_min_order
+ffffffff8248f110 d __setup_setup_slub_max_order
+ffffffff8248f128 d __setup_setup_slub_min_objects
+ffffffff8248f140 d __setup_setup_transparent_hugepage
+ffffffff8248f158 d __setup_cgroup_memory
+ffffffff8248f170 d __setup_setup_swap_account
+ffffffff8248f188 d __setup_early_page_owner_param
+ffffffff8248f1a0 d __setup_early_ioremap_debug_setup
+ffffffff8248f1b8 d __setup_setup_early_page_ext
+ffffffff8248f1d0 d __setup_parse_hardened_usercopy
+ffffffff8248f1e8 d __setup_set_dhash_entries
+ffffffff8248f200 d __setup_set_ihash_entries
+ffffffff8248f218 d __setup_set_mhash_entries
+ffffffff8248f230 d __setup_set_mphash_entries
+ffffffff8248f248 d __setup_debugfs_kernel
+ffffffff8248f260 d __setup_choose_major_lsm
+ffffffff8248f278 d __setup_choose_lsm_order
+ffffffff8248f290 d __setup_enable_debug
+ffffffff8248f2a8 d __setup_enforcing_setup
+ffffffff8248f2c0 d __setup_checkreqprot_setup
+ffffffff8248f2d8 d __setup_integrity_audit_setup
+ffffffff8248f2f0 d __setup_elevator_setup
+ffffffff8248f308 d __setup_force_gpt_fn
+ffffffff8248f320 d __setup_dyndbg_setup
+ffffffff8248f338 d __setup_is_stack_depot_disabled
+ffffffff8248f350 d __setup_pcie_port_pm_setup
+ffffffff8248f368 d __setup_pci_setup
+ffffffff8248f380 d __setup_pcie_port_setup
+ffffffff8248f398 d __setup_pcie_aspm_disable
+ffffffff8248f3b0 d __setup_pcie_pme_setup
+ffffffff8248f3c8 d __setup_no_scroll
+ffffffff8248f3e0 d __setup_acpi_parse_apic_instance
+ffffffff8248f3f8 d __setup_acpi_force_table_verification_setup
+ffffffff8248f410 d __setup_acpi_force_32bit_fadt_addr
+ffffffff8248f428 d __setup_osi_setup
+ffffffff8248f440 d __setup_acpi_rev_override_setup
+ffffffff8248f458 d __setup_acpi_os_name_setup
+ffffffff8248f470 d __setup_acpi_no_auto_serialize_setup
+ffffffff8248f488 d __setup_acpi_enforce_resources_setup
+ffffffff8248f4a0 d __setup_acpi_no_static_ssdt_setup
+ffffffff8248f4b8 d __setup_acpi_disable_return_repair
+ffffffff8248f4d0 d __setup_acpi_backlight
+ffffffff8248f4e8 d __setup_acpi_irq_isa
+ffffffff8248f500 d __setup_acpi_irq_pci
+ffffffff8248f518 d __setup_acpi_irq_nobalance_set
+ffffffff8248f530 d __setup_acpi_irq_balance_set
+ffffffff8248f548 d __setup_acpi_gpe_set_masked_gpes
+ffffffff8248f560 d __setup_pnp_setup_reserve_irq
+ffffffff8248f578 d __setup_pnp_setup_reserve_dma
+ffffffff8248f590 d __setup_pnp_setup_reserve_io
+ffffffff8248f5a8 d __setup_pnp_setup_reserve_mem
+ffffffff8248f5c0 d __setup_pnpacpi_setup
+ffffffff8248f5d8 d __setup_sysrq_always_enabled_setup
+ffffffff8248f5f0 d __setup_param_setup_earlycon
+ffffffff8248f608 d __setup_parse_trust_cpu
+ffffffff8248f620 d __setup_parse_trust_bootloader
+ffffffff8248f638 d __setup_hpet_mmap_enable
+ffffffff8248f650 d __setup_iommu_set_def_domain_type
+ffffffff8248f668 d __setup_iommu_dma_setup
+ffffffff8248f680 d __setup_iommu_dma_forcedac_setup
+ffffffff8248f698 d __setup_fw_devlink_setup
+ffffffff8248f6b0 d __setup_fw_devlink_strict_setup
+ffffffff8248f6c8 d __setup_deferred_probe_timeout_setup
+ffffffff8248f6e0 d __setup_save_async_options
+ffffffff8248f6f8 d __setup_ramdisk_size
+ffffffff8248f710 d __setup_max_loop_setup
+ffffffff8248f728 d __setup_int_pln_enable_setup
+ffffffff8248f740 d __setup_intel_pstate_setup
+ffffffff8248f758 d __setup_setup_noefi
+ffffffff8248f770 d __setup_parse_efi_cmdline
+ffffffff8248f788 d __setup_efivar_ssdt_setup
+ffffffff8248f7a0 d __setup_acpi_pm_good_setup
+ffffffff8248f7b8 d __setup_parse_pmtmr
+ffffffff8248f7d0 d __setup_parse_ras_param
+ffffffff8248f7e8 d __setup_fb_tunnels_only_for_init_net_sysctl_setup
+ffffffff8248f800 d __setup_set_thash_entries
+ffffffff8248f818 d __setup_set_tcpmhash_entries
+ffffffff8248f830 d __setup_set_uhash_entries
+ffffffff8248f848 d __setup_debug_boot_weak_hash_enable
+ffffffff8248f860 d __setup_no_hash_pointers_enable
+ffffffff8248f878 d __initcall__kmod_core__340_2226_init_hw_perf_eventsearly
+ffffffff8248f878 D __initcall_start
+ffffffff8248f878 D __setup_end
+ffffffff8248f87c d __initcall__kmod_init__259_217_do_init_real_modeearly
+ffffffff8248f880 d __initcall__kmod_irq__621_75_trace_init_perf_perm_irq_work_exitearly
+ffffffff8248f884 d __initcall__kmod_aperfmperf__214_454_bp_init_aperfmperfearly
+ffffffff8248f888 d __initcall__kmod_hw_nmi__279_58_register_nmi_cpu_backtrace_handlerearly
+ffffffff8248f88c d __initcall__kmod_kvmclock__268_261_kvm_setup_vsyscall_timeinfoearly
+ffffffff8248f890 d __initcall__kmod_softirq__385_1038_spawn_ksoftirqdearly
+ffffffff8248f894 d __initcall__kmod_core__1313_9781_migration_initearly
+ffffffff8248f898 d __initcall__kmod_srcutree__494_1730_srcu_bootup_announceearly
+ffffffff8248f89c d __initcall__kmod_tree__756_4466_rcu_spawn_gp_kthreadearly
+ffffffff8248f8a0 d __initcall__kmod_tree__775_135_check_cpu_stall_initearly
+ffffffff8248f8a4 d __initcall__kmod_tree__869_1025_rcu_sysrq_initearly
+ffffffff8248f8a8 d __initcall__kmod_common__356_42_trace_init_flags_sys_enterearly
+ffffffff8248f8ac d __initcall__kmod_common__358_66_trace_init_flags_sys_exitearly
+ffffffff8248f8b0 d __initcall__kmod_stop_machine__274_586_cpu_stop_initearly
+ffffffff8248f8b4 d __initcall__kmod_trace_printk__295_400_init_trace_printkearly
+ffffffff8248f8b8 d __initcall__kmod_trace_events__660_3801_event_trace_enable_againearly
+ffffffff8248f8bc d __initcall__kmod_irq_work__225_318_irq_work_init_threadsearly
+ffffffff8248f8c0 d __initcall__kmod_static_call_inline__201_500_static_call_initearly
+ffffffff8248f8c4 d __initcall__kmod_jump_label__218_745_jump_label_init_moduleearly
+ffffffff8248f8c8 d __initcall__kmod_memory__450_164_init_zero_pfnearly
+ffffffff8248f8cc d __initcall__kmod_inode__586_140_init_fs_inode_sysctlsearly
+ffffffff8248f8d0 d __initcall__kmod_locks__422_121_init_fs_locks_sysctlsearly
+ffffffff8248f8d4 d __initcall__kmod_dynamic_debug__546_1453_dynamic_debug_initearly
+ffffffff8248f8d8 d __initcall__kmod_efi__280_1039_efi_memreserve_root_initearly
+ffffffff8248f8dc d __initcall__kmod_earlycon__269_41_efi_earlycon_remap_fbearly
+ffffffff8248f8e0 D __initcall0_start
+ffffffff8248f8e0 d __initcall__kmod_min_addr__256_53_init_mmap_min_addr0
+ffffffff8248f8e4 d __initcall__kmod_pci__385_6907_pci_realloc_setup_params0
+ffffffff8248f8e8 d __initcall__kmod_inet_fragment__590_216_inet_frag_wq_init0
+ffffffff8248f8ec D __initcall1_start
+ffffffff8248f8ec d __initcall__kmod_e820__337_792_e820__register_nvs_regions1
+ffffffff8248f8f0 d __initcall__kmod_tsc__248_1029_cpufreq_register_tsc_scaling1
+ffffffff8248f8f4 d __initcall__kmod_reboot__344_518_reboot_init1
+ffffffff8248f8f8 d __initcall__kmod_apic__544_2842_init_lapic_sysfs1
+ffffffff8248f8fc d __initcall__kmod_cpu__603_1624_alloc_frozen_cpus1
+ffffffff8248f900 d __initcall__kmod_cpu__605_1671_cpu_hotplug_pm_sync_init1
+ffffffff8248f904 d __initcall__kmod_workqueue__437_5698_wq_sysfs_init1
+ffffffff8248f908 d __initcall__kmod_ksysfs__275_273_ksysfs_init1
+ffffffff8248f90c d __initcall__kmod_build_utility__891_844_schedutil_gov_init1
+ffffffff8248f910 d __initcall__kmod_main__340_940_pm_init1
+ffffffff8248f914 d __initcall__kmod_update__565_240_rcu_set_runtime_mode1
+ffffffff8248f918 d __initcall__kmod_jiffies__193_69_init_jiffies_clocksource1
+ffffffff8248f91c d __initcall__kmod_core__294_1153_futex_init1
+ffffffff8248f920 d __initcall__kmod_cgroup__719_6185_cgroup_wq_init1
+ffffffff8248f924 d __initcall__kmod_cgroup_v1__384_1280_cgroup1_wq_init1
+ffffffff8248f928 d __initcall__kmod_trace_eprobe__299_1081_trace_events_eprobe_init_early1
+ffffffff8248f92c d __initcall__kmod_trace_events_synth__310_2249_trace_events_synth_init_early1
+ffffffff8248f930 d __initcall__kmod_fsnotify__282_601_fsnotify_init1
+ffffffff8248f934 d __initcall__kmod_locks__479_2939_filelock_init1
+ffffffff8248f938 d __initcall__kmod_binfmt_misc__303_834_init_misc_binfmt1
+ffffffff8248f93c d __initcall__kmod_binfmt_script__232_156_init_script_binfmt1
+ffffffff8248f940 d __initcall__kmod_binfmt_elf__347_2345_init_elf_binfmt1
+ffffffff8248f944 d __initcall__kmod_debugfs__302_906_debugfs_init1
+ffffffff8248f948 d __initcall__kmod_tracefs__274_645_tracefs_init1
+ffffffff8248f94c d __initcall__kmod_inode__282_350_securityfs_init1
+ffffffff8248f950 d __initcall__kmod_gpiolib__378_4474_gpiolib_dev_init1
+ffffffff8248f954 d __initcall__kmod_virtio__280_568_virtio_init1
+ffffffff8248f958 d __initcall__kmod_iommu__427_2590_iommu_init1
+ffffffff8248f95c d __initcall__kmod_component__240_118_component_debug_init1
+ffffffff8248f960 d __initcall__kmod_cpufreq__591_2975_cpufreq_core_init1
+ffffffff8248f964 d __initcall__kmod_cpufreq_performance__213_44_cpufreq_gov_performance_init1
+ffffffff8248f968 d __initcall__kmod_cpufreq_powersave__213_38_cpufreq_gov_powersave_init1
+ffffffff8248f96c d __initcall__kmod_cpufreq_conservative__234_343_CPU_FREQ_GOV_CONSERVATIVE_init1
+ffffffff8248f970 d __initcall__kmod_cpuidle__566_797_cpuidle_init1
+ffffffff8248f974 d __initcall__kmod_socket__640_3209_sock_init1
+ffffffff8248f978 d __initcall__kmod_sock__864_3777_net_inuse_init1
+ffffffff8248f97c d __initcall__kmod_net_namespace__511_385_net_defaults_init1
+ffffffff8248f980 d __initcall__kmod_flow_dissector__700_1961_init_default_flow_dissectors1
+ffffffff8248f984 d __initcall__kmod_af_netlink__676_2962_netlink_proto_init1
+ffffffff8248f988 d __initcall__kmod_genetlink__510_1498_genl_init1
+ffffffff8248f98c d __initcall__kmod_cpu__339_407_bsp_pm_check_init1
+ffffffff8248f990 D __initcall2_start
+ffffffff8248f990 d __initcall__kmod_irqdesc__201_334_irq_sysfs_init2
+ffffffff8248f994 d __initcall__kmod_audit__531_1712_audit_init2
+ffffffff8248f998 d __initcall__kmod_tracepoint__214_140_release_early_probes2
+ffffffff8248f99c d __initcall__kmod_backing_dev__572_232_bdi_class_init2
+ffffffff8248f9a0 d __initcall__kmod_mm_init__340_206_mm_sysfs_init2
+ffffffff8248f9a4 d __initcall__kmod_page_alloc__702_8978_init_per_zone_wmark_min2
+ffffffff8248f9a8 d __initcall__kmod_gpiolib_acpi__260_1645_acpi_gpio_setup_params2
+ffffffff8248f9ac d __initcall__kmod_probe__273_109_pcibus_class_init2
+ffffffff8248f9b0 d __initcall__kmod_pci_driver__343_1726_pci_driver_init2
+ffffffff8248f9b4 d __initcall__kmod_tty_io__309_3518_tty_class_init2
+ffffffff8248f9b8 d __initcall__kmod_vt__307_4325_vtconsole_class_init2
+ffffffff8248f9bc d __initcall__kmod_iommu_sysfs__266_47_iommu_dev_init2
+ffffffff8248f9c0 d __initcall__kmod_core__397_700_devlink_class_init2
+ffffffff8248f9c4 d __initcall__kmod_swnode__218_1167_software_node_init2
+ffffffff8248f9c8 d __initcall__kmod_wakeup__574_1240_wakeup_sources_debugfs_init2
+ffffffff8248f9cc d __initcall__kmod_wakeup_stats__199_217_wakeup_sources_sysfs_init2
+ffffffff8248f9d0 d __initcall__kmod_regmap__520_3513_regmap_initcall2
+ffffffff8248f9d4 d __initcall__kmod_syscon__205_329_syscon_init2
+ffffffff8248f9d8 d __initcall__kmod_thermal_sys__400_1514_thermal_init2
+ffffffff8248f9dc d __initcall__kmod_menu__188_579_init_menu2
+ffffffff8248f9e0 d __initcall__kmod_pcc__202_758_pcc_init2
+ffffffff8248f9e4 d __initcall__kmod_amd_bus__270_404_amd_postcore_init2
+ffffffff8248f9e8 d __initcall__kmod_kobject_uevent__500_814_kobject_uevent_init2
+ffffffff8248f9ec D __initcall3_start
+ffffffff8248f9ec d __initcall__kmod_bts__288_625_bts_init3
+ffffffff8248f9f0 d __initcall__kmod_pt__309_1814_pt_init3
+ffffffff8248f9f4 d __initcall__kmod_ksysfs__260_401_boot_params_ksysfs_init3
+ffffffff8248f9f8 d __initcall__kmod_bootflag__241_102_sbf_init3
+ffffffff8248f9fc d __initcall__kmod_kdebugfs__257_195_arch_kdebugfs_init3
+ffffffff8248fa00 d __initcall__kmod_xstate__369_1469_xfd_update_static_branch3
+ffffffff8248fa04 d __initcall__kmod_intel_pconfig__12_82_intel_pconfig_init3
+ffffffff8248fa08 d __initcall__kmod_if__224_424_mtrr_if_init3
+ffffffff8248fa0c d __initcall__kmod_vmware__210_327_activate_jump_labels3
+ffffffff8248fa10 d __initcall__kmod_cstate__215_229_ffh_cstate_init3
+ffffffff8248fa14 d __initcall__kmod_kvm__358_693_kvm_alloc_cpumask3
+ffffffff8248fa18 d __initcall__kmod_kvm__362_1032_activate_jump_labels3
+ffffffff8248fa1c d __initcall__kmod_cryptomgr__363_257_cryptomgr_init3
+ffffffff8248fa20 d __initcall__kmod_pci_acpi__273_1493_acpi_pci_init3
+ffffffff8248fa24 d __initcall__kmod_dma_iommu__293_1712_iommu_dma_init3
+ffffffff8248fa28 d __initcall__kmod_dmi_id__199_259_dmi_id_init3
+ffffffff8248fa2c d __initcall__kmod_init__270_51_pci_arch_init3
+ffffffff8248fa30 d __initcall__kmod_platform__330_604_of_platform_default_populate_init3s
+ffffffff8248fa34 D __initcall4_start
+ffffffff8248fa34 d __initcall__kmod_vma__343_458_init_vdso4
+ffffffff8248fa38 d __initcall__kmod_core__341_6656_fixup_ht_bug4
+ffffffff8248fa3c d __initcall__kmod_topology__201_162_topology_init4
+ffffffff8248fa40 d __initcall__kmod_intel_epb__197_235_intel_epb_init4
+ffffffff8248fa44 d __initcall__kmod_mtrr__273_887_mtrr_init_finialize4
+ffffffff8248fa48 d __initcall__kmod_user__204_257_uid_cache_init4
+ffffffff8248fa4c d __initcall__kmod_params__314_974_param_sysfs_init4
+ffffffff8248fa50 d __initcall__kmod_ucount__172_376_user_namespace_sysctl_init4
+ffffffff8248fa54 d __initcall__kmod_build_utility__906_231_proc_schedstat_init4
+ffffffff8248fa58 d __initcall__kmod_poweroff__81_45_pm_sysrq_init4
+ffffffff8248fa5c d __initcall__kmod_profile__298_553_create_proc_profile4
+ffffffff8248fa60 d __initcall__kmod_crash_core__266_514_crash_save_vmcoreinfo_init4
+ffffffff8248fa64 d __initcall__kmod_kexec_core__348_1128_crash_notes_memory_init4
+ffffffff8248fa68 d __initcall__kmod_cgroup__732_7073_cgroup_sysfs_init4
+ffffffff8248fa6c d __initcall__kmod_namespace__270_157_cgroup_namespaces_init4
+ffffffff8248fa70 d __initcall__kmod_hung_task__642_406_hung_task_init4
+ffffffff8248fa74 d __initcall__kmod_trace__386_9737_trace_eval_init4
+ffffffff8248fa78 d __initcall__kmod_oom_kill__447_741_oom_init4
+ffffffff8248fa7c d __initcall__kmod_backing_dev__574_242_default_bdi_init4
+ffffffff8248fa80 d __initcall__kmod_backing_dev__593_762_cgwb_init4
+ffffffff8248fa84 d __initcall__kmod_percpu__428_3463_percpu_enable_async4
+ffffffff8248fa88 d __initcall__kmod_compaction__552_3091_kcompactd_init4
+ffffffff8248fa8c d __initcall__kmod_mmap__429_3756_init_user_reserve4
+ffffffff8248fa90 d __initcall__kmod_mmap__433_3777_init_admin_reserve4
+ffffffff8248fa94 d __initcall__kmod_mmap__435_3847_init_reserve_notifier4
+ffffffff8248fa98 d __initcall__kmod_swap_state__352_909_swap_init_sysfs4
+ffffffff8248fa9c d __initcall__kmod_swapfile__407_3704_swapfile_init4
+ffffffff8248faa0 d __initcall__kmod_huge_memory__409_521_hugepage_init4
+ffffffff8248faa4 d __initcall__kmod_memcontrol__1064_7325_mem_cgroup_init4
+ffffffff8248faa8 d __initcall__kmod_memcontrol__1073_7817_mem_cgroup_swap_init4
+ffffffff8248faac d __initcall__kmod_core__295_1301_damon_init4
+ffffffff8248fab0 d __initcall__kmod_paddr__324_319_damon_pa_initcall4
+ffffffff8248fab4 d __initcall__kmod_seqiv__281_183_seqiv_module_init4
+ffffffff8248fab8 d __initcall__kmod_echainiv__281_160_echainiv_module_init4
+ffffffff8248fabc d __initcall__kmod_hmac__281_258_hmac_module_init4
+ffffffff8248fac0 d __initcall__kmod_xcbc__191_270_crypto_xcbc_module_init4
+ffffffff8248fac4 d __initcall__kmod_crypto_null__274_221_crypto_null_mod_init4
+ffffffff8248fac8 d __initcall__kmod_md5__192_245_md5_mod_init4
+ffffffff8248facc d __initcall__kmod_sha1_generic__269_89_sha1_generic_mod_init4
+ffffffff8248fad0 d __initcall__kmod_sha256_generic__270_101_sha256_generic_mod_init4
+ffffffff8248fad4 d __initcall__kmod_sha512_generic__270_218_sha512_generic_mod_init4
+ffffffff8248fad8 d __initcall__kmod_blake2b_generic__192_174_blake2b_mod_init4
+ffffffff8248fadc d __initcall__kmod_cbc__191_218_crypto_cbc_module_init4
+ffffffff8248fae0 d __initcall__kmod_ctr__193_355_crypto_ctr_module_init4
+ffffffff8248fae4 d __initcall__kmod_xctr__191_185_crypto_xctr_module_init4
+ffffffff8248fae8 d __initcall__kmod_hctr2__286_575_hctr2_module_init4
+ffffffff8248faec d __initcall__kmod_adiantum__290_613_adiantum_module_init4
+ffffffff8248faf0 d __initcall__kmod_nhpoly1305__206_248_nhpoly1305_mod_init4
+ffffffff8248faf4 d __initcall__kmod_gcm__283_1159_crypto_gcm_module_init4
+ffffffff8248faf8 d __initcall__kmod_chacha20poly1305__283_671_chacha20poly1305_module_init4
+ffffffff8248fafc d __initcall__kmod_cryptd__283_1097_cryptd_init4
+ffffffff8248fb00 d __initcall__kmod_des_generic__191_125_des_generic_mod_init4
+ffffffff8248fb04 d __initcall__kmod_aes_generic__194_1314_aes_init4
+ffffffff8248fb08 d __initcall__kmod_chacha_generic__191_128_chacha_generic_mod_init4
+ffffffff8248fb0c d __initcall__kmod_poly1305_generic__193_142_poly1305_mod_init4
+ffffffff8248fb10 d __initcall__kmod_deflate__270_334_deflate_mod_init4
+ffffffff8248fb14 d __initcall__kmod_crc32c_generic__191_161_crc32c_mod_init4
+ffffffff8248fb18 d __initcall__kmod_authenc__368_464_crypto_authenc_module_init4
+ffffffff8248fb1c d __initcall__kmod_authencesn__366_479_crypto_authenc_esn_module_init4
+ffffffff8248fb20 d __initcall__kmod_lzo__266_158_lzo_mod_init4
+ffffffff8248fb24 d __initcall__kmod_lzo_rle__266_158_lzorle_mod_init4
+ffffffff8248fb28 d __initcall__kmod_lz4__191_155_lz4_mod_init4
+ffffffff8248fb2c d __initcall__kmod_ansi_cprng__197_470_prng_mod_init4
+ffffffff8248fb30 d __initcall__kmod_drbg__282_2148_drbg_init4
+ffffffff8248fb34 d __initcall__kmod_ghash_generic__194_178_ghash_mod_init4
+ffffffff8248fb38 d __initcall__kmod_polyval_generic__196_239_polyval_mod_init4
+ffffffff8248fb3c d __initcall__kmod_zstd__270_253_zstd_mod_init4
+ffffffff8248fb40 d __initcall__kmod_essiv__282_646_essiv_module_init4
+ffffffff8248fb44 d __initcall__kmod_bio__555_1762_init_bio4
+ffffffff8248fb48 d __initcall__kmod_blk_ioc__331_457_blk_ioc_init4
+ffffffff8248fb4c d __initcall__kmod_blk_mq__567_4953_blk_mq_init4
+ffffffff8248fb50 d __initcall__kmod_genhd__338_923_genhd_device_init4
+ffffffff8248fb54 d __initcall__kmod_blk_cgroup__391_2001_blkcg_init4
+ffffffff8248fb58 d __initcall__kmod_blk_crypto__316_99_bio_crypt_ctx_init4
+ffffffff8248fb5c d __initcall__kmod_blk_crypto_sysfs__314_173_blk_crypto_sysfs_init4
+ffffffff8248fb60 d __initcall__kmod_io_wq__512_1417_io_wq_init4
+ffffffff8248fb64 d __initcall__kmod_sg_pool__258_180_sg_pool_init4
+ffffffff8248fb68 d __initcall__kmod_gpiolib__380_4599_gpiolib_debugfs_init4
+ffffffff8248fb6c d __initcall__kmod_slot__273_381_pci_slot_init4
+ffffffff8248fb70 d __initcall__kmod_acpi__351_1420_acpi_init4
+ffffffff8248fb74 d __initcall__kmod_pnp__269_234_pnp_init4
+ffffffff8248fb78 d __initcall__kmod_misc__268_293_misc_init4
+ffffffff8248fb7c d __initcall__kmod_iommu__382_195_iommu_subsys_init4
+ffffffff8248fb80 d __initcall__kmod_libnvdimm__359_575_libnvdimm_init4
+ffffffff8248fb84 d __initcall__kmod_dax__311_593_dax_core_init4
+ffffffff8248fb88 d __initcall__kmod_dma_buf__296_1667_dma_buf_init4
+ffffffff8248fb8c d __initcall__kmod_dma_heap__305_470_dma_heap_init4
+ffffffff8248fb90 d __initcall__kmod_serio__214_1048_serio_init4
+ffffffff8248fb94 d __initcall__kmod_input_core__335_2695_input_init4
+ffffffff8248fb98 d __initcall__kmod_rtc_core__243_487_rtc_init4
+ffffffff8248fb9c d __initcall__kmod_power_supply__233_1560_power_supply_class_init4
+ffffffff8248fba0 d __initcall__kmod_edac_core__271_163_edac_init4
+ffffffff8248fba4 d __initcall__kmod_dmi_scan__268_810_dmi_init4
+ffffffff8248fba8 d __initcall__kmod_efi__275_433_efisubsys_init4
+ffffffff8248fbac d __initcall__kmod_ras__336_38_ras_init4
+ffffffff8248fbb0 d __initcall__kmod_nvmem_core__277_1952_nvmem_init4
+ffffffff8248fbb4 d __initcall__kmod_sock__871_4094_proto_init4
+ffffffff8248fbb8 d __initcall__kmod_dev__1372_11438_net_dev_init4
+ffffffff8248fbbc d __initcall__kmod_neighbour__690_3906_neigh_init4
+ffffffff8248fbc0 d __initcall__kmod_fib_notifier__376_199_fib_notifier_init4
+ffffffff8248fbc4 d __initcall__kmod_fib_rules__634_1319_fib_rules_init4
+ffffffff8248fbc8 d __initcall__kmod_netprio_cgroup__536_295_init_cgroup_netprio4
+ffffffff8248fbcc d __initcall__kmod_ethtool_nl__500_1077_ethnl_init4
+ffffffff8248fbd0 d __initcall__kmod_nexthop__700_3789_nexthop_init4
+ffffffff8248fbd4 d __initcall__kmod_legacy__271_77_pci_subsys_init4
+ffffffff8248fbd8 d __initcall__kmod_vsprintf__541_777_vsprintf_init_hashval4
+ffffffff8248fbdc d __initcall__kmod_vgaarb__277_1564_vga_arb_device_init4s
+ffffffff8248fbe0 d __initcall__kmod_watchdog__382_479_watchdog_init4s
+ffffffff8248fbe4 D __initcall5_start
+ffffffff8248fbe4 d __initcall__kmod_nmi__302_102_nmi_warning_debugfs5
+ffffffff8248fbe8 d __initcall__kmod_microcode__270_809_save_microcode_in_initrd5
+ffffffff8248fbec d __initcall__kmod_hpet__207_1165_hpet_late_init5
+ffffffff8248fbf0 d __initcall__kmod_amd_nb__276_519_init_amd_nbs5
+ffffffff8248fbf4 d __initcall__kmod_resource__296_2015_iomem_init_inode5
+ffffffff8248fbf8 d __initcall__kmod_clocksource__209_1057_clocksource_done_booting5
+ffffffff8248fbfc d __initcall__kmod_trace__390_9882_tracer_init_tracefs5
+ffffffff8248fc00 d __initcall__kmod_trace_printk__293_393_init_trace_printk_function_export5
+ffffffff8248fc04 d __initcall__kmod_trace_events_synth__312_2273_trace_events_synth_init5
+ffffffff8248fc08 d __initcall__kmod_trace_dynevent__289_271_init_dynamic_event5
+ffffffff8248fc0c d __initcall__kmod_trace_uprobe__562_1667_init_uprobe_trace5
+ffffffff8248fc10 d __initcall__kmod_secretmem__337_293_secretmem_init5
+ffffffff8248fc14 d __initcall__kmod_file_table__334_130_init_fs_stat_sysctls5
+ffffffff8248fc18 d __initcall__kmod_exec__717_2157_init_fs_exec_sysctls5
+ffffffff8248fc1c d __initcall__kmod_pipe__351_1511_init_pipe_fs5
+ffffffff8248fc20 d __initcall__kmod_namei__340_1076_init_fs_namei_sysctls5
+ffffffff8248fc24 d __initcall__kmod_dcache__269_202_init_fs_dcache_sysctls5
+ffffffff8248fc28 d __initcall__kmod_namespace__374_4719_init_fs_namespace_sysctls5
+ffffffff8248fc2c d __initcall__kmod_fs_writeback__711_1123_cgroup_writeback_init5
+ffffffff8248fc30 d __initcall__kmod_inotify_user__354_891_inotify_user_setup5
+ffffffff8248fc34 d __initcall__kmod_eventpoll__594_2419_eventpoll_init5
+ffffffff8248fc38 d __initcall__kmod_anon_inodes__269_270_anon_inode_init5
+ffffffff8248fc3c d __initcall__kmod_locks__477_2916_proc_locks_init5
+ffffffff8248fc40 d __initcall__kmod_coredump__688_985_init_fs_coredump_sysctls5
+ffffffff8248fc44 d __initcall__kmod_iomap__446_1553_iomap_init5
+ffffffff8248fc48 d __initcall__kmod_proc__222_19_proc_cmdline_init5
+ffffffff8248fc4c d __initcall__kmod_proc__240_98_proc_consoles_init5
+ffffffff8248fc50 d __initcall__kmod_proc__252_28_proc_cpuinfo_init5
+ffffffff8248fc54 d __initcall__kmod_proc__302_64_proc_devices_init5
+ffffffff8248fc58 d __initcall__kmod_proc__222_42_proc_interrupts_init5
+ffffffff8248fc5c d __initcall__kmod_proc__259_37_proc_loadavg_init5
+ffffffff8248fc60 d __initcall__kmod_proc__323_177_proc_meminfo_init5
+ffffffff8248fc64 d __initcall__kmod_proc__232_242_proc_stat_init5
+ffffffff8248fc68 d __initcall__kmod_proc__222_49_proc_uptime_init5
+ffffffff8248fc6c d __initcall__kmod_proc__222_27_proc_version_init5
+ffffffff8248fc70 d __initcall__kmod_proc__222_37_proc_softirqs_init5
+ffffffff8248fc74 d __initcall__kmod_proc__222_63_proc_kmsg_init5
+ffffffff8248fc78 d __initcall__kmod_proc__329_342_proc_page_init5
+ffffffff8248fc7c d __initcall__kmod_proc__222_96_proc_boot_config_init5
+ffffffff8248fc80 d __initcall__kmod_ramfs__307_299_init_ramfs_fs5
+ffffffff8248fc84 d __initcall__kmod_dynamic_debug__548_1456_dynamic_debug_init_control5
+ffffffff8248fc88 d __initcall__kmod_acpi__317_183_acpi_event_init5
+ffffffff8248fc8c d __initcall__kmod_pnp__199_113_pnp_system_init5
+ffffffff8248fc90 d __initcall__kmod_pnp__201_314_pnpacpi_init5
+ffffffff8248fc94 d __initcall__kmod_mem__334_787_chr_dev_init5
+ffffffff8248fc98 d __initcall__kmod_rng_core__249_718_hwrng_modinit5
+ffffffff8248fc9c d __initcall__kmod_firmware_class__340_1659_firmware_class_init5
+ffffffff8248fca0 d __initcall__kmod_acpi_pm__279_220_init_acpi_pm_clocksource5
+ffffffff8248fca4 d __initcall__kmod_sysctl_net_core__607_687_sysctl_core_init5
+ffffffff8248fca8 d __initcall__kmod_eth__597_492_eth_offload_init5
+ffffffff8248fcac d __initcall__kmod_af_inet__792_1923_ipv4_offload_init5
+ffffffff8248fcb0 d __initcall__kmod_af_inet__795_2056_inet_init5
+ffffffff8248fcb4 d __initcall__kmod_unix__578_3782_af_unix_init5
+ffffffff8248fcb8 d __initcall__kmod_ip6_offload__638_488_ipv6_offload_init5
+ffffffff8248fcbc d __initcall__kmod_i386__271_373_pcibios_assign_resources5
+ffffffff8248fcc0 d __initcall__kmod_quirks__328_195_pci_apply_final_quirks5s
+ffffffff8248fcc4 d __initcall__kmod_acpi__284_141_acpi_reserve_resources5s
+ffffffff8248fcc8 d __initcall__kmod_initramfs__290_762_populate_rootfsrootfs
+ffffffff8248fcc8 D __initcallrootfs_start
+ffffffff8248fccc d __initcall__kmod_pci_dma__275_208_pci_iommu_initrootfs
+ffffffff8248fcd0 D __initcall6_start
+ffffffff8248fcd0 d __initcall__kmod_rapl__286_867_rapl_pmu_init6
+ffffffff8248fcd4 d __initcall__kmod_ibs__298_1542_amd_ibs_init6
+ffffffff8248fcd8 d __initcall__kmod_amd_uncore__294_785_amd_uncore_init6
+ffffffff8248fcdc d __initcall__kmod_msr__284_316_msr_init6
+ffffffff8248fce0 d __initcall__kmod_intel_uncore__293_1913_intel_uncore_init6
+ffffffff8248fce4 d __initcall__kmod_intel_cstate__289_787_cstate_pmu_init6
+ffffffff8248fce8 d __initcall__kmod_setup__362_1363_register_kernel_offset_dumper6
+ffffffff8248fcec d __initcall__kmod_i8259__217_435_i8259A_init_ops6
+ffffffff8248fcf0 d __initcall__kmod_tsc__253_1436_init_tsc_clocksource6
+ffffffff8248fcf4 d __initcall__kmod_rtc__276_162_add_rtc_cmos6
+ffffffff8248fcf8 d __initcall__kmod_i8237__183_76_i8237A_init_ops6
+ffffffff8248fcfc d __initcall__kmod_umwait__328_238_umwait_init6
+ffffffff8248fd00 d __initcall__kmod_io_apic__276_2463_ioapic_init_ops6
+ffffffff8248fd04 d __initcall__kmod_pcspeaker__197_14_add_pcspkr6
+ffffffff8248fd08 d __initcall__kmod_devicetree__270_61_add_bus_probe6
+ffffffff8248fd0c d __initcall__kmod_audit_64__263_85_audit_classes_init6
+ffffffff8248fd10 d __initcall__kmod_sha256_ssse3__267_403_sha256_ssse3_mod_init6
+ffffffff8248fd14 d __initcall__kmod_sha512_ssse3__267_334_sha512_ssse3_mod_init6
+ffffffff8248fd18 d __initcall__kmod_polyval_clmulni__196_206_polyval_clmulni_mod_init6
+ffffffff8248fd1c d __initcall__kmod_exec_domain__284_35_proc_execdomains_init6
+ffffffff8248fd20 d __initcall__kmod_panic__304_746_register_warn_debugfs6
+ffffffff8248fd24 d __initcall__kmod_cpu__613_2600_cpuhp_sysfs_init6
+ffffffff8248fd28 d __initcall__kmod_resource__268_149_ioresources_init6
+ffffffff8248fd2c d __initcall__kmod_build_utility__1049_1575_psi_proc_init6
+ffffffff8248fd30 d __initcall__kmod_pm__323_248_irq_pm_init_ops6
+ffffffff8248fd34 d __initcall__kmod_procfs__266_146_proc_modules_init6
+ffffffff8248fd38 d __initcall__kmod_timer__486_276_timer_sysctl_init6
+ffffffff8248fd3c d __initcall__kmod_timekeeping__302_1928_timekeeping_init_ops6
+ffffffff8248fd40 d __initcall__kmod_clocksource__219_1458_init_clocksource_sysfs6
+ffffffff8248fd44 d __initcall__kmod_timer_list__269_359_init_timer_list_procfs6
+ffffffff8248fd48 d __initcall__kmod_alarmtimer__341_964_alarmtimer_init6
+ffffffff8248fd4c d __initcall__kmod_posix_timers__290_280_init_posix_timers6
+ffffffff8248fd50 d __initcall__kmod_clockevents__208_777_clockevents_init_sysfs6
+ffffffff8248fd54 d __initcall__kmod_dma__222_144_proc_dma_init6
+ffffffff8248fd58 d __initcall__kmod_kallsyms__416_961_kallsyms_init6
+ffffffff8248fd5c d __initcall__kmod_audit_watch__318_503_audit_watch_init6
+ffffffff8248fd60 d __initcall__kmod_audit_fsnotify__318_193_audit_fsnotify_init6
+ffffffff8248fd64 d __initcall__kmod_audit_tree__322_1086_audit_tree_init6
+ffffffff8248fd68 d __initcall__kmod_seccomp__422_2406_seccomp_sysctl_init6
+ffffffff8248fd6c d __initcall__kmod_utsname_sysctl__145_154_utsname_sysctl_init6
+ffffffff8248fd70 d __initcall__kmod_tracepoint__238_737_init_tracepoints6
+ffffffff8248fd74 d __initcall__kmod_core__628_13622_perf_event_sysfs_init6
+ffffffff8248fd78 d __initcall__kmod_vmscan__767_7870_kswapd_init6
+ffffffff8248fd7c d __initcall__kmod_vmstat__362_2254_extfrag_debug_init6
+ffffffff8248fd80 d __initcall__kmod_mm_init__338_194_mm_compute_batch_init6
+ffffffff8248fd84 d __initcall__kmod_slab_common__480_1328_slab_proc_init6
+ffffffff8248fd88 d __initcall__kmod_workingset__357_750_workingset_init6
+ffffffff8248fd8c d __initcall__kmod_vmalloc__398_4205_proc_vmalloc_init6
+ffffffff8248fd90 d __initcall__kmod_swapfile__377_2701_procswaps_init6
+ffffffff8248fd94 d __initcall__kmod_slub__476_6078_slab_sysfs_init6
+ffffffff8248fd98 d __initcall__kmod_slub__479_6293_slab_debugfs_init6
+ffffffff8248fd9c d __initcall__kmod_zsmalloc__360_2366_zs_init6
+ffffffff8248fda0 d __initcall__kmod_reclaim__219_284_damon_reclaim_init6
+ffffffff8248fda4 d __initcall__kmod_fcntl__315_1041_fcntl_init6
+ffffffff8248fda8 d __initcall__kmod_filesystems__286_258_proc_filesystems_init6
+ffffffff8248fdac d __initcall__kmod_fs_writeback__726_2339_start_dirtytime_writeback6
+ffffffff8248fdb0 d __initcall__kmod_direct_io__307_1346_dio_init6
+ffffffff8248fdb4 d __initcall__kmod_userfaultfd__364_2191_userfaultfd_init6
+ffffffff8248fdb8 d __initcall__kmod_aio__342_307_aio_setup6
+ffffffff8248fdbc d __initcall__kmod_mbcache__242_440_mbcache_init6
+ffffffff8248fdc0 d __initcall__kmod_devpts__273_637_init_devpts_fs6
+ffffffff8248fdc4 d __initcall__kmod_ext4__1657_7310_ext4_init_fs6
+ffffffff8248fdc8 d __initcall__kmod_jbd2__615_3198_journal_init6
+ffffffff8248fdcc d __initcall__kmod_nls_cp437__189_384_init_nls_cp4376
+ffffffff8248fdd0 d __initcall__kmod_nls_cp737__189_347_init_nls_cp7376
+ffffffff8248fdd4 d __initcall__kmod_nls_cp775__189_316_init_nls_cp7756
+ffffffff8248fdd8 d __initcall__kmod_nls_cp850__189_312_init_nls_cp8506
+ffffffff8248fddc d __initcall__kmod_nls_cp852__189_334_init_nls_cp8526
+ffffffff8248fde0 d __initcall__kmod_nls_cp855__189_296_init_nls_cp8556
+ffffffff8248fde4 d __initcall__kmod_nls_cp857__189_298_init_nls_cp8576
+ffffffff8248fde8 d __initcall__kmod_nls_cp860__189_361_init_nls_cp8606
+ffffffff8248fdec d __initcall__kmod_nls_cp861__189_384_init_nls_cp8616
+ffffffff8248fdf0 d __initcall__kmod_nls_cp862__189_418_init_nls_cp8626
+ffffffff8248fdf4 d __initcall__kmod_nls_cp863__189_378_init_nls_cp8636
+ffffffff8248fdf8 d __initcall__kmod_nls_cp864__189_404_init_nls_cp8646
+ffffffff8248fdfc d __initcall__kmod_nls_cp865__189_384_init_nls_cp8656
+ffffffff8248fe00 d __initcall__kmod_nls_cp866__189_302_init_nls_cp8666
+ffffffff8248fe04 d __initcall__kmod_nls_cp869__189_312_init_nls_cp8696
+ffffffff8248fe08 d __initcall__kmod_nls_cp874__189_271_init_nls_cp8746
+ffffffff8248fe0c d __initcall__kmod_nls_cp932__189_7929_init_nls_cp9326
+ffffffff8248fe10 d __initcall__kmod_nls_euc_jp__189_577_init_nls_euc_jp6
+ffffffff8248fe14 d __initcall__kmod_nls_cp936__189_11107_init_nls_cp9366
+ffffffff8248fe18 d __initcall__kmod_nls_cp949__189_13942_init_nls_cp9496
+ffffffff8248fe1c d __initcall__kmod_nls_cp950__189_9478_init_nls_cp9506
+ffffffff8248fe20 d __initcall__kmod_nls_cp1250__189_343_init_nls_cp12506
+ffffffff8248fe24 d __initcall__kmod_nls_cp1251__189_298_init_nls_cp12516
+ffffffff8248fe28 d __initcall__kmod_nls_ascii__189_163_init_nls_ascii6
+ffffffff8248fe2c d __initcall__kmod_nls_iso8859_1__189_254_init_nls_iso8859_16
+ffffffff8248fe30 d __initcall__kmod_nls_iso8859_2__189_305_init_nls_iso8859_26
+ffffffff8248fe34 d __initcall__kmod_nls_iso8859_3__189_305_init_nls_iso8859_36
+ffffffff8248fe38 d __initcall__kmod_nls_iso8859_4__189_305_init_nls_iso8859_46
+ffffffff8248fe3c d __initcall__kmod_nls_iso8859_5__189_269_init_nls_iso8859_56
+ffffffff8248fe40 d __initcall__kmod_nls_iso8859_6__189_260_init_nls_iso8859_66
+ffffffff8248fe44 d __initcall__kmod_nls_iso8859_7__189_314_init_nls_iso8859_76
+ffffffff8248fe48 d __initcall__kmod_nls_cp1255__189_380_init_nls_cp12556
+ffffffff8248fe4c d __initcall__kmod_nls_iso8859_9__189_269_init_nls_iso8859_96
+ffffffff8248fe50 d __initcall__kmod_nls_iso8859_13__189_282_init_nls_iso8859_136
+ffffffff8248fe54 d __initcall__kmod_nls_iso8859_14__189_338_init_nls_iso8859_146
+ffffffff8248fe58 d __initcall__kmod_nls_iso8859_15__189_304_init_nls_iso8859_156
+ffffffff8248fe5c d __initcall__kmod_nls_koi8_r__189_320_init_nls_koi8_r6
+ffffffff8248fe60 d __initcall__kmod_nls_koi8_u__189_327_init_nls_koi8_u6
+ffffffff8248fe64 d __initcall__kmod_nls_koi8_ru__189_79_init_nls_koi8_ru6
+ffffffff8248fe68 d __initcall__kmod_nls_utf8__189_65_init_nls_utf86
+ffffffff8248fe6c d __initcall__kmod_mac_celtic__189_598_init_nls_macceltic6
+ffffffff8248fe70 d __initcall__kmod_mac_centeuro__189_528_init_nls_maccenteuro6
+ffffffff8248fe74 d __initcall__kmod_mac_croatian__189_598_init_nls_maccroatian6
+ffffffff8248fe78 d __initcall__kmod_mac_cyrillic__189_493_init_nls_maccyrillic6
+ffffffff8248fe7c d __initcall__kmod_mac_gaelic__189_563_init_nls_macgaelic6
+ffffffff8248fe80 d __initcall__kmod_mac_greek__189_493_init_nls_macgreek6
+ffffffff8248fe84 d __initcall__kmod_mac_iceland__189_598_init_nls_maciceland6
+ffffffff8248fe88 d __initcall__kmod_mac_inuit__189_528_init_nls_macinuit6
+ffffffff8248fe8c d __initcall__kmod_mac_romanian__189_598_init_nls_macromanian6
+ffffffff8248fe90 d __initcall__kmod_mac_roman__189_633_init_nls_macroman6
+ffffffff8248fe94 d __initcall__kmod_mac_turkish__189_598_init_nls_macturkish6
+ffffffff8248fe98 d __initcall__kmod_fuse__467_2237_fuse_init6
+ffffffff8248fe9c d __initcall__kmod_erofs__447_1121_erofs_module_init6
+ffffffff8248fea0 d __initcall__kmod_selinux__562_2251_init_sel_fs6
+ffffffff8248fea4 d __initcall__kmod_selinux__329_121_selnl_init6
+ffffffff8248fea8 d __initcall__kmod_selinux__561_279_sel_netif_init6
+ffffffff8248feac d __initcall__kmod_selinux__562_305_sel_netnode_init6
+ffffffff8248feb0 d __initcall__kmod_selinux__562_238_sel_netport_init6
+ffffffff8248feb4 d __initcall__kmod_selinux__641_3831_aurule_init6
+ffffffff8248feb8 d __initcall__kmod_jitterentropy_rng__191_211_jent_mod_init6
+ffffffff8248febc d __initcall__kmod_fops__351_712_blkdev_init6
+ffffffff8248fec0 d __initcall__kmod_genhd__342_1335_proc_genhd_init6
+ffffffff8248fec4 d __initcall__kmod_blk_iocost__500_3464_ioc_init6
+ffffffff8248fec8 d __initcall__kmod_mq_deadline__476_1242_deadline_init6
+ffffffff8248fecc d __initcall__kmod_kyber_iosched__535_1051_kyber_init6
+ffffffff8248fed0 d __initcall__kmod_bfq__560_7527_bfq_init6
+ffffffff8248fed4 d __initcall__kmod_io_uring__887_4146_io_uring_init6
+ffffffff8248fed8 d __initcall__kmod_libblake2s__191_69_blake2s_mod_init6
+ffffffff8248fedc d __initcall__kmod_libcrc32c__193_74_libcrc32c_mod_init6
+ffffffff8248fee0 d __initcall__kmod_percpu_counter__209_257_percpu_counter_startup6
+ffffffff8248fee4 d __initcall__kmod_simple_pm_bus__198_91_simple_pm_bus_driver_init6
+ffffffff8248fee8 d __initcall__kmod_gpio_generic__241_816_bgpio_driver_init6
+ffffffff8248feec d __initcall__kmod_pcieportdrv__271_252_pcie_portdrv_init6
+ffffffff8248fef0 d __initcall__kmod_proc__270_472_pci_proc_init6
+ffffffff8248fef4 d __initcall__kmod_pci_epc_core__296_849_pci_epc_init6
+ffffffff8248fef8 d __initcall__kmod_pci_epf_core__281_561_pci_epf_init6
+ffffffff8248fefc d __initcall__kmod_pcie_designware_plat__270_187_dw_plat_pcie_driver_init6
+ffffffff8248ff00 d __initcall__kmod_acpi__200_196_ged_driver_init6
+ffffffff8248ff04 d __initcall__kmod_ac__204_331_acpi_ac_init6
+ffffffff8248ff08 d __initcall__kmod_button__249_659_acpi_button_driver_init6
+ffffffff8248ff0c d __initcall__kmod_fan__204_456_acpi_fan_driver_init6
+ffffffff8248ff10 d __initcall__kmod_processor__216_308_acpi_processor_driver_init6
+ffffffff8248ff14 d __initcall__kmod_thermal__220_1222_acpi_thermal_init6
+ffffffff8248ff18 d __initcall__kmod_battery__331_1294_acpi_battery_init6
+ffffffff8248ff1c d __initcall__kmod_virtio_pci__289_647_virtio_pci_driver_init6
+ffffffff8248ff20 d __initcall__kmod_virtio_balloon__335_1128_virtio_balloon_driver_init6
+ffffffff8248ff24 d __initcall__kmod_n_null__266_63_n_null_init6
+ffffffff8248ff28 d __initcall__kmod_pty__268_947_pty_init6
+ffffffff8248ff2c d __initcall__kmod_sysrq__339_1202_sysrq_init6
+ffffffff8248ff30 d __initcall__kmod_8250__280_1249_serial8250_init6
+ffffffff8248ff34 d __initcall__kmod_8250_lpss__275_433_lpss8250_pci_driver_init6
+ffffffff8248ff38 d __initcall__kmod_8250_mid__275_397_mid8250_pci_driver_init6
+ffffffff8248ff3c d __initcall__kmod_8250_pericom__277_211_pericom8250_pci_driver_init6
+ffffffff8248ff40 d __initcall__kmod_8250_of__272_353_of_platform_serial_driver_init6
+ffffffff8248ff44 d __initcall__kmod_ttynull__266_106_ttynull_init6
+ffffffff8248ff48 d __initcall__kmod_random__391_1642_random_sysctls_init6
+ffffffff8248ff4c d __initcall__kmod_virtio_console__298_2293_virtio_console_init6
+ffffffff8248ff50 d __initcall__kmod_hpet__272_1042_hpet_init6
+ffffffff8248ff54 d __initcall__kmod_intel_rng__272_414_intel_rng_mod_init6
+ffffffff8248ff58 d __initcall__kmod_amd_rng__270_214_amd_rng_mod_init6
+ffffffff8248ff5c d __initcall__kmod_via_rng__190_212_via_rng_mod_init6
+ffffffff8248ff60 d __initcall__kmod_virtio_rng__271_262_virtio_rng_driver_init6
+ffffffff8248ff64 d __initcall__kmod_topology__266_194_topology_sysfs_init6
+ffffffff8248ff68 d __initcall__kmod_cacheinfo__200_723_cacheinfo_sysfs_init6
+ffffffff8248ff6c d __initcall__kmod_brd__340_528_brd_init6
+ffffffff8248ff70 d __initcall__kmod_loop__363_2273_loop_init6
+ffffffff8248ff74 d __initcall__kmod_virtio_blk__338_1307_virtio_blk_init6
+ffffffff8248ff78 d __initcall__kmod_zram__331_2162_zram_init6
+ffffffff8248ff7c d __initcall__kmod_nd_pmem__343_786_nd_pmem_driver_init6
+ffffffff8248ff80 d __initcall__kmod_nd_btt__346_1738_nd_btt_init6
+ffffffff8248ff84 d __initcall__kmod_of_pmem__294_106_of_pmem_region_driver_init6
+ffffffff8248ff88 d __initcall__kmod_loopback__536_280_blackhole_netdev_init6
+ffffffff8248ff8c d __initcall__kmod_uio__272_1086_uio_init6
+ffffffff8248ff90 d __initcall__kmod_i8042__361_1670_i8042_init6
+ffffffff8248ff94 d __initcall__kmod_serport__273_308_serport_init6
+ffffffff8248ff98 d __initcall__kmod_rtc_cmos__243_1557_cmos_init6
+ffffffff8248ff9c d __initcall__kmod_therm_throt__302_529_thermal_throttle_init_device6
+ffffffff8248ffa0 d __initcall__kmod_dm_mod__522_3395_dm_init6
+ffffffff8248ffa4 d __initcall__kmod_dm_bufio__341_2162_dm_bufio_init6
+ffffffff8248ffa8 d __initcall__kmod_dm_crypt__431_3674_dm_crypt_init6
+ffffffff8248ffac d __initcall__kmod_dm_verity__315_1515_dm_verity_init6
+ffffffff8248ffb0 d __initcall__kmod_dm_user__320_1282_dm_user_init6
+ffffffff8248ffb4 d __initcall__kmod_intel_pstate__565_3496_intel_pstate_init6
+ffffffff8248ffb8 d __initcall__kmod_cpuidle_haltpoll__199_143_haltpoll_init6
+ffffffff8248ffbc d __initcall__kmod_esrt__266_434_esrt_sysfs_init6
+ffffffff8248ffc0 d __initcall__kmod_sock_diag__565_340_sock_diag_init6
+ffffffff8248ffc4 d __initcall__kmod_gre_offload__618_286_gre_offload_init6
+ffffffff8248ffc8 d __initcall__kmod_sysctl_net_ipv4__628_1470_sysctl_ipv4_init6
+ffffffff8248ffcc d __initcall__kmod_ipip__624_658_ipip_init6
+ffffffff8248ffd0 d __initcall__kmod_gre__629_216_gre_init6
+ffffffff8248ffd4 d __initcall__kmod_ip_gre__631_1789_ipgre_init6
+ffffffff8248ffd8 d __initcall__kmod_ip_vti__622_722_vti_init6
+ffffffff8248ffdc d __initcall__kmod_esp4__655_1246_esp4_init6
+ffffffff8248ffe0 d __initcall__kmod_tunnel4__575_295_tunnel4_init6
+ffffffff8248ffe4 d __initcall__kmod_inet_diag__648_1481_inet_diag_init6
+ffffffff8248ffe8 d __initcall__kmod_tcp_diag__632_247_tcp_diag_init6
+ffffffff8248ffec d __initcall__kmod_udp_diag__540_296_udp_diag_init6
+ffffffff8248fff0 d __initcall__kmod_tcp_cubic__654_551_cubictcp_register6
+ffffffff8248fff4 d __initcall__kmod_xfrm_user__566_3816_xfrm_user_init6
+ffffffff8248fff8 d __initcall__kmod_xfrm_interface__725_1192_xfrmi_init6
+ffffffff8248fffc d __initcall__kmod_ipv6__745_1328_inet6_init6
+ffffffff82490000 d __initcall__kmod_esp6__715_1299_esp6_init6
+ffffffff82490004 d __initcall__kmod_ipcomp6__613_216_ipcomp6_init6
+ffffffff82490008 d __initcall__kmod_xfrm6_tunnel__562_402_xfrm6_tunnel_init6
+ffffffff8249000c d __initcall__kmod_tunnel6__587_303_tunnel6_init6
+ffffffff82490010 d __initcall__kmod_mip6__555_405_mip6_init6
+ffffffff82490014 d __initcall__kmod_ip6_vti__743_1329_vti6_tunnel_init6
+ffffffff82490018 d __initcall__kmod_sit__668_1955_sit_init6
+ffffffff8249001c d __initcall__kmod_ip6_tunnel__777_2366_ip6_tunnel_init6
+ffffffff82490020 d __initcall__kmod_ip6_gre__679_2424_ip6gre_init6
+ffffffff82490024 d __initcall__kmod_af_packet__664_4761_packet_init6
+ffffffff82490028 d __initcall__kmod_af_key__566_3923_ipsec_pfkey_init6
+ffffffff8249002c d __initcall__kmod_vsock__521_2450_vsock_init6
+ffffffff82490030 d __initcall__kmod_vsock_diag__498_174_vsock_diag_init6
+ffffffff82490034 d __initcall__kmod_vmw_vsock_virtio_transport__520_845_virtio_vsock_init6
+ffffffff82490038 d __initcall__kmod_vsock_loopback__500_187_vsock_loopback_init6
+ffffffff8249003c d __initcall__kmod_cpu__341_544_pm_check_save_msr6
+ffffffff82490040 D __initcall7_start
+ffffffff82490040 d __initcall__kmod_mounts__320_40_kernel_do_mounts_initrd_sysctls_init7
+ffffffff82490044 d __initcall__kmod_intel__292_1060_sld_mitigate_sysctl_init7
+ffffffff82490048 d __initcall__kmod_microcode__272_810_microcode_init7
+ffffffff8249004c d __initcall__kmod_boot__300_1026_hpet_insert_resource7
+ffffffff82490050 d __initcall__kmod_tsc_sync__185_119_start_sync_check_timer7
+ffffffff82490054 d __initcall__kmod_mpparse__271_945_update_mp_table7
+ffffffff82490058 d __initcall__kmod_apic__546_2982_lapic_insert_resource7
+ffffffff8249005c d __initcall__kmod_ipi__85_27_print_ipi_mode7
+ffffffff82490060 d __initcall__kmod_vector__534_1340_print_ICs7
+ffffffff82490064 d __initcall__kmod_kvm__355_620_setup_efi_kvm_sev_migration7
+ffffffff82490068 d __initcall__kmod_tlb__293_1323_create_tlb_single_page_flush_ceiling7
+ffffffff8249006c d __initcall__kmod_memtype__265_1236_pat_memtype_list_init7
+ffffffff82490070 d __initcall__kmod_pkeys__280_184_create_init_pkru_value7
+ffffffff82490074 d __initcall__kmod_aesni_intel__284_1314_aesni_init7
+ffffffff82490078 d __initcall__kmod_panic__292_109_kernel_panic_sysctls_init7
+ffffffff8249007c d __initcall__kmod_panic__294_128_kernel_panic_sysfs_init7
+ffffffff82490080 d __initcall__kmod_exit__689_101_kernel_exit_sysctls_init7
+ffffffff82490084 d __initcall__kmod_exit__691_120_kernel_exit_sysfs_init7
+ffffffff82490088 d __initcall__kmod_reboot__354_1310_reboot_ksysfs_init7
+ffffffff8249008c d __initcall__kmod_core__1222_4682_sched_core_sysctl_init7
+ffffffff82490090 d __initcall__kmod_fair__865_213_sched_fair_sysctl_init7
+ffffffff82490094 d __initcall__kmod_build_policy__892_65_sched_rt_sysctl_init7
+ffffffff82490098 d __initcall__kmod_build_policy__914_534_sched_pelt_sysctl_init7
+ffffffff8249009c d __initcall__kmod_build_policy__925_52_sched_dl_sysctl_init7
+ffffffff824900a0 d __initcall__kmod_build_utility__869_241_sched_clock_init_late7
+ffffffff824900a4 d __initcall__kmod_build_utility__895_345_sched_init_debug7
+ffffffff824900a8 d __initcall__kmod_qos__494_425_cpu_latency_qos_init7
+ffffffff824900ac d __initcall__kmod_main__337_467_pm_debugfs_init7
+ffffffff824900b0 d __initcall__kmod_wakeup_reason__325_438_wakeup_reason_init7
+ffffffff824900b4 d __initcall__kmod_printk__359_3362_printk_late_init7
+ffffffff824900b8 d __initcall__kmod_srcutree__496_1824_init_srcu_module_notifier7
+ffffffff824900bc d __initcall__kmod_swiotlb__323_946_swiotlb_create_default_debugfs7
+ffffffff824900c0 d __initcall__kmod_timekeeping_debug__325_44_tk_debug_sleep_time_init7
+ffffffff824900c4 d __initcall__kmod_kexec_core__343_952_kexec_core_sysctl_init7
+ffffffff824900c8 d __initcall__kmod_rstat__285_549_bpf_rstat_kfunc_init7
+ffffffff824900cc d __initcall__kmod_taskstats__327_724_taskstats_init7
+ffffffff824900d0 d __initcall__kmod_vmscan__730_6147_init_lru_gen7
+ffffffff824900d4 d __initcall__kmod_memory__486_4500_fault_around_debugfs7
+ffffffff824900d8 d __initcall__kmod_swapfile__380_2710_max_swapfiles_check7
+ffffffff824900dc d __initcall__kmod_core__347_743_kfence_debugfs_init7
+ffffffff824900e0 d __initcall__kmod_huge_memory__426_3202_split_huge_pages_debugfs7
+ffffffff824900e4 d __initcall__kmod_page_owner__338_745_pageowner_init7
+ffffffff824900e8 d __initcall__kmod_early_ioremap__322_99_check_early_ioremap_leak7
+ffffffff824900ec d __initcall__kmod_usercopy__322_276_set_hardened_usercopy7
+ffffffff824900f0 d __initcall__kmod_integrity__263_232_integrity_fs_init7
+ffffffff824900f4 d __initcall__kmod_crypto_algapi__395_1311_crypto_algapi_init7
+ffffffff824900f8 d __initcall__kmod_blk_timeout__317_99_blk_timeout_init7
+ffffffff824900fc d __initcall__kmod_pci__382_6732_pci_resource_alignment_sysfs_init7
+ffffffff82490100 d __initcall__kmod_pci_sysfs__271_1530_pci_sysfs_init7
+ffffffff82490104 d __initcall__kmod_core__405_1269_sync_state_resume_initcall7
+ffffffff82490108 d __initcall__kmod_dd__271_371_deferred_probe_initcall7
+ffffffff8249010c d __initcall__kmod_dm_mod__302_300_dm_init_init7
+ffffffff82490110 d __initcall__kmod_memmap__266_418_firmware_memmap_init7
+ffffffff82490114 d __initcall__kmod_reboot__240_78_efi_shutdown_init7
+ffffffff82490118 d __initcall__kmod_earlycon__271_50_efi_earlycon_unmap_fb7
+ffffffff8249011c d __initcall__kmod_tcp_cong__705_266_tcp_congestion_default7
+ffffffff82490120 d __initcall__kmod_mmconfig_shared__274_718_pci_mmcfg_late_insert_resources7
+ffffffff82490124 d __initcall__kmod_trace__388_9747_trace_eval_sync7s
+ffffffff82490128 d __initcall__kmod_trace__394_10396_late_trace_init7s
+ffffffff8249012c d __initcall__kmod_gpiolib_acpi__258_1492_acpi_gpio_handle_deferred_request_irqs7s
+ffffffff82490130 d __initcall__kmod_platform__332_611_of_platform_sync_state_init7s
+ffffffff82490134 D __con_initcall_start
+ffffffff82490134 d __initcall__kmod_vt__295_3548_con_initcon
+ffffffff82490134 D __initcall_end
+ffffffff82490138 d __initcall__kmod_hvc_console__269_246_hvc_console_initcon
+ffffffff8249013c d __initcall__kmod_8250__274_690_univ8250_console_initcon
+ffffffff82490140 D __con_initcall_end
+ffffffff82490140 D __initramfs_start
+ffffffff82490140 d __irf_start
+ffffffff82490340 D __initramfs_size
+ffffffff82490340 d __irf_end
+ffffffff82490348 r __cpu_dev_intel_cpu_dev
+ffffffff82490348 R __x86_cpu_dev_start
+ffffffff82490350 r __cpu_dev_amd_cpu_dev
+ffffffff82490358 r __cpu_dev_hygon_cpu_dev
+ffffffff82490360 r __cpu_dev_centaur_cpu_dev
+ffffffff82490368 r __cpu_dev_zhaoxin_cpu_dev
+ffffffff82490370 R __parainstructions
+ffffffff82490370 R __x86_cpu_dev_end
+ffffffff82490cd0 R __parainstructions_end
+ffffffff82490cd0 R __retpoline_sites
+ffffffff8249843c R __retpoline_sites_end
+ffffffff82498440 R __return_sites
+ffffffff824be2d4 R __return_sites_end
+ffffffff824be2d8 R __alt_instructions
+ffffffff824c48c0 R __alt_instructions_end
+ffffffff824c6690 D __apicdrivers
+ffffffff824c6690 d __apicdrivers_apic_x2apic_phys
+ffffffff824c6698 d __apicdrivers_apic_x2apic_cluster
+ffffffff824c66a0 d __apicdrivers_apic_physflatapic_flat
+ffffffff824c66b0 D __apicdrivers_end
+ffffffff824c66b0 t exit_amd_microcode
+ffffffff824c66bb t exit_amd_microcode
+ffffffff824c66c6 t intel_rapl_exit
+ffffffff824c66f8 t amd_uncore_exit
+ffffffff824c67ae t intel_uncore_exit
+ffffffff824c67f4 t cstate_pmu_exit
+ffffffff824c6855 t exit_amd_microcode
+ffffffff824c6860 t exit_amd_microcode
+ffffffff824c686b t exit_amd_microcode
+ffffffff824c6876 t exit_amd_microcode
+ffffffff824c6881 t ffh_cstate_exit
+ffffffff824c68a3 t exit_amd_microcode
+ffffffff824c68ae t aesni_exit
+ffffffff824c691a t sha256_ssse3_mod_fini
+ffffffff824c6969 t sha512_ssse3_mod_fini
+ffffffff824c69eb t polyval_clmulni_mod_exit
+ffffffff824c6a02 t zs_stat_exit
+ffffffff824c6a0d t zs_exit
+ffffffff824c6a31 t exit_misc_binfmt
+ffffffff824c6a54 t exit_script_binfmt
+ffffffff824c6a6b t exit_elf_binfmt
+ffffffff824c6a82 t mbcache_exit
+ffffffff824c6a99 t ext4_exit_fs
+ffffffff824c6b57 t jbd2_remove_jbd_stats_proc_entry
+ffffffff824c6b7a t journal_exit
+ffffffff824c6ba2 t exit_nls_cp437
+ffffffff824c6bb9 t exit_nls_cp737
+ffffffff824c6bd0 t exit_nls_cp775
+ffffffff824c6be7 t exit_nls_cp850
+ffffffff824c6bfe t exit_nls_cp852
+ffffffff824c6c15 t exit_nls_cp855
+ffffffff824c6c2c t exit_nls_cp857
+ffffffff824c6c43 t exit_nls_cp860
+ffffffff824c6c5a t exit_nls_cp861
+ffffffff824c6c71 t exit_nls_cp862
+ffffffff824c6c88 t exit_nls_cp863
+ffffffff824c6c9f t exit_nls_cp864
+ffffffff824c6cb6 t exit_nls_cp865
+ffffffff824c6ccd t exit_nls_cp866
+ffffffff824c6ce4 t exit_nls_cp869
+ffffffff824c6cfb t exit_nls_cp874
+ffffffff824c6d12 t exit_nls_cp932
+ffffffff824c6d29 t exit_nls_euc_jp
+ffffffff824c6d40 t exit_nls_cp936
+ffffffff824c6d57 t exit_nls_cp949
+ffffffff824c6d6e t exit_nls_cp950
+ffffffff824c6d85 t exit_nls_cp1250
+ffffffff824c6d9c t exit_nls_cp1251
+ffffffff824c6db3 t exit_nls_ascii
+ffffffff824c6dca t exit_nls_iso8859_1
+ffffffff824c6de1 t exit_nls_iso8859_2
+ffffffff824c6df8 t exit_nls_iso8859_3
+ffffffff824c6e0f t exit_nls_iso8859_4
+ffffffff824c6e26 t exit_nls_iso8859_5
+ffffffff824c6e3d t exit_nls_iso8859_6
+ffffffff824c6e54 t exit_nls_iso8859_7
+ffffffff824c6e6b t exit_nls_cp1255
+ffffffff824c6e82 t exit_nls_iso8859_9
+ffffffff824c6e99 t exit_nls_iso8859_13
+ffffffff824c6eb0 t exit_nls_iso8859_14
+ffffffff824c6ec7 t exit_nls_iso8859_15
+ffffffff824c6ede t exit_nls_koi8_r
+ffffffff824c6ef5 t exit_nls_koi8_u
+ffffffff824c6f0c t exit_nls_koi8_ru
+ffffffff824c6f23 t exit_nls_utf8
+ffffffff824c6f3a t exit_nls_macceltic
+ffffffff824c6f51 t exit_nls_maccenteuro
+ffffffff824c6f68 t exit_nls_maccroatian
+ffffffff824c6f7f t exit_nls_maccyrillic
+ffffffff824c6f96 t exit_nls_macgaelic
+ffffffff824c6fad t exit_nls_macgreek
+ffffffff824c6fc4 t exit_nls_maciceland
+ffffffff824c6fdb t exit_nls_macinuit
+ffffffff824c6ff2 t exit_nls_macromanian
+ffffffff824c7009 t exit_nls_macroman
+ffffffff824c7020 t exit_nls_macturkish
+ffffffff824c7037 t fuse_exit
+ffffffff824c7070 t erofs_module_exit
+ffffffff824c70c6 t crypto_algapi_exit
+ffffffff824c70df t crypto_exit_proc
+ffffffff824c70f8 t seqiv_module_exit
+ffffffff824c710f t echainiv_module_exit
+ffffffff824c7126 t cryptomgr_exit
+ffffffff824c714a t hmac_module_exit
+ffffffff824c7161 t crypto_xcbc_module_exit
+ffffffff824c7178 t crypto_null_mod_fini
+ffffffff824c71ac t md5_mod_fini
+ffffffff824c71c3 t sha1_generic_mod_fini
+ffffffff824c71da t sha256_generic_mod_fini
+ffffffff824c71f6 t sha512_generic_mod_fini
+ffffffff824c7212 t blake2b_mod_fini
+ffffffff824c722e t crypto_cbc_module_exit
+ffffffff824c7245 t crypto_ctr_module_exit
+ffffffff824c7261 t crypto_xctr_module_exit
+ffffffff824c7278 t hctr2_module_exit
+ffffffff824c7294 t adiantum_module_exit
+ffffffff824c72ab t nhpoly1305_mod_exit
+ffffffff824c72c2 t crypto_gcm_module_exit
+ffffffff824c72ea t chacha20poly1305_module_exit
+ffffffff824c7306 t cryptd_exit
+ffffffff824c732e t des_generic_mod_fini
+ffffffff824c734a t aes_fini
+ffffffff824c7361 t chacha_generic_mod_fini
+ffffffff824c737d t poly1305_mod_exit
+ffffffff824c7394 t deflate_mod_fini
+ffffffff824c73bc t crc32c_mod_fini
+ffffffff824c73d3 t crypto_authenc_module_exit
+ffffffff824c73ea t crypto_authenc_esn_module_exit
+ffffffff824c7401 t lzo_mod_fini
+ffffffff824c7424 t lzorle_mod_fini
+ffffffff824c7447 t lz4_mod_fini
+ffffffff824c746a t prng_mod_fini
+ffffffff824c7486 t drbg_exit
+ffffffff824c74a2 t jent_mod_exit
+ffffffff824c74b9 t ghash_mod_exit
+ffffffff824c74d0 t polyval_mod_exit
+ffffffff824c74e7 t zstd_mod_fini
+ffffffff824c750a t essiv_module_exit
+ffffffff824c7521 t ioc_exit
+ffffffff824c7538 t deadline_exit
+ffffffff824c754f t kyber_exit
+ffffffff824c7566 t bfq_exit
+ffffffff824c7595 t libcrc32c_mod_fini
+ffffffff824c75b0 t simple_pm_bus_driver_exit
+ffffffff824c75c7 t bgpio_driver_exit
+ffffffff824c75de t pci_epc_exit
+ffffffff824c75f5 t pci_epf_exit
+ffffffff824c760c t interrupt_stats_exit
+ffffffff824c7696 t acpi_ac_exit
+ffffffff824c76ad t acpi_button_driver_exit
+ffffffff824c76cd t acpi_fan_driver_exit
+ffffffff824c76e4 t acpi_processor_driver_exit
+ffffffff824c7756 t acpi_thermal_exit
+ffffffff824c7779 t battery_hook_exit
+ffffffff824c784d t acpi_battery_exit
+ffffffff824c788a t virtio_exit
+ffffffff824c78ad t virtio_pci_driver_exit
+ffffffff824c78c4 t virtio_balloon_driver_exit
+ffffffff824c78db t n_null_exit
+ffffffff824c78f2 t serial8250_exit
+ffffffff824c793d t lpss8250_pci_driver_exit
+ffffffff824c7954 t mid8250_pci_driver_exit
+ffffffff824c796b t pericom8250_pci_driver_exit
+ffffffff824c7982 t of_platform_serial_driver_exit
+ffffffff824c7999 t ttynull_exit
+ffffffff824c79e2 t virtio_console_fini
+ffffffff824c7a22 t unregister_miscdev
+ffffffff824c7a39 t hwrng_modexit
+ffffffff824c7a8c t intel_rng_mod_exit
+ffffffff824c7ab4 t amd_rng_mod_exit
+ffffffff824c7afe t via_rng_mod_exit
+ffffffff824c7b15 t virtio_rng_driver_exit
+ffffffff824c7b2c t deferred_probe_exit
+ffffffff824c7b45 t software_node_exit
+ffffffff824c7b68 t firmware_class_exit
+ffffffff824c7b97 t brd_exit
+ffffffff824c7bc4 t loop_exit
+ffffffff824c7cae t virtio_blk_fini
+ffffffff824c7ce3 t zram_exit
+ffffffff824c7cf3 t libnvdimm_exit
+ffffffff824c7d3e t nvdimm_devs_exit
+ffffffff824c7d55 t nd_pmem_driver_exit
+ffffffff824c7d6c t nd_btt_exit
+ffffffff824c7d83 t of_pmem_region_driver_exit
+ffffffff824c7d9a t dax_core_exit
+ffffffff824c7dd2 t dax_bus_exit
+ffffffff824c7de9 t dma_buf_deinit
+ffffffff824c7e24 t uio_exit
+ffffffff824c7e6d t serio_exit
+ffffffff824c7e92 t i8042_exit
+ffffffff824c7f19 t serport_exit
+ffffffff824c7f30 t input_exit
+ffffffff824c7f5b t cmos_exit
+ffffffff824c7f90 t power_supply_class_exit
+ffffffff824c7fa7 t watchdog_exit
+ffffffff824c7fc3 t watchdog_dev_exit
+ffffffff824c7ff6 t dm_exit
+ffffffff824c8028 t dm_bufio_exit
+ffffffff824c80ec t dm_crypt_exit
+ffffffff824c8103 t dm_verity_exit
+ffffffff824c811a t dm_user_exit
+ffffffff824c8131 t edac_exit
+ffffffff824c816b t cpufreq_gov_performance_exit
+ffffffff824c8182 t cpufreq_gov_powersave_exit
+ffffffff824c8199 t CPU_FREQ_GOV_CONSERVATIVE_exit
+ffffffff824c81b0 t haltpoll_exit
+ffffffff824c81c0 t nvmem_exit
+ffffffff824c81d7 t ipip_fini
+ffffffff824c8224 t gre_exit
+ffffffff824c8240 t ipgre_fini
+ffffffff824c82a1 t vti_fini
+ffffffff824c82f7 t esp4_fini
+ffffffff824c833d t tunnel4_fini
+ffffffff824c838e t inet_diag_exit
+ffffffff824c83e0 t tcp_diag_exit
+ffffffff824c83f7 t udp_diag_exit
+ffffffff824c841a t cubictcp_unregister
+ffffffff824c8431 t xfrm_user_exit
+ffffffff824c846c t xfrmi_fini
+ffffffff824c849e t af_unix_exit
+ffffffff824c84ef t esp6_fini
+ffffffff824c8535 t ipcomp6_fini
+ffffffff824c857b t xfrm6_tunnel_fini
+ffffffff824c85ee t tunnel6_fini
+ffffffff824c8672 t mip6_fini
+ffffffff824c86c4 t vti6_tunnel_cleanup
+ffffffff824c873c t sit_cleanup
+ffffffff824c8786 t ip6_tunnel_cleanup
+ffffffff824c87fd t ip6gre_fini
+ffffffff824c8849 t packet_exit
+ffffffff824c889a t ipsec_pfkey_exit
+ffffffff824c88eb t vsock_exit
+ffffffff824c8918 t vsock_diag_exit
+ffffffff824c892f t virtio_vsock_exit
+ffffffff824c895e t vsock_loopback_exit
+ffffffff824c9000 T __init_end
+ffffffff824c9000 R __smp_locks
+ffffffff824d2000 B __bss_start
+ffffffff824d2000 R __nosave_begin
+ffffffff824d2000 R __nosave_end
+ffffffff824d2000 R __smp_locks_end
+ffffffff824d2000 B empty_zero_page
+ffffffff824d3000 b idt_table
+ffffffff824d4000 b espfix_pud_page
+ffffffff824d5000 b bm_pte
+ffffffff824d6000 B saved_context
+ffffffff824d6140 b sanitize_boot_params.scratch
+ffffffff824d7140 b reset_devices
+ffffffff824d7144 b initcall_debug
+ffffffff824d7148 b saved_command_line
+ffffffff824d7150 b static_command_line
+ffffffff824d7158 b extra_init_args
+ffffffff824d7160 b panic_later
+ffffffff824d7168 b panic_param
+ffffffff824d7170 b execute_command
+ffffffff824d7178 b bootconfig_found
+ffffffff824d7180 b initargs_offs
+ffffffff824d7188 b extra_command_line
+ffffffff824d7190 b initcall_calltime
+ffffffff824d7198 b ROOT_DEV
+ffffffff824d719c b root_wait
+ffffffff824d719d b is_tmpfs
+ffffffff824d71a0 b out_file
+ffffffff824d71a8 b in_file
+ffffffff824d71b0 b in_pos
+ffffffff824d71b8 b out_pos
+ffffffff824d71c0 b decompress_error
+ffffffff824d71c8 b initrd_start
+ffffffff824d71d0 b initrd_end
+ffffffff824d71d8 b initrd_below_start_ok
+ffffffff824d71dc b real_root_dev
+ffffffff824d71e0 b initramfs_cookie
+ffffffff824d71e8 b calibrate_delay.printed
+ffffffff824d71f0 b preset_lpj
+ffffffff824d71f8 b lpj_fine
+ffffffff824d7200 b rdpmc_never_available_key
+ffffffff824d7210 b rdpmc_always_available_key
+ffffffff824d7220 b perf_is_hybrid
+ffffffff824d7230 b pmc_refcount
+ffffffff824d7234 b active_events
+ffffffff824d7238 b emptyconstraint
+ffffffff824d7260 b unconstrained
+ffffffff824d7288 b empty_attrs
+ffffffff824d7290 b empty_attrs
+ffffffff824d7298 b rapl_pmus
+ffffffff824d72a0 b rapl_msrs
+ffffffff824d72a8 b rapl_cntr_mask
+ffffffff824d72b0 b rapl_timer_ms
+ffffffff824d72b8 b rapl_cpu_mask
+ffffffff824d72c0 b attrs_empty
+ffffffff824d72c8 b attrs_empty
+ffffffff824d72d0 b attrs_empty
+ffffffff824d72d8 b perf_nmi_window
+ffffffff824d72e0 b pair_constraint
+ffffffff824d7308 b ibs_caps.llvm.3566343223865936799
+ffffffff824d730c b perf_ibs_cache_hit_st_valid.cache_hit_st_valid
+ffffffff824d7310 b amd_uncore_llc
+ffffffff824d7318 b amd_uncore_nb
+ffffffff824d7320 b amd_nb_active_mask
+ffffffff824d7328 b amd_llc_active_mask
+ffffffff824d7330 b pmu_version
+ffffffff824d7331 b l3_mask
+ffffffff824d7334 b num_counters_nb
+ffffffff824d7338 b num_counters_llc
+ffffffff824d7340 b uncore_unused_list
+ffffffff824d7348 b msr_mask
+ffffffff824d7350 b pmu_name_str
+ffffffff824d736e b intel_pmu_handle_irq.warned
+ffffffff824d7370 b bts_pmu
+ffffffff824d7498 b __intel_pmu_pebs_event.dummy_iregs
+ffffffff824d7540 b lbr_from_quirk_key
+ffffffff824d7550 b x86_lbr_mispred
+ffffffff824d7560 b x86_lbr_cycles
+ffffffff824d7570 b x86_lbr_type
+ffffffff824d7580 b pt_pmu.llvm.8532403597962972219
+ffffffff824d76e0 b uncore_no_discover
+ffffffff824d76e8 b empty_uncore
+ffffffff824d76f0 b pci2phy_map_lock
+ffffffff824d76f8 b uncore_constraint_empty
+ffffffff824d7720 b __uncore_max_dies
+ffffffff824d7728 b uncore_pci_driver
+ffffffff824d7730 b uncore_pci_sub_driver
+ffffffff824d7738 b uncore_extra_pci_dev
+ffffffff824d7740 b pcidrv_registered
+ffffffff824d7748 b uncore_cpu_mask
+ffffffff824d7750 b uncore_nhmex
+ffffffff824d7758 b discovery_tables
+ffffffff824d7760 b num_discovered_types
+ffffffff824d776c b logical_die_id
+ffffffff824d7770 b core_msr_mask
+ffffffff824d7778 b pkg_msr_mask
+ffffffff824d7780 b has_cstate_core
+ffffffff824d7781 b has_cstate_pkg
+ffffffff824d7788 b cstate_core_cpu_mask
+ffffffff824d7790 b cstate_pkg_cpu_mask
+ffffffff824d7798 b real_mode_header
+ffffffff824d77a0 b trampoline_cr4_features
+ffffffff824d77a8 b trampoline_pgd_entry
+ffffffff824d77b0 b system_vectors
+ffffffff824d77d0 b x86_platform_ipi_callback
+ffffffff824d77d8 b irq_err_count
+ffffffff824d77e0 b io_bitmap_sequence
+ffffffff824d77e8 b die_lock
+ffffffff824d77ec b die_nest_count
+ffffffff824d77f0 b exec_summary_regs
+ffffffff824d7898 b panic_on_unrecovered_nmi
+ffffffff824d789c b panic_on_io_nmi
+ffffffff824d78a0 b die_counter
+ffffffff824d78a4 b unknown_nmi_panic
+ffffffff824d78a8 b nmi_reason_lock
+ffffffff824d78ac b edid_info
+ffffffff824d7930 b saved_video_mode
+ffffffff824d7938 b bootloader_type
+ffffffff824d793c b bootloader_version
+ffffffff824d7940 b max_low_pfn_mapped
+ffffffff824d7948 b relocated_ramdisk
+ffffffff824d7950 b boot_params
+ffffffff824d8950 b max_pfn_mapped
+ffffffff824d8958 b screen_info
+ffffffff824d8998 b mask_and_ack_8259A.spurious_irq_mask
+ffffffff824d899c b i8259A_auto_eoi
+ffffffff824d89a0 b irq_trigger.0
+ffffffff824d89a1 b irq_trigger.1
+ffffffff824d89a8 b io_apic_irqs
+ffffffff824d89b0 b i8259A_lock
+ffffffff824d89b4 b text_gen_insn.insn
+ffffffff824d89b9 b text_gen_insn.insn
+ffffffff824d89c0 b espfix_pages
+ffffffff824d89c8 b slot_random
+ffffffff824d89cc b page_random
+ffffffff824d89d0 b dma_ops
+ffffffff824d89d8 b x86_swiotlb_enable
+ffffffff824d89dc b force_hpet_resume_type
+ffffffff824d89e0 b x86_apple_machine
+ffffffff824d89e8 b rcba_base
+ffffffff824d89f0 b cached_dev
+ffffffff824d89f8 b force_hpet_address
+ffffffff824d8a00 b cpu0_hotpluggable
+ffffffff824d8a08 b arch_debugfs_dir
+ffffffff824d8a10 b debug_alternative
+ffffffff824d8a11 b uniproc_patched
+ffffffff824d8a14 b noreplace_smp
+ffffffff824d8a20 b tp_vec
+ffffffff824d9a20 b tp_vec_nr
+ffffffff824d9a28 b bp_desc
+ffffffff824d9a38 b global_clock_event
+ffffffff824d9a40 b __use_tsc
+ffffffff824d9a50 b cyc2ns_suspend
+ffffffff824d9a58 b art_to_tsc_denominator
+ffffffff824d9a5c b art_to_tsc_numerator
+ffffffff824d9a60 b art_to_tsc_offset
+ffffffff824d9a68 b art_related_clocksource
+ffffffff824d9a70 b no_sched_irq_time
+ffffffff824d9a74 b no_tsc_watchdog
+ffffffff824d9a78 b ref_freq
+ffffffff824d9a80 b loops_per_jiffy_ref
+ffffffff824d9a88 b tsc_khz_ref
+ffffffff824d9a90 b tsc_refine_calibration_work.ref_start
+ffffffff824d9a98 b tsc_refine_calibration_work.hpet
+ffffffff824d9a9c b tsc_clocksource_reliable
+ffffffff824d9aa0 b rtc_lock
+ffffffff824d9aa8 b boot_option_idle_override
+ffffffff824d9ab0 b x86_idle
+ffffffff824d9ab8 b __fpu_state_size_dynamic
+ffffffff824d9ac8 b __xstate_dump_leaves.should_dump
+ffffffff824d9ad0 b xstate_fx_sw_bytes
+ffffffff824d9b00 b num_cache_leaves
+ffffffff824d9b04 b init_intel_cacheinfo.is_initialized
+ffffffff824d9b08 b init_amd_l3_attrs.amd_l3_attrs
+ffffffff824d9b10 b cpu_initialized_mask
+ffffffff824d9b18 b cpu_callin_mask
+ffffffff824d9b20 b cpu_callout_mask
+ffffffff824d9b28 b cpu_sibling_setup_mask
+ffffffff824d9b30 b cpu_devs
+ffffffff824d9b90 b cpu_caps_cleared
+ffffffff824d9be8 b cpu_caps_set
+ffffffff824d9c3c b pku_disabled
+ffffffff824d9c40 b x86_spec_ctrl_base
+ffffffff824d9c48 b switch_to_cond_stibp
+ffffffff824d9c58 b switch_mm_cond_ibpb
+ffffffff824d9c68 b switch_mm_always_ibpb
+ffffffff824d9c78 b mds_user_clear
+ffffffff824d9c88 b switch_mm_cond_l1d_flush
+ffffffff824d9c98 b mmio_stale_data_clear
+ffffffff824d9ca8 b spectre_v2_bad_module
+ffffffff824d9ca9 b itlb_multihit_kvm_mitigation
+ffffffff824d9cac b l1tf_vmx_mitigation
+ffffffff824d9cb0 b srbds_off
+ffffffff824d9cb8 b mds_idle_clear
+ffffffff824d9cc8 b arch_scale_freq_key
+ffffffff824d9cd8 b bld_ratelimit
+ffffffff824d9d00 b detect_tme.tme_activate_cpu0
+ffffffff824d9d08 b rdrand_force
+ffffffff824d9d10 b mtrr_usage_table
+ffffffff824da110 b __mtrr_enabled
+ffffffff824da111 b mtrr_aps_delayed_init
+ffffffff824da120 b mtrr_value
+ffffffff824db920 b num_var_ranges
+ffffffff824db928 b mtrr_if
+ffffffff824db930 b size_or_mask
+ffffffff824db938 b size_and_mask
+ffffffff824db940 b mtrr_state
+ffffffff824dc99c b mtrr_state_set
+ffffffff824dc9a0 b mtrr_tom2
+ffffffff824dc9a8 b smp_changes_mask
+ffffffff824dc9b0 b set_atomicity_lock
+ffffffff824dc9b8 b cr4
+ffffffff824dc9c0 b deftype_lo
+ffffffff824dc9c4 b deftype_hi
+ffffffff824dc9c8 b disable_mtrr_trim
+ffffffff824dc9c9 b initrd_gone
+ffffffff824dc9d0 b ucode_cpu_info
+ffffffff824dccd0 b microcode_ops
+ffffffff824dccd8 b dis_ucode_ldr
+ffffffff824dcce0 b microcode_pdev
+ffffffff824dcce8 b cpu_root_microcode_attrs
+ffffffff824dccf0 b intel_ucode_patch
+ffffffff824dccf8 b llc_size_per_core
+ffffffff824dccfc b apply_microcode_intel.prev_rev
+ffffffff824dcd00 b collect_cpu_info.prev
+ffffffff824dcd10 b perfctr_nmi_owner
+ffffffff824dcd20 b evntsel_nmi_owner
+ffffffff824dcd30 b has_steal_clock
+ffffffff824dcd34 b has_steal_clock
+ffffffff824dcd38 b x86_hyper_type
+ffffffff824dcd3c b hv_root_partition
+ffffffff824dcd40 b ms_hyperv
+ffffffff824dcd70 b acpi_disabled
+ffffffff824dcd74 b acpi_pci_disabled
+ffffffff824dcd78 b acpi_irq_model
+ffffffff824dcd7c b acpi_noirq
+ffffffff824dcd80 b __acpi_unregister_gsi
+ffffffff824dcd88 b acpi_strict
+ffffffff824dcd8c b acpi_disable_cmcff
+ffffffff824dcd90 b acpi_support_online_capable
+ffffffff824dcd98 b acpi_mp_wake_mailbox_paddr
+ffffffff824dcda0 b acpi_mp_wake_mailbox
+ffffffff824dcda8 b acpi_lapic
+ffffffff824dcdac b acpi_ioapic
+ffffffff824dcdb0 b acpi_realmode_flags
+ffffffff824dcdc0 b temp_stack
+ffffffff824dddc0 b init_freq_invariance_cppc.init_done
+ffffffff824dddc8 b cpu_cstate_entry
+ffffffff824dddd0 b mwait_supported
+ffffffff824ddde0 b port_cf9_safe
+ffffffff824ddde4 b crash_ipi_issued
+ffffffff824ddde8 b shootdown_callback
+ffffffff824dddf0 b waiting_for_crash_ipi
+ffffffff824dddf4 b reboot_emergency.llvm.6592361221187511476
+ffffffff824dddf8 b pm_power_off
+ffffffff824dde00 b smp_no_nmi_ipi
+ffffffff824dde04 b enable_start_cpu0
+ffffffff824dde08 b announce_cpu.current_node
+ffffffff824dde0c b announce_cpu.width
+ffffffff824dde10 b announce_cpu.node_width
+ffffffff824dde14 b cpu0_logical_apicid
+ffffffff824dde18 b x86_topology_update
+ffffffff824dde1c b test_runs
+ffffffff824dde20 b start_count
+ffffffff824dde24 b skip_test
+ffffffff824dde28 b stop_count
+ffffffff824dde2c b nr_warps
+ffffffff824dde30 b random_warps
+ffffffff824dde38 b max_warp
+ffffffff824dde40 b last_tsc
+ffffffff824dde48 b tsc_sync_check_timer
+ffffffff824dde80 b sync_lock
+ffffffff824dde84 b mpf_found
+ffffffff824dde88 b mpf_base
+ffffffff824dde90 b enable_update_mptable
+ffffffff824dde94 b x2apic_state
+ffffffff824dde98 b max_physical_apicid
+ffffffff824dde9c b multi
+ffffffff824ddea0 b eilvt_offsets
+ffffffff824ddeb0 b apic_pm_state.0
+ffffffff824ddeb4 b apic_pm_state.1
+ffffffff824ddeb8 b apic_pm_state.2
+ffffffff824ddebc b apic_pm_state.3
+ffffffff824ddec0 b apic_pm_state.4
+ffffffff824ddec4 b apic_pm_state.5
+ffffffff824ddec8 b apic_pm_state.6
+ffffffff824ddecc b apic_pm_state.7
+ffffffff824dded0 b apic_pm_state.8
+ffffffff824dded4 b apic_pm_state.9
+ffffffff824dded8 b apic_pm_state.10
+ffffffff824ddedc b apic_pm_state.11
+ffffffff824ddee0 b apic_pm_state.12
+ffffffff824ddee4 b apic_pm_state.13
+ffffffff824ddee8 b multi_checked
+ffffffff824ddef0 b phys_cpu_present_map
+ffffffff824deef0 b num_processors
+ffffffff824deef4 b disabled_cpus
+ffffffff824deef8 b lapic_timer_period
+ffffffff824deefc b x2apic_mode
+ffffffff824def00 b apic_use_ipi_shorthand
+ffffffff824def10 b vector_lock.llvm.11333519523397478692
+ffffffff824def18 b vector_matrix.llvm.11333519523397478692
+ffffffff824def20 b vector_searchmask
+ffffffff824def28 b x86_vector_domain
+ffffffff824def30 b ioapics
+ffffffff824e1330 b mp_irq_entries
+ffffffff824e1340 b mp_irqs
+ffffffff824e3340 b mp_bus_not_pci
+ffffffff824e3360 b ioapic_lock.llvm.14548536985639343777
+ffffffff824e3364 b ioapic_initialized
+ffffffff824e3368 b ioapic_dynirq_base
+ffffffff824e3370 b ioapic_resources
+ffffffff824e3378 b irq_mis_count
+ffffffff824e337c b skip_ioapic_setup
+ffffffff824e3380 b gsi_top
+ffffffff824e3384 b nr_ioapics
+ffffffff824e3388 b x2apic_phys
+ffffffff824e3390 b cluster_hotplug_mask
+ffffffff824e3398 b crash_vmclear_loaded_vmcss
+ffffffff824e33a0 b crash_smp_send_stop.cpus_stopped
+ffffffff824e33a8 b module_load_offset
+ffffffff824e33b0 b current_xpos
+ffffffff824e33b8 b hpet_virt_address
+ffffffff824e33c0 b hpet_legacy_int_enabled
+ffffffff824e33c8 b hpet_freq
+ffffffff824e33d0 b hpet_verbose
+ffffffff824e33d8 b hpet_base.0
+ffffffff824e33e0 b hpet_base.1
+ffffffff824e33e8 b hpet_base.2
+ffffffff824e33f0 b hpet_base.3
+ffffffff824e33f8 b irq_handler
+ffffffff824e3400 b hpet_rtc_flags
+ffffffff824e3408 b hpet_default_delta
+ffffffff824e3410 b hpet_pie_limit
+ffffffff824e3418 b hpet_pie_delta
+ffffffff824e341c b hpet_t1_cmp
+ffffffff824e3420 b hpet_prev_update_sec
+ffffffff824e3424 b hpet_alarm_time.0
+ffffffff824e3428 b hpet_alarm_time.1
+ffffffff824e342c b hpet_alarm_time.2
+ffffffff824e3430 b hpet_pie_count
+ffffffff824e3438 b hpet_blockid
+ffffffff824e3439 b boot_hpet_disable
+ffffffff824e3440 b hpet_domain
+ffffffff824e3448 b hpet_address
+ffffffff824e3450 b hpet_force_user
+ffffffff824e3451 b hpet_msi_disable
+ffffffff824e3458 b amd_northbridges.0
+ffffffff824e3460 b amd_northbridges.1.llvm.8803323678341578771
+ffffffff824e3468 b amd_northbridges.2
+ffffffff824e3470 b amd_set_subcaches.reset
+ffffffff824e3474 b amd_set_subcaches.ban
+ffffffff824e3478 b amd_flush_garts.gart_lock
+ffffffff824e3480 b flush_words
+ffffffff824e3488 b kvm_async_pf_enabled
+ffffffff824e34a0 b async_pf_sleepers
+ffffffff824e44a0 b kvm_async_pf_task_wake.__key
+ffffffff824e44a0 b kvmapf
+ffffffff824e44a4 b steal_acc
+ffffffff824e44a5 b kvm_async_pf_queue_task.__key
+ffffffff824e44a8 b has_guest_poll
+ffffffff824e5000 b hv_clock_boot
+ffffffff824e6000 b hvclock_mem
+ffffffff824e6008 b wall_clock
+ffffffff824e6018 b paravirt_steal_enabled
+ffffffff824e6028 b paravirt_steal_rq_enabled
+ffffffff824e6038 b last_value
+ffffffff824e6040 b ioapic_id
+ffffffff824e6048 b trace_pagefault_key
+ffffffff824e6058 b itmt_sysctl_header
+ffffffff824e6060 b unwind_dump.dumped_before
+ffffffff824e6068 b fam10h_pci_mmconf_base
+ffffffff824e6070 b min_pfn_mapped
+ffffffff824e6078 b nr_pfn_mapped
+ffffffff824e6080 b pfn_mapped
+ffffffff824e68b0 b page_size_mask
+ffffffff824e68b4 b after_bootmem
+ffffffff824e68b8 b set_memory_block_size
+ffffffff824e68c0 b memory_block_size_probed
+ffffffff824e68c8 b force_personality32
+ffffffff824e68cc b kernel_set_to_readonly
+ffffffff824e68d0 b pgd_lock
+ffffffff824e68d8 b pt_regs_nr.__dummy
+ffffffff824e68e0 b fixmaps_set
+ffffffff824e68f0 b direct_pages_count
+ffffffff824e6918 b cpa_lock
+ffffffff824e691c b memtype_lock
+ffffffff824e6920 b pat_debug_enable
+ffffffff824e6928 b memtype_rbroot
+ffffffff824e6938 b pti_mode
+ffffffff824e6940 b aesni_simd_aeads
+ffffffff824e6950 b aesni_simd_skciphers
+ffffffff824e6978 b aesni_simd_xctr
+ffffffff824e6980 b efi_no_storage_paranoia
+ffffffff824e6988 b efi_config_table
+ffffffff824e6990 b efi_nr_tables
+ffffffff824e6998 b efi_runtime
+ffffffff824e69a0 b efi_fw_vendor
+ffffffff824e69a8 b efi_setup
+ffffffff824e69b0 b efi_prev_mm
+ffffffff824e69b8 b init_new_context.__key
+ffffffff824e69b8 b init_new_context.__key
+ffffffff824e69b8 b init_new_context_ldt.__key
+ffffffff824e69b8 b init_new_context_ldt.__key
+ffffffff824e69b8 b vm_area_cachep
+ffffffff824e69c0 b mm_cachep
+ffffffff824e69c8 b task_struct_cachep
+ffffffff824e69d0 b max_threads
+ffffffff824e69d8 b sighand_cachep
+ffffffff824e69e0 b signal_cachep
+ffffffff824e69e8 b files_cachep
+ffffffff824e69f0 b fs_cachep
+ffffffff824e69f8 b vma_lock_cachep
+ffffffff824e6a00 b total_forks
+ffffffff824e6a08 b nr_threads
+ffffffff824e6a0c b copy_signal.__key
+ffffffff824e6a0c b copy_signal.__key.41
+ffffffff824e6a0c b copy_signal.__key.43
+ffffffff824e6a0c b futex_init_task.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b init_completion.__key
+ffffffff824e6a0c b mmap_init_lock.__key
+ffffffff824e6a0c b panic_on_taint_nousertaint
+ffffffff824e6a0c b sighand_ctor.__key
+ffffffff824e6a0c b vma_lock_alloc.__key
+ffffffff824e6a10 b panic_notifier_list
+ffffffff824e6a20 b panic_blink
+ffffffff824e6a28 b warn_count
+ffffffff824e6a30 b panic.buf
+ffffffff824e6e30 b crash_kexec_post_notifiers
+ffffffff824e6e40 b print_tainted.buf
+ffffffff824e6e60 b tainted_mask.llvm.2440622221274145116
+ffffffff824e6e68 b panic_on_taint
+ffffffff824e6e70 b pause_on_oops_flag.llvm.2440622221274145116
+ffffffff824e6e78 b panic_print
+ffffffff824e6e80 b pause_on_oops
+ffffffff824e6e84 b do_oops_enter_exit.spin_counter
+ffffffff824e6e88 b pause_on_oops_lock
+ffffffff824e6e8c b cpu_hotplug_disabled
+ffffffff824e6e90 b cpus_booted_once_mask
+ffffffff824e6e98 b frozen_cpus
+ffffffff824e6ea0 b __boot_cpu_id
+ffffffff824e6ea4 b cpuhp_tasks_frozen
+ffffffff824e6ea8 b oops_count
+ffffffff824e6eac b check_stack_usage.low_water_lock
+ffffffff824e6eb0 b resource_lock.llvm.6013999449226960140
+ffffffff824e6eb8 b iomem_inode
+ffffffff824e6ec0 b strict_iomem_checks
+ffffffff824e6ec4 b reserve_setup.reserved
+ffffffff824e6ed0 b reserve_setup.reserve
+ffffffff824e7050 b iomem_init_inode.iomem_vfs_mount
+ffffffff824e7058 b iomem_init_inode.iomem_fs_cnt
+ffffffff824e705c b sysctl_legacy_va_layout
+ffffffff824e7060 b dev_table
+ffffffff824e70a0 b uidhash_lock
+ffffffff824e70b0 b uidhash_table
+ffffffff824e74b0 b uid_cachep
+ffffffff824e74b8 b sigqueue_cachep.llvm.5882076830699149773
+ffffffff824e74b8 b user_epoll_alloc.__key
+ffffffff824e74c0 b running_helpers
+ffffffff824e74c4 b umh_sysctl_lock
+ffffffff824e74c8 b wq_disable_numa
+ffffffff824e74c9 b wq_power_efficient
+ffffffff824e74ca b wq_debug_force_rr_cpu
+ffffffff824e74cb b wq_online
+ffffffff824e74cc b alloc_workqueue.__key
+ffffffff824e74cc b wq_mayday_lock
+ffffffff824e74d0 b workqueue_freezing
+ffffffff824e74d8 b wq_unbound_cpumask
+ffffffff824e74e0 b pwq_cache
+ffffffff824e74f0 b unbound_std_wq_attrs
+ffffffff824e7500 b ordered_wq_attrs
+ffffffff824e7510 b unbound_pool_hash
+ffffffff824e7710 b wq_select_unbound_cpu.printed_dbg_warning
+ffffffff824e7718 b manager_wait
+ffffffff824e7720 b restore_unbound_workers_cpumask.cpumask
+ffffffff824e7728 b wq_watchdog_timer
+ffffffff824e7760 b alloc_pid.__key
+ffffffff824e7760 b work_exited
+ffffffff824e7770 b module_kset
+ffffffff824e7778 b module_sysfs_initialized
+ffffffff824e777c b kmalloced_params_lock
+ffffffff824e7780 b kthread_create_lock
+ffffffff824e7788 b kthreadd_task
+ffffffff824e7790 b nsproxy_cachep.llvm.17877938309414178369
+ffffffff824e7798 b die_chain
+ffffffff824e7798 b srcu_init_notifier_head.__key
+ffffffff824e77a8 b kernel_kobj
+ffffffff824e77b0 b rcu_expedited
+ffffffff824e77b4 b rcu_normal
+ffffffff824e77b8 b cred_jar.llvm.320109332689821524
+ffffffff824e77c0 b restart_handler_list.llvm.6169594305914463644
+ffffffff824e77d0 b reboot_cpu
+ffffffff824e77d8 b power_off_handler_list
+ffffffff824e77e8 b platform_power_off_handler
+ffffffff824e77f0 b poweroff_force
+ffffffff824e77f8 b platform_sys_off_handler
+ffffffff824e7830 b cad_pid
+ffffffff824e7838 b reboot_force
+ffffffff824e783c b reboot_mode
+ffffffff824e7840 b entry_count
+ffffffff824e7844 b entry_count
+ffffffff824e7848 b async_lock
+ffffffff824e7850 b ucounts_hashtable
+ffffffff824e9850 b ucounts_lock
+ffffffff824e9858 b ue_zero
+ffffffff824e9860 b user_namespace_sysctl_init.user_header
+ffffffff824e9870 b user_namespace_sysctl_init.empty
+ffffffff824e98b0 b task_group_lock
+ffffffff824e98b4 b uclamp_default
+ffffffff824e98bc b cpu_resched_latency.warned_once
+ffffffff824e98c0 b num_cpus_frozen
+ffffffff824e98c8 b sched_schedstats
+ffffffff824e9900 b root_task_group
+ffffffff824e9b00 b sched_uclamp_used
+ffffffff824e9b10 b sched_numa_balancing
+ffffffff824e9b40 b nohz
+ffffffff824e9b68 b sched_thermal_decay_shift
+ffffffff824e9b6c b balancing
+ffffffff824e9b70 b sched_smt_present
+ffffffff824e9b80 b sched_clock_irqtime.llvm.15613813909784571273
+ffffffff824e9b88 b dl_generation
+ffffffff824e9b90 b def_rt_bandwidth
+ffffffff824e9bf8 b __sched_clock_stable.llvm.7198467921976876906
+ffffffff824e9c08 b __sched_clock_stable_early
+ffffffff824e9c10 b sched_clock_running
+ffffffff824e9c20 b debugfs_sched
+ffffffff824e9c28 b sd_sysctl_cpus
+ffffffff824e9c30 b sd_dentry
+ffffffff824e9c38 b sched_debug_lock
+ffffffff824e9c40 b group_path
+ffffffff824eac40 b avenrun
+ffffffff824eac58 b sched_domains_tmpmask
+ffffffff824eac60 b sched_domains_tmpmask2
+ffffffff824eac68 b fallback_doms
+ffffffff824eac70 b ndoms_cur
+ffffffff824eac78 b doms_cur
+ffffffff824eac80 b dattr_cur
+ffffffff824eac88 b housekeeping
+ffffffff824eacd8 b sched_domain_level_max
+ffffffff824eace0 b global_tunables
+ffffffff824eace8 b sugov_kthread_create.__key
+ffffffff824eace8 b sugov_kthread_create.__key.208
+ffffffff824eacf0 b calc_load_nohz
+ffffffff824ead00 b calc_load_idx
+ffffffff824ead04 b group_init.__key
+ffffffff824ead04 b group_init.__key.362
+ffffffff824ead08 b def_root_domain
+ffffffff824eb450 b calc_load_update
+ffffffff824eb458 b psi_disabled
+ffffffff824eb468 b calc_load_tasks
+ffffffff824eb470 b sched_asym_cpucapacity
+ffffffff824eb480 b housekeeping_overridden
+ffffffff824eb490 b __percpu_init_rwsem.__key
+ffffffff824eb490 b rt_mutex_adjust_prio_chain.prev_max
+ffffffff824eb494 b pm_qos_lock
+ffffffff824eb498 b freq_constraints_init.__key
+ffffffff824eb498 b freq_constraints_init.__key.4
+ffffffff824eb498 b pm_wq
+ffffffff824eb4a0 b power_kobj
+ffffffff824eb4a8 b orig_fgconsole
+ffffffff824eb4ac b orig_kmsg
+ffffffff824eb4b0 b pm_suspend_target_state
+ffffffff824eb4b4 b pm_suspend_global_flags
+ffffffff824eb4b8 b s2idle_ops.llvm.6365581447571091167
+ffffffff824eb4c0 b s2idle_lock
+ffffffff824eb4c8 b suspend_ops
+ffffffff824eb4d0 b pm_states
+ffffffff824eb4f0 b mem_sleep_states
+ffffffff824eb510 b wakelocks_tree
+ffffffff824eb518 b wakeup_reason_lock
+ffffffff824eb51c b wakeup_reason
+ffffffff824eb520 b capture_reasons
+ffffffff824eb528 b wakeup_irq_nodes_cache
+ffffffff824eb530 b non_irq_wake_reason
+ffffffff824eb630 b kobj
+ffffffff824eb638 b last_monotime
+ffffffff824eb640 b last_stime
+ffffffff824eb648 b curr_monotime
+ffffffff824eb650 b curr_stime
+ffffffff824eb658 b console_drivers
+ffffffff824eb660 b console_set_on_cmdline
+ffffffff824eb668 b clear_seq
+ffffffff824eb680 b __log_buf
+ffffffff8250b680 b printk_rb_dynamic
+ffffffff8250b6d8 b syslog_seq
+ffffffff8250b6e0 b syslog_partial
+ffffffff8250b6e8 b syslog_time
+ffffffff8250b6f0 b early_console
+ffffffff8250b6f8 b printk_console_no_auto_verbose
+ffffffff8250b6fc b console_suspended
+ffffffff8250b700 b console_locked.llvm.17047447849185621060
+ffffffff8250b704 b console_may_schedule.llvm.17047447849185621060
+ffffffff8250b708 b dump_list_lock
+ffffffff8250b70c b always_kmsg_dump
+ffffffff8250b710 b printk_cpu_sync_nested
+ffffffff8250b714 b devkmsg_open.__key
+ffffffff8250b714 b printk_count_nmi_early
+ffffffff8250b715 b printk_count_early
+ffffffff8250b718 b console_owner_lock
+ffffffff8250b720 b console_owner
+ffffffff8250b728 b console_waiter
+ffffffff8250b72c b console_msg_format
+ffffffff8250b730 b console_cmdline
+ffffffff8250b830 b console_flush_all.dropped_text
+ffffffff8250b870 b console_flush_all.ext_text
+ffffffff8250d870 b console_flush_all.text
+ffffffff8250dc70 b console_emit_next_record.panic_console_dropped
+ffffffff8250dc74 b oops_in_progress
+ffffffff8250dc78 b dmesg_restrict
+ffffffff8250dc80 b allocated_irqs
+ffffffff8250e2a8 b irq_kobj_base
+ffffffff8250e2b0 b alloc_desc.__key
+ffffffff8250e2b0 b alloc_desc.__key.6
+ffffffff8250e2b0 b force_irqthreads_key
+ffffffff8250e2c0 b irq_do_set_affinity.tmp_mask_lock
+ffffffff8250e2c8 b irq_do_set_affinity.tmp_mask
+ffffffff8250e2d0 b irq_setup_affinity.mask_lock
+ffffffff8250e2d8 b irq_setup_affinity.mask
+ffffffff8250e2e0 b irq_default_affinity
+ffffffff8250e2e8 b irq_poll_cpu
+ffffffff8250e2ec b irq_poll_active
+ffffffff8250e2f0 b irqs_resend
+ffffffff8250e918 b irq_default_domain.llvm.1834836232419378684
+ffffffff8250e920 b __irq_domain_create.unknown_domains
+ffffffff8250e924 b __irq_domain_create.__key
+ffffffff8250e928 b root_irq_dir
+ffffffff8250e930 b show_interrupts.prec
+ffffffff8250e934 b no_irq_affinity
+ffffffff8250e938 b msi_dev_attrs
+ffffffff8250e938 b msi_setup_device_data.__key
+ffffffff8250e940 b rcu_normal_after_boot
+ffffffff8250e944 b rcu_task_cb_adjust
+ffffffff8250e945 b dump_tree
+ffffffff8250e945 b init_srcu_struct_fields.__key
+ffffffff8250e945 b init_srcu_struct_fields.__key.11
+ffffffff8250e945 b init_srcu_struct_fields.__key.13
+ffffffff8250e945 b rcu_sync_init.__key.llvm.9962928499551209121
+ffffffff8250e946 b rcu_fanout_exact
+ffffffff8250e948 b gp_preinit_delay
+ffffffff8250e94c b gp_init_delay
+ffffffff8250e950 b gp_cleanup_delay
+ffffffff8250e958 b jiffies_to_sched_qs
+ffffffff8250e960 b rcu_kick_kthreads
+ffffffff8250e968 b rcu_gp_slow_suppress
+ffffffff8250e970 b rcu_init_geometry.old_nr_cpu_ids
+ffffffff8250e978 b rcu_init_geometry.initialized
+ffffffff8250e980 b rcu_gp_wq
+ffffffff8250e988 b sysrq_rcu
+ffffffff8250e990 b rcu_nocb_mask
+ffffffff8250e998 b rcu_exp_gp_kworker
+ffffffff8250e9a0 b rcu_exp_par_gp_kworker
+ffffffff8250e9a8 b check_cpu_stall.___rfd_beenhere
+ffffffff8250e9ac b check_cpu_stall.___rfd_beenhere.89
+ffffffff8250e9b0 b rcu_stall_kick_kthreads.___rfd_beenhere
+ffffffff8250e9b4 b panic_on_rcu_stall.cpu_stall
+ffffffff8250e9b8 b dma_default_coherent
+ffffffff8250e9b8 b rcu_boot_init_nocb_percpu_data.__key
+ffffffff8250e9b8 b rcu_boot_init_nocb_percpu_data.__key.206
+ffffffff8250e9b8 b rcu_boot_init_nocb_percpu_data.__key.208
+ffffffff8250e9b8 b rcu_boot_init_nocb_percpu_data.__key.210
+ffffffff8250e9b8 b rcu_init_one.__key
+ffffffff8250e9b8 b rcu_init_one.__key.189
+ffffffff8250e9b8 b rcu_init_one.__key.191
+ffffffff8250e9b8 b rcu_init_one.__key.193
+ffffffff8250e9b8 b rcu_init_one.__key.195
+ffffffff8250e9b8 b rcu_init_one.__key.197
+ffffffff8250e9b8 b rcu_init_one.__key.199
+ffffffff8250e9b8 b rcu_init_one_nocb.__key
+ffffffff8250e9b8 b rcu_init_one_nocb.__key.202
+ffffffff8250e9c0 b io_tlb_default_mem
+ffffffff8250ea10 b swiotlb_force_bounce
+ffffffff8250ea11 b swiotlb_force_disable
+ffffffff8250ea18 b default_nareas
+ffffffff8250ea20 b swiotlb_unencrypted_base
+ffffffff8250ea28 b modules_disabled
+ffffffff8250ea30 b module_blacklist
+ffffffff8250ea38 b async_probe
+ffffffff8250ea39 b last_unloaded_module
+ffffffff8250ea90 b init_free_list
+ffffffff8250ea98 b freezer_active
+ffffffff8250ea98 b init_param_lock.__key.llvm.1858881135479279594
+ffffffff8250eaa8 b pm_nosig_freezing
+ffffffff8250eaa9 b pm_freezing
+ffffffff8250eaac b freezer_lock
+ffffffff8250eab0 b prof_shift
+ffffffff8250eab8 b prof_len
+ffffffff8250eac0 b prof_cpu_mask
+ffffffff8250eac8 b prof_buffer
+ffffffff8250ead0 b do_sys_settimeofday64.firsttime
+ffffffff8250ead8 b sys_tz
+ffffffff8250eae0 b timers_nohz_active
+ffffffff8250eaf0 b timers_migration_enabled
+ffffffff8250eb00 b timekeeper_lock
+ffffffff8250eb40 b tk_core.llvm.2975473794329840738
+ffffffff8250ec60 b pvclock_gtod_chain
+ffffffff8250ec68 b persistent_clock_exists.llvm.2975473794329840738
+ffffffff8250ec69 b suspend_timing_needed.llvm.2975473794329840738
+ffffffff8250ec70 b timekeeping_suspend_time
+ffffffff8250ec80 b timekeeping_suspend.old_delta.0
+ffffffff8250ec88 b timekeeping_suspend.old_delta.1
+ffffffff8250ec90 b cycles_at_suspend
+ffffffff8250ec98 b shadow_timekeeper
+ffffffff8250edb0 b halt_fast_timekeeper.tkr_dummy
+ffffffff8250ede8 b persistent_clock_is_local
+ffffffff8250edf0 b time_adjust
+ffffffff8250edf8 b tick_length_base
+ffffffff8250ee00 b tick_length.llvm.3897405170901504061
+ffffffff8250ee08 b time_offset
+ffffffff8250ee10 b time_state
+ffffffff8250ee18 b sync_hrtimer
+ffffffff8250ee60 b time_freq
+ffffffff8250ee68 b tick_nsec
+ffffffff8250ee70 b ntp_tick_adj
+ffffffff8250ee78 b time_reftime
+ffffffff8250ee80 b watchdog_lock
+ffffffff8250ee88 b cpus_ahead
+ffffffff8250ee90 b cpus_behind
+ffffffff8250ee98 b cpus_chosen
+ffffffff8250eea0 b csnow_mid
+ffffffff8250eea8 b suspend_clocksource
+ffffffff8250eeb0 b suspend_start
+ffffffff8250eeb8 b finished_booting
+ffffffff8250eec0 b curr_clocksource
+ffffffff8250eec8 b watchdog_running
+ffffffff8250eed0 b watchdog
+ffffffff8250eed8 b watchdog_timer
+ffffffff8250ef10 b watchdog_reset_pending
+ffffffff8250ef20 b override_name
+ffffffff8250ef40 b refined_jiffies
+ffffffff8250eff8 b rtcdev_lock
+ffffffff8250f000 b rtcdev
+ffffffff8250f010 b alarm_bases
+ffffffff8250f070 b freezer_delta_lock
+ffffffff8250f078 b freezer_delta
+ffffffff8250f080 b freezer_expires
+ffffffff8250f088 b freezer_alarmtype
+ffffffff8250f090 b rtctimer
+ffffffff8250f0d0 b posix_timers_cache
+ffffffff8250f0d8 b hash_lock
+ffffffff8250f0e0 b posix_timers_hashtable
+ffffffff825100e0 b do_cpu_nanosleep.zero_it
+ffffffff82510100 b clockevents_lock.llvm.12656476446489091555
+ffffffff82510100 b posix_clock_register.__key
+ffffffff82510104 b tick_freeze_lock
+ffffffff82510108 b tick_freeze_depth
+ffffffff82510110 b tick_next_period
+ffffffff82510118 b tick_broadcast_device.llvm.16095221743203599939
+ffffffff82510128 b tick_broadcast_mask.llvm.16095221743203599939
+ffffffff82510130 b tick_broadcast_on
+ffffffff82510138 b tick_broadcast_forced
+ffffffff82510140 b tick_broadcast_oneshot_mask.llvm.16095221743203599939
+ffffffff82510148 b tick_broadcast_force_mask
+ffffffff82510150 b tmpmask
+ffffffff82510158 b tick_broadcast_pending_mask
+ffffffff82510160 b bctimer
+ffffffff825101a8 b sched_skew_tick
+ffffffff825101b0 b last_jiffies_update
+ffffffff825101c0 b sleep_time_bin
+ffffffff82510240 b get_inode_sequence_number.i_seq
+ffffffff82510248 b dma_spin_lock
+ffffffff8251024c b __flush_smp_call_function_queue.warned
+ffffffff82510250 b vmcoreinfo_data
+ffffffff82510258 b vmcoreinfo_size
+ffffffff82510260 b vmcoreinfo_data_safecopy
+ffffffff82510268 b vmcoreinfo_note
+ffffffff82510270 b __kexec_lock
+ffffffff82510274 b kexec_in_progress
+ffffffff82510278 b crash_notes
+ffffffff82510280 b kexec_image
+ffffffff82510288 b kexec_load_disabled
+ffffffff82510290 b kexec_crash_image
+ffffffff82510298 b css_set_lock
+ffffffff8251029c b trace_cgroup_path_lock
+ffffffff825102a0 b cgrp_dfl_threaded_ss_mask
+ffffffff825102b0 b css_set_table
+ffffffff825106b0 b cgroup_root_count
+ffffffff825106c0 b trace_cgroup_path
+ffffffff82510ac0 b cgroup_file_kn_lock
+ffffffff82510ac4 b cgrp_dfl_implicit_ss_mask
+ffffffff82510ac6 b cgrp_dfl_inhibit_ss_mask
+ffffffff82510ac8 b cgrp_dfl_visible
+ffffffff82510ac9 b init_cgroup_housekeeping.__key
+ffffffff82510ac9 b init_cgroup_housekeeping.__key.43
+ffffffff82510ad0 b cgroup_destroy_wq
+ffffffff82510ad8 b cgroup_idr_lock
+ffffffff82510adc b cgroup_rstat_lock.llvm.14442165027210246642
+ffffffff82510ae0 b cgroup_no_v1_mask
+ffffffff82510ae8 b cgroup_pidlist_destroy_wq
+ffffffff82510af0 b release_agent_path_lock
+ffffffff82510af4 b cgroup_no_v1_named
+ffffffff82510af8 b cpuset_being_rebound
+ffffffff82510b00 b cpus_attach
+ffffffff82510b00 b cpuset_init.rwsem_key
+ffffffff82510b08 b force_rebuild.llvm.1604414782671841489
+ffffffff82510b10 b cpuset_migrate_mm_wq
+ffffffff82510b18 b callback_lock.llvm.1604414782671841489
+ffffffff82510b20 b cpuset_attach_old_cs
+ffffffff82510b28 b cpuset_attach_nodemask_to.0
+ffffffff82510b30 b cpuset_hotplug_workfn.new_cpus
+ffffffff82510b38 b cpuset_hotplug_workfn.new_mems.0
+ffffffff82510b40 b cpuset_hotplug_update_tasks.new_cpus
+ffffffff82510b48 b cpuset_hotplug_update_tasks.new_mems
+ffffffff82510b50 b cpusets_enabled_key
+ffffffff82510b60 b cpusets_pre_enable_key
+ffffffff82510b70 b cpusets_insane_config_key
+ffffffff82510b80 b stop_machine_initialized
+ffffffff82510b81 b stop_cpus_in_progress
+ffffffff82510b84 b audit_enabled
+ffffffff82510b88 b audit_ever_enabled
+ffffffff82510b90 b auditd_conn
+ffffffff82510b98 b audit_cmd_mutex.llvm.3089855929136662021
+ffffffff82510bd0 b audit_log_lost.last_msg
+ffffffff82510bd8 b audit_log_lost.lock
+ffffffff82510bdc b audit_lost
+ffffffff82510be0 b audit_rate_limit
+ffffffff82510be4 b audit_serial.serial
+ffffffff82510be8 b audit_initialized
+ffffffff82510bf0 b audit_queue
+ffffffff82510c08 b audit_backlog_wait_time_actual
+ffffffff82510c0c b session_id
+ffffffff82510c10 b audit_sig_sid
+ffffffff82510c20 b audit_inode_hash
+ffffffff82510e20 b audit_net_id
+ffffffff82510e28 b audit_buffer_cache
+ffffffff82510e30 b audit_retry_queue
+ffffffff82510e48 b audit_hold_queue
+ffffffff82510e60 b audit_default
+ffffffff82510e60 b audit_init.__key
+ffffffff82510e68 b kauditd_task
+ffffffff82510e70 b auditd_conn_lock
+ffffffff82510e78 b audit_rate_check.last_check
+ffffffff82510e80 b audit_rate_check.messages
+ffffffff82510e84 b audit_rate_check.lock
+ffffffff82510e90 b classes
+ffffffff82510f10 b audit_n_rules
+ffffffff82510f14 b audit_signals
+ffffffff82510f18 b audit_watch_group
+ffffffff82510f20 b audit_fsnotify_group.llvm.535679405531055715
+ffffffff82510f28 b prune_thread
+ffffffff82510f30 b chunk_hash_heads
+ffffffff82511730 b audit_tree_group
+ffffffff82511738 b reset_hung_task.llvm.1122799395112313648
+ffffffff82511740 b watchdog_task
+ffffffff82511748 b hung_detector_suspended
+ffffffff82511749 b hung_task_show_all_bt
+ffffffff8251174a b hung_task_call_panic
+ffffffff82511750 b soft_lockup_nmi_warn
+ffffffff82511758 b family_registered
+ffffffff82511758 b seccomp_prepare_filter.__key
+ffffffff82511758 b seccomp_prepare_filter.__key.5
+ffffffff82511760 b taskstats_cache
+ffffffff82511768 b sys_tracepoint_refcount
+ffffffff82511768 b taskstats_init_early.__key
+ffffffff8251176c b ok_to_free_tracepoints
+ffffffff82511770 b early_probes
+ffffffff82511780 b tp_transition_snapshot.0
+ffffffff82511790 b tp_transition_snapshot.1
+ffffffff825117a0 b tp_transition_snapshot.2
+ffffffff825117b0 b tp_transition_snapshot.3
+ffffffff825117c0 b tp_transition_snapshot.4
+ffffffff825117c8 b tp_transition_snapshot.5
+ffffffff82511800 b trace_clock_struct
+ffffffff82511810 b trace_counter
+ffffffff82511818 b __ring_buffer_alloc.__key
+ffffffff82511818 b __ring_buffer_alloc.__key.15
+ffffffff82511818 b rb_add_timestamp.once
+ffffffff82511818 b rb_allocate_cpu_buffer.__key
+ffffffff82511818 b rb_allocate_cpu_buffer.__key.19
+ffffffff82511818 b ring_buffer_alloc_ext.__key
+ffffffff8251181c b tracing_disabled.llvm.9205078670796757768
+ffffffff82511820 b dummy_tracer_opt
+ffffffff82511830 b default_bootup_tracer
+ffffffff82511838 b trace_cmdline_lock
+ffffffff8251183c b trace_buffered_event_ref
+ffffffff82511840 b temp_buffer
+ffffffff82511848 b tracepoint_print_iter
+ffffffff82511850 b tracepoint_printk_key
+ffffffff82511860 b trace_event_exports_enabled
+ffffffff82511870 b trace_function_exports_enabled
+ffffffff82511880 b buffers_allocated.llvm.9205078670796757768
+ffffffff82511888 b trace_no_verify
+ffffffff825118a0 b static_fmt_buf
+ffffffff82511920 b static_temp_buf
+ffffffff825119a0 b tgid_map
+ffffffff825119a8 b tgid_map_max
+ffffffff825119b0 b ring_buffer_expanded
+ffffffff825119b8 b ftrace_dump.iter
+ffffffff82513ae0 b ftrace_dump.dump_running
+ffffffff82513ae4 b snapshot_at_boot
+ffffffff82513ae8 b trace_marker_exports_enabled
+ffffffff82513af8 b savedcmd
+ffffffff82513b00 b tracepoint_iter_lock
+ffffffff82513b08 b trace_percpu_buffer
+ffffffff82513b10 b tracer_options_updated
+ffffffff82513b18 b trace_instance_dir
+ffffffff82513b20 b __tracing_open.__key
+ffffffff82513b20 b allocate_trace_buffer.__key
+ffffffff82513b20 b ftrace_dump_on_oops
+ffffffff82513b20 b trace_access_lock_init.__key
+ffffffff82513b20 b tracer_alloc_buffers.__key
+ffffffff82513b20 b tracing_open_pipe.__key
+ffffffff82513b24 b __disable_trace_on_warning
+ffffffff82513b28 b tracepoint_printk
+ffffffff82513b2c b register_stat_tracer.__key
+ffffffff82513b30 b stat_dir
+ffffffff82513b38 b sched_cmdline_ref
+ffffffff82513b3c b sched_tgid_ref
+ffffffff82513b40 b eventdir_initialized
+ffffffff82513b48 b field_cachep
+ffffffff82513b50 b file_cachep
+ffffffff82513b60 b perf_trace_buf
+ffffffff82513b80 b total_ref_count
+ffffffff82513b88 b ustring_per_cpu
+ffffffff82513b90 b last_cmd
+ffffffff82513b98 b last_cmd
+ffffffff82513ba0 b hist_field_name.full_name
+ffffffff82513ca0 b last_cmd_loc
+ffffffff82513da0 b trace_probe_log.llvm.3915242008748774484
+ffffffff82513db8 b uprobe_cpu_buffer
+ffffffff82513dc0 b uprobe_buffer_refcnt
+ffffffff82513dc4 b bpf_prog_alloc_no_stats.__key
+ffffffff82513dc4 b bpf_prog_alloc_no_stats.__key.1
+ffffffff82513dc4 b uprobe_buffer_init.__key
+ffffffff82513dc8 b bpf_empty_prog_array
+ffffffff82513de0 b bpf_stats_enabled_key
+ffffffff82513df0 b static_call_initialized
+ffffffff82513df8 b perf_sched_events
+ffffffff82513e08 b __report_avg
+ffffffff82513e10 b __report_allowed
+ffffffff82513e18 b __empty_callchain
+ffffffff82513e20 b pmu_idr
+ffffffff82513e38 b pmu_bus_running
+ffffffff82513e3c b perf_pmu_register.hw_context_taken
+ffffffff82513e40 b perf_online_mask
+ffffffff82513e48 b pmus_srcu
+ffffffff82514028 b perf_event_cache
+ffffffff82514028 b perf_event_init_task.__key
+ffffffff82514030 b perf_swevent_enabled
+ffffffff825140f0 b perf_sched_count
+ffffffff825140f4 b __perf_event_init_context.__key
+ffffffff825140f4 b perf_event_alloc.__key
+ffffffff825140f4 b perf_event_alloc.__key.40
+ffffffff825140f4 b perf_event_alloc.__key.42
+ffffffff825140f8 b perf_event_id
+ffffffff82514100 b nr_callchain_events
+ffffffff82514100 b perf_event_init_all_cpus.__key
+ffffffff82514108 b callchain_cpus_entries
+ffffffff82514110 b cpu_pinned
+ffffffff82514120 b tsk_pinned_all
+ffffffff82514130 b task_bps_ht
+ffffffff825141d8 b uprobes_tree
+ffffffff825141e0 b uprobes_mmap_mutex
+ffffffff82514450 b uprobes_init.__key
+ffffffff82514450 b uprobes_treelock
+ffffffff82514454 b __create_xol_area.__key
+ffffffff82514454 b alloc_uprobe.__key
+ffffffff82514454 b alloc_uprobe.__key.13
+ffffffff82514454 b mempool_init_node.__key
+ffffffff82514454 b oom_victims
+ffffffff82514454 b pagecache_init.__key
+ffffffff82514458 b sysctl_oom_kill_allocating_task
+ffffffff82514460 b oom_reaper_th
+ffffffff82514468 b oom_reaper_list
+ffffffff82514470 b oom_reaper_lock
+ffffffff82514474 b sysctl_panic_on_oom
+ffffffff82514478 b laptop_mode
+ffffffff8251447c b bdi_min_ratio
+ffffffff82514480 b vm_dirty_bytes
+ffffffff82514488 b dirty_background_bytes
+ffffffff82514490 b global_wb_domain
+ffffffff82514518 b page_cluster
+ffffffff8251451c b __lru_add_drain_all.lru_drain_gen
+ffffffff82514520 b __lru_add_drain_all.has_work
+ffffffff82514528 b lru_disable_count
+ffffffff8251452c b shrinker_nr_max
+ffffffff82514530 b lru_gen_caps
+ffffffff82514560 b shm_mnt.llvm.12035218767219187336
+ffffffff82514568 b shmem_encode_fh.lock
+ffffffff82514568 b shmem_fill_super.__key
+ffffffff82514570 b shmem_inode_cachep
+ffffffff82514580 b vm_committed_as
+ffffffff825145a8 b mm_percpu_wq
+ffffffff825145b0 b noop_backing_dev_info
+ffffffff82514ad8 b cgwb_lock
+ffffffff82514adc b bdi_init.__key
+ffffffff82514ae0 b bdi_class
+ffffffff82514ae8 b bdi_id_cursor
+ffffffff82514af0 b bdi_tree
+ffffffff82514af8 b bdi_class_init.__key
+ffffffff82514af8 b bdi_debug_root
+ffffffff82514b00 b cgwb_release_wq
+ffffffff82514b00 b wb_init.__key
+ffffffff82514b08 b bdi_lock
+ffffffff82514b08 b cgwb_bdi_init.__key
+ffffffff82514b08 b cgwb_bdi_init.__key.16
+ffffffff82514b10 b bdi_wq
+ffffffff82514b18 b mm_kobj
+ffffffff82514b20 b pcpu_lock
+ffffffff82514b24 b pcpu_nr_empty_pop_pages
+ffffffff82514b28 b pcpu_nr_populated
+ffffffff82514b30 b pcpu_page_first_chunk.vm
+ffffffff82514b70 b pcpu_atomic_alloc_failed
+ffffffff82514b78 b pcpu_get_pages.pages
+ffffffff82514b80 b slab_nomerge
+ffffffff82514b88 b kmem_cache
+ffffffff82514b90 b slab_state
+ffffffff82514b98 b shadow_nodes
+ffffffff82514bc8 b reg_refcount
+ffffffff82514bc8 b shadow_nodes_key
+ffffffff82514bd0 b tmp_bufs
+ffffffff82514bd8 b max_mapnr
+ffffffff82514be0 b mem_map
+ffffffff82514be8 b print_bad_pte.resume
+ffffffff82514bf0 b print_bad_pte.nr_shown
+ffffffff82514bf8 b print_bad_pte.nr_unshown
+ffffffff82514c00 b high_memory
+ffffffff82514c08 b shmlock_user_lock
+ffffffff82514c0c b ignore_rlimit_data
+ffffffff82514c0d b mmap_init.__key.llvm.7774975967370580042
+ffffffff82514c10 b anon_vma_cachep.llvm.13943339852349955666
+ffffffff82514c18 b anon_vma_chain_cachep.llvm.13943339852349955666
+ffffffff82514c20 b anon_vma_ctor.__key
+ffffffff82514c20 b nr_vmalloc_pages.llvm.8329325227821403876
+ffffffff82514c28 b vmap_area_lock
+ffffffff82514c30 b vmap_area_root
+ffffffff82514c38 b vmap_area_cachep
+ffffffff82514c40 b free_vmap_area_lock
+ffffffff82514c48 b free_vmap_area_root
+ffffffff82514c50 b vmap_blocks
+ffffffff82514c60 b vmap_lazy_nr
+ffffffff82514c68 b purge_vmap_area_lock
+ffffffff82514c70 b purge_vmap_area_root
+ffffffff82514c78 b saved_gfp_mask
+ffffffff82514c7c b movable_zone
+ffffffff82514c80 b setup_per_zone_wmarks.lock
+ffffffff82514c84 b percpu_pagelist_high_fraction
+ffffffff82514c88 b bad_page.resume
+ffffffff82514c90 b bad_page.nr_shown
+ffffffff82514c98 b bad_page.nr_unshown
+ffffffff82514ca0 b __drain_all_pages.cpus_with_pcps
+ffffffff82514ca8 b zonelist_update_seq
+ffffffff82514cb0 b overlap_memmap_init.r
+ffffffff82514cb8 b init_on_free
+ffffffff82514cb8 b pgdat_init_internals.__key
+ffffffff82514cb8 b pgdat_init_internals.__key.63
+ffffffff82514cb8 b pgdat_init_internals.__key.65
+ffffffff82514cb8 b pgdat_init_kcompactd.__key
+ffffffff82514cb8 b pgdat_kswapd_lock_init.__key
+ffffffff82514cc8 b page_alloc_shuffle_key
+ffffffff82514cd8 b shuffle_param
+ffffffff82514ce0 b shuffle_pick_tail.rand
+ffffffff82514ce8 b shuffle_pick_tail.rand_bits
+ffffffff82514cf0 b max_low_pfn
+ffffffff82514cf8 b min_low_pfn
+ffffffff82514d00 b max_pfn
+ffffffff82514d08 b max_possible_pfn
+ffffffff82514d10 b mhp_default_online_type
+ffffffff82514d14 b movable_node_enabled
+ffffffff82514d18 b sio_pool
+ffffffff82514d20 b swapin_nr_pages.prev_offset
+ffffffff82514d28 b swapin_nr_pages.last_readahead_pages
+ffffffff82514d2c b swap_avail_lock
+ffffffff82514d30 b swap_avail_heads
+ffffffff82514d38 b nr_swapfiles
+ffffffff82514d3c b swap_lock.llvm.13098503744718219347
+ffffffff82514d40 b swap_info
+ffffffff82514e18 b swapfile_maximum_size
+ffffffff82514e20 b swap_migration_ad_supported
+ffffffff82514e24 b proc_poll_event
+ffffffff82514e28 b nr_swap_pages
+ffffffff82514e30 b nr_rotate_swap
+ffffffff82514e38 b total_swap_pages
+ffffffff82514e40 b swap_slot_cache_enabled
+ffffffff82514e41 b swap_slot_cache_initialized
+ffffffff82514e42 b swap_slot_cache_active
+ffffffff82514e43 b alloc_swap_slot_cache.__key
+ffffffff82514e48 b __highest_present_section_nr
+ffffffff82514e50 b check_usemap_section_nr.old_usemap_snr
+ffffffff82514e58 b check_usemap_section_nr.old_pgdat_snr
+ffffffff82514e60 b mem_section
+ffffffff82514e68 b vmemmap_alloc_block.warned
+ffffffff82514e6c b slub_debug
+ffffffff82514e70 b slub_debug_string
+ffffffff82514e78 b kmem_cache_node
+ffffffff82514e80 b slab_nodes
+ffffffff82514e88 b slub_min_order
+ffffffff82514e8c b slub_min_objects
+ffffffff82514e90 b flushwq
+ffffffff82514e98 b slab_debugfs_root
+ffffffff82514ea0 b disable_higher_order_debug
+ffffffff82514ea4 b object_map_lock
+ffffffff82514eb0 b object_map
+ffffffff82515eb0 b slab_kset
+ffffffff82515eb8 b alias_list
+ffffffff82515ec0 b slub_debug_enabled
+ffffffff82515ed0 b kfence_allocation_key
+ffffffff82515ee0 b kfence_metadata
+ffffffff82527c60 b counters
+ffffffff82527ca0 b kfence_timer
+ffffffff82527d28 b kfence_freelist_lock
+ffffffff82527d30 b alloc_covered
+ffffffff82527f30 b huge_zero_refcount
+ffffffff82527f34 b khugepaged_mm_lock
+ffffffff82527f38 b khugepaged_pages_collapsed
+ffffffff82527f3c b khugepaged_full_scans
+ffffffff82527f40 b khugepaged_sleep_expire
+ffffffff82527f48 b stats_flush_threshold
+ffffffff82527f50 b flush_next_time
+ffffffff82527f60 b mem_cgroup_print_oom_meminfo.buf
+ffffffff82528f60 b memcg_sockets_enabled_key
+ffffffff82528f70 b stats_flush_lock
+ffffffff82528f74 b memcg_oom_lock
+ffffffff82528f78 b mem_cgroup_alloc.__key
+ffffffff82528f78 b objcg_lock
+ffffffff82528f80 b memcg_kmem_enabled_key
+ffffffff82528f90 b swap_cgroup_ctrl
+ffffffff82528f90 b vmpressure_init.__key
+ffffffff82529218 b dummy_handle
+ffffffff8252921c b failure_handle
+ffffffff82529220 b early_handle
+ffffffff82529228 b page_owner_inited
+ffffffff82529238 b huge_class_size.llvm.12065800014515334257
+ffffffff82529240 b total_usage
+ffffffff82529248 b early_page_ext
+ffffffff8252924c b secretmem_users
+ffffffff82529250 b secretmem_mnt
+ffffffff82529260 b damon_registered_ops
+ffffffff82529350 b damon_new_ctx.__key
+ffffffff82529350 b nr_running_ctxs
+ffffffff82529354 b running_exclusive_ctxs
+ffffffff82529358 b kdamond_split_regions.last_nr_regions
+ffffffff82529360 b __damon_pa_check_access.last_addr
+ffffffff82529368 b __damon_pa_check_access.last_accessed
+ffffffff82529370 b damon_reclaim_stat
+ffffffff82529398 b damon_reclaim_initialized
+ffffffff82529399 b damon_reclaim_timer_fn.last_enabled
+ffffffff825293a0 b ctx
+ffffffff825293a8 b target
+ffffffff825293b0 b page_reporting_enabled
+ffffffff825293c0 b alloc_empty_file.old_max
+ffffffff825293c8 b delayed_fput_list
+ffffffff825293d0 b __alloc_file.__key
+ffffffff825293d0 b files_init.__key
+ffffffff825293d0 b sb_lock
+ffffffff825293d8 b super_setup_bdi.bdi_seq
+ffffffff825293e0 b alloc_super.__key
+ffffffff825293e0 b alloc_super.__key.14
+ffffffff825293e0 b alloc_super.__key.16
+ffffffff825293e0 b alloc_super.__key.18
+ffffffff825293e0 b alloc_super.__key.20
+ffffffff825293e0 b chrdevs
+ffffffff82529bd8 b cdev_lock
+ffffffff82529be0 b cdev_map.llvm.7778121972292407816
+ffffffff82529be8 b suid_dumpable
+ffffffff82529bec b binfmt_lock
+ffffffff82529bf8 b pipe_user_pages_hard
+ffffffff82529c00 b alloc_pipe_info.__key
+ffffffff82529c00 b alloc_pipe_info.__key.2
+ffffffff82529c00 b alloc_pipe_info.__key.4
+ffffffff82529c00 b fasync_lock
+ffffffff82529c10 b in_lookup_hashtable
+ffffffff8252bc10 b get_next_ino.shared_last_ino
+ffffffff8252bc10 b inode_init_always.__key
+ffffffff8252bc10 b inode_init_always.__key.1
+ffffffff8252bc14 b iunique.iunique_lock
+ffffffff8252bc18 b iunique.counter
+ffffffff8252bc20 b inodes_stat
+ffffffff8252bc58 b __address_space_init_once.__key
+ffffffff8252bc58 b dup_fd.__key
+ffffffff8252bc58 b file_systems_lock
+ffffffff8252bc60 b file_systems
+ffffffff8252bc68 b fs_kobj
+ffffffff8252bc70 b event
+ffffffff8252bc78 b unmounted
+ffffffff8252bc80 b delayed_mntput_list
+ffffffff8252bc88 b alloc_mnt_ns.__key
+ffffffff8252bc88 b pin_fs_lock
+ffffffff8252bc88 b seq_open.__key
+ffffffff8252bc8c b simple_transaction_get.simple_transaction_lock
+ffffffff8252bc90 b isw_nr_in_flight
+ffffffff8252bc90 b simple_attr_open.__key
+ffffffff8252bc98 b isw_wq
+ffffffff8252bca0 b last_dest
+ffffffff8252bca8 b first_source
+ffffffff8252bcb0 b last_source
+ffffffff8252bcb8 b mp
+ffffffff8252bcc0 b list
+ffffffff8252bcc8 b dest_master
+ffffffff8252bcd0 b pin_lock
+ffffffff8252bcd8 b nsfs_mnt
+ffffffff8252bce0 b alloc_fs_context.__key
+ffffffff8252bce0 b max_buffer_heads
+ffffffff8252bce0 b vfs_dup_fs_context.__key
+ffffffff8252bce8 b buffer_heads_over_limit
+ffffffff8252bcec b fsnotify_sync_cookie
+ffffffff8252bcf0 b __fsnotify_alloc_group.__key
+ffffffff8252bcf0 b __fsnotify_alloc_group.__key.1
+ffffffff8252bcf0 b destroy_lock
+ffffffff8252bcf8 b connector_destroy_list
+ffffffff8252bd00 b fsnotify_mark_srcu
+ffffffff8252bee0 b fsnotify_mark_connector_cachep
+ffffffff8252bee8 b idr_callback.warned
+ffffffff8252bef0 b it_zero
+ffffffff8252bef8 b loop_check_gen
+ffffffff8252bf00 b ep_alloc.__key
+ffffffff8252bf00 b ep_alloc.__key.2
+ffffffff8252bf00 b ep_alloc.__key.4
+ffffffff8252bf00 b inserting_into
+ffffffff8252bf10 b path_count
+ffffffff8252bf28 b long_zero
+ffffffff8252bf30 b anon_inode_inode
+ffffffff8252bf38 b __do_sys_timerfd_create.__key
+ffffffff8252bf38 b cancel_lock
+ffffffff8252bf3c b do_eventfd.__key
+ffffffff8252bf3c b init_once_userfaultfd_ctx.__key
+ffffffff8252bf3c b init_once_userfaultfd_ctx.__key.10
+ffffffff8252bf3c b init_once_userfaultfd_ctx.__key.12
+ffffffff8252bf3c b init_once_userfaultfd_ctx.__key.8
+ffffffff8252bf40 b aio_mnt
+ffffffff8252bf48 b kiocb_cachep
+ffffffff8252bf50 b kioctx_cachep
+ffffffff8252bf58 b aio_nr
+ffffffff8252bf60 b aio_nr_lock
+ffffffff8252bf64 b blocked_lock_lock
+ffffffff8252bf64 b ioctx_alloc.__key
+ffffffff8252bf64 b ioctx_alloc.__key.11
+ffffffff8252bf68 b lease_notifier_chain
+ffffffff8252c180 b blocked_hash
+ffffffff8252c180 b locks_init_lock_heads.__key
+ffffffff8252c580 b enabled
+ffffffff8252c584 b entries_lock
+ffffffff8252c590 b bm_mnt
+ffffffff8252c598 b mb_entry_cache
+ffffffff8252c5a0 b do_coredump.core_dump_count
+ffffffff8252c5a4 b core_pipe_limit
+ffffffff8252c5a8 b core_uses_pid
+ffffffff8252c5b0 b __dump_skip.zeroes
+ffffffff8252d5b0 b drop_caches_sysctl_handler.stfu
+ffffffff8252d5b4 b sysctl_drop_caches
+ffffffff8252d5b8 b iomap_ioend_bioset
+ffffffff8252d6c0 b proc_subdir_lock
+ffffffff8252d6c8 b proc_tty_driver
+ffffffff8252d6d0 b sysctl_mount_point
+ffffffff8252d710 b sysctl_lock
+ffffffff8252d718 b saved_boot_config
+ffffffff8252d720 b kernfs_locks
+ffffffff8252d728 b kernfs_iattrs_cache
+ffffffff8252d728 b kernfs_mutex_init.__key
+ffffffff8252d730 b kernfs_node_cache
+ffffffff8252d738 b kernfs_rename_lock
+ffffffff8252d73c b kernfs_pr_cont_lock
+ffffffff8252d740 b kernfs_pr_cont_buf
+ffffffff8252e740 b kernfs_idr_lock
+ffffffff8252e744 b kernfs_create_root.__key
+ffffffff8252e744 b kernfs_create_root.__key.10
+ffffffff8252e744 b kernfs_notify_lock
+ffffffff8252e748 b kernfs_fop_open.__key
+ffffffff8252e748 b kernfs_fop_open.__key.4
+ffffffff8252e748 b kernfs_fop_open.__key.5
+ffffffff8252e748 b kernfs_get_open_node.__key
+ffffffff8252e748 b sysfs_symlink_target_lock
+ffffffff8252e750 b sysfs_root
+ffffffff8252e758 b sysfs_root_kn
+ffffffff8252e760 b pty_count
+ffffffff8252e764 b pty_limit_min
+ffffffff8252e768 b ext4_system_zone_cachep.llvm.11086791099300607287
+ffffffff8252e770 b ext4_es_cachep.llvm.289744894763650545
+ffffffff8252e778 b ext4_es_register_shrinker.__key
+ffffffff8252e778 b ext4_es_register_shrinker.__key.10
+ffffffff8252e778 b ext4_es_register_shrinker.__key.11
+ffffffff8252e778 b ext4_es_register_shrinker.__key.9
+ffffffff8252e778 b ext4_pending_cachep.llvm.289744894763650545
+ffffffff8252e780 b ext4_free_data_cachep
+ffffffff8252e780 b ext4_mb_add_groupinfo.__key
+ffffffff8252e780 b ext4_mb_init.__key
+ffffffff8252e788 b ext4_pspace_cachep
+ffffffff8252e790 b ext4_ac_cachep
+ffffffff8252e7a0 b ext4_groupinfo_caches
+ffffffff8252e7e0 b io_end_cachep.llvm.438604961381342279
+ffffffff8252e7e8 b io_end_vec_cachep.llvm.438604961381342279
+ffffffff8252e7f0 b bio_post_read_ctx_cache.llvm.14534710917782152402
+ffffffff8252e7f8 b bio_post_read_ctx_pool.llvm.14534710917782152402
+ffffffff8252e800 b ext4_li_info
+ffffffff8252e808 b ext4_lazyinit_task
+ffffffff8252e808 b ext4_li_info_new.__key
+ffffffff8252e810 b ext4_mount_msg_ratelimit
+ffffffff8252e838 b __ext4_fill_super.__key
+ffffffff8252e838 b __ext4_fill_super.__key.554
+ffffffff8252e838 b __ext4_fill_super.__key.555
+ffffffff8252e838 b __ext4_fill_super.__key.556
+ffffffff8252e838 b __ext4_fill_super.__key.557
+ffffffff8252e838 b __ext4_fill_super.__key.558
+ffffffff8252e838 b __ext4_fill_super.rwsem_key
+ffffffff8252e838 b ext4_inode_cachep
+ffffffff8252e840 b ext4__ioend_wq
+ffffffff8252e840 b ext4_alloc_inode.__key
+ffffffff8252e840 b ext4_init_fs.__key
+ffffffff8252e840 b init_once.__key
+ffffffff8252e840 b init_once.__key
+ffffffff8252e840 b init_once.__key.695
+ffffffff8252ebb8 b ext4_root
+ffffffff8252ebc0 b ext4_proc_root
+ffffffff8252ebc8 b ext4_feat
+ffffffff8252ebd0 b ext4_expand_extra_isize_ea.mnt_count
+ffffffff8252ebd4 b ext4_fc_init_inode.__key
+ffffffff8252ebd8 b ext4_fc_dentry_cachep.llvm.7135107497040291996
+ffffffff8252ebe0 b transaction_cache.llvm.5297122349352392742
+ffffffff8252ebe8 b jbd2_revoke_record_cache.llvm.4106288133737243758
+ffffffff8252ebf0 b jbd2_revoke_table_cache.llvm.4106288133737243758
+ffffffff8252ebf8 b jbd2_inode_cache
+ffffffff8252ec00 b proc_jbd2_stats
+ffffffff8252ec08 b journal_init_common.__key
+ffffffff8252ec08 b journal_init_common.__key.102
+ffffffff8252ec08 b journal_init_common.__key.84
+ffffffff8252ec08 b journal_init_common.__key.86
+ffffffff8252ec08 b journal_init_common.__key.88
+ffffffff8252ec08 b journal_init_common.__key.90
+ffffffff8252ec08 b journal_init_common.__key.92
+ffffffff8252ec08 b journal_init_common.__key.94
+ffffffff8252ec08 b journal_init_common.__key.96
+ffffffff8252ec08 b journal_init_common.__key.98
+ffffffff8252ec10 b jbd2_slab
+ffffffff8252ec50 b jbd2_journal_head_cache
+ffffffff8252ec58 b jbd2_handle_cache
+ffffffff8252ec60 b nls_lock
+ffffffff8252ec68 b p_nls
+ffffffff8252ec70 b p_nls
+ffffffff8252ec80 b identity
+ffffffff8252ed80 b fuse_req_cachep.llvm.8514887056761313685
+ffffffff8252ed88 b fuse_conn_init.__key
+ffffffff8252ed88 b fuse_conn_init.__key.2
+ffffffff8252ed88 b fuse_file_alloc.__key
+ffffffff8252ed88 b fuse_file_alloc.__key.1
+ffffffff8252ed88 b fuse_init_file_inode.__key
+ffffffff8252ed88 b fuse_inode_cachep
+ffffffff8252ed88 b fuse_iqueue_init.__key
+ffffffff8252ed88 b fuse_request_init.__key
+ffffffff8252ed88 b fuse_sync_bucket_alloc.__key
+ffffffff8252ed90 b fuse_alloc_inode.__key
+ffffffff8252ed90 b fuse_kobj
+ffffffff8252ed98 b max_user_bgreq
+ffffffff8252ed9c b max_user_congthresh
+ffffffff8252eda0 b fuse_conn_list
+ffffffff8252edb0 b fuse_control_sb
+ffffffff8252edb8 b debugfs_mount
+ffffffff8252edc0 b debugfs_mount_count
+ffffffff8252edc4 b debugfs_registered.llvm.3529859937250671047
+ffffffff8252edc8 b tracefs_mount
+ffffffff8252edd0 b tracefs_mount_count
+ffffffff8252edd4 b tracefs_registered.llvm.12742221174473325756
+ffffffff8252edd5 b erofs_init_fs_context.__key
+ffffffff8252edd8 b erofs_global_shrink_cnt
+ffffffff8252ede0 b erofs_sb_list_lock
+ffffffff8252ede0 b erofs_shrinker_register.__key
+ffffffff8252ede4 b shrinker_run_no
+ffffffff8252ede8 b erofs_pcpubuf_growsize.pcb_nrpages
+ffffffff8252edec b warn_setuid_and_fcaps_mixed.warned
+ffffffff8252edec b z_erofs_register_pcluster.__key
+ffffffff8252edf0 b mmap_min_addr
+ffffffff8252edf8 b lsm_names
+ffffffff8252ee00 b lsm_inode_cache
+ffffffff8252ee08 b lsm_file_cache
+ffffffff8252ee10 b mount
+ffffffff8252ee18 b mount_count
+ffffffff8252ee20 b lsm_dentry
+ffffffff8252ee28 b selinux_avc
+ffffffff82530640 b avc_latest_notif_update.notif_lock
+ffffffff82530644 b selinux_checkreqprot_boot
+ffffffff82530648 b selinux_init.__key
+ffffffff82530648 b selinux_init.__key.34
+ffffffff82530648 b selinux_secmark_refcount
+ffffffff8253064c b selinux_sb_alloc_security.__key
+ffffffff82530650 b selinux_state
+ffffffff825306d8 b sel_netif_lock
+ffffffff825306e0 b sel_netif_hash
+ffffffff82530ae0 b sel_netif_total
+ffffffff82530ae4 b sel_netnode_lock
+ffffffff82530af0 b sel_netnode_hash
+ffffffff825322f0 b sel_netport_lock
+ffffffff82532300 b sel_netport_hash
+ffffffff82533b00 b integrity_iint_lock
+ffffffff82533b08 b integrity_iint_tree
+ffffffff82533b10 b integrity_dir
+ffffffff82533b18 b integrity_audit_info
+ffffffff82533b1c b scomp_scratch_users
+ffffffff82533b20 b notests
+ffffffff82533b21 b panic_on_fail
+ffffffff82533b28 b crypto_default_null_skcipher
+ffffffff82533b30 b crypto_default_null_skcipher_refcnt
+ffffffff82533b38 b gcm_zeroes
+ffffffff82533b40 b cryptd_wq
+ffffffff82533b48 b queue
+ffffffff82533b50 b crypto_default_rng
+ffffffff82533b58 b crypto_default_rng_refcnt
+ffffffff82533b5c b dbg
+ffffffff82533b60 b drbg_algs
+ffffffff82535f20 b bdev_cache_init.bd_mnt
+ffffffff82535f20 b drbg_kcapi_init.__key
+ffffffff82535f28 b bdev_alloc.__key
+ffffffff82535f28 b blkdev_dio_pool
+ffffffff82536030 b fs_bio_set
+ffffffff82536138 b bio_dirty_lock
+ffffffff82536140 b bio_dirty_list
+ffffffff82536148 b bio_slabs
+ffffffff82536158 b elevator_alloc.__key
+ffffffff82536158 b elv_list_lock
+ffffffff8253615c b blk_alloc_queue.__key
+ffffffff8253615c b blk_alloc_queue.__key.10
+ffffffff8253615c b blk_alloc_queue.__key.4
+ffffffff8253615c b blk_alloc_queue.__key.6
+ffffffff8253615c b blk_alloc_queue.__key.8
+ffffffff82536160 b kblockd_workqueue.llvm.1728118304392112878
+ffffffff82536168 b blk_requestq_cachep
+ffffffff82536170 b blk_requestq_srcu_cachep
+ffffffff82536178 b blk_debugfs_root
+ffffffff82536180 b iocontext_cachep
+ffffffff82536188 b blk_mq_alloc_tag_set.__key
+ffffffff82536188 b major_names_spinlock
+ffffffff82536190 b major_names
+ffffffff82536988 b block_depr
+ffffffff82536990 b __alloc_disk_node.__key
+ffffffff82536990 b diskseq
+ffffffff82536998 b force_gpt
+ffffffff82536998 b genhd_device_init.__key
+ffffffff825369a0 b disk_events_dfl_poll_msecs
+ffffffff825369a8 b blkcg_root
+ffffffff825369a8 b disk_alloc_events.__key
+ffffffff82536b08 b blkcg_debug_stats
+ffffffff82536b10 b blkcg_policy
+ffffffff82536b40 b blkcg_punt_bio_wq
+ffffffff82536b48 b blkg_rwstat_init.__key
+ffffffff82536b48 b trace_iocg_path_lock
+ffffffff82536b50 b trace_iocg_path
+ffffffff82536f50 b bfq_pool
+ffffffff82536f50 b ioc_pd_init.__key
+ffffffff82536f58 b ref_wr_duration
+ffffffff82536f60 b bio_crypt_ctx_pool
+ffffffff82536f68 b bio_crypt_ctx_cache
+ffffffff82536f70 b blk_crypto_mode_attrs
+ffffffff82536f70 b blk_crypto_profile_init.__key
+ffffffff82536f70 b blk_crypto_profile_init.__key.1
+ffffffff82536fa0 b __blk_crypto_mode_attrs
+ffffffff82537018 b tfms_inited
+ffffffff82537020 b blk_crypto_fallback_profile.llvm.12782402802872456668
+ffffffff825370f0 b bio_fallback_crypt_ctx_pool
+ffffffff825370f8 b blk_crypto_keyslots
+ffffffff82537100 b blk_crypto_bounce_page_pool
+ffffffff82537108 b crypto_bio_split
+ffffffff82537210 b blk_crypto_wq
+ffffffff82537218 b blk_crypto_fallback_inited
+ffffffff82537220 b blank_key
+ffffffff82537260 b bio_fallback_crypt_ctx_cache
+ffffffff82537268 b req_cachep
+ffffffff82537270 b io_get_sq_data.__key
+ffffffff82537270 b io_get_sq_data.__key.2
+ffffffff82537270 b io_init_wq_offload.__key
+ffffffff82537270 b io_ring_ctx_alloc.__key
+ffffffff82537270 b io_ring_ctx_alloc.__key.89
+ffffffff82537270 b io_ring_ctx_alloc.__key.91
+ffffffff82537270 b io_uring_alloc_task_context.__key
+ffffffff82537270 b io_uring_alloc_task_context.__key.1
+ffffffff82537270 b io_wq_online
+ffffffff82537274 b percpu_ref_switch_lock
+ffffffff82537278 b percpu_ref_switch_to_atomic_rcu.underflows
+ffffffff8253727c b rhashtable_init.__key
+ffffffff82537280 b rht_bucket_nested.rhnull
+ffffffff82537288 b once_lock
+ffffffff82537290 b tfm
+ffffffff825372a0 b static_ltree
+ffffffff82537720 b static_dtree
+ffffffff825377a0 b length_code
+ffffffff825378a0 b dist_code
+ffffffff82537aa0 b tr_static_init.static_init_done
+ffffffff82537ab0 b base_length
+ffffffff82537b30 b base_dist
+ffffffff82537ba8 b g_debuglevel
+ffffffff82537bac b percpu_counters_lock
+ffffffff82537bb0 b verbose
+ffffffff82537bb4 b stack_depot_disable
+ffffffff82537bb8 b stack_hash_mask
+ffffffff82537bc0 b stack_table
+ffffffff82537bc8 b depot_index
+ffffffff82537bd0 b stack_slabs
+ffffffff82547bd0 b next_slab_inited
+ffffffff82547bd4 b depot_lock
+ffffffff82547bd8 b depot_offset
+ffffffff82547be0 b gpiochip_add_data_with_key.__key
+ffffffff82547be0 b gpiochip_add_data_with_key.__key.8
+ffffffff82547be0 b gpiolib_initialized
+ffffffff82547be0 b sbitmap_queue_init_node.__key
+ffffffff82547be4 b gpio_devt
+ffffffff82547be8 b gpio_lock
+ffffffff82547bec b gpio_chrdev_open.__key
+ffffffff82547bec b lineevent_create.__key
+ffffffff82547bec b linereq_create.__key
+ffffffff82547bec b linereq_create.__key.7
+ffffffff82547bf0 b ignore_wake
+ffffffff82547bf8 b ignore_interrupt
+ffffffff82547c00 b acpi_gpio_deferred_req_irqs_done
+ffffffff82547c01 b acpi_gpiochip_request_regions.__key
+ffffffff82547c04 b pci_lock
+ffffffff82547c08 b pci_pci_problems
+ffffffff82547c08 b pcibus_class_init.__key
+ffffffff82547c0c b pcie_ats_disabled.llvm.10931309326443414158
+ffffffff82547c10 b pci_acs_enable.llvm.10931309326443414158
+ffffffff82547c11 b pci_bridge_d3_disable
+ffffffff82547c12 b pci_bridge_d3_force
+ffffffff82547c13 b pcie_ari_disabled
+ffffffff82547c14 b pci_cache_line_size
+ffffffff82547c18 b arch_set_vga_state
+ffffffff82547c20 b pci_pm_d3hot_delay
+ffffffff82547c28 b disable_acs_redir_param
+ffffffff82547c30 b resource_alignment_lock
+ffffffff82547c38 b resource_alignment_param
+ffffffff82547c40 b pci_early_dump
+ffffffff82547c44 b sysfs_initialized.llvm.10079066930483942760
+ffffffff82547c45 b pci_vpd_init.__key
+ffffffff82547c48 b pci_flags
+ffffffff82547c4c b pci_msi_enable.llvm.5600402374790124330
+ffffffff82547c50 b pci_msi_ignore_mask
+ffffffff82547c54 b pcie_ports_disabled
+ffffffff82547c55 b pcie_ports_native
+ffffffff82547c56 b pcie_ports_dpc_native
+ffffffff82547c57 b aspm_support_enabled.llvm.643982851051149771
+ffffffff82547c58 b aspm_policy
+ffffffff82547c5c b aspm_disabled
+ffffffff82547c60 b aspm_force
+ffffffff82547c64 b pcie_aer_disable.llvm.8699746857511190004
+ffffffff82547c65 b pcie_pme_msi_disabled
+ffffffff82547c68 b proc_initialized
+ffffffff82547c70 b proc_bus_pci_dir
+ffffffff82547c78 b pci_slots_kset
+ffffffff82547c80 b pci_acpi_find_companion_hook
+ffffffff82547c88 b pci_msi_get_fwnode_cb
+ffffffff82547c90 b pci_apply_fixup_final_quirks
+ffffffff82547c94 b asus_hides_smbus
+ffffffff82547c98 b asus_rcba_base
+ffffffff82547ca0 b vga_default.llvm.10297976940065298067
+ffffffff82547ca8 b vga_lock
+ffffffff82547cac b vga_lock
+ffffffff82547cb0 b vga_arbiter_used
+ffffffff82547cb4 b vga_count
+ffffffff82547cb8 b vga_decode_count
+ffffffff82547cbc b vga_user_lock
+ffffffff82547cc0 b pci_epc_class
+ffffffff82547cc8 b __pci_epc_create.__key
+ffffffff82547cc8 b pci_epc_init.__key
+ffffffff82547cc8 b pci_epc_multi_mem_init.__key
+ffffffff82547cc8 b pci_epf_create.__key
+ffffffff82547cc8 b vga_hardscroll_enabled
+ffffffff82547cc9 b vga_hardscroll_user_enable
+ffffffff82547ccc b vga_video_num_lines
+ffffffff82547cd0 b vga_video_num_columns
+ffffffff82547cd4 b vga_video_font_height
+ffffffff82547cd8 b vga_can_do_color
+ffffffff82547cdc b vgacon_xres
+ffffffff82547ce0 b vgacon_yres
+ffffffff82547ce4 b vga_512_chars
+ffffffff82547ce8 b vgacon_uni_pagedir
+ffffffff82547cf0 b vgacon_refcount
+ffffffff82547cf4 b cursor_size_lastfrom
+ffffffff82547cf8 b cursor_size_lastto
+ffffffff82547cfc b vga_is_gfx
+ffffffff82547d00 b vga_rolled_over
+ffffffff82547d04 b vga_vesa_blanked
+ffffffff82547d08 b vga_palette_blanked
+ffffffff82547d09 b vga_state.0
+ffffffff82547d0a b vga_state.1
+ffffffff82547d0b b vga_state.2
+ffffffff82547d0c b vga_state.3
+ffffffff82547d0d b vga_state.4
+ffffffff82547d0e b vga_state.5
+ffffffff82547d0f b vga_state.6
+ffffffff82547d10 b vga_state.7
+ffffffff82547d11 b vga_state.8
+ffffffff82547d12 b vga_state.9
+ffffffff82547d13 b vga_state.10
+ffffffff82547d14 b vga_state.11
+ffffffff82547d18 b vgacon_save_screen.vga_bootup_console
+ffffffff82547d1c b all_tables_size
+ffffffff82547d20 b acpi_tables_addr
+ffffffff82547d28 b acpi_initrd_installed
+ffffffff82547d30 b osi_config.0
+ffffffff82547d34 b osi_config.1
+ffffffff82547d35 b acpi_permanent_mmap
+ffffffff82547d40 b acpi_os_vprintf.buffer
+ffffffff82547f40 b acpi_rev_override.llvm.513496202130684699
+ffffffff82547f50 b acpi_os_name
+ffffffff82547fb8 b acpi_irq_handler
+ffffffff82547fc0 b acpi_irq_context
+ffffffff82547fc8 b kacpi_notify_wq
+ffffffff82547fd0 b kacpid_wq
+ffffffff82547fd8 b kacpi_hotplug_wq.llvm.513496202130684699
+ffffffff82547fe0 b acpi_os_initialized
+ffffffff82547fe8 b __acpi_os_prepare_sleep
+ffffffff82547ff0 b acpi_video_backlight_string
+ffffffff82548000 b acpi_target_sleep_state.llvm.3791504494798020550
+ffffffff82548004 b nvs_nosave.llvm.3791504494798020550
+ffffffff82548005 b nvs_nosave_s3.llvm.3791504494798020550
+ffffffff82548006 b old_suspend_ordering.llvm.3791504494798020550
+ffffffff82548007 b ignore_blacklist.llvm.3791504494798020550
+ffffffff82548008 b s2idle_wakeup.llvm.3791504494798020550
+ffffffff82548009 b sleep_states
+ffffffff8254800f b acpi_no_s5
+ffffffff82548010 b acpi_sleep_default_s3
+ffffffff82548014 b saved_bm_rld
+ffffffff82548018 b pwr_btn_event_pending
+ffffffff82548019 b osc_pc_lpi_support_confirmed
+ffffffff8254801a b osc_cpc_flexible_adr_space_confirmed
+ffffffff8254801b b osc_sb_native_usb4_support_confirmed
+ffffffff8254801c b osc_sb_native_usb4_control
+ffffffff82548020 b acpi_kobj
+ffffffff82548028 b acpi_root
+ffffffff82548030 b osc_sb_apei_support_acked
+ffffffff82548031 b osc_sb_cppc2_support_acked
+ffffffff82548038 b acpi_root_dir
+ffffffff82548040 b acpi_bus_scan_second_pass
+ffffffff82548040 b acpi_device_add.__key
+ffffffff82548041 b acpi_scan_initialized
+ffffffff82548048 b ape
+ffffffff82548050 b acpi_probe_count
+ffffffff82548058 b spcr_uart_addr
+ffffffff82548060 b nr_duplicate_ids
+ffffffff82548064 b acpi_processor_claim_cst_control.cst_control_claimed
+ffffffff82548065 b acpi_hwp_native_thermal_lvt_set
+ffffffff82548068 b acpi_processor_get_info.cpu0_initialized
+ffffffff82548070 b get_madt_table.madt
+ffffffff82548078 b get_madt_table.read_madt
+ffffffff82548080 b first_ec
+ffffffff82548088 b ec_wq
+ffffffff82548090 b boot_ec
+ffffffff82548098 b EC_FLAGS_CORRECT_ECDT
+ffffffff82548099 b boot_ec_is_ecdt
+ffffffff825480a0 b ec_query_wq
+ffffffff825480a8 b EC_FLAGS_CLEAR_ON_RESUME
+ffffffff825480a8 b acpi_ec_alloc.__key
+ffffffff825480a8 b acpi_ec_alloc.__key.11
+ffffffff825480ac b EC_FLAGS_TRUST_DSDT_GPE
+ffffffff825480b0 b sci_penalty
+ffffffff825480b4 b acpi_add_power_resource.__key
+ffffffff825480b8 b attrs
+ffffffff825480c0 b acpi_event_seqnum
+ffffffff825480c8 b dynamic_tables_kobj
+ffffffff825480d0 b all_counters
+ffffffff825480d8 b num_gpes
+ffffffff825480dc b num_counters
+ffffffff825480e0 b all_attrs
+ffffffff825480e8 b counter_attrs
+ffffffff825480f0 b hotplug_kobj
+ffffffff825480f8 b acpi_irq_handled
+ffffffff825480fc b acpi_irq_not_handled
+ffffffff82548100 b acpi_gpe_count
+ffffffff82548104 b acpi_gpe_count
+ffffffff82548108 b tables_kobj
+ffffffff82548110 b tables_data_kobj
+ffffffff82548118 b lps0_device_handle
+ffffffff82548120 b lps0_dsm_func_mask
+ffffffff82548128 b lps0_dsm_guid
+ffffffff82548138 b lps0_dsm_func_mask_microsoft
+ffffffff82548140 b lps0_dsm_guid_microsoft
+ffffffff82548150 b rev_id
+ffffffff82548158 b lps0_device_attach.dev_id
+ffffffff82548160 b lpi_constraints_table
+ffffffff82548168 b lpi_constraints_table_size
+ffffffff82548170 b acpi_debugfs_dir
+ffffffff82548178 b residency_info_mem
+ffffffff82548198 b residency_info_ffh
+ffffffff825481b8 b pcc_ctx
+ffffffff825481c8 b acpi_gbl_trace_method_object
+ffffffff825481d0 b acpi_gbl_enable_interpreter_slack
+ffffffff825481d1 b acpi_gbl_enable_aml_debug_object
+ffffffff825481d2 b acpi_gbl_copy_dsdt_locally
+ffffffff825481d3 b acpi_gbl_do_not_use_xsdt
+ffffffff825481d4 b acpi_gbl_use32_bit_fadt_addresses
+ffffffff825481d5 b acpi_gbl_truncate_io_addresses
+ffffffff825481d6 b acpi_gbl_disable_auto_repair
+ffffffff825481d7 b acpi_gbl_disable_ssdt_table_install
+ffffffff825481d8 b acpi_gbl_osi_data
+ffffffff825481d9 b acpi_gbl_reduced_hardware
+ffffffff825481da b acpi_gbl_ignore_package_resolution_errors
+ffffffff825481dc b acpi_gbl_trace_flags
+ffffffff825481e0 b acpi_gbl_trace_method_name
+ffffffff825481e8 b acpi_dbg_layer
+ffffffff825481ec b acpi_gbl_display_debug_timer
+ffffffff825481f0 b acpi_gbl_startup_flags
+ffffffff825481f4 b acpi_gbl_namespace_initialized
+ffffffff825481f8 b acpi_gbl_current_scope
+ffffffff82548200 b acpi_gbl_capture_comments
+ffffffff82548208 b acpi_gbl_last_list_head
+ffffffff82548210 b acpi_gbl_FADT
+ffffffff82548324 b acpi_current_gpe_count
+ffffffff82548328 b acpi_gbl_system_awake_and_running
+ffffffff82548330 b acpi_gbl_root_table_list
+ffffffff82548348 b acpi_gbl_DSDT
+ffffffff82548350 b acpi_gbl_original_dsdt_header
+ffffffff82548378 b acpi_gbl_FACS
+ffffffff82548380 b acpi_gbl_xpm1a_status
+ffffffff8254838c b acpi_gbl_xpm1a_enable
+ffffffff82548398 b acpi_gbl_xpm1b_status
+ffffffff825483a4 b acpi_gbl_xpm1b_enable
+ffffffff825483b0 b acpi_gbl_xgpe0_block_logical_address
+ffffffff825483b8 b acpi_gbl_xgpe1_block_logical_address
+ffffffff825483c0 b acpi_gbl_integer_bit_width
+ffffffff825483c1 b acpi_gbl_integer_byte_width
+ffffffff825483c2 b acpi_gbl_integer_nybble_width
+ffffffff825483d0 b acpi_gbl_mutex_info
+ffffffff82548460 b acpi_gbl_global_lock_mutex
+ffffffff82548468 b acpi_gbl_global_lock_semaphore
+ffffffff82548470 b acpi_gbl_global_lock_pending_lock
+ffffffff82548478 b acpi_gbl_global_lock_handle
+ffffffff8254847a b acpi_gbl_global_lock_acquired
+ffffffff8254847b b acpi_gbl_global_lock_present
+ffffffff8254847c b acpi_gbl_global_lock_pending
+ffffffff82548480 b acpi_gbl_gpe_lock
+ffffffff82548488 b acpi_gbl_hardware_lock
+ffffffff82548490 b acpi_gbl_reference_count_lock
+ffffffff82548498 b acpi_gbl_osi_mutex
+ffffffff825484a0 b acpi_gbl_namespace_rw_lock
+ffffffff825484b8 b acpi_gbl_namespace_cache
+ffffffff825484c0 b acpi_gbl_state_cache
+ffffffff825484c8 b acpi_gbl_ps_node_cache
+ffffffff825484d0 b acpi_gbl_ps_node_ext_cache
+ffffffff825484d8 b acpi_gbl_operand_cache
+ffffffff825484e0 b acpi_gbl_global_notify
+ffffffff82548500 b acpi_gbl_exception_handler
+ffffffff82548508 b acpi_gbl_init_handler
+ffffffff82548510 b acpi_gbl_table_handler
+ffffffff82548518 b acpi_gbl_table_handler_context
+ffffffff82548520 b acpi_gbl_interface_handler
+ffffffff82548528 b acpi_gbl_sci_handler_list
+ffffffff82548530 b acpi_gbl_owner_id_mask
+ffffffff82548730 b acpi_gbl_last_owner_id_index
+ffffffff82548731 b acpi_gbl_next_owner_id_offset
+ffffffff82548734 b acpi_gbl_original_mode
+ffffffff82548738 b acpi_gbl_ns_lookup_count
+ffffffff8254873c b acpi_gbl_ps_find_count
+ffffffff82548740 b acpi_gbl_pm1_enable_register_save
+ffffffff82548742 b acpi_gbl_debugger_configuration
+ffffffff82548743 b acpi_gbl_step_to_next_call
+ffffffff82548744 b acpi_gbl_acpi_hardware_present
+ffffffff82548745 b acpi_gbl_events_initialized
+ffffffff82548748 b acpi_gbl_supported_interfaces
+ffffffff82548750 b acpi_gbl_address_range_list
+ffffffff82548760 b acpi_gbl_root_node_struct
+ffffffff82548790 b acpi_gbl_root_node
+ffffffff82548798 b acpi_gbl_fadt_gpe_device
+ffffffff825487a0 b acpi_gbl_cm_single_step
+ffffffff825487a8 b acpi_gbl_current_walk_list
+ffffffff825487b0 b acpi_gbl_sleep_type_a
+ffffffff825487b1 b acpi_gbl_sleep_type_b
+ffffffff825487b2 b acpi_gbl_sleep_type_a_s0
+ffffffff825487b3 b acpi_gbl_sleep_type_b_s0
+ffffffff825487b4 b acpi_gbl_all_gpes_initialized
+ffffffff825487b8 b acpi_gbl_gpe_xrupt_list_head
+ffffffff825487c0 b acpi_gbl_gpe_fadt_blocks
+ffffffff825487d0 b acpi_gbl_global_event_handler
+ffffffff825487d8 b acpi_gbl_global_event_handler_context
+ffffffff825487e0 b acpi_gbl_fixed_event_handlers
+ffffffff82548830 b acpi_method_count
+ffffffff82548834 b acpi_sci_count
+ffffffff82548840 b acpi_fixed_event_count
+ffffffff82548854 b acpi_gbl_original_dbg_level
+ffffffff82548858 b acpi_gbl_original_dbg_layer
+ffffffff8254885c b ac_only
+ffffffff82548860 b ac_sleep_before_get_state_ms
+ffffffff82548868 b lid_device
+ffffffff82548870 b acpi_button_dir
+ffffffff82548878 b acpi_lid_dir
+ffffffff82548880 b acpi_processor_cpufreq_init
+ffffffff82548884 b hp_online
+ffffffff82548888 b hp_online
+ffffffff8254888c b acpi_processor_registered
+ffffffff82548890 b flat_state_cnt
+ffffffff82548894 b c3_lock
+ffffffff82548898 b c3_cpu_count
+ffffffff8254889c b acpi_processor_cstate_first_run_checks.first_run
+ffffffff825488a0 b ignore_tpc
+ffffffff825488a4 b acpi_processor_notify_smm.is_done
+ffffffff825488a8 b act
+ffffffff825488ac b crt
+ffffffff825488b0 b tzp
+ffffffff825488b4 b nocrt
+ffffffff825488b8 b off
+ffffffff825488bc b psv
+ffffffff825488c0 b acpi_thermal_pm_queue
+ffffffff825488c8 b acpi_thermal_add.__key
+ffffffff825488c8 b async_cookie
+ffffffff825488d0 b battery_driver_registered
+ffffffff825488d1 b acpi_battery_add.__key
+ffffffff825488d1 b acpi_battery_add.__key.6
+ffffffff825488d4 b battery_bix_broken_package
+ffffffff825488d8 b battery_ac_is_broken
+ffffffff825488dc b battery_notification_delay_ms
+ffffffff825488e0 b pcc_data
+ffffffff825490e0 b acpi_cppc_processor_probe.__key
+ffffffff825490e0 b acpi_cppc_processor_probe.__key.2
+ffffffff825490e0 b qdf2400_e44_present
+ffffffff825490f0 b acpi_parse_spcr.opts
+ffffffff82549130 b pnp_platform_devices
+ffffffff82549134 b pnp_debug
+ffffffff82549138 b num
+ffffffff8254913c b force_legacy
+ffffffff8254913d b virtballoon_probe.__key
+ffffffff8254913d b virtballoon_probe.__key.4
+ffffffff82549140 b redirect_lock
+ffffffff82549148 b redirect
+ffffffff82549150 b alloc_tty_struct.__key
+ffffffff82549150 b alloc_tty_struct.__key.14
+ffffffff82549150 b alloc_tty_struct.__key.16
+ffffffff82549150 b alloc_tty_struct.__key.18
+ffffffff82549150 b alloc_tty_struct.__key.20
+ffffffff82549150 b alloc_tty_struct.__key.22
+ffffffff82549150 b alloc_tty_struct.__key.24
+ffffffff82549150 b alloc_tty_struct.__key.26
+ffffffff82549150 b consdev
+ffffffff82549158 b tty_cdev
+ffffffff825491e0 b console_cdev
+ffffffff82549268 b tty_class
+ffffffff82549268 b tty_class_init.__key
+ffffffff82549270 b n_tty_open.__key
+ffffffff82549270 b n_tty_open.__key.2
+ffffffff82549270 b tty_ldiscs_lock
+ffffffff82549280 b tty_ldiscs
+ffffffff82549378 b ptm_driver
+ffffffff82549378 b tty_buffer_init.__key
+ffffffff82549378 b tty_port_init.__key
+ffffffff82549378 b tty_port_init.__key.1
+ffffffff82549378 b tty_port_init.__key.3
+ffffffff82549378 b tty_port_init.__key.5
+ffffffff82549380 b pts_driver
+ffffffff82549388 b ptmx_cdev
+ffffffff82549410 b sysrq_reset_downtime_ms
+ffffffff82549410 b tty_audit_buf_alloc.__key
+ffffffff82549414 b sysrq_reset_seq_len
+ffffffff82549420 b sysrq_reset_seq
+ffffffff82549448 b sysrq_key_table_lock
+ffffffff8254944c b vt_event_lock
+ffffffff82549450 b disable_vt_switch
+ffffffff82549454 b vt_dont_switch
+ffffffff82549458 b vc_class
+ffffffff82549460 b vcs_init.__key
+ffffffff82549460 b vcs_poll_data_get.__key
+ffffffff82549460 b vt_spawn_con
+ffffffff82549478 b keyboard_notifier_list
+ffffffff82549488 b vt_switch
+ffffffff8254948c b kbd_event_lock
+ffffffff82549490 b led_lock
+ffffffff82549494 b ledioctl
+ffffffff825494a0 b kbd_table
+ffffffff825495dc b func_buf_lock
+ffffffff825495e0 b shift_state.llvm.1463736276676116432
+ffffffff825495e4 b kd_nosound.zero
+ffffffff825495e8 b shift_down
+ffffffff82549600 b key_down
+ffffffff82549660 b rep
+ffffffff82549664 b diacr
+ffffffff82549668 b dead_key_next
+ffffffff82549669 b npadch_active
+ffffffff8254966c b npadch_value
+ffffffff82549670 b k_brl.pressed
+ffffffff82549674 b k_brl.committing
+ffffffff82549678 b k_brl.releasestart
+ffffffff82549680 b k_brlcommit.chords
+ffffffff82549688 b k_brlcommit.committed
+ffffffff82549690 b vt_kdskbsent.is_kmalloc
+ffffffff825496b0 b inv_translate
+ffffffff825497b0 b dflt
+ffffffff825497b8 b blankinterval
+ffffffff825497c0 b vt_notifier_list.llvm.1374852128680100967
+ffffffff825497d0 b complement_pos.old
+ffffffff825497d2 b complement_pos.oldx
+ffffffff825497d4 b complement_pos.oldy
+ffffffff825497d8 b tty0dev
+ffffffff825497e0 b vt_kmsg_redirect.kmsg_con
+ffffffff825497e4 b ignore_poke
+ffffffff825497e8 b console_blanked
+ffffffff825497f0 b vc0_cdev
+ffffffff82549880 b con_driver_map
+ffffffff82549a78 b saved_fg_console
+ffffffff82549a7c b saved_last_console
+ffffffff82549a80 b saved_want_console
+ffffffff82549a84 b saved_vc_mode
+ffffffff82549a88 b saved_console_blanked
+ffffffff82549a90 b conswitchp
+ffffffff82549aa0 b registered_con_driver
+ffffffff82549d20 b blank_state
+ffffffff82549d24 b vesa_blank_mode
+ffffffff82549d28 b blank_timer_expired
+ffffffff82549d2c b vesa_off_interval
+ffffffff82549d30 b console_blank_hook
+ffffffff82549d38 b scrollback_delta
+ffffffff82549d40 b master_display_fg
+ffffffff82549d48 b vc_init.__key
+ffffffff82549d48 b vt_console_print.printing_lock
+ffffffff82549d50 b vtconsole_class
+ffffffff82549d58 b do_poke_blanked_console
+ffffffff82549d58 b vtconsole_class_init.__key
+ffffffff82549d60 b console_driver
+ffffffff82549d68 b fg_console
+ffffffff82549d70 b vc_cons
+ffffffff8254ab38 b last_console
+ffffffff8254ab3c b funcbufleft
+ffffffff8254ab40 b cons_ops
+ffffffff8254abc0 b hvc_kicked.llvm.8653731392714374528
+ffffffff8254abc8 b hvc_task.llvm.8653731392714374528
+ffffffff8254abd0 b hvc_driver
+ffffffff8254abd8 b sysrq_pressed
+ffffffff8254abdc b uart_set_options.dummy
+ffffffff8254ac08 b uart_add_one_port.__key
+ffffffff8254ac10 b serial8250_ports
+ffffffff8254b950 b serial8250_isa_config
+ffffffff8254b958 b nr_uarts
+ffffffff8254b960 b serial8250_isa_devs
+ffffffff8254b968 b share_irqs
+ffffffff8254b96c b skip_txen_test
+ffffffff8254b970 b serial8250_isa_init_ports.first
+ffffffff8254b978 b base_ops
+ffffffff8254b980 b univ8250_port_ops
+ffffffff8254ba50 b irq_lists
+ffffffff8254bb50 b ttynull_driver
+ffffffff8254bb58 b ttynull_port
+ffffffff8254bd18 b chr_dev_init.__key
+ffffffff8254bd18 b mem_class
+ffffffff8254bd20 b crng_is_ready
+ffffffff8254bd30 b base_crng
+ffffffff8254bd68 b add_input_randomness.last_value
+ffffffff8254bd70 b _credit_init_bits.set_ready
+ffffffff8254bda0 b fasync
+ffffffff8254bdb0 b sysctl_bootid
+ffffffff8254bdc0 b proc_do_uuid.bootid_spinlock
+ffffffff8254bdd0 b misc_minors
+ffffffff8254bde0 b misc_class
+ffffffff8254bde8 b early_put_chars
+ffffffff8254bde8 b misc_init.__key
+ffffffff8254bdf0 b pdrvdata_lock
+ffffffff8254bdf4 b dma_bufs_lock
+ffffffff8254bdf8 b add_port.__key
+ffffffff8254bdf8 b hpet_alloc.last
+ffffffff8254bdf8 b virtio_console_init.__key
+ffffffff8254be00 b hpet_nhpet
+ffffffff8254be08 b hpets
+ffffffff8254be10 b hpet_alloc.__key
+ffffffff8254be10 b sysctl_header
+ffffffff8254be18 b hpet_lock
+ffffffff8254be1c b current_quality
+ffffffff8254be1e b default_quality
+ffffffff8254be20 b current_rng
+ffffffff8254be28 b cur_rng_set_by_user
+ffffffff8254be30 b hwrng_fill
+ffffffff8254be38 b rng_buffer
+ffffffff8254be40 b rng_fillbuf
+ffffffff8254be48 b data_avail
+ffffffff8254be4c b iommu_device_lock
+ffffffff8254be50 b iommu_group_kset
+ffffffff8254be58 b dev_iommu_get.__key
+ffffffff8254be58 b devices_attr
+ffffffff8254be58 b iommu_dev_init.__key
+ffffffff8254be58 b iommu_group_alloc.__key
+ffffffff8254be58 b iommu_register_device_fault_handler.__key
+ffffffff8254be60 b iommu_deferred_attach_enabled
+ffffffff8254be60 b iommu_get_dma_cookie.__key
+ffffffff8254be70 b iova_cache_users
+ffffffff8254be78 b iova_cache
+ffffffff8254be80 b component_debugfs_dir
+ffffffff8254be88 b fw_devlink_strict
+ffffffff8254be89 b fw_devlink_drv_reg_done.llvm.1475585395194520759
+ffffffff8254be8a b fw_devlink_best_effort
+ffffffff8254be90 b platform_notify
+ffffffff8254be98 b platform_notify_remove
+ffffffff8254bea0 b devices_kset
+ffffffff8254bea8 b device_initialize.__key
+ffffffff8254bea8 b virtual_device_parent.virtual_dir
+ffffffff8254beb0 b dev_kobj
+ffffffff8254beb8 b sysfs_dev_block_kobj
+ffffffff8254bec0 b sysfs_dev_char_kobj
+ffffffff8254bec8 b bus_kset
+ffffffff8254bec8 b bus_register.__key
+ffffffff8254bec8 b devlink_class_init.__key
+ffffffff8254bed0 b system_kset.llvm.1433001412085596008
+ffffffff8254bed8 b driver_deferred_probe_enable
+ffffffff8254bedc b deferred_trigger_count
+ffffffff8254bee0 b defer_all_probes.llvm.3092248548741608916
+ffffffff8254bee1 b initcalls_done
+ffffffff8254bee4 b probe_count.llvm.3092248548741608916
+ffffffff8254bef0 b async_probe_drv_names
+ffffffff8254bff0 b async_probe_default
+ffffffff8254bff8 b class_kset.llvm.7289527334478767337
+ffffffff8254c000 b common_cpu_attr_groups
+ffffffff8254c008 b hotplugable_cpu_attr_groups
+ffffffff8254c010 b total_cpus
+ffffffff8254c018 b firmware_kobj
+ffffffff8254c020 b coherency_max_size
+ffffffff8254c020 b transport_class_register.__key
+ffffffff8254c028 b cache_dev_map
+ffffffff8254c030 b swnode_kset
+ffffffff8254c038 b power_attrs
+ffffffff8254c040 b dev_pm_qos_constraints_allocate.__key
+ffffffff8254c040 b pm_runtime_init.__key
+ffffffff8254c040 b pm_transition.0
+ffffffff8254c044 b async_error
+ffffffff8254c048 b suspend_stats
+ffffffff8254c0dc b events_lock
+ffffffff8254c0e0 b saved_count
+ffffffff8254c0e4 b wakeup_irq_lock
+ffffffff8254c0e8 b combined_event_count
+ffffffff8254c0f0 b wakeup_class
+ffffffff8254c0f8 b firmware_config_sysct_table_header.llvm.393697337037755989
+ffffffff8254c0f8 b wakeup_sources_sysfs_init.__key
+ffffffff8254c100 b fw_cache
+ffffffff8254c120 b strpath
+ffffffff8254cb20 b fw_path_para
+ffffffff8254d516 b register_sysfs_loader.__key
+ffffffff8254d518 b sections_per_block
+ffffffff8254d520 b memory_blocks
+ffffffff8254d530 b __regmap_init.__key
+ffffffff8254d530 b __regmap_init.__key.5
+ffffffff8254d530 b regmap_debugfs_root
+ffffffff8254d538 b dummy_index
+ffffffff8254d538 b regmap_debugfs_init.__key
+ffffffff8254d540 b brd_debugfs_dir
+ffffffff8254d548 b brd_alloc.__key
+ffffffff8254d548 b max_part
+ffffffff8254d54c b loop_add.__key
+ffffffff8254d54c b part_shift
+ffffffff8254d550 b loop_add.__key.2
+ffffffff8254d550 b num_request_queues
+ffffffff8254d554 b poll_queues
+ffffffff8254d558 b virtblk_queue_depth
+ffffffff8254d55c b major
+ffffffff8254d560 b major
+ffffffff8254d568 b virtblk_wq
+ffffffff8254d570 b virtblk_probe.__key
+ffffffff8254d570 b virtblk_probe.__key.4
+ffffffff8254d570 b zram_major
+ffffffff8254d574 b zram_add.__key
+ffffffff8254d574 b zram_add.__key.5
+ffffffff8254d578 b huge_class_size
+ffffffff8254d580 b syscon_list_slock
+ffffffff8254d580 b zram_init.__key
+ffffffff8254d584 b nvdimm_bus_major
+ffffffff8254d584 b nvdimm_bus_register.__key
+ffffffff8254d584 b nvdimm_bus_register.__key.3
+ffffffff8254d588 b nd_class
+ffffffff8254d590 b nvdimm_bus_init.__key
+ffffffff8254d590 b nvdimm_major
+ffffffff8254d594 b nd_region_create.__key
+ffffffff8254d598 b nd_region_probe.once
+ffffffff8254d5a0 b nvdimm_btt_guid
+ffffffff8254d5b0 b nvdimm_btt2_guid
+ffffffff8254d5c0 b nvdimm_pfn_guid
+ffffffff8254d5d0 b nvdimm_dax_guid
+ffffffff8254d5e0 b nvdimm_btt_uuid
+ffffffff8254d5f0 b nvdimm_btt2_uuid
+ffffffff8254d600 b nvdimm_pfn_uuid
+ffffffff8254d610 b nvdimm_dax_uuid
+ffffffff8254d620 b cxl_region_uuid
+ffffffff8254d630 b cxl_namespace_uuid
+ffffffff8254d640 b debugfs_root
+ffffffff8254d640 b pmem_attach_disk.__key
+ffffffff8254d648 b alloc_arena.__key
+ffffffff8254d648 b btt_blk_init.__key
+ffffffff8254d648 b btt_init.__key
+ffffffff8254d648 b dax_devt
+ffffffff8254d650 b dax_mnt
+ffffffff8254d658 b match_always_count
+ffffffff8254d660 b db_list
+ffffffff8254d6a0 b dma_buf_export.__key
+ffffffff8254d6a0 b dma_buf_export.__key.2
+ffffffff8254d6a0 b dma_buf_mnt
+ffffffff8254d6a8 b dma_buf_getfile.dmabuf_inode
+ffffffff8254d6b0 b dma_buf_debugfs_dir
+ffffffff8254d6b0 b dma_buf_init.__key
+ffffffff8254d6b8 b dma_fence_stub_lock
+ffffffff8254d6c0 b dma_fence_stub
+ffffffff8254d700 b dma_heap_devt
+ffffffff8254d708 b dma_heap_class
+ffffffff8254d710 b dma_heap_init.__key
+ffffffff8254d710 b dma_heap_kobject
+ffffffff8254d718 b dma_buf_stats_kset.llvm.8871338352746212177
+ffffffff8254d720 b dma_buf_per_buffer_stats_kset.llvm.8871338352746212177
+ffffffff8254d728 b blackhole_netdev
+ffffffff8254d730 b uio_class_registered
+ffffffff8254d731 b __uio_register_device.__key
+ffffffff8254d731 b __uio_register_device.__key.1
+ffffffff8254d734 b uio_major
+ffffffff8254d738 b uio_cdev
+ffffffff8254d740 b init_uio_class.__key
+ffffffff8254d740 b serio_event_lock
+ffffffff8254d744 b i8042_nokbd
+ffffffff8254d744 b serio_init_port.__key
+ffffffff8254d745 b i8042_noaux
+ffffffff8254d746 b i8042_nomux
+ffffffff8254d747 b i8042_unlock
+ffffffff8254d748 b i8042_probe_defer
+ffffffff8254d749 b i8042_direct
+ffffffff8254d74a b i8042_dumbkbd
+ffffffff8254d74b b i8042_noloop
+ffffffff8254d74c b i8042_notimeout
+ffffffff8254d74d b i8042_kbdreset
+ffffffff8254d74e b i8042_dritek
+ffffffff8254d74f b i8042_nopnp
+ffffffff8254d750 b i8042_debug
+ffffffff8254d751 b i8042_unmask_kbd_data
+ffffffff8254d754 b i8042_lock
+ffffffff8254d758 b i8042_platform_filter
+ffffffff8254d760 b i8042_present
+ffffffff8254d768 b i8042_platform_device
+ffffffff8254d770 b i8042_start_time
+ffffffff8254d778 b i8042_ctr
+ffffffff8254d779 b i8042_initial_ctr
+ffffffff8254d77c b i8042_aux_irq
+ffffffff8254d780 b i8042_aux_irq_registered
+ffffffff8254d781 b i8042_bypass_aux_irq_test
+ffffffff8254d788 b i8042_aux_irq_delivered
+ffffffff8254d7a8 b i8042_irq_being_tested
+ffffffff8254d7a9 b i8042_mux_present
+ffffffff8254d7b0 b i8042_ports
+ffffffff8254d810 b i8042_aux_firmware_id
+ffffffff8254d890 b i8042_kbd_irq
+ffffffff8254d898 b i8042_interrupt.last_transmit
+ffffffff8254d8a0 b i8042_interrupt.last_str
+ffffffff8254d8a1 b i8042_suppress_kbd_ack
+ffffffff8254d8a2 b i8042_kbd_irq_registered
+ffffffff8254d8b0 b i8042_kbd_firmware_id
+ffffffff8254d930 b i8042_kbd_fwnode
+ffffffff8254d938 b i8042_pnp_kbd_registered
+ffffffff8254d939 b i8042_pnp_aux_registered
+ffffffff8254d93c b i8042_pnp_data_reg
+ffffffff8254d940 b i8042_pnp_command_reg
+ffffffff8254d944 b i8042_pnp_kbd_irq
+ffffffff8254d950 b i8042_pnp_kbd_name
+ffffffff8254d970 b i8042_pnp_kbd_devices
+ffffffff8254d974 b i8042_pnp_aux_irq
+ffffffff8254d980 b i8042_pnp_aux_name
+ffffffff8254d9a0 b i8042_pnp_aux_devices
+ffffffff8254d9a4 b input_allocate_device.__key
+ffffffff8254d9a4 b input_devices_state
+ffffffff8254d9a4 b serport_ldisc_open.__key
+ffffffff8254d9a8 b proc_bus_input_dir
+ffffffff8254d9b0 b input_ff_create.__key
+ffffffff8254d9b0 b input_init.__key
+ffffffff8254d9b0 b rtc_class
+ffffffff8254d9b8 b old_system
+ffffffff8254d9b8 b rtc_allocate_device.__key
+ffffffff8254d9b8 b rtc_allocate_device.__key.7
+ffffffff8254d9b8 b rtc_init.__key
+ffffffff8254d9c8 b old_rtc.0
+ffffffff8254d9d0 b old_delta.0
+ffffffff8254d9d8 b old_delta.1
+ffffffff8254d9e0 b rtc_devt
+ffffffff8254d9e4 b use_acpi_alarm
+ffffffff8254d9e5 b pnp_driver_registered
+ffffffff8254d9e6 b platform_driver_registered
+ffffffff8254d9e8 b cmos_rtc
+ffffffff8254da50 b power_supply_class
+ffffffff8254da58 b power_supply_notifier
+ffffffff8254da68 b power_supply_dev_type
+ffffffff8254da98 b power_supply_class_init.__key
+ffffffff8254daa0 b __power_supply_attrs
+ffffffff8254dd08 b def_governor
+ffffffff8254dd10 b in_suspend
+ffffffff8254dd14 b __thermal_cooling_device_register.__key
+ffffffff8254dd14 b thermal_init.__key
+ffffffff8254dd14 b thermal_zone_device_register_with_trips.__key
+ffffffff8254dd18 b platform_thermal_notify
+ffffffff8254dd20 b platform_thermal_package_notify
+ffffffff8254dd28 b platform_thermal_package_rate_control
+ffffffff8254dd30 b int_pln_enable
+ffffffff8254dd34 b therm_throt_en.llvm.2319016702283275577
+ffffffff8254dd38 b wtd_deferred_reg_done
+ffffffff8254dd40 b watchdog_kworker
+ffffffff8254dd48 b watchdog_dev_init.__key
+ffffffff8254dd48 b watchdog_devt
+ffffffff8254dd4c b open_timeout
+ffffffff8254dd50 b old_wd_data
+ffffffff8254dd50 b watchdog_cdev_register.__key
+ffffffff8254dd58 b create
+ffffffff8254dd60 b _dm_event_cache.llvm.5000922454416005323
+ffffffff8254dd68 b stats_enabled
+ffffffff8254dd78 b _minor_lock
+ffffffff8254dd7c b _major
+ffffffff8254dd80 b deferred_remove_workqueue
+ffffffff8254dd88 b alloc_dev.__key
+ffffffff8254dd88 b alloc_dev.__key.19
+ffffffff8254dd88 b alloc_dev.__key.21
+ffffffff8254dd88 b alloc_dev.__key.23
+ffffffff8254dd88 b alloc_dev.__key.24
+ffffffff8254dd88 b alloc_dev.__key.26
+ffffffff8254dd88 b alloc_dev.__key.28
+ffffffff8254dd88 b dm_global_event_nr
+ffffffff8254dd90 b swap_bios_enabled
+ffffffff8254dda0 b zoned_enabled
+ffffffff8254ddb0 b name_rb_tree
+ffffffff8254ddb8 b uuid_rb_tree
+ffffffff8254ddc0 b _dm_io_cache
+ffffffff8254ddc8 b _job_cache
+ffffffff8254ddd0 b zero_page_list
+ffffffff8254dde0 b dm_kcopyd_client_create.__key
+ffffffff8254dde0 b dm_kcopyd_copy.__key
+ffffffff8254dde0 b throttle_spinlock
+ffffffff8254dde4 b dm_stats_init.__key
+ffffffff8254dde8 b shared_memory_amount
+ffffffff8254ddf0 b dm_stat_need_rcu_barrier
+ffffffff8254ddf4 b shared_memory_lock
+ffffffff8254ddf8 b no_sleep_enabled
+ffffffff8254de08 b dm_bufio_client_count
+ffffffff8254de08 b dm_bufio_client_create.__key
+ffffffff8254de08 b dm_bufio_client_create.__key.3
+ffffffff8254de10 b dm_bufio_cleanup_old_work
+ffffffff8254de98 b dm_bufio_wq
+ffffffff8254dea0 b dm_bufio_current_allocated
+ffffffff8254dea8 b dm_bufio_allocated_get_free_pages
+ffffffff8254deb0 b dm_bufio_allocated_vmalloc
+ffffffff8254deb8 b dm_bufio_cache_size
+ffffffff8254dec0 b dm_bufio_peak_allocated
+ffffffff8254dec8 b dm_bufio_allocated_kmem_cache
+ffffffff8254ded0 b dm_bufio_cache_size_latch
+ffffffff8254ded8 b global_spinlock
+ffffffff8254dee0 b global_num
+ffffffff8254dee8 b dm_bufio_replacement_work
+ffffffff8254df18 b dm_bufio_default_cache_size
+ffffffff8254df20 b dm_crypt_clients_lock
+ffffffff8254df24 b dm_crypt_clients_n
+ffffffff8254df28 b crypt_ctr.__key
+ffffffff8254df28 b crypt_ctr.__key.7
+ffffffff8254df28 b dm_crypt_pages_per_client
+ffffffff8254df30 b use_tasklet_enabled
+ffffffff8254df40 b channel_alloc.__key
+ffffffff8254df40 b edac_mc_owner
+ffffffff8254df40 b user_ctr.__key
+ffffffff8254df40 b user_ctr.__key.3
+ffffffff8254df48 b edac_device_alloc_index.device_indexes
+ffffffff8254df4c b edac_mc_panic_on_ue.llvm.3399786716803917150
+ffffffff8254df50 b mci_pdev.llvm.3399786716803917150
+ffffffff8254df58 b wq.llvm.5061864104550225250
+ffffffff8254df60 b pci_indexes
+ffffffff8254df64 b edac_pci_idx
+ffffffff8254df68 b check_pci_errors.llvm.2646495559730952554
+ffffffff8254df6c b pci_parity_count
+ffffffff8254df70 b edac_pci_panic_on_pe
+ffffffff8254df74 b edac_pci_sysfs_refcount
+ffffffff8254df78 b edac_pci_top_main_kobj
+ffffffff8254df80 b pci_nonparity_count
+ffffffff8254df88 b cpufreq_freq_invariance
+ffffffff8254df98 b cpufreq_driver.llvm.1939128671329929729
+ffffffff8254dfa0 b cpufreq_global_kobject
+ffffffff8254dfa8 b cpufreq_driver_lock
+ffffffff8254dfb0 b cpufreq_fast_switch_count
+ffffffff8254dfb4 b cpufreq_suspended
+ffffffff8254dfb5 b cpufreq_policy_alloc.__key
+ffffffff8254dfb5 b cpufreq_policy_alloc.__key.40
+ffffffff8254dfc0 b default_governor
+ffffffff8254dfd0 b task_time_in_state_lock
+ffffffff8254dfd4 b next_offset
+ffffffff8254dfe0 b all_freqs
+ffffffff8254e0e0 b alloc_policy_dbs_info.__key
+ffffffff8254e0e0 b gov_attr_set_init.__key
+ffffffff8254e0e0 b hwp_notify_lock
+ffffffff8254e0e8 b hwp_intr_enable_mask
+ffffffff8254e0f0 b all_cpu_data
+ffffffff8254e0f8 b intel_pstate_init._all_cpu_data
+ffffffff8254e100 b default_driver
+ffffffff8254e108 b global
+ffffffff8254e114 b intel_pstate_set_itmt_prio.max_highest_perf
+ffffffff8254e118 b acpi_ppc
+ffffffff8254e11c b power_ctl_ee_state
+ffffffff8254e120 b intel_pstate_kobject
+ffffffff8254e128 b enabled_devices
+ffffffff8254e12c b cpuidle_driver_lock
+ffffffff8254e130 b cpuidle_curr_driver.llvm.14849246851986025098
+ffffffff8254e138 b cpuidle_curr_governor
+ffffffff8254e140 b param_governor
+ffffffff8254e150 b cpuidle_prev_governor
+ffffffff8254e158 b haltpoll_hp_state
+ffffffff8254e160 b haltpoll_cpuidle_devices
+ffffffff8254e168 b dmi_kobj
+ffffffff8254e170 b dmi_available
+ffffffff8254e180 b dmi_ident
+ffffffff8254e238 b dmi_base
+ffffffff8254e240 b dmi_len
+ffffffff8254e248 b dmi_memdev
+ffffffff8254e250 b dmi_memdev_nr
+ffffffff8254e254 b smbios_entry_point_size
+ffffffff8254e260 b smbios_entry_point
+ffffffff8254e280 b dmi_num
+ffffffff8254e284 b save_mem_devices.nr
+ffffffff8254e288 b dmi_dev
+ffffffff8254e288 b dmi_id_init.__key
+ffffffff8254e290 b sys_dmi_attributes
+ffffffff8254e358 b map_entries_bootmem_lock
+ffffffff8254e35c b map_entries_lock
+ffffffff8254e360 b add_sysfs_fw_map_entry.map_entries_nr
+ffffffff8254e368 b add_sysfs_fw_map_entry.mmap_kset
+ffffffff8254e370 b disable_runtime.llvm.10410601626421035071
+ffffffff8254e374 b efi_mem_reserve_persistent_lock
+ffffffff8254e378 b efi_rts_wq
+ffffffff8254e380 b efi_kobj
+ffffffff8254e388 b generic_ops
+ffffffff8254e3b0 b generic_efivars
+ffffffff8254e3d0 b debugfs_blob
+ffffffff8254e5d0 b __efivars
+ffffffff8254e5d8 b efi_sys_off_handler
+ffffffff8254e5e0 b efi_tpm_final_log_size
+ffffffff8254e5e8 b esrt_data
+ffffffff8254e5f0 b esrt_data_size
+ffffffff8254e5f8 b esrt
+ffffffff8254e600 b esrt_kobj
+ffffffff8254e608 b esrt_kset
+ffffffff8254e610 b map_entries
+ffffffff8254e618 b map_kset
+ffffffff8254e620 b efi_rts_work
+ffffffff8254e6a8 b fb_base
+ffffffff8254e6b0 b fb_wb
+ffffffff8254e6b8 b efi_fb
+ffffffff8254e6c0 b font
+ffffffff8254e6c8 b efi_y
+ffffffff8254e6cc b efi_x
+ffffffff8254e6d0 b acpi_pm_good
+ffffffff8254e6d4 b i8253_lock
+ffffffff8254e6d8 b of_root
+ffffffff8254e6e0 b of_chosen
+ffffffff8254e6e8 b devtree_lock
+ffffffff8254e6f0 b phandle_cache
+ffffffff8254eaf0 b of_kset
+ffffffff8254eaf8 b of_aliases
+ffffffff8254eb00 b of_stdout_options
+ffffffff8254eb08 b of_stdout
+ffffffff8254eb10 b pcc_chan_count
+ffffffff8254eb18 b chan_info
+ffffffff8254eb20 b trace_count
+ffffffff8254eb28 b ras_debugfs_dir
+ffffffff8254eb30 b br_ioctl_hook
+ffffffff8254eb38 b vlan_ioctl_hook
+ffffffff8254eb40 b net_family_lock
+ffffffff8254eb44 b sock_alloc_inode.__key
+ffffffff8254eb48 b net_high_order_alloc_disable_key
+ffffffff8254eb58 b proto_inuse_idx
+ffffffff8254eb58 b sock_lock_init.__key
+ffffffff8254eb58 b sock_lock_init.__key.14
+ffffffff8254eb60 b memalloc_socks_key
+ffffffff8254eb70 b init_net_initialized
+ffffffff8254eb71 b setup_net.__key
+ffffffff8254eb80 b init_net
+ffffffff8254f900 b ts_secret
+ffffffff8254f910 b net_secret
+ffffffff8254f920 b hashrnd
+ffffffff8254f930 b net_msg_warn
+ffffffff8254f934 b ptype_lock
+ffffffff8254f938 b netdev_chain
+ffffffff8254f940 b dev_boot_phase
+ffffffff8254f948 b netstamp_needed_key
+ffffffff8254f958 b netstamp_wanted
+ffffffff8254f95c b netstamp_needed_deferred
+ffffffff8254f960 b generic_xdp_needed_key
+ffffffff8254f970 b napi_hash_lock
+ffffffff8254f978 b flush_all_backlogs.flush_cpus
+ffffffff8254f980 b dev_base_lock
+ffffffff8254f988 b netevent_notif_chain.llvm.12422582642301296454
+ffffffff8254f998 b defer_kfree_skb_list
+ffffffff8254f9a0 b rtnl_msg_handlers
+ffffffff8254fdb0 b lweventlist_lock
+ffffffff8254fdb8 b linkwatch_nextevent
+ffffffff8254fdc0 b linkwatch_flags
+ffffffff8254fdc8 b bpf_xdp_get_buff_len_bpf_ids
+ffffffff8254fdcc b bpf_skb_output_btf_ids
+ffffffff8254fdd0 b bpf_xdp_output_btf_ids
+ffffffff8254fdd8 b nfct_btf_struct_access
+ffffffff8254fde0 b btf_sock_ids
+ffffffff8254fe20 b bpf_sock_from_file_btf_ids
+ffffffff8254fe60 b md_dst
+ffffffff8254fe68 b bpf_master_redirect_enabled_key
+ffffffff8254fe78 b bpf_sk_lookup_enabled
+ffffffff8254fe88 b broadcast_wq
+ffffffff8254fe90 b inet_rcv_compat.llvm.12304338072109932202
+ffffffff8254fea0 b sock_diag_handlers
+ffffffff82550010 b reuseport_lock
+ffffffff82550014 b fib_notifier_net_id
+ffffffff82550018 b mem_id_ht
+ffffffff82550020 b mem_id_init
+ffffffff82550024 b offload_lock
+ffffffff82550028 b netdev_kobject_init.__key
+ffffffff82550028 b store_rps_dev_flow_table_cnt.rps_dev_flow_lock
+ffffffff82550030 b wireless_attrs
+ffffffff82550038 b nl_table_lock
+ffffffff82550040 b netlink_tap_net_id
+ffffffff82550044 b nl_table_users
+ffffffff82550048 b __netlink_create.__key
+ffffffff82550048 b __netlink_create.__key.10
+ffffffff82550048 b genl_sk_destructing_cnt
+ffffffff82550048 b netlink_tap_init_net.__key
+ffffffff8255004c b ethtool_rx_flow_rule_create.zero_addr
+ffffffff8255005c b ethtool_phys_id.busy
+ffffffff82550060 b ethtool_phy_ops
+ffffffff82550068 b ethnl_bcast_seq
+ffffffff8255006c b ip_rt_max_size
+ffffffff82550070 b fnhe_lock
+ffffffff82550080 b fnhe_hashfun.fnhe_hash_key
+ffffffff82550090 b dst_entries_init.__key
+ffffffff82550090 b dst_entries_init.__key
+ffffffff82550090 b dst_entries_init.__key
+ffffffff82550090 b dst_entries_init.__key
+ffffffff82550090 b ip4_frags
+ffffffff82550110 b ip4_frags_secret_interval_unused
+ffffffff82550114 b dist_min
+ffffffff82550118 b ip4_min_ttl
+ffffffff82550128 b table_perturb
+ffffffff82550130 b tcp_init.__key
+ffffffff82550130 b tcp_orphan_timer
+ffffffff82550168 b tcp_orphan_cache
+ffffffff8255016c b tcp_enable_tx_delay.__tcp_tx_delay_enabled
+ffffffff82550180 b tcp_memory_allocated
+ffffffff825501c0 b tcp_sockets_allocated
+ffffffff825501e8 b tcp_tx_delay_enabled
+ffffffff825501f8 b tcp_hashinfo
+ffffffff82550248 b tcp_cong_list_lock
+ffffffff8255024c b fastopen_seqlock
+ffffffff82550254 b tcp_metrics_lock
+ffffffff82550258 b tcpmhash_entries
+ffffffff8255025c b tcp_ulp_list_lock
+ffffffff82550280 b raw_v4_hashinfo
+ffffffff82550ac0 b udp_memory_allocated
+ffffffff82550ac8 b udp_encap_needed_key
+ffffffff82550ad8 b icmp_global
+ffffffff82550af0 b inet_addr_lst
+ffffffff825512f0 b inetsw_lock
+ffffffff82551300 b inetsw
+ffffffff825513b0 b fib_info_lock
+ffffffff825513b4 b fib_info_cnt
+ffffffff825513b8 b fib_info_hash_size
+ffffffff825513c0 b fib_info_hash
+ffffffff825513c8 b fib_info_laddrhash
+ffffffff825513d0 b fib_info_devhash
+ffffffff82551bd0 b fib_info_hash_bits
+ffffffff82551bd4 b tnode_free_size
+ffffffff82551bd8 b inet_frag_wq
+ffffffff82551be0 b fqdir_free_list
+ffffffff82551be8 b pingv6_ops
+ffffffff82551c18 b ping_table
+ffffffff82551e20 b ping_port_rover
+ffffffff82551e28 b ip_tunnel_metadata_cnt
+ffffffff82551e38 b nexthop_net_init.__key
+ffffffff82551e38 b udp_tunnel_nic_ops
+ffffffff82551e40 b ip_ping_group_range_min
+ffffffff82551e48 b ip_privileged_port_min
+ffffffff82551e50 b inet_diag_table
+ffffffff82551e58 b __xfrm_policy_check.dummy
+ffffffff82551eb0 b xfrm_policy_afinfo_lock
+ffffffff82551eb4 b xfrm_if_cb_lock
+ffffffff82551eb8 b xfrm_policy_inexact_table
+ffffffff82551f60 b xfrm_gen_index.idx_generator
+ffffffff82551f64 b xfrm_net_init.__key
+ffffffff82551f64 b xfrm_state_gc_lock
+ffffffff82551f68 b xfrm_state_gc_list
+ffffffff82551f70 b xfrm_state_find.saddr_wildcard
+ffffffff82551f80 b xfrm_get_acqseq.acqseq
+ffffffff82551f84 b xfrm_km_lock
+ffffffff82551f88 b xfrm_state_afinfo_lock
+ffffffff82551f90 b xfrm_state_afinfo
+ffffffff82552100 b xfrm_input_afinfo_lock
+ffffffff82552110 b xfrm_input_afinfo
+ffffffff825521c0 b gro_cells
+ffffffff82552200 b xfrm_napi_dev
+ffffffff82552b40 b ipcomp_scratches
+ffffffff82552b48 b ipcomp_scratch_users
+ffffffff82552b50 b bsd_socket_locks
+ffffffff82552f50 b bsd_socket_buckets
+ffffffff82553750 b unix_nr_socks
+ffffffff82553758 b gc_in_progress
+ffffffff82553758 b unix_create1.__key
+ffffffff82553758 b unix_create1.__key.12
+ffffffff82553758 b unix_create1.__key.14
+ffffffff8255375c b unix_tot_inflight
+ffffffff82553760 b unix_gc_lock
+ffffffff82553764 b disable_ipv6_mod.llvm.3907105105558066317
+ffffffff82553768 b inetsw6_lock
+ffffffff82553770 b inetsw6
+ffffffff82553820 b inet6_acaddr_lst.llvm.7017826898535504183
+ffffffff82554020 b acaddr_hash_lock
+ffffffff82554028 b addrconf_wq
+ffffffff82554030 b ipv6_generate_stable_address.lock
+ffffffff82554040 b ipv6_generate_stable_address.digest
+ffffffff82554060 b ipv6_generate_stable_address.workspace
+ffffffff825540a0 b ipv6_generate_stable_address.data
+ffffffff825540e0 b rt6_exception_lock
+ffffffff825540f0 b rt6_exception_hash.rt6_exception_key
+ffffffff82554100 b ip6_ra_lock
+ffffffff82554108 b ip6_min_hopcount
+ffffffff82554118 b ip6_ra_chain
+ffffffff82554120 b ndisc_warn_deprecated_sysctl.warncomm
+ffffffff82554130 b ndisc_warn_deprecated_sysctl.warned
+ffffffff82554138 b udpv6_encap_needed_key
+ffffffff82554180 b raw_v6_hashinfo
+ffffffff825549c0 b mld_wq.llvm.17779412827458804697
+ffffffff825549c8 b ip6_frags
+ffffffff825549c8 b ipv6_mc_init_dev.__key
+ffffffff82554a48 b ip6_ctl_header
+ffffffff82554a50 b ip6_frags_secret_interval_unused
+ffffffff82554a54 b ip6_sk_fl_lock
+ffffffff82554a58 b ip6_fl_lock
+ffffffff82554a60 b fl_ht
+ffffffff82555260 b fl_size
+ffffffff82555264 b ioam6_net_init.__key
+ffffffff82555264 b seg6_net_init.__key
+ffffffff82555268 b ip6_header
+ffffffff82555270 b xfrm6_tunnel_spi_lock
+ffffffff82555278 b mip6_report_rl
+ffffffff825552b0 b __fib6_flush_trees
+ffffffff825552b8 b inet6addr_chain.llvm.281655867137589782
+ffffffff825552c8 b fanout_next_id
+ffffffff825552c8 b packet_create.__key
+ffffffff825552c8 b packet_net_init.__key
+ffffffff825552cc b get_acqseq.acqseq
+ffffffff825552d0 b net_sysctl_init.empty
+ffffffff825552d0 b pfkey_create.__key
+ffffffff82555310 b net_header
+ffffffff82555320 b vsock_bind_table
+ffffffff825562e0 b vsock_connected_table
+ffffffff82557290 b vsock_table_lock
+ffffffff82557298 b transport_dgram
+ffffffff825572a0 b transport_local
+ffffffff825572a8 b transport_h2g
+ffffffff825572b0 b transport_g2h
+ffffffff825572b8 b __vsock_bind_connectible.port
+ffffffff825572bc b vsock_tap_lock
+ffffffff825572c0 b virtio_vsock_workqueue
+ffffffff825572c8 b the_virtio_vsock
+ffffffff825572d0 b the_vsock_loopback
+ffffffff825572d0 b virtio_vsock_probe.__key
+ffffffff825572d0 b virtio_vsock_probe.__key.2
+ffffffff825572d0 b virtio_vsock_probe.__key.4
+ffffffff82557320 b pcibios_fw_addr_done
+ffffffff82557324 b pcibios_fwaddrmap_lock
+ffffffff82557328 b pci_mmcfg_arch_init_failed
+ffffffff82557329 b pci_mmcfg_running_state
+ffffffff82557330 b quirk_aspm_offset
+ffffffff825573f0 b toshiba_line_size
+ffffffff825573f2 b pci_use_crs
+ffffffff825573f3 b pci_ignore_seg
+ffffffff825573f4 b elcr_set_level_irq.elcr_irq_mask
+ffffffff825573f8 b pirq_table
+ffffffff82557400 b pirq_router
+ffffffff82557428 b broken_hp_bios_irq9
+ffffffff82557430 b pirq_router_dev
+ffffffff82557438 b acer_tm360_irqrouting
+ffffffff8255743c b pci_config_lock
+ffffffff82557440 b pci_bf_sort
+ffffffff82557444 b noioapicquirk
+ffffffff82557448 b pci_routeirq
+ffffffff82557450 b pirq_table_addr
+ffffffff82557460 b dump_stack_arch_desc_str
+ffffffff825574e0 b fprop_global_init.__key
+ffffffff825574e0 b fprop_local_init_percpu.__key
+ffffffff825574e0 b klist_remove_lock
+ffffffff825574e4 b kobj_ns_type_lock
+ffffffff825574f0 b kobj_ns_ops_tbl.0
+ffffffff825574f8 b uevent_seqnum
+ffffffff82557500 b maple_node_cache.llvm.1958900823244423996
+ffffffff82557508 b backtrace_flag
+ffffffff82557510 b backtrace_idle
+ffffffff82557518 b radix_tree_node_cachep
+ffffffff82557520 b pc_conf_lock
 ffffffff82600000 B __brk_base
 ffffffff82600000 B __bss_stop
 ffffffff82600000 B __end_bss_decrypted
diff --git a/microdroid/kernel/x86_64/kernel-6.1 b/microdroid/kernel/x86_64/kernel-6.1
index 9f225bd..c125559 100644
--- a/microdroid/kernel/x86_64/kernel-6.1
+++ b/microdroid/kernel/x86_64/kernel-6.1
Binary files differ
diff --git a/microdroid/kernel/x86_64/prebuilt-info.txt b/microdroid/kernel/x86_64/prebuilt-info.txt
index 6760366..67cf5ab 100644
--- a/microdroid/kernel/x86_64/prebuilt-info.txt
+++ b/microdroid/kernel/x86_64/prebuilt-info.txt
@@ -1,3 +1,3 @@
 {
-    "kernel-build-id": 10180051
+    "kernel-build-id": 10298368
 }
diff --git a/microdroid/linker.config.json b/microdroid/linker.config.json
index fd90821..7b59ca2 100644
--- a/microdroid/linker.config.json
+++ b/microdroid/linker.config.json
@@ -1,18 +1,5 @@
 {
   "requireLibs": [
-    "libdexfile.so",
-    "libdexfiled.so",
-    "libnativebridge.so",
-    "libnativehelper.so",
-    "libnativeloader.so",
-    "libsigchain.so",
-    "libandroidicu.so",
-    "libicu.so",
-    "libicui18n.so",
-    "libicuuc.so",
-    "libnetd_resolv.so",
-    "libstatspull.so",
-    "libstatssocket.so",
     "libadb_pairing_auth.so",
     "libadb_pairing_connection.so",
     "libadb_pairing_server.so"
diff --git a/microdroid/microdroid_gki-android14-6.1.json b/microdroid/microdroid_gki-android14-6.1.json
new file mode 100644
index 0000000..9392fae
--- /dev/null
+++ b/microdroid/microdroid_gki-android14-6.1.json
@@ -0,0 +1,20 @@
+{
+  "kernel": "/apex/com.android.virt/etc/fs/microdroid_gki-android14-6.1_kernel",
+  "disks": [
+    {
+      "partitions": [
+        {
+          "label": "vbmeta_a",
+          "path": "/apex/com.android.virt/etc/fs/microdroid_vbmeta.img"
+        },
+        {
+          "label": "super",
+          "path": "/apex/com.android.virt/etc/fs/microdroid_super.img"
+        }
+      ],
+      "writable": false
+    }
+  ],
+  "memory_mib": 256,
+  "platform_version": "~1.0"
+}
diff --git a/microdroid/microdroid_group b/microdroid/microdroid_group
new file mode 100644
index 0000000..4eb8fa5
--- /dev/null
+++ b/microdroid/microdroid_group
@@ -0,0 +1 @@
+system_payload::6000:
diff --git a/microdroid/microdroid_passwd b/microdroid/microdroid_passwd
new file mode 100644
index 0000000..bd15182
--- /dev/null
+++ b/microdroid/microdroid_passwd
@@ -0,0 +1 @@
+system_payload_0::6000:6000:::
diff --git a/microdroid/microdroid_vendor_compatibility_matrix.xml b/microdroid/microdroid_vendor_compatibility_matrix.xml
deleted file mode 100644
index 44735d8..0000000
--- a/microdroid/microdroid_vendor_compatibility_matrix.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<compatibility-matrix version="1.0" type="device">
-    <!-- empty -->
-</compatibility-matrix>
diff --git a/microdroid/microdroid_vendor_manifest.xml b/microdroid/microdroid_vendor_manifest.xml
deleted file mode 100644
index a48e695..0000000
--- a/microdroid/microdroid_vendor_manifest.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<manifest version="1.0" type="device" />
diff --git a/microdroid/payload/Android.bp b/microdroid/payload/Android.bp
index 4814a64..7e11de3 100644
--- a/microdroid/payload/Android.bp
+++ b/microdroid/payload/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/microdroid/payload/config/Android.bp b/microdroid/payload/config/Android.bp
index 7e60cd4..7abee15 100644
--- a/microdroid/payload/config/Android.bp
+++ b/microdroid/payload/config/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -6,6 +7,7 @@
     name: "libmicrodroid_payload_config",
     host_supported: true,
     crate_name: "microdroid_payload_config",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     prefer_rlib: true,
     edition: "2021",
diff --git a/microdroid/payload/metadata.proto b/microdroid/payload/metadata.proto
index 6b999af..e47fc83 100644
--- a/microdroid/payload/metadata.proto
+++ b/microdroid/payload/metadata.proto
@@ -37,14 +37,18 @@
 }
 
 message ApexPayload {
+  // Next id: 9
+
   // Required.
   string name = 1;
   string partition_name = 2;
 
   // Optional.
-  // When specified, apex payload should be verified with the public key and root digest.
+  // When specified, apex payload should be verified against these values.
   bytes public_key = 3;
   bytes root_digest = 4;
+  int64 manifest_version = 7;
+  string manifest_name = 8;
 
   // Required.
   // The timestamp in seconds when the APEX was last updated. This should match the value in
@@ -70,4 +74,8 @@
   // Required.
   // Name of the payload binary file inside the APK.
   string payload_binary_name = 1;
+
+  // Optional.
+  // The number of extra APKs that are present.
+  uint32 extra_apk_count = 2;
 }
diff --git a/microdroid/payload/metadata/Android.bp b/microdroid/payload/metadata/Android.bp
index e3138e8..be87fb8 100644
--- a/microdroid/payload/metadata/Android.bp
+++ b/microdroid/payload/metadata/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -12,7 +13,7 @@
     rustlibs: [
         "libanyhow",
         "libmicrodroid_metadata_proto_rust",
-        "libprotobuf_deprecated",
+        "libprotobuf",
     ],
     apex_available: [
         "com.android.virt",
diff --git a/microdroid/payload/metadata/src/lib.rs b/microdroid/payload/metadata/src/lib.rs
index bfbec60..f00391a 100644
--- a/microdroid/payload/metadata/src/lib.rs
+++ b/microdroid/payload/metadata/src/lib.rs
@@ -24,7 +24,7 @@
 use std::io::Write;
 
 pub use microdroid_metadata::metadata::{
-    ApexPayload, ApkPayload, Metadata, Metadata_oneof_payload as PayloadMetadata, PayloadConfig,
+    metadata::Payload as PayloadMetadata, ApexPayload, ApkPayload, Metadata, PayloadConfig,
 };
 
 /// Reads a metadata from a reader
diff --git a/microdroid/payload/mk_payload.cc b/microdroid/payload/mk_payload.cc
deleted file mode 100644
index d31333f..0000000
--- a/microdroid/payload/mk_payload.cc
+++ /dev/null
@@ -1,305 +0,0 @@
-/*
- * Copyright (C) 2021 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <unistd.h>
-
-#include <fstream>
-#include <iostream>
-#include <optional>
-#include <string>
-#include <vector>
-
-#include <android-base/file.h>
-#include <android-base/result.h>
-#include <image_aggregator.h>
-#include <json/json.h>
-
-#include "microdroid/metadata.h"
-
-using android::base::Dirname;
-using android::base::ErrnoError;
-using android::base::Error;
-using android::base::Result;
-using android::base::unique_fd;
-using android::microdroid::ApexPayload;
-using android::microdroid::ApkPayload;
-using android::microdroid::Metadata;
-using android::microdroid::WriteMetadata;
-
-using cuttlefish::AlignToPartitionSize;
-using cuttlefish::CreateCompositeDisk;
-using cuttlefish::kLinuxFilesystem;
-using cuttlefish::MultipleImagePartition;
-
-Result<uint32_t> GetFileSize(const std::string& path) {
-    struct stat st;
-    if (lstat(path.c_str(), &st) == -1) {
-        return ErrnoError() << "Can't lstat " << path;
-    }
-    return static_cast<uint32_t>(st.st_size);
-}
-
-std::string RelativeTo(const std::string& path, const std::string& dirname) {
-    bool is_absolute = !path.empty() && path[0] == '/';
-    if (is_absolute || dirname == ".") {
-        return path;
-    } else {
-        return dirname + "/" + path;
-    }
-}
-
-// Returns `append` is appended to the end of filename preserving the extension.
-std::string AppendFileName(const std::string& filename, const std::string& append) {
-    size_t pos = filename.find_last_of('.');
-    if (pos == std::string::npos) {
-        return filename + append;
-    } else {
-        return filename.substr(0, pos) + append + filename.substr(pos);
-    }
-}
-
-struct ApexConfig {
-    std::string name; // the apex name
-    std::string path; // the path to the apex file
-                      // absolute or relative to the config file
-};
-
-struct ApkConfig {
-    std::string name;
-    std::string path;
-    std::string idsig_path;
-};
-
-struct Config {
-    std::string dirname; // config file's direname to resolve relative paths in the config
-
-    std::vector<ApexConfig> apexes;
-    std::optional<ApkConfig> apk;
-    // This is a path in the guest side
-    std::optional<std::string> payload_config_path;
-};
-
-#define DO(expr) \
-    if (auto res = (expr); !res.ok()) return res.error()
-
-Result<void> ParseJson(const Json::Value& value, std::string& s) {
-    if (!value.isString()) {
-        return Error() << "should be a string: " << value;
-    }
-    s = value.asString();
-    return {};
-}
-
-template <typename T>
-Result<void> ParseJson(const Json::Value& value, std::optional<T>& s) {
-    if (value.isNull()) {
-        s.reset();
-        return {};
-    }
-    s.emplace();
-    return ParseJson(value, *s);
-}
-
-template <typename T>
-Result<void> ParseJson(const Json::Value& values, std::vector<T>& parsed) {
-    for (const Json::Value& value : values) {
-        T t;
-        DO(ParseJson(value, t));
-        parsed.push_back(std::move(t));
-    }
-    return {};
-}
-
-Result<void> ParseJson(const Json::Value& value, ApexConfig& apex_config) {
-    DO(ParseJson(value["name"], apex_config.name));
-    DO(ParseJson(value["path"], apex_config.path));
-    return {};
-}
-
-Result<void> ParseJson(const Json::Value& value, ApkConfig& apk_config) {
-    DO(ParseJson(value["name"], apk_config.name));
-    DO(ParseJson(value["path"], apk_config.path));
-    DO(ParseJson(value["idsig_path"], apk_config.idsig_path));
-    return {};
-}
-
-Result<void> ParseJson(const Json::Value& value, Config& config) {
-    DO(ParseJson(value["apexes"], config.apexes));
-    DO(ParseJson(value["apk"], config.apk));
-    DO(ParseJson(value["payload_config_path"], config.payload_config_path));
-    return {};
-}
-
-Result<Config> LoadConfig(const std::string& config_file) {
-    std::ifstream in(config_file);
-    Json::CharReaderBuilder builder;
-    Json::Value root;
-    Json::String errs;
-    if (!parseFromStream(builder, in, &root, &errs)) {
-        return Error() << errs;
-    }
-
-    Config config;
-    config.dirname = Dirname(config_file);
-    DO(ParseJson(root, config));
-    return config;
-}
-
-#undef DO
-
-Result<void> MakeMetadata(const Config& config, const std::string& filename) {
-    Metadata metadata;
-    metadata.set_version(1);
-
-    for (const auto& apex_config : config.apexes) {
-        auto* apex = metadata.add_apexes();
-        apex->set_name(apex_config.name);
-        apex->set_partition_name(apex_config.name);
-        apex->set_is_factory(true);
-    }
-
-    if (config.apk.has_value()) {
-        auto* apk = metadata.mutable_apk();
-        apk->set_name(config.apk->name);
-        apk->set_payload_partition_name("microdroid-apk");
-        apk->set_idsig_partition_name("microdroid-apk-idsig");
-    }
-
-    if (config.payload_config_path.has_value()) {
-        *metadata.mutable_config_path() = config.payload_config_path.value();
-    }
-
-    std::ofstream out(filename);
-    return WriteMetadata(metadata, out);
-}
-
-// fill zeros to align |file_path|'s size to BLOCK_SIZE(4096) boundary.
-// return true when the filler is needed.
-Result<bool> ZeroFiller(const std::string& file_path, const std::string& filler_path) {
-    auto file_size = GetFileSize(file_path);
-    if (!file_size.ok()) {
-        return file_size.error();
-    }
-    auto disk_size = AlignToPartitionSize(*file_size);
-    if (disk_size <= *file_size) {
-        return false;
-    }
-    unique_fd fd(TEMP_FAILURE_RETRY(open(filler_path.c_str(), O_CREAT | O_WRONLY | O_TRUNC, 0600)));
-    if (fd.get() == -1) {
-        return ErrnoError() << "open(" << filler_path << ") failed.";
-    }
-    if (ftruncate(fd.get(), disk_size - *file_size) == -1) {
-        return ErrnoError() << "ftruncate(" << filler_path << ") failed.";
-    }
-    return true;
-}
-
-Result<void> MakePayload(const Config& config, const std::string& metadata_file,
-                         const std::string& output_file) {
-    std::vector<MultipleImagePartition> partitions;
-
-    int filler_count = 0;
-    auto add_partition = [&](auto partition_name, auto file_path) -> Result<void> {
-        std::vector<std::string> image_files{file_path};
-
-        std::string filler_path =
-                AppendFileName(output_file, "-filler-" + std::to_string(filler_count++));
-        if (auto ret = ZeroFiller(file_path, filler_path); !ret.ok()) {
-            return ret.error();
-        } else if (*ret) {
-            image_files.push_back(filler_path);
-        }
-        partitions.push_back(MultipleImagePartition{
-                .label = partition_name,
-                .image_file_paths = image_files,
-                .type = kLinuxFilesystem,
-                .read_only = true,
-        });
-        return {};
-    };
-
-    // put metadata at the first partition
-    partitions.push_back(MultipleImagePartition{
-            .label = "payload-metadata",
-            .image_file_paths = {metadata_file},
-            .type = kLinuxFilesystem,
-            .read_only = true,
-    });
-    // put apexes at the subsequent partitions
-    for (size_t i = 0; i < config.apexes.size(); i++) {
-        const auto& apex_config = config.apexes[i];
-        std::string apex_path = RelativeTo(apex_config.path, config.dirname);
-        if (auto ret = add_partition("microdroid-apex-" + std::to_string(i), apex_path);
-            !ret.ok()) {
-            return ret.error();
-        }
-    }
-    // put apk and its idsig
-    if (config.apk.has_value()) {
-        std::string apk_path = RelativeTo(config.apk->path, config.dirname);
-        if (auto ret = add_partition("microdroid-apk", apk_path); !ret.ok()) {
-            return ret.error();
-        }
-        std::string idsig_path = RelativeTo(config.apk->idsig_path, config.dirname);
-        if (auto ret = add_partition("microdroid-apk-idsig", idsig_path); !ret.ok()) {
-            return ret.error();
-        }
-    }
-
-    const std::string gpt_header = AppendFileName(output_file, "-header");
-    const std::string gpt_footer = AppendFileName(output_file, "-footer");
-    CreateCompositeDisk(partitions, gpt_header, gpt_footer, output_file);
-    return {};
-}
-
-int main(int argc, char** argv) {
-    if (argc < 3 || argc > 4) {
-        std::cerr << "Usage: " << argv[0] << " [--metadata-only] <config> <output>\n";
-        return 1;
-    }
-    int arg_index = 1;
-    bool metadata_only = false;
-    if (strcmp(argv[arg_index], "--metadata-only") == 0) {
-        metadata_only = true;
-        arg_index++;
-    }
-
-    auto config = LoadConfig(argv[arg_index++]);
-    if (!config.ok()) {
-        std::cerr << "bad config: " << config.error() << '\n';
-        return 1;
-    }
-
-    const std::string output_file(argv[arg_index++]);
-    const std::string metadata_file =
-            metadata_only ? output_file : AppendFileName(output_file, "-metadata");
-
-    if (const auto res = MakeMetadata(*config, metadata_file); !res.ok()) {
-        std::cerr << res.error() << '\n';
-        return 1;
-    }
-    if (metadata_only) {
-        return 0;
-    }
-    if (const auto res = MakePayload(*config, metadata_file, output_file); !res.ok()) {
-        std::cerr << res.error() << '\n';
-        return 1;
-    }
-
-    return 0;
-}
diff --git a/microdroid_manager/Android.bp b/microdroid_manager/Android.bp
index 495d3bb..0174ce4 100644
--- a/microdroid_manager/Android.bp
+++ b/microdroid_manager/Android.bp
@@ -1,10 +1,15 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "microdroid_manager_defaults",
     crate_name: "microdroid_manager",
+    defaults: [
+        "avf_build_flags_rust",
+        "secretkeeper_use_latest_hal_aidl_rust",
+    ],
     srcs: ["src/main.rs"],
     edition: "2021",
     prefer_rlib: true,
@@ -13,30 +18,38 @@
         "android.system.virtualizationservice-rust",
         "android.system.virtualmachineservice-rust",
         "android.system.virtualization.payload-rust",
+        "libandroid_logger",
         "libanyhow",
+        "libapkmanifest",
+        "libavflog",
         "libapexutil_rust",
         "libapkverify",
         "libbinder_rs",
         "libbyteorder",
         "libcap_rust",
+        "libclient_vm_csr",
         "libciborium",
+        "libcoset",
+        "libdice_policy_builder",
         "libdiced_open_dice",
         "libdiced_sample_inputs",
         "libglob",
         "libhex",
         "libitertools",
-        "libkernlog",
         "libkeystore2_crypto_rust",
         "liblibc",
         "liblog_rust",
         "libmicrodroid_metadata",
         "libmicrodroid_payload_config",
+        "libmicrodroid_uids",
         "libnix",
         "libonce_cell",
         "libopenssl",
         "libprotobuf",
         "librpcbinder_rs",
         "librustutils",
+        "libsecretkeeper_client",
+        "libsecretkeeper_comm_nostd",
         "libscopeguard",
         "libserde",
         "libserde_cbor",
@@ -45,6 +58,7 @@
         "libuuid",
         "libvsock",
         "librand",
+        "libzeroize",
     ],
     init_rc: ["microdroid_manager.rc"],
     multilib: {
diff --git a/microdroid_manager/TEST_MAPPING b/microdroid_manager/TEST_MAPPING
index af0abe7..5f4c33c 100644
--- a/microdroid_manager/TEST_MAPPING
+++ b/microdroid_manager/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/microdroid_manager/aidl/Android.bp b/microdroid_manager/aidl/Android.bp
index 0aa8662..be035df 100644
--- a/microdroid_manager/aidl/Android.bp
+++ b/microdroid_manager/aidl/Android.bp
@@ -1,12 +1,17 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 aidl_interface {
     name: "android.system.virtualization.payload",
     srcs: ["android/system/virtualization/payload/*.aidl"],
+    imports: ["android.system.virtualizationcommon"],
     unstable: true,
     backend: {
+        java: {
+            enabled: false,
+        },
         rust: {
             enabled: true,
             apex_available: [
diff --git a/microdroid_manager/aidl/android/system/virtualization/payload/IVmPayloadService.aidl b/microdroid_manager/aidl/android/system/virtualization/payload/IVmPayloadService.aidl
index 3859785..4813b35 100644
--- a/microdroid_manager/aidl/android/system/virtualization/payload/IVmPayloadService.aidl
+++ b/microdroid_manager/aidl/android/system/virtualization/payload/IVmPayloadService.aidl
@@ -16,11 +16,17 @@
 
 package android.system.virtualization.payload;
 
+import android.system.virtualizationcommon.Certificate;
+
 /**
  * This interface regroups the tasks that payloads delegate to
  * Microdroid Manager for execution.
  */
 interface IVmPayloadService {
+    /** The constants STATUS_* are status code returned by this service. */
+    /** Failed to prepare the CSR and key pair for attestation. */
+    const int STATUS_FAILED_TO_PREPARE_CSR_AND_KEY = 1;
+
     /** Socket name of the service IVmPayloadService. */
     const String VM_PAYLOAD_SERVICE_SOCKET_NAME = "vm_payload_service";
 
@@ -33,6 +39,32 @@
      */
     const String ENCRYPTEDSTORE_MOUNTPOINT = "/mnt/encryptedstore";
 
+    /**
+     * An {@link AttestationResult} holds an attested private key and the remotely
+     * provisioned certificate chain covering its corresponding public key.
+     */
+    parcelable AttestationResult {
+        /**
+         * DER-encoded ECPrivateKey structure specified in [RFC 5915 s3] for the
+         * EC P-256 private key, which is attested.
+         *
+         * The corresponding public key is included in the leaf certificate of
+         * the certificate chain.
+         *
+         * [RFC 5915 s3]: https://datatracker.ietf.org/doc/html/rfc5915#section-3
+         */
+        byte[] privateKey;
+
+        /**
+         * Sequence of DER-encoded X.509 certificates that make up the attestation
+         * key's certificate chain.
+         *
+         * The certificate chain starts with a leaf certificate covering the attested
+         * public key and ends with a root certificate.
+         */
+        Certificate[] certificateChain;
+    }
+
     /** Notifies that the payload is ready to serve. */
     void notifyPayloadReady();
 
@@ -67,4 +99,17 @@
      * @throws SecurityException if the use of test APIs is not permitted.
      */
     byte[] getDiceAttestationCdi();
+
+    /**
+     * Requests the remote attestation of the client VM.
+     *
+     * The challenge will be included in the certificate chain in the attestation result,
+     * serving as proof of the freshness of the result.
+     *
+     * @param challenge the maximum supported challenge size is 64 bytes.
+     *
+     * @return An {@link AttestationResult} parcelable containing an attested key pair and its
+     *         certification chain.
+     */
+    AttestationResult requestAttestation(in byte[] challenge);
 }
diff --git a/microdroid_manager/microdroid_manager.rc b/microdroid_manager/microdroid_manager.rc
index e257547..da38564 100644
--- a/microdroid_manager/microdroid_manager.rc
+++ b/microdroid_manager/microdroid_manager.rc
@@ -8,8 +8,8 @@
     # TODO(jooyung) remove this when microdroid_manager becomes a daemon
     oneshot
     # CAP_SYS_BOOT is required to exec kexecload from microdroid_manager
-    # CAP_SETCAP is required to allow microdroid_manager to drop capabilities
+    # CAP_SETPCAP is required to allow microdroid_manager to drop capabilities
     #   before executing the payload
-    capabilities AUDIT_CONTROL SYS_ADMIN SYS_BOOT SETPCAP
+    capabilities AUDIT_CONTROL SYS_ADMIN SYS_BOOT SETPCAP SETUID SETGID
     user root
     socket vm_payload_service stream 0666 system system
diff --git a/microdroid_manager/src/dice.rs b/microdroid_manager/src/dice.rs
index 3a2a1e6..a8b88aa 100644
--- a/microdroid_manager/src/dice.rs
+++ b/microdroid_manager/src/dice.rs
@@ -1,10 +1,10 @@
-// Copyright 2022, The Android Open Source Project
+// Copyright 2023 The Android Open Source Project
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
 // You may obtain a copy of the License at
 //
-//     http://www.apache.org/licenses/LICENSE-2.0
+//      http://www.apache.org/licenses/LICENSE-2.0
 //
 // Unless required by applicable law or agreed to in writing, software
 // distributed under the License is distributed on an "AS IS" BASIS,
@@ -12,181 +12,126 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//! Logic for handling the DICE values and boot operations.
-
-use anyhow::{anyhow, bail, Context, Error, Result};
-use byteorder::{NativeEndian, ReadBytesExt};
-use ciborium::{cbor, ser};
-use diced_open_dice::{
-    bcc_handover_parse, retry_bcc_main_flow, BccHandover, Config, DiceArtifacts, DiceMode, Hash,
-    Hidden, InputValues, OwnedDiceArtifacts,
-};
-use keystore2_crypto::ZVec;
-use libc::{c_void, mmap, munmap, MAP_FAILED, MAP_PRIVATE, PROT_READ};
+use crate::dice_driver::DiceDriver;
+use crate::instance::{ApexData, ApkData};
+use crate::{is_debuggable, MicrodroidData};
+use anyhow::{bail, Context, Result};
+use ciborium::{cbor, Value};
+use coset::CborSerializable;
+use diced_open_dice::OwnedDiceArtifacts;
 use microdroid_metadata::PayloadMetadata;
-use openssl::hkdf::hkdf;
-use openssl::md::Md;
-use std::fs;
-use std::os::unix::io::AsRawFd;
-use std::path::{Path, PathBuf};
-use std::ptr::null_mut;
-use std::slice;
+use openssl::sha::{sha512, Sha512};
+use std::iter::once;
 
-/// Derives a sealing key from the DICE sealing CDI.
-pub fn derive_sealing_key(
-    dice_artifacts: &dyn DiceArtifacts,
-    salt: &[u8],
-    info: &[u8],
-    key: &mut [u8],
-) -> Result<()> {
-    Ok(hkdf(key, Md::sha256(), dice_artifacts.cdi_seal(), salt, info)?)
+/// Perform an open DICE derivation for the payload.
+pub fn dice_derivation(
+    dice: DiceDriver,
+    instance_data: &MicrodroidData,
+    payload_metadata: &PayloadMetadata,
+) -> Result<OwnedDiceArtifacts> {
+    let subcomponents = build_subcomponent_list(instance_data);
+    let config_descriptor = format_payload_config_descriptor(payload_metadata, subcomponents)
+        .context("Building config descriptor")?;
+
+    // Calculate compound digests of code and authorities
+    let mut code_hash_ctx = Sha512::new();
+    let mut authority_hash_ctx = Sha512::new();
+    code_hash_ctx.update(instance_data.apk_data.root_hash.as_ref());
+    authority_hash_ctx.update(instance_data.apk_data.cert_hash.as_ref());
+    for extra_apk in &instance_data.extra_apks_data {
+        code_hash_ctx.update(extra_apk.root_hash.as_ref());
+        authority_hash_ctx.update(extra_apk.cert_hash.as_ref());
+    }
+    for apex in &instance_data.apex_data {
+        code_hash_ctx.update(apex.root_digest.as_ref());
+        authority_hash_ctx.update(apex.public_key.as_ref());
+    }
+    let code_hash = code_hash_ctx.finish();
+    let authority_hash = authority_hash_ctx.finish();
+
+    // Check debuggability, conservatively assuming it is debuggable
+    let debuggable = is_debuggable()?;
+
+    // Send the details to diced
+    let hidden = instance_data.salt.clone().try_into().unwrap();
+    dice.derive(code_hash, &config_descriptor, authority_hash, debuggable, hidden)
 }
 
-/// Artifacts that are mapped into the process address space from the driver.
-pub enum DiceDriver<'a> {
-    Real {
-        driver_path: PathBuf,
-        mmap_addr: *mut c_void,
-        mmap_size: usize,
-        bcc_handover: BccHandover<'a>,
-    },
-    Fake(OwnedDiceArtifacts),
+struct Subcomponent {
+    name: String,
+    version: u64,
+    code_hash: Vec<u8>,
+    authority_hash: Vec<u8>,
 }
 
-impl DiceDriver<'_> {
-    fn dice_artifacts(&self) -> &dyn DiceArtifacts {
-        match self {
-            Self::Real { bcc_handover, .. } => bcc_handover,
-            Self::Fake(owned_dice_artifacts) => owned_dice_artifacts,
+impl Subcomponent {
+    fn into_value(self) -> Result<Value> {
+        Ok(cbor!({
+           1 => self.name,
+           2 => self.version,
+           3 => Value::Bytes(self.code_hash),
+           4 => Value::Bytes(self.authority_hash),
+        })?)
+    }
+
+    fn for_apk(apk: &ApkData) -> Self {
+        Self {
+            name: format!("apk:{}", apk.package_name),
+            version: apk.version_code,
+            code_hash: apk.root_hash.clone(),
+            authority_hash: apk.cert_hash.clone(),
         }
     }
 
-    pub fn new(driver_path: &Path) -> Result<Self> {
-        if driver_path.exists() {
-            log::info!("Using DICE values from driver");
-        } else if super::is_strict_boot() {
-            bail!("Strict boot requires DICE value from driver but none were found");
-        } else {
-            log::warn!("Using sample DICE values");
-            let dice_artifacts = diced_sample_inputs::make_sample_bcc_and_cdis()
-                .expect("Failed to create sample dice artifacts.");
-            return Ok(Self::Fake(dice_artifacts));
-        };
-
-        let mut file = fs::File::open(driver_path)
-            .map_err(|error| Error::new(error).context("Opening driver"))?;
-        let mmap_size =
-            file.read_u64::<NativeEndian>()
-                .map_err(|error| Error::new(error).context("Reading driver"))? as usize;
-        // It's safe to map the driver as the service will only create a single
-        // mapping per process.
-        let mmap_addr = unsafe {
-            let fd = file.as_raw_fd();
-            mmap(null_mut(), mmap_size, PROT_READ, MAP_PRIVATE, fd, 0)
-        };
-        if mmap_addr == MAP_FAILED {
-            bail!("Failed to mmap {:?}", driver_path);
-        }
-        // The slice is created for the region of memory that was just
-        // successfully mapped into the process address space so it will be
-        // accessible and not referenced from anywhere else.
-        let mmap_buf =
-            unsafe { slice::from_raw_parts((mmap_addr as *const u8).as_ref().unwrap(), mmap_size) };
-        let bcc_handover =
-            bcc_handover_parse(mmap_buf).map_err(|_| anyhow!("Failed to parse Bcc Handover"))?;
-        Ok(Self::Real {
-            driver_path: driver_path.to_path_buf(),
-            mmap_addr,
-            mmap_size,
-            bcc_handover,
-        })
-    }
-
-    /// Derives a sealing key of `key_length` bytes from the DICE sealing CDI.
-    pub fn get_sealing_key(&self, identifier: &[u8], key_length: usize) -> Result<ZVec> {
-        // Deterministically derive a key to use for sealing data, rather than using the CDI
-        // directly, so we have the chance to rotate the key if needed. A salt isn't needed as the
-        // input key material is already cryptographically strong.
-        let mut key = ZVec::new(key_length)?;
-        let salt = &[];
-        derive_sealing_key(self.dice_artifacts(), salt, identifier, &mut key)?;
-        Ok(key)
-    }
-
-    pub fn derive(
-        self,
-        code_hash: Hash,
-        config_desc: &[u8],
-        authority_hash: Hash,
-        debug: bool,
-        hidden: Hidden,
-    ) -> Result<OwnedDiceArtifacts> {
-        let input_values = InputValues::new(
-            code_hash,
-            Config::Descriptor(config_desc),
-            authority_hash,
-            if debug { DiceMode::kDiceModeDebug } else { DiceMode::kDiceModeNormal },
-            hidden,
-        );
-        let current_dice_artifacts = self.dice_artifacts();
-        let next_dice_artifacts = retry_bcc_main_flow(
-            current_dice_artifacts.cdi_attest(),
-            current_dice_artifacts.cdi_seal(),
-            current_dice_artifacts.bcc().ok_or_else(|| anyhow!("bcc is none"))?,
-            &input_values,
-        )
-        .context("DICE derive from driver")?;
-        if let Self::Real { driver_path, .. } = &self {
-            // Writing to the device wipes the artifacts. The string is ignored by the driver but
-            // included for documentation.
-            fs::write(driver_path, "wipe")
-                .map_err(|err| Error::new(err).context("Wiping driver"))?;
-        }
-        Ok(next_dice_artifacts)
-    }
-}
-
-impl Drop for DiceDriver<'_> {
-    fn drop(&mut self) {
-        if let &mut Self::Real { mmap_addr, mmap_size, .. } = self {
-            // All references to the mapped region have the same lifetime as self. Since self is
-            // being dropped, so are all the references to the mapped region meaning its safe to
-            // unmap.
-            let ret = unsafe { munmap(mmap_addr, mmap_size) };
-            if ret != 0 {
-                log::warn!("Failed to munmap ({})", ret);
-            }
+    fn for_apex(apex: &ApexData) -> Self {
+        // Note that this is only reachable if the dice_changes flag is on, in which case
+        // the manifest data will always be present.
+        Self {
+            name: format!("apex:{}", apex.manifest_name.as_ref().unwrap()),
+            version: apex.manifest_version.unwrap() as u64,
+            code_hash: apex.root_digest.clone(),
+            authority_hash: sha512(&apex.public_key).to_vec(),
         }
     }
 }
 
-/// Returns a configuration descriptor of the given payload following the BCC's specification:
-/// https://cs.android.com/android/platform/superproject/+/master:hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/ProtectedData.aidl
-/// {
-///   -70002: "Microdroid payload",
-///   ? -71000: tstr // payload_config_path
-///   ? -71001: PayloadConfig
-/// }
-/// PayloadConfig = {
-///   1: tstr // payload_binary_name
-/// }
-pub fn format_payload_config_descriptor(payload_metadata: &PayloadMetadata) -> Result<Vec<u8>> {
-    const MICRODROID_PAYLOAD_COMPONENT_NAME: &str = "Microdroid payload";
-
-    let config_descriptor_cbor_value = match payload_metadata {
-        PayloadMetadata::config_path(payload_config_path) => cbor!({
-            -70002 => MICRODROID_PAYLOAD_COMPONENT_NAME,
-            -71000 => payload_config_path
-        }),
-        PayloadMetadata::config(payload_config) => cbor!({
-            -70002 => MICRODROID_PAYLOAD_COMPONENT_NAME,
-            -71001 => {1 => payload_config.payload_binary_name}
-        }),
+fn build_subcomponent_list(instance_data: &MicrodroidData) -> Vec<Subcomponent> {
+    if !cfg!(dice_changes) {
+        return vec![];
     }
-    .context("Failed to build a CBOR Value from payload metadata")?;
-    let mut config_descriptor = Vec::new();
-    ser::into_writer(&config_descriptor_cbor_value, &mut config_descriptor)?;
-    Ok(config_descriptor)
+
+    let apks = once(&instance_data.apk_data)
+        .chain(&instance_data.extra_apks_data)
+        .map(Subcomponent::for_apk);
+    let apexes = instance_data.apex_data.iter().map(Subcomponent::for_apex);
+    apks.chain(apexes).collect()
+}
+
+// Returns a configuration descriptor of the given payload. See vm_config.cddl for the definition
+// of the format.
+fn format_payload_config_descriptor(
+    payload: &PayloadMetadata,
+    subcomponents: Vec<Subcomponent>,
+) -> Result<Vec<u8>> {
+    let mut map = Vec::new();
+    map.push((cbor!(-70002)?, cbor!("Microdroid payload")?));
+    map.push(match payload {
+        PayloadMetadata::ConfigPath(payload_config_path) => {
+            (cbor!(-71000)?, cbor!(payload_config_path)?)
+        }
+        PayloadMetadata::Config(payload_config) => {
+            (cbor!(-71001)?, cbor!({1 => payload_config.payload_binary_name})?)
+        }
+        _ => bail!("Failed to match the payload against a config type: {:?}", payload),
+    });
+
+    if !subcomponents.is_empty() {
+        let values =
+            subcomponents.into_iter().map(Subcomponent::into_value).collect::<Result<Vec<_>>>()?;
+        map.push((cbor!(-71002)?, cbor!(values)?));
+    }
+
+    Ok(Value::Map(map).to_vec()?)
 }
 
 #[cfg(test)]
@@ -194,17 +139,30 @@
     use super::*;
     use microdroid_metadata::PayloadConfig;
 
+    const NO_SUBCOMPONENTS: Vec<Subcomponent> = Vec::new();
+
+    fn assert_eq_bytes(expected: &[u8], actual: &[u8]) {
+        assert_eq!(
+            expected,
+            actual,
+            "Expected {}, got {}",
+            hex::encode(expected),
+            hex::encode(actual)
+        )
+    }
+
     #[test]
     fn payload_metadata_with_path_formats_correctly() -> Result<()> {
-        let payload_metadata = PayloadMetadata::config_path("/config_path".to_string());
-        let config_descriptor = format_payload_config_descriptor(&payload_metadata)?;
+        let payload_metadata = PayloadMetadata::ConfigPath("/config_path".to_string());
+        let config_descriptor =
+            format_payload_config_descriptor(&payload_metadata, NO_SUBCOMPONENTS)?;
         static EXPECTED_CONFIG_DESCRIPTOR: &[u8] = &[
             0xa2, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x72, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x64, 0x72,
             0x6f, 0x69, 0x64, 0x20, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x3a, 0x00, 0x01,
             0x15, 0x57, 0x6c, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x70, 0x61, 0x74,
             0x68,
         ];
-        assert_eq!(EXPECTED_CONFIG_DESCRIPTOR, &config_descriptor);
+        assert_eq_bytes(EXPECTED_CONFIG_DESCRIPTOR, &config_descriptor);
         Ok(())
     }
 
@@ -214,15 +172,48 @@
             payload_binary_name: "payload_binary".to_string(),
             ..Default::default()
         };
-        let payload_metadata = PayloadMetadata::config(payload_config);
-        let config_descriptor = format_payload_config_descriptor(&payload_metadata)?;
+        let payload_metadata = PayloadMetadata::Config(payload_config);
+        let config_descriptor =
+            format_payload_config_descriptor(&payload_metadata, NO_SUBCOMPONENTS)?;
         static EXPECTED_CONFIG_DESCRIPTOR: &[u8] = &[
             0xa2, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x72, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x64, 0x72,
             0x6f, 0x69, 0x64, 0x20, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x3a, 0x00, 0x01,
             0x15, 0x58, 0xa1, 0x01, 0x6e, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62,
             0x69, 0x6e, 0x61, 0x72, 0x79,
         ];
-        assert_eq!(EXPECTED_CONFIG_DESCRIPTOR, &config_descriptor);
+        assert_eq_bytes(EXPECTED_CONFIG_DESCRIPTOR, &config_descriptor);
+        Ok(())
+    }
+
+    #[test]
+    fn payload_metadata_with_subcomponents_formats_correctly() -> Result<()> {
+        let payload_metadata = PayloadMetadata::ConfigPath("/config_path".to_string());
+        let subcomponents = vec![
+            Subcomponent {
+                name: "apk1".to_string(),
+                version: 1,
+                code_hash: vec![42, 43],
+                authority_hash: vec![17],
+            },
+            Subcomponent {
+                name: "apk2".to_string(),
+                version: 0x1000_0000_0001,
+                code_hash: vec![43],
+                authority_hash: vec![19, 20],
+            },
+        ];
+        let config_descriptor = format_payload_config_descriptor(&payload_metadata, subcomponents)?;
+        // Verified using cbor.me.
+        static EXPECTED_CONFIG_DESCRIPTOR: &[u8] = &[
+            0xa3, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x72, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x64, 0x72,
+            0x6f, 0x69, 0x64, 0x20, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x3a, 0x00, 0x01,
+            0x15, 0x57, 0x6c, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x70, 0x61, 0x74,
+            0x68, 0x3a, 0x00, 0x01, 0x15, 0x59, 0x82, 0xa4, 0x01, 0x64, 0x61, 0x70, 0x6b, 0x31,
+            0x02, 0x01, 0x03, 0x42, 0x2a, 0x2b, 0x04, 0x41, 0x11, 0xa4, 0x01, 0x64, 0x61, 0x70,
+            0x6b, 0x32, 0x02, 0x1b, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x41,
+            0x2b, 0x04, 0x42, 0x13, 0x14,
+        ];
+        assert_eq_bytes(EXPECTED_CONFIG_DESCRIPTOR, &config_descriptor);
         Ok(())
     }
 }
diff --git a/microdroid_manager/src/dice_driver.rs b/microdroid_manager/src/dice_driver.rs
new file mode 100644
index 0000000..229f3e0
--- /dev/null
+++ b/microdroid_manager/src/dice_driver.rs
@@ -0,0 +1,149 @@
+// Copyright 2022, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Logic for handling the DICE values and boot operations.
+
+use anyhow::{anyhow, bail, Context, Error, Result};
+use byteorder::{NativeEndian, ReadBytesExt};
+use diced_open_dice::{
+    bcc_handover_parse, retry_bcc_main_flow, BccHandover, Config, DiceArtifacts, DiceMode, Hash,
+    Hidden, InputValues, OwnedDiceArtifacts,
+};
+use keystore2_crypto::ZVec;
+use libc::{c_void, mmap, munmap, MAP_FAILED, MAP_PRIVATE, PROT_READ};
+use openssl::hkdf::hkdf;
+use openssl::md::Md;
+use std::fs;
+use std::os::unix::io::AsRawFd;
+use std::path::{Path, PathBuf};
+use std::ptr::null_mut;
+use std::slice;
+
+/// Artifacts that are mapped into the process address space from the driver.
+pub enum DiceDriver<'a> {
+    Real {
+        driver_path: PathBuf,
+        mmap_addr: *mut c_void,
+        mmap_size: usize,
+        bcc_handover: BccHandover<'a>,
+    },
+    Fake(OwnedDiceArtifacts),
+}
+
+impl DiceDriver<'_> {
+    fn dice_artifacts(&self) -> &dyn DiceArtifacts {
+        match self {
+            Self::Real { bcc_handover, .. } => bcc_handover,
+            Self::Fake(owned_dice_artifacts) => owned_dice_artifacts,
+        }
+    }
+
+    pub fn new(driver_path: &Path) -> Result<Self> {
+        if driver_path.exists() {
+            log::info!("Using DICE values from driver");
+        } else if super::is_strict_boot() {
+            bail!("Strict boot requires DICE value from driver but none were found");
+        } else {
+            log::warn!("Using sample DICE values");
+            let dice_artifacts = diced_sample_inputs::make_sample_bcc_and_cdis()
+                .expect("Failed to create sample dice artifacts.");
+            return Ok(Self::Fake(dice_artifacts));
+        };
+
+        let mut file = fs::File::open(driver_path)
+            .map_err(|error| Error::new(error).context("Opening driver"))?;
+        let mmap_size =
+            file.read_u64::<NativeEndian>()
+                .map_err(|error| Error::new(error).context("Reading driver"))? as usize;
+        // SAFETY: It's safe to map the driver as the service will only create a single
+        // mapping per process.
+        let mmap_addr = unsafe {
+            let fd = file.as_raw_fd();
+            mmap(null_mut(), mmap_size, PROT_READ, MAP_PRIVATE, fd, 0)
+        };
+        if mmap_addr == MAP_FAILED {
+            bail!("Failed to mmap {:?}", driver_path);
+        }
+        let mmap_buf =
+        // SAFETY: The slice is created for the region of memory that was just
+        // successfully mapped into the process address space so it will be
+        // accessible and not referenced from anywhere else.
+            unsafe { slice::from_raw_parts((mmap_addr as *const u8).as_ref().unwrap(), mmap_size) };
+        let bcc_handover =
+            bcc_handover_parse(mmap_buf).map_err(|_| anyhow!("Failed to parse Bcc Handover"))?;
+        Ok(Self::Real {
+            driver_path: driver_path.to_path_buf(),
+            mmap_addr,
+            mmap_size,
+            bcc_handover,
+        })
+    }
+
+    /// Derives a sealing key of `key_length` bytes from the DICE sealing CDI.
+    pub fn get_sealing_key(&self, identifier: &[u8], key_length: usize) -> Result<ZVec> {
+        // Deterministically derive a key to use for sealing data, rather than using the CDI
+        // directly, so we have the chance to rotate the key if needed. A salt isn't needed as the
+        // input key material is already cryptographically strong.
+        let mut key = ZVec::new(key_length)?;
+        let salt = &[];
+        hkdf(&mut key, Md::sha256(), self.dice_artifacts().cdi_seal(), salt, identifier)?;
+        Ok(key)
+    }
+
+    pub fn derive(
+        self,
+        code_hash: Hash,
+        config_desc: &[u8],
+        authority_hash: Hash,
+        debug: bool,
+        hidden: Hidden,
+    ) -> Result<OwnedDiceArtifacts> {
+        let input_values = InputValues::new(
+            code_hash,
+            Config::Descriptor(config_desc),
+            authority_hash,
+            if debug { DiceMode::kDiceModeDebug } else { DiceMode::kDiceModeNormal },
+            hidden,
+        );
+        let current_dice_artifacts = self.dice_artifacts();
+        let next_dice_artifacts = retry_bcc_main_flow(
+            current_dice_artifacts.cdi_attest(),
+            current_dice_artifacts.cdi_seal(),
+            current_dice_artifacts.bcc().ok_or_else(|| anyhow!("bcc is none"))?,
+            &input_values,
+        )
+        .context("DICE derive from driver")?;
+        if let Self::Real { driver_path, .. } = &self {
+            // Writing to the device wipes the artifacts. The string is ignored by the driver but
+            // included for documentation.
+            fs::write(driver_path, "wipe")
+                .map_err(|err| Error::new(err).context("Wiping driver"))?;
+        }
+        Ok(next_dice_artifacts)
+    }
+}
+
+impl Drop for DiceDriver<'_> {
+    fn drop(&mut self) {
+        if let &mut Self::Real { mmap_addr, mmap_size, .. } = self {
+            // SAFETY: All references to the mapped region have the same lifetime as self. Since
+            // self is being dropped, so are all the references to the mapped region meaning it's
+            // safe to unmap.
+            let ret = unsafe { munmap(mmap_addr, mmap_size) };
+            if ret != 0 {
+                log::warn!("Failed to munmap ({})", ret);
+            }
+        }
+    }
+}
diff --git a/microdroid_manager/src/instance.rs b/microdroid_manager/src/instance.rs
index b16a1e1..7a9f0e0 100644
--- a/microdroid_manager/src/instance.rs
+++ b/microdroid_manager/src/instance.rs
@@ -33,7 +33,7 @@
 //! The payload of a partition is encrypted/signed by a key that is unique to the loader and to the
 //! VM as well. Failing to decrypt/authenticate a partition by a loader stops the boot process.
 
-use crate::dice::DiceDriver;
+use crate::dice_driver::DiceDriver;
 use crate::ioutil;
 
 use anyhow::{anyhow, bail, Context, Result};
@@ -287,21 +287,23 @@
 
 #[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
 pub struct ApkData {
-    pub root_hash: Box<RootHash>,
-    pub pubkey: Box<[u8]>,
+    pub root_hash: Vec<u8>,
+    pub cert_hash: Vec<u8>,
+    pub package_name: String,
+    pub version_code: u64,
 }
 
 impl ApkData {
     pub fn root_hash_eq(&self, root_hash: &[u8]) -> bool {
-        self.root_hash.as_ref() == root_hash
+        self.root_hash == root_hash
     }
 }
 
-pub type RootHash = [u8];
-
 #[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
 pub struct ApexData {
     pub name: String,
+    pub manifest_name: Option<String>,
+    pub manifest_version: Option<i64>,
     pub public_key: Vec<u8>,
     pub root_digest: Vec<u8>,
     pub last_update_seconds: u64,
diff --git a/microdroid_manager/src/ioutil.rs b/microdroid_manager/src/ioutil.rs
index d36e349..772941d 100644
--- a/microdroid_manager/src/ioutil.rs
+++ b/microdroid_manager/src/ioutil.rs
@@ -28,6 +28,10 @@
 const SLEEP_DURATION: Duration = Duration::from_millis(5);
 
 /// waits for a file with a timeout and returns it
+///
+/// WARNING: This only guarantees file creation. When there's another thread
+///   writing a file and you're waiting for the file, reading the file should be
+///   synchronized with other mechanism than just waiting for the creation.
 pub fn wait_for_file<P: AsRef<Path> + Debug>(path: P, timeout: Duration) -> Result<File> {
     debug!("waiting for {:?}...", path);
     let begin = Instant::now();
@@ -64,15 +68,21 @@
 #[cfg(test)]
 mod tests {
     use super::*;
+    use std::fs::rename;
     use std::io::{Read, Write};
 
     #[test]
     fn test_wait_for_file() -> Result<()> {
         let test_dir = tempfile::TempDir::new().unwrap();
         let test_file = test_dir.path().join("test.txt");
+        let temp_file = test_dir.path().join("test.txt~");
         thread::spawn(move || -> io::Result<()> {
+            // Sleep to ensure that `wait_for_file` actually waits
             thread::sleep(Duration::from_secs(1));
-            File::create(test_file)?.write_all(b"test")
+            // Write to a temp file and then rename it to avoid the race between
+            // write and read.
+            File::create(&temp_file)?.write_all(b"test")?;
+            rename(temp_file, test_file)
         });
 
         let test_file = test_dir.path().join("test.txt");
diff --git a/microdroid_manager/src/main.rs b/microdroid_manager/src/main.rs
index c78b20f..86284a5 100644
--- a/microdroid_manager/src/main.rs
+++ b/microdroid_manager/src/main.rs
@@ -15,15 +15,15 @@
 //! Microdroid Manager
 
 mod dice;
+mod dice_driver;
 mod instance;
 mod ioutil;
 mod payload;
 mod swap;
+mod verify;
 mod vm_payload_service;
+mod vm_secret;
 
-use crate::dice::{DiceDriver, derive_sealing_key, format_payload_config_descriptor};
-use crate::instance::{ApexData, ApkData, InstanceDisk, MicrodroidData, RootHash};
-use crate::vm_payload_service::register_vm_payload_service;
 use android_system_virtualizationcommon::aidl::android::system::virtualizationcommon::ErrorCode::ErrorCode;
 use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::IVirtualMachineService;
 use android_system_virtualization_payload::aidl::android::system::virtualization::payload::IVmPayloadService::{
@@ -31,53 +31,49 @@
     VM_PAYLOAD_SERVICE_SOCKET_NAME,
     ENCRYPTEDSTORE_MOUNTPOINT,
 };
+
+use crate::dice::dice_derivation;
+use crate::dice_driver::DiceDriver;
+use crate::instance::{InstanceDisk, MicrodroidData};
+use crate::verify::verify_payload;
+use crate::vm_payload_service::register_vm_payload_service;
 use anyhow::{anyhow, bail, ensure, Context, Error, Result};
-use apkverify::{get_public_key_der, verify, V4Signature};
 use binder::Strong;
-use diced_open_dice::OwnedDiceArtifacts;
-use glob::glob;
-use itertools::sorted;
-use libc::VMADDR_CID_HOST;
-use log::{error, info, warn};
 use keystore2_crypto::ZVec;
-use microdroid_metadata::{write_metadata, Metadata, PayloadMetadata};
-use microdroid_payload_config::{OsConfig, Task, TaskType, VmPayloadConfig};
-use nix::fcntl::{fcntl, F_SETFD, FdFlag};
+use libc::VMADDR_CID_HOST;
+use log::{error, info};
+use microdroid_metadata::PayloadMetadata;
+use microdroid_payload_config::{ApkConfig, OsConfig, Task, TaskType, VmPayloadConfig};
 use nix::sys::signal::Signal;
-use openssl::sha::Sha512;
-use payload::{get_apex_data_from_payload, load_metadata, to_metadata};
-use rand::Fill;
+use openssl::hkdf::hkdf;
+use openssl::md::Md;
+use payload::load_metadata;
 use rpcbinder::RpcSession;
 use rustutils::sockets::android_get_control_socket;
 use rustutils::system_properties;
 use rustutils::system_properties::PropertyWatcher;
+use secretkeeper_comm::data_types::ID_SIZE;
 use std::borrow::Cow::{Borrowed, Owned};
-use std::convert::TryInto;
 use std::env;
 use std::ffi::CString;
-use std::fs::{self, create_dir, OpenOptions, File};
+use std::fs::{self, create_dir, File, OpenOptions};
 use std::io::{Read, Write};
+use std::os::unix::io::{FromRawFd, OwnedFd};
 use std::os::unix::process::CommandExt;
 use std::os::unix::process::ExitStatusExt;
 use std::path::Path;
 use std::process::{Child, Command, Stdio};
 use std::str;
-use std::time::{Duration, SystemTime};
+use std::time::Duration;
+use vm_secret::VmSecret;
 
 const WAIT_TIMEOUT: Duration = Duration::from_secs(10);
-const MAIN_APK_PATH: &str = "/dev/block/by-name/microdroid-apk";
-const MAIN_APK_IDSIG_PATH: &str = "/dev/block/by-name/microdroid-apk-idsig";
-const MAIN_APK_DEVICE_NAME: &str = "microdroid-apk";
-const EXTRA_APK_PATH_PATTERN: &str = "/dev/block/by-name/extra-apk-*";
-const EXTRA_IDSIG_PATH_PATTERN: &str = "/dev/block/by-name/extra-idsig-*";
-const DM_MOUNTED_APK_PATH: &str = "/dev/block/mapper/microdroid-apk";
-const AVF_STRICT_BOOT: &str = "/sys/firmware/devicetree/base/chosen/avf,strict-boot";
-const AVF_NEW_INSTANCE: &str = "/sys/firmware/devicetree/base/chosen/avf,new-instance";
-const AVF_DEBUG_POLICY_RAMDUMP: &str = "/sys/firmware/devicetree/base/avf/guest/common/ramdump";
+const AVF_STRICT_BOOT: &str = "/proc/device-tree/chosen/avf,strict-boot";
+const AVF_NEW_INSTANCE: &str = "/proc/device-tree/chosen/avf,new-instance";
+const AVF_DEBUG_POLICY_RAMDUMP: &str = "/proc/device-tree/avf/guest/common/ramdump";
 const DEBUG_MICRODROID_NO_VERIFIED_BOOT: &str =
-    "/sys/firmware/devicetree/base/virtualization/guest/debug-microdroid,no-verified-boot";
+    "/proc/device-tree/virtualization/guest/debug-microdroid,no-verified-boot";
 
-const APKDMVERITY_BIN: &str = "/system/bin/apkdmverity";
 const ENCRYPTEDSTORE_BIN: &str = "/system/bin/encryptedstore";
 const ZIPFUSE_BIN: &str = "/system/bin/zipfuse";
 
@@ -88,7 +84,6 @@
 const FAILURE_SERIAL_DEVICE: &str = "/dev/ttyS1";
 
 const ENCRYPTEDSTORE_BACKING_DEVICE: &str = "/dev/block/by-name/encryptedstore";
-const ENCRYPTEDSTORE_KEY_IDENTIFIER: &str = "encryptedstore_key";
 const ENCRYPTEDSTORE_KEYSIZE: usize = 32;
 
 #[derive(thiserror::Error, Debug)]
@@ -100,7 +95,7 @@
     #[error("Payload verification has failed: {0}")]
     PayloadVerificationFailed(String),
     #[error("Payload config is invalid: {0}")]
-    InvalidConfig(String),
+    PayloadInvalidConfig(String),
 }
 
 fn translate_error(err: &Error) -> (ErrorCode, String) {
@@ -110,10 +105,9 @@
             MicrodroidError::PayloadVerificationFailed(msg) => {
                 (ErrorCode::PAYLOAD_VERIFICATION_FAILED, msg.to_string())
             }
-            MicrodroidError::InvalidConfig(msg) => {
-                (ErrorCode::PAYLOAD_CONFIG_INVALID, msg.to_string())
+            MicrodroidError::PayloadInvalidConfig(msg) => {
+                (ErrorCode::PAYLOAD_INVALID_CONFIG, msg.to_string())
             }
-
             // Connection failure won't be reported to VS; return the default value
             MicrodroidError::FailedToConnectToVirtualizationService(msg) => {
                 (ErrorCode::UNKNOWN, msg.to_string())
@@ -134,7 +128,7 @@
             MicrodroidError::PayloadVerificationFailed(_) => {
                 "MICRODROID_PAYLOAD_VERIFICATION_FAILED"
             }
-            MicrodroidError::InvalidConfig(_) => "MICRODROID_INVALID_PAYLOAD_CONFIG",
+            MicrodroidError::PayloadInvalidConfig(_) => "MICRODROID_INVALID_PAYLOAD_CONFIG",
         })
     } else {
         // Send context information back after a separator, to ease diagnosis.
@@ -143,35 +137,17 @@
         Owned(format!("MICRODROID_UNKNOWN_RUNTIME_ERROR|{:?}", err))
     };
 
-    let death_reason_bytes = death_reason.as_bytes();
-    let mut sent_total = 0;
-    while sent_total < death_reason_bytes.len() {
+    for chunk in death_reason.as_bytes().chunks(16) {
         // TODO(b/220071963): Sometimes, sending more than 16 bytes at once makes MM hang.
-        let begin = sent_total;
-        let end = std::cmp::min(begin.saturating_add(16), death_reason_bytes.len());
-        OpenOptions::new()
-            .read(false)
-            .write(true)
-            .open(FAILURE_SERIAL_DEVICE)?
-            .write_all(&death_reason_bytes[begin..end])?;
-        sent_total = end;
+        OpenOptions::new().read(false).write(true).open(FAILURE_SERIAL_DEVICE)?.write_all(chunk)?;
     }
 
     Ok(())
 }
 
-fn get_vms_rpc_binder() -> Result<Strong<dyn IVirtualMachineService>> {
-    // The host is running a VirtualMachineService for this VM on a port equal
-    // to the CID of this VM.
-    let port = vsock::get_local_cid().context("Could not determine local CID")?;
-    RpcSession::new()
-        .setup_vsock_client(VMADDR_CID_HOST, port)
-        .context("Could not connect to IVirtualMachineService")
-}
-
 fn main() -> Result<()> {
     // If debuggable, print full backtrace to console log with stdio_to_kmsg
-    if system_properties::read_bool(DEBUGGABLE_PROP, true)? {
+    if is_debuggable()? {
         env::set_var("RUST_BACKTRACE", "full");
     }
 
@@ -191,32 +167,32 @@
     })
 }
 
-fn set_cloexec_on_vm_payload_service_socket() -> Result<()> {
-    let fd = android_get_control_socket(VM_PAYLOAD_SERVICE_SOCKET_NAME)?;
-
-    fcntl(fd, F_SETFD(FdFlag::FD_CLOEXEC))?;
-
-    Ok(())
-}
-
 fn try_main() -> Result<()> {
-    let _ = kernlog::init();
+    android_logger::init_once(
+        android_logger::Config::default()
+            .with_tag("microdroid_manager")
+            .with_max_level(log::LevelFilter::Info),
+    );
     info!("started.");
 
-    if let Err(e) = set_cloexec_on_vm_payload_service_socket() {
-        warn!("Failed to set cloexec on vm payload socket: {:?}", e);
-    }
+    // SAFETY: This is the only place we take the ownership of the fd of the vm payload service.
+    //
+    // To ensure that the CLOEXEC flag is set on the file descriptor as early as possible,
+    // it is necessary to fetch the socket corresponding to vm_payload_service at the
+    // very beginning, as android_get_control_socket() sets the CLOEXEC flag on the file
+    // descriptor.
+    let vm_payload_service_fd = unsafe { prepare_vm_payload_service_socket()? };
 
     load_crashkernel_if_supported().context("Failed to load crashkernel")?;
 
-    swap::init_swap().context("Failed to initialise swap")?;
+    swap::init_swap().context("Failed to initialize swap")?;
     info!("swap enabled.");
 
     let service = get_vms_rpc_binder()
         .context("cannot connect to VirtualMachineService")
         .map_err(|e| MicrodroidError::FailedToConnectToVirtualizationService(e.to_string()))?;
 
-    match try_run_payload(&service) {
+    match try_run_payload(&service, vm_payload_service_fd) {
         Ok(code) => {
             if code == 0 {
                 info!("task successfully finished");
@@ -243,11 +219,188 @@
     }
 }
 
+fn try_run_payload(
+    service: &Strong<dyn IVirtualMachineService>,
+    vm_payload_service_fd: OwnedFd,
+) -> Result<i32> {
+    let metadata = load_metadata().context("Failed to load payload metadata")?;
+    let dice = DiceDriver::new(Path::new("/dev/open-dice0")).context("Failed to load DICE")?;
+
+    let mut instance = InstanceDisk::new().context("Failed to load instance.img")?;
+    let saved_data =
+        instance.read_microdroid_data(&dice).context("Failed to read identity data")?;
+
+    if is_strict_boot() {
+        // Provisioning must happen on the first boot and never again.
+        if is_new_instance() {
+            ensure!(
+                saved_data.is_none(),
+                MicrodroidError::PayloadInvalidConfig(
+                    "Found instance data on first boot.".to_string()
+                )
+            );
+        } else {
+            ensure!(
+                saved_data.is_some(),
+                MicrodroidError::PayloadInvalidConfig("Instance data not found.".to_string())
+            );
+        };
+    }
+
+    // Verify the payload before using it.
+    let extracted_data = verify_payload(&metadata, saved_data.as_ref())
+        .context("Payload verification failed")
+        .map_err(|e| MicrodroidError::PayloadVerificationFailed(e.to_string()))?;
+
+    // In case identity is ignored (by debug policy), we should reuse existing payload data, even
+    // when the payload is changed. This is to keep the derived secret same as before.
+    let instance_data = if let Some(saved_data) = saved_data {
+        if !is_verified_boot() {
+            if saved_data != extracted_data {
+                info!("Detected an update of the payload, but continue (regarding debug policy)")
+            }
+        } else {
+            ensure!(
+                saved_data == extracted_data,
+                MicrodroidError::PayloadChanged(String::from(
+                    "Detected an update of the payload which isn't supported yet."
+                ))
+            );
+            info!("Saved data is verified.");
+        }
+        saved_data
+    } else {
+        info!("Saving verified data.");
+        instance
+            .write_microdroid_data(&extracted_data, &dice)
+            .context("Failed to write identity data")?;
+        extracted_data
+    };
+
+    let payload_metadata = metadata.payload.ok_or_else(|| {
+        MicrodroidError::PayloadInvalidConfig("No payload config in metadata".to_string())
+    })?;
+
+    // To minimize the exposure to untrusted data, derive dice profile as soon as possible.
+    info!("DICE derivation for payload");
+    let dice_artifacts = dice_derivation(dice, &instance_data, &payload_metadata)?;
+    // TODO(b/291213394): This will be the Id for non-pVM only, instance_data.salt is all 0
+    // for protected VM, implement a mechanism for pVM!
+    let mut vm_id = [0u8; ID_SIZE];
+    hkdf(
+        &mut vm_id,
+        Md::sha256(),
+        &instance_data.salt,
+        /* salt */ b"",
+        /* info */ b"VM_ID",
+    )
+    .context("hkdf failed")?;
+    let vm_secret =
+        VmSecret::new(vm_id, dice_artifacts, service).context("Failed to create VM secrets")?;
+
+    if cfg!(dice_changes) {
+        // Now that the DICE derivation is done, it's ok to allow payload code to run.
+
+        // Start apexd to activate APEXes. This may allow code within them to run.
+        system_properties::write("ctl.start", "apexd-vm")?;
+    }
+
+    // Run encryptedstore binary to prepare the storage
+    let encryptedstore_child = if Path::new(ENCRYPTEDSTORE_BACKING_DEVICE).exists() {
+        info!("Preparing encryptedstore ...");
+        Some(prepare_encryptedstore(&vm_secret).context("encryptedstore run")?)
+    } else {
+        None
+    };
+
+    let mut zipfuse = Zipfuse::default();
+
+    // Before reading a file from the APK, start zipfuse
+    zipfuse.mount(
+        MountForExec::Allowed,
+        "fscontext=u:object_r:zipfusefs:s0,context=u:object_r:system_file:s0",
+        Path::new(verify::DM_MOUNTED_APK_PATH),
+        Path::new(VM_APK_CONTENTS_PATH),
+        "microdroid_manager.apk.mounted".to_owned(),
+    )?;
+
+    // Restricted APIs are only allowed to be used by platform or test components. Infer this from
+    // the use of a VM config file since those can only be used by platform and test components.
+    let allow_restricted_apis = match payload_metadata {
+        PayloadMetadata::ConfigPath(_) => true,
+        PayloadMetadata::Config(_) => false,
+        _ => false, // default is false for safety
+    };
+
+    let config = load_config(payload_metadata).context("Failed to load payload metadata")?;
+
+    let task = config
+        .task
+        .as_ref()
+        .ok_or_else(|| MicrodroidError::PayloadInvalidConfig("No task in VM config".to_string()))?;
+
+    ensure!(
+        config.extra_apks.len() == instance_data.extra_apks_data.len(),
+        "config expects {} extra apks, but found {}",
+        config.extra_apks.len(),
+        instance_data.extra_apks_data.len()
+    );
+    mount_extra_apks(&config, &mut zipfuse)?;
+
+    register_vm_payload_service(
+        allow_restricted_apis,
+        service.clone(),
+        vm_secret,
+        vm_payload_service_fd,
+    )?;
+
+    // Set export_tombstones if enabled
+    if should_export_tombstones(&config) {
+        // This property is read by tombstone_handler.
+        system_properties::write("microdroid_manager.export_tombstones.enabled", "1")
+            .context("set microdroid_manager.export_tombstones.enabled")?;
+    }
+
+    // Wait until apex config is done. (e.g. linker configuration for apexes)
+    wait_for_property_true(APEX_CONFIG_DONE_PROP).context("Failed waiting for apex config done")?;
+
+    // Trigger init post-fs-data. This will start authfs if we wask it to.
+    if config.enable_authfs {
+        system_properties::write("microdroid_manager.authfs.enabled", "1")
+            .context("failed to write microdroid_manager.authfs.enabled")?;
+    }
+    system_properties::write("microdroid_manager.config_done", "1")
+        .context("failed to write microdroid_manager.config_done")?;
+
+    // Wait until zipfuse has mounted the APKs so we can access the payload
+    zipfuse.wait_until_done()?;
+
+    // Wait for encryptedstore to finish mounting the storage (if enabled) before setting
+    // microdroid_manager.init_done. Reason is init stops uneventd after that.
+    // Encryptedstore, however requires ueventd
+    if let Some(mut child) = encryptedstore_child {
+        let exitcode = child.wait().context("Wait for encryptedstore child")?;
+        ensure!(exitcode.success(), "Unable to prepare encrypted storage. Exitcode={}", exitcode);
+    }
+
+    // Wait for init to have finished booting.
+    wait_for_property_true("dev.bootcomplete").context("failed waiting for dev.bootcomplete")?;
+
+    // And then tell it we're done so unnecessary services can be shut down.
+    system_properties::write("microdroid_manager.init_done", "1")
+        .context("set microdroid_manager.init_done")?;
+
+    info!("boot completed, time to run payload");
+    exec_task(task, service).context("Failed to run payload")
+}
+
 fn post_payload_work() -> Result<()> {
     // Sync the encrypted storage filesystem (flushes the filesystem caches).
     if Path::new(ENCRYPTEDSTORE_BACKING_DEVICE).exists() {
         let mountpoint = CString::new(ENCRYPTEDSTORE_MOUNTPOINT).unwrap();
 
+        // SAFETY: `mountpoint` is a valid C string. `syncfs` and `close` are safe for any parameter
+        // values.
         let ret = unsafe {
             let dirfd = libc::open(
                 mountpoint.as_ptr(),
@@ -265,35 +418,54 @@
     }
     Ok(())
 }
-fn dice_derivation(
-    dice: DiceDriver,
-    verified_data: &MicrodroidData,
-    payload_metadata: &PayloadMetadata,
-) -> Result<OwnedDiceArtifacts> {
-    // Calculate compound digests of code and authorities
-    let mut code_hash_ctx = Sha512::new();
-    let mut authority_hash_ctx = Sha512::new();
-    code_hash_ctx.update(verified_data.apk_data.root_hash.as_ref());
-    authority_hash_ctx.update(verified_data.apk_data.pubkey.as_ref());
-    for extra_apk in &verified_data.extra_apks_data {
-        code_hash_ctx.update(extra_apk.root_hash.as_ref());
-        authority_hash_ctx.update(extra_apk.pubkey.as_ref());
+
+fn mount_extra_apks(config: &VmPayloadConfig, zipfuse: &mut Zipfuse) -> Result<()> {
+    // For now, only the number of apks is important, as the mount point and dm-verity name is fixed
+    for i in 0..config.extra_apks.len() {
+        let mount_dir = format!("/mnt/extra-apk/{i}");
+        create_dir(Path::new(&mount_dir)).context("Failed to create mount dir for extra apks")?;
+
+        let mount_for_exec =
+            if cfg!(multi_tenant) { MountForExec::Allowed } else { MountForExec::Disallowed };
+        // These run asynchronously in parallel - we wait later for them to complete.
+        zipfuse.mount(
+            mount_for_exec,
+            "fscontext=u:object_r:zipfusefs:s0,context=u:object_r:extra_apk_file:s0",
+            Path::new(&format!("/dev/block/mapper/extra-apk-{i}")),
+            Path::new(&mount_dir),
+            format!("microdroid_manager.extra_apk.mounted.{i}"),
+        )?;
     }
-    for apex in &verified_data.apex_data {
-        code_hash_ctx.update(apex.root_digest.as_ref());
-        authority_hash_ctx.update(apex.public_key.as_ref());
+
+    Ok(())
+}
+
+fn get_vms_rpc_binder() -> Result<Strong<dyn IVirtualMachineService>> {
+    // The host is running a VirtualMachineService for this VM on a port equal
+    // to the CID of this VM.
+    let port = vsock::get_local_cid().context("Could not determine local CID")?;
+    RpcSession::new()
+        .setup_vsock_client(VMADDR_CID_HOST, port)
+        .context("Could not connect to IVirtualMachineService")
+}
+
+/// Prepares a socket file descriptor for the vm payload service.
+///
+/// # Safety
+///
+/// The caller must ensure that this function is the only place that claims ownership
+/// of the file descriptor and it is called only once.
+unsafe fn prepare_vm_payload_service_socket() -> Result<OwnedFd> {
+    let raw_fd = android_get_control_socket(VM_PAYLOAD_SERVICE_SOCKET_NAME)?;
+
+    // Creating OwnedFd for stdio FDs is not safe.
+    if [libc::STDIN_FILENO, libc::STDOUT_FILENO, libc::STDERR_FILENO].contains(&raw_fd) {
+        bail!("File descriptor {raw_fd} is standard I/O descriptor");
     }
-    let code_hash = code_hash_ctx.finish();
-    let authority_hash = authority_hash_ctx.finish();
-
-    let config_descriptor = format_payload_config_descriptor(payload_metadata)?;
-
-    // Check debuggability, conservatively assuming it is debuggable
-    let debuggable = system_properties::read_bool(DEBUGGABLE_PROP, true)?;
-
-    // Send the details to diced
-    let hidden = verified_data.salt.clone().try_into().unwrap();
-    dice.derive(code_hash, &config_descriptor, authority_hash, debuggable, hidden)
+    // SAFETY: Initializing OwnedFd for a RawFd created by the init.
+    // We checked that the integer value corresponds to a valid FD and that the caller
+    // ensures that this is the only place to claim its ownership.
+    Ok(unsafe { OwnedFd::from_raw_fd(raw_fd) })
 }
 
 fn is_strict_boot() -> bool {
@@ -308,10 +480,14 @@
     !Path::new(DEBUG_MICRODROID_NO_VERIFIED_BOOT).exists()
 }
 
+fn is_debuggable() -> Result<bool> {
+    Ok(system_properties::read_bool(DEBUGGABLE_PROP, true)?)
+}
+
 fn should_export_tombstones(config: &VmPayloadConfig) -> bool {
     match config.export_tombstones {
         Some(b) => b,
-        None => system_properties::read_bool(DEBUGGABLE_PROP, true).unwrap_or(false),
+        None => is_debuggable().unwrap_or(false),
     }
 }
 
@@ -320,7 +496,9 @@
     let mut file = match File::open(path) {
         Ok(dp) => dp,
         Err(e) => {
-            info!("{e:?}. Assumes <0>");
+            info!(
+                "Assumes that debug policy is disabled because failed to read debug policy ({e:?})"
+            );
             return Ok(Some(false));
         }
     };
@@ -330,163 +508,6 @@
     Ok(Some(u32::from_be_bytes(log) == 1))
 }
 
-fn try_run_payload(service: &Strong<dyn IVirtualMachineService>) -> Result<i32> {
-    let metadata = load_metadata().context("Failed to load payload metadata")?;
-    let dice = DiceDriver::new(Path::new("/dev/open-dice0")).context("Failed to load DICE")?;
-
-    let mut instance = InstanceDisk::new().context("Failed to load instance.img")?;
-    let saved_data =
-        instance.read_microdroid_data(&dice).context("Failed to read identity data")?;
-
-    if is_strict_boot() {
-        // Provisioning must happen on the first boot and never again.
-        if is_new_instance() {
-            ensure!(
-                saved_data.is_none(),
-                MicrodroidError::InvalidConfig("Found instance data on first boot.".to_string())
-            );
-        } else {
-            ensure!(
-                saved_data.is_some(),
-                MicrodroidError::InvalidConfig("Instance data not found.".to_string())
-            );
-        };
-    }
-
-    // Verify the payload before using it.
-    let verified_data = verify_payload(&metadata, saved_data.as_ref())
-        .context("Payload verification failed")
-        .map_err(|e| MicrodroidError::PayloadVerificationFailed(e.to_string()))?;
-
-    // In case identity is ignored (by debug policy), we should reuse existing payload data, even
-    // when the payload is changed. This is to keep the derived secret same as before.
-    let verified_data = if let Some(saved_data) = saved_data {
-        if !is_verified_boot() {
-            if saved_data != verified_data {
-                info!("Detected an update of the payload, but continue (regarding debug policy)")
-            }
-        } else {
-            ensure!(
-                saved_data == verified_data,
-                MicrodroidError::PayloadChanged(String::from(
-                    "Detected an update of the payload which isn't supported yet."
-                ))
-            );
-            info!("Saved data is verified.");
-        }
-        saved_data
-    } else {
-        info!("Saving verified data.");
-        instance
-            .write_microdroid_data(&verified_data, &dice)
-            .context("Failed to write identity data")?;
-        verified_data
-    };
-
-    let payload_metadata = metadata.payload.ok_or_else(|| {
-        MicrodroidError::InvalidConfig("No payload config in metadata".to_string())
-    })?;
-
-    // To minimize the exposure to untrusted data, derive dice profile as soon as possible.
-    info!("DICE derivation for payload");
-    let dice_artifacts = dice_derivation(dice, &verified_data, &payload_metadata)?;
-
-    // Run encryptedstore binary to prepare the storage
-    let encryptedstore_child = if Path::new(ENCRYPTEDSTORE_BACKING_DEVICE).exists() {
-        info!("Preparing encryptedstore ...");
-        Some(prepare_encryptedstore(&dice_artifacts).context("encryptedstore run")?)
-    } else {
-        None
-    };
-
-    let mut zipfuse = Zipfuse::default();
-
-    // Before reading a file from the APK, start zipfuse
-    zipfuse.mount(
-        MountForExec::Allowed,
-        "fscontext=u:object_r:zipfusefs:s0,context=u:object_r:system_file:s0",
-        Path::new("/dev/block/mapper/microdroid-apk"),
-        Path::new(VM_APK_CONTENTS_PATH),
-        "microdroid_manager.apk.mounted".to_owned(),
-    )?;
-
-    // Restricted APIs are only allowed to be used by platform or test components. Infer this from
-    // the use of a VM config file since those can only be used by platform and test components.
-    let allow_restricted_apis = match payload_metadata {
-        PayloadMetadata::config_path(_) => true,
-        PayloadMetadata::config(_) => false,
-    };
-
-    let config = load_config(payload_metadata).context("Failed to load payload metadata")?;
-
-    let task = config
-        .task
-        .as_ref()
-        .ok_or_else(|| MicrodroidError::InvalidConfig("No task in VM config".to_string()))?;
-
-    ensure!(
-        config.extra_apks.len() == verified_data.extra_apks_data.len(),
-        "config expects {} extra apks, but found {}",
-        config.extra_apks.len(),
-        verified_data.extra_apks_data.len()
-    );
-    mount_extra_apks(&config, &mut zipfuse)?;
-
-    // Wait until apex config is done. (e.g. linker configuration for apexes)
-    wait_for_apex_config_done()?;
-
-    setup_config_sysprops(&config)?;
-
-    // Set export_tombstones if enabled
-    if should_export_tombstones(&config) {
-        // This property is read by tombstone_handler.
-        system_properties::write("microdroid_manager.export_tombstones.enabled", "1")
-            .context("set microdroid_manager.export_tombstones.enabled")?;
-    }
-
-    // Wait until zipfuse has mounted the APKs so we can access the payload
-    zipfuse.wait_until_done()?;
-
-    register_vm_payload_service(allow_restricted_apis, service.clone(), dice_artifacts)?;
-
-    // Wait for encryptedstore to finish mounting the storage (if enabled) before setting
-    // microdroid_manager.init_done. Reason is init stops uneventd after that.
-    // Encryptedstore, however requires ueventd
-    if let Some(mut child) = encryptedstore_child {
-        let exitcode = child.wait().context("Wait for encryptedstore child")?;
-        ensure!(exitcode.success(), "Unable to prepare encrypted storage. Exitcode={}", exitcode);
-    }
-
-    wait_for_property_true("dev.bootcomplete").context("failed waiting for dev.bootcomplete")?;
-    system_properties::write("microdroid_manager.init_done", "1")
-        .context("set microdroid_manager.init_done")?;
-
-    info!("boot completed, time to run payload");
-    exec_task(task, service).context("Failed to run payload")
-}
-
-struct ApkDmverityArgument<'a> {
-    apk: &'a str,
-    idsig: &'a str,
-    name: &'a str,
-    saved_root_hash: Option<&'a RootHash>,
-}
-
-fn run_apkdmverity(args: &[ApkDmverityArgument]) -> Result<Child> {
-    let mut cmd = Command::new(APKDMVERITY_BIN);
-
-    for argument in args {
-        cmd.arg("--apk").arg(argument.apk).arg(argument.idsig).arg(argument.name);
-        if let Some(root_hash) = argument.saved_root_hash {
-            cmd.arg(&to_hex_string(root_hash));
-        } else {
-            cmd.arg("none");
-        }
-    }
-
-    cmd.spawn().context("Spawn apkdmverity")
-}
-
 enum MountForExec {
     Allowed,
     Disallowed,
@@ -498,8 +519,6 @@
 }
 
 impl Zipfuse {
-    const MICRODROID_PAYLOAD_UID: u32 = 0; // TODO(b/264861173) should be non-root
-    const MICRODROID_PAYLOAD_GID: u32 = 0; // TODO(b/264861173) should be non-root
     fn mount(
         &mut self,
         noexec: MountForExec,
@@ -512,9 +531,13 @@
         if let MountForExec::Disallowed = noexec {
             cmd.arg("--noexec");
         }
+        // Let root own the files in APK, so we can access them, but set the group to
+        // allow all payloads to have access too.
+        let (uid, gid) = (microdroid_uids::ROOT_UID, microdroid_uids::MICRODROID_PAYLOAD_GID);
+
         cmd.args(["-p", &ready_prop, "-o", option]);
-        cmd.args(["-u", &Self::MICRODROID_PAYLOAD_UID.to_string()]);
-        cmd.args(["-g", &Self::MICRODROID_PAYLOAD_GID.to_string()]);
+        cmd.args(["-u", &uid.to_string()]);
+        cmd.args(["-g", &gid.to_string()]);
         cmd.arg(zip_path).arg(mount_dir);
         self.ready_properties.push(ready_prop);
         cmd.spawn().with_context(|| format!("Failed to run zipfuse for {mount_dir:?}"))
@@ -532,208 +555,10 @@
     }
 }
 
-fn write_apex_payload_data(
-    saved_data: Option<&MicrodroidData>,
-    apex_data_from_payload: &[ApexData],
-) -> Result<()> {
-    if let Some(saved_apex_data) = saved_data.map(|d| &d.apex_data) {
-        // We don't support APEX updates. (assuming that update will change root digest)
-        ensure!(
-            saved_apex_data == apex_data_from_payload,
-            MicrodroidError::PayloadChanged(String::from("APEXes have changed."))
-        );
-        let apex_metadata = to_metadata(apex_data_from_payload);
-        // Pass metadata(with public keys and root digests) to apexd so that it uses the passed
-        // metadata instead of the default one (/dev/block/by-name/payload-metadata)
-        OpenOptions::new()
-            .create_new(true)
-            .write(true)
-            .open("/apex/vm-payload-metadata")
-            .context("Failed to open /apex/vm-payload-metadata")
-            .and_then(|f| write_metadata(&apex_metadata, f))?;
-    }
-    Ok(())
-}
-
-// Verify payload before executing it. For APK payload, Full verification (which is slow) is done
-// when the root_hash values from the idsig file and the instance disk are different. This function
-// returns the verified root hash (for APK payload) and pubkeys (for APEX payloads) that can be
-// saved to the instance disk.
-fn verify_payload(
-    metadata: &Metadata,
-    saved_data: Option<&MicrodroidData>,
-) -> Result<MicrodroidData> {
-    let start_time = SystemTime::now();
-
-    // Verify main APK
-    let root_hash_from_idsig = get_apk_root_hash_from_idsig(MAIN_APK_IDSIG_PATH)?;
-    let root_hash_trustful =
-        saved_data.map(|d| d.apk_data.root_hash_eq(root_hash_from_idsig.as_ref())).unwrap_or(false);
-
-    // If root_hash can be trusted, pass it to apkdmverity so that it uses the passed root_hash
-    // instead of the value read from the idsig file.
-    let main_apk_argument = {
-        ApkDmverityArgument {
-            apk: MAIN_APK_PATH,
-            idsig: MAIN_APK_IDSIG_PATH,
-            name: MAIN_APK_DEVICE_NAME,
-            saved_root_hash: if root_hash_trustful {
-                Some(root_hash_from_idsig.as_ref())
-            } else {
-                None
-            },
-        }
-    };
-    let mut apkdmverity_arguments = vec![main_apk_argument];
-
-    // Verify extra APKs
-    // For now, we can't read the payload config, so glob APKs and idsigs.
-    // Later, we'll see if it matches with the payload config.
-
-    // sort globbed paths to match apks (extra-apk-{idx}) and idsigs (extra-idsig-{idx})
-    // e.g. "extra-apk-0" corresponds to "extra-idsig-0"
-    let extra_apks =
-        sorted(glob(EXTRA_APK_PATH_PATTERN)?.collect::<Result<Vec<_>, _>>()?).collect::<Vec<_>>();
-    let extra_idsigs =
-        sorted(glob(EXTRA_IDSIG_PATH_PATTERN)?.collect::<Result<Vec<_>, _>>()?).collect::<Vec<_>>();
-    ensure!(
-        extra_apks.len() == extra_idsigs.len(),
-        "Extra apks/idsigs mismatch: {} apks but {} idsigs",
-        extra_apks.len(),
-        extra_idsigs.len()
-    );
-
-    let extra_root_hashes_from_idsig: Vec<_> = extra_idsigs
-        .iter()
-        .map(|idsig| {
-            get_apk_root_hash_from_idsig(idsig).expect("Can't find root hash from extra idsig")
-        })
-        .collect();
-
-    let extra_root_hashes_trustful: Vec<_> = if let Some(data) = saved_data {
-        extra_root_hashes_from_idsig
-            .iter()
-            .enumerate()
-            .map(|(i, root_hash)| data.extra_apk_root_hash_eq(i, root_hash))
-            .collect()
-    } else {
-        vec![false; extra_root_hashes_from_idsig.len()]
-    };
-    let extra_apk_names: Vec<_> =
-        (0..extra_apks.len()).map(|i| format!("extra-apk-{}", i)).collect();
-
-    for (i, extra_apk) in extra_apks.iter().enumerate() {
-        apkdmverity_arguments.push({
-            ApkDmverityArgument {
-                apk: extra_apk.to_str().unwrap(),
-                idsig: extra_idsigs[i].to_str().unwrap(),
-                name: &extra_apk_names[i],
-                saved_root_hash: if extra_root_hashes_trustful[i] {
-                    Some(&extra_root_hashes_from_idsig[i])
-                } else {
-                    None
-                },
-            }
-        });
-    }
-
-    // Start apkdmverity and wait for the dm-verify block
-    let mut apkdmverity_child = run_apkdmverity(&apkdmverity_arguments)?;
-
-    // While waiting for apkdmverity to mount APK, gathers public keys and root digests from
-    // APEX payload.
-    let apex_data_from_payload = get_apex_data_from_payload(metadata)?;
-
-    // Writing /apex/vm-payload-metadata is to verify that the payload isn't changed.
-    // Skip writing it if the debug policy ignoring identity is on
-    if is_verified_boot() {
-        write_apex_payload_data(saved_data, &apex_data_from_payload)?;
-    }
-
-    // Start apexd to activate APEXes
-    system_properties::write("ctl.start", "apexd-vm")?;
-
-    // TODO(inseob): add timeout
-    apkdmverity_child.wait()?;
-
-    // Do the full verification if the root_hash is un-trustful. This requires the full scanning of
-    // the APK file and therefore can be very slow if the APK is large. Note that this step is
-    // taken only when the root_hash is un-trustful which can be either when this is the first boot
-    // of the VM or APK was updated in the host.
-    // TODO(jooyung): consider multithreading to make this faster
-    let main_apk_pubkey = get_public_key_from_apk(DM_MOUNTED_APK_PATH, root_hash_trustful)?;
-    let extra_apks_data = extra_root_hashes_from_idsig
-        .into_iter()
-        .enumerate()
-        .map(|(i, extra_root_hash)| {
-            let mount_path = format!("/dev/block/mapper/{}", &extra_apk_names[i]);
-            let apk_pubkey = get_public_key_from_apk(&mount_path, extra_root_hashes_trustful[i])?;
-            Ok(ApkData { root_hash: extra_root_hash, pubkey: apk_pubkey })
-        })
-        .collect::<Result<Vec<_>>>()?;
-
-    info!("payload verification successful. took {:#?}", start_time.elapsed().unwrap());
-
-    // Use the salt from a verified instance, or generate a salt for a new instance.
-    let salt = if let Some(saved_data) = saved_data {
-        saved_data.salt.clone()
-    } else if is_strict_boot() {
-        // No need to add more entropy as a previous stage must have used a new, random salt.
-        vec![0u8; 64]
-    } else {
-        let mut salt = vec![0u8; 64];
-        salt.as_mut_slice().try_fill(&mut rand::thread_rng())?;
-        salt
-    };
-
-    // At this point, we can ensure that the root_hash from the idsig file is trusted, either by
-    // fully verifying the APK or by comparing it with the saved root_hash.
-    Ok(MicrodroidData {
-        salt,
-        apk_data: ApkData { root_hash: root_hash_from_idsig, pubkey: main_apk_pubkey },
-        extra_apks_data,
-        apex_data: apex_data_from_payload,
-    })
-}
-
-fn mount_extra_apks(config: &VmPayloadConfig, zipfuse: &mut Zipfuse) -> Result<()> {
-    // For now, only the number of apks is important, as the mount point and dm-verity name is fixed
-    for i in 0..config.extra_apks.len() {
-        let mount_dir = format!("/mnt/extra-apk/{i}");
-        create_dir(Path::new(&mount_dir)).context("Failed to create mount dir for extra apks")?;
-
-        // don't wait, just detach
-        zipfuse.mount(
-            MountForExec::Disallowed,
-            "fscontext=u:object_r:zipfusefs:s0,context=u:object_r:extra_apk_file:s0",
-            Path::new(&format!("/dev/block/mapper/extra-apk-{i}")),
-            Path::new(&mount_dir),
-            format!("microdroid_manager.extra_apk.mounted.{i}"),
-        )?;
-    }
-
-    Ok(())
-}
-
-fn setup_config_sysprops(config: &VmPayloadConfig) -> Result<()> {
-    if config.enable_authfs {
-        system_properties::write("microdroid_manager.authfs.enabled", "1")
-            .context("failed to write microdroid_manager.authfs.enabled")?;
-    }
-    system_properties::write("microdroid_manager.config_done", "1")
-        .context("failed to write microdroid_manager.config_done")?;
-    Ok(())
-}
-
-// Waits until linker config is generated
-fn wait_for_apex_config_done() -> Result<()> {
-    wait_for_property_true(APEX_CONFIG_DONE_PROP).context("Failed waiting for apex config done")
-}
-
 fn wait_for_property_true(property_name: &str) -> Result<()> {
     let mut prop = PropertyWatcher::new(property_name)?;
     loop {
-        prop.wait()?;
+        prop.wait(None)?;
         if system_properties::read_bool(property_name, false)? {
             break;
         }
@@ -741,52 +566,35 @@
     Ok(())
 }
 
-fn get_apk_root_hash_from_idsig<P: AsRef<Path>>(idsig_path: P) -> Result<Box<RootHash>> {
-    Ok(V4Signature::from_idsig_path(idsig_path)?.hashing_info.raw_root_hash)
-}
-
-fn get_public_key_from_apk(apk: &str, root_hash_trustful: bool) -> Result<Box<[u8]>> {
-    let current_sdk = get_current_sdk()?;
-    if !root_hash_trustful {
-        verify(apk, current_sdk).context(MicrodroidError::PayloadVerificationFailed(format!(
-            "failed to verify {}",
-            apk
-        )))
-    } else {
-        get_public_key_der(apk, current_sdk)
-    }
-}
-
-fn get_current_sdk() -> Result<u32> {
-    let current_sdk = system_properties::read("ro.build.version.sdk")?;
-    let current_sdk = current_sdk.ok_or_else(|| anyhow!("SDK version missing"))?;
-    current_sdk.parse().context("Malformed SDK version")
-}
-
 fn load_config(payload_metadata: PayloadMetadata) -> Result<VmPayloadConfig> {
     match payload_metadata {
-        PayloadMetadata::config_path(path) => {
+        PayloadMetadata::ConfigPath(path) => {
             let path = Path::new(&path);
             info!("loading config from {:?}...", path);
             let file = ioutil::wait_for_file(path, WAIT_TIMEOUT)
                 .with_context(|| format!("Failed to read {:?}", path))?;
             Ok(serde_json::from_reader(file)?)
         }
-        PayloadMetadata::config(payload_config) => {
+        PayloadMetadata::Config(payload_config) => {
             let task = Task {
                 type_: TaskType::MicrodroidLauncher,
                 command: payload_config.payload_binary_name,
             };
+            // We don't care about the paths, only the number of extra APKs really matters.
+            let extra_apks = (0..payload_config.extra_apk_count)
+                .map(|i| ApkConfig { path: format!("extra-apk-{i}") })
+                .collect();
             Ok(VmPayloadConfig {
                 os: OsConfig { name: "microdroid".to_owned() },
                 task: Some(task),
                 apexes: vec![],
-                extra_apks: vec![],
+                extra_apks,
                 prefer_staged: false,
                 export_tombstones: None,
                 enable_authfs: false,
             })
         }
+        _ => bail!("Failed to match config against a config type."),
     }
 }
 
@@ -801,7 +609,7 @@
         return Ok(());
     }
 
-    let debuggable = system_properties::read_bool(DEBUGGABLE_PROP, true)?;
+    let debuggable = is_debuggable()?;
     let ramdump = get_debug_policy_bool(AVF_DEBUG_POLICY_RAMDUMP)?.unwrap_or_default();
     let requested = debuggable | ramdump;
 
@@ -819,27 +627,28 @@
 fn exec_task(task: &Task, service: &Strong<dyn IVirtualMachineService>) -> Result<i32> {
     info!("executing main task {:?}...", task);
     let mut command = match task.type_ {
-        TaskType::Executable => Command::new(&task.command),
+        TaskType::Executable => {
+            // TODO(b/297501338): Figure out how to handle non-root for system payloads.
+            Command::new(&task.command)
+        }
         TaskType::MicrodroidLauncher => {
             let mut command = Command::new("/system/bin/microdroid_launcher");
             command.arg(find_library_path(&task.command)?);
+            command.uid(microdroid_uids::MICRODROID_PAYLOAD_UID);
+            command.gid(microdroid_uids::MICRODROID_PAYLOAD_GID);
             command
         }
     };
 
+    // SAFETY: We are not accessing any resource of the parent process. This means we can't make any
+    // log calls inside the closure.
     unsafe {
-        // SAFETY: we are not accessing any resource of the parent process.
         command.pre_exec(|| {
-            info!("dropping capabilities before executing payload");
             // It is OK to continue with payload execution even if the calls below fail, since
             // whether process can use a capability is controlled by the SELinux. Dropping the
             // capabilities here is just another defense-in-depth layer.
-            if let Err(e) = cap::drop_inheritable_caps() {
-                error!("failed to drop inheritable capabilities: {:?}", e);
-            }
-            if let Err(e) = cap::drop_bounding_set() {
-                error!("failed to drop bounding set: {:?}", e);
-            }
+            let _ = cap::drop_inheritable_caps();
+            let _ = cap::drop_bounding_set();
             Ok(())
         });
     }
@@ -877,22 +686,9 @@
     Ok(path)
 }
 
-fn to_hex_string(buf: &[u8]) -> String {
-    buf.iter().map(|b| format!("{:02X}", b)).collect()
-}
-
-fn prepare_encryptedstore(dice_artifacts: &OwnedDiceArtifacts) -> Result<Child> {
-    // Use a fixed salt to scope the derivation to this API.
-    // Generated using hexdump -vn32 -e'14/1 "0x%02X, " 1 "\n"' /dev/urandom
-    // TODO(b/241541860) : Move this (& other salts) to a salt container, i.e. a global enum
-    let salt = [
-        0xFC, 0x1D, 0x35, 0x7B, 0x96, 0xF3, 0xEF, 0x17, 0x78, 0x7D, 0x70, 0xED, 0xEA, 0xFE, 0x1D,
-        0x6F, 0xB3, 0xF9, 0x40, 0xCE, 0xDD, 0x99, 0x40, 0xAA, 0xA7, 0x0E, 0x92, 0x73, 0x90, 0x86,
-        0x4A, 0x75,
-    ];
+fn prepare_encryptedstore(vm_secret: &VmSecret) -> Result<Child> {
     let mut key = ZVec::new(ENCRYPTEDSTORE_KEYSIZE)?;
-    derive_sealing_key(dice_artifacts, &salt, ENCRYPTEDSTORE_KEY_IDENTIFIER.as_bytes(), &mut key)?;
-
+    vm_secret.derive_encryptedstore_key(&mut key)?;
     let mut cmd = Command::new(ENCRYPTEDSTORE_BIN);
     cmd.arg("--blkdevice")
         .arg(ENCRYPTEDSTORE_BACKING_DEVICE)
diff --git a/microdroid_manager/src/payload.rs b/microdroid_manager/src/payload.rs
index a553ce4..98fe24b 100644
--- a/microdroid_manager/src/payload.rs
+++ b/microdroid_manager/src/payload.rs
@@ -17,8 +17,7 @@
 use crate::instance::ApexData;
 use crate::ioutil::wait_for_file;
 use anyhow::Result;
-use apexutil::verify;
-use log::info;
+use log::{info, warn};
 use microdroid_metadata::{read_metadata, ApexPayload, Metadata};
 use std::time::Duration;
 
@@ -38,13 +37,19 @@
         .apexes
         .iter()
         .map(|apex| {
-            let name = apex.name.clone();
             let apex_path = format!("/dev/block/by-name/{}", apex.partition_name);
-            let result = verify(&apex_path)?;
+            let extracted = apexutil::verify(&apex_path)?;
+            if let Some(manifest_name) = &extracted.name {
+                if &apex.name != manifest_name {
+                    warn!("Apex named {} is named {} in its manifest", apex.name, manifest_name);
+                }
+            };
             Ok(ApexData {
-                name,
-                public_key: result.public_key,
-                root_digest: result.root_digest,
+                name: apex.name.clone(),
+                manifest_name: extracted.name,
+                manifest_version: extracted.version,
+                public_key: extracted.public_key,
+                root_digest: extracted.root_digest,
                 last_update_seconds: apex.last_update_seconds,
                 is_factory: apex.is_factory,
             })
@@ -61,6 +66,8 @@
                 name: data.name.clone(),
                 public_key: data.public_key.clone(),
                 root_digest: data.root_digest.clone(),
+                manifest_name: data.manifest_name.clone().unwrap_or_default(),
+                manifest_version: data.manifest_version.unwrap_or_default(),
                 last_update_seconds: data.last_update_seconds,
                 is_factory: data.is_factory,
                 ..Default::default()
diff --git a/microdroid_manager/src/swap.rs b/microdroid_manager/src/swap.rs
index 2f4d176..c2b20ac 100644
--- a/microdroid_manager/src/swap.rs
+++ b/microdroid_manager/src/swap.rs
@@ -48,7 +48,7 @@
         .checked_mul(512)
         .ok_or_else(|| anyhow!("sysfs_size too large"))?;
 
-    // safe because we give a constant and known-valid sysconf parameter
+    // SAFETY: We give a constant and known-valid sysconf parameter.
     let pagesize = unsafe { libc::sysconf(libc::_SC_PAGE_SIZE) as u64 };
 
     let mut f = OpenOptions::new().read(false).write(true).open(format!("/dev/{}", dev))?;
@@ -75,7 +75,7 @@
 /// Simple "swapon", using libc:: wrapper.
 fn swapon(dev: &str) -> Result<()> {
     let swapon_arg = std::ffi::CString::new(format!("/dev/{}", dev))?;
-    // safe because we give a nul-terminated string and check the result
+    // SAFETY: We give a nul-terminated string and check the result.
     let res = unsafe { libc::swapon(swapon_arg.as_ptr(), 0) };
     if res != 0 {
         return Err(anyhow!("Failed to swapon: {}", Error::last_os_error()));
diff --git a/microdroid_manager/src/verify.rs b/microdroid_manager/src/verify.rs
new file mode 100644
index 0000000..445c1ae
--- /dev/null
+++ b/microdroid_manager/src/verify.rs
@@ -0,0 +1,281 @@
+// Copyright 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+use crate::instance::{ApexData, ApkData, MicrodroidData};
+use crate::payload::{get_apex_data_from_payload, to_metadata};
+use crate::{is_strict_boot, is_verified_boot, MicrodroidError};
+use anyhow::{anyhow, ensure, Context, Result};
+use apkmanifest::get_manifest_info;
+use apkverify::{extract_signed_data, verify, V4Signature};
+use glob::glob;
+use itertools::sorted;
+use log::{info, warn};
+use microdroid_metadata::{write_metadata, Metadata};
+use openssl::sha::sha512;
+use rand::Fill;
+use rustutils::system_properties;
+use std::fs::OpenOptions;
+use std::path::Path;
+use std::process::{Child, Command};
+use std::str;
+use std::time::SystemTime;
+
+pub const DM_MOUNTED_APK_PATH: &str = "/dev/block/mapper/microdroid-apk";
+
+const MAIN_APK_PATH: &str = "/dev/block/by-name/microdroid-apk";
+const MAIN_APK_IDSIG_PATH: &str = "/dev/block/by-name/microdroid-apk-idsig";
+const MAIN_APK_DEVICE_NAME: &str = "microdroid-apk";
+const EXTRA_APK_PATH_PATTERN: &str = "/dev/block/by-name/extra-apk-*";
+const EXTRA_IDSIG_PATH_PATTERN: &str = "/dev/block/by-name/extra-idsig-*";
+
+const APKDMVERITY_BIN: &str = "/system/bin/apkdmverity";
+
+/// Verify payload before executing it. For APK payload, Full verification (which is slow) is done
+/// when the root_hash values from the idsig file and the instance disk are different. This function
+/// returns the verified root hash (for APK payload) and pubkeys (for APEX payloads) that can be
+/// saved to the instance disk.
+pub fn verify_payload(
+    metadata: &Metadata,
+    saved_data: Option<&MicrodroidData>,
+) -> Result<MicrodroidData> {
+    let start_time = SystemTime::now();
+
+    // Verify main APK
+    let root_hash_from_idsig = get_apk_root_hash_from_idsig(MAIN_APK_IDSIG_PATH)?;
+    let root_hash_trustful =
+        saved_data.map(|d| d.apk_data.root_hash_eq(root_hash_from_idsig.as_ref())).unwrap_or(false);
+
+    // If root_hash can be trusted, pass it to apkdmverity so that it uses the passed root_hash
+    // instead of the value read from the idsig file.
+    let main_apk_argument = {
+        ApkDmverityArgument {
+            apk: MAIN_APK_PATH,
+            idsig: MAIN_APK_IDSIG_PATH,
+            name: MAIN_APK_DEVICE_NAME,
+            saved_root_hash: if root_hash_trustful {
+                Some(root_hash_from_idsig.as_ref())
+            } else {
+                None
+            },
+        }
+    };
+    let mut apkdmverity_arguments = vec![main_apk_argument];
+
+    // Verify extra APKs
+    // For now, we can't read the payload config, so glob APKs and idsigs.
+    // Later, we'll see if it matches with the payload config.
+
+    // sort globbed paths to match apks (extra-apk-{idx}) and idsigs (extra-idsig-{idx})
+    // e.g. "extra-apk-0" corresponds to "extra-idsig-0"
+    let extra_apks =
+        sorted(glob(EXTRA_APK_PATH_PATTERN)?.collect::<Result<Vec<_>, _>>()?).collect::<Vec<_>>();
+    let extra_idsigs =
+        sorted(glob(EXTRA_IDSIG_PATH_PATTERN)?.collect::<Result<Vec<_>, _>>()?).collect::<Vec<_>>();
+    ensure!(
+        extra_apks.len() == extra_idsigs.len(),
+        "Extra apks/idsigs mismatch: {} apks but {} idsigs",
+        extra_apks.len(),
+        extra_idsigs.len()
+    );
+
+    let extra_root_hashes_from_idsig: Vec<_> = extra_idsigs
+        .iter()
+        .map(|idsig| {
+            get_apk_root_hash_from_idsig(idsig).expect("Can't find root hash from extra idsig")
+        })
+        .collect();
+
+    let extra_root_hashes_trustful: Vec<_> = if let Some(data) = saved_data {
+        extra_root_hashes_from_idsig
+            .iter()
+            .enumerate()
+            .map(|(i, root_hash)| data.extra_apk_root_hash_eq(i, root_hash))
+            .collect()
+    } else {
+        vec![false; extra_root_hashes_from_idsig.len()]
+    };
+    let extra_apk_names: Vec<_> =
+        (0..extra_apks.len()).map(|i| format!("extra-apk-{}", i)).collect();
+
+    for (i, extra_apk) in extra_apks.iter().enumerate() {
+        apkdmverity_arguments.push({
+            ApkDmverityArgument {
+                apk: extra_apk.to_str().unwrap(),
+                idsig: extra_idsigs[i].to_str().unwrap(),
+                name: &extra_apk_names[i],
+                saved_root_hash: if extra_root_hashes_trustful[i] {
+                    Some(&extra_root_hashes_from_idsig[i])
+                } else {
+                    None
+                },
+            }
+        });
+    }
+
+    // Start apkdmverity and wait for the dm-verify block
+    let mut apkdmverity_child = run_apkdmverity(&apkdmverity_arguments)?;
+
+    // While waiting for apkdmverity to mount APK, gathers public keys and root digests from
+    // APEX payload.
+    let apex_data_from_payload = get_apex_data_from_payload(metadata)?;
+
+    // Writing /apex/vm-payload-metadata is to verify that the payload isn't changed.
+    // Skip writing it if the debug policy ignoring identity is on
+    if is_verified_boot() {
+        write_apex_payload_data(saved_data, &apex_data_from_payload)?;
+    }
+
+    if cfg!(not(dice_changes)) {
+        // Start apexd to activate APEXes
+        system_properties::write("ctl.start", "apexd-vm")?;
+    }
+
+    // TODO(inseob): add timeout
+    apkdmverity_child.wait()?;
+
+    // Do the full verification if the root_hash is un-trustful. This requires the full scanning of
+    // the APK file and therefore can be very slow if the APK is large. Note that this step is
+    // taken only when the root_hash is un-trustful which can be either when this is the first boot
+    // of the VM or APK was updated in the host.
+    // TODO(jooyung): consider multithreading to make this faster
+
+    let main_apk_data =
+        get_data_from_apk(DM_MOUNTED_APK_PATH, root_hash_from_idsig, root_hash_trustful)?;
+
+    let extra_apks_data = extra_root_hashes_from_idsig
+        .into_iter()
+        .enumerate()
+        .map(|(i, extra_root_hash)| {
+            let mount_path = format!("/dev/block/mapper/{}", &extra_apk_names[i]);
+            get_data_from_apk(&mount_path, extra_root_hash, extra_root_hashes_trustful[i])
+        })
+        .collect::<Result<Vec<_>>>()?;
+
+    info!("payload verification successful. took {:#?}", start_time.elapsed().unwrap());
+
+    // At this point, we can ensure that the root hashes from the idsig files are trusted, either
+    // because we have fully verified the APK signature (and apkdmverity checks all the data we
+    // verified is consistent with the root hash) or because we have the saved APK data which will
+    // be checked as identical to the data we have verified.
+
+    // Use the salt from a verified instance, or generate a salt for a new instance.
+    let salt = if let Some(saved_data) = saved_data {
+        saved_data.salt.clone()
+    } else if is_strict_boot() {
+        // No need to add more entropy as a previous stage must have used a new, random salt.
+        vec![0u8; 64]
+    } else {
+        let mut salt = vec![0u8; 64];
+        salt.as_mut_slice().try_fill(&mut rand::thread_rng())?;
+        salt
+    };
+
+    Ok(MicrodroidData {
+        salt,
+        apk_data: main_apk_data,
+        extra_apks_data,
+        apex_data: apex_data_from_payload,
+    })
+}
+
+fn get_data_from_apk(
+    apk_path: &str,
+    root_hash: Box<[u8]>,
+    root_hash_trustful: bool,
+) -> Result<ApkData> {
+    let cert_hash = get_cert_hash_from_apk(apk_path, root_hash_trustful)?.to_vec();
+    // Read package name etc from the APK manifest. In the unlikely event that they aren't present
+    // we use the default values. We simply put these values in the DICE node for the payload, and
+    // users of that can decide how to handle blank information - there's no reason for us
+    // to fail starting a VM even with such a weird APK.
+    let manifest_info = get_manifest_info(apk_path)
+        .map_err(|e| warn!("Failed to read manifest info from APK: {e:?}"))
+        .unwrap_or_default();
+
+    Ok(ApkData {
+        root_hash: root_hash.into(),
+        cert_hash,
+        package_name: manifest_info.package,
+        version_code: manifest_info.version_code,
+    })
+}
+
+fn write_apex_payload_data(
+    saved_data: Option<&MicrodroidData>,
+    apex_data_from_payload: &[ApexData],
+) -> Result<()> {
+    if let Some(saved_apex_data) = saved_data.map(|d| &d.apex_data) {
+        // We don't support APEX updates. (assuming that update will change root digest)
+        ensure!(
+            saved_apex_data == apex_data_from_payload,
+            MicrodroidError::PayloadChanged(String::from("APEXes have changed."))
+        );
+        let apex_metadata = to_metadata(apex_data_from_payload);
+        // Pass metadata(with public keys and root digests) to apexd so that it uses the passed
+        // metadata instead of the default one (/dev/block/by-name/payload-metadata)
+        OpenOptions::new()
+            .create_new(true)
+            .write(true)
+            .open("/apex/vm-payload-metadata")
+            .context("Failed to open /apex/vm-payload-metadata")
+            .and_then(|f| write_metadata(&apex_metadata, f))?;
+    }
+    Ok(())
+}
+
+fn get_apk_root_hash_from_idsig<P: AsRef<Path>>(idsig_path: P) -> Result<Box<[u8]>> {
+    Ok(V4Signature::from_idsig_path(idsig_path)?.hashing_info.raw_root_hash)
+}
+
+fn get_cert_hash_from_apk(apk: &str, root_hash_trustful: bool) -> Result<[u8; 64]> {
+    let current_sdk = get_current_sdk()?;
+
+    let signed_data = if !root_hash_trustful {
+        verify(apk, current_sdk).context(MicrodroidError::PayloadVerificationFailed(format!(
+            "failed to verify {}",
+            apk
+        )))
+    } else {
+        extract_signed_data(apk, current_sdk)
+    }?;
+    Ok(sha512(signed_data.first_certificate_der()?))
+}
+
+fn get_current_sdk() -> Result<u32> {
+    let current_sdk = system_properties::read("ro.build.version.sdk")?;
+    let current_sdk = current_sdk.ok_or_else(|| anyhow!("SDK version missing"))?;
+    current_sdk.parse().context("Malformed SDK version")
+}
+
+struct ApkDmverityArgument<'a> {
+    apk: &'a str,
+    idsig: &'a str,
+    name: &'a str,
+    saved_root_hash: Option<&'a [u8]>,
+}
+
+fn run_apkdmverity(args: &[ApkDmverityArgument]) -> Result<Child> {
+    let mut cmd = Command::new(APKDMVERITY_BIN);
+
+    for argument in args {
+        cmd.arg("--apk").arg(argument.apk).arg(argument.idsig).arg(argument.name);
+        if let Some(root_hash) = argument.saved_root_hash {
+            cmd.arg(&hex::encode(root_hash));
+        } else {
+            cmd.arg("none");
+        }
+    }
+
+    cmd.spawn().context("Spawn apkdmverity")
+}
diff --git a/microdroid_manager/src/vm_config.cddl b/microdroid_manager/src/vm_config.cddl
new file mode 100644
index 0000000..8508e8f
--- /dev/null
+++ b/microdroid_manager/src/vm_config.cddl
@@ -0,0 +1,56 @@
+; Configuration Descriptor used in the DICE node that describes the payload of a Microdroid virtual
+; machine.
+;
+; See the Open DICE specification
+; https://pigweed.googlesource.com/open-dice/+/HEAD/docs/specification.md,
+; and the Android Profile for DICE
+; https://pigweed.googlesource.com/open-dice/+/HEAD/docs/android.md.
+;
+; CDDL for the normal Configuration Descriptor can be found at
+; https://cs.android.com/android/platform/superproject/main/+/main:hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/generateCertificateRequestV2.cddl
+
+; The configuration descriptor node for a Microdroid VM, with extensions to describe the contents
+; of the VM payload.
+; The subcomponents describe the APKs and then the APEXes that are part of the VM. The main APK
+; is first, followed by any extra APKs in the order they are specified in the VM config.
+; The APEXes are listed in the order specified when the VM is created, which is normally alphabetic
+; order by name.
+VmConfigDescriptor = {
+    -70002 : "Microdroid payload",      ; Component name
+    (? -71000: tstr //                  ; Path to the payload config file
+    ? -71001: PayloadConfig),
+    ? -71002: [+ SubcomponentDescriptor],
+}
+
+PayloadConfig = {
+    1: tstr                             ; Path to the binary file where payload execution starts
+}
+
+; Describes a unit of code (e.g. an APK or an APEX) present inside the VM.
+;
+; For an APK, the fields are as follows:
+; - Component name: The string "apk:" followed by the package name.
+; - Security version: The long version code from the APK manifest
+;   (https://developer.android.com/reference/android/content/pm/PackageInfo#getLongVersionCode()).
+; - Code hash: This is the root hash of a Merkle tree computed over all bytes of the APK, as used
+;   in the APK Signature Scheme v4 (https://source.android.com/docs/security/features/apksigning/v4)
+;   with empty salt and using SHA-256 as the hash algorithm.
+; - Authority hash: The SHA-512 hash of the DER representation of the X.509 certificate for the
+;   public key used to sign the APK.
+;
+; For an APEX, they are as follows:
+; - Component name: The string "apex:" followed by the APEX name as specified in the APEX Manifest
+;   (see https://source.android.com/docs/core/ota/apex).
+; - Security version: The version number from the APEX Manifest.
+; - Code hash: The root hash of the apex_payload.img file within the APEX, taken from the first
+;   hashtree descriptor in the VBMeta image
+;   (see https://android.googlesource.com/platform/external/avb/+/master/README.md).
+; - Authority hash: The SHA-512 hash of the public key used to sign the file system image in the
+;   APEX (as stored in the apex_pubkey file). The format is as described for AvbRSAPublicKeyHeader
+;   in https://cs.android.com/android/platform/superproject/main/+/main:external/avb/libavb/avb_crypto.h.
+SubcomponentDescriptor = {
+  1: tstr,                              ; Component name
+  2: uint,                              ; Security version
+  3: bstr,                              ; Code hash
+  4: bstr,                              ; Authority hash
+}
diff --git a/microdroid_manager/src/vm_payload_service.rs b/microdroid_manager/src/vm_payload_service.rs
index 96f51f0..20a1b89 100644
--- a/microdroid_manager/src/vm_payload_service.rs
+++ b/microdroid_manager/src/vm_payload_service.rs
@@ -14,21 +14,25 @@
 
 //! Implementation of the AIDL interface `IVmPayloadService`.
 
-use crate::dice::derive_sealing_key;
 use android_system_virtualization_payload::aidl::android::system::virtualization::payload::IVmPayloadService::{
-    BnVmPayloadService, IVmPayloadService, VM_PAYLOAD_SERVICE_SOCKET_NAME};
+    BnVmPayloadService, IVmPayloadService, VM_PAYLOAD_SERVICE_SOCKET_NAME, AttestationResult::AttestationResult,
+    STATUS_FAILED_TO_PREPARE_CSR_AND_KEY
+};
 use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::IVirtualMachineService;
-use anyhow::Result;
-use binder::{Interface, BinderFeatures, ExceptionCode, Status, Strong};
-use diced_open_dice::{DiceArtifacts, OwnedDiceArtifacts};
-use log::{error, info};
+use anyhow::{anyhow, Context, Result};
+use avflog::LogResult;
+use binder::{Interface, BinderFeatures, ExceptionCode, Strong, IntoBinderResult, Status};
+use client_vm_csr::{generate_attestation_key_and_csr, ClientVmAttestationData};
+use log::info;
 use rpcbinder::RpcServer;
+use crate::vm_secret::VmSecret;
+use std::os::unix::io::OwnedFd;
 
 /// Implementation of `IVmPayloadService`.
 struct VmPayloadService {
     allow_restricted_apis: bool,
     virtual_machine_service: Strong<dyn IVirtualMachineService>,
-    dice: OwnedDiceArtifacts,
+    secret: VmSecret,
 }
 
 impl IVmPayloadService for VmPayloadService {
@@ -38,34 +42,57 @@
 
     fn getVmInstanceSecret(&self, identifier: &[u8], size: i32) -> binder::Result<Vec<u8>> {
         if !(0..=32).contains(&size) {
-            return Err(Status::new_exception(ExceptionCode::ILLEGAL_ARGUMENT, None));
+            return Err(anyhow!("size {size} not in range (0..=32)"))
+                .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
         }
-        // Use a fixed salt to scope the derivation to this API. It was randomly generated.
-        let salt = [
-            0x8B, 0x0F, 0xF0, 0xD3, 0xB1, 0x69, 0x2B, 0x95, 0x84, 0x2C, 0x9E, 0x3C, 0x99, 0x56,
-            0x7A, 0x22, 0x55, 0xF8, 0x08, 0x23, 0x81, 0x5F, 0xF5, 0x16, 0x20, 0x3E, 0xBE, 0xBA,
-            0xB7, 0xA8, 0x43, 0x92,
-        ];
-        let mut secret = vec![0; size.try_into().unwrap()];
-        derive_sealing_key(&self.dice, &salt, identifier, &mut secret).map_err(|e| {
-            error!("Failed to derive VM instance secret: {:?}", e);
-            Status::new_service_specific_error(-1, None)
-        })?;
-        Ok(secret)
+        let mut instance_secret = vec![0; size.try_into().unwrap()];
+        self.secret
+            .derive_payload_sealing_key(identifier, &mut instance_secret)
+            .context("Failed to derive VM instance secret")
+            .with_log()
+            .or_service_specific_exception(-1)?;
+        Ok(instance_secret)
     }
 
     fn getDiceAttestationChain(&self) -> binder::Result<Vec<u8>> {
         self.check_restricted_apis_allowed()?;
-        if let Some(bcc) = self.dice.bcc() {
+        if let Some(bcc) = self.secret.dice_artifacts().bcc() {
             Ok(bcc.to_vec())
         } else {
-            Err(Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some("bcc is none")))
+            Err(anyhow!("bcc is none")).or_binder_exception(ExceptionCode::ILLEGAL_STATE)
         }
     }
 
     fn getDiceAttestationCdi(&self) -> binder::Result<Vec<u8>> {
         self.check_restricted_apis_allowed()?;
-        Ok(self.dice.cdi_attest().to_vec())
+        Ok(self.secret.dice_artifacts().cdi_attest().to_vec())
+    }
+
+    fn requestAttestation(&self, challenge: &[u8]) -> binder::Result<AttestationResult> {
+        self.check_restricted_apis_allowed()?;
+        let ClientVmAttestationData { private_key, csr } =
+            generate_attestation_key_and_csr(challenge, self.secret.dice_artifacts())
+                .map_err(|e| {
+                    Status::new_service_specific_error_str(
+                        STATUS_FAILED_TO_PREPARE_CSR_AND_KEY,
+                        Some(format!("Failed to prepare the CSR and key pair: {e:?}")),
+                    )
+                })
+                .with_log()?;
+        let csr = csr
+            .into_cbor_vec()
+            .map_err(|e| {
+                Status::new_service_specific_error_str(
+                    STATUS_FAILED_TO_PREPARE_CSR_AND_KEY,
+                    Some(format!("Failed to serialize CSR into CBOR: {e:?}")),
+                )
+            })
+            .with_log()?;
+        let cert_chain = self.virtual_machine_service.requestAttestation(&csr)?;
+        Ok(AttestationResult {
+            privateKey: private_key.as_slice().to_vec(),
+            certificateChain: cert_chain,
+        })
     }
 }
 
@@ -76,17 +103,18 @@
     fn new(
         allow_restricted_apis: bool,
         vm_service: Strong<dyn IVirtualMachineService>,
-        dice: OwnedDiceArtifacts,
-    ) -> Self {
-        Self { allow_restricted_apis, virtual_machine_service: vm_service, dice }
+        secret: VmSecret,
+    ) -> VmPayloadService {
+        Self { allow_restricted_apis, virtual_machine_service: vm_service, secret }
     }
 
     fn check_restricted_apis_allowed(&self) -> binder::Result<()> {
         if self.allow_restricted_apis {
             Ok(())
         } else {
-            error!("Use of restricted APIs is not allowed");
-            Err(Status::new_exception_str(ExceptionCode::SECURITY, Some("Use of restricted APIs")))
+            Err(anyhow!("Use of restricted APIs is not allowed"))
+                .with_log()
+                .or_binder_exception(ExceptionCode::SECURITY)
         }
     }
 }
@@ -95,17 +123,15 @@
 pub(crate) fn register_vm_payload_service(
     allow_restricted_apis: bool,
     vm_service: Strong<dyn IVirtualMachineService>,
-    dice: OwnedDiceArtifacts,
+    secret: VmSecret,
+    vm_payload_service_fd: OwnedFd,
 ) -> Result<()> {
     let vm_payload_binder = BnVmPayloadService::new_binder(
-        VmPayloadService::new(allow_restricted_apis, vm_service, dice),
+        VmPayloadService::new(allow_restricted_apis, vm_service, secret),
         BinderFeatures::default(),
     );
 
-    let server = RpcServer::new_init_unix_domain(
-        vm_payload_binder.as_binder(),
-        VM_PAYLOAD_SERVICE_SOCKET_NAME,
-    )?;
+    let server = RpcServer::new_bound_socket(vm_payload_binder.as_binder(), vm_payload_service_fd)?;
     info!("The RPC server '{}' is running.", VM_PAYLOAD_SERVICE_SOCKET_NAME);
 
     // Move server reference into a background thread and run it forever.
diff --git a/microdroid_manager/src/vm_secret.rs b/microdroid_manager/src/vm_secret.rs
new file mode 100644
index 0000000..0e1ec71
--- /dev/null
+++ b/microdroid_manager/src/vm_secret.rs
@@ -0,0 +1,292 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Class for encapsulating & managing represent VM secrets.
+
+use anyhow::{anyhow, ensure, Result};
+use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::IVirtualMachineService;
+use android_hardware_security_secretkeeper::aidl::android::hardware::security::secretkeeper::ISecretkeeper::ISecretkeeper;
+use secretkeeper_comm::data_types::request::Request;
+use binder::{Strong};
+use coset::CborSerializable;
+use dice_policy_builder::{CertIndex, ConstraintSpec, ConstraintType, policy_for_dice_chain, MissingAction, WILDCARD_FULL_ARRAY};
+use diced_open_dice::{DiceArtifacts, OwnedDiceArtifacts};
+use keystore2_crypto::ZVec;
+use openssl::hkdf::hkdf;
+use openssl::md::Md;
+use openssl::sha;
+use secretkeeper_client::dice::OwnedDiceArtifactsWithExplicitKey;
+use secretkeeper_client::SkSession;
+use secretkeeper_comm::data_types::{Id, ID_SIZE, Secret, SECRET_SIZE};
+use secretkeeper_comm::data_types::response::Response;
+use secretkeeper_comm::data_types::packet::{ResponsePacket, ResponseType};
+use secretkeeper_comm::data_types::request_response_impl::{
+    StoreSecretRequest, GetSecretResponse, GetSecretRequest};
+use secretkeeper_comm::data_types::error::SecretkeeperError;
+use zeroize::Zeroizing;
+
+const ENCRYPTEDSTORE_KEY_IDENTIFIER: &str = "encryptedstore_key";
+const AUTHORITY_HASH: i64 = -4670549;
+const MODE: i64 = -4670551;
+const CONFIG_DESC: i64 = -4670548;
+const SECURITY_VERSION: i64 = -70005;
+const SUBCOMPONENT_DESCRIPTORS: i64 = -71002;
+const SUBCOMPONENT_SECURITY_VERSION: i64 = 2;
+const SUBCOMPONENT_AUTHORITY_HASH: i64 = 4;
+// Index of DiceChainEntry corresponding to Payload (relative to the end considering DICE Chain
+// as an array)
+const PAYLOAD_INDEX_FROM_END: usize = 0;
+
+// Generated using hexdump -vn32 -e'14/1 "0x%02X, " 1 "\n"' /dev/urandom
+const SALT_ENCRYPTED_STORE: &[u8] = &[
+    0xFC, 0x1D, 0x35, 0x7B, 0x96, 0xF3, 0xEF, 0x17, 0x78, 0x7D, 0x70, 0xED, 0xEA, 0xFE, 0x1D, 0x6F,
+    0xB3, 0xF9, 0x40, 0xCE, 0xDD, 0x99, 0x40, 0xAA, 0xA7, 0x0E, 0x92, 0x73, 0x90, 0x86, 0x4A, 0x75,
+];
+const SALT_PAYLOAD_SERVICE: &[u8] = &[
+    0x8B, 0x0F, 0xF0, 0xD3, 0xB1, 0x69, 0x2B, 0x95, 0x84, 0x2C, 0x9E, 0x3C, 0x99, 0x56, 0x7A, 0x22,
+    0x55, 0xF8, 0x08, 0x23, 0x81, 0x5F, 0xF5, 0x16, 0x20, 0x3E, 0xBE, 0xBA, 0xB7, 0xA8, 0x43, 0x92,
+];
+
+const SKP_SECRET_NP_VM: [u8; SECRET_SIZE] = [
+    0xA9, 0x89, 0x97, 0xFE, 0xAE, 0x97, 0x55, 0x4B, 0x32, 0x35, 0xF0, 0xE8, 0x93, 0xDA, 0xEA, 0x24,
+    0x06, 0xAC, 0x36, 0x8B, 0x3C, 0x95, 0x50, 0x16, 0x67, 0x71, 0x65, 0x26, 0xEB, 0xD0, 0xC3, 0x98,
+];
+
+pub enum VmSecret {
+    // V2 secrets are derived from 2 independently secured secrets:
+    //      1. Secretkeeper protected secrets (skp secret).
+    //      2. Dice Sealing CDIs (Similar to V1).
+    //
+    // These are protected against rollback of boot images i.e. VM instance rebooted
+    // with downgraded images will not have access to VM's secret.
+    // V2 secrets require hardware support - Secretkeeper HAL, which (among other things)
+    // is backed by tamper-evident storage, providing rollback protection to these secrets.
+    V2 { dice_artifacts: OwnedDiceArtifactsWithExplicitKey, skp_secret: ZVec },
+    // V1 secrets are not protected against rollback of boot images.
+    // They are reliable only if rollback of images was prevented by verified boot ie,
+    // each stage (including pvmfw/Microdroid/Microdroid Manager) prevents downgrade of next
+    // stage. These are now legacy secrets & used only when Secretkeeper HAL is not supported
+    // by device.
+    V1 { dice_artifacts: OwnedDiceArtifacts },
+}
+
+impl VmSecret {
+    pub fn new(
+        id: [u8; ID_SIZE],
+        dice_artifacts: OwnedDiceArtifacts,
+        vm_service: &Strong<dyn IVirtualMachineService>,
+    ) -> Result<Self> {
+        ensure!(dice_artifacts.bcc().is_some(), "Dice chain missing");
+
+        let Some(sk_service) = is_sk_supported(vm_service)? else {
+            // Use V1 secrets if Secretkeeper is not supported.
+            return Ok(Self::V1 { dice_artifacts });
+        };
+        let explicit_dice =
+            OwnedDiceArtifactsWithExplicitKey::from_owned_artifacts(dice_artifacts)?;
+        let explicit_dice_chain = explicit_dice
+            .explicit_key_dice_chain()
+            .ok_or(anyhow!("Missing explicit dice chain, this is unusual"))?;
+        let policy = sealing_policy(explicit_dice_chain).map_err(anyhow_err)?;
+
+        // Start a new session with Secretkeeper!
+        let mut session = SkSession::new(sk_service, &explicit_dice)?;
+        let mut skp_secret = Zeroizing::new([0u8; SECRET_SIZE]);
+        if super::is_strict_boot() {
+            if super::is_new_instance() {
+                *skp_secret = rand::random();
+                store_secret(&mut session, id, skp_secret.clone(), policy)?;
+            } else {
+                // Subsequent run of the pVM -> get the secret stored in Secretkeeper.
+                *skp_secret = get_secret(&mut session, id, Some(policy))?;
+            }
+        } else {
+            // TODO(b/291213394): Non protected VM don't need to use Secretkeeper, remove this
+            // once we have sufficient testing on protected VM.
+            store_secret(&mut session, id, SKP_SECRET_NP_VM.into(), policy)?;
+            *skp_secret = get_secret(&mut session, id, None)?;
+        }
+        Ok(Self::V2 {
+            dice_artifacts: explicit_dice,
+            skp_secret: ZVec::try_from(skp_secret.to_vec())?,
+        })
+    }
+
+    pub fn dice_artifacts(&self) -> &dyn DiceArtifacts {
+        match self {
+            Self::V2 { dice_artifacts, .. } => dice_artifacts,
+            Self::V1 { dice_artifacts } => dice_artifacts,
+        }
+    }
+
+    fn get_vm_secret(&self, salt: &[u8], identifier: &[u8], key: &mut [u8]) -> Result<()> {
+        match self {
+            Self::V2 { dice_artifacts, skp_secret } => {
+                let mut hasher = sha::Sha256::new();
+                hasher.update(dice_artifacts.cdi_seal());
+                hasher.update(skp_secret);
+                hkdf(key, Md::sha256(), &hasher.finish(), salt, identifier)?
+            }
+            Self::V1 { dice_artifacts } => {
+                hkdf(key, Md::sha256(), dice_artifacts.cdi_seal(), salt, identifier)?
+            }
+        }
+        Ok(())
+    }
+
+    /// Derive sealing key for payload with following identifier.
+    pub fn derive_payload_sealing_key(&self, identifier: &[u8], key: &mut [u8]) -> Result<()> {
+        self.get_vm_secret(SALT_PAYLOAD_SERVICE, identifier, key)
+    }
+
+    /// Derive encryptedstore key. This uses hardcoded random salt & fixed identifier.
+    pub fn derive_encryptedstore_key(&self, key: &mut [u8]) -> Result<()> {
+        self.get_vm_secret(SALT_ENCRYPTED_STORE, ENCRYPTEDSTORE_KEY_IDENTIFIER.as_bytes(), key)
+    }
+}
+
+// Construct a sealing policy on the dice chain. VMs uses the following set of constraint for
+// protecting secrets against rollback of boot images.
+// 1. ExactMatch on AUTHORITY_HASH (Required ie, each DiceChainEntry must have it).
+// 2. ExactMatch on MODE (Required) - Secret should be inaccessible if any of the runtime
+//    configuration changes. For ex, the secrets stored with a boot stage being in Normal mode
+//    should be inaccessible when the same stage is booted in Debug mode.
+// 3. GreaterOrEqual on SECURITY_VERSION (Optional): The secrets will be accessible if version of
+//    any image is greater or equal to the set version. This is an optional field, certain
+//    components may chose to prevent booting of rollback images for ex, ABL is expected to provide
+//    rollback protection of pvmfw. Such components may chose to not put SECURITY_VERSION in the
+//    corresponding DiceChainEntry.
+//  4. For each Subcomponent on the last DiceChainEntry (which corresponds to VM payload, See
+//     microdroid_manager/src/vm_config.cddl):
+//       - GreaterOrEqual on SECURITY_VERSION (Required)
+//       - ExactMatch on AUTHORITY_HASH (Required).
+fn sealing_policy(dice: &[u8]) -> Result<Vec<u8>, String> {
+    let constraint_spec = [
+        ConstraintSpec::new(
+            ConstraintType::ExactMatch,
+            vec![AUTHORITY_HASH],
+            MissingAction::Fail,
+            CertIndex::All,
+        ),
+        ConstraintSpec::new(
+            ConstraintType::ExactMatch,
+            vec![MODE],
+            MissingAction::Fail,
+            CertIndex::All,
+        ),
+        ConstraintSpec::new(
+            ConstraintType::GreaterOrEqual,
+            vec![CONFIG_DESC, SECURITY_VERSION],
+            MissingAction::Ignore,
+            CertIndex::All,
+        ),
+        ConstraintSpec::new(
+            ConstraintType::GreaterOrEqual,
+            vec![
+                CONFIG_DESC,
+                SUBCOMPONENT_DESCRIPTORS,
+                WILDCARD_FULL_ARRAY,
+                SUBCOMPONENT_SECURITY_VERSION,
+            ],
+            MissingAction::Fail,
+            CertIndex::FromEnd(PAYLOAD_INDEX_FROM_END),
+        ),
+        ConstraintSpec::new(
+            ConstraintType::ExactMatch,
+            vec![
+                CONFIG_DESC,
+                SUBCOMPONENT_DESCRIPTORS,
+                WILDCARD_FULL_ARRAY,
+                SUBCOMPONENT_AUTHORITY_HASH,
+            ],
+            MissingAction::Fail,
+            CertIndex::FromEnd(PAYLOAD_INDEX_FROM_END),
+        ),
+    ];
+
+    policy_for_dice_chain(dice, &constraint_spec)?
+        .to_vec()
+        .map_err(|e| format!("DicePolicy construction failed {e:?}"))
+}
+
+fn store_secret(
+    session: &mut SkSession,
+    id: [u8; ID_SIZE],
+    secret: Zeroizing<[u8; SECRET_SIZE]>,
+    sealing_policy: Vec<u8>,
+) -> Result<()> {
+    let store_request = StoreSecretRequest { id: Id(id), secret: Secret(*secret), sealing_policy };
+    log::info!("Secretkeeper operation: {:?}", store_request);
+
+    let store_request = store_request.serialize_to_packet().to_vec().map_err(anyhow_err)?;
+    let store_response = session.secret_management_request(&store_request)?;
+    let store_response = ResponsePacket::from_slice(&store_response).map_err(anyhow_err)?;
+    let response_type = store_response.response_type().map_err(anyhow_err)?;
+    ensure!(
+        response_type == ResponseType::Success,
+        "Secretkeeper store failed with error: {:?}",
+        *SecretkeeperError::deserialize_from_packet(store_response).map_err(anyhow_err)?
+    );
+    Ok(())
+}
+
+fn get_secret(
+    session: &mut SkSession,
+    id: [u8; ID_SIZE],
+    updated_sealing_policy: Option<Vec<u8>>,
+) -> Result<[u8; SECRET_SIZE]> {
+    let get_request = GetSecretRequest { id: Id(id), updated_sealing_policy };
+    log::info!("Secretkeeper operation: {:?}", get_request);
+    let get_request = get_request.serialize_to_packet().to_vec().map_err(anyhow_err)?;
+    let get_response = session.secret_management_request(&get_request)?;
+    let get_response = ResponsePacket::from_slice(&get_response).map_err(anyhow_err)?;
+    let response_type = get_response.response_type().map_err(anyhow_err)?;
+    ensure!(
+        response_type == ResponseType::Success,
+        "Secretkeeper get failed with error: {:?}",
+        *SecretkeeperError::deserialize_from_packet(get_response).map_err(anyhow_err)?
+    );
+    let get_response =
+        *GetSecretResponse::deserialize_from_packet(get_response).map_err(anyhow_err)?;
+    Ok(get_response.secret.0)
+}
+
+#[inline]
+fn anyhow_err<E: core::fmt::Debug>(err: E) -> anyhow::Error {
+    anyhow!("{:?}", err)
+}
+
+// Get the secretkeeper connection if supported. Host can be consulted whether the device supports
+// secretkeeper but that should be used with caution for protected VM.
+fn is_sk_supported(
+    host: &Strong<dyn IVirtualMachineService>,
+) -> Result<Option<Strong<dyn ISecretkeeper>>> {
+    let sk = if cfg!(llpvm_changes) {
+        if super::is_strict_boot() {
+            // TODO: For protected VM check for Secretkeeper authentication data in device tree.
+            None
+        } else {
+            // For non-protected VM, believe what host claims.
+            host.getSecretkeeper()
+                // TODO rename this error!
+                .map_err(|e| {
+                    super::MicrodroidError::FailedToConnectToVirtualizationService(e.to_string())
+                })?
+        }
+    } else {
+        // LLPVM flag is disabled
+        None
+    };
+    Ok(sk)
+}
diff --git a/pvmfw/Android.bp b/pvmfw/Android.bp
index c79605f..ee77f14 100644
--- a/pvmfw/Android.bp
+++ b/pvmfw/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -7,28 +8,27 @@
     crate_name: "pvmfw",
     defaults: ["vmbase_ffi_defaults"],
     srcs: ["src/main.rs"],
-    edition: "2021",
-    // Require unsafe blocks for inside unsafe functions.
-    flags: ["-Dunsafe_op_in_unsafe_fn"],
     features: [
         "legacy",
     ],
     rustlibs: [
         "libaarch64_paging",
-        "libbssl_ffi_nostd",
-        "libbuddy_system_allocator",
+        "libbssl_avf_nostd",
+        "libbssl_sys_nostd",
         "libciborium_nostd",
         "libciborium_io_nostd",
+        "libcstr",
         "libdiced_open_dice_nostd",
         "libfdtpci",
         "libhyp",
         "liblibfdt",
         "liblog_rust_nostd",
         "libonce_cell_nostd",
-        "libpsci",
         "libpvmfw_avb_nostd",
         "libpvmfw_embedded_key",
         "libpvmfw_fdt_template",
+        "libservice_vm_version",
+        "libsmccc",
         "libstatic_assertions",
         "libtinyvec_nostd",
         "libuuid_nostd",
@@ -36,7 +36,6 @@
         "libvmbase",
         "libzerocopy_nostd",
         "libzeroize_nostd",
-        "libspin_nostd",
     ],
 }
 
@@ -47,20 +46,157 @@
     cmd: "touch $(out)",
 }
 
+rust_defaults {
+    name: "libpvmfw.test.defaults",
+    defaults: ["avf_build_flags_rust"],
+    test_suites: ["general-tests"],
+    test_options: {
+        unit_test: true,
+    },
+    prefer_rlib: true,
+    rustlibs: [
+        "libcstr",
+    ],
+}
+
 rust_test {
     name: "libpvmfw.bootargs.test",
     host_supported: true,
     // For now, only bootargs.rs is written to be conditionally compiled with std.
     srcs: ["src/bootargs.rs"],
-    test_suites: ["general-tests"],
-    test_options: {
-        unit_test: true,
-    },
+    defaults: ["libpvmfw.test.defaults"],
     rustlibs: [
         "libzeroize",
     ],
 }
 
+rust_test {
+    name: "libpvmfw.device_assignment.test",
+    srcs: ["src/device_assignment.rs"],
+    defaults: ["libpvmfw.test.defaults"],
+    rustlibs: [
+        "libhyp",
+        "liblibfdt",
+        "liblog_rust",
+        "libpvmfw_fdt_template",
+    ],
+    data: [
+        ":test_pvmfw_devices_vm_dtbo",
+        ":test_pvmfw_devices_vm_dtbo_without_symbols",
+        ":test_pvmfw_devices_vm_dtbo_with_duplicated_iommus",
+        ":test_pvmfw_devices_with_rng",
+        ":test_pvmfw_devices_with_multiple_devices_iommus",
+        ":test_pvmfw_devices_with_iommu_sharing",
+        ":test_pvmfw_devices_with_iommu_id_conflict",
+        ":test_pvmfw_devices_without_device",
+        ":test_pvmfw_devices_without_iommus",
+        ":test_pvmfw_devices_with_duplicated_pviommus",
+        ":test_pvmfw_devices_with_multiple_reg_iommus",
+    ],
+    // To use libpvmfw_fdt_template for testing
+    enabled: false,
+    target: {
+        android_arm64: {
+            enabled: true,
+        },
+    },
+}
+
+rust_test {
+    name: "libpvmfw.dice.test",
+    srcs: ["src/dice.rs"],
+    defaults: ["libpvmfw.test.defaults"],
+    rustlibs: [
+        "libcbor_util",
+        "libciborium",
+        "libdiced_open_dice_nostd",
+        "libpvmfw_avb_nostd",
+    ],
+}
+
+genrule {
+    name: "test_pvmfw_devices_vm_dtbo",
+    defaults: ["dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_vm_dtbo.dts"],
+    out: ["test_pvmfw_devices_vm_dtbo.dtbo"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_vm_dtbo_without_symbols",
+    defaults: ["dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_vm_dtbo_without_symbols.dts"],
+    out: ["test_pvmfw_devices_vm_dtbo_without_symbols.dtbo"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_vm_dtbo_with_duplicated_iommus",
+    defaults: ["dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dts"],
+    out: ["test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dtbo"],
+}
+
+genrule_defaults {
+    name: "test_device_assignment_dts_to_dtb",
+    defaults: ["dts_to_dtb"],
+    srcs: ["testdata/test_crosvm_dt_base.dtsi"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_rng",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_rng.dts"],
+    out: ["test_pvmfw_devices_with_rng.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_without_iommus",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_without_iommus.dts"],
+    out: ["test_pvmfw_devices_without_iommus.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_without_device",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_without_device.dts"],
+    out: ["test_pvmfw_devices_without_device.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_multiple_devices_iommus",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_multiple_devices_iommus.dts"],
+    out: ["test_pvmfw_devices_with_multiple_devices_iommus.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_iommu_sharing",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_iommu_sharing.dts"],
+    out: ["test_pvmfw_devices_with_iommu_sharing.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_iommu_id_conflict",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_iommu_id_conflict.dts"],
+    out: ["test_pvmfw_devices_with_iommu_id_conflict.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_duplicated_pviommus",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_duplicated_pviommus.dts"],
+    out: ["test_pvmfw_devices_with_duplicated_pviommus.dtb"],
+}
+
+genrule {
+    name: "test_pvmfw_devices_with_multiple_reg_iommus",
+    defaults: ["test_device_assignment_dts_to_dtb"],
+    srcs: ["testdata/test_pvmfw_devices_with_multiple_reg_iommus.dts"],
+    out: ["test_pvmfw_devices_with_multiple_reg_iommus.dtb"],
+}
+
 cc_binary {
     name: "pvmfw",
     defaults: ["vmbase_elf_defaults"],
@@ -83,7 +219,6 @@
     // partition image. This is just to package the unstripped file into the
     // symbols zip file for debugging purpose.
     installable: true,
-    native_coverage: false,
 }
 
 raw_binary {
@@ -135,11 +270,9 @@
 
 rust_library_rlib {
     name: "libpvmfw_embedded_key",
-    defaults: ["vmbase_ffi_defaults"],
-    prefer_rlib: true,
+    defaults: ["vmbase_rlib_defaults"],
     srcs: [":pvmfw_embedded_key_rs"],
     crate_name: "pvmfw_embedded_key",
-    apex_available: ["com.android.virt"],
 }
 
 prebuilt_etc {
@@ -148,20 +281,39 @@
     installable: false,
 }
 
-// platform.dts is passed to clang for macro preprocessing, and then compiled to dtbo using dtc.
-// The raw content of the dtbo file is then written as a Rust byte array.
+// We need to rename *.dts into *.cpp as cc_object doesn't accept *.dts as an
+// input
 genrule {
-    name: "pvmfw_fdt_template_rs",
-    srcs: [
-        "platform.dts",
-        ":arm_dt_bindings_headers", // implicit dependency
+    name: "pvmfw_platform.dts.renamed",
+    srcs: ["platform.dts"],
+    out: ["out.cpp"],
+    cmd: "cp $(in) $(out)",
+    visibility: ["//visibility:private"],
+}
+
+// Then run the macro processor to replace symbols like GIC_SPI into actual
+// numbers defined in the ARM DT binding headers
+cc_object {
+    name: "pvmfw_platform.dts.preprocessed",
+    header_libs: ["arm_dt_bindings_headers"],
+    host_supported: true,
+    srcs: [":pvmfw_platform.dts.renamed"],
+    cflags: [
+        "-E",
+        "-P",
+        "-xassembler-with-cpp", // allow C preprocessor directives
     ],
+    visibility: ["//visibility:private"],
+}
+
+// Compile the preprocessed dts into binary and create a rust library source
+// having the binary.
+cc_genrule {
+    name: "pvmfw_fdt_template_rs",
+    srcs: [":pvmfw_platform.dts.preprocessed"],
     out: ["lib.rs"],
     tools: ["dtc"],
-    cmd: "prebuilts/clang/host/linux-x86/clang-r487747c/bin/clang " + // UGLY!!!
-        "-E -P -x assembler-with-cpp -I external/arm-trusted-firmware/include " +
-        "-o $(genDir)/preprocessed.dts $(location platform.dts) && " +
-        "$(location dtc) -I dts -O dtb -o $(genDir)/compiled.dtbo $(genDir)/preprocessed.dts && " +
+    cmd: "$(location dtc) -@ -I dts -O dtb -o $(genDir)/compiled.dtbo $(in) && " +
         "(" +
         "    echo '#![no_std]';" +
         "    echo '#![allow(missing_docs)]';" +
@@ -169,12 +321,12 @@
         "    xxd -i < $(genDir)/compiled.dtbo;" +
         "    echo '];';" +
         ") > $(out)",
+    visibility: ["//visibility:private"],
 }
 
 rust_library_rlib {
     name: "libpvmfw_fdt_template",
-    defaults: ["vmbase_ffi_defaults"],
-    prefer_rlib: true,
+    defaults: ["vmbase_rlib_defaults"],
     srcs: [":pvmfw_fdt_template_rs"],
     crate_name: "pvmfw_fdt_template",
 }
diff --git a/pvmfw/README.md b/pvmfw/README.md
index 4e93648..d7884fb 100644
--- a/pvmfw/README.md
+++ b/pvmfw/README.md
@@ -42,7 +42,7 @@
 
 [AVF]: https://source.android.com/docs/core/virtualization
 [why-avf]: https://source.android.com/docs/core/virtualization/whyavf
-[BCC]: https://pigweed.googlesource.com/open-dice/+/master/src/android/README.md
+[BCC]: https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/android.md
 [pKVM]: https://source.android.com/docs/core/virtualization/architecture#hypervisor
 [open-dice]: https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md
 
@@ -139,19 +139,35 @@
 |  offset = (SECOND - HEAD)     |
 |  size = (SECOND_END - SECOND) |
 +-------------------------------+
+|           [Entry 2]           | <-- Entry 2 is present since version 1.1
+|  offset = (THIRD - HEAD)      |
+|  size = (THIRD_END - THIRD)   |
++-------------------------------+
+|           [Entry 3]           | <-- Entry 3 is present since version 1.2
+|  offset = (FOURTH - HEAD)     |
+|  size = (FOURTH_END - FOURTH) |
++-------------------------------+
 |              ...              |
 +-------------------------------+
 |           [Entry n]           |
 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
 | (Padding to 8-byte alignment) |
 +===============================+ <-- FIRST
-|        {First blob: BCC}      |
+|       {First blob: BCC}       |
 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ <-- FIRST_END
 | (Padding to 8-byte alignment) |
 +===============================+ <-- SECOND
-|        {Second blob: DP}      |
+|       {Second blob: DP}       |
 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ <-- SECOND_END
 | (Padding to 8-byte alignment) |
++===============================+ <-- THIRD
+|     {Third blob: VM DTBO}     |
++~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ <-- THIRD_END
+| (Padding to 8-byte alignment) |
++===============================+ <-- FOURTH
+| {Fourth blob: VM reference DT}|
++~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ <-- FOURTH_END
+| (Padding to 8-byte alignment) |
 +===============================+
 |              ...              |
 +===============================+ <-- TAIL
@@ -174,10 +190,43 @@
 blos it refers to. In version 1.0, it describes two blobs:
 
 - entry 0 must point to a valid BCC Handover (see below)
-- entry 1 may point to a [DTBO] to be applied to the pVM device tree
+- entry 1 may point to a [DTBO] to be applied to the pVM device tree. See
+  [debug policy][debug_policy] for an example.
+
+In version 1.1, a third blob is added.
+
+- entry 2 may point to a [DTBO] that describes VM DTBO for device assignment.
+  pvmfw will provision assigned devices with the VM DTBO.
+
+In version 1.2, a fourth blob is added.
+
+- entry 3 if present contains the VM reference DT. This defines properties that
+  may be included in the device tree passed to a protected VM. pvmfw validates
+  that if any of these properties is included in the VM's device tree, the
+  property value exactly matches what is in the VM reference DT.
+
+  The bootloader should ensure that the same properties, with the same values,
+  are added under the "/avf/reference" node in the host Android device tree.
+
+  This provides a mechanism to allow configuration information to be securely
+  passed to the VM via the host. pvmfw does not interpret the content of VM
+  reference DT, nor does it apply it to the VM's device tree, it just ensures
+  that if matching properties are present in the VM device tree they contain the
+  correct values.
+
+  Use-cases of VM reference DT include:
+
+  - Passing the [public key of the Secretkeeper][secretkeeper_key] HAL
+    implementation to each VM.
+
+  - Passing the [vendor hashtree digest][vendor_hashtree_digest] to run
+    Microdroid with verified vendor image.
 
 [header]: src/config.rs
-[DTBO]: https://android.googlesource.com/platform/external/dtc/+/refs/heads/master/Documentation/dt-object-internal.txt
+[DTBO]: https://android.googlesource.com/platform/external/dtc/+/refs/heads/main/Documentation/dt-object-internal.txt
+[debug_policy]: ../docs/debug/README.md#debug-policy
+[secretkeeper_key]: https://android.googlesource.com/platform/system/secretkeeper/+/refs/heads/main/README.md#secretkeeper-public-key
+[vendor_hashtree_digest]: ../microdroid/README.md#verification-of-vendor-image
 
 #### Virtual Platform Boot Certificate Chain Handover
 
@@ -240,37 +289,6 @@
 [Layering]: https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md#layering-details
 [Trusty-BCC]: https://android.googlesource.com/trusty/lib/+/1696be0a8f3a7103/lib/hwbcc/common/swbcc.c#554
 
-#### pVM Device Tree Overlay
-
-Config header can provide a DTBO to be overlaid on top of the baseline device
-tree from crosvm.
-
-The DTBO may contain debug policies. Debug policies MUST NOT be provided for
-locked devices for security reasons.
-
-Here are an example of DTBO.
-
-```
-/ {
-    fragment@avf {
-        target-path = "/";
-
-        __overlay__ {
-            avf {
-                /* your debug policy here */
-            };
-        };
-    };
-}; /* end of avf */
-```
-
-For specifying DTBO, host bootloader should apply the DTBO to both host
-OS's device tree and config header of `pvmfw`. Both `virtualizationmanager` and
-`pvmfw` will prepare for debugging features.
-
-For details about device tree properties for debug policies, see
-[microdroid's debugging policy guide](../microdroid/README.md#option-1-running-microdroid-on-avf-debug-policy-configured-device).
-
 ### Platform Requirements
 
 pvmfw is intended to run in a virtualized environment according to the `crosvm`
@@ -432,4 +450,42 @@
 `avb_add_hash_footer` Soong module (see [how we sign the Microdroid
 kernel][soong-udroid]).
 
-[soong-udroid]: https://cs.android.com/android/platform/superproject/+/master:packages/modules/Virtualization/microdroid/Android.bp;l=427;drc=ca0049be4d84897b8c9956924cfae506773103eb
+[soong-udroid]: https://cs.android.com/android/platform/superproject/main/+/main:packages/modules/Virtualization/microdroid/Android.bp;l=425;drc=b94a5cf516307c4279f6c16a63803527a8affc6d
+
+## Development
+
+For faster iteration, you can build pvmfw, adb-push it to the device, and use
+it directly for a new pVM, without having to flash it to the physical
+partition. To do that, the binary image composition performed by ABL described
+above must be replicated to produce a single file containing the pvmfw binary
+and its configuration data.
+
+As a quick prototyping solution, a valid BCC (such as the [bcc.dat] test file)
+can be appended to the `pvmfw.bin` image with `pvmfw-tool`.
+
+```shell
+m pvmfw-tool pvmfw_bin
+PVMFW_BIN=${ANDROID_PRODUCT_OUT}/system/etc/pvmfw.bin
+BCC_DAT=${ANDROID_BUILD_TOP}/packages/modules/Virtualization/tests/pvmfw/assets/bcc.dat
+
+pvmfw-tool custom_pvmfw ${PVMFW_BIN} ${BCC_DAT}
+```
+
+The result can then be pushed to the device. Pointing the system property
+`hypervisor.pvmfw.path` to it will cause AVF to use that image as pvmfw:
+
+```shell
+adb push custom_pvmfw /data/local/tmp/pvmfw
+adb root
+adb shell setprop hypervisor.pvmfw.path /data/local/tmp/pvmfw
+```
+
+Then run a protected VM, for example:
+
+```shell
+adb shell /apex/com.android.virt/bin/vm run-microdroid --protected
+```
+
+Note: `adb root` is required to set the system property.
+
+[bcc.dat]: https://cs.android.com/android/platform/superproject/main/+/main:packages/modules/Virtualization/tests/pvmfw/assets/bcc.dat
diff --git a/pvmfw/TEST_MAPPING b/pvmfw/TEST_MAPPING
index e4a80dc..e948400 100644
--- a/pvmfw/TEST_MAPPING
+++ b/pvmfw/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
@@ -5,6 +7,12 @@
     },
     {
       "name" : "libpvmfw.bootargs.test"
+    },
+    {
+      "name" : "libpvmfw.device_assignment.test"
+    },
+    {
+      "name" : "libpvmfw.dice.test"
     }
   ]
-}
\ No newline at end of file
+}
diff --git a/pvmfw/avb/Android.bp b/pvmfw/avb/Android.bp
index 90f3971..3bb8354 100644
--- a/pvmfw/avb/Android.bp
+++ b/pvmfw/avb/Android.bp
@@ -1,26 +1,21 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
-rust_defaults {
-    name: "libpvmfw_avb_nostd_defaults",
+rust_library_rlib {
+    name: "libpvmfw_avb_nostd",
     crate_name: "pvmfw_avb",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     prefer_rlib: true,
-    // Require unsafe blocks for inside unsafe functions.
-    flags: ["-Dunsafe_op_in_unsafe_fn"],
     rustlibs: [
-        "libavb_bindgen_nostd",
+        "libavb_rs_nostd",
         "libtinyvec_nostd",
     ],
     whole_static_libs: [
         "libavb_baremetal",
     ],
-}
-
-rust_library_rlib {
-    name: "libpvmfw_avb_nostd",
-    defaults: ["libpvmfw_avb_nostd_defaults"],
     no_stdlibs: true,
     stdlibs: [
         "libcore.rust_sysroot",
@@ -30,6 +25,7 @@
 rust_test {
     name: "libpvmfw_avb.integration_test",
     crate_name: "pvmfw_avb_test",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["tests/*.rs"],
     test_suites: ["general-tests"],
     data: [
@@ -42,12 +38,19 @@
         ":test_image_with_non_initrd_hashdesc",
         ":test_image_with_initrd_and_non_initrd_desc",
         ":test_image_with_prop_desc",
+        ":test_image_with_service_vm_prop",
+        ":test_image_with_unknown_vm_type_prop",
+        ":test_image_with_multiple_props",
+        ":test_image_with_duplicated_capability",
+        ":test_image_with_rollback_index_5",
+        ":test_image_with_multiple_capabilities",
         ":unsigned_test_image",
     ],
     prefer_rlib: true,
     rustlibs: [
         "libanyhow",
         "libavb_bindgen",
+        "libavb_rs_nostd",
         "libhex",
         "libpvmfw_avb_nostd",
         "libopenssl",
@@ -127,9 +130,92 @@
 }
 
 avb_add_hash_footer {
+    name: "test_image_with_service_vm_prop",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "2131",
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "remote_attest",
+        },
+    ],
+}
+
+avb_add_hash_footer {
+    name: "test_image_with_unknown_vm_type_prop",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "2132",
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "foo",
+        },
+    ],
+}
+
+avb_add_hash_footer {
+    name: "test_image_with_multiple_props",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "2133",
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "remote_attest",
+        },
+        {
+            name: "another_vm_type",
+            value: "foo_vm",
+        },
+    ],
+}
+
+avb_add_hash_footer {
+    name: "test_image_with_duplicated_capability",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "2134",
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "remote_attest|remote_attest|remote_attest",
+        },
+    ],
+}
+
+avb_add_hash_footer {
     name: "test_image_with_one_hashdesc",
     src: ":unsigned_test_image",
     partition_name: "boot",
     private_key: ":pvmfw_sign_key",
     salt: "1111",
 }
+
+avb_add_hash_footer {
+    name: "test_image_with_rollback_index_5",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "1211",
+    rollback_index: 5,
+}
+
+avb_add_hash_footer {
+    name: "test_image_with_multiple_capabilities",
+    src: ":unsigned_test_image",
+    partition_name: "boot",
+    private_key: ":pvmfw_sign_key",
+    salt: "2134",
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "remote_attest|secretkeeper_protection",
+        },
+    ],
+}
diff --git a/pvmfw/avb/fuzz/Android.bp b/pvmfw/avb/fuzz/Android.bp
index 451fd8a..fe3af0f 100644
--- a/pvmfw/avb/fuzz/Android.bp
+++ b/pvmfw/avb/fuzz/Android.bp
@@ -13,6 +13,7 @@
 // limitations under the License.
 
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -31,4 +32,18 @@
     },
 }
 
-// TODO(b/260574387): Add avb_kernel_with_footer_verify_fuzzer
+rust_fuzz {
+    name: "avb_kernel_with_footer_verify_fuzzer",
+    srcs: ["with_footer_verify_fuzzer.rs"],
+    rustlibs: [
+        "libpvmfw_avb_nostd",
+        "libavb_bindgen_nostd",
+    ],
+    fuzz_config: {
+        cc: [
+            "android-kvm@google.com",
+        ],
+        fuzz_on_haiku_device: true,
+        fuzz_on_haiku_host: true,
+    },
+}
diff --git a/pvmfw/avb/fuzz/with_footer_verify_fuzzer.rs b/pvmfw/avb/fuzz/with_footer_verify_fuzzer.rs
new file mode 100644
index 0000000..6eed15b
--- /dev/null
+++ b/pvmfw/avb/fuzz/with_footer_verify_fuzzer.rs
@@ -0,0 +1,59 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#![allow(missing_docs)]
+#![no_main]
+
+use avb_bindgen::{
+    AvbFooter, AvbVBMetaImageHeader, AVB_FOOTER_MAGIC, AVB_FOOTER_MAGIC_LEN, AVB_MAGIC,
+    AVB_MAGIC_LEN, AVB_VERSION_MAJOR, AVB_VERSION_MINOR,
+};
+use libfuzzer_sys::fuzz_target;
+use pvmfw_avb::verify_payload;
+use std::mem::{size_of, transmute};
+
+fuzz_target!(|kernel_and_vbmeta: &[u8]| {
+    // This fuzzer is mostly supposed to catch the memory corruption in
+    // VBMeta parsing. It is unlikely that the randomly generated
+    // kernel can pass the kernel verification, so the value of `initrd`
+    // is not so important as we won't reach initrd verification with
+    // this fuzzer.
+    const VBMETA_SIZE: usize = size_of::<AvbVBMetaImageHeader>();
+    const RESERVED_REGION_SIZE: usize = 28;
+
+    if kernel_and_vbmeta.len() < VBMETA_SIZE {
+        return;
+    }
+    let kernel_size = kernel_and_vbmeta.len() - VBMETA_SIZE;
+    let avb_footer = AvbFooter {
+        magic: AVB_FOOTER_MAGIC[..(AVB_FOOTER_MAGIC_LEN as usize)].try_into().unwrap(),
+        version_major: AVB_VERSION_MAJOR.to_be(),
+        version_minor: AVB_VERSION_MINOR.to_be(),
+        original_image_size: (kernel_size as u64).to_be(),
+        vbmeta_offset: (kernel_size as u64).to_be(),
+        vbmeta_size: (VBMETA_SIZE as u64).to_be(),
+        reserved: [0u8; RESERVED_REGION_SIZE],
+    };
+    // SAFETY: It is safe as avb_footer is a valid AvbFooter struct.
+    let avb_footer = unsafe { transmute::<AvbFooter, [u8; size_of::<AvbFooter>()]>(avb_footer) };
+
+    let mut modified_kernel = vec![0u8; kernel_and_vbmeta.len() + size_of::<AvbFooter>()];
+    modified_kernel[..kernel_and_vbmeta.len()].copy_from_slice(kernel_and_vbmeta);
+    // Sets the magic for AvbVBMetaImageHeader.
+    modified_kernel[kernel_size..(kernel_size + AVB_MAGIC_LEN as usize)]
+        .copy_from_slice(&AVB_MAGIC[..(AVB_MAGIC_LEN as usize)]);
+    modified_kernel[kernel_and_vbmeta.len()..].copy_from_slice(&avb_footer);
+
+    let _ = verify_payload(&modified_kernel, /*initrd=*/ None, &[0u8; 64]);
+});
diff --git a/pvmfw/avb/src/descriptor.rs b/pvmfw/avb/src/descriptor.rs
deleted file mode 100644
index cd623ac..0000000
--- a/pvmfw/avb/src/descriptor.rs
+++ /dev/null
@@ -1,201 +0,0 @@
-// Copyright 2023, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Structs and functions relating to the descriptors.
-
-use crate::error::{AvbIOError, AvbSlotVerifyError};
-use crate::partition::PartitionName;
-use crate::utils::{self, is_not_null, to_nonnull, to_usize, usize_checked_add};
-use avb_bindgen::{
-    avb_descriptor_foreach, avb_hash_descriptor_validate_and_byteswap, AvbDescriptor,
-    AvbHashDescriptor, AvbVBMetaData, AVB_SHA256_DIGEST_SIZE,
-};
-use core::{
-    ffi::c_void,
-    mem::{size_of, MaybeUninit},
-    ops::Range,
-    slice,
-};
-use tinyvec::ArrayVec;
-
-/// Digest type for kernel and initrd.
-pub type Digest = [u8; AVB_SHA256_DIGEST_SIZE as usize];
-
-/// `HashDescriptors` can have maximum one `HashDescriptor` per known partition.
-#[derive(Default)]
-pub(crate) struct HashDescriptors(
-    ArrayVec<[HashDescriptor; PartitionName::NUM_OF_KNOWN_PARTITIONS]>,
-);
-
-impl HashDescriptors {
-    /// Builds `HashDescriptors` from `AvbVBMetaData`.
-    /// Returns an error if the given `AvbVBMetaData` contains non-hash descriptor, hash
-    /// descriptor of unknown `PartitionName` or duplicated hash descriptors.
-    ///
-    /// # Safety
-    ///
-    /// Behavior is undefined if any of the following conditions are violated:
-    /// * `vbmeta.vbmeta_data` must be non-null and points to a valid VBMeta.
-    /// * `vbmeta.vbmeta_data` must be valid for reading `vbmeta.vbmeta_size` bytes.
-    pub(crate) unsafe fn from_vbmeta(vbmeta: AvbVBMetaData) -> Result<Self, AvbSlotVerifyError> {
-        is_not_null(vbmeta.vbmeta_data).map_err(|_| AvbSlotVerifyError::Io)?;
-        let mut descriptors = Self::default();
-        // SAFETY: It is safe as the raw pointer `vbmeta.vbmeta_data` is a non-null pointer and
-        // points to a valid VBMeta structure.
-        if !unsafe {
-            avb_descriptor_foreach(
-                vbmeta.vbmeta_data,
-                vbmeta.vbmeta_size,
-                Some(check_and_save_descriptor),
-                &mut descriptors as *mut _ as *mut c_void,
-            )
-        } {
-            return Err(AvbSlotVerifyError::InvalidMetadata);
-        }
-        Ok(descriptors)
-    }
-
-    fn push(&mut self, descriptor: HashDescriptor) -> utils::Result<()> {
-        if self.0.iter().any(|d| d.partition_name_eq(&descriptor)) {
-            return Err(AvbIOError::Io);
-        }
-        self.0.push(descriptor);
-        Ok(())
-    }
-
-    pub(crate) fn len(&self) -> usize {
-        self.0.len()
-    }
-
-    /// Finds the `HashDescriptor` for the given `PartitionName`.
-    /// Throws an error if no corresponding descriptor found.
-    pub(crate) fn find(
-        &self,
-        partition_name: PartitionName,
-    ) -> Result<&HashDescriptor, AvbSlotVerifyError> {
-        self.0
-            .iter()
-            .find(|d| d.partition_name == partition_name)
-            .ok_or(AvbSlotVerifyError::InvalidMetadata)
-    }
-}
-
-/// # Safety
-///
-/// Behavior is undefined if any of the following conditions are violated:
-/// * The `descriptor` pointer must be non-null and points to a valid `AvbDescriptor` struct.
-/// * The `user_data` pointer must be non-null and points to a valid `HashDescriptors` struct.
-unsafe extern "C" fn check_and_save_descriptor(
-    descriptor: *const AvbDescriptor,
-    user_data: *mut c_void,
-) -> bool {
-    // SAFETY: It is safe because the caller must ensure that the `descriptor` pointer and
-    // the `user_data` are non-null and valid.
-    unsafe { try_check_and_save_descriptor(descriptor, user_data).is_ok() }
-}
-
-/// # Safety
-///
-/// Behavior is undefined if any of the following conditions are violated:
-/// * The `descriptor` pointer must be non-null and points to a valid `AvbDescriptor` struct.
-/// * The `user_data` pointer must be non-null and points to a valid `HashDescriptors` struct.
-unsafe fn try_check_and_save_descriptor(
-    descriptor: *const AvbDescriptor,
-    user_data: *mut c_void,
-) -> utils::Result<()> {
-    is_not_null(descriptor)?;
-    // SAFETY: It is safe because the caller ensures that `descriptor` is a non-null pointer
-    // pointing to a valid struct.
-    let desc = unsafe { AvbHashDescriptorWrap::from_descriptor_ptr(descriptor)? };
-    // SAFETY: It is safe because the caller ensures that `descriptor` is a non-null pointer
-    // pointing to a valid struct.
-    let data = unsafe { slice::from_raw_parts(descriptor as *const u8, desc.len()?) };
-    let mut descriptors = to_nonnull(user_data as *mut HashDescriptors)?;
-    // SAFETY: It is safe because the caller ensures that `user_data` is a non-null pointer
-    // pointing to a valid struct.
-    let descriptors = unsafe { descriptors.as_mut() };
-    descriptors.push(HashDescriptor::new(&desc, data)?)
-}
-
-#[derive(Default)]
-pub(crate) struct HashDescriptor {
-    partition_name: PartitionName,
-    pub(crate) digest: Digest,
-}
-
-impl HashDescriptor {
-    fn new(desc: &AvbHashDescriptorWrap, data: &[u8]) -> utils::Result<Self> {
-        let partition_name = data
-            .get(desc.partition_name_range()?)
-            .ok_or(AvbIOError::RangeOutsidePartition)?
-            .try_into()?;
-        let partition_digest =
-            data.get(desc.digest_range()?).ok_or(AvbIOError::RangeOutsidePartition)?;
-        let mut digest = [0u8; size_of::<Digest>()];
-        digest.copy_from_slice(partition_digest);
-        Ok(Self { partition_name, digest })
-    }
-
-    fn partition_name_eq(&self, other: &HashDescriptor) -> bool {
-        self.partition_name == other.partition_name
-    }
-}
-
-/// `AvbHashDescriptor` contains the metadata for the given descriptor.
-struct AvbHashDescriptorWrap(AvbHashDescriptor);
-
-impl AvbHashDescriptorWrap {
-    /// # Safety
-    ///
-    /// Behavior is undefined if any of the following conditions are violated:
-    /// * The `descriptor` pointer must be non-null and point to a valid `AvbDescriptor`.
-    unsafe fn from_descriptor_ptr(descriptor: *const AvbDescriptor) -> utils::Result<Self> {
-        is_not_null(descriptor)?;
-        // SAFETY: It is safe as the raw pointer `descriptor` is non-null and points to
-        // a valid `AvbDescriptor`.
-        let desc = unsafe {
-            let mut desc = MaybeUninit::uninit();
-            if !avb_hash_descriptor_validate_and_byteswap(
-                descriptor as *const AvbHashDescriptor,
-                desc.as_mut_ptr(),
-            ) {
-                return Err(AvbIOError::Io);
-            }
-            desc.assume_init()
-        };
-        Ok(Self(desc))
-    }
-
-    fn len(&self) -> utils::Result<usize> {
-        usize_checked_add(
-            size_of::<AvbDescriptor>(),
-            to_usize(self.0.parent_descriptor.num_bytes_following)?,
-        )
-    }
-
-    fn partition_name_end(&self) -> utils::Result<usize> {
-        usize_checked_add(size_of::<AvbHashDescriptor>(), to_usize(self.0.partition_name_len)?)
-    }
-
-    fn partition_name_range(&self) -> utils::Result<Range<usize>> {
-        let start = size_of::<AvbHashDescriptor>();
-        Ok(start..(self.partition_name_end()?))
-    }
-
-    fn digest_range(&self) -> utils::Result<Range<usize>> {
-        let start = usize_checked_add(self.partition_name_end()?, to_usize(self.0.salt_len)?)?;
-        let end = usize_checked_add(start, to_usize(self.0.digest_len)?)?;
-        Ok(start..end)
-    }
-}
diff --git a/pvmfw/avb/src/error.rs b/pvmfw/avb/src/error.rs
index 674e5a7..2e1950a 100644
--- a/pvmfw/avb/src/error.rs
+++ b/pvmfw/avb/src/error.rs
@@ -15,115 +15,42 @@
 //! This module contains the error thrown by the payload verification API
 //! and other errors used in the library.
 
-use avb_bindgen::{AvbIOResult, AvbSlotVerifyResult};
-
+use avb::{DescriptorError, SlotVerifyError};
 use core::fmt;
 
-/// This error is the error part of `AvbSlotVerifyResult`.
+/// Wrapper around `SlotVerifyError` to add custom pvmfw errors.
 /// It is the error thrown by the payload verification API `verify_payload()`.
-#[derive(Clone, Debug, PartialEq, Eq)]
-pub enum AvbSlotVerifyError {
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_ARGUMENT
-    InvalidArgument,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_METADATA
-    InvalidMetadata,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_IO
-    Io,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_OOM
-    Oom,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_PUBLIC_KEY_REJECTED
-    PublicKeyRejected,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_ROLLBACK_INDEX
-    RollbackIndex,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_UNSUPPORTED_VERSION
-    UnsupportedVersion,
-    /// AVB_SLOT_VERIFY_RESULT_ERROR_VERIFICATION
-    Verification,
+#[derive(Debug, PartialEq, Eq)]
+pub enum PvmfwVerifyError {
+    /// Passthrough `SlotVerifyError` with no `SlotVerifyData`.
+    AvbError(SlotVerifyError<'static>),
+    /// VBMeta has invalid descriptors.
+    InvalidDescriptors(DescriptorError),
+    /// Unknown vbmeta property.
+    UnknownVbmetaProperty,
 }
 
-impl fmt::Display for AvbSlotVerifyError {
+impl From<SlotVerifyError<'_>> for PvmfwVerifyError {
+    fn from(error: SlotVerifyError) -> Self {
+        // We don't use verification data on failure, drop it to get a `'static` lifetime.
+        Self::AvbError(error.without_verify_data())
+    }
+}
+
+impl From<DescriptorError> for PvmfwVerifyError {
+    fn from(error: DescriptorError) -> Self {
+        Self::InvalidDescriptors(error)
+    }
+}
+
+impl fmt::Display for PvmfwVerifyError {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         match self {
-            Self::InvalidArgument => write!(f, "Invalid parameters."),
-            Self::InvalidMetadata => write!(f, "Invalid metadata."),
-            Self::Io => write!(f, "I/O error while trying to load data or get a rollback index."),
-            Self::Oom => write!(f, "Unable to allocate memory."),
-            Self::PublicKeyRejected => write!(f, "Public key rejected or data not signed."),
-            Self::RollbackIndex => write!(f, "Rollback index is less than its stored value."),
-            Self::UnsupportedVersion => write!(
-                f,
-                "Some of the metadata requires a newer version of libavb than what is in use."
-            ),
-            Self::Verification => write!(f, "Data does not verify."),
-        }
-    }
-}
-
-pub(crate) fn slot_verify_result_to_verify_payload_result(
-    result: AvbSlotVerifyResult,
-) -> Result<(), AvbSlotVerifyError> {
-    match result {
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_OK => Ok(()),
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_ARGUMENT => {
-            Err(AvbSlotVerifyError::InvalidArgument)
-        }
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_METADATA => {
-            Err(AvbSlotVerifyError::InvalidMetadata)
-        }
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_IO => Err(AvbSlotVerifyError::Io),
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_OOM => Err(AvbSlotVerifyError::Oom),
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_PUBLIC_KEY_REJECTED => {
-            Err(AvbSlotVerifyError::PublicKeyRejected)
-        }
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_ROLLBACK_INDEX => {
-            Err(AvbSlotVerifyError::RollbackIndex)
-        }
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_UNSUPPORTED_VERSION => {
-            Err(AvbSlotVerifyError::UnsupportedVersion)
-        }
-        AvbSlotVerifyResult::AVB_SLOT_VERIFY_RESULT_ERROR_VERIFICATION => {
-            Err(AvbSlotVerifyError::Verification)
-        }
-    }
-}
-
-#[derive(Debug)]
-pub(crate) enum AvbIOError {
-    /// AVB_IO_RESULT_ERROR_OOM,
-    #[allow(dead_code)]
-    Oom,
-    /// AVB_IO_RESULT_ERROR_IO,
-    #[allow(dead_code)]
-    Io,
-    /// AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION,
-    NoSuchPartition,
-    /// AVB_IO_RESULT_ERROR_RANGE_OUTSIDE_PARTITION,
-    RangeOutsidePartition,
-    /// AVB_IO_RESULT_ERROR_NO_SUCH_VALUE,
-    NoSuchValue,
-    /// AVB_IO_RESULT_ERROR_INVALID_VALUE_SIZE,
-    InvalidValueSize,
-    /// AVB_IO_RESULT_ERROR_INSUFFICIENT_SPACE,
-    #[allow(dead_code)]
-    InsufficientSpace,
-}
-
-impl From<AvbIOError> for AvbIOResult {
-    fn from(error: AvbIOError) -> Self {
-        match error {
-            AvbIOError::Oom => AvbIOResult::AVB_IO_RESULT_ERROR_OOM,
-            AvbIOError::Io => AvbIOResult::AVB_IO_RESULT_ERROR_IO,
-            AvbIOError::NoSuchPartition => AvbIOResult::AVB_IO_RESULT_ERROR_NO_SUCH_PARTITION,
-            AvbIOError::RangeOutsidePartition => {
-                AvbIOResult::AVB_IO_RESULT_ERROR_RANGE_OUTSIDE_PARTITION
+            Self::AvbError(e) => write!(f, "{}", e),
+            Self::InvalidDescriptors(e) => {
+                write!(f, "VBMeta has invalid descriptors. Error: {:?}", e)
             }
-            AvbIOError::NoSuchValue => AvbIOResult::AVB_IO_RESULT_ERROR_NO_SUCH_VALUE,
-            AvbIOError::InvalidValueSize => AvbIOResult::AVB_IO_RESULT_ERROR_INVALID_VALUE_SIZE,
-            AvbIOError::InsufficientSpace => AvbIOResult::AVB_IO_RESULT_ERROR_INSUFFICIENT_SPACE,
+            Self::UnknownVbmetaProperty => write!(f, "Unknown vbmeta property"),
         }
     }
 }
-
-pub(crate) fn to_avb_io_result(result: Result<(), AvbIOError>) -> AvbIOResult {
-    result.map_or_else(|e| e.into(), |_| AvbIOResult::AVB_IO_RESULT_OK)
-}
diff --git a/pvmfw/avb/src/lib.rs b/pvmfw/avb/src/lib.rs
index d83737f..fd68652 100644
--- a/pvmfw/avb/src/lib.rs
+++ b/pvmfw/avb/src/lib.rs
@@ -16,13 +16,12 @@
 
 #![cfg_attr(not(test), no_std)]
 
-mod descriptor;
+extern crate alloc;
+
 mod error;
 mod ops;
 mod partition;
-mod utils;
 mod verify;
 
-pub use descriptor::Digest;
-pub use error::AvbSlotVerifyError;
-pub use verify::{verify_payload, DebugLevel, VerifiedBootData};
+pub use error::PvmfwVerifyError;
+pub use verify::{verify_payload, Capability, DebugLevel, Digest, VerifiedBootData};
diff --git a/pvmfw/avb/src/ops.rs b/pvmfw/avb/src/ops.rs
index e7f0ac7..9711f72 100644
--- a/pvmfw/avb/src/ops.rs
+++ b/pvmfw/avb/src/ops.rs
@@ -12,24 +12,14 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//! Structs and functions relating to `AvbOps`.
+//! Structs and functions relating to AVB callback operations.
 
-use crate::error::{
-    slot_verify_result_to_verify_payload_result, to_avb_io_result, AvbIOError, AvbSlotVerifyError,
-};
 use crate::partition::PartitionName;
-use crate::utils::{self, as_ref, is_not_null, to_nonnull, write};
-use avb_bindgen::{
-    avb_slot_verify, avb_slot_verify_data_free, AvbHashtreeErrorMode, AvbIOResult, AvbOps,
-    AvbPartitionData, AvbSlotVerifyData, AvbSlotVerifyFlags, AvbVBMetaData,
+use avb::{
+    slot_verify, HashtreeErrorMode, IoError, IoResult, PublicKeyForPartitionInfo, SlotVerifyData,
+    SlotVerifyFlags, SlotVerifyResult,
 };
-use core::{
-    ffi::{c_char, c_void, CStr},
-    mem::MaybeUninit,
-    ptr, slice,
-};
-
-const NULL_BYTE: &[u8] = b"\0";
+use core::ffi::CStr;
 
 pub(crate) struct Payload<'a> {
     kernel: &'a [u8],
@@ -37,15 +27,6 @@
     trusted_public_key: &'a [u8],
 }
 
-impl<'a> AsRef<Payload<'a>> for AvbOps {
-    fn as_ref(&self) -> &Payload<'a> {
-        let payload = self.user_data as *const Payload;
-        // SAFETY: It is safe to cast the `AvbOps.user_data` to Payload as we have saved a
-        // pointer to a valid value of Payload in user_data when creating AvbOps.
-        unsafe { &*payload }
-    }
-}
-
 impl<'a> Payload<'a> {
     pub(crate) fn new(
         kernel: &'a [u8],
@@ -55,148 +36,116 @@
         Self { kernel, initrd, trusted_public_key }
     }
 
-    fn get_partition(&self, partition_name: *const c_char) -> Result<&[u8], AvbIOError> {
+    fn get_partition(&self, partition_name: &CStr) -> IoResult<&[u8]> {
         match partition_name.try_into()? {
             PartitionName::Kernel => Ok(self.kernel),
             PartitionName::InitrdNormal | PartitionName::InitrdDebug => {
-                self.initrd.ok_or(AvbIOError::NoSuchPartition)
+                self.initrd.ok_or(IoError::NoSuchPartition)
             }
         }
     }
 }
 
-/// `Ops` wraps the class `AvbOps` in libavb. It provides pvmfw customized
-/// operations used in the verification.
-pub(crate) struct Ops(AvbOps);
-
-impl<'a> From<&mut Payload<'a>> for Ops {
-    fn from(payload: &mut Payload<'a>) -> Self {
-        let avb_ops = AvbOps {
-            user_data: payload as *mut _ as *mut c_void,
-            ab_ops: ptr::null_mut(),
-            atx_ops: ptr::null_mut(),
-            read_from_partition: Some(read_from_partition),
-            get_preloaded_partition: Some(get_preloaded_partition),
-            write_to_partition: None,
-            validate_vbmeta_public_key: Some(validate_vbmeta_public_key),
-            read_rollback_index: Some(read_rollback_index),
-            write_rollback_index: None,
-            read_is_device_unlocked: Some(read_is_device_unlocked),
-            get_unique_guid_for_partition: Some(get_unique_guid_for_partition),
-            get_size_of_partition: Some(get_size_of_partition),
-            read_persistent_value: None,
-            write_persistent_value: None,
-            validate_public_key_for_partition: None,
-        };
-        Self(avb_ops)
-    }
+/// Pvmfw customized operations used in the verification.
+pub(crate) struct Ops<'a> {
+    payload: &'a Payload<'a>,
 }
 
-impl Ops {
+impl<'a> Ops<'a> {
+    pub(crate) fn new(payload: &'a Payload<'a>) -> Self {
+        Self { payload }
+    }
+
     pub(crate) fn verify_partition(
         &mut self,
         partition_name: &CStr,
-    ) -> Result<AvbSlotVerifyDataWrap, AvbSlotVerifyError> {
-        let requested_partitions = [partition_name.as_ptr(), ptr::null()];
-        let ab_suffix = CStr::from_bytes_with_nul(NULL_BYTE).unwrap();
-        let mut out_data = MaybeUninit::uninit();
-        // SAFETY: It is safe to call `avb_slot_verify()` as the pointer arguments (`ops`,
-        // `requested_partitions` and `ab_suffix`) passed to the method are all valid and
-        // initialized.
-        let result = unsafe {
-            avb_slot_verify(
-                &mut self.0,
-                requested_partitions.as_ptr(),
-                ab_suffix.as_ptr(),
-                AvbSlotVerifyFlags::AVB_SLOT_VERIFY_FLAGS_NONE,
-                AvbHashtreeErrorMode::AVB_HASHTREE_ERROR_MODE_RESTART_AND_INVALIDATE,
-                out_data.as_mut_ptr(),
-            )
-        };
-        slot_verify_result_to_verify_payload_result(result)?;
-        // SAFETY: This is safe because `out_data` has been properly initialized after
-        // calling `avb_slot_verify` and it returns OK.
-        let out_data = unsafe { out_data.assume_init() };
-        out_data.try_into()
+    ) -> SlotVerifyResult<SlotVerifyData> {
+        slot_verify(
+            self,
+            &[partition_name],
+            None, // No partition slot suffix.
+            SlotVerifyFlags::AVB_SLOT_VERIFY_FLAGS_NONE,
+            HashtreeErrorMode::AVB_HASHTREE_ERROR_MODE_RESTART_AND_INVALIDATE,
+        )
     }
 }
 
-extern "C" fn read_is_device_unlocked(
-    _ops: *mut AvbOps,
-    out_is_unlocked: *mut bool,
-) -> AvbIOResult {
-    to_avb_io_result(write(out_is_unlocked, false))
+impl<'a> avb::Ops for Ops<'a> {
+    fn read_from_partition(
+        &mut self,
+        partition: &CStr,
+        offset: i64,
+        buffer: &mut [u8],
+    ) -> IoResult<usize> {
+        let partition = self.payload.get_partition(partition)?;
+        copy_data_to_dst(partition, offset, buffer)?;
+        Ok(buffer.len())
+    }
+
+    fn get_preloaded_partition(&mut self, partition: &CStr) -> IoResult<&[u8]> {
+        self.payload.get_partition(partition)
+    }
+
+    fn validate_vbmeta_public_key(
+        &mut self,
+        public_key: &[u8],
+        _public_key_metadata: Option<&[u8]>,
+    ) -> IoResult<bool> {
+        // The public key metadata is not used when we build the VBMeta.
+        Ok(self.payload.trusted_public_key == public_key)
+    }
+
+    fn read_rollback_index(&mut self, _rollback_index_location: usize) -> IoResult<u64> {
+        // TODO(291213394) : Refine this comment once capability for rollback protection is defined.
+        // pvmfw does not compare stored_rollback_index with rollback_index for Antirollback
+        // protection. Hence, we set `out_rollback_index` to 0 to ensure that the rollback_index
+        // (including default: 0) is never smaller than it, thus the rollback index check will pass.
+        Ok(0)
+    }
+
+    fn write_rollback_index(
+        &mut self,
+        _rollback_index_location: usize,
+        _index: u64,
+    ) -> IoResult<()> {
+        Err(IoError::NotImplemented)
+    }
+
+    fn read_is_device_unlocked(&mut self) -> IoResult<bool> {
+        Ok(false)
+    }
+
+    fn get_size_of_partition(&mut self, partition: &CStr) -> IoResult<u64> {
+        let partition = self.payload.get_partition(partition)?;
+        u64::try_from(partition.len()).map_err(|_| IoError::InvalidValueSize)
+    }
+
+    fn read_persistent_value(&mut self, _name: &CStr, _value: &mut [u8]) -> IoResult<usize> {
+        Err(IoError::NotImplemented)
+    }
+
+    fn write_persistent_value(&mut self, _name: &CStr, _value: &[u8]) -> IoResult<()> {
+        Err(IoError::NotImplemented)
+    }
+
+    fn erase_persistent_value(&mut self, _name: &CStr) -> IoResult<()> {
+        Err(IoError::NotImplemented)
+    }
+
+    fn validate_public_key_for_partition(
+        &mut self,
+        _partition: &CStr,
+        _public_key: &[u8],
+        _public_key_metadata: Option<&[u8]>,
+    ) -> IoResult<PublicKeyForPartitionInfo> {
+        Err(IoError::NotImplemented)
+    }
 }
 
-extern "C" fn get_preloaded_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    num_bytes: usize,
-    out_pointer: *mut *mut u8,
-    out_num_bytes_preloaded: *mut usize,
-) -> AvbIOResult {
-    to_avb_io_result(try_get_preloaded_partition(
-        ops,
-        partition,
-        num_bytes,
-        out_pointer,
-        out_num_bytes_preloaded,
-    ))
-}
-
-fn try_get_preloaded_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    num_bytes: usize,
-    out_pointer: *mut *mut u8,
-    out_num_bytes_preloaded: *mut usize,
-) -> utils::Result<()> {
-    let ops = as_ref(ops)?;
-    let partition = ops.as_ref().get_partition(partition)?;
-    write(out_pointer, partition.as_ptr() as *mut u8)?;
-    write(out_num_bytes_preloaded, partition.len().min(num_bytes))
-}
-
-extern "C" fn read_from_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    offset: i64,
-    num_bytes: usize,
-    buffer: *mut c_void,
-    out_num_read: *mut usize,
-) -> AvbIOResult {
-    to_avb_io_result(try_read_from_partition(
-        ops,
-        partition,
-        offset,
-        num_bytes,
-        buffer,
-        out_num_read,
-    ))
-}
-
-fn try_read_from_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    offset: i64,
-    num_bytes: usize,
-    buffer: *mut c_void,
-    out_num_read: *mut usize,
-) -> utils::Result<()> {
-    let ops = as_ref(ops)?;
-    let partition = ops.as_ref().get_partition(partition)?;
-    let buffer = to_nonnull(buffer)?;
-    // SAFETY: It is safe to copy the requested number of bytes to `buffer` as `buffer`
-    // is created to point to the `num_bytes` of bytes in memory.
-    let buffer_slice = unsafe { slice::from_raw_parts_mut(buffer.as_ptr() as *mut u8, num_bytes) };
-    copy_data_to_dst(partition, offset, buffer_slice)?;
-    write(out_num_read, buffer_slice.len())
-}
-
-fn copy_data_to_dst(src: &[u8], offset: i64, dst: &mut [u8]) -> utils::Result<()> {
-    let start = to_copy_start(offset, src.len()).ok_or(AvbIOError::InvalidValueSize)?;
-    let end = start.checked_add(dst.len()).ok_or(AvbIOError::InvalidValueSize)?;
-    dst.copy_from_slice(src.get(start..end).ok_or(AvbIOError::RangeOutsidePartition)?);
+fn copy_data_to_dst(src: &[u8], offset: i64, dst: &mut [u8]) -> IoResult<()> {
+    let start = to_copy_start(offset, src.len()).ok_or(IoError::InvalidValueSize)?;
+    let end = start.checked_add(dst.len()).ok_or(IoError::InvalidValueSize)?;
+    dst.copy_from_slice(src.get(start..end).ok_or(IoError::RangeOutsidePartition)?);
     Ok(())
 }
 
@@ -205,135 +154,3 @@
         .ok()
         .or_else(|| isize::try_from(offset).ok().and_then(|v| len.checked_add_signed(v)))
 }
-
-extern "C" fn get_size_of_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    out_size_num_bytes: *mut u64,
-) -> AvbIOResult {
-    to_avb_io_result(try_get_size_of_partition(ops, partition, out_size_num_bytes))
-}
-
-fn try_get_size_of_partition(
-    ops: *mut AvbOps,
-    partition: *const c_char,
-    out_size_num_bytes: *mut u64,
-) -> utils::Result<()> {
-    let ops = as_ref(ops)?;
-    let partition = ops.as_ref().get_partition(partition)?;
-    let partition_size =
-        u64::try_from(partition.len()).map_err(|_| AvbIOError::InvalidValueSize)?;
-    write(out_size_num_bytes, partition_size)
-}
-
-extern "C" fn read_rollback_index(
-    _ops: *mut AvbOps,
-    _rollback_index_location: usize,
-    out_rollback_index: *mut u64,
-) -> AvbIOResult {
-    // Rollback protection is not yet implemented, but this method is required by
-    // `avb_slot_verify()`.
-    // We set `out_rollback_index` to 0 to ensure that the default rollback index (0)
-    // is never smaller than it, thus the rollback index check will pass.
-    to_avb_io_result(write(out_rollback_index, 0))
-}
-
-extern "C" fn get_unique_guid_for_partition(
-    _ops: *mut AvbOps,
-    _partition: *const c_char,
-    _guid_buf: *mut c_char,
-    _guid_buf_size: usize,
-) -> AvbIOResult {
-    // TODO(b/256148034): Check if it's possible to throw an error here instead of having
-    // an empty method.
-    // This method is required by `avb_slot_verify()`.
-    AvbIOResult::AVB_IO_RESULT_OK
-}
-
-extern "C" fn validate_vbmeta_public_key(
-    ops: *mut AvbOps,
-    public_key_data: *const u8,
-    public_key_length: usize,
-    public_key_metadata: *const u8,
-    public_key_metadata_length: usize,
-    out_is_trusted: *mut bool,
-) -> AvbIOResult {
-    to_avb_io_result(try_validate_vbmeta_public_key(
-        ops,
-        public_key_data,
-        public_key_length,
-        public_key_metadata,
-        public_key_metadata_length,
-        out_is_trusted,
-    ))
-}
-
-fn try_validate_vbmeta_public_key(
-    ops: *mut AvbOps,
-    public_key_data: *const u8,
-    public_key_length: usize,
-    _public_key_metadata: *const u8,
-    _public_key_metadata_length: usize,
-    out_is_trusted: *mut bool,
-) -> utils::Result<()> {
-    // The public key metadata is not used when we build the VBMeta.
-    is_not_null(public_key_data)?;
-    // SAFETY: It is safe to create a slice with the given pointer and length as
-    // `public_key_data` is a valid pointer and it points to an array of length
-    // `public_key_length`.
-    let public_key = unsafe { slice::from_raw_parts(public_key_data, public_key_length) };
-    let ops = as_ref(ops)?;
-    let trusted_public_key = ops.as_ref().trusted_public_key;
-    write(out_is_trusted, public_key == trusted_public_key)
-}
-
-pub(crate) struct AvbSlotVerifyDataWrap(*mut AvbSlotVerifyData);
-
-impl TryFrom<*mut AvbSlotVerifyData> for AvbSlotVerifyDataWrap {
-    type Error = AvbSlotVerifyError;
-
-    fn try_from(data: *mut AvbSlotVerifyData) -> Result<Self, Self::Error> {
-        is_not_null(data).map_err(|_| AvbSlotVerifyError::Io)?;
-        Ok(Self(data))
-    }
-}
-
-impl Drop for AvbSlotVerifyDataWrap {
-    fn drop(&mut self) {
-        // SAFETY: This is safe because `self.0` is checked nonnull when the
-        // instance is created. We can free this pointer when the instance is
-        // no longer needed.
-        unsafe {
-            avb_slot_verify_data_free(self.0);
-        }
-    }
-}
-
-impl AsRef<AvbSlotVerifyData> for AvbSlotVerifyDataWrap {
-    fn as_ref(&self) -> &AvbSlotVerifyData {
-        // This is safe because `self.0` is checked nonnull when the instance is created.
-        as_ref(self.0).unwrap()
-    }
-}
-
-impl AvbSlotVerifyDataWrap {
-    pub(crate) fn vbmeta_images(&self) -> Result<&[AvbVBMetaData], AvbSlotVerifyError> {
-        let data = self.as_ref();
-        is_not_null(data.vbmeta_images).map_err(|_| AvbSlotVerifyError::Io)?;
-        // SAFETY: It is safe as the raw pointer `data.vbmeta_images` is a nonnull pointer.
-        let vbmeta_images =
-            unsafe { slice::from_raw_parts(data.vbmeta_images, data.num_vbmeta_images) };
-        Ok(vbmeta_images)
-    }
-
-    pub(crate) fn loaded_partitions(&self) -> Result<&[AvbPartitionData], AvbSlotVerifyError> {
-        let data = self.as_ref();
-        is_not_null(data.loaded_partitions).map_err(|_| AvbSlotVerifyError::Io)?;
-        // SAFETY: It is safe as the raw pointer `data.loaded_partitions` is a nonnull pointer and
-        // is guaranteed by libavb to point to a valid `AvbPartitionData` array as part of the
-        // `AvbSlotVerifyData` struct.
-        let loaded_partitions =
-            unsafe { slice::from_raw_parts(data.loaded_partitions, data.num_loaded_partitions) };
-        Ok(loaded_partitions)
-    }
-}
diff --git a/pvmfw/avb/src/partition.rs b/pvmfw/avb/src/partition.rs
index bc63003..02a78c6 100644
--- a/pvmfw/avb/src/partition.rs
+++ b/pvmfw/avb/src/partition.rs
@@ -14,9 +14,8 @@
 
 //! Struct and functions relating to well-known partition names.
 
-use crate::error::AvbIOError;
-use crate::utils::is_not_null;
-use core::ffi::{c_char, CStr};
+use avb::IoError;
+use core::ffi::CStr;
 
 #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
 pub(crate) enum PartitionName {
@@ -28,11 +27,9 @@
 }
 
 impl PartitionName {
-    pub(crate) const NUM_OF_KNOWN_PARTITIONS: usize = 3;
-
-    const KERNEL_PARTITION_NAME: &[u8] = b"boot\0";
-    const INITRD_NORMAL_PARTITION_NAME: &[u8] = b"initrd_normal\0";
-    const INITRD_DEBUG_PARTITION_NAME: &[u8] = b"initrd_debug\0";
+    const KERNEL_PARTITION_NAME: &'static [u8] = b"boot\0";
+    const INITRD_NORMAL_PARTITION_NAME: &'static [u8] = b"initrd_normal\0";
+    const INITRD_DEBUG_PARTITION_NAME: &'static [u8] = b"initrd_debug\0";
 
     pub(crate) fn as_cstr(&self) -> &CStr {
         CStr::from_bytes_with_nul(self.as_bytes()).unwrap()
@@ -52,39 +49,28 @@
     }
 }
 
-impl TryFrom<*const c_char> for PartitionName {
-    type Error = AvbIOError;
-
-    fn try_from(partition_name: *const c_char) -> Result<Self, Self::Error> {
-        is_not_null(partition_name)?;
-        // SAFETY: It is safe as the raw pointer `partition_name` is a nonnull pointer.
-        let partition_name = unsafe { CStr::from_ptr(partition_name) };
-        partition_name.try_into()
-    }
-}
-
 impl TryFrom<&CStr> for PartitionName {
-    type Error = AvbIOError;
+    type Error = IoError;
 
     fn try_from(partition_name: &CStr) -> Result<Self, Self::Error> {
         match partition_name.to_bytes_with_nul() {
             Self::KERNEL_PARTITION_NAME => Ok(Self::Kernel),
             Self::INITRD_NORMAL_PARTITION_NAME => Ok(Self::InitrdNormal),
             Self::INITRD_DEBUG_PARTITION_NAME => Ok(Self::InitrdDebug),
-            _ => Err(AvbIOError::NoSuchPartition),
+            _ => Err(IoError::NoSuchPartition),
         }
     }
 }
 
 impl TryFrom<&[u8]> for PartitionName {
-    type Error = AvbIOError;
+    type Error = IoError;
 
     fn try_from(non_null_terminated_name: &[u8]) -> Result<Self, Self::Error> {
         match non_null_terminated_name {
             x if x == Self::Kernel.as_non_null_terminated_bytes() => Ok(Self::Kernel),
             x if x == Self::InitrdNormal.as_non_null_terminated_bytes() => Ok(Self::InitrdNormal),
             x if x == Self::InitrdDebug.as_non_null_terminated_bytes() => Ok(Self::InitrdDebug),
-            _ => Err(AvbIOError::NoSuchPartition),
+            _ => Err(IoError::NoSuchPartition),
         }
     }
 }
diff --git a/pvmfw/avb/src/utils.rs b/pvmfw/avb/src/utils.rs
deleted file mode 100644
index a24d61f..0000000
--- a/pvmfw/avb/src/utils.rs
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2023, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Common utility functions.
-
-use crate::error::AvbIOError;
-use core::ptr::NonNull;
-use core::result;
-
-pub(crate) type Result<T> = result::Result<T, AvbIOError>;
-
-pub(crate) fn write<T>(ptr: *mut T, value: T) -> Result<()> {
-    let ptr = to_nonnull(ptr)?;
-    // SAFETY: It is safe as the raw pointer `ptr` is a non-null pointer.
-    unsafe {
-        *ptr.as_ptr() = value;
-    }
-    Ok(())
-}
-
-pub(crate) fn as_ref<'a, T>(ptr: *mut T) -> Result<&'a T> {
-    let ptr = to_nonnull(ptr)?;
-    // SAFETY: It is safe as the raw pointer `ptr` is a non-null pointer.
-    unsafe { Ok(ptr.as_ref()) }
-}
-
-pub(crate) fn to_nonnull<T>(ptr: *mut T) -> Result<NonNull<T>> {
-    NonNull::new(ptr).ok_or(AvbIOError::NoSuchValue)
-}
-
-pub(crate) fn is_not_null<T>(ptr: *const T) -> Result<()> {
-    if ptr.is_null() {
-        Err(AvbIOError::NoSuchValue)
-    } else {
-        Ok(())
-    }
-}
-
-pub(crate) fn to_usize<T: TryInto<usize>>(num: T) -> Result<usize> {
-    num.try_into().map_err(|_| AvbIOError::InvalidValueSize)
-}
-
-pub(crate) fn usize_checked_add(x: usize, y: usize) -> Result<usize> {
-    x.checked_add(y).ok_or(AvbIOError::InvalidValueSize)
-}
diff --git a/pvmfw/avb/src/verify.rs b/pvmfw/avb/src/verify.rs
index b03506c..2ebe9a1 100644
--- a/pvmfw/avb/src/verify.rs
+++ b/pvmfw/avb/src/verify.rs
@@ -14,12 +14,21 @@
 
 //! This module handles the pvmfw payload verification.
 
-use crate::descriptor::{Digest, HashDescriptors};
-use crate::error::AvbSlotVerifyError;
 use crate::ops::{Ops, Payload};
 use crate::partition::PartitionName;
-use avb_bindgen::{AvbPartitionData, AvbVBMetaData};
-use core::ffi::c_char;
+use crate::PvmfwVerifyError;
+use alloc::vec;
+use alloc::vec::Vec;
+use avb::{
+    Descriptor, DescriptorError, DescriptorResult, HashDescriptor, PartitionData,
+    PropertyDescriptor, SlotVerifyError, SlotVerifyNoDataResult, VbmetaData,
+};
+
+// We use this for the rollback_index field if SlotVerifyData has empty rollback_indexes
+const DEFAULT_ROLLBACK_INDEX: u64 = 0;
+
+/// SHA256 digest type for kernel and initrd.
+pub type Digest = [u8; 32];
 
 /// Verified data returned when the payload verification succeeds.
 #[derive(Debug, PartialEq, Eq)]
@@ -32,6 +41,17 @@
     pub initrd_digest: Option<Digest>,
     /// Trusted public key.
     pub public_key: &'a [u8],
+    /// VM capabilities.
+    pub capabilities: Vec<Capability>,
+    /// Rollback index of kernel.
+    pub rollback_index: u64,
+}
+
+impl VerifiedBootData<'_> {
+    /// Returns whether the kernel have the given capability
+    pub fn has_capability(&self, cap: Capability) -> bool {
+        self.capabilities.contains(&cap)
+    }
 }
 
 /// This enum corresponds to the `DebugLevel` in `VirtualMachineConfig`.
@@ -43,108 +63,239 @@
     Full,
 }
 
-fn verify_only_one_vbmeta_exists(
-    vbmeta_images: &[AvbVBMetaData],
-) -> Result<(), AvbSlotVerifyError> {
-    if vbmeta_images.len() == 1 {
-        Ok(())
-    } else {
-        Err(AvbSlotVerifyError::InvalidMetadata)
+/// VM Capability.
+#[derive(Copy, Clone, Debug, PartialEq, Eq)]
+pub enum Capability {
+    /// Remote attestation.
+    RemoteAttest,
+    /// Secretkeeper protected secrets.
+    SecretkeeperProtection,
+}
+
+impl Capability {
+    const KEY: &'static str = "com.android.virt.cap";
+    const REMOTE_ATTEST: &'static [u8] = b"remote_attest";
+    const SECRETKEEPER_PROTECTION: &'static [u8] = b"secretkeeper_protection";
+    const SEPARATOR: u8 = b'|';
+
+    /// Returns the capabilities indicated in `descriptor`, or error if the descriptor has
+    /// unexpected contents.
+    fn get_capabilities(descriptor: &PropertyDescriptor) -> Result<Vec<Self>, PvmfwVerifyError> {
+        if descriptor.key != Self::KEY {
+            return Err(PvmfwVerifyError::UnknownVbmetaProperty);
+        }
+
+        let mut res = Vec::new();
+
+        for v in descriptor.value.split(|b| *b == Self::SEPARATOR) {
+            let cap = match v {
+                Self::REMOTE_ATTEST => Self::RemoteAttest,
+                Self::SECRETKEEPER_PROTECTION => Self::SecretkeeperProtection,
+                _ => return Err(PvmfwVerifyError::UnknownVbmetaProperty),
+            };
+            if res.contains(&cap) {
+                return Err(SlotVerifyError::InvalidMetadata.into());
+            }
+            res.push(cap);
+        }
+        Ok(res)
     }
 }
 
-fn verify_vbmeta_is_from_kernel_partition(
-    vbmeta_image: &AvbVBMetaData,
-) -> Result<(), AvbSlotVerifyError> {
-    match (vbmeta_image.partition_name as *const c_char).try_into() {
+fn verify_only_one_vbmeta_exists(vbmeta_data: &[VbmetaData]) -> SlotVerifyNoDataResult<()> {
+    if vbmeta_data.len() == 1 {
+        Ok(())
+    } else {
+        Err(SlotVerifyError::InvalidMetadata)
+    }
+}
+
+fn verify_vbmeta_is_from_kernel_partition(vbmeta_image: &VbmetaData) -> SlotVerifyNoDataResult<()> {
+    match vbmeta_image.partition_name().try_into() {
         Ok(PartitionName::Kernel) => Ok(()),
-        _ => Err(AvbSlotVerifyError::InvalidMetadata),
-    }
-}
-
-fn verify_vbmeta_has_only_one_hash_descriptor(
-    hash_descriptors: &HashDescriptors,
-) -> Result<(), AvbSlotVerifyError> {
-    if hash_descriptors.len() == 1 {
-        Ok(())
-    } else {
-        Err(AvbSlotVerifyError::InvalidMetadata)
+        _ => Err(SlotVerifyError::InvalidMetadata),
     }
 }
 
 fn verify_loaded_partition_has_expected_length(
-    loaded_partitions: &[AvbPartitionData],
+    loaded_partitions: &[PartitionData],
     partition_name: PartitionName,
     expected_len: usize,
-) -> Result<(), AvbSlotVerifyError> {
+) -> SlotVerifyNoDataResult<()> {
     if loaded_partitions.len() != 1 {
         // Only one partition should be loaded in each verify result.
-        return Err(AvbSlotVerifyError::Io);
+        return Err(SlotVerifyError::Io);
     }
-    let loaded_partition = loaded_partitions[0];
-    if !PartitionName::try_from(loaded_partition.partition_name as *const c_char)
+    let loaded_partition = &loaded_partitions[0];
+    if !PartitionName::try_from(loaded_partition.partition_name())
         .map_or(false, |p| p == partition_name)
     {
         // Only the requested partition should be loaded.
-        return Err(AvbSlotVerifyError::Io);
+        return Err(SlotVerifyError::Io);
     }
-    if loaded_partition.data_size == expected_len {
+    if loaded_partition.data().len() == expected_len {
         Ok(())
     } else {
-        Err(AvbSlotVerifyError::Verification)
+        Err(SlotVerifyError::Verification(None))
     }
 }
 
+/// Verifies that the vbmeta contains at most one property descriptor and it indicates the
+/// vm type is service VM.
+fn verify_property_and_get_capabilities(
+    descriptors: &[Descriptor],
+) -> Result<Vec<Capability>, PvmfwVerifyError> {
+    let mut iter = descriptors.iter().filter_map(|d| match d {
+        Descriptor::Property(p) => Some(p),
+        _ => None,
+    });
+
+    let descriptor = match iter.next() {
+        // No property descriptors -> no capabilities.
+        None => return Ok(vec![]),
+        Some(d) => d,
+    };
+
+    // Multiple property descriptors -> error.
+    if iter.next().is_some() {
+        return Err(DescriptorError::InvalidContents.into());
+    }
+
+    Capability::get_capabilities(descriptor)
+}
+
+/// Hash descriptors extracted from a vbmeta image.
+///
+/// We always have a kernel hash descriptor and may have initrd normal or debug descriptors.
+struct HashDescriptors<'a> {
+    kernel: &'a HashDescriptor<'a>,
+    initrd_normal: Option<&'a HashDescriptor<'a>>,
+    initrd_debug: Option<&'a HashDescriptor<'a>>,
+}
+
+impl<'a> HashDescriptors<'a> {
+    /// Extracts the hash descriptors from all vbmeta descriptors. Any unexpected hash descriptor
+    /// is an error.
+    fn get(descriptors: &'a [Descriptor<'a>]) -> DescriptorResult<Self> {
+        let mut kernel = None;
+        let mut initrd_normal = None;
+        let mut initrd_debug = None;
+
+        for descriptor in descriptors.iter().filter_map(|d| match d {
+            Descriptor::Hash(h) => Some(h),
+            _ => None,
+        }) {
+            let target = match descriptor
+                .partition_name
+                .as_bytes()
+                .try_into()
+                .map_err(|_| DescriptorError::InvalidContents)?
+            {
+                PartitionName::Kernel => &mut kernel,
+                PartitionName::InitrdNormal => &mut initrd_normal,
+                PartitionName::InitrdDebug => &mut initrd_debug,
+            };
+
+            if target.is_some() {
+                // Duplicates of the same partition name is an error.
+                return Err(DescriptorError::InvalidContents);
+            }
+            target.replace(descriptor);
+        }
+
+        // Kernel is required, the others are optional.
+        Ok(Self {
+            kernel: kernel.ok_or(DescriptorError::InvalidContents)?,
+            initrd_normal,
+            initrd_debug,
+        })
+    }
+
+    /// Returns an error if either initrd descriptor exists.
+    fn verify_no_initrd(&self) -> Result<(), PvmfwVerifyError> {
+        match self.initrd_normal.or(self.initrd_debug) {
+            Some(_) => Err(SlotVerifyError::InvalidMetadata.into()),
+            None => Ok(()),
+        }
+    }
+}
+
+/// Returns a copy of the SHA256 digest in `descriptor`, or error if the sizes don't match.
+fn copy_digest(descriptor: &HashDescriptor) -> SlotVerifyNoDataResult<Digest> {
+    let mut digest = Digest::default();
+    if descriptor.digest.len() != digest.len() {
+        return Err(SlotVerifyError::InvalidMetadata);
+    }
+    digest.clone_from_slice(descriptor.digest);
+    Ok(digest)
+}
+
+/// Verifies the given initrd partition, and checks that the resulting contents looks like expected.
+fn verify_initrd(
+    ops: &mut Ops,
+    partition_name: PartitionName,
+    expected_initrd: &[u8],
+) -> SlotVerifyNoDataResult<()> {
+    let result =
+        ops.verify_partition(partition_name.as_cstr()).map_err(|e| e.without_verify_data())?;
+    verify_loaded_partition_has_expected_length(
+        result.partition_data(),
+        partition_name,
+        expected_initrd.len(),
+    )
+}
+
 /// Verifies the payload (signed kernel + initrd) against the trusted public key.
 pub fn verify_payload<'a>(
     kernel: &[u8],
     initrd: Option<&[u8]>,
     trusted_public_key: &'a [u8],
-) -> Result<VerifiedBootData<'a>, AvbSlotVerifyError> {
-    let mut payload = Payload::new(kernel, initrd, trusted_public_key);
-    let mut ops = Ops::from(&mut payload);
+) -> Result<VerifiedBootData<'a>, PvmfwVerifyError> {
+    let payload = Payload::new(kernel, initrd, trusted_public_key);
+    let mut ops = Ops::new(&payload);
     let kernel_verify_result = ops.verify_partition(PartitionName::Kernel.as_cstr())?;
 
-    let vbmeta_images = kernel_verify_result.vbmeta_images()?;
+    let vbmeta_images = kernel_verify_result.vbmeta_data();
+    // TODO(b/302093437): Use explicit rollback_index_location instead of default
+    // location (first element).
+    let rollback_index =
+        *kernel_verify_result.rollback_indexes().first().unwrap_or(&DEFAULT_ROLLBACK_INDEX);
     verify_only_one_vbmeta_exists(vbmeta_images)?;
-    let vbmeta_image = vbmeta_images[0];
-    verify_vbmeta_is_from_kernel_partition(&vbmeta_image)?;
-    // SAFETY: It is safe because the `vbmeta_image` is collected from `AvbSlotVerifyData`,
-    // which is returned by `avb_slot_verify()` when the verification succeeds. It is
-    // guaranteed by libavb to be non-null and to point to a valid VBMeta structure.
-    let hash_descriptors = unsafe { HashDescriptors::from_vbmeta(vbmeta_image)? };
-    let kernel_descriptor = hash_descriptors.find(PartitionName::Kernel)?;
+    let vbmeta_image = &vbmeta_images[0];
+    verify_vbmeta_is_from_kernel_partition(vbmeta_image)?;
+    let descriptors = vbmeta_image.descriptors()?;
+    let hash_descriptors = HashDescriptors::get(&descriptors)?;
+    let capabilities = verify_property_and_get_capabilities(&descriptors)?;
 
     if initrd.is_none() {
-        verify_vbmeta_has_only_one_hash_descriptor(&hash_descriptors)?;
+        hash_descriptors.verify_no_initrd()?;
         return Ok(VerifiedBootData {
             debug_level: DebugLevel::None,
-            kernel_digest: kernel_descriptor.digest,
+            kernel_digest: copy_digest(hash_descriptors.kernel)?,
             initrd_digest: None,
             public_key: trusted_public_key,
+            capabilities,
+            rollback_index,
         });
     }
 
     let initrd = initrd.unwrap();
-    let (debug_level, initrd_verify_result, initrd_partition_name) =
-        if let Ok(result) = ops.verify_partition(PartitionName::InitrdNormal.as_cstr()) {
-            (DebugLevel::None, result, PartitionName::InitrdNormal)
-        } else if let Ok(result) = ops.verify_partition(PartitionName::InitrdDebug.as_cstr()) {
-            (DebugLevel::Full, result, PartitionName::InitrdDebug)
+    let mut initrd_ops = Ops::new(&payload);
+    let (debug_level, initrd_descriptor) =
+        if verify_initrd(&mut initrd_ops, PartitionName::InitrdNormal, initrd).is_ok() {
+            (DebugLevel::None, hash_descriptors.initrd_normal)
+        } else if verify_initrd(&mut initrd_ops, PartitionName::InitrdDebug, initrd).is_ok() {
+            (DebugLevel::Full, hash_descriptors.initrd_debug)
         } else {
-            return Err(AvbSlotVerifyError::Verification);
+            return Err(SlotVerifyError::Verification(None).into());
         };
-    let loaded_partitions = initrd_verify_result.loaded_partitions()?;
-    verify_loaded_partition_has_expected_length(
-        loaded_partitions,
-        initrd_partition_name,
-        initrd.len(),
-    )?;
-    let initrd_descriptor = hash_descriptors.find(initrd_partition_name)?;
+    let initrd_descriptor = initrd_descriptor.ok_or(DescriptorError::InvalidContents)?;
     Ok(VerifiedBootData {
         debug_level,
-        kernel_digest: kernel_descriptor.digest,
-        initrd_digest: Some(initrd_descriptor.digest),
+        kernel_digest: copy_digest(hash_descriptors.kernel)?,
+        initrd_digest: Some(copy_digest(initrd_descriptor)?),
         public_key: trusted_public_key,
+        capabilities,
+        rollback_index,
     })
 }
diff --git a/pvmfw/avb/tests/api_test.rs b/pvmfw/avb/tests/api_test.rs
index 78f274a..c6f26ac 100644
--- a/pvmfw/avb/tests/api_test.rs
+++ b/pvmfw/avb/tests/api_test.rs
@@ -17,16 +17,23 @@
 mod utils;
 
 use anyhow::{anyhow, Result};
+use avb::{DescriptorError, SlotVerifyError};
 use avb_bindgen::{AvbFooter, AvbVBMetaImageHeader};
-use pvmfw_avb::{verify_payload, AvbSlotVerifyError, DebugLevel, VerifiedBootData};
+use pvmfw_avb::{verify_payload, Capability, DebugLevel, PvmfwVerifyError, VerifiedBootData};
 use std::{fs, mem::size_of, ptr};
 use utils::*;
 
 const TEST_IMG_WITH_ONE_HASHDESC_PATH: &str = "test_image_with_one_hashdesc.img";
+const TEST_IMG_WITH_ROLLBACK_INDEX_5: &str = "test_image_with_rollback_index_5.img";
 const TEST_IMG_WITH_PROP_DESC_PATH: &str = "test_image_with_prop_desc.img";
+const TEST_IMG_WITH_SERVICE_VM_PROP_PATH: &str = "test_image_with_service_vm_prop.img";
+const TEST_IMG_WITH_UNKNOWN_VM_TYPE_PROP_PATH: &str = "test_image_with_unknown_vm_type_prop.img";
+const TEST_IMG_WITH_MULTIPLE_PROPS_PATH: &str = "test_image_with_multiple_props.img";
+const TEST_IMG_WITH_DUPLICATED_CAP_PATH: &str = "test_image_with_duplicated_capability.img";
 const TEST_IMG_WITH_NON_INITRD_HASHDESC_PATH: &str = "test_image_with_non_initrd_hashdesc.img";
 const TEST_IMG_WITH_INITRD_AND_NON_INITRD_DESC_PATH: &str =
     "test_image_with_initrd_and_non_initrd_desc.img";
+const TEST_IMG_WITH_MULTIPLE_CAPABILITIES: &str = "test_image_with_multiple_capabilities.img";
 const UNSIGNED_TEST_IMG_PATH: &str = "unsigned_test.img";
 
 const RANDOM_FOOTER_POS: usize = 30;
@@ -56,7 +63,7 @@
     let public_key = load_trusted_public_key()?;
     let verified_boot_data = verify_payload(
         &fs::read(TEST_IMG_WITH_ONE_HASHDESC_PATH)?,
-        /*initrd=*/ None,
+        /* initrd= */ None,
         &public_key,
     )
     .map_err(|e| anyhow!("Verification failed. Error: {}", e))?;
@@ -67,6 +74,8 @@
         kernel_digest,
         initrd_digest: None,
         public_key: &public_key,
+        capabilities: vec![],
+        rollback_index: 0,
     };
     assert_eq!(expected_boot_data, verified_boot_data);
 
@@ -77,9 +86,9 @@
 fn payload_with_non_initrd_descriptor_fails_verification_with_no_initrd() -> Result<()> {
     assert_payload_verification_fails(
         &fs::read(TEST_IMG_WITH_NON_INITRD_HASHDESC_PATH)?,
-        /*initrd=*/ None,
+        /* initrd= */ None,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        PvmfwVerifyError::InvalidDescriptors(DescriptorError::InvalidContents),
     )
 }
 
@@ -89,7 +98,61 @@
         &fs::read(TEST_IMG_WITH_INITRD_AND_NON_INITRD_DESC_PATH)?,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        PvmfwVerifyError::InvalidDescriptors(DescriptorError::InvalidContents),
+    )
+}
+
+#[test]
+fn payload_expecting_no_initrd_passes_verification_with_service_vm_prop() -> Result<()> {
+    let public_key = load_trusted_public_key()?;
+    let verified_boot_data = verify_payload(
+        &fs::read(TEST_IMG_WITH_SERVICE_VM_PROP_PATH)?,
+        /* initrd= */ None,
+        &public_key,
+    )
+    .map_err(|e| anyhow!("Verification failed. Error: {}", e))?;
+
+    let kernel_digest = hash(&[&hex::decode("2131")?, &fs::read(UNSIGNED_TEST_IMG_PATH)?]);
+    let expected_boot_data = VerifiedBootData {
+        debug_level: DebugLevel::None,
+        kernel_digest,
+        initrd_digest: None,
+        public_key: &public_key,
+        capabilities: vec![Capability::RemoteAttest],
+        rollback_index: 0,
+    };
+    assert_eq!(expected_boot_data, verified_boot_data);
+
+    Ok(())
+}
+
+#[test]
+fn payload_with_unknown_vm_type_fails_verification_with_no_initrd() -> Result<()> {
+    assert_payload_verification_fails(
+        &fs::read(TEST_IMG_WITH_UNKNOWN_VM_TYPE_PROP_PATH)?,
+        /* initrd= */ None,
+        &load_trusted_public_key()?,
+        PvmfwVerifyError::UnknownVbmetaProperty,
+    )
+}
+
+#[test]
+fn payload_with_multiple_props_fails_verification_with_no_initrd() -> Result<()> {
+    assert_payload_verification_fails(
+        &fs::read(TEST_IMG_WITH_MULTIPLE_PROPS_PATH)?,
+        /* initrd= */ None,
+        &load_trusted_public_key()?,
+        PvmfwVerifyError::InvalidDescriptors(DescriptorError::InvalidContents),
+    )
+}
+
+#[test]
+fn payload_with_duplicated_capability_fails_verification_with_no_initrd() -> Result<()> {
+    assert_payload_verification_fails(
+        &fs::read(TEST_IMG_WITH_DUPLICATED_CAP_PATH)?,
+        /* initrd= */ None,
+        &load_trusted_public_key()?,
+        SlotVerifyError::InvalidMetadata.into(),
     )
 }
 
@@ -97,9 +160,9 @@
 fn payload_with_prop_descriptor_fails_verification_with_no_initrd() -> Result<()> {
     assert_payload_verification_fails(
         &fs::read(TEST_IMG_WITH_PROP_DESC_PATH)?,
-        /*initrd=*/ None,
+        /* initrd= */ None,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        PvmfwVerifyError::UnknownVbmetaProperty,
     )
 }
 
@@ -107,9 +170,9 @@
 fn payload_expecting_initrd_fails_verification_with_no_initrd() -> Result<()> {
     assert_payload_verification_fails(
         &load_latest_signed_kernel()?,
-        /*initrd=*/ None,
+        /* initrd= */ None,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        SlotVerifyError::InvalidMetadata.into(),
     )
 }
 
@@ -118,8 +181,8 @@
     assert_payload_verification_with_initrd_fails(
         &load_latest_signed_kernel()?,
         &load_latest_initrd_normal()?,
-        /*trusted_public_key=*/ &[0u8; 0],
-        AvbSlotVerifyError::PublicKeyRejected,
+        /* trusted_public_key= */ &[0u8; 0],
+        SlotVerifyError::PublicKeyRejected.into(),
     )
 }
 
@@ -128,8 +191,8 @@
     assert_payload_verification_with_initrd_fails(
         &load_latest_signed_kernel()?,
         &load_latest_initrd_normal()?,
-        /*trusted_public_key=*/ &[0u8; 512],
-        AvbSlotVerifyError::PublicKeyRejected,
+        /* trusted_public_key= */ &[0u8; 512],
+        SlotVerifyError::PublicKeyRejected.into(),
     )
 }
 
@@ -139,7 +202,7 @@
         &load_latest_signed_kernel()?,
         &load_latest_initrd_normal()?,
         &fs::read(PUBLIC_KEY_RSA2048_PATH)?,
-        AvbSlotVerifyError::PublicKeyRejected,
+        SlotVerifyError::PublicKeyRejected.into(),
     )
 }
 
@@ -147,9 +210,9 @@
 fn payload_with_an_invalid_initrd_fails_verification() -> Result<()> {
     assert_payload_verification_with_initrd_fails(
         &load_latest_signed_kernel()?,
-        /*initrd=*/ &fs::read(UNSIGNED_TEST_IMG_PATH)?,
+        /* initrd= */ &fs::read(UNSIGNED_TEST_IMG_PATH)?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )
 }
 
@@ -159,7 +222,7 @@
         &fs::read(UNSIGNED_TEST_IMG_PATH)?,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Io,
+        SlotVerifyError::Io.into(),
     )
 }
 
@@ -172,7 +235,7 @@
         &kernel,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )
 }
 
@@ -183,10 +246,15 @@
     let total_len = kernel.len() as u64;
     let footer = extract_avb_footer(&kernel)?;
     assert!(footer.vbmeta_offset < total_len);
+    // TODO: use core::mem::offset_of once stable.
+    let footer_addr = ptr::addr_of!(footer) as *const u8;
     let vbmeta_offset_addr = ptr::addr_of!(footer.vbmeta_offset) as *const u8;
-    // SAFETY: It is safe as both raw pointers `vbmeta_offset_addr` and `footer` are not null.
     let vbmeta_offset_start =
-        unsafe { vbmeta_offset_addr.offset_from(ptr::addr_of!(footer) as *const u8) };
+        // SAFETY:
+        // - both raw pointers `vbmeta_offset_addr` and `footer_addr` are not null;
+        // - they are both derived from the `footer` object;
+        // - the offset is known from the struct definition to be a small positive number of bytes.
+        unsafe { vbmeta_offset_addr.offset_from(footer_addr) };
     let footer_start = kernel.len() - size_of::<AvbFooter>();
     let vbmeta_offset_start = footer_start + usize::try_from(vbmeta_offset_start)?;
 
@@ -205,7 +273,7 @@
             &kernel,
             &load_latest_initrd_normal()?,
             &load_trusted_public_key()?,
-            AvbSlotVerifyError::Io,
+            SlotVerifyError::Io.into(),
         )?;
     }
     Ok(())
@@ -221,7 +289,7 @@
         &kernel,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        SlotVerifyError::InvalidMetadata.into(),
     )
 }
 
@@ -234,7 +302,7 @@
         &load_latest_signed_kernel()?,
         &initrd,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )
 }
 
@@ -250,7 +318,7 @@
         &kernel,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::InvalidMetadata,
+        SlotVerifyError::InvalidMetadata.into(),
     )
 }
 
@@ -273,13 +341,13 @@
         &kernel,
         &load_latest_initrd_normal()?,
         &empty_public_key,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )?;
     assert_payload_verification_with_initrd_fails(
         &kernel,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )
 }
 
@@ -317,6 +385,44 @@
         &kernel,
         &load_latest_initrd_normal()?,
         &load_trusted_public_key()?,
-        AvbSlotVerifyError::Verification,
+        SlotVerifyError::Verification(None).into(),
     )
 }
+
+#[test]
+fn payload_with_rollback_index() -> Result<()> {
+    let public_key = load_trusted_public_key()?;
+    let verified_boot_data = verify_payload(
+        &fs::read(TEST_IMG_WITH_ROLLBACK_INDEX_5)?,
+        /* initrd= */ None,
+        &public_key,
+    )
+    .map_err(|e| anyhow!("Verification failed. Error: {}", e))?;
+
+    let kernel_digest = hash(&[&hex::decode("1211")?, &fs::read(UNSIGNED_TEST_IMG_PATH)?]);
+    let expected_boot_data = VerifiedBootData {
+        debug_level: DebugLevel::None,
+        kernel_digest,
+        initrd_digest: None,
+        public_key: &public_key,
+        capabilities: vec![],
+        rollback_index: 5,
+    };
+    assert_eq!(expected_boot_data, verified_boot_data);
+    Ok(())
+}
+
+#[test]
+fn payload_with_multiple_capabilities() -> Result<()> {
+    let public_key = load_trusted_public_key()?;
+    let verified_boot_data = verify_payload(
+        &fs::read(TEST_IMG_WITH_MULTIPLE_CAPABILITIES)?,
+        /* initrd= */ None,
+        &public_key,
+    )
+    .map_err(|e| anyhow!("Verification failed. Error: {}", e))?;
+
+    assert!(verified_boot_data.has_capability(Capability::RemoteAttest));
+    assert!(verified_boot_data.has_capability(Capability::SecretkeeperProtection));
+    Ok(())
+}
diff --git a/pvmfw/avb/tests/utils.rs b/pvmfw/avb/tests/utils.rs
index 6713846..cf37fcf 100644
--- a/pvmfw/avb/tests/utils.rs
+++ b/pvmfw/avb/tests/utils.rs
@@ -22,7 +22,9 @@
     AvbVBMetaImageHeader,
 };
 use openssl::sha;
-use pvmfw_avb::{verify_payload, AvbSlotVerifyError, DebugLevel, Digest, VerifiedBootData};
+use pvmfw_avb::{
+    verify_payload, Capability, DebugLevel, Digest, PvmfwVerifyError, VerifiedBootData,
+};
 use std::{
     fs,
     mem::{size_of, transmute, MaybeUninit},
@@ -39,7 +41,7 @@
     kernel: &[u8],
     initrd: &[u8],
     trusted_public_key: &[u8],
-    expected_error: AvbSlotVerifyError,
+    expected_error: PvmfwVerifyError,
 ) -> Result<()> {
     assert_payload_verification_fails(kernel, Some(initrd), trusted_public_key, expected_error)
 }
@@ -48,7 +50,7 @@
     kernel: &[u8],
     initrd: Option<&[u8]>,
     trusted_public_key: &[u8],
-    expected_error: AvbSlotVerifyError,
+    expected_error: PvmfwVerifyError,
 ) -> Result<()> {
     assert_eq!(expected_error, verify_payload(kernel, initrd, trusted_public_key).unwrap_err());
     Ok(())
@@ -110,12 +112,16 @@
     let footer = extract_avb_footer(&kernel)?;
     let kernel_digest =
         hash(&[&hash(&[b"bootloader"]), &kernel[..usize::try_from(footer.original_image_size)?]]);
+    let capabilities =
+        if cfg!(llpvm_changes) { vec![Capability::SecretkeeperProtection] } else { vec![] };
     let initrd_digest = Some(hash(&[&hash(&[initrd_salt]), initrd]));
     let expected_boot_data = VerifiedBootData {
         debug_level: expected_debug_level,
         kernel_digest,
         initrd_digest,
         public_key: &public_key,
+        capabilities,
+        rollback_index: if cfg!(llpvm_changes) { 1 } else { 0 },
     };
     assert_eq!(expected_boot_data, verified_boot_data);
 
diff --git a/pvmfw/platform.dts b/pvmfw/platform.dts
index a7b1de7..9abc123 100644
--- a/pvmfw/platform.dts
+++ b/pvmfw/platform.dts
@@ -37,6 +37,7 @@
 		ranges;
 		swiotlb: restricted_dma_reserved {
 			compatible = "restricted-dma-pool";
+			reg = <PLACEHOLDER4>;
 			size = <PLACEHOLDER2>;
 			alignment = <PLACEHOLDER2>;
 		};
@@ -224,6 +225,8 @@
 			0x3000 0x0 0x0 1 &intc 0 0 GIC_SPI (IRQ_BASE + 5) IRQ_TYPE_LEVEL_HIGH
 			0x3800 0x0 0x0 1 &intc 0 0 GIC_SPI (IRQ_BASE + 6) IRQ_TYPE_LEVEL_HIGH
 			0x4000 0x0 0x0 1 &intc 0 0 GIC_SPI (IRQ_BASE + 7) IRQ_TYPE_LEVEL_HIGH
+			0x4800 0x0 0x0 1 &intc 0 0 GIC_SPI (IRQ_BASE + 8) IRQ_TYPE_LEVEL_HIGH
+			0x5000 0x0 0x0 1 &intc 0 0 GIC_SPI (IRQ_BASE + 9) IRQ_TYPE_LEVEL_HIGH
 		>;
 		interrupt-map-mask = <0xf800 0x0 0x0 0x7
 				      0xf800 0x0 0x0 0x7
@@ -232,6 +235,8 @@
 				      0xf800 0x0 0x0 0x7
 				      0xf800 0x0 0x0 0x7
 				      0xf800 0x0 0x0 0x7
+				      0xf800 0x0 0x0 0x7
+				      0xf800 0x0 0x0 0x7
 				      0xf800 0x0 0x0 0x7>;
 	};
 
@@ -256,4 +261,64 @@
 		clock-frequency = <10>;
 		timeout-sec = <8>;
 	};
+
+	pviommu_0: pviommu0 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_1: pviommu1 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_2: pviommu2 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_3: pviommu3 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_4: pviommu4 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_5: pviommu5 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_6: pviommu6 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_7: pviommu7 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_8: pviommu8 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
+
+	pviommu_9: pviommu9 {
+		compatible = "pkvm,pviommu";
+		id = <PLACEHOLDER>;
+		#iommu-cells = <1>;
+	};
 };
diff --git a/pvmfw/src/bootargs.rs b/pvmfw/src/bootargs.rs
index f9c8278..aacd8e0 100644
--- a/pvmfw/src/bootargs.rs
+++ b/pvmfw/src/bootargs.rs
@@ -94,7 +94,7 @@
         // after.
         let name_end = arg.find(|c: char| c.is_whitespace() || c == '=').unwrap_or(arg.len());
         let (arg, equal_sign) = match arg.chars().nth(name_end) {
-            Some(c) if c == '=' => {
+            Some('=') => {
                 let value_end = name_end + Self::find_value_end(&arg[name_end..]);
                 (&arg[..value_end], Some(name_end))
             }
@@ -106,14 +106,9 @@
 }
 
 #[cfg(test)]
-#[allow(dead_code)]
-mod helpers;
-
-#[cfg(test)]
 mod tests {
-
     use super::*;
-    use crate::cstr;
+    use cstr::cstr;
 
     fn check(raw: &CStr, expected: Result<&[(&str, Option<&str>)], ()>) {
         let actual = BootArgsIterator::new(raw);
diff --git a/pvmfw/src/config.rs b/pvmfw/src/config.rs
index b90b136..5a3d138 100644
--- a/pvmfw/src/config.rs
+++ b/pvmfw/src/config.rs
@@ -14,27 +14,28 @@
 
 //! Support for the pvmfw configuration data format.
 
-use crate::helpers;
 use core::fmt;
 use core::mem;
+use core::num::NonZeroUsize;
 use core::ops::Range;
 use core::result;
-use zerocopy::{FromBytes, LayoutVerified};
+use log::{info, warn};
+use static_assertions::const_assert_eq;
+use vmbase::util::RangeExt;
+use zerocopy::{FromBytes, FromZeroes};
 
 /// Configuration data header.
 #[repr(C, packed)]
-#[derive(Clone, Copy, Debug, FromBytes)]
+#[derive(Clone, Copy, Debug, FromZeroes, FromBytes)]
 struct Header {
     /// Magic number; must be `Header::MAGIC`.
     magic: u32,
     /// Version of the header format.
-    version: u32,
+    version: Version,
     /// Total size of the configuration data.
     total_size: u32,
     /// Feature flags; currently reserved and must be zero.
     flags: u32,
-    /// (offset, size) pairs used to locate individual entries appended to the header.
-    entries: [HeaderEntry; Entry::COUNT],
 }
 
 #[derive(Debug)]
@@ -46,15 +47,15 @@
     /// Header doesn't contain the expect magic value.
     InvalidMagic,
     /// Version of the header isn't supported.
-    UnsupportedVersion(u16, u16),
-    /// Header sets flags incorrectly or uses reserved flags.
-    InvalidFlags(u32),
+    UnsupportedVersion(Version),
     /// Header describes configuration data that doesn't fit in the expected buffer.
     InvalidSize(usize),
     /// Header entry is missing.
     MissingEntry(Entry),
-    /// Header entry is invalid.
-    InvalidEntry(Entry, EntryError),
+    /// Range described by entry does not fit within config data.
+    EntryOutOfBounds(Entry, Range<usize>, Range<usize>),
+    /// Entries are in out of order
+    EntryOutOfOrder,
 }
 
 impl fmt::Display for Error {
@@ -63,183 +64,241 @@
             Self::BufferTooSmall => write!(f, "Reserved region is smaller than config header"),
             Self::HeaderMisaligned => write!(f, "Reserved region is misaligned"),
             Self::InvalidMagic => write!(f, "Wrong magic number"),
-            Self::UnsupportedVersion(x, y) => write!(f, "Version {x}.{y} not supported"),
-            Self::InvalidFlags(v) => write!(f, "Flags value {v:#x} is incorrect or reserved"),
+            Self::UnsupportedVersion(v) => write!(f, "Version {v} not supported"),
             Self::InvalidSize(sz) => write!(f, "Total size ({sz:#x}) overflows reserved region"),
             Self::MissingEntry(entry) => write!(f, "Mandatory {entry:?} entry is missing"),
-            Self::InvalidEntry(entry, e) => write!(f, "Invalid {entry:?} entry: {e}"),
+            Self::EntryOutOfBounds(entry, range, limits) => {
+                write!(
+                    f,
+                    "Entry {entry:?} out of bounds: {range:#x?} must be within range {limits:#x?}"
+                )
+            }
+            Self::EntryOutOfOrder => write!(f, "Entries are out of order"),
         }
     }
 }
 
 pub type Result<T> = result::Result<T, Error>;
 
-#[derive(Debug)]
-pub enum EntryError {
-    /// Offset isn't between the fixed minimum value and size of configuration data.
-    InvalidOffset(usize),
-    /// Size must be zero when offset is and not be when it isn't.
-    InvalidSize(usize),
-    /// Entry isn't fully within the configuration data structure.
-    OutOfBounds { offset: usize, size: usize, limit: usize },
-}
-
-impl fmt::Display for EntryError {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        match self {
-            Self::InvalidOffset(offset) => write!(f, "Invalid offset: {offset:#x?}"),
-            Self::InvalidSize(sz) => write!(f, "Invalid size: {sz:#x?}"),
-            Self::OutOfBounds { offset, size, limit } => {
-                let range = Header::PADDED_SIZE..*limit;
-                let entry = *offset..(*offset + *size);
-                write!(f, "Out of bounds: {entry:#x?} must be within range {range:#x?}")
-            }
-        }
-    }
-}
-
 impl Header {
     const MAGIC: u32 = u32::from_ne_bytes(*b"pvmf");
-    const VERSION_1_0: u32 = Self::version(1, 0);
-    const PADDED_SIZE: usize =
-        helpers::unchecked_align_up(mem::size_of::<Self>(), mem::size_of::<u64>());
-
-    pub const fn version(major: u16, minor: u16) -> u32 {
-        ((major as u32) << 16) | (minor as u32)
-    }
-
-    pub const fn version_tuple(&self) -> (u16, u16) {
-        ((self.version >> 16) as u16, self.version as u16)
-    }
+    const VERSION_1_0: Version = Version { major: 1, minor: 0 };
+    const VERSION_1_1: Version = Version { major: 1, minor: 1 };
+    const VERSION_1_2: Version = Version { major: 1, minor: 2 };
 
     pub fn total_size(&self) -> usize {
         self.total_size as usize
     }
 
-    pub fn body_size(&self) -> usize {
-        self.total_size() - Self::PADDED_SIZE
+    pub fn body_lowest_bound(&self) -> Result<usize> {
+        let entries_offset = mem::size_of::<Self>();
+
+        // Ensure that the entries are properly aligned and do not require padding.
+        const_assert_eq!(mem::align_of::<Header>() % mem::align_of::<HeaderEntry>(), 0);
+        const_assert_eq!(mem::size_of::<Header>() % mem::align_of::<HeaderEntry>(), 0);
+
+        let entries_size = self.entry_count()?.checked_mul(mem::size_of::<HeaderEntry>()).unwrap();
+
+        Ok(entries_offset.checked_add(entries_size).unwrap())
     }
 
-    fn get_body_range(&self, entry: Entry) -> Result<Option<Range<usize>>> {
-        let e = self.entries[entry as usize];
-        let offset = e.offset as usize;
-        let size = e.size as usize;
-
-        match self._get_body_range(offset, size) {
-            Ok(r) => Ok(r),
-            Err(EntryError::InvalidSize(0)) => {
-                // As our bootloader currently uses this (non-compliant) case, permit it for now.
-                log::warn!("Config entry {entry:?} uses non-zero offset with zero size");
-                // TODO(b/262181812): Either make this case valid or fix the bootloader.
-                Ok(None)
+    pub fn entry_count(&self) -> Result<usize> {
+        let last_entry = match self.version {
+            Self::VERSION_1_0 => Entry::DebugPolicy,
+            Self::VERSION_1_1 => Entry::VmDtbo,
+            Self::VERSION_1_2 => Entry::VmBaseDtbo,
+            v @ Version { major: 1, .. } => {
+                const LATEST: Version = Header::VERSION_1_2;
+                warn!("Parsing unknown config data version {v} as version {LATEST}");
+                return Ok(Entry::COUNT);
             }
-            Err(e) => Err(Error::InvalidEntry(entry, e)),
-        }
-    }
+            v => return Err(Error::UnsupportedVersion(v)),
+        };
 
-    fn _get_body_range(
-        &self,
-        offset: usize,
-        size: usize,
-    ) -> result::Result<Option<Range<usize>>, EntryError> {
-        match (offset, size) {
-            (0, 0) => Ok(None),
-            (0, size) | (_, size @ 0) => Err(EntryError::InvalidSize(size)),
-            _ => {
-                let start = offset
-                    .checked_sub(Header::PADDED_SIZE)
-                    .ok_or(EntryError::InvalidOffset(offset))?;
-                let end = start
-                    .checked_add(size)
-                    .filter(|x| *x <= self.body_size())
-                    .ok_or(EntryError::OutOfBounds { offset, size, limit: self.total_size() })?;
-
-                Ok(Some(start..end))
-            }
-        }
+        Ok(last_entry as usize + 1)
     }
 }
 
 #[derive(Clone, Copy, Debug)]
 pub enum Entry {
-    Bcc = 0,
-    DebugPolicy = 1,
+    Bcc,
+    DebugPolicy,
+    VmDtbo,
+    VmBaseDtbo,
+    #[allow(non_camel_case_types)] // TODO: Use mem::variant_count once stable.
+    _VARIANT_COUNT,
 }
 
 impl Entry {
-    const COUNT: usize = 2;
+    const COUNT: usize = Self::_VARIANT_COUNT as usize;
+
+    const ALL_ENTRIES: [Entry; Self::COUNT] =
+        [Self::Bcc, Self::DebugPolicy, Self::VmDtbo, Self::VmBaseDtbo];
+}
+
+#[derive(Default)]
+pub struct Entries<'a> {
+    pub bcc: &'a mut [u8],
+    pub debug_policy: Option<&'a [u8]>,
+    pub vm_dtbo: Option<&'a mut [u8]>,
+    pub vm_ref_dt: Option<&'a [u8]>,
 }
 
 #[repr(packed)]
-#[derive(Clone, Copy, Debug, FromBytes)]
+#[derive(Clone, Copy, Debug, FromZeroes, FromBytes)]
 struct HeaderEntry {
     offset: u32,
     size: u32,
 }
 
+#[repr(C, packed)]
+#[derive(Clone, Copy, Debug, Eq, FromZeroes, FromBytes, PartialEq)]
+pub struct Version {
+    minor: u16,
+    major: u16,
+}
+
+impl fmt::Display for Version {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        // Copy the fields to local variables to prevent unaligned access.
+        let (major, minor) = (self.major, self.minor);
+        write!(f, "{}.{}", major, minor)
+    }
+}
+
+/// Range with non-empty length.
+#[derive(Debug, Copy, Clone)]
+struct NonEmptyRange {
+    start: usize,
+    size: NonZeroUsize,
+}
+
+impl NonEmptyRange {
+    pub fn new(start: usize, size: usize) -> Option<Self> {
+        // Ensure end() is safe.
+        start.checked_add(size).unwrap();
+
+        Some(Self { start, size: NonZeroUsize::new(size)? })
+    }
+
+    fn end(&self) -> usize {
+        self.start + self.len()
+    }
+
+    fn len(&self) -> usize {
+        self.size.into()
+    }
+
+    fn as_range(&self) -> Range<usize> {
+        self.start..self.end()
+    }
+}
+
 #[derive(Debug)]
 pub struct Config<'a> {
     body: &'a mut [u8],
-    bcc_range: Range<usize>,
-    dp_range: Option<Range<usize>>,
+    ranges: [Option<NonEmptyRange>; Entry::COUNT],
 }
 
 impl<'a> Config<'a> {
     /// Take ownership of a pvmfw configuration consisting of its header and following entries.
-    ///
-    /// SAFETY - 'data' should respect the alignment of Header.
-    pub unsafe fn new(data: &'a mut [u8]) -> Result<Self> {
-        let header = data.get(..Header::PADDED_SIZE).ok_or(Error::BufferTooSmall)?;
+    pub fn new(bytes: &'a mut [u8]) -> Result<Self> {
+        const HEADER_SIZE: usize = mem::size_of::<Header>();
+        if bytes.len() < HEADER_SIZE {
+            return Err(Error::BufferTooSmall);
+        }
 
-        let (header, _) =
-            LayoutVerified::<_, Header>::new_from_prefix(header).ok_or(Error::HeaderMisaligned)?;
+        let (header, rest) =
+            zerocopy::Ref::<_, Header>::new_from_prefix(bytes).ok_or(Error::HeaderMisaligned)?;
         let header = header.into_ref();
 
         if header.magic != Header::MAGIC {
             return Err(Error::InvalidMagic);
         }
 
-        if header.version != Header::VERSION_1_0 {
-            let (major, minor) = header.version_tuple();
-            return Err(Error::UnsupportedVersion(major, minor));
+        let header_flags = header.flags;
+        if header_flags != 0 {
+            warn!("Ignoring unknown config flags: {header_flags:#x}");
         }
 
-        if header.flags != 0 {
-            return Err(Error::InvalidFlags(header.flags));
-        }
+        info!("pvmfw config version: {}", header.version);
 
-        let bcc_range =
-            header.get_body_range(Entry::Bcc)?.ok_or(Error::MissingEntry(Entry::Bcc))?;
-        let dp_range = header.get_body_range(Entry::DebugPolicy)?;
+        // Validate that we won't get an invalid alignment in the following due to padding to u64.
+        const_assert_eq!(HEADER_SIZE % mem::size_of::<u64>(), 0);
 
-        let body_size = header.body_size();
+        // Ensure that Header::total_size isn't larger than anticipated by the caller and resize
+        // the &[u8] to catch OOB accesses to entries/blobs.
         let total_size = header.total_size();
-        let body = data
-            .get_mut(Header::PADDED_SIZE..)
-            .ok_or(Error::BufferTooSmall)?
-            .get_mut(..body_size)
-            .ok_or(Error::InvalidSize(total_size))?;
-
-        Ok(Self { body, bcc_range, dp_range })
-    }
-
-    /// Get slice containing the platform BCC.
-    pub fn get_entries(&mut self) -> (&mut [u8], Option<&mut [u8]>) {
-        let bcc_start = self.bcc_range.start;
-        let bcc_end = self.bcc_range.len();
-        let (_, rest) = self.body.split_at_mut(bcc_start);
-        let (bcc, rest) = rest.split_at_mut(bcc_end);
-
-        let dp = if let Some(dp_range) = &self.dp_range {
-            let dp_start = dp_range.start.checked_sub(self.bcc_range.end).unwrap();
-            let dp_end = dp_range.len();
-            let (_, rest) = rest.split_at_mut(dp_start);
-            let (dp, _) = rest.split_at_mut(dp_end);
-            Some(dp)
+        let rest = if let Some(rest_size) = total_size.checked_sub(HEADER_SIZE) {
+            rest.get_mut(..rest_size).ok_or(Error::InvalidSize(total_size))?
         } else {
-            None
+            return Err(Error::InvalidSize(total_size));
         };
 
-        (bcc, dp)
+        let (header_entries, body) =
+            zerocopy::Ref::<_, [HeaderEntry]>::new_slice_from_prefix(rest, header.entry_count()?)
+                .ok_or(Error::BufferTooSmall)?;
+
+        // Validate that we won't get an invalid alignment in the following due to padding to u64.
+        const_assert_eq!(mem::size_of::<HeaderEntry>() % mem::size_of::<u64>(), 0);
+
+        // Ensure entries are in the body.
+        let limits = header.body_lowest_bound()?..total_size;
+        let mut ranges: [Option<NonEmptyRange>; Entry::COUNT] = [None; Entry::COUNT];
+        let mut last_end = 0;
+        for entry in Entry::ALL_ENTRIES {
+            let Some(header_entry) = header_entries.get(entry as usize) else { continue };
+            let entry_offset = header_entry.offset.try_into().unwrap();
+            let entry_size = header_entry.size.try_into().unwrap();
+            let Some(range) = NonEmptyRange::new(entry_offset, entry_size) else { continue };
+            let range = range.as_range();
+            if !range.is_within(&limits) {
+                return Err(Error::EntryOutOfBounds(entry, range, limits));
+            }
+
+            if last_end > range.start {
+                return Err(Error::EntryOutOfOrder);
+            }
+            last_end = range.end;
+
+            ranges[entry as usize] = NonEmptyRange::new(
+                entry_offset - limits.start, // is_within() validates safety of this.
+                entry_size,
+            );
+        }
+        // Ensures that BCC exists.
+        ranges[Entry::Bcc as usize].ok_or(Error::MissingEntry(Entry::Bcc))?;
+
+        Ok(Self { body, ranges })
+    }
+
+    /// Locate the various config entries.
+    pub fn get_entries(self) -> Entries<'a> {
+        // We require the blobs to be in the same order as the `Entry` enum (and this is checked
+        // in `new` above)
+        // So we can just work through the body range and split off the parts we are interested in.
+        let mut offset = 0;
+        let mut body = self.body;
+
+        let mut entries: [Option<&mut [u8]>; Entry::COUNT] = Default::default();
+        for (i, range) in self.ranges.iter().enumerate() {
+            if let Some(range) = range {
+                body = &mut body[range.start - offset..];
+                let (chunk, rest) = body.split_at_mut(range.len());
+                offset = range.end();
+                body = rest;
+                entries[i] = Some(chunk);
+            }
+        }
+        let [bcc, debug_policy, vm_dtbo, vm_ref_dt] = entries;
+
+        // The platform BCC has always been required.
+        let bcc = bcc.unwrap();
+
+        // We have no reason to mutate so drop the `mut`.
+        let debug_policy = debug_policy.map(|x| &*x);
+        let vm_ref_dt = vm_ref_dt.map(|x| &*x);
+
+        Entries { bcc, debug_policy, vm_dtbo, vm_ref_dt }
     }
 }
diff --git a/pvmfw/src/crypto.rs b/pvmfw/src/crypto.rs
deleted file mode 100644
index d607bee..0000000
--- a/pvmfw/src/crypto.rs
+++ /dev/null
@@ -1,307 +0,0 @@
-// Copyright 2023, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Wrapper around BoringSSL/OpenSSL symbols.
-
-use core::convert::AsRef;
-use core::ffi::{c_char, c_int, CStr};
-use core::fmt;
-use core::mem::MaybeUninit;
-use core::num::NonZeroU32;
-use core::ptr;
-
-use crate::cstr;
-
-use bssl_ffi::CRYPTO_library_init;
-use bssl_ffi::ERR_get_error_line;
-use bssl_ffi::ERR_lib_error_string;
-use bssl_ffi::ERR_reason_error_string;
-use bssl_ffi::EVP_AEAD_CTX_aead;
-use bssl_ffi::EVP_AEAD_CTX_init;
-use bssl_ffi::EVP_AEAD_CTX_open;
-use bssl_ffi::EVP_AEAD_CTX_seal;
-use bssl_ffi::EVP_AEAD_max_overhead;
-use bssl_ffi::EVP_aead_aes_256_gcm_randnonce;
-use bssl_ffi::EVP_sha512;
-use bssl_ffi::EVP_AEAD;
-use bssl_ffi::EVP_AEAD_CTX;
-use bssl_ffi::HKDF;
-
-#[derive(Debug)]
-pub struct Error {
-    packed: NonZeroU32,
-    file: Option<&'static CStr>,
-    line: c_int,
-}
-
-impl Error {
-    fn get() -> Option<Self> {
-        let mut file = MaybeUninit::uninit();
-        let mut line = MaybeUninit::uninit();
-        // SAFETY - The function writes to the provided pointers, validated below.
-        let packed = unsafe { ERR_get_error_line(file.as_mut_ptr(), line.as_mut_ptr()) };
-        // SAFETY - Any possible value returned could be considered a valid *const c_char.
-        let file = unsafe { file.assume_init() };
-        // SAFETY - Any possible value returned could be considered a valid c_int.
-        let line = unsafe { line.assume_init() };
-
-        let packed = packed.try_into().ok()?;
-        // SAFETY - Any non-NULL result is expected to point to a global const C string.
-        let file = unsafe { as_static_cstr(file) };
-
-        Some(Self { packed, file, line })
-    }
-
-    fn packed_value(&self) -> u32 {
-        self.packed.get()
-    }
-
-    fn library_name(&self) -> Option<&'static CStr> {
-        // SAFETY - Call to a pure function.
-        let name = unsafe { ERR_lib_error_string(self.packed_value()) };
-        // SAFETY - Any non-NULL result is expected to point to a global const C string.
-        unsafe { as_static_cstr(name) }
-    }
-
-    fn reason(&self) -> Option<&'static CStr> {
-        // SAFETY - Call to a pure function.
-        let reason = unsafe { ERR_reason_error_string(self.packed_value()) };
-        // SAFETY - Any non-NULL result is expected to point to a global const C string.
-        unsafe { as_static_cstr(reason) }
-    }
-}
-
-impl fmt::Display for Error {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        let packed = self.packed_value();
-        let library = self.library_name().unwrap_or(cstr!("{unknown library}")).to_str().unwrap();
-        let reason = self.reason().unwrap_or(cstr!("{unknown reason}")).to_str().unwrap();
-        let file = self.file.unwrap_or(cstr!("??")).to_str().unwrap();
-        let line = self.line;
-
-        write!(f, "{file}:{line}: {library}: {reason} ({packed:#x})")
-    }
-}
-
-#[derive(Copy, Clone)]
-pub struct ErrorIterator {}
-
-impl Iterator for ErrorIterator {
-    type Item = Error;
-
-    fn next(&mut self) -> Option<Self::Item> {
-        Self::Item::get()
-    }
-}
-
-pub type Result<T> = core::result::Result<T, ErrorIterator>;
-
-#[repr(transparent)]
-pub struct Aead(EVP_AEAD);
-
-impl Aead {
-    pub fn aes_256_gcm_randnonce() -> Option<&'static Self> {
-        // SAFETY - Returned pointer is checked below.
-        let aead = unsafe { EVP_aead_aes_256_gcm_randnonce() };
-        if aead.is_null() {
-            None
-        } else {
-            // SAFETY - We assume that the non-NULL value points to a valid and static EVP_AEAD.
-            Some(unsafe { &*(aead as *const _) })
-        }
-    }
-
-    pub fn max_overhead(&self) -> usize {
-        // SAFETY - Function should only read from self.
-        unsafe { EVP_AEAD_max_overhead(self.as_ref() as *const _) }
-    }
-}
-
-#[repr(transparent)]
-pub struct AeadCtx(EVP_AEAD_CTX);
-
-impl AeadCtx {
-    pub fn new_aes_256_gcm_randnonce(key: &[u8]) -> Result<Self> {
-        let aead = Aead::aes_256_gcm_randnonce().unwrap();
-
-        Self::new(aead, key)
-    }
-
-    fn new(aead: &'static Aead, key: &[u8]) -> Result<Self> {
-        const DEFAULT_TAG_LENGTH: usize = 0;
-        let engine = ptr::null_mut(); // Use default implementation.
-        let mut ctx = MaybeUninit::zeroed();
-        // SAFETY - Initialize the EVP_AEAD_CTX with const pointers to the AEAD and key.
-        let result = unsafe {
-            EVP_AEAD_CTX_init(
-                ctx.as_mut_ptr(),
-                aead.as_ref() as *const _,
-                key.as_ptr(),
-                key.len(),
-                DEFAULT_TAG_LENGTH,
-                engine,
-            )
-        };
-
-        if result == 1 {
-            // SAFETY - We assume that the non-NULL value points to a valid and static EVP_AEAD.
-            Ok(Self(unsafe { ctx.assume_init() }))
-        } else {
-            Err(ErrorIterator {})
-        }
-    }
-
-    pub fn aead(&self) -> Option<&'static Aead> {
-        // SAFETY - The function should only read from self.
-        let aead = unsafe { EVP_AEAD_CTX_aead(self.as_ref() as *const _) };
-        if aead.is_null() {
-            None
-        } else {
-            // SAFETY - We assume that the non-NULL value points to a valid and static EVP_AEAD.
-            Some(unsafe { &*(aead as *const _) })
-        }
-    }
-
-    pub fn open<'b>(&self, out: &'b mut [u8], data: &[u8]) -> Result<&'b mut [u8]> {
-        let nonce = ptr::null_mut();
-        let nonce_len = 0;
-        let ad = ptr::null_mut();
-        let ad_len = 0;
-        let mut out_len = MaybeUninit::uninit();
-        // SAFETY - The function should only read from self and write to out (at most the provided
-        // number of bytes) and out_len while reading from data (at most the provided number of
-        // bytes), ignoring any NULL input.
-        let result = unsafe {
-            EVP_AEAD_CTX_open(
-                self.as_ref() as *const _,
-                out.as_mut_ptr(),
-                out_len.as_mut_ptr(),
-                out.len(),
-                nonce,
-                nonce_len,
-                data.as_ptr(),
-                data.len(),
-                ad,
-                ad_len,
-            )
-        };
-
-        if result == 1 {
-            // SAFETY - Any value written to out_len could be a valid usize. The value itself is
-            // validated as being a proper slice length by panicking in the following indexing
-            // otherwise.
-            let out_len = unsafe { out_len.assume_init() };
-            Ok(&mut out[..out_len])
-        } else {
-            Err(ErrorIterator {})
-        }
-    }
-
-    pub fn seal<'b>(&self, out: &'b mut [u8], data: &[u8]) -> Result<&'b mut [u8]> {
-        let nonce = ptr::null_mut();
-        let nonce_len = 0;
-        let ad = ptr::null_mut();
-        let ad_len = 0;
-        let mut out_len = MaybeUninit::uninit();
-        // SAFETY - The function should only read from self and write to out (at most the provided
-        // number of bytes) while reading from data (at most the provided number of bytes),
-        // ignoring any NULL input.
-        let result = unsafe {
-            EVP_AEAD_CTX_seal(
-                self.as_ref() as *const _,
-                out.as_mut_ptr(),
-                out_len.as_mut_ptr(),
-                out.len(),
-                nonce,
-                nonce_len,
-                data.as_ptr(),
-                data.len(),
-                ad,
-                ad_len,
-            )
-        };
-
-        if result == 1 {
-            // SAFETY - Any value written to out_len could be a valid usize. The value itself is
-            // validated as being a proper slice length by panicking in the following indexing
-            // otherwise.
-            let out_len = unsafe { out_len.assume_init() };
-            Ok(&mut out[..out_len])
-        } else {
-            Err(ErrorIterator {})
-        }
-    }
-}
-
-/// Cast a C string pointer to a static non-mutable reference.
-///
-/// # Safety
-///
-/// The caller needs to ensure that the pointer is null or points to a valid C string and that the
-/// C lifetime of the string is compatible with a static Rust lifetime.
-unsafe fn as_static_cstr(p: *const c_char) -> Option<&'static CStr> {
-    if p.is_null() {
-        None
-    } else {
-        // Safety: Safe given the requirements of this function.
-        Some(unsafe { CStr::from_ptr(p) })
-    }
-}
-
-impl AsRef<EVP_AEAD> for Aead {
-    fn as_ref(&self) -> &EVP_AEAD {
-        &self.0
-    }
-}
-
-impl AsRef<EVP_AEAD_CTX> for AeadCtx {
-    fn as_ref(&self) -> &EVP_AEAD_CTX {
-        &self.0
-    }
-}
-
-pub fn hkdf_sh512<const N: usize>(secret: &[u8], salt: &[u8], info: &[u8]) -> Result<[u8; N]> {
-    let mut key = [0; N];
-    // SAFETY - The function shouldn't access any Rust variable and the returned value is accepted
-    // as a potentially NULL pointer.
-    let digest = unsafe { EVP_sha512() };
-
-    assert!(!digest.is_null());
-    // SAFETY - Only reads from/writes to the provided slices and supports digest was checked not
-    // be NULL.
-    let result = unsafe {
-        HKDF(
-            key.as_mut_ptr(),
-            key.len(),
-            digest,
-            secret.as_ptr(),
-            secret.len(),
-            salt.as_ptr(),
-            salt.len(),
-            info.as_ptr(),
-            info.len(),
-        )
-    };
-
-    if result == 1 {
-        Ok(key)
-    } else {
-        Err(ErrorIterator {})
-    }
-}
-
-pub fn init() {
-    // SAFETY - Configures the internal state of the library - may be called multiple times.
-    unsafe { CRYPTO_library_init() }
-}
diff --git a/pvmfw/src/device_assignment.rs b/pvmfw/src/device_assignment.rs
new file mode 100644
index 0000000..54b5a47
--- /dev/null
+++ b/pvmfw/src/device_assignment.rs
@@ -0,0 +1,1276 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Validate device assignment written in crosvm DT with VM DTBO, and apply it
+//! to platform DT.
+//! Declared in separated libs for adding unit tests, which requires libstd.
+
+#[cfg(test)]
+extern crate alloc;
+
+use alloc::collections::{BTreeMap, BTreeSet};
+use alloc::ffi::CString;
+use alloc::fmt;
+use alloc::vec;
+use alloc::vec::Vec;
+use core::ffi::CStr;
+use core::iter::Iterator;
+use core::mem;
+use hyp::DeviceAssigningHypervisor;
+use libfdt::{Fdt, FdtError, FdtNode, Phandle, Reg};
+use log::error;
+
+// TODO(b/308694211): Use cstr! from vmbase instead.
+macro_rules! cstr {
+    ($str:literal) => {{
+        const S: &str = concat!($str, "\0");
+        const C: &::core::ffi::CStr = match ::core::ffi::CStr::from_bytes_with_nul(S.as_bytes()) {
+            Ok(v) => v,
+            Err(_) => panic!("string contains interior NUL"),
+        };
+        C
+    }};
+}
+
+// TODO(b/277993056): Keep constants derived from platform.dts in one place.
+const CELLS_PER_INTERRUPT: usize = 3; // from /intc node in platform.dts
+
+/// Errors in device assignment.
+#[derive(Clone, Copy, Debug, Eq, PartialEq)]
+pub enum DeviceAssignmentError {
+    /// Invalid VM DTBO
+    InvalidDtbo,
+    /// Invalid __symbols__
+    InvalidSymbols,
+    /// Malformed <reg>. Can't parse.
+    MalformedReg,
+    /// Invalid <reg>. Failed to validate with HVC.
+    InvalidReg,
+    /// Invalid <interrupts>
+    InvalidInterrupts,
+    /// Malformed <iommus>
+    MalformedIommus,
+    /// Invalid <iommus>
+    InvalidIommus,
+    /// Invalid phys IOMMU node
+    InvalidPhysIommu,
+    /// Invalid pvIOMMU node
+    InvalidPvIommu,
+    /// Too many pvIOMMU
+    TooManyPvIommu,
+    /// Duplicated phys IOMMU IDs exist
+    DuplicatedIommuIds,
+    /// Duplicated pvIOMMU IDs exist
+    DuplicatedPvIommuIds,
+    /// Unsupported overlay target syntax. Only supports <target-path> with full path.
+    UnsupportedOverlayTarget,
+    /// Unsupported PhysIommu,
+    UnsupportedPhysIommu,
+    /// Unsupported (pvIOMMU id, vSID) duplication. Currently the pair should be unique.
+    UnsupportedPvIommusDuplication,
+    /// Unsupported (IOMMU token, SID) duplication. Currently the pair should be unique.
+    UnsupportedIommusDuplication,
+    /// Internal error
+    Internal,
+    /// Unexpected error from libfdt
+    UnexpectedFdtError(FdtError),
+}
+
+impl From<FdtError> for DeviceAssignmentError {
+    fn from(e: FdtError) -> Self {
+        DeviceAssignmentError::UnexpectedFdtError(e)
+    }
+}
+
+impl fmt::Display for DeviceAssignmentError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::InvalidDtbo => write!(f, "Invalid DTBO"),
+            Self::InvalidSymbols => write!(
+                f,
+                "Invalid property in /__symbols__. Must point to valid assignable device node."
+            ),
+            Self::MalformedReg => write!(f, "Malformed <reg>. Can't parse"),
+            Self::InvalidReg => write!(f, "Invalid <reg>. Failed to validate with hypervisor"),
+            Self::InvalidInterrupts => write!(f, "Invalid <interrupts>"),
+            Self::MalformedIommus => write!(f, "Malformed <iommus>. Can't parse."),
+            Self::InvalidIommus => {
+                write!(f, "Invalid <iommus>. Failed to validate with hypervisor")
+            }
+            Self::InvalidPhysIommu => write!(f, "Invalid phys IOMMU node"),
+            Self::InvalidPvIommu => write!(f, "Invalid pvIOMMU node"),
+            Self::TooManyPvIommu => write!(
+                f,
+                "Too many pvIOMMU node. Insufficient pre-populated pvIOMMUs in platform DT"
+            ),
+            Self::DuplicatedIommuIds => {
+                write!(f, "Duplicated IOMMU IDs exist. IDs must unique among iommu node")
+            }
+            Self::DuplicatedPvIommuIds => {
+                write!(f, "Duplicated pvIOMMU IDs exist. IDs must unique among iommu node")
+            }
+            Self::UnsupportedOverlayTarget => {
+                write!(f, "Unsupported overlay target. Only supports 'target-path = \"/\"'")
+            }
+            Self::UnsupportedPhysIommu => {
+                write!(f, "Unsupported Phys IOMMU. Currently only supports #iommu-cells = <1>")
+            }
+            Self::UnsupportedPvIommusDuplication => {
+                write!(f, "Unsupported (pvIOMMU id, vSID) duplication. Currently the pair should be unique.")
+            }
+            Self::UnsupportedIommusDuplication => {
+                write!(f, "Unsupported (IOMMU token, SID) duplication. Currently the pair should be unique.")
+            }
+            Self::Internal => write!(f, "Internal error"),
+            Self::UnexpectedFdtError(e) => write!(f, "Unexpected Error from libfdt: {e}"),
+        }
+    }
+}
+
+pub type Result<T> = core::result::Result<T, DeviceAssignmentError>;
+
+/// Represents VM DTBO
+#[repr(transparent)]
+pub struct VmDtbo(Fdt);
+
+impl VmDtbo {
+    /// Wraps a mutable slice containing a VM DTBO.
+    ///
+    /// Fails if the VM DTBO does not pass validation.
+    pub fn from_mut_slice(dtbo: &mut [u8]) -> Result<&mut Self> {
+        // This validates DTBO
+        let fdt = Fdt::from_mut_slice(dtbo)?;
+        // SAFETY: VmDtbo is a transparent wrapper around Fdt, so representation is the same.
+        Ok(unsafe { mem::transmute::<&mut Fdt, &mut Self>(fdt) })
+    }
+
+    // Locates device node path as if the given dtbo node path is assigned and VM DTBO is overlaid.
+    // For given dtbo node path, this concatenates <target-path> of the enclosing fragment and
+    // relative path from __overlay__ node.
+    //
+    // Here's an example with sample VM DTBO:
+    //    / {
+    //       fragment@rng {
+    //         target-path = "/";  // Always 'target-path = "/"'. Disallows <target> or other path.
+    //         __overlay__ {
+    //           rng { ... };      // Actual device node is here. If overlaid, path would be "/rng"
+    //         };
+    //       };
+    //       __symbols__ {         // List of assignable devices
+    //         // Each property describes an assigned device device information.
+    //         // property name is the device label, and property value is the path in the VM DTBO.
+    //         rng = "/fragment@rng/__overlay__/rng";
+    //       };
+    //    };
+    //
+    // Then locate_overlay_target_path(cstr!("/fragment@rng/__overlay__/rng")) is Ok("/rng")
+    //
+    // Contrary to fdt_overlay_target_offset(), this API enforces overlay target property
+    // 'target-path = "/"', so the overlay doesn't modify and/or append platform DT's existing
+    // node and/or properties. The enforcement is for compatibility reason.
+    fn locate_overlay_target_path(
+        &self,
+        dtbo_node_path: &CStr,
+        dtbo_node: &FdtNode,
+    ) -> Result<CString> {
+        let dtbo_node_path_bytes = dtbo_node_path.to_bytes();
+        if dtbo_node_path_bytes.first() != Some(&b'/') {
+            return Err(DeviceAssignmentError::UnsupportedOverlayTarget);
+        }
+
+        let fragment_node = dtbo_node.supernode_at_depth(1)?;
+        let target_path = fragment_node
+            .getprop_str(cstr!("target-path"))?
+            .ok_or(DeviceAssignmentError::InvalidDtbo)?;
+        if target_path != cstr!("/") {
+            return Err(DeviceAssignmentError::UnsupportedOverlayTarget);
+        }
+
+        let mut components = dtbo_node_path_bytes
+            .split(|char| *char == b'/')
+            .filter(|&component| !component.is_empty())
+            .skip(1);
+        let overlay_node_name = components.next();
+        if overlay_node_name != Some(b"__overlay__") {
+            return Err(DeviceAssignmentError::InvalidDtbo);
+        }
+        let mut overlaid_path = Vec::with_capacity(dtbo_node_path_bytes.len());
+        for component in components {
+            overlaid_path.push(b'/');
+            overlaid_path.extend_from_slice(component);
+        }
+        overlaid_path.push(b'\0');
+
+        Ok(CString::from_vec_with_nul(overlaid_path).unwrap())
+    }
+
+    fn parse_physical_iommus(physical_node: &FdtNode) -> Result<BTreeMap<Phandle, PhysIommu>> {
+        let mut phys_iommus = BTreeMap::new();
+        for (node, _) in physical_node.descendants() {
+            let Some(phandle) = node.get_phandle()? else {
+                continue; // Skips unreachable IOMMU node
+            };
+            let Some(iommu) = PhysIommu::parse(&node)? else {
+                continue; // Skip if not a PhysIommu.
+            };
+            if phys_iommus.insert(phandle, iommu).is_some() {
+                return Err(FdtError::BadPhandle.into());
+            }
+        }
+        Self::validate_physical_iommus(&phys_iommus)?;
+        Ok(phys_iommus)
+    }
+
+    fn validate_physical_iommus(phys_iommus: &BTreeMap<Phandle, PhysIommu>) -> Result<()> {
+        let unique_iommus: BTreeSet<_> = phys_iommus.values().cloned().collect();
+        if phys_iommus.len() != unique_iommus.len() {
+            return Err(DeviceAssignmentError::DuplicatedIommuIds);
+        }
+        Ok(())
+    }
+
+    fn validate_physical_devices(
+        physical_devices: &BTreeMap<Phandle, PhysicalDeviceInfo>,
+    ) -> Result<()> {
+        // Only need to validate iommus because <reg> will be validated together with PV <reg>
+        // see: DeviceAssignmentInfo::validate_all_regs().
+        let mut all_iommus = BTreeSet::new();
+        for physical_device in physical_devices.values() {
+            for iommu in &physical_device.iommus {
+                if !all_iommus.insert(iommu) {
+                    error!("Unsupported phys IOMMU duplication found, <iommus> = {iommu:?}");
+                    return Err(DeviceAssignmentError::UnsupportedIommusDuplication);
+                }
+            }
+        }
+        Ok(())
+    }
+
+    fn parse_physical_devices_with_iommus(
+        physical_node: &FdtNode,
+        phys_iommus: &BTreeMap<Phandle, PhysIommu>,
+    ) -> Result<BTreeMap<Phandle, PhysicalDeviceInfo>> {
+        let mut physical_devices = BTreeMap::new();
+        for (node, _) in physical_node.descendants() {
+            let Some(info) = PhysicalDeviceInfo::parse(&node, phys_iommus)? else {
+                continue;
+            };
+            if physical_devices.insert(info.target, info).is_some() {
+                return Err(DeviceAssignmentError::InvalidDtbo);
+            }
+        }
+        Self::validate_physical_devices(&physical_devices)?;
+        Ok(physical_devices)
+    }
+
+    /// Parses Physical devices in VM DTBO
+    fn parse_physical_devices(&self) -> Result<BTreeMap<Phandle, PhysicalDeviceInfo>> {
+        let Some(physical_node) = self.as_ref().node(cstr!("/host"))? else {
+            return Ok(BTreeMap::new());
+        };
+
+        let phys_iommus = Self::parse_physical_iommus(&physical_node)?;
+        Self::parse_physical_devices_with_iommus(&physical_node, &phys_iommus)
+    }
+}
+
+fn is_overlayable_node(dtbo_path: &CStr) -> bool {
+    dtbo_path
+        .to_bytes()
+        .split(|char| *char == b'/')
+        .filter(|&component| !component.is_empty())
+        .nth(1)
+        .map_or(false, |name| name == b"__overlay__")
+}
+
+impl AsRef<Fdt> for VmDtbo {
+    fn as_ref(&self) -> &Fdt {
+        &self.0
+    }
+}
+
+impl AsMut<Fdt> for VmDtbo {
+    fn as_mut(&mut self) -> &mut Fdt {
+        &mut self.0
+    }
+}
+
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+struct PvIommu {
+    // ID from pvIOMMU node
+    id: u32,
+}
+
+impl PvIommu {
+    fn parse(node: &FdtNode) -> Result<Self> {
+        let iommu_cells = node
+            .getprop_u32(cstr!("#iommu-cells"))?
+            .ok_or(DeviceAssignmentError::InvalidPvIommu)?;
+        // Ensures #iommu-cells = <1>. It means that `<iommus>` entry contains pair of
+        // (pvIOMMU ID, vSID)
+        if iommu_cells != 1 {
+            return Err(DeviceAssignmentError::InvalidPvIommu);
+        }
+        let id = node.getprop_u32(cstr!("id"))?.ok_or(DeviceAssignmentError::InvalidPvIommu)?;
+        Ok(Self { id })
+    }
+}
+
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+struct Vsid(u32);
+
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+struct Sid(u64);
+
+impl From<u32> for Sid {
+    fn from(sid: u32) -> Self {
+        Self(sid.into())
+    }
+}
+
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+struct DeviceReg {
+    addr: u64,
+    size: u64,
+}
+
+impl TryFrom<Reg<u64>> for DeviceReg {
+    type Error = DeviceAssignmentError;
+
+    fn try_from(reg: Reg<u64>) -> Result<Self> {
+        Ok(Self { addr: reg.addr, size: reg.size.ok_or(DeviceAssignmentError::MalformedReg)? })
+    }
+}
+
+fn parse_node_reg(node: &FdtNode) -> Result<Vec<DeviceReg>> {
+    node.reg()?
+        .ok_or(DeviceAssignmentError::MalformedReg)?
+        .map(DeviceReg::try_from)
+        .collect::<Result<Vec<_>>>()
+}
+
+fn to_be_bytes(reg: &[DeviceReg]) -> Vec<u8> {
+    let mut reg_cells = vec![];
+    for x in reg {
+        reg_cells.extend_from_slice(&x.addr.to_be_bytes());
+        reg_cells.extend_from_slice(&x.size.to_be_bytes());
+    }
+    reg_cells
+}
+
+#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
+struct PhysIommu {
+    token: u64,
+}
+
+impl PhysIommu {
+    fn parse(node: &FdtNode) -> Result<Option<Self>> {
+        let Some(token) = node.getprop_u64(cstr!("android,pvmfw,token"))? else {
+            return Ok(None);
+        };
+        let Some(iommu_cells) = node.getprop_u32(cstr!("#iommu-cells"))? else {
+            return Err(DeviceAssignmentError::InvalidPhysIommu);
+        };
+        // Currently only supports #iommu-cells = <1>.
+        // In that case `<iommus>` entry contains pair of (pIOMMU phandle, Sid token)
+        if iommu_cells != 1 {
+            return Err(DeviceAssignmentError::UnsupportedPhysIommu);
+        }
+        Ok(Some(Self { token }))
+    }
+}
+
+#[derive(Debug)]
+struct PhysicalDeviceInfo {
+    target: Phandle,
+    reg: Vec<DeviceReg>,
+    iommus: Vec<(PhysIommu, Sid)>,
+}
+
+impl PhysicalDeviceInfo {
+    fn parse_iommus(
+        node: &FdtNode,
+        phys_iommus: &BTreeMap<Phandle, PhysIommu>,
+    ) -> Result<Vec<(PhysIommu, Sid)>> {
+        let mut iommus = vec![];
+        let Some(mut cells) = node.getprop_cells(cstr!("iommus"))? else {
+            return Ok(iommus);
+        };
+        while let Some(cell) = cells.next() {
+            // Parse pIOMMU ID
+            let phandle =
+                Phandle::try_from(cell).or(Err(DeviceAssignmentError::MalformedIommus))?;
+            let iommu = phys_iommus.get(&phandle).ok_or(DeviceAssignmentError::MalformedIommus)?;
+
+            // Parse Sid
+            let Some(cell) = cells.next() else {
+                return Err(DeviceAssignmentError::MalformedIommus);
+            };
+
+            iommus.push((*iommu, Sid::from(cell)));
+        }
+        Ok(iommus)
+    }
+
+    fn parse(node: &FdtNode, phys_iommus: &BTreeMap<Phandle, PhysIommu>) -> Result<Option<Self>> {
+        let Some(phandle) = node.getprop_u32(cstr!("android,pvmfw,target"))? else {
+            return Ok(None);
+        };
+        let target = Phandle::try_from(phandle)?;
+        let reg = parse_node_reg(node)?;
+        let iommus = Self::parse_iommus(node, phys_iommus)?;
+        Ok(Some(Self { target, reg, iommus }))
+    }
+}
+
+/// Assigned device information parsed from crosvm DT.
+/// Keeps everything in the owned data because underlying FDT will be reused for platform DT.
+#[derive(Debug, Eq, PartialEq)]
+struct AssignedDeviceInfo {
+    // Node path of assigned device (e.g. "/rng")
+    node_path: CString,
+    // DTBO node path of the assigned device (e.g. "/fragment@rng/__overlay__/rng")
+    dtbo_node_path: CString,
+    // <reg> property from the crosvm DT
+    reg: Vec<DeviceReg>,
+    // <interrupts> property from the crosvm DT
+    interrupts: Vec<u8>,
+    // Parsed <iommus> property from the crosvm DT. Tuple of PvIommu and vSID.
+    iommus: Vec<(PvIommu, Vsid)>,
+}
+
+impl AssignedDeviceInfo {
+    fn validate_reg(
+        device_reg: &[DeviceReg],
+        physical_device_reg: &[DeviceReg],
+        hypervisor: &dyn DeviceAssigningHypervisor,
+    ) -> Result<()> {
+        if device_reg.len() != physical_device_reg.len() {
+            return Err(DeviceAssignmentError::InvalidReg);
+        }
+        // PV reg and physical reg should have 1:1 match in order.
+        for (reg, phys_reg) in device_reg.iter().zip(physical_device_reg.iter()) {
+            let addr = hypervisor.get_phys_mmio_token(reg.addr, reg.size).map_err(|e| {
+                error!("Failed to validate device <reg>, error={e:?}, reg={reg:x?}");
+                DeviceAssignmentError::InvalidReg
+            })?;
+            // Only check address because hypervisor guaranatees size match when success.
+            if phys_reg.addr != addr {
+                error!("Failed to validate device <reg>. No matching phys reg for reg={reg:x?}");
+                return Err(DeviceAssignmentError::InvalidReg);
+            }
+        }
+        Ok(())
+    }
+
+    fn parse_interrupts(node: &FdtNode) -> Result<Vec<u8>> {
+        // Validation: Validate if interrupts cell numbers are multiple of #interrupt-cells.
+        // We can't know how many interrupts would exist.
+        let interrupts_cells = node
+            .getprop_cells(cstr!("interrupts"))?
+            .ok_or(DeviceAssignmentError::InvalidInterrupts)?
+            .count();
+        if interrupts_cells % CELLS_PER_INTERRUPT != 0 {
+            return Err(DeviceAssignmentError::InvalidInterrupts);
+        }
+
+        // Once validated, keep the raw bytes so patch can be done with setprop()
+        Ok(node.getprop(cstr!("interrupts")).unwrap().unwrap().into())
+    }
+
+    // TODO(b/277993056): Also validate /__local_fixups__ to ensure that <iommus> has phandle.
+    fn parse_iommus(
+        node: &FdtNode,
+        pviommus: &BTreeMap<Phandle, PvIommu>,
+    ) -> Result<Vec<(PvIommu, Vsid)>> {
+        let mut iommus = vec![];
+        let Some(mut cells) = node.getprop_cells(cstr!("iommus"))? else {
+            return Ok(iommus);
+        };
+        while let Some(cell) = cells.next() {
+            // Parse pvIOMMU ID
+            let phandle =
+                Phandle::try_from(cell).or(Err(DeviceAssignmentError::MalformedIommus))?;
+            let pviommu = pviommus.get(&phandle).ok_or(DeviceAssignmentError::MalformedIommus)?;
+
+            // Parse vSID
+            let Some(cell) = cells.next() else {
+                return Err(DeviceAssignmentError::MalformedIommus);
+            };
+            let vsid = Vsid(cell);
+
+            iommus.push((*pviommu, vsid));
+        }
+        Ok(iommus)
+    }
+
+    fn validate_iommus(
+        iommus: &[(PvIommu, Vsid)],
+        physical_device_iommu: &[(PhysIommu, Sid)],
+        hypervisor: &dyn DeviceAssigningHypervisor,
+    ) -> Result<()> {
+        if iommus.len() != physical_device_iommu.len() {
+            return Err(DeviceAssignmentError::InvalidIommus);
+        }
+        // pvIOMMU can be reordered, and hypervisor may not guarantee 1:1 mapping.
+        // So we need to mark what's matched or not.
+        let mut physical_device_iommu = physical_device_iommu.to_vec();
+        for (pviommu, vsid) in iommus {
+            let (id, sid) = hypervisor.get_phys_iommu_token(pviommu.id.into(), vsid.0.into())
+            .map_err(|e| {
+                error!("Failed to validate device <iommus>, error={e:?}, pviommu={pviommu:?}, vsid={vsid:?}");
+                DeviceAssignmentError::InvalidIommus
+            })?;
+
+            let pos = physical_device_iommu
+                .iter()
+                .position(|(phys_iommu, phys_sid)| (phys_iommu.token, phys_sid.0) == (id, sid));
+            match pos {
+                Some(pos) => physical_device_iommu.remove(pos),
+                None => {
+                    error!("Failed to validate device <iommus>. No matching phys iommu or duplicated mapping for pviommu={pviommu:?}, vsid={vsid:?}");
+                    return Err(DeviceAssignmentError::InvalidIommus);
+                }
+            };
+        }
+        Ok(())
+    }
+
+    fn parse(
+        fdt: &Fdt,
+        vm_dtbo: &VmDtbo,
+        dtbo_node_path: &CStr,
+        physical_devices: &BTreeMap<Phandle, PhysicalDeviceInfo>,
+        pviommus: &BTreeMap<Phandle, PvIommu>,
+        hypervisor: &dyn DeviceAssigningHypervisor,
+    ) -> Result<Option<Self>> {
+        let dtbo_node =
+            vm_dtbo.as_ref().node(dtbo_node_path)?.ok_or(DeviceAssignmentError::InvalidSymbols)?;
+        let node_path = vm_dtbo.locate_overlay_target_path(dtbo_node_path, &dtbo_node)?;
+
+        let Some(node) = fdt.node(&node_path)? else { return Ok(None) };
+
+        // Note: Currently can only assign devices backed by physical devices.
+        let phandle = dtbo_node.get_phandle()?.ok_or(DeviceAssignmentError::InvalidDtbo)?;
+        let physical_device =
+            physical_devices.get(&phandle).ok_or(DeviceAssignmentError::InvalidDtbo)?;
+
+        let reg = parse_node_reg(&node)?;
+        Self::validate_reg(&reg, &physical_device.reg, hypervisor)?;
+
+        let interrupts = Self::parse_interrupts(&node)?;
+
+        let iommus = Self::parse_iommus(&node, pviommus)?;
+        Self::validate_iommus(&iommus, &physical_device.iommus, hypervisor)?;
+
+        Ok(Some(Self { node_path, dtbo_node_path: dtbo_node_path.into(), reg, interrupts, iommus }))
+    }
+
+    fn patch(&self, fdt: &mut Fdt, pviommu_phandles: &BTreeMap<PvIommu, Phandle>) -> Result<()> {
+        let mut dst = fdt.node_mut(&self.node_path)?.unwrap();
+        dst.setprop(cstr!("reg"), &to_be_bytes(&self.reg))?;
+        dst.setprop(cstr!("interrupts"), &self.interrupts)?;
+        let mut iommus = Vec::with_capacity(8 * self.iommus.len());
+        for (pviommu, vsid) in &self.iommus {
+            let phandle = pviommu_phandles.get(pviommu).unwrap();
+            iommus.extend_from_slice(&u32::from(*phandle).to_be_bytes());
+            iommus.extend_from_slice(&vsid.0.to_be_bytes());
+        }
+        dst.setprop(cstr!("iommus"), &iommus)?;
+
+        Ok(())
+    }
+}
+
+#[derive(Debug, Default, Eq, PartialEq)]
+pub struct DeviceAssignmentInfo {
+    pviommus: BTreeSet<PvIommu>,
+    assigned_devices: Vec<AssignedDeviceInfo>,
+    filtered_dtbo_paths: Vec<CString>,
+}
+
+impl DeviceAssignmentInfo {
+    const PVIOMMU_COMPATIBLE: &'static CStr = cstr!("pkvm,pviommu");
+
+    /// Parses pvIOMMUs in fdt
+    // Note: This will validate pvIOMMU ids' uniqueness, even when unassigned.
+    fn parse_pviommus(fdt: &Fdt) -> Result<BTreeMap<Phandle, PvIommu>> {
+        let mut pviommus = BTreeMap::new();
+        for compatible in fdt.compatible_nodes(Self::PVIOMMU_COMPATIBLE)? {
+            let Some(phandle) = compatible.get_phandle()? else {
+                continue; // Skips unreachable pvIOMMU node
+            };
+            let pviommu = PvIommu::parse(&compatible)?;
+            if pviommus.insert(phandle, pviommu).is_some() {
+                return Err(FdtError::BadPhandle.into());
+            }
+        }
+        Ok(pviommus)
+    }
+
+    fn validate_pviommu_topology(assigned_devices: &[AssignedDeviceInfo]) -> Result<()> {
+        let mut all_iommus = BTreeSet::new();
+        for assigned_device in assigned_devices {
+            for iommu in &assigned_device.iommus {
+                if !all_iommus.insert(iommu) {
+                    error!("Unsupported pvIOMMU duplication found, <iommus> = {iommu:?}");
+                    return Err(DeviceAssignmentError::UnsupportedPvIommusDuplication);
+                }
+            }
+        }
+        Ok(())
+    }
+
+    /// Parses fdt and vm_dtbo, and creates new DeviceAssignmentInfo
+    // TODO(b/277993056): Parse __local_fixups__
+    // TODO(b/277993056): Parse __fixups__
+    pub fn parse(
+        fdt: &Fdt,
+        vm_dtbo: &VmDtbo,
+        hypervisor: &dyn DeviceAssigningHypervisor,
+    ) -> Result<Option<Self>> {
+        let Some(symbols_node) = vm_dtbo.as_ref().symbols()? else {
+            // /__symbols__ should contain all assignable devices.
+            // If empty, then nothing can be assigned.
+            return Ok(None);
+        };
+
+        let pviommus = Self::parse_pviommus(fdt)?;
+        let unique_pviommus: BTreeSet<_> = pviommus.values().cloned().collect();
+        if pviommus.len() != unique_pviommus.len() {
+            return Err(DeviceAssignmentError::DuplicatedPvIommuIds);
+        }
+
+        let physical_devices = vm_dtbo.parse_physical_devices()?;
+
+        let mut assigned_devices = vec![];
+        let mut filtered_dtbo_paths = vec![];
+        for symbol_prop in symbols_node.properties()? {
+            let symbol_prop_value = symbol_prop.value()?;
+            let dtbo_node_path = CStr::from_bytes_with_nul(symbol_prop_value)
+                .or(Err(DeviceAssignmentError::InvalidSymbols))?;
+            if !is_overlayable_node(dtbo_node_path) {
+                continue;
+            }
+            let assigned_device = AssignedDeviceInfo::parse(
+                fdt,
+                vm_dtbo,
+                dtbo_node_path,
+                &physical_devices,
+                &pviommus,
+                hypervisor,
+            )?;
+            if let Some(assigned_device) = assigned_device {
+                assigned_devices.push(assigned_device);
+            } else {
+                filtered_dtbo_paths.push(dtbo_node_path.into());
+            }
+        }
+        if assigned_devices.is_empty() {
+            return Ok(None);
+        }
+
+        Self::validate_pviommu_topology(&assigned_devices)?;
+
+        // Clean up any nodes that wouldn't be overlaid but may contain reference to filtered nodes.
+        // Otherwise, `fdt_apply_overlay()` would fail because of missing phandle reference.
+        filtered_dtbo_paths.push(CString::new("/__symbols__").unwrap());
+        // TODO(b/277993056): Also filter other unused nodes/props in __local_fixups__
+        filtered_dtbo_paths.push(CString::new("/__local_fixups__/host").unwrap());
+
+        // Note: Any node without __overlay__ will be ignored by fdt_apply_overlay,
+        // so doesn't need to be filtered.
+
+        Ok(Some(Self { pviommus: unique_pviommus, assigned_devices, filtered_dtbo_paths }))
+    }
+
+    /// Filters VM DTBO to only contain necessary information for booting pVM
+    /// In detail, this will remove followings by setting nop node / nop property.
+    ///   - Removes unassigned devices
+    ///   - Removes /__symbols__ node
+    // TODO(b/277993056): remove unused dependencies in VM DTBO.
+    // TODO(b/277993056): remove supernodes' properties.
+    // TODO(b/277993056): remove unused alises.
+    pub fn filter(&self, vm_dtbo: &mut VmDtbo) -> Result<()> {
+        let vm_dtbo = vm_dtbo.as_mut();
+
+        // Filters unused node in assigned devices
+        for filtered_dtbo_path in &self.filtered_dtbo_paths {
+            let node = vm_dtbo.node_mut(filtered_dtbo_path).unwrap().unwrap();
+            node.nop()?;
+        }
+
+        Ok(())
+    }
+
+    fn patch_pviommus(&self, fdt: &mut Fdt) -> Result<BTreeMap<PvIommu, Phandle>> {
+        let mut compatible = fdt.root_mut()?.next_compatible(Self::PVIOMMU_COMPATIBLE)?;
+        let mut pviommu_phandles = BTreeMap::new();
+
+        for pviommu in &self.pviommus {
+            let mut node = compatible.ok_or(DeviceAssignmentError::TooManyPvIommu)?;
+            let phandle = node.as_node().get_phandle()?.ok_or(DeviceAssignmentError::Internal)?;
+            node.setprop_inplace(cstr!("id"), &pviommu.id.to_be_bytes())?;
+            if pviommu_phandles.insert(*pviommu, phandle).is_some() {
+                return Err(DeviceAssignmentError::Internal);
+            }
+            compatible = node.next_compatible(Self::PVIOMMU_COMPATIBLE)?;
+        }
+
+        // Filters pre-populated but unassigned pvIOMMUs.
+        while let Some(filtered_pviommu) = compatible {
+            compatible = filtered_pviommu.delete_and_next_compatible(Self::PVIOMMU_COMPATIBLE)?;
+        }
+
+        Ok(pviommu_phandles)
+    }
+
+    pub fn patch(&self, fdt: &mut Fdt) -> Result<()> {
+        let pviommu_phandles = self.patch_pviommus(fdt)?;
+
+        // Patches assigned devices
+        for device in &self.assigned_devices {
+            device.patch(fdt, &pviommu_phandles)?;
+        }
+
+        Ok(())
+    }
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use alloc::collections::{BTreeMap, BTreeSet};
+    use std::fs;
+
+    const VM_DTBO_FILE_PATH: &str = "test_pvmfw_devices_vm_dtbo.dtbo";
+    const VM_DTBO_WITHOUT_SYMBOLS_FILE_PATH: &str =
+        "test_pvmfw_devices_vm_dtbo_without_symbols.dtbo";
+    const VM_DTBO_WITH_DUPLICATED_IOMMUS_FILE_PATH: &str =
+        "test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dtbo";
+    const FDT_WITHOUT_IOMMUS_FILE_PATH: &str = "test_pvmfw_devices_without_iommus.dtb";
+    const FDT_WITHOUT_DEVICE_FILE_PATH: &str = "test_pvmfw_devices_without_device.dtb";
+    const FDT_FILE_PATH: &str = "test_pvmfw_devices_with_rng.dtb";
+    const FDT_WITH_MULTIPLE_DEVICES_IOMMUS_FILE_PATH: &str =
+        "test_pvmfw_devices_with_multiple_devices_iommus.dtb";
+    const FDT_WITH_IOMMU_SHARING: &str = "test_pvmfw_devices_with_iommu_sharing.dtb";
+    const FDT_WITH_IOMMU_ID_CONFLICT: &str = "test_pvmfw_devices_with_iommu_id_conflict.dtb";
+    const FDT_WITH_DUPLICATED_PVIOMMUS_FILE_PATH: &str =
+        "test_pvmfw_devices_with_duplicated_pviommus.dtb";
+    const FDT_WITH_MULTIPLE_REG_IOMMU_FILE_PATH: &str =
+        "test_pvmfw_devices_with_multiple_reg_iommus.dtb";
+
+    #[derive(Debug, Default)]
+    struct MockHypervisor {
+        mmio_tokens: BTreeMap<(u64, u64), u64>,
+        iommu_tokens: BTreeMap<(u64, u64), (u64, u64)>,
+    }
+
+    impl DeviceAssigningHypervisor for MockHypervisor {
+        fn get_phys_mmio_token(&self, base_ipa: u64, size: u64) -> hyp::Result<u64> {
+            Ok(*self.mmio_tokens.get(&(base_ipa, size)).ok_or(hyp::Error::KvmError(
+                hyp::KvmError::InvalidParameter,
+                0xc6000012, /* VENDOR_HYP_KVM_DEV_REQ_MMIO_FUNC_ID */
+            ))?)
+        }
+
+        fn get_phys_iommu_token(&self, pviommu_id: u64, vsid: u64) -> hyp::Result<(u64, u64)> {
+            Ok(*self.iommu_tokens.get(&(pviommu_id, vsid)).ok_or(hyp::Error::KvmError(
+                hyp::KvmError::InvalidParameter,
+                0xc6000013, /* VENDOR_HYP_KVM_DEV_REQ_DMA_FUNC_ID */
+            ))?)
+        }
+    }
+
+    #[derive(Debug, Eq, PartialEq)]
+    struct AssignedDeviceNode {
+        path: CString,
+        reg: Vec<u8>,
+        interrupts: Vec<u8>,
+        iommus: Vec<u32>, // pvIOMMU id and vSID
+    }
+
+    impl AssignedDeviceNode {
+        fn parse(fdt: &Fdt, path: &CStr) -> Result<Self> {
+            let Some(node) = fdt.node(path)? else {
+                return Err(FdtError::NotFound.into());
+            };
+
+            let reg = node.getprop(cstr!("reg"))?.ok_or(DeviceAssignmentError::MalformedReg)?;
+            let interrupts = node
+                .getprop(cstr!("interrupts"))?
+                .ok_or(DeviceAssignmentError::InvalidInterrupts)?;
+            let mut iommus = vec![];
+            if let Some(mut cells) = node.getprop_cells(cstr!("iommus"))? {
+                while let Some(pviommu_id) = cells.next() {
+                    // pvIOMMU id
+                    let phandle = Phandle::try_from(pviommu_id)?;
+                    let pviommu = fdt
+                        .node_with_phandle(phandle)?
+                        .ok_or(DeviceAssignmentError::MalformedIommus)?;
+                    let compatible = pviommu.getprop_str(cstr!("compatible"));
+                    if compatible != Ok(Some(cstr!("pkvm,pviommu"))) {
+                        return Err(DeviceAssignmentError::MalformedIommus);
+                    }
+                    let id = pviommu
+                        .getprop_u32(cstr!("id"))?
+                        .ok_or(DeviceAssignmentError::MalformedIommus)?;
+                    iommus.push(id);
+
+                    // vSID
+                    let Some(vsid) = cells.next() else {
+                        return Err(DeviceAssignmentError::MalformedIommus);
+                    };
+                    iommus.push(vsid);
+                }
+            }
+            Ok(Self { path: path.into(), reg: reg.into(), interrupts: interrupts.into(), iommus })
+        }
+    }
+
+    fn collect_pviommus(fdt: &Fdt) -> Result<Vec<u32>> {
+        let mut pviommus = BTreeSet::new();
+        for pviommu in fdt.compatible_nodes(cstr!("pkvm,pviommu"))? {
+            if let Ok(Some(id)) = pviommu.getprop_u32(cstr!("id")) {
+                pviommus.insert(id);
+            }
+        }
+        Ok(pviommus.iter().cloned().collect())
+    }
+
+    fn into_fdt_prop(native_bytes: Vec<u32>) -> Vec<u8> {
+        let mut v = Vec::with_capacity(native_bytes.len() * 4);
+        for byte in native_bytes {
+            v.extend_from_slice(&byte.to_be_bytes());
+        }
+        v
+    }
+
+    impl From<[u64; 2]> for DeviceReg {
+        fn from(fdt_cells: [u64; 2]) -> Self {
+            DeviceReg { addr: fdt_cells[0], size: fdt_cells[1] }
+        }
+    }
+
+    #[test]
+    fn device_info_new_without_symbols() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_WITHOUT_SYMBOLS_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor: MockHypervisor = Default::default();
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap();
+        assert_eq!(device_info, None);
+    }
+
+    #[test]
+    fn device_info_new_without_device() {
+        let mut fdt_data = fs::read(FDT_WITHOUT_DEVICE_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor: MockHypervisor = Default::default();
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap();
+        assert_eq!(device_info, None);
+    }
+
+    #[test]
+    fn device_info_assigned_info_without_iommus() {
+        let mut fdt_data = fs::read(FDT_WITHOUT_IOMMUS_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x300)].into(),
+            iommu_tokens: BTreeMap::new(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+
+        let expected = [AssignedDeviceInfo {
+            node_path: CString::new("/bus0/backlight").unwrap(),
+            dtbo_node_path: cstr!("/fragment@backlight/__overlay__/bus0/backlight").into(),
+            reg: vec![[0x9, 0xFF].into()],
+            interrupts: into_fdt_prop(vec![0x0, 0xF, 0x4]),
+            iommus: vec![],
+        }];
+
+        assert_eq!(device_info.assigned_devices, expected);
+    }
+
+    #[test]
+    fn device_info_assigned_info() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x12F00000)].into(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 0x3))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+
+        let expected = [AssignedDeviceInfo {
+            node_path: CString::new("/rng").unwrap(),
+            dtbo_node_path: cstr!("/fragment@rng/__overlay__/rng").into(),
+            reg: vec![[0x9, 0xFF].into()],
+            interrupts: into_fdt_prop(vec![0x0, 0xF, 0x4]),
+            iommus: vec![(PvIommu { id: 0x4 }, Vsid(0xFF0))],
+        }];
+
+        assert_eq!(device_info.assigned_devices, expected);
+    }
+
+    #[test]
+    fn device_info_filter() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x12F00000)].into(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 0x3))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+        device_info.filter(vm_dtbo).unwrap();
+
+        let vm_dtbo = vm_dtbo.as_mut();
+
+        let rng = vm_dtbo.node(cstr!("/fragment@rng/__overlay__/rng")).unwrap();
+        assert_ne!(rng, None);
+
+        let light = vm_dtbo.node(cstr!("/fragment@rng/__overlay__/light")).unwrap();
+        assert_eq!(light, None);
+
+        let led = vm_dtbo.node(cstr!("/fragment@led/__overlay__/led")).unwrap();
+        assert_eq!(led, None);
+
+        let backlight =
+            vm_dtbo.node(cstr!("/fragment@backlight/__overlay__/bus0/backlight")).unwrap();
+        assert_eq!(backlight, None);
+
+        let symbols_node = vm_dtbo.symbols().unwrap();
+        assert_eq!(symbols_node, None);
+    }
+
+    #[test]
+    fn device_info_patch() {
+        let mut fdt_data = fs::read(FDT_WITHOUT_IOMMUS_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let mut data = vec![0_u8; fdt_data.len() + vm_dtbo_data.len()];
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+        let platform_dt = Fdt::create_empty_tree(data.as_mut_slice()).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x300)].into(),
+            iommu_tokens: BTreeMap::new(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+        device_info.filter(vm_dtbo).unwrap();
+
+        // SAFETY: Damaged VM DTBO wouldn't be used after this unsafe block.
+        unsafe {
+            platform_dt.apply_overlay(vm_dtbo.as_mut()).unwrap();
+        }
+        device_info.patch(platform_dt).unwrap();
+
+        let rng_node = platform_dt.node(cstr!("/bus0/backlight")).unwrap().unwrap();
+        let phandle = rng_node.getprop_u32(cstr!("phandle")).unwrap();
+        assert_ne!(None, phandle);
+
+        // Note: Intentionally not using AssignedDeviceNode for matching all props.
+        type FdtResult<T> = libfdt::Result<T>;
+        let expected: Vec<(FdtResult<&CStr>, FdtResult<Vec<u8>>)> = vec![
+            (Ok(cstr!("android,backlight,ignore-gctrl-reset")), Ok(Vec::new())),
+            (Ok(cstr!("compatible")), Ok(Vec::from(*b"android,backlight\0"))),
+            (Ok(cstr!("interrupts")), Ok(into_fdt_prop(vec![0x0, 0xF, 0x4]))),
+            (Ok(cstr!("iommus")), Ok(Vec::new())),
+            (Ok(cstr!("phandle")), Ok(into_fdt_prop(vec![phandle.unwrap()]))),
+            (Ok(cstr!("reg")), Ok(into_fdt_prop(vec![0x0, 0x9, 0x0, 0xFF]))),
+        ];
+
+        let mut properties: Vec<_> = rng_node
+            .properties()
+            .unwrap()
+            .map(|prop| (prop.name(), prop.value().map(|x| x.into())))
+            .collect();
+        properties.sort_by(|a, b| {
+            let lhs = a.0.unwrap_or_default();
+            let rhs = b.0.unwrap_or_default();
+            lhs.partial_cmp(rhs).unwrap()
+        });
+
+        assert_eq!(properties, expected);
+    }
+
+    #[test]
+    fn device_info_overlay_iommu() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+        let mut platform_dt_data = pvmfw_fdt_template::RAW.to_vec();
+        platform_dt_data.resize(pvmfw_fdt_template::RAW.len() * 2, 0);
+        let platform_dt = Fdt::from_mut_slice(&mut platform_dt_data).unwrap();
+        platform_dt.unpack().unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x12F00000)].into(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 0x3))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+        device_info.filter(vm_dtbo).unwrap();
+
+        // SAFETY: Damaged VM DTBO wouldn't be used after this unsafe block.
+        unsafe {
+            platform_dt.apply_overlay(vm_dtbo.as_mut()).unwrap();
+        }
+        device_info.patch(platform_dt).unwrap();
+
+        let expected = AssignedDeviceNode {
+            path: CString::new("/rng").unwrap(),
+            reg: into_fdt_prop(vec![0x0, 0x9, 0x0, 0xFF]),
+            interrupts: into_fdt_prop(vec![0x0, 0xF, 0x4]),
+            iommus: vec![0x4, 0xFF0],
+        };
+
+        let node = AssignedDeviceNode::parse(platform_dt, &expected.path);
+        assert_eq!(node, Ok(expected));
+
+        let pviommus = collect_pviommus(platform_dt);
+        assert_eq!(pviommus, Ok(vec![0x4]));
+    }
+
+    #[test]
+    fn device_info_multiple_devices_iommus() {
+        let mut fdt_data = fs::read(FDT_WITH_MULTIPLE_DEVICES_IOMMUS_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+        let mut platform_dt_data = pvmfw_fdt_template::RAW.to_vec();
+        platform_dt_data.resize(pvmfw_fdt_template::RAW.len() * 2, 0);
+        let platform_dt = Fdt::from_mut_slice(&mut platform_dt_data).unwrap();
+        platform_dt.unpack().unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [
+                ((0x9, 0xFF), 0x12F00000),
+                ((0x10000, 0x1000), 0xF00000),
+                ((0x20000, 0x1000), 0xF10000),
+            ]
+            .into(),
+            iommu_tokens: [
+                ((0x4, 0xFF0), (0x12E40000, 3)),
+                ((0x40, 0xFFA), (0x40000, 0x4)),
+                ((0x50, 0xFFB), (0x50000, 0x5)),
+            ]
+            .into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+        device_info.filter(vm_dtbo).unwrap();
+
+        // SAFETY: Damaged VM DTBO wouldn't be used after this unsafe block.
+        unsafe {
+            platform_dt.apply_overlay(vm_dtbo.as_mut()).unwrap();
+        }
+        device_info.patch(platform_dt).unwrap();
+
+        let expected_devices = [
+            AssignedDeviceNode {
+                path: CString::new("/rng").unwrap(),
+                reg: into_fdt_prop(vec![0x0, 0x9, 0x0, 0xFF]),
+                interrupts: into_fdt_prop(vec![0x0, 0xF, 0x4]),
+                iommus: vec![0x4, 0xFF0],
+            },
+            AssignedDeviceNode {
+                path: CString::new("/light").unwrap(),
+                reg: into_fdt_prop(vec![0x0, 0x10000, 0x0, 0x1000, 0x0, 0x20000, 0x0, 0x1000]),
+                interrupts: into_fdt_prop(vec![0x0, 0xF, 0x5]),
+                iommus: vec![0x40, 0xFFA, 0x50, 0xFFB],
+            },
+        ];
+
+        for expected in expected_devices {
+            let node = AssignedDeviceNode::parse(platform_dt, &expected.path);
+            assert_eq!(node, Ok(expected));
+        }
+        let pviommus = collect_pviommus(platform_dt);
+        assert_eq!(pviommus, Ok(vec![0x4, 0x40, 0x50]));
+    }
+
+    #[test]
+    fn device_info_iommu_sharing() {
+        let mut fdt_data = fs::read(FDT_WITH_IOMMU_SHARING).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+        let mut platform_dt_data = pvmfw_fdt_template::RAW.to_vec();
+        platform_dt_data.resize(pvmfw_fdt_template::RAW.len() * 2, 0);
+        let platform_dt = Fdt::from_mut_slice(&mut platform_dt_data).unwrap();
+        platform_dt.unpack().unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x12F00000), ((0x1000, 0x9), 0x12000000)].into(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 3)), ((0x4, 0xFF1), (0x12E40000, 9))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor).unwrap().unwrap();
+        device_info.filter(vm_dtbo).unwrap();
+
+        // SAFETY: Damaged VM DTBO wouldn't be used after this unsafe block.
+        unsafe {
+            platform_dt.apply_overlay(vm_dtbo.as_mut()).unwrap();
+        }
+        device_info.patch(platform_dt).unwrap();
+
+        let expected_devices = [
+            AssignedDeviceNode {
+                path: CString::new("/rng").unwrap(),
+                reg: into_fdt_prop(vec![0x0, 0x9, 0x0, 0xFF]),
+                interrupts: into_fdt_prop(vec![0x0, 0xF, 0x4]),
+                iommus: vec![0x4, 0xFF0],
+            },
+            AssignedDeviceNode {
+                path: CString::new("/led").unwrap(),
+                reg: into_fdt_prop(vec![0x0, 0x1000, 0x0, 0x9]),
+                interrupts: into_fdt_prop(vec![0x0, 0xF, 0x5]),
+                iommus: vec![0x4, 0xFF1],
+            },
+        ];
+
+        for expected in expected_devices {
+            let node = AssignedDeviceNode::parse(platform_dt, &expected.path);
+            assert_eq!(node, Ok(expected));
+        }
+
+        let pviommus = collect_pviommus(platform_dt);
+        assert_eq!(pviommus, Ok(vec![0x4]));
+    }
+
+    #[test]
+    fn device_info_iommu_id_conflict() {
+        let mut fdt_data = fs::read(FDT_WITH_IOMMU_ID_CONFLICT).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x300)].into(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 0x3))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::DuplicatedPvIommuIds));
+    }
+
+    #[test]
+    fn device_info_invalid_reg() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: BTreeMap::new(),
+            iommu_tokens: [((0x4, 0xFF0), (0x12E40000, 0x3))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::InvalidReg));
+    }
+
+    #[test]
+    fn device_info_invalid_reg_out_of_order() {
+        let mut fdt_data = fs::read(FDT_WITH_MULTIPLE_REG_IOMMU_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0xF000, 0x1000), 0xF10000), ((0xF100, 0x1000), 0xF00000)].into(),
+            iommu_tokens: [((0xFF0, 0xF0), (0x40000, 0x4)), ((0xFF1, 0xF1), (0x50000, 0x5))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::InvalidReg));
+    }
+
+    #[test]
+    fn device_info_invalid_iommus() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x9, 0xFF), 0x12F00000)].into(),
+            iommu_tokens: BTreeMap::new(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::InvalidIommus));
+    }
+
+    #[test]
+    fn device_info_duplicated_pv_iommus() {
+        let mut fdt_data = fs::read(FDT_WITH_DUPLICATED_PVIOMMUS_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x10000, 0x1000), 0xF00000), ((0x20000, 0xFF), 0xF10000)].into(),
+            iommu_tokens: [((0xFF, 0xF), (0x40000, 0x4))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::DuplicatedPvIommuIds));
+    }
+
+    #[test]
+    fn device_info_duplicated_iommus() {
+        let mut fdt_data = fs::read(FDT_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_WITH_DUPLICATED_IOMMUS_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0x10000, 0x1000), 0xF00000), ((0x20000, 0xFF), 0xF10000)].into(),
+            iommu_tokens: [((0xFF, 0xF), (0x40000, 0x4))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::UnsupportedIommusDuplication));
+    }
+
+    #[test]
+    fn device_info_duplicated_iommu_mapping() {
+        let mut fdt_data = fs::read(FDT_WITH_MULTIPLE_REG_IOMMU_FILE_PATH).unwrap();
+        let mut vm_dtbo_data = fs::read(VM_DTBO_FILE_PATH).unwrap();
+        let fdt = Fdt::from_mut_slice(&mut fdt_data).unwrap();
+        let vm_dtbo = VmDtbo::from_mut_slice(&mut vm_dtbo_data).unwrap();
+
+        let hypervisor = MockHypervisor {
+            mmio_tokens: [((0xF000, 0x1000), 0xF00000), ((0xF100, 0x1000), 0xF10000)].into(),
+            iommu_tokens: [((0xFF0, 0xF0), (0x40000, 0x4)), ((0xFF1, 0xF1), (0x40000, 0x4))].into(),
+        };
+        let device_info = DeviceAssignmentInfo::parse(fdt, vm_dtbo, &hypervisor);
+
+        assert_eq!(device_info, Err(DeviceAssignmentError::InvalidIommus));
+    }
+}
diff --git a/pvmfw/src/dice.rs b/pvmfw/src/dice.rs
index e588acb..99bf589 100644
--- a/pvmfw/src/dice.rs
+++ b/pvmfw/src/dice.rs
@@ -14,17 +14,13 @@
 
 //! Support for DICE derivation and BCC generation.
 
-use crate::cstr;
-use crate::helpers::flushed_zeroize;
-use core::ffi::c_void;
-use core::ffi::CStr;
 use core::mem::size_of;
-use core::slice;
-
+use cstr::cstr;
 use diced_open_dice::{
-    bcc_format_config_descriptor, hash, Config, DiceMode, Hash, InputValues, HIDDEN_SIZE,
+    bcc_format_config_descriptor, bcc_handover_main_flow, hash, Config, DiceConfigValues, DiceMode,
+    Hash, InputValues, HIDDEN_SIZE,
 };
-use pvmfw_avb::{DebugLevel, Digest, VerifiedBootData};
+use pvmfw_avb::{Capability, DebugLevel, Digest, VerifiedBootData};
 
 fn to_dice_mode(debug_level: DebugLevel) -> DiceMode {
     match debug_level {
@@ -46,6 +42,8 @@
     pub code_hash: Hash,
     pub auth_hash: Hash,
     pub mode: DiceMode,
+    pub security_version: u64,
+    pub rkp_vm_marker: bool,
 }
 
 impl PartialInputs {
@@ -53,30 +51,47 @@
         let code_hash = to_dice_hash(data)?;
         let auth_hash = hash(data.public_key)?;
         let mode = to_dice_mode(data.debug_level);
+        // We use rollback_index from vbmeta as the security_version field in dice certificate.
+        let security_version = data.rollback_index;
+        let rkp_vm_marker = data.has_capability(Capability::RemoteAttest);
 
-        Ok(Self { code_hash, auth_hash, mode })
+        Ok(Self { code_hash, auth_hash, mode, security_version, rkp_vm_marker })
     }
 
-    pub fn into_input_values(
+    pub fn write_next_bcc(
         self,
+        current_bcc_handover: &[u8],
         salt: &[u8; HIDDEN_SIZE],
-        config_descriptor_buffer: &mut [u8],
-    ) -> diced_open_dice::Result<InputValues> {
-        let config_descriptor_size = bcc_format_config_descriptor(
-            Some(cstr!("vm_entry")),
-            None,  // component_version
-            false, // resettable
-            config_descriptor_buffer,
-        )?;
-        let config = &config_descriptor_buffer[..config_descriptor_size];
+        next_bcc: &mut [u8],
+    ) -> diced_open_dice::Result<()> {
+        let mut config_descriptor_buffer = [0; 128];
+        let config = self.generate_config_descriptor(&mut config_descriptor_buffer)?;
 
-        Ok(InputValues::new(
+        let dice_inputs = InputValues::new(
             self.code_hash,
             Config::Descriptor(config),
             self.auth_hash,
             self.mode,
             *salt,
-        ))
+        );
+        let _ = bcc_handover_main_flow(current_bcc_handover, &dice_inputs, next_bcc)?;
+        Ok(())
+    }
+
+    fn generate_config_descriptor<'a>(
+        &self,
+        config_descriptor_buffer: &'a mut [u8],
+    ) -> diced_open_dice::Result<&'a [u8]> {
+        let config_values = DiceConfigValues {
+            component_name: Some(cstr!("vm_entry")),
+            security_version: if cfg!(dice_changes) { Some(self.security_version) } else { None },
+            rkp_vm_marker: self.rkp_vm_marker,
+            ..Default::default()
+        };
+        let config_descriptor_size =
+            bcc_format_config_descriptor(&config_values, config_descriptor_buffer)?;
+        let config = &config_descriptor_buffer[..config_descriptor_size];
+        Ok(config)
     }
 }
 
@@ -84,11 +99,116 @@
 ///
 /// # Safety
 ///
-/// The provided address and size must be to a valid address range (typically on the stack, .bss,
-/// .data, or provided BCC).
+/// The provided address and size must be to an address range that is valid for read and write
+/// (typically on the stack, .bss, .data, or provided BCC) from a single allocation
+/// (e.g. stack array).
 #[no_mangle]
-unsafe extern "C" fn DiceClearMemory(_ctx: *mut c_void, size: usize, addr: *mut c_void) {
-    // SAFETY - We must trust that the slice will be valid arrays/variables on the C code stack.
+#[cfg(not(test))]
+unsafe extern "C" fn DiceClearMemory(
+    _ctx: *mut core::ffi::c_void,
+    size: usize,
+    addr: *mut core::ffi::c_void,
+) {
+    use core::slice;
+    use vmbase::memory::flushed_zeroize;
+
+    // SAFETY: We require our caller to provide a valid range within a single object. The open-dice
+    // always calls this on individual stack-allocated arrays which ensures that.
     let region = unsafe { slice::from_raw_parts_mut(addr as *mut u8, size) };
     flushed_zeroize(region)
 }
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use ciborium::Value;
+    use std::collections::HashMap;
+    use std::vec;
+
+    const COMPONENT_NAME_KEY: i64 = -70002;
+    const COMPONENT_VERSION_KEY: i64 = -70003;
+    const RESETTABLE_KEY: i64 = -70004;
+    const SECURITY_VERSION_KEY: i64 = -70005;
+    const RKP_VM_MARKER_KEY: i64 = -70006;
+
+    const BASE_VB_DATA: VerifiedBootData = VerifiedBootData {
+        debug_level: DebugLevel::None,
+        kernel_digest: [1u8; size_of::<Digest>()],
+        initrd_digest: Some([2u8; size_of::<Digest>()]),
+        public_key: b"public key",
+        capabilities: vec![],
+        rollback_index: 42,
+    };
+
+    #[test]
+    fn base_data_conversion() {
+        let vb_data = BASE_VB_DATA;
+        let inputs = PartialInputs::new(&vb_data).unwrap();
+
+        assert_eq!(inputs.mode, DiceMode::kDiceModeNormal);
+        assert_eq!(inputs.security_version, 42);
+        assert!(!inputs.rkp_vm_marker);
+
+        // TODO(b/313608219): Consider checks for code_hash and possibly auth_hash.
+    }
+
+    #[test]
+    fn debuggable_conversion() {
+        let vb_data = VerifiedBootData { debug_level: DebugLevel::Full, ..BASE_VB_DATA };
+        let inputs = PartialInputs::new(&vb_data).unwrap();
+
+        assert_eq!(inputs.mode, DiceMode::kDiceModeDebug);
+    }
+
+    #[test]
+    fn rkp_vm_conversion() {
+        let vb_data =
+            VerifiedBootData { capabilities: vec![Capability::RemoteAttest], ..BASE_VB_DATA };
+        let inputs = PartialInputs::new(&vb_data).unwrap();
+
+        assert!(inputs.rkp_vm_marker);
+    }
+
+    #[test]
+    fn base_config_descriptor() {
+        let vb_data = BASE_VB_DATA;
+        let inputs = PartialInputs::new(&vb_data).unwrap();
+        let config_map = decode_config_descriptor(&inputs);
+
+        assert_eq!(config_map.get(&COMPONENT_NAME_KEY).unwrap().as_text().unwrap(), "vm_entry");
+        assert_eq!(config_map.get(&COMPONENT_VERSION_KEY), None);
+        assert_eq!(config_map.get(&RESETTABLE_KEY), None);
+        if cfg!(dice_changes) {
+            assert_eq!(
+                config_map.get(&SECURITY_VERSION_KEY).unwrap().as_integer().unwrap(),
+                42.into()
+            );
+        } else {
+            assert_eq!(config_map.get(&SECURITY_VERSION_KEY), None);
+        }
+        assert_eq!(config_map.get(&RKP_VM_MARKER_KEY), None);
+    }
+
+    #[test]
+    fn config_descriptor_with_rkp_vm() {
+        let vb_data =
+            VerifiedBootData { capabilities: vec![Capability::RemoteAttest], ..BASE_VB_DATA };
+        let inputs = PartialInputs::new(&vb_data).unwrap();
+        let config_map = decode_config_descriptor(&inputs);
+
+        assert!(config_map.get(&RKP_VM_MARKER_KEY).unwrap().is_null());
+    }
+
+    fn decode_config_descriptor(inputs: &PartialInputs) -> HashMap<i64, Value> {
+        let mut buffer = [0; 128];
+        let config_descriptor = inputs.generate_config_descriptor(&mut buffer).unwrap();
+
+        let cbor_map =
+            cbor_util::deserialize::<Value>(config_descriptor).unwrap().into_map().unwrap();
+
+        cbor_map
+            .into_iter()
+            .map(|(k, v)| ((k.into_integer().unwrap().try_into().unwrap()), v))
+            .collect()
+    }
+}
diff --git a/pvmfw/src/entry.rs b/pvmfw/src/entry.rs
index 8e3e47b..253604b 100644
--- a/pvmfw/src/entry.rs
+++ b/pvmfw/src/entry.rs
@@ -15,26 +15,29 @@
 //! Low-level entry and exit points of pvmfw.
 
 use crate::config;
-use crate::crypto;
 use crate::fdt;
-use crate::heap;
-use crate::helpers;
-use crate::helpers::RangeExt as _;
-use crate::memory::{MemoryTracker, MEMORY};
-use crate::mmu;
-use crate::rand;
+use crate::memory;
+use bssl_sys::CRYPTO_library_init;
 use core::arch::asm;
-use core::mem::size_of;
+use core::mem::{drop, size_of};
 use core::num::NonZeroUsize;
 use core::ops::Range;
 use core::slice;
-use hyp::{get_hypervisor, HypervisorCap};
+use hyp::{get_mem_sharer, get_mmio_guard};
 use log::debug;
 use log::error;
 use log::info;
 use log::warn;
 use log::LevelFilter;
-use vmbase::{console, layout, logger, main, power::reboot};
+use vmbase::util::RangeExt as _;
+use vmbase::{
+    configure_heap, console,
+    layout::{self, crosvm},
+    main,
+    memory::{min_dcache_line_size, MemoryTracker, MEMORY, SIZE_128KB, SIZE_4KB},
+    power::reboot,
+};
+use zeroize::Zeroize;
 
 #[derive(Debug, Clone)]
 pub enum RebootReason {
@@ -57,6 +60,7 @@
 }
 
 main!(start);
+configure_heap!(SIZE_128KB);
 
 /// Entry point for pVM firmware.
 pub fn start(fdt_address: u64, payload_start: u64, payload_size: u64, _arg3: u64) {
@@ -83,37 +87,41 @@
         fdt: usize,
         kernel: usize,
         kernel_size: usize,
-        memory: &mut MemoryTracker,
+        vm_dtbo: Option<&mut [u8]>,
+        vm_ref_dt: Option<&[u8]>,
     ) -> Result<Self, RebootReason> {
-        // SAFETY - SIZE_2MB is non-zero.
-        const FDT_SIZE: NonZeroUsize = unsafe { NonZeroUsize::new_unchecked(helpers::SIZE_2MB) };
+        let fdt_size = NonZeroUsize::new(crosvm::FDT_MAX_SIZE).unwrap();
         // TODO - Only map the FDT as read-only, until we modify it right before jump_to_payload()
         // e.g. by generating a DTBO for a template DT in main() and, on return, re-map DT as RW,
         // overwrite with the template DT and apply the DTBO.
-        let range = memory.alloc_mut(fdt, FDT_SIZE).map_err(|e| {
+        let range = MEMORY.lock().as_mut().unwrap().alloc_mut(fdt, fdt_size).map_err(|e| {
             error!("Failed to allocate the FDT range: {e}");
             RebootReason::InternalError
         })?;
 
-        // SAFETY - The tracker validated the range to be in main memory, mapped, and not overlap.
+        // SAFETY: The tracker validated the range to be in main memory, mapped, and not overlap.
         let fdt = unsafe { slice::from_raw_parts_mut(range.start as *mut u8, range.len()) };
+
+        let info = fdt::sanitize_device_tree(fdt, vm_dtbo, vm_ref_dt)?;
         let fdt = libfdt::Fdt::from_mut_slice(fdt).map_err(|e| {
-            error!("Failed to spawn the FDT wrapper: {e}");
+            error!("Failed to load sanitized FDT: {e}");
             RebootReason::InvalidFdt
         })?;
-
-        let info = fdt::sanitize_device_tree(fdt)?;
         debug!("Fdt passed validation!");
 
         let memory_range = info.memory_range;
         debug!("Resizing MemoryTracker to range {memory_range:#x?}");
-        memory.shrink(&memory_range).map_err(|_| {
-            error!("Failed to use memory range value from DT: {memory_range:#x?}");
+        MEMORY.lock().as_mut().unwrap().shrink(&memory_range).map_err(|e| {
+            error!("Failed to use memory range value from DT: {memory_range:#x?}: {e}");
             RebootReason::InvalidFdt
         })?;
 
-        if get_hypervisor().has_cap(HypervisorCap::DYNAMIC_MEM_SHARE) {
-            memory.init_dynamic_shared_pool().map_err(|e| {
+        if let Some(mem_sharer) = get_mem_sharer() {
+            let granule = mem_sharer.granule().map_err(|e| {
+                error!("Failed to get memory protection granule: {e}");
+                RebootReason::InternalError
+            })?;
+            MEMORY.lock().as_mut().unwrap().init_dynamic_shared_pool(granule).map_err(|e| {
                 error!("Failed to initialize dynamically shared pool: {e}");
                 RebootReason::InternalError
             })?;
@@ -123,14 +131,14 @@
                 RebootReason::InvalidFdt
             })?;
 
-            memory.init_static_shared_pool(range).map_err(|e| {
+            MEMORY.lock().as_mut().unwrap().init_static_shared_pool(range).map_err(|e| {
                 error!("Failed to initialize pre-shared pool {e}");
                 RebootReason::InvalidFdt
             })?;
         }
 
         let kernel_range = if let Some(r) = info.kernel_range {
-            memory.alloc_range(&r).map_err(|e| {
+            MEMORY.lock().as_mut().unwrap().alloc_range(&r).map_err(|e| {
                 error!("Failed to obtain the kernel range with DT range: {e}");
                 RebootReason::InternalError
             })?
@@ -142,7 +150,7 @@
                 RebootReason::InvalidPayload
             })?;
 
-            memory.alloc(kernel, kernel_size).map_err(|e| {
+            MEMORY.lock().as_mut().unwrap().alloc(kernel, kernel_size).map_err(|e| {
                 error!("Failed to obtain the kernel range with legacy range: {e}");
                 RebootReason::InternalError
             })?
@@ -151,18 +159,18 @@
             return Err(RebootReason::InvalidPayload);
         };
 
-        // SAFETY - The tracker validated the range to be in main memory, mapped, and not overlap.
-        let kernel =
-            unsafe { slice::from_raw_parts(kernel_range.start as *const u8, kernel_range.len()) };
+        let kernel = kernel_range.start as *const u8;
+        // SAFETY: The tracker validated the range to be in main memory, mapped, and not overlap.
+        let kernel = unsafe { slice::from_raw_parts(kernel, kernel_range.len()) };
 
         let ramdisk = if let Some(r) = info.initrd_range {
             debug!("Located ramdisk at {r:?}");
-            let r = memory.alloc_range(&r).map_err(|e| {
+            let r = MEMORY.lock().as_mut().unwrap().alloc_range(&r).map_err(|e| {
                 error!("Failed to obtain the initrd range: {e}");
                 RebootReason::InvalidRamdisk
             })?;
 
-            // SAFETY - The region was validated by memory to be in main memory, mapped, and
+            // SAFETY: The region was validated by memory to be in main memory, mapped, and
             // not overlap.
             Some(unsafe { slice::from_raw_parts(r.start as *const u8, r.len()) })
         } else {
@@ -188,78 +196,57 @@
     // - only perform logging once the logger has been initialized
     // - only access non-pvmfw memory once (and while) it has been mapped
 
-    // SAFETY - This function should and will only be called once, here.
-    unsafe { heap::init() };
+    log::set_max_level(LevelFilter::Info);
+    // TODO(https://crbug.com/boringssl/35): Remove this init when BoringSSL can handle this
+    // internally.
+    // SAFETY: Configures the internal state of the library - may be called multiple times.
+    unsafe {
+        CRYPTO_library_init();
+    }
 
-    logger::init(LevelFilter::Info).map_err(|_| RebootReason::InternalError)?;
-
-    // Use debug!() to avoid printing to the UART if we failed to configure it as only local
-    // builds that have tweaked the logger::init() call will actually attempt to log the message.
-
-    get_hypervisor().mmio_guard_init().map_err(|e| {
-        debug!("{e}");
-        RebootReason::InternalError
-    })?;
-
-    get_hypervisor().mmio_guard_map(console::BASE_ADDRESS).map_err(|e| {
-        debug!("Failed to configure the UART: {e}");
-        RebootReason::InternalError
-    })?;
-
-    crypto::init();
-
-    // SAFETY - We only get the appended payload from here, once. It is mapped and the linker
-    // script prevents it from overlapping with other objects.
-    let appended_data = unsafe { get_appended_data_slice() };
-
-    // Up to this point, we were using the built-in static (from .rodata) page tables.
-
-    let mut page_table = mmu::PageTable::from_static_layout().map_err(|e| {
+    let page_table = memory::init_page_table().map_err(|e| {
         error!("Failed to set up the dynamic page tables: {e}");
         RebootReason::InternalError
     })?;
 
-    const CONSOLE_LEN: usize = 1; // vmbase::uart::Uart only uses one u8 register.
-    let uart_range = console::BASE_ADDRESS..(console::BASE_ADDRESS + CONSOLE_LEN);
-    page_table.map_device(&uart_range).map_err(|e| {
-        error!("Failed to remap the UART as a dynamic page table entry: {e}");
-        RebootReason::InternalError
-    })?;
+    // SAFETY: We only get the appended payload from here, once. The region was statically mapped,
+    // then remapped by `init_page_table()`.
+    let appended_data = unsafe { get_appended_data_slice() };
 
-    // SAFETY - We only get the appended payload from here, once. It is statically mapped and the
-    // linker script prevents it from overlapping with other objects.
-    let mut appended = unsafe { AppendedPayload::new(appended_data) }.ok_or_else(|| {
+    let appended = AppendedPayload::new(appended_data).ok_or_else(|| {
         error!("No valid configuration found");
         RebootReason::InvalidConfig
     })?;
 
-    let (bcc_slice, debug_policy) = appended.get_entries();
+    let config_entries = appended.get_entries();
 
-    debug!("Activating dynamic page table...");
-    // SAFETY - page_table duplicates the static mappings for everything that the Rust code is
-    // aware of so activating it shouldn't have any visible effect.
-    unsafe { page_table.activate() };
-    debug!("... Success!");
+    // Up to this point, we were using the built-in static (from .rodata) page tables.
+    MEMORY.lock().replace(MemoryTracker::new(
+        page_table,
+        crosvm::MEM_START..layout::MAX_VIRT_ADDR,
+        crosvm::MMIO_RANGE,
+        Some(memory::appended_payload_range()),
+    ));
 
-    MEMORY.lock().replace(MemoryTracker::new(page_table));
-    let slices = MemorySlices::new(fdt, payload, payload_size, MEMORY.lock().as_mut().unwrap())?;
-
-    rand::init().map_err(|e| {
-        error!("Failed to initialize rand: {e}");
-        RebootReason::InternalError
-    })?;
+    let slices = MemorySlices::new(
+        fdt,
+        payload,
+        payload_size,
+        config_entries.vm_dtbo,
+        config_entries.vm_ref_dt,
+    )?;
 
     // This wrapper allows main() to be blissfully ignorant of platform details.
     let next_bcc = crate::main(
         slices.fdt,
         slices.kernel,
         slices.ramdisk,
-        bcc_slice,
-        debug_policy,
-        MEMORY.lock().as_mut().unwrap(),
+        config_entries.bcc,
+        config_entries.debug_policy,
     )?;
 
-    helpers::flushed_zeroize(bcc_slice);
+    // Writable-dirty regions will be flushed when MemoryTracker is dropped.
+    config_entries.bcc.zeroize();
 
     info!("Expecting a bug making MMIO_GUARD_UNMAP return NOT_SUPPORTED on success");
     MEMORY.lock().as_mut().unwrap().mmio_unmap_all().map_err(|e| {
@@ -268,11 +255,15 @@
     })?;
     // Call unshare_all_memory here (instead of relying on the dtor) while UART is still mapped.
     MEMORY.lock().as_mut().unwrap().unshare_all_memory();
-    get_hypervisor().mmio_guard_unmap(console::BASE_ADDRESS).map_err(|e| {
-        error!("Failed to unshare the UART: {e}");
-        RebootReason::InternalError
-    })?;
-    MEMORY.lock().take().unwrap();
+    if let Some(mmio_guard) = get_mmio_guard() {
+        mmio_guard.unmap(console::BASE_ADDRESS).map_err(|e| {
+            error!("Failed to unshare the UART: {e}");
+            RebootReason::InternalError
+        })?;
+    }
+
+    // Drop MemoryTracker and deactivate page table.
+    drop(MEMORY.lock().take());
 
     Ok((slices.kernel.as_ptr() as usize, next_bcc))
 }
@@ -291,25 +282,25 @@
 
     let scratch = layout::scratch_range();
 
-    assert_ne!(scratch.len(), 0, "scratch memory is empty.");
-    assert_eq!(scratch.start % ASM_STP_ALIGN, 0, "scratch memory is misaligned.");
-    assert_eq!(scratch.end % ASM_STP_ALIGN, 0, "scratch memory is misaligned.");
+    assert_ne!(scratch.end - scratch.start, 0, "scratch memory is empty.");
+    assert_eq!(scratch.start.0 % ASM_STP_ALIGN, 0, "scratch memory is misaligned.");
+    assert_eq!(scratch.end.0 % ASM_STP_ALIGN, 0, "scratch memory is misaligned.");
 
-    assert!(bcc.is_within(&scratch));
+    assert!(bcc.is_within(&(scratch.start.0..scratch.end.0)));
     assert_eq!(bcc.start % ASM_STP_ALIGN, 0, "Misaligned guest BCC.");
     assert_eq!(bcc.end % ASM_STP_ALIGN, 0, "Misaligned guest BCC.");
 
-    let stack = mmu::stack_range();
+    let stack = memory::stack_range();
 
-    assert_ne!(stack.len(), 0, "stack region is empty.");
-    assert_eq!(stack.start % ASM_STP_ALIGN, 0, "Misaligned stack region.");
-    assert_eq!(stack.end % ASM_STP_ALIGN, 0, "Misaligned stack region.");
+    assert_ne!(stack.end - stack.start, 0, "stack region is empty.");
+    assert_eq!(stack.start.0 % ASM_STP_ALIGN, 0, "Misaligned stack region.");
+    assert_eq!(stack.end.0 % ASM_STP_ALIGN, 0, "Misaligned stack region.");
 
     // Zero all memory that could hold secrets and that can't be safely written to from Rust.
     // Disable the exception vector, caches and page table and then jump to the payload at the
     // given address, passing it the given FDT pointer.
     //
-    // SAFETY - We're exiting pvmfw by passing the register values we need to a noreturn asm!().
+    // SAFETY: We're exiting pvmfw by passing the register values we need to a noreturn asm!().
     unsafe {
         asm!(
             "cmp {scratch}, {bcc}",
@@ -388,12 +379,12 @@
             sctlr_el1_val = in(reg) SCTLR_EL1_VAL,
             bcc = in(reg) u64::try_from(bcc.start).unwrap(),
             bcc_end = in(reg) u64::try_from(bcc.end).unwrap(),
-            cache_line = in(reg) u64::try_from(scratch.start).unwrap(),
-            scratch = in(reg) u64::try_from(scratch.start).unwrap(),
-            scratch_end = in(reg) u64::try_from(scratch.end).unwrap(),
-            stack = in(reg) u64::try_from(stack.start).unwrap(),
-            stack_end = in(reg) u64::try_from(stack.end).unwrap(),
-            dcache_line_size = in(reg) u64::try_from(helpers::min_dcache_line_size()).unwrap(),
+            cache_line = in(reg) u64::try_from(scratch.start.0).unwrap(),
+            scratch = in(reg) u64::try_from(scratch.start.0).unwrap(),
+            scratch_end = in(reg) u64::try_from(scratch.end.0).unwrap(),
+            stack = in(reg) u64::try_from(stack.start.0).unwrap(),
+            stack_end = in(reg) u64::try_from(stack.end.0).unwrap(),
+            dcache_line_size = in(reg) u64::try_from(min_dcache_line_size()).unwrap(),
             in("x0") fdt_address,
             in("x30") payload_start,
             options(noreturn),
@@ -401,14 +392,15 @@
     };
 }
 
+/// # Safety
+///
+/// This must only be called once, since we are returning a mutable reference.
+/// The appended data region must be mapped.
 unsafe fn get_appended_data_slice() -> &'static mut [u8] {
-    let base = helpers::align_up(layout::binary_end(), helpers::SIZE_4KB).unwrap();
-    // pvmfw is contained in a 2MiB region so the payload can't be larger than the 2MiB alignment.
-    let size = helpers::align_up(base, helpers::SIZE_2MB).unwrap() - base;
-
+    let range = memory::appended_payload_range();
     // SAFETY: This region is mapped and the linker script prevents it from overlapping with other
     // objects.
-    unsafe { slice::from_raw_parts_mut(base as *mut u8, size) }
+    unsafe { slice::from_raw_parts_mut(range.start.0 as *mut u8, range.end - range.start) }
 }
 
 enum AppendedConfigType {
@@ -425,17 +417,14 @@
 }
 
 impl<'a> AppendedPayload<'a> {
-    /// SAFETY - 'data' should respect the alignment of config::Header.
-    unsafe fn new(data: &'a mut [u8]) -> Option<Self> {
-        // Safety: This fn has the same constraint as us.
-        match unsafe { Self::guess_config_type(data) } {
+    fn new(data: &'a mut [u8]) -> Option<Self> {
+        match Self::guess_config_type(data) {
             AppendedConfigType::Valid => {
-                // Safety: This fn has the same constraint as us.
-                let config = unsafe { config::Config::new(data) };
+                let config = config::Config::new(data);
                 Some(Self::Config(config.unwrap()))
             }
             AppendedConfigType::NotFound if cfg!(feature = "legacy") => {
-                const BCC_SIZE: usize = helpers::SIZE_4KB;
+                const BCC_SIZE: usize = SIZE_4KB;
                 warn!("Assuming the appended data at {:?} to be a raw BCC", data.as_ptr());
                 Some(Self::LegacyBcc(&mut data[..BCC_SIZE]))
             }
@@ -443,14 +432,12 @@
         }
     }
 
-    /// SAFETY - 'data' should respect the alignment of config::Header.
-    unsafe fn guess_config_type(data: &mut [u8]) -> AppendedConfigType {
+    fn guess_config_type(data: &mut [u8]) -> AppendedConfigType {
         // This function is necessary to prevent the borrow checker from getting confused
         // about the ownership of data in new(); see https://users.rust-lang.org/t/78467.
         let addr = data.as_ptr();
 
-        // Safety: This fn has the same constraint as us.
-        match unsafe { config::Config::new(data) } {
+        match config::Config::new(data) {
             Err(config::Error::InvalidMagic) => {
                 warn!("No configuration data found at {addr:?}");
                 AppendedConfigType::NotFound
@@ -463,10 +450,10 @@
         }
     }
 
-    fn get_entries(&mut self) -> (&mut [u8], Option<&mut [u8]>) {
+    fn get_entries(self) -> config::Entries<'a> {
         match self {
-            Self::Config(ref mut cfg) => cfg.get_entries(),
-            Self::LegacyBcc(ref mut bcc) => (bcc, None),
+            Self::Config(cfg) => cfg.get_entries(),
+            Self::LegacyBcc(bcc) => config::Entries { bcc, ..Default::default() },
         }
     }
 }
diff --git a/pvmfw/src/exceptions.rs b/pvmfw/src/exceptions.rs
index 462a9cc..d9f0891 100644
--- a/pvmfw/src/exceptions.rs
+++ b/pvmfw/src/exceptions.rs
@@ -14,91 +14,34 @@
 
 //! Exception handlers.
 
-use crate::{helpers::page_4kb_of, read_sysreg};
-use core::fmt;
-use vmbase::console;
-use vmbase::logger;
-use vmbase::{eprintln, power::reboot};
+use vmbase::{
+    eprintln,
+    exceptions::{ArmException, Esr, HandleExceptionError},
+    logger,
+    memory::{handle_permission_fault, handle_translation_fault},
+    power::reboot,
+    read_sysreg,
+};
 
-const UART_PAGE: usize = page_4kb_of(console::BASE_ADDRESS);
-
-#[derive(Debug)]
-enum HandleExceptionError {
-    UnknownException,
-}
-
-impl fmt::Display for HandleExceptionError {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        match self {
-            Self::UnknownException => write!(f, "An unknown exception occurred, not handled."),
-        }
+fn handle_exception(exception: &ArmException) -> Result<(), HandleExceptionError> {
+    // Handle all translation faults on both read and write, and MMIO guard map
+    // flagged invalid pages or blocks that caused the exception.
+    // Handle permission faults for DBM flagged entries, and flag them as dirty on write.
+    match exception.esr {
+        Esr::DataAbortTranslationFault => handle_translation_fault(exception.far),
+        Esr::DataAbortPermissionFault => handle_permission_fault(exception.far),
+        _ => Err(HandleExceptionError::UnknownException),
     }
 }
 
-#[derive(Debug, PartialEq, Copy, Clone)]
-enum Esr {
-    DataAbortTranslationFault,
-    DataAbortPermissionFault,
-    DataAbortSyncExternalAbort,
-    Unknown(usize),
-}
-
-impl Esr {
-    const EXT_DABT_32BIT: usize = 0x96000010;
-    const TRANSL_FAULT_BASE_32BIT: usize = 0x96000004;
-    const TRANSL_FAULT_ISS_MASK_32BIT: usize = !0x143;
-    const PERM_FAULT_BASE_32BIT: usize = 0x9600004C;
-    const PERM_FAULT_ISS_MASK_32BIT: usize = !0x103;
-}
-
-impl From<usize> for Esr {
-    fn from(esr: usize) -> Self {
-        if esr == Self::EXT_DABT_32BIT {
-            Self::DataAbortSyncExternalAbort
-        } else if esr & Self::TRANSL_FAULT_ISS_MASK_32BIT == Self::TRANSL_FAULT_BASE_32BIT {
-            Self::DataAbortTranslationFault
-        } else if esr & Self::PERM_FAULT_ISS_MASK_32BIT == Self::PERM_FAULT_BASE_32BIT {
-            Self::DataAbortPermissionFault
-        } else {
-            Self::Unknown(esr)
-        }
-    }
-}
-
-impl fmt::Display for Esr {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        match self {
-            Self::DataAbortSyncExternalAbort => write!(f, "Synchronous external abort"),
-            Self::DataAbortTranslationFault => write!(f, "Translation fault"),
-            Self::DataAbortPermissionFault => write!(f, "Permission fault"),
-            Self::Unknown(v) => write!(f, "Unknown exception esr={v:#08x}"),
-        }
-    }
-}
-
-fn handle_exception(_esr: Esr, _far: usize) -> Result<(), HandleExceptionError> {
-    Err(HandleExceptionError::UnknownException)
-}
-
-#[inline]
-fn handling_uart_exception(esr: Esr, far: usize) -> bool {
-    esr == Esr::DataAbortSyncExternalAbort && page_4kb_of(far) == UART_PAGE
-}
-
 #[no_mangle]
-extern "C" fn sync_exception_current(_elr: u64, _spsr: u64) {
+extern "C" fn sync_exception_current(elr: u64, _spsr: u64) {
     // Disable logging in exception handler to prevent unsafe writes to UART.
     let _guard = logger::suppress();
-    let esr: Esr = read_sysreg!("esr_el1").into();
-    let far = read_sysreg!("far_el1");
 
-    if let Err(e) = handle_exception(esr, far) {
-        // Don't print to the UART if we are handling an exception it could raise.
-        if !handling_uart_exception(esr, far) {
-            eprintln!("sync_exception_current");
-            eprintln!("{e}");
-            eprintln!("{esr}, far={far:#08x}");
-        }
+    let exception = ArmException::from_el1_regs();
+    if let Err(e) = handle_exception(&exception) {
+        exception.print("sync_exception_current", e, elr);
         reboot()
     }
 }
diff --git a/pvmfw/src/fdt.rs b/pvmfw/src/fdt.rs
index a1377c4..d2aad61 100644
--- a/pvmfw/src/fdt.rs
+++ b/pvmfw/src/fdt.rs
@@ -15,22 +15,20 @@
 //! High-level FDT functions.
 
 use crate::bootargs::BootArgsIterator;
-use crate::cstr;
-use crate::helpers::flatten;
-use crate::helpers::RangeExt;
+use crate::device_assignment::{DeviceAssignmentInfo, VmDtbo};
 use crate::helpers::GUEST_PAGE_SIZE;
-use crate::helpers::SIZE_4KB;
-use crate::memory::BASE_ADDR;
-use crate::memory::MAX_ADDR;
 use crate::Box;
 use crate::RebootReason;
+use alloc::collections::BTreeMap;
 use alloc::ffi::CString;
 use alloc::vec::Vec;
 use core::cmp::max;
 use core::cmp::min;
 use core::ffi::CStr;
+use core::fmt;
 use core::mem::size_of;
 use core::ops::Range;
+use cstr::cstr;
 use fdtpci::PciMemoryFlags;
 use fdtpci::PciRangeType;
 use libfdt::AddressRange;
@@ -38,11 +36,33 @@
 use libfdt::Fdt;
 use libfdt::FdtError;
 use libfdt::FdtNode;
+use libfdt::FdtNodeMut;
 use log::debug;
 use log::error;
 use log::info;
 use log::warn;
 use tinyvec::ArrayVec;
+use vmbase::fdt::SwiotlbInfo;
+use vmbase::layout::{crosvm::MEM_START, MAX_VIRT_ADDR};
+use vmbase::memory::SIZE_4KB;
+use vmbase::util::flatten;
+use vmbase::util::RangeExt as _;
+use zerocopy::AsBytes as _;
+
+/// An enumeration of errors that can occur during the FDT validation.
+#[derive(Clone, Debug)]
+pub enum FdtValidationError {
+    /// Invalid CPU count.
+    InvalidCpuCount(usize),
+}
+
+impl fmt::Display for FdtValidationError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::InvalidCpuCount(num_cpus) => write!(f, "Invalid CPU count: {num_cpus}"),
+        }
+    }
+}
 
 /// Extract from /config the address range containing the pre-loaded kernel. Absence of /config is
 /// not an error.
@@ -107,16 +127,27 @@
     node.setprop(cstr!("bootargs"), bootargs.to_bytes_with_nul())
 }
 
-/// Read the first range in /memory node in DT
-fn read_memory_range_from(fdt: &Fdt) -> libfdt::Result<Range<usize>> {
-    fdt.memory()?.ok_or(FdtError::NotFound)?.next().ok_or(FdtError::NotFound)
-}
-
-/// Check if memory range is ok
-fn validate_memory_range(range: &Range<usize>) -> Result<(), RebootReason> {
+/// Reads and validates the memory range in the DT.
+///
+/// Only one memory range is expected with the crosvm setup for now.
+fn read_and_validate_memory_range(fdt: &Fdt) -> Result<Range<usize>, RebootReason> {
+    let mut memory = fdt.memory().map_err(|e| {
+        error!("Failed to read memory range from DT: {e}");
+        RebootReason::InvalidFdt
+    })?;
+    let range = memory.next().ok_or_else(|| {
+        error!("The /memory node in the DT contains no range.");
+        RebootReason::InvalidFdt
+    })?;
+    if memory.next().is_some() {
+        warn!(
+            "The /memory node in the DT contains more than one memory range, \
+             while only one is expected."
+        );
+    }
     let base = range.start;
-    if base != BASE_ADDR {
-        error!("Memory base address {:#x} is not {:#x}", base, BASE_ADDR);
+    if base != MEM_START {
+        error!("Memory base address {:#x} is not {:#x}", base, MEM_START);
         return Err(RebootReason::InvalidFdt);
     }
 
@@ -130,14 +161,15 @@
         error!("Memory size is 0");
         return Err(RebootReason::InvalidFdt);
     }
-    Ok(())
+    Ok(range)
 }
 
 fn patch_memory_range(fdt: &mut Fdt, memory_range: &Range<usize>) -> libfdt::Result<()> {
-    let size = memory_range.len() as u64;
+    let addr = u64::try_from(MEM_START).unwrap();
+    let size = u64::try_from(memory_range.len()).unwrap();
     fdt.node_mut(cstr!("/memory"))?
         .ok_or(FdtError::NotFound)?
-        .setprop_inplace(cstr!("reg"), flatten(&[BASE_ADDR.to_be_bytes(), size.to_be_bytes()]))
+        .setprop_inplace(cstr!("reg"), [addr.to_be(), size.to_be()].as_bytes())
 }
 
 /// Read the number of CPUs from DT
@@ -146,16 +178,12 @@
 }
 
 /// Validate number of CPUs
-fn validate_num_cpus(num_cpus: usize) -> Result<(), RebootReason> {
-    if num_cpus == 0 {
-        error!("Number of CPU can't be 0");
-        return Err(RebootReason::InvalidFdt);
+fn validate_num_cpus(num_cpus: usize) -> Result<(), FdtValidationError> {
+    if num_cpus == 0 || DeviceTreeInfo::gic_patched_size(num_cpus).is_none() {
+        Err(FdtValidationError::InvalidCpuCount(num_cpus))
+    } else {
+        Ok(())
     }
-    if DeviceTreeInfo::GIC_REDIST_SIZE_PER_CPU.checked_mul(num_cpus.try_into().unwrap()).is_none() {
-        error!("Too many CPUs for gic: {}", num_cpus);
-        return Err(RebootReason::InvalidFdt);
-    }
-    Ok(())
 }
 
 /// Patch DT by keeping `num_cpus` number of arm,arm-v8 compatible nodes, and pruning the rest.
@@ -175,6 +203,49 @@
     Ok(())
 }
 
+/// Read candidate properties' names from DT which could be overlaid
+fn parse_vm_ref_dt(fdt: &Fdt) -> libfdt::Result<BTreeMap<CString, Vec<u8>>> {
+    let mut property_map = BTreeMap::new();
+    if let Some(avf_node) = fdt.node(cstr!("/avf"))? {
+        for property in avf_node.properties()? {
+            let name = property.name()?;
+            let value = property.value()?;
+            property_map.insert(
+                CString::new(name.to_bytes()).map_err(|_| FdtError::BadValue)?,
+                value.to_vec(),
+            );
+        }
+    }
+    Ok(property_map)
+}
+
+/// Overlay VM reference DT into VM DT based on the props_info. Property is overlaid in vm_dt only
+/// when it exists both in vm_ref_dt and props_info. If the values mismatch, it returns error.
+fn validate_vm_ref_dt(
+    vm_dt: &mut Fdt,
+    vm_ref_dt: &Fdt,
+    props_info: &BTreeMap<CString, Vec<u8>>,
+) -> libfdt::Result<()> {
+    let mut root_vm_dt = vm_dt.root_mut()?;
+    let mut avf_vm_dt = root_vm_dt.add_subnode(cstr!("avf"))?;
+    // TODO(b/318431677): Validate nodes beyond /avf.
+    let avf_node = vm_ref_dt.node(cstr!("/avf"))?.ok_or(FdtError::NotFound)?;
+    for (name, value) in props_info.iter() {
+        if let Some(ref_value) = avf_node.getprop(name)? {
+            if value != ref_value {
+                error!(
+                    "Property mismatches while applying overlay VM reference DT. \
+                    Name:{:?}, Value from host as hex:{:x?}, Value from VM reference DT as hex:{:x?}",
+                    name, value, ref_value
+                );
+                return Err(FdtError::BadValue);
+            }
+            avf_vm_dt.setprop(name, ref_value)?;
+        }
+    }
+    Ok(())
+}
+
 #[derive(Debug)]
 struct PciInfo {
     ranges: [PciAddrRange; 2],
@@ -185,7 +256,7 @@
 impl PciInfo {
     const IRQ_MASK_CELLS: usize = 4;
     const IRQ_MAP_CELLS: usize = 10;
-    const MAX_IRQS: usize = 8;
+    const MAX_IRQS: usize = 10;
 }
 
 type PciAddrRange = AddressRange<(u32, u64), u64, u64>;
@@ -224,14 +295,22 @@
     let range1 = ranges.next().ok_or(FdtError::NotFound)?;
 
     let irq_masks = node.getprop_cells(cstr!("interrupt-map-mask"))?.ok_or(FdtError::NotFound)?;
-    let irq_masks = CellChunkIterator::<{ PciInfo::IRQ_MASK_CELLS }>::new(irq_masks);
-    let irq_masks: ArrayVec<[PciIrqMask; PciInfo::MAX_IRQS]> =
-        irq_masks.take(PciInfo::MAX_IRQS).collect();
+    let mut chunks = CellChunkIterator::<{ PciInfo::IRQ_MASK_CELLS }>::new(irq_masks);
+    let irq_masks = (&mut chunks).take(PciInfo::MAX_IRQS).collect();
+
+    if chunks.next().is_some() {
+        warn!("Input DT has more than {} PCI entries!", PciInfo::MAX_IRQS);
+        return Err(FdtError::NoSpace);
+    }
 
     let irq_maps = node.getprop_cells(cstr!("interrupt-map"))?.ok_or(FdtError::NotFound)?;
-    let irq_maps = CellChunkIterator::<{ PciInfo::IRQ_MAP_CELLS }>::new(irq_maps);
-    let irq_maps: ArrayVec<[PciIrqMap; PciInfo::MAX_IRQS]> =
-        irq_maps.take(PciInfo::MAX_IRQS).collect();
+    let mut chunks = CellChunkIterator::<{ PciInfo::IRQ_MAP_CELLS }>::new(irq_maps);
+    let irq_maps = (&mut chunks).take(PciInfo::MAX_IRQS).collect();
+
+    if chunks.next().is_some() {
+        warn!("Input DT has more than {} PCI entries!", PciInfo::MAX_IRQS);
+        return Err(FdtError::NoSpace);
+    }
 
     Ok(PciInfo { ranges: [range0, range1], irq_masks, irq_maps })
 }
@@ -278,7 +357,7 @@
         error!("PCI address range size {:#x} overflows", size);
         return Err(RebootReason::InvalidFdt);
     };
-    if bus_end > MAX_ADDR.try_into().unwrap() {
+    if bus_end > MAX_VIRT_ADDR.try_into().unwrap() {
         error!("PCI address end {:#x} is outside of translatable range", bus_end);
         return Err(RebootReason::InvalidFdt);
     }
@@ -409,11 +488,17 @@
 }
 
 fn read_serial_info_from(fdt: &Fdt) -> libfdt::Result<SerialInfo> {
-    let mut addrs: ArrayVec<[u64; SerialInfo::MAX_SERIALS]> = Default::default();
-    for node in fdt.compatible_nodes(cstr!("ns16550a"))?.take(SerialInfo::MAX_SERIALS) {
-        let reg = node.reg()?.ok_or(FdtError::NotFound)?.next().ok_or(FdtError::NotFound)?;
+    let mut addrs = ArrayVec::new();
+
+    let mut serial_nodes = fdt.compatible_nodes(cstr!("ns16550a"))?;
+    for node in serial_nodes.by_ref().take(addrs.capacity()) {
+        let reg = node.first_reg()?;
         addrs.push(reg.addr);
     }
+    if serial_nodes.next().is_some() {
+        warn!("DT has more than {} UART nodes: discarding extra nodes.", addrs.capacity());
+    }
+
     Ok(SerialInfo { addrs })
 }
 
@@ -436,38 +521,6 @@
     Ok(())
 }
 
-#[derive(Debug)]
-pub struct SwiotlbInfo {
-    addr: Option<usize>,
-    size: usize,
-    align: usize,
-}
-
-impl SwiotlbInfo {
-    pub fn fixed_range(&self) -> Option<Range<usize>> {
-        self.addr.map(|addr| addr..addr + self.size)
-    }
-}
-
-fn read_swiotlb_info_from(fdt: &Fdt) -> libfdt::Result<SwiotlbInfo> {
-    let node =
-        fdt.compatible_nodes(cstr!("restricted-dma-pool"))?.next().ok_or(FdtError::NotFound)?;
-    let align =
-        node.getprop_u64(cstr!("alignment"))?.ok_or(FdtError::NotFound)?.try_into().unwrap();
-
-    let (addr, size) = if let Some(mut reg) = node.reg()? {
-        let reg = reg.next().ok_or(FdtError::NotFound)?;
-        let size = reg.size.ok_or(FdtError::NotFound)?;
-        reg.addr.checked_add(size).ok_or(FdtError::BadValue)?;
-        (Some(reg.addr.try_into().unwrap()), size.try_into().unwrap())
-    } else {
-        let size = node.getprop_u64(cstr!("size"))?.ok_or(FdtError::NotFound)?.try_into().unwrap();
-        (None, size)
-    };
-
-    Ok(SwiotlbInfo { addr, size, align })
-}
-
 fn validate_swiotlb_info(
     swiotlb_info: &SwiotlbInfo,
     memory: &Range<usize>,
@@ -480,11 +533,17 @@
         return Err(RebootReason::InvalidFdt);
     }
 
-    if (align % GUEST_PAGE_SIZE) != 0 {
+    if let Some(align) = align.filter(|&a| a % GUEST_PAGE_SIZE != 0) {
         error!("Invalid swiotlb alignment {:#x}", align);
         return Err(RebootReason::InvalidFdt);
     }
 
+    if let Some(addr) = swiotlb_info.addr {
+        if addr.checked_add(size).is_none() {
+            error!("Invalid swiotlb range: addr:{addr:#x} size:{size:#x}");
+            return Err(RebootReason::InvalidFdt);
+        }
+    }
     if let Some(range) = swiotlb_info.fixed_range() {
         if !range.is_within(memory) {
             error!("swiotlb range {range:#x?} not part of memory range {memory:#x?}");
@@ -498,16 +557,19 @@
 fn patch_swiotlb_info(fdt: &mut Fdt, swiotlb_info: &SwiotlbInfo) -> libfdt::Result<()> {
     let mut node =
         fdt.root_mut()?.next_compatible(cstr!("restricted-dma-pool"))?.ok_or(FdtError::NotFound)?;
-    node.setprop_inplace(cstr!("alignment"), &swiotlb_info.align.to_be_bytes())?;
 
     if let Some(range) = swiotlb_info.fixed_range() {
-        node.appendprop_addrrange(
+        node.setprop_addrrange_inplace(
             cstr!("reg"),
             range.start.try_into().unwrap(),
             range.len().try_into().unwrap(),
         )?;
+        node.nop_property(cstr!("size"))?;
+        node.nop_property(cstr!("alignment"))?;
     } else {
+        node.nop_property(cstr!("reg"))?;
         node.setprop_inplace(cstr!("size"), &swiotlb_info.size.to_be_bytes())?;
+        node.setprop_inplace(cstr!("alignment"), &swiotlb_info.align.unwrap().to_be_bytes())?;
     }
 
     Ok(())
@@ -520,22 +582,16 @@
     let mut range1 = ranges.next().ok_or(FdtError::NotFound)?;
 
     let addr = range0.addr;
-    // SAFETY - doesn't overflow. checked in validate_num_cpus
-    let size: u64 =
-        DeviceTreeInfo::GIC_REDIST_SIZE_PER_CPU.checked_mul(num_cpus.try_into().unwrap()).unwrap();
+    // `validate_num_cpus()` checked that this wouldn't panic
+    let size = u64::try_from(DeviceTreeInfo::gic_patched_size(num_cpus).unwrap()).unwrap();
 
     // range1 is just below range0
     range1.addr = addr - size;
     range1.size = Some(size);
 
-    let range0 = range0.to_cells();
-    let range1 = range1.to_cells();
-    let value = [
-        range0.0,          // addr
-        range0.1.unwrap(), //size
-        range1.0,          // addr
-        range1.1.unwrap(), //size
-    ];
+    let (addr0, size0) = range0.to_cells();
+    let (addr1, size1) = range1.to_cells();
+    let value = [addr0, size0.unwrap(), addr1, size1.unwrap()];
 
     let mut node =
         fdt.root_mut()?.next_compatible(cstr!("arm,gic-v3"))?.ok_or(FdtError::NotFound)?;
@@ -559,17 +615,11 @@
         *v = v.to_be();
     }
 
-    // SAFETY - array size is the same
-    let value = unsafe {
-        core::mem::transmute::<
-            [u32; NUM_INTERRUPTS * CELLS_PER_INTERRUPT],
-            [u8; NUM_INTERRUPTS * CELLS_PER_INTERRUPT * size_of::<u32>()],
-        >(value.into_inner())
-    };
+    let value = value.into_inner();
 
     let mut node =
         fdt.root_mut()?.next_compatible(cstr!("arm,armv8-timer"))?.ok_or(FdtError::NotFound)?;
-    node.setprop_inplace(cstr!("interrupts"), value.as_slice())
+    node.setprop_inplace(cstr!("interrupts"), value.as_bytes())
 }
 
 #[derive(Debug)]
@@ -582,26 +632,90 @@
     pci_info: PciInfo,
     serial_info: SerialInfo,
     pub swiotlb_info: SwiotlbInfo,
+    device_assignment: Option<DeviceAssignmentInfo>,
+    vm_ref_dt_props_info: BTreeMap<CString, Vec<u8>>,
 }
 
 impl DeviceTreeInfo {
-    const GIC_REDIST_SIZE_PER_CPU: u64 = (32 * SIZE_4KB) as u64;
+    fn gic_patched_size(num_cpus: usize) -> Option<usize> {
+        const GIC_REDIST_SIZE_PER_CPU: usize = 32 * SIZE_4KB;
+
+        GIC_REDIST_SIZE_PER_CPU.checked_mul(num_cpus)
+    }
 }
 
-pub fn sanitize_device_tree(fdt: &mut Fdt) -> Result<DeviceTreeInfo, RebootReason> {
-    let info = parse_device_tree(fdt)?;
-    debug!("Device tree info: {:?}", info);
+pub fn sanitize_device_tree(
+    fdt: &mut [u8],
+    vm_dtbo: Option<&mut [u8]>,
+    vm_ref_dt: Option<&[u8]>,
+) -> Result<DeviceTreeInfo, RebootReason> {
+    let fdt = Fdt::from_mut_slice(fdt).map_err(|e| {
+        error!("Failed to load FDT: {e}");
+        RebootReason::InvalidFdt
+    })?;
+
+    let vm_dtbo = match vm_dtbo {
+        Some(vm_dtbo) => Some(VmDtbo::from_mut_slice(vm_dtbo).map_err(|e| {
+            error!("Failed to load VM DTBO: {e}");
+            RebootReason::InvalidFdt
+        })?),
+        None => None,
+    };
+
+    let info = parse_device_tree(fdt, vm_dtbo.as_deref())?;
 
     fdt.copy_from_slice(pvmfw_fdt_template::RAW).map_err(|e| {
         error!("Failed to instantiate FDT from the template DT: {e}");
         RebootReason::InvalidFdt
     })?;
 
+    fdt.unpack().map_err(|e| {
+        error!("Failed to unpack DT for patching: {e}");
+        RebootReason::InvalidFdt
+    })?;
+
+    if let Some(device_assignment_info) = &info.device_assignment {
+        let vm_dtbo = vm_dtbo.unwrap();
+        device_assignment_info.filter(vm_dtbo).map_err(|e| {
+            error!("Failed to filter VM DTBO: {e}");
+            RebootReason::InvalidFdt
+        })?;
+        // SAFETY: Damaged VM DTBO isn't used in this API after this unsafe block.
+        // VM DTBO can't be reused in any way as Fdt nor VmDtbo outside of this API because
+        // it can only be instantiated after validation.
+        unsafe {
+            fdt.apply_overlay(vm_dtbo.as_mut()).map_err(|e| {
+                error!("Failed to apply filtered VM DTBO: {e}");
+                RebootReason::InvalidFdt
+            })?;
+        }
+    }
+
+    if let Some(vm_ref_dt) = vm_ref_dt {
+        let vm_ref_dt = Fdt::from_slice(vm_ref_dt).map_err(|e| {
+            error!("Failed to load VM reference DT: {e}");
+            RebootReason::InvalidFdt
+        })?;
+
+        validate_vm_ref_dt(fdt, vm_ref_dt, &info.vm_ref_dt_props_info).map_err(|e| {
+            error!("Failed to apply VM reference DT: {e}");
+            RebootReason::InvalidFdt
+        })?;
+    }
+
     patch_device_tree(fdt, &info)?;
+
+    // TODO(b/317201360): Ensure no overlapping in <reg> among devices
+
+    fdt.pack().map_err(|e| {
+        error!("Failed to unpack DT after patching: {e}");
+        RebootReason::InvalidFdt
+    })?;
+
     Ok(info)
 }
 
-fn parse_device_tree(fdt: &libfdt::Fdt) -> Result<DeviceTreeInfo, RebootReason> {
+fn parse_device_tree(fdt: &Fdt, vm_dtbo: Option<&VmDtbo>) -> Result<DeviceTreeInfo, RebootReason> {
     let kernel_range = read_kernel_range_from(fdt).map_err(|e| {
         error!("Failed to read kernel range from DT: {e}");
         RebootReason::InvalidFdt
@@ -612,11 +726,7 @@
         RebootReason::InvalidFdt
     })?;
 
-    let memory_range = read_memory_range_from(fdt).map_err(|e| {
-        error!("Failed to read memory range from DT: {e}");
-        RebootReason::InvalidFdt
-    })?;
-    validate_memory_range(&memory_range)?;
+    let memory_range = read_and_validate_memory_range(fdt)?;
 
     let bootargs = read_bootargs_from(fdt).map_err(|e| {
         error!("Failed to read bootargs from DT: {e}");
@@ -627,7 +737,10 @@
         error!("Failed to read num cpus from DT: {e}");
         RebootReason::InvalidFdt
     })?;
-    validate_num_cpus(num_cpus)?;
+    validate_num_cpus(num_cpus).map_err(|e| {
+        error!("Failed to validate num cpus from DT: {e}");
+        RebootReason::InvalidFdt
+    })?;
 
     let pci_info = read_pci_info_from(fdt).map_err(|e| {
         error!("Failed to read pci info from DT: {e}");
@@ -640,12 +753,34 @@
         RebootReason::InvalidFdt
     })?;
 
-    let swiotlb_info = read_swiotlb_info_from(fdt).map_err(|e| {
+    let swiotlb_info = SwiotlbInfo::new_from_fdt(fdt).map_err(|e| {
         error!("Failed to read swiotlb info from DT: {e}");
         RebootReason::InvalidFdt
     })?;
     validate_swiotlb_info(&swiotlb_info, &memory_range)?;
 
+    let device_assignment = match vm_dtbo {
+        Some(vm_dtbo) => {
+            if let Some(hypervisor) = hyp::get_device_assigner() {
+                DeviceAssignmentInfo::parse(fdt, vm_dtbo, hypervisor).map_err(|e| {
+                    error!("Failed to parse device assignment from DT and VM DTBO: {e}");
+                    RebootReason::InvalidFdt
+                })?
+            } else {
+                warn!(
+                    "Device assignment is ignored because device assigning hypervisor is missing"
+                );
+                None
+            }
+        }
+        None => None,
+    };
+
+    let vm_ref_dt_props_info = parse_vm_ref_dt(fdt).map_err(|e| {
+        error!("Failed to read names of properties under /avf from DT: {e}");
+        RebootReason::InvalidFdt
+    })?;
+
     Ok(DeviceTreeInfo {
         kernel_range,
         initrd_range,
@@ -655,15 +790,12 @@
         pci_info,
         serial_info,
         swiotlb_info,
+        device_assignment,
+        vm_ref_dt_props_info,
     })
 }
 
 fn patch_device_tree(fdt: &mut Fdt, info: &DeviceTreeInfo) -> Result<(), RebootReason> {
-    fdt.unpack().map_err(|e| {
-        error!("Failed to unpack DT for patching: {e}");
-        RebootReason::InvalidFdt
-    })?;
-
     if let Some(initrd_range) = &info.initrd_range {
         patch_initrd_range(fdt, initrd_range).map_err(|e| {
             error!("Failed to patch initrd range to DT: {e}");
@@ -704,11 +836,14 @@
         error!("Failed to patch timer info to DT: {e}");
         RebootReason::InvalidFdt
     })?;
-
-    fdt.pack().map_err(|e| {
-        error!("Failed to pack DT after patching: {e}");
-        RebootReason::InvalidFdt
-    })?;
+    if let Some(device_assignment) = &info.device_assignment {
+        // Note: We patch values after VM DTBO is overlaid because patch may require more space
+        // then VM DTBO's underlying slice is allocated.
+        device_assignment.patch(fdt).map_err(|e| {
+            error!("Failed to patch device assignment info to DT: {e}");
+            RebootReason::InvalidFdt
+        })?;
+    }
 
     Ok(())
 }
@@ -719,8 +854,9 @@
     bcc: &[u8],
     new_instance: bool,
     strict_boot: bool,
-    debug_policy: Option<&mut [u8]>,
+    debug_policy: Option<&[u8]>,
     debuggable: bool,
+    kaslr_seed: u64,
 ) -> libfdt::Result<()> {
     if let Some(debug_policy) = debug_policy {
         let backup = Vec::from(fdt.as_slice());
@@ -739,9 +875,11 @@
 
     patch_dice_node(fdt, bcc.as_ptr() as usize, bcc.len())?;
 
-    set_or_clear_chosen_flag(fdt, cstr!("avf,strict-boot"), strict_boot)?;
-    set_or_clear_chosen_flag(fdt, cstr!("avf,new-instance"), new_instance)?;
-
+    if let Some(mut chosen) = fdt.chosen_mut()? {
+        empty_or_delete_prop(&mut chosen, cstr!("avf,strict-boot"), strict_boot)?;
+        empty_or_delete_prop(&mut chosen, cstr!("avf,new-instance"), new_instance)?;
+        chosen.setprop_inplace(cstr!("kaslr-seed"), &kaslr_seed.to_be_bytes())?;
+    };
     if !debuggable {
         if let Some(bootargs) = read_bootargs_from(fdt)? {
             filter_out_dangerous_bootargs(fdt, &bootargs)?;
@@ -766,19 +904,18 @@
     node.setprop_inplace(cstr!("reg"), flatten(&[addr.to_be_bytes(), size.to_be_bytes()]))
 }
 
-fn set_or_clear_chosen_flag(fdt: &mut Fdt, flag: &CStr, value: bool) -> libfdt::Result<()> {
-    // TODO(b/249054080): Refactor to not panic if the DT doesn't contain a /chosen node.
-    let mut chosen = fdt.chosen_mut()?.unwrap();
-    if value {
-        chosen.setprop_empty(flag)?;
+fn empty_or_delete_prop(
+    fdt_node: &mut FdtNodeMut,
+    prop_name: &CStr,
+    keep_prop: bool,
+) -> libfdt::Result<()> {
+    if keep_prop {
+        fdt_node.setprop_empty(prop_name)
     } else {
-        match chosen.delprop(flag) {
-            Ok(()) | Err(FdtError::NotFound) => (),
-            Err(e) => return Err(e),
-        }
+        fdt_node
+            .delprop(prop_name)
+            .or_else(|e| if e == FdtError::NotFound { Ok(()) } else { Err(e) })
     }
-
-    Ok(())
 }
 
 /// Apply the debug policy overlay to the guest DT.
@@ -798,7 +935,7 @@
         }
     };
 
-    // SAFETY - on failure, the corrupted DT is restored using the backup.
+    // SAFETY: on failure, the corrupted DT is restored using the backup.
     if let Err(e) = unsafe { fdt.apply_overlay(overlay) } {
         warn!("Failed to apply debug policy: {e}. Recovering...");
         fdt.copy_from_slice(backup_fdt.as_slice())?;
@@ -810,7 +947,7 @@
     }
 }
 
-fn read_common_debug_policy(fdt: &Fdt, debug_feature_name: &CStr) -> libfdt::Result<bool> {
+fn has_common_debug_policy(fdt: &Fdt, debug_feature_name: &CStr) -> libfdt::Result<bool> {
     if let Some(node) = fdt.node(cstr!("/avf/guest/common"))? {
         if let Some(value) = node.getprop_u32(debug_feature_name)? {
             return Ok(value == 1);
@@ -820,8 +957,8 @@
 }
 
 fn filter_out_dangerous_bootargs(fdt: &mut Fdt, bootargs: &CStr) -> libfdt::Result<()> {
-    let has_crashkernel = read_common_debug_policy(fdt, cstr!("ramdump"))?;
-    let has_console = read_common_debug_policy(fdt, cstr!("log"))?;
+    let has_crashkernel = has_common_debug_policy(fdt, cstr!("ramdump"))?;
+    let has_console = has_common_debug_policy(fdt, cstr!("log"))?;
 
     let accepted: &[(&str, Box<dyn Fn(Option<&str>) -> bool>)] = &[
         ("panic", Box::new(|v| if let Some(v) = v { v == "=-1" } else { false })),
diff --git a/pvmfw/src/gpt.rs b/pvmfw/src/gpt.rs
index 6af3047..71eb569 100644
--- a/pvmfw/src/gpt.rs
+++ b/pvmfw/src/gpt.rs
@@ -14,8 +14,6 @@
 
 //! Support for parsing GUID partition tables.
 
-use crate::helpers::ceiling_div;
-use crate::virtio::pci::VirtIOBlk;
 use core::cmp::min;
 use core::fmt;
 use core::mem::size_of;
@@ -25,6 +23,12 @@
 use static_assertions::const_assert_eq;
 use uuid::Uuid;
 use virtio_drivers::device::blk::SECTOR_SIZE;
+use vmbase::util::ceiling_div;
+use vmbase::virtio::{pci, HalImpl};
+use zerocopy::FromBytes;
+use zerocopy::FromZeroes;
+
+type VirtIOBlk = pci::VirtIOBlk<HalImpl>;
 
 pub enum Error {
     /// VirtIO error during read operation.
@@ -100,9 +104,11 @@
 
     fn new(mut device: VirtIOBlk) -> Result<Self> {
         let mut blk = [0; Self::LBA_SIZE];
-        device.read_block(Header::LBA, &mut blk).map_err(Error::FailedRead)?;
-        let (header_bytes, _) = blk.split_at(size_of::<Header>());
-        let header = Header::from_bytes(header_bytes).ok_or(Error::InvalidHeader)?;
+        device.read_blocks(Header::LBA, &mut blk).map_err(Error::FailedRead)?;
+        let header = Header::read_from_prefix(blk.as_slice()).unwrap();
+        if !header.is_valid() {
+            return Err(Error::InvalidHeader);
+        }
         let entries_count = usize::try_from(header.entries_count()).unwrap();
 
         Ok(Self { device, entries_count })
@@ -125,7 +131,7 @@
         for i in Header::ENTRIES_LBA..Header::ENTRIES_LBA.checked_add(num_blocks).unwrap() {
             self.read_block(i, &mut blk)?;
             let entries = blk.as_ptr().cast::<Entry>();
-            // SAFETY - blk is assumed to be properly aligned for Entry and its size is assert-ed
+            // SAFETY: blk is assumed to be properly aligned for Entry and its size is assert-ed
             // above. All potential values of the slice will produce valid Entry values.
             let entries = unsafe { slice::from_raw_parts(entries, min(rem, entries_per_blk)) };
             for entry in entries {
@@ -140,17 +146,18 @@
     }
 
     fn read_block(&mut self, index: usize, blk: &mut [u8]) -> Result<()> {
-        self.device.read_block(index, blk).map_err(Error::FailedRead)
+        self.device.read_blocks(index, blk).map_err(Error::FailedRead)
     }
 
     fn write_block(&mut self, index: usize, blk: &[u8]) -> Result<()> {
-        self.device.write_block(index, blk).map_err(Error::FailedWrite)
+        self.device.write_blocks(index, blk).map_err(Error::FailedWrite)
     }
 }
 
 type Lba = u64;
 
 /// Structure as defined in release 2.10 of the UEFI Specification (5.3.2 GPT Header).
+#[derive(FromZeroes, FromBytes)]
 #[repr(C, packed)]
 struct Header {
     signature: u64,
@@ -162,7 +169,7 @@
     backup_lba: Lba,
     first_lba: Lba,
     last_lba: Lba,
-    disk_guid: Uuid,
+    disk_guid: u128,
     entries_lba: Lba,
     entries_count: u32,
     entry_size: u32,
@@ -176,20 +183,6 @@
     const LBA: usize = 1;
     const ENTRIES_LBA: usize = 2;
 
-    fn from_bytes(bytes: &[u8]) -> Option<&Self> {
-        let bytes = bytes.get(..size_of::<Self>())?;
-        // SAFETY - We assume that bytes is properly aligned for Header and have verified above
-        // that it holds enough bytes. All potential values of the slice will produce a valid
-        // Header.
-        let header = unsafe { &*bytes.as_ptr().cast::<Self>() };
-
-        if header.is_valid() {
-            Some(header)
-        } else {
-            None
-        }
-    }
-
     fn is_valid(&self) -> bool {
         self.signature() == Self::SIGNATURE
             && self.header_size() == size_of::<Self>().try_into().unwrap()
diff --git a/pvmfw/src/helpers.rs b/pvmfw/src/helpers.rs
index c230784..8981408 100644
--- a/pvmfw/src/helpers.rs
+++ b/pvmfw/src/helpers.rs
@@ -14,174 +14,7 @@
 
 //! Miscellaneous helper functions.
 
-use core::arch::asm;
-use core::ops::Range;
-use zeroize::Zeroize;
-
-pub const SIZE_4KB: usize = 4 << 10;
-pub const SIZE_2MB: usize = 2 << 20;
-pub const SIZE_4MB: usize = 4 << 20;
+use vmbase::memory::{PAGE_SIZE, SIZE_4KB};
 
 pub const GUEST_PAGE_SIZE: usize = SIZE_4KB;
-pub const PVMFW_PAGE_SIZE: usize = SIZE_4KB;
-
-/// Read a value from a system register.
-#[macro_export]
-macro_rules! read_sysreg {
-    ($sysreg:literal) => {{
-        let mut r: usize;
-        // Safe because it reads a system register and does not affect Rust.
-        unsafe {
-            core::arch::asm!(
-                concat!("mrs {}, ", $sysreg),
-                out(reg) r,
-                options(nomem, nostack, preserves_flags),
-            )
-        }
-        r
-    }};
-}
-
-/// Write a value to a system register.
-///
-/// # Safety
-///
-/// Callers must ensure that side effects of updating the system register are properly handled.
-#[macro_export]
-macro_rules! write_sysreg {
-    ($sysreg:literal, $val:expr) => {{
-        let value: usize = $val;
-        core::arch::asm!(
-            concat!("msr ", $sysreg, ", {}"),
-            in(reg) value,
-            options(nomem, nostack, preserves_flags),
-        )
-    }};
-}
-
-/// Computes the largest multiple of the provided alignment smaller or equal to the address.
-///
-/// Note: the result is undefined if alignment isn't a power of two.
-pub const fn unchecked_align_down(addr: usize, alignment: usize) -> usize {
-    addr & !(alignment - 1)
-}
-
-/// Computes the smallest multiple of the provided alignment larger or equal to the address.
-///
-/// Note: the result is undefined if alignment isn't a power of two and may wrap to 0.
-pub const fn unchecked_align_up(addr: usize, alignment: usize) -> usize {
-    unchecked_align_down(addr + alignment - 1, alignment)
-}
-
-/// Safe wrapper around unchecked_align_up() that validates its assumptions and doesn't wrap.
-pub const fn align_up(addr: usize, alignment: usize) -> Option<usize> {
-    if !alignment.is_power_of_two() {
-        None
-    } else if let Some(s) = addr.checked_add(alignment - 1) {
-        Some(unchecked_align_down(s, alignment))
-    } else {
-        None
-    }
-}
-
-/// Performs an integer division rounding up.
-///
-/// Note: Returns None if den isn't a power of two.
-pub const fn ceiling_div(num: usize, den: usize) -> Option<usize> {
-    let Some(r) = align_up(num, den) else {
-        return None;
-    };
-
-    r.checked_div(den)
-}
-
-/// Aligns the given address to the given alignment, if it is a power of two.
-///
-/// Returns `None` if the alignment isn't a power of two.
-#[allow(dead_code)] // Currently unused but might be needed again.
-pub const fn align_down(addr: usize, alignment: usize) -> Option<usize> {
-    if !alignment.is_power_of_two() {
-        None
-    } else {
-        Some(unchecked_align_down(addr, alignment))
-    }
-}
-
-/// Computes the address of the 4KiB page containing a given address.
-pub const fn page_4kb_of(addr: usize) -> usize {
-    unchecked_align_down(addr, SIZE_4KB)
-}
-
-#[inline]
-/// Read the number of words in the smallest cache line of all the data caches and unified caches.
-pub fn min_dcache_line_size() -> usize {
-    const DMINLINE_SHIFT: usize = 16;
-    const DMINLINE_MASK: usize = 0xf;
-    let ctr_el0 = read_sysreg!("ctr_el0");
-
-    // DminLine: log2 of the number of words in the smallest cache line of all the data caches.
-    let dminline = (ctr_el0 >> DMINLINE_SHIFT) & DMINLINE_MASK;
-
-    1 << dminline
-}
-
-/// Flush `size` bytes of data cache by virtual address.
-#[inline]
-pub fn flush_region(start: usize, size: usize) {
-    let line_size = min_dcache_line_size();
-    let end = start + size;
-    let start = unchecked_align_down(start, line_size);
-
-    for line in (start..end).step_by(line_size) {
-        // SAFETY - Clearing cache lines shouldn't have Rust-visible side effects.
-        unsafe {
-            asm!(
-                "dc cvau, {x}",
-                x = in(reg) line,
-                options(nomem, nostack, preserves_flags),
-            )
-        }
-    }
-}
-
-#[inline]
-/// Flushes the slice to the point of unification.
-pub fn flush(reg: &[u8]) {
-    flush_region(reg.as_ptr() as usize, reg.len())
-}
-
-#[inline]
-/// Overwrites the slice with zeroes, to the point of unification.
-pub fn flushed_zeroize(reg: &mut [u8]) {
-    reg.zeroize();
-    flush(reg)
-}
-
-/// Flatten [[T; N]] into &[T]
-/// TODO: use slice::flatten when it graduates from experimental
-pub fn flatten<T, const N: usize>(original: &[[T; N]]) -> &[T] {
-    // SAFETY: no overflow because original (whose size is len()*N) is already in memory
-    let len = original.len() * N;
-    // SAFETY: [T] has the same layout as [T;N]
-    unsafe { core::slice::from_raw_parts(original.as_ptr().cast(), len) }
-}
-
-/// Trait to check containment of one range within another.
-pub(crate) trait RangeExt {
-    /// Returns true if `self` is contained within the `other` range.
-    fn is_within(&self, other: &Self) -> bool;
-}
-
-impl<T: PartialOrd> RangeExt for Range<T> {
-    fn is_within(&self, other: &Self) -> bool {
-        self.start >= other.start && self.end <= other.end
-    }
-}
-
-/// Create &CStr out of &str literal
-#[macro_export]
-macro_rules! cstr {
-    ($str:literal) => {{
-        CStr::from_bytes_with_nul(concat!($str, "\0").as_bytes()).unwrap()
-    }};
-}
+pub const PVMFW_PAGE_SIZE: usize = PAGE_SIZE;
diff --git a/pvmfw/src/instance.rs b/pvmfw/src/instance.rs
index a974543..6daadd9 100644
--- a/pvmfw/src/instance.rs
+++ b/pvmfw/src/instance.rs
@@ -14,35 +14,32 @@
 
 //! Support for reading and writing to the instance.img.
 
-use crate::crypto;
-use crate::crypto::hkdf_sh512;
-use crate::crypto::AeadCtx;
 use crate::dice::PartialInputs;
 use crate::gpt;
 use crate::gpt::Partition;
 use crate::gpt::Partitions;
-use crate::helpers::ceiling_div;
-use crate::rand;
-use crate::virtio::pci::VirtIOBlkIterator;
+use bssl_avf::{self, hkdf, Aead, AeadContext, Digester};
 use core::fmt;
 use core::mem::size_of;
-use core::slice;
 use diced_open_dice::DiceMode;
 use diced_open_dice::Hash;
 use diced_open_dice::Hidden;
 use log::trace;
 use uuid::Uuid;
-use virtio_drivers::transport::pci::bus::PciRoot;
+use virtio_drivers::transport::{pci::bus::PciRoot, DeviceType, Transport};
+use vmbase::rand;
+use vmbase::util::ceiling_div;
+use vmbase::virtio::pci::{PciTransportIterator, VirtIOBlk};
+use vmbase::virtio::HalImpl;
+use zerocopy::AsBytes;
+use zerocopy::FromBytes;
+use zerocopy::FromZeroes;
 
 pub enum Error {
     /// Unexpected I/O error while accessing the underlying disk.
     FailedIo(gpt::Error),
-    /// Failed to decrypt the entry.
-    FailedOpen(crypto::ErrorIterator),
     /// Failed to generate a random salt to be stored.
     FailedSaltGeneration(rand::Error),
-    /// Failed to encrypt the entry.
-    FailedSeal(crypto::ErrorIterator),
     /// Impossible to create a new instance.img entry.
     InstanceImageFull,
     /// Badly formatted instance.img header block.
@@ -59,27 +56,17 @@
     RecordedDiceModeMismatch,
     /// Size of the instance.img entry being read or written is not supported.
     UnsupportedEntrySize(usize),
+    /// Failed to create VirtIO Block device.
+    VirtIOBlkCreationFailed(virtio_drivers::Error),
+    /// An error happened during the interaction with BoringSSL.
+    BoringSslFailed(bssl_avf::Error),
 }
 
 impl fmt::Display for Error {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         match self {
             Self::FailedIo(e) => write!(f, "Failed I/O to disk: {e}"),
-            Self::FailedOpen(e_iter) => {
-                writeln!(f, "Failed to open the instance.img partition:")?;
-                for e in *e_iter {
-                    writeln!(f, "\t{e}")?;
-                }
-                Ok(())
-            }
             Self::FailedSaltGeneration(e) => write!(f, "Failed to generate salt: {e}"),
-            Self::FailedSeal(e_iter) => {
-                writeln!(f, "Failed to seal the instance.img partition:")?;
-                for e in *e_iter {
-                    writeln!(f, "\t{e}")?;
-                }
-                Ok(())
-            }
             Self::InstanceImageFull => write!(f, "Failed to obtain a free instance.img partition"),
             Self::InvalidInstanceImageHeader => write!(f, "instance.img header is invalid"),
             Self::MissingInstanceImage => write!(f, "Failed to find the instance.img partition"),
@@ -88,10 +75,22 @@
             Self::RecordedCodeHashMismatch => write!(f, "Recorded code hash doesn't match"),
             Self::RecordedDiceModeMismatch => write!(f, "Recorded DICE mode doesn't match"),
             Self::UnsupportedEntrySize(sz) => write!(f, "Invalid entry size: {sz}"),
+            Self::VirtIOBlkCreationFailed(e) => {
+                write!(f, "Failed to create VirtIO Block device: {e}")
+            }
+            Self::BoringSslFailed(e) => {
+                write!(f, "An error happened during the interaction with BoringSSL: {e}")
+            }
         }
     }
 }
 
+impl From<bssl_avf::Error> for Error {
+    fn from(e: bssl_avf::Error) -> Self {
+        Self::BoringSslFailed(e)
+    }
+}
+
 pub type Result<T> = core::result::Result<T, Error>;
 
 pub fn get_or_generate_instance_salt(
@@ -104,7 +103,14 @@
     let entry = locate_entry(&mut instance_img)?;
     trace!("Found pvmfw instance.img entry: {entry:?}");
 
-    let key = hkdf_sh512::<32>(secret, /*salt=*/ &[], b"vm-instance");
+    let key = hkdf::<32>(secret, /* salt= */ &[], b"vm-instance", Digester::sha512())?;
+    let tag_len = None;
+    let aead_ctx = AeadContext::new(Aead::aes_256_gcm_randnonce(), key.as_slice(), tag_len)?;
+    let ad = &[];
+    // The nonce is generated internally for `aes_256_gcm_randnonce`, so no additional
+    // nonce is required.
+    let nonce = &[];
+
     let mut blk = [0; BLK_SIZE];
     match entry {
         PvmfwEntry::Existing { header_index, payload_size } => {
@@ -117,11 +123,20 @@
 
             let payload = &blk[..payload_size];
             let mut entry = [0; size_of::<EntryBody>()];
-            let key = key.map_err(Error::FailedOpen)?;
-            let aead = AeadCtx::new_aes_256_gcm_randnonce(&key).map_err(Error::FailedOpen)?;
-            let decrypted = aead.open(&mut entry, payload).map_err(Error::FailedOpen)?;
+            let decrypted = aead_ctx.open(payload, nonce, ad, &mut entry)?;
 
-            let body: &EntryBody = decrypted.as_ref();
+            let body = EntryBody::read_from(decrypted).unwrap();
+            if dice_inputs.rkp_vm_marker {
+                // The RKP VM is allowed to run if it has passed the verified boot check and
+                // contains the expected version in its AVB footer.
+                // The comparison below with the previous boot information is skipped to enable the
+                // simultaneous update of the pvmfw and RKP VM.
+                // For instance, when both the pvmfw and RKP VM are updated, the code hash of the
+                // RKP VM will differ from the one stored in the instance image. In this case, the
+                // RKP VM is still allowed to run.
+                // This ensures that the updated RKP VM will retain the same CDIs in the next stage.
+                return Ok((false, body.salt));
+            }
             if body.code_hash != dice_inputs.code_hash {
                 Err(Error::RecordedCodeHashMismatch)
             } else if body.auth_hash != dice_inputs.auth_hash {
@@ -134,22 +149,19 @@
         }
         PvmfwEntry::New { header_index } => {
             let salt = rand::random_array().map_err(Error::FailedSaltGeneration)?;
-            let entry_body = EntryBody::new(dice_inputs, &salt);
-            let body = entry_body.as_ref();
+            let body = EntryBody::new(dice_inputs, &salt);
 
-            let key = key.map_err(Error::FailedSeal)?;
-            let aead = AeadCtx::new_aes_256_gcm_randnonce(&key).map_err(Error::FailedSeal)?;
             // We currently only support single-blk entries.
-            assert!(body.len() + aead.aead().unwrap().max_overhead() < blk.len());
-            let encrypted = aead.seal(&mut blk, body).map_err(Error::FailedSeal)?;
+            let plaintext = body.as_bytes();
+            assert!(plaintext.len() + aead_ctx.aead().max_overhead() < blk.len());
+            let encrypted = aead_ctx.seal(plaintext, nonce, ad, &mut blk)?;
             let payload_size = encrypted.len();
             let payload_index = header_index + 1;
             instance_img.write_block(payload_index, &blk).map_err(Error::FailedIo)?;
 
             let header = EntryHeader::new(PvmfwEntry::UUID, payload_size);
-            let (blk_header, blk_rest) = blk.split_at_mut(size_of::<EntryHeader>());
-            blk_header.copy_from_slice(header.as_ref());
-            blk_rest.fill(0);
+            header.write_to_prefix(blk.as_mut_slice()).unwrap();
+            blk[header.as_bytes().len()..].fill(0);
             instance_img.write_block(header_index, &blk).map_err(Error::FailedIo)?;
 
             Ok((true, salt))
@@ -157,6 +169,7 @@
     }
 }
 
+#[derive(FromZeroes, FromBytes)]
 #[repr(C, packed)]
 struct Header {
     magic: [u8; Header::MAGIC.len()],
@@ -164,7 +177,7 @@
 }
 
 impl Header {
-    const MAGIC: &[u8] = b"Android-VM-instance";
+    const MAGIC: &'static [u8] = b"Android-VM-instance";
     const VERSION_1: u16 = 1;
 
     pub fn is_valid(&self) -> bool {
@@ -174,27 +187,14 @@
     fn version(&self) -> u16 {
         u16::from_le(self.version)
     }
-
-    fn from_bytes(bytes: &[u8]) -> Option<&Self> {
-        let header: &Self = bytes.as_ref();
-
-        if header.is_valid() {
-            Some(header)
-        } else {
-            None
-        }
-    }
-}
-
-impl AsRef<Header> for [u8] {
-    fn as_ref(&self) -> &Header {
-        // SAFETY - Assume that the alignement and size match Header.
-        unsafe { &*self.as_ptr().cast::<Header>() }
-    }
 }
 
 fn find_instance_img(pci_root: &mut PciRoot) -> Result<Partition> {
-    for device in VirtIOBlkIterator::new(pci_root) {
+    for transport in PciTransportIterator::<HalImpl>::new(pci_root)
+        .filter(|t| DeviceType::Block == t.device_type())
+    {
+        let device =
+            VirtIOBlk::<HalImpl>::new(transport).map_err(Error::VirtIOBlkCreationFailed)?;
         match Partition::get_by_name(device, "vm-instance") {
             Ok(Some(p)) => return Ok(p),
             Ok(None) => {}
@@ -223,12 +223,15 @@
     let header_index = indices.next().ok_or(Error::MissingInstanceImageHeader)?;
     partition.read_block(header_index, &mut blk).map_err(Error::FailedIo)?;
     // The instance.img header is only used for discovery/validation.
-    let _ = Header::from_bytes(&blk).ok_or(Error::InvalidInstanceImageHeader)?;
+    let header = Header::read_from_prefix(blk.as_slice()).unwrap();
+    if !header.is_valid() {
+        return Err(Error::InvalidInstanceImageHeader);
+    }
 
     while let Some(header_index) = indices.next() {
         partition.read_block(header_index, &mut blk).map_err(Error::FailedIo)?;
 
-        let header: &EntryHeader = blk[..size_of::<EntryHeader>()].as_ref();
+        let header = EntryHeader::read_from_prefix(blk.as_slice()).unwrap();
         match (header.uuid(), header.payload_size()) {
             (uuid, _) if uuid.is_nil() => return Ok(PvmfwEntry::New { header_index }),
             (PvmfwEntry::UUID, payload_size) => {
@@ -250,7 +253,8 @@
 /// Marks the start of an instance.img entry.
 ///
 /// Note: Virtualization/microdroid_manager/src/instance.rs uses the name "partition".
-#[repr(C)]
+#[derive(AsBytes, FromZeroes, FromBytes)]
+#[repr(C, packed)]
 struct EntryHeader {
     uuid: u128,
     payload_size: u64,
@@ -270,22 +274,7 @@
     }
 }
 
-impl AsRef<EntryHeader> for [u8] {
-    fn as_ref(&self) -> &EntryHeader {
-        assert_eq!(self.len(), size_of::<EntryHeader>());
-        // SAFETY - The size of the slice was checked and any value may be considered valid.
-        unsafe { &*self.as_ptr().cast::<EntryHeader>() }
-    }
-}
-
-impl AsRef<[u8]> for EntryHeader {
-    fn as_ref(&self) -> &[u8] {
-        let s = self as *const Self;
-        // SAFETY - Transmute the (valid) bytes into a slice.
-        unsafe { slice::from_raw_parts(s.cast::<u8>(), size_of::<Self>()) }
-    }
-}
-
+#[derive(AsBytes, FromZeroes, FromBytes)]
 #[repr(C)]
 struct EntryBody {
     code_hash: Hash,
@@ -320,19 +309,3 @@
         }
     }
 }
-
-impl AsRef<EntryBody> for [u8] {
-    fn as_ref(&self) -> &EntryBody {
-        assert_eq!(self.len(), size_of::<EntryBody>());
-        // SAFETY - The size of the slice was checked and members are validated by accessors.
-        unsafe { &*self.as_ptr().cast::<EntryBody>() }
-    }
-}
-
-impl AsRef<[u8]> for EntryBody {
-    fn as_ref(&self) -> &[u8] {
-        let s = self as *const Self;
-        // SAFETY - Transmute the (valid) bytes into a slice.
-        unsafe { slice::from_raw_parts(s.cast::<u8>(), size_of::<Self>()) }
-    }
-}
diff --git a/pvmfw/src/main.rs b/pvmfw/src/main.rs
index 21521da..f80bae1 100644
--- a/pvmfw/src/main.rs
+++ b/pvmfw/src/main.rs
@@ -22,39 +22,38 @@
 mod bcc;
 mod bootargs;
 mod config;
-mod crypto;
+mod device_assignment;
 mod dice;
 mod entry;
 mod exceptions;
 mod fdt;
 mod gpt;
-mod heap;
 mod helpers;
-mod hvc;
 mod instance;
 mod memory;
-mod mmu;
-mod rand;
-mod virtio;
 
 use crate::bcc::Bcc;
 use crate::dice::PartialInputs;
 use crate::entry::RebootReason;
 use crate::fdt::modify_for_next_stage;
-use crate::helpers::flush;
 use crate::helpers::GUEST_PAGE_SIZE;
 use crate::instance::get_or_generate_instance_salt;
-use crate::memory::MemoryTracker;
-use crate::virtio::pci;
+use alloc::borrow::Cow;
 use alloc::boxed::Box;
 use core::ops::Range;
-use diced_open_dice::{bcc_handover_main_flow, bcc_handover_parse, DiceArtifacts};
+use diced_open_dice::{bcc_handover_parse, DiceArtifacts};
 use fdtpci::{PciError, PciInfo};
 use libfdt::Fdt;
 use log::{debug, error, info, trace, warn};
 use pvmfw_avb::verify_payload;
+use pvmfw_avb::Capability;
 use pvmfw_avb::DebugLevel;
 use pvmfw_embedded_key::PUBLIC_KEY;
+use vmbase::heap;
+use vmbase::memory::flush;
+use vmbase::memory::MEMORY;
+use vmbase::rand;
+use vmbase::virtio::pci;
 
 const NEXT_BCC_SIZE: usize = GUEST_PAGE_SIZE;
 
@@ -63,8 +62,7 @@
     signed_kernel: &[u8],
     ramdisk: Option<&[u8]>,
     current_bcc_handover: &[u8],
-    mut debug_policy: Option<&mut [u8]>,
-    memory: &mut MemoryTracker,
+    mut debug_policy: Option<&[u8]>,
 ) -> Result<Range<usize>, RebootReason> {
     info!("pVM firmware");
     debug!("FDT: {:?}", fdt.as_ptr());
@@ -99,12 +97,47 @@
     // Set up PCI bus for VirtIO devices.
     let pci_info = PciInfo::from_fdt(fdt).map_err(handle_pci_error)?;
     debug!("PCI: {:#x?}", pci_info);
-    let mut pci_root = pci::initialise(pci_info, memory)?;
+    let mut pci_root = pci::initialize(pci_info, MEMORY.lock().as_mut().unwrap()).map_err(|e| {
+        error!("Failed to initialize PCI: {e}");
+        RebootReason::InternalError
+    })?;
 
     let verified_boot_data = verify_payload(signed_kernel, ramdisk, PUBLIC_KEY).map_err(|e| {
         error!("Failed to verify the payload: {e}");
         RebootReason::PayloadVerificationError
     })?;
+    let debuggable = verified_boot_data.debug_level != DebugLevel::None;
+    if debuggable {
+        info!("Successfully verified a debuggable payload.");
+        info!("Please disregard any previous libavb ERROR about initrd_normal.");
+    }
+
+    if verified_boot_data.has_capability(Capability::RemoteAttest) {
+        info!("Service VM capable of remote attestation detected");
+        if service_vm_version::VERSION != verified_boot_data.rollback_index {
+            // For RKP VM, we only boot if the version in the AVB footer of its kernel matches
+            // the one embedded in pvmfw at build time.
+            // This prevents the pvmfw from booting a roll backed RKP VM.
+            error!(
+                "Service VM version mismatch: expected {}, found {}",
+                service_vm_version::VERSION,
+                verified_boot_data.rollback_index
+            );
+            return Err(RebootReason::InvalidPayload);
+        }
+    }
+
+    if verified_boot_data.has_capability(Capability::SecretkeeperProtection) {
+        info!("Guest OS is capable of Secretkeeper protection");
+        // For Secretkeeper based Antirollback protection, rollback_index of the image > 0
+        if verified_boot_data.rollback_index == 0 {
+            error!(
+                "Expected positive rollback_index, found {:?}",
+                verified_boot_data.rollback_index
+            );
+            return Err(RebootReason::InvalidPayload);
+        };
+    }
 
     let next_bcc = heap::aligned_boxed_slice(NEXT_BCC_SIZE, GUEST_PAGE_SIZE).ok_or_else(|| {
         error!("Failed to allocate the next-stage BCC");
@@ -124,37 +157,45 @@
         })?;
     trace!("Got salt from instance.img: {salt:x?}");
 
-    let mut config_descriptor_buffer = [0; 128];
-    let dice_inputs =
-        dice_inputs.into_input_values(&salt, &mut config_descriptor_buffer).map_err(|e| {
-            error!("Failed to generate DICE inputs: {e:?}");
+    let new_bcc_handover = if cfg!(dice_changes) {
+        Cow::Borrowed(current_bcc_handover)
+    } else {
+        // It is possible that the DICE chain we were given is rooted in the UDS. We do not want to
+        // give such a chain to the payload, or even the associated CDIs. So remove the
+        // entire chain we were given and taint the CDIs. Note that the resulting CDIs are
+        // still deterministically derived from those we received, so will vary iff they do.
+        // TODO(b/280405545): Remove this post Android 14.
+        let truncated_bcc_handover = bcc::truncate(bcc_handover).map_err(|e| {
+            error!("{e}");
             RebootReason::InternalError
         })?;
+        Cow::Owned(truncated_bcc_handover)
+    };
 
-    // It is possible that the DICE chain we were given is rooted in the UDS. We do not want to give
-    // such a chain to the payload, or even the associated CDIs. So remove the entire chain we
-    // were given and taint the CDIs. Note that the resulting CDIs are still deterministically
-    // derived from those we received, so will vary iff they do.
-    // TODO(b/280405545): Remove this post Android 14.
-    let truncated_bcc_handover = bcc::truncate(bcc_handover).map_err(|e| {
-        error!("{e}");
-        RebootReason::InternalError
+    dice_inputs.write_next_bcc(new_bcc_handover.as_ref(), &salt, next_bcc).map_err(|e| {
+        error!("Failed to derive next-stage DICE secrets: {e:?}");
+        RebootReason::SecretDerivationError
     })?;
-
-    let _ = bcc_handover_main_flow(truncated_bcc_handover.as_slice(), &dice_inputs, next_bcc)
-        .map_err(|e| {
-            error!("Failed to derive next-stage DICE secrets: {e:?}");
-            RebootReason::SecretDerivationError
-        })?;
     flush(next_bcc);
 
+    let kaslr_seed = u64::from_ne_bytes(rand::random_array().map_err(|e| {
+        error!("Failed to generated guest KASLR seed: {e}");
+        RebootReason::InternalError
+    })?);
     let strict_boot = true;
-    let debuggable = verified_boot_data.debug_level != DebugLevel::None;
-    modify_for_next_stage(fdt, next_bcc, new_instance, strict_boot, debug_policy, debuggable)
-        .map_err(|e| {
-            error!("Failed to configure device tree: {e}");
-            RebootReason::InternalError
-        })?;
+    modify_for_next_stage(
+        fdt,
+        next_bcc,
+        new_instance,
+        strict_boot,
+        debug_policy,
+        debuggable,
+        kaslr_seed,
+    )
+    .map_err(|e| {
+        error!("Failed to configure device tree: {e}");
+        RebootReason::InternalError
+    })?;
 
     info!("Starting payload...");
 
diff --git a/pvmfw/src/memory.rs b/pvmfw/src/memory.rs
index d07aea8..06158dd 100644
--- a/pvmfw/src/memory.rs
+++ b/pvmfw/src/memory.rs
@@ -14,440 +14,46 @@
 
 //! Low-level allocation and tracking of main memory.
 
-#![deny(unsafe_op_in_unsafe_fn)]
-
-use crate::helpers::{self, page_4kb_of, RangeExt, SIZE_4KB, SIZE_4MB};
-use crate::mmu;
-use alloc::alloc::alloc_zeroed;
-use alloc::alloc::dealloc;
-use alloc::alloc::handle_alloc_error;
-use alloc::boxed::Box;
-use alloc::vec::Vec;
-use buddy_system_allocator::{FrameAllocator, LockedFrameAllocator};
-use core::alloc::Layout;
-use core::cmp::max;
-use core::cmp::min;
-use core::fmt;
-use core::num::NonZeroUsize;
+use crate::helpers::PVMFW_PAGE_SIZE;
+use aarch64_paging::paging::VirtualAddress;
+use aarch64_paging::MapError;
 use core::ops::Range;
-use core::ptr::NonNull;
 use core::result;
-use hyp::get_hypervisor;
 use log::error;
-use log::trace;
-use once_cell::race::OnceBox;
-use spin::mutex::SpinMutex;
-use tinyvec::ArrayVec;
+use vmbase::{
+    layout,
+    memory::{PageTable, SIZE_2MB, SIZE_4KB},
+    util::align_up,
+};
 
-/// Base of the system's contiguous "main" memory.
-pub const BASE_ADDR: usize = 0x8000_0000;
-/// First address that can't be translated by a level 1 TTBR0_EL1.
-pub const MAX_ADDR: usize = 1 << 40;
-
-pub type MemoryRange = Range<usize>;
-
-pub static MEMORY: SpinMutex<Option<MemoryTracker>> = SpinMutex::new(None);
-unsafe impl Send for MemoryTracker {}
-
-#[derive(Clone, Copy, Debug, Default)]
-enum MemoryType {
-    #[default]
-    ReadOnly,
-    ReadWrite,
+/// Returns memory range reserved for the appended payload.
+pub fn appended_payload_range() -> Range<VirtualAddress> {
+    let start = align_up(layout::binary_end().0, SIZE_4KB).unwrap();
+    // pvmfw is contained in a 2MiB region so the payload can't be larger than the 2MiB alignment.
+    let end = align_up(start, SIZE_2MB).unwrap();
+    VirtualAddress(start)..VirtualAddress(end)
 }
 
-#[derive(Clone, Debug, Default)]
-struct MemoryRegion {
-    range: MemoryRange,
-    mem_type: MemoryType,
+/// Region allocated for the stack.
+pub fn stack_range() -> Range<VirtualAddress> {
+    const STACK_PAGES: usize = 8;
+
+    layout::stack_range(STACK_PAGES * PVMFW_PAGE_SIZE)
 }
 
-impl MemoryRegion {
-    /// True if the instance overlaps with the passed range.
-    pub fn overlaps(&self, range: &MemoryRange) -> bool {
-        overlaps(&self.range, range)
+pub fn init_page_table() -> result::Result<PageTable, MapError> {
+    let mut page_table = PageTable::default();
+
+    // Stack and scratch ranges are explicitly zeroed and flushed before jumping to payload,
+    // so dirty state management can be omitted.
+    page_table.map_data(&layout::scratch_range().into())?;
+    page_table.map_data(&stack_range().into())?;
+    page_table.map_code(&layout::text_range().into())?;
+    page_table.map_rodata(&layout::rodata_range().into())?;
+    page_table.map_data_dbm(&appended_payload_range().into())?;
+    if let Err(e) = page_table.map_device(&layout::console_uart_range().into()) {
+        error!("Failed to remap the UART as a dynamic page table entry: {e}");
+        return Err(e);
     }
-
-    /// True if the instance is fully contained within the passed range.
-    pub fn is_within(&self, range: &MemoryRange) -> bool {
-        self.as_ref().is_within(range)
-    }
-}
-
-impl AsRef<MemoryRange> for MemoryRegion {
-    fn as_ref(&self) -> &MemoryRange {
-        &self.range
-    }
-}
-
-/// Returns true if one range overlaps with the other at all.
-fn overlaps<T: Copy + Ord>(a: &Range<T>, b: &Range<T>) -> bool {
-    max(a.start, b.start) < min(a.end, b.end)
-}
-
-/// Tracks non-overlapping slices of main memory.
-pub struct MemoryTracker {
-    total: MemoryRange,
-    page_table: mmu::PageTable,
-    regions: ArrayVec<[MemoryRegion; MemoryTracker::CAPACITY]>,
-    mmio_regions: ArrayVec<[MemoryRange; MemoryTracker::MMIO_CAPACITY]>,
-}
-
-/// Errors for MemoryTracker operations.
-#[derive(Debug, Clone)]
-pub enum MemoryTrackerError {
-    /// Tried to modify the memory base address.
-    DifferentBaseAddress,
-    /// Tried to shrink to a larger memory size.
-    SizeTooLarge,
-    /// Tracked regions would not fit in memory size.
-    SizeTooSmall,
-    /// Reached limit number of tracked regions.
-    Full,
-    /// Region is out of the tracked memory address space.
-    OutOfRange,
-    /// New region overlaps with tracked regions.
-    Overlaps,
-    /// Region couldn't be mapped.
-    FailedToMap,
-    /// Error from the interaction with the hypervisor.
-    Hypervisor(hyp::Error),
-    /// Failure to set `SHARED_MEMORY`.
-    SharedMemorySetFailure,
-    /// Failure to set `SHARED_POOL`.
-    SharedPoolSetFailure,
-}
-
-impl fmt::Display for MemoryTrackerError {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        match self {
-            Self::DifferentBaseAddress => write!(f, "Received different base address"),
-            Self::SizeTooLarge => write!(f, "Tried to shrink to a larger memory size"),
-            Self::SizeTooSmall => write!(f, "Tracked regions would not fit in memory size"),
-            Self::Full => write!(f, "Reached limit number of tracked regions"),
-            Self::OutOfRange => write!(f, "Region is out of the tracked memory address space"),
-            Self::Overlaps => write!(f, "New region overlaps with tracked regions"),
-            Self::FailedToMap => write!(f, "Failed to map the new region"),
-            Self::Hypervisor(e) => e.fmt(f),
-            Self::SharedMemorySetFailure => write!(f, "Failed to set SHARED_MEMORY"),
-            Self::SharedPoolSetFailure => write!(f, "Failed to set SHARED_POOL"),
-        }
-    }
-}
-
-impl From<hyp::Error> for MemoryTrackerError {
-    fn from(e: hyp::Error) -> Self {
-        Self::Hypervisor(e)
-    }
-}
-
-type Result<T> = result::Result<T, MemoryTrackerError>;
-
-static SHARED_POOL: OnceBox<LockedFrameAllocator<32>> = OnceBox::new();
-static SHARED_MEMORY: SpinMutex<Option<MemorySharer>> = SpinMutex::new(None);
-
-/// Allocates memory on the heap and shares it with the host.
-///
-/// Unshares all pages when dropped.
-pub struct MemorySharer {
-    granule: usize,
-    shared_regions: Vec<(usize, Layout)>,
-}
-
-impl MemorySharer {
-    const INIT_CAP: usize = 10;
-
-    pub fn new(granule: usize) -> Self {
-        assert!(granule.is_power_of_two());
-        Self { granule, shared_regions: Vec::with_capacity(Self::INIT_CAP) }
-    }
-
-    /// Get from the global allocator a granule-aligned region that suits `hint` and share it.
-    pub fn refill(&mut self, pool: &mut FrameAllocator<32>, hint: Layout) {
-        let layout = hint.align_to(self.granule).unwrap().pad_to_align();
-        assert_ne!(layout.size(), 0);
-        // SAFETY - layout has non-zero size.
-        let Some(shared) = NonNull::new(unsafe { alloc_zeroed(layout) }) else {
-            handle_alloc_error(layout);
-        };
-
-        let base = shared.as_ptr() as usize;
-        let end = base.checked_add(layout.size()).unwrap();
-        trace!("Sharing memory region {:#x?}", base..end);
-        for vaddr in (base..end).step_by(self.granule) {
-            let vaddr = NonNull::new(vaddr as *mut _).unwrap();
-            get_hypervisor().mem_share(virt_to_phys(vaddr).try_into().unwrap()).unwrap();
-        }
-        self.shared_regions.push((base, layout));
-
-        pool.add_frame(base, end);
-    }
-}
-
-impl Drop for MemorySharer {
-    fn drop(&mut self) {
-        while let Some((base, layout)) = self.shared_regions.pop() {
-            let end = base.checked_add(layout.size()).unwrap();
-            trace!("Unsharing memory region {:#x?}", base..end);
-            for vaddr in (base..end).step_by(self.granule) {
-                let vaddr = NonNull::new(vaddr as *mut _).unwrap();
-                get_hypervisor().mem_unshare(virt_to_phys(vaddr).try_into().unwrap()).unwrap();
-            }
-
-            // SAFETY - The region was obtained from alloc_zeroed() with the recorded layout.
-            unsafe { dealloc(base as *mut _, layout) };
-        }
-    }
-}
-
-impl MemoryTracker {
-    const CAPACITY: usize = 5;
-    const MMIO_CAPACITY: usize = 5;
-    const PVMFW_RANGE: MemoryRange = (BASE_ADDR - SIZE_4MB)..BASE_ADDR;
-
-    /// Create a new instance from an active page table, covering the maximum RAM size.
-    pub fn new(page_table: mmu::PageTable) -> Self {
-        Self {
-            total: BASE_ADDR..MAX_ADDR,
-            page_table,
-            regions: ArrayVec::new(),
-            mmio_regions: ArrayVec::new(),
-        }
-    }
-
-    /// Resize the total RAM size.
-    ///
-    /// This function fails if it contains regions that are not included within the new size.
-    pub fn shrink(&mut self, range: &MemoryRange) -> Result<()> {
-        if range.start != self.total.start {
-            return Err(MemoryTrackerError::DifferentBaseAddress);
-        }
-        if self.total.end < range.end {
-            return Err(MemoryTrackerError::SizeTooLarge);
-        }
-        if !self.regions.iter().all(|r| r.is_within(range)) {
-            return Err(MemoryTrackerError::SizeTooSmall);
-        }
-
-        self.total = range.clone();
-        Ok(())
-    }
-
-    /// Allocate the address range for a const slice; returns None if failed.
-    pub fn alloc_range(&mut self, range: &MemoryRange) -> Result<MemoryRange> {
-        let region = MemoryRegion { range: range.clone(), mem_type: MemoryType::ReadOnly };
-        self.check(&region)?;
-        self.page_table.map_rodata(range).map_err(|e| {
-            error!("Error during range allocation: {e}");
-            MemoryTrackerError::FailedToMap
-        })?;
-        self.add(region)
-    }
-
-    /// Allocate the address range for a mutable slice; returns None if failed.
-    pub fn alloc_range_mut(&mut self, range: &MemoryRange) -> Result<MemoryRange> {
-        let region = MemoryRegion { range: range.clone(), mem_type: MemoryType::ReadWrite };
-        self.check(&region)?;
-        self.page_table.map_data(range).map_err(|e| {
-            error!("Error during mutable range allocation: {e}");
-            MemoryTrackerError::FailedToMap
-        })?;
-        self.add(region)
-    }
-
-    /// Allocate the address range for a const slice; returns None if failed.
-    pub fn alloc(&mut self, base: usize, size: NonZeroUsize) -> Result<MemoryRange> {
-        self.alloc_range(&(base..(base + size.get())))
-    }
-
-    /// Allocate the address range for a mutable slice; returns None if failed.
-    pub fn alloc_mut(&mut self, base: usize, size: NonZeroUsize) -> Result<MemoryRange> {
-        self.alloc_range_mut(&(base..(base + size.get())))
-    }
-
-    /// Checks that the given range of addresses is within the MMIO region, and then maps it
-    /// appropriately.
-    pub fn map_mmio_range(&mut self, range: MemoryRange) -> Result<()> {
-        // MMIO space is below the main memory region.
-        if range.end > self.total.start || overlaps(&Self::PVMFW_RANGE, &range) {
-            return Err(MemoryTrackerError::OutOfRange);
-        }
-        if self.mmio_regions.iter().any(|r| overlaps(r, &range)) {
-            return Err(MemoryTrackerError::Overlaps);
-        }
-        if self.mmio_regions.len() == self.mmio_regions.capacity() {
-            return Err(MemoryTrackerError::Full);
-        }
-
-        self.page_table.map_device(&range).map_err(|e| {
-            error!("Error during MMIO device mapping: {e}");
-            MemoryTrackerError::FailedToMap
-        })?;
-
-        for page_base in page_iterator(&range) {
-            get_hypervisor().mmio_guard_map(page_base)?;
-        }
-
-        if self.mmio_regions.try_push(range).is_some() {
-            return Err(MemoryTrackerError::Full);
-        }
-
-        Ok(())
-    }
-
-    /// Checks that the given region is within the range of the `MemoryTracker` and doesn't overlap
-    /// with any other previously allocated regions, and that the regions ArrayVec has capacity to
-    /// add it.
-    fn check(&self, region: &MemoryRegion) -> Result<()> {
-        if !region.is_within(&self.total) {
-            return Err(MemoryTrackerError::OutOfRange);
-        }
-        if self.regions.iter().any(|r| r.overlaps(&region.range)) {
-            return Err(MemoryTrackerError::Overlaps);
-        }
-        if self.regions.len() == self.regions.capacity() {
-            return Err(MemoryTrackerError::Full);
-        }
-        Ok(())
-    }
-
-    fn add(&mut self, region: MemoryRegion) -> Result<MemoryRange> {
-        if self.regions.try_push(region).is_some() {
-            return Err(MemoryTrackerError::Full);
-        }
-
-        Ok(self.regions.last().unwrap().as_ref().clone())
-    }
-
-    /// Unmaps all tracked MMIO regions from the MMIO guard.
-    ///
-    /// Note that they are not unmapped from the page table.
-    pub fn mmio_unmap_all(&self) -> Result<()> {
-        for region in &self.mmio_regions {
-            for page_base in page_iterator(region) {
-                get_hypervisor().mmio_guard_unmap(page_base)?;
-            }
-        }
-
-        Ok(())
-    }
-
-    /// Initialize the shared heap to dynamically share memory from the global allocator.
-    pub fn init_dynamic_shared_pool(&mut self) -> Result<()> {
-        let granule = get_hypervisor().memory_protection_granule()?;
-        let previous = SHARED_MEMORY.lock().replace(MemorySharer::new(granule));
-        if previous.is_some() {
-            return Err(MemoryTrackerError::SharedMemorySetFailure);
-        }
-
-        SHARED_POOL
-            .set(Box::new(LockedFrameAllocator::new()))
-            .map_err(|_| MemoryTrackerError::SharedPoolSetFailure)?;
-
-        Ok(())
-    }
-
-    /// Initialize the shared heap from a static region of memory.
-    ///
-    /// Some hypervisors such as Gunyah do not support a MemShare API for guest
-    /// to share its memory with host. Instead they allow host to designate part
-    /// of guest memory as "shared" ahead of guest starting its execution. The
-    /// shared memory region is indicated in swiotlb node. On such platforms use
-    /// a separate heap to allocate buffers that can be shared with host.
-    pub fn init_static_shared_pool(&mut self, range: Range<usize>) -> Result<()> {
-        let size = NonZeroUsize::new(range.len()).unwrap();
-        let range = self.alloc_mut(range.start, size)?;
-        let shared_pool = LockedFrameAllocator::<32>::new();
-
-        shared_pool.lock().insert(range);
-
-        SHARED_POOL
-            .set(Box::new(shared_pool))
-            .map_err(|_| MemoryTrackerError::SharedPoolSetFailure)?;
-
-        Ok(())
-    }
-
-    /// Unshares any memory that may have been shared.
-    pub fn unshare_all_memory(&mut self) {
-        drop(SHARED_MEMORY.lock().take());
-    }
-}
-
-impl Drop for MemoryTracker {
-    fn drop(&mut self) {
-        for region in &self.regions {
-            match region.mem_type {
-                MemoryType::ReadWrite => {
-                    // TODO(b/269738062): Use PT's dirty bit to only flush pages that were touched.
-                    helpers::flush_region(region.range.start, region.range.len())
-                }
-                MemoryType::ReadOnly => {}
-            }
-        }
-        self.unshare_all_memory()
-    }
-}
-
-/// Allocates a memory range of at least the given size that is shared with
-/// host. Returns a pointer to the buffer.
-///
-/// It will be aligned to the memory sharing granule size supported by the hypervisor.
-pub fn alloc_shared(layout: Layout) -> hyp::Result<NonNull<u8>> {
-    assert_ne!(layout.size(), 0);
-    let Some(buffer) = try_shared_alloc(layout) else {
-        handle_alloc_error(layout);
-    };
-
-    trace!("Allocated shared buffer at {buffer:?} with {layout:?}");
-    Ok(buffer)
-}
-
-fn try_shared_alloc(layout: Layout) -> Option<NonNull<u8>> {
-    let mut shared_pool = SHARED_POOL.get().unwrap().lock();
-
-    if let Some(buffer) = shared_pool.alloc_aligned(layout) {
-        Some(NonNull::new(buffer as _).unwrap())
-    } else if let Some(shared_memory) = SHARED_MEMORY.lock().as_mut() {
-        shared_memory.refill(&mut shared_pool, layout);
-        shared_pool.alloc_aligned(layout).map(|buffer| NonNull::new(buffer as _).unwrap())
-    } else {
-        None
-    }
-}
-
-/// Unshares and deallocates a memory range which was previously allocated by `alloc_shared`.
-///
-/// The size passed in must be the size passed to the original `alloc_shared` call.
-///
-/// # Safety
-///
-/// The memory must have been allocated by `alloc_shared` with the same size, and not yet
-/// deallocated.
-pub unsafe fn dealloc_shared(vaddr: NonNull<u8>, layout: Layout) -> hyp::Result<()> {
-    SHARED_POOL.get().unwrap().lock().dealloc_aligned(vaddr.as_ptr() as usize, layout);
-
-    trace!("Deallocated shared buffer at {vaddr:?} with {layout:?}");
-    Ok(())
-}
-
-/// Returns an iterator which yields the base address of each 4 KiB page within the given range.
-fn page_iterator(range: &MemoryRange) -> impl Iterator<Item = usize> {
-    (page_4kb_of(range.start)..range.end).step_by(SIZE_4KB)
-}
-
-/// Returns the intermediate physical address corresponding to the given virtual address.
-///
-/// As we use identity mapping for everything, this is just a cast, but it's useful to use it to be
-/// explicit about where we are converting from virtual to physical address.
-pub fn virt_to_phys(vaddr: NonNull<u8>) -> usize {
-    vaddr.as_ptr() as _
-}
-
-/// Returns a pointer for the virtual address corresponding to the given non-zero intermediate
-/// physical address.
-///
-/// Panics if `paddr` is 0.
-pub fn phys_to_virt(paddr: usize) -> NonNull<u8> {
-    NonNull::new(paddr as _).unwrap()
+    Ok(page_table)
 }
diff --git a/pvmfw/src/mmu.rs b/pvmfw/src/mmu.rs
deleted file mode 100644
index e33dcba..0000000
--- a/pvmfw/src/mmu.rs
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2022, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Memory management.
-
-use crate::helpers;
-use crate::helpers::PVMFW_PAGE_SIZE;
-use aarch64_paging::idmap::IdMap;
-use aarch64_paging::paging::Attributes;
-use aarch64_paging::paging::MemoryRegion;
-use aarch64_paging::MapError;
-use core::ops::Range;
-use vmbase::layout;
-
-// We assume that:
-// - MAIR_EL1.Attr0 = "Device-nGnRE memory" (0b0000_0100)
-// - MAIR_EL1.Attr1 = "Normal memory, Outer & Inner WB Non-transient, R/W-Allocate" (0b1111_1111)
-const MEMORY: Attributes = Attributes::NORMAL.union(Attributes::NON_GLOBAL);
-const DEVICE: Attributes = Attributes::DEVICE_NGNRE.union(Attributes::EXECUTE_NEVER);
-const CODE: Attributes = MEMORY.union(Attributes::READ_ONLY);
-const DATA: Attributes = MEMORY.union(Attributes::EXECUTE_NEVER);
-const RODATA: Attributes = DATA.union(Attributes::READ_ONLY);
-
-/// High-level API for managing MMU mappings.
-pub struct PageTable {
-    idmap: IdMap,
-}
-
-fn appended_payload_range() -> Range<usize> {
-    let start = helpers::align_up(layout::binary_end(), helpers::SIZE_4KB).unwrap();
-    // pvmfw is contained in a 2MiB region so the payload can't be larger than the 2MiB alignment.
-    let end = helpers::align_up(start, helpers::SIZE_2MB).unwrap();
-
-    start..end
-}
-
-/// Region allocated for the stack.
-pub fn stack_range() -> Range<usize> {
-    const STACK_PAGES: usize = 8;
-
-    layout::stack_range(STACK_PAGES * PVMFW_PAGE_SIZE)
-}
-
-impl PageTable {
-    const ASID: usize = 1;
-    const ROOT_LEVEL: usize = 1;
-
-    /// Creates an instance pre-populated with pvmfw's binary layout.
-    pub fn from_static_layout() -> Result<Self, MapError> {
-        let mut page_table = Self { idmap: IdMap::new(Self::ASID, Self::ROOT_LEVEL) };
-
-        page_table.map_code(&layout::text_range())?;
-        page_table.map_data(&layout::scratch_range())?;
-        page_table.map_data(&stack_range())?;
-        page_table.map_rodata(&layout::rodata_range())?;
-        page_table.map_data(&appended_payload_range())?;
-
-        Ok(page_table)
-    }
-
-    pub unsafe fn activate(&mut self) {
-        self.idmap.activate()
-    }
-
-    pub fn map_device(&mut self, range: &Range<usize>) -> Result<(), MapError> {
-        self.map_range(range, DEVICE)
-    }
-
-    pub fn map_data(&mut self, range: &Range<usize>) -> Result<(), MapError> {
-        self.map_range(range, DATA)
-    }
-
-    pub fn map_code(&mut self, range: &Range<usize>) -> Result<(), MapError> {
-        self.map_range(range, CODE)
-    }
-
-    pub fn map_rodata(&mut self, range: &Range<usize>) -> Result<(), MapError> {
-        self.map_range(range, RODATA)
-    }
-
-    fn map_range(&mut self, range: &Range<usize>, attr: Attributes) -> Result<(), MapError> {
-        self.idmap.map_range(&MemoryRegion::new(range.start, range.end), attr)
-    }
-}
diff --git a/pvmfw/src/rand.rs b/pvmfw/src/rand.rs
deleted file mode 100644
index bf0edd5..0000000
--- a/pvmfw/src/rand.rs
+++ /dev/null
@@ -1,109 +0,0 @@
-// Copyright 2023, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-use crate::hvc;
-use core::fmt;
-use core::mem::size_of;
-
-pub enum Error {
-    /// Error during SMCCC TRNG call.
-    Trng(hvc::trng::Error),
-    /// Unsupported SMCCC TRNG version.
-    UnsupportedVersion((u16, u16)),
-}
-
-impl From<hvc::trng::Error> for Error {
-    fn from(e: hvc::trng::Error) -> Self {
-        Self::Trng(e)
-    }
-}
-
-pub type Result<T> = core::result::Result<T, Error>;
-
-impl fmt::Display for Error {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        match self {
-            Self::Trng(e) => write!(f, "SMCCC TRNG error: {e}"),
-            Self::UnsupportedVersion((x, y)) => {
-                write!(f, "Unsupported SMCCC TRNG version v{x}.{y}")
-            }
-        }
-    }
-}
-
-/// Configure the source of entropy.
-pub fn init() -> Result<()> {
-    match hvc::trng_version()? {
-        (1, _) => Ok(()),
-        version => Err(Error::UnsupportedVersion(version)),
-    }
-}
-
-fn fill_with_entropy(s: &mut [u8]) -> Result<()> {
-    const MAX_BYTES_PER_CALL: usize = size_of::<hvc::TrngRng64Entropy>();
-
-    let (aligned, remainder) = s.split_at_mut(s.len() - s.len() % MAX_BYTES_PER_CALL);
-
-    for chunk in aligned.chunks_exact_mut(MAX_BYTES_PER_CALL) {
-        let (r, s, t) = repeat_trng_rnd(chunk.len())?;
-
-        let mut words = chunk.chunks_exact_mut(size_of::<u64>());
-        words.next().unwrap().clone_from_slice(&t.to_ne_bytes());
-        words.next().unwrap().clone_from_slice(&s.to_ne_bytes());
-        words.next().unwrap().clone_from_slice(&r.to_ne_bytes());
-    }
-
-    if !remainder.is_empty() {
-        let mut entropy = [0; MAX_BYTES_PER_CALL];
-        let (r, s, t) = repeat_trng_rnd(remainder.len())?;
-
-        let mut words = entropy.chunks_exact_mut(size_of::<u64>());
-        words.next().unwrap().clone_from_slice(&t.to_ne_bytes());
-        words.next().unwrap().clone_from_slice(&s.to_ne_bytes());
-        words.next().unwrap().clone_from_slice(&r.to_ne_bytes());
-
-        remainder.clone_from_slice(&entropy[..remainder.len()]);
-    }
-
-    Ok(())
-}
-
-fn repeat_trng_rnd(n_bytes: usize) -> hvc::trng::Result<hvc::TrngRng64Entropy> {
-    let bits = usize::try_from(u8::BITS).unwrap();
-    let n_bits = (n_bytes * bits).try_into().unwrap();
-    loop {
-        match hvc::trng_rnd64(n_bits) {
-            Err(hvc::trng::Error::NoEntropy) => continue,
-            res => return res,
-        }
-    }
-}
-
-pub fn random_array<const N: usize>() -> Result<[u8; N]> {
-    let mut arr = [0; N];
-    fill_with_entropy(&mut arr)?;
-    Ok(arr)
-}
-
-#[no_mangle]
-extern "C" fn CRYPTO_sysrand_for_seed(out: *mut u8, req: usize) {
-    CRYPTO_sysrand(out, req)
-}
-
-#[no_mangle]
-extern "C" fn CRYPTO_sysrand(out: *mut u8, req: usize) {
-    // SAFETY - We need to assume that out points to valid memory of size req.
-    let s = unsafe { core::slice::from_raw_parts_mut(out, req) };
-    let _ = fill_with_entropy(s);
-}
diff --git a/pvmfw/src/virtio/pci.rs b/pvmfw/src/virtio/pci.rs
deleted file mode 100644
index 58bc07e..0000000
--- a/pvmfw/src/virtio/pci.rs
+++ /dev/null
@@ -1,116 +0,0 @@
-// Copyright 2022, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! Functions to scan the PCI bus for VirtIO devices.
-
-use super::hal::HalImpl;
-use crate::{entry::RebootReason, memory::MemoryTracker};
-use alloc::boxed::Box;
-use fdtpci::PciInfo;
-use log::{debug, error};
-use once_cell::race::OnceBox;
-use virtio_drivers::{
-    device::blk,
-    transport::{
-        pci::{
-            bus::{BusDeviceIterator, PciRoot},
-            virtio_device_type, PciTransport,
-        },
-        DeviceType, Transport,
-    },
-};
-
-pub(super) static PCI_INFO: OnceBox<PciInfo> = OnceBox::new();
-
-/// Prepares to use VirtIO PCI devices.
-///
-/// In particular:
-///
-/// 1. Maps the PCI CAM and BAR range in the page table and MMIO guard.
-/// 2. Stores the `PciInfo` for the VirtIO HAL to use later.
-/// 3. Creates and returns a `PciRoot`.
-///
-/// This must only be called once; it will panic if it is called a second time.
-pub fn initialise(pci_info: PciInfo, memory: &mut MemoryTracker) -> Result<PciRoot, RebootReason> {
-    map_mmio(&pci_info, memory)?;
-
-    PCI_INFO.set(Box::new(pci_info.clone())).expect("Tried to set PCI_INFO a second time");
-
-    // Safety: This is the only place where we call make_pci_root, and `PCI_INFO.set` above will
-    // panic if it is called a second time.
-    Ok(unsafe { pci_info.make_pci_root() })
-}
-
-/// Maps the CAM and BAR range in the page table and MMIO guard.
-fn map_mmio(pci_info: &PciInfo, memory: &mut MemoryTracker) -> Result<(), RebootReason> {
-    memory.map_mmio_range(pci_info.cam_range.clone()).map_err(|e| {
-        error!("Failed to map PCI CAM: {}", e);
-        RebootReason::InternalError
-    })?;
-
-    memory
-        .map_mmio_range(pci_info.bar_range.start as usize..pci_info.bar_range.end as usize)
-        .map_err(|e| {
-            error!("Failed to map PCI MMIO range: {}", e);
-            RebootReason::InternalError
-        })?;
-
-    Ok(())
-}
-
-pub type VirtIOBlk = blk::VirtIOBlk<HalImpl, PciTransport>;
-
-pub struct VirtIOBlkIterator<'a> {
-    pci_root: &'a mut PciRoot,
-    bus: BusDeviceIterator,
-}
-
-impl<'a> VirtIOBlkIterator<'a> {
-    pub fn new(pci_root: &'a mut PciRoot) -> Self {
-        let bus = pci_root.enumerate_bus(0);
-        Self { pci_root, bus }
-    }
-}
-
-impl<'a> Iterator for VirtIOBlkIterator<'a> {
-    type Item = VirtIOBlk;
-
-    fn next(&mut self) -> Option<Self::Item> {
-        loop {
-            let (device_function, info) = self.bus.next()?;
-            let (status, command) = self.pci_root.get_status_command(device_function);
-            debug!(
-                "Found PCI device {} at {}, status {:?} command {:?}",
-                info, device_function, status, command
-            );
-
-            let Some(virtio_type) = virtio_device_type(&info) else {
-                continue;
-            };
-            debug!("  VirtIO {:?}", virtio_type);
-
-            let mut transport =
-                PciTransport::new::<HalImpl>(self.pci_root, device_function).unwrap();
-            debug!(
-                "Detected virtio PCI device with device type {:?}, features {:#018x}",
-                transport.device_type(),
-                transport.read_device_features(),
-            );
-
-            if virtio_type == DeviceType::Block {
-                return Some(Self::Item::new(transport).expect("failed to create blk driver"));
-            }
-        }
-    }
-}
diff --git a/pvmfw/testdata/test_crosvm_dt_base.dtsi b/pvmfw/testdata/test_crosvm_dt_base.dtsi
new file mode 100644
index 0000000..0c1a311
--- /dev/null
+++ b/pvmfw/testdata/test_crosvm_dt_base.dtsi
@@ -0,0 +1,152 @@
+/dts-v1/;
+/plugin/;
+
+// This is generated manually by removing unassigned pvIOMMU nodes
+// from patched platform.dts.
+
+/ {
+	interrupt-parent = <0x01>;
+	compatible = "linux,dummy-virt";
+	#address-cells = <0x02>;
+	#size-cells = <0x02>;
+
+	chosen {
+		bootargs = "panic=-1 crashkernel=31M";
+		linux,initrd-end = <0x811d6cb8>;
+		linux,initrd-start = <0x81000000>;
+		stdout-path = "/uart@3f8";
+		1,pci-probe-only = <0x01>;
+		kaslr-seed = <0x00 0x00>;
+		avf,strict-boot;
+		avf,new-instance;
+	};
+
+	memory {
+		device_type = "memory";
+		reg = <0x00 0x80000000 0x00 0x10000000>;
+	};
+
+	reserved-memory {
+		#address-cells = <0x02>;
+		#size-cells = <0x02>;
+		ranges;
+
+		restricted_dma_reserved {
+			compatible = "restricted-dma-pool";
+			size = <0x00 0xe00000>;
+			alignment = <0x00 0x1000>;
+			phandle = <0x02>;
+		};
+
+		dice {
+			compatible = "google,open-dice";
+			no-map;
+			reg = <0x00 0x7fe25000 0x00 0x1000>;
+		};
+	};
+
+	cpus {
+		#address-cells = <0x01>;
+		#size-cells = <0x00>;
+
+		cpu@0 {
+			device_type = "cpu";
+			compatible = "arm,arm-v8";
+			enable-method = "psci";
+			reg = <0x00>;
+		};
+	};
+
+	intc {
+		compatible = "arm,gic-v3";
+		#address-cells = <0x02>;
+		#size-cells = <0x02>;
+		#interrupt-cells = <0x03>;
+		interrupt-controller;
+		reg = <0x00 0x3fff0000 0x00 0x10000 0x00 0x3ffd0000 0x00 0x20000>;
+		phandle = <0x01>;
+	};
+
+	timer {
+		compatible = "arm,armv8-timer";
+		always-on;
+		interrupts = <0x01 0x0d 0x108 0x01 0x0e 0x108 0x01 0x0b 0x108 0x01 0x0a 0x108>;
+	};
+
+	uart@2e8 {
+		compatible = "ns16550a";
+		reg = <0x00 0x2e8 0x00 0x08>;
+		clock-frequency = <0x1c2000>;
+		interrupts = <0x00 0x02 0x01>;
+	};
+
+	uart@2f8 {
+		compatible = "ns16550a";
+		reg = <0x00 0x2f8 0x00 0x08>;
+		clock-frequency = <0x1c2000>;
+		interrupts = <0x00 0x02 0x01>;
+	};
+
+	uart@3e8 {
+		compatible = "ns16550a";
+		reg = <0x00 0x3e8 0x00 0x08>;
+		clock-frequency = <0x1c2000>;
+		interrupts = <0x00 0x00 0x01>;
+	};
+
+	uart@3f8 {
+		compatible = "ns16550a";
+		reg = <0x00 0x3f8 0x00 0x08>;
+		clock-frequency = <0x1c2000>;
+		interrupts = <0x00 0x00 0x01>;
+	};
+
+	psci {
+		compatible = "arm,psci-1.0";
+		method = "hvc";
+	};
+
+	pci {
+		compatible = "pci-host-cam-generic";
+		device_type = "pci";
+		#address-cells = <0x03>;
+		#size-cells = <0x02>;
+		#interrupt-cells = <0x01>;
+		dma-coherent;
+		memory-region = <0x02>;
+		ranges = <0x3000000 0x00 0x2000000 0x00 0x2000000 0x00 0x2000000 0x3000000 0x00 0x90800000 0x00 0x90800000 0xff 0x6f800000>;
+		bus-range = <0x00 0x00>;
+		reg = <0x00 0x10000 0x00 0x1000000>;
+		interrupt-map = <0x800 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x04 0x04 0x1000 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x05 0x04 0x1800 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x06 0x04 0x2000 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x07 0x04 0x2800 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x08 0x04 0x3000 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x09 0x04 0x3800 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x0a 0x04 0x4000 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x0b 0x04 0x4800 0x00 0x00 0x01 0x01 0x00 0x00 0x00 0x0c 0x04>;
+		interrupt-map-mask = <0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07 0xf800 0x00 0x00 0x07>;
+	};
+
+	pclk@3M {
+		compatible = "fixed-clock";
+		clock-frequency = <0x2fefd8>;
+		#clock-cells = <0x00>;
+		phandle = <0x03>;
+	};
+
+	rtc@2000 {
+		compatible = "arm,primecell";
+		arm,primecell-periphid = <0x41030>;
+		reg = <0x00 0x2000 0x00 0x1000>;
+		interrupts = <0x00 0x01 0x04>;
+		clock-names = "apb_pclk";
+		clocks = <0x03>;
+	};
+
+	vmwdt@3000 {
+		compatible = "qemu,vcpu-stall-detector";
+		reg = <0x00 0x3000 0x00 0x1000>;
+		clock-frequency = <0x0a>;
+		timeout-sec = <0x08>;
+	};
+
+	__symbols__ {
+		swiotlb = "/reserved-memory/restricted_dma_reserved";
+		intc = "/intc";
+		clk = "/pclk@3M";
+	};
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_vm_dtbo.dts b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo.dts
new file mode 100644
index 0000000..23bc3c0
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo.dts
@@ -0,0 +1,118 @@
+/dts-v1/;
+
+/ {
+    host {
+        #address-cells = <0x2>;
+        #size-cells = <0x1>;
+        rng {
+            reg = <0x0 0x12f00000 0xFF>;
+            iommus = <0x1 0x3>;
+            android,pvmfw,target = <0x2>;
+        };
+        light {
+            reg = <0x0 0x00f00000 0x1000>, <0x0 0x00f10000 0x1000>;
+            iommus = <0x3 0x4>, <0x4 0x5>;
+            android,pvmfw,target = <0x5>;
+        };
+        led {
+            reg = <0x0 0x12000000 0x9>;
+            iommus = <0x1 0x9>;
+            android,pvmfw,target = <0x6>;
+        };
+        bus0 {
+            #address-cells = <0x1>;
+            #size-cells = <0x1>;
+            backlight {
+                reg = <0x300 0xFF>;
+                android,pvmfw,target = <0x7>;
+            };
+        };
+        iommu0 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x12e40000>;
+            phandle = <0x1>;
+        };
+        iommu1 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x40000>;
+            phandle = <0x3>;
+        };
+        iommu2 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x50000>;
+            phandle = <0x4>;
+        };
+    };
+    fragment@rng {
+        target-path = "/";
+        __overlay__ {
+            rng {
+                compatible = "android,rng";
+                android,rng,ignore-gctrl-reset;
+                phandle = <0x2>;
+            };
+        };
+    };
+    fragment@sensor {
+        target-path = "/";
+        __overlay__ {
+            light {
+                compatible = "android,light";
+                version = <0x1 0x2>;
+                phandle = <0x5>;
+            };
+        };
+    };
+    fragment@led {
+        target-path = "/";
+        __overlay__ {
+            led {
+                compatible = "android,led";
+                prop = <0x555>;
+                phandle = <0x6>;
+            };
+        };
+    };
+    fragment@backlight {
+        target-path = "/";
+        __overlay__ {
+            bus0 {
+                backlight {
+                    compatible = "android,backlight";
+                    android,backlight,ignore-gctrl-reset;
+                    phandle = <0x7>;
+                };
+            };
+        };
+    };
+    __symbols__ {
+        iommu0 = "/host/iommu0";
+        iommu1 = "/host/iommu1";
+        iommu2 = "/host/iommu2";
+        rng = "/fragment@rng/__overlay__/rng";
+        light = "/fragment@sensor/__overlay__/light";
+        led = "/fragment@led/__overlay__/led";
+        backlight = "/fragment@backlight/__overlay__/bus0/backlight";
+    };
+    __local_fixups__ {
+        host {
+            rng {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+            light {
+                iommus = <0x0 0x8>;
+                android,pvmfw,target = <0x0>;
+            };
+            led {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+            bus0 {
+                backlight {
+                    android,pvmfw,target = <0x0>;
+                };
+            };
+        };
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dts b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dts
new file mode 100644
index 0000000..45b26e0
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_with_duplicated_iommus.dts
@@ -0,0 +1,60 @@
+/dts-v1/;
+
+/ {
+    host {
+        #address-cells = <0x2>;
+        #size-cells = <0x1>;
+        rng {
+            reg = <0x0 0x12f00000 0xFF>;
+            iommus = <0x1 0x3>;
+            android,pvmfw,target = <0x2>;
+        };
+        led {
+            reg = <0x0 0x12000000 0x9>;
+            iommus = <0x1 0x3>;
+            android,pvmfw,target = <0x6>;
+        };
+        iommu0 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x12e40000>;
+            phandle = <0x1>;
+        };
+    };
+    fragment@rng {
+        target-path = "/";
+        __overlay__ {
+            rng {
+                compatible = "android,rng";
+                android,rng,ignore-gctrl-reset;
+                phandle = <0x2>;
+            };
+        };
+    };
+    fragment@led {
+        target-path = "/";
+        __overlay__ {
+            led {
+                compatible = "android,led";
+                prop = <0x555>;
+                phandle = <0x6>;
+            };
+        };
+    };
+    __symbols__ {
+        iommu0 = "/host/iommu0";
+        rng = "/fragment@rng/__overlay__/rng";
+        led = "/fragment@led/__overlay__/led";
+    };
+    __local_fixups__ {
+        host {
+            rng {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+            led {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+        };
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_without_symbols.dts b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_without_symbols.dts
new file mode 100644
index 0000000..20a8c1b
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_vm_dtbo_without_symbols.dts
@@ -0,0 +1,114 @@
+/dts-v1/;
+
+/ {
+    host {
+        #address-cells = <0x2>;
+        #size-cells = <0x1>;
+        rng {
+            reg = <0x0 0x12f00000 0xFF>;
+            iommus = <0x1 0x3>;
+            android,pvmfw,target = <0x2>;
+        };
+        light {
+            reg = <0x0 0x00f00000 0x1000>, <0x0 0x00f10000 0x1000>;
+            iommus = <0x3 0x4>, <0x4 0x5>;
+            android,pvmfw,target = <0x5>;
+        };
+        led {
+            reg = <0x0 0x12000000 0x9>;
+            iommus = <0x1 0x9>;
+            android,pvmfw,target = <0x6>;
+        };
+        bus0 {
+            #address-cells = <0x1>;
+            #size-cells = <0x1>;
+            backlight {
+                reg = <0x300 0xFF>;
+                android,pvmfw,target = <0x7>;
+            };
+        };
+        iommu0 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x12e40000>;
+            phandle = <0x1>;
+        };
+        iommu1 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x40000>;
+            phandle = <0x3>;
+        };
+        iommu2 {
+            #iommu-cells = <0x1>;
+            android,pvmfw,token = <0x0 0x50000>;
+            phandle = <0x4>;
+        };
+    };
+    fragment@rng {
+        target-path = "/";
+        __overlay__ {
+            rng {
+                compatible = "android,rng";
+                android,rng,ignore-gctrl-reset;
+                phandle = <0x2>;
+            };
+        };
+    };
+    fragment@sensor {
+        target-path = "/";
+        __overlay__ {
+            light {
+                compatible = "android,light";
+                version = <0x1 0x2>;
+                phandle = <0x5>;
+            };
+        };
+    };
+    fragment@led {
+        target-path = "/";
+        __overlay__ {
+            led {
+                compatible = "android,led";
+                prop = <0x555>;
+                phandle = <0x6>;
+            };
+        };
+    };
+    fragment@backlight {
+        target-path = "/";
+        __overlay__ {
+            bus0 {
+                backlight {
+                    compatible = "android,backlight";
+                    android,backlight,ignore-gctrl-reset;
+                    phandle = <0x7>;
+                };
+            };
+        };
+    };
+    __symbols__ {
+        iommu0 = "/host/iommu0";
+        iommu1 = "/host/iommu1";
+        iommu2 = "/host/iommu2";
+    };
+    __local_fixups__ {
+        host {
+            rng {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+            light {
+                iommus = <0x0 0x8>;
+                android,pvmfw,target = <0x0>;
+            };
+            led {
+                iommus = <0x0>;
+                android,pvmfw,target = <0x0>;
+            };
+            bus0 {
+                backlight {
+                    android,pvmfw,target = <0x0>;
+                };
+            };
+        };
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_duplicated_pviommus.dts b/pvmfw/testdata/test_pvmfw_devices_with_duplicated_pviommus.dts
new file mode 100644
index 0000000..4ebf034
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_duplicated_pviommus.dts
@@ -0,0 +1,23 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    light {
+        reg = <0x0 0x10000 0x0 0x1000>, <0x0 0x20000 0x0 0x1000>;
+        iommus = <&pviommu_0 0xF>, <&pviommu_1 0xF>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0xFF>;
+        #iommu-cells = <1>;
+    };
+
+    pviommu_1: pviommu1 {
+        compatible = "pkvm,pviommu";
+        id = <0xFF>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_iommu_id_conflict.dts b/pvmfw/testdata/test_pvmfw_devices_with_iommu_id_conflict.dts
new file mode 100644
index 0000000..a9e30be
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_iommu_id_conflict.dts
@@ -0,0 +1,46 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    rng@90000000 {
+        compatible = "android,rng";
+        reg = <0x0 0x9 0x0 0xFF>;
+        interrupts = <0x0 0xF 0x4>;
+        google,eh,ignore-gctrl-reset;
+        status = "okay";
+        iommus = <&pviommu_0 0x0>, <&pviommu_1 0x1>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0x4>;
+        #iommu-cells = <1>;
+    };
+
+    pviommu_1: pviommu1 {
+        compatible = "pkvm,pviommu";
+        id = <0x9>;
+        #iommu-cells = <1>;
+    };
+
+    light@70000000 {
+        compatible = "android,light";
+        reg = <0x0 0x100 0x0 0x100>, <0x0 0x200 0x0 0x100>;
+        interrupts = <0x0 0xF 0x5>;
+        iommus = <&pviommu_a 0xA>, <&pviommu_b 0xB>;
+    };
+
+    pviommu_a: pviommua {
+        compatible = "pkvm,pviommu";
+        id = <0x40>;
+        #iommu-cells = <1>;
+    };
+
+    pviommu_b: pviommub {
+        compatible = "pkvm,pviommu";
+        id = <0x9>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_iommu_sharing.dts b/pvmfw/testdata/test_pvmfw_devices_with_iommu_sharing.dts
new file mode 100644
index 0000000..2470725
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_iommu_sharing.dts
@@ -0,0 +1,28 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    rng@90000000 {
+        compatible = "android,rng";
+        reg = <0x0 0x9 0x0 0xFF>;
+        interrupts = <0x0 0xF 0x4>;
+        google,eh,ignore-gctrl-reset;
+        status = "okay";
+        iommus = <&pviommu_0 0xFF0>;
+    };
+
+    led@70000000 {
+        compatible = "android,led";
+        reg = <0x0 0x1000 0x0 0x9>;
+        interrupts = <0x0 0xF 0x5>;
+        iommus = <&pviommu_0 0xFF1>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0x4>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_multiple_devices_iommus.dts b/pvmfw/testdata/test_pvmfw_devices_with_multiple_devices_iommus.dts
new file mode 100644
index 0000000..3aaafdd
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_multiple_devices_iommus.dts
@@ -0,0 +1,39 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+/ {
+    rng@90000000 {
+        compatible = "android,rng";
+        reg = <0x0 0x9 0x0 0xFF>;
+        interrupts = <0x0 0xF 0x4>;
+        google,eh,ignore-gctrl-reset;
+        status = "okay";
+        iommus = <&pviommu_0 0xFF0>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0x4>;
+        #iommu-cells = <1>;
+    };
+
+    light@70000000 {
+        compatible = "android,light";
+        reg = <0x0 0x10000 0x0 0x1000>, <0x0 0x20000 0x0 0x1000>;
+        interrupts = <0x0 0xF 0x5>;
+        iommus = <&pviommu_a 0xFFA>, <&pviommu_b 0xFFB>;
+    };
+
+    pviommu_a: pviommua {
+        compatible = "pkvm,pviommu";
+        id = <0x40>;
+        #iommu-cells = <1>;
+    };
+
+    pviommu_b: pviommub {
+        compatible = "pkvm,pviommu";
+        id = <0x50>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_multiple_reg_iommus.dts b/pvmfw/testdata/test_pvmfw_devices_with_multiple_reg_iommus.dts
new file mode 100644
index 0000000..0676aa3
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_multiple_reg_iommus.dts
@@ -0,0 +1,24 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    light {
+        reg = <0x0 0xF000 0x0 0x1000>, <0x0 0xF100 0x0 0x1000>;
+        interrupts = <0x0 0xF 0x4>;
+        iommus = <&pviommu_0 0xF0>, <&pviommu_1 0xF1>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0xFF0>;
+        #iommu-cells = <1>;
+    };
+
+    pviommu_1: pviommu1 {
+        compatible = "pkvm,pviommu";
+        id = <0xFF1>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_with_rng.dts b/pvmfw/testdata/test_pvmfw_devices_with_rng.dts
new file mode 100644
index 0000000..a987098
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_with_rng.dts
@@ -0,0 +1,21 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    rng@90000000 {
+        compatible = "android,rng";
+        reg = <0x0 0x9 0x0 0xFF>;
+        interrupts = <0x0 0xF 0x4>;
+        google,eh,ignore-gctrl-reset;
+        status = "okay";
+        iommus = <&pviommu_0 0xFF0>;
+    };
+
+    pviommu_0: pviommu0 {
+        compatible = "pkvm,pviommu";
+        id = <0x4>;
+        #iommu-cells = <1>;
+    };
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_without_device.dts b/pvmfw/testdata/test_pvmfw_devices_without_device.dts
new file mode 100644
index 0000000..ee0be3a
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_without_device.dts
@@ -0,0 +1,7 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+};
diff --git a/pvmfw/testdata/test_pvmfw_devices_without_iommus.dts b/pvmfw/testdata/test_pvmfw_devices_without_iommus.dts
new file mode 100644
index 0000000..1a12c87
--- /dev/null
+++ b/pvmfw/testdata/test_pvmfw_devices_without_iommus.dts
@@ -0,0 +1,19 @@
+/dts-v1/;
+/plugin/;
+
+/include/ "test_crosvm_dt_base.dtsi"
+
+/ {
+    bus0 {
+        #address-cells = <0x2>;
+        #size-cells = <0x2>;
+
+        backlight@90000000 {
+            compatible = "android,backlight";
+            reg = <0x0 0x9 0x0 0xFF>;
+            interrupts = <0x0 0xF 0x4>;
+            google,eh,ignore-gctrl-reset;
+            status = "okay";
+        };
+    };
+};
diff --git a/rialto/Android.bp b/rialto/Android.bp
index cf81563..c102c89 100644
--- a/rialto/Android.bp
+++ b/rialto/Android.bp
@@ -6,16 +6,26 @@
     name: "librialto",
     crate_name: "rialto",
     srcs: ["src/main.rs"],
-    edition: "2021",
     defaults: ["vmbase_ffi_defaults"],
     rustlibs: [
         "libaarch64_paging",
-        "libbuddy_system_allocator",
+        "libbssl_avf_nostd",
+        "libbssl_sys_nostd",
+        "libciborium_io_nostd",
+        "libciborium_nostd",
+        "libcstr",
+        "libdiced_open_dice_nostd",
         "libhyp",
+        "libfdtpci",
+        "liblibfdt",
         "liblog_rust_nostd",
+        "libservice_vm_comm_nostd",
+        "libservice_vm_fake_chain_nostd",
+        "libservice_vm_requests_nostd",
+        "libtinyvec_nostd",
+        "libvirtio_drivers",
         "libvmbase",
     ],
-    apex_available: ["com.android.virt"],
 }
 
 cc_binary {
@@ -27,13 +37,11 @@
     ],
     static_libs: [
         "librialto",
-        "libvmbase_entry",
     ],
     linker_scripts: [
         "image.ld",
         ":vmbase_sections",
     ],
-    apex_available: ["com.android.virt"],
 }
 
 raw_binary {
@@ -55,6 +63,28 @@
     srcs: [":avb_testkey_rsa4096"],
 }
 
+// Both SERVICE_VM_VERSION and SERVICE_VM_VERSION_STRING should represent the
+// same version number for the service VM.
+SERVICE_VM_VERSION = 1
+SERVICE_VM_VERSION_STRING = "1"
+
+genrule {
+    name: "service_vm_version_rs",
+    out: ["lib.rs"],
+    cmd: "(" +
+        "    echo '#![no_std]';" +
+        "    echo '#![allow(missing_docs)]';" +
+        "    echo 'pub const VERSION: u64 = " + SERVICE_VM_VERSION_STRING + ";'" +
+        ") > $(out)",
+}
+
+rust_library_rlib {
+    name: "libservice_vm_version",
+    crate_name: "service_vm_version",
+    defaults: ["vmbase_rlib_defaults"],
+    srcs: [":service_vm_version_rs"],
+}
+
 avb_add_hash_footer {
     name: "rialto_signed",
     src: ":empty_file",
@@ -62,6 +92,13 @@
     partition_name: "boot",
     private_key: ":rialto_sign_key",
     salt: rialto_salt,
+    rollback_index: SERVICE_VM_VERSION,
+    props: [
+        {
+            name: "com.android.virt.cap",
+            value: "remote_attest",
+        },
+    ],
     enabled: false,
     arch: {
         arm64: {
@@ -72,6 +109,7 @@
 }
 
 prebuilt_etc {
+    // rialto_bin is a prebuilt target wrapping the signed bare-metal service VM.
     name: "rialto_bin",
     filename: "rialto.bin",
     target: {
@@ -86,6 +124,7 @@
 rust_test {
     name: "rialto_test",
     crate_name: "rialto_test",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["tests/test.rs"],
     prefer_rlib: true,
     edition: "2021",
@@ -93,14 +132,21 @@
         "android.system.virtualizationservice-rust",
         "libandroid_logger",
         "libanyhow",
+        "libbssl_avf_nostd",
+        "libciborium",
+        "libclient_vm_csr",
+        "libcoset",
         "liblibc",
         "liblog_rust",
-        "libnix",
+        "libservice_vm_comm",
+        "libservice_vm_fake_chain",
+        "libservice_vm_manager",
         "libvmclient",
+        "libx509_cert_nostd",
     ],
     data: [
-        ":rialto_bin",
         ":rialto_unsigned",
+        ":test_rkp_cert_chain",
     ],
     test_suites: ["general-tests"],
     enabled: false,
diff --git a/rialto/AndroidTest.xml b/rialto/AndroidTest.xml
new file mode 100644
index 0000000..43c4c90
--- /dev/null
+++ b/rialto/AndroidTest.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2023 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+
+<configuration description="Config for rialto_test">
+  <!--
+    We need root privilege to bypass selinux because shell cannot create socket.
+    Otherwise, we hit the following errors:
+
+    avc:  denied  { create } for  scontext=u:r:shell:s0 tcontext=u:r:shell:s0
+     tclass=vsock_socket permissive=0
+  -->
+  <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer"/>
+
+  <target_preparer class="com.android.tradefed.targetprep.PushFilePreparer">
+    <option name="push-file" key="rialto_test" value="/data/local/tmp/rialto_test" />
+  </target_preparer>
+
+  <test class="com.android.tradefed.testtype.rust.RustBinaryTest" >
+    <option name="test-device-path" value="/data/local/tmp" />
+    <option name="module-name" value="rialto_test" />
+  </test>
+</configuration>
\ No newline at end of file
diff --git a/rialto/TEST_MAPPING b/rialto/TEST_MAPPING
index 88f616e..e8e84d2 100644
--- a/rialto/TEST_MAPPING
+++ b/rialto/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/rialto/src/communication.rs b/rialto/src/communication.rs
new file mode 100644
index 0000000..1b94912
--- /dev/null
+++ b/rialto/src/communication.rs
@@ -0,0 +1,215 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Supports for the communication between rialto and host.
+
+use crate::error::Result;
+use ciborium_io::{Read, Write};
+use core::hint::spin_loop;
+use core::mem;
+use core::result;
+use log::info;
+use service_vm_comm::{Response, ServiceVmRequest};
+use tinyvec::ArrayVec;
+use virtio_drivers::{
+    self,
+    device::socket::{
+        SocketError, VirtIOSocket, VsockAddr, VsockConnectionManager, VsockEventType,
+    },
+    transport::Transport,
+    Hal,
+};
+
+const WRITE_BUF_CAPACITY: usize = 512;
+
+pub struct VsockStream<H: Hal, T: Transport> {
+    connection_manager: VsockConnectionManager<H, T>,
+    /// Peer address. The same port is used on rialto and peer for convenience.
+    peer_addr: VsockAddr,
+    write_buf: ArrayVec<[u8; WRITE_BUF_CAPACITY]>,
+}
+
+impl<H: Hal, T: Transport> VsockStream<H, T> {
+    pub fn new(
+        socket_device_driver: VirtIOSocket<H, T>,
+        peer_addr: VsockAddr,
+    ) -> virtio_drivers::Result<Self> {
+        let mut vsock_stream = Self {
+            connection_manager: VsockConnectionManager::new(socket_device_driver),
+            peer_addr,
+            write_buf: ArrayVec::default(),
+        };
+        vsock_stream.connect()?;
+        Ok(vsock_stream)
+    }
+
+    fn connect(&mut self) -> virtio_drivers::Result {
+        self.connection_manager.connect(self.peer_addr, self.peer_addr.port)?;
+        self.wait_for_connect()?;
+        info!("Connected to the peer {:?}", self.peer_addr);
+        Ok(())
+    }
+
+    fn wait_for_connect(&mut self) -> virtio_drivers::Result {
+        loop {
+            if let Some(event) = self.poll_event_from_peer()? {
+                match event {
+                    VsockEventType::Connected => return Ok(()),
+                    VsockEventType::Disconnected { .. } => {
+                        return Err(SocketError::ConnectionFailed.into())
+                    }
+                    // We shouldn't receive the following event before the connection is
+                    // established.
+                    VsockEventType::ConnectionRequest | VsockEventType::Received { .. } => {
+                        return Err(SocketError::InvalidOperation.into())
+                    }
+                    // We can receive credit requests and updates at any time.
+                    // This can be ignored as the connection manager handles them in poll().
+                    VsockEventType::CreditRequest | VsockEventType::CreditUpdate => {}
+                }
+            } else {
+                spin_loop();
+            }
+        }
+    }
+
+    pub fn read_request(&mut self) -> Result<ServiceVmRequest> {
+        Ok(ciborium::from_reader(self)?)
+    }
+
+    pub fn write_response(&mut self, response: &Response) -> Result<()> {
+        Ok(ciborium::into_writer(response, self)?)
+    }
+
+    /// Shuts down the data channel.
+    pub fn shutdown(&mut self) -> virtio_drivers::Result {
+        self.connection_manager.force_close(self.peer_addr, self.peer_addr.port)?;
+        info!("Connection shutdown.");
+        Ok(())
+    }
+
+    fn recv(&mut self, buffer: &mut [u8]) -> virtio_drivers::Result<usize> {
+        let bytes_read =
+            self.connection_manager.recv(self.peer_addr, self.peer_addr.port, buffer)?;
+
+        let buffer_available_bytes = self
+            .connection_manager
+            .recv_buffer_available_bytes(self.peer_addr, self.peer_addr.port)?;
+        if buffer_available_bytes == 0 && bytes_read > 0 {
+            self.connection_manager.update_credit(self.peer_addr, self.peer_addr.port)?;
+        }
+        Ok(bytes_read)
+    }
+
+    fn wait_for_send(&mut self, buffer: &[u8]) -> virtio_drivers::Result {
+        const INSUFFICIENT_BUFFER_SPACE_ERROR: virtio_drivers::Error =
+            virtio_drivers::Error::SocketDeviceError(SocketError::InsufficientBufferSpaceInPeer);
+        loop {
+            match self.connection_manager.send(self.peer_addr, self.peer_addr.port, buffer) {
+                Ok(_) => return Ok(()),
+                Err(INSUFFICIENT_BUFFER_SPACE_ERROR) => {
+                    self.poll()?;
+                }
+                Err(e) => return Err(e),
+            }
+        }
+    }
+
+    fn wait_for_recv(&mut self) -> virtio_drivers::Result {
+        loop {
+            match self.poll()? {
+                Some(VsockEventType::Received { .. }) => return Ok(()),
+                _ => spin_loop(),
+            }
+        }
+    }
+
+    /// Polls the rx queue after the connection is established with the peer, this function
+    /// rejects some invalid events. The valid events are handled inside the connection
+    /// manager.
+    fn poll(&mut self) -> virtio_drivers::Result<Option<VsockEventType>> {
+        if let Some(event) = self.poll_event_from_peer()? {
+            match event {
+                VsockEventType::Disconnected { .. } => Err(SocketError::ConnectionFailed.into()),
+                VsockEventType::Connected | VsockEventType::ConnectionRequest => {
+                    Err(SocketError::InvalidOperation.into())
+                }
+                // When there is a received event, the received data is buffered in the
+                // connection manager's internal receive buffer, so we don't need to do
+                // anything here.
+                // The credit request and updates also handled inside the connection
+                // manager.
+                VsockEventType::Received { .. }
+                | VsockEventType::CreditRequest
+                | VsockEventType::CreditUpdate => Ok(Some(event)),
+            }
+        } else {
+            Ok(None)
+        }
+    }
+
+    fn poll_event_from_peer(&mut self) -> virtio_drivers::Result<Option<VsockEventType>> {
+        Ok(self.connection_manager.poll()?.map(|event| {
+            assert_eq!(event.source, self.peer_addr);
+            assert_eq!(event.destination.port, self.peer_addr.port);
+            event.event_type
+        }))
+    }
+}
+
+impl<H: Hal, T: Transport> Read for VsockStream<H, T> {
+    type Error = virtio_drivers::Error;
+
+    fn read_exact(&mut self, data: &mut [u8]) -> result::Result<(), Self::Error> {
+        let mut start = 0;
+        while start < data.len() {
+            let len = self.recv(&mut data[start..])?;
+            let len = if len == 0 {
+                self.wait_for_recv()?;
+                self.recv(&mut data[start..])?
+            } else {
+                len
+            };
+            start += len;
+        }
+        Ok(())
+    }
+}
+
+impl<H: Hal, T: Transport> Write for VsockStream<H, T> {
+    type Error = virtio_drivers::Error;
+
+    fn write_all(&mut self, data: &[u8]) -> result::Result<(), Self::Error> {
+        if data.len() >= self.write_buf.capacity() - self.write_buf.len() {
+            self.flush()?;
+            if data.len() >= self.write_buf.capacity() {
+                self.wait_for_send(data)?;
+                return Ok(());
+            }
+        }
+        self.write_buf.extend_from_slice(data);
+        Ok(())
+    }
+
+    fn flush(&mut self) -> result::Result<(), Self::Error> {
+        if !self.write_buf.is_empty() {
+            // We need to take the memory from self.write_buf to a temporary
+            // buffer to avoid borrowing `*self` as mutable and immutable on
+            // the same time in `self.wait_for_send(&self.write_buf)`.
+            let buffer = mem::take(&mut self.write_buf);
+            self.wait_for_send(&buffer)?;
+        }
+        Ok(())
+    }
+}
diff --git a/rialto/src/error.rs b/rialto/src/error.rs
index 754e554..d2bdbbe 100644
--- a/rialto/src/error.rs
+++ b/rialto/src/error.rs
@@ -16,28 +16,70 @@
 
 use aarch64_paging::MapError;
 use core::{fmt, result};
+use diced_open_dice::DiceError;
+use fdtpci::PciError;
 use hyp::Error as HypervisorError;
+use libfdt::FdtError;
+use service_vm_comm::RequestProcessingError;
+use vmbase::{memory::MemoryTrackerError, virtio::pci};
 
 pub type Result<T> = result::Result<T, Error>;
 
-#[derive(Clone, Debug)]
+type CiboriumSerError = ciborium::ser::Error<virtio_drivers::Error>;
+type CiboriumDeError = ciborium::de::Error<virtio_drivers::Error>;
+
+#[derive(Debug)]
 pub enum Error {
     /// Hypervisor error.
     Hypervisor(HypervisorError),
     /// Failed when attempting to map some range in the page table.
     PageTableMapping(MapError),
-    /// Failed to initialize the logger.
-    LoggerInit,
+    /// Invalid FDT.
+    InvalidFdt(FdtError),
+    /// Invalid PCI.
+    InvalidPci(PciError),
+    /// Failed memory operation.
+    MemoryOperationFailed(MemoryTrackerError),
+    /// Failed to initialize PCI.
+    PciInitializationFailed(pci::PciError),
+    /// Failed to create VirtIO Socket device.
+    VirtIOSocketCreationFailed(virtio_drivers::Error),
+    /// Missing socket device.
+    MissingVirtIOSocketDevice,
+    /// Failed VirtIO driver operation.
+    VirtIODriverOperationFailed(virtio_drivers::Error),
+    /// Failed to serialize.
+    SerializationFailed(CiboriumSerError),
+    /// Failed to deserialize.
+    DeserializationFailed(CiboriumDeError),
+    /// Failed DICE operation.
+    DiceOperationFailed(DiceError),
+    /// Failed to process request.
+    RequestProcessingFailed(RequestProcessingError),
 }
 
 impl fmt::Display for Error {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         match self {
-            Self::Hypervisor(e) => write!(f, "MMIO guard failed: {e}."),
+            Self::Hypervisor(e) => write!(f, "Hypervisor error: {e}."),
             Self::PageTableMapping(e) => {
                 write!(f, "Failed when attempting to map some range in the page table: {e}.")
             }
-            Self::LoggerInit => write!(f, "Failed to initialize the logger."),
+            Self::InvalidFdt(e) => write!(f, "Invalid FDT: {e}"),
+            Self::InvalidPci(e) => write!(f, "Invalid PCI: {e}"),
+            Self::MemoryOperationFailed(e) => write!(f, "Failed memory operation: {e}"),
+            Self::PciInitializationFailed(e) => write!(f, "Failed to initialize PCI: {e}"),
+            Self::VirtIOSocketCreationFailed(e) => {
+                write!(f, "Failed to create VirtIO Socket device: {e}")
+            }
+            Self::MissingVirtIOSocketDevice => write!(f, "Missing VirtIO Socket device."),
+            Self::VirtIODriverOperationFailed(e) => {
+                write!(f, "Failed VirtIO driver operation: {e}")
+            }
+            Self::SerializationFailed(e) => write!(f, "Failed to serialize: {e}"),
+            Self::DeserializationFailed(e) => write!(f, "Failed to deserialize: {e}"),
+            Self::DiceOperationFailed(e) => write!(f, "Failed DICE operation: {e}"),
+            Self::RequestProcessingFailed(e) => write!(f, "Failed to process request: {e}"),
         }
     }
 }
@@ -53,3 +95,51 @@
         Self::PageTableMapping(e)
     }
 }
+
+impl From<FdtError> for Error {
+    fn from(e: FdtError) -> Self {
+        Self::InvalidFdt(e)
+    }
+}
+
+impl From<PciError> for Error {
+    fn from(e: PciError) -> Self {
+        Self::InvalidPci(e)
+    }
+}
+
+impl From<MemoryTrackerError> for Error {
+    fn from(e: MemoryTrackerError) -> Self {
+        Self::MemoryOperationFailed(e)
+    }
+}
+
+impl From<virtio_drivers::Error> for Error {
+    fn from(e: virtio_drivers::Error) -> Self {
+        Self::VirtIODriverOperationFailed(e)
+    }
+}
+
+impl From<CiboriumSerError> for Error {
+    fn from(e: CiboriumSerError) -> Self {
+        Self::SerializationFailed(e)
+    }
+}
+
+impl From<CiboriumDeError> for Error {
+    fn from(e: CiboriumDeError) -> Self {
+        Self::DeserializationFailed(e)
+    }
+}
+
+impl From<DiceError> for Error {
+    fn from(e: DiceError) -> Self {
+        Self::DiceOperationFailed(e)
+    }
+}
+
+impl From<RequestProcessingError> for Error {
+    fn from(e: RequestProcessingError) -> Self {
+        Self::RequestProcessingFailed(e)
+    }
+}
diff --git a/rialto/src/exceptions.rs b/rialto/src/exceptions.rs
index 61f7846..b806b08 100644
--- a/rialto/src/exceptions.rs
+++ b/rialto/src/exceptions.rs
@@ -14,14 +14,37 @@
 
 //! Exception handlers.
 
-use core::arch::asm;
-use vmbase::{console::emergency_write_str, eprintln, power::reboot};
+use vmbase::{
+    console::emergency_write_str,
+    eprintln,
+    exceptions::{ArmException, Esr, HandleExceptionError},
+    logger,
+    memory::{handle_permission_fault, handle_translation_fault},
+    power::reboot,
+    read_sysreg,
+};
+
+fn handle_exception(exception: &ArmException) -> Result<(), HandleExceptionError> {
+    // Handle all translation faults on both read and write, and MMIO guard map
+    // flagged invalid pages or blocks that caused the exception.
+    // Handle permission faults for DBM flagged entries, and flag them as dirty on write.
+    match exception.esr {
+        Esr::DataAbortTranslationFault => handle_translation_fault(exception.far),
+        Esr::DataAbortPermissionFault => handle_permission_fault(exception.far),
+        _ => Err(HandleExceptionError::UnknownException),
+    }
+}
 
 #[no_mangle]
-extern "C" fn sync_exception_current() {
-    emergency_write_str("sync_exception_current\n");
-    print_esr();
-    reboot();
+extern "C" fn sync_exception_current(elr: u64, _spsr: u64) {
+    // Disable logging in exception handler to prevent unsafe writes to UART.
+    let _guard = logger::suppress();
+
+    let exception = ArmException::from_el1_regs();
+    if let Err(e) = handle_exception(&exception) {
+        exception.print("sync_exception_current", e, elr);
+        reboot()
+    }
 }
 
 #[no_mangle]
@@ -71,9 +94,6 @@
 
 #[inline]
 fn print_esr() {
-    let mut esr: u64;
-    unsafe {
-        asm!("mrs {esr}, esr_el1", esr = out(reg) esr);
-    }
+    let esr = read_sysreg!("esr_el1");
     eprintln!("esr={:#08x}", esr);
 }
diff --git a/rialto/src/fdt.rs b/rialto/src/fdt.rs
new file mode 100644
index 0000000..09cdd36
--- /dev/null
+++ b/rialto/src/fdt.rs
@@ -0,0 +1,26 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! High-level FDT functions.
+
+use core::ops::Range;
+use cstr::cstr;
+use libfdt::{Fdt, FdtError};
+
+/// Reads the DICE data range from the given `fdt`.
+pub fn read_dice_range_from(fdt: &Fdt) -> libfdt::Result<Range<usize>> {
+    let node = fdt.node(cstr!("/reserved-memory"))?.ok_or(FdtError::NotFound)?;
+    let node = node.next_compatible(cstr!("google,open-dice"))?.ok_or(FdtError::NotFound)?;
+    node.first_reg()?.try_into()
+}
diff --git a/rialto/src/main.rs b/rialto/src/main.rs
index 03fa107..e705562 100644
--- a/rialto/src/main.rs
+++ b/rialto/src/main.rs
@@ -17,124 +17,224 @@
 #![no_main]
 #![no_std]
 
+mod communication;
 mod error;
 mod exceptions;
+mod fdt;
 
 extern crate alloc;
 
+use crate::communication::VsockStream;
 use crate::error::{Error, Result};
-use aarch64_paging::{
-    idmap::IdMap,
-    paging::{Attributes, MemoryRegion},
-};
-use buddy_system_allocator::LockedHeap;
-use core::ops::Range;
-use hyp::get_hypervisor;
+use crate::fdt::read_dice_range_from;
+use alloc::boxed::Box;
+use bssl_sys::CRYPTO_library_init;
+use ciborium_io::Write;
+use core::num::NonZeroUsize;
+use core::slice;
+use diced_open_dice::{bcc_handover_parse, DiceArtifacts};
+use fdtpci::PciInfo;
+use hyp::{get_mem_sharer, get_mmio_guard};
+use libfdt::FdtError;
 use log::{debug, error, info};
-use vmbase::{layout, main, power::reboot};
+use service_vm_comm::{RequestProcessingError, Response, ServiceVmRequest, VmType};
+use service_vm_fake_chain::service_vm;
+use service_vm_requests::process_request;
+use virtio_drivers::{
+    device::socket::{VsockAddr, VMADDR_CID_HOST},
+    transport::{pci::bus::PciRoot, DeviceType, Transport},
+    Hal,
+};
+use vmbase::{
+    configure_heap,
+    fdt::SwiotlbInfo,
+    layout::{self, crosvm},
+    main,
+    memory::{MemoryTracker, PageTable, MEMORY, PAGE_SIZE, SIZE_128KB},
+    power::reboot,
+    virtio::{
+        pci::{self, PciTransportIterator, VirtIOSocket},
+        HalImpl,
+    },
+};
 
-const SZ_1K: usize = 1024;
-const SZ_4K: usize = 4 * SZ_1K;
-const SZ_64K: usize = 64 * SZ_1K;
-const SZ_1M: usize = 1024 * SZ_1K;
-const SZ_1G: usize = 1024 * SZ_1M;
-
-// Root level is given by the value of TCR_EL1.TG0 and TCR_EL1.T0SZ, set in
-// entry.S. For 4KB granule and 39-bit VA, the root level is 1.
-const PT_ROOT_LEVEL: usize = 1;
-const PT_ASID: usize = 1;
-
-const PROT_DEV: Attributes = Attributes::from_bits_truncate(
-    Attributes::DEVICE_NGNRE.bits() | Attributes::EXECUTE_NEVER.bits(),
-);
-const PROT_RX: Attributes = Attributes::from_bits_truncate(
-    Attributes::NORMAL.bits() | Attributes::NON_GLOBAL.bits() | Attributes::READ_ONLY.bits(),
-);
-const PROT_RO: Attributes = Attributes::from_bits_truncate(
-    Attributes::NORMAL.bits()
-        | Attributes::NON_GLOBAL.bits()
-        | Attributes::READ_ONLY.bits()
-        | Attributes::EXECUTE_NEVER.bits(),
-);
-const PROT_RW: Attributes = Attributes::from_bits_truncate(
-    Attributes::NORMAL.bits() | Attributes::NON_GLOBAL.bits() | Attributes::EXECUTE_NEVER.bits(),
-);
-
-#[global_allocator]
-static HEAP_ALLOCATOR: LockedHeap<32> = LockedHeap::<32>::new();
-
-static mut HEAP: [u8; SZ_64K] = [0; SZ_64K];
-
-fn into_memreg(r: &Range<usize>) -> MemoryRegion {
-    MemoryRegion::new(r.start, r.end)
+fn host_addr() -> VsockAddr {
+    VsockAddr { cid: VMADDR_CID_HOST, port: vm_type().port() }
 }
 
-fn init_heap() {
-    // SAFETY: Allocator set to otherwise unused, static memory.
-    unsafe {
-        HEAP_ALLOCATOR.lock().init(&mut HEAP as *mut u8 as usize, HEAP.len());
+fn vm_type() -> VmType {
+    // Use MMIO support to determine whether the VM is protected.
+    if get_mmio_guard().is_some() {
+        VmType::ProtectedVm
+    } else {
+        VmType::NonProtectedVm
     }
 }
 
-fn init_kernel_pgt(pgt: &mut IdMap) -> Result<()> {
-    // The first 1 GiB of address space is used by crosvm for MMIO.
-    let reg_dev = MemoryRegion::new(0, SZ_1G);
-    let reg_text = into_memreg(&layout::text_range());
-    let reg_rodata = into_memreg(&layout::rodata_range());
-    let reg_scratch = into_memreg(&layout::scratch_range());
-    let reg_stack = into_memreg(&layout::stack_range(40 * SZ_4K));
+fn new_page_table() -> Result<PageTable> {
+    let mut page_table = PageTable::default();
 
-    debug!("Preparing kernel page table.");
-    debug!("  dev:    {}-{}", reg_dev.start(), reg_dev.end());
-    debug!("  text:   {}-{}", reg_text.start(), reg_text.end());
-    debug!("  rodata: {}-{}", reg_rodata.start(), reg_rodata.end());
-    debug!("  scratch:{}-{}", reg_scratch.start(), reg_scratch.end());
-    debug!("  stack:  {}-{}", reg_stack.start(), reg_stack.end());
+    page_table.map_data(&layout::scratch_range().into())?;
+    page_table.map_data(&layout::stack_range(40 * PAGE_SIZE).into())?;
+    page_table.map_code(&layout::text_range().into())?;
+    page_table.map_rodata(&layout::rodata_range().into())?;
+    page_table.map_device(&layout::console_uart_range().into())?;
 
-    pgt.map_range(&reg_dev, PROT_DEV)?;
-    pgt.map_range(&reg_text, PROT_RX)?;
-    pgt.map_range(&reg_rodata, PROT_RO)?;
-    pgt.map_range(&reg_scratch, PROT_RW)?;
-    pgt.map_range(&reg_stack, PROT_RW)?;
-
-    pgt.activate();
-    info!("Activated kernel page table.");
-    Ok(())
+    Ok(page_table)
 }
 
-fn try_init_logger() -> Result<()> {
-    match get_hypervisor().mmio_guard_init() {
-        // pKVM blocks MMIO by default, we need to enable MMIO guard to support logging.
-        Ok(()) => get_hypervisor().mmio_guard_map(vmbase::console::BASE_ADDRESS)?,
-        // MMIO guard enroll is not supported in unprotected VM.
-        Err(hyp::Error::MmioGuardNotsupported) => {}
-        Err(e) => return Err(e.into()),
-    };
-    vmbase::logger::init(log::LevelFilter::Debug).map_err(|_| Error::LoggerInit)
-}
-
-fn try_main() -> Result<()> {
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+/// * The `fdt_addr` must be a valid pointer and points to a valid `Fdt`.
+unsafe fn try_main(fdt_addr: usize) -> Result<()> {
     info!("Welcome to Rialto!");
+    let page_table = new_page_table()?;
 
-    let mut pgt = IdMap::new(PT_ASID, PT_ROOT_LEVEL);
-    init_kernel_pgt(&mut pgt)?;
+    MEMORY.lock().replace(MemoryTracker::new(
+        page_table,
+        crosvm::MEM_START..layout::MAX_VIRT_ADDR,
+        crosvm::MMIO_RANGE,
+        None, // Rialto doesn't have any payload for now.
+    ));
+
+    let fdt_range = MEMORY
+        .lock()
+        .as_mut()
+        .unwrap()
+        .alloc(fdt_addr, NonZeroUsize::new(crosvm::FDT_MAX_SIZE).unwrap())?;
+    // SAFETY: The tracker validated the range to be in main memory, mapped, and not overlap.
+    let fdt = unsafe { slice::from_raw_parts(fdt_range.start as *mut u8, fdt_range.len()) };
+    // We do not need to validate the DT since it is already validated in pvmfw.
+    let fdt = libfdt::Fdt::from_slice(fdt)?;
+
+    let memory_range = fdt.first_memory_range()?;
+    MEMORY.lock().as_mut().unwrap().shrink(&memory_range).map_err(|e| {
+        error!("Failed to use memory range value from DT: {memory_range:#x?}");
+        e
+    })?;
+
+    if let Some(mem_sharer) = get_mem_sharer() {
+        let granule = mem_sharer.granule()?;
+        MEMORY.lock().as_mut().unwrap().init_dynamic_shared_pool(granule).map_err(|e| {
+            error!("Failed to initialize dynamically shared pool.");
+            e
+        })?;
+    } else if let Ok(swiotlb_info) = SwiotlbInfo::new_from_fdt(fdt) {
+        let range = swiotlb_info.fixed_range().ok_or_else(|| {
+            error!("Pre-shared pool range not specified in swiotlb node");
+            Error::from(FdtError::BadValue)
+        })?;
+        MEMORY.lock().as_mut().unwrap().init_static_shared_pool(range).map_err(|e| {
+            error!("Failed to initialize pre-shared pool.");
+            e
+        })?;
+    } else {
+        info!("No MEM_SHARE capability detected or swiotlb found: allocating buffers from heap.");
+        MEMORY.lock().as_mut().unwrap().init_heap_shared_pool().map_err(|e| {
+            error!("Failed to initialize heap-based pseudo-shared pool.");
+            e
+        })?;
+    }
+
+    // Initializes the crypto library before any crypto operations and after the heap is
+    // initialized.
+    // SAFETY: It is safe to call this function multiple times and concurrently.
+    unsafe {
+        CRYPTO_library_init();
+    }
+    let bcc_handover: Box<dyn DiceArtifacts> = match vm_type() {
+        VmType::ProtectedVm => {
+            let dice_range = read_dice_range_from(fdt)?;
+            info!("DICE range: {dice_range:#x?}");
+            // SAFETY: This region was written by pvmfw in its writable_data region. The region
+            // has no overlap with the main memory region and is safe to be mapped as read-only
+            // data.
+            let res = unsafe {
+                MEMORY.lock().as_mut().unwrap().alloc_range_outside_main_memory(&dice_range)
+            };
+            res.map_err(|e| {
+                error!("Failed to use DICE range from DT: {dice_range:#x?}");
+                e
+            })?;
+            let dice_start = dice_range.start as *const u8;
+            // SAFETY: There's no memory overlap and the region is mapped as read-only data.
+            let bcc_handover = unsafe { slice::from_raw_parts(dice_start, dice_range.len()) };
+            Box::new(bcc_handover_parse(bcc_handover)?)
+        }
+        // Currently, a sample DICE data is used for non-protected VMs, as these VMs only run
+        // in tests at the moment.
+        VmType::NonProtectedVm => Box::new(service_vm::fake_service_vm_dice_artifacts()?),
+    };
+
+    let pci_info = PciInfo::from_fdt(fdt)?;
+    debug!("PCI: {pci_info:#x?}");
+    let mut pci_root = pci::initialize(pci_info, MEMORY.lock().as_mut().unwrap())
+        .map_err(Error::PciInitializationFailed)?;
+    debug!("PCI root: {pci_root:#x?}");
+    let socket_device = find_socket_device::<HalImpl>(&mut pci_root)?;
+    debug!("Found socket device: guest cid = {:?}", socket_device.guest_cid());
+
+    let mut vsock_stream = VsockStream::new(socket_device, host_addr())?;
+    while let ServiceVmRequest::Process(req) = vsock_stream.read_request()? {
+        let mut response = process_request(req, bcc_handover.as_ref());
+        // TODO(b/185878400): We don't want to issue a certificate to pVM when the client VM
+        // attestation is unfinished. The following code should be removed once the
+        // verification is completed.
+        if vm_type() == VmType::ProtectedVm
+            && matches!(response, Response::RequestClientVmAttestation(_))
+        {
+            response = Response::Err(RequestProcessingError::OperationUnimplemented);
+        }
+        vsock_stream.write_response(&response)?;
+        vsock_stream.flush()?;
+    }
+    vsock_stream.shutdown()?;
+
     Ok(())
 }
 
+fn find_socket_device<T: Hal>(pci_root: &mut PciRoot) -> Result<VirtIOSocket<T>> {
+    PciTransportIterator::<T>::new(pci_root)
+        .find(|t| DeviceType::Socket == t.device_type())
+        .map(VirtIOSocket::<T>::new)
+        .transpose()
+        .map_err(Error::VirtIOSocketCreationFailed)?
+        .ok_or(Error::MissingVirtIOSocketDevice)
+}
+
+fn try_unshare_all_memory() -> Result<()> {
+    info!("Starting unsharing memory...");
+
+    // No logging after unmapping UART.
+    if let Some(mmio_guard) = get_mmio_guard() {
+        mmio_guard.unmap(vmbase::console::BASE_ADDRESS)?;
+    }
+    // Unshares all memory and deactivates page table.
+    drop(MEMORY.lock().take());
+    Ok(())
+}
+
+fn unshare_all_memory() {
+    if let Err(e) = try_unshare_all_memory() {
+        error!("Failed to unshare the memory: {e}");
+    }
+}
+
 /// Entry point for Rialto.
-pub fn main(_a0: u64, _a1: u64, _a2: u64, _a3: u64) {
-    init_heap();
-    if try_init_logger().is_err() {
-        // Don't log anything if the logger initialization fails.
-        reboot();
-    }
-    match try_main() {
-        Ok(()) => info!("Rialto ends successfully."),
+pub fn main(fdt_addr: u64, _a1: u64, _a2: u64, _a3: u64) {
+    log::set_max_level(log::LevelFilter::Debug);
+    // SAFETY: `fdt_addr` is supposed to be a valid pointer and points to
+    // a valid `Fdt`.
+    match unsafe { try_main(fdt_addr as usize) } {
+        Ok(()) => unshare_all_memory(),
         Err(e) => {
             error!("Rialto failed with {e}");
+            unshare_all_memory();
             reboot()
         }
     }
 }
 
 main!(main);
+configure_heap!(SIZE_128KB);
diff --git a/rialto/tests/test.rs b/rialto/tests/test.rs
index 7048b44..1302bcd 100644
--- a/rialto/tests/test.rs
+++ b/rialto/tests/test.rs
@@ -16,129 +16,314 @@
 
 use android_system_virtualizationservice::{
     aidl::android::system::virtualizationservice::{
-        CpuTopology::CpuTopology, DiskImage::DiskImage, Partition::Partition,
-        PartitionType::PartitionType, VirtualMachineConfig::VirtualMachineConfig,
+        VirtualMachineConfig::VirtualMachineConfig,
         VirtualMachineRawConfig::VirtualMachineRawConfig,
     },
     binder::{ParcelFileDescriptor, ProcessState},
 };
-use anyhow::{anyhow, Context, Error};
+use anyhow::{bail, Context, Result};
+use bssl_avf::{sha256, EcKey, PKey};
+use ciborium::value::Value;
+use client_vm_csr::generate_attestation_key_and_csr;
+use coset::{CborSerializable, CoseMac0, CoseSign};
 use log::info;
+use service_vm_comm::{
+    ClientVmAttestationParams, Csr, CsrPayload, EcdsaP256KeyPair, GenerateCertificateRequestParams,
+    Request, RequestProcessingError, Response, VmType,
+};
+use service_vm_fake_chain::client_vm::{
+    fake_client_vm_dice_artifacts, fake_sub_components, SubComponent,
+};
+use service_vm_manager::ServiceVm;
+use std::fs;
 use std::fs::File;
-use std::io::{self, BufRead, BufReader};
-use std::os::unix::io::FromRawFd;
+use std::io;
 use std::panic;
-use std::thread;
-use std::time::Duration;
-use vmclient::{DeathReason, VmInstance};
+use std::path::PathBuf;
+use std::str::FromStr;
+use vmclient::VmInstance;
+use x509_cert::{
+    certificate::{Certificate, Version},
+    der::{self, asn1, Decode, Encode},
+    name::Name,
+    spki::{AlgorithmIdentifier, ObjectIdentifier, SubjectPublicKeyInfo},
+};
 
-const SIGNED_RIALTO_PATH: &str = "/data/local/tmp/rialto_test/arm64/rialto.bin";
 const UNSIGNED_RIALTO_PATH: &str = "/data/local/tmp/rialto_test/arm64/rialto_unsigned.bin";
 const INSTANCE_IMG_PATH: &str = "/data/local/tmp/rialto_test/arm64/instance.img";
-const INSTANCE_IMG_SIZE: i64 = 1024 * 1024; // 1MB
+const TEST_CERT_CHAIN_PATH: &str = "testdata/rkp_cert_chain.der";
 
 #[test]
-fn boot_rialto_in_protected_vm_successfully() -> Result<(), Error> {
-    boot_rialto_successfully(
-        SIGNED_RIALTO_PATH,
-        true, // protected_vm
-    )
+fn process_requests_in_protected_vm() -> Result<()> {
+    check_processing_requests(VmType::ProtectedVm)
 }
 
 #[test]
-fn boot_rialto_in_unprotected_vm_successfully() -> Result<(), Error> {
-    boot_rialto_successfully(
-        UNSIGNED_RIALTO_PATH,
-        false, // protected_vm
-    )
+fn process_requests_in_non_protected_vm() -> Result<()> {
+    check_processing_requests(VmType::NonProtectedVm)
 }
 
-fn boot_rialto_successfully(rialto_path: &str, protected_vm: bool) -> Result<(), Error> {
-    android_logger::init_once(
-        android_logger::Config::default().with_tag("rialto").with_min_level(log::Level::Debug),
-    );
+fn check_processing_requests(vm_type: VmType) -> Result<()> {
+    let mut vm = start_service_vm(vm_type)?;
 
-    // Redirect panic messages to logcat.
-    panic::set_hook(Box::new(|panic_info| {
-        log::error!("{}", panic_info);
-    }));
+    check_processing_reverse_request(&mut vm)?;
+    let key_pair = check_processing_generating_key_pair_request(&mut vm)?;
+    check_processing_generating_certificate_request(&mut vm, &key_pair.maced_public_key)?;
+    check_attestation_request(&mut vm, &key_pair, vm_type)?;
+    Ok(())
+}
 
-    // We need to start the thread pool for Binder to work properly, especially link_to_death.
-    ProcessState::start_thread_pool();
+fn check_processing_reverse_request(vm: &mut ServiceVm) -> Result<()> {
+    let message = "abc".repeat(500);
+    let request = Request::Reverse(message.as_bytes().to_vec());
 
-    let virtmgr =
-        vmclient::VirtualizationService::new().context("Failed to spawn VirtualizationService")?;
-    let service = virtmgr.connect().context("Failed to connect to VirtualizationService")?;
+    let response = vm.process_request(request)?;
+    info!("Received response: {response:?}.");
 
-    let rialto = File::open(rialto_path).context("Failed to open Rialto kernel binary")?;
-    let console = android_log_fd()?;
-    let log = android_log_fd()?;
+    let expected_response: Vec<u8> = message.as_bytes().iter().rev().cloned().collect();
+    assert_eq!(Response::Reverse(expected_response), response);
+    Ok(())
+}
 
-    let disks = if protected_vm {
-        let instance_img = File::options()
-            .create(true)
-            .read(true)
-            .write(true)
-            .truncate(true)
-            .open(INSTANCE_IMG_PATH)?;
-        let instance_img = ParcelFileDescriptor::new(instance_img);
+fn check_processing_generating_key_pair_request(vm: &mut ServiceVm) -> Result<EcdsaP256KeyPair> {
+    let request = Request::GenerateEcdsaP256KeyPair;
 
-        service
-            .initializeWritablePartition(
-                &instance_img,
-                INSTANCE_IMG_SIZE,
-                PartitionType::ANDROID_VM_INSTANCE,
-            )
-            .context("Failed to initialize instange.img")?;
-        let writable_partitions = vec![Partition {
-            label: "vm-instance".to_owned(),
-            image: Some(instance_img),
-            writable: true,
-        }];
-        vec![DiskImage { image: None, partitions: writable_partitions, writable: true }]
-    } else {
-        vec![]
+    let response = vm.process_request(request)?;
+    info!("Received response: {response:?}.");
+
+    match response {
+        Response::GenerateEcdsaP256KeyPair(key_pair) => {
+            assert_array_has_nonzero(&key_pair.maced_public_key);
+            assert_array_has_nonzero(&key_pair.key_blob);
+            Ok(key_pair)
+        }
+        _ => bail!("Incorrect response type: {response:?}"),
+    }
+}
+
+fn assert_array_has_nonzero(v: &[u8]) {
+    assert!(v.iter().any(|&x| x != 0))
+}
+
+fn check_processing_generating_certificate_request(
+    vm: &mut ServiceVm,
+    maced_public_key: &[u8],
+) -> Result<()> {
+    let params = GenerateCertificateRequestParams {
+        keys_to_sign: vec![maced_public_key.to_vec()],
+        challenge: vec![],
+    };
+    let request = Request::GenerateCertificateRequest(params);
+
+    let response = vm.process_request(request)?;
+    info!("Received response: {response:?}.");
+
+    match response {
+        Response::GenerateCertificateRequest(csr) => check_csr(csr),
+        _ => bail!("Incorrect response type: {response:?}"),
+    }
+}
+
+fn check_attestation_request(
+    vm: &mut ServiceVm,
+    remotely_provisioned_key_pair: &EcdsaP256KeyPair,
+    vm_type: VmType,
+) -> Result<()> {
+    /// The following data was generated randomly with urandom.
+    const CHALLENGE: [u8; 16] = [
+        0x7d, 0x86, 0x58, 0x79, 0x3a, 0x09, 0xdf, 0x1c, 0xa5, 0x80, 0x80, 0x15, 0x2b, 0x13, 0x17,
+        0x5c,
+    ];
+    let dice_artifacts = fake_client_vm_dice_artifacts()?;
+    let attestation_data = generate_attestation_key_and_csr(&CHALLENGE, &dice_artifacts)?;
+    let cert_chain = fs::read(TEST_CERT_CHAIN_PATH)?;
+    // The certificate chain contains several certificates, but we only need the first one.
+    // Parsing the data with trailing data always fails with a `TrailingData` error.
+    let cert_len: usize = match Certificate::from_der(&cert_chain).unwrap_err().kind() {
+        der::ErrorKind::TrailingData { decoded, .. } => decoded.try_into().unwrap(),
+        e => bail!("Unexpected error: {e}"),
     };
 
-    let config = VirtualMachineConfig::RawConfig(VirtualMachineRawConfig {
-        name: String::from("RialtoTest"),
-        kernel: None,
-        initrd: None,
-        params: None,
-        bootloader: Some(ParcelFileDescriptor::new(rialto)),
-        disks,
-        protectedVm: protected_vm,
-        memoryMib: 300,
-        cpuTopology: CpuTopology::ONE_CPU,
-        platformVersion: "~1.0".to_string(),
-        taskProfiles: vec![],
-        gdbPort: 0, // No gdb
-    });
-    let vm = VmInstance::create(service.as_ref(), &config, Some(console), Some(log), None)
-        .context("Failed to create VM")?;
+    // Builds the mock parameters for the client VM attestation.
+    // The `csr` and `remotely_provisioned_key_blob` parameters are extracted from the same
+    // libraries as in production.
+    // The `remotely_provisioned_cert` parameter is an RKP certificate extracted from a test
+    // certificate chain retrieved from RKPD.
+    let params = ClientVmAttestationParams {
+        csr: attestation_data.csr.clone().into_cbor_vec()?,
+        remotely_provisioned_key_blob: remotely_provisioned_key_pair.key_blob.to_vec(),
+        remotely_provisioned_cert: cert_chain[..cert_len].to_vec(),
+    };
+    let request = Request::RequestClientVmAttestation(params);
 
-    vm.start().context("Failed to start VM")?;
+    let response = vm.process_request(request)?;
+    info!("Received response: {response:?}.");
 
-    // Wait for VM to finish, and check that it shut down cleanly.
-    let death_reason = vm
-        .wait_for_death_with_timeout(Duration::from_secs(10))
-        .ok_or_else(|| anyhow!("Timed out waiting for VM exit"))?;
-    assert_eq!(death_reason, DeathReason::Shutdown);
+    match response {
+        Response::RequestClientVmAttestation(certificate) => {
+            // The end-to-end test for non-protected VM attestation works because both the service
+            // VM and the client VM use the same fake DICE chain.
+            assert_eq!(vm_type, VmType::NonProtectedVm);
+            check_certificate_for_client_vm(
+                &certificate,
+                &remotely_provisioned_key_pair.maced_public_key,
+                &attestation_data.csr,
+                &Certificate::from_der(&cert_chain[..cert_len]).unwrap(),
+            )?;
+            Ok(())
+        }
+        Response::Err(RequestProcessingError::InvalidDiceChain) => {
+            // The end-to-end test for protected VM attestation doesn't work because the service VM
+            // compares the fake DICE chain in the CSR with the real DICE chain.
+            // We cannot generate a valid DICE chain with the same payloads up to pvmfw.
+            assert_eq!(vm_type, VmType::ProtectedVm);
+            Ok(())
+        }
+        _ => bail!("Incorrect response type: {response:?}"),
+    }
+}
+
+fn check_vm_components(vm_components: &asn1::SequenceOf<asn1::Any, 4>) -> Result<()> {
+    let expected_components = fake_sub_components();
+    assert_eq!(expected_components.len(), vm_components.len());
+    for (i, expected_component) in expected_components.iter().enumerate() {
+        check_vm_component(vm_components.get(i).unwrap(), expected_component)?;
+    }
+    Ok(())
+}
+
+fn check_vm_component(vm_component: &asn1::Any, expected_component: &SubComponent) -> Result<()> {
+    let vm_component = vm_component.decode_as::<asn1::SequenceOf<asn1::Any, 4>>().unwrap();
+    assert_eq!(4, vm_component.len());
+    let name = vm_component.get(0).unwrap().decode_as::<asn1::Utf8StringRef>().unwrap();
+    assert_eq!(expected_component.name, name.as_ref());
+    let version = vm_component.get(1).unwrap().decode_as::<u64>().unwrap();
+    assert_eq!(expected_component.version, version);
+    let code_hash = vm_component.get(2).unwrap().decode_as::<asn1::OctetString>().unwrap();
+    assert_eq!(expected_component.code_hash, code_hash.as_bytes());
+    let authority_hash = vm_component.get(3).unwrap().decode_as::<asn1::OctetString>().unwrap();
+    assert_eq!(expected_component.authority_hash, authority_hash.as_bytes());
+    Ok(())
+}
+
+fn check_certificate_for_client_vm(
+    certificate: &[u8],
+    maced_public_key: &[u8],
+    csr: &Csr,
+    parent_certificate: &Certificate,
+) -> Result<()> {
+    let cose_mac = CoseMac0::from_slice(maced_public_key)?;
+    let authority_public_key =
+        EcKey::from_cose_public_key_slice(&cose_mac.payload.unwrap()).unwrap();
+    let cert = Certificate::from_der(certificate).unwrap();
+
+    // Checks the certificate signature against the authority public key.
+    const ECDSA_WITH_SHA_256: ObjectIdentifier =
+        ObjectIdentifier::new_unwrap("1.2.840.10045.4.3.2");
+    let expected_algorithm = AlgorithmIdentifier { oid: ECDSA_WITH_SHA_256, parameters: None };
+    assert_eq!(expected_algorithm, cert.signature_algorithm);
+    let tbs_cert = cert.tbs_certificate;
+    let digest = sha256(&tbs_cert.to_der().unwrap()).unwrap();
+    authority_public_key
+        .ecdsa_verify(cert.signature.raw_bytes(), &digest)
+        .expect("Failed to verify the certificate signature with the authority public key");
+
+    // Checks that the certificate's subject public key is equal to the key in the CSR.
+    let cose_sign = CoseSign::from_slice(&csr.signed_csr_payload)?;
+    let csr_payload =
+        cose_sign.payload.as_ref().and_then(|v| CsrPayload::from_cbor_slice(v).ok()).unwrap();
+    let subject_public_key = EcKey::from_cose_public_key_slice(&csr_payload.public_key).unwrap();
+    let expected_spki_data =
+        PKey::try_from(subject_public_key).unwrap().subject_public_key_info().unwrap();
+    let expected_spki = SubjectPublicKeyInfo::from_der(&expected_spki_data).unwrap();
+    assert_eq!(expected_spki, tbs_cert.subject_public_key_info);
+
+    // Checks the certificate extension.
+    const ATTESTATION_EXTENSION_OID: ObjectIdentifier =
+        ObjectIdentifier::new_unwrap("1.3.6.1.4.1.11129.2.1.29.1");
+    let extensions = tbs_cert.extensions.unwrap();
+    assert_eq!(1, extensions.len());
+    let extension = &extensions[0];
+    assert_eq!(ATTESTATION_EXTENSION_OID, extension.extn_id);
+    assert!(!extension.critical);
+    let attestation_ext =
+        asn1::SequenceOf::<asn1::Any, 3>::from_der(extension.extn_value.as_bytes()).unwrap();
+    assert_eq!(3, attestation_ext.len());
+    let challenge = attestation_ext.get(0).unwrap().decode_as::<asn1::OctetString>().unwrap();
+    assert_eq!(csr_payload.challenge, challenge.as_bytes());
+    let is_vm_secure = attestation_ext.get(1).unwrap().decode_as::<bool>().unwrap();
+    assert!(
+        !is_vm_secure,
+        "The VM shouldn't be secure as the last payload added in the test is in Debug mode"
+    );
+    let vm_components =
+        attestation_ext.get(2).unwrap().decode_as::<asn1::SequenceOf<asn1::Any, 4>>().unwrap();
+    check_vm_components(&vm_components)?;
+
+    // Checks other fields on the certificate
+    assert_eq!(Version::V3, tbs_cert.version);
+    assert_eq!(parent_certificate.tbs_certificate.validity, tbs_cert.validity);
+    assert_eq!(
+        Name::from_str("CN=Android Protected Virtual Machine Key").unwrap(),
+        tbs_cert.subject
+    );
+    assert_eq!(parent_certificate.tbs_certificate.subject, tbs_cert.issuer);
 
     Ok(())
 }
 
-fn android_log_fd() -> io::Result<File> {
-    let (reader_fd, writer_fd) = nix::unistd::pipe()?;
-
-    // SAFETY: These are new FDs with no previous owner.
-    let reader = unsafe { File::from_raw_fd(reader_fd) };
-    let writer = unsafe { File::from_raw_fd(writer_fd) };
-
-    thread::spawn(|| {
-        for line in BufReader::new(reader).lines() {
-            info!("{}", line.unwrap());
+/// TODO(b/300625792): Check the CSR with libhwtrust once the CSR is complete.
+fn check_csr(csr: Vec<u8>) -> Result<()> {
+    let mut reader = io::Cursor::new(csr);
+    let csr: Value = ciborium::from_reader(&mut reader)?;
+    match csr {
+        Value::Array(arr) => {
+            assert_eq!(4, arr.len());
         }
+        _ => bail!("Incorrect CSR format: {csr:?}"),
+    }
+    Ok(())
+}
+
+fn start_service_vm(vm_type: VmType) -> Result<ServiceVm> {
+    android_logger::init_once(
+        android_logger::Config::default()
+            .with_tag("rialto")
+            .with_max_level(log::LevelFilter::Debug),
+    );
+    // Redirect panic messages to logcat.
+    panic::set_hook(Box::new(|panic_info| {
+        log::error!("{}", panic_info);
+    }));
+    // We need to start the thread pool for Binder to work properly, especially link_to_death.
+    ProcessState::start_thread_pool();
+    ServiceVm::start_vm(vm_instance(vm_type)?, vm_type)
+}
+
+fn vm_instance(vm_type: VmType) -> Result<VmInstance> {
+    match vm_type {
+        VmType::ProtectedVm => {
+            service_vm_manager::protected_vm_instance(PathBuf::from(INSTANCE_IMG_PATH))
+        }
+        VmType::NonProtectedVm => nonprotected_vm_instance(),
+    }
+}
+
+fn nonprotected_vm_instance() -> Result<VmInstance> {
+    let rialto = File::open(UNSIGNED_RIALTO_PATH).context("Failed to open Rialto kernel binary")?;
+    let config = VirtualMachineConfig::RawConfig(VirtualMachineRawConfig {
+        name: String::from("Non protected rialto"),
+        bootloader: Some(ParcelFileDescriptor::new(rialto)),
+        protectedVm: false,
+        memoryMib: 300,
+        platformVersion: "~1.0".to_string(),
+        ..Default::default()
     });
-    Ok(writer)
+    let console = Some(service_vm_manager::android_log_fd()?);
+    let log = Some(service_vm_manager::android_log_fd()?);
+    let virtmgr = vmclient::VirtualizationService::new().context("Failed to spawn VirtMgr")?;
+    let service = virtmgr.connect().context("Failed to connect to VirtMgr")?;
+    info!("Connected to VirtMgr for service VM");
+    VmInstance::create(service.as_ref(), &config, console, /* consoleIn */ None, log, None)
+        .context("Failed to create VM")
 }
diff --git a/rustfmt.toml b/rustfmt.toml
deleted file mode 120000
index 475ba8f..0000000
--- a/rustfmt.toml
+++ /dev/null
@@ -1 +0,0 @@
-../../../build/soong/scripts/rustfmt.toml
\ No newline at end of file
diff --git a/rustfmt.toml b/rustfmt.toml
new file mode 100644
index 0000000..aaf15f2
--- /dev/null
+++ b/rustfmt.toml
@@ -0,0 +1,10 @@
+# Android Format Style
+# Should be in sync with build/soong/scripts/rustfmt.toml
+
+edition = "2021"
+use_small_heuristics = "Max"
+newline_style = "Unix"
+
+# Local customizations
+wrap_comments = true
+comment_width = 100
diff --git a/service_vm/README.md b/service_vm/README.md
new file mode 100644
index 0000000..3d94f78
--- /dev/null
+++ b/service_vm/README.md
@@ -0,0 +1,45 @@
+# Service VM
+
+The Service VM is a lightweight, bare-metal virtual machine specifically
+designed to run various services for other virtual machines. It fulfills the
+following requirements:
+
+-   Only one instance of the Service VM is allowed to run at any given time.
+-   The *secret* contained within the instance image of the Service VM remains
+    unchanged during updates of both the client VMs and the Service VM.
+
+The secret is an encrypted random array that can only be decrypted by
+[pVM Firmware][pvmfw]. It is incorporated into the [CDI values][cdi] calculation
+of each VM loaded by pVM Firmware to ensure consistent CDI values for the VM
+across all reboots.
+
+[cdi]: https://android.googlesource.com/platform/external/open-dice/+/main/docs/specification.md#CDI-Values
+[pvmfw]: https://android.googlesource.com/platform/packages/modules/Virtualization/+/main/pvmfw/README.md
+
+## RKP VM (Remote Key Provisioning Virtual Machine)
+
+The RKP VM is a key dependency of the Service VM. It is a virtual machine that
+undergoes validation by the [RKP][rkp] Server and acts as a remotely provisioned
+component for verifying the integrity of other virtual machines.
+
+[rkp]: https://source.android.com/docs/core/ota/modular-system/remote-key-provisioning
+
+### RKP VM attestation
+
+The RKP VM is recognized and attested by the RKP server, which acts as a trusted
+entity responsible for verifying the DICE chain of the RKP VM. This verification
+ensures that the RKP VM is operating on a genuine device.
+Additionally, the RKP VM is validated by the pVM Firmware, as part of the
+verified boot process.
+
+### Client VM attestation
+
+Once the RKP VM is successfully attested, it assumes the role of a trusted
+platform to attest client VMs. It leverages its trusted status to validate the
+integrity of the [DICE chain][open-dice] associated with each client VM. This
+validation process verifies that the client VMs are running in the expected
+[Microdroid][microdroid] VM environment, and certifies the payload executed
+within the VM. Currently, only Microdroid VMs are supported.
+
+[open-dice]: https://android.googlesource.com/platform/external/open-dice/+/main/docs/android.md
+[microdroid]: https://android.googlesource.com/platform/packages/modules/Virtualization/+/main/microdroid/README.md
diff --git a/service_vm/client_vm_csr/Android.bp b/service_vm/client_vm_csr/Android.bp
new file mode 100644
index 0000000..e2ac573
--- /dev/null
+++ b/service_vm/client_vm_csr/Android.bp
@@ -0,0 +1,38 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libclient_vm_csr_defaults",
+    crate_name: "client_vm_csr",
+    srcs: ["src/lib.rs"],
+    rustlibs: [
+        "libanyhow",
+        "libcoset",
+        "libdiced_open_dice",
+        "libopenssl",
+        "libservice_vm_comm",
+        "libzeroize",
+    ],
+}
+
+rust_library {
+    name: "libclient_vm_csr",
+    defaults: ["libclient_vm_csr_defaults"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+}
+
+rust_test {
+    name: "libclient_vm_csr.test",
+    defaults: ["libclient_vm_csr_defaults"],
+    test_suites: ["general-tests"],
+    rustlibs: [
+        "libciborium",
+        "libdiced_sample_inputs",
+        "libhwtrust",
+    ],
+}
diff --git a/service_vm/client_vm_csr/TEST_MAPPING b/service_vm/client_vm_csr/TEST_MAPPING
new file mode 100644
index 0000000..5bc06c0
--- /dev/null
+++ b/service_vm/client_vm_csr/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "libclient_vm_csr.test"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/service_vm/client_vm_csr/src/lib.rs b/service_vm/client_vm_csr/src/lib.rs
new file mode 100644
index 0000000..512ecaf
--- /dev/null
+++ b/service_vm/client_vm_csr/src/lib.rs
@@ -0,0 +1,242 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Generate the attestation key and CSR for client VM in the remote
+//! attestation.
+
+use anyhow::{anyhow, Context, Result};
+use coset::{
+    iana, CborSerializable, CoseKey, CoseKeyBuilder, CoseSign, CoseSignBuilder, CoseSignature,
+    CoseSignatureBuilder, HeaderBuilder,
+};
+use diced_open_dice::{derive_cdi_leaf_priv, sign, DiceArtifacts, PrivateKey};
+use openssl::{
+    bn::{BigNum, BigNumContext},
+    ec::{EcGroup, EcKey, EcKeyRef},
+    ecdsa::EcdsaSig,
+    nid::Nid,
+    pkey::Private,
+    sha::sha256,
+};
+use service_vm_comm::{Csr, CsrPayload};
+use zeroize::Zeroizing;
+
+/// Key parameters for the attestation key.
+///
+/// See service_vm/comm/client_vm_csr.cddl for more information about the attestation key.
+const ATTESTATION_KEY_NID: Nid = Nid::X9_62_PRIME256V1; // NIST P-256 curve
+const ATTESTATION_KEY_ALGO: iana::Algorithm = iana::Algorithm::ES256;
+const ATTESTATION_KEY_CURVE: iana::EllipticCurve = iana::EllipticCurve::P_256;
+const ATTESTATION_KEY_AFFINE_COORDINATE_SIZE: i32 = 32;
+
+/// Represents the output of generating the attestation key and CSR for the client VM.
+pub struct ClientVmAttestationData {
+    /// DER-encoded ECPrivateKey to be attested.
+    pub private_key: Zeroizing<Vec<u8>>,
+
+    /// CSR containing client VM information and the public key corresponding to the
+    /// private key to be attested.
+    pub csr: Csr,
+}
+
+/// Generates the attestation key and CSR including the public key to be attested for the
+/// client VM in remote attestation.
+pub fn generate_attestation_key_and_csr(
+    challenge: &[u8],
+    dice_artifacts: &dyn DiceArtifacts,
+) -> Result<ClientVmAttestationData> {
+    let group = EcGroup::from_curve_name(ATTESTATION_KEY_NID)?;
+    let attestation_key = EcKey::generate(&group)?;
+
+    let csr = build_csr(challenge, attestation_key.as_ref(), dice_artifacts)?;
+    let private_key = attestation_key.private_key_to_der()?;
+    Ok(ClientVmAttestationData { private_key: Zeroizing::new(private_key), csr })
+}
+
+fn build_csr(
+    challenge: &[u8],
+    attestation_key: &EcKeyRef<Private>,
+    dice_artifacts: &dyn DiceArtifacts,
+) -> Result<Csr> {
+    // Builds CSR Payload to be signed.
+    let public_key =
+        to_cose_public_key(attestation_key)?.to_vec().context("Failed to serialize public key")?;
+    let csr_payload = CsrPayload { public_key, challenge: challenge.to_vec() };
+    let csr_payload = csr_payload.into_cbor_vec()?;
+
+    // Builds signed CSR Payload.
+    let cdi_leaf_priv = derive_cdi_leaf_priv(dice_artifacts)?;
+    let signed_csr_payload = build_signed_data(csr_payload, &cdi_leaf_priv, attestation_key)?
+        .to_vec()
+        .context("Failed to serialize signed CSR payload")?;
+
+    // Builds CSR.
+    let dice_cert_chain = dice_artifacts.bcc().ok_or(anyhow!("bcc is none"))?.to_vec();
+    Ok(Csr { dice_cert_chain, signed_csr_payload })
+}
+
+fn build_signed_data(
+    payload: Vec<u8>,
+    cdi_leaf_priv: &PrivateKey,
+    attestation_key: &EcKeyRef<Private>,
+) -> Result<CoseSign> {
+    let cdi_leaf_sig_headers = build_signature_headers(iana::Algorithm::EdDSA);
+    let attestation_key_sig_headers = build_signature_headers(ATTESTATION_KEY_ALGO);
+    let aad = &[];
+    let signed_data = CoseSignBuilder::new()
+        .payload(payload)
+        .try_add_created_signature(cdi_leaf_sig_headers, aad, |message| {
+            sign(message, cdi_leaf_priv.as_array()).map(|v| v.to_vec())
+        })?
+        .try_add_created_signature(attestation_key_sig_headers, aad, |message| {
+            ecdsa_sign(message, attestation_key)
+        })?
+        .build();
+    Ok(signed_data)
+}
+
+/// Builds a signature with headers filled with the provided algorithm.
+/// The signature data will be filled later when building the signed data.
+fn build_signature_headers(alg: iana::Algorithm) -> CoseSignature {
+    let protected = HeaderBuilder::new().algorithm(alg).build();
+    CoseSignatureBuilder::new().protected(protected).build()
+}
+
+fn ecdsa_sign(message: &[u8], key: &EcKeyRef<Private>) -> Result<Vec<u8>> {
+    let digest = sha256(message);
+    // Passes the digest to `ECDSA_do_sign` as recommended in the spec:
+    // https://commondatastorage.googleapis.com/chromium-boringssl-docs/ecdsa.h.html#ECDSA_do_sign
+    let sig = EcdsaSig::sign::<Private>(&digest, key)?;
+    Ok(sig.to_der()?)
+}
+
+fn get_affine_coordinates(key: &EcKeyRef<Private>) -> Result<(Vec<u8>, Vec<u8>)> {
+    let mut ctx = BigNumContext::new()?;
+    let mut x = BigNum::new()?;
+    let mut y = BigNum::new()?;
+    key.public_key().affine_coordinates_gfp(key.group(), &mut x, &mut y, &mut ctx)?;
+    let x = x.to_vec_padded(ATTESTATION_KEY_AFFINE_COORDINATE_SIZE)?;
+    let y = y.to_vec_padded(ATTESTATION_KEY_AFFINE_COORDINATE_SIZE)?;
+    Ok((x, y))
+}
+
+fn to_cose_public_key(key: &EcKeyRef<Private>) -> Result<CoseKey> {
+    let (x, y) = get_affine_coordinates(key)?;
+    Ok(CoseKeyBuilder::new_ec2_pub_key(ATTESTATION_KEY_CURVE, x, y)
+        .algorithm(ATTESTATION_KEY_ALGO)
+        .build())
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use anyhow::bail;
+    use ciborium::Value;
+    use coset::{iana::EnumI64, Label};
+    use hwtrust::{dice, session::Session};
+    use openssl::pkey::Public;
+
+    /// The following data was generated randomly with urandom.
+    const CHALLENGE: [u8; 16] = [
+        0xb3, 0x66, 0xfa, 0x72, 0x92, 0x32, 0x2c, 0xd4, 0x99, 0xcb, 0x00, 0x1f, 0x0e, 0xe0, 0xc7,
+        0x41,
+    ];
+
+    #[test]
+    fn csr_and_private_key_have_correct_format() -> Result<()> {
+        let dice_artifacts = diced_sample_inputs::make_sample_bcc_and_cdis()?;
+
+        let ClientVmAttestationData { private_key, csr } =
+            generate_attestation_key_and_csr(&CHALLENGE, &dice_artifacts)?;
+        let ec_private_key = EcKey::private_key_from_der(&private_key)?;
+        let cose_sign = CoseSign::from_slice(&csr.signed_csr_payload).unwrap();
+        let aad = &[];
+
+        // Checks CSR payload.
+        let csr_payload =
+            cose_sign.payload.as_ref().and_then(|v| CsrPayload::from_cbor_slice(v).ok()).unwrap();
+        let public_key = to_cose_public_key(&ec_private_key)?.to_vec().unwrap();
+        let expected_csr_payload = CsrPayload { challenge: CHALLENGE.to_vec(), public_key };
+        assert_eq!(expected_csr_payload, csr_payload);
+
+        // Checks the first signature is signed with CDI_Leaf_Priv.
+        let session = Session::default();
+        let chain = dice::Chain::from_cbor(&session, &csr.dice_cert_chain)?;
+        let public_key = chain.leaf().subject_public_key();
+        cose_sign
+            .verify_signature(0, aad, |signature, message| public_key.verify(signature, message))?;
+
+        // Checks the second signature is signed with attestation key.
+        let attestation_public_key = CoseKey::from_slice(&csr_payload.public_key).unwrap();
+        let ec_public_key = to_ec_public_key(&attestation_public_key)?;
+        cose_sign.verify_signature(1, aad, |signature, message| {
+            ecdsa_verify(signature, message, &ec_public_key)
+        })?;
+
+        // Verifies that private key and the public key form a valid key pair.
+        let message = b"test message";
+        let signature = ecdsa_sign(message, &ec_private_key)?;
+        ecdsa_verify(&signature, message, &ec_public_key)?;
+
+        Ok(())
+    }
+
+    fn ecdsa_verify(
+        signature: &[u8],
+        message: &[u8],
+        ec_public_key: &EcKeyRef<Public>,
+    ) -> Result<()> {
+        let sig = EcdsaSig::from_der(signature)?;
+        let digest = sha256(message);
+        if sig.verify(&digest, ec_public_key)? {
+            Ok(())
+        } else {
+            bail!("Signature does not match")
+        }
+    }
+
+    fn to_ec_public_key(cose_key: &CoseKey) -> Result<EcKey<Public>> {
+        check_ec_key_params(cose_key)?;
+        let group = EcGroup::from_curve_name(ATTESTATION_KEY_NID)?;
+        let x = get_label_value_as_bignum(cose_key, Label::Int(iana::Ec2KeyParameter::X.to_i64()))?;
+        let y = get_label_value_as_bignum(cose_key, Label::Int(iana::Ec2KeyParameter::Y.to_i64()))?;
+        let key = EcKey::from_public_key_affine_coordinates(&group, &x, &y)?;
+        key.check_key()?;
+        Ok(key)
+    }
+
+    fn check_ec_key_params(cose_key: &CoseKey) -> Result<()> {
+        assert_eq!(coset::KeyType::Assigned(iana::KeyType::EC2), cose_key.kty);
+        assert_eq!(Some(coset::Algorithm::Assigned(ATTESTATION_KEY_ALGO)), cose_key.alg);
+        let crv = get_label_value(cose_key, Label::Int(iana::Ec2KeyParameter::Crv.to_i64()))?;
+        assert_eq!(&Value::from(ATTESTATION_KEY_CURVE.to_i64()), crv);
+        Ok(())
+    }
+
+    fn get_label_value_as_bignum(key: &CoseKey, label: Label) -> Result<BigNum> {
+        get_label_value(key, label)?
+            .as_bytes()
+            .map(|v| BigNum::from_slice(&v[..]).unwrap())
+            .ok_or_else(|| anyhow!("Value not a bstr."))
+    }
+
+    fn get_label_value(key: &CoseKey, label: Label) -> Result<&Value> {
+        Ok(&key
+            .params
+            .iter()
+            .find(|(k, _)| k == &label)
+            .ok_or_else(|| anyhow!("Label {:?} not found", label))?
+            .1)
+    }
+}
diff --git a/service_vm/comm/Android.bp b/service_vm/comm/Android.bp
new file mode 100644
index 0000000..23ff202
--- /dev/null
+++ b/service_vm/comm/Android.bp
@@ -0,0 +1,77 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libservice_vm_comm_defaults",
+    crate_name: "service_vm_comm",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+}
+
+rust_library_rlib {
+    name: "libservice_vm_comm_nostd",
+    defaults: ["libservice_vm_comm_defaults"],
+    no_stdlibs: true,
+    stdlibs: [
+        "libcore.rust_sysroot",
+    ],
+    rustlibs: [
+        "libbssl_avf_error_nostd",
+        "libciborium_nostd",
+        "libcbor_util_nostd",
+        "libcoset_nostd",
+        "libder_nostd",
+        "liblog_rust_nostd",
+        "libserde_nostd",
+    ],
+}
+
+rust_library {
+    name: "libservice_vm_comm",
+    defaults: ["libservice_vm_comm_defaults"],
+    rustlibs: [
+        "libbssl_avf_error",
+        "libciborium",
+        "libcbor_util",
+        "libcoset",
+        "liblog_rust",
+        "libserde",
+    ],
+    features: [
+        "std",
+    ],
+}
+
+rust_defaults {
+    name: "libservice_vm_comm_test_defaults",
+    crate_name: "diced_open_dice_test",
+    srcs: ["tests/*.rs"],
+    test_suites: ["general-tests"],
+    prefer_rlib: true,
+    rustlibs: [
+        "libdiced_sample_inputs",
+        "libdiced_open_dice",
+    ],
+}
+
+rust_test {
+    name: "libservice_vm_comm.test",
+    defaults: ["libservice_vm_comm_test_defaults"],
+    rustlibs: [
+        "libservice_vm_comm",
+    ],
+}
+
+rust_test {
+    name: "libservice_vm_comm_nostd.test",
+    defaults: ["libservice_vm_comm_test_defaults"],
+    rustlibs: [
+        "libservice_vm_comm_nostd",
+    ],
+}
diff --git a/service_vm/comm/TEST_MAPPING b/service_vm/comm/TEST_MAPPING
new file mode 100644
index 0000000..e677ba2
--- /dev/null
+++ b/service_vm/comm/TEST_MAPPING
@@ -0,0 +1,12 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "libservice_vm_comm.test"
+    },
+    {
+      "name" : "libservice_vm_comm_nostd.test"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/service_vm/comm/src/client_vm_csr.cddl b/service_vm/comm/src/client_vm_csr.cddl
new file mode 100644
index 0000000..bbc709a
--- /dev/null
+++ b/service_vm/comm/src/client_vm_csr.cddl
@@ -0,0 +1,62 @@
+; CDDL for the CSR sent from the client VM to the RKP VM for pVM remote attestation.
+
+Csr = [
+    DiceCertChain,      ; The DICE chain containing measurement of the client VM. See
+                        ; keymint/generateCertificateRequestV2.cddl for the DiceCertChain
+                        ; definition.
+    SignedData,
+]
+
+; COSE_Sign [RFC9052 s4.1]
+SignedData = [
+    protected: {},            ; The signing algorithms are specified in each signature
+                              ; separately.
+    unprotected: {},
+    payload: bstr .cbor CsrPayload,
+    Signatures,
+]
+
+CsrPayload = [                    ; CBOR Array defining the payload for CSR
+   challenge: bstr .size (0..64), ; The challenge is provided by the client server.
+                                  ; It will be included in the certificate chain in the
+                                  ; attestation result, serving as proof of the freshness
+                                  ; of the result.
+   PublicKey,                     ; COSE_Key encoded EC P-256 public key [ RFC9053 s7.1.1 ]
+                                  ; to be attested. See keymint/PublicKey.cddl for the
+                                  ; definition, the test flag `-70000` is never used.
+]
+
+Signatures = [
+    dice_cdi_leaf_signature: COSE_Signature_Dice_Cdi_Leaf,
+    attestation_key_signature: COSE_Signature_Attestation_Key,
+]
+
+; COSE_Signature [RFC9052 s4.1]
+COSE_Signature_Dice_Cdi_Leaf = [
+    protected: bstr .cbor { 1: AlgorithmEdDSA },
+    unprotected: {},
+    signature: bstr,                         ; Ed25519(CDI_Leaf_Priv, SigStruct)
+]
+
+; COSE_Signature [RFC9052 s4.1]
+COSE_Signature_Attestation_Key = [
+    protected: bstr .cbor { 1: AlgorithmES256 },
+    unprotected: {},
+    signature: bstr,                         ; ECDSA(PrivateKey, SigStruct)
+]
+
+; Sig_structure for SignedData [ RFC9052 s4.4 ]
+SigStruct = {
+    context: "Signature",
+    external_aad: bstr .size 0,
+    payload: bstr .cbor CsrPayload,
+}
+
+; ASN.1 DER-encoded EC P-256 ECPrivateKey [ RFC 5915 s3 ]:
+; ECPrivateKey ::= SEQUENCE {
+;     version        INTEGER { ecPrivkeyVer1(1) } (ecPrivkeyVer1),
+;     privateKey     OCTET STRING,
+;     parameters [0] ECParameters {{ NamedCurve }} OPTIONAL,
+;     publicKey  [1] BIT STRING OPTIONAL
+;}
+PrivateKey = bstr
diff --git a/service_vm/comm/src/csr.rs b/service_vm/comm/src/csr.rs
new file mode 100644
index 0000000..a87d28f
--- /dev/null
+++ b/service_vm/comm/src/csr.rs
@@ -0,0 +1,101 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains the structs related to the CSR (Certificate Signing Request)
+//! sent from the client VM to the service VM for attestation.
+
+use alloc::vec;
+use alloc::vec::Vec;
+use cbor_util::{cbor_value_type, value_to_bytes};
+use ciborium::Value;
+use coset::{self, CborSerializable, CoseError};
+
+/// Represents a CSR sent from the client VM to the service VM for attestation.
+///
+/// See client_vm_csr.cddl for the definition of the CSR.
+#[derive(Clone, Debug, Eq, PartialEq)]
+pub struct Csr {
+    /// The DICE certificate chain of the client VM.
+    pub dice_cert_chain: Vec<u8>,
+
+    /// The signed CSR payload in COSE_Sign structure, which includes two signatures:
+    /// - one by CDI_Leaf_Priv of the client VM's DICE chain,
+    /// - another by the private key corresponding to the public key.
+    pub signed_csr_payload: Vec<u8>,
+}
+
+impl Csr {
+    /// Serializes this object to a CBOR-encoded vector.
+    pub fn into_cbor_vec(self) -> coset::Result<Vec<u8>> {
+        let value = Value::Array(vec![
+            Value::Bytes(self.dice_cert_chain),
+            Value::Bytes(self.signed_csr_payload),
+        ]);
+        value.to_vec()
+    }
+
+    /// Creates an object instance from the provided CBOR-encoded slice.
+    pub fn from_cbor_slice(data: &[u8]) -> coset::Result<Self> {
+        let value = Value::from_slice(data)?;
+        let Value::Array(mut arr) = value else {
+            return Err(CoseError::UnexpectedItem(cbor_value_type(&value), "array"));
+        };
+        if arr.len() != 2 {
+            return Err(CoseError::UnexpectedItem("array", "array with 2 items"));
+        }
+        Ok(Self {
+            signed_csr_payload: value_to_bytes(arr.remove(1), "signed_csr_payload")?,
+            dice_cert_chain: value_to_bytes(arr.remove(0), "dice_cert_chain")?,
+        })
+    }
+}
+
+/// Represents the data to be signed and sent from the client VM to the service VM
+/// for attestation.
+///
+/// It will be signed by both CDI_Leaf_Priv of the client VM's DICE chain and
+/// the private key corresponding to the public key to be attested.
+#[derive(Clone, Debug, Eq, PartialEq)]
+pub struct CsrPayload {
+    /// COSE_Key encoded EC P-256 public key to be attested.
+    pub public_key: Vec<u8>,
+
+    /// A random array with a length between 0 and 64.
+    /// It will be included in the certificate chain in the attestation result,
+    /// serving as proof of the freshness of the result.
+    pub challenge: Vec<u8>,
+}
+
+impl CsrPayload {
+    /// Serializes this object to a CBOR-encoded vector.
+    pub fn into_cbor_vec(self) -> coset::Result<Vec<u8>> {
+        let value = Value::Array(vec![Value::Bytes(self.public_key), Value::Bytes(self.challenge)]);
+        value.to_vec()
+    }
+
+    /// Creates an object instance from the provided CBOR-encoded slice.
+    pub fn from_cbor_slice(data: &[u8]) -> coset::Result<Self> {
+        let value = Value::from_slice(data)?;
+        let Value::Array(mut arr) = value else {
+            return Err(CoseError::UnexpectedItem(cbor_value_type(&value), "array"));
+        };
+        if arr.len() != 2 {
+            return Err(CoseError::UnexpectedItem("array", "array with 2 items"));
+        }
+        Ok(Self {
+            challenge: value_to_bytes(arr.remove(1), "challenge")?,
+            public_key: value_to_bytes(arr.remove(0), "public_key")?,
+        })
+    }
+}
diff --git a/service_vm/comm/src/lib.rs b/service_vm/comm/src/lib.rs
new file mode 100644
index 0000000..bb85a26
--- /dev/null
+++ b/service_vm/comm/src/lib.rs
@@ -0,0 +1,31 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This library contains the communication protocol used between the host
+//! and the service VM.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+extern crate alloc;
+
+mod csr;
+mod message;
+mod vsock;
+
+pub use csr::{Csr, CsrPayload};
+pub use message::{
+    ClientVmAttestationParams, EcdsaP256KeyPair, GenerateCertificateRequestParams, Request,
+    RequestProcessingError, Response, ServiceVmRequest,
+};
+pub use vsock::VmType;
diff --git a/service_vm/comm/src/message.rs b/service_vm/comm/src/message.rs
new file mode 100644
index 0000000..80a9608
--- /dev/null
+++ b/service_vm/comm/src/message.rs
@@ -0,0 +1,218 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains the requests and responses definitions exchanged
+//! between the host and the service VM.
+
+use alloc::vec::Vec;
+use core::fmt;
+use log::error;
+use serde::{Deserialize, Serialize};
+
+type MacedPublicKey = Vec<u8>;
+
+/// The main request type to be sent to the service VM.
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub enum ServiceVmRequest {
+    /// A request to be processed by the service VM.
+    ///
+    /// Each request has a corresponding response item.
+    Process(Request),
+
+    /// Shuts down the service VM. No response is expected from it.
+    Shutdown,
+}
+
+/// Represents a process request to be sent to the service VM.
+///
+/// Each request has a corresponding response item.
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub enum Request {
+    /// Reverse the order of the bytes in the provided byte array.
+    /// Currently this is only used for testing.
+    Reverse(Vec<u8>),
+
+    /// Generates a new ECDSA P-256 key pair that can be attested by the remote
+    /// server.
+    GenerateEcdsaP256KeyPair,
+
+    /// Creates a certificate signing request to be sent to the
+    /// provisioning server.
+    GenerateCertificateRequest(GenerateCertificateRequestParams),
+
+    /// Requests the service VM to attest the client VM and issue a certificate
+    /// if the attestation succeeds.
+    RequestClientVmAttestation(ClientVmAttestationParams),
+}
+
+/// Represents the params passed to `Request::RequestClientVmAttestation`.
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct ClientVmAttestationParams {
+    /// The CBOR-encoded CSR signed by the CDI_Leaf_Priv of the client VM's DICE chain
+    /// and the private key to be attested.
+    /// See client_vm_csr.cddl for the definition of the CSR.
+    pub csr: Vec<u8>,
+
+    /// The key blob retrieved from RKPD by virtualizationservice.
+    pub remotely_provisioned_key_blob: Vec<u8>,
+
+    /// The leaf certificate of the certificate chain retrieved from RKPD by
+    /// virtualizationservice.
+    ///
+    /// This certificate is a DER-encoded X.509 certificate that includes the remotely
+    /// provisioned public key.
+    pub remotely_provisioned_cert: Vec<u8>,
+}
+
+/// Represents a response to a request sent to the service VM.
+///
+/// Each response corresponds to a specific request.
+#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum Response {
+    /// Reverse the order of the bytes in the provided byte array.
+    Reverse(Vec<u8>),
+
+    /// Returns the new ECDSA P-256 key pair.
+    GenerateEcdsaP256KeyPair(EcdsaP256KeyPair),
+
+    /// Returns a CBOR Certificate Signing Request (Csr) serialized into a byte array.
+    GenerateCertificateRequest(Vec<u8>),
+
+    /// Returns a certificate covering the public key to be attested in the provided CSR.
+    /// The certificate is signed by the remotely provisioned private key and also
+    /// includes an extension that describes the attested client VM.
+    RequestClientVmAttestation(Vec<u8>),
+
+    /// Encountered an error during the request processing.
+    Err(RequestProcessingError),
+}
+
+/// Errors related to request processing.
+#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub enum RequestProcessingError {
+    /// An error happened during the interaction with BoringSSL.
+    BoringSslError(bssl_avf_error::Error),
+
+    /// An error happened during the interaction with coset.
+    CosetError,
+
+    /// An unexpected internal error occurred.
+    InternalError,
+
+    /// Any key to sign lacks a valid MAC. Maps to `STATUS_INVALID_MAC`.
+    InvalidMac,
+
+    /// No payload found in a key to sign.
+    KeyToSignHasEmptyPayload,
+
+    /// An error happened when serializing to/from a `Value`.
+    CborValueError,
+
+    /// The DICE chain of the service VM is missing.
+    MissingDiceChain,
+
+    /// Failed to decrypt the remotely provisioned key blob.
+    FailedToDecryptKeyBlob,
+
+    /// The requested operation has not been implemented.
+    OperationUnimplemented,
+
+    /// An error happened during the DER encoding/decoding.
+    DerError,
+
+    /// The DICE chain from the client VM is invalid.
+    InvalidDiceChain,
+}
+
+impl fmt::Display for RequestProcessingError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::BoringSslError(e) => {
+                write!(f, "An error happened during the interaction with BoringSSL: {e}")
+            }
+            Self::CosetError => write!(f, "Encountered an error with coset"),
+            Self::InternalError => write!(f, "An unexpected internal error occurred"),
+            Self::InvalidMac => write!(f, "A key to sign lacks a valid MAC."),
+            Self::KeyToSignHasEmptyPayload => write!(f, "No payload found in a key to sign."),
+            Self::CborValueError => {
+                write!(f, "An error happened when serializing to/from a CBOR Value.")
+            }
+            Self::MissingDiceChain => write!(f, "The DICE chain of the service VM is missing"),
+            Self::FailedToDecryptKeyBlob => {
+                write!(f, "Failed to decrypt the remotely provisioned key blob")
+            }
+            Self::OperationUnimplemented => {
+                write!(f, "The requested operation has not been implemented")
+            }
+            Self::DerError => {
+                write!(f, "An error happened during the DER encoding/decoding")
+            }
+            Self::InvalidDiceChain => {
+                write!(f, "The DICE chain from the client VM is invalid")
+            }
+        }
+    }
+}
+
+impl From<bssl_avf_error::Error> for RequestProcessingError {
+    fn from(e: bssl_avf_error::Error) -> Self {
+        Self::BoringSslError(e)
+    }
+}
+
+impl From<coset::CoseError> for RequestProcessingError {
+    fn from(e: coset::CoseError) -> Self {
+        error!("Coset error: {e}");
+        Self::CosetError
+    }
+}
+
+impl From<ciborium::value::Error> for RequestProcessingError {
+    fn from(e: ciborium::value::Error) -> Self {
+        error!("CborValueError: {e}");
+        Self::CborValueError
+    }
+}
+
+#[cfg(not(feature = "std"))]
+impl From<der::Error> for RequestProcessingError {
+    fn from(e: der::Error) -> Self {
+        error!("DER encoding/decoding error: {e}");
+        Self::DerError
+    }
+}
+
+/// Represents the params passed to GenerateCertificateRequest
+#[derive(Clone, Debug, Serialize, Deserialize)]
+pub struct GenerateCertificateRequestParams {
+    /// Contains the set of keys to certify.
+    pub keys_to_sign: Vec<MacedPublicKey>,
+
+    /// challenge contains a byte strong from the provisioning server which will be
+    /// included in the signed data of the CSR structure.
+    /// The supported sizes is between 0 and 64 bytes, inclusive.
+    pub challenge: Vec<u8>,
+}
+
+/// Represents an ECDSA P-256 key pair.
+#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
+pub struct EcdsaP256KeyPair {
+    /// Contains a CBOR-encoded public key specified in:
+    ///
+    /// hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/MacedPublicKey.aidl
+    pub maced_public_key: MacedPublicKey,
+
+    /// Contains a handle to the private key.
+    pub key_blob: Vec<u8>,
+}
diff --git a/service_vm/comm/src/vsock.rs b/service_vm/comm/src/vsock.rs
new file mode 100644
index 0000000..7f7cf25
--- /dev/null
+++ b/service_vm/comm/src/vsock.rs
@@ -0,0 +1,47 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Vsock setup shared between the host and the service VM.
+
+const PROTECTED_VM_PORT: u32 = 5679;
+const NON_PROTECTED_VM_PORT: u32 = 5680;
+
+/// VM Type.
+#[derive(Clone, Copy, Debug, PartialEq, Eq)]
+pub enum VmType {
+    /// Protected VM.
+    ProtectedVm,
+
+    /// NonProtectev VM.
+    NonProtectedVm,
+}
+
+impl VmType {
+    /// Returns the port number used for the vsock communication between
+    /// the host and the service VM.
+    pub fn port(&self) -> u32 {
+        match self {
+            Self::ProtectedVm => PROTECTED_VM_PORT,
+            Self::NonProtectedVm => NON_PROTECTED_VM_PORT,
+        }
+    }
+
+    /// Returns whether it is a protected VM.
+    pub fn is_protected(&self) -> bool {
+        match self {
+            Self::ProtectedVm => true,
+            Self::NonProtectedVm => false,
+        }
+    }
+}
diff --git a/service_vm/comm/tests/api_test.rs b/service_vm/comm/tests/api_test.rs
new file mode 100644
index 0000000..44a3ef9
--- /dev/null
+++ b/service_vm/comm/tests/api_test.rs
@@ -0,0 +1,49 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+use diced_open_dice::DiceArtifacts;
+use service_vm_comm::{Csr, CsrPayload};
+
+/// The following test data are generated with urandom
+const DATA1: [u8; 32] = [
+    0x8b, 0x09, 0xc0, 0x7e, 0x20, 0x3c, 0xa2, 0x11, 0x7e, 0x7f, 0x0b, 0xdd, 0x2b, 0x68, 0x98, 0xb0,
+    0x2b, 0x34, 0xb5, 0x63, 0x39, 0x01, 0x90, 0x06, 0xaf, 0x5f, 0xdd, 0xb7, 0x81, 0xca, 0xc7, 0x46,
+];
+const DATA2: [u8; 16] = [
+    0x6c, 0xb9, 0x39, 0x86, 0x9b, 0x2f, 0x12, 0xd8, 0x45, 0x92, 0x57, 0x44, 0x65, 0xce, 0x94, 0x63,
+];
+
+#[test]
+fn csr_payload_cbor_serialization() {
+    let csr_payload = CsrPayload { public_key: DATA1.to_vec(), challenge: DATA2.to_vec() };
+    let expected_csr_payload = csr_payload.clone();
+    let cbor_vec = csr_payload.into_cbor_vec().unwrap();
+    let deserialized_csr_payload = CsrPayload::from_cbor_slice(&cbor_vec).unwrap();
+
+    assert_eq!(expected_csr_payload, deserialized_csr_payload);
+}
+
+#[test]
+fn csr_cbor_serialization() {
+    let dice_artifacts = diced_sample_inputs::make_sample_bcc_and_cdis().unwrap();
+    let dice_cert_chain = dice_artifacts.bcc().unwrap().to_vec();
+    let csr = Csr { signed_csr_payload: DATA1.to_vec(), dice_cert_chain };
+    let expected_csr = csr.clone();
+    let cbor_vec = csr.into_cbor_vec().unwrap();
+    let deserialized_csr = Csr::from_cbor_slice(&cbor_vec).unwrap();
+
+    assert_eq!(expected_csr, deserialized_csr);
+}
diff --git a/service_vm/fake_chain/Android.bp b/service_vm/fake_chain/Android.bp
new file mode 100644
index 0000000..7735aac
--- /dev/null
+++ b/service_vm/fake_chain/Android.bp
@@ -0,0 +1,59 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libservice_vm_fake_chain_defaults",
+    crate_name: "service_vm_fake_chain",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    visibility: [
+        "//packages/modules/Virtualization/rialto:__subpackages__",
+    ],
+    prefer_rlib: true,
+    rustlibs: [
+        "libcstr",
+    ],
+}
+
+rust_library {
+    name: "libservice_vm_fake_chain",
+    defaults: ["libservice_vm_fake_chain_defaults"],
+    features: [
+        "std",
+    ],
+    rustlibs: [
+        "libciborium",
+        "libcoset",
+        "libdiced_open_dice",
+        "liblog_rust",
+        "libmicrodroid_kernel_hashes",
+    ],
+}
+
+rust_library_rlib {
+    name: "libservice_vm_fake_chain_nostd",
+    defaults: ["libservice_vm_fake_chain_defaults"],
+    rustlibs: [
+        "libciborium_nostd",
+        "libcoset_nostd",
+        "libdiced_open_dice_nostd",
+        "liblog_rust_nostd",
+    ],
+
+}
diff --git a/service_vm/fake_chain/src/client_vm.rs b/service_vm/fake_chain/src/client_vm.rs
new file mode 100644
index 0000000..44ea898
--- /dev/null
+++ b/service_vm/fake_chain/src/client_vm.rs
@@ -0,0 +1,181 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//! Provides functions to build fake DICE artifacts for client VM in tests.
+
+use crate::service_vm;
+use alloc::vec;
+use alloc::vec::Vec;
+use ciborium::{cbor, value::Value};
+use core::result;
+use coset::CborSerializable;
+use cstr::cstr;
+use diced_open_dice::{
+    hash, retry_bcc_format_config_descriptor, retry_bcc_main_flow, Config, DiceArtifacts,
+    DiceConfigValues, DiceError, DiceMode, InputValues, OwnedDiceArtifacts, Result, HASH_SIZE,
+    HIDDEN_SIZE,
+};
+use log::error;
+use microdroid_kernel_hashes::{INITRD_DEBUG_HASH, KERNEL_HASH};
+
+type CborResult<T> = result::Result<T, ciborium::value::Error>;
+
+/// All the following data are generated with urandom.
+const CODE_HASH_PAYLOAD: [u8; HASH_SIZE] = [
+    0x08, 0x78, 0xc2, 0x5b, 0xe7, 0xea, 0x3d, 0x62, 0x70, 0x22, 0xd9, 0x1c, 0x4f, 0x3c, 0x2e, 0x2f,
+    0x0f, 0x97, 0xa4, 0x6f, 0x6d, 0xd5, 0xe6, 0x4a, 0x6d, 0xbe, 0x34, 0x2e, 0x56, 0x04, 0xaf, 0xef,
+    0x74, 0x3f, 0xec, 0xb8, 0x44, 0x11, 0xf4, 0x2f, 0x05, 0xb2, 0x06, 0xa3, 0x0e, 0x75, 0xb7, 0x40,
+    0x9a, 0x4c, 0x58, 0xab, 0x96, 0xe7, 0x07, 0x97, 0x07, 0x86, 0x5c, 0xa1, 0x42, 0x12, 0xf0, 0x34,
+];
+const AUTHORITY_HASH_PAYLOAD: [u8; HASH_SIZE] = [
+    0xc7, 0x97, 0x5b, 0xa9, 0x9e, 0xbf, 0x0b, 0xeb, 0xe7, 0x7f, 0x69, 0x8f, 0x8e, 0xcf, 0x04, 0x7d,
+    0x2c, 0x0f, 0x4d, 0xbe, 0xcb, 0xf5, 0xf1, 0x4c, 0x1d, 0x1c, 0xb7, 0x44, 0xdf, 0xf8, 0x40, 0x90,
+    0x09, 0x65, 0xab, 0x01, 0x34, 0x3e, 0xc2, 0xc4, 0xf7, 0xa2, 0x3a, 0x5c, 0x4e, 0x76, 0x4f, 0x42,
+    0xa8, 0x6c, 0xc9, 0xf1, 0x7b, 0x12, 0x80, 0xa4, 0xef, 0xa2, 0x4d, 0x72, 0xa1, 0x21, 0xe2, 0x47,
+];
+const APK1_CODE_HASH: &[u8] = &[
+    0x41, 0x92, 0x0d, 0xd0, 0xf5, 0x60, 0xe3, 0x69, 0x26, 0x7f, 0xb8, 0xbc, 0x12, 0x3a, 0xd1, 0x95,
+    0x1d, 0xb8, 0x9a, 0x9c, 0x3a, 0x3f, 0x01, 0xbf, 0xa8, 0xd9, 0x6d, 0xe9, 0x90, 0x30, 0x1d, 0x0b,
+];
+const APK1_AUTHORITY_HASH: &[u8] = &[
+    0xe3, 0xd9, 0x1c, 0xf5, 0x6f, 0xee, 0x73, 0x40, 0x3d, 0x95, 0x59, 0x67, 0xea, 0x5d, 0x01, 0xfd,
+    0x25, 0x9d, 0x5c, 0x88, 0x94, 0x3a, 0xc6, 0xd7, 0xa9, 0xdc, 0x4c, 0x60, 0x81, 0xbe, 0x2b, 0x74,
+];
+const APEX1_CODE_HASH: &[u8] = &[
+    0x52, 0x93, 0x2b, 0xb0, 0x8d, 0xec, 0xdf, 0x54, 0x1f, 0x5c, 0x10, 0x9d, 0x17, 0xce, 0x7f, 0xac,
+    0xb0, 0x2b, 0xe2, 0x99, 0x05, 0x7d, 0xa3, 0x9b, 0xa6, 0x3e, 0xf9, 0x99, 0xa2, 0xea, 0xd4, 0xd9,
+];
+const APEX1_AUTHORITY_HASH: &[u8] = &[
+    0xd1, 0xfc, 0x3d, 0x5f, 0xa0, 0x5f, 0x02, 0xd0, 0x83, 0x9b, 0x0e, 0x32, 0xc2, 0x27, 0x09, 0x12,
+    0xcc, 0xfc, 0x42, 0xf6, 0x0d, 0xf4, 0x7d, 0xc8, 0x80, 0x1a, 0x64, 0x25, 0xa7, 0xfa, 0x4a, 0x37,
+];
+
+#[allow(missing_docs)]
+#[derive(Debug, Clone, Eq, PartialEq)]
+pub struct SubComponent {
+    pub name: String,
+    pub version: u64,
+    pub code_hash: Vec<u8>,
+    pub authority_hash: Vec<u8>,
+}
+
+impl SubComponent {
+    fn to_value(&self) -> CborResult<Value> {
+        Ok(cbor!({
+           1 => self.name,
+           2 => self.version,
+           3 => Value::Bytes(self.code_hash.clone()),
+           4 => Value::Bytes(self.authority_hash.clone()),
+        })?)
+    }
+}
+
+/// Generates fake DICE artifacts for client VM with a DICE chain up to the certificate
+/// describing the Microdroid payload.
+///
+/// The fake DICE chain has the following nodes:
+/// Root public key -> pvmfw certificate -> Microdroid kernel certificate
+/// -> Microdroid payload certificate
+pub fn fake_client_vm_dice_artifacts() -> Result<OwnedDiceArtifacts> {
+    // Client VM DICE chain has the same prefix as the service VM DICE chain up to
+    // the pvmfw entry.
+    let (cdi_values, dice_chain) = service_vm::fake_dice_artifacts_up_to_pvmfw()?;
+
+    // Adds an entry describing the Microdroid kernel.
+    let config_values = DiceConfigValues {
+        component_name: Some(cstr!("vm_entry")),
+        component_version: Some(12),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    // The Microdroid kernel is signed with the same key as the one used for the service VM,
+    // so the authority hash is the same.
+    let authority_hash = service_vm::AUTHORITY_HASH_SERVICE_VM;
+    let input_values = InputValues::new(
+        kernel_code_hash()?,
+        Config::Descriptor(config_descriptor.as_slice()),
+        authority_hash,
+        DiceMode::kDiceModeDebug,
+        [0; HIDDEN_SIZE], // No hidden.
+    );
+    let dice_artifacts = retry_bcc_main_flow(
+        &cdi_values.cdi_attest,
+        &cdi_values.cdi_seal,
+        &dice_chain,
+        &input_values,
+    )
+    .map_err(|e| {
+        error!("Failed to run the Microdroid kernel BCC main flow: {e}");
+        e
+    })?;
+
+    // Adds an entry describing the Microdroid payload.
+    let config_descriptor = fake_microdroid_payload_config_descriptor().map_err(|e| {
+        error!("Failed to generate config descriptor for Microdroid: {e}");
+        DiceError::InvalidInput
+    })?;
+    let input_values = InputValues::new(
+        CODE_HASH_PAYLOAD,
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_PAYLOAD,
+        DiceMode::kDiceModeDebug,
+        [0u8; HIDDEN_SIZE], // hidden
+    );
+    retry_bcc_main_flow(
+        dice_artifacts.cdi_attest(),
+        dice_artifacts.cdi_seal(),
+        dice_artifacts.bcc().unwrap(),
+        &input_values,
+    )
+    .map_err(|e| {
+        error!("Failed to run the Microdroid payload BCC main flow: {e}");
+        e
+    })
+}
+
+fn fake_microdroid_payload_config_descriptor() -> CborResult<Vec<u8>> {
+    let mut map = Vec::new();
+    map.push((cbor!(-70002)?, cbor!("Microdroid payload")?));
+    map.push((cbor!(-71000)?, cbor!("/config_path")?));
+    let components =
+        fake_sub_components().iter().map(|c| c.to_value()).collect::<CborResult<_>>()?;
+    map.push((cbor!(-71002)?, Value::Array(components)));
+    Ok(Value::Map(map).to_vec().unwrap())
+}
+
+/// Generates a list of fake subcomponents as the Microdroid payload.
+pub fn fake_sub_components() -> Vec<SubComponent> {
+    vec![
+        SubComponent {
+            name: "apk:com.android.apk.apk1".to_string(),
+            version: 1,
+            code_hash: APK1_CODE_HASH.to_vec(),
+            authority_hash: APK1_AUTHORITY_HASH.to_vec(),
+        },
+        SubComponent {
+            name: "apex:com.android.apex.apex1".to_string(),
+            version: 1,
+            code_hash: APEX1_CODE_HASH.to_vec(),
+            authority_hash: APEX1_AUTHORITY_HASH.to_vec(),
+        },
+    ]
+}
+
+fn kernel_code_hash() -> Result<[u8; HASH_SIZE]> {
+    let code_hash = [KERNEL_HASH, INITRD_DEBUG_HASH].concat();
+    hash(&code_hash)
+}
diff --git a/service_vm/fake_chain/src/lib.rs b/service_vm/fake_chain/src/lib.rs
new file mode 100644
index 0000000..a5ab828
--- /dev/null
+++ b/service_vm/fake_chain/src/lib.rs
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//! Provides functions to build a test chain for non-protected rialto and tests.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+extern crate alloc;
+
+// `client_vm` builds DICE artifacts related to Microdroid, which is not relevant
+// to the nostd build used in rialto.
+#[cfg(feature = "std")]
+pub mod client_vm;
+pub mod service_vm;
diff --git a/service_vm/fake_chain/src/service_vm.rs b/service_vm/fake_chain/src/service_vm.rs
new file mode 100644
index 0000000..9bd831d
--- /dev/null
+++ b/service_vm/fake_chain/src/service_vm.rs
@@ -0,0 +1,176 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//! Provides functions to build fake DICE artifacts for non-protected rialto used in
+//! end-to-end tests.
+
+use alloc::vec;
+use alloc::vec::Vec;
+use ciborium::value::Value;
+use coset::{
+    iana::{self, EnumI64},
+    Algorithm, AsCborValue, CborSerializable, CoseKey, KeyOperation, KeyType, Label,
+};
+use cstr::cstr;
+use diced_open_dice::{
+    derive_cdi_private_key_seed, keypair_from_seed, retry_bcc_format_config_descriptor,
+    retry_bcc_main_flow, retry_dice_main_flow, CdiValues, Config, DiceConfigValues, DiceError,
+    DiceMode, InputValues, OwnedDiceArtifacts, Result, CDI_SIZE, HASH_SIZE, HIDDEN_SIZE,
+};
+use log::error;
+
+/// All the following data are generated with urandom.
+const UDS: [u8; CDI_SIZE] = [
+    0x1d, 0xa5, 0xea, 0x90, 0x47, 0xfc, 0xb5, 0xf6, 0x47, 0x12, 0xd3, 0x65, 0x9c, 0xf2, 0x00, 0xe0,
+    0x06, 0xf7, 0xe8, 0x9e, 0x2f, 0xd0, 0x94, 0x7f, 0xc9, 0x9a, 0x9d, 0x40, 0xf7, 0xce, 0x13, 0x21,
+];
+const CODE_HASH_PVMFW: [u8; HASH_SIZE] = [
+    0x16, 0x48, 0xf2, 0x55, 0x53, 0x23, 0xdd, 0x15, 0x2e, 0x83, 0x38, 0xc3, 0x64, 0x38, 0x63, 0x26,
+    0x0f, 0xcf, 0x5b, 0xd1, 0x3a, 0xd3, 0x40, 0x3e, 0x23, 0xf8, 0x34, 0x4c, 0x6d, 0xa2, 0xbe, 0x25,
+    0x1c, 0xb0, 0x29, 0xe8, 0xc3, 0xfb, 0xb8, 0x80, 0xdc, 0xb1, 0xd2, 0xb3, 0x91, 0x4d, 0xd3, 0xfb,
+    0x01, 0x0f, 0xe4, 0xe9, 0x46, 0xa2, 0xc0, 0x26, 0x57, 0x5a, 0xba, 0x30, 0xf7, 0x15, 0x98, 0x14,
+];
+const AUTHORITY_HASH_PVMFW: [u8; HASH_SIZE] = [
+    0xf9, 0x00, 0x9d, 0xc2, 0x59, 0x09, 0xe0, 0xb6, 0x98, 0xbd, 0xe3, 0x97, 0x4a, 0xcb, 0x3c, 0xe7,
+    0x6b, 0x24, 0xc3, 0xe4, 0x98, 0xdd, 0xa9, 0x6a, 0x41, 0x59, 0x15, 0xb1, 0x23, 0xe6, 0xc8, 0xdf,
+    0xfb, 0x52, 0xb4, 0x52, 0xc1, 0xb9, 0x61, 0xdd, 0xbc, 0x5b, 0x37, 0x0e, 0x12, 0x12, 0xb2, 0xfd,
+    0xc1, 0x09, 0xb0, 0xcf, 0x33, 0x81, 0x4c, 0xc6, 0x29, 0x1b, 0x99, 0xea, 0xae, 0xfd, 0xaa, 0x0d,
+];
+const HIDDEN_PVMFW: [u8; HIDDEN_SIZE] = [
+    0xa2, 0x01, 0xd0, 0xc0, 0xaa, 0x75, 0x3c, 0x06, 0x43, 0x98, 0x6c, 0xc3, 0x5a, 0xb5, 0x5f, 0x1f,
+    0x0f, 0x92, 0x44, 0x3b, 0x0e, 0xd4, 0x29, 0x75, 0xe3, 0xdb, 0x36, 0xda, 0xc8, 0x07, 0x97, 0x4d,
+    0xff, 0xbc, 0x6a, 0xa4, 0x8a, 0xef, 0xc4, 0x7f, 0xf8, 0x61, 0x7d, 0x51, 0x4d, 0x2f, 0xdf, 0x7e,
+    0x8c, 0x3d, 0xa3, 0xfc, 0x63, 0xd4, 0xd4, 0x74, 0x8a, 0xc4, 0x14, 0x45, 0x83, 0x6b, 0x12, 0x7e,
+];
+const CODE_HASH_SERVICE_VM: [u8; HASH_SIZE] = [
+    0xa4, 0x0c, 0xcb, 0xc1, 0xbf, 0xfa, 0xcc, 0xfd, 0xeb, 0xf4, 0xfc, 0x43, 0x83, 0x7f, 0x46, 0x8d,
+    0xd8, 0xd8, 0x14, 0xc1, 0x96, 0x14, 0x1f, 0x6e, 0xb3, 0xa0, 0xd9, 0x56, 0xb3, 0xbf, 0x2f, 0xfa,
+    0x88, 0x70, 0x11, 0x07, 0x39, 0xa4, 0xd2, 0xa9, 0x6b, 0x18, 0x28, 0xe8, 0x29, 0x20, 0x49, 0x0f,
+    0xbb, 0x8d, 0x08, 0x8c, 0xc6, 0x54, 0xe9, 0x71, 0xd2, 0x7e, 0xa4, 0xfe, 0x58, 0x7f, 0xd3, 0xc7,
+];
+pub(crate) const AUTHORITY_HASH_SERVICE_VM: [u8; HASH_SIZE] = [
+    0xb2, 0x69, 0x05, 0x48, 0x56, 0xb5, 0xfa, 0x55, 0x6f, 0xac, 0x56, 0xd9, 0x02, 0x35, 0x2b, 0xaa,
+    0x4c, 0xba, 0x28, 0xdd, 0x82, 0x3a, 0x86, 0xf5, 0xd4, 0xc2, 0xf1, 0xf9, 0x35, 0x7d, 0xe4, 0x43,
+    0x13, 0xbf, 0xfe, 0xd3, 0x36, 0xd8, 0x1c, 0x12, 0x78, 0x5c, 0x9c, 0x3e, 0xf6, 0x66, 0xef, 0xab,
+    0x3d, 0x0f, 0x89, 0xa4, 0x6f, 0xc9, 0x72, 0xee, 0x73, 0x43, 0x02, 0x8a, 0xef, 0xbc, 0x05, 0x98,
+];
+const HIDDEN_SERVICE_VM: [u8; HIDDEN_SIZE] = [
+    0x5b, 0x3f, 0xc9, 0x6b, 0xe3, 0x95, 0x59, 0x40, 0x5e, 0x64, 0xe5, 0x64, 0x3f, 0xfd, 0x21, 0x09,
+    0x9d, 0xf3, 0xcd, 0xc7, 0xa4, 0x2a, 0xe2, 0x97, 0xdd, 0xe2, 0x4f, 0xb0, 0x7d, 0x7e, 0xf5, 0x8e,
+    0xd6, 0x4d, 0x84, 0x25, 0x54, 0x41, 0x3f, 0x8f, 0x78, 0x64, 0x1a, 0x51, 0x27, 0x9d, 0x55, 0x8a,
+    0xe9, 0x90, 0x35, 0xab, 0x39, 0x80, 0x4b, 0x94, 0x40, 0x84, 0xa2, 0xfd, 0x73, 0xeb, 0x35, 0x7a,
+];
+
+fn ed25519_public_key_to_cbor_value(public_key: &[u8]) -> Result<Value> {
+    let key = CoseKey {
+        kty: KeyType::Assigned(iana::KeyType::OKP),
+        alg: Some(Algorithm::Assigned(iana::Algorithm::EdDSA)),
+        key_ops: vec![KeyOperation::Assigned(iana::KeyOperation::Verify)].into_iter().collect(),
+        params: vec![
+            (
+                Label::Int(iana::Ec2KeyParameter::Crv.to_i64()),
+                iana::EllipticCurve::Ed25519.to_i64().into(),
+            ),
+            (Label::Int(iana::Ec2KeyParameter::X.to_i64()), Value::Bytes(public_key.to_vec())),
+        ],
+        ..Default::default()
+    };
+    key.to_cbor_value().map_err(|e| {
+        error!("Failed to serialize the key to CBOR data: {e}");
+        DiceError::InvalidInput
+    })
+}
+
+/// Generates a fake DICE artifacts with a DICE chain up to the certificate describing pvmfw.
+///
+/// The fake DICE chain has the following nodes:
+/// Root public key -> pvmfw certificate
+pub(crate) fn fake_dice_artifacts_up_to_pvmfw() -> Result<(CdiValues, Vec<u8>)> {
+    let private_key_seed = derive_cdi_private_key_seed(&UDS).map_err(|e| {
+        error!("Failed to derive private key seed: {e}");
+        e
+    })?;
+
+    // Gets the root public key in DICE chain.
+    let (public_key, _) = keypair_from_seed(private_key_seed.as_array()).map_err(|e| {
+        error!("Failed to generate key pair: {e}");
+        e
+    })?;
+    let ed25519_public_key_value = ed25519_public_key_to_cbor_value(&public_key)?;
+
+    // Gets the pvmfw certificate to as the root certificate of DICE chain.
+    let config_values = DiceConfigValues {
+        component_name: Some(cstr!("Protected VM firmware")),
+        component_version: Some(1),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    let input_values = InputValues::new(
+        CODE_HASH_PVMFW,
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_PVMFW,
+        DiceMode::kDiceModeDebug,
+        HIDDEN_PVMFW,
+    );
+    let (cdi_values, cert) = retry_dice_main_flow(&UDS, &UDS, &input_values).map_err(|e| {
+        error!("Failed to run first main flow: {e}");
+        e
+    })?;
+    let dice_chain = Value::Array(vec![
+        ed25519_public_key_value,
+        Value::from_slice(&cert).map_err(|e| {
+            error!("Deserialize root DICE certificate failed: {e}");
+            DiceError::InvalidInput
+        })?,
+    ]);
+    let dice_chain = dice_chain.to_vec().map_err(|e| {
+        error!("Failed to serialize the DICE chain to CBOR data: {e}");
+        DiceError::InvalidInput
+    })?;
+    Ok((cdi_values, dice_chain))
+}
+
+/// Generates fake DICE artifacts for service VM with a DICE chain up to the certificate
+/// describing service VM.
+///
+/// The fake DICE chain has the following nodes:
+/// Root public key -> pvmfw certificate -> service VM certificate
+///
+/// The fake DICE chain is solely used in non-protected rialto for testing
+/// purposes.
+pub fn fake_service_vm_dice_artifacts() -> Result<OwnedDiceArtifacts> {
+    let (cdi_values, dice_chain) = fake_dice_artifacts_up_to_pvmfw()?;
+    let config_values = DiceConfigValues {
+        component_name: Some(cstr!("vm_entry")),
+        component_version: Some(12),
+        resettable: true,
+        ..Default::default()
+    };
+    let config_descriptor = retry_bcc_format_config_descriptor(&config_values)?;
+    let input_values = InputValues::new(
+        CODE_HASH_SERVICE_VM,
+        Config::Descriptor(config_descriptor.as_slice()),
+        AUTHORITY_HASH_SERVICE_VM,
+        DiceMode::kDiceModeDebug,
+        HIDDEN_SERVICE_VM,
+    );
+    retry_bcc_main_flow(&cdi_values.cdi_attest, &cdi_values.cdi_seal, &dice_chain, &input_values)
+        .map_err(|e| {
+            error!("Failed to run the service VM BCC main flow: {e}");
+            e
+        })
+}
diff --git a/service_vm/kernel/Android.bp b/service_vm/kernel/Android.bp
new file mode 100644
index 0000000..3817495
--- /dev/null
+++ b/service_vm/kernel/Android.bp
@@ -0,0 +1,32 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+python_binary_host {
+    name: "extract_microdroid_kernel_hashes",
+    srcs: ["extract_microdroid_kernel_hashes.py"],
+}
+
+genrule {
+    name: "microdroid_kernel_hashes_rs",
+    srcs: [":microdroid_kernel"],
+    out: ["lib.rs"],
+    tools: [
+        "extract_microdroid_kernel_hashes",
+        "avbtool",
+    ],
+    cmd: "$(location extract_microdroid_kernel_hashes) $(location avbtool) $(in) > $(out)",
+}
+
+rust_library_rlib {
+    name: "libmicrodroid_kernel_hashes",
+    srcs: [":microdroid_kernel_hashes_rs"],
+    crate_name: "microdroid_kernel_hashes",
+    prefer_rlib: true,
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
+}
diff --git a/service_vm/kernel/extract_microdroid_kernel_hashes.py b/service_vm/kernel/extract_microdroid_kernel_hashes.py
new file mode 100644
index 0000000..148e8be
--- /dev/null
+++ b/service_vm/kernel/extract_microdroid_kernel_hashes.py
@@ -0,0 +1,73 @@
+"""Extracts the following hashes from the AVB footer of Microdroid's kernel:
+
+- kernel hash
+- initrd_normal hash
+- initrd_debug hash
+
+The hashes are written to stdout as a Rust file.
+
+In unsupportive environments such as x86, when the kernel is just an empty file,
+the output Rust file has the same hash constant fields for compatibility
+reasons, but all of them are empty.
+"""
+#!/usr/bin/env python3
+
+import sys
+import subprocess
+from typing import Dict
+
+PARTITION_NAME_BOOT = 'boot'
+PARTITION_NAME_INITRD_NORMAL = 'initrd_normal'
+PARTITION_NAME_INITRD_DEBUG = 'initrd_debug'
+
+def main(args):
+    """Main function."""
+    avbtool = args[0]
+    kernel_image_path = args[1]
+    hashes = collect_hashes(avbtool, kernel_image_path)
+
+    print("//! This file is generated by extract_microdroid_kernel_hashes.py.")
+    print("//! It contains the hashes of the kernel and initrds.\n")
+    print("#![no_std]\n#![allow(missing_docs)]\n")
+
+    # Microdroid's kernel is just an empty file in unsupportive environments
+    # such as x86, in this case the hashes should be empty.
+    if hashes.keys() != {PARTITION_NAME_BOOT,
+                         PARTITION_NAME_INITRD_NORMAL,
+                         PARTITION_NAME_INITRD_DEBUG}:
+        print("/// The kernel is empty, no hashes are available.")
+        hashes[PARTITION_NAME_BOOT] = ""
+        hashes[PARTITION_NAME_INITRD_NORMAL] = ""
+        hashes[PARTITION_NAME_INITRD_DEBUG] = ""
+
+    print("pub const KERNEL_HASH: &[u8] = &["
+          f"{format_hex_string(hashes[PARTITION_NAME_BOOT])}];\n")
+    print("pub const INITRD_NORMAL_HASH: &[u8] = &["
+          f"{format_hex_string(hashes[PARTITION_NAME_INITRD_NORMAL])}];\n")
+    print("pub const INITRD_DEBUG_HASH: &[u8] = &["
+          f"{format_hex_string(hashes[PARTITION_NAME_INITRD_DEBUG])}];")
+
+def collect_hashes(avbtool: str, kernel_image_path: str) -> Dict[str, str]:
+    """Collects the hashes from the AVB footer of the kernel image."""
+    hashes = {}
+    with subprocess.Popen(
+        [avbtool, 'print_partition_digests', '--image', kernel_image_path],
+        stdout=subprocess.PIPE, stderr=subprocess.STDOUT) as proc:
+        stdout, _ = proc.communicate()
+        for line in stdout.decode("utf-8").split("\n"):
+            line = line.replace(" ", "").split(":")
+            if len(line) == 2:
+                partition_name, hash_ = line
+                hashes[partition_name] = hash_
+    return hashes
+
+def format_hex_string(hex_string: str) -> str:
+    """Formats a hex string into a Rust array."""
+    assert len(hex_string) % 2 == 0, \
+          "Hex string must have even length: " + hex_string
+    return ", ".join(["\n0x" + hex_string[i:i+2] if i % 32 == 0
+                       else "0x" + hex_string[i:i+2]
+                       for i in range(0, len(hex_string), 2)])
+
+if __name__ == '__main__':
+    main(sys.argv[1:])
diff --git a/service_vm/manager/Android.bp b/service_vm/manager/Android.bp
new file mode 100644
index 0000000..6e186a5
--- /dev/null
+++ b/service_vm/manager/Android.bp
@@ -0,0 +1,26 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_library {
+    name: "libservice_vm_manager",
+    crate_name: "service_vm_manager",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    rustlibs: [
+        "android.system.virtualizationservice-rust",
+        "libanyhow",
+        "libciborium",
+        "liblazy_static",
+        "liblog_rust",
+        "libnix",
+        "libservice_vm_comm",
+        "libvmclient",
+        "libvsock",
+    ],
+    apex_available: [
+        "com.android.virt",
+    ],
+}
diff --git a/service_vm/manager/src/lib.rs b/service_vm/manager/src/lib.rs
new file mode 100644
index 0000000..8dedec5
--- /dev/null
+++ b/service_vm/manager/src/lib.rs
@@ -0,0 +1,261 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains the functions to start, stop and communicate with the
+//! Service VM.
+
+use android_system_virtualizationservice::{
+    aidl::android::system::virtualizationservice::{
+        CpuTopology::CpuTopology, DiskImage::DiskImage,
+        IVirtualizationService::IVirtualizationService, Partition::Partition,
+        PartitionType::PartitionType, VirtualMachineConfig::VirtualMachineConfig,
+        VirtualMachineRawConfig::VirtualMachineRawConfig,
+    },
+    binder::ParcelFileDescriptor,
+};
+use anyhow::{anyhow, ensure, Context, Result};
+use lazy_static::lazy_static;
+use log::{info, warn};
+use service_vm_comm::{Request, Response, ServiceVmRequest, VmType};
+use std::fs::{File, OpenOptions};
+use std::io::{self, BufRead, BufReader, BufWriter, Write};
+use std::os::unix::io::FromRawFd;
+use std::path::{Path, PathBuf};
+use std::sync::{Condvar, Mutex, MutexGuard};
+use std::thread;
+use std::time::Duration;
+use vmclient::{DeathReason, VmInstance};
+use vsock::{VsockListener, VsockStream, VMADDR_CID_HOST};
+
+const VIRT_DATA_DIR: &str = "/data/misc/apexdata/com.android.virt";
+const RIALTO_PATH: &str = "/apex/com.android.virt/etc/rialto.bin";
+const INSTANCE_IMG_NAME: &str = "service_vm_instance.img";
+const INSTANCE_IMG_SIZE_BYTES: i64 = 1 << 20; // 1MB
+const MEMORY_MB: i32 = 300;
+const WRITE_BUFFER_CAPACITY: usize = 512;
+const READ_TIMEOUT: Duration = Duration::from_secs(10);
+const WRITE_TIMEOUT: Duration = Duration::from_secs(10);
+
+lazy_static! {
+    static ref SERVICE_VM_STATE: State = State::default();
+}
+
+/// The running state of the Service VM.
+#[derive(Debug, Default)]
+struct State {
+    is_running: Mutex<bool>,
+    stopped: Condvar,
+}
+
+impl State {
+    fn wait_until_no_service_vm_running(&self) -> Result<MutexGuard<'_, bool>> {
+        // The real timeout can be longer than 10 seconds since the time to acquire
+        // is_running mutex is not counted in the 10 seconds.
+        let (guard, wait_result) = self
+            .stopped
+            .wait_timeout_while(
+                self.is_running.lock().unwrap(),
+                Duration::from_secs(10),
+                |&mut is_running| is_running,
+            )
+            .unwrap();
+        ensure!(
+            !wait_result.timed_out(),
+            "Timed out while waiting for the running service VM to stop."
+        );
+        Ok(guard)
+    }
+
+    fn notify_service_vm_shutdown(&self) {
+        let mut is_running_guard = self.is_running.lock().unwrap();
+        *is_running_guard = false;
+        self.stopped.notify_one();
+    }
+}
+
+/// Service VM.
+pub struct ServiceVm {
+    vsock_stream: VsockStream,
+    /// VmInstance will be dropped when ServiceVm goes out of scope, which will kill the VM.
+    vm: VmInstance,
+}
+
+impl ServiceVm {
+    /// Starts the service VM and returns its instance.
+    /// The same instance image is used for different VMs.
+    /// At any given time,  only one service should be running. If a service VM is
+    /// already running, this function will start the service VM once the running one
+    /// shuts down.
+    pub fn start() -> Result<Self> {
+        let mut is_running_guard = SERVICE_VM_STATE.wait_until_no_service_vm_running()?;
+
+        let instance_img_path = Path::new(VIRT_DATA_DIR).join(INSTANCE_IMG_NAME);
+        let vm = protected_vm_instance(instance_img_path)?;
+
+        let vm = Self::start_vm(vm, VmType::ProtectedVm)?;
+        *is_running_guard = true;
+        Ok(vm)
+    }
+
+    /// Starts the given VM instance and sets up the vsock connection with it.
+    /// Returns a `ServiceVm` instance.
+    /// This function is exposed for testing.
+    pub fn start_vm(vm: VmInstance, vm_type: VmType) -> Result<Self> {
+        // Sets up the vsock server on the host.
+        let vsock_listener = VsockListener::bind_with_cid_port(VMADDR_CID_HOST, vm_type.port())?;
+
+        // Starts the service VM.
+        vm.start().context("Failed to start service VM")?;
+        info!("Service VM started");
+
+        // Accepts the connection from the service VM.
+        // TODO(b/299427101): Introduce a timeout for the accept.
+        let (vsock_stream, peer_addr) = vsock_listener.accept().context("Failed to accept")?;
+        info!("Accepted connection {:?}", vsock_stream);
+        ensure!(
+            peer_addr.cid() == u32::try_from(vm.cid()).unwrap(),
+            "The CID of the peer address {} doesn't match the service VM CID {}",
+            peer_addr,
+            vm.cid()
+        );
+        vsock_stream.set_read_timeout(Some(READ_TIMEOUT))?;
+        vsock_stream.set_write_timeout(Some(WRITE_TIMEOUT))?;
+
+        Ok(Self { vsock_stream, vm })
+    }
+
+    /// Processes the request in the service VM.
+    pub fn process_request(&mut self, request: Request) -> Result<Response> {
+        self.write_request(&ServiceVmRequest::Process(request))?;
+        self.read_response()
+    }
+
+    /// Sends the request to the service VM.
+    fn write_request(&mut self, request: &ServiceVmRequest) -> Result<()> {
+        let mut buffer = BufWriter::with_capacity(WRITE_BUFFER_CAPACITY, &mut self.vsock_stream);
+        ciborium::into_writer(request, &mut buffer)?;
+        buffer.flush().context("Failed to flush the buffer")?;
+        info!("Sent request to the service VM.");
+        Ok(())
+    }
+
+    /// Reads the response from the service VM.
+    fn read_response(&mut self) -> Result<Response> {
+        let response: Response = ciborium::from_reader(&mut self.vsock_stream)
+            .context("Failed to read the response from the service VM")?;
+        info!("Received response from the service VM.");
+        Ok(response)
+    }
+
+    /// Shuts down the service VM.
+    fn shutdown(&mut self) -> Result<DeathReason> {
+        self.write_request(&ServiceVmRequest::Shutdown)?;
+        self.vm
+            .wait_for_death_with_timeout(Duration::from_secs(10))
+            .ok_or_else(|| anyhow!("Timed out to exit the service VM"))
+    }
+}
+
+impl Drop for ServiceVm {
+    fn drop(&mut self) {
+        // Wait till the service VM finishes releasing all the resources.
+        match self.shutdown() {
+            Ok(reason) => info!("Exit the service VM successfully: {reason:?}"),
+            Err(e) => warn!("Service VM shutdown request failed '{e:?}', killing it."),
+        }
+        SERVICE_VM_STATE.notify_service_vm_shutdown();
+    }
+}
+
+/// Returns a `VmInstance` of a protected VM with the instance image from the given path.
+pub fn protected_vm_instance(instance_img_path: PathBuf) -> Result<VmInstance> {
+    let virtmgr = vmclient::VirtualizationService::new().context("Failed to spawn VirtMgr")?;
+    let service = virtmgr.connect().context("Failed to connect to VirtMgr")?;
+    info!("Connected to VirtMgr for service VM");
+
+    let instance_img = instance_img(service.as_ref(), instance_img_path)?;
+    let writable_partitions = vec![Partition {
+        label: "vm-instance".to_owned(),
+        image: Some(instance_img),
+        writable: true,
+    }];
+    let rialto = File::open(RIALTO_PATH).context("Failed to open Rialto kernel binary")?;
+    let config = VirtualMachineConfig::RawConfig(VirtualMachineRawConfig {
+        name: String::from("Service VM"),
+        bootloader: Some(ParcelFileDescriptor::new(rialto)),
+        disks: vec![DiskImage { image: None, partitions: writable_partitions, writable: true }],
+        protectedVm: true,
+        memoryMib: MEMORY_MB,
+        cpuTopology: CpuTopology::ONE_CPU,
+        platformVersion: "~1.0".to_string(),
+        gdbPort: 0, // No gdb
+        ..Default::default()
+    });
+    let console_out = Some(android_log_fd()?);
+    let console_in = None;
+    let log = Some(android_log_fd()?);
+    let callback = None;
+    VmInstance::create(service.as_ref(), &config, console_out, console_in, log, callback)
+        .context("Failed to create service VM")
+}
+
+/// Returns the file descriptor of the instance image at the given path.
+fn instance_img(
+    service: &dyn IVirtualizationService,
+    instance_img_path: PathBuf,
+) -> Result<ParcelFileDescriptor> {
+    if instance_img_path.exists() {
+        // TODO(b/298174584): Try to recover if the service VM is triggered by rkpd.
+        return Ok(OpenOptions::new()
+            .read(true)
+            .write(true)
+            .open(instance_img_path)
+            .map(ParcelFileDescriptor::new)?);
+    }
+    let instance_img = OpenOptions::new()
+        .create(true)
+        .read(true)
+        .write(true)
+        .open(instance_img_path)
+        .map(ParcelFileDescriptor::new)?;
+    service.initializeWritablePartition(
+        &instance_img,
+        INSTANCE_IMG_SIZE_BYTES,
+        PartitionType::ANDROID_VM_INSTANCE,
+    )?;
+    Ok(instance_img)
+}
+
+/// This function is only exposed for testing.
+pub fn android_log_fd() -> io::Result<File> {
+    let (reader_fd, writer_fd) = nix::unistd::pipe()?;
+
+    // SAFETY: These are new FDs with no previous owner.
+    let reader = unsafe { File::from_raw_fd(reader_fd) };
+    // SAFETY: These are new FDs with no previous owner.
+    let writer = unsafe { File::from_raw_fd(writer_fd) };
+
+    thread::spawn(|| {
+        for line in BufReader::new(reader).lines() {
+            match line {
+                Ok(l) => info!("{}", l),
+                Err(e) => {
+                    warn!("Failed to read line: {e:?}");
+                    break;
+                }
+            }
+        }
+    });
+    Ok(writer)
+}
diff --git a/service_vm/requests/Android.bp b/service_vm/requests/Android.bp
new file mode 100644
index 0000000..5a49207
--- /dev/null
+++ b/service_vm/requests/Android.bp
@@ -0,0 +1,46 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_defaults {
+    name: "libservice_vm_requests_nostd_defaults",
+    crate_name: "service_vm_requests",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    apex_available: [
+        "com.android.virt",
+    ],
+    no_stdlibs: true,
+    stdlibs: [
+        "libcore.rust_sysroot",
+    ],
+    rustlibs: [
+        "libbssl_avf_error_nostd",
+        "libbssl_avf_nostd",
+        "libcbor_util_nostd",
+        "libciborium_nostd",
+        "libcoset_nostd",
+        "libder_nostd",
+        "libdiced_open_dice_nostd",
+        "liblog_rust_nostd",
+        "libmicrodroid_kernel_hashes",
+        "libserde_nostd",
+        "libservice_vm_comm_nostd",
+        "libspki_nostd",
+        "libx509_cert_nostd",
+        "libzeroize_nostd",
+    ],
+}
+
+rust_library_rlib {
+    name: "libservice_vm_requests_nostd",
+    defaults: ["libservice_vm_requests_nostd_defaults"],
+}
+
+rust_test {
+    name: "libservice_vm_requests.test",
+    defaults: ["libservice_vm_requests_nostd_defaults"],
+    test_suites: ["general-tests"],
+}
diff --git a/service_vm/requests/TEST_MAPPING b/service_vm/requests/TEST_MAPPING
new file mode 100644
index 0000000..c95f9e3
--- /dev/null
+++ b/service_vm/requests/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "libservice_vm_requests.test"
+    }
+  ]
+}
\ No newline at end of file
diff --git a/service_vm/requests/src/api.rs b/service_vm/requests/src/api.rs
new file mode 100644
index 0000000..315d2af
--- /dev/null
+++ b/service_vm/requests/src/api.rs
@@ -0,0 +1,42 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains the main API for the request processing module.
+
+use crate::client_vm;
+use crate::rkp;
+use alloc::vec::Vec;
+use diced_open_dice::DiceArtifacts;
+use service_vm_comm::{Request, Response};
+
+/// Processes a request and returns the corresponding response.
+/// This function serves as the entry point for the request processing
+/// module.
+pub fn process_request(request: Request, dice_artifacts: &dyn DiceArtifacts) -> Response {
+    match request {
+        Request::Reverse(v) => Response::Reverse(reverse(v)),
+        Request::GenerateEcdsaP256KeyPair => rkp::generate_ecdsa_p256_key_pair(dice_artifacts)
+            .map_or_else(Response::Err, Response::GenerateEcdsaP256KeyPair),
+        Request::GenerateCertificateRequest(p) => {
+            rkp::generate_certificate_request(p, dice_artifacts)
+                .map_or_else(Response::Err, Response::GenerateCertificateRequest)
+        }
+        Request::RequestClientVmAttestation(p) => client_vm::request_attestation(p, dice_artifacts)
+            .map_or_else(Response::Err, Response::RequestClientVmAttestation),
+    }
+}
+
+fn reverse(payload: Vec<u8>) -> Vec<u8> {
+    payload.into_iter().rev().collect()
+}
diff --git a/service_vm/requests/src/cert.rs b/service_vm/requests/src/cert.rs
new file mode 100644
index 0000000..91281e7
--- /dev/null
+++ b/service_vm/requests/src/cert.rs
@@ -0,0 +1,172 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Generation of certificates and attestation extensions.
+
+use crate::dice::SubComponent;
+use alloc::vec;
+use alloc::vec::Vec;
+use der::{
+    asn1::{BitString, ObjectIdentifier, OctetString, Utf8StringRef},
+    oid::AssociatedOid,
+    Decode, Sequence,
+};
+use spki::{AlgorithmIdentifier, SubjectPublicKeyInfo};
+use x509_cert::{
+    certificate::{Certificate, TbsCertificate, Version},
+    ext::Extension,
+    name::Name,
+    serial_number::SerialNumber,
+    time::Validity,
+};
+
+/// OID value for ECDSA with SHA-256, see RFC 5912 s6.
+const ECDSA_WITH_SHA_256: ObjectIdentifier = ObjectIdentifier::new_unwrap("1.2.840.10045.4.3.2");
+
+/// OID value for the protected VM remote attestation extension.
+///
+/// This OID value was added at cl/584542390.
+const AVF_ATTESTATION_EXTENSION_V1: ObjectIdentifier =
+    ObjectIdentifier::new_unwrap("1.3.6.1.4.1.11129.2.1.29.1");
+
+/// Attestation extension contents
+///
+/// ```asn1
+/// AttestationDescription ::= SEQUENCE {
+///     attestationChallenge       OCTET_STRING,
+///     isVmSecure                 BOOLEAN,
+///     vmComponents               SEQUENCE OF VmComponent,
+/// }
+/// ```
+#[derive(Debug, Clone, Sequence)]
+pub(crate) struct AttestationExtension<'a> {
+    #[asn1(type = "OCTET STRING")]
+    attestation_challenge: &'a [u8],
+    /// Indicates whether the VM is operating under a secure configuration.
+    is_vm_secure: bool,
+    vm_components: Vec<VmComponent<'a>>,
+}
+
+impl<'a> AssociatedOid for AttestationExtension<'a> {
+    const OID: ObjectIdentifier = AVF_ATTESTATION_EXTENSION_V1;
+}
+
+impl<'a> AttestationExtension<'a> {
+    pub(crate) fn new(
+        attestation_challenge: &'a [u8],
+        is_vm_secure: bool,
+        vm_components: Vec<VmComponent<'a>>,
+    ) -> Self {
+        Self { attestation_challenge, is_vm_secure, vm_components }
+    }
+}
+
+/// VM component information
+///
+/// ```asn1
+/// VmComponent ::= SEQUENCE {
+///    name               UTF8String,
+///    securityVersion    INTEGER,
+///    codeHash           OCTET STRING,
+///    authorityHash      OCTET STRING,
+/// }
+/// ```
+#[derive(Debug, Clone, Sequence)]
+pub(crate) struct VmComponent<'a> {
+    name: Utf8StringRef<'a>,
+    version: u64,
+    #[asn1(type = "OCTET STRING")]
+    code_hash: &'a [u8],
+    #[asn1(type = "OCTET STRING")]
+    authority_hash: &'a [u8],
+}
+
+impl<'a> VmComponent<'a> {
+    pub(crate) fn new(sub_component: &'a SubComponent) -> der::Result<Self> {
+        Ok(Self {
+            name: Utf8StringRef::new(&sub_component.name)?,
+            version: sub_component.version,
+            code_hash: &sub_component.code_hash,
+            authority_hash: &sub_component.authority_hash,
+        })
+    }
+}
+
+/// Builds an X.509 `Certificate` as defined in RFC 5280 Section 4.1:
+///
+/// ```asn1
+/// Certificate  ::=  SEQUENCE  {
+///   tbsCertificate       TBSCertificate,
+///   signatureAlgorithm   AlgorithmIdentifier,
+///   signature            BIT STRING
+/// }
+/// ```
+pub(crate) fn build_certificate(
+    tbs_cert: TbsCertificate,
+    signature: &[u8],
+) -> der::Result<Certificate> {
+    Ok(Certificate {
+        signature_algorithm: tbs_cert.signature.clone(),
+        tbs_certificate: tbs_cert,
+        signature: BitString::new(0, signature)?,
+    })
+}
+
+/// Builds an X.509 `TbsCertificate` as defined in RFC 5280 Section 4.1:
+///
+/// ```asn1
+/// TBSCertificate  ::=  SEQUENCE  {
+///   version         [0]  EXPLICIT Version DEFAULT v1,
+///   serialNumber         CertificateSerialNumber,
+///   signature            AlgorithmIdentifier,
+///   issuer               Name,
+///   validity             Validity,
+///   subject              Name,
+///   subjectPublicKeyInfo SubjectPublicKeyInfo,
+///   issuerUniqueID  [1]  IMPLICIT UniqueIdentifier OPTIONAL,
+///                        -- If present, version MUST be v2 or v3
+///   subjectUniqueID [2]  IMPLICIT UniqueIdentifier OPTIONAL,
+///                        -- If present, version MUST be v2 or v3
+///   extensions      [3]  Extensions OPTIONAL
+///                        -- If present, version MUST be v3 --
+/// }
+/// ```
+pub(crate) fn build_tbs_certificate(
+    serial_number: &[u8],
+    issuer: Name,
+    subject: Name,
+    validity: Validity,
+    subject_public_key_info: &[u8],
+    attestation_ext: &[u8],
+) -> der::Result<TbsCertificate> {
+    let signature = AlgorithmIdentifier { oid: ECDSA_WITH_SHA_256, parameters: None };
+    let subject_public_key_info = SubjectPublicKeyInfo::from_der(subject_public_key_info)?;
+    let extensions = vec![Extension {
+        extn_id: AttestationExtension::OID,
+        critical: false,
+        extn_value: OctetString::new(attestation_ext)?,
+    }];
+    Ok(TbsCertificate {
+        version: Version::V3,
+        serial_number: SerialNumber::new(serial_number)?,
+        signature,
+        issuer,
+        validity,
+        subject,
+        subject_public_key_info,
+        issuer_unique_id: None,
+        subject_unique_id: None,
+        extensions: Some(extensions),
+    })
+}
diff --git a/service_vm/requests/src/client_vm.rs b/service_vm/requests/src/client_vm.rs
new file mode 100644
index 0000000..d4474cf
--- /dev/null
+++ b/service_vm/requests/src/client_vm.rs
@@ -0,0 +1,198 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains functions related to the attestation of the
+//! client VM.
+
+use crate::cert;
+use crate::dice::{
+    validate_client_vm_dice_chain_prefix_match, ClientVmDiceChain, DiceChainEntryPayload,
+};
+use crate::keyblob::decrypt_private_key;
+use alloc::vec::Vec;
+use bssl_avf::{rand_bytes, sha256, Digester, EcKey, PKey};
+use cbor_util::parse_value_array;
+use ciborium::value::Value;
+use core::result;
+use coset::{AsCborValue, CborSerializable, CoseSign, CoseSign1};
+use der::{Decode, Encode};
+use diced_open_dice::{DiceArtifacts, HASH_SIZE};
+use log::{error, info};
+use microdroid_kernel_hashes::{INITRD_DEBUG_HASH, INITRD_NORMAL_HASH, KERNEL_HASH};
+use service_vm_comm::{ClientVmAttestationParams, Csr, CsrPayload, RequestProcessingError};
+use x509_cert::{certificate::Certificate, name::Name};
+
+type Result<T> = result::Result<T, RequestProcessingError>;
+
+const DICE_CDI_LEAF_SIGNATURE_INDEX: usize = 0;
+const ATTESTATION_KEY_SIGNATURE_INDEX: usize = 1;
+
+pub(super) fn request_attestation(
+    params: ClientVmAttestationParams,
+    dice_artifacts: &dyn DiceArtifacts,
+) -> Result<Vec<u8>> {
+    let csr = Csr::from_cbor_slice(&params.csr)?;
+    let cose_sign = CoseSign::from_slice(&csr.signed_csr_payload)?;
+    let csr_payload = cose_sign.payload.as_ref().ok_or_else(|| {
+        error!("No CsrPayload found in the CSR");
+        RequestProcessingError::InternalError
+    })?;
+    let csr_payload = CsrPayload::from_cbor_slice(csr_payload)?;
+
+    // Validates the prefix of the Client VM DICE chain in the CSR.
+    let service_vm_dice_chain =
+        dice_artifacts.bcc().ok_or(RequestProcessingError::MissingDiceChain)?;
+    let service_vm_dice_chain = parse_value_array(service_vm_dice_chain, "service_vm_dice_chain")?;
+    let client_vm_dice_chain = parse_value_array(&csr.dice_cert_chain, "client_vm_dice_chain")?;
+    validate_client_vm_dice_chain_prefix_match(&client_vm_dice_chain, &service_vm_dice_chain)?;
+    // Validates the signatures in the Client VM DICE chain and extracts the partially decoded
+    // DiceChainEntryPayloads.
+    let client_vm_dice_chain =
+        ClientVmDiceChain::validate_signatures_and_parse_dice_chain(client_vm_dice_chain)?;
+
+    // The last entry in the service VM DICE chain describes the service VM, which should
+    // be signed with the same key as the kernel image.
+    let service_vm_entry = service_vm_dice_chain.last().unwrap();
+    validate_kernel_authority_hash(client_vm_dice_chain.microdroid_kernel(), service_vm_entry)?;
+    validate_kernel_code_hash(&client_vm_dice_chain)?;
+
+    // AAD is empty as defined in service_vm/comm/client_vm_csr.cddl.
+    let aad = &[];
+
+    // Verifies the first signature with the leaf private key in the DICE chain.
+    cose_sign.verify_signature(DICE_CDI_LEAF_SIGNATURE_INDEX, aad, |signature, message| {
+        client_vm_dice_chain.microdroid_payload().subject_public_key.verify(signature, message)
+    })?;
+
+    // Verifies the second signature with the public key in the CSR payload.
+    let ec_public_key = EcKey::from_cose_public_key_slice(&csr_payload.public_key)?;
+    cose_sign.verify_signature(ATTESTATION_KEY_SIGNATURE_INDEX, aad, |signature, message| {
+        ecdsa_verify(&ec_public_key, signature, message)
+    })?;
+    let subject_public_key_info = PKey::try_from(ec_public_key)?.subject_public_key_info()?;
+
+    // Builds the TBSCertificate.
+    // The serial number can be up to 20 bytes according to RFC5280 s4.1.2.2.
+    // In this case, a serial number with a length of 16 bytes is used to ensure that each
+    // certificate signed by RKP VM has a unique serial number.
+    // Attention: Do not use 20 bytes here as when the MSB is 1, a leading 0 byte can be
+    // added during the encoding to make the serial number length exceed 20 bytes.
+    let mut serial_number = [0u8; 16];
+    rand_bytes(&mut serial_number)?;
+    let subject = Name::encode_from_string("CN=Android Protected Virtual Machine Key")?;
+    let rkp_cert = Certificate::from_der(&params.remotely_provisioned_cert)?;
+    let vm_components =
+        if let Some(components) = client_vm_dice_chain.microdroid_payload_components() {
+            components.iter().map(cert::VmComponent::new).collect::<der::Result<Vec<_>>>()?
+        } else {
+            Vec::new()
+        };
+
+    info!("The client VM DICE chain validation succeeded. Beginning to generate the certificate.");
+    let attestation_ext = cert::AttestationExtension::new(
+        &csr_payload.challenge,
+        client_vm_dice_chain.all_entries_are_secure(),
+        vm_components,
+    )
+    .to_der()?;
+    let tbs_cert = cert::build_tbs_certificate(
+        &serial_number,
+        rkp_cert.tbs_certificate.subject,
+        Name::from_der(&subject)?,
+        rkp_cert.tbs_certificate.validity,
+        &subject_public_key_info,
+        &attestation_ext,
+    )?;
+
+    // Signs the TBSCertificate and builds the Certificate.
+    // The two private key structs below will be zeroed out on drop.
+    let private_key =
+        decrypt_private_key(&params.remotely_provisioned_key_blob, dice_artifacts.cdi_seal())
+            .map_err(|e| {
+                error!("Failed to decrypt the remotely provisioned key blob: {e}");
+                RequestProcessingError::FailedToDecryptKeyBlob
+            })?;
+    let ec_private_key = EcKey::from_ec_private_key(private_key.as_slice())?;
+    let signature = ecdsa_sign(&ec_private_key, &tbs_cert.to_der()?)?;
+    let certificate = cert::build_certificate(tbs_cert, &signature)?;
+    Ok(certificate.to_der()?)
+}
+
+fn ecdsa_verify(key: &EcKey, signature: &[u8], message: &[u8]) -> bssl_avf::Result<()> {
+    // The message was signed with ECDSA with curve P-256 and SHA-256 at the signature generation.
+    let digest = sha256(message)?;
+    key.ecdsa_verify(signature, &digest)
+}
+
+fn ecdsa_sign(key: &EcKey, message: &[u8]) -> bssl_avf::Result<Vec<u8>> {
+    let digest = sha256(message)?;
+    key.ecdsa_sign(&digest)
+}
+
+/// Validates that the authority hash of the Microdroid kernel in the Client VM DICE chain
+/// matches the authority hash of the service VM entry in the service VM DICE chain, because
+/// the Microdroid kernel is signed with the same key as the one used for the service VM.
+fn validate_kernel_authority_hash(
+    kernel: &DiceChainEntryPayload,
+    service_vm_entry: &Value,
+) -> Result<()> {
+    if expected_kernel_authority_hash(service_vm_entry)? == kernel.authority_hash {
+        Ok(())
+    } else {
+        error!("The authority hash of the Microdroid kernel does not match the expected value");
+        Err(RequestProcessingError::InvalidDiceChain)
+    }
+}
+
+/// Validates that the kernel code hash in the Client VM DICE chain matches the code hashes
+/// embedded during the build time.
+fn validate_kernel_code_hash(dice_chain: &ClientVmDiceChain) -> Result<()> {
+    let kernel = dice_chain.microdroid_kernel();
+    if expected_kernel_code_hash_normal()? == kernel.code_hash {
+        return Ok(());
+    }
+    if expected_kernel_code_hash_debug()? == kernel.code_hash {
+        if dice_chain.all_entries_are_secure() {
+            error!("The Microdroid kernel has debug initrd but the DICE chain is secure");
+            return Err(RequestProcessingError::InvalidDiceChain);
+        }
+        return Ok(());
+    }
+    error!("The kernel code hash in the Client VM DICE chain does not match any expected values");
+    Err(RequestProcessingError::InvalidDiceChain)
+}
+
+fn expected_kernel_code_hash_normal() -> bssl_avf::Result<Vec<u8>> {
+    let mut code_hash = [0u8; 64];
+    code_hash[0..32].copy_from_slice(KERNEL_HASH);
+    code_hash[32..].copy_from_slice(INITRD_NORMAL_HASH);
+    Digester::sha512().digest(&code_hash)
+}
+
+fn expected_kernel_code_hash_debug() -> bssl_avf::Result<Vec<u8>> {
+    let mut code_hash = [0u8; 64];
+    code_hash[0..32].copy_from_slice(KERNEL_HASH);
+    code_hash[32..].copy_from_slice(INITRD_DEBUG_HASH);
+    Digester::sha512().digest(&code_hash)
+}
+
+fn expected_kernel_authority_hash(service_vm_entry: &Value) -> Result<[u8; HASH_SIZE]> {
+    let cose_sign1 = CoseSign1::from_cbor_value(service_vm_entry.clone())?;
+    let payload = cose_sign1.payload.ok_or_else(|| {
+        error!("No payload found in the service VM DICE chain entry");
+        RequestProcessingError::InternalError
+    })?;
+    let service_vm = DiceChainEntryPayload::from_slice(&payload)?;
+    Ok(service_vm.authority_hash)
+}
diff --git a/service_vm/requests/src/dice.rs b/service_vm/requests/src/dice.rs
new file mode 100644
index 0000000..657e482
--- /dev/null
+++ b/service_vm/requests/src/dice.rs
@@ -0,0 +1,545 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains functions related to DICE.
+
+use alloc::string::String;
+use alloc::vec::Vec;
+use bssl_avf::{ed25519_verify, Digester, EcKey};
+use cbor_util::{
+    cbor_value_type, get_label_value, get_label_value_as_bytes, value_to_array,
+    value_to_byte_array, value_to_bytes, value_to_map, value_to_num, value_to_text,
+};
+use ciborium::value::Value;
+use core::cell::OnceCell;
+use core::result;
+use coset::{
+    self,
+    iana::{self, EnumI64},
+    Algorithm, AsCborValue, CborSerializable, CoseError, CoseKey, CoseSign1, KeyOperation, KeyType,
+    Label,
+};
+use diced_open_dice::{DiceMode, HASH_SIZE};
+use log::error;
+use service_vm_comm::RequestProcessingError;
+
+type Result<T> = result::Result<T, RequestProcessingError>;
+
+const CODE_HASH: i64 = -4670545;
+const CONFIG_DESC: i64 = -4670548;
+const AUTHORITY_HASH: i64 = -4670549;
+const MODE: i64 = -4670551;
+const SUBJECT_PUBLIC_KEY: i64 = -4670552;
+
+const CONFIG_DESC_COMPONENT_NAME: i64 = -70002;
+const CONFIG_DESC_SUB_COMPONENTS: i64 = -71002;
+
+const SUB_COMPONENT_NAME: i64 = 1;
+const SUB_COMPONENT_VERSION: i64 = 2;
+const SUB_COMPONENT_CODE_HASH: i64 = 3;
+const SUB_COMPONENT_AUTHORITY_HASH: i64 = 4;
+
+const MICRODROID_KERNEL_COMPONENT_NAME: &str = "vm_entry";
+const MICRODROID_PAYLOAD_COMPONENT_NAME: &str = "Microdroid payload";
+
+/// Represents a partially decoded `DiceCertChain` from the client VM.
+/// The whole chain is defined as following:
+///
+/// DiceCertChain = [
+///     PubKeyEd25519 / PubKeyECDSA256 / PubKeyECDSA384,  ; UDS_Pub
+///     + DiceChainEntry,               ; First CDI_Certificate -> Last CDI_Certificate
+/// ]
+#[derive(Debug, Clone)]
+pub(crate) struct ClientVmDiceChain {
+    payloads: Vec<DiceChainEntryPayload>,
+}
+
+impl ClientVmDiceChain {
+    /// Validates the signatures of the entries in the `client_vm_dice_chain` as following:
+    ///
+    /// - The first entry of the `client_vm_dice_chain` must be signed with the root public key.
+    /// - After the first entry, each entry of the `client_vm_dice_chain` must be signed with the
+    ///  subject public key of the previous entry.
+    ///
+    /// Returns a partially decoded client VM's DICE chain if the verification succeeds.
+    pub(crate) fn validate_signatures_and_parse_dice_chain(
+        mut client_vm_dice_chain: Vec<Value>,
+    ) -> Result<Self> {
+        let root_public_key =
+            CoseKey::from_cbor_value(client_vm_dice_chain.remove(0))?.try_into()?;
+
+        let mut payloads = Vec::with_capacity(client_vm_dice_chain.len());
+        let mut previous_public_key = &root_public_key;
+        for (i, value) in client_vm_dice_chain.into_iter().enumerate() {
+            let payload = DiceChainEntryPayload::validate_cose_signature_and_extract_payload(
+                value,
+                previous_public_key,
+            )
+            .map_err(|e| {
+                error!("Failed to verify the DICE chain entry {}: {:?}", i, e);
+                e
+            })?;
+            payloads.push(payload);
+            previous_public_key = &payloads.last().unwrap().subject_public_key;
+        }
+        // After successfully calling `validate_client_vm_dice_chain_prefix_match`, we can be
+        // certain that the client VM's DICE chain must contain at least three entries that
+        // describe:
+        // - pvmfw
+        // - Microdroid kernel
+        // - Apk/Apexes
+        assert!(
+            payloads.len() >= 3,
+            "The client VM DICE chain must contain at least three DiceChainEntryPayloads"
+        );
+        let chain = Self { payloads };
+        chain.validate_microdroid_components_names()?;
+        Ok(chain)
+    }
+
+    fn validate_microdroid_components_names(&self) -> Result<()> {
+        let microdroid_kernel_name = &self.microdroid_kernel().config_descriptor.component_name;
+        if MICRODROID_KERNEL_COMPONENT_NAME != microdroid_kernel_name {
+            error!(
+                "The second to last entry in the client VM DICE chain must describe the \
+                    Microdroid kernel. Got {}",
+                microdroid_kernel_name
+            );
+            return Err(RequestProcessingError::InvalidDiceChain);
+        }
+        let microdroid_payload_name = &self.microdroid_payload().config_descriptor.component_name;
+        if MICRODROID_PAYLOAD_COMPONENT_NAME != microdroid_payload_name {
+            error!(
+                "The last entry in the client VM DICE chain must describe the Microdroid \
+                    payload. Got {}",
+                microdroid_payload_name
+            );
+            return Err(RequestProcessingError::InvalidDiceChain);
+        }
+        Ok(())
+    }
+
+    pub(crate) fn microdroid_kernel(&self) -> &DiceChainEntryPayload {
+        &self.payloads[self.payloads.len() - 2]
+    }
+
+    pub(crate) fn microdroid_payload(&self) -> &DiceChainEntryPayload {
+        &self.payloads[self.payloads.len() - 1]
+    }
+
+    pub(crate) fn microdroid_payload_components(&self) -> Option<&Vec<SubComponent>> {
+        self.microdroid_payload().config_descriptor.sub_components.as_ref()
+    }
+
+    /// Returns true if all payloads in the DICE chain are in normal mode.
+    pub(crate) fn all_entries_are_secure(&self) -> bool {
+        self.payloads.iter().all(|p| p.mode == DiceMode::kDiceModeNormal)
+    }
+}
+
+/// Validates that the `client_vm_dice_chain` matches the `service_vm_dice_chain` up to the pvmfw
+/// entry.
+///
+/// Returns `Ok(())` if the verification succeeds.
+pub(crate) fn validate_client_vm_dice_chain_prefix_match(
+    client_vm_dice_chain: &[Value],
+    service_vm_dice_chain: &[Value],
+) -> Result<()> {
+    if service_vm_dice_chain.len() < 3 {
+        // The service VM's DICE chain must contain the root key and at least two other entries
+        // that describe:
+        //   - pvmfw
+        //   - Service VM kernel
+        error!("The service VM DICE chain must contain at least three entries");
+        return Err(RequestProcessingError::InternalError);
+    }
+    // Ignores the last entry that describes service VM
+    let entries_up_to_pvmfw = &service_vm_dice_chain[0..(service_vm_dice_chain.len() - 1)];
+    if entries_up_to_pvmfw.len() + 2 != client_vm_dice_chain.len() {
+        // Client VM DICE chain = entries_up_to_pvmfw
+        //    + Microdroid kernel entry (added in pvmfw)
+        //    + Apk/Apexes entry (added in microdroid)
+        error!("The client VM's DICE chain must contain exactly two extra entries");
+        return Err(RequestProcessingError::InvalidDiceChain);
+    }
+    if entries_up_to_pvmfw != &client_vm_dice_chain[0..entries_up_to_pvmfw.len()] {
+        error!(
+            "The client VM's DICE chain does not match service VM's DICE chain up to \
+             the pvmfw entry"
+        );
+        return Err(RequestProcessingError::InvalidDiceChain);
+    }
+    Ok(())
+}
+
+#[derive(Debug, Clone)]
+pub(crate) struct PublicKey(CoseKey);
+
+impl TryFrom<CoseKey> for PublicKey {
+    type Error = RequestProcessingError;
+
+    fn try_from(key: CoseKey) -> Result<Self> {
+        if !key.key_ops.contains(&KeyOperation::Assigned(iana::KeyOperation::Verify)) {
+            error!("Public key does not support verification");
+            return Err(RequestProcessingError::InvalidDiceChain);
+        }
+        Ok(Self(key))
+    }
+}
+
+impl PublicKey {
+    /// Verifies the signature of the provided message with the public key.
+    ///
+    /// This function supports the following key/algorithm types as specified in
+    /// hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/
+    /// generateCertificateRequestV2.cddl:
+    ///
+    /// PubKeyEd25519 / PubKeyECDSA256 / PubKeyECDSA384
+    pub(crate) fn verify(&self, signature: &[u8], message: &[u8]) -> Result<()> {
+        match &self.0.kty {
+            KeyType::Assigned(iana::KeyType::EC2) => {
+                let public_key = EcKey::from_cose_public_key(&self.0)?;
+                let Some(Algorithm::Assigned(alg)) = self.0.alg else {
+                    error!("Invalid algorithm in COSE key {:?}", self.0.alg);
+                    return Err(RequestProcessingError::InvalidDiceChain);
+                };
+                let digester = match alg {
+                    iana::Algorithm::ES256 => Digester::sha256(),
+                    iana::Algorithm::ES384 => Digester::sha384(),
+                    _ => {
+                        error!("Unsupported algorithm in EC2 key: {:?}", alg);
+                        return Err(RequestProcessingError::InvalidDiceChain);
+                    }
+                };
+                let digest = digester.digest(message)?;
+                Ok(public_key.ecdsa_verify(signature, &digest)?)
+            }
+            KeyType::Assigned(iana::KeyType::OKP) => {
+                let curve_type =
+                    get_label_value(&self.0, Label::Int(iana::OkpKeyParameter::Crv.to_i64()))?;
+                if curve_type != &Value::from(iana::EllipticCurve::Ed25519.to_i64()) {
+                    error!("Unsupported curve type in OKP COSE key: {:?}", curve_type);
+                    return Err(RequestProcessingError::OperationUnimplemented);
+                }
+                let x = get_label_value_as_bytes(
+                    &self.0,
+                    Label::Int(iana::OkpKeyParameter::X.to_i64()),
+                )?;
+                let public_key = x.try_into().map_err(|_| {
+                    error!("Invalid ED25519 public key size: {}", x.len());
+                    RequestProcessingError::InvalidDiceChain
+                })?;
+                let signature = signature.try_into().map_err(|_| {
+                    error!("Invalid ED25519 signature size: {}", signature.len());
+                    RequestProcessingError::InvalidDiceChain
+                })?;
+                Ok(ed25519_verify(message, signature, public_key)?)
+            }
+            kty => {
+                error!("Unsupported key type in COSE key: {:?}", kty);
+                Err(RequestProcessingError::OperationUnimplemented)
+            }
+        }
+    }
+}
+
+/// Represents a partially decoded `DiceChainEntryPayload`. The whole payload is defined in:
+///
+/// hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/
+/// generateCertificateRequestV2.cddl
+#[derive(Debug, Clone)]
+pub(crate) struct DiceChainEntryPayload {
+    pub(crate) subject_public_key: PublicKey,
+    mode: DiceMode,
+    pub(crate) code_hash: [u8; HASH_SIZE],
+    pub(crate) authority_hash: [u8; HASH_SIZE],
+    config_descriptor: ConfigDescriptor,
+}
+
+impl DiceChainEntryPayload {
+    /// Validates the signature of the provided CBOR value with the provided public key and
+    /// extracts payload from the value.
+    fn validate_cose_signature_and_extract_payload(
+        value: Value,
+        authority_public_key: &PublicKey,
+    ) -> Result<Self> {
+        let cose_sign1 = CoseSign1::from_cbor_value(value)?;
+        let aad = &[]; // AAD is not used in DICE chain entry.
+        cose_sign1.verify_signature(aad, |signature, message| {
+            authority_public_key.verify(signature, message)
+        })?;
+
+        let payload = cose_sign1.payload.ok_or_else(|| {
+            error!("No payload found in the DICE chain entry");
+            RequestProcessingError::InvalidDiceChain
+        })?;
+        Self::from_slice(&payload)
+    }
+
+    pub(crate) fn from_slice(data: &[u8]) -> Result<Self> {
+        let entries = value_to_map(Value::from_slice(data)?, "DiceChainEntryPayload")?;
+        let mut builder = PayloadBuilder::default();
+        for (key, value) in entries.into_iter() {
+            let key: i64 = value_to_num(key, "DiceChainEntryPayload key")?;
+            match key {
+                SUBJECT_PUBLIC_KEY => {
+                    let subject_public_key = value_to_bytes(value, "subject_public_key")?;
+                    let subject_public_key =
+                        CoseKey::from_slice(&subject_public_key)?.try_into()?;
+                    builder.subject_public_key(subject_public_key)?;
+                }
+                MODE => builder.mode(to_mode(value)?)?,
+                CODE_HASH => {
+                    let code_hash = value_to_byte_array(value, "DiceChainEntryPayload code_hash")?;
+                    builder.code_hash(code_hash)?;
+                }
+                AUTHORITY_HASH => {
+                    let authority_hash =
+                        value_to_byte_array(value, "DiceChainEntryPayload authority_hash")?;
+                    builder.authority_hash(authority_hash)?;
+                }
+                CONFIG_DESC => {
+                    let config_descriptor = value_to_bytes(value, "config_descriptor")?;
+                    let config_descriptor = ConfigDescriptor::from_slice(&config_descriptor)?;
+                    builder.config_descriptor(config_descriptor)?;
+                }
+                _ => {}
+            }
+        }
+        builder.build()
+    }
+}
+/// Represents a partially decoded `ConfigurationDescriptor`.
+///
+/// The whole `ConfigurationDescriptor` is defined in:
+///
+/// hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/
+/// generateCertificateRequestV2.cddl
+#[derive(Debug, Clone)]
+pub(crate) struct ConfigDescriptor {
+    component_name: String,
+    sub_components: Option<Vec<SubComponent>>,
+}
+
+impl ConfigDescriptor {
+    fn from_slice(data: &[u8]) -> Result<Self> {
+        let value = Value::from_slice(data)?;
+        let entries = value_to_map(value, "ConfigDescriptor")?;
+        let mut builder = ConfigDescriptorBuilder::default();
+        for (key, value) in entries.into_iter() {
+            let key: i64 = value_to_num(key, "ConfigDescriptor key")?;
+            match key {
+                CONFIG_DESC_COMPONENT_NAME => {
+                    let name = value_to_text(value, "ConfigDescriptor component_name")?;
+                    builder.component_name(name)?;
+                }
+                CONFIG_DESC_SUB_COMPONENTS => {
+                    let sub_components = value_to_array(value, "ConfigDescriptor sub_components")?;
+                    let sub_components = sub_components
+                        .into_iter()
+                        .map(SubComponent::try_from)
+                        .collect::<Result<Vec<_>>>()?;
+                    builder.sub_components(sub_components)?
+                }
+                _ => {}
+            }
+        }
+        builder.build()
+    }
+}
+
+#[derive(Debug, Clone, Default)]
+struct ConfigDescriptorBuilder {
+    component_name: OnceCell<String>,
+    sub_components: OnceCell<Vec<SubComponent>>,
+}
+
+impl ConfigDescriptorBuilder {
+    fn component_name(&mut self, component_name: String) -> Result<()> {
+        set_once(&self.component_name, component_name, "ConfigDescriptor component_name")
+    }
+
+    fn sub_components(&mut self, sub_components: Vec<SubComponent>) -> Result<()> {
+        set_once(&self.sub_components, sub_components, "ConfigDescriptor sub_components")
+    }
+
+    fn build(mut self) -> Result<ConfigDescriptor> {
+        let component_name =
+            take_value(&mut self.component_name, "ConfigDescriptor component_name")?;
+        let sub_components = self.sub_components.take();
+        Ok(ConfigDescriptor { component_name, sub_components })
+    }
+}
+
+#[derive(Debug, Clone)]
+pub(crate) struct SubComponent {
+    pub(crate) name: String,
+    pub(crate) version: u64,
+    pub(crate) code_hash: Vec<u8>,
+    pub(crate) authority_hash: Vec<u8>,
+}
+
+impl TryFrom<Value> for SubComponent {
+    type Error = RequestProcessingError;
+
+    fn try_from(value: Value) -> Result<Self> {
+        let entries = value_to_map(value, "SubComponent")?;
+        let mut builder = SubComponentBuilder::default();
+        for (key, value) in entries.into_iter() {
+            let key: i64 = value_to_num(key, "SubComponent key")?;
+            match key {
+                SUB_COMPONENT_NAME => {
+                    builder.name(value_to_text(value, "SubComponent component_name")?)?
+                }
+                SUB_COMPONENT_VERSION => {
+                    builder.version(value_to_num(value, "SubComponent version")?)?
+                }
+                SUB_COMPONENT_CODE_HASH => {
+                    builder.code_hash(value_to_bytes(value, "SubComponent code_hash")?)?
+                }
+                SUB_COMPONENT_AUTHORITY_HASH => {
+                    builder.authority_hash(value_to_bytes(value, "SubComponent authority_hash")?)?
+                }
+                k => {
+                    error!("Unknown key in SubComponent: {}", k);
+                    return Err(RequestProcessingError::InvalidDiceChain);
+                }
+            }
+        }
+        builder.build()
+    }
+}
+
+#[derive(Debug, Clone, Default)]
+struct SubComponentBuilder {
+    name: OnceCell<String>,
+    version: OnceCell<u64>,
+    code_hash: OnceCell<Vec<u8>>,
+    authority_hash: OnceCell<Vec<u8>>,
+}
+
+impl SubComponentBuilder {
+    fn name(&mut self, name: String) -> Result<()> {
+        set_once(&self.name, name, "SubComponent name")
+    }
+
+    fn version(&mut self, version: u64) -> Result<()> {
+        set_once(&self.version, version, "SubComponent version")
+    }
+
+    fn code_hash(&mut self, code_hash: Vec<u8>) -> Result<()> {
+        set_once(&self.code_hash, code_hash, "SubComponent code_hash")
+    }
+
+    fn authority_hash(&mut self, authority_hash: Vec<u8>) -> Result<()> {
+        set_once(&self.authority_hash, authority_hash, "SubComponent authority_hash")
+    }
+
+    fn build(mut self) -> Result<SubComponent> {
+        let name = take_value(&mut self.name, "SubComponent name")?;
+        let version = take_value(&mut self.version, "SubComponent version")?;
+        let code_hash = take_value(&mut self.code_hash, "SubComponent code_hash")?;
+        let authority_hash = take_value(&mut self.authority_hash, "SubComponent authority_hash")?;
+        Ok(SubComponent { name, version, code_hash, authority_hash })
+    }
+}
+
+fn to_mode(value: Value) -> Result<DiceMode> {
+    let mode = match value {
+        // Mode is supposed to be encoded as a 1-byte bstr, but some implementations instead
+        // encode it as an integer. Accept either. See b/273552826.
+        // If Mode is omitted, it should be treated as if it was NotConfigured, according to
+        // the Open Profile for DICE spec.
+        Value::Bytes(bytes) => {
+            if bytes.len() != 1 {
+                error!("Bytes array with invalid length for mode: {:?}", bytes.len());
+                return Err(RequestProcessingError::InvalidDiceChain);
+            }
+            bytes[0].into()
+        }
+        Value::Integer(i) => i,
+        v => return Err(CoseError::UnexpectedItem(cbor_value_type(&v), "bstr or int").into()),
+    };
+    let mode = match mode {
+        x if x == (DiceMode::kDiceModeNormal as i64).into() => DiceMode::kDiceModeNormal,
+        x if x == (DiceMode::kDiceModeDebug as i64).into() => DiceMode::kDiceModeDebug,
+        x if x == (DiceMode::kDiceModeMaintenance as i64).into() => DiceMode::kDiceModeMaintenance,
+        // If Mode is invalid, it should be treated as if it was NotConfigured, according to
+        // the Open Profile for DICE spec.
+        _ => DiceMode::kDiceModeNotInitialized,
+    };
+    Ok(mode)
+}
+
+#[derive(Default, Debug, Clone)]
+struct PayloadBuilder {
+    subject_public_key: OnceCell<PublicKey>,
+    mode: OnceCell<DiceMode>,
+    code_hash: OnceCell<[u8; HASH_SIZE]>,
+    authority_hash: OnceCell<[u8; HASH_SIZE]>,
+    config_descriptor: OnceCell<ConfigDescriptor>,
+}
+
+fn set_once<T>(field: &OnceCell<T>, value: T, field_name: &str) -> Result<()> {
+    field.set(value).map_err(|_| {
+        error!("Field '{field_name}' is duplicated in the Payload");
+        RequestProcessingError::InvalidDiceChain
+    })
+}
+
+fn take_value<T>(field: &mut OnceCell<T>, field_name: &str) -> Result<T> {
+    field.take().ok_or_else(|| {
+        error!("Field '{field_name}' is missing in the Payload");
+        RequestProcessingError::InvalidDiceChain
+    })
+}
+
+impl PayloadBuilder {
+    fn subject_public_key(&mut self, key: PublicKey) -> Result<()> {
+        set_once(&self.subject_public_key, key, "subject_public_key")
+    }
+
+    fn mode(&mut self, mode: DiceMode) -> Result<()> {
+        set_once(&self.mode, mode, "mode")
+    }
+
+    fn code_hash(&mut self, code_hash: [u8; HASH_SIZE]) -> Result<()> {
+        set_once(&self.code_hash, code_hash, "code_hash")
+    }
+
+    fn authority_hash(&mut self, authority_hash: [u8; HASH_SIZE]) -> Result<()> {
+        set_once(&self.authority_hash, authority_hash, "authority_hash")
+    }
+
+    fn config_descriptor(&mut self, config_descriptor: ConfigDescriptor) -> Result<()> {
+        set_once(&self.config_descriptor, config_descriptor, "config_descriptor")
+    }
+
+    fn build(mut self) -> Result<DiceChainEntryPayload> {
+        let subject_public_key = take_value(&mut self.subject_public_key, "subject_public_key")?;
+        // If Mode is omitted, it should be treated as if it was NotConfigured, according to
+        // the Open Profile for DICE spec.
+        let mode = self.mode.take().unwrap_or(DiceMode::kDiceModeNotInitialized);
+        let code_hash = take_value(&mut self.code_hash, "code_hash")?;
+        let authority_hash = take_value(&mut self.authority_hash, "authority_hash")?;
+        let config_descriptor = take_value(&mut self.config_descriptor, "config_descriptor")?;
+        Ok(DiceChainEntryPayload {
+            subject_public_key,
+            mode,
+            code_hash,
+            authority_hash,
+            config_descriptor,
+        })
+    }
+}
diff --git a/service_vm/requests/src/keyblob.rs b/service_vm/requests/src/keyblob.rs
new file mode 100644
index 0000000..1fb7a67
--- /dev/null
+++ b/service_vm/requests/src/keyblob.rs
@@ -0,0 +1,150 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Handles the encryption and decryption of the key blob.
+
+use alloc::vec;
+use alloc::vec::Vec;
+use bssl_avf::{hkdf, rand_bytes, Aead, AeadContext, Digester, AES_GCM_NONCE_LENGTH};
+use core::result;
+use serde::{Deserialize, Serialize};
+use service_vm_comm::RequestProcessingError;
+use zeroize::Zeroizing;
+
+type Result<T> = result::Result<T, RequestProcessingError>;
+
+/// The KEK (Key Encryption Key) info is used as information to derive the KEK using HKDF.
+const KEK_INFO: &[u8] = b"rialto keyblob kek";
+
+/// An all-zero nonce is utilized to encrypt the private key. This is because each key
+/// undergoes encryption using a distinct KEK, which is derived from a secret and a random
+/// salt. Since the uniqueness of the IV/key combination is already guaranteed by the uniqueness
+/// of the KEK, there is no need for an additional random nonce.
+const PRIVATE_KEY_NONCE: &[u8; AES_GCM_NONCE_LENGTH] = &[0; AES_GCM_NONCE_LENGTH];
+
+/// Since Rialto functions as both the sender and receiver of the message, no additional data is
+/// needed.
+const PRIVATE_KEY_AD: &[u8] = &[];
+
+// Encrypted key blob.
+#[derive(Clone, Debug, Deserialize, Serialize)]
+pub(crate) enum EncryptedKeyBlob {
+    /// Version 1 key blob.
+    V1(EncryptedKeyBlobV1),
+}
+
+/// Encrypted key blob version 1.
+#[derive(Clone, Debug, Deserialize, Serialize)]
+pub(crate) struct EncryptedKeyBlobV1 {
+    /// Salt used to derive the KEK.
+    kek_salt: [u8; 32],
+
+    /// Private key encrypted with AES-256-GCM.
+    encrypted_private_key: Vec<u8>,
+}
+
+impl EncryptedKeyBlob {
+    pub(crate) fn new(private_key: &[u8], kek_secret: &[u8]) -> Result<Self> {
+        EncryptedKeyBlobV1::new(private_key, kek_secret).map(Self::V1)
+    }
+
+    pub(crate) fn decrypt_private_key(&self, kek_secret: &[u8]) -> Result<Zeroizing<Vec<u8>>> {
+        match self {
+            Self::V1(blob) => blob.decrypt_private_key(kek_secret),
+        }
+    }
+}
+
+impl EncryptedKeyBlobV1 {
+    fn new(private_key: &[u8], kek_secret: &[u8]) -> Result<Self> {
+        let mut kek_salt = [0u8; 32];
+        rand_bytes(&mut kek_salt)?;
+        let kek = hkdf::<32>(kek_secret, &kek_salt, KEK_INFO, Digester::sha512())?;
+
+        let tag_len = None;
+        let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), kek.as_slice(), tag_len)?;
+        let mut out = vec![0u8; private_key.len() + aead_ctx.aead().max_overhead()];
+        let ciphertext = aead_ctx.seal(private_key, PRIVATE_KEY_NONCE, PRIVATE_KEY_AD, &mut out)?;
+
+        Ok(Self { kek_salt, encrypted_private_key: ciphertext.to_vec() })
+    }
+
+    fn decrypt_private_key(&self, kek_secret: &[u8]) -> Result<Zeroizing<Vec<u8>>> {
+        let kek = hkdf::<32>(kek_secret, &self.kek_salt, KEK_INFO, Digester::sha512())?;
+        let mut out = Zeroizing::new(vec![0u8; self.encrypted_private_key.len()]);
+        let tag_len = None;
+        let aead_ctx = AeadContext::new(Aead::aes_256_gcm(), kek.as_slice(), tag_len)?;
+        let plaintext = aead_ctx.open(
+            &self.encrypted_private_key,
+            PRIVATE_KEY_NONCE,
+            PRIVATE_KEY_AD,
+            &mut out,
+        )?;
+        Ok(Zeroizing::new(plaintext.to_vec()))
+    }
+}
+
+pub(crate) fn decrypt_private_key(
+    encrypted_key_blob: &[u8],
+    kek_secret: &[u8],
+) -> Result<Zeroizing<Vec<u8>>> {
+    let key_blob: EncryptedKeyBlob = cbor_util::deserialize(encrypted_key_blob)?;
+    let private_key = key_blob.decrypt_private_key(kek_secret)?;
+    Ok(private_key)
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use bssl_avf::{ApiName, CipherError, Error};
+
+    /// The test data are generated randomly with /dev/urandom.
+    const TEST_KEY: [u8; 32] = [
+        0x76, 0xf7, 0xd5, 0x36, 0x1f, 0x78, 0x58, 0x2e, 0x55, 0x2f, 0x88, 0x9d, 0xa3, 0x3e, 0xba,
+        0xfb, 0xc1, 0x2b, 0x17, 0x85, 0x24, 0xdc, 0x0e, 0xc4, 0xbf, 0x6d, 0x2e, 0xe8, 0xa8, 0x36,
+        0x93, 0x62,
+    ];
+    const TEST_SECRET1: [u8; 32] = [
+        0xac, 0xb1, 0x6b, 0xdf, 0x45, 0x30, 0x20, 0xa5, 0x60, 0x6d, 0x81, 0x07, 0x30, 0x68, 0x6e,
+        0x01, 0x3d, 0x5e, 0x86, 0xd6, 0xc6, 0x17, 0xfa, 0xd6, 0xe0, 0xff, 0xd4, 0xf0, 0xb0, 0x7c,
+        0x5c, 0x8f,
+    ];
+    const TEST_SECRET2: [u8; 32] = [
+        0x04, 0x6e, 0xca, 0x30, 0x5e, 0x6c, 0x8f, 0xe5, 0x1a, 0x47, 0x12, 0xbc, 0x45, 0xd7, 0xa8,
+        0x38, 0xfb, 0x06, 0xc6, 0x44, 0xa1, 0x21, 0x40, 0x0b, 0x48, 0x88, 0xe2, 0x31, 0x64, 0x42,
+        0x9d, 0x1c,
+    ];
+
+    #[test]
+    fn decrypting_keyblob_succeeds_with_the_same_kek() -> Result<()> {
+        let encrypted_key_blob =
+            cbor_util::serialize(&EncryptedKeyBlob::new(&TEST_KEY, &TEST_SECRET1)?)?;
+        let decrypted_key = decrypt_private_key(&encrypted_key_blob, &TEST_SECRET1)?;
+
+        assert_eq!(TEST_KEY, decrypted_key.as_slice());
+        Ok(())
+    }
+
+    #[test]
+    fn decrypting_keyblob_fails_with_a_different_kek() -> Result<()> {
+        let encrypted_key_blob =
+            cbor_util::serialize(&EncryptedKeyBlob::new(&TEST_KEY, &TEST_SECRET1)?)?;
+        let err = decrypt_private_key(&encrypted_key_blob, &TEST_SECRET2).unwrap_err();
+
+        let expected_err: RequestProcessingError =
+            Error::CallFailed(ApiName::EVP_AEAD_CTX_open, CipherError::BadDecrypt.into()).into();
+        assert_eq!(expected_err, err);
+        Ok(())
+    }
+}
diff --git a/pvmfw/src/virtio.rs b/service_vm/requests/src/lib.rs
similarity index 67%
copy from pvmfw/src/virtio.rs
copy to service_vm/requests/src/lib.rs
index df916bc..0dfac09 100644
--- a/pvmfw/src/virtio.rs
+++ b/service_vm/requests/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2022, The Android Open Source Project
+// Copyright 2023, The Android Open Source Project
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -12,7 +12,18 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//! Modules for working with VirtIO devices.
+//! This library contains functions for the request processing.
 
-mod hal;
-pub mod pci;
+#![no_std]
+
+extern crate alloc;
+
+mod api;
+mod cert;
+mod client_vm;
+mod dice;
+mod keyblob;
+mod pub_key;
+mod rkp;
+
+pub use api::process_request;
diff --git a/service_vm/requests/src/pub_key.rs b/service_vm/requests/src/pub_key.rs
new file mode 100644
index 0000000..110e3d2
--- /dev/null
+++ b/service_vm/requests/src/pub_key.rs
@@ -0,0 +1,54 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Handles the construction of the MACed public key.
+
+use alloc::vec::Vec;
+use bssl_avf::hmac_sha256;
+use core::result;
+use coset::{iana, CborSerializable, CoseKey, CoseMac0, CoseMac0Builder, HeaderBuilder};
+use service_vm_comm::RequestProcessingError;
+
+type Result<T> = result::Result<T, RequestProcessingError>;
+
+/// Verifies the MAC of the given public key.
+pub fn validate_public_key(maced_public_key: &[u8], hmac_key: &[u8]) -> Result<CoseKey> {
+    let cose_mac = CoseMac0::from_slice(maced_public_key)?;
+    cose_mac.verify_tag(&[], |tag, data| verify_tag(tag, data, hmac_key))?;
+    let payload = cose_mac.payload.ok_or(RequestProcessingError::KeyToSignHasEmptyPayload)?;
+    Ok(CoseKey::from_slice(&payload)?)
+}
+
+fn verify_tag(tag: &[u8], data: &[u8], hmac_key: &[u8]) -> Result<()> {
+    let computed_tag = hmac_sha256(hmac_key, data)?;
+    if tag == computed_tag {
+        Ok(())
+    } else {
+        Err(RequestProcessingError::InvalidMac)
+    }
+}
+
+/// Returns the MACed public key.
+pub fn build_maced_public_key(public_key: CoseKey, hmac_key: &[u8]) -> Result<Vec<u8>> {
+    const ALGO: iana::Algorithm = iana::Algorithm::HMAC_256_256;
+
+    let external_aad = &[];
+    let protected = HeaderBuilder::new().algorithm(ALGO).build();
+    let cose_mac = CoseMac0Builder::new()
+        .protected(protected)
+        .payload(public_key.to_vec()?)
+        .try_create_tag(external_aad, |data| hmac_sha256(hmac_key, data).map(|v| v.to_vec()))?
+        .build();
+    Ok(cose_mac.to_vec()?)
+}
diff --git a/service_vm/requests/src/rkp.rs b/service_vm/requests/src/rkp.rs
new file mode 100644
index 0000000..9901a92
--- /dev/null
+++ b/service_vm/requests/src/rkp.rs
@@ -0,0 +1,142 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! This module contains functions related to the attestation of the
+//! service VM via the RKP (Remote Key Provisioning) server.
+
+use crate::keyblob::EncryptedKeyBlob;
+use crate::pub_key::{build_maced_public_key, validate_public_key};
+use alloc::string::String;
+use alloc::vec;
+use alloc::vec::Vec;
+use bssl_avf::EcKey;
+use ciborium::{cbor, value::Value};
+use core::result;
+use coset::{iana, AsCborValue, CoseSign1, CoseSign1Builder, HeaderBuilder};
+use diced_open_dice::{derive_cdi_leaf_priv, kdf, sign, DiceArtifacts, PrivateKey};
+use log::error;
+use service_vm_comm::{EcdsaP256KeyPair, GenerateCertificateRequestParams, RequestProcessingError};
+use zeroize::Zeroizing;
+
+type Result<T> = result::Result<T, RequestProcessingError>;
+
+/// The salt is generated randomly with:
+/// hexdump -vn32 -e'16/1 "0x%02X, " 1 "\n"' /dev/urandom
+const HMAC_KEY_SALT: [u8; 32] = [
+    0x82, 0x80, 0xFA, 0xD3, 0xA8, 0x0A, 0x9A, 0x4B, 0xF7, 0xA5, 0x7D, 0x7B, 0xE9, 0xC3, 0xAB, 0x13,
+    0x89, 0xDC, 0x7B, 0x46, 0xEE, 0x71, 0x22, 0xB4, 0x5F, 0x4C, 0x3F, 0xE2, 0x40, 0x04, 0x3B, 0x6C,
+];
+const HMAC_KEY_INFO: &[u8] = b"rialto hmac wkey";
+const HMAC_KEY_LENGTH: usize = 32;
+
+pub(super) fn generate_ecdsa_p256_key_pair(
+    dice_artifacts: &dyn DiceArtifacts,
+) -> Result<EcdsaP256KeyPair> {
+    let hmac_key = derive_hmac_key(dice_artifacts)?;
+    let mut ec_key = EcKey::new_p256()?;
+    ec_key.generate_key()?;
+
+    let maced_public_key = build_maced_public_key(ec_key.cose_public_key()?, hmac_key.as_ref())?;
+    let key_blob =
+        EncryptedKeyBlob::new(ec_key.ec_private_key()?.as_slice(), dice_artifacts.cdi_seal())?;
+
+    let key_pair =
+        EcdsaP256KeyPair { maced_public_key, key_blob: cbor_util::serialize(&key_blob)? };
+    Ok(key_pair)
+}
+
+const CSR_PAYLOAD_SCHEMA_V3: u8 = 3;
+const AUTH_REQ_SCHEMA_V1: u8 = 1;
+// TODO(b/300624493): Add a new certificate type for AVF CSR.
+const CERTIFICATE_TYPE: &str = "keymint";
+
+/// Builds the CSR described in:
+///
+/// hardware/interfaces/security/rkp/aidl/android/hardware/security/keymint/
+/// generateCertificateRequestV2.cddl
+pub(super) fn generate_certificate_request(
+    params: GenerateCertificateRequestParams,
+    dice_artifacts: &dyn DiceArtifacts,
+) -> Result<Vec<u8>> {
+    let hmac_key = derive_hmac_key(dice_artifacts)?;
+    let mut public_keys: Vec<Value> = Vec::new();
+    for key_to_sign in params.keys_to_sign {
+        let public_key = validate_public_key(&key_to_sign, hmac_key.as_ref())?;
+        public_keys.push(public_key.to_cbor_value()?);
+    }
+    // Builds `CsrPayload`.
+    // TODO(b/299256925): The device information is currently empty as we do not
+    // have sufficient details to include.
+    let device_info = Value::Map(Vec::new());
+    let csr_payload = cbor!([
+        Value::Integer(CSR_PAYLOAD_SCHEMA_V3.into()),
+        Value::Text(String::from(CERTIFICATE_TYPE)),
+        device_info,
+        Value::Array(public_keys),
+    ])?;
+    let csr_payload = cbor_util::serialize(&csr_payload)?;
+
+    // Builds `SignedData`.
+    let signed_data_payload =
+        cbor!([Value::Bytes(params.challenge.to_vec()), Value::Bytes(csr_payload)])?;
+    let signed_data = build_signed_data(&signed_data_payload, dice_artifacts)?.to_cbor_value()?;
+
+    // Builds `AuthenticatedRequest<CsrPayload>`.
+    // Currently `UdsCerts` is left empty because it is only needed for Samsung devices.
+    // Check http://b/301574013#comment3 for more information.
+    let uds_certs = Value::Map(Vec::new());
+    let dice_cert_chain = dice_artifacts.bcc().ok_or(RequestProcessingError::MissingDiceChain)?;
+    let dice_cert_chain: Value = cbor_util::deserialize(dice_cert_chain)?;
+    let auth_req = cbor!([
+        Value::Integer(AUTH_REQ_SCHEMA_V1.into()),
+        uds_certs,
+        dice_cert_chain,
+        signed_data,
+    ])?;
+    Ok(cbor_util::serialize(&auth_req)?)
+}
+
+fn derive_hmac_key(dice_artifacts: &dyn DiceArtifacts) -> Result<Zeroizing<[u8; HMAC_KEY_LENGTH]>> {
+    let mut key = Zeroizing::new([0u8; HMAC_KEY_LENGTH]);
+    kdf(dice_artifacts.cdi_seal(), &HMAC_KEY_SALT, HMAC_KEY_INFO, key.as_mut()).map_err(|e| {
+        error!("Failed to compute the HMAC key: {e}");
+        RequestProcessingError::InternalError
+    })?;
+    Ok(key)
+}
+
+/// Builds the `SignedData` for the given payload.
+fn build_signed_data(payload: &Value, dice_artifacts: &dyn DiceArtifacts) -> Result<CoseSign1> {
+    let cdi_leaf_priv = derive_cdi_leaf_priv(dice_artifacts).map_err(|e| {
+        error!("Failed to derive the CDI_Leaf_Priv: {e}");
+        RequestProcessingError::InternalError
+    })?;
+    let signing_algorithm = iana::Algorithm::EdDSA;
+    let protected = HeaderBuilder::new().algorithm(signing_algorithm).build();
+    let signed_data = CoseSign1Builder::new()
+        .protected(protected)
+        .payload(cbor_util::serialize(payload)?)
+        .try_create_signature(&[], |message| sign_message(message, &cdi_leaf_priv))?
+        .build();
+    Ok(signed_data)
+}
+
+fn sign_message(message: &[u8], private_key: &PrivateKey) -> Result<Vec<u8>> {
+    Ok(sign(message, private_key.as_array())
+        .map_err(|e| {
+            error!("Failed to sign the CSR: {e}");
+            RequestProcessingError::InternalError
+        })?
+        .to_vec())
+}
diff --git a/service_vm/test_apk/Android.bp b/service_vm/test_apk/Android.bp
new file mode 100644
index 0000000..681f4e8
--- /dev/null
+++ b/service_vm/test_apk/Android.bp
@@ -0,0 +1,34 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+android_app {
+    name: "ServiceVmClientTestApp",
+    installable: true,
+    jni_libs: ["libservice_vm_client"],
+    jni_uses_platform_apis: true,
+    use_embedded_native_libs: true,
+    sdk_version: "system_current",
+    compile_multilib: "first",
+    apex_available: ["com.android.virt"],
+}
+
+rust_defaults {
+    name: "service_vm_client_defaults",
+    crate_name: "service_vm_client",
+    defaults: ["avf_build_flags_rust"],
+    srcs: ["src/main.rs"],
+    prefer_rlib: true,
+    rustlibs: [
+        "libandroid_logger",
+        "libanyhow",
+        "liblog_rust",
+        "libvm_payload_bindgen",
+    ],
+}
+
+rust_ffi {
+    name: "libservice_vm_client",
+    defaults: ["service_vm_client_defaults"],
+}
diff --git a/service_vm/test_apk/AndroidManifest.xml b/service_vm/test_apk/AndroidManifest.xml
new file mode 100644
index 0000000..b3598fc
--- /dev/null
+++ b/service_vm/test_apk/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2023 The Android Open Source Project
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+      package="com.android.virt.service_vm.client">
+     <uses-permission android:name="android.permission.MANAGE_VIRTUAL_MACHINE" />
+     <uses-permission android:name="android.permission.USE_CUSTOM_VIRTUAL_MACHINE" />
+
+     <application android:hasCode="false"/>
+</manifest>
diff --git a/service_vm/test_apk/assets/config.json b/service_vm/test_apk/assets/config.json
new file mode 100644
index 0000000..02749fe
--- /dev/null
+++ b/service_vm/test_apk/assets/config.json
@@ -0,0 +1,10 @@
+{
+    "os": {
+      "name": "microdroid"
+    },
+    "task": {
+      "type": "microdroid_launcher",
+      "command": "libservice_vm_client.so"
+    },
+    "export_tombstones": true
+  }
\ No newline at end of file
diff --git a/service_vm/test_apk/src/main.rs b/service_vm/test_apk/src/main.rs
new file mode 100644
index 0000000..df60325
--- /dev/null
+++ b/service_vm/test_apk/src/main.rs
@@ -0,0 +1,229 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Main executable of Service VM client for manual testing.
+
+use anyhow::{anyhow, ensure, Result};
+use log::{error, info};
+use std::{
+    ffi::{c_void, CStr},
+    panic,
+    ptr::{self, NonNull},
+    result,
+};
+use vm_payload_bindgen::{
+    attestation_status_t, AVmAttestationResult, AVmAttestationResult_free,
+    AVmAttestationResult_getCertificateAt, AVmAttestationResult_getCertificateCount,
+    AVmAttestationResult_getPrivateKey, AVmAttestationResult_resultToString,
+    AVmAttestationResult_sign, AVmPayload_requestAttestation,
+};
+
+/// Entry point of the Service VM client.
+#[allow(non_snake_case)]
+#[no_mangle]
+pub extern "C" fn AVmPayload_main() {
+    android_logger::init_once(
+        android_logger::Config::default()
+            .with_tag("service_vm_client")
+            .with_max_level(log::LevelFilter::Debug),
+    );
+    // Redirect panic messages to logcat.
+    panic::set_hook(Box::new(|panic_info| {
+        error!("{}", panic_info);
+    }));
+    if let Err(e) = try_main() {
+        error!("failed with {:?}", e);
+        std::process::exit(1);
+    }
+}
+
+fn try_main() -> Result<()> {
+    info!("Welcome to Service VM Client!");
+
+    let too_big_challenge = &[0u8; 66];
+    let res = AttestationResult::request_attestation(too_big_challenge);
+    ensure!(res.is_err());
+    let status = res.unwrap_err();
+    ensure!(
+        status == attestation_status_t::ATTESTATION_ERROR_INVALID_CHALLENGE,
+        "Unexpected status: {:?}",
+        status
+    );
+    info!("Status: {:?}", status_to_cstr(status));
+
+    // The data below is only a placeholder generated randomly with urandom
+    let challenge = &[
+        0x6c, 0xad, 0x52, 0x50, 0x15, 0xe7, 0xf4, 0x1d, 0xa5, 0x60, 0x7e, 0xd2, 0x7d, 0xf1, 0x51,
+        0x67, 0xc3, 0x3e, 0x73, 0x9b, 0x30, 0xbd, 0x04, 0x20, 0x2e, 0xde, 0x3b, 0x1d, 0xc8, 0x07,
+        0x11, 0x7b,
+    ];
+    let res = AttestationResult::request_attestation(challenge)
+        .map_err(|e| anyhow!("Unexpected status: {:?}", status_to_cstr(e)))?;
+
+    let cert_chain = res.certificate_chain()?;
+    info!("Attestation result certificateChain = {:?}", cert_chain);
+
+    let private_key = res.private_key()?;
+    info!("Attestation result privateKey = {:?}", private_key);
+
+    let message = b"Hello from Service VM client";
+    info!("Signing message: {:?}", message);
+    let signature = res.sign(message)?;
+    info!("Signature: {:?}", signature);
+
+    Ok(())
+}
+
+#[derive(Debug)]
+struct AttestationResult(NonNull<AVmAttestationResult>);
+
+impl AttestationResult {
+    fn request_attestation(challenge: &[u8]) -> result::Result<Self, attestation_status_t> {
+        let mut res: *mut AVmAttestationResult = ptr::null_mut();
+        // SAFETY: It is safe as we only read the challenge within its bounds and the
+        // function does not retain any reference to it.
+        let status = unsafe {
+            AVmPayload_requestAttestation(
+                challenge.as_ptr() as *const c_void,
+                challenge.len(),
+                &mut res,
+            )
+        };
+        if status == attestation_status_t::ATTESTATION_OK {
+            info!("Attestation succeeds. Status: {:?}", status_to_cstr(status));
+            let res = NonNull::new(res).expect("The attestation result is null");
+            Ok(Self(res))
+        } else {
+            Err(status)
+        }
+    }
+
+    fn certificate_chain(&self) -> Result<Vec<Box<[u8]>>> {
+        let num_certs = get_certificate_count(self.as_ref());
+        let mut certs = Vec::with_capacity(num_certs);
+        for i in 0..num_certs {
+            certs.push(get_certificate_at(self.as_ref(), i)?);
+        }
+        Ok(certs)
+    }
+
+    fn private_key(&self) -> Result<Box<[u8]>> {
+        get_private_key(self.as_ref())
+    }
+
+    fn sign(&self, message: &[u8]) -> Result<Box<[u8]>> {
+        sign_with_attested_key(self.as_ref(), message)
+    }
+}
+
+impl AsRef<AVmAttestationResult> for AttestationResult {
+    fn as_ref(&self) -> &AVmAttestationResult {
+        // SAFETY: This field is private, and only populated with a successful call to
+        // `AVmPayload_requestAttestation`.
+        unsafe { self.0.as_ref() }
+    }
+}
+
+impl Drop for AttestationResult {
+    fn drop(&mut self) {
+        // SAFETY: This field is private, and only populated with a successful call to
+        // `AVmPayload_requestAttestation`, and not freed elsewhere.
+        unsafe { AVmAttestationResult_free(self.0.as_ptr()) };
+    }
+}
+
+fn get_certificate_count(res: &AVmAttestationResult) -> usize {
+    // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+    // before getting freed.
+    unsafe { AVmAttestationResult_getCertificateCount(res) }
+}
+
+fn get_certificate_at(res: &AVmAttestationResult, index: usize) -> Result<Box<[u8]>> {
+    let size =
+        // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+        // before getting freed.
+        unsafe { AVmAttestationResult_getCertificateAt(res, index, ptr::null_mut(), 0) };
+    let mut cert = vec![0u8; size];
+    // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+    // before getting freed. This function only writes within the bounds of `cert`.
+    // And `cert` cannot overlap `res` because we just allocated it.
+    let size = unsafe {
+        AVmAttestationResult_getCertificateAt(
+            res,
+            index,
+            cert.as_mut_ptr() as *mut c_void,
+            cert.len(),
+        )
+    };
+    ensure!(size == cert.len());
+    Ok(cert.into_boxed_slice())
+}
+
+fn get_private_key(res: &AVmAttestationResult) -> Result<Box<[u8]>> {
+    let size =
+        // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+        // before getting freed.
+        unsafe { AVmAttestationResult_getPrivateKey(res, ptr::null_mut(), 0) };
+    let mut private_key = vec![0u8; size];
+    // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+    // before getting freed. This function only writes within the bounds of `private_key`.
+    // And `private_key` cannot overlap `res` because we just allocated it.
+    let size = unsafe {
+        AVmAttestationResult_getPrivateKey(
+            res,
+            private_key.as_mut_ptr() as *mut c_void,
+            private_key.len(),
+        )
+    };
+    ensure!(size == private_key.len());
+    Ok(private_key.into_boxed_slice())
+}
+
+fn sign_with_attested_key(res: &AVmAttestationResult, message: &[u8]) -> Result<Box<[u8]>> {
+    // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+    // before getting freed.
+    let size = unsafe {
+        AVmAttestationResult_sign(
+            res,
+            message.as_ptr() as *const c_void,
+            message.len(),
+            ptr::null_mut(),
+            0,
+        )
+    };
+    let mut signature = vec![0u8; size];
+    // SAFETY: The result is returned by `AVmPayload_requestAttestation` and should be valid
+    // before getting freed. This function only writes within the bounds of `signature`.
+    // And `signature` cannot overlap `res` because we just allocated it.
+    let size = unsafe {
+        AVmAttestationResult_sign(
+            res,
+            message.as_ptr() as *const c_void,
+            message.len(),
+            signature.as_mut_ptr() as *mut c_void,
+            signature.len(),
+        )
+    };
+    ensure!(size == signature.len());
+    Ok(signature.into_boxed_slice())
+}
+
+fn status_to_cstr(status: attestation_status_t) -> &'static CStr {
+    // SAFETY: The function only reads the given enum status and returns a pointer to a
+    // static string.
+    let message = unsafe { AVmAttestationResult_resultToString(status) };
+    // SAFETY: The pointer returned by `AVmAttestationResult_resultToString` is guaranteed to
+    // point to a valid C String.
+    unsafe { CStr::from_ptr(message) }
+}
diff --git a/tests/aidl/Android.bp b/tests/aidl/Android.bp
index ed4e8ff..7e22646 100644
--- a/tests/aidl/Android.bp
+++ b/tests/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/tests/aidl/com/android/microdroid/testservice/IBenchmarkService.aidl b/tests/aidl/com/android/microdroid/testservice/IBenchmarkService.aidl
index c8c8660..4d043f6 100644
--- a/tests/aidl/com/android/microdroid/testservice/IBenchmarkService.aidl
+++ b/tests/aidl/com/android/microdroid/testservice/IBenchmarkService.aidl
@@ -18,7 +18,7 @@
 
 /** {@hide} */
 interface IBenchmarkService {
-    const int SERVICE_PORT = 5677;
+    const int PORT = 5677;
 
     /**
      * Measures the read rate for reading the given file.
diff --git a/tests/aidl/com/android/microdroid/testservice/ITestService.aidl b/tests/aidl/com/android/microdroid/testservice/ITestService.aidl
index 36c3aaf..e81f6d7 100644
--- a/tests/aidl/com/android/microdroid/testservice/ITestService.aidl
+++ b/tests/aidl/com/android/microdroid/testservice/ITestService.aidl
@@ -22,7 +22,7 @@
  * {@hide}
  */
 interface ITestService {
-    const long SERVICE_PORT = 5678;
+    const long PORT = 5678;
 
     const long ECHO_REVERSE_PORT = 0x80000001L; // Deliberately chosen to be > 2^31, < 2^32
 
@@ -55,6 +55,9 @@
     /** Returns a mask of effective capabilities that the process running the payload binary has. */
     String[] getEffectiveCapabilities();
 
+    /* Return the uid of the process running the binary. */
+    int getUid();
+
     /* write the content into the specified file. */
     void writeToFile(String content, String path);
 
@@ -70,6 +73,9 @@
     /** Requests the VM to asynchronously call appCallback.setVmCallback() */
     void requestCallback(IAppCallback appCallback);
 
+    /** Read a line from /dev/console */
+    String readLineFromConsole();
+
     /**
      * Request the service to exit, triggering the termination of the VM. This may cause any
      * requests in flight to fail.
diff --git a/tests/benchmark/Android.bp b/tests/benchmark/Android.bp
index 9c512bf..31fe0f6 100644
--- a/tests/benchmark/Android.bp
+++ b/tests/benchmark/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -14,7 +15,7 @@
         "androidx.test.runner",
         "androidx.test.ext.junit",
         "com.android.microdroid.testservice-java",
-        "truth-prebuilt",
+        "truth",
     ],
     jni_libs: [
         "MicrodroidBenchmarkNativeLib",
@@ -26,7 +27,9 @@
     sdk_version: "test_current",
     use_embedded_native_libs: true,
     compile_multilib: "64",
+    required: ["perf-setup"],
     host_required: ["MicrodroidTestPreparer"],
+    data: [":test_microdroid_vendor_image"],
 }
 
 cc_library_shared {
diff --git a/tests/benchmark/AndroidTest.xml b/tests/benchmark/AndroidTest.xml
index 8c8bfbe..11b17f4 100644
--- a/tests/benchmark/AndroidTest.xml
+++ b/tests/benchmark/AndroidTest.xml
@@ -30,6 +30,14 @@
         <option name="post-push" value="chmod 755 /data/local/tmp/perf-setup.sh;/data/local/tmp/perf-setup.sh" />
         <option name="cleanup" value="true" />
     </target_preparer>
+    <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
+        <option name="run-command" value="mkdir -p /data/local/tmp/microdroid-bench" />
+        <option name="teardown-command" value="rm -rf /data/local/tmp/microdroid-bench" />
+    </target_preparer>
+    <target_preparer class="com.android.compatibility.common.tradefed.targetprep.FilePusher">
+        <option name="cleanup" value="true" />
+        <option name="push" value="test_microdroid_vendor_image.img->/data/local/tmp/microdroid-bench/microdroid_vendor_image.img" />
+    </target_preparer>
     <target_preparer class="com.android.microdroid.test.preparer.DisableMicrodroidDebugPolicyPreparer" />
     <test class="com.android.tradefed.testtype.AndroidJUnitTest" >
         <option name="package" value="com.android.microdroid.benchmark" />
diff --git a/tests/benchmark/assets/vm_config.json b/tests/benchmark/assets/microdroid/vm_config.json
similarity index 100%
rename from tests/benchmark/assets/vm_config.json
rename to tests/benchmark/assets/microdroid/vm_config.json
diff --git a/tests/benchmark/assets/vm_config_io.json b/tests/benchmark/assets/microdroid/vm_config_io.json
similarity index 100%
rename from tests/benchmark/assets/vm_config_io.json
rename to tests/benchmark/assets/microdroid/vm_config_io.json
diff --git a/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config.json b/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config.json
new file mode 100644
index 0000000..c4fdc6e
--- /dev/null
+++ b/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config.json
@@ -0,0 +1,10 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidIdleNativeLib.so"
+  },
+  "export_tombstones": true
+}
diff --git a/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config_io.json b/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config_io.json
new file mode 100644
index 0000000..34c204e
--- /dev/null
+++ b/tests/benchmark/assets/microdroid_gki-android14-6.1/vm_config_io.json
@@ -0,0 +1,15 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidBenchmarkNativeLib.so"
+  },
+  "apexes": [
+    {
+      "name": "com.android.virt"
+    }
+  ],
+  "export_tombstones": true
+}
diff --git a/tests/benchmark/src/java/com/android/microdroid/benchmark/BenchmarkVmListener.java b/tests/benchmark/src/java/com/android/microdroid/benchmark/BenchmarkVmListener.java
index cbb9a0a..e225a59 100644
--- a/tests/benchmark/src/java/com/android/microdroid/benchmark/BenchmarkVmListener.java
+++ b/tests/benchmark/src/java/com/android/microdroid/benchmark/BenchmarkVmListener.java
@@ -20,6 +20,7 @@
 
 import android.os.RemoteException;
 import android.system.virtualmachine.VirtualMachine;
+import android.system.virtualmachine.VirtualMachineException;
 import android.util.Log;
 
 import com.android.microdroid.test.device.MicrodroidDeviceTestBase.VmEventListener;
@@ -32,6 +33,8 @@
 class BenchmarkVmListener extends VmEventListener {
     private static final String TAG = "BenchmarkVm";
 
+    private boolean mPayloadReady;
+
     interface InnerListener {
         /** This is invoked when both the payload and {@link IBenchmarkService} are ready. */
         void onPayloadReady(VirtualMachine vm, IBenchmarkService benchmarkService)
@@ -46,10 +49,11 @@
 
     @Override
     public final void onPayloadReady(VirtualMachine vm) {
+        mPayloadReady = true;
         try {
             IBenchmarkService benchmarkService =
                     IBenchmarkService.Stub.asInterface(
-                            vm.connectToVsockServer(IBenchmarkService.SERVICE_PORT));
+                            vm.connectToVsockServer(IBenchmarkService.PORT));
             assertThat(benchmarkService).isNotNull();
 
             mListener.onPayloadReady(vm, benchmarkService);
@@ -60,7 +64,20 @@
         forceStop(vm);
     }
 
+    @Override
+    public void onError(VirtualMachine vm, int errorCode, String message) {
+        throw new RuntimeException("Error while benchmark (" + errorCode + "): " + message);
+    }
+
     static BenchmarkVmListener create(InnerListener listener) {
         return new BenchmarkVmListener(listener);
     }
+
+    @Override
+    public void runToFinish(String logTag, VirtualMachine vm)
+            throws VirtualMachineException, InterruptedException {
+        mPayloadReady = false;
+        super.runToFinish(logTag, vm);
+        assertThat(mPayloadReady).isTrue();
+    }
 }
diff --git a/tests/benchmark/src/java/com/android/microdroid/benchmark/MicrodroidBenchmarks.java b/tests/benchmark/src/java/com/android/microdroid/benchmark/MicrodroidBenchmarks.java
index c210ea6..e9c84fb 100644
--- a/tests/benchmark/src/java/com/android/microdroid/benchmark/MicrodroidBenchmarks.java
+++ b/tests/benchmark/src/java/com/android/microdroid/benchmark/MicrodroidBenchmarks.java
@@ -24,6 +24,7 @@
 import static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;
 
 import static com.google.common.truth.Truth.assertThat;
+import static com.google.common.truth.Truth.assertWithMessage;
 import static com.google.common.truth.TruthJUnit.assume;
 
 import android.app.Instrumentation;
@@ -37,6 +38,7 @@
 import android.system.virtualmachine.VirtualMachineConfig;
 import android.system.virtualmachine.VirtualMachineException;
 import android.system.Os;
+import android.system.virtualmachine.VirtualMachineManager;
 import android.util.Log;
 
 import com.android.microdroid.test.common.MetricsProcessor;
@@ -47,6 +49,7 @@
 
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.Timeout;
@@ -64,6 +67,7 @@
 import java.io.Writer;
 import java.nio.file.Files;
 import java.util.ArrayList;
+import java.util.Collection;
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.List;
@@ -77,6 +81,7 @@
     private static final String TAG = "MicrodroidBenchmarks";
     private static final String METRIC_NAME_PREFIX = getMetricPrefix() + "microdroid/";
     private static final int IO_TEST_TRIAL_COUNT = 5;
+    private static final int TEST_TRIAL_COUNT = 5;
     private static final long ONE_MEBI = 1024 * 1024;
 
     @Rule public Timeout globalTimeout = Timeout.seconds(300);
@@ -88,12 +93,23 @@
     private static final String MICRODROID_IMG_PREFIX = "microdroid_";
     private static final String MICRODROID_IMG_SUFFIX = ".img";
 
-    @Parameterized.Parameters(name = "protectedVm={0}")
-    public static Object[] protectedVmConfigs() {
-        return new Object[] {false, true};
+    @Parameterized.Parameters(name = "protectedVm={0},gki={1}")
+    public static Collection<Object[]> params() {
+        List<Object[]> ret = new ArrayList<>();
+        ret.add(new Object[] {true /* protectedVm */, null /* use microdroid kernel */});
+        ret.add(new Object[] {false /* protectedVm */, null /* use microdroid kernel */});
+        for (String gki : SUPPORTED_GKI_VERSIONS) {
+            ret.add(new Object[] {true /* protectedVm */, gki});
+            ret.add(new Object[] {false /* protectedVm */, gki});
+        }
+        return ret;
     }
 
-    @Parameterized.Parameter public boolean mProtectedVm;
+    @Parameterized.Parameter(0)
+    public boolean mProtectedVm;
+
+    @Parameterized.Parameter(1)
+    public String mGki;
 
     private final MetricsProcessor mMetricsProcessor = new MetricsProcessor(METRIC_NAME_PREFIX);
 
@@ -116,7 +132,7 @@
     public void setup() throws IOException {
         grantPermission(VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION);
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
-        prepareTestSetup(mProtectedVm);
+        prepareTestSetup(mProtectedVm, mGki);
         setMaxPerformanceTaskProfile();
         mInstrumentation = getInstrumentation();
     }
@@ -131,8 +147,7 @@
     private boolean canBootMicrodroidWithMemory(int mem)
             throws VirtualMachineException, InterruptedException, IOException {
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidIdleNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidIdleNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .setMemoryBytes(mem * ONE_MEBI)
                         .build();
@@ -197,8 +212,10 @@
         }
     }
 
-    private BootTimeStats runBootTimeTest(
+    private void runBootTimeTest(
             String name,
+            String payloadConfig,
+            boolean fullDebug,
             Function<VirtualMachineConfig.Builder, VirtualMachineConfig.Builder> fnConfig)
             throws VirtualMachineException, InterruptedException, IOException {
         assume().withMessage("Skip on CF; too slow").that(isCuttlefish()).isFalse();
@@ -208,10 +225,12 @@
         BootTimeStats stats = new BootTimeStats(trialCount);
         for (int i = 0; i < trialCount; i++) {
             VirtualMachineConfig.Builder builder =
-                    newVmConfigBuilder()
-                            .setPayloadBinaryName("MicrodroidIdleNativeLib.so")
+                    newVmConfigBuilderWithPayloadBinary("MicrodroidIdleNativeLib.so")
                             .setMemoryBytes(256 * ONE_MEBI)
                             .setDebugLevel(DEBUG_LEVEL_NONE);
+            if (fullDebug) {
+                builder = builder.setDebugLevel(DEBUG_LEVEL_FULL).setVmOutputCaptured(true);
+            }
             VirtualMachineConfig config = fnConfig.apply(builder).build();
             forceCreateNewVirtualMachine(name, config);
 
@@ -219,42 +238,68 @@
             assertThat(result.payloadStarted).isTrue();
             stats.collect(result);
         }
-        return stats;
+
+        reportMetrics(stats.get(BootTimeMetric.TOTAL), "boot_time", "ms");
+        if (fullDebug) {
+            reportMetrics(stats.get(BootTimeMetric.VM_START), "vm_starting_time", "ms");
+            reportMetrics(stats.get(BootTimeMetric.BOOTLOADER), "bootloader_time", "ms");
+            reportMetrics(stats.get(BootTimeMetric.KERNEL), "kernel_boot_time", "ms");
+            reportMetrics(stats.get(BootTimeMetric.USERSPACE), "userspace_boot_time", "ms");
+        }
     }
 
     @Test
     public void testMicrodroidBootTime()
             throws VirtualMachineException, InterruptedException, IOException {
-        BootTimeStats stats =
-                runBootTimeTest(
-                        "test_vm_boot_time",
-                        (builder) -> builder.setCpuTopology(CPU_TOPOLOGY_ONE_CPU));
-        reportMetrics(stats.get(BootTimeMetric.TOTAL), "boot_time", "ms");
+        runBootTimeTest(
+                "test_vm_boot_time",
+                "assets/" + os() + "/vm_config.json",
+                /* fullDebug */ false,
+                (builder) -> builder.setCpuTopology(CPU_TOPOLOGY_ONE_CPU));
     }
-
     @Test
     public void testMicrodroidHostCpuTopologyBootTime()
             throws VirtualMachineException, InterruptedException, IOException {
-        BootTimeStats stats =
-                runBootTimeTest(
-                        "test_vm_boot_time_host_topology",
-                        (builder) -> builder.setCpuTopology(CPU_TOPOLOGY_MATCH_HOST));
-        reportMetrics(stats.get(BootTimeMetric.TOTAL), "boot_time", "ms");
+        runBootTimeTest(
+                "test_vm_boot_time_host_topology",
+                "assets/" + os() + "/vm_config.json",
+                /* fullDebug */ false,
+                (builder) -> builder.setCpuTopology(CPU_TOPOLOGY_MATCH_HOST));
     }
 
     @Test
     public void testMicrodroidDebugBootTime()
             throws VirtualMachineException, InterruptedException, IOException {
-        BootTimeStats stats =
-                runBootTimeTest(
-                        "test_vm_boot_time_debug",
-                        (builder) ->
-                                builder.setDebugLevel(DEBUG_LEVEL_FULL).setVmOutputCaptured(true));
-        reportMetrics(stats.get(BootTimeMetric.TOTAL), "boot_time", "ms");
-        reportMetrics(stats.get(BootTimeMetric.VM_START), "vm_starting_time", "ms");
-        reportMetrics(stats.get(BootTimeMetric.BOOTLOADER), "bootloader_time", "ms");
-        reportMetrics(stats.get(BootTimeMetric.KERNEL), "kernel_boot_time", "ms");
-        reportMetrics(stats.get(BootTimeMetric.USERSPACE), "userspace_boot_time", "ms");
+        runBootTimeTest(
+                "test_vm_boot_time_debug",
+                "assets/" + os() + "/vm_config.json",
+                /* fullDebug */ true,
+                (builder) -> builder);
+    }
+
+    // TODO(b/323768068): Enable this test when we can inject vendor digest for test purpose.
+    // After introducing VM reference DT, non-pVM cannot trust test_microdroid_vendor_image.img
+    // as well, because it doesn't pass the hashtree digest of testing image into VM.
+    @Ignore
+    @Test
+    public void testMicrodroidDebugBootTime_withVendorPartition() throws Exception {
+        assume().withMessage("Cuttlefish doesn't support device tree under" + " /proc/device-tree")
+                .that(isCuttlefish())
+                .isFalse();
+        // TODO(b/317567210): Boots fails with vendor partition in HWASAN enabled microdroid
+        // after introducing verification based on DT and fstab in microdroid vendor partition.
+        assume().withMessage("Boot with vendor partition is failing in HWASAN enabled Microdroid.")
+                .that(isHwasan())
+                .isFalse();
+        assumeFeatureEnabled(VirtualMachineManager.FEATURE_VENDOR_MODULES);
+
+        File vendorDiskImage =
+                new File("/data/local/tmp/microdroid-bench/microdroid_vendor_image.img");
+        runBootTimeTest(
+                "test_vm_boot_time_debug_with_vendor_partition",
+                "assets/" + os() + "/vm_config.json",
+                /* fullDebug */ true,
+                (builder) -> builder.setVendorDiskImage(vendorDiskImage));
     }
 
     @Test
@@ -281,8 +326,7 @@
     @Test
     public void testVsockTransferFromHostToVM() throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_io.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_io.json")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .build();
         List<Double> transferRates = new ArrayList<>(IO_TEST_TRIAL_COUNT);
@@ -308,8 +352,7 @@
 
     private void testVirtioBlkReadRate(boolean isRand) throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_io.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_io.json")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .build();
         List<Double> readRates = new ArrayList<>(IO_TEST_TRIAL_COUNT);
@@ -455,8 +498,7 @@
     public void testMemoryUsage() throws Exception {
         final String vmName = "test_vm_mem_usage";
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_io.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_io.json")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .setMemoryBytes(256 * ONE_MEBI)
                         .build();
@@ -467,6 +509,8 @@
 
         BenchmarkVmListener.create(listener).runToFinish(TAG, vm);
 
+        assertWithMessage("VM failed to start").that(listener.mCrosvm).isNotNull();
+
         double mem_overall = 256.0;
         double mem_total = (double) listener.mMemTotal / 1024.0;
         double mem_free = (double) listener.mMemFree / 1024.0;
@@ -540,14 +584,15 @@
     public void testMemoryReclaim() throws Exception {
         final String vmName = "test_vm_mem_reclaim";
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_io.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_io.json")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .setMemoryBytes(256 * ONE_MEBI)
                         .build();
         VirtualMachine vm = forceCreateNewVirtualMachine(vmName, config);
         MemoryReclaimListener listener = new MemoryReclaimListener(this::executeCommand);
         BenchmarkVmListener.create(listener).runToFinish(TAG, vm);
+        assertWithMessage("VM failed to start").that(listener.mPreCrosvm).isNotNull();
+        assertWithMessage("Post trim stats not available").that(listener.mPostCrosvm).isNotNull();
 
         double mem_pre_crosvm_host_rss = (double) listener.mPreCrosvm.mHostRss / 1024.0;
         double mem_pre_crosvm_host_pss = (double) listener.mPreCrosvm.mHostPss / 1024.0;
@@ -658,8 +703,7 @@
         final int NUM_REQUESTS = 10_000;
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .build();
 
@@ -707,8 +751,7 @@
         final int NUM_REQUESTS = 10_000;
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .build();
 
@@ -762,4 +805,34 @@
         }
         reportMetrics(requestLatencies, "latency/vsock", "us");
     }
+
+    @Test
+    public void testVmKillTime() throws Exception {
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_io.json")
+                        .setDebugLevel(DEBUG_LEVEL_NONE)
+                        .build();
+        List<Double> vmKillTime = new ArrayList<>(TEST_TRIAL_COUNT);
+
+        for (int i = 0; i < TEST_TRIAL_COUNT; ++i) {
+            VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_kill_time" + i, config);
+            VmEventListener listener =
+                    new VmEventListener() {
+                        @Override
+                        public void onPayloadReady(VirtualMachine vm) {
+                            long start = System.nanoTime();
+                            try {
+                                vm.stop();
+                            } catch (Exception e) {
+                                Log.e(TAG, "Error in vm.stop():" + e);
+                                throw new RuntimeException(e);
+                            }
+                            vmKillTime.add((double) (System.nanoTime() - start) / NANO_TO_MICRO);
+                            super.onPayloadReady(vm);
+                        }
+                    };
+            listener.runToFinish(TAG, vm);
+        }
+        reportMetrics(vmKillTime, "vm_kill_time", "microsecond");
+    }
 }
diff --git a/tests/benchmark/src/jni/Android.bp b/tests/benchmark/src/jni/Android.bp
index e1bc8b0..c2e1b7c 100644
--- a/tests/benchmark/src/jni/Android.bp
+++ b/tests/benchmark/src/jni/Android.bp
@@ -1,10 +1,11 @@
-package{
-    default_applicable_licenses : ["Android-Apache-2.0"],
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 cc_library_shared {
     name: "libiovsock_host_jni",
-    srcs: [ "io_vsock_host_jni.cpp" ],
+    srcs: ["io_vsock_host_jni.cpp"],
     header_libs: ["jni_headers"],
     shared_libs: ["libbase"],
-}
\ No newline at end of file
+}
diff --git a/tests/benchmark/src/native/benchmarkbinary.cpp b/tests/benchmark/src/native/benchmarkbinary.cpp
index 6cfc71d..5d93b93 100644
--- a/tests/benchmark/src/native/benchmarkbinary.cpp
+++ b/tests/benchmark/src/native/benchmarkbinary.cpp
@@ -185,8 +185,8 @@
 Result<void> run_io_benchmark_tests() {
     auto test_service = ndk::SharedRefBase::make<IOBenchmarkService>();
     auto callback = []([[maybe_unused]] void* param) { AVmPayload_notifyPayloadReady(); };
-    AVmPayload_runVsockRpcServer(test_service->asBinder().get(), test_service->SERVICE_PORT,
-                                 callback, nullptr);
+    AVmPayload_runVsockRpcServer(test_service->asBinder().get(), test_service->PORT, callback,
+                                 nullptr);
     return {};
 }
 } // Anonymous namespace
diff --git a/tests/benchmark_hostside/Android.bp b/tests/benchmark_hostside/Android.bp
index e053406..8727b05 100644
--- a/tests/benchmark_hostside/Android.bp
+++ b/tests/benchmark_hostside/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -13,6 +14,7 @@
     static_libs: [
         "MicrodroidHostTestHelper",
         "MicrodroidTestHelper",
+        "MicrodroidTestPreparer",
     ],
     test_suites: [
         "general-tests",
diff --git a/tests/benchmark_hostside/java/android/avf/test/AVFHostTestCase.java b/tests/benchmark_hostside/java/android/avf/test/AVFHostTestCase.java
index 8c6218c..f01a76b 100644
--- a/tests/benchmark_hostside/java/android/avf/test/AVFHostTestCase.java
+++ b/tests/benchmark_hostside/java/android/avf/test/AVFHostTestCase.java
@@ -45,7 +45,6 @@
 import org.junit.runner.RunWith;
 
 import java.util.ArrayList;
-import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 import java.util.regex.Matcher;
@@ -60,9 +59,6 @@
     // Files that define the "test" instance of CompOS
     private static final String COMPOS_TEST_ROOT = "/data/misc/apexdata/com.android.compos/test/";
 
-    private static final String SYSTEM_SERVER_COMPILER_FILTER_PROP_NAME =
-            "dalvik.vm.systemservercompilerfilter";
-
     private static final String BOOTLOADER_TIME_PROP_NAME = "ro.boot.boottime";
     private static final String BOOTLOADER_PREFIX = "bootloader-";
     private static final String BOOTLOADER_TIME = "bootloader_time";
@@ -74,7 +70,6 @@
     private static final int COMPILE_STAGED_APEX_RETRY_INTERVAL_MS = 10 * 1000;
     private static final int COMPILE_STAGED_APEX_TIMEOUT_SEC = 540;
     private static final int BOOT_COMPLETE_TIMEOUT_MS = 10 * 60 * 1000;
-    private static final double NANOS_IN_SEC = 1_000_000_000.0;
     private static final int ROUND_COUNT = 5;
     private static final int ROUND_IGNORE_STARTUP_TIME = 3;
     private static final String APK_NAME = "MicrodroidTestApp.apk";
@@ -85,12 +80,9 @@
 
     private boolean mNeedTearDown = false;
 
-    private boolean mNeedToRestartPkvmStatus = false;
-
     @Before
     public void setUp() throws Exception {
         mNeedTearDown = false;
-        mNeedToRestartPkvmStatus = false;
 
         assumeDeviceIsCapable(getDevice());
         mNeedTearDown = true;
@@ -108,11 +100,6 @@
             // sees, so we can't rely on that - b/268688303.)
             return;
         }
-        // Restore PKVM status and reboot to prevent previous staged session, if switched.
-        if (mNeedToRestartPkvmStatus) {
-            setPKVMStatusWithRebootToBootloader(true);
-            rebootFromBootloaderAndWaitBootCompleted();
-        }
 
         CommandRunner android = new CommandRunner(getDevice());
 
@@ -121,16 +108,6 @@
     }
 
     @Test
-    public void testBootEnablePKVM() throws Exception {
-        enableDisablePKVMTestHelper(true);
-    }
-
-    @Test
-    public void testBootDisablePKVM() throws Exception {
-        enableDisablePKVMTestHelper(false);
-    }
-
-    @Test
     public void testBootWithCompOS() throws Exception {
         composTestHelper(true);
     }
@@ -254,7 +231,7 @@
         android.tryRun("rm", "-rf", MicrodroidHostTestCaseBase.TEST_ROOT);
 
         // Donate 80% of the available device memory to the VM
-        final String configPath = "assets/vm_config.json";
+        final String configPath = "assets/microdroid/vm_config.json";
         final int vm_mem_mb = getFreeMemoryInfoMb(android) * 80 / 100;
         ITestDevice microdroidDevice =
                 MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
@@ -262,32 +239,34 @@
                         .memoryMib(vm_mem_mb)
                         .cpuTopology("match_host")
                         .build(device);
-        microdroidDevice.waitForBootComplete(30000);
-        microdroidDevice.enableAdbRoot();
-
-        CommandRunner microdroid = new CommandRunner(microdroidDevice);
-
-        microdroid.run("mkdir -p /mnt/ramdisk && chmod 777 /mnt/ramdisk");
-        microdroid.run("mount -t tmpfs -o size=32G tmpfs /mnt/ramdisk");
-
-        // Allocate memory for the VM until it fails and make sure that we touch
-        // the allocated memory in the guest to be able to create stage2 fragmentation.
         try {
-            microdroid.tryRun(
-                    String.format(
-                            "cd /mnt/ramdisk && truncate -s %dM sprayMemory"
-                                    + " && dd if=/dev/zero of=sprayMemory bs=1MB count=%d",
-                            vm_mem_mb, vm_mem_mb));
-        } catch (Exception ex) {
-        }
+            microdroidDevice.waitForBootComplete(30000);
+            microdroidDevice.enableAdbRoot();
 
-        // Run the app during the VM run and collect cold startup time.
-        for (int i = 0; i < ROUND_COUNT; i++) {
-            AmStartupTimeCmdParser duringVmStartApp = getColdRunStartupTimes(android, pkgName);
-            metricColector.addStartupTimeMetricDuringVmRun(duringVmStartApp);
-        }
+            CommandRunner microdroid = new CommandRunner(microdroidDevice);
 
-        device.shutdownMicrodroid(microdroidDevice);
+            microdroid.run("mkdir -p /mnt/ramdisk && chmod 777 /mnt/ramdisk");
+            microdroid.run("mount -t tmpfs -o size=32G tmpfs /mnt/ramdisk");
+
+            // Allocate memory for the VM until it fails and make sure that we touch
+            // the allocated memory in the guest to be able to create stage2 fragmentation.
+            try {
+                microdroid.tryRun(
+                        String.format(
+                                "cd /mnt/ramdisk && truncate -s %dM sprayMemory"
+                                        + " && dd if=/dev/zero of=sprayMemory bs=1MB count=%d",
+                                vm_mem_mb, vm_mem_mb));
+            } catch (Exception expected) {
+            }
+
+            // Run the app during the VM run and collect cold startup time.
+            for (int i = 0; i < ROUND_COUNT; i++) {
+                AmStartupTimeCmdParser duringVmStartApp = getColdRunStartupTimes(android, pkgName);
+                metricColector.addStartupTimeMetricDuringVmRun(duringVmStartApp);
+            }
+        } finally {
+            device.shutdownMicrodroid(microdroidDevice);
+        }
 
         // Run the app after the VM run and collect cold startup time.
         for (int i = 0; i < ROUND_COUNT; i++) {
@@ -304,12 +283,12 @@
             String[] lines = startAppLog.split("[\r\n]+");
             mTotalTime = mWaitTime = 0;
 
-            for (int i = 0; i < lines.length; i++) {
-                if (lines[i].contains("TotalTime:")) {
-                    mTotalTime = Integer.parseInt(lines[i].replaceAll("\\D+", ""));
+            for (String line : lines) {
+                if (line.contains("TotalTime:")) {
+                    mTotalTime = Integer.parseInt(line.replaceAll("\\D+", ""));
                 }
-                if (lines[i].contains("WaitTime:")) {
-                    mWaitTime = Integer.parseInt(lines[i].replaceAll("\\D+", ""));
+                if (line.contains("WaitTime:")) {
+                    mWaitTime = Integer.parseInt(line.replaceAll("\\D+", ""));
                 }
             }
         }
@@ -365,9 +344,9 @@
         String content = android.runForResult("cat /proc/meminfo").getStdout().trim();
         String[] lines = content.split("[\r\n]+");
 
-        for (int i = 0; i < lines.length; i++) {
-            if (lines[i].contains("MemFree:")) {
-                freeMemory = Integer.parseInt(lines[i].replaceAll("\\D+", "")) / 1024;
+        for (String line : lines) {
+            if (line.contains("MemFree:")) {
+                freeMemory = Integer.parseInt(line.replaceAll("\\D+", "")) / 1024;
                 return freeMemory;
             }
         }
@@ -416,7 +395,7 @@
 
         CommandRunner android = new CommandRunner(getDevice());
         String result = android.run("dmesg");
-        Pattern pattern = Pattern.compile("\\[(.*)\\].*sys.boot_completed=1.*");
+        Pattern pattern = Pattern.compile("\\[(.*)].*sys.boot_completed=1.*");
         for (String line : result.split("[\r\n]+")) {
             Matcher matcher = pattern.matcher(line);
             if (matcher.find()) {
@@ -426,36 +405,6 @@
         throw new IllegalArgumentException("Failed to get boot time info.");
     }
 
-    private void enableDisablePKVMTestHelper(boolean isEnable) throws Exception {
-        assumePKVMStatusSwitchSupported();
-
-        List<Double> bootDmesgTime = new ArrayList<>(ROUND_COUNT);
-        Map<String, List<Double>> bootloaderTime = new HashMap<>();
-
-        setPKVMStatusWithRebootToBootloader(isEnable);
-        rebootFromBootloaderAndWaitBootCompleted();
-        for (int round = 0; round < ROUND_COUNT; ++round) {
-            getDevice().nonBlockingReboot();
-            waitForBootCompleted();
-
-            updateBootloaderTimeInfo(bootloaderTime);
-
-            double elapsedSec = getDmesgBootTime();
-            bootDmesgTime.add(elapsedSec);
-        }
-
-        String suffix = "";
-        if (isEnable) {
-            suffix = "enable";
-        } else {
-            suffix = "disable";
-        }
-
-        reportMetric(bootDmesgTime, "dmesg_boot_time_with_pkvm_" + suffix, "s");
-        reportAggregatedMetrics(bootloaderTime,
-                "bootloader_time_with_pkvm_" + suffix, "ms");
-    }
-
     private void composTestHelper(boolean isWithCompos) throws Exception {
         assumeFalse("Skip on CF; too slow", isCuttlefish());
 
@@ -463,11 +412,16 @@
 
         for (int round = 0; round < ROUND_COUNT; ++round) {
             reInstallApex(REINSTALL_APEX_TIMEOUT_SEC);
-            if (isWithCompos) {
-                compileStagedApex(COMPILE_STAGED_APEX_TIMEOUT_SEC);
+            try {
+                if (isWithCompos) {
+                    compileStagedApex(COMPILE_STAGED_APEX_TIMEOUT_SEC);
+                }
+            } finally {
+                // If compilation fails, we still have a staged APEX, and we need to reboot to
+                // clean that up for further tests.
+                getDevice().nonBlockingReboot();
+                waitForBootCompleted();
             }
-            getDevice().nonBlockingReboot();
-            waitForBootCompleted();
 
             double elapsedSec = getDmesgBootTime();
             bootDmesgTime.add(elapsedSec);
@@ -483,29 +437,6 @@
         reportMetric(bootDmesgTime, "dmesg_boot_time_" + suffix, "s");
     }
 
-    private void assumePKVMStatusSwitchSupported() throws Exception {
-        assumeFalse("Skip on CF; can't reboot to bootloader", isCuttlefish());
-
-        // This is an overkill. The intention is to exclude remote_device_proxy, which uses
-        // different serial for fastboot. But there's no good way to distinguish from regular IP
-        // transport. This is currently not a problem until someone really needs to run the test
-        // over regular IP transport.
-        assumeFalse("Skip over IP (overkill for remote_device_proxy)", getDevice().isAdbTcp());
-
-        if (!getDevice().isStateBootloaderOrFastbootd()) {
-            getDevice().rebootIntoBootloader();
-        }
-        getDevice().waitForDeviceBootloader();
-
-        CommandResult result;
-        result = getDevice().executeFastbootCommand("oem", "pkvm", "status");
-        rebootFromBootloaderAndWaitBootCompleted();
-        assumeFalse(result.getStderr().contains("Invalid oem command"));
-        // Skip the test if running on a build with pkvm_enabler. Disabling pKVM
-        // for such builds results in a bootloop.
-        assumeTrue(result.getStderr().contains("misc=auto"));
-    }
-
     private void reportMetric(List<Double> data, String name, String unit) {
         CLog.d("Report metric " + name + "(" + unit + ") : " + data.toString());
         Map<String, Double> stats = mMetricsProcessor.computeStats(data, name, unit);
@@ -515,50 +446,6 @@
         }
     }
 
-    private void reportAggregatedMetrics(Map<String, List<Double>> bootloaderTime,
-            String prefix, String unit) {
-
-        for (Map.Entry<String, List<Double>> entry : bootloaderTime.entrySet()) {
-            reportMetric(entry.getValue(), prefix + "_" + entry.getKey(), unit);
-        }
-    }
-
-    private void setPKVMStatusWithRebootToBootloader(boolean isEnable) throws Exception {
-        mNeedToRestartPkvmStatus = true;
-
-        if (!getDevice().isStateBootloaderOrFastbootd()) {
-            getDevice().rebootIntoBootloader();
-        }
-        getDevice().waitForDeviceBootloader();
-
-        CommandResult result;
-        if (isEnable) {
-            result = getDevice().executeFastbootCommand("oem", "pkvm", "enable");
-        } else {
-            result = getDevice().executeFastbootCommand("oem", "pkvm", "disable");
-        }
-
-        result = getDevice().executeFastbootCommand("oem", "pkvm", "status");
-        CLog.i("Gets PKVM status : " + result);
-
-        String expectedOutput = "";
-
-        if (isEnable) {
-            expectedOutput = "pkvm is enabled";
-        } else {
-            expectedOutput = "pkvm is disabled";
-        }
-        assertWithMessage("Failed to set PKVM status. Reason: " + result)
-            .that(result.toString()).ignoringCase().contains(expectedOutput);
-    }
-
-    private void rebootFromBootloaderAndWaitBootCompleted() throws Exception {
-        getDevice().executeFastbootCommand("reboot");
-        getDevice().waitForDeviceOnline(BOOT_COMPLETE_TIMEOUT_MS);
-        getDevice().waitForBootComplete(BOOT_COMPLETE_TIMEOUT_MS);
-        getDevice().enableAdbRoot();
-    }
-
     private void waitForBootCompleted() throws Exception {
         getDevice().waitForDeviceOnline(BOOT_COMPLETE_TIMEOUT_MS);
         getDevice().waitForBootComplete(BOOT_COMPLETE_TIMEOUT_MS);
@@ -568,15 +455,16 @@
     private void compileStagedApex(int timeoutSec) throws Exception {
 
         long timeStart = System.currentTimeMillis();
-        long timeEnd = timeStart + timeoutSec * 1000;
+        long timeEnd = timeStart + timeoutSec * 1000L;
 
         while (true) {
 
             try {
                 CommandRunner android = new CommandRunner(getDevice());
 
-                String result = android.run(
-                        COMPOSD_CMD_BIN + " staged-apex-compile");
+                String result =
+                        android.runWithTimeout(
+                                3 * 60 * 1000, COMPOSD_CMD_BIN + " staged-apex-compile");
                 assertWithMessage("Failed to compile staged APEX. Reason: " + result)
                     .that(result).ignoringCase().contains("all ok");
 
@@ -599,7 +487,7 @@
     private void reInstallApex(int timeoutSec) throws Exception {
 
         long timeStart = System.currentTimeMillis();
-        long timeEnd = timeStart + timeoutSec * 1000;
+        long timeEnd = timeStart + timeoutSec * 1000L;
 
         while (true) {
 
diff --git a/tests/helper/Android.bp b/tests/helper/Android.bp
index 6f07efd..9223391 100644
--- a/tests/helper/Android.bp
+++ b/tests/helper/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -17,7 +18,7 @@
         "androidx.test.ext.junit",
         "com.android.microdroid.testservice-java",
         "MicrodroidTestHelper",
-        "truth-prebuilt",
+        "truth",
     ],
     sdk_version: "test_current",
 }
diff --git a/tests/helper/src/java/com/android/microdroid/test/common/DeviceProperties.java b/tests/helper/src/java/com/android/microdroid/test/common/DeviceProperties.java
index 23f8ca6..2ea748b 100644
--- a/tests/helper/src/java/com/android/microdroid/test/common/DeviceProperties.java
+++ b/tests/helper/src/java/com/android/microdroid/test/common/DeviceProperties.java
@@ -28,10 +28,12 @@
 
     private static final String KEY_VENDOR_DEVICE = "ro.product.vendor.device";
     private static final String KEY_BUILD_TYPE = "ro.build.type";
+    private static final String KEY_PRODUCT_NAME = "ro.product.name";
     private static final String KEY_METRICS_TAG = "debug.hypervisor.metrics_tag";
 
     private static final String CUTTLEFISH_DEVICE_PREFIX = "vsoc_";
     private static final String USER_BUILD_TYPE = "user";
+    private static final String HWASAN_SUFFIX = "_hwasan";
 
     private final PropertyGetter mPropertyGetter;
 
@@ -53,6 +55,14 @@
     }
 
     /**
+     * @return whether the build is HWASAN.
+     */
+    public boolean isHwasan() {
+        String productName = getProperty(KEY_PRODUCT_NAME);
+        return productName != null && productName.contains(HWASAN_SUFFIX);
+    }
+
+    /**
      * @return whether the device is user build.
      */
     public boolean isUserBuild() {
diff --git a/tests/helper/src/java/com/android/microdroid/test/device/MicrodroidDeviceTestBase.java b/tests/helper/src/java/com/android/microdroid/test/device/MicrodroidDeviceTestBase.java
index 32ebf21..15e175b 100644
--- a/tests/helper/src/java/com/android/microdroid/test/device/MicrodroidDeviceTestBase.java
+++ b/tests/helper/src/java/com/android/microdroid/test/device/MicrodroidDeviceTestBase.java
@@ -48,7 +48,11 @@
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.HashSet;
 import java.util.OptionalLong;
+import java.util.Set;
 import java.util.concurrent.CompletableFuture;
 import java.util.concurrent.ExecutorService;
 import java.util.concurrent.Executors;
@@ -58,10 +62,17 @@
     private static final String TAG = "MicrodroidDeviceTestBase";
     private final String MAX_PERFORMANCE_TASK_PROFILE = "CPUSET_SP_TOP_APP";
 
+    protected static final Set<String> SUPPORTED_GKI_VERSIONS =
+            Collections.unmodifiableSet(new HashSet(Arrays.asList("android14-6.1")));
+
     public static boolean isCuttlefish() {
         return getDeviceProperties().isCuttlefish();
     }
 
+    public static boolean isHwasan() {
+        return getDeviceProperties().isHwasan();
+    }
+
     public static boolean isUserBuild() {
         return getDeviceProperties().isUserBuild();
     }
@@ -101,6 +112,7 @@
 
     private Context mCtx;
     private boolean mProtectedVm;
+    private String mGki;
 
     protected Context getContext() {
         return mCtx;
@@ -110,14 +122,27 @@
         return mCtx.getSystemService(VirtualMachineManager.class);
     }
 
-    public VirtualMachineConfig.Builder newVmConfigBuilder() {
-        return new VirtualMachineConfig.Builder(mCtx).setProtectedVm(mProtectedVm);
+    public VirtualMachineConfig.Builder newVmConfigBuilderWithPayloadConfig(String configPath) {
+        return new VirtualMachineConfig.Builder(mCtx)
+                .setProtectedVm(mProtectedVm)
+                .setPayloadConfigPath(configPath);
+    }
+
+    public VirtualMachineConfig.Builder newVmConfigBuilderWithPayloadBinary(String binaryPath) {
+        return new VirtualMachineConfig.Builder(mCtx)
+                .setProtectedVm(mProtectedVm)
+                .setOs(os())
+                .setPayloadBinaryName(binaryPath);
     }
 
     protected final boolean isProtectedVm() {
         return mProtectedVm;
     }
 
+    protected final String os() {
+        return mGki != null ? "microdroid_gki-" + mGki : "microdroid";
+    }
+
     /**
      * Creates a new virtual machine, potentially removing an existing virtual machine with given
      * name.
@@ -132,13 +157,14 @@
         return vmm.create(name, config);
     }
 
-    public void prepareTestSetup(boolean protectedVm) {
+    public void prepareTestSetup(boolean protectedVm, String gki) {
         mCtx = ApplicationProvider.getApplicationContext();
         assume().withMessage("Device doesn't support AVF")
                 .that(mCtx.getPackageManager().hasSystemFeature(FEATURE_VIRTUALIZATION_FRAMEWORK))
                 .isTrue();
 
         mProtectedVm = protectedVm;
+        mGki = gki;
 
         int capabilities = getVirtualMachineManager().getCapabilities();
         if (protectedVm) {
@@ -150,6 +176,15 @@
                     .that(capabilities & VirtualMachineManager.CAPABILITY_NON_PROTECTED_VM)
                     .isNotEqualTo(0);
         }
+
+        try {
+            assume().withMessage("Skip where requested OS \"" + os() + "\" isn't supported")
+                    .that(os())
+                    .isIn(getVirtualMachineManager().getSupportedOSList());
+        } catch (VirtualMachineException e) {
+            Log.e(TAG, "Error getting supported OS list", e);
+            throw new RuntimeException("Failed to get supported OS list.", e);
+        }
     }
 
     public abstract static class VmEventListener implements VirtualMachineCallback {
@@ -162,7 +197,7 @@
         private StringBuilder mLogOutput = new StringBuilder();
         private boolean mProcessedBootTimeMetrics = false;
 
-        private void processBootTimeMetrics(String log) {
+        private synchronized void processBootTimeMetrics(String log) {
             if (!mVcpuStartedNanoTime.isPresent()) {
                 mVcpuStartedNanoTime = OptionalLong.of(System.nanoTime());
             }
@@ -179,12 +214,8 @@
         }
 
         private void logVmOutputAndMonitorBootTimeMetrics(
-                String tag,
-                InputStream vmOutputStream,
-                String name,
-                StringBuilder result,
-                boolean monitorEvents) {
-            mProcessedBootTimeMetrics |= monitorEvents;
+                String tag, InputStream vmOutputStream, String name, StringBuilder result) {
+            mProcessedBootTimeMetrics = true;
             new Thread(
                             () -> {
                                 try {
@@ -194,7 +225,7 @@
                                     String line;
                                     while ((line = reader.readLine()) != null
                                             && !Thread.interrupted()) {
-                                        if (monitorEvents) processBootTimeMetrics(line);
+                                        processBootTimeMetrics(line);
                                         Log.i(tag, name + ": " + line);
                                         result.append(line + "\n");
                                     }
@@ -205,17 +236,6 @@
                     .start();
         }
 
-        private void logVmOutputAndMonitorBootTimeMetrics(
-                String tag, InputStream vmOutputStream, String name, StringBuilder result) {
-            logVmOutputAndMonitorBootTimeMetrics(tag, vmOutputStream, name, result, true);
-        }
-
-        /** Copy output from the VM to logcat. This is helpful when things go wrong. */
-        protected void logVmOutput(
-                String tag, InputStream vmOutputStream, String name, StringBuilder result) {
-            logVmOutputAndMonitorBootTimeMetrics(tag, vmOutputStream, name, result, false);
-        }
-
         public void runToFinish(String logTag, VirtualMachine vm)
                 throws VirtualMachineException, InterruptedException {
             vm.setCallback(mExecutorService, this);
@@ -223,7 +243,7 @@
             if (vm.getConfig().isVmOutputCaptured()) {
                 logVmOutputAndMonitorBootTimeMetrics(
                         logTag, vm.getConsoleOutput(), "Console", mConsoleOutput);
-                logVmOutput(logTag, vm.getLogOutput(), "Log", mLogOutput);
+                logVmOutputAndMonitorBootTimeMetrics(logTag, vm.getLogOutput(), "Log", mLogOutput);
             }
             mExecutorService.awaitTermination(300, TimeUnit.SECONDS);
         }
@@ -468,11 +488,13 @@
         public String mApkContentsPath;
         public String mEncryptedStoragePath;
         public String[] mEffectiveCapabilities;
+        public int mUid;
         public String mFileContent;
         public byte[] mBcc;
         public long[] mTimings;
         public int mFileMode;
         public int mMountFlags;
+        public String mConsoleInput;
 
         public void assertNoException() {
             if (mException != null) {
@@ -498,7 +520,7 @@
                         try {
                             mTestService =
                                     ITestService.Stub.asInterface(
-                                            vm.connectToVsockServer(ITestService.SERVICE_PORT));
+                                            vm.connectToVsockServer(ITestService.PORT));
                             // Make sure linkToDeath works, and include it in the log in case it's
                             // helpful.
                             mTestService
@@ -561,6 +583,14 @@
         void runTests(ITestService testService, TestResults testResults) throws Exception;
     }
 
+    protected void assumeFeatureEnabled(String featureName) throws Exception {
+        assumeTrue(featureName + " not enabled", isFeatureEnabled(featureName));
+    }
+
+    protected boolean isFeatureEnabled(String featureName) throws Exception {
+        return getVirtualMachineManager().isFeatureEnabled(featureName);
+    }
+
     protected void assumeProtectedVM() {
         assumeTrue("Skip on non-protected VM", mProtectedVm);
     }
diff --git a/tests/hostside/Android.bp b/tests/hostside/Android.bp
index 873cc38..2cfaffa 100644
--- a/tests/hostside/Android.bp
+++ b/tests/hostside/Android.bp
@@ -1,27 +1,8 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
-genrule_defaults {
-    name: "test_avf_debug_policy_overlay",
-    tools: ["dtc"],
-    cmd: "$(location dtc) -I dts -O dtb $(in) -o $(out)",
-}
-
-genrule {
-    name: "test_avf_debug_policy_with_adb",
-    defaults: ["test_avf_debug_policy_overlay"],
-    srcs: ["assets/avf_debug_policy_with_adb.dts"],
-    out: ["avf_debug_policy_with_adb.dtbo"],
-}
-
-genrule {
-    name: "test_avf_debug_policy_without_adb",
-    defaults: ["test_avf_debug_policy_overlay"],
-    srcs: ["assets/avf_debug_policy_without_adb.dts"],
-    out: ["avf_debug_policy_without_adb.dtbo"],
-}
-
 java_test_host {
     name: "MicrodroidHostTestCases",
     srcs: ["java/**/*.java"],
@@ -36,9 +17,9 @@
     static_libs: [
         "MicrodroidHostTestHelper",
         "compatibility-host-util",
+        "cts-host-utils",
         "cts-statsd-atom-host-test-utils",
         "microdroid_payload_metadata",
-        "MicrodroidTestPreparer", // Workaround for sandboxed test environment to install this
     ],
     per_testcase_directory: true,
     data: [
@@ -46,10 +27,6 @@
         ":microdroid_general_sepolicy.conf",
         ":test.com.android.virt.pem",
         ":test2.com.android.virt.pem",
-        ":pvmfw_test",
-        ":test_avf_debug_policy_with_adb",
-        ":test_avf_debug_policy_without_adb",
-        "assets/bcc.dat",
     ],
     data_native_bins: [
         "sepolicy-analyze",
@@ -76,5 +53,4 @@
         "libsparse",
         "libz",
     ],
-    required: ["MicrodroidTestPreparer"],
 }
diff --git a/tests/hostside/helper/Android.bp b/tests/hostside/helper/Android.bp
index e8b6f36..890e14a 100644
--- a/tests/hostside/helper/Android.bp
+++ b/tests/hostside/helper/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -9,7 +10,7 @@
         "androidx.annotation_annotation",
         "compatibility-tradefed",
         "tradefed",
-        "truth-prebuilt",
+        "truth",
     ],
     static_libs: [
         "MicrodroidTestHelper",
diff --git a/tests/hostside/helper/java/com/android/microdroid/test/host/CommandRunner.java b/tests/hostside/helper/java/com/android/microdroid/test/host/CommandRunner.java
index 846531d..242dbde 100644
--- a/tests/hostside/helper/java/com/android/microdroid/test/host/CommandRunner.java
+++ b/tests/hostside/helper/java/com/android/microdroid/test/host/CommandRunner.java
@@ -66,9 +66,7 @@
 
     public String runWithTimeout(long timeoutMillis, String... cmd)
             throws DeviceNotAvailableException {
-        CommandResult result =
-                mDevice.executeShellV2Command(
-                        join(cmd), timeoutMillis, java.util.concurrent.TimeUnit.MILLISECONDS);
+        CommandResult result = runForResultWithTimeout(timeoutMillis, cmd);
         if (result.getStatus() != CommandStatus.SUCCESS) {
             fail(join(cmd) + " has failed: " + result);
         }
diff --git a/tests/hostside/helper/java/com/android/microdroid/test/host/MicrodroidHostTestCaseBase.java b/tests/hostside/helper/java/com/android/microdroid/test/host/MicrodroidHostTestCaseBase.java
index 81ccec7..9e19b7d 100644
--- a/tests/hostside/helper/java/com/android/microdroid/test/host/MicrodroidHostTestCaseBase.java
+++ b/tests/hostside/helper/java/com/android/microdroid/test/host/MicrodroidHostTestCaseBase.java
@@ -33,9 +33,17 @@
 import com.android.tradefed.util.CommandResult;
 import com.android.tradefed.util.RunUtil;
 
+import org.json.JSONArray;
+
 import java.io.File;
 import java.io.FileNotFoundException;
+import java.util.ArrayList;
 import java.util.Arrays;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+import java.util.stream.Collectors;
 
 public abstract class MicrodroidHostTestCaseBase extends BaseHostJUnit4Test {
     protected static final String TEST_ROOT = "/data/local/tmp/virt/";
@@ -52,6 +60,9 @@
             (int) (MICRODROID_ADB_CONNECT_TIMEOUT_MINUTES * 60 * 1000
                 / MICRODROID_COMMAND_RETRY_INTERVAL_MILLIS);
 
+    protected static final Set<String> SUPPORTED_GKI_VERSIONS =
+            Collections.unmodifiableSet(new HashSet(Arrays.asList("android14-6.1")));
+
     public static void prepareVirtualizationTestSetup(ITestDevice androidDevice)
             throws DeviceNotAvailableException {
         CommandRunner android = new CommandRunner(androidDevice);
@@ -89,6 +100,10 @@
         return DeviceProperties.create(getDevice()::getProperty).isCuttlefish();
     }
 
+    protected boolean isHwasan() {
+        return DeviceProperties.create(getDevice()::getProperty).isHwasan();
+    }
+
     protected String getMetricPrefix() {
         return MetricsProcessor.getMetricPrefix(
                 DeviceProperties.create(getDevice()::getProperty).getMetricsTag());
@@ -108,6 +123,13 @@
         LogArchiver.archiveLogThenDelete(logs, device, remotePath, localName);
     }
 
+    public static void setPropertyOrThrow(ITestDevice device, String propertyName, String value)
+            throws DeviceNotAvailableException {
+        if (!device.setProperty(propertyName, value)) {
+            throw new RuntimeException("Failed to set sysprop " + propertyName + " to " + value);
+        }
+    }
+
     // Run an arbitrary command in the host side and returns the result.
     // Note failure is not an error.
     public static String tryRunOnHost(String... cmd) {
@@ -147,4 +169,35 @@
                 .that(pathLine).startsWith("package:");
         return pathLine.substring("package:".length());
     }
+
+    public List<String> parseStringArrayFieldsFromVmInfo(String header) throws Exception {
+        CommandRunner android = new CommandRunner(getDevice());
+        String result = android.run("/apex/com.android.virt/bin/vm", "info");
+        List<String> ret = new ArrayList<>();
+        for (String line : result.split("\n")) {
+            if (!line.startsWith(header)) continue;
+
+            JSONArray jsonArray = new JSONArray(line.substring(header.length()));
+            for (int i = 0; i < jsonArray.length(); i++) {
+                ret.add(jsonArray.getString(i));
+            }
+            break;
+        }
+        return ret;
+    }
+
+    public List<String> getAssignableDevices() throws Exception {
+        return parseStringArrayFieldsFromVmInfo("Assignable devices: ");
+    }
+
+    public List<String> getSupportedOSList() throws Exception {
+        return parseStringArrayFieldsFromVmInfo("Available OS list: ");
+    }
+
+    public List<String> getSupportedGKIVersions() throws Exception {
+        return getSupportedOSList().stream()
+                .filter(os -> os.startsWith("microdroid_gki-"))
+                .map(os -> os.replaceFirst("^microdroid_gki-", ""))
+                .collect(Collectors.toList());
+    }
 }
diff --git a/tests/hostside/java/com/android/microdroid/test/MicrodroidHostTests.java b/tests/hostside/java/com/android/microdroid/test/MicrodroidHostTests.java
index 9dbaa5e..2cd4577 100644
--- a/tests/hostside/java/com/android/microdroid/test/MicrodroidHostTests.java
+++ b/tests/hostside/java/com/android/microdroid/test/MicrodroidHostTests.java
@@ -25,11 +25,14 @@
 
 import static org.hamcrest.CoreMatchers.containsString;
 import static org.junit.Assert.assertThat;
+import static org.junit.Assert.assertTrue;
 import static org.junit.Assume.assumeFalse;
 import static org.junit.Assume.assumeTrue;
 
 import static java.util.stream.Collectors.toList;
 
+import android.cts.host.utils.DeviceJUnit4ClassRunnerWithParameters;
+import android.cts.host.utils.DeviceJUnit4Parameterized;
 import android.cts.statsdatom.lib.ConfigUtils;
 import android.cts.statsdatom.lib.ReportUtils;
 
@@ -42,7 +45,6 @@
 import com.android.tradefed.device.DeviceNotAvailableException;
 import com.android.tradefed.device.ITestDevice;
 import com.android.tradefed.device.TestDevice;
-import com.android.tradefed.testtype.DeviceJUnit4ClassRunner;
 import com.android.tradefed.testtype.DeviceJUnit4ClassRunner.TestMetrics;
 import com.android.tradefed.util.CommandResult;
 import com.android.tradefed.util.FileUtil;
@@ -58,6 +60,8 @@
 import org.junit.Test;
 import org.junit.rules.TestName;
 import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.UseParametersRunnerFactory;
 import org.xml.sax.Attributes;
 import org.xml.sax.helpers.DefaultHandler;
 
@@ -67,6 +71,7 @@
 import java.io.PipedOutputStream;
 import java.util.ArrayList;
 import java.util.Arrays;
+import java.util.Collection;
 import java.util.Collections;
 import java.util.List;
 import java.util.Map;
@@ -77,14 +82,15 @@
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
-@RunWith(DeviceJUnit4ClassRunner.class)
+@RunWith(DeviceJUnit4Parameterized.class)
+@UseParametersRunnerFactory(DeviceJUnit4ClassRunnerWithParameters.RunnerFactory.class)
 public class MicrodroidHostTests extends MicrodroidHostTestCaseBase {
     private static final String APK_NAME = "MicrodroidTestApp.apk";
     private static final String PACKAGE_NAME = "com.android.microdroid.test";
     private static final String SHELL_PACKAGE_NAME = "com.android.shell";
     private static final String VIRT_APEX = "/apex/com.android.virt/";
 
-    private static final int MIN_MEM_ARM64 = 145;
+    private static final int MIN_MEM_ARM64 = 170;
     private static final int MIN_MEM_X86_64 = 196;
 
     private static final int BOOT_COMPLETE_TIMEOUT = 30000; // 30 seconds
@@ -97,6 +103,27 @@
         }
     }
 
+    @Parameterized.Parameters(name = "protectedVm={0},gki={1}")
+    public static Collection<Object[]> params() {
+        List<Object[]> ret = new ArrayList<>();
+        ret.add(new Object[] {true /* protectedVm */, null /* use microdroid kernel */});
+        ret.add(new Object[] {false /* protectedVm */, null /* use microdroid kernel */});
+        // TODO(b/302465542): run only the latest GKI on presubmit to reduce running time
+        for (String gki : SUPPORTED_GKI_VERSIONS) {
+            ret.add(new Object[] {true /* protectedVm */, gki});
+            ret.add(new Object[] {false /* protectedVm */, gki});
+        }
+        return ret;
+    }
+
+    @Parameterized.Parameter(0)
+    public boolean mProtectedVm;
+
+    @Parameterized.Parameter(1)
+    public String mGki;
+
+    private String mOs;
+
     @Rule public TestLogData mTestLogs = new TestLogData();
     @Rule public TestName mTestName = new TestName();
     @Rule public TestMetrics mMetrics = new TestMetrics();
@@ -125,7 +152,7 @@
             throws Exception {
         PayloadMetadata.write(
                 PayloadMetadata.metadata(
-                        "/mnt/apk/assets/vm_config.json",
+                        "/mnt/apk/assets/" + mOs + "/vm_config.json",
                         PayloadMetadata.apk("microdroid-apk"),
                         apexes.stream()
                                 .map(apex -> PayloadMetadata.apex(apex.name))
@@ -265,9 +292,11 @@
         File virtApexEtcDir = new File(virtApexDir, "etc");
         // We need only etc/ directory for images
         assertWithMessage("Failed to mkdir " + virtApexEtcDir)
-                .that(virtApexEtcDir.mkdirs()).isTrue();
+                .that(virtApexEtcDir.mkdirs())
+                .isTrue();
         assertWithMessage("Failed to pull " + VIRT_APEX + "etc")
-                .that(getDevice().pullDir(VIRT_APEX + "etc", virtApexEtcDir)).isTrue();
+                .that(getDevice().pullDir(VIRT_APEX + "etc", virtApexEtcDir))
+                .isTrue();
 
         resignVirtApex(virtApexDir, key, keyOverrides, updateBootconfigs);
 
@@ -307,7 +336,7 @@
         //   - its idsig
 
         // Load etc/microdroid.json
-        File microdroidConfigFile = new File(virtApexEtcDir, "microdroid.json");
+        File microdroidConfigFile = new File(virtApexEtcDir, mOs + ".json");
         JSONObject config = new JSONObject(FileUtil.readStringFromFile(microdroidConfigFile));
 
         // Replace paths so that the config uses re-signed images from TEST_ROOT
@@ -323,13 +352,15 @@
         }
 
         // Add partitions to the second disk
-        final String initrdPath = TEST_ROOT + "etc/microdroid_initrd_debuggable.img";
+        final String initrdPath = TEST_ROOT + "etc/" + mOs + "_initrd_debuggable.img";
         config.put("initrd", initrdPath);
         // Add instance image as a partition in disks[1]
-        disks.put(new JSONObject()
-                .put("writable", true)
-                .put("partitions",
-                        new JSONArray().put(newPartition("vm-instance", instanceImgPath))));
+        disks.put(
+                new JSONObject()
+                        .put("writable", true)
+                        .put(
+                                "partitions",
+                                new JSONArray().put(newPartition("vm-instance", instanceImgPath))));
         // Add payload image disk with partitions:
         // - payload-metadata
         // - apexes: com.android.os.statsd, com.android.adbd, [sharedlib apex](optional)
@@ -379,8 +410,8 @@
     @CddTest(requirements = {"9.17/C-2-1", "9.17/C-2-2", "9.17/C-2-6"})
     public void protectedVmRunsPvmfw() throws Exception {
         // Arrange
-        assumeProtectedVmSupported();
-        final String configPath = "assets/vm_config_apex.json";
+        assumeProtectedVm();
+        final String configPath = "assets/" + mOs + "/vm_config_apex.json";
 
         // Act
         mMicrodroidDevice =
@@ -405,25 +436,26 @@
 
     @Test
     @CddTest(requirements = {"9.17/C-2-1", "9.17/C-2-2", "9.17/C-2-6"})
-    public void protectedVmWithImageSignedWithDifferentKeyRunsPvmfw() throws Exception {
+    public void protectedVmWithImageSignedWithDifferentKeyFailsToVerifyPayload() throws Exception {
         // Arrange
-        assumeProtectedVmSupported();
+        assumeProtectedVm();
         File key = findTestFile("test.com.android.virt.pem");
 
         // Act
         VmInfo vmInfo =
                 runMicrodroidWithResignedImages(
                         key,
-                        /*keyOverrides=*/ Map.of(),
-                        /*isProtected=*/ true,
-                        /*updateBootconfigs=*/ true);
+                        /* keyOverrides= */ Map.of(),
+                        /* isProtected= */ true,
+                        /* updateBootconfigs= */ true);
 
         // Assert
         vmInfo.mProcess.waitFor(5L, TimeUnit.SECONDS);
         String consoleLog = getDevice().pullFileContents(CONSOLE_PATH);
         assertWithMessage("pvmfw should start").that(consoleLog).contains("pVM firmware");
-        // TODO(b/256148034): Asserts that pvmfw run fails when this verification is implemented.
-        // Also rename the test.
+        assertWithMessage("pvmfw should fail to verify the payload")
+                .that(consoleLog)
+                .contains("Failed to verify the payload");
         vmInfo.mProcess.destroy();
     }
 
@@ -431,12 +463,12 @@
     @CddTest(requirements = {"9.17/C-2-2", "9.17/C-2-6"})
     public void testBootSucceedsWhenNonProtectedVmStartsWithImagesSignedWithDifferentKey()
             throws Exception {
-        assumeNonProtectedVmSupported();
+        assumeNonProtectedVm();
         File key = findTestFile("test.com.android.virt.pem");
         Map<String, File> keyOverrides = Map.of();
         VmInfo vmInfo =
                 runMicrodroidWithResignedImages(
-                        key, keyOverrides, /*isProtected=*/ false, /*updateBootconfigs=*/ true);
+                        key, keyOverrides, /* isProtected= */ false, /* updateBootconfigs= */ true);
         assertThatEventually(
                 100000,
                 () ->
@@ -451,13 +483,13 @@
     @CddTest(requirements = {"9.17/C-2-2", "9.17/C-2-6"})
     public void testBootFailsWhenVbMetaDigestDoesNotMatchBootconfig() throws Exception {
         // protectedVmWithImageSignedWithDifferentKeyRunsPvmfw() is the protected case.
-        assumeNonProtectedVmSupported();
+        assumeNonProtectedVm();
         // Sign everything with key1 except vbmeta
         File key = findTestFile("test.com.android.virt.pem");
         // To be able to stop it, it should be a daemon.
         VmInfo vmInfo =
                 runMicrodroidWithResignedImages(
-                        key, Map.of(), /*isProtected=*/ false, /*updateBootconfigs=*/ false);
+                        key, Map.of(), /* isProtected= */ false, /* updateBootconfigs= */ false);
         // Wait so that init can print errors to console (time in cuttlefish >> in real device)
         assertThatEventually(
                 100000,
@@ -466,7 +498,7 @@
         vmInfo.mProcess.destroy();
     }
 
-    private void waitForCrosvmExit(CommandRunner android) throws Exception {
+    private void waitForCrosvmExit(CommandRunner android, String testStartTime) throws Exception {
         // TODO: improve crosvm exit check. b/258848245
         android.runWithTimeout(
                 15000,
@@ -474,10 +506,12 @@
                 "-m",
                 "1",
                 "-e",
-                "'virtualizationmanager::crosvm.*exited with status exit status:'");
+                "'virtualizationmanager::crosvm.*exited with status exit status:'",
+                "-T",
+                "'" + testStartTime + "'");
     }
 
-    private boolean isTombstoneReceivedFromHostLogcat() throws Exception {
+    private boolean isTombstoneReceivedFromHostLogcat(String testStartTime) throws Exception {
         // Note this method relies on logcat values being printed by the receiver on host
         // userspace crash log: virtualizationservice/src/aidl.rs
         // kernel ramdump log: virtualizationmanager/src/crosvm.rs
@@ -488,7 +522,7 @@
         String result =
                 tryRunOnHost(
                         "timeout",
-                        "10s",
+                        "3s",
                         "adb",
                         "-s",
                         getDevice().getSerialNumber(),
@@ -496,12 +530,17 @@
                         "-m",
                         "1",
                         "-e",
-                        ramdumpRegex);
+                        ramdumpRegex,
+                        "-T",
+                        testStartTime);
         return !result.trim().isEmpty();
     }
 
     private boolean isTombstoneGeneratedWithCmd(
             boolean protectedVm, String configPath, String... crashCommand) throws Exception {
+        CommandRunner android = new CommandRunner(getDevice());
+        String testStartTime = android.runWithTimeout(1000, "date", "'+%Y-%m-%d %H:%M:%S.%N'");
+
         mMicrodroidDevice =
                 MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
                         .debugLevel("full")
@@ -516,30 +555,19 @@
         microdroid.run(crashCommand);
 
         // check until microdroid is shut down
-        CommandRunner android = new CommandRunner(getDevice());
-        waitForCrosvmExit(android);
+        waitForCrosvmExit(android, testStartTime);
 
-        return isTombstoneReceivedFromHostLogcat();
+        return isTombstoneReceivedFromHostLogcat(testStartTime);
     }
 
     @Test
-    public void testTombstonesAreGeneratedUponUserspaceCrashOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        testTombstonesAreGeneratedUponUserspaceCrash(false);
-    }
-
-    @Test
-    public void testTombstonesAreGeneratedUponUserspaceCrashOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        testTombstonesAreGeneratedUponUserspaceCrash(true);
-    }
-
-    private void testTombstonesAreGeneratedUponUserspaceCrash(boolean protectedVm)
-            throws Exception {
+    public void testTombstonesAreGeneratedUponUserspaceCrash() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
         assertThat(
                         isTombstoneGeneratedWithCmd(
-                                protectedVm,
-                                "assets/vm_config.json",
+                                mProtectedVm,
+                                "assets/" + mOs + "/vm_config.json",
                                 "kill",
                                 "-SIGSEGV",
                                 "$(pidof microdroid_launcher)"))
@@ -547,38 +575,27 @@
     }
 
     @Test
-    public void testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrashOnNonPvm()
-            throws Exception {
-        assumeNonProtectedVmSupported();
-        testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrash(false);
-    }
-
-    @Test
-    public void testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrashOnPvm()
-            throws Exception {
-        assumeProtectedVmSupported();
-        testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrash(true);
-    }
-
-    private void testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrash(boolean protectedVm)
-            throws Exception {
+    public void testTombstonesAreNotGeneratedIfNotExportedUponUserspaceCrash() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
         assertThat(
                         isTombstoneGeneratedWithCmd(
-                                protectedVm,
-                                "assets/vm_config_no_tombstone.json",
+                                mProtectedVm,
+                                "assets/" + mOs + "/vm_config_no_tombstone.json",
                                 "kill",
                                 "-SIGSEGV",
                                 "$(pidof microdroid_launcher)"))
                 .isFalse();
     }
 
-    private void testTombstonesAreGeneratedUponKernelCrash(boolean protectedVm) throws Exception {
+    @Test
+    public void testTombstonesAreGeneratedUponKernelCrash() throws Exception {
         assumeFalse("Cuttlefish is not supported", isCuttlefish());
         assumeFalse("Skipping test because ramdump is disabled on user build", isUserBuild());
         assertThat(
                         isTombstoneGeneratedWithCmd(
-                                protectedVm,
-                                "assets/vm_config.json",
+                                mProtectedVm,
+                                "assets/" + mOs + "/vm_config.json",
                                 "echo",
                                 "c",
                                 ">",
@@ -586,22 +603,11 @@
                 .isTrue();
     }
 
-    @Test
-    public void testTombstonesAreGeneratedUponKernelCrashOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        testTombstonesAreGeneratedUponKernelCrash(/* protectedVm=*/ false);
-    }
-
-    @Test
-    public void testTombstonesAreGeneratedUponKernelCrashOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        testTombstonesAreGeneratedUponKernelCrash(/* protectedVm=*/ true);
-    }
-
     private boolean isTombstoneGeneratedWithVmRunApp(
             boolean protectedVm, boolean debuggable, String... additionalArgs) throws Exception {
         // we can't use microdroid builder as it wants ADB connection (debuggable)
         CommandRunner android = new CommandRunner(getDevice());
+        String testStartTime = android.runWithTimeout(1000, "date", "'+%Y-%m-%d %H:%M:%S.%N'");
 
         android.run("rm", "-rf", TEST_ROOT + "*");
         android.run("mkdir", "-p", TEST_ROOT + "*");
@@ -625,7 +631,7 @@
         Collections.addAll(cmd, additionalArgs);
 
         android.run(cmd.toArray(new String[0]));
-        return isTombstoneReceivedFromHostLogcat();
+        return isTombstoneReceivedFromHostLogcat(testStartTime);
     }
 
     private boolean isTombstoneGeneratedWithCrashPayload(boolean protectedVm, boolean debuggable)
@@ -635,98 +641,48 @@
     }
 
     @Test
-    public void testTombstonesAreGeneratedWithCrashPayloadOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashPayload(
-                                /*protectedVm=*/ true, /*debuggable=*/ true))
+    public void testTombstonesAreGeneratedWithCrashPayload() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
+        assertThat(isTombstoneGeneratedWithCrashPayload(mProtectedVm, /* debuggable= */ true))
                 .isTrue();
     }
 
     @Test
-    public void testTombstonesAreGeneratedWithCrashPayloadOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashPayload(
-                                /*protectedVm=*/ false, /*debuggable=*/ true))
-                .isTrue();
-    }
-
-    @Test
-    public void testTombstonesAreNotGeneratedWithCrashPayloadWhenNonDebuggableOnPvm()
-            throws Exception {
-        assumeProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashPayload(
-                                /*protectedVm=*/ true, /*debuggable=*/ false))
-                .isFalse();
-    }
-
-    @Test
-    public void testTombstonesAreNotGeneratedWithCrashPayloadWhenNonDebuggableOnNonPvm()
-            throws Exception {
-        assumeNonProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashPayload(
-                                /*protectedVm=*/ false, /*debuggable=*/ false))
+    public void testTombstonesAreNotGeneratedWithCrashPayloadWhenNonDebuggable() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
+        assertThat(isTombstoneGeneratedWithCrashPayload(mProtectedVm, /* debuggable= */ false))
                 .isFalse();
     }
 
     private boolean isTombstoneGeneratedWithCrashConfig(boolean protectedVm, boolean debuggable)
             throws Exception {
         return isTombstoneGeneratedWithVmRunApp(
-                protectedVm, debuggable, "--config-path", "assets/vm_config_crash.json");
+                protectedVm,
+                debuggable,
+                "--config-path",
+                "assets/" + mOs + "/vm_config_crash.json");
     }
 
     @Test
-    public void testTombstonesAreGeneratedWithCrashConfigOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        assertThat(isTombstoneGeneratedWithCrashConfig(/*protectedVm=*/ true, /*debuggable=*/ true))
+    public void testTombstonesAreGeneratedWithCrashConfig() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
+        assertThat(isTombstoneGeneratedWithCrashConfig(mProtectedVm, /* debuggable= */ true))
                 .isTrue();
     }
 
     @Test
-    public void testTombstonesAreGeneratedWithCrashConfigOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashConfig(
-                                /*protectedVm=*/ false, /*debuggable=*/ true))
-                .isTrue();
-    }
-
-    @Test
-    public void testTombstonesAreNotGeneratedWithCrashConfigWhenNonDebuggableOnPvm()
-            throws Exception {
-        assumeProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashConfig(
-                                /*protectedVm=*/ true, /*debuggable=*/ false))
+    public void testTombstonesAreNotGeneratedWithCrashConfigWhenNonDebuggable() throws Exception {
+        // TODO(b/291867858): tombstones are failing in HWASAN enabled Microdroid.
+        assumeFalse("tombstones are failing in HWASAN enabled Microdroid.", isHwasan());
+        assertThat(isTombstoneGeneratedWithCrashConfig(mProtectedVm, /* debuggable= */ false))
                 .isFalse();
     }
 
     @Test
-    public void testTombstonesAreNotGeneratedWithCrashConfigWhenNonDebuggableOnNonPvm()
-            throws Exception {
-        assumeNonProtectedVmSupported();
-        assertThat(
-                        isTombstoneGeneratedWithCrashConfig(
-                                /*protectedVm=*/ false, /*debuggable=*/ false))
-                .isFalse();
-    }
-
-    @Test
-    public void testTelemetryPushedAtomsOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        testTelemetryPushedAtoms(false);
-    }
-
-    @Test
-    public void testTelemetryPushedAtomsOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        testTelemetryPushedAtoms(true);
-    }
-
-    private void testTelemetryPushedAtoms(boolean protectedVm) throws Exception {
+    public void testTelemetryPushedAtoms() throws Exception {
         // Reset statsd config and report before the test
         ConfigUtils.removeConfig(getDevice());
         ReportUtils.clearReports(getDevice());
@@ -741,13 +697,13 @@
 
         // Create VM with microdroid
         TestDevice device = getAndroidDevice();
-        final String configPath = "assets/vm_config_apex.json"; // path inside the APK
+        final String configPath = "assets/" + mOs + "/vm_config_apex.json"; // path inside the APK
         ITestDevice microdroid =
                 MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
                         .debugLevel("full")
                         .memoryMib(minMemorySize())
                         .cpuTopology("match_host")
-                        .protectedVm(protectedVm)
+                        .protectedVm(mProtectedVm)
                         .build(device);
         microdroid.waitForBootComplete(BOOT_COMPLETE_TIMEOUT);
         device.shutdownMicrodroid(microdroid);
@@ -774,7 +730,7 @@
                 data.get(0).getAtom().getVmCreationRequested();
         assertThat(atomVmCreationRequested.getHypervisor())
                 .isEqualTo(AtomsProto.VmCreationRequested.Hypervisor.PKVM);
-        assertThat(atomVmCreationRequested.getIsProtected()).isEqualTo(protectedVm);
+        assertThat(atomVmCreationRequested.getIsProtected()).isEqualTo(mProtectedVm);
         assertThat(atomVmCreationRequested.getCreationSucceeded()).isTrue();
         assertThat(atomVmCreationRequested.getBinderExceptionCode()).isEqualTo(0);
         assertThat(atomVmCreationRequested.getVmIdentifier()).isEqualTo("VmRunApp");
@@ -801,31 +757,10 @@
                 .isLessThan(atomVmExited.getElapsedTimeMillis());
     }
 
-    @Test
-    @CddTest(requirements = {"9.17/C-1-1", "9.17/C-1-2", "9.17/C/1-3"})
-    public void testMicrodroidBootsOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        testMicrodroidBoots(true);
-    }
-
-    @Test
-    @CddTest(requirements = {"9.17/C-1-1", "9.17/C-1-2", "9.17/C/1-3"})
-    public void testMicrodroidBootsOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        testMicrodroidBoots(false);
-    }
-
-    private void testMicrodroidBoots(boolean protectedVm) throws Exception {
+    private void testMicrodroidBootsWithBuilder(MicrodroidBuilder builder) throws Exception {
         CommandRunner android = new CommandRunner(getDevice());
 
-        final String configPath = "assets/vm_config.json"; // path inside the APK
-        mMicrodroidDevice =
-                MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
-                        .debugLevel("full")
-                        .memoryMib(minMemorySize())
-                        .cpuTopology("match_host")
-                        .protectedVm(protectedVm)
-                        .build(getAndroidDevice());
+        mMicrodroidDevice = builder.build(getAndroidDevice());
         mMicrodroidDevice.waitForBootComplete(BOOT_COMPLETE_TIMEOUT);
         CommandRunner microdroid = new CommandRunner(mMicrodroidDevice);
 
@@ -847,16 +782,22 @@
 
         // Check if the native library in the APK is has correct filesystem info
         final String[] abis = microdroid.run("getprop", "ro.product.cpu.abilist").split(",");
-        assertThat(abis).hasLength(1);
+        assertWithMessage("Incorrect ABI list").that(abis).hasLength(1);
 
         // Check that no denials have happened so far
-        assertThat(android.tryRun("egrep", "'avc:[[:space:]]{1,2}denied'", LOG_PATH)).isNull();
-        assertThat(android.tryRun("egrep", "'avc:[[:space:]]{1,2}denied'", CONSOLE_PATH)).isNull();
+        assertWithMessage("Unexpected denials during VM boot")
+                .that(android.tryRun("egrep", "'avc:[[:space:]]{1,2}denied'", LOG_PATH))
+                .isNull();
+        assertWithMessage("Unexpected denials during VM boot")
+                .that(android.tryRun("egrep", "'avc:[[:space:]]{1,2}denied'", CONSOLE_PATH))
+                .isNull();
 
         assertThat(getDeviceNumCpus(microdroid)).isEqualTo(getDeviceNumCpus(android));
 
         // Check that selinux is enabled
-        assertThat(microdroid.run("getenforce")).isEqualTo("Enforcing");
+        assertWithMessage("SELinux should be in enforcing mode")
+                .that(microdroid.run("getenforce"))
+                .isEqualTo("Enforcing");
 
         // TODO(b/176805428): adb is broken for nested VM
         if (!isCuttlefish()) {
@@ -883,25 +824,26 @@
     }
 
     @Test
-    public void testMicrodroidRamUsageOnPvm() throws Exception {
-        assumeProtectedVmSupported();
-        testMicrodroidRamUsage(true);
+    @CddTest(requirements = {"9.17/C-1-1", "9.17/C-1-2", "9.17/C/1-3"})
+    public void testMicrodroidBoots() throws Exception {
+        final String configPath = "assets/" + mOs + "/vm_config.json"; // path inside the APK
+        testMicrodroidBootsWithBuilder(
+                MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
+                        .debugLevel("full")
+                        .memoryMib(minMemorySize())
+                        .cpuTopology("match_host")
+                        .protectedVm(mProtectedVm));
     }
 
     @Test
-    public void testMicrodroidRamUsageOnNonPvm() throws Exception {
-        assumeNonProtectedVmSupported();
-        testMicrodroidRamUsage(false);
-    }
-
-    private void testMicrodroidRamUsage(boolean protectedVm) throws Exception {
-        final String configPath = "assets/vm_config.json";
+    public void testMicrodroidRamUsage() throws Exception {
+        final String configPath = "assets/" + mOs + "/vm_config.json";
         mMicrodroidDevice =
                 MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
                         .debugLevel("full")
                         .memoryMib(minMemorySize())
                         .cpuTopology("match_host")
-                        .protectedVm(protectedVm)
+                        .protectedVm(mProtectedVm)
                         .build(getAndroidDevice());
         mMicrodroidDevice.waitForBootComplete(BOOT_COMPLETE_TIMEOUT);
         mMicrodroidDevice.enableAdbRoot();
@@ -926,8 +868,7 @@
         for (Map.Entry<Integer, String> proc :
                 ProcessUtil.getProcessMap(microdroidExec).entrySet()) {
             for (Map.Entry<String, Long> stat :
-                    ProcessUtil.getProcessSmapsRollup(proc.getKey(), microdroidExec)
-                            .entrySet()) {
+                    ProcessUtil.getProcessSmapsRollup(proc.getKey(), microdroidExec).entrySet()) {
                 String name = stat.getKey().toLowerCase();
                 mMetrics.addTestMetric(
                         mMetricPrefix + "smaps/" + name + "/" + proc.getValue(),
@@ -937,43 +878,6 @@
     }
 
     @Test
-    public void testCustomVirtualMachinePermission() throws Exception {
-        assumeTrue(
-                "Protected VMs are not supported",
-                getAndroidDevice().supportsMicrodroid(/*protectedVm=*/ true));
-        assumeTrue("Test requires adb unroot", getDevice().disableAdbRoot());
-        CommandRunner android = new CommandRunner(getDevice());
-
-        // Pull etc/microdroid.json
-        File virtApexDir = FileUtil.createTempDir("virt_apex");
-        File microdroidConfigFile = new File(virtApexDir, "microdroid.json");
-        assertThat(getDevice().pullFile(VIRT_APEX + "etc/microdroid.json", microdroidConfigFile))
-                .isTrue();
-        JSONObject config = new JSONObject(FileUtil.readStringFromFile(microdroidConfigFile));
-
-        // USE_CUSTOM_VIRTUAL_MACHINE is enforced only on protected mode
-        config.put("protected", true);
-
-        // Write updated config
-        final String configPath = TEST_ROOT + "raw_config.json";
-        getDevice().pushString(config.toString(), configPath);
-
-        // temporarily revoke the permission
-        android.run(
-                "pm",
-                "revoke",
-                SHELL_PACKAGE_NAME,
-                "android.permission.USE_CUSTOM_VIRTUAL_MACHINE");
-        final String ret =
-                android.runForResult(VIRT_APEX + "bin/vm run", configPath).getStderr().trim();
-
-        assertThat(ret)
-                .contains(
-                        "does not have the android.permission.USE_CUSTOM_VIRTUAL_MACHINE"
-                                + " permission");
-    }
-
-    @Test
     public void testPathToBinaryIsRejected() throws Exception {
         CommandRunner android = new CommandRunner(getDevice());
 
@@ -1034,7 +938,7 @@
         assumeFalse("Unlocked devices may have AVF debug policy", lockProp.equals("orange"));
 
         // Test that AVF debug policy doesn't exist.
-        boolean hasDebugPolicy = device.doesFileExist("/sys/firmware/devicetree/base/avf");
+        boolean hasDebugPolicy = device.doesFileExist("/proc/device-tree/avf");
         assertThat(hasDebugPolicy).isFalse();
     }
 
@@ -1079,6 +983,36 @@
         }
     }
 
+    @Test
+    public void testDeviceAssignment() throws Exception {
+        assumeProtectedVm();
+        assumeVfioPlatformSupported();
+
+        List<String> devices = getAssignableDevices();
+        assumeFalse("no assignable devices", devices.isEmpty());
+
+        final String configPath = "assets/" + mOs + "/vm_config.json";
+        mMicrodroidDevice =
+                MicrodroidBuilder.fromDevicePath(getPathForPackage(PACKAGE_NAME), configPath)
+                        .debugLevel("full")
+                        .memoryMib(minMemorySize())
+                        .cpuTopology("match_host")
+                        .protectedVm(true)
+                        .addAssignableDevice(devices.get(0))
+                        .build(getAndroidDevice());
+
+        mMicrodroidDevice.waitForBootComplete(BOOT_COMPLETE_TIMEOUT);
+    }
+
+    @Test
+    public void testGkiVersions() throws Exception {
+        for (String gki : getSupportedGKIVersions()) {
+            assertTrue(
+                    "Unknown gki \"" + gki + "\". Supported gkis: " + SUPPORTED_GKI_VERSIONS,
+                    SUPPORTED_GKI_VERSIONS.contains(gki));
+        }
+    }
+
     @Before
     public void setUp() throws Exception {
         assumeDeviceIsCapable(getDevice());
@@ -1089,8 +1023,18 @@
 
         getDevice().installPackage(findTestFile(APK_NAME), /* reinstall */ false);
 
-        // clear the log
-        getDevice().executeShellV2Command("logcat -c");
+        // Skip test if given device doesn't support protected or non-protected VM.
+        assumeTrue(
+                "Microdroid is not supported for specific VM protection type",
+                getAndroidDevice().supportsMicrodroid(mProtectedVm));
+
+        if (mGki != null) {
+            assumeTrue(
+                    "GKI version \"" + mGki + "\" is not supported on this device",
+                    getSupportedGKIVersions().contains(mGki));
+        }
+
+        mOs = (mGki != null) ? "microdroid_gki-" + mGki : "microdroid";
     }
 
     @After
@@ -1115,16 +1059,20 @@
                         "android.permission.USE_CUSTOM_VIRTUAL_MACHINE");
     }
 
-    private void assumeProtectedVmSupported() throws Exception {
-        assumeTrue(
-                "Test skipped because protected VMs are not supported",
-                getAndroidDevice().supportsMicrodroid(true));
+    private void assumeProtectedVm() throws Exception {
+        assumeTrue("This test is only for protected VM.", mProtectedVm);
     }
 
-    private void assumeNonProtectedVmSupported() throws Exception {
+    private void assumeNonProtectedVm() throws Exception {
+        assumeFalse("This test is only for non-protected VM.", mProtectedVm);
+    }
+
+    private void assumeVfioPlatformSupported() throws Exception {
+        TestDevice device = getAndroidDevice();
         assumeTrue(
-                "Test skipped because non-protected VMs are not supported",
-                getAndroidDevice().supportsMicrodroid(false));
+                "Test skipped because VFIO platform is not supported.",
+                device.doesFileExist("/dev/vfio/vfio")
+                        && device.doesFileExist("/sys/bus/platform/drivers/vfio-platform"));
     }
 
     private TestDevice getAndroidDevice() {
diff --git a/tests/hostside/tools/pvmfw-tool-manifest.txt b/tests/hostside/tools/pvmfw-tool-manifest.txt
deleted file mode 100644
index dc71fd2..0000000
--- a/tests/hostside/tools/pvmfw-tool-manifest.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: com.android.microdroid.PvmfwTool
diff --git a/tests/no_avf/Android.bp b/tests/no_avf/Android.bp
index fd0d5e2..cdc9e9f 100644
--- a/tests/no_avf/Android.bp
+++ b/tests/no_avf/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -13,9 +14,9 @@
         "androidx.test.runner",
         "androidx.test.ext.junit",
         "compatibility-common-util-devicesidelib",
-        "truth-prebuilt",
+        "truth",
     ],
     sdk_version: "test_current",
     compile_multilib: "both",
-    min_sdk_version: "UpsideDownCake",
+    min_sdk_version: "34",
 }
diff --git a/tests/pvmfw/Android.bp b/tests/pvmfw/Android.bp
new file mode 100644
index 0000000..03dcc35
--- /dev/null
+++ b/tests/pvmfw/Android.bp
@@ -0,0 +1,57 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+genrule {
+    name: "test_avf_debug_policy_with_ramdump",
+    defaults: ["dts_to_dtb"],
+    srcs: ["assets/avf_debug_policy_with_ramdump.dts"],
+    out: ["avf_debug_policy_with_ramdump.dtbo"],
+}
+
+genrule {
+    name: "test_avf_debug_policy_without_ramdump",
+    defaults: ["dts_to_dtb"],
+    srcs: ["assets/avf_debug_policy_without_ramdump.dts"],
+    out: ["avf_debug_policy_without_ramdump.dtbo"],
+}
+
+genrule {
+    name: "test_avf_debug_policy_with_adb",
+    defaults: ["dts_to_dtb"],
+    srcs: ["assets/avf_debug_policy_with_adb.dts"],
+    out: ["avf_debug_policy_with_adb.dtbo"],
+}
+
+genrule {
+    name: "test_avf_debug_policy_without_adb",
+    defaults: ["dts_to_dtb"],
+    srcs: ["assets/avf_debug_policy_without_adb.dts"],
+    out: ["avf_debug_policy_without_adb.dtbo"],
+}
+
+java_test_host {
+    name: "CustomPvmfwHostTestCases",
+    srcs: ["java/**/*.java"],
+    test_suites: ["general-tests"],
+    libs: [
+        "androidx.annotation_annotation",
+        "tradefed",
+    ],
+    static_libs: [
+        "MicrodroidHostTestHelper",
+        "PvmfwHostTestHelper",
+        "compatibility-host-util",
+    ],
+    per_testcase_directory: true,
+    data: [
+        ":MicrodroidTestApp",
+        ":pvmfw_test",
+        ":test_avf_debug_policy_with_ramdump",
+        ":test_avf_debug_policy_without_ramdump",
+        ":test_avf_debug_policy_with_adb",
+        ":test_avf_debug_policy_without_adb",
+        "assets/bcc.dat",
+    ],
+}
diff --git a/tests/pvmfw/AndroidTest.xml b/tests/pvmfw/AndroidTest.xml
new file mode 100644
index 0000000..6ff7b6f
--- /dev/null
+++ b/tests/pvmfw/AndroidTest.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2023 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+<configuration description="Host driven tests for pvmfw with customization">
+    <option name="config-descriptor:metadata" key="parameter" value="not_instant_app" />
+    <option name="config-descriptor:metadata" key="parameter" value="not_multi_abi" />
+    <option name="config-descriptor:metadata" key="parameter" value="secondary_user" />
+
+    <target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer">
+        <option name="force-root" value="true"/>
+    </target_preparer>
+
+    <test class="com.android.compatibility.common.tradefed.testtype.JarHostTest" >
+        <option name="jar" value="CustomPvmfwHostTestCases.jar" />
+    </test>
+</configuration>
diff --git a/tests/hostside/assets/avf_debug_policy_with_adb.dts b/tests/pvmfw/assets/avf_debug_policy_with_adb.dts
similarity index 100%
rename from tests/hostside/assets/avf_debug_policy_with_adb.dts
rename to tests/pvmfw/assets/avf_debug_policy_with_adb.dts
diff --git a/tests/pvmfw/assets/avf_debug_policy_with_ramdump.dts b/tests/pvmfw/assets/avf_debug_policy_with_ramdump.dts
new file mode 100644
index 0000000..139d28e
--- /dev/null
+++ b/tests/pvmfw/assets/avf_debug_policy_with_ramdump.dts
@@ -0,0 +1,22 @@
+/dts-v1/;
+/plugin/;
+
+/ {
+    fragment@avf {
+        target-path = "/";
+
+        __overlay__ {
+            avf {
+                guest {
+                    common {
+                        ramdump = <1>;
+                    };
+                    microdroid {
+                        adb = <1>; // adb is required to check VM's bootargs.
+                    };
+                };
+            };
+        };
+    };
+};
+
diff --git a/tests/hostside/assets/avf_debug_policy_without_adb.dts b/tests/pvmfw/assets/avf_debug_policy_without_adb.dts
similarity index 100%
rename from tests/hostside/assets/avf_debug_policy_without_adb.dts
rename to tests/pvmfw/assets/avf_debug_policy_without_adb.dts
diff --git a/tests/pvmfw/assets/avf_debug_policy_without_ramdump.dts b/tests/pvmfw/assets/avf_debug_policy_without_ramdump.dts
new file mode 100644
index 0000000..8e0e44c
--- /dev/null
+++ b/tests/pvmfw/assets/avf_debug_policy_without_ramdump.dts
@@ -0,0 +1,22 @@
+/dts-v1/;
+/plugin/;
+
+/ {
+    fragment@avf {
+        target-path = "/";
+
+        __overlay__ {
+            avf {
+                guest {
+                    common {
+                        ramdump = <0>;
+                    };
+                    microdroid {
+                        adb = <1>; // adb is required to check VM's bootargs.
+                    };
+                };
+            };
+        };
+    };
+};
+
diff --git a/tests/hostside/assets/bcc.dat b/tests/pvmfw/assets/bcc.dat
similarity index 100%
rename from tests/hostside/assets/bcc.dat
rename to tests/pvmfw/assets/bcc.dat
Binary files differ
diff --git a/tests/pvmfw/helper/Android.bp b/tests/pvmfw/helper/Android.bp
new file mode 100644
index 0000000..7258c68
--- /dev/null
+++ b/tests/pvmfw/helper/Android.bp
@@ -0,0 +1,10 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+java_library_host {
+    name: "PvmfwHostTestHelper",
+    srcs: ["java/**/*.java"],
+    libs: ["androidx.annotation_annotation"],
+}
diff --git a/tests/hostside/helper/java/com/android/microdroid/test/host/Pvmfw.java b/tests/pvmfw/helper/java/com/android/pvmfw/test/host/Pvmfw.java
similarity index 71%
rename from tests/hostside/helper/java/com/android/microdroid/test/host/Pvmfw.java
rename to tests/pvmfw/helper/java/com/android/pvmfw/test/host/Pvmfw.java
index 95eaa58..b0c1207 100644
--- a/tests/hostside/helper/java/com/android/microdroid/test/host/Pvmfw.java
+++ b/tests/pvmfw/helper/java/com/android/pvmfw/test/host/Pvmfw.java
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package com.android.microdroid.test.host;
+package com.android.pvmfw.test.host;
 
 import static java.nio.ByteOrder.LITTLE_ENDIAN;
 
@@ -33,20 +33,24 @@
     private static final int SIZE_8B = 8; // 8 bytes
     private static final int SIZE_4K = 4 << 10; // 4 KiB, PAGE_SIZE
     private static final int BUFFER_SIZE = 1024;
-    private static final int HEADER_SIZE = Integer.BYTES * 8; // Header has 8 integers.
     private static final int HEADER_MAGIC = 0x666d7670;
-    private static final int HEADER_VERSION = getVersion(1, 0);
+    private static final int HEADER_DEFAULT_VERSION = getVersion(1, 0);
     private static final int HEADER_FLAGS = 0;
 
     @NonNull private final File mPvmfwBinFile;
     @NonNull private final File mBccFile;
     @Nullable private final File mDebugPolicyFile;
+    private final int mVersion;
 
     private Pvmfw(
-            @NonNull File pvmfwBinFile, @NonNull File bccFile, @Nullable File debugPolicyFile) {
+            @NonNull File pvmfwBinFile,
+            @NonNull File bccFile,
+            @Nullable File debugPolicyFile,
+            int version) {
         mPvmfwBinFile = Objects.requireNonNull(pvmfwBinFile);
         mBccFile = Objects.requireNonNull(bccFile);
         mDebugPolicyFile = debugPolicyFile;
+        mVersion = version;
     }
 
     /**
@@ -56,17 +60,22 @@
     public void serialize(@NonNull File outFile) throws IOException {
         Objects.requireNonNull(outFile);
 
-        int bccOffset = HEADER_SIZE;
+        int headerSize = alignTo(getHeaderSize(mVersion), SIZE_8B);
+        int bccOffset = headerSize;
         int bccSize = (int) mBccFile.length();
 
         int debugPolicyOffset = alignTo(bccOffset + bccSize, SIZE_8B);
         int debugPolicySize = mDebugPolicyFile == null ? 0 : (int) mDebugPolicyFile.length();
 
         int totalSize = debugPolicyOffset + debugPolicySize;
+        if (hasVmDtbo(mVersion)) {
+            // Add VM DTBO size as well.
+            totalSize += Integer.BYTES * 2;
+        }
 
-        ByteBuffer header = ByteBuffer.allocate(HEADER_SIZE).order(LITTLE_ENDIAN);
+        ByteBuffer header = ByteBuffer.allocate(headerSize).order(LITTLE_ENDIAN);
         header.putInt(HEADER_MAGIC);
-        header.putInt(HEADER_VERSION);
+        header.putInt(mVersion);
         header.putInt(totalSize);
         header.putInt(HEADER_FLAGS);
         header.putInt(bccOffset);
@@ -74,11 +83,18 @@
         header.putInt(debugPolicyOffset);
         header.putInt(debugPolicySize);
 
+        if (hasVmDtbo(mVersion)) {
+            // Add placeholder entry for VM DTBO.
+            // TODO(b/291191157): Add a real DTBO and test.
+            header.putInt(0);
+            header.putInt(0);
+        }
+
         try (FileOutputStream pvmfw = new FileOutputStream(outFile)) {
             appendFile(pvmfw, mPvmfwBinFile);
             padTo(pvmfw, SIZE_4K);
             pvmfw.write(header.array());
-            padTo(pvmfw, HEADER_SIZE);
+            padTo(pvmfw, SIZE_8B);
             appendFile(pvmfw, mBccFile);
             if (mDebugPolicyFile != null) {
                 padTo(pvmfw, SIZE_8B);
@@ -110,6 +126,19 @@
         }
     }
 
+    private static int getHeaderSize(int version) {
+        if (version == getVersion(1, 0)) {
+            return Integer.BYTES * 8; // Header has 8 integers.
+        }
+        return Integer.BYTES * 10; // Default + VM DTBO (offset, size)
+    }
+
+    private static boolean hasVmDtbo(int version) {
+        int major = getMajorVersion(version);
+        int minor = getMinorVersion(version);
+        return major > 1 || (major == 1 && minor >= 1);
+    }
+
     private static int alignTo(int x, int size) {
         return (x + size - 1) & ~(size - 1);
     }
@@ -118,15 +147,25 @@
         return ((major & 0xFFFF) << 16) | (minor & 0xFFFF);
     }
 
+    private static int getMajorVersion(int version) {
+        return (version >> 16) & 0xFFFF;
+    }
+
+    private static int getMinorVersion(int version) {
+        return version & 0xFFFF;
+    }
+
     /** Builder for {@link Pvmfw}. */
     public static final class Builder {
         @NonNull private final File mPvmfwBinFile;
         @NonNull private final File mBccFile;
         @Nullable private File mDebugPolicyFile;
+        private int mVersion;
 
         public Builder(@NonNull File pvmfwBinFile, @NonNull File bccFile) {
             mPvmfwBinFile = Objects.requireNonNull(pvmfwBinFile);
             mBccFile = Objects.requireNonNull(bccFile);
+            mVersion = HEADER_DEFAULT_VERSION;
         }
 
         @NonNull
@@ -136,8 +175,14 @@
         }
 
         @NonNull
+        public Builder setVersion(int major, int minor) {
+            mVersion = getVersion(major, minor);
+            return this;
+        }
+
+        @NonNull
         public Pvmfw build() {
-            return new Pvmfw(mPvmfwBinFile, mBccFile, mDebugPolicyFile);
+            return new Pvmfw(mPvmfwBinFile, mBccFile, mDebugPolicyFile, mVersion);
         }
     }
 }
diff --git a/tests/hostside/java/com/android/microdroid/test/DebugPolicyHostTests.java b/tests/pvmfw/java/com/android/pvmfw/test/DebugPolicyHostTests.java
similarity index 83%
rename from tests/hostside/java/com/android/microdroid/test/DebugPolicyHostTests.java
rename to tests/pvmfw/java/com/android/pvmfw/test/DebugPolicyHostTests.java
index 014f9f0..b84d7dc 100644
--- a/tests/hostside/java/com/android/microdroid/test/DebugPolicyHostTests.java
+++ b/tests/pvmfw/java/com/android/pvmfw/test/DebugPolicyHostTests.java
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package com.android.microdroid.test;
+package com.android.pvmfw.test;
 
 import static com.android.tradefed.device.TestDevice.MicrodroidBuilder;
 
@@ -22,7 +22,6 @@
 import static com.google.common.truth.Truth.assertWithMessage;
 
 import static org.junit.Assume.assumeTrue;
-import static org.junit.Assume.assumeFalse;
 import static org.junit.Assert.assertThrows;
 
 import androidx.annotation.NonNull;
@@ -30,7 +29,7 @@
 
 import com.android.microdroid.test.host.CommandRunner;
 import com.android.microdroid.test.host.MicrodroidHostTestCaseBase;
-import com.android.microdroid.test.host.Pvmfw;
+import com.android.pvmfw.test.host.Pvmfw;
 import com.android.tradefed.device.DeviceNotAvailableException;
 import com.android.tradefed.device.DeviceRuntimeException;
 import com.android.tradefed.device.ITestDevice;
@@ -58,7 +57,10 @@
     @NonNull private static final String PACKAGE_NAME = "com.android.microdroid.test";
     @NonNull private static final String MICRODROID_DEBUG_FULL = "full";
     @NonNull private static final String MICRODROID_DEBUG_NONE = "none";
-    @NonNull private static final String MICRODROID_CONFIG_PATH = "assets/vm_config_apex.json";
+
+    @NonNull
+    private static final String MICRODROID_CONFIG_PATH = "assets/microdroid/vm_config_apex.json";
+
     @NonNull private static final String MICRODROID_LOG_PATH = TEST_ROOT + "log.txt";
     private static final int BOOT_COMPLETE_TIMEOUT_MS = 30000; // 30 seconds
     private static final int BOOT_FAILURE_WAIT_TIME_MS = 10000; // 10 seconds
@@ -113,9 +115,6 @@
         assumeTrue(
                 "Skip if protected VMs are not supported",
                 mAndroidDevice.supportsMicrodroid(/* protectedVm= */ true));
-        assumeFalse("Test requires setprop for using custom pvmfw and adb root", isUserBuild());
-
-        mAndroidDevice.enableAdbRoot();
 
         // tradefed copies the test artfacts under /tmp when running tests,
         // so we should *find* the artifacts with the file name.
@@ -130,8 +129,8 @@
         // or tryLaunchProtectedNonDebuggableVm().
         mCustomPvmfwBinFileOnHost =
                 FileUtil.createTempFile(CUSTOM_PVMFW_FILE_PREFIX, CUSTOM_PVMFW_FILE_SUFFIX);
-        mAndroidDevice.setProperty(CUSTOM_PVMFW_IMG_PATH_PROP, CUSTOM_PVMFW_IMG_PATH);
-        mAndroidDevice.setProperty(CUSTOM_DEBUG_POLICY_PATH_PROP, CUSTOM_DEBUG_POLICY_PATH);
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_PVMFW_IMG_PATH_PROP, CUSTOM_PVMFW_IMG_PATH);
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_DEBUG_POLICY_PATH_PROP, CUSTOM_DEBUG_POLICY_PATH);
 
         // Prepare for launching microdroid
         mAndroidDevice.installPackage(findTestFile(PACKAGE_FILE_NAME), /* reinstall */ false);
@@ -151,13 +150,11 @@
         mAndroidDevice.uninstallPackage(PACKAGE_NAME);
 
         // Cleanup for custom debug policies
-        mAndroidDevice.setProperty(CUSTOM_DEBUG_POLICY_PATH_PROP, "");
-        mAndroidDevice.setProperty(CUSTOM_PVMFW_IMG_PATH_PROP, "");
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_DEBUG_POLICY_PATH_PROP, "");
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_PVMFW_IMG_PATH_PROP, "");
         FileUtil.deleteFile(mCustomPvmfwBinFileOnHost);
 
         cleanUpVirtualizationTestSetup(mAndroidDevice);
-
-        mAndroidDevice.disableAdbRoot();
     }
 
     @Test
@@ -198,6 +195,43 @@
         launchProtectedVmAndWaitForBootCompleted(MICRODROID_DEBUG_FULL);
     }
 
+    @Test
+    public void testRamdumpInDebugPolicy_withDebugLevelNone_hasRamdumpArgs() throws Exception {
+        prepareCustomDebugPolicy("avf_debug_policy_with_ramdump.dtbo");
+        mMicrodroidDevice = launchProtectedVmAndWaitForBootCompleted(MICRODROID_DEBUG_NONE);
+
+        assertThat(readMicrodroidFileAsString(MICRODROID_CMDLINE_PATH)).contains("crashkernel=");
+        assertThat(readMicrodroidFileAsString(MICRODROID_DT_BOOTARGS_PATH))
+                .contains("crashkernel=");
+        assertThat(readMicrodroidFileAsHexString(MICRODROID_DT_RAMDUMP_PATH))
+                .isEqualTo(HEX_STRING_ONE);
+    }
+
+    @Test
+    public void testNoRamdumpInDebugPolicy_withDebugLevelNone_noRamdumpArgs() throws Exception {
+        prepareCustomDebugPolicy("avf_debug_policy_without_ramdump.dtbo");
+        mMicrodroidDevice = launchProtectedVmAndWaitForBootCompleted(MICRODROID_DEBUG_NONE);
+
+        assertThat(readMicrodroidFileAsString(MICRODROID_CMDLINE_PATH))
+                .doesNotContain("crashkernel=");
+        assertThat(readMicrodroidFileAsString(MICRODROID_DT_BOOTARGS_PATH))
+                .doesNotContain("crashkernel=");
+        assertThat(readMicrodroidFileAsHexString(MICRODROID_DT_RAMDUMP_PATH))
+                .isEqualTo(HEX_STRING_ZERO);
+    }
+
+    @Test
+    public void testNoRamdumpInDebugPolicy_withDebugLevelFull_hasRamdumpArgs() throws Exception {
+        prepareCustomDebugPolicy("avf_debug_policy_without_ramdump.dtbo");
+        mMicrodroidDevice = launchProtectedVmAndWaitForBootCompleted(MICRODROID_DEBUG_FULL);
+
+        assertThat(readMicrodroidFileAsString(MICRODROID_CMDLINE_PATH)).contains("crashkernel=");
+        assertThat(readMicrodroidFileAsString(MICRODROID_DT_BOOTARGS_PATH))
+                .contains("crashkernel=");
+        assertThat(readMicrodroidFileAsHexString(MICRODROID_DT_RAMDUMP_PATH))
+                .isEqualTo(HEX_STRING_ZERO);
+    }
+
     private boolean isDebugPolicyEnabled(@NonNull String dtPropertyPath)
             throws DeviceNotAvailableException {
         CommandRunner runner = new CommandRunner(mAndroidDevice);
diff --git a/tests/pvmfw/java/com/android/pvmfw/test/PvmfwImgTest.java b/tests/pvmfw/java/com/android/pvmfw/test/PvmfwImgTest.java
new file mode 100644
index 0000000..9fbbd87
--- /dev/null
+++ b/tests/pvmfw/java/com/android/pvmfw/test/PvmfwImgTest.java
@@ -0,0 +1,186 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.pvmfw.test;
+
+import static com.android.tradefed.device.TestDevice.MicrodroidBuilder;
+
+import static com.google.common.truth.Truth.assertThat;
+
+import static org.junit.Assume.assumeTrue;
+import static org.junit.Assert.assertThrows;
+
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+
+import com.android.microdroid.test.host.MicrodroidHostTestCaseBase;
+import com.android.pvmfw.test.host.Pvmfw;
+import com.android.tradefed.device.DeviceNotAvailableException;
+import com.android.tradefed.device.DeviceRuntimeException;
+import com.android.tradefed.device.ITestDevice;
+import com.android.tradefed.device.TestDevice;
+import com.android.tradefed.testtype.DeviceJUnit4ClassRunner;
+import com.android.tradefed.util.FileUtil;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import java.io.File;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Objects;
+
+/** Tests pvmfw.img and pvmfw */
+@RunWith(DeviceJUnit4ClassRunner.class)
+public class PvmfwImgTest extends MicrodroidHostTestCaseBase {
+    @NonNull private static final String PVMFW_FILE_NAME = "pvmfw_test.bin";
+    @NonNull private static final String BCC_FILE_NAME = "bcc.dat";
+    @NonNull private static final String PACKAGE_FILE_NAME = "MicrodroidTestApp.apk";
+    @NonNull private static final String PACKAGE_NAME = "com.android.microdroid.test";
+    @NonNull private static final String MICRODROID_DEBUG_FULL = "full";
+
+    @NonNull
+    private static final String MICRODROID_CONFIG_PATH = "assets/microdroid/vm_config_apex.json";
+
+    private static final int BOOT_COMPLETE_TIMEOUT_MS = 30000; // 30 seconds
+    private static final int BOOT_FAILURE_WAIT_TIME_MS = 10000; // 10 seconds
+
+    @NonNull private static final String CUSTOM_PVMFW_FILE_PREFIX = "pvmfw";
+    @NonNull private static final String CUSTOM_PVMFW_FILE_SUFFIX = ".bin";
+    @NonNull private static final String CUSTOM_PVMFW_IMG_PATH = TEST_ROOT + PVMFW_FILE_NAME;
+    @NonNull private static final String CUSTOM_PVMFW_IMG_PATH_PROP = "hypervisor.pvmfw.path";
+
+    @Nullable private static File mPvmfwBinFileOnHost;
+    @Nullable private static File mBccFileOnHost;
+
+    @Nullable private TestDevice mAndroidDevice;
+    @Nullable private ITestDevice mMicrodroidDevice;
+    @Nullable private File mCustomPvmfwBinFileOnHost;
+
+    @Before
+    public void setUp() throws Exception {
+        mAndroidDevice = (TestDevice) Objects.requireNonNull(getDevice());
+
+        // Check device capabilities
+        assumeDeviceIsCapable(mAndroidDevice);
+        assumeTrue(
+                "Skip if protected VMs are not supported",
+                mAndroidDevice.supportsMicrodroid(/* protectedVm= */ true));
+
+        // tradefed copies the test artfacts under /tmp when running tests,
+        // so we should *find* the artifacts with the file name.
+        mPvmfwBinFileOnHost =
+                getTestInformation().getDependencyFile(PVMFW_FILE_NAME, /* targetFirst= */ false);
+        mBccFileOnHost =
+                getTestInformation().getDependencyFile(BCC_FILE_NAME, /* targetFirst= */ false);
+
+        // Prepare for system properties for custom pvmfw.img.
+        // File will be prepared later in individual test and then pushed to device
+        // when launching with launchProtectedVmAndWaitForBootCompleted().
+        mCustomPvmfwBinFileOnHost =
+                FileUtil.createTempFile(CUSTOM_PVMFW_FILE_PREFIX, CUSTOM_PVMFW_FILE_SUFFIX);
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_PVMFW_IMG_PATH_PROP, CUSTOM_PVMFW_IMG_PATH);
+
+        // Prepare for launching microdroid
+        mAndroidDevice.installPackage(findTestFile(PACKAGE_FILE_NAME), /* reinstall */ false);
+        prepareVirtualizationTestSetup(mAndroidDevice);
+        mMicrodroidDevice = null;
+    }
+
+    @After
+    public void shutdown() throws Exception {
+        if (!mAndroidDevice.supportsMicrodroid(/* protectedVm= */ true)) {
+            return;
+        }
+        if (mMicrodroidDevice != null) {
+            mAndroidDevice.shutdownMicrodroid(mMicrodroidDevice);
+            mMicrodroidDevice = null;
+        }
+        mAndroidDevice.uninstallPackage(PACKAGE_NAME);
+
+        // Cleanup for custom pvmfw.img
+        setPropertyOrThrow(mAndroidDevice, CUSTOM_PVMFW_IMG_PATH_PROP, "");
+        FileUtil.deleteFile(mCustomPvmfwBinFileOnHost);
+
+        cleanUpVirtualizationTestSetup(mAndroidDevice);
+    }
+
+    @Test
+    public void testConfigVersion1_0_boots() throws Exception {
+        Pvmfw pvmfw =
+                new Pvmfw.Builder(mPvmfwBinFileOnHost, mBccFileOnHost).setVersion(1, 0).build();
+        pvmfw.serialize(mCustomPvmfwBinFileOnHost);
+
+        launchProtectedVmAndWaitForBootCompleted(BOOT_COMPLETE_TIMEOUT_MS);
+    }
+
+    @Test
+    public void testConfigVersion1_1_boots() throws Exception {
+        Pvmfw pvmfw =
+                new Pvmfw.Builder(mPvmfwBinFileOnHost, mBccFileOnHost).setVersion(1, 1).build();
+        pvmfw.serialize(mCustomPvmfwBinFileOnHost);
+
+        launchProtectedVmAndWaitForBootCompleted(BOOT_COMPLETE_TIMEOUT_MS);
+    }
+
+    @Test
+    public void testInvalidConfigVersion_doesNotBoot() throws Exception {
+        // Disclaimer: Update versions when they become valid
+        List<int[]> invalid_versions =
+                Arrays.asList(
+                        new int[] {0, 0},
+                        new int[] {0, 1},
+                        new int[] {0, 0xFFFF},
+                        new int[] {2, 0},
+                        new int[] {2, 1},
+                        new int[] {2, 0xFFFF},
+                        new int[] {0xFFFF, 0},
+                        new int[] {0xFFFF, 1},
+                        new int[] {0xFFFF, 0xFFFF});
+
+        Pvmfw.Builder builder = new Pvmfw.Builder(mPvmfwBinFileOnHost, mBccFileOnHost);
+
+        for (int[] pair : invalid_versions) {
+            int major = pair[0];
+            int minor = pair[1];
+            String version = "v" + major + "." + minor;
+
+            Pvmfw pvmfw = builder.setVersion(major, minor).build();
+            pvmfw.serialize(mCustomPvmfwBinFileOnHost);
+
+            assertThrows(
+                    "pvmfw shouldn't boot with invalid version " + version,
+                    DeviceRuntimeException.class,
+                    () -> launchProtectedVmAndWaitForBootCompleted(BOOT_FAILURE_WAIT_TIME_MS));
+        }
+    }
+
+    private ITestDevice launchProtectedVmAndWaitForBootCompleted(long adbTimeoutMs)
+            throws DeviceNotAvailableException {
+        mMicrodroidDevice =
+                MicrodroidBuilder.fromDevicePath(
+                                getPathForPackage(PACKAGE_NAME), MICRODROID_CONFIG_PATH)
+                        .debugLevel(MICRODROID_DEBUG_FULL)
+                        .protectedVm(true)
+                        .addBootFile(mCustomPvmfwBinFileOnHost, PVMFW_FILE_NAME)
+                        .setAdbConnectTimeoutMs(adbTimeoutMs)
+                        .build(mAndroidDevice);
+        assertThat(mMicrodroidDevice.waitForBootComplete(BOOT_COMPLETE_TIMEOUT_MS)).isTrue();
+        return mMicrodroidDevice;
+    }
+}
diff --git a/tests/hostside/tools/Android.bp b/tests/pvmfw/tools/Android.bp
similarity index 67%
rename from tests/hostside/tools/Android.bp
rename to tests/pvmfw/tools/Android.bp
index f3cc275..e4a31d5 100644
--- a/tests/hostside/tools/Android.bp
+++ b/tests/pvmfw/tools/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -6,5 +7,5 @@
     name: "pvmfw-tool",
     manifest: "pvmfw-tool-manifest.txt",
     srcs: ["PvmfwTool.java"],
-    static_libs: ["MicrodroidHostTestHelper"],
+    static_libs: ["PvmfwHostTestHelper"],
 }
diff --git a/tests/hostside/tools/PvmfwTool.java b/tests/pvmfw/tools/PvmfwTool.java
similarity index 69%
rename from tests/hostside/tools/PvmfwTool.java
rename to tests/pvmfw/tools/PvmfwTool.java
index 18dd6d7..62c641b 100644
--- a/tests/hostside/tools/PvmfwTool.java
+++ b/tests/pvmfw/tools/PvmfwTool.java
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-package com.android.microdroid;
+package com.android.pvmfw;
 
-import com.android.microdroid.test.host.Pvmfw;
+import com.android.pvmfw.test.host.Pvmfw;
 
 import java.io.File;
 import java.io.IOException;
@@ -25,13 +25,13 @@
 public class PvmfwTool {
     public static void printUsage() {
         System.out.println("pvmfw-tool: Appends pvmfw.bin and config payloads.");
-        System.out.println("Requires BCC and debug policy dtbo files");
+        System.out.println("Requires BCC and optional debug policy dtbo files");
         System.out.println("");
-        System.out.println("Usage: pvmfw-tool <pvmfw_with_config> <pvmfw_bin> <bcc.dat> <dp.dtbo>");
+        System.out.println("Usage: pvmfw-tool <out> <pvmfw.bin> <bcc.dat> [<dp.dtbo>]");
     }
 
     public static void main(String[] args) {
-        if (args.length != 4) {
+        if (args.length != 4 && args.length != 3) {
             printUsage();
             System.exit(1);
         }
@@ -39,11 +39,14 @@
         File out = new File(args[0]);
         File pvmfw_bin = new File(args[1]);
         File bcc_dat = new File(args[2]);
-        File dtbo = new File(args[3]);
 
         try {
-            Pvmfw pvmfw = new Pvmfw.Builder(pvmfw_bin, bcc_dat).setDebugPolicyOverlay(dtbo).build();
-            pvmfw.serialize(out);
+            Pvmfw.Builder builder = new Pvmfw.Builder(pvmfw_bin, bcc_dat);
+            if (args.length == 4) {
+                File dtbo = new File(args[3]);
+                builder.setDebugPolicyOverlay(dtbo);
+            }
+            builder.build().serialize(out);
         } catch (IOException e) {
             e.printStackTrace();
             printUsage();
diff --git a/tests/pvmfw/tools/pvmfw-tool-manifest.txt b/tests/pvmfw/tools/pvmfw-tool-manifest.txt
new file mode 100644
index 0000000..8b2535a
--- /dev/null
+++ b/tests/pvmfw/tools/pvmfw-tool-manifest.txt
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+Main-Class: com.android.pvmfw.PvmfwTool
diff --git a/tests/testapk/Android.bp b/tests/testapk/Android.bp
index fe8f5c9..10bbfb4 100644
--- a/tests/testapk/Android.bp
+++ b/tests/testapk/Android.bp
@@ -1,7 +1,19 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
+android_app_certificate {
+    name: "MicrodroidTestAppCert",
+
+    // The default app cert is the same as the default platform cert
+    // (on a test-keys build), which means we end up getting assigned
+    // the permissions via signature and can't reliably disclaim
+    // them. So instead we use our own custom cert. See b/290582742.
+    // Created via: development/tools/make_key microdroid_test_app '/CN=microdroid_test_app'
+    certificate: "microdroid_test_app",
+}
+
 java_defaults {
     name: "MicrodroidTestAppsDefaults",
     test_suites: [
@@ -12,6 +24,7 @@
         "com.android.microdroid.testservice-java",
         "com.android.microdroid.test.vmshare_service-java",
     ],
+    certificate: ":MicrodroidTestAppCert",
     sdk_version: "test_current",
     jni_uses_platform_apis: true,
     use_embedded_native_libs: true,
@@ -29,7 +42,7 @@
         "androidx.test.ext.junit",
         "authfs_test_apk_assets",
         "cbor-java",
-        "truth-prebuilt",
+        "truth",
         "compatibility-common-util-devicesidelib",
         "measure_io_as_jar",
     ],
@@ -43,7 +56,11 @@
     ],
     min_sdk_version: "33",
     // Defined in ../vmshareapp/Android.bp
-    data: [":MicrodroidVmShareApp"],
+    data: [
+        ":MicrodroidVmShareApp",
+        ":test_microdroid_vendor_image",
+        ":test_microdroid_vendor_image_unsigned",
+    ],
 }
 
 // Defaults shared between MicrodroidTestNativeLib and MicrodroidPayloadInOtherAppNativeLib shared
diff --git a/tests/testapk/AndroidManifest.xml b/tests/testapk/AndroidManifest.xml
index 2ea3f6c..d6e6004 100644
--- a/tests/testapk/AndroidManifest.xml
+++ b/tests/testapk/AndroidManifest.xml
@@ -22,8 +22,7 @@
     <queries>
         <package android:name="com.android.microdroid.vmshare_app" />
     </queries>
-    <application>
-    </application>
+    <application />
     <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
         android:targetPackage="com.android.microdroid.test"
         android:label="Microdroid Test" />
diff --git a/tests/testapk/AndroidTest.xml b/tests/testapk/AndroidTest.xml
index 929dd31..8a4c367 100644
--- a/tests/testapk/AndroidTest.xml
+++ b/tests/testapk/AndroidTest.xml
@@ -23,6 +23,15 @@
         <option name="test-file-name" value="MicrodroidTestApp.apk" />
         <option name="test-file-name" value="MicrodroidVmShareApp.apk" />
     </target_preparer>
+    <target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
+        <option name="run-command" value="mkdir -p /data/local/tmp/cts/microdroid" />
+        <option name="teardown-command" value="rm -rf /data/local/tmp/cts/microdroid" />
+    </target_preparer>
+    <target_preparer class="com.android.compatibility.common.tradefed.targetprep.FilePusher">
+        <option name="cleanup" value="true" />
+        <option name="push" value="test_microdroid_vendor_image.img->/data/local/tmp/cts/microdroid/test_microdroid_vendor_image.img" />
+        <option name="push" value="test_microdroid_vendor_image_unsigned.img->/data/local/tmp/cts/microdroid/test_microdroid_vendor_image_unsigned.img" />
+    </target_preparer>
     <test class="com.android.tradefed.testtype.AndroidJUnitTest" >
         <option name="package" value="com.android.microdroid.test" />
         <option name="runner" value="androidx.test.runner.AndroidJUnitRunner" />
diff --git a/tests/testapk/assets/vm_config.json b/tests/testapk/assets/microdroid/vm_config.json
similarity index 100%
rename from tests/testapk/assets/vm_config.json
rename to tests/testapk/assets/microdroid/vm_config.json
diff --git a/tests/testapk/assets/vm_config_apex.json b/tests/testapk/assets/microdroid/vm_config_apex.json
similarity index 100%
rename from tests/testapk/assets/vm_config_apex.json
rename to tests/testapk/assets/microdroid/vm_config_apex.json
diff --git a/tests/testapk/assets/vm_config_crash.json b/tests/testapk/assets/microdroid/vm_config_crash.json
similarity index 100%
rename from tests/testapk/assets/vm_config_crash.json
rename to tests/testapk/assets/microdroid/vm_config_crash.json
diff --git a/tests/testapk/assets/vm_config_extra_apk.json b/tests/testapk/assets/microdroid/vm_config_extra_apk.json
similarity index 100%
rename from tests/testapk/assets/vm_config_extra_apk.json
rename to tests/testapk/assets/microdroid/vm_config_extra_apk.json
diff --git a/tests/testapk/assets/vm_config_no_task.json b/tests/testapk/assets/microdroid/vm_config_no_task.json
similarity index 100%
rename from tests/testapk/assets/vm_config_no_task.json
rename to tests/testapk/assets/microdroid/vm_config_no_task.json
diff --git a/tests/testapk/assets/vm_config_no_tombstone.json b/tests/testapk/assets/microdroid/vm_config_no_tombstone.json
similarity index 100%
rename from tests/testapk/assets/vm_config_no_tombstone.json
rename to tests/testapk/assets/microdroid/vm_config_no_tombstone.json
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config.json
new file mode 100644
index 0000000..2022127
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config.json
@@ -0,0 +1,10 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidTestNativeLib.so"
+  },
+  "export_tombstones": true
+}
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_apex.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_apex.json
new file mode 100644
index 0000000..bd3998d
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_apex.json
@@ -0,0 +1,21 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidTestNativeLib.so"
+  },
+  "apexes": [
+    {
+      "name": "com.android.art"
+    },
+    {
+      "name": "com.android.compos"
+    },
+    {
+      "name": "com.android.sdkext"
+    }
+  ],
+  "export_tombstones": true
+}
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_crash.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_crash.json
new file mode 100644
index 0000000..4692258
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_crash.json
@@ -0,0 +1,9 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidCrashNativeLib.so"
+  }
+}
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_extra_apk.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_extra_apk.json
new file mode 100644
index 0000000..1602294
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_extra_apk.json
@@ -0,0 +1,15 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidTestNativeLib.so"
+  },
+  "extra_apks": [
+    {
+      "path": "/system/etc/security/fsverity/BuildManifest.apk"
+    }
+  ],
+  "export_tombstones": true
+}
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_task.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_task.json
new file mode 100644
index 0000000..8282f99
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_task.json
@@ -0,0 +1,6 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "export_tombstones": true
+}
diff --git a/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_tombstone.json b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_tombstone.json
new file mode 100644
index 0000000..6e8a136
--- /dev/null
+++ b/tests/testapk/assets/microdroid_gki-android14-6.1/vm_config_no_tombstone.json
@@ -0,0 +1,10 @@
+{
+  "os": {
+    "name": "microdroid_gki-android14-6.1"
+  },
+  "task": {
+    "type": "microdroid_launcher",
+    "command": "MicrodroidTestNativeLib.so"
+  },
+  "export_tombstones": false
+}
diff --git a/tests/testapk/microdroid_test_app.pk8 b/tests/testapk/microdroid_test_app.pk8
new file mode 100644
index 0000000..dc012bd
--- /dev/null
+++ b/tests/testapk/microdroid_test_app.pk8
Binary files differ
diff --git a/tests/testapk/microdroid_test_app.x509.pem b/tests/testapk/microdroid_test_app.x509.pem
new file mode 100644
index 0000000..9a0309c
--- /dev/null
+++ b/tests/testapk/microdroid_test_app.x509.pem
@@ -0,0 +1,19 @@
+-----BEGIN CERTIFICATE-----
+MIIDHzCCAgegAwIBAgIUNnOI4tOMieX67OtyD+6BjTsLm0IwDQYJKoZIhvcNAQEL
+BQAwHjEcMBoGA1UEAwwTbWljcm9kcm9pZF90ZXN0X2FwcDAgFw0yMzA4MTgxNDA4
+MDZaGA8yMDUxMDEwMzE0MDgwNlowHjEcMBoGA1UEAwwTbWljcm9kcm9pZF90ZXN0
+X2FwcDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7B9xDTD2kS4xFQ
+gwQThRqnxKzOmckYqv2XznXq7tCuhU+RgXDrub7Aiq+QgA25Ouw8ORM5FkZAxD6j
+hCRSVo8cyXdNfPygRY/56umL6KqLMqB0tXLHPst3Lh8fl2su2S+jWL71lUwdOBmu
+nBIa1UqxI9PChR/uIqGyDxNRlUnqOA5/FgyX95P9wj8zmXEFe5No8rL/9hjpBvw1
+cOJCH4hea6JKDA15XYxDaTyj5pkmGb228ZbQb10XwOIhtS94CVxIvqmREzZHL7b0
+cjzCwFDDF6sQoVDi71eFYSWInxSNErDU6wv5h2t6+PV+9mGwTi/AJuxTmevSUoAp
+tGwq0NMCAwEAAaNTMFEwHQYDVR0OBBYEFI2m/0SoaNew99YPQlo6oYPJfh7lMB8G
+A1UdIwQYMBaAFI2m/0SoaNew99YPQlo6oYPJfh7lMA8GA1UdEwEB/wQFMAMBAf8w
+DQYJKoZIhvcNAQELBQADggEBABxIQ66ACIrSnDCiI/DqdPPwHf4vva2Y0bVJ5tXN
+ufFQN0Hr4UnttDzWPtfZHQTnrA478b9Z/g4Y0qg/tj2g5oZP50coF9a39mPe6v2k
+vazkMp2H/+ilG4c8L6QsC7UKXn7Lxxznn3ijlh1lYVJ3E6nMibGRKrfaVFpEwtvy
+zT0K8eK9KUZIyG5nf1v8On4Vfu7MnavuxNubKoUhfu0B8hSd5JKiGDuUkSk3MiFX
+uctYmJZEUD1xLI787SzqrhuYMGfuwmrrI0N46yvUgRgxpkVj2s6GNWqRD3F/fOG+
+qFbeenHjFoMJN9HIAZaz4OqzgGfhfMf596rn+HPAJnRMtsI=
+-----END CERTIFICATE-----
diff --git a/tests/testapk/src/java/com/android/microdroid/test/MicrodroidTests.java b/tests/testapk/src/java/com/android/microdroid/test/MicrodroidTests.java
index 6070bcc..25dab0e 100644
--- a/tests/testapk/src/java/com/android/microdroid/test/MicrodroidTests.java
+++ b/tests/testapk/src/java/com/android/microdroid/test/MicrodroidTests.java
@@ -31,6 +31,7 @@
 
 import static org.junit.Assert.assertThrows;
 import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeFalse;
 import static org.junit.Assume.assumeTrue;
 
 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
@@ -72,6 +73,7 @@
 
 import org.junit.After;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.function.ThrowingRunnable;
@@ -95,7 +97,9 @@
 import java.nio.file.Paths;
 import java.time.LocalDateTime;
 import java.time.format.DateTimeFormatter;
+import java.util.ArrayList;
 import java.util.Arrays;
+import java.util.Collection;
 import java.util.List;
 import java.util.OptionalLong;
 import java.util.UUID;
@@ -117,28 +121,45 @@
 
     private static final String KERNEL_VERSION = SystemProperties.get("ro.kernel.version");
 
-    @Parameterized.Parameters(name = "protectedVm={0}")
-    public static Object[] protectedVmConfigs() {
-        return new Object[] { false, true };
+    @Parameterized.Parameters(name = "protectedVm={0},gki={1}")
+    public static Collection<Object[]> params() {
+        List<Object[]> ret = new ArrayList<>();
+        ret.add(new Object[] {true /* protectedVm */, null /* use microdroid kernel */});
+        ret.add(new Object[] {false /* protectedVm */, null /* use microdroid kernel */});
+        // TODO(b/302465542): run only the latest GKI on presubmit to reduce running time
+        for (String gki : SUPPORTED_GKI_VERSIONS) {
+            ret.add(new Object[] {true /* protectedVm */, gki});
+            ret.add(new Object[] {false /* protectedVm */, gki});
+        }
+        return ret;
     }
 
-    @Parameterized.Parameter public boolean mProtectedVm;
+    @Parameterized.Parameter(0)
+    public boolean mProtectedVm;
+
+    @Parameterized.Parameter(1)
+    public String mGki;
 
     @Before
     public void setup() {
-        grantPermission(VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION);
-        prepareTestSetup(mProtectedVm);
+        prepareTestSetup(mProtectedVm, mGki);
+        // USE_CUSTOM_VIRTUAL_MACHINE permission has protection level signature|development, meaning
+        // that it will be automatically granted when test apk is installed. We have some tests
+        // checking the behavior when caller doesn't have this permission (e.g.
+        // createVmWithConfigRequiresPermission). Proactively revoke the permission so that such
+        // tests can pass when ran by itself, e.g.:
+        // atest com.android.microdroid.test.MicrodroidTests#createVmWithConfigRequiresPermission
+        revokePermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
     }
 
     @After
     public void tearDown() {
-        revokePermission(VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION);
         revokePermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
     }
 
     private static final long ONE_MEBI = 1024 * 1024;
 
-    private static final long MIN_MEM_ARM64 = 150 * ONE_MEBI;
+    private static final long MIN_MEM_ARM64 = 170 * ONE_MEBI;
     private static final long MIN_MEM_X86_64 = 196 * ONE_MEBI;
     private static final String EXAMPLE_STRING = "Literally any string!! :)";
 
@@ -148,8 +169,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .setCpuTopology(cpuTopology)
@@ -195,8 +215,7 @@
         // For most of our tests we use a debug VM so failures can be diagnosed.
         // But we do need non-debug VMs to work, so run one.
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_NONE)
                         .setVmOutputCaptured(false)
@@ -208,41 +227,13 @@
         testResults.assertNoException();
         assertThat(testResults.mAddInteger).isEqualTo(37 + 73);
     }
-
-    @Test
-    @CddTest(
-            requirements = {
-                "9.17/C-1-1",
-                "9.17/C-1-2",
-                "9.17/C-1-4",
-            })
-    public void createVmRequiresPermission() {
-        assumeSupportedDevice();
-
-        revokePermission(VirtualMachine.MANAGE_VIRTUAL_MACHINE_PERMISSION);
-
-        VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
-                        .setMemoryBytes(minMemoryRequired())
-                        .build();
-
-        SecurityException e =
-                assertThrows(
-                        SecurityException.class,
-                        () -> forceCreateNewVirtualMachine("test_vm_requires_permission", config));
-        assertThat(e).hasMessageThat()
-                .contains("android.permission.MANAGE_VIRTUAL_MACHINE permission");
-    }
-
     @Test
     @CddTest(requirements = {"9.17/C-1-1"})
     public void autoCloseVm() throws Exception {
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -270,8 +261,7 @@
     @CddTest(requirements = {"9.17/C-1-1"})
     public void autoCloseVmDescriptor() throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config);
@@ -300,8 +290,7 @@
     @CddTest(requirements = {"9.17/C-1-1"})
     public void vmDescriptorClosedOnImport() throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config);
@@ -326,8 +315,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -375,8 +363,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -414,8 +401,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -465,8 +451,11 @@
     @CddTest(requirements = {"9.17/C-1-1"})
     public void vmConfigGetAndSetTests() {
         // Minimal has as little as specified as possible; everything that can be is defaulted.
-        VirtualMachineConfig.Builder minimalBuilder = newVmConfigBuilder();
-        VirtualMachineConfig minimal = minimalBuilder.setPayloadBinaryName("binary.so").build();
+        VirtualMachineConfig.Builder minimalBuilder =
+                new VirtualMachineConfig.Builder(getContext())
+                        .setPayloadBinaryName("binary.so")
+                        .setProtectedVm(isProtectedVm());
+        VirtualMachineConfig minimal = minimalBuilder.build();
 
         assertThat(minimal.getApkPath()).isNull();
         assertThat(minimal.getDebugLevel()).isEqualTo(DEBUG_LEVEL_NONE);
@@ -478,6 +467,7 @@
         assertThat(minimal.isEncryptedStorageEnabled()).isFalse();
         assertThat(minimal.getEncryptedStorageBytes()).isEqualTo(0);
         assertThat(minimal.isVmOutputCaptured()).isEqualTo(false);
+        assertThat(minimal.getOs()).isEqualTo("microdroid");
 
         // Maximal has everything that can be set to some non-default value. (And has different
         // values than minimal for the required fields.)
@@ -503,23 +493,31 @@
         assertThat(maximal.isEncryptedStorageEnabled()).isTrue();
         assertThat(maximal.getEncryptedStorageBytes()).isEqualTo(1_000_000);
         assertThat(maximal.isVmOutputCaptured()).isEqualTo(true);
+        assertThat(maximal.getOs()).isNull();
 
         assertThat(minimal.isCompatibleWith(maximal)).isFalse();
         assertThat(minimal.isCompatibleWith(minimal)).isTrue();
         assertThat(maximal.isCompatibleWith(maximal)).isTrue();
+
+        VirtualMachineConfig os = minimalBuilder.setOs("microdroid_gki-android14-6.1").build();
+        assertThat(os.getPayloadBinaryName()).isEqualTo("binary.so");
+        assertThat(os.getOs()).isEqualTo("microdroid_gki-android14-6.1");
+        assertThat(os.isCompatibleWith(minimal)).isFalse();
     }
 
     @Test
     @CddTest(requirements = {"9.17/C-1-1"})
     public void vmConfigBuilderValidationTests() {
-        VirtualMachineConfig.Builder builder = newVmConfigBuilder();
+        VirtualMachineConfig.Builder builder =
+                new VirtualMachineConfig.Builder(getContext()).setProtectedVm(mProtectedVm);
 
         // All your null are belong to me.
         assertThrows(NullPointerException.class, () -> new VirtualMachineConfig.Builder(null));
         assertThrows(NullPointerException.class, () -> builder.setApkPath(null));
         assertThrows(NullPointerException.class, () -> builder.setPayloadConfigPath(null));
         assertThrows(NullPointerException.class, () -> builder.setPayloadBinaryName(null));
-        assertThrows(NullPointerException.class, () -> builder.setPayloadConfigPath(null));
+        assertThrows(NullPointerException.class, () -> builder.setVendorDiskImage(null));
+        assertThrows(NullPointerException.class, () -> builder.setOs(null));
 
         // Individual property checks.
         assertThrows(
@@ -542,12 +540,28 @@
         assertThat(e).hasMessageThat().contains("setProtectedVm must be called");
 
         VirtualMachineConfig.Builder captureOutputOnNonDebuggable =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("binary.so")
+                newVmConfigBuilderWithPayloadBinary("binary.so")
                         .setDebugLevel(VirtualMachineConfig.DEBUG_LEVEL_NONE)
                         .setVmOutputCaptured(true);
         e = assertThrows(IllegalStateException.class, () -> captureOutputOnNonDebuggable.build());
         assertThat(e).hasMessageThat().contains("debug level must be FULL to capture output");
+
+        VirtualMachineConfig.Builder captureInputOnNonDebuggable =
+                newVmConfigBuilderWithPayloadBinary("binary.so")
+                        .setDebugLevel(VirtualMachineConfig.DEBUG_LEVEL_NONE)
+                        .setVmConsoleInputSupported(true);
+        e = assertThrows(IllegalStateException.class, () -> captureInputOnNonDebuggable.build());
+        assertThat(e).hasMessageThat().contains("debug level must be FULL to use console input");
+
+        VirtualMachineConfig.Builder specifyBothOsAndConfig =
+                new VirtualMachineConfig.Builder(getContext())
+                        .setPayloadConfigPath("config/path")
+                        .setProtectedVm(mProtectedVm)
+                        .setOs("microdroid");
+        e = assertThrows(IllegalStateException.class, () -> specifyBothOsAndConfig.build());
+        assertThat(e)
+                .hasMessageThat()
+                .contains("setPayloadConfigPath and setOs may not both be called");
     }
 
     @Test
@@ -576,6 +590,10 @@
                     .isFalse();
         }
 
+        // Changes that were incompatible but are currently compatible, but not guaranteed to be
+        // so in the API spec.
+        assertConfigCompatible(baseline, newBaselineBuilder().setApkPath("/different")).isTrue();
+
         // Changes that are currently incompatible for ease of implementation, but this might change
         // in the future.
         assertConfigCompatible(baseline, newBaselineBuilder().setEncryptedStorageBytes(100_000))
@@ -585,6 +603,9 @@
                 newBaselineBuilder().setDebugLevel(DEBUG_LEVEL_FULL);
         VirtualMachineConfig debuggable = debuggableBuilder.build();
         assertConfigCompatible(debuggable, debuggableBuilder.setVmOutputCaptured(true)).isFalse();
+        assertConfigCompatible(debuggable, debuggableBuilder.setVmOutputCaptured(false)).isTrue();
+        assertConfigCompatible(debuggable, debuggableBuilder.setVmConsoleInputSupported(true))
+                .isFalse();
 
         VirtualMachineConfig currentContextConfig =
                 new VirtualMachineConfig.Builder(getContext())
@@ -606,10 +627,15 @@
                         .setProtectedVm(isProtectedVm())
                         .setPayloadBinaryName("binary.so");
         assertConfigCompatible(currentContextConfig, otherContextBuilder).isFalse();
+
+        VirtualMachineConfig microdroidOsConfig = newBaselineBuilder().setOs("microdroid").build();
+        VirtualMachineConfig.Builder otherOsBuilder =
+                newBaselineBuilder().setOs("microdroid_gki-android14-6.1");
+        assertConfigCompatible(microdroidOsConfig, otherOsBuilder).isFalse();
     }
 
     private VirtualMachineConfig.Builder newBaselineBuilder() {
-        return newVmConfigBuilder().setPayloadBinaryName("binary.so").setApkPath("/apk/path");
+        return newVmConfigBuilderWithPayloadBinary("binary.so").setApkPath("/apk/path");
     }
 
     private BooleanSubject assertConfigCompatible(
@@ -620,8 +646,7 @@
     @Test
     @CddTest(requirements = {"9.17/C-1-1"})
     public void vmUnitTests() throws Exception {
-        VirtualMachineConfig.Builder builder =
-                newVmConfigBuilder().setPayloadBinaryName("binary.so");
+        VirtualMachineConfig.Builder builder = newVmConfigBuilderWithPayloadBinary("binary.so");
         VirtualMachineConfig config = builder.build();
         VirtualMachine vm = forceCreateNewVirtualMachine("vm_name", config);
 
@@ -653,8 +678,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -701,8 +725,7 @@
         final Context ctx = getContext().createDeviceProtectedStorageContext();
         final int userId = ctx.getUserId();
         final VirtualMachineManager vmm = ctx.getSystemService(VirtualMachineManager.class);
-        VirtualMachineConfig config =
-                newVmConfigBuilder().setPayloadBinaryName("binary.so").build();
+        VirtualMachineConfig config = newVmConfigBuilderWithPayloadBinary("binary.so").build();
         try {
             VirtualMachine vm = vmm.create("vm-name", config);
             // TODO(b/261430346): what about non-primary user?
@@ -720,8 +743,7 @@
         final Context ctx = getContext().createCredentialProtectedStorageContext();
         final int userId = ctx.getUserId();
         final VirtualMachineManager vmm = ctx.getSystemService(VirtualMachineManager.class);
-        VirtualMachineConfig config =
-                newVmConfigBuilder().setPayloadBinaryName("binary.so").build();
+        VirtualMachineConfig config = newVmConfigBuilderWithPayloadBinary("binary.so").build();
         try {
             VirtualMachine vm = vmm.create("vm-name", config);
             // TODO(b/261430346): what about non-primary user?
@@ -751,8 +773,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config.json")
                         .setMemoryBytes(minMemoryRequired())
                         .build();
 
@@ -774,8 +795,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .build();
 
@@ -802,8 +822,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidExitNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidExitNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .build();
 
@@ -835,8 +854,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setApkPath(getContext().getPackageCodePath())
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
@@ -873,8 +891,7 @@
 
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_extra_apk.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_extra_apk.json")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -895,8 +912,7 @@
     public void bootFailsWhenLowMem() throws Exception {
         for (int memMib : new int[]{ 10, 20, 40 }) {
             VirtualMachineConfig lowMemConfig =
-                    newVmConfigBuilder()
-                            .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                    newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                             .setMemoryBytes(memMib)
                             .setDebugLevel(DEBUG_LEVEL_NONE)
                             .setVmOutputCaptured(false)
@@ -946,8 +962,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig.Builder builder =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(fromLevel)
                         .setVmOutputCaptured(false);
         VirtualMachineConfig normalConfig = builder.build();
@@ -990,7 +1005,7 @@
                         try {
                             ITestService testService =
                                     ITestService.Stub.asInterface(
-                                            vm.connectToVsockServer(ITestService.SERVICE_PORT));
+                                            vm.connectToVsockServer(ITestService.PORT));
                             vmCdis.cdiAttest = testService.insecurelyExposeAttestationCdi();
                             vmCdis.instanceSecret = testService.insecurelyExposeVmInstanceSecret();
                         } catch (Exception e) {
@@ -1018,8 +1033,7 @@
 
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config.json")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         forceCreateNewVirtualMachine("test_vm_a", normalConfig);
@@ -1045,8 +1059,7 @@
 
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config.json")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         forceCreateNewVirtualMachine("test_vm", normalConfig);
@@ -1060,17 +1073,13 @@
     }
 
     @Test
-    @CddTest(requirements = {
-            "9.17/C-1-1",
-            "9.17/C-2-7"
-    })
+    @CddTest(requirements = {"9.17/C-1-1", "9.17/C-2-7"})
     public void bccIsSuperficiallyWellFormed() throws Exception {
         assumeSupportedDevice();
 
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config.json")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         VirtualMachine vm = forceCreateNewVirtualMachine("bcc_vm", normalConfig);
@@ -1090,11 +1099,18 @@
         assertThat(dataItems.size()).isEqualTo(1);
         assertThat(dataItems.get(0).getMajorType()).isEqualTo(MajorType.ARRAY);
         List<DataItem> rootArrayItems = ((Array) dataItems.get(0)).getDataItems();
-        assertThat(rootArrayItems.size()).isAtLeast(2); // Public key and one certificate
+        assertThat(rootArrayItems.size()).isAtLeast(2); // Root public key and one certificate
         if (mProtectedVm) {
-            // pvmfw truncates the DICE chain it gets, so we expect exactly entries for: public key,
-            // Microdroid and app payload.
-            assertThat(rootArrayItems.size()).isEqualTo(3);
+            if (isFeatureEnabled(VirtualMachineManager.FEATURE_DICE_CHANGES)) {
+                // When a true DICE chain is created, we expect the root public key, at least one
+                // entry for the boot before pvmfw, then pvmfw, vm_entry (Microdroid kernel) and
+                // Microdroid payload entries.
+                assertThat(rootArrayItems.size()).isAtLeast(5);
+            } else {
+                // pvmfw truncates the DICE chain it gets, so we expect exactly entries for
+                // public key, vm_entry (Microdroid kernel) and Microdroid payload.
+                assertThat(rootArrayItems.size()).isEqualTo(3);
+            }
         }
     }
 
@@ -1107,8 +1123,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         forceCreateNewVirtualMachine("test_vm", config);
@@ -1116,7 +1131,6 @@
         assertThrows(Exception.class, () -> launchVmAndGetCdis("test_vm"));
     }
 
-
     private static final UUID MICRODROID_PARTITION_UUID =
             UUID.fromString("cf9afe9a-0662-11ec-a329-c32663a09d75");
     private static final UUID PVM_FW_PARTITION_UUID =
@@ -1150,8 +1164,7 @@
 
     private RandomAccessFile prepareInstanceImage(String vmName) throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
 
@@ -1210,8 +1223,7 @@
     public void bootFailsWhenConfigIsInvalid() throws Exception {
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config_no_task.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config_no_task.json")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         forceCreateNewVirtualMachine("test_vm_invalid_config", normalConfig);
@@ -1225,14 +1237,14 @@
     @Test
     public void bootFailsWhenBinaryNameIsInvalid() throws Exception {
         VirtualMachineConfig.Builder builder =
-                newVmConfigBuilder().setPayloadBinaryName("DoesNotExist.so");
+                newVmConfigBuilderWithPayloadBinary("DoesNotExist.so");
         VirtualMachineConfig normalConfig = builder.setDebugLevel(DEBUG_LEVEL_FULL).build();
         forceCreateNewVirtualMachine("test_vm_invalid_binary_path", normalConfig);
 
         BootResult bootResult = tryBootVm(TAG, "test_vm_invalid_binary_path");
         assertThat(bootResult.payloadStarted).isFalse();
-        assertThat(bootResult.deathReason).isEqualTo(
-                VirtualMachineCallback.STOP_REASON_MICRODROID_UNKNOWN_RUNTIME_ERROR);
+        assertThat(bootResult.deathReason)
+                .isEqualTo(VirtualMachineCallback.STOP_REASON_MICRODROID_UNKNOWN_RUNTIME_ERROR);
     }
 
     // Checks whether microdroid_launcher started but payload failed. reason must be recorded in the
@@ -1262,8 +1274,7 @@
     @Test
     public void bootFailsWhenBinaryIsMissingEntryFunction() throws Exception {
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidEmptyNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidEmptyNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .setVmOutputCaptured(true)
                         .build();
@@ -1275,8 +1286,7 @@
     @Test
     public void bootFailsWhenBinaryTriesToLinkAgainstPrivateLibs() throws Exception {
         VirtualMachineConfig normalConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidPrivateLinkingNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidPrivateLinkingNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .setVmOutputCaptured(true)
                         .build();
@@ -1288,7 +1298,7 @@
     @Test
     public void sameInstancesShareTheSameVmObject() throws Exception {
         VirtualMachineConfig config =
-                newVmConfigBuilder().setPayloadBinaryName("MicrodroidTestNativeLib.so").build();
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so").build();
 
         VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config);
         VirtualMachine vm2 = getVirtualMachineManager().get("test_vm");
@@ -1307,8 +1317,7 @@
         // Arrange
         grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadConfigPath("assets/vm_config.json")
+                newVmConfigBuilderWithPayloadConfig("assets/" + os() + "/vm_config.json")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         String vmNameOrig = "test_vm_orig";
@@ -1348,8 +1357,7 @@
             throws Exception {
         // Arrange
         VirtualMachineConfig.Builder builder =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL);
         if (encryptedStoreEnabled) {
             builder.setEncryptedStorageBytes(4_000_000);
@@ -1405,8 +1413,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setEncryptedStorageBytes(4_000_000)
                         .setDebugLevel(DEBUG_LEVEL_FULL)
@@ -1429,8 +1436,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setEncryptedStorageBytes(4_000_000)
                         .setDebugLevel(DEBUG_LEVEL_FULL)
@@ -1490,8 +1496,7 @@
         assumeSupportedDevice();
 
         final VirtualMachineConfig vmConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -1511,12 +1516,34 @@
 
     @Test
     @CddTest(requirements = {"9.17/C-1-1"})
+    public void payloadIsNotRoot() throws Exception {
+        assumeSupportedDevice();
+        assumeFeatureEnabled(VirtualMachineManager.FEATURE_MULTI_TENANT);
+
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setMemoryBytes(minMemoryRequired())
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .build();
+        VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config);
+        TestResults testResults =
+                runVmTestService(
+                        TAG,
+                        vm,
+                        (ts, tr) -> {
+                            tr.mUid = ts.getUid();
+                        });
+        testResults.assertNoException();
+        assertThat(testResults.mUid).isNotEqualTo(0);
+    }
+
+    @Test
+    @CddTest(requirements = {"9.17/C-1-1"})
     public void encryptedStorageIsPersistent() throws Exception {
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setEncryptedStorageBytes(4_000_000)
                         .setDebugLevel(DEBUG_LEVEL_FULL)
@@ -1552,8 +1579,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -1580,6 +1606,7 @@
                         .setProtectedVm(mProtectedVm)
                         .setPayloadBinaryName("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .setVmConsoleInputSupported(true) // even if console input is supported
                         .build();
         final VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_forward_log", vmConfig);
         vm.run();
@@ -1594,6 +1621,28 @@
         }
     }
 
+    @Test
+    public void inputShouldBeExplicitlyAllowed() throws Exception {
+        assumeSupportedDevice();
+
+        final VirtualMachineConfig vmConfig =
+                new VirtualMachineConfig.Builder(getContext())
+                        .setProtectedVm(mProtectedVm)
+                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .setVmOutputCaptured(true) // even if output is captured
+                        .build();
+        final VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_forward_log", vmConfig);
+        vm.run();
+
+        try {
+            assertThrowsVmExceptionContaining(
+                    () -> vm.getConsoleInput(), "VM console input is not supported");
+        } finally {
+            vm.stop();
+        }
+    }
+
     private boolean checkVmOutputIsRedirectedToLogcat(boolean debuggable) throws Exception {
         String time =
                 LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"));
@@ -1657,6 +1706,35 @@
     }
 
     @Test
+    public void testConsoleInputSupported() throws Exception {
+        assumeSupportedDevice();
+        assumeTrue("Not supported on GKI kernels", mGki == null);
+
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .setVmConsoleInputSupported(true)
+                        .setVmOutputCaptured(true)
+                        .build();
+        VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_console_in", config);
+
+        final String TYPED = "this is a console input\n";
+        TestResults testResults =
+                runVmTestService(
+                        TAG,
+                        vm,
+                        (ts, tr) -> {
+                            OutputStreamWriter consoleIn =
+                                    new OutputStreamWriter(vm.getConsoleInput());
+                            consoleIn.write(TYPED);
+                            consoleIn.close();
+                            tr.mConsoleInput = ts.readLineFromConsole();
+                        });
+        testResults.assertNoException();
+        assertThat(testResults.mConsoleInput).isEqualTo(TYPED);
+    }
+
+    @Test
     public void testStartVmWithPayloadOfAnotherApp() throws Exception {
         assumeSupportedDevice();
 
@@ -1689,8 +1767,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
 
@@ -1723,8 +1800,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig config =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .setEncryptedStorageBytes(1_000_000)
                         .build();
@@ -1880,8 +1956,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig vmConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setMemoryBytes(minMemoryRequired())
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
@@ -1906,12 +1981,17 @@
                         | OsConstants.S_IROTH
                         | OsConstants.S_IWOTH
                         | OsConstants.S_IXOTH;
-        assertThat(testResults.mFileMode & allPermissionsMask)
-                .isEqualTo(OsConstants.S_IRUSR | OsConstants.S_IXUSR);
+        int expectedPermissions = OsConstants.S_IRUSR | OsConstants.S_IXUSR;
+        if (isFeatureEnabled(VirtualMachineManager.FEATURE_MULTI_TENANT)) {
+            expectedPermissions |= OsConstants.S_IRGRP | OsConstants.S_IXGRP;
+        }
+        assertThat(testResults.mFileMode & allPermissionsMask).isEqualTo(expectedPermissions);
     }
 
-    // Taken from bionic/libs/kernel/uapi/linux/mounth.h.
+    // Taken from bionic/libc/kernel/uapi/linux/mount.h
+    private static final int MS_RDONLY = 1;
     private static final int MS_NOEXEC = 8;
+    private static final int MS_NOATIME = 1024;
 
     @Test
     @CddTest(requirements = {"9.17/C-1-5"})
@@ -1919,8 +1999,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig vmConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .build();
         VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_data_mount", vmConfig);
@@ -1945,8 +2024,7 @@
         assumeSupportedDevice();
 
         VirtualMachineConfig vmConfig =
-                newVmConfigBuilder()
-                        .setPayloadBinaryName("MicrodroidTestNativeLib.so")
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
                         .setDebugLevel(DEBUG_LEVEL_FULL)
                         .setEncryptedStorageBytes(4_000_000)
                         .build();
@@ -1985,6 +2063,128 @@
         }
     }
 
+    @Test
+    public void configuringVendorDiskImageRequiresCustomPermission() throws Exception {
+        assumeSupportedDevice();
+        assumeFalse(
+                "Cuttlefish doesn't support device tree under /proc/device-tree", isCuttlefish());
+        // TODO(b/317567210): Boots fails with vendor partition in HWASAN enabled microdroid
+        // after introducing verification based on DT and fstab in microdroid vendor partition.
+        assumeFalse(
+                "boot with vendor partition is failing in HWASAN enabled Microdroid.", isHwasan());
+        assumeFeatureEnabled(VirtualMachineManager.FEATURE_VENDOR_MODULES);
+
+        File vendorDiskImage =
+                new File("/data/local/tmp/cts/microdroid/test_microdroid_vendor_image.img");
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setVendorDiskImage(vendorDiskImage)
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .build();
+
+        VirtualMachine vm =
+                forceCreateNewVirtualMachine("test_vendor_image_req_custom_permission", config);
+
+        SecurityException e =
+                assertThrows(
+                        SecurityException.class, () -> runVmTestService(TAG, vm, (ts, tr) -> {}));
+        assertThat(e)
+                .hasMessageThat()
+                .contains("android.permission.USE_CUSTOM_VIRTUAL_MACHINE permission");
+    }
+
+    // TODO(b/323768068): Enable this test when we can inject vendor digest for test purpose.
+    // After introducing VM reference DT, non-pVM cannot trust test_microdroid_vendor_image.img
+    // as well, because it doesn't pass the hashtree digest of testing image into VM.
+    @Ignore
+    @Test
+    public void bootsWithVendorPartition() throws Exception {
+        assumeSupportedDevice();
+        assumeFalse(
+                "Cuttlefish doesn't support device tree under /proc/device-tree", isCuttlefish());
+        // TODO(b/317567210): Boots fails with vendor partition in HWASAN enabled microdroid
+        // after introducing verification based on DT and fstab in microdroid vendor partition.
+        assumeFalse(
+                "Boot with vendor partition is failing in HWASAN enabled Microdroid.", isHwasan());
+        assumeFeatureEnabled(VirtualMachineManager.FEATURE_VENDOR_MODULES);
+
+        grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
+
+        File vendorDiskImage =
+                new File("/data/local/tmp/cts/microdroid/test_microdroid_vendor_image.img");
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setVendorDiskImage(vendorDiskImage)
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .build();
+
+        VirtualMachine vm = forceCreateNewVirtualMachine("test_boot_with_vendor", config);
+
+        TestResults testResults =
+                runVmTestService(
+                        TAG,
+                        vm,
+                        (ts, tr) -> {
+                            tr.mMountFlags = ts.getMountFlags("/vendor");
+                        });
+
+        assertThat(testResults.mException).isNull();
+        int expectedFlags = MS_NOATIME | MS_RDONLY;
+        assertThat(testResults.mMountFlags & expectedFlags).isEqualTo(expectedFlags);
+    }
+
+    @Test
+    public void creationFailsWithUnsignedVendorPartition() throws Exception {
+        assumeSupportedDevice();
+        assumeFalse(
+                "Cuttlefish doesn't support device tree under /proc/device-tree", isCuttlefish());
+        // TODO(b/317567210): Boots fails with vendor partition in HWASAN enabled microdroid
+        // after introducing verification based on DT and fstab in microdroid vendor partition.
+        assumeFalse(
+                "boot with vendor partition is failing in HWASAN enabled Microdroid.", isHwasan());
+        assumeFeatureEnabled(VirtualMachineManager.FEATURE_VENDOR_MODULES);
+
+        grantPermission(VirtualMachine.USE_CUSTOM_VIRTUAL_MACHINE_PERMISSION);
+
+        File unsignedVendorDiskImage =
+                new File(
+                        "/data/local/tmp/cts/microdroid/test_microdroid_vendor_image_unsigned.img");
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setVendorDiskImage(unsignedVendorDiskImage)
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .build();
+
+        VirtualMachine vm = forceCreateNewVirtualMachine("test_boot_with_unsigned_vendor", config);
+        BootResult bootResult = tryBootVm(TAG, "test_boot_with_unsigned_vendor");
+        assertThat(bootResult.payloadStarted).isFalse();
+        assertThat(bootResult.deathReason).isEqualTo(VirtualMachineCallback.STOP_REASON_REBOOT);
+    }
+
+    @Test
+    public void systemPartitionMountFlags() throws Exception {
+        assumeSupportedDevice();
+
+        VirtualMachineConfig config =
+                newVmConfigBuilderWithPayloadBinary("MicrodroidTestNativeLib.so")
+                        .setDebugLevel(DEBUG_LEVEL_FULL)
+                        .build();
+
+        VirtualMachine vm = forceCreateNewVirtualMachine("test_system_mount_flags", config);
+
+        TestResults testResults =
+                runVmTestService(
+                        TAG,
+                        vm,
+                        (ts, tr) -> {
+                            tr.mMountFlags = ts.getMountFlags("/");
+                        });
+
+        assertThat(testResults.mException).isNull();
+        int expectedFlags = MS_NOATIME | MS_RDONLY;
+        assertThat(testResults.mMountFlags & expectedFlags).isEqualTo(expectedFlags);
+    }
+
     private static class VmShareServiceConnection implements ServiceConnection {
 
         private final CountDownLatch mLatch = new CountDownLatch(1);
diff --git a/tests/testapk/src/native/testbinary.cpp b/tests/testapk/src/native/testbinary.cpp
index d24ddfd..c9b5e3a 100644
--- a/tests/testapk/src/native/testbinary.cpp
+++ b/tests/testapk/src/native/testbinary.cpp
@@ -248,6 +248,11 @@
             return ScopedAStatus::ok();
         }
 
+        ScopedAStatus getUid(int* out) override {
+            *out = getuid();
+            return ScopedAStatus::ok();
+        }
+
         ScopedAStatus runEchoReverseServer() override {
             auto result = start_echo_reverse_server();
             if (result.ok()) {
@@ -313,12 +318,32 @@
             return ScopedAStatus::ok();
         }
 
+        ScopedAStatus readLineFromConsole(std::string* out) {
+            FILE* f = fopen("/dev/console", "r");
+            if (f == nullptr) {
+                return ScopedAStatus::fromExceptionCodeWithMessage(EX_SERVICE_SPECIFIC,
+                                                                   "failed to open /dev/console");
+            }
+            char* line = nullptr;
+            size_t len = 0;
+            ssize_t nread = getline(&line, &len, f);
+
+            if (nread == -1) {
+                free(line);
+                return ScopedAStatus::fromExceptionCodeWithMessage(EX_SERVICE_SPECIFIC,
+                                                                   "failed to read /dev/console");
+            }
+            out->append(line, nread);
+            free(line);
+            return ScopedAStatus::ok();
+        }
+
         ScopedAStatus quit() override { exit(0); }
     };
     auto testService = ndk::SharedRefBase::make<TestService>();
 
     auto callback = []([[maybe_unused]] void* param) { AVmPayload_notifyPayloadReady(); };
-    AVmPayload_runVsockRpcServer(testService->asBinder().get(), testService->SERVICE_PORT, callback,
+    AVmPayload_runVsockRpcServer(testService->asBinder().get(), testService->PORT, callback,
                                  nullptr);
 
     return {};
diff --git a/tests/testapk/test.keystore b/tests/testapk/test.keystore
deleted file mode 100644
index 2946641..0000000
--- a/tests/testapk/test.keystore
+++ /dev/null
Binary files differ
diff --git a/tests/vendor_images/Android.bp b/tests/vendor_images/Android.bp
new file mode 100644
index 0000000..ecf0bb4
--- /dev/null
+++ b/tests/vendor_images/Android.bp
@@ -0,0 +1,26 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+prebuilt_etc {
+    name: "vendor_sign_key",
+    src: ":avb_testkey_rsa4096",
+    installable: false,
+}
+
+android_filesystem {
+    name: "test_microdroid_vendor_image",
+    partition_name: "microdroid-vendor",
+    type: "ext4",
+    file_contexts: ":microdroid_vendor_file_contexts.gen",
+    use_avb: true,
+    avb_private_key: ":vendor_sign_key",
+}
+
+android_filesystem {
+    name: "test_microdroid_vendor_image_unsigned",
+    partition_name: "microdroid-vendor",
+    type: "ext4",
+    file_contexts: ":microdroid_vendor_file_contexts.gen",
+}
diff --git a/tests/vmshareapp/Android.bp b/tests/vmshareapp/Android.bp
index 6c2c9e4..d4113bf 100644
--- a/tests/vmshareapp/Android.bp
+++ b/tests/vmshareapp/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -12,5 +13,5 @@
         // Defined in ../testapk/Android.bp
         "MicrodroidPayloadInOtherAppNativeLib",
     ],
-    min_sdk_version: "UpsideDownCake",
+    min_sdk_version: "34",
 }
diff --git a/tests/vmshareapp/aidl/Android.bp b/tests/vmshareapp/aidl/Android.bp
index df4a4b4..09e3405 100644
--- a/tests/vmshareapp/aidl/Android.bp
+++ b/tests/vmshareapp/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
diff --git a/tests/vmshareapp/src/java/com/android/microdroid/test/sharevm/VmShareServiceImpl.java b/tests/vmshareapp/src/java/com/android/microdroid/test/sharevm/VmShareServiceImpl.java
index edd6bf5..dc8908b 100644
--- a/tests/vmshareapp/src/java/com/android/microdroid/test/sharevm/VmShareServiceImpl.java
+++ b/tests/vmshareapp/src/java/com/android/microdroid/test/sharevm/VmShareServiceImpl.java
@@ -145,11 +145,10 @@
 
         Log.i(
                 TAG,
-                "Payload is ready, connecting to the vsock service at port "
-                        + ITestService.SERVICE_PORT);
+                "Payload is ready, connecting to the vsock service at port " + ITestService.PORT);
         ITestService testService =
                 ITestService.Stub.asInterface(
-                        mVirtualMachine.connectToVsockServer(ITestService.SERVICE_PORT));
+                        mVirtualMachine.connectToVsockServer(ITestService.PORT));
         return new RemoteTestServiceDelegate(testService);
     }
 
@@ -221,6 +220,11 @@
         }
 
         @Override
+        public int getUid() throws RemoteException {
+            throw new UnsupportedOperationException("Not supported");
+        }
+
+        @Override
         public void writeToFile(String content, String path) throws RemoteException {
             throw new UnsupportedOperationException("Not supported");
         }
@@ -246,6 +250,11 @@
         }
 
         @Override
+        public String readLineFromConsole() {
+            throw new UnsupportedOperationException("Not supported");
+        }
+
+        @Override
         public void quit() throws RemoteException {
             throw new UnsupportedOperationException("Not supported");
         }
diff --git a/virtualizationmanager/Android.bp b/virtualizationmanager/Android.bp
index 59e507f..39d296f 100644
--- a/virtualizationmanager/Android.bp
+++ b/virtualizationmanager/Android.bp
@@ -1,10 +1,16 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "virtualizationmanager_defaults",
     crate_name: "virtualizationmanager",
+    defaults: [
+        "avf_build_flags_rust",
+        "secretkeeper_use_latest_hal_aidl_rust",
+        "authgraph_use_latest_hal_aidl_rust",
+    ],
     edition: "2021",
     // Only build on targets which crosvm builds on.
     enabled: false,
@@ -27,11 +33,14 @@
         "libandroid_logger",
         "libanyhow",
         "libapkverify",
+        "libavflog",
         "libbase_rust",
         "libbinder_rs",
         "libclap",
+        "libcstr",
         "libcommand_fds",
         "libdisk",
+        "libglob",
         "libhypervisor_props",
         "liblazy_static",
         "liblibc",
@@ -57,6 +66,7 @@
         "libzip",
         "libvsock",
         "liblibfdt",
+        "libfsfdt",
         // TODO(b/202115393) stabilize the interface
         "packagemanager_aidl-rust",
     ],
@@ -80,6 +90,8 @@
         "libtempfile",
     ],
     data: [
+        ":test_avf_debug_policy_with_ramdump",
+        ":test_avf_debug_policy_without_ramdump",
         ":test_avf_debug_policy_with_adb",
         ":test_avf_debug_policy_without_adb",
     ],
diff --git a/virtualizationmanager/TEST_MAPPING b/virtualizationmanager/TEST_MAPPING
index a680f6d..cc24ef5 100644
--- a/virtualizationmanager/TEST_MAPPING
+++ b/virtualizationmanager/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/virtualizationmanager/fsfdt/Android.bp b/virtualizationmanager/fsfdt/Android.bp
new file mode 100644
index 0000000..0aa2ef0
--- /dev/null
+++ b/virtualizationmanager/fsfdt/Android.bp
@@ -0,0 +1,33 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_binary {
+    name: "fsfdt",
+    crate_name: "fsfdt",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    srcs: ["src/main.rs"],
+    prefer_rlib: true,
+    rustlibs: [
+        "libanyhow",
+        "libclap",
+        "libfsfdt",
+        "liblibfdt",
+    ],
+}
+
+rust_library_rlib {
+    name: "libfsfdt",
+    crate_name: "fsfdt",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    srcs: ["src/lib.rs"],
+    prefer_rlib: true,
+    rustlibs: [
+        "liblibfdt",
+        "libanyhow",
+    ],
+    apex_available: ["com.android.virt"],
+}
diff --git a/virtualizationmanager/fsfdt/src/lib.rs b/virtualizationmanager/fsfdt/src/lib.rs
new file mode 100644
index 0000000..a2ca519
--- /dev/null
+++ b/virtualizationmanager/fsfdt/src/lib.rs
@@ -0,0 +1,100 @@
+// Copyright 2024 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Implements converting file system to FDT blob
+
+use anyhow::{anyhow, Context, Result};
+use libfdt::Fdt;
+use std::ffi::{CStr, CString};
+use std::fs;
+use std::os::unix::ffi::OsStrExt;
+use std::path::Path;
+
+/// Trait for Fdt's file system support
+pub trait FsFdt<'a> {
+    /// Creates a Fdt from /proc/device-tree style directory by wrapping a mutable slice
+    fn from_fs(fs_path: &Path, fdt_buffer: &'a mut [u8]) -> Result<&'a mut Self>;
+
+    /// Appends a FDT from /proc/device-tree style directory at the given node path
+    fn append(&mut self, fdt_node_path: &CStr, fs_path: &Path) -> Result<()>;
+}
+
+impl<'a> FsFdt<'a> for Fdt {
+    fn from_fs(fs_path: &Path, fdt_buffer: &'a mut [u8]) -> Result<&'a mut Fdt> {
+        let fdt = Fdt::create_empty_tree(fdt_buffer)
+            .map_err(|e| anyhow!("Failed to create FDT, {e:?}"))?;
+
+        fdt.append(&CString::new("").unwrap(), fs_path)?;
+
+        Ok(fdt)
+    }
+
+    fn append(&mut self, fdt_node_path: &CStr, fs_path: &Path) -> Result<()> {
+        // Recursively traverse fs_path with DFS algorithm.
+        let mut stack = vec![fs_path.to_path_buf()];
+        while let Some(dir_path) = stack.pop() {
+            let relative_path = dir_path
+                .strip_prefix(fs_path)
+                .context("Internal error. Path does not have expected prefix")?
+                .as_os_str();
+            let fdt_path = CString::from_vec_with_nul(
+                [fdt_node_path.to_bytes(), b"/", relative_path.as_bytes(), b"\0"].concat(),
+            )
+            .context("Internal error. Path is not a valid Fdt path")?;
+
+            let mut node = self
+                .node_mut(&fdt_path)
+                .map_err(|e| anyhow!("Failed to write FDT, {e:?}"))?
+                .ok_or_else(|| anyhow!("Failed to find {fdt_node_path:?} in FDT"))?;
+
+            let mut subnode_names = vec![];
+            let entries =
+                fs::read_dir(&dir_path).with_context(|| format!("Failed to read {dir_path:?}"))?;
+            for entry in entries {
+                let entry =
+                    entry.with_context(|| format!("Failed to get an entry in {dir_path:?}"))?;
+                let entry_type =
+                    entry.file_type().with_context(|| "Unsupported entry type, {entry:?}")?;
+                let entry_name = entry.file_name(); // binding to keep name below.
+                if !entry_name.is_ascii() {
+                    return Err(anyhow!("Unsupported entry name for FDT, {entry:?}"));
+                }
+                // Safe to unwrap because validated as an ascii string above.
+                let name = CString::new(entry_name.as_bytes()).unwrap();
+                if entry_type.is_dir() {
+                    stack.push(entry.path());
+                    subnode_names.push(name);
+                } else if entry_type.is_file() {
+                    let value = fs::read(&entry.path())?;
+
+                    node.setprop(&name, &value)
+                        .map_err(|e| anyhow!("Failed to set FDT property, {e:?}"))?;
+                } else {
+                    return Err(anyhow!(
+                        "Failed to handle {entry:?}. FDT only uses file or directory"
+                    ));
+                }
+            }
+            // Note: sort() is necessary to prevent FdtError::Exists from add_subnodes().
+            // FDT library may omit address in node name when comparing their name, so sort to add
+            // node without address first.
+            subnode_names.sort();
+            let subnode_names_c_str: Vec<_> = subnode_names.iter().map(|x| x.as_c_str()).collect();
+            node.add_subnodes(&subnode_names_c_str)
+                .map_err(|e| anyhow!("Failed to add node, {e:?}"))?;
+        }
+
+        Ok(())
+    }
+}
diff --git a/virtualizationmanager/fsfdt/src/main.rs b/virtualizationmanager/fsfdt/src/main.rs
new file mode 100644
index 0000000..2fe71e7
--- /dev/null
+++ b/virtualizationmanager/fsfdt/src/main.rs
@@ -0,0 +1,42 @@
+// Copyright 2024 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! CLI for converting file system to FDT
+
+use clap::Parser;
+use fsfdt::FsFdt;
+use libfdt::Fdt;
+use std::fs;
+use std::path::PathBuf;
+
+const FDT_MAX_SIZE: usize = 1_000_000_usize;
+
+/// Option parser
+#[derive(Parser, Debug)]
+struct Opt {
+    /// File system path (directory path) to parse from
+    fs_path: PathBuf,
+
+    /// FDT file path for writing
+    fdt_file_path: PathBuf,
+}
+
+fn main() {
+    let opt = Opt::parse();
+
+    let mut data = vec![0_u8; FDT_MAX_SIZE];
+    let fdt = Fdt::from_fs(&opt.fs_path, &mut data).unwrap();
+    fdt.pack().unwrap();
+    fs::write(&opt.fdt_file_path, fdt.as_slice()).unwrap();
+}
diff --git a/virtualizationmanager/src/aidl.rs b/virtualizationmanager/src/aidl.rs
index 468ee19..602c670 100644
--- a/virtualizationmanager/src/aidl.rs
+++ b/virtualizationmanager/src/aidl.rs
@@ -15,24 +15,29 @@
 //! Implementation of the AIDL interface of the VirtualizationService.
 
 use crate::{get_calling_pid, get_calling_uid};
-use crate::atom::{
-    write_vm_booted_stats, write_vm_creation_stats};
+use crate::atom::{write_vm_booted_stats, write_vm_creation_stats};
 use crate::composite::make_composite_image;
 use crate::crosvm::{CrosvmConfig, DiskFile, PayloadState, VmContext, VmInstance, VmState};
 use crate::debug_config::DebugConfig;
-use crate::payload::{add_microdroid_payload_images, add_microdroid_system_images};
+use crate::payload::{add_microdroid_payload_images, add_microdroid_system_images, add_microdroid_vendor_image};
 use crate::selinux::{getfilecon, SeContext};
+use crate::reference_dt;
 use android_os_permissions_aidl::aidl::android::os::IPermissionController;
 use android_system_virtualizationcommon::aidl::android::system::virtualizationcommon::{
+    Certificate::Certificate,
     DeathReason::DeathReason,
     ErrorCode::ErrorCode,
 };
 use android_system_virtualizationservice::aidl::android::system::virtualizationservice::{
+    AssignableDevice::AssignableDevice,
     CpuTopology::CpuTopology,
     DiskImage::DiskImage,
     IVirtualMachine::{BnVirtualMachine, IVirtualMachine},
     IVirtualMachineCallback::IVirtualMachineCallback,
     IVirtualizationService::IVirtualizationService,
+    IVirtualizationService::FEATURE_MULTI_TENANT,
+    IVirtualizationService::FEATURE_VENDOR_MODULES,
+    IVirtualizationService::FEATURE_DICE_CHANGES,
     MemoryTrimLevel::MemoryTrimLevel,
     Partition::Partition,
     PartitionType::PartitionType,
@@ -47,24 +52,37 @@
 use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::{
         BnVirtualMachineService, IVirtualMachineService,
 };
+use android_hardware_security_secretkeeper::aidl::android::hardware::security::secretkeeper::ISecretkeeper::{BnSecretkeeper, ISecretkeeper};
+use android_hardware_security_secretkeeper::aidl::android::hardware::security::secretkeeper::SecretId::SecretId;
+use android_hardware_security_authgraph::aidl::android::hardware::security::authgraph::{
+    Arc::Arc as AuthgraphArc, IAuthGraphKeyExchange::IAuthGraphKeyExchange,
+    IAuthGraphKeyExchange::BnAuthGraphKeyExchange, Identity::Identity, KeInitResult::KeInitResult,
+    Key::Key, PubKey::PubKey, SessionIdSignature::SessionIdSignature, SessionInfo::SessionInfo,
+    SessionInitiationInfo::SessionInitiationInfo,
+};
 use anyhow::{anyhow, bail, Context, Result};
 use apkverify::{HashAlgorithm, V4Signature};
+use avflog::LogResult;
 use binder::{
     self, wait_for_interface, BinderFeatures, ExceptionCode, Interface, ParcelFileDescriptor,
     Status, StatusCode, Strong,
+    IntoBinderResult,
 };
 use disk::QcowFile;
+use glob::glob;
 use lazy_static::lazy_static;
 use log::{debug, error, info, warn};
-use microdroid_payload_config::{OsConfig, Task, TaskType, VmPayloadConfig};
+use microdroid_payload_config::{ApkConfig, OsConfig, Task, TaskType, VmPayloadConfig};
 use nix::unistd::pipe;
 use rpcbinder::RpcServer;
 use rustutils::system_properties;
 use semver::VersionReq;
+use std::collections::HashSet;
 use std::convert::TryInto;
 use std::ffi::CStr;
-use std::fs::{read_dir, remove_file, File, OpenOptions};
-use std::io::{BufRead, BufReader, Error, ErrorKind, Write};
+use std::fs::{canonicalize, read_dir, remove_file, File, OpenOptions};
+use std::io::{BufRead, BufReader, Error, ErrorKind, Seek, SeekFrom, Write};
+use std::iter;
 use std::num::{NonZeroU16, NonZeroU32};
 use std::os::unix::io::{FromRawFd, IntoRawFd};
 use std::os::unix::raw::pid_t;
@@ -91,6 +109,10 @@
 
 const MICRODROID_OS_NAME: &str = "microdroid";
 
+// TODO(b/291213394): Use 'default' instance for secretkeeper instead of 'nonsecure'
+const SECRETKEEPER_IDENTIFIER: &str =
+    "android.hardware.security.secretkeeper.ISecretkeeper/nonsecure";
+
 const UNFORMATTED_STORAGE_MAGIC: &str = "UNFORMATTED-STORAGE";
 
 /// crosvm requires all partitions to be a multiple of 4KiB.
@@ -100,6 +122,8 @@
     pub static ref GLOBAL_SERVICE: Strong<dyn IVirtualizationServiceInternal> =
         wait_for_interface(BINDER_SERVICE_IDENTIFIER)
             .expect("Could not connect to VirtualizationServiceInternal");
+    static ref SUPPORTED_OS_NAMES: HashSet<String> =
+        get_supported_os_names().expect("Failed to get list of supported os names");
 }
 
 fn create_or_update_idsig_file(
@@ -116,6 +140,23 @@
             .context("failed to create idsig")?;
 
     let mut output = clone_file(idsig_fd)?;
+
+    // Optimization. We don't have to update idsig file whenever a VM is started. Don't update it,
+    // if the idsig file already has the same APK digest.
+    if output.metadata()?.len() > 0 {
+        if let Ok(out_sig) = V4Signature::from_idsig(&mut output) {
+            if out_sig.signing_info.apk_digest == sig.signing_info.apk_digest {
+                debug!("idsig {:?} is up-to-date with apk {:?}.", output, input);
+                return Ok(());
+            }
+        }
+        // if we fail to read v4signature from output, that's fine. User can pass a random file.
+        // We will anyway overwrite the file to the v4signature generated from input_fd.
+    }
+
+    output
+        .seek(SeekFrom::Start(0))
+        .context("failed to move cursor to start on the idsig output")?;
     output.set_len(0).context("failed to set_len on the idsig output")?;
     sig.write_into(&mut output).context("failed to write idsig")?;
     Ok(())
@@ -141,29 +182,28 @@
 }
 
 impl Interface for VirtualizationService {
-    fn dump(&self, mut file: &File, _args: &[&CStr]) -> Result<(), StatusCode> {
+    fn dump(&self, writer: &mut dyn Write, _args: &[&CStr]) -> Result<(), StatusCode> {
         check_permission("android.permission.DUMP").or(Err(StatusCode::PERMISSION_DENIED))?;
         let state = &mut *self.state.lock().unwrap();
         let vms = state.vms();
-        writeln!(file, "Running {0} VMs:", vms.len()).or(Err(StatusCode::UNKNOWN_ERROR))?;
+        writeln!(writer, "Running {0} VMs:", vms.len()).or(Err(StatusCode::UNKNOWN_ERROR))?;
         for vm in vms {
-            writeln!(file, "VM CID: {}", vm.cid).or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\tState: {:?}", vm.vm_state.lock().unwrap())
+            writeln!(writer, "VM CID: {}", vm.cid).or(Err(StatusCode::UNKNOWN_ERROR))?;
+            writeln!(writer, "\tState: {:?}", vm.vm_state.lock().unwrap())
                 .or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\tPayload state {:?}", vm.payload_state())
+            writeln!(writer, "\tPayload state {:?}", vm.payload_state())
                 .or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\tProtected: {}", vm.protected).or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\ttemporary_directory: {}", vm.temporary_directory.to_string_lossy())
+            writeln!(writer, "\tProtected: {}", vm.protected).or(Err(StatusCode::UNKNOWN_ERROR))?;
+            writeln!(writer, "\ttemporary_directory: {}", vm.temporary_directory.to_string_lossy())
                 .or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\trequester_uid: {}", vm.requester_uid)
+            writeln!(writer, "\trequester_uid: {}", vm.requester_uid)
                 .or(Err(StatusCode::UNKNOWN_ERROR))?;
-            writeln!(file, "\trequester_debug_pid: {}", vm.requester_debug_pid)
+            writeln!(writer, "\trequester_debug_pid: {}", vm.requester_debug_pid)
                 .or(Err(StatusCode::UNKNOWN_ERROR))?;
         }
         Ok(())
     }
 }
-
 impl IVirtualizationService for VirtualizationService {
     /// Creates (but does not start) a new VM with the given configuration, assigning it the next
     /// available CID.
@@ -172,11 +212,18 @@
     fn createVm(
         &self,
         config: &VirtualMachineConfig,
-        console_fd: Option<&ParcelFileDescriptor>,
+        console_out_fd: Option<&ParcelFileDescriptor>,
+        console_in_fd: Option<&ParcelFileDescriptor>,
         log_fd: Option<&ParcelFileDescriptor>,
     ) -> binder::Result<Strong<dyn IVirtualMachine>> {
         let mut is_protected = false;
-        let ret = self.create_vm_internal(config, console_fd, log_fd, &mut is_protected);
+        let ret = self.create_vm_internal(
+            config,
+            console_out_fd,
+            console_in_fd,
+            log_fd,
+            &mut is_protected,
+        );
         write_vm_creation_stats(config, is_protected, &ret);
         ret
     }
@@ -189,27 +236,22 @@
         partition_type: PartitionType,
     ) -> binder::Result<()> {
         check_manage_access()?;
-        let size_bytes = size_bytes.try_into().map_err(|e| {
-            Status::new_exception_str(
-                ExceptionCode::ILLEGAL_ARGUMENT,
-                Some(format!("Invalid size {}: {:?}", size_bytes, e)),
-            )
-        })?;
+        let size_bytes = size_bytes
+            .try_into()
+            .with_context(|| format!("Invalid size: {}", size_bytes))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT)?;
         let size_bytes = round_up(size_bytes, PARTITION_GRANULARITY_BYTES);
-        let image = clone_file(image_fd)?;
+        let mut image = clone_file(image_fd)?;
         // initialize the file. Any data in the file will be erased.
-        image.set_len(0).map_err(|e| {
-            Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Failed to reset a file: {:?}", e)),
-            )
-        })?;
-        let mut part = QcowFile::new(image, size_bytes).map_err(|e| {
-            Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Failed to create QCOW2 image: {:?}", e)),
-            )
-        })?;
+        image
+            .seek(SeekFrom::Start(0))
+            .context("failed to move cursor to start")
+            .or_service_specific_exception(-1)?;
+        image.set_len(0).context("Failed to reset a file").or_service_specific_exception(-1)?;
+
+        let mut part = QcowFile::new(image, size_bytes)
+            .context("Failed to create QCOW2 image")
+            .or_service_specific_exception(-1)?;
 
         match partition_type {
             PartitionType::RAW => Ok(()),
@@ -220,12 +262,8 @@
                 format!("Unsupported partition type {:?}", partition_type),
             )),
         }
-        .map_err(|e| {
-            Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Failed to initialize partition as {:?}: {:?}", partition_type, e)),
-            )
-        })?;
+        .with_context(|| format!("Failed to initialize partition as {:?}", partition_type))
+        .or_service_specific_exception(-1)?;
 
         Ok(())
     }
@@ -236,13 +274,9 @@
         input_fd: &ParcelFileDescriptor,
         idsig_fd: &ParcelFileDescriptor,
     ) -> binder::Result<()> {
-        // TODO(b/193504400): do this only when (1) idsig_fd is empty or (2) the APK digest in
-        // idsig_fd is different from APK digest in input_fd
-
         check_manage_access()?;
 
-        create_or_update_idsig_file(input_fd, idsig_fd)
-            .map_err(|e| Status::new_service_specific_error_str(-1, Some(format!("{:?}", e))))?;
+        create_or_update_idsig_file(input_fd, idsig_fd).or_service_specific_exception(-1)?;
         Ok(())
     }
 
@@ -252,6 +286,34 @@
         // Delegate to the global service, including checking the debug permission.
         GLOBAL_SERVICE.debugListVms()
     }
+
+    /// Get a list of assignable device types.
+    fn getAssignableDevices(&self) -> binder::Result<Vec<AssignableDevice>> {
+        // Delegate to the global service, including checking the permission.
+        GLOBAL_SERVICE.getAssignableDevices()
+    }
+
+    /// Get a list of supported OSes.
+    fn getSupportedOSList(&self) -> binder::Result<Vec<String>> {
+        Ok(Vec::from_iter(SUPPORTED_OS_NAMES.iter().cloned()))
+    }
+
+    /// Returns whether given feature is enabled
+    fn isFeatureEnabled(&self, feature: &str) -> binder::Result<bool> {
+        check_manage_access()?;
+
+        // This approach is quite cumbersome, but will do the work for the short term.
+        // TODO(b/298012279): make this scalable.
+        match feature {
+            FEATURE_DICE_CHANGES => Ok(cfg!(dice_changes)),
+            FEATURE_MULTI_TENANT => Ok(cfg!(multi_tenant)),
+            FEATURE_VENDOR_MODULES => Ok(cfg!(vendor_modules)),
+            _ => {
+                warn!("unknown feature {feature}");
+                Ok(false)
+            }
+        }
+    }
 }
 
 impl VirtualizationService {
@@ -283,39 +345,27 @@
                 }
             }
         }
-        Err(Status::new_service_specific_error_str(
-            -1,
-            Some("Too many attempts to create VM context failed."),
-        ))
+        Err(anyhow!("Too many attempts to create VM context failed"))
+            .or_service_specific_exception(-1)
     }
 
     fn create_vm_internal(
         &self,
         config: &VirtualMachineConfig,
-        console_fd: Option<&ParcelFileDescriptor>,
+        console_out_fd: Option<&ParcelFileDescriptor>,
+        console_in_fd: Option<&ParcelFileDescriptor>,
         log_fd: Option<&ParcelFileDescriptor>,
         is_protected: &mut bool,
     ) -> binder::Result<Strong<dyn IVirtualMachine>> {
         let requester_uid = get_calling_uid();
         let requester_debug_pid = get_calling_pid();
 
+        check_config_features(config)?;
+
         // Allocating VM context checks the MANAGE_VIRTUAL_MACHINE permission.
         let (vm_context, cid, temporary_directory) = self.create_vm_context(requester_debug_pid)?;
 
-        let is_custom = match config {
-            VirtualMachineConfig::RawConfig(_) => true,
-            VirtualMachineConfig::AppConfig(config) => {
-                // Some features are reserved for platform apps only, even when using
-                // VirtualMachineAppConfig:
-                // - controlling CPUs;
-                // - specifying a config file in the APK;
-                // - gdbPort is set, meaning that crosvm will start a gdb server.
-                !config.taskProfiles.is_empty()
-                    || matches!(config.payload, Payload::ConfigPath(_))
-                    || config.gdbPort > 0
-            }
-        };
-        if is_custom {
+        if is_custom_config(config) {
             check_use_custom_virtual_machine()?;
         }
 
@@ -326,6 +376,13 @@
             check_gdb_allowed(config)?;
         }
 
+        let reference_dt = reference_dt::parse_reference_dt(&temporary_directory)
+            .context("Failed to create VM reference DT")
+            .or_service_specific_exception(-1)?;
+        if reference_dt.is_none() {
+            warn!("VM reference DT doesn't exist");
+        }
+
         let debug_level = match config {
             VirtualMachineConfig::AppConfig(config) => config.debugLevel,
             _ => DebugLevel::NONE,
@@ -339,8 +396,9 @@
         };
 
         let state = &mut *self.state.lock().unwrap();
-        let console_fd =
-            clone_or_prepare_logger_fd(&debug_config, console_fd, format!("Console({})", cid))?;
+        let console_out_fd =
+            clone_or_prepare_logger_fd(&debug_config, console_out_fd, format!("Console({})", cid))?;
+        let console_in_fd = console_in_fd.map(clone_file).transpose()?;
         let log_fd = clone_or_prepare_logger_fd(&debug_config, log_fd, format!("Log({})", cid))?;
 
         // Counter to generate unique IDs for temporary image files.
@@ -352,12 +410,12 @@
         let (is_app_config, config) = match config {
             VirtualMachineConfig::RawConfig(config) => (false, BorrowedOrOwned::Borrowed(config)),
             VirtualMachineConfig::AppConfig(config) => {
-                let config =
-                    load_app_config(config, &debug_config, &temporary_directory).map_err(|e| {
+                let config = load_app_config(config, &debug_config, &temporary_directory)
+                    .or_service_specific_exception_with(-1, |e| {
                         *is_protected = config.protectedVm;
                         let message = format!("Failed to load app config: {:?}", e);
                         error!("{}", message);
-                        Status::new_service_specific_error_str(-1, Some(message))
+                        message
                     })?;
                 (true, BorrowedOrOwned::Owned(config))
             }
@@ -367,8 +425,9 @@
 
         // Check if partition images are labeled incorrectly. This is to prevent random images
         // which are not protected by the Android Verified Boot (e.g. bits downloaded by apps) from
-        // being loaded in a pVM. This applies to everything in the raw config, and everything but
-        // the non-executable, generated partitions in the app config.
+        // being loaded in a pVM. This applies to everything but the instance image in the raw
+        // config, and everything but the non-executable, generated partitions in the app
+        // config.
         config
             .disks
             .iter()
@@ -377,30 +436,25 @@
                 if is_app_config {
                     !is_safe_app_partition(&partition.label)
                 } else {
-                    true // all partitions are checked
+                    !is_safe_raw_partition(&partition.label)
                 }
             })
             .try_for_each(check_label_for_partition)
-            .map_err(|e| Status::new_service_specific_error_str(-1, Some(format!("{:?}", e))))?;
+            .or_service_specific_exception(-1)?;
 
         let kernel = maybe_clone_file(&config.kernel)?;
         let initrd = maybe_clone_file(&config.initrd)?;
 
         // In a protected VM, we require custom kernels to come from a trusted source (b/237054515).
         if config.protectedVm {
-            check_label_for_kernel_files(&kernel, &initrd).map_err(|e| {
-                Status::new_service_specific_error_str(-1, Some(format!("{:?}", e)))
-            })?;
+            check_label_for_kernel_files(&kernel, &initrd).or_service_specific_exception(-1)?;
         }
 
         let zero_filler_path = temporary_directory.join("zero.img");
-        write_zero_filler(&zero_filler_path).map_err(|e| {
-            error!("Failed to make composite image: {:?}", e);
-            Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Failed to make composite image: {:?}", e)),
-            )
-        })?;
+        write_zero_filler(&zero_filler_path)
+            .context("Failed to make composite image")
+            .with_log()
+            .or_service_specific_exception(-1)?;
 
         // Assemble disk images if needed.
         let disks = config
@@ -421,14 +475,37 @@
             CpuTopology::MATCH_HOST => (None, true),
             CpuTopology::ONE_CPU => (NonZeroU32::new(1), false),
             val => {
-                error!("Unexpected value of CPU topology: {:?}", val);
-                return Err(Status::new_service_specific_error_str(
-                    -1,
-                    Some(format!("Failed to parse CPU topology value: {:?}", val)),
-                ));
+                return Err(anyhow!("Failed to parse CPU topology value {:?}", val))
+                    .with_log()
+                    .or_service_specific_exception(-1);
             }
         };
 
+        let (vfio_devices, dtbo) = if !config.devices.is_empty() {
+            let mut set = HashSet::new();
+            for device in config.devices.iter() {
+                let path = canonicalize(device)
+                    .with_context(|| format!("can't canonicalize {device}"))
+                    .or_service_specific_exception(-1)?;
+                if !set.insert(path) {
+                    return Err(anyhow!("duplicated device {device}"))
+                        .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
+                }
+            }
+            let devices = GLOBAL_SERVICE.bindDevicesToVfioDriver(&config.devices)?;
+            let dtbo_file = File::from(
+                GLOBAL_SERVICE
+                    .getDtboFile()?
+                    .as_ref()
+                    .try_clone()
+                    .context("Failed to create VM DTBO from ParcelFileDescriptor")
+                    .or_binder_exception(ExceptionCode::BAD_PARCELABLE)?,
+            );
+            (devices, Some(dtbo_file))
+        } else {
+            (vec![], None)
+        };
+
         // Actually start the VM.
         let crosvm_config = CrosvmConfig {
             cid,
@@ -444,13 +521,17 @@
             cpus,
             host_cpu_topology,
             task_profiles: config.taskProfiles.clone(),
-            console_fd,
+            console_out_fd,
+            console_in_fd,
             log_fd,
             ramdump,
             indirect_files,
             platform_version: parse_platform_version_req(&config.platformVersion)?,
             detect_hangup: is_app_config,
             gdb_port,
+            vfio_devices,
+            dtbo,
+            reference_dt,
         };
         let instance = Arc::new(
             VmInstance::new(
@@ -460,19 +541,44 @@
                 requester_debug_pid,
                 vm_context,
             )
-            .map_err(|e| {
-                error!("Failed to create VM with config {:?}: {:?}", config, e);
-                Status::new_service_specific_error_str(
-                    -1,
-                    Some(format!("Failed to create VM: {:?}", e)),
-                )
-            })?,
+            .with_context(|| format!("Failed to create VM with config {:?}", config))
+            .with_log()
+            .or_service_specific_exception(-1)?,
         );
         state.add_vm(Arc::downgrade(&instance));
         Ok(VirtualMachine::create(instance))
     }
 }
 
+/// Returns whether a VM config represents a "custom" virtual machine, which requires the
+/// USE_CUSTOM_VIRTUAL_MACHINE.
+fn is_custom_config(config: &VirtualMachineConfig) -> bool {
+    match config {
+        // Any raw (non-Microdroid) VM is considered custom.
+        VirtualMachineConfig::RawConfig(_) => true,
+        VirtualMachineConfig::AppConfig(config) => {
+            // Some features are reserved for platform apps only, even when using
+            // VirtualMachineAppConfig. Almost all of these features are grouped in the
+            // CustomConfig struct:
+            // - controlling CPUs;
+            // - gdbPort is set, meaning that crosvm will start a gdb server;
+            // - using anything other than the default kernel;
+            // - specifying devices to be assigned.
+            if config.customConfig.is_some() {
+                true
+            } else {
+                // Additional custom features not included in CustomConfig:
+                // - specifying a config file;
+                // - specifying extra APKs.
+                match &config.payload {
+                    Payload::ConfigPath(_) => true,
+                    Payload::PayloadConfig(payload_config) => !payload_config.extraApks.is_empty(),
+                }
+            }
+        }
+    }
+}
+
 fn write_zero_filler(zero_filler_path: &Path) -> Result<()> {
     let file = OpenOptions::new()
         .create_new(true)
@@ -517,10 +623,8 @@
     let image = if !disk.partitions.is_empty() {
         if disk.image.is_some() {
             warn!("DiskImage {:?} contains both image and partitions.", disk);
-            return Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_ARGUMENT,
-                Some("DiskImage contains both image and partitions."),
-            ));
+            return Err(anyhow!("DiskImage contains both image and partitions"))
+                .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
         }
 
         let composite_image_filenames =
@@ -532,13 +636,9 @@
             &composite_image_filenames.header,
             &composite_image_filenames.footer,
         )
-        .map_err(|e| {
-            error!("Failed to make composite image with config {:?}: {:?}", disk, e);
-            Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Failed to make composite image: {:?}", e)),
-            )
-        })?;
+        .with_context(|| format!("Failed to make composite disk image with config {:?}", disk))
+        .with_log()
+        .or_service_specific_exception(-1)?;
 
         // Pass the file descriptors for the various partition files to crosvm when it
         // is run.
@@ -549,15 +649,50 @@
         clone_file(image)?
     } else {
         warn!("DiskImage {:?} didn't contain image or partitions.", disk);
-        return Err(Status::new_exception_str(
-            ExceptionCode::ILLEGAL_ARGUMENT,
-            Some("DiskImage didn't contain image or partitions."),
-        ));
+        return Err(anyhow!("DiskImage didn't contain image or partitions."))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
     };
 
     Ok(DiskFile { image, writable: disk.writable })
 }
 
+fn append_kernel_param(param: &str, vm_config: &mut VirtualMachineRawConfig) {
+    if let Some(ref mut params) = vm_config.params {
+        params.push(' ');
+        params.push_str(param)
+    } else {
+        vm_config.params = Some(param.to_owned())
+    }
+}
+
+fn extract_os_name_from_config_path(config: &Path) -> Option<String> {
+    if config.extension()?.to_str()? != "json" {
+        return None;
+    }
+
+    Some(config.with_extension("").file_name()?.to_str()?.to_owned())
+}
+
+fn extract_os_names_from_configs(config_glob_pattern: &str) -> Result<HashSet<String>> {
+    let configs = glob(config_glob_pattern)?.collect::<Result<Vec<_>, _>>()?;
+    let os_names =
+        configs.iter().filter_map(|x| extract_os_name_from_config_path(x)).collect::<HashSet<_>>();
+
+    Ok(os_names)
+}
+
+fn get_supported_os_names() -> Result<HashSet<String>> {
+    if !cfg!(vendor_modules) {
+        return Ok(iter::once(MICRODROID_OS_NAME.to_owned()).collect());
+    }
+
+    extract_os_names_from_configs("/apex/com.android.virt/etc/microdroid*.json")
+}
+
+fn is_valid_os(os_name: &str) -> bool {
+    SUPPORTED_OS_NAMES.contains(os_name)
+}
+
 fn load_app_config(
     config: &VirtualMachineAppConfig,
     debug_config: &DebugConfig,
@@ -573,17 +708,33 @@
         None
     };
 
-    let vm_payload_config = match &config.payload {
+    let vm_payload_config;
+    let extra_apk_files: Vec<_>;
+    match &config.payload {
         Payload::ConfigPath(config_path) => {
-            load_vm_payload_config_from_file(&apk_file, config_path.as_str())
-                .with_context(|| format!("Couldn't read config from {}", config_path))?
+            vm_payload_config =
+                load_vm_payload_config_from_file(&apk_file, config_path.as_str())
+                    .with_context(|| format!("Couldn't read config from {}", config_path))?;
+            extra_apk_files = vm_payload_config
+                .extra_apks
+                .iter()
+                .enumerate()
+                .map(|(i, apk)| {
+                    File::open(PathBuf::from(&apk.path))
+                        .with_context(|| format!("Failed to open extra apk #{i} {}", apk.path))
+                })
+                .collect::<Result<_>>()?;
         }
-        Payload::PayloadConfig(payload_config) => create_vm_payload_config(payload_config)?,
+        Payload::PayloadConfig(payload_config) => {
+            vm_payload_config = create_vm_payload_config(payload_config)?;
+            extra_apk_files =
+                payload_config.extraApks.iter().map(clone_file).collect::<binder::Result<_>>()?;
+        }
     };
 
-    // For now, the only supported OS is Microdroid
+    // For now, the only supported OS is Microdroid and Microdroid GKI
     let os_name = vm_payload_config.os.name.as_str();
-    if os_name != MICRODROID_OS_NAME {
+    if !is_valid_os(os_name) {
         bail!("Unknown OS \"{}\"", os_name);
     }
 
@@ -593,6 +744,21 @@
     let vm_config_file = File::open(vm_config_path)?;
     let mut vm_config = VmConfig::load(&vm_config_file)?.to_parcelable()?;
 
+    if let Some(custom_config) = &config.customConfig {
+        if let Some(file) = custom_config.customKernelImage.as_ref() {
+            vm_config.kernel = Some(ParcelFileDescriptor::new(clone_file(file)?))
+        }
+        vm_config.taskProfiles = custom_config.taskProfiles.clone();
+        vm_config.gdbPort = custom_config.gdbPort;
+
+        if let Some(file) = custom_config.vendorImage.as_ref() {
+            add_microdroid_vendor_image(clone_file(file)?, &mut vm_config);
+            append_kernel_param("androidboot.microdroid.mount_vendor=1", &mut vm_config)
+        }
+
+        vm_config.devices = custom_config.devices.clone();
+    }
+
     if config.memoryMib > 0 {
         vm_config.memoryMib = config.memoryMib;
     }
@@ -600,11 +766,9 @@
     vm_config.name = config.name.clone();
     vm_config.protectedVm = config.protectedVm;
     vm_config.cpuTopology = config.cpuTopology;
-    vm_config.taskProfiles = config.taskProfiles.clone();
-    vm_config.gdbPort = config.gdbPort;
 
     // Microdroid takes additional init ramdisk & (optionally) storage image
-    add_microdroid_system_images(config, instance_file, storage_image, &mut vm_config)?;
+    add_microdroid_system_images(config, instance_file, storage_image, os_name, &mut vm_config)?;
 
     // Include Microdroid payload disk (contains apks, idsigs) in vm config
     add_microdroid_payload_images(
@@ -613,6 +777,7 @@
         temporary_directory,
         apk_file,
         idsig_file,
+        extra_apk_files,
         &vm_payload_config,
         &mut vm_config,
     )?;
@@ -639,11 +804,18 @@
     }
 
     let task = Task { type_: TaskType::MicrodroidLauncher, command: payload_binary_name.clone() };
+    let name = payload_config.osName.clone();
+
+    // The VM only cares about how many there are, these names are actually ignored.
+    let extra_apk_count = payload_config.extraApks.len();
+    let extra_apks =
+        (0..extra_apk_count).map(|i| ApkConfig { path: format!("extra-apk-{i}") }).collect();
+
     Ok(VmPayloadConfig {
-        os: OsConfig { name: MICRODROID_OS_NAME.to_owned() },
+        os: OsConfig { name },
         task: Some(task),
         apexes: vec![],
-        extra_apks: vec![],
+        extra_apks,
         prefer_staged: false,
         export_tombstones: None,
         enable_authfs: false,
@@ -688,10 +860,8 @@
     if perm_svc.checkPermission(perm, calling_pid, calling_uid as i32)? {
         Ok(())
     } else {
-        Err(Status::new_exception_str(
-            ExceptionCode::SECURITY,
-            Some(format!("does not have the {} permission", perm)),
-        ))
+        Err(anyhow!("does not have the {} permission", perm))
+            .or_binder_exception(ExceptionCode::SECURITY)
     }
 }
 
@@ -716,10 +886,15 @@
         || label.starts_with("extra-idsig-")
 }
 
+/// Returns whether a partition with the given label is safe for a raw config VM.
+fn is_safe_raw_partition(label: &str) -> bool {
+    label == "vm-instance"
+}
+
 /// Check that a file SELinux label is acceptable.
 ///
 /// We only want to allow code in a VM to be sourced from places that apps, and the
-/// system, do not have write access to.
+/// system or vendor, do not have write access to.
 ///
 /// Note that sepolicy must also grant read access for these types to both virtualization
 /// service and crosvm.
@@ -733,6 +908,7 @@
         | "staging_data_file" // updated/staged APEX images
         | "system_file" // immutable dm-verity protected partition
         | "virtualizationservice_data_file" // files created by VS / VirtMgr
+        | "vendor_microdroid_file" // immutable dm-verity protected partition (/vendor/etc/avf/microdroid/.*)
          => Ok(()),
         _ => bail!("Label {} is not allowed", context),
     }
@@ -797,40 +973,41 @@
     }
 
     fn start(&self) -> binder::Result<()> {
-        self.instance.start().map_err(|e| {
-            error!("Error starting VM with CID {}: {:?}", self.instance.cid, e);
-            Status::new_service_specific_error_str(-1, Some(e.to_string()))
-        })
+        self.instance
+            .start()
+            .with_context(|| format!("Error starting VM with CID {}", self.instance.cid))
+            .with_log()
+            .or_service_specific_exception(-1)
     }
 
     fn stop(&self) -> binder::Result<()> {
-        self.instance.kill().map_err(|e| {
-            error!("Error stopping VM with CID {}: {:?}", self.instance.cid, e);
-            Status::new_service_specific_error_str(-1, Some(e.to_string()))
-        })
+        self.instance
+            .kill()
+            .with_context(|| format!("Error stopping VM with CID {}", self.instance.cid))
+            .with_log()
+            .or_service_specific_exception(-1)
     }
 
     fn onTrimMemory(&self, level: MemoryTrimLevel) -> binder::Result<()> {
-        self.instance.trim_memory(level).map_err(|e| {
-            error!("Error trimming VM with CID {}: {:?}", self.instance.cid, e);
-            Status::new_service_specific_error_str(-1, Some(e.to_string()))
-        })
+        self.instance
+            .trim_memory(level)
+            .with_context(|| format!("Error trimming VM with CID {}", self.instance.cid))
+            .with_log()
+            .or_service_specific_exception(-1)
     }
 
     fn connectVsock(&self, port: i32) -> binder::Result<ParcelFileDescriptor> {
         if !matches!(&*self.instance.vm_state.lock().unwrap(), VmState::Running { .. }) {
-            return Err(Status::new_service_specific_error_str(-1, Some("VM is not running")));
+            return Err(anyhow!("VM is not running")).or_service_specific_exception(-1);
         }
         let port = port as u32;
         if port < 1024 {
-            return Err(Status::new_service_specific_error_str(
-                -1,
-                Some(format!("Can't connect to privileged port {port}")),
-            ));
+            return Err(anyhow!("Can't connect to privileged port {port}"))
+                .or_service_specific_exception(-1);
         }
-        let stream = VsockStream::connect_with_cid_port(self.instance.cid, port).map_err(|e| {
-            Status::new_service_specific_error_str(-1, Some(format!("Failed to connect: {:?}", e)))
-        })?;
+        let stream = VsockStream::connect_with_cid_port(self.instance.cid, port)
+            .context("Failed to connect")
+            .or_service_specific_exception(-1)?;
         Ok(vsock_stream_to_pfd(stream))
     }
 }
@@ -910,10 +1087,10 @@
 /// struct.
 #[derive(Debug, Default)]
 struct State {
-    /// The VMs which have been started. When VMs are started a weak reference is added to this list
-    /// while a strong reference is returned to the caller over Binder. Once all copies of the
-    /// Binder client are dropped the weak reference here will become invalid, and will be removed
-    /// from the list opportunistically the next time `add_vm` is called.
+    /// The VMs which have been started. When VMs are started a weak reference is added to this
+    /// list while a strong reference is returned to the caller over Binder. Once all copies of
+    /// the Binder client are dropped the weak reference here will become invalid, and will be
+    /// removed from the list opportunistically the next time `add_vm` is called.
     vms: Vec<Weak<VmInstance>>,
 }
 
@@ -956,17 +1133,16 @@
 }
 
 /// Converts a `&ParcelFileDescriptor` to a `File` by cloning the file.
-pub fn clone_file(file: &ParcelFileDescriptor) -> Result<File, Status> {
-    file.as_ref().try_clone().map_err(|e| {
-        Status::new_exception_str(
-            ExceptionCode::BAD_PARCELABLE,
-            Some(format!("Failed to clone File from ParcelFileDescriptor: {:?}", e)),
-        )
-    })
+pub fn clone_file(file: &ParcelFileDescriptor) -> binder::Result<File> {
+    file.as_ref()
+        .try_clone()
+        .context("Failed to clone File from ParcelFileDescriptor")
+        .or_binder_exception(ExceptionCode::BAD_PARCELABLE)
+        .map(File::from)
 }
 
 /// Converts an `&Option<ParcelFileDescriptor>` to an `Option<File>` by cloning the file.
-fn maybe_clone_file(file: &Option<ParcelFileDescriptor>) -> Result<Option<File>, Status> {
+fn maybe_clone_file(file: &Option<ParcelFileDescriptor>) -> binder::Result<Option<File>> {
     file.as_ref().map(clone_file).transpose()
 }
 
@@ -978,13 +1154,10 @@
 }
 
 /// Parses the platform version requirement string.
-fn parse_platform_version_req(s: &str) -> Result<VersionReq, Status> {
-    VersionReq::parse(s).map_err(|e| {
-        Status::new_exception_str(
-            ExceptionCode::BAD_PARCELABLE,
-            Some(format!("Invalid platform version requirement {}: {:?}", s, e)),
-        )
-    })
+fn parse_platform_version_req(s: &str) -> binder::Result<VersionReq> {
+    VersionReq::parse(s)
+        .with_context(|| format!("Invalid platform version requirement {}", s))
+        .or_binder_exception(ExceptionCode::BAD_PARCELABLE)
 }
 
 /// Create the empty ramdump file
@@ -993,13 +1166,10 @@
     // VM will emit ramdump to. `ramdump_read` will be sent back to the client (i.e. the VM
     // owner) for readout.
     let ramdump_path = temporary_directory.join("ramdump");
-    let ramdump = File::create(ramdump_path).map_err(|e| {
-        error!("Failed to prepare ramdump file: {:?}", e);
-        Status::new_service_specific_error_str(
-            -1,
-            Some(format!("Failed to prepare ramdump file: {:?}", e)),
-        )
-    })?;
+    let ramdump = File::create(ramdump_path)
+        .context("Failed to prepare ramdump file")
+        .with_log()
+        .or_service_specific_exception(-1)?;
     Ok(ramdump)
 }
 
@@ -1012,20 +1182,16 @@
 
 fn check_gdb_allowed(config: &VirtualMachineConfig) -> binder::Result<()> {
     if is_protected(config) {
-        return Err(Status::new_exception_str(
-            ExceptionCode::SECURITY,
-            Some("can't use gdb with protected VMs"),
-        ));
+        return Err(anyhow!("Can't use gdb with protected VMs"))
+            .or_binder_exception(ExceptionCode::SECURITY);
     }
 
     match config {
         VirtualMachineConfig::RawConfig(_) => Ok(()),
         VirtualMachineConfig::AppConfig(config) => {
             if config.debugLevel != DebugLevel::FULL {
-                Err(Status::new_exception_str(
-                    ExceptionCode::SECURITY,
-                    Some("can't use gdb with non-debuggable VMs"),
-                ))
+                Err(anyhow!("Can't use gdb with non-debuggable VMs"))
+                    .or_binder_exception(ExceptionCode::SECURITY)
             } else {
                 Ok(())
             }
@@ -1036,10 +1202,57 @@
 fn extract_gdb_port(config: &VirtualMachineConfig) -> Option<NonZeroU16> {
     match config {
         VirtualMachineConfig::RawConfig(config) => NonZeroU16::new(config.gdbPort as u16),
-        VirtualMachineConfig::AppConfig(config) => NonZeroU16::new(config.gdbPort as u16),
+        VirtualMachineConfig::AppConfig(config) => {
+            NonZeroU16::new(config.customConfig.as_ref().map(|c| c.gdbPort).unwrap_or(0) as u16)
+        }
     }
 }
 
+fn check_no_vendor_modules(config: &VirtualMachineConfig) -> binder::Result<()> {
+    let VirtualMachineConfig::AppConfig(config) = config else { return Ok(()) };
+    if let Some(custom_config) = &config.customConfig {
+        if custom_config.vendorImage.is_some() || custom_config.customKernelImage.is_some() {
+            return Err(anyhow!("vendor modules feature is disabled"))
+                .or_binder_exception(ExceptionCode::UNSUPPORTED_OPERATION);
+        }
+    }
+    Ok(())
+}
+
+fn check_no_devices(config: &VirtualMachineConfig) -> binder::Result<()> {
+    let VirtualMachineConfig::AppConfig(config) = config else { return Ok(()) };
+    if let Some(custom_config) = &config.customConfig {
+        if !custom_config.devices.is_empty() {
+            return Err(anyhow!("device assignment feature is disabled"))
+                .or_binder_exception(ExceptionCode::UNSUPPORTED_OPERATION);
+        }
+    }
+    Ok(())
+}
+
+fn check_no_extra_apks(config: &VirtualMachineConfig) -> binder::Result<()> {
+    let VirtualMachineConfig::AppConfig(config) = config else { return Ok(()) };
+    let Payload::PayloadConfig(payload_config) = &config.payload else { return Ok(()) };
+    if !payload_config.extraApks.is_empty() {
+        return Err(anyhow!("multi-tenant feature is disabled"))
+            .or_binder_exception(ExceptionCode::UNSUPPORTED_OPERATION);
+    }
+    Ok(())
+}
+
+fn check_config_features(config: &VirtualMachineConfig) -> binder::Result<()> {
+    if !cfg!(vendor_modules) {
+        check_no_vendor_modules(config)?;
+    }
+    if !cfg!(device_assignment) {
+        check_no_devices(config)?;
+    }
+    if !cfg!(multi_tenant) {
+        check_no_extra_apks(config)?;
+    }
+    Ok(())
+}
+
 fn clone_or_prepare_logger_fd(
     debug_config: &DebugConfig,
     fd: Option<&ParcelFileDescriptor>,
@@ -1053,12 +1266,12 @@
         return Ok(None);
     };
 
-    let (raw_read_fd, raw_write_fd) = pipe().map_err(|e| {
-        Status::new_service_specific_error_str(-1, Some(format!("Failed to create pipe: {:?}", e)))
-    })?;
+    let (raw_read_fd, raw_write_fd) =
+        pipe().context("Failed to create pipe").or_service_specific_exception(-1)?;
 
-    // SAFETY: We are the sole owners of these fds as they were just created.
+    // SAFETY: We are the sole owner of this FD as we just created it, and it is valid and open.
     let mut reader = BufReader::new(unsafe { File::from_raw_fd(raw_read_fd) });
+    // SAFETY: We are the sole owner of this FD as we just created it, and it is valid and open.
     let write_fd = unsafe { File::from_raw_fd(raw_write_fd) };
 
     std::thread::spawn(move || loop {
@@ -1114,9 +1327,8 @@
         let cid = self.cid;
         if let Some(vm) = self.state.lock().unwrap().get_vm(cid) {
             info!("VM with CID {} started payload", cid);
-            vm.update_payload_state(PayloadState::Started).map_err(|e| {
-                Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some(e.to_string()))
-            })?;
+            vm.update_payload_state(PayloadState::Started)
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE)?;
             vm.callbacks.notify_payload_started(cid);
 
             let vm_start_timestamp = vm.vm_metric.lock().unwrap().start_timestamp;
@@ -1124,10 +1336,7 @@
             Ok(())
         } else {
             error!("notifyPayloadStarted is called from an unknown CID {}", cid);
-            Err(Status::new_service_specific_error_str(
-                -1,
-                Some(format!("cannot find a VM with CID {}", cid)),
-            ))
+            Err(anyhow!("cannot find a VM with CID {}", cid)).or_service_specific_exception(-1)
         }
     }
 
@@ -1135,17 +1344,13 @@
         let cid = self.cid;
         if let Some(vm) = self.state.lock().unwrap().get_vm(cid) {
             info!("VM with CID {} reported payload is ready", cid);
-            vm.update_payload_state(PayloadState::Ready).map_err(|e| {
-                Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some(e.to_string()))
-            })?;
+            vm.update_payload_state(PayloadState::Ready)
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE)?;
             vm.callbacks.notify_payload_ready(cid);
             Ok(())
         } else {
             error!("notifyPayloadReady is called from an unknown CID {}", cid);
-            Err(Status::new_service_specific_error_str(
-                -1,
-                Some(format!("cannot find a VM with CID {}", cid)),
-            ))
+            Err(anyhow!("cannot find a VM with CID {}", cid)).or_service_specific_exception(-1)
         }
     }
 
@@ -1153,17 +1358,13 @@
         let cid = self.cid;
         if let Some(vm) = self.state.lock().unwrap().get_vm(cid) {
             info!("VM with CID {} finished payload", cid);
-            vm.update_payload_state(PayloadState::Finished).map_err(|e| {
-                Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some(e.to_string()))
-            })?;
+            vm.update_payload_state(PayloadState::Finished)
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE)?;
             vm.callbacks.notify_payload_finished(cid, exit_code);
             Ok(())
         } else {
             error!("notifyPayloadFinished is called from an unknown CID {}", cid);
-            Err(Status::new_service_specific_error_str(
-                -1,
-                Some(format!("cannot find a VM with CID {}", cid)),
-            ))
+            Err(anyhow!("cannot find a VM with CID {}", cid)).or_service_specific_exception(-1)
         }
     }
 
@@ -1171,19 +1372,33 @@
         let cid = self.cid;
         if let Some(vm) = self.state.lock().unwrap().get_vm(cid) {
             info!("VM with CID {} encountered an error", cid);
-            vm.update_payload_state(PayloadState::Finished).map_err(|e| {
-                Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some(e.to_string()))
-            })?;
+            vm.update_payload_state(PayloadState::Finished)
+                .or_binder_exception(ExceptionCode::ILLEGAL_STATE)?;
             vm.callbacks.notify_error(cid, error_code, message);
             Ok(())
         } else {
             error!("notifyError is called from an unknown CID {}", cid);
-            Err(Status::new_service_specific_error_str(
-                -1,
-                Some(format!("cannot find a VM with CID {}", cid)),
-            ))
+            Err(anyhow!("cannot find a VM with CID {}", cid)).or_service_specific_exception(-1)
         }
     }
+
+    fn getSecretkeeper(&self) -> binder::Result<Option<Strong<dyn ISecretkeeper>>> {
+        let sk = if is_secretkeeper_present() {
+            Some(binder::wait_for_interface(SECRETKEEPER_IDENTIFIER)?)
+        } else {
+            None
+        };
+        Ok(sk.map(|s| BnSecretkeeper::new_binder(SecretkeeperProxy(s), BinderFeatures::default())))
+    }
+
+    fn requestAttestation(&self, csr: &[u8]) -> binder::Result<Vec<Certificate>> {
+        GLOBAL_SERVICE.requestAttestation(csr, get_calling_uid() as i32)
+    }
+}
+
+fn is_secretkeeper_present() -> bool {
+    binder::is_declared(SECRETKEEPER_IDENTIFIER)
+        .expect("Could not check for declared Secretkeeper interface")
 }
 
 impl VirtualMachineService {
@@ -1269,4 +1484,209 @@
         assert!(ret.is_err(), "should fail");
         Ok(())
     }
+
+    #[test]
+    fn test_create_or_update_idsig_does_not_update_if_already_valid() -> Result<()> {
+        use std::io::Seek;
+
+        // Pick any APK
+        let mut apk = File::open("/system/priv-app/Shell/Shell.apk").unwrap();
+        let mut idsig = tempfile::tempfile().unwrap();
+
+        create_or_update_idsig_file(
+            &ParcelFileDescriptor::new(apk.try_clone()?),
+            &ParcelFileDescriptor::new(idsig.try_clone()?),
+        )?;
+        let modified_orig = idsig.metadata()?.modified()?;
+        apk.rewind()?;
+        idsig.rewind()?;
+
+        // Call the function again
+        create_or_update_idsig_file(
+            &ParcelFileDescriptor::new(apk.try_clone()?),
+            &ParcelFileDescriptor::new(idsig.try_clone()?),
+        )?;
+        let modified_new = idsig.metadata()?.modified()?;
+        assert!(modified_orig == modified_new, "idsig file was updated unnecessarily");
+        Ok(())
+    }
+
+    #[test]
+    fn test_create_or_update_idsig_on_non_empty_file() -> Result<()> {
+        use std::io::Read;
+
+        // Pick any APK
+        let mut apk = File::open("/system/priv-app/Shell/Shell.apk").unwrap();
+        let idsig_empty = tempfile::tempfile().unwrap();
+        let mut idsig_invalid = tempfile::tempfile().unwrap();
+        idsig_invalid.write_all(b"Oops")?;
+
+        // Create new idsig
+        create_or_update_idsig_file(
+            &ParcelFileDescriptor::new(apk.try_clone()?),
+            &ParcelFileDescriptor::new(idsig_empty.try_clone()?),
+        )?;
+        apk.rewind()?;
+
+        // Update idsig_invalid
+        create_or_update_idsig_file(
+            &ParcelFileDescriptor::new(apk.try_clone()?),
+            &ParcelFileDescriptor::new(idsig_invalid.try_clone()?),
+        )?;
+
+        // Ensure the 2 idsig files have same size!
+        assert!(
+            idsig_empty.metadata()?.len() == idsig_invalid.metadata()?.len(),
+            "idsig files differ in size"
+        );
+        // Ensure the 2 idsig files have same content!
+        for (b1, b2) in idsig_empty.bytes().zip(idsig_invalid.bytes()) {
+            assert!(b1.unwrap() == b2.unwrap(), "idsig files differ")
+        }
+        Ok(())
+    }
+    #[test]
+    fn test_append_kernel_param_first_param() {
+        let mut vm_config = VirtualMachineRawConfig { ..Default::default() };
+        append_kernel_param("foo=1", &mut vm_config);
+        assert_eq!(vm_config.params, Some("foo=1".to_owned()))
+    }
+
+    #[test]
+    fn test_append_kernel_param() {
+        let mut vm_config =
+            VirtualMachineRawConfig { params: Some("foo=5".to_owned()), ..Default::default() };
+        append_kernel_param("bar=42", &mut vm_config);
+        assert_eq!(vm_config.params, Some("foo=5 bar=42".to_owned()))
+    }
+
+    fn test_extract_os_name_from_config_path(
+        path: &Path,
+        expected_result: Option<&str>,
+    ) -> Result<()> {
+        let result = extract_os_name_from_config_path(path);
+        if result.as_deref() != expected_result {
+            bail!("Expected {:?} but was {:?}", expected_result, &result)
+        }
+        Ok(())
+    }
+
+    #[test]
+    fn test_extract_os_name_from_microdroid_config() -> Result<()> {
+        test_extract_os_name_from_config_path(
+            Path::new("/apex/com.android.virt/etc/microdroid.json"),
+            Some("microdroid"),
+        )
+    }
+
+    #[test]
+    fn test_extract_os_name_from_microdroid_gki_config() -> Result<()> {
+        test_extract_os_name_from_config_path(
+            Path::new("/apex/com.android.virt/etc/microdroid_gki-android14-6.1.json"),
+            Some("microdroid_gki-android14-6.1"),
+        )
+    }
+
+    #[test]
+    fn test_extract_os_name_from_invalid_path() -> Result<()> {
+        test_extract_os_name_from_config_path(
+            Path::new("/apex/com.android.virt/etc/microdroid.img"),
+            None,
+        )
+    }
+
+    #[test]
+    fn test_extract_os_name_from_configs() -> Result<()> {
+        let tmp_dir = tempfile::TempDir::new()?;
+        let tmp_dir_path = tmp_dir.path().to_owned();
+
+        let mut os_names: HashSet<String> = HashSet::new();
+        os_names.insert("microdroid".to_owned());
+        os_names.insert("microdroid_gki-android14-6.1".to_owned());
+        os_names.insert("microdroid_gki-android15-6.1".to_owned());
+
+        // config files
+        for os_name in &os_names {
+            std::fs::write(tmp_dir_path.join(os_name.to_owned() + ".json"), b"")?;
+        }
+
+        // fake files not related to configs
+        std::fs::write(tmp_dir_path.join("microdroid_super.img"), b"")?;
+        std::fs::write(tmp_dir_path.join("microdroid_foobar.apk"), b"")?;
+
+        let glob_pattern = match tmp_dir_path.join("microdroid*.json").to_str() {
+            Some(s) => s.to_owned(),
+            None => bail!("tmp_dir_path {:?} is not UTF-8", tmp_dir_path),
+        };
+
+        let result = extract_os_names_from_configs(&glob_pattern)?;
+        if result != os_names {
+            bail!("Expected {:?} but was {:?}", os_names, result);
+        }
+        Ok(())
+    }
+}
+
+struct SecretkeeperProxy(Strong<dyn ISecretkeeper>);
+
+impl Interface for SecretkeeperProxy {}
+
+impl ISecretkeeper for SecretkeeperProxy {
+    fn processSecretManagementRequest(&self, req: &[u8]) -> binder::Result<Vec<u8>> {
+        // Pass the request to the channel, and read the response.
+        self.0.processSecretManagementRequest(req)
+    }
+
+    fn getAuthGraphKe(&self) -> binder::Result<Strong<dyn IAuthGraphKeyExchange>> {
+        let ag = AuthGraphKeyExchangeProxy(self.0.getAuthGraphKe()?);
+        Ok(BnAuthGraphKeyExchange::new_binder(ag, BinderFeatures::default()))
+    }
+
+    fn deleteIds(&self, ids: &[SecretId]) -> binder::Result<()> {
+        self.0.deleteIds(ids)
+    }
+
+    fn deleteAll(&self) -> binder::Result<()> {
+        self.0.deleteAll()
+    }
+}
+
+struct AuthGraphKeyExchangeProxy(Strong<dyn IAuthGraphKeyExchange>);
+
+impl Interface for AuthGraphKeyExchangeProxy {}
+
+impl IAuthGraphKeyExchange for AuthGraphKeyExchangeProxy {
+    fn create(&self) -> binder::Result<SessionInitiationInfo> {
+        self.0.create()
+    }
+
+    fn init(
+        &self,
+        peer_pub_key: &PubKey,
+        peer_id: &Identity,
+        peer_nonce: &[u8],
+        peer_version: i32,
+    ) -> binder::Result<KeInitResult> {
+        self.0.init(peer_pub_key, peer_id, peer_nonce, peer_version)
+    }
+
+    fn finish(
+        &self,
+        peer_pub_key: &PubKey,
+        peer_id: &Identity,
+        peer_signature: &SessionIdSignature,
+        peer_nonce: &[u8],
+        peer_version: i32,
+        own_key: &Key,
+    ) -> binder::Result<SessionInfo> {
+        self.0.finish(peer_pub_key, peer_id, peer_signature, peer_nonce, peer_version, own_key)
+    }
+
+    fn authenticationComplete(
+        &self,
+        peer_signature: &SessionIdSignature,
+        shared_keys: &[AuthgraphArc; 2],
+    ) -> binder::Result<[AuthgraphArc; 2]> {
+        self.0.authenticationComplete(peer_signature, shared_keys)
+    }
 }
diff --git a/virtualizationmanager/src/atom.rs b/virtualizationmanager/src/atom.rs
index d6eb141..1d2d191 100644
--- a/virtualizationmanager/src/atom.rs
+++ b/virtualizationmanager/src/atom.rs
@@ -83,7 +83,7 @@
 // This matches how crosvm determines the number of logical cores.
 // For telemetry purposes only.
 pub(crate) fn get_num_cpus() -> Option<usize> {
-    // SAFETY - Only integer constants passed back and forth.
+    // SAFETY: Only integer constants passed back and forth.
     let ret = unsafe { libc::sysconf(libc::_SC_NPROCESSORS_CONF) };
     if ret > 0 {
         ret.try_into().ok()
diff --git a/virtualizationmanager/src/composite.rs b/virtualizationmanager/src/composite.rs
index fe17ff4..a4b7eae 100644
--- a/virtualizationmanager/src/composite.rs
+++ b/virtualizationmanager/src/composite.rs
@@ -93,7 +93,8 @@
                 .context("Invalid partition image file descriptor")?
                 .as_ref()
                 .try_clone()
-                .context("Failed to clone partition image file descriptor")?;
+                .context("Failed to clone partition image file descriptor")?
+                .into();
             let path = fd_path_for_file(&file);
             let size = get_partition_size(&file, &path)?;
             files.push(file);
diff --git a/virtualizationmanager/src/crosvm.rs b/virtualizationmanager/src/crosvm.rs
index 856ff1e..84c60bd 100644
--- a/virtualizationmanager/src/crosvm.rs
+++ b/virtualizationmanager/src/crosvm.rs
@@ -47,6 +47,7 @@
     VirtualMachineAppConfig::DebugLevel::DebugLevel
 };
 use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IGlobalVmContext::IGlobalVmContext;
+use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IBoundDevice::IBoundDevice;
 use binder::Strong;
 use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::IVirtualMachineService;
 use tombstoned_client::{TombstonedConnection, DebuggerdDumpType};
@@ -107,13 +108,17 @@
     pub cpus: Option<NonZeroU32>,
     pub host_cpu_topology: bool,
     pub task_profiles: Vec<String>,
-    pub console_fd: Option<File>,
+    pub console_out_fd: Option<File>,
+    pub console_in_fd: Option<File>,
     pub log_fd: Option<File>,
     pub ramdump: Option<File>,
     pub indirect_files: Vec<File>,
     pub platform_version: VersionReq,
     pub detect_hangup: bool,
     pub gdb_port: Option<NonZeroU16>,
+    pub vfio_devices: Vec<VfioDevice>,
+    pub dtbo: Option<File>,
+    pub reference_dt: Option<File>,
 }
 
 /// A disk image to pass to crosvm for a VM.
@@ -123,6 +128,8 @@
     pub writable: bool,
 }
 
+type VfioDevice = Strong<dyn IBoundDevice>;
+
 /// The lifecycle state which the payload in the VM has reported itself to be in.
 ///
 /// Note that the order of enum variants is significant; only forward transitions are allowed by
@@ -142,7 +149,7 @@
     /// The VM has not yet tried to start.
     NotStarted {
         ///The configuration needed to start the VM, if it has not yet been started.
-        config: CrosvmConfig,
+        config: Box<CrosvmConfig>,
     },
     /// The VM has been started.
     Running {
@@ -169,7 +176,8 @@
 pub struct VmMetric {
     /// Recorded timestamp when the VM is started.
     pub start_timestamp: Option<SystemTime>,
-    /// Update most recent guest_time periodically from /proc/[crosvm pid]/stat while VM is running.
+    /// Update most recent guest_time periodically from /proc/[crosvm pid]/stat while VM is
+    /// running.
     pub cpu_guest_time: Option<i64>,
     /// Update maximum RSS values periodically from /proc/[crosvm pid]/smaps while VM is running.
     pub rss: Option<Rss>,
@@ -182,8 +190,10 @@
     fn start(&mut self, instance: Arc<VmInstance>) -> Result<(), Error> {
         let state = mem::replace(self, VmState::Failed);
         if let VmState::NotStarted { config } = state {
+            let config = *config;
             let detect_hangup = config.detect_hangup;
             let (failure_pipe_read, failure_pipe_write) = create_pipe()?;
+            let vfio_devices = config.vfio_devices.clone();
 
             // If this fails and returns an error, `self` will be left in the `Failed` state.
             let child =
@@ -198,7 +208,7 @@
             let child_clone = child.clone();
             let instance_clone = instance.clone();
             let monitor_vm_exit_thread = Some(thread::spawn(move || {
-                instance_clone.monitor_vm_exit(child_clone, failure_pipe_read);
+                instance_clone.monitor_vm_exit(child_clone, failure_pipe_read, vfio_devices);
             }));
 
             if detect_hangup {
@@ -300,7 +310,7 @@
             .flatten()
             .map_or_else(|| format!("{}", requester_uid), |u| u.name);
         let instance = VmInstance {
-            vm_state: Mutex::new(VmState::NotStarted { config }),
+            vm_state: Mutex::new(VmState::NotStarted { config: Box::new(config) }),
             vm_context,
             cid,
             crosvm_control_socket_path: temporary_directory.join("crosvm.sock"),
@@ -335,7 +345,12 @@
     /// Monitors the exit of the VM (i.e. termination of the `child` process). When that happens,
     /// handles the event by updating the state, noityfing the event to clients by calling
     /// callbacks, and removing temporary files for the VM.
-    fn monitor_vm_exit(&self, child: Arc<SharedChild>, mut failure_pipe_read: File) {
+    fn monitor_vm_exit(
+        &self,
+        child: Arc<SharedChild>,
+        mut failure_pipe_read: File,
+        vfio_devices: Vec<VfioDevice>,
+    ) {
         let result = child.wait();
         match &result {
             Err(e) => error!("Error waiting for crosvm({}) instance to die: {}", child.id(), e),
@@ -393,6 +408,8 @@
         remove_temporary_files(&self.temporary_directory).unwrap_or_else(|e| {
             error!("Error removing temporary files from {:?}: {}", self.temporary_directory, e);
         });
+
+        drop(vfio_devices); // Cleanup devices.
     }
 
     /// Waits until payload is started, or timeout expires. When timeout occurs, kill
@@ -515,8 +532,10 @@
                         MemoryTrimLevel::TRIM_MEMORY_RUNNING_MODERATE => 10,
                         _ => bail!("Invalid memory trim level {:?}", level),
                     };
-                    let command =
-                        BalloonControlCommand::Adjust { num_bytes: total_memory * pct / 100 };
+                    let command = BalloonControlCommand::Adjust {
+                        num_bytes: total_memory * pct / 100,
+                        wait_for_success: false,
+                    };
                     if let Err(e) = vm_control::client::handle_request(
                         &VmRequest::BalloonCommand(command),
                         &self.crosvm_control_socket_path,
@@ -526,7 +545,7 @@
                 }
             }
             Ok(VmResponse::Err(e)) => {
-                // ENOTSUP is returned when the balloon protocol is not initialised. This
+                // ENOTSUP is returned when the balloon protocol is not initialized. This
                 // can occur for numerous reasons: Guest is still booting, guest doesn't
                 // support ballooning, host doesn't support ballooning. We don't log or
                 // raise an error in this case: trim is just a hint and we can ignore it.
@@ -591,7 +610,7 @@
     }
 
     let guest_time_ticks = data_list[42].parse::<i64>()?;
-    // SAFETY : It just returns an integer about CPU tick information.
+    // SAFETY: It just returns an integer about CPU tick information.
     let ticks_per_sec = unsafe { sysconf(_SC_CLK_TCK) };
     Ok(guest_time_ticks * MILLIS_PER_SEC / ticks_per_sec)
 }
@@ -626,10 +645,10 @@
 }
 
 fn death_reason(result: &Result<ExitStatus, io::Error>, mut failure_reason: &str) -> DeathReason {
-    if let Some(position) = failure_reason.find('|') {
+    if let Some((reason, info)) = failure_reason.split_once('|') {
         // Separator indicates extra context information is present after the failure name.
-        error!("Failure info: {}", &failure_reason[(position + 1)..]);
-        failure_reason = &failure_reason[..position];
+        error!("Failure info: {info}");
+        failure_reason = reason;
     }
     if let Ok(status) = result {
         match failure_reason {
@@ -676,6 +695,49 @@
     }
 }
 
+const SYSFS_PLATFORM_DEVICES_PATH: &str = "/sys/devices/platform/";
+const VFIO_PLATFORM_DRIVER_PATH: &str = "/sys/bus/platform/drivers/vfio-platform";
+
+fn vfio_argument_for_platform_device(device: &VfioDevice) -> Result<String, Error> {
+    // Check platform device exists
+    let path = Path::new(&device.getSysfsPath()?).canonicalize()?;
+    if !path.starts_with(SYSFS_PLATFORM_DEVICES_PATH) {
+        bail!("{path:?} is not a platform device");
+    }
+
+    // Check platform device is bound to VFIO driver
+    let dev_driver_path = path.join("driver").canonicalize()?;
+    if dev_driver_path != Path::new(VFIO_PLATFORM_DRIVER_PATH) {
+        bail!("{path:?} is not bound to VFIO-platform driver");
+    }
+
+    if let Some(p) = path.to_str() {
+        Ok(format!("--vfio={p},iommu=pkvm-iommu,dt-symbol={0}", device.getDtboLabel()?))
+    } else {
+        bail!("invalid path {path:?}");
+    }
+}
+
+fn append_platform_devices(
+    command: &mut Command,
+    preserved_fds: &mut Vec<RawFd>,
+    config: &CrosvmConfig,
+) -> Result<(), Error> {
+    if config.vfio_devices.is_empty() {
+        return Ok(());
+    }
+
+    let Some(dtbo) = &config.dtbo else {
+        bail!("VFIO devices assigned but no DTBO available");
+    };
+    command.arg(format!("--device-tree-overlay={},filter", add_preserved_fd(preserved_fds, dtbo)));
+
+    for device in &config.vfio_devices {
+        command.arg(vfio_argument_for_platform_device(device)?);
+    }
+    Ok(())
+}
+
 /// Starts an instance of `crosvm` to manage a new VM.
 fn run_vm(
     config: CrosvmConfig,
@@ -748,8 +810,10 @@
     }
 
     if config.host_cpu_topology {
-        // TODO(b/266664564): replace with --host-cpu-topology once available
-        if let Some(cpus) = get_num_cpus() {
+        if cfg!(virt_cpufreq) {
+            command.arg("--host-cpu-topology");
+            command.arg("--virt-cpufreq");
+        } else if let Some(cpus) = get_num_cpus() {
             command.arg("--cpus").arg(cpus.to_string());
         } else {
             bail!("Could not determine the number of CPUs in the system");
@@ -776,21 +840,29 @@
     //
     // When [console|log]_fd is not specified, the devices are attached to sink, which means what's
     // written there is discarded.
-    let console_arg = format_serial_arg(&mut preserved_fds, &config.console_fd);
-    let log_arg = format_serial_arg(&mut preserved_fds, &config.log_fd);
+    let console_out_arg = format_serial_out_arg(&mut preserved_fds, &config.console_out_fd);
+    let console_in_arg = config
+        .console_in_fd
+        .as_ref()
+        .map(|fd| format!(",input={}", add_preserved_fd(&mut preserved_fds, fd)))
+        .unwrap_or_default();
+    let log_arg = format_serial_out_arg(&mut preserved_fds, &config.log_fd);
     let failure_serial_path = add_preserved_fd(&mut preserved_fds, &failure_pipe_write);
-    let ramdump_arg = format_serial_arg(&mut preserved_fds, &config.ramdump);
+    let ramdump_arg = format_serial_out_arg(&mut preserved_fds, &config.ramdump);
 
     // Warning: Adding more serial devices requires you to shift the PCI device ID of the boot
     // disks in bootconfig.x86_64. This is because x86 crosvm puts serial devices and the block
     // devices in the same PCI bus and serial devices comes before the block devices. Arm crosvm
     // doesn't have the issue.
     // /dev/ttyS0
-    command.arg(format!("--serial={},hardware=serial,num=1", &console_arg));
+    command.arg(format!("--serial={},hardware=serial,num=1", &console_out_arg));
     // /dev/ttyS1
     command.arg(format!("--serial=type=file,path={},hardware=serial,num=2", &failure_serial_path));
     // /dev/hvc0
-    command.arg(format!("--serial={},hardware=virtio-console,num=1", &console_arg));
+    command.arg(format!(
+        "--serial={}{},hardware=virtio-console,num=1",
+        &console_out_arg, &console_in_arg
+    ));
     // /dev/hvc1
     command.arg(format!("--serial={},hardware=virtio-console,num=2", &ramdump_arg));
     // /dev/hvc2
@@ -824,6 +896,14 @@
         .arg("--socket")
         .arg(add_preserved_fd(&mut preserved_fds, &control_server_socket.as_raw_descriptor()));
 
+    if let Some(reference_dt) = &config.reference_dt {
+        command
+            .arg("--device-tree-overlay")
+            .arg(add_preserved_fd(&mut preserved_fds, reference_dt));
+    }
+
+    append_platform_devices(&mut command, &mut preserved_fds, &config)?;
+
     debug!("Preserving FDs {:?}", preserved_fds);
     command.preserved_fds(preserved_fds);
 
@@ -890,7 +970,7 @@
 
 /// Adds the file descriptor for `file` (if any) to `preserved_fds`, and returns the appropriate
 /// string for a crosvm `--serial` flag. If `file` is none, creates a dummy sink device.
-fn format_serial_arg(preserved_fds: &mut Vec<RawFd>, file: &Option<File>) -> String {
+fn format_serial_out_arg(preserved_fds: &mut Vec<RawFd>, file: &Option<File>) -> String {
     if let Some(file) = file {
         format!("type=file,path={}", add_preserved_fd(preserved_fds, file))
     } else {
@@ -901,8 +981,9 @@
 /// Creates a new pipe with the `O_CLOEXEC` flag set, and returns the read side and write side.
 fn create_pipe() -> Result<(File, File), Error> {
     let (raw_read, raw_write) = pipe2(OFlag::O_CLOEXEC)?;
-    // SAFETY: We are the sole owners of these fds as they were just created.
+    // SAFETY: We are the sole owner of this FD as we just created it, and it is valid and open.
     let read_fd = unsafe { File::from_raw_fd(raw_read) };
+    // SAFETY: We are the sole owner of this FD as we just created it, and it is valid and open.
     let write_fd = unsafe { File::from_raw_fd(raw_write) };
     Ok((read_fd, write_fd))
 }
diff --git a/virtualizationmanager/src/debug_config.rs b/virtualizationmanager/src/debug_config.rs
index 7172e7d..e2b657a 100644
--- a/virtualizationmanager/src/debug_config.rs
+++ b/virtualizationmanager/src/debug_config.rs
@@ -42,10 +42,10 @@
     }
 
     fn to_path(&self) -> PathBuf {
-        // SAFETY -- unwrap() is safe for to_str() because node_path and prop_name were &str.
+        // unwrap() is safe for to_str() because node_path and prop_name were &str.
         PathBuf::from(
             [
-                "/sys/firmware/devicetree/base",
+                "/proc/device-tree",
                 self.node_path.to_str().unwrap(),
                 "/",
                 self.prop_name.to_str().unwrap(),
@@ -84,9 +84,9 @@
     let (node_path, prop_name) = (&path.node_path, &path.prop_name);
     let node = match fdt.node(node_path) {
         Ok(Some(node)) => node,
-        Err(error) if error != FdtError::NotFound => Err(error)
-            .map_err(Error::msg)
-            .with_context(|| format!("Failed to get node {node_path:?}"))?,
+        Err(error) if error != FdtError::NotFound => {
+            Err(Error::msg(error)).with_context(|| format!("Failed to get node {node_path:?}"))?
+        }
         _ => return Ok(false),
     };
 
@@ -94,9 +94,9 @@
         Ok(Some(0)) => Ok(false),
         Ok(Some(1)) => Ok(true),
         Ok(Some(_)) => Err(anyhow!("Invalid prop value {prop_name:?} in node {node_path:?}")),
-        Err(error) if error != FdtError::NotFound => Err(error)
-            .map_err(Error::msg)
-            .with_context(|| format!("Failed to get prop {prop_name:?}")),
+        Err(error) if error != FdtError::NotFound => {
+            Err(Error::msg(error)).with_context(|| format!("Failed to get prop {prop_name:?}"))
+        }
         _ => Ok(false),
     }
 }
@@ -129,7 +129,7 @@
                 .map_err(Error::msg)
                 .with_context(|| "Malformed {overlay_file_path:?}")?;
 
-            // SAFETY - Return immediately if error happens. Damaged fdt_buf and fdt are discarded.
+            // SAFETY: Return immediately if error happens. Damaged fdt_buf and fdt are discarded.
             unsafe {
                 fdt.apply_overlay(overlay_fdt).map_err(Error::msg).with_context(|| {
                     "Failed to overlay {overlay_file_path:?} onto empty device tree"
@@ -141,7 +141,7 @@
     }
 
     fn as_fdt(&self) -> &Fdt {
-        // SAFETY - Checked validity of buffer when instantiate.
+        // SAFETY: Checked validity of buffer when instantiate.
         unsafe { Fdt::unchecked_from_slice(&self.buffer) }
     }
 }
@@ -239,6 +239,38 @@
     }
 
     #[test]
+    fn test_read_avf_debug_policy_with_ramdump() -> Result<()> {
+        let debug_config = DebugConfig::from_custom_debug_overlay_policy(
+            DebugLevel::FULL,
+            "avf_debug_policy_with_ramdump.dtbo".as_ref(),
+        )
+        .unwrap();
+
+        assert_eq!(DebugLevel::FULL, debug_config.debug_level);
+        assert!(!debug_config.debug_policy_log);
+        assert!(debug_config.debug_policy_ramdump);
+        assert!(debug_config.debug_policy_adb);
+
+        Ok(())
+    }
+
+    #[test]
+    fn test_read_avf_debug_policy_without_ramdump() -> Result<()> {
+        let debug_config = DebugConfig::from_custom_debug_overlay_policy(
+            DebugLevel::FULL,
+            "avf_debug_policy_without_ramdump.dtbo".as_ref(),
+        )
+        .unwrap();
+
+        assert_eq!(DebugLevel::FULL, debug_config.debug_level);
+        assert!(!debug_config.debug_policy_log);
+        assert!(!debug_config.debug_policy_ramdump);
+        assert!(debug_config.debug_policy_adb);
+
+        Ok(())
+    }
+
+    #[test]
     fn test_read_avf_debug_policy_with_adb() -> Result<()> {
         let debug_config = DebugConfig::from_custom_debug_overlay_policy(
             DebugLevel::FULL,
diff --git a/virtualizationmanager/src/main.rs b/virtualizationmanager/src/main.rs
index bd7f8af..2e542c3 100644
--- a/virtualizationmanager/src/main.rs
+++ b/virtualizationmanager/src/main.rs
@@ -20,6 +20,7 @@
 mod crosvm;
 mod debug_config;
 mod payload;
+mod reference_dt;
 mod selinux;
 
 use crate::aidl::{GLOBAL_SERVICE, VirtualizationService};
@@ -27,7 +28,7 @@
 use anyhow::{bail, Context, Result};
 use binder::{BinderFeatures, ProcessState};
 use lazy_static::lazy_static;
-use log::{info, Level};
+use log::{info, LevelFilter};
 use rpcbinder::{FileDescriptorTransportMode, RpcServer};
 use std::os::unix::io::{FromRawFd, OwnedFd, RawFd};
 use clap::Parser;
@@ -86,7 +87,7 @@
     }
     owned_fds.push(raw_fd);
 
-    // SAFETY - Initializing OwnedFd for a RawFd provided in cmdline arguments.
+    // SAFETY: Initializing OwnedFd for a RawFd provided in cmdline arguments.
     // We checked that the integer value corresponds to a valid FD and that this
     // is the first argument to claim its ownership.
     Ok(unsafe { OwnedFd::from_raw_fd(raw_fd) })
@@ -107,8 +108,8 @@
     android_logger::init_once(
         android_logger::Config::default()
             .with_tag(LOG_TAG)
-            .with_min_level(Level::Info)
-            .with_log_id(android_logger::LogId::System),
+            .with_max_level(LevelFilter::Info)
+            .with_log_buffer(android_logger::LogId::System),
     );
 
     check_vm_support().unwrap();
diff --git a/virtualizationmanager/src/payload.rs b/virtualizationmanager/src/payload.rs
index 33659d4..05626d3 100644
--- a/virtualizationmanager/src/payload.rs
+++ b/virtualizationmanager/src/payload.rs
@@ -41,11 +41,6 @@
 use std::time::SystemTime;
 use vmconfig::open_parcel_file;
 
-/// The list of APEXes which microdroid requires.
-// TODO(b/192200378) move this to microdroid.json?
-const MICRODROID_REQUIRED_APEXES: [&str; 1] = ["com.android.os.statsd"];
-const MICRODROID_REQUIRED_APEXES_DEBUG: [&str; 1] = ["com.android.adbd"];
-
 const APEX_INFO_LIST_PATH: &str = "/apex/apex-info-list.xml";
 
 const PACKAGE_MANAGER_NATIVE_SERVICE: &str = "package_native";
@@ -81,6 +76,9 @@
 
     #[serde(rename = "provideSharedApexLibs")]
     provide_shared_apex_libs: bool,
+
+    #[serde(rename = "preinstalledModulePath")]
+    preinstalled_path: PathBuf,
 }
 
 impl ApexInfoList {
@@ -194,12 +192,13 @@
     temporary_directory: &Path,
 ) -> Result<ParcelFileDescriptor> {
     let payload_metadata = match &app_config.payload {
-        Payload::PayloadConfig(payload_config) => PayloadMetadata::config(PayloadConfig {
+        Payload::PayloadConfig(payload_config) => PayloadMetadata::Config(PayloadConfig {
             payload_binary_name: payload_config.payloadBinaryName.clone(),
-            ..Default::default()
+            extra_apk_count: payload_config.extraApks.len().try_into()?,
+            special_fields: Default::default(),
         }),
         Payload::ConfigPath(config_path) => {
-            PayloadMetadata::config_path(format!("/mnt/apk/{}", config_path))
+            PayloadMetadata::ConfigPath(format!("/mnt/apk/{}", config_path))
         }
     };
 
@@ -260,10 +259,11 @@
     debug_config: &DebugConfig,
     apk_file: File,
     idsig_file: File,
+    extra_apk_files: Vec<File>,
     vm_payload_config: &VmPayloadConfig,
     temporary_directory: &Path,
 ) -> Result<DiskImage> {
-    if vm_payload_config.extra_apks.len() != app_config.extraIdsigs.len() {
+    if extra_apk_files.len() != app_config.extraIdsigs.len() {
         bail!(
             "payload config has {} apks, but app config has {} idsigs",
             vm_payload_config.extra_apks.len(),
@@ -275,7 +275,7 @@
     let apex_list = pm.get_apex_list(vm_payload_config.prefer_staged)?;
 
     // collect APEXes from config
-    let mut apex_infos = collect_apex_infos(&apex_list, &vm_payload_config.apexes, debug_config);
+    let mut apex_infos = collect_apex_infos(&apex_list, &vm_payload_config.apexes, debug_config)?;
 
     // Pass sorted list of apexes. Sorting key shouldn't use `path` because it will change after
     // reboot with prefer_staged. `last_update_seconds` is added to distinguish "samegrade"
@@ -311,26 +311,23 @@
     });
 
     // we've already checked that extra_apks and extraIdsigs are in the same size.
-    let extra_apks = &vm_payload_config.extra_apks;
     let extra_idsigs = &app_config.extraIdsigs;
-    for (i, (extra_apk, extra_idsig)) in extra_apks.iter().zip(extra_idsigs.iter()).enumerate() {
+    for (i, (extra_apk_file, extra_idsig)) in
+        extra_apk_files.into_iter().zip(extra_idsigs.iter()).enumerate()
+    {
         partitions.push(Partition {
-            label: format!("extra-apk-{}", i),
-            image: Some(ParcelFileDescriptor::new(
-                File::open(PathBuf::from(&extra_apk.path)).with_context(|| {
-                    format!("Failed to open the extra apk #{} {}", i, extra_apk.path)
-                })?,
-            )),
+            label: format!("extra-apk-{i}"),
+            image: Some(ParcelFileDescriptor::new(extra_apk_file)),
             writable: false,
         });
 
         partitions.push(Partition {
-            label: format!("extra-idsig-{}", i),
+            label: format!("extra-idsig-{i}"),
             image: Some(ParcelFileDescriptor::new(
                 extra_idsig
                     .as_ref()
                     .try_clone()
-                    .with_context(|| format!("Failed to clone the extra idsig #{}", i))?,
+                    .with_context(|| format!("Failed to clone the extra idsig #{i}"))?,
             )),
             writable: false,
         });
@@ -376,32 +373,58 @@
     Ok(apexes)
 }
 
+fn check_apexes_are_from_allowed_partitions(requested_apexes: &Vec<&ApexInfo>) -> Result<()> {
+    const ALLOWED_PARTITIONS: [&str; 2] = ["/system", "/system_ext"];
+    for apex in requested_apexes {
+        if !ALLOWED_PARTITIONS.iter().any(|p| apex.preinstalled_path.starts_with(p)) {
+            bail!("Non-system APEX {} is not supported in Microdroid", apex.name);
+        }
+    }
+    Ok(())
+}
+
 // Collect ApexInfos from VM config
 fn collect_apex_infos<'a>(
     apex_list: &'a ApexInfoList,
     apex_configs: &[ApexConfig],
     debug_config: &DebugConfig,
-) -> Vec<&'a ApexInfo> {
-    let mut additional_apexes: Vec<&str> = MICRODROID_REQUIRED_APEXES.to_vec();
-    if debug_config.should_include_debug_apexes() {
-        additional_apexes.extend(MICRODROID_REQUIRED_APEXES_DEBUG.to_vec());
-    }
+) -> Result<Vec<&'a ApexInfo>> {
+    // APEXes which any Microdroid VM needs.
+    // TODO(b/192200378) move this to microdroid.json?
+    let required_apexes: &[_] =
+        if debug_config.should_include_debug_apexes() { &["com.android.adbd"] } else { &[] };
 
-    apex_list
+    let apex_infos = apex_list
         .list
         .iter()
         .filter(|ai| {
             apex_configs.iter().any(|cfg| ai.matches(cfg) && ai.is_active)
-                || additional_apexes.iter().any(|name| name == &ai.name && ai.is_active)
+                || required_apexes.iter().any(|name| name == &ai.name && ai.is_active)
                 || ai.provide_shared_apex_libs
         })
-        .collect()
+        .collect();
+
+    check_apexes_are_from_allowed_partitions(&apex_infos)?;
+    Ok(apex_infos)
+}
+
+pub fn add_microdroid_vendor_image(vendor_image: File, vm_config: &mut VirtualMachineRawConfig) {
+    vm_config.disks.push(DiskImage {
+        image: None,
+        writable: false,
+        partitions: vec![Partition {
+            label: "microdroid-vendor".to_owned(),
+            image: Some(ParcelFileDescriptor::new(vendor_image)),
+            writable: false,
+        }],
+    })
 }
 
 pub fn add_microdroid_system_images(
     config: &VirtualMachineAppConfig,
     instance_file: File,
     storage_image: Option<File>,
+    os_name: &str,
     vm_config: &mut VirtualMachineRawConfig,
 ) -> Result<()> {
     let debug_suffix = match config.debugLevel {
@@ -409,7 +432,7 @@
         DebugLevel::FULL => "debuggable",
         _ => return Err(anyhow!("unsupported debug level: {:?}", config.debugLevel)),
     };
-    let initrd = format!("/apex/com.android.virt/etc/microdroid_initrd_{}.img", debug_suffix);
+    let initrd = format!("/apex/com.android.virt/etc/{os_name}_initrd_{debug_suffix}.img");
     vm_config.initrd = Some(open_parcel_file(Path::new(&initrd), false)?);
 
     let mut writable_partitions = vec![Partition {
@@ -435,12 +458,14 @@
     Ok(())
 }
 
+#[allow(clippy::too_many_arguments)] // TODO: Fewer arguments
 pub fn add_microdroid_payload_images(
     config: &VirtualMachineAppConfig,
     debug_config: &DebugConfig,
     temporary_directory: &Path,
     apk_file: File,
     idsig_file: File,
+    extra_apk_files: Vec<File>,
     vm_payload_config: &VmPayloadConfig,
     vm_config: &mut VirtualMachineRawConfig,
 ) -> Result<()> {
@@ -449,6 +474,7 @@
         debug_config,
         apk_file,
         idsig_file,
+        extra_apk_files,
         vm_payload_config,
         temporary_directory,
     )?);
@@ -459,6 +485,7 @@
 #[cfg(test)]
 mod tests {
     use super::*;
+    use std::collections::HashMap;
     use tempfile::NamedTempFile;
 
     #[test]
@@ -476,41 +503,37 @@
     }
 
     #[test]
-    fn test_collect_apexes() {
-        let apex_info_list = ApexInfoList {
-            list: vec![
+    fn test_collect_apexes() -> Result<()> {
+        let apex_infos_for_test = [
+            (
+                "adbd",
                 ApexInfo {
-                    // 0
                     name: "com.android.adbd".to_string(),
                     path: PathBuf::from("adbd"),
-                    has_classpath_jar: false,
-                    last_update_seconds: 12345678,
-                    is_factory: true,
-                    is_active: true,
-                    ..Default::default()
-                },
-                ApexInfo {
-                    // 1
-                    name: "com.android.os.statsd".to_string(),
-                    path: PathBuf::from("statsd"),
+                    preinstalled_path: PathBuf::from("/system/adbd"),
                     has_classpath_jar: false,
                     last_update_seconds: 12345678,
                     is_factory: true,
                     is_active: false,
                     ..Default::default()
                 },
+            ),
+            (
+                "adbd_updated",
                 ApexInfo {
-                    // 2
-                    name: "com.android.os.statsd".to_string(),
-                    path: PathBuf::from("statsd/updated"),
+                    name: "com.android.adbd".to_string(),
+                    path: PathBuf::from("adbd"),
+                    preinstalled_path: PathBuf::from("/system/adbd"),
                     has_classpath_jar: false,
                     last_update_seconds: 12345678 + 1,
                     is_factory: false,
                     is_active: true,
                     ..Default::default()
                 },
+            ),
+            (
+                "no_classpath",
                 ApexInfo {
-                    // 3
                     name: "no_classpath".to_string(),
                     path: PathBuf::from("no_classpath"),
                     has_classpath_jar: false,
@@ -519,8 +542,10 @@
                     is_active: true,
                     ..Default::default()
                 },
+            ),
+            (
+                "has_classpath",
                 ApexInfo {
-                    // 4
                     name: "has_classpath".to_string(),
                     path: PathBuf::from("has_classpath"),
                     has_classpath_jar: true,
@@ -529,74 +554,145 @@
                     is_active: false,
                     ..Default::default()
                 },
+            ),
+            (
+                "has_classpath_updated",
                 ApexInfo {
-                    // 5
                     name: "has_classpath".to_string(),
                     path: PathBuf::from("has_classpath/updated"),
+                    preinstalled_path: PathBuf::from("/system/has_classpath"),
                     has_classpath_jar: true,
                     last_update_seconds: 87654321 + 1,
                     is_factory: false,
                     is_active: true,
                     ..Default::default()
                 },
+            ),
+            (
+                "apex-foo",
                 ApexInfo {
-                    // 6
                     name: "apex-foo".to_string(),
                     path: PathBuf::from("apex-foo"),
+                    preinstalled_path: PathBuf::from("/system/apex-foo"),
                     has_classpath_jar: false,
                     last_update_seconds: 87654321,
                     is_factory: true,
                     is_active: false,
                     ..Default::default()
                 },
+            ),
+            (
+                "apex-foo-updated",
                 ApexInfo {
-                    // 7
                     name: "apex-foo".to_string(),
                     path: PathBuf::from("apex-foo/updated"),
+                    preinstalled_path: PathBuf::from("/system/apex-foo"),
                     has_classpath_jar: false,
                     last_update_seconds: 87654321 + 1,
                     is_factory: false,
                     is_active: true,
                     ..Default::default()
                 },
+            ),
+            (
+                "sharedlibs",
                 ApexInfo {
-                    // 8
                     name: "sharedlibs".to_string(),
                     path: PathBuf::from("apex-foo"),
+                    preinstalled_path: PathBuf::from("/system/apex-foo"),
                     last_update_seconds: 87654321,
                     is_factory: true,
                     provide_shared_apex_libs: true,
                     ..Default::default()
                 },
+            ),
+            (
+                "sharedlibs-updated",
                 ApexInfo {
-                    // 9
                     name: "sharedlibs".to_string(),
                     path: PathBuf::from("apex-foo/updated"),
+                    preinstalled_path: PathBuf::from("/system/apex-foo"),
                     last_update_seconds: 87654321 + 1,
                     is_active: true,
                     provide_shared_apex_libs: true,
                     ..Default::default()
                 },
-            ],
+            ),
+        ];
+        let apex_info_list = ApexInfoList {
+            list: apex_infos_for_test.iter().map(|(_, info)| info).cloned().collect(),
         };
+        let apex_info_map = HashMap::from(apex_infos_for_test);
         let apex_configs = vec![
             ApexConfig { name: "apex-foo".to_string() },
             ApexConfig { name: "{CLASSPATH}".to_string() },
         ];
         assert_eq!(
-            collect_apex_infos(&apex_info_list, &apex_configs, &DebugConfig::new(DebugLevel::FULL)),
+            collect_apex_infos(
+                &apex_info_list,
+                &apex_configs,
+                &DebugConfig::new(DebugLevel::FULL)
+            )?,
             vec![
                 // Pass active/required APEXes
-                &apex_info_list.list[0],
-                &apex_info_list.list[2],
+                &apex_info_map["adbd_updated"],
                 // Pass active APEXes specified in the config
-                &apex_info_list.list[5],
-                &apex_info_list.list[7],
+                &apex_info_map["has_classpath_updated"],
+                &apex_info_map["apex-foo-updated"],
                 // Pass both preinstalled(inactive) and updated(active) for "sharedlibs" APEXes
-                &apex_info_list.list[8],
-                &apex_info_list.list[9],
+                &apex_info_map["sharedlibs"],
+                &apex_info_map["sharedlibs-updated"],
             ]
         );
+        Ok(())
+    }
+
+    #[test]
+    fn test_check_allowed_partitions_vendor_not_allowed() -> Result<()> {
+        let apex_info_list = ApexInfoList {
+            list: vec![ApexInfo {
+                name: "apex-vendor".to_string(),
+                path: PathBuf::from("apex-vendor"),
+                preinstalled_path: PathBuf::from("/vendor/apex-vendor"),
+                is_active: true,
+                ..Default::default()
+            }],
+        };
+        let apex_configs = vec![ApexConfig { name: "apex-vendor".to_string() }];
+
+        let ret =
+            collect_apex_infos(&apex_info_list, &apex_configs, &DebugConfig::new(DebugLevel::NONE));
+        assert!(ret
+            .is_err_and(|ret| ret.to_string()
+                == "Non-system APEX apex-vendor is not supported in Microdroid"));
+
+        Ok(())
+    }
+
+    #[test]
+    fn test_check_allowed_partitions_system_ext_allowed() -> Result<()> {
+        let apex_info_list = ApexInfoList {
+            list: vec![ApexInfo {
+                name: "apex-system_ext".to_string(),
+                path: PathBuf::from("apex-system_ext"),
+                preinstalled_path: PathBuf::from("/system_ext/apex-system_ext"),
+                is_active: true,
+                ..Default::default()
+            }],
+        };
+
+        let apex_configs = vec![ApexConfig { name: "apex-system_ext".to_string() }];
+
+        assert_eq!(
+            collect_apex_infos(
+                &apex_info_list,
+                &apex_configs,
+                &DebugConfig::new(DebugLevel::NONE)
+            )?,
+            vec![&apex_info_list.list[0]]
+        );
+
+        Ok(())
     }
 
     #[test]
diff --git a/virtualizationmanager/src/reference_dt.rs b/virtualizationmanager/src/reference_dt.rs
new file mode 100644
index 0000000..797ee3c
--- /dev/null
+++ b/virtualizationmanager/src/reference_dt.rs
@@ -0,0 +1,93 @@
+// Copyright 2024, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Functions for VM reference DT
+
+use anyhow::{anyhow, Result};
+use cstr::cstr;
+use fsfdt::FsFdt;
+use libfdt::Fdt;
+use std::fs;
+use std::fs::File;
+use std::path::Path;
+
+const VM_REFERENCE_DT_ON_HOST_PATH: &str = "/proc/device-tree/avf/reference";
+const VM_REFERENCE_DT_NAME: &str = "vm_reference_dt.dtbo";
+const VM_REFERENCE_DT_MAX_SIZE: usize = 2000;
+
+// Parses to VM reference if exists.
+// TODO(b/318431695): Allow to parse from custom VM reference DT
+pub(crate) fn parse_reference_dt(out_dir: &Path) -> Result<Option<File>> {
+    parse_reference_dt_internal(
+        Path::new(VM_REFERENCE_DT_ON_HOST_PATH),
+        &out_dir.join(VM_REFERENCE_DT_NAME),
+    )
+}
+
+fn parse_reference_dt_internal(dir_path: &Path, fdt_path: &Path) -> Result<Option<File>> {
+    if !dir_path.exists() || fs::read_dir(dir_path)?.next().is_none() {
+        return Ok(None);
+    }
+
+    let mut data = vec![0_u8; VM_REFERENCE_DT_MAX_SIZE];
+
+    let fdt = Fdt::create_empty_tree(&mut data)
+        .map_err(|e| anyhow!("Failed to create an empty DT, {e:?}"))?;
+    let mut root = fdt.root_mut().map_err(|e| anyhow!("Failed to find the DT root, {e:?}"))?;
+    let mut fragment = root
+        .add_subnode(cstr!("fragment@0"))
+        .map_err(|e| anyhow!("Failed to create the fragment@0, {e:?}"))?;
+    fragment
+        .setprop(cstr!("target-path"), b"/\0")
+        .map_err(|e| anyhow!("Failed to set target-path, {e:?}"))?;
+    fragment
+        .add_subnode(cstr!("__overlay__"))
+        .map_err(|e| anyhow!("Failed to create the __overlay__, {e:?}"))?;
+
+    fdt.append(cstr!("/fragment@0/__overlay__"), dir_path)?;
+
+    fdt.pack().map_err(|e| anyhow!("Failed to pack VM reference DT, {e:?}"))?;
+    fs::write(fdt_path, fdt.as_slice())?;
+
+    Ok(Some(File::open(fdt_path)?))
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+
+    #[test]
+    fn test_parse_reference_dt_from_empty_dir() {
+        let empty_dir = tempfile::TempDir::new().unwrap();
+        let test_dir = tempfile::TempDir::new().unwrap();
+
+        let empty_dir_path = empty_dir.path();
+        let fdt_path = test_dir.path().join("test.dtb");
+
+        let fdt_file = parse_reference_dt_internal(empty_dir_path, &fdt_path).unwrap();
+
+        assert!(fdt_file.is_none());
+    }
+
+    #[test]
+    fn test_parse_reference_dt_from_empty_reference() {
+        let fdt_file = parse_reference_dt_internal(
+            Path::new("/this/path/would/not/exists"),
+            Path::new("test.dtb"),
+        )
+        .unwrap();
+
+        assert!(fdt_file.is_none());
+    }
+}
diff --git a/virtualizationmanager/src/selinux.rs b/virtualizationmanager/src/selinux.rs
index 0485943..ba62b7f 100644
--- a/virtualizationmanager/src/selinux.rs
+++ b/virtualizationmanager/src/selinux.rs
@@ -17,11 +17,10 @@
 use anyhow::{anyhow, bail, Context, Result};
 use std::ffi::{CStr, CString};
 use std::fmt;
-use std::fs::File;
 use std::io;
 use std::ops::Deref;
+use std::os::fd::AsRawFd;
 use std::os::raw::c_char;
-use std::os::unix::io::AsRawFd;
 use std::ptr;
 
 // Partially copied from system/security/keystore2/selinux/src/lib.rs
@@ -102,7 +101,7 @@
     }
 }
 
-pub fn getfilecon(file: &File) -> Result<SeContext> {
+pub fn getfilecon<F: AsRawFd>(file: &F) -> Result<SeContext> {
     let fd = file.as_raw_fd();
     let mut con: *mut c_char = ptr::null_mut();
     // SAFETY: the returned pointer `con` is wrapped in SeContext::Raw which is freed with
diff --git a/virtualizationservice/Android.bp b/virtualizationservice/Android.bp
index f7202da..71d9d4b 100644
--- a/virtualizationservice/Android.bp
+++ b/virtualizationservice/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
-rust_binary {
-    name: "virtualizationservice",
+rust_defaults {
+    name: "virtualizationservice_defaults",
     crate_name: "virtualizationservice",
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
     srcs: ["src/main.rs"],
     // Only build on targets which crosvm builds on.
@@ -20,6 +22,7 @@
     },
     prefer_rlib: true,
     rustlibs: [
+        "android.hardware.security.rkp-V3-rust",
         "android.system.virtualizationcommon-rust",
         "android.system.virtualizationservice-rust",
         "android.system.virtualizationservice_internal-rust",
@@ -27,14 +30,56 @@
         "android.os.permissions_aidl-rust",
         "libandroid_logger",
         "libanyhow",
+        "libavflog",
         "libbinder_rs",
+        "libhypervisor_props",
+        "liblazy_static",
         "liblibc",
         "liblog_rust",
         "libnix",
+        "libopenssl",
+        "librkpd_client",
         "librustutils",
+        "libvmclient",
         "libstatslog_virtualization_rust",
         "libtombstoned_client_rust",
         "libvsock",
+        "libserde",
+        "libserde_xml_rs",
+        "libservice_vm_comm",
+        "libservice_vm_manager",
     ],
     apex_available: ["com.android.virt"],
 }
+
+rust_binary {
+    name: "virtualizationservice",
+    defaults: ["virtualizationservice_defaults"],
+}
+
+xsd_config {
+    name: "assignable_devices",
+    srcs: ["assignable_devices.xsd"],
+    api_dir: "schema",
+    package_name: "android.system.virtualizationservice",
+}
+
+rust_test {
+    name: "virtualizationservice_test",
+    defaults: ["virtualizationservice_defaults"],
+    test_suites: ["general-tests"],
+    data: [
+        ":test_rkp_cert_chain",
+    ],
+}
+
+// The chain originates from a CTS test for Keymint, with the Keymint certificate
+// (leaf certificate) truncated.
+//
+// The certificate chain begins with a leaf certificate obtained from RKP and ends
+// with a root certificate. Each certificate in the chain possesses a signature that
+// is signed by the private key of the subsequent certificate in the chain.
+filegroup {
+    name: "test_rkp_cert_chain",
+    srcs: ["testdata/rkp_cert_chain.der"],
+}
diff --git a/virtualizationservice/TEST_MAPPING b/virtualizationservice/TEST_MAPPING
new file mode 100644
index 0000000..4fef83c
--- /dev/null
+++ b/virtualizationservice/TEST_MAPPING
@@ -0,0 +1,9 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
+{
+  "avf-presubmit" : [
+    {
+      "name" : "virtualizationservice_test"
+    }
+  ]
+}
diff --git a/virtualizationservice/aidl/Android.bp b/virtualizationservice/aidl/Android.bp
index 91d91aa..7c9c4f7 100644
--- a/virtualizationservice/aidl/Android.bp
+++ b/virtualizationservice/aidl/Android.bp
@@ -1,4 +1,5 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
@@ -57,11 +58,14 @@
 aidl_interface {
     name: "android.system.virtualmachineservice",
     srcs: ["android/system/virtualmachineservice/**/*.aidl"],
-    imports: ["android.system.virtualizationcommon"],
+    imports: [
+        "android.hardware.security.secretkeeper-V1",
+        "android.system.virtualizationcommon",
+    ],
     unstable: true,
     backend: {
         java: {
-            sdk_version: "module_current",
+            enabled: false,
         },
         rust: {
             enabled: true,
diff --git a/virtualizationservice/aidl/android/system/virtualizationcommon/Certificate.aidl b/virtualizationservice/aidl/android/system/virtualizationcommon/Certificate.aidl
new file mode 100644
index 0000000..d587541
--- /dev/null
+++ b/virtualizationservice/aidl/android/system/virtualizationcommon/Certificate.aidl
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.system.virtualizationcommon;
+
+/**
+ * This encodes a X.509 certificate returned in the pVM remote attestation.
+ */
+parcelable Certificate {
+    /**
+     * Contains the bytes of a DER-encoded X.509 certificate.
+     */
+    byte[] encodedCertificate;
+}
diff --git a/virtualizationservice/aidl/android/system/virtualizationcommon/ErrorCode.aidl b/virtualizationservice/aidl/android/system/virtualizationcommon/ErrorCode.aidl
index 04b9749..cf1e251 100644
--- a/virtualizationservice/aidl/android/system/virtualizationcommon/ErrorCode.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationcommon/ErrorCode.aidl
@@ -39,5 +39,5 @@
     /**
      * Error code indicating that the payload config is invalid.
      */
-    PAYLOAD_CONFIG_INVALID = 3,
+    PAYLOAD_INVALID_CONFIG = 3,
 }
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice/AssignableDevice.aidl b/virtualizationservice/aidl/android/system/virtualizationservice/AssignableDevice.aidl
new file mode 100644
index 0000000..014d78c
--- /dev/null
+++ b/virtualizationservice/aidl/android/system/virtualizationservice/AssignableDevice.aidl
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package android.system.virtualizationservice;
+
+/** A specification of device to be assigned to the virtual machine. */
+@RustDerive(Clone=true)
+parcelable AssignableDevice {
+    /** Path to SysFS node of the device. */
+    String node;
+
+    /** Kind of the device. */
+    String kind;
+}
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice/IVirtualizationService.aidl b/virtualizationservice/aidl/android/system/virtualizationservice/IVirtualizationService.aidl
index d72d5ac..92a5812 100644
--- a/virtualizationservice/aidl/android/system/virtualizationservice/IVirtualizationService.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationservice/IVirtualizationService.aidl
@@ -15,20 +15,27 @@
  */
 package android.system.virtualizationservice;
 
+import android.system.virtualizationservice.AssignableDevice;
 import android.system.virtualizationservice.IVirtualMachine;
 import android.system.virtualizationservice.PartitionType;
 import android.system.virtualizationservice.VirtualMachineConfig;
 import android.system.virtualizationservice.VirtualMachineDebugInfo;
 
 interface IVirtualizationService {
+    const String FEATURE_DICE_CHANGES = "com.android.kvm.DICE_CHANGES";
+    const String FEATURE_MULTI_TENANT = "com.android.kvm.MULTI_TENANT";
+    const String FEATURE_VENDOR_MODULES = "com.android.kvm.VENDOR_MODULES";
+
     /**
      * Create the VM with the given config file, and return a handle to it ready to start it. If
-     * `consoleFd` is provided then console output from the VM will be sent to it. If `osLogFd` is
+     * `consoleOutFd` is provided then console output from the VM will be sent to it. If
+     * `consoleInFd` is provided then console input to the VM will be read from it. If `osLogFd` is
      * provided then the OS-level logs will be sent to it. `osLogFd` is supported only when the OS
      * running in the VM has the logging system. In case of Microdroid, the logging system is logd.
      */
     IVirtualMachine createVm(in VirtualMachineConfig config,
-            in @nullable ParcelFileDescriptor consoleFd,
+            in @nullable ParcelFileDescriptor consoleOutFd,
+            in @nullable ParcelFileDescriptor consoleInFd,
             in @nullable ParcelFileDescriptor osLogFd);
 
     /**
@@ -53,4 +60,17 @@
      * and as such is only permitted from the shell user.
      */
     VirtualMachineDebugInfo[] debugListVms();
+
+    /**
+     * Get a list of assignable device types.
+     */
+    AssignableDevice[] getAssignableDevices();
+
+    /**
+     * Get a list of supported OSes.
+     */
+    String[] getSupportedOSList();
+
+    /** Returns whether given feature is enabled. */
+    boolean isFeatureEnabled(in String feature);
 }
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineAppConfig.aidl b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineAppConfig.aidl
index c467c2f..9021055 100644
--- a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineAppConfig.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineAppConfig.aidl
@@ -45,6 +45,8 @@
     union Payload {
         /**
          * Path to a JSON file in an APK containing the configuration.
+         *
+         * <p>Setting this field requires android.permission.USE_CUSTOM_VIRTUAL_MACHINE
          */
         @utf8InCpp String configPath;
 
@@ -70,12 +72,6 @@
     /** Debug level of the VM */
     DebugLevel debugLevel = DebugLevel.NONE;
 
-    /**
-     * Port at which crosvm will start a gdb server to debug guest kernel.
-     * If set to zero, then gdb server won't be started.
-     */
-    int gdbPort = 0;
-
     /** Whether the VM should be a protected VM. */
     boolean protectedVm;
 
@@ -89,9 +85,34 @@
     CpuTopology cpuTopology = CpuTopology.ONE_CPU;
 
     /**
-     * List of task profile names to apply for the VM
-     *
-     * Note: Specifying a value here requires android.permission.USE_CUSTOM_VIRTUAL_MACHINE.
+     * Encapsulates parameters that require android.permission.USE_CUSTOM_VIRTUAL_MACHINE.
      */
-    String[] taskProfiles;
+    parcelable CustomConfig {
+        /**
+         * If specified, boot Microdroid VM with the given kernel.
+         *
+         */
+        @nullable ParcelFileDescriptor customKernelImage;
+
+        /**
+         * Port at which crosvm will start a gdb server to debug guest kernel.
+         * If set to zero, then gdb server won't be started.
+         *
+         */
+        int gdbPort = 0;
+
+        /**
+         * List of task profile names to apply for the VM
+         */
+        String[] taskProfiles;
+
+        /** A disk image containing vendor specific modules. */
+        @nullable ParcelFileDescriptor vendorImage;
+
+        /** List of SysFS nodes of devices to be assigned */
+        String[] devices;
+    }
+
+    /** Configuration parameters guarded by android.permission.USE_CUSTOM_VIRTUAL_MACHINE */
+    @nullable CustomConfig customConfig;
 }
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachinePayloadConfig.aidl b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachinePayloadConfig.aidl
index 55c2f5d..7ca5b62 100644
--- a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachinePayloadConfig.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachinePayloadConfig.aidl
@@ -23,4 +23,12 @@
      * function invoked.
      */
     @utf8InCpp String payloadBinaryName;
+
+    /**
+     * Name of the OS to run the payload. Currently "microdroid" and "microdroid_gki" is supported.
+     */
+    @utf8InCpp String osName = "microdroid";
+
+    /** Any extra APKs. */
+    List<ParcelFileDescriptor> extraApks;
 }
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineRawConfig.aidl b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineRawConfig.aidl
index 87d4ba2..7c0ed0c 100644
--- a/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineRawConfig.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationservice/VirtualMachineRawConfig.aidl
@@ -69,4 +69,7 @@
      * If set to zero, then gdb server won't be started.
      */
     int gdbPort = 0;
+
+    /** List of SysFS nodes of devices to be assigned */
+    String[] devices;
 }
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice_internal/IBoundDevice.aidl b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IBoundDevice.aidl
new file mode 100644
index 0000000..4a37bf7
--- /dev/null
+++ b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IBoundDevice.aidl
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package android.system.virtualizationservice_internal;
+
+/** A device bound to VFIO driver. */
+interface IBoundDevice {
+    /** Path to SysFS node of the device. */
+    String getSysfsPath();
+
+    /** DTBO label of the device. */
+    String getDtboLabel();
+}
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVfioHandler.aidl b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVfioHandler.aidl
new file mode 100644
index 0000000..2cf4efd
--- /dev/null
+++ b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVfioHandler.aidl
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package android.system.virtualizationservice_internal;
+
+import android.system.virtualizationservice.AssignableDevice;
+import android.system.virtualizationservice.VirtualMachineDebugInfo;
+import android.system.virtualizationservice_internal.AtomVmBooted;
+import android.system.virtualizationservice_internal.AtomVmCreationRequested;
+import android.system.virtualizationservice_internal.AtomVmExited;
+import android.system.virtualizationservice_internal.IBoundDevice;
+import android.system.virtualizationservice_internal.IGlobalVmContext;
+
+/** VFIO related methods which should be done as root. */
+interface IVfioHandler {
+    parcelable VfioDev {
+        String sysfsPath;
+        String dtboLabel;
+    }
+    /**
+     * Bind given devices to vfio driver.
+     *
+     * @param devices a list of pairs (sysfs path, DTBO node label) for devices.
+     * @return IBoundDevice list representing a VFIO bound devices.
+     */
+    IBoundDevice[] bindDevicesToVfioDriver(in VfioDev[] devices);
+
+    /**
+     * Store VM DTBO via the file descriptor.
+     *
+     * @param dtbo writable file descriptor to store VM DTBO.
+     */
+    void writeVmDtbo(in ParcelFileDescriptor dtbo);
+}
diff --git a/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVirtualizationServiceInternal.aidl b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVirtualizationServiceInternal.aidl
index 5422a48..dd94526 100644
--- a/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVirtualizationServiceInternal.aidl
+++ b/virtualizationservice/aidl/android/system/virtualizationservice_internal/IVirtualizationServiceInternal.aidl
@@ -15,10 +15,13 @@
  */
 package android.system.virtualizationservice_internal;
 
+import android.system.virtualizationcommon.Certificate;
+import android.system.virtualizationservice.AssignableDevice;
 import android.system.virtualizationservice.VirtualMachineDebugInfo;
 import android.system.virtualizationservice_internal.AtomVmBooted;
 import android.system.virtualizationservice_internal.AtomVmCreationRequested;
 import android.system.virtualizationservice_internal.AtomVmExited;
+import android.system.virtualizationservice_internal.IBoundDevice;
 import android.system.virtualizationservice_internal.IGlobalVmContext;
 
 interface IVirtualizationServiceInternal {
@@ -49,4 +52,33 @@
 
     /** Get a list of all currently running VMs. */
     VirtualMachineDebugInfo[] debugListVms();
+
+    /**
+     * Requests a certificate chain for the provided certificate signing request (CSR).
+     *
+     * @param csr The certificate signing request.
+     * @param requesterUid The UID of the app that requests remote attestation. The client VM to be
+     *                     attested is owned by this app.
+     *                     The uniqueness of the UID ensures that no two VMs owned by different apps
+     *                     are able to correlate keys.
+     * @return A sequence of DER-encoded X.509 certificates that make up the attestation
+     *         key's certificate chain. The attestation key is provided in the CSR.
+     */
+    Certificate[] requestAttestation(in byte[] csr, int requesterUid);
+
+    /**
+     * Get a list of assignable devices.
+     */
+    AssignableDevice[] getAssignableDevices();
+
+    /**
+     * Bind given devices to vfio driver.
+     *
+     * @param devices paths of sysfs nodes of devices to assign.
+     * @return a list of IBoundDevices representing VFIO bound devices.
+     */
+    IBoundDevice[] bindDevicesToVfioDriver(in String[] devices);
+
+    /** Returns a read-only file descriptor of the VM DTBO file. */
+    ParcelFileDescriptor getDtboFile();
 }
diff --git a/virtualizationservice/aidl/android/system/virtualmachineservice/IVirtualMachineService.aidl b/virtualizationservice/aidl/android/system/virtualmachineservice/IVirtualMachineService.aidl
index 3fdb48a..cf91302 100644
--- a/virtualizationservice/aidl/android/system/virtualmachineservice/IVirtualMachineService.aidl
+++ b/virtualizationservice/aidl/android/system/virtualmachineservice/IVirtualMachineService.aidl
@@ -15,6 +15,8 @@
  */
 package android.system.virtualmachineservice;
 
+import android.hardware.security.secretkeeper.ISecretkeeper;
+import android.system.virtualizationcommon.Certificate;
 import android.system.virtualizationcommon.ErrorCode;
 
 /** {@hide} */
@@ -44,4 +46,20 @@
      * Notifies that an error has occurred inside the VM.
      */
     void notifyError(ErrorCode errorCode, in String message);
+
+    /**
+     * Requests a certificate chain for the provided certificate signing request (CSR).
+     *
+     * @param csr The certificate signing request.
+     * @return A sequence of DER-encoded X.509 certificates that make up the attestation
+     *         key's certificate chain. The attestation key is provided in the CSR.
+     */
+    Certificate[] requestAttestation(in byte[] csr);
+
+    /**
+     * Request connection to Secretkeeper. This is used by pVM to store Anti-Rollback protected
+     * secrets. Note that the return value is nullable to reflect that Secretkeeper HAL may not be
+     * present.
+     */
+    @nullable ISecretkeeper getSecretkeeper();
 }
diff --git a/virtualizationservice/assignable_devices.xsd b/virtualizationservice/assignable_devices.xsd
new file mode 100644
index 0000000..2fbc1c9
--- /dev/null
+++ b/virtualizationservice/assignable_devices.xsd
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2023 The Android Open Source Project
+
+         Licensed under the Apache License, Version 2.0 (the "License");
+         you may not use this file except in compliance with the License.
+         You may obtain a copy of the License at
+
+                    http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing, software
+         distributed under the License is distributed on an "AS IS" BASIS,
+         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+         See the License for the specific language governing permissions and
+         limitations under the License.
+-->
+<!-- KEEP IN SYNC WITH aidl.rs -->
+<xs:schema version="2.0"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema">
+    <xs:element name="devices">
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="device" type="device" minOccurs="0" maxOccurs="unbounded"/>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+    <xs:complexType name="device">
+        <xs:attribute name="kind" type="xs:string"/>
+        <xs:attribute name="dtbo_label" type="xs:string"/>
+        <xs:attribute name="sysfs_path" type="xs:string"/>
+    </xs:complexType>
+</xs:schema>
diff --git a/virtualizationservice/schema/current.txt b/virtualizationservice/schema/current.txt
new file mode 100644
index 0000000..6e3fbb6
--- /dev/null
+++ b/virtualizationservice/schema/current.txt
@@ -0,0 +1,27 @@
+// Signature format: 2.0
+package android.system.virtualizationservice {
+
+  public class Device {
+    ctor public Device();
+    method public String getDtbo_label();
+    method public String getKind();
+    method public String getSysfs_path();
+    method public void setDtbo_label(String);
+    method public void setKind(String);
+    method public void setSysfs_path(String);
+  }
+
+  public class Devices {
+    ctor public Devices();
+    method public java.util.List<android.system.virtualizationservice.Device> getDevice();
+  }
+
+  public class XmlParser {
+    ctor public XmlParser();
+    method public static android.system.virtualizationservice.Devices read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
+    method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
+    method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
+  }
+
+}
+
diff --git a/virtualizationservice/schema/last_current.txt b/virtualizationservice/schema/last_current.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/virtualizationservice/schema/last_current.txt
diff --git a/virtualizationservice/schema/last_removed.txt b/virtualizationservice/schema/last_removed.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/virtualizationservice/schema/last_removed.txt
diff --git a/virtualizationservice/schema/removed.txt b/virtualizationservice/schema/removed.txt
new file mode 100644
index 0000000..d802177
--- /dev/null
+++ b/virtualizationservice/schema/removed.txt
@@ -0,0 +1 @@
+// Signature format: 2.0
diff --git a/virtualizationservice/src/aidl.rs b/virtualizationservice/src/aidl.rs
index 3888df2..a1a1fb9 100644
--- a/virtualizationservice/src/aidl.rs
+++ b/virtualizationservice/src/aidl.rs
@@ -14,33 +14,47 @@
 
 //! Implementation of the AIDL interface of the VirtualizationService.
 
-use crate::{get_calling_pid, get_calling_uid};
+use crate::{get_calling_pid, get_calling_uid, REMOTELY_PROVISIONED_COMPONENT_SERVICE_NAME};
 use crate::atom::{forward_vm_booted_atom, forward_vm_creation_atom, forward_vm_exited_atom};
+use crate::rkpvm::request_attestation;
 use android_os_permissions_aidl::aidl::android::os::IPermissionController;
-use android_system_virtualizationservice::aidl::android::system::virtualizationservice::VirtualMachineDebugInfo::VirtualMachineDebugInfo;
+use android_system_virtualizationcommon::aidl::android::system::virtualizationcommon::Certificate::Certificate;
+use android_system_virtualizationservice::{
+    aidl::android::system::virtualizationservice::AssignableDevice::AssignableDevice,
+    aidl::android::system::virtualizationservice::VirtualMachineDebugInfo::VirtualMachineDebugInfo,
+    binder::ParcelFileDescriptor,
+};
 use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::{
     AtomVmBooted::AtomVmBooted,
     AtomVmCreationRequested::AtomVmCreationRequested,
     AtomVmExited::AtomVmExited,
+    IBoundDevice::IBoundDevice,
     IGlobalVmContext::{BnGlobalVmContext, IGlobalVmContext},
     IVirtualizationServiceInternal::IVirtualizationServiceInternal,
+    IVfioHandler::{BpVfioHandler, IVfioHandler},
+    IVfioHandler::VfioDev::VfioDev,
 };
 use android_system_virtualmachineservice::aidl::android::system::virtualmachineservice::IVirtualMachineService::VM_TOMBSTONES_SERVICE_PORT;
 use anyhow::{anyhow, ensure, Context, Result};
-use binder::{self, BinderFeatures, ExceptionCode, Interface, LazyServiceGuard, Status, Strong};
+use avflog::LogResult;
+use binder::{self, wait_for_interface, BinderFeatures, ExceptionCode, Interface, LazyServiceGuard, Status, Strong, IntoBinderResult};
+use lazy_static::lazy_static;
 use libc::VMADDR_CID_HOST;
 use log::{error, info, warn};
+use rkpd_client::get_rkpd_attestation_key;
 use rustutils::system_properties;
-use std::collections::HashMap;
-use std::fs::{create_dir, remove_dir_all, set_permissions, Permissions};
+use serde::Deserialize;
+use std::collections::{HashMap, HashSet};
+use std::fs::{self, create_dir, remove_dir_all, remove_file, set_permissions, File, Permissions};
 use std::io::{Read, Write};
 use std::os::unix::fs::PermissionsExt;
 use std::os::unix::raw::{pid_t, uid_t};
-use std::path::PathBuf;
+use std::path::{Path, PathBuf};
 use std::sync::{Arc, Mutex, Weak};
 use tombstoned_client::{DebuggerdDumpType, TombstonedConnection};
 use vsock::{VsockListener, VsockStream};
 use nix::unistd::{chown, Uid};
+use openssl::x509::X509;
 
 /// The unique ID of a VM used (together with a port number) for vsock communication.
 pub type Cid = u32;
@@ -59,6 +73,12 @@
 
 const CHUNK_RECV_MAX_LEN: usize = 1024;
 
+lazy_static! {
+    static ref VFIO_SERVICE: Strong<dyn IVfioHandler> =
+        wait_for_interface(<BpVfioHandler as IVfioHandler>::get_descriptor())
+            .expect("Could not connect to VfioHandler");
+}
+
 fn is_valid_guest_cid(cid: Cid) -> bool {
     (GUEST_CID_MIN..=GUEST_CID_MAX).contains(&cid)
 }
@@ -91,20 +111,15 @@
         let pid = get_calling_pid();
         let lim = libc::rlimit { rlim_cur: libc::RLIM_INFINITY, rlim_max: libc::RLIM_INFINITY };
 
-        // SAFETY - borrowing the new limit struct only
+        // SAFETY: borrowing the new limit struct only
         let ret = unsafe { libc::prlimit(pid, libc::RLIMIT_MEMLOCK, &lim, std::ptr::null_mut()) };
 
         match ret {
             0 => Ok(()),
-            -1 => Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_STATE,
-                Some(std::io::Error::last_os_error().to_string()),
-            )),
-            n => Err(Status::new_exception_str(
-                ExceptionCode::ILLEGAL_STATE,
-                Some(format!("Unexpected return value from prlimit(): {n}")),
-            )),
+            -1 => Err(std::io::Error::last_os_error().into()),
+            n => Err(anyhow!("Unexpected return value from prlimit(): {n}")),
         }
+        .or_binder_exception(ExceptionCode::ILLEGAL_STATE)
     }
 
     fn allocateGlobalVmContext(
@@ -116,9 +131,9 @@
         let requester_uid = get_calling_uid();
         let requester_debug_pid = requester_debug_pid as pid_t;
         let state = &mut *self.state.lock().unwrap();
-        state.allocate_vm_context(requester_uid, requester_debug_pid).map_err(|e| {
-            Status::new_exception_str(ExceptionCode::ILLEGAL_STATE, Some(e.to_string()))
-        })
+        state
+            .allocate_vm_context(requester_uid, requester_debug_pid)
+            .or_binder_exception(ExceptionCode::ILLEGAL_STATE)
     }
 
     fn atomVmBooted(&self, atom: &AtomVmBooted) -> Result<(), Status> {
@@ -153,6 +168,157 @@
             .collect();
         Ok(cids)
     }
+
+    fn requestAttestation(
+        &self,
+        csr: &[u8],
+        requester_uid: i32,
+    ) -> binder::Result<Vec<Certificate>> {
+        check_manage_access()?;
+        if !cfg!(remote_attestation) {
+            return Err(Status::new_exception_str(
+                ExceptionCode::UNSUPPORTED_OPERATION,
+                Some(
+                    "requestAttestation is not supported with the remote_attestation feature \
+                     disabled",
+                ),
+            ))
+            .with_log();
+        }
+        info!("Received csr. Requestting attestation...");
+        let attestation_key = get_rkpd_attestation_key(
+            REMOTELY_PROVISIONED_COMPONENT_SERVICE_NAME,
+            requester_uid as u32,
+        )
+        .context("Failed to retrieve the remotely provisioned keys")
+        .with_log()
+        .or_service_specific_exception(-1)?;
+        let mut certificate_chain = split_x509_certificate_chain(&attestation_key.encodedCertChain)
+            .context("Failed to split the remotely provisioned certificate chain")
+            .with_log()
+            .or_service_specific_exception(-1)?;
+        if certificate_chain.is_empty() {
+            return Err(Status::new_service_specific_error_str(
+                -1,
+                Some("The certificate chain should contain at least 1 certificate"),
+            ))
+            .with_log();
+        }
+        let certificate = request_attestation(
+            csr.to_vec(),
+            attestation_key.keyBlob,
+            certificate_chain[0].encodedCertificate.clone(),
+        )
+        .context("Failed to request attestation")
+        .with_log()
+        .or_service_specific_exception(-1)?;
+        certificate_chain.insert(0, Certificate { encodedCertificate: certificate });
+
+        Ok(certificate_chain)
+    }
+
+    fn getAssignableDevices(&self) -> binder::Result<Vec<AssignableDevice>> {
+        check_use_custom_virtual_machine()?;
+
+        Ok(get_assignable_devices()?
+            .device
+            .into_iter()
+            .map(|x| AssignableDevice { node: x.sysfs_path, kind: x.kind })
+            .collect::<Vec<_>>())
+    }
+
+    fn bindDevicesToVfioDriver(
+        &self,
+        devices: &[String],
+    ) -> binder::Result<Vec<Strong<dyn IBoundDevice>>> {
+        check_use_custom_virtual_machine()?;
+
+        let devices = get_assignable_devices()?
+            .device
+            .into_iter()
+            .filter_map(|x| {
+                if devices.contains(&x.sysfs_path) {
+                    Some(VfioDev { sysfsPath: x.sysfs_path, dtboLabel: x.dtbo_label })
+                } else {
+                    warn!("device {} is not assignable", x.sysfs_path);
+                    None
+                }
+            })
+            .collect::<Vec<VfioDev>>();
+
+        VFIO_SERVICE.bindDevicesToVfioDriver(devices.as_slice())
+    }
+
+    fn getDtboFile(&self) -> binder::Result<ParcelFileDescriptor> {
+        check_use_custom_virtual_machine()?;
+
+        let state = &mut *self.state.lock().unwrap();
+        let file = state.get_dtbo_file().or_service_specific_exception(-1)?;
+        Ok(ParcelFileDescriptor::new(file))
+    }
+}
+
+// KEEP IN SYNC WITH assignable_devices.xsd
+#[derive(Debug, Deserialize)]
+struct Device {
+    kind: String,
+    dtbo_label: String,
+    sysfs_path: String,
+}
+
+#[derive(Debug, Default, Deserialize)]
+struct Devices {
+    device: Vec<Device>,
+}
+
+fn get_assignable_devices() -> binder::Result<Devices> {
+    let xml_path = Path::new("/vendor/etc/avf/assignable_devices.xml");
+    if !xml_path.exists() {
+        return Ok(Devices { ..Default::default() });
+    }
+
+    let xml = fs::read(xml_path)
+        .context("Failed to read assignable_devices.xml")
+        .with_log()
+        .or_service_specific_exception(-1)?;
+
+    let xml = String::from_utf8(xml)
+        .context("assignable_devices.xml is not a valid UTF-8 file")
+        .with_log()
+        .or_service_specific_exception(-1)?;
+
+    let mut devices: Devices = serde_xml_rs::from_str(&xml)
+        .context("can't parse assignable_devices.xml")
+        .with_log()
+        .or_service_specific_exception(-1)?;
+
+    let mut device_set = HashSet::new();
+    devices.device.retain(move |device| {
+        if device_set.contains(&device.sysfs_path) {
+            warn!("duplicated assignable device {device:?}; ignoring...");
+            return false;
+        }
+
+        if !Path::new(&device.sysfs_path).exists() {
+            warn!("assignable device {device:?} doesn't exist; ignoring...");
+            return false;
+        }
+
+        device_set.insert(device.sysfs_path.clone());
+        true
+    });
+    Ok(devices)
+}
+
+fn split_x509_certificate_chain(mut cert_chain: &[u8]) -> Result<Vec<Certificate>> {
+    let mut out = Vec::new();
+    while !cert_chain.is_empty() {
+        let cert = X509::from_der(cert_chain)?;
+        let end = cert.to_der()?.len();
+        out.push(Certificate { encodedCertificate: cert_chain[..end].to_vec() });
+        cert_chain = &cert_chain[end..];
+    }
+    Ok(out)
 }
 
 #[derive(Debug, Default)]
@@ -179,6 +345,9 @@
     /// VM contexts currently allocated to running VMs. A CID is never recycled as long
     /// as there is a strong reference held by a GlobalVmContext.
     held_contexts: HashMap<Cid, Weak<GlobalVmInstance>>,
+
+    /// Cached read-only FD of VM DTBO file. Also serves as a lock for creating the file.
+    dtbo_file: Mutex<Option<File>>,
 }
 
 impl GlobalState {
@@ -242,26 +411,61 @@
 
         let cid = self.get_next_available_cid()?;
         let instance = Arc::new(GlobalVmInstance { cid, requester_uid, requester_debug_pid });
-        create_temporary_directory(&instance.get_temp_dir(), requester_uid)?;
+        create_temporary_directory(&instance.get_temp_dir(), Some(requester_uid))?;
 
         self.held_contexts.insert(cid, Arc::downgrade(&instance));
         let binder = GlobalVmContext { instance, ..Default::default() };
         Ok(BnGlobalVmContext::new_binder(binder, BinderFeatures::default()))
     }
+
+    fn get_dtbo_file(&mut self) -> Result<File> {
+        let mut file = self.dtbo_file.lock().unwrap();
+
+        let fd = if let Some(ref_fd) = &*file {
+            ref_fd.try_clone()?
+        } else {
+            let path = get_or_create_common_dir()?.join("vm.dtbo");
+            if path.exists() {
+                // All temporary files are deleted when the service is started.
+                // If the file exists but the FD is not cached, the file is
+                // likely corrupted.
+                remove_file(&path).context("Failed to clone cached VM DTBO file descriptor")?;
+            }
+
+            // Open a write-only file descriptor for vfio_handler.
+            let write_fd = File::create(&path).context("Failed to create VM DTBO file")?;
+            VFIO_SERVICE.writeVmDtbo(&ParcelFileDescriptor::new(write_fd))?;
+
+            // Open read-only. This FD will be cached and returned to clients.
+            let read_fd = File::open(&path).context("Failed to open VM DTBO file")?;
+            let read_fd_clone =
+                read_fd.try_clone().context("Failed to clone VM DTBO file descriptor")?;
+            *file = Some(read_fd);
+            read_fd_clone
+        };
+
+        Ok(fd)
+    }
 }
 
-fn create_temporary_directory(path: &PathBuf, requester_uid: uid_t) -> Result<()> {
+fn create_temporary_directory(path: &PathBuf, requester_uid: Option<uid_t>) -> Result<()> {
+    // Directory may exist if previous attempt to create it had failed.
+    // Delete it before trying again.
     if path.as_path().exists() {
         remove_temporary_dir(path).unwrap_or_else(|e| {
             warn!("Could not delete temporary directory {:?}: {}", path, e);
         });
     }
-    // Create a directory that is owned by client's UID but system's GID, and permissions 0700.
+    // Create directory.
+    create_dir(path).with_context(|| format!("Could not create temporary directory {:?}", path))?;
+    // If provided, change ownership to client's UID but system's GID, and permissions 0700.
     // If the chown() fails, this will leave behind an empty directory that will get removed
     // at the next attempt, or if virtualizationservice is restarted.
-    create_dir(path).with_context(|| format!("Could not create temporary directory {:?}", path))?;
-    chown(path, Some(Uid::from_raw(requester_uid)), None)
-        .with_context(|| format!("Could not set ownership of temporary directory {:?}", path))?;
+    if let Some(uid) = requester_uid {
+        chown(path, Some(Uid::from_raw(uid)), None).with_context(|| {
+            format!("Could not set ownership of temporary directory {:?}", path)
+        })?;
+    }
     Ok(())
 }
 
@@ -275,6 +479,14 @@
     Ok(())
 }
 
+fn get_or_create_common_dir() -> Result<PathBuf> {
+    let path = Path::new(TEMPORARY_DIRECTORY).join("common");
+    if !path.exists() {
+        create_temporary_directory(&path, None)?;
+    }
+    Ok(path)
+}
+
 /// Implementation of the AIDL `IGlobalVmContext` interface.
 #[derive(Debug, Default)]
 struct GlobalVmContext {
@@ -360,10 +572,8 @@
     if perm_svc.checkPermission(perm, calling_pid, calling_uid as i32)? {
         Ok(())
     } else {
-        Err(Status::new_exception_str(
-            ExceptionCode::SECURITY,
-            Some(format!("does not have the {} permission", perm)),
-        ))
+        Err(anyhow!("does not have the {} permission", perm))
+            .or_binder_exception(ExceptionCode::SECURITY)
     }
 }
 
@@ -376,3 +586,29 @@
 fn check_manage_access() -> binder::Result<()> {
     check_permission("android.permission.MANAGE_VIRTUAL_MACHINE")
 }
+
+/// Check whether the caller of the current Binder method is allowed to use custom VMs
+fn check_use_custom_virtual_machine() -> binder::Result<()> {
+    check_permission("android.permission.USE_CUSTOM_VIRTUAL_MACHINE")
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+    use std::fs;
+
+    const TEST_RKP_CERT_CHAIN_PATH: &str = "testdata/rkp_cert_chain.der";
+
+    #[test]
+    fn splitting_x509_certificate_chain_succeeds() -> Result<()> {
+        let bytes = fs::read(TEST_RKP_CERT_CHAIN_PATH)?;
+        let cert_chain = split_x509_certificate_chain(&bytes)?;
+
+        assert_eq!(4, cert_chain.len());
+        for cert in cert_chain {
+            let x509_cert = X509::from_der(&cert.encodedCertificate)?;
+            assert_eq!(x509_cert.to_der()?.len(), cert.encodedCertificate.len());
+        }
+        Ok(())
+    }
+}
diff --git a/virtualizationservice/src/atom.rs b/virtualizationservice/src/atom.rs
index 4aa3550..862646b 100644
--- a/virtualizationservice/src/atom.rs
+++ b/virtualizationservice/src/atom.rs
@@ -22,7 +22,7 @@
 };
 use anyhow::Result;
 use log::{trace, warn};
-use rustutils::system_properties;
+use rustutils::system_properties::PropertyWatcher;
 use statslog_virtualization_rust::{vm_booted, vm_creation_requested, vm_exited};
 
 pub fn forward_vm_creation_atom(atom: &AtomVmCreationRequested) {
@@ -125,21 +125,6 @@
 }
 
 fn wait_for_statsd() -> Result<()> {
-    let mut prop = system_properties::PropertyWatcher::new("init.svc.statsd")?;
-    loop {
-        prop.wait()?;
-        match system_properties::read("init.svc.statsd")? {
-            Some(s) => {
-                if s == "running" {
-                    break;
-                }
-            }
-            None => {
-                // This case never really happens because
-                // prop.wait() waits for property to be non-null.
-                break;
-            }
-        }
-    }
+    PropertyWatcher::new("init.svc.statsd")?.wait_for_value("running", None)?;
     Ok(())
 }
diff --git a/virtualizationservice/src/main.rs b/virtualizationservice/src/main.rs
index 64ccb13..ad21e89 100644
--- a/virtualizationservice/src/main.rs
+++ b/virtualizationservice/src/main.rs
@@ -16,6 +16,8 @@
 
 mod aidl;
 mod atom;
+mod remote_provisioning;
+mod rkpvm;
 
 use crate::aidl::{
     remove_temporary_dir, BINDER_SERVICE_IDENTIFIER, TEMPORARY_DIRECTORY,
@@ -25,11 +27,14 @@
 use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IVirtualizationServiceInternal::BnVirtualizationServiceInternal;
 use anyhow::Error;
 use binder::{register_lazy_service, BinderFeatures, ProcessState, ThreadState};
-use log::{info, Level};
-use std::fs::read_dir;
+use log::{info, LevelFilter};
+use std::fs::{create_dir, read_dir};
 use std::os::unix::raw::{pid_t, uid_t};
+use std::path::Path;
 
 const LOG_TAG: &str = "VirtualizationService";
+pub(crate) const REMOTELY_PROVISIONED_COMPONENT_SERVICE_NAME: &str =
+    "android.hardware.security.keymint.IRemotelyProvisionedComponent/avf";
 
 fn get_calling_pid() -> pid_t {
     ThreadState::get_calling_pid()
@@ -43,8 +48,8 @@
     android_logger::init_once(
         Config::default()
             .with_tag(LOG_TAG)
-            .with_min_level(Level::Info)
-            .with_log_id(android_logger::LogId::System)
+            .with_max_level(LevelFilter::Info)
+            .with_log_buffer(android_logger::LogId::System)
             .with_filter(
                 // Reduce logspam by silencing logs from the disk crate which don't provide much
                 // information to us.
@@ -54,10 +59,28 @@
 
     clear_temporary_files().expect("Failed to delete old temporary files");
 
+    let common_dir_path = Path::new(TEMPORARY_DIRECTORY).join("common");
+    create_dir(common_dir_path).expect("Failed to create common directory");
+
+    ProcessState::start_thread_pool();
+
     let service = VirtualizationServiceInternal::init();
     let service = BnVirtualizationServiceInternal::new_binder(service, BinderFeatures::default());
     register_lazy_service(BINDER_SERVICE_IDENTIFIER, service.as_binder()).unwrap();
-    info!("Registered Binder service, joining threadpool.");
+    info!("Registered Binder service {}.", BINDER_SERVICE_IDENTIFIER);
+
+    if cfg!(remote_attestation) {
+        // The IRemotelyProvisionedComponent service is only supposed to be triggered by rkpd for
+        // RKP VM attestation.
+        let remote_provisioning_service = remote_provisioning::new_binder();
+        register_lazy_service(
+            REMOTELY_PROVISIONED_COMPONENT_SERVICE_NAME,
+            remote_provisioning_service.as_binder(),
+        )
+        .unwrap();
+        info!("Registered Binder service {}.", REMOTELY_PROVISIONED_COMPONENT_SERVICE_NAME);
+    }
+
     ProcessState::join_thread_pool();
 }
 
diff --git a/virtualizationservice/src/remote_provisioning.rs b/virtualizationservice/src/remote_provisioning.rs
new file mode 100644
index 0000000..40f54db
--- /dev/null
+++ b/virtualizationservice/src/remote_provisioning.rs
@@ -0,0 +1,164 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! IRemotelyProvisionedComponent HAL implementation.
+
+use crate::rkpvm;
+use android_hardware_security_rkp::aidl::android::hardware::security::keymint::{
+    DeviceInfo::DeviceInfo,
+    IRemotelyProvisionedComponent::{
+        BnRemotelyProvisionedComponent, IRemotelyProvisionedComponent, STATUS_FAILED,
+        STATUS_INVALID_MAC, STATUS_REMOVED,
+    },
+    MacedPublicKey::MacedPublicKey,
+    ProtectedData::ProtectedData,
+    RpcHardwareInfo::{RpcHardwareInfo, CURVE_NONE, MIN_SUPPORTED_NUM_KEYS_IN_CSR},
+};
+use anyhow::Context;
+use avflog::LogResult;
+use binder::{
+    BinderFeatures, ExceptionCode, Interface, IntoBinderResult, Result as BinderResult, Status,
+    Strong,
+};
+use hypervisor_props::is_protected_vm_supported;
+use service_vm_comm::{RequestProcessingError, Response};
+
+/// Constructs a binder object that implements `IRemotelyProvisionedComponent`.
+pub(crate) fn new_binder() -> Strong<dyn IRemotelyProvisionedComponent> {
+    BnRemotelyProvisionedComponent::new_binder(
+        AvfRemotelyProvisionedComponent {},
+        BinderFeatures::default(),
+    )
+}
+
+struct AvfRemotelyProvisionedComponent {}
+
+impl Interface for AvfRemotelyProvisionedComponent {}
+
+#[allow(non_snake_case)]
+impl IRemotelyProvisionedComponent for AvfRemotelyProvisionedComponent {
+    fn getHardwareInfo(&self) -> BinderResult<RpcHardwareInfo> {
+        check_protected_vm_is_supported()?;
+
+        Ok(RpcHardwareInfo {
+            versionNumber: 3,
+            rpcAuthorName: String::from("Android Virtualization Framework"),
+            supportedEekCurve: CURVE_NONE,
+            uniqueId: Some(String::from("AVF Remote Provisioning 1")),
+            supportedNumKeysInCsr: MIN_SUPPORTED_NUM_KEYS_IN_CSR,
+        })
+    }
+
+    fn generateEcdsaP256KeyPair(
+        &self,
+        testMode: bool,
+        macedPublicKey: &mut MacedPublicKey,
+    ) -> BinderResult<Vec<u8>> {
+        check_protected_vm_is_supported()?;
+
+        if testMode {
+            return Err(Status::new_service_specific_error_str(
+                STATUS_REMOVED,
+                Some("generateEcdsaP256KeyPair does not support test mode in IRPC v3+ HAL."),
+            ))
+            .with_log();
+        }
+        let res = rkpvm::generate_ecdsa_p256_key_pair()
+            .context("Failed to generate ECDSA P-256 key pair")
+            .with_log()
+            .or_service_specific_exception(STATUS_FAILED)?;
+        match res {
+            Response::GenerateEcdsaP256KeyPair(key_pair) => {
+                macedPublicKey.macedKey = key_pair.maced_public_key;
+                Ok(key_pair.key_blob)
+            }
+            _ => Err(to_service_specific_error(res)),
+        }
+        .with_log()
+    }
+
+    fn generateCertificateRequest(
+        &self,
+        _testMode: bool,
+        _keysToSign: &[MacedPublicKey],
+        _endpointEncryptionCertChain: &[u8],
+        _challenge: &[u8],
+        _deviceInfo: &mut DeviceInfo,
+        _protectedData: &mut ProtectedData,
+    ) -> BinderResult<Vec<u8>> {
+        Err(Status::new_service_specific_error_str(
+            STATUS_REMOVED,
+            Some("This method was deprecated in v3 of the interface."),
+        ))
+        .with_log()
+    }
+
+    fn generateCertificateRequestV2(
+        &self,
+        keysToSign: &[MacedPublicKey],
+        challenge: &[u8],
+    ) -> BinderResult<Vec<u8>> {
+        check_protected_vm_is_supported()?;
+
+        const MAX_CHALLENGE_SIZE: usize = 64;
+        if challenge.len() > MAX_CHALLENGE_SIZE {
+            let message = format!(
+                "Challenge is too big. Actual: {:?}. Maximum: {:?}.",
+                challenge.len(),
+                MAX_CHALLENGE_SIZE
+            );
+            return Err(Status::new_service_specific_error_str(STATUS_FAILED, Some(message)))
+                .with_log();
+        }
+        let res = rkpvm::generate_certificate_request(keysToSign, challenge)
+            .context("Failed to generate certificate request")
+            .with_log()
+            .or_service_specific_exception(STATUS_FAILED)?;
+        match res {
+            Response::GenerateCertificateRequest(res) => Ok(res),
+            _ => Err(to_service_specific_error(res)),
+        }
+        .with_log()
+    }
+}
+
+fn check_protected_vm_is_supported() -> BinderResult<()> {
+    if is_protected_vm_supported().unwrap_or(false) {
+        Ok(())
+    } else {
+        Err(Status::new_exception_str(
+            ExceptionCode::UNSUPPORTED_OPERATION,
+            Some("Protected VM support is missing for this operation"),
+        ))
+        .with_log()
+    }
+}
+
+fn to_service_specific_error(response: Response) -> Status {
+    match response {
+        Response::Err(e) => match e {
+            RequestProcessingError::InvalidMac => {
+                Status::new_service_specific_error_str(STATUS_INVALID_MAC, Some(format!("{e}")))
+            }
+            _ => Status::new_service_specific_error_str(
+                STATUS_FAILED,
+                Some(format!("Failed to process request: {e}.")),
+            ),
+        },
+        other => Status::new_service_specific_error_str(
+            STATUS_FAILED,
+            Some(format!("Incorrect response type: {other:?}")),
+        ),
+    }
+}
diff --git a/virtualizationservice/src/rkpvm.rs b/virtualizationservice/src/rkpvm.rs
new file mode 100644
index 0000000..79e09b0
--- /dev/null
+++ b/virtualizationservice/src/rkpvm.rs
@@ -0,0 +1,60 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Handles the RKP (Remote Key Provisioning) VM and host communication.
+//! The RKP VM will be recognized and attested by the RKP server periodically and
+//! serves as a trusted platform to attest a client VM.
+
+use android_hardware_security_rkp::aidl::android::hardware::security::keymint::MacedPublicKey::MacedPublicKey;
+use anyhow::{bail, Context, Result};
+use service_vm_comm::{
+    ClientVmAttestationParams, GenerateCertificateRequestParams, Request, Response,
+};
+use service_vm_manager::ServiceVm;
+
+pub(crate) fn request_attestation(
+    csr: Vec<u8>,
+    remotely_provisioned_key_blob: Vec<u8>,
+    remotely_provisioned_cert: Vec<u8>,
+) -> Result<Vec<u8>> {
+    let mut vm = ServiceVm::start()?;
+
+    let params =
+        ClientVmAttestationParams { csr, remotely_provisioned_key_blob, remotely_provisioned_cert };
+    let request = Request::RequestClientVmAttestation(params);
+    match vm.process_request(request).context("Failed to process request")? {
+        Response::RequestClientVmAttestation(cert) => Ok(cert),
+        _ => bail!("Incorrect response type"),
+    }
+}
+
+pub(crate) fn generate_ecdsa_p256_key_pair() -> Result<Response> {
+    let mut vm = ServiceVm::start()?;
+    let request = Request::GenerateEcdsaP256KeyPair;
+    vm.process_request(request).context("Failed to process request")
+}
+
+pub(crate) fn generate_certificate_request(
+    keys_to_sign: &[MacedPublicKey],
+    challenge: &[u8],
+) -> Result<Response> {
+    let params = GenerateCertificateRequestParams {
+        keys_to_sign: keys_to_sign.iter().map(|v| v.macedKey.to_vec()).collect(),
+        challenge: challenge.to_vec(),
+    };
+    let request = Request::GenerateCertificateRequest(params);
+
+    let mut vm = ServiceVm::start()?;
+    vm.process_request(request).context("Failed to process request")
+}
diff --git a/virtualizationservice/testdata/rkp_cert_chain.der b/virtualizationservice/testdata/rkp_cert_chain.der
new file mode 100644
index 0000000..f32065d
--- /dev/null
+++ b/virtualizationservice/testdata/rkp_cert_chain.der
Binary files differ
diff --git a/virtualizationservice/vfio_handler/Android.bp b/virtualizationservice/vfio_handler/Android.bp
new file mode 100644
index 0000000..b9d495b
--- /dev/null
+++ b/virtualizationservice/vfio_handler/Android.bp
@@ -0,0 +1,36 @@
+package {
+    default_team: "trendy_team_virtualization",
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+rust_binary {
+    name: "vfio_handler",
+    crate_name: "vfio_handler",
+    defaults: ["avf_build_flags_rust"],
+    edition: "2021",
+    srcs: ["src/main.rs"],
+    // Only build on targets which crosvm builds on.
+    enabled: false,
+    target: {
+        android64: {
+            compile_multilib: "64",
+            enabled: true,
+        },
+        linux_bionic_arm64: {
+            enabled: true,
+        },
+    },
+    prefer_rlib: true,
+    rustlibs: [
+        "android.system.virtualizationservice_internal-rust",
+        "libandroid_logger",
+        "libanyhow",
+        "libbinder_rs",
+        "liblazy_static",
+        "liblog_rust",
+        "libnix",
+        "librustutils",
+        "libzerocopy",
+    ],
+    apex_available: ["com.android.virt"],
+}
diff --git a/virtualizationservice/vfio_handler/src/aidl.rs b/virtualizationservice/vfio_handler/src/aidl.rs
new file mode 100644
index 0000000..c0967af
--- /dev/null
+++ b/virtualizationservice/vfio_handler/src/aidl.rs
@@ -0,0 +1,364 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Implementation of the AIDL interface of the VirtualizationService.
+
+use anyhow::{anyhow, Context};
+use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IBoundDevice::{IBoundDevice, BnBoundDevice};
+use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IVfioHandler::IVfioHandler;
+use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IVfioHandler::VfioDev::VfioDev;
+use android_system_virtualizationservice_internal::binder::ParcelFileDescriptor;
+use binder::{self, BinderFeatures, ExceptionCode, Interface, IntoBinderResult, Strong};
+use lazy_static::lazy_static;
+use log::error;
+use std::fs::{read_link, write, File};
+use std::io::{Read, Seek, SeekFrom, Write};
+use std::mem::size_of;
+use std::path::{Path, PathBuf};
+use rustutils::system_properties;
+use zerocopy::{
+    byteorder::{BigEndian, U32},
+    FromZeroes,
+    FromBytes,
+};
+
+// Device bound to VFIO driver.
+struct BoundDevice {
+    sysfs_path: String,
+    dtbo_label: String,
+}
+
+impl Interface for BoundDevice {}
+
+impl IBoundDevice for BoundDevice {
+    fn getSysfsPath(&self) -> binder::Result<String> {
+        Ok(self.sysfs_path.clone())
+    }
+
+    fn getDtboLabel(&self) -> binder::Result<String> {
+        Ok(self.dtbo_label.clone())
+    }
+}
+
+impl Drop for BoundDevice {
+    fn drop(&mut self) {
+        unbind_device(Path::new(&self.sysfs_path)).unwrap_or_else(|e| {
+            error!("did not restore {} driver: {}", self.sysfs_path, e);
+        });
+    }
+}
+
+impl BoundDevice {
+    fn new_binder(sysfs_path: String, dtbo_label: String) -> Strong<dyn IBoundDevice> {
+        BnBoundDevice::new_binder(BoundDevice { sysfs_path, dtbo_label }, BinderFeatures::default())
+    }
+}
+
+#[derive(Debug, Default)]
+pub struct VfioHandler {}
+
+impl VfioHandler {
+    pub fn init() -> VfioHandler {
+        VfioHandler::default()
+    }
+}
+
+impl Interface for VfioHandler {}
+
+impl IVfioHandler for VfioHandler {
+    fn bindDevicesToVfioDriver(
+        &self,
+        devices: &[VfioDev],
+    ) -> binder::Result<Vec<Strong<dyn IBoundDevice>>> {
+        // permission check is already done by IVirtualizationServiceInternal.
+        if !*IS_VFIO_SUPPORTED {
+            return Err(anyhow!("VFIO-platform not supported"))
+                .or_binder_exception(ExceptionCode::UNSUPPORTED_OPERATION);
+        }
+        devices
+            .iter()
+            .map(|d| {
+                bind_device(Path::new(&d.sysfsPath))?;
+                Ok(BoundDevice::new_binder(d.sysfsPath.clone(), d.dtboLabel.clone()))
+            })
+            .collect::<binder::Result<Vec<_>>>()
+    }
+
+    fn writeVmDtbo(&self, dtbo_fd: &ParcelFileDescriptor) -> binder::Result<()> {
+        let dtbo_path = get_dtbo_img_path()?;
+        let mut dtbo_img = File::open(dtbo_path)
+            .context("Failed to open DTBO partition")
+            .or_service_specific_exception(-1)?;
+
+        let dt_table_header = get_dt_table_header(&mut dtbo_img)?;
+        let vm_dtbo_idx = system_properties::read("ro.boot.hypervisor.vm_dtbo_idx")
+            .context("Failed to read vm_dtbo_idx")
+            .or_service_specific_exception(-1)?
+            .ok_or_else(|| anyhow!("vm_dtbo_idx is none"))
+            .or_service_specific_exception(-1)?;
+        let vm_dtbo_idx = vm_dtbo_idx
+            .parse()
+            .context("vm_dtbo_idx is not an integer")
+            .or_service_specific_exception(-1)?;
+        let dt_table_entry = get_dt_table_entry(&mut dtbo_img, &dt_table_header, vm_dtbo_idx)?;
+        write_vm_full_dtbo_from_img(&mut dtbo_img, &dt_table_entry, dtbo_fd)?;
+        Ok(())
+    }
+}
+
+const DEV_VFIO_PATH: &str = "/dev/vfio/vfio";
+const SYSFS_PLATFORM_DEVICES_PATH: &str = "/sys/devices/platform/";
+const VFIO_PLATFORM_DRIVER_PATH: &str = "/sys/bus/platform/drivers/vfio-platform";
+const SYSFS_PLATFORM_DRIVERS_PROBE_PATH: &str = "/sys/bus/platform/drivers_probe";
+const DT_TABLE_MAGIC: u32 = 0xd7b7ab1e;
+const VFIO_PLATFORM_DRIVER_NAME: &str = "vfio-platform";
+// To remove the override and match the device driver by "compatible" string again,
+// driver_override file must be cleared. Writing an empty string (same as
+// `echo -n "" > driver_override`) won't' clear the file, so append a newline char.
+const DEFAULT_DRIVER: &str = "\n";
+
+/// The structure of DT table header in dtbo.img.
+/// https://source.android.com/docs/core/architecture/dto/partitions
+#[repr(C)]
+#[derive(Debug, FromZeroes, FromBytes)]
+struct DtTableHeader {
+    /// DT_TABLE_MAGIC
+    magic: U32<BigEndian>,
+    /// includes dt_table_header + all dt_table_entry and all dtb/dtbo
+    _total_size: U32<BigEndian>,
+    /// sizeof(dt_table_header)
+    header_size: U32<BigEndian>,
+    /// sizeof(dt_table_entry)
+    dt_entry_size: U32<BigEndian>,
+    /// number of dt_table_entry
+    dt_entry_count: U32<BigEndian>,
+    /// offset to the first dt_table_entry from head of dt_table_header
+    dt_entries_offset: U32<BigEndian>,
+    /// flash page size we assume
+    _page_size: U32<BigEndian>,
+    /// DTBO image version, the current version is 0. The version will be
+    /// incremented when the dt_table_header struct is updated.
+    _version: U32<BigEndian>,
+}
+
+/// The structure of each DT table entry (v0) in dtbo.img.
+/// https://source.android.com/docs/core/architecture/dto/partitions
+#[repr(C)]
+#[derive(Debug, FromZeroes, FromBytes)]
+struct DtTableEntry {
+    /// size of each DT
+    dt_size: U32<BigEndian>,
+    /// offset from head of dt_table_header
+    dt_offset: U32<BigEndian>,
+    /// optional, must be zero if unused
+    _id: U32<BigEndian>,
+    /// optional, must be zero if unused
+    _rev: U32<BigEndian>,
+    /// optional, must be zero if unused
+    _custom: [U32<BigEndian>; 4],
+}
+
+lazy_static! {
+    static ref IS_VFIO_SUPPORTED: bool =
+        Path::new(DEV_VFIO_PATH).exists() && Path::new(VFIO_PLATFORM_DRIVER_PATH).exists();
+}
+
+fn check_platform_device(path: &Path) -> binder::Result<()> {
+    if !path.exists() {
+        return Err(anyhow!("no such device {path:?}"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
+    }
+
+    if !path.starts_with(SYSFS_PLATFORM_DEVICES_PATH) {
+        return Err(anyhow!("{path:?} is not a platform device"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
+    }
+
+    Ok(())
+}
+
+fn get_device_iommu_group(path: &Path) -> Option<u64> {
+    let group_path = read_link(path.join("iommu_group")).ok()?;
+    let group = group_path.file_name()?;
+    group.to_str()?.parse().ok()
+}
+
+fn current_driver(path: &Path) -> Option<String> {
+    let driver_path = read_link(path.join("driver")).ok()?;
+    let bound_driver = driver_path.file_name()?;
+    bound_driver.to_str().map(str::to_string)
+}
+
+// Try to bind device driver by writing its name to driver_override and triggering driver probe.
+fn try_bind_driver(path: &Path, driver: &str) -> binder::Result<()> {
+    if Some(driver) == current_driver(path).as_deref() {
+        // already bound
+        return Ok(());
+    }
+
+    // unbind
+    let Some(device) = path.file_name() else {
+        return Err(anyhow!("can't get device name from {path:?}"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
+    };
+    let Some(device_str) = device.to_str() else {
+        return Err(anyhow!("invalid filename {device:?}"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT);
+    };
+    let unbind_path = path.join("driver/unbind");
+    if unbind_path.exists() {
+        write(&unbind_path, device_str.as_bytes())
+            .with_context(|| format!("could not unbind {device_str}"))
+            .or_service_specific_exception(-1)?;
+    }
+    if path.join("driver").exists() {
+        return Err(anyhow!("could not unbind {device_str}")).or_service_specific_exception(-1);
+    }
+
+    // bind to new driver
+    write(path.join("driver_override"), driver.as_bytes())
+        .with_context(|| format!("could not bind {device_str} to '{driver}' driver"))
+        .or_service_specific_exception(-1)?;
+
+    write(SYSFS_PLATFORM_DRIVERS_PROBE_PATH, device_str.as_bytes())
+        .with_context(|| format!("could not write {device_str} to drivers-probe"))
+        .or_service_specific_exception(-1)?;
+
+    // final check
+    let new_driver = current_driver(path);
+    if new_driver.is_none() || Some(driver) != new_driver.as_deref() && driver != DEFAULT_DRIVER {
+        return Err(anyhow!("{path:?} still not bound to '{driver}' driver"))
+            .or_service_specific_exception(-1);
+    }
+
+    Ok(())
+}
+
+fn bind_device(path: &Path) -> binder::Result<()> {
+    let path = path
+        .canonicalize()
+        .with_context(|| format!("can't canonicalize {path:?}"))
+        .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT)?;
+
+    check_platform_device(&path)?;
+    try_bind_driver(&path, VFIO_PLATFORM_DRIVER_NAME)?;
+
+    if get_device_iommu_group(&path).is_none() {
+        Err(anyhow!("can't get iommu group for {path:?}")).or_service_specific_exception(-1)
+    } else {
+        Ok(())
+    }
+}
+
+fn unbind_device(path: &Path) -> binder::Result<()> {
+    let path = path
+        .canonicalize()
+        .with_context(|| format!("can't canonicalize {path:?}"))
+        .or_binder_exception(ExceptionCode::ILLEGAL_ARGUMENT)?;
+
+    check_platform_device(&path)?;
+    try_bind_driver(&path, DEFAULT_DRIVER)?;
+
+    if Some(VFIO_PLATFORM_DRIVER_NAME) == current_driver(&path).as_deref() {
+        Err(anyhow!("{path:?} still bound to vfio driver")).or_service_specific_exception(-1)
+    } else {
+        Ok(())
+    }
+}
+
+fn get_dtbo_img_path() -> binder::Result<PathBuf> {
+    let slot_suffix = system_properties::read("ro.boot.slot_suffix")
+        .context("Failed to read ro.boot.slot_suffix")
+        .or_service_specific_exception(-1)?
+        .ok_or_else(|| anyhow!("slot_suffix is none"))
+        .or_service_specific_exception(-1)?;
+    Ok(PathBuf::from(format!("/dev/block/by-name/dtbo{slot_suffix}")))
+}
+
+fn read_values(file: &mut File, size: usize, offset: u64) -> binder::Result<Vec<u8>> {
+    file.seek(SeekFrom::Start(offset))
+        .context("Cannot seek the offset")
+        .or_service_specific_exception(-1)?;
+    let mut buffer = vec![0_u8; size];
+    file.read_exact(&mut buffer)
+        .context("Failed to read buffer")
+        .or_service_specific_exception(-1)?;
+    Ok(buffer)
+}
+
+fn get_dt_table_header(file: &mut File) -> binder::Result<DtTableHeader> {
+    let values = read_values(file, size_of::<DtTableHeader>(), 0)?;
+    let dt_table_header = DtTableHeader::read_from(values.as_slice())
+        .context("DtTableHeader is invalid")
+        .or_service_specific_exception(-1)?;
+    if dt_table_header.magic.get() != DT_TABLE_MAGIC
+        || dt_table_header.header_size.get() as usize != size_of::<DtTableHeader>()
+    {
+        return Err(anyhow!("DtTableHeader is invalid")).or_service_specific_exception(-1);
+    }
+    Ok(dt_table_header)
+}
+
+fn get_dt_table_entry(
+    file: &mut File,
+    header: &DtTableHeader,
+    index: u32,
+) -> binder::Result<DtTableEntry> {
+    if index >= header.dt_entry_count.get() {
+        return Err(anyhow!("Invalid dtbo index {index}")).or_service_specific_exception(-1);
+    }
+    let Some(prev_dt_entry_total_size) = header.dt_entry_size.get().checked_mul(index) else {
+        return Err(anyhow!("Unexpected arithmetic result"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_STATE);
+    };
+    let Some(dt_entry_offset) =
+        prev_dt_entry_total_size.checked_add(header.dt_entries_offset.get())
+    else {
+        return Err(anyhow!("Unexpected arithmetic result"))
+            .or_binder_exception(ExceptionCode::ILLEGAL_STATE);
+    };
+    let values = read_values(file, size_of::<DtTableEntry>(), dt_entry_offset.into())?;
+    let dt_table_entry = DtTableEntry::read_from(values.as_slice())
+        .with_context(|| format!("DtTableEntry at index {index} is invalid."))
+        .or_service_specific_exception(-1)?;
+    Ok(dt_table_entry)
+}
+
+fn write_vm_full_dtbo_from_img(
+    dtbo_img_file: &mut File,
+    entry: &DtTableEntry,
+    dtbo_fd: &ParcelFileDescriptor,
+) -> binder::Result<()> {
+    let dt_size = entry
+        .dt_size
+        .get()
+        .try_into()
+        .context("Failed to convert type")
+        .or_binder_exception(ExceptionCode::ILLEGAL_STATE)?;
+    let buffer = read_values(dtbo_img_file, dt_size, entry.dt_offset.get().into())?;
+
+    let mut dtbo_fd = File::from(
+        dtbo_fd
+            .as_ref()
+            .try_clone()
+            .context("Failed to create File from ParcelFileDescriptor")
+            .or_binder_exception(ExceptionCode::BAD_PARCELABLE)?,
+    );
+
+    dtbo_fd
+        .write_all(&buffer)
+        .context("Failed to write dtbo file")
+        .or_service_specific_exception(-1)?;
+    Ok(())
+}
diff --git a/virtualizationservice/vfio_handler/src/main.rs b/virtualizationservice/vfio_handler/src/main.rs
new file mode 100644
index 0000000..318d134
--- /dev/null
+++ b/virtualizationservice/vfio_handler/src/main.rs
@@ -0,0 +1,45 @@
+// Copyright 2023 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Android VfioHandler
+
+mod aidl;
+
+use crate::aidl::VfioHandler;
+use android_logger::Config;
+use android_system_virtualizationservice_internal::aidl::android::system::virtualizationservice_internal::IVfioHandler::{
+    BnVfioHandler,
+    BpVfioHandler,
+    IVfioHandler,
+};
+use binder::{register_lazy_service, BinderFeatures, ProcessState};
+use log::{info, LevelFilter};
+
+const LOG_TAG: &str = "VfioHandler";
+
+fn main() {
+    android_logger::init_once(
+        Config::default()
+            .with_tag(LOG_TAG)
+            .with_max_level(LevelFilter::Info)
+            .with_log_buffer(android_logger::LogId::System),
+    );
+
+    let service = VfioHandler::init();
+    let service = BnVfioHandler::new_binder(service, BinderFeatures::default());
+    register_lazy_service(<BpVfioHandler as IVfioHandler>::get_descriptor(), service.as_binder())
+        .unwrap();
+    info!("Registered Binder service, joining threadpool.");
+    ProcessState::join_thread_pool();
+}
diff --git a/vm/Android.bp b/vm/Android.bp
index 50e68cc..ff1b788 100644
--- a/vm/Android.bp
+++ b/vm/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "vm.defaults",
     crate_name: "vm",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     edition: "2021",
     prefer_rlib: true,
diff --git a/vm/TEST_MAPPING b/vm/TEST_MAPPING
index 485c3af..f1f48a6 100644
--- a/vm/TEST_MAPPING
+++ b/vm/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/vm/src/main.rs b/vm/src/main.rs
index 1d9f50b..de9291c 100644
--- a/vm/src/main.rs
+++ b/vm/src/main.rs
@@ -24,7 +24,7 @@
 };
 use anyhow::{Context, Error};
 use binder::{ProcessState, Strong};
-use clap::Parser;
+use clap::{Args, Parser};
 use create_idsig::command_create_idsig;
 use create_partition::command_create_partition;
 use run::{command_run, command_run_app, command_run_microdroid};
@@ -34,165 +34,218 @@
 #[derive(Debug)]
 struct Idsigs(Vec<PathBuf>);
 
+#[derive(Args, Default)]
+/// Collection of flags that are at VM level and therefore applicable to all subcommands
+pub struct CommonConfig {
+    /// Name of VM
+    #[arg(long)]
+    name: Option<String>,
+
+    /// Run VM with vCPU topology matching that of the host. If unspecified, defaults to 1 vCPU.
+    #[arg(long, default_value = "one_cpu", value_parser = parse_cpu_topology)]
+    cpu_topology: CpuTopology,
+
+    /// Comma separated list of task profile names to apply to the VM
+    #[arg(long)]
+    task_profiles: Vec<String>,
+
+    /// Memory size (in MiB) of the VM. If unspecified, defaults to the value of `memory_mib`
+    /// in the VM config file.
+    #[arg(short, long)]
+    mem: Option<u32>,
+
+    /// Run VM in protected mode.
+    #[arg(short, long)]
+    protected: bool,
+}
+
+#[derive(Args, Default)]
+/// Collection of flags for debugging
+pub struct DebugConfig {
+    /// Debug level of the VM. Supported values: "full" (default), and "none".
+    #[arg(long, default_value = "full", value_parser = parse_debug_level)]
+    debug: DebugLevel,
+
+    /// Path to file for VM console output.
+    #[arg(long)]
+    console: Option<PathBuf>,
+
+    /// Path to file for VM console input.
+    #[arg(long)]
+    console_in: Option<PathBuf>,
+
+    /// Path to file for VM log output.
+    #[arg(long)]
+    log: Option<PathBuf>,
+
+    /// Port at which crosvm will start a gdb server to debug guest kernel.
+    /// Note: this is only supported on Android kernels android14-5.15 and higher.
+    #[arg(long)]
+    gdb: Option<NonZeroU16>,
+}
+
+#[derive(Args, Default)]
+/// Collection of flags that are Microdroid specific
+pub struct MicrodroidConfig {
+    /// Path to the file backing the storage.
+    /// Created if the option is used but the path does not exist in the device.
+    #[arg(long)]
+    storage: Option<PathBuf>,
+
+    /// Size of the storage. Used only if --storage is supplied but path does not exist
+    /// Default size is 10*1024*1024
+    #[arg(long)]
+    storage_size: Option<u64>,
+
+    /// Path to disk image containing vendor-specific modules.
+    #[cfg(vendor_modules)]
+    #[arg(long)]
+    vendor: Option<PathBuf>,
+
+    /// SysFS nodes of devices to assign to VM
+    #[cfg(device_assignment)]
+    #[arg(long)]
+    devices: Vec<PathBuf>,
+
+    /// Version of GKI to use. If set, use instead of microdroid kernel
+    #[cfg(vendor_modules)]
+    #[arg(long)]
+    gki: Option<String>,
+}
+
+impl MicrodroidConfig {
+    #[cfg(vendor_modules)]
+    fn vendor(&self) -> &Option<PathBuf> {
+        &self.vendor
+    }
+
+    #[cfg(not(vendor_modules))]
+    fn vendor(&self) -> Option<PathBuf> {
+        None
+    }
+
+    #[cfg(vendor_modules)]
+    fn gki(&self) -> Option<&str> {
+        self.gki.as_deref()
+    }
+
+    #[cfg(not(vendor_modules))]
+    fn gki(&self) -> Option<&str> {
+        None
+    }
+
+    #[cfg(device_assignment)]
+    fn devices(&self) -> &Vec<PathBuf> {
+        &self.devices
+    }
+
+    #[cfg(not(device_assignment))]
+    fn devices(&self) -> Vec<PathBuf> {
+        Vec::new()
+    }
+}
+
+#[derive(Args, Default)]
+/// Flags for the run_app subcommand
+pub struct RunAppConfig {
+    #[command(flatten)]
+    common: CommonConfig,
+
+    #[command(flatten)]
+    debug: DebugConfig,
+
+    #[command(flatten)]
+    microdroid: MicrodroidConfig,
+
+    /// Path to VM Payload APK
+    apk: PathBuf,
+
+    /// Path to idsig of the APK
+    idsig: PathBuf,
+
+    /// Path to the instance image. Created if not exists.
+    instance: PathBuf,
+
+    /// Path to VM config JSON within APK (e.g. assets/vm_config.json)
+    #[arg(long)]
+    config_path: Option<String>,
+
+    /// Name of VM payload binary within APK (e.g. MicrodroidTestNativeLib.so)
+    #[arg(long)]
+    #[arg(alias = "payload_path")]
+    payload_binary_name: Option<String>,
+
+    /// Paths to extra apk files.
+    #[cfg(multi_tenant)]
+    #[arg(long = "extra-apk")]
+    #[clap(conflicts_with = "config_path")]
+    extra_apks: Vec<PathBuf>,
+
+    /// Paths to extra idsig files.
+    #[arg(long = "extra-idsig")]
+    extra_idsigs: Vec<PathBuf>,
+}
+
+impl RunAppConfig {
+    #[cfg(multi_tenant)]
+    fn extra_apks(&self) -> &[PathBuf] {
+        &self.extra_apks
+    }
+
+    #[cfg(not(multi_tenant))]
+    fn extra_apks(&self) -> &[PathBuf] {
+        &[]
+    }
+}
+
+#[derive(Args, Default)]
+/// Flags for the run_microdroid subcommand
+pub struct RunMicrodroidConfig {
+    #[command(flatten)]
+    common: CommonConfig,
+
+    #[command(flatten)]
+    debug: DebugConfig,
+
+    #[command(flatten)]
+    microdroid: MicrodroidConfig,
+
+    /// Path to the directory where VM-related files (e.g. instance.img, apk.idsig, etc.) will
+    /// be stored. If not specified a random directory under /data/local/tmp/microdroid will be
+    /// created and used.
+    #[arg(long)]
+    work_dir: Option<PathBuf>,
+}
+
+#[derive(Args, Default)]
+/// Flags for the run subcommand
+pub struct RunCustomVmConfig {
+    #[command(flatten)]
+    common: CommonConfig,
+
+    #[command(flatten)]
+    debug: DebugConfig,
+
+    /// Path to VM config JSON
+    config: PathBuf,
+}
+
 #[derive(Parser)]
 enum Opt {
     /// Run a virtual machine with a config in APK
     RunApp {
-        /// Path to VM Payload APK
-        apk: PathBuf,
-
-        /// Path to idsig of the APK
-        idsig: PathBuf,
-
-        /// Path to the instance image. Created if not exists.
-        instance: PathBuf,
-
-        /// Path to VM config JSON within APK (e.g. assets/vm_config.json)
-        #[clap(long)]
-        config_path: Option<String>,
-
-        /// Name of VM payload binary within APK (e.g. MicrodroidTestNativeLib.so)
-        #[clap(long)]
-        #[clap(alias = "payload_path")]
-        payload_binary_name: Option<String>,
-
-        /// Name of VM
-        #[clap(long)]
-        name: Option<String>,
-
-        /// Path to the file backing the storage.
-        /// Created if the option is used but the path does not exist in the device.
-        #[clap(long)]
-        storage: Option<PathBuf>,
-
-        /// Size of the storage. Used only if --storage is supplied but path does not exist
-        /// Default size is 10*1024*1024
-        #[clap(long)]
-        storage_size: Option<u64>,
-
-        /// Path to file for VM console output.
-        #[clap(long)]
-        console: Option<PathBuf>,
-
-        /// Path to file for VM log output.
-        #[clap(long)]
-        log: Option<PathBuf>,
-
-        /// Debug level of the VM. Supported values: "none" (default), and "full".
-        #[clap(long, default_value = "none", value_parser = parse_debug_level)]
-        debug: DebugLevel,
-
-        /// Run VM in protected mode.
-        #[clap(short, long)]
-        protected: bool,
-
-        /// Memory size (in MiB) of the VM. If unspecified, defaults to the value of `memory_mib`
-        /// in the VM config file.
-        #[clap(short, long)]
-        mem: Option<u32>,
-
-        /// Run VM with vCPU topology matching that of the host. If unspecified, defaults to 1 vCPU.
-        #[clap(long, default_value = "one_cpu", value_parser = parse_cpu_topology)]
-        cpu_topology: CpuTopology,
-
-        /// Comma separated list of task profile names to apply to the VM
-        #[clap(long)]
-        task_profiles: Vec<String>,
-
-        /// Paths to extra idsig files.
-        #[clap(long = "extra-idsig")]
-        extra_idsigs: Vec<PathBuf>,
-
-        /// Port at which crosvm will start a gdb server to debug guest kernel.
-        /// Note: this is only supported on Android kernels android14-5.15 and higher.
-        #[clap(long)]
-        gdb: Option<NonZeroU16>,
+        #[command(flatten)]
+        config: RunAppConfig,
     },
     /// Run a virtual machine with Microdroid inside
     RunMicrodroid {
-        /// Path to the directory where VM-related files (e.g. instance.img, apk.idsig, etc.) will
-        /// be stored. If not specified a random directory under /data/local/tmp/microdroid will be
-        /// created and used.
-        #[clap(long)]
-        work_dir: Option<PathBuf>,
-
-        /// Name of VM
-        #[clap(long)]
-        name: Option<String>,
-
-        /// Path to the file backing the storage.
-        /// Created if the option is used but the path does not exist in the device.
-        #[clap(long)]
-        storage: Option<PathBuf>,
-
-        /// Size of the storage. Used only if --storage is supplied but path does not exist
-        /// Default size is 10*1024*1024
-        #[clap(long)]
-        storage_size: Option<u64>,
-
-        /// Path to file for VM console output.
-        #[clap(long)]
-        console: Option<PathBuf>,
-
-        /// Path to file for VM log output.
-        #[clap(long)]
-        log: Option<PathBuf>,
-
-        /// Debug level of the VM. Supported values: "none" (default), and "full".
-        #[clap(long, default_value = "full", value_parser = parse_debug_level)]
-        debug: DebugLevel,
-
-        /// Run VM in protected mode.
-        #[clap(short, long)]
-        protected: bool,
-
-        /// Memory size (in MiB) of the VM. If unspecified, defaults to the value of `memory_mib`
-        /// in the VM config file.
-        #[clap(short, long)]
-        mem: Option<u32>,
-
-        /// Run VM with vCPU topology matching that of the host. If unspecified, defaults to 1 vCPU.
-        #[clap(long, default_value = "one_cpu", value_parser = parse_cpu_topology)]
-        cpu_topology: CpuTopology,
-
-        /// Comma separated list of task profile names to apply to the VM
-        #[clap(long)]
-        task_profiles: Vec<String>,
-
-        /// Port at which crosvm will start a gdb server to debug guest kernel.
-        /// Note: this is only supported on Android kernels android14-5.15 and higher.
-        #[clap(long)]
-        gdb: Option<NonZeroU16>,
+        #[command(flatten)]
+        config: RunMicrodroidConfig,
     },
     /// Run a virtual machine
     Run {
-        /// Path to VM config JSON
-        config: PathBuf,
-
-        /// Name of VM
-        #[clap(long)]
-        name: Option<String>,
-
-        /// Run VM with vCPU topology matching that of the host. If unspecified, defaults to 1 vCPU.
-        #[clap(long, default_value = "one_cpu", value_parser = parse_cpu_topology)]
-        cpu_topology: CpuTopology,
-
-        /// Comma separated list of task profile names to apply to the VM
-        #[clap(long)]
-        task_profiles: Vec<String>,
-
-        /// Path to file for VM console output.
-        #[clap(long)]
-        console: Option<PathBuf>,
-
-        /// Path to file for VM log output.
-        #[clap(long)]
-        log: Option<PathBuf>,
-
-        /// Port at which crosvm will start a gdb server to debug guest kernel.
-        /// Note: this is only supported on Android kernels android14-5.15 and higher.
-        #[clap(long)]
-        gdb: Option<NonZeroU16>,
+        #[command(flatten)]
+        config: RunCustomVmConfig,
     },
     /// List running virtual machines
     List,
@@ -207,7 +260,7 @@
         size: u64,
 
         /// Type of the partition
-        #[clap(short = 't', long = "type", default_value = "raw",
+        #[arg(short = 't', long = "type", default_value = "raw",
                value_parser = parse_partition_type)]
         partition_type: PartitionType,
     },
@@ -259,85 +312,9 @@
     ProcessState::start_thread_pool();
 
     match opt {
-        Opt::RunApp {
-            name,
-            apk,
-            idsig,
-            instance,
-            storage,
-            storage_size,
-            config_path,
-            payload_binary_name,
-            console,
-            log,
-            debug,
-            protected,
-            mem,
-            cpu_topology,
-            task_profiles,
-            extra_idsigs,
-            gdb,
-        } => command_run_app(
-            name,
-            get_service()?.as_ref(),
-            &apk,
-            &idsig,
-            &instance,
-            storage.as_deref(),
-            storage_size,
-            config_path,
-            payload_binary_name,
-            console.as_deref(),
-            log.as_deref(),
-            debug,
-            protected,
-            mem,
-            cpu_topology,
-            task_profiles,
-            &extra_idsigs,
-            gdb,
-        ),
-        Opt::RunMicrodroid {
-            name,
-            work_dir,
-            storage,
-            storage_size,
-            console,
-            log,
-            debug,
-            protected,
-            mem,
-            cpu_topology,
-            task_profiles,
-            gdb,
-        } => command_run_microdroid(
-            name,
-            get_service()?.as_ref(),
-            work_dir,
-            storage.as_deref(),
-            storage_size,
-            console.as_deref(),
-            log.as_deref(),
-            debug,
-            protected,
-            mem,
-            cpu_topology,
-            task_profiles,
-            gdb,
-        ),
-        Opt::Run { name, config, cpu_topology, task_profiles, console, log, gdb } => {
-            command_run(
-                name,
-                get_service()?.as_ref(),
-                &config,
-                console.as_deref(),
-                log.as_deref(),
-                /* mem */ None,
-                cpu_topology,
-                task_profiles,
-                gdb,
-            )
-        }
+        Opt::RunApp { config } => command_run_app(config),
+        Opt::RunMicrodroid { config } => command_run_microdroid(config),
+        Opt::Run { config } => command_run(config),
         Opt::List => command_list(get_service()?.as_ref()),
         Opt::Info => command_info(),
         Opt::CreatePartition { path, size, partition_type } => {
@@ -379,6 +356,25 @@
         println!("/dev/kvm does not exist.");
     }
 
+    if Path::new("/dev/vfio/vfio").exists() {
+        println!("/dev/vfio/vfio exists.");
+    } else {
+        println!("/dev/vfio/vfio does not exist.");
+    }
+
+    if Path::new("/sys/bus/platform/drivers/vfio-platform").exists() {
+        println!("VFIO-platform is supported.");
+    } else {
+        println!("VFIO-platform is not supported.");
+    }
+
+    let devices = get_service()?.getAssignableDevices()?;
+    let devices = devices.into_iter().map(|x| x.node).collect::<Vec<_>>();
+    println!("Assignable devices: {}", serde_json::to_string(&devices)?);
+
+    let os_list = get_service()?.getSupportedOSList()?;
+    println!("Available OS list: {}", serde_json::to_string(&os_list)?);
+
     Ok(())
 }
 
diff --git a/vm/src/run.rs b/vm/src/run.rs
index 36edc64..1d2f48b 100644
--- a/vm/src/run.rs
+++ b/vm/src/run.rs
@@ -15,11 +15,14 @@
 //! Command to run a VM.
 
 use crate::create_partition::command_create_partition;
+use crate::{get_service, RunAppConfig, RunCustomVmConfig, RunMicrodroidConfig};
 use android_system_virtualizationservice::aidl::android::system::virtualizationservice::{
-    CpuTopology::CpuTopology,
     IVirtualizationService::IVirtualizationService,
     PartitionType::PartitionType,
-    VirtualMachineAppConfig::{DebugLevel::DebugLevel, Payload::Payload, VirtualMachineAppConfig},
+    VirtualMachineAppConfig::{
+        CustomConfig::CustomConfig, DebugLevel::DebugLevel, Payload::Payload,
+        VirtualMachineAppConfig,
+    },
     VirtualMachineConfig::VirtualMachineConfig,
     VirtualMachinePayloadConfig::VirtualMachinePayloadConfig,
     VirtualMachineState::VirtualMachineState,
@@ -32,7 +35,6 @@
 use std::fs;
 use std::fs::File;
 use std::io;
-use std::num::NonZeroU16;
 use std::os::unix::io::{AsRawFd, FromRawFd};
 use std::path::{Path, PathBuf};
 use vmclient::{ErrorCode, VmInstance};
@@ -40,73 +42,54 @@
 use zip::ZipArchive;
 
 /// Run a VM from the given APK, idsig, and config.
-#[allow(clippy::too_many_arguments)]
-pub fn command_run_app(
-    name: Option<String>,
-    service: &dyn IVirtualizationService,
-    apk: &Path,
-    idsig: &Path,
-    instance: &Path,
-    storage: Option<&Path>,
-    storage_size: Option<u64>,
-    config_path: Option<String>,
-    payload_binary_name: Option<String>,
-    console_path: Option<&Path>,
-    log_path: Option<&Path>,
-    debug_level: DebugLevel,
-    protected: bool,
-    mem: Option<u32>,
-    cpu_topology: CpuTopology,
-    task_profiles: Vec<String>,
-    extra_idsigs: &[PathBuf],
-    gdb: Option<NonZeroU16>,
-) -> Result<(), Error> {
-    let apk_file = File::open(apk).context("Failed to open APK file")?;
+pub fn command_run_app(config: RunAppConfig) -> Result<(), Error> {
+    let service = get_service()?;
+    let apk = File::open(&config.apk).context("Failed to open APK file")?;
 
-    let extra_apks = match config_path.as_deref() {
-        Some(path) => parse_extra_apk_list(apk, path)?,
-        None => vec![],
+    let extra_apks = match config.config_path.as_deref() {
+        Some(path) => parse_extra_apk_list(&config.apk, path)?,
+        None => config.extra_apks().to_vec(),
     };
 
-    if extra_apks.len() != extra_idsigs.len() {
+    if extra_apks.len() != config.extra_idsigs.len() {
         bail!(
             "Found {} extra apks, but there are {} extra idsigs",
             extra_apks.len(),
-            extra_idsigs.len()
+            config.extra_idsigs.len()
         )
     }
 
-    for i in 0..extra_apks.len() {
-        let extra_apk_fd = ParcelFileDescriptor::new(File::open(&extra_apks[i])?);
-        let extra_idsig_fd = ParcelFileDescriptor::new(File::create(&extra_idsigs[i])?);
+    for (i, extra_apk) in extra_apks.iter().enumerate() {
+        let extra_apk_fd = ParcelFileDescriptor::new(File::open(extra_apk)?);
+        let extra_idsig_fd = ParcelFileDescriptor::new(File::create(&config.extra_idsigs[i])?);
         service.createOrUpdateIdsigFile(&extra_apk_fd, &extra_idsig_fd)?;
     }
 
-    let idsig_file = File::create(idsig).context("Failed to create idsig file")?;
+    let idsig = File::create(&config.idsig).context("Failed to create idsig file")?;
 
-    let apk_fd = ParcelFileDescriptor::new(apk_file);
-    let idsig_fd = ParcelFileDescriptor::new(idsig_file);
+    let apk_fd = ParcelFileDescriptor::new(apk);
+    let idsig_fd = ParcelFileDescriptor::new(idsig);
     service.createOrUpdateIdsigFile(&apk_fd, &idsig_fd)?;
 
-    let idsig_file = File::open(idsig).context("Failed to open idsig file")?;
-    let idsig_fd = ParcelFileDescriptor::new(idsig_file);
+    let idsig = File::open(&config.idsig).context("Failed to open idsig file")?;
+    let idsig_fd = ParcelFileDescriptor::new(idsig);
 
-    if !instance.exists() {
+    if !config.instance.exists() {
         const INSTANCE_FILE_SIZE: u64 = 10 * 1024 * 1024;
         command_create_partition(
-            service,
-            instance,
+            service.as_ref(),
+            &config.instance,
             INSTANCE_FILE_SIZE,
             PartitionType::ANDROID_VM_INSTANCE,
         )?;
     }
 
-    let storage = if let Some(path) = storage {
+    let storage = if let Some(ref path) = config.microdroid.storage {
         if !path.exists() {
             command_create_partition(
-                service,
+                service.as_ref(),
                 path,
-                storage_size.unwrap_or(10 * 1024 * 1024),
+                config.microdroid.storage_size.unwrap_or(10 * 1024 * 1024),
                 PartitionType::ENCRYPTEDSTORE,
             )?;
         }
@@ -115,40 +98,78 @@
         None
     };
 
-    let extra_idsig_files: Result<Vec<File>, _> = extra_idsigs.iter().map(File::open).collect();
+    let vendor =
+        config.microdroid.vendor().as_ref().map(|p| open_parcel_file(p, false)).transpose()?;
+
+    let extra_idsig_files: Result<Vec<_>, _> = config.extra_idsigs.iter().map(File::open).collect();
     let extra_idsig_fds = extra_idsig_files?.into_iter().map(ParcelFileDescriptor::new).collect();
 
-    let payload = if let Some(config_path) = config_path {
-        if payload_binary_name.is_some() {
+    let payload = if let Some(config_path) = config.config_path {
+        if config.payload_binary_name.is_some() {
             bail!("Only one of --config-path or --payload-binary-name can be defined")
         }
+        if config.microdroid.gki().is_some() {
+            bail!("--gki cannot be defined with --config-path. Use 'os' field in the config file")
+        }
         Payload::ConfigPath(config_path)
-    } else if let Some(payload_binary_name) = payload_binary_name {
+    } else if let Some(payload_binary_name) = config.payload_binary_name {
+        let os_name = if let Some(ver) = config.microdroid.gki() {
+            format!("microdroid_gki-{ver}")
+        } else {
+            "microdroid".to_owned()
+        };
+
+        let extra_apk_files: Result<Vec<_>, _> = extra_apks.iter().map(File::open).collect();
+        let extra_apk_fds = extra_apk_files?.into_iter().map(ParcelFileDescriptor::new).collect();
+
         Payload::PayloadConfig(VirtualMachinePayloadConfig {
             payloadBinaryName: payload_binary_name,
+            osName: os_name,
+            extraApks: extra_apk_fds,
         })
     } else {
         bail!("Either --config-path or --payload-binary-name must be defined")
     };
 
-    let payload_config_str = format!("{:?}!{:?}", apk, payload);
+    let payload_config_str = format!("{:?}!{:?}", config.apk, payload);
 
-    let config = VirtualMachineConfig::AppConfig(VirtualMachineAppConfig {
-        name: name.unwrap_or_else(|| String::from("VmRunApp")),
+    let custom_config = CustomConfig {
+        customKernelImage: None,
+        gdbPort: config.debug.gdb.map(u16::from).unwrap_or(0) as i32, // 0 means no gdb
+        taskProfiles: config.common.task_profiles,
+        vendorImage: vendor,
+        devices: config
+            .microdroid
+            .devices()
+            .iter()
+            .map(|x| {
+                x.to_str().map(String::from).ok_or(anyhow!("Failed to convert {x:?} to String"))
+            })
+            .collect::<Result<_, _>>()?,
+    };
+
+    let vm_config = VirtualMachineConfig::AppConfig(VirtualMachineAppConfig {
+        name: config.common.name.unwrap_or_else(|| String::from("VmRunApp")),
         apk: apk_fd.into(),
         idsig: idsig_fd.into(),
         extraIdsigs: extra_idsig_fds,
-        instanceImage: open_parcel_file(instance, true /* writable */)?.into(),
+        instanceImage: open_parcel_file(&config.instance, true /* writable */)?.into(),
         encryptedStorageImage: storage,
         payload,
-        debugLevel: debug_level,
-        protectedVm: protected,
-        memoryMib: mem.unwrap_or(0) as i32, // 0 means use the VM default
-        cpuTopology: cpu_topology,
-        taskProfiles: task_profiles,
-        gdbPort: gdb.map(u16::from).unwrap_or(0) as i32, // 0 means no gdb
+        debugLevel: config.debug.debug,
+        protectedVm: config.common.protected,
+        memoryMib: config.common.mem.unwrap_or(0) as i32, // 0 means use the VM default
+        cpuTopology: config.common.cpu_topology,
+        customConfig: Some(custom_config),
     });
-    run(service, &config, &payload_config_str, console_path, log_path)
+    run(
+        service.as_ref(),
+        &vm_config,
+        &payload_config_str,
+        config.debug.console.as_ref().map(|p| p.as_ref()),
+        config.debug.console_in.as_ref().map(|p| p.as_ref()),
+        config.debug.log.as_ref().map(|p| p.as_ref()),
+    )
 }
 
 fn find_empty_payload_apk_path() -> Result<PathBuf, Error> {
@@ -174,90 +195,54 @@
 }
 
 /// Run a VM with Microdroid
-#[allow(clippy::too_many_arguments)]
-pub fn command_run_microdroid(
-    name: Option<String>,
-    service: &dyn IVirtualizationService,
-    work_dir: Option<PathBuf>,
-    storage: Option<&Path>,
-    storage_size: Option<u64>,
-    console_path: Option<&Path>,
-    log_path: Option<&Path>,
-    debug_level: DebugLevel,
-    protected: bool,
-    mem: Option<u32>,
-    cpu_topology: CpuTopology,
-    task_profiles: Vec<String>,
-    gdb: Option<NonZeroU16>,
-) -> Result<(), Error> {
+pub fn command_run_microdroid(config: RunMicrodroidConfig) -> Result<(), Error> {
     let apk = find_empty_payload_apk_path()?;
     println!("found path {}", apk.display());
 
-    let work_dir = work_dir.unwrap_or(create_work_dir()?);
+    let work_dir = config.work_dir.unwrap_or(create_work_dir()?);
     let idsig = work_dir.join("apk.idsig");
     println!("apk.idsig path: {}", idsig.display());
     let instance_img = work_dir.join("instance.img");
     println!("instance.img path: {}", instance_img.display());
 
-    let payload_binary_name = "MicrodroidEmptyPayloadJniLib.so";
-    let extra_sig = [];
-    command_run_app(
-        name,
-        service,
-        &apk,
-        &idsig,
-        &instance_img,
-        storage,
-        storage_size,
-        /* config_path= */ None,
-        Some(payload_binary_name.to_owned()),
-        console_path,
-        log_path,
-        debug_level,
-        protected,
-        mem,
-        cpu_topology,
-        task_profiles,
-        &extra_sig,
-        gdb,
-    )
+    let app_config = RunAppConfig {
+        common: config.common,
+        debug: config.debug,
+        microdroid: config.microdroid,
+        apk,
+        idsig,
+        instance: instance_img,
+        payload_binary_name: Some("MicrodroidEmptyPayloadJniLib.so".to_owned()),
+        ..Default::default()
+    };
+    command_run_app(app_config)
 }
 
 /// Run a VM from the given configuration file.
-#[allow(clippy::too_many_arguments)]
-pub fn command_run(
-    name: Option<String>,
-    service: &dyn IVirtualizationService,
-    config_path: &Path,
-    console_path: Option<&Path>,
-    log_path: Option<&Path>,
-    mem: Option<u32>,
-    cpu_topology: CpuTopology,
-    task_profiles: Vec<String>,
-    gdb: Option<NonZeroU16>,
-) -> Result<(), Error> {
-    let config_file = File::open(config_path).context("Failed to open config file")?;
-    let mut config =
+pub fn command_run(config: RunCustomVmConfig) -> Result<(), Error> {
+    let config_file = File::open(&config.config).context("Failed to open config file")?;
+    let mut vm_config =
         VmConfig::load(&config_file).context("Failed to parse config file")?.to_parcelable()?;
-    if let Some(mem) = mem {
-        config.memoryMib = mem as i32;
+    if let Some(mem) = config.common.mem {
+        vm_config.memoryMib = mem as i32;
     }
-    if let Some(name) = name {
-        config.name = name;
+    if let Some(name) = config.common.name {
+        vm_config.name = name;
     } else {
-        config.name = String::from("VmRun");
+        vm_config.name = String::from("VmRun");
     }
-    if let Some(gdb) = gdb {
-        config.gdbPort = gdb.get() as i32;
+    if let Some(gdb) = config.debug.gdb {
+        vm_config.gdbPort = gdb.get() as i32;
     }
-    config.cpuTopology = cpu_topology;
-    config.taskProfiles = task_profiles;
+    vm_config.cpuTopology = config.common.cpu_topology;
+    vm_config.taskProfiles = config.common.task_profiles;
     run(
-        service,
-        &VirtualMachineConfig::RawConfig(config),
-        &format!("{:?}", config_path),
-        console_path,
-        log_path,
+        get_service()?.as_ref(),
+        &VirtualMachineConfig::RawConfig(vm_config),
+        &format!("{:?}", &config.config),
+        config.debug.console.as_ref().map(|p| p.as_ref()),
+        config.debug.console_in.as_ref().map(|p| p.as_ref()),
+        config.debug.log.as_ref().map(|p| p.as_ref()),
     )
 }
 
@@ -277,33 +262,45 @@
     service: &dyn IVirtualizationService,
     config: &VirtualMachineConfig,
     payload_config: &str,
-    console_path: Option<&Path>,
+    console_out_path: Option<&Path>,
+    console_in_path: Option<&Path>,
     log_path: Option<&Path>,
 ) -> Result<(), Error> {
-    let console = if let Some(console_path) = console_path {
-        Some(
-            File::create(console_path)
-                .with_context(|| format!("Failed to open console file {:?}", console_path))?,
-        )
+    let console_out = if let Some(console_out_path) = console_out_path {
+        Some(File::create(console_out_path).with_context(|| {
+            format!("Failed to open console output file {:?}", console_out_path)
+        })?)
     } else {
-        Some(duplicate_stdout()?)
+        Some(duplicate_fd(io::stdout())?)
     };
+    let console_in =
+        if let Some(console_in_path) = console_in_path {
+            Some(File::open(console_in_path).with_context(|| {
+                format!("Failed to open console input file {:?}", console_in_path)
+            })?)
+        } else {
+            Some(duplicate_fd(io::stdin())?)
+        };
     let log = if let Some(log_path) = log_path {
         Some(
             File::create(log_path)
                 .with_context(|| format!("Failed to open log file {:?}", log_path))?,
         )
     } else {
-        Some(duplicate_stdout()?)
+        Some(duplicate_fd(io::stdout())?)
     };
-
     let callback = Box::new(Callback {});
-    let vm = VmInstance::create(service, config, console, log, Some(callback))
+    let vm = VmInstance::create(service, config, console_out, console_in, log, Some(callback))
         .context("Failed to create VM")?;
     vm.start().context("Failed to start VM")?;
 
+    let debug_level = match config {
+        VirtualMachineConfig::AppConfig(config) => config.debugLevel,
+        _ => DebugLevel::NONE,
+    };
     println!(
-        "Created VM from {} with CID {}, state is {}.",
+        "Created {} from {} with CID {}, state is {}.",
+        if debug_level == DebugLevel::FULL { "debuggable VM" } else { "VM" },
         payload_config,
         vm.cid(),
         state_to_str(vm.state()?)
@@ -316,11 +313,11 @@
     Ok(())
 }
 
-fn parse_extra_apk_list(apk: &Path, config_path: &str) -> Result<Vec<String>, Error> {
+fn parse_extra_apk_list(apk: &Path, config_path: &str) -> Result<Vec<PathBuf>, Error> {
     let mut archive = ZipArchive::new(File::open(apk)?)?;
     let config_file = archive.by_name(config_path)?;
     let config: VmPayloadConfig = serde_json::from_reader(config_file)?;
-    Ok(config.extra_apks.into_iter().map(|x| x.path).collect())
+    Ok(config.extra_apks.into_iter().map(|x| x.path.into()).collect())
 }
 
 struct Callback {}
@@ -343,17 +340,17 @@
     }
 }
 
-/// Safely duplicate the standard output file descriptor.
-fn duplicate_stdout() -> io::Result<File> {
-    let stdout_fd = io::stdout().as_raw_fd();
-    // Safe because this just duplicates a file descriptor which we know to be valid, and we check
-    // for an error.
-    let dup_fd = unsafe { libc::dup(stdout_fd) };
+/// Safely duplicate the file descriptor.
+fn duplicate_fd<T: AsRawFd>(file: T) -> io::Result<File> {
+    let fd = file.as_raw_fd();
+    // SAFETY: This just duplicates a file descriptor which we know to be valid, and we check for an
+    // an error.
+    let dup_fd = unsafe { libc::dup(fd) };
     if dup_fd < 0 {
         Err(io::Error::last_os_error())
     } else {
-        // Safe because we have just duplicated the file descriptor so we own it, and `from_raw_fd`
-        // takes ownership of it.
+        // SAFETY: We have just duplicated the file descriptor so we own it, and `from_raw_fd` takes
+        // ownership of it.
         Ok(unsafe { File::from_raw_fd(dup_fd) })
     }
 }
diff --git a/vm_payload/Android.bp b/vm_payload/Android.bp
index 7862702..286612c 100644
--- a/vm_payload/Android.bp
+++ b/vm_payload/Android.bp
@@ -6,12 +6,11 @@
 rust_ffi_static {
     name: "libvm_payload_impl",
     crate_name: "vm_payload",
+    defaults: ["avf_build_flags_rust"],
     visibility: ["//visibility:private"],
-    srcs: ["src/*.rs"],
+    srcs: ["src/lib.rs"],
     include_dirs: ["include"],
     prefer_rlib: true,
-    // Require unsafe blocks for inside unsafe functions.
-    flags: ["-Dunsafe_op_in_unsafe_fn"],
     rustlibs: [
         "android.system.virtualization.payload-rust",
         "libandroid_logger",
@@ -20,14 +19,24 @@
         "liblazy_static",
         "liblibc",
         "liblog_rust",
+        "libopenssl",
         "librpcbinder_rs",
+        "libvm_payload_status_bindgen",
         "libvsock",
     ],
-    // The sanitize section below fixes the fuzzer build in b/256166339.
-    // TODO(b/250854486): Remove the sanitize section once the bug is fixed.
-    sanitize: {
-        address: false,
-    },
+}
+
+rust_bindgen {
+    name: "libvm_payload_status_bindgen",
+    wrapper_src: "include/vm_payload.h",
+    crate_name: "vm_payload_status_bindgen",
+    defaults: ["avf_build_flags_rust"],
+    source_stem: "bindings",
+    bindgen_flags: [
+        "--default-enum-style rust",
+        "--allowlist-type=attestation_status_t",
+    ],
+    visibility: [":__subpackages__"],
 }
 
 // Rust wrappers round the C API for Rust clients.
@@ -36,9 +45,16 @@
     name: "libvm_payload_bindgen",
     wrapper_src: "include-restricted/vm_payload_restricted.h",
     crate_name: "vm_payload_bindgen",
+    defaults: ["avf_build_flags_rust"],
     source_stem: "bindings",
     apex_available: ["com.android.compos"],
-    visibility: ["//packages/modules/Virtualization/compos"],
+    bindgen_flags: [
+        "--default-enum-style rust",
+    ],
+    visibility: [
+        "//packages/modules/Virtualization/compos",
+        "//packages/modules/Virtualization/service_vm/test_apk",
+    ],
     shared_libs: [
         "libvm_payload#current",
     ],
@@ -51,6 +67,7 @@
         "libbinder_ndk",
         "libbinder_rpc_unstable",
         "liblog",
+        "libcrypto",
     ],
     whole_static_libs: ["libvm_payload_impl"],
     export_static_lib_headers: ["libvm_payload_impl"],
diff --git a/vm_payload/README.md b/vm_payload/README.md
index d5f5331..ec4dc59 100644
--- a/vm_payload/README.md
+++ b/vm_payload/README.md
@@ -8,8 +8,8 @@
 Note that only native code is supported in Microdroid, so no Java APIs are
 available in the VM, and only 64 bit code is supported.
 
-To create a VM and run the payload from Android, see
-[android.system.virtualmachine.VirtualMachineManager](https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/master/javalib/src/android/system/virtualmachine/VirtualMachineManager.java).
+To create a VM and run the payload from Android see the [AVF Java
+APIs](../javalib/README.md).
 
 ## Entry point
 
diff --git a/vm_payload/include-restricted/vm_payload_restricted.h b/vm_payload/include-restricted/vm_payload_restricted.h
index 7f17cde..15c37ed 100644
--- a/vm_payload/include-restricted/vm_payload_restricted.h
+++ b/vm_payload/include-restricted/vm_payload_restricted.h
@@ -22,6 +22,10 @@
 
 #include "vm_payload.h"
 
+#if !defined(__INTRODUCED_IN)
+#define __INTRODUCED_IN(__api_level) /* nothing */
+#endif
+
 // The functions declared here are restricted to VMs created with a config file;
 // they will fail if called in other VMs. The ability to create such VMs
 // requires the android.permission.USE_CUSTOM_VIRTUAL_MACHINE permission, and is
diff --git a/vm_payload/include/vm_payload.h b/vm_payload/include/vm_payload.h
index 5cc2d1e..3483e1d 100644
--- a/vm_payload/include/vm_payload.h
+++ b/vm_payload/include/vm_payload.h
@@ -19,7 +19,6 @@
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
-#include <stdnoreturn.h>
 #include <sys/cdefs.h>
 
 #include "vm_main.h"
@@ -30,6 +29,30 @@
 typedef struct AIBinder AIBinder;
 
 /**
+ * Introduced in API 35.
+ * Remote attestation result if the attestation succeeds.
+ */
+struct AVmAttestationResult;
+
+/**
+ * Introduced in API 35.
+ * Remote attestation status types returned from remote attestation functions.
+ */
+typedef enum attestation_status_t : int32_t {
+    /** The remote attestation completes successfully. */
+    ATTESTATION_OK = 0,
+
+    /** The challenge size is not between 0 and 64. */
+    ATTESTATION_ERROR_INVALID_CHALLENGE = -10001,
+
+    /** Failed to attest the VM. Please retry at a later time. */
+    ATTESTATION_ERROR_ATTESTATION_FAILED = -10002,
+
+    /** Remote attestation is not supported in the current environment. */
+    ATTESTATION_ERROR_UNSUPPORTED = -10003,
+} attestation_status_t;
+
+/**
  * Notifies the host that the payload is ready.
  *
  * If the host app has set a `VirtualMachineCallback` for the VM, its
@@ -57,9 +80,9 @@
  * callback will be called at most once.
  * \param param parameter to be passed to the `on_ready` callback.
  */
-noreturn void AVmPayload_runVsockRpcServer(AIBinder* _Nonnull service, uint32_t port,
-                                           void (*_Nullable on_ready)(void* _Nullable param),
-                                           void* _Nullable param);
+__attribute__((noreturn)) void AVmPayload_runVsockRpcServer(
+        AIBinder* _Nonnull service, uint32_t port,
+        void (*_Nullable on_ready)(void* _Nullable param), void* _Nullable param);
 
 /**
  * Returns all or part of a 32-byte secret that is bound to this unique VM
@@ -105,11 +128,136 @@
  * behalf of the VM by the host app. All data is encrypted using a key known
  * only to the VM, so the host cannot decrypt it, but may delete it.
  *
- * \return the path to the APK contents, or NULL if no encrypted storage was
- * requested in the VM configuration. If non-null the returned string should not
- * be deleted or freed by the application and remains valid for the lifetime of
- * the VM.
+ * \return the path to the encrypted storage directory, or NULL if no encrypted
+ * storage was requested in the VM configuration. If non-null the returned
+ * string should not be deleted or freed by the application and remains valid
+ * for the lifetime of the VM.
  */
 const char* _Nullable AVmPayload_getEncryptedStoragePath(void);
 
+/**
+ * Requests the remote attestation of the client VM.
+ *
+ * The challenge will be included in the certificate chain in the attestation result,
+ * serving as proof of the freshness of the result.
+ *
+ * \param challenge A pointer to the challenge buffer.
+ * \param challenge_size size of the challenge. The maximum supported challenge size is
+ *          64 bytes. The status ATTESTATION_ERROR_INVALID_CHALLENGE will be returned if
+ *          an invalid challenge is passed.
+ * \param result The remote attestation result will be filled here if the attestation
+ *               succeeds. The result remains valid until it is freed with
+ *              `AVmPayload_freeAttestationResult`.
+ *
+ * \return ATTESTATION_OK upon successful attestation.
+ */
+attestation_status_t AVmPayload_requestAttestation(
+        const void* _Nonnull challenge, size_t challenge_size,
+        struct AVmAttestationResult* _Nullable* _Nonnull result) __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Converts the return value from `AVmPayload_requestAttestation` to a text string
+ * representing the status code.
+ *
+ * \return a constant string value representing the status code. The string should not
+ * be deleted or freed by the application and remains valid for the lifetime of the VM.
+ */
+const char* _Nonnull AVmAttestationResult_resultToString(attestation_status_t status)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Frees all the data owned by the provided attestation result, including the result itself.
+ *
+ * Callers should ensure to invoke this API only once on a valid attestation result
+ * returned by `AVmPayload_requestAttestation` to avoid undefined behavior.
+ *
+ * \param result A pointer to the attestation result.
+ */
+void AVmAttestationResult_free(struct AVmAttestationResult* _Nullable result)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Reads the DER-encoded ECPrivateKey structure specified in [RFC 5915 s3] for the
+ * EC P-256 private key from the provided attestation result.
+ *
+ * \param result A pointer to the attestation result filled in
+ *              `AVmPayload_requestAttestation` when the attestation succeeds.
+ * \param data A pointer to the memory where the private key will be written
+ * (can be null if size is 0).
+ * \param size The maximum number of bytes that can be written to the data buffer.
+ * If `size` is smaller than the total size of the private key, the key data will be
+ * truncated to this `size`.
+ *
+ * \return The total size of the private key.
+ *
+ * [RFC 5915 s3]: https://datatracker.ietf.org/doc/html/rfc5915#section-3
+ */
+size_t AVmAttestationResult_getPrivateKey(const struct AVmAttestationResult* _Nonnull result,
+                                          void* _Nullable data, size_t size)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Signs the given message using ECDSA P-256, the message is first hashed with SHA-256 and
+ * then it is signed with the attested EC P-256 private key in the attestation result.
+ *
+ * \param result A pointer to the attestation result filled in
+ *              `AVmPayload_requestAttestation` when the attestation succeeds.
+ * \param message A pointer to the message buffer.
+ * \param message_size size of the message.
+ * \param data A pointer to the memory where the signature will be written
+ * (can be null if size is 0). The signature is a DER-encoded ECDSASignature structure
+ * detailed in the [RFC 6979].
+ * \param size The maximum number of bytes that can be written to the data buffer.
+ * If `size` is smaller than the total size of the signature, the signature will be
+ * truncated to this `size`.
+ *
+ * \return The total size of the signature.
+ *
+ * [RFC 6979]: https://datatracker.ietf.org/doc/html/rfc6979
+ */
+size_t AVmAttestationResult_sign(const struct AVmAttestationResult* _Nonnull result,
+                                 const void* _Nonnull message, size_t message_size,
+                                 void* _Nullable data, size_t size)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Gets the number of certificates in the certificate chain.
+ *
+ * The certificate chain consists of a sequence of DER-encoded X.509 certificates that form
+ * the attestation key's certificate chain. It starts with a leaf certificate covering the attested
+ * public key and ends with a root certificate.
+ *
+ * \param result A pointer to the attestation result obtained from `AVmPayload_requestAttestation`
+ *               when the attestation succeeds.
+ *
+ * \return The number of certificates in the certificate chain.
+ */
+size_t AVmAttestationResult_getCertificateCount(const struct AVmAttestationResult* _Nonnull result)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
+/**
+ * Retrieves the certificate at the given `index` from the certificate chain in the provided
+ * attestation result.
+ *
+ * The certificate chain consists of a sequence of DER-encoded X.509 certificates that form
+ * the attestation key's certificate chain. It starts with a leaf certificate covering the attested
+ * public key and ends with a root certificate.
+ *
+ * \param result A pointer to the attestation result obtained from `AVmPayload_requestAttestation`
+ *               when the attestation succeeds.
+ * \param index Index of the certificate to retrieve. The `index` must be within the range of
+ *              [0, number of certificates). The number of certificates can be obtained with
+ *              `AVmAttestationResult_getCertificateCount`.
+ * \param data A pointer to the memory where the certificate will be written
+ *             (can be null if size is 0).
+ * \param size The maximum number of bytes that can be written to the data buffer. If `size`
+ *             is smaller than the total size of the certificate, the certificate will be
+ *             truncated to this `size`.
+ *
+ * \return The total size of the certificate at the given `index`.
+ */
+size_t AVmAttestationResult_getCertificateAt(const struct AVmAttestationResult* _Nonnull result,
+                                             size_t index, void* _Nullable data, size_t size)
+        __INTRODUCED_IN(__ANDROID_API_V__);
+
 __END_DECLS
diff --git a/vm_payload/libvm_payload.map.txt b/vm_payload/libvm_payload.map.txt
index a2402d1..975a5a3 100644
--- a/vm_payload/libvm_payload.map.txt
+++ b/vm_payload/libvm_payload.map.txt
@@ -1,12 +1,19 @@
 LIBVM_PAYLOAD {
   global:
-    AVmPayload_notifyPayloadReady;       # systemapi
-    AVmPayload_runVsockRpcServer;        # systemapi
-    AVmPayload_getVmInstanceSecret;      # systemapi
-    AVmPayload_getDiceAttestationChain;  # systemapi
-    AVmPayload_getDiceAttestationCdi;    # systemapi
-    AVmPayload_getApkContentsPath;       # systemapi
-    AVmPayload_getEncryptedStoragePath;  # systemapi
+    AVmPayload_notifyPayloadReady;       # systemapi introduced=UpsideDownCake
+    AVmPayload_runVsockRpcServer;        # systemapi introduced=UpsideDownCake
+    AVmPayload_getVmInstanceSecret;      # systemapi introduced=UpsideDownCake
+    AVmPayload_getDiceAttestationChain;  # systemapi introduced=UpsideDownCake
+    AVmPayload_getDiceAttestationCdi;    # systemapi introduced=UpsideDownCake
+    AVmPayload_getApkContentsPath;       # systemapi introduced=UpsideDownCake
+    AVmPayload_getEncryptedStoragePath;  # systemapi introduced=UpsideDownCake
+    AVmPayload_requestAttestation;       # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_getPrivateKey;  # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_sign;           # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_free;           # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_resultToString; # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_getCertificateCount; # systemapi introduced=VanillaIceCream
+    AVmAttestationResult_getCertificateAt; # systemapi introduced=VanillaIceCream
   local:
     *;
 };
diff --git a/vm_payload/src/api.rs b/vm_payload/src/api.rs
deleted file mode 100644
index 87e29a6..0000000
--- a/vm_payload/src/api.rs
+++ /dev/null
@@ -1,270 +0,0 @@
-// Copyright 2022, The Android Open Source Project
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-//! This module handles the interaction with virtual machine payload service.
-
-use android_system_virtualization_payload::aidl::android::system::virtualization::payload::IVmPayloadService::{
-    ENCRYPTEDSTORE_MOUNTPOINT, IVmPayloadService, VM_PAYLOAD_SERVICE_SOCKET_NAME, VM_APK_CONTENTS_PATH};
-use anyhow::{ensure, bail, Context, Result};
-use binder::{Strong, unstable_api::{AIBinder, new_spibinder}};
-use lazy_static::lazy_static;
-use log::{error, info, Level};
-use rpcbinder::{RpcSession, RpcServer};
-use std::convert::Infallible;
-use std::ffi::CString;
-use std::fmt::Debug;
-use std::os::raw::{c_char, c_void};
-use std::path::Path;
-use std::ptr;
-use std::sync::{Mutex, atomic::{AtomicBool, Ordering}};
-
-lazy_static! {
-    static ref VM_APK_CONTENTS_PATH_C: CString =
-        CString::new(VM_APK_CONTENTS_PATH).expect("CString::new failed");
-    static ref PAYLOAD_CONNECTION: Mutex<Option<Strong<dyn IVmPayloadService>>> = Mutex::default();
-    static ref VM_ENCRYPTED_STORAGE_PATH_C: CString =
-        CString::new(ENCRYPTEDSTORE_MOUNTPOINT).expect("CString::new failed");
-}
-
-static ALREADY_NOTIFIED: AtomicBool = AtomicBool::new(false);
-
-/// Return a connection to the payload service in Microdroid Manager. Uses the existing connection
-/// if there is one, otherwise attempts to create a new one.
-fn get_vm_payload_service() -> Result<Strong<dyn IVmPayloadService>> {
-    let mut connection = PAYLOAD_CONNECTION.lock().unwrap();
-    if let Some(strong) = &*connection {
-        Ok(strong.clone())
-    } else {
-        let new_connection: Strong<dyn IVmPayloadService> = RpcSession::new()
-            .setup_unix_domain_client(VM_PAYLOAD_SERVICE_SOCKET_NAME)
-            .context(format!("Failed to connect to service: {}", VM_PAYLOAD_SERVICE_SOCKET_NAME))?;
-        *connection = Some(new_connection.clone());
-        Ok(new_connection)
-    }
-}
-
-/// Make sure our logging goes to logcat. It is harmless to call this more than once.
-fn initialize_logging() {
-    android_logger::init_once(
-        android_logger::Config::default().with_tag("vm_payload").with_min_level(Level::Info),
-    );
-}
-
-/// In many cases clients can't do anything useful if API calls fail, and the failure
-/// generally indicates that the VM is exiting or otherwise doomed. So rather than
-/// returning a non-actionable error indication we just log the problem and abort
-/// the process.
-fn unwrap_or_abort<T, E: Debug>(result: Result<T, E>) -> T {
-    result.unwrap_or_else(|e| {
-        let msg = format!("{:?}", e);
-        error!("{msg}");
-        panic!("{msg}")
-    })
-}
-
-/// Notifies the host that the payload is ready.
-/// Panics on failure.
-#[no_mangle]
-pub extern "C" fn AVmPayload_notifyPayloadReady() {
-    initialize_logging();
-
-    if !ALREADY_NOTIFIED.swap(true, Ordering::Relaxed) {
-        unwrap_or_abort(try_notify_payload_ready());
-
-        info!("Notified host payload ready successfully");
-    }
-}
-
-/// Notifies the host that the payload is ready.
-/// Returns a `Result` containing error information if failed.
-fn try_notify_payload_ready() -> Result<()> {
-    get_vm_payload_service()?.notifyPayloadReady().context("Cannot notify payload ready")
-}
-
-/// Runs a binder RPC server, serving the supplied binder service implementation on the given vsock
-/// port.
-///
-/// If and when the server is ready for connections (it is listening on the port), `on_ready` is
-/// called to allow appropriate action to be taken - e.g. to notify clients that they may now
-/// attempt to connect.
-///
-/// The current thread joins the binder thread pool to handle incoming messages.
-/// This function never returns.
-///
-/// Panics on error (including unexpected server exit).
-///
-/// # Safety
-///
-/// If present, the `on_ready` callback must be a valid function pointer, which will be called at
-/// most once, while this function is executing, with the `param` parameter.
-#[no_mangle]
-pub unsafe extern "C" fn AVmPayload_runVsockRpcServer(
-    service: *mut AIBinder,
-    port: u32,
-    on_ready: Option<unsafe extern "C" fn(param: *mut c_void)>,
-    param: *mut c_void,
-) -> Infallible {
-    initialize_logging();
-
-    // SAFETY: try_run_vsock_server has the same requirements as this function
-    unwrap_or_abort(unsafe { try_run_vsock_server(service, port, on_ready, param) })
-}
-
-/// # Safety: Same as `AVmPayload_runVsockRpcServer`.
-unsafe fn try_run_vsock_server(
-    service: *mut AIBinder,
-    port: u32,
-    on_ready: Option<unsafe extern "C" fn(param: *mut c_void)>,
-    param: *mut c_void,
-) -> Result<Infallible> {
-    // SAFETY: AIBinder returned has correct reference count, and the ownership can
-    // safely be taken by new_spibinder.
-    let service = unsafe { new_spibinder(service) };
-    if let Some(service) = service {
-        match RpcServer::new_vsock(service, libc::VMADDR_CID_HOST, port) {
-            Ok(server) => {
-                if let Some(on_ready) = on_ready {
-                    // SAFETY: We're calling the callback with the parameter specified within the
-                    // allowed lifetime.
-                    unsafe { on_ready(param) };
-                }
-                server.join();
-                bail!("RpcServer unexpectedly terminated");
-            }
-            Err(err) => {
-                bail!("Failed to start RpcServer: {:?}", err);
-            }
-        }
-    } else {
-        bail!("Failed to convert the given service from AIBinder to SpIBinder.");
-    }
-}
-
-/// Get a secret that is uniquely bound to this VM instance.
-/// Panics on failure.
-///
-/// # Safety
-///
-/// Behavior is undefined if any of the following conditions are violated:
-///
-/// * `identifier` must be [valid] for reads of `identifier_size` bytes.
-/// * `secret` must be [valid] for writes of `size` bytes.
-///
-/// [valid]: ptr#safety
-#[no_mangle]
-pub unsafe extern "C" fn AVmPayload_getVmInstanceSecret(
-    identifier: *const u8,
-    identifier_size: usize,
-    secret: *mut u8,
-    size: usize,
-) {
-    initialize_logging();
-
-    // SAFETY: See the requirements on `identifier` above.
-    let identifier = unsafe { std::slice::from_raw_parts(identifier, identifier_size) };
-    let vm_secret = unwrap_or_abort(try_get_vm_instance_secret(identifier, size));
-
-    // SAFETY: See the requirements on `secret` above; `vm_secret` is known to have length `size`,
-    // and cannot overlap `secret` because we just allocated it.
-    unsafe {
-        ptr::copy_nonoverlapping(vm_secret.as_ptr(), secret, size);
-    }
-}
-
-fn try_get_vm_instance_secret(identifier: &[u8], size: usize) -> Result<Vec<u8>> {
-    let vm_secret = get_vm_payload_service()?
-        .getVmInstanceSecret(identifier, i32::try_from(size)?)
-        .context("Cannot get VM instance secret")?;
-    ensure!(
-        vm_secret.len() == size,
-        "Returned secret has {} bytes, expected {}",
-        vm_secret.len(),
-        size
-    );
-    Ok(vm_secret)
-}
-
-/// Get the VM's attestation chain.
-/// Panics on failure.
-///
-/// # Safety
-///
-/// Behavior is undefined if any of the following conditions are violated:
-///
-/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
-///
-/// [valid]: ptr#safety
-#[no_mangle]
-pub unsafe extern "C" fn AVmPayload_getDiceAttestationChain(data: *mut u8, size: usize) -> usize {
-    initialize_logging();
-
-    let chain = unwrap_or_abort(try_get_dice_attestation_chain());
-    if size != 0 {
-        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
-        // the length of either buffer, and `chain` cannot overlap `data` because we just allocated
-        // it. We allow data to be null, which is never valid, but only if size == 0 which is
-        // checked above.
-        unsafe { ptr::copy_nonoverlapping(chain.as_ptr(), data, std::cmp::min(chain.len(), size)) };
-    }
-    chain.len()
-}
-
-fn try_get_dice_attestation_chain() -> Result<Vec<u8>> {
-    get_vm_payload_service()?.getDiceAttestationChain().context("Cannot get attestation chain")
-}
-
-/// Get the VM's attestation CDI.
-/// Panics on failure.
-///
-/// # Safety
-///
-/// Behavior is undefined if any of the following conditions are violated:
-///
-/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
-///
-/// [valid]: ptr#safety
-#[no_mangle]
-pub unsafe extern "C" fn AVmPayload_getDiceAttestationCdi(data: *mut u8, size: usize) -> usize {
-    initialize_logging();
-
-    let cdi = unwrap_or_abort(try_get_dice_attestation_cdi());
-    if size != 0 {
-        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
-        // the length of either buffer, and `cdi` cannot overlap `data` because we just allocated
-        // it. We allow data to be null, which is never valid, but only if size == 0 which is
-        // checked above.
-        unsafe { ptr::copy_nonoverlapping(cdi.as_ptr(), data, std::cmp::min(cdi.len(), size)) };
-    }
-    cdi.len()
-}
-
-fn try_get_dice_attestation_cdi() -> Result<Vec<u8>> {
-    get_vm_payload_service()?.getDiceAttestationCdi().context("Cannot get attestation CDI")
-}
-
-/// Gets the path to the APK contents.
-#[no_mangle]
-pub extern "C" fn AVmPayload_getApkContentsPath() -> *const c_char {
-    VM_APK_CONTENTS_PATH_C.as_ptr()
-}
-
-/// Gets the path to the VM's encrypted storage.
-#[no_mangle]
-pub extern "C" fn AVmPayload_getEncryptedStoragePath() -> *const c_char {
-    if Path::new(ENCRYPTEDSTORE_MOUNTPOINT).exists() {
-        VM_ENCRYPTED_STORAGE_PATH_C.as_ptr()
-    } else {
-        ptr::null()
-    }
-}
diff --git a/vm_payload/src/lib.rs b/vm_payload/src/lib.rs
index 5c3ee31..7978059 100644
--- a/vm_payload/src/lib.rs
+++ b/vm_payload/src/lib.rs
@@ -12,11 +12,498 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-//! Library for payload to communicate with the Microdroid Manager.
+//! This module handles the interaction with virtual machine payload service.
 
-mod api;
-
-pub use api::{
-    AVmPayload_getDiceAttestationCdi, AVmPayload_getDiceAttestationChain,
-    AVmPayload_getVmInstanceSecret, AVmPayload_notifyPayloadReady,
+use android_system_virtualization_payload::aidl::android::system::virtualization::payload:: IVmPayloadService::{
+    IVmPayloadService, ENCRYPTEDSTORE_MOUNTPOINT, VM_APK_CONTENTS_PATH,
+    VM_PAYLOAD_SERVICE_SOCKET_NAME, AttestationResult::AttestationResult,
 };
+use anyhow::{bail, ensure, Context, Result};
+use binder::{
+    unstable_api::{new_spibinder, AIBinder},
+    Strong, ExceptionCode,
+};
+use lazy_static::lazy_static;
+use log::{error, info, LevelFilter};
+use rpcbinder::{RpcServer, RpcSession};
+use openssl::{ec::EcKey, sha::sha256, ecdsa::EcdsaSig};
+use std::convert::Infallible;
+use std::ffi::{CString, CStr};
+use std::fmt::Debug;
+use std::os::raw::{c_char, c_void};
+use std::path::Path;
+use std::ptr::{self, NonNull};
+use std::sync::{
+    atomic::{AtomicBool, Ordering},
+    Mutex,
+};
+use vm_payload_status_bindgen::attestation_status_t;
+
+lazy_static! {
+    static ref VM_APK_CONTENTS_PATH_C: CString =
+        CString::new(VM_APK_CONTENTS_PATH).expect("CString::new failed");
+    static ref PAYLOAD_CONNECTION: Mutex<Option<Strong<dyn IVmPayloadService>>> = Mutex::default();
+    static ref VM_ENCRYPTED_STORAGE_PATH_C: CString =
+        CString::new(ENCRYPTEDSTORE_MOUNTPOINT).expect("CString::new failed");
+}
+
+static ALREADY_NOTIFIED: AtomicBool = AtomicBool::new(false);
+
+/// Return a connection to the payload service in Microdroid Manager. Uses the existing connection
+/// if there is one, otherwise attempts to create a new one.
+fn get_vm_payload_service() -> Result<Strong<dyn IVmPayloadService>> {
+    let mut connection = PAYLOAD_CONNECTION.lock().unwrap();
+    if let Some(strong) = &*connection {
+        Ok(strong.clone())
+    } else {
+        let new_connection: Strong<dyn IVmPayloadService> = RpcSession::new()
+            .setup_unix_domain_client(VM_PAYLOAD_SERVICE_SOCKET_NAME)
+            .context(format!("Failed to connect to service: {}", VM_PAYLOAD_SERVICE_SOCKET_NAME))?;
+        *connection = Some(new_connection.clone());
+        Ok(new_connection)
+    }
+}
+
+/// Make sure our logging goes to logcat. It is harmless to call this more than once.
+fn initialize_logging() {
+    android_logger::init_once(
+        android_logger::Config::default().with_tag("vm_payload").with_max_level(LevelFilter::Info),
+    );
+}
+
+/// In many cases clients can't do anything useful if API calls fail, and the failure
+/// generally indicates that the VM is exiting or otherwise doomed. So rather than
+/// returning a non-actionable error indication we just log the problem and abort
+/// the process.
+fn unwrap_or_abort<T, E: Debug>(result: Result<T, E>) -> T {
+    result.unwrap_or_else(|e| {
+        let msg = format!("{:?}", e);
+        error!("{msg}");
+        panic!("{msg}")
+    })
+}
+
+/// Notifies the host that the payload is ready.
+/// Panics on failure.
+#[no_mangle]
+pub extern "C" fn AVmPayload_notifyPayloadReady() {
+    initialize_logging();
+
+    if !ALREADY_NOTIFIED.swap(true, Ordering::Relaxed) {
+        unwrap_or_abort(try_notify_payload_ready());
+
+        info!("Notified host payload ready successfully");
+    }
+}
+
+/// Notifies the host that the payload is ready.
+/// Returns a `Result` containing error information if failed.
+fn try_notify_payload_ready() -> Result<()> {
+    get_vm_payload_service()?.notifyPayloadReady().context("Cannot notify payload ready")
+}
+
+/// Runs a binder RPC server, serving the supplied binder service implementation on the given vsock
+/// port.
+///
+/// If and when the server is ready for connections (it is listening on the port), `on_ready` is
+/// called to allow appropriate action to be taken - e.g. to notify clients that they may now
+/// attempt to connect.
+///
+/// The current thread joins the binder thread pool to handle incoming messages.
+/// This function never returns.
+///
+/// Panics on error (including unexpected server exit).
+///
+/// # Safety
+///
+/// If present, the `on_ready` callback must be a valid function pointer, which will be called at
+/// most once, while this function is executing, with the `param` parameter.
+#[no_mangle]
+pub unsafe extern "C" fn AVmPayload_runVsockRpcServer(
+    service: *mut AIBinder,
+    port: u32,
+    on_ready: Option<unsafe extern "C" fn(param: *mut c_void)>,
+    param: *mut c_void,
+) -> Infallible {
+    initialize_logging();
+
+    // SAFETY: try_run_vsock_server has the same requirements as this function
+    unwrap_or_abort(unsafe { try_run_vsock_server(service, port, on_ready, param) })
+}
+
+/// # Safety: Same as `AVmPayload_runVsockRpcServer`.
+unsafe fn try_run_vsock_server(
+    service: *mut AIBinder,
+    port: u32,
+    on_ready: Option<unsafe extern "C" fn(param: *mut c_void)>,
+    param: *mut c_void,
+) -> Result<Infallible> {
+    // SAFETY: AIBinder returned has correct reference count, and the ownership can
+    // safely be taken by new_spibinder.
+    let service = unsafe { new_spibinder(service) };
+    if let Some(service) = service {
+        match RpcServer::new_vsock(service, libc::VMADDR_CID_HOST, port) {
+            Ok(server) => {
+                if let Some(on_ready) = on_ready {
+                    // SAFETY: We're calling the callback with the parameter specified within the
+                    // allowed lifetime.
+                    unsafe { on_ready(param) };
+                }
+                server.join();
+                bail!("RpcServer unexpectedly terminated");
+            }
+            Err(err) => {
+                bail!("Failed to start RpcServer: {:?}", err);
+            }
+        }
+    } else {
+        bail!("Failed to convert the given service from AIBinder to SpIBinder.");
+    }
+}
+
+/// Get a secret that is uniquely bound to this VM instance.
+/// Panics on failure.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `identifier` must be [valid] for reads of `identifier_size` bytes.
+/// * `secret` must be [valid] for writes of `size` bytes.
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmPayload_getVmInstanceSecret(
+    identifier: *const u8,
+    identifier_size: usize,
+    secret: *mut u8,
+    size: usize,
+) {
+    initialize_logging();
+
+    // SAFETY: See the requirements on `identifier` above.
+    let identifier = unsafe { std::slice::from_raw_parts(identifier, identifier_size) };
+    let vm_secret = unwrap_or_abort(try_get_vm_instance_secret(identifier, size));
+
+    // SAFETY: See the requirements on `secret` above; `vm_secret` is known to have length `size`,
+    // and cannot overlap `secret` because we just allocated it.
+    unsafe {
+        ptr::copy_nonoverlapping(vm_secret.as_ptr(), secret, size);
+    }
+}
+
+fn try_get_vm_instance_secret(identifier: &[u8], size: usize) -> Result<Vec<u8>> {
+    let vm_secret = get_vm_payload_service()?
+        .getVmInstanceSecret(identifier, i32::try_from(size)?)
+        .context("Cannot get VM instance secret")?;
+    ensure!(
+        vm_secret.len() == size,
+        "Returned secret has {} bytes, expected {}",
+        vm_secret.len(),
+        size
+    );
+    Ok(vm_secret)
+}
+
+/// Get the VM's attestation chain.
+/// Panics on failure.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmPayload_getDiceAttestationChain(data: *mut u8, size: usize) -> usize {
+    initialize_logging();
+
+    let chain = unwrap_or_abort(try_get_dice_attestation_chain());
+    if size != 0 {
+        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
+        // the length of either buffer, and `chain` cannot overlap `data` because we just allocated
+        // it. We allow data to be null, which is never valid, but only if size == 0 which is
+        // checked above.
+        unsafe { ptr::copy_nonoverlapping(chain.as_ptr(), data, std::cmp::min(chain.len(), size)) };
+    }
+    chain.len()
+}
+
+fn try_get_dice_attestation_chain() -> Result<Vec<u8>> {
+    get_vm_payload_service()?.getDiceAttestationChain().context("Cannot get attestation chain")
+}
+
+/// Get the VM's attestation CDI.
+/// Panics on failure.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmPayload_getDiceAttestationCdi(data: *mut u8, size: usize) -> usize {
+    initialize_logging();
+
+    let cdi = unwrap_or_abort(try_get_dice_attestation_cdi());
+    if size != 0 {
+        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
+        // the length of either buffer, and `cdi` cannot overlap `data` because we just allocated
+        // it. We allow data to be null, which is never valid, but only if size == 0 which is
+        // checked above.
+        unsafe { ptr::copy_nonoverlapping(cdi.as_ptr(), data, std::cmp::min(cdi.len(), size)) };
+    }
+    cdi.len()
+}
+
+fn try_get_dice_attestation_cdi() -> Result<Vec<u8>> {
+    get_vm_payload_service()?.getDiceAttestationCdi().context("Cannot get attestation CDI")
+}
+
+/// Requests the remote attestation of the client VM.
+///
+/// The challenge will be included in the certificate chain in the attestation result,
+/// serving as proof of the freshness of the result.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `challenge` must be [valid] for reads of `challenge_size` bytes.
+/// * `res` must be [valid] to write the attestation result.
+/// * The region of memory beginning at `challenge` with `challenge_size` bytes must not
+///  overlap with the region of memory `res` points to.
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmPayload_requestAttestation(
+    challenge: *const u8,
+    challenge_size: usize,
+    res: &mut *mut AttestationResult,
+) -> attestation_status_t {
+    initialize_logging();
+    const MAX_CHALLENGE_SIZE: usize = 64;
+    if challenge_size > MAX_CHALLENGE_SIZE {
+        return attestation_status_t::ATTESTATION_ERROR_INVALID_CHALLENGE;
+    }
+    let challenge = if challenge_size == 0 {
+        &[]
+    } else {
+        // SAFETY: The caller guarantees that `challenge` is valid for reads of
+        // `challenge_size` bytes and `challenge_size` is not zero.
+        unsafe { std::slice::from_raw_parts(challenge, challenge_size) }
+    };
+    let service = unwrap_or_abort(get_vm_payload_service());
+    match service.requestAttestation(challenge) {
+        Ok(attestation_res) => {
+            *res = Box::into_raw(Box::new(attestation_res));
+            attestation_status_t::ATTESTATION_OK
+        }
+        Err(e) => {
+            error!("Remote attestation failed: {e:?}");
+            binder_status_to_attestation_status(e)
+        }
+    }
+}
+
+fn binder_status_to_attestation_status(status: binder::Status) -> attestation_status_t {
+    match status.exception_code() {
+        ExceptionCode::UNSUPPORTED_OPERATION => attestation_status_t::ATTESTATION_ERROR_UNSUPPORTED,
+        _ => attestation_status_t::ATTESTATION_ERROR_ATTESTATION_FAILED,
+    }
+}
+
+/// Converts the return value from `AVmPayload_requestAttestation` to a text string
+/// representing the error code.
+#[no_mangle]
+pub extern "C" fn AVmAttestationResult_resultToString(
+    status: attestation_status_t,
+) -> *const c_char {
+    let message = match status {
+        attestation_status_t::ATTESTATION_OK => {
+            CStr::from_bytes_with_nul(b"The remote attestation completes successfully.\0").unwrap()
+        }
+        attestation_status_t::ATTESTATION_ERROR_INVALID_CHALLENGE => {
+            CStr::from_bytes_with_nul(b"The challenge size is not between 0 and 64.\0").unwrap()
+        }
+        attestation_status_t::ATTESTATION_ERROR_ATTESTATION_FAILED => {
+            CStr::from_bytes_with_nul(b"Failed to attest the VM. Please retry at a later time.\0")
+                .unwrap()
+        }
+        attestation_status_t::ATTESTATION_ERROR_UNSUPPORTED => CStr::from_bytes_with_nul(
+            b"Remote attestation is not supported in the current environment.\0",
+        )
+        .unwrap(),
+    };
+    message.as_ptr()
+}
+
+/// Reads the DER-encoded ECPrivateKey structure specified in [RFC 5915 s3] for the
+/// EC P-256 private key from the provided attestation result.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
+/// * The region of memory beginning at `data` with `size` bytes must not overlap with the
+///  region of memory `res` points to.
+///
+/// [valid]: ptr#safety
+/// [RFC 5915 s3]: https://datatracker.ietf.org/doc/html/rfc5915#section-3
+#[no_mangle]
+pub unsafe extern "C" fn AVmAttestationResult_getPrivateKey(
+    res: &AttestationResult,
+    data: *mut u8,
+    size: usize,
+) -> usize {
+    let private_key = &res.privateKey;
+    if size != 0 {
+        let data = NonNull::new(data).expect("data must not be null when size > 0");
+        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
+        // the length of either buffer, and the caller ensures that `private_key` cannot overlap
+        // `data`. We allow data to be null, which is never valid, but only if size == 0
+        // which is checked above.
+        unsafe {
+            ptr::copy_nonoverlapping(
+                private_key.as_ptr(),
+                data.as_ptr(),
+                std::cmp::min(private_key.len(), size),
+            )
+        };
+    }
+    private_key.len()
+}
+
+/// Signs the given message using ECDSA P-256, the message is first hashed with SHA-256 and
+/// then it is signed with the attested EC P-256 private key in the attestation result.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `message` must be [valid] for reads of `message_size` bytes.
+/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
+/// * The region of memory beginning at `data` with `size` bytes must not overlap with the
+///  region of memory `res` or `message` point to.
+///
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmAttestationResult_sign(
+    res: &AttestationResult,
+    message: *const u8,
+    message_size: usize,
+    data: *mut u8,
+    size: usize,
+) -> usize {
+    if message_size == 0 {
+        panic!("Message to be signed must not be empty.")
+    }
+    // SAFETY: See the requirements on `message` above.
+    let message = unsafe { std::slice::from_raw_parts(message, message_size) };
+    let signature = unwrap_or_abort(try_ecdsa_sign(message, &res.privateKey));
+    if size != 0 {
+        let data = NonNull::new(data).expect("data must not be null when size > 0");
+        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
+        // the length of either buffer, and the caller ensures that `signature` cannot overlap
+        // `data`. We allow data to be null, which is never valid, but only if size == 0
+        // which is checked above.
+        unsafe {
+            ptr::copy_nonoverlapping(
+                signature.as_ptr(),
+                data.as_ptr(),
+                std::cmp::min(signature.len(), size),
+            )
+        };
+    }
+    signature.len()
+}
+
+fn try_ecdsa_sign(message: &[u8], der_encoded_ec_private_key: &[u8]) -> Result<Vec<u8>> {
+    let private_key = EcKey::private_key_from_der(der_encoded_ec_private_key)?;
+    let digest = sha256(message);
+    let sig = EcdsaSig::sign(&digest, &private_key)?;
+    Ok(sig.to_der()?)
+}
+
+/// Gets the number of certificates in the certificate chain.
+#[no_mangle]
+pub extern "C" fn AVmAttestationResult_getCertificateCount(res: &AttestationResult) -> usize {
+    res.certificateChain.len()
+}
+
+/// Retrieves the certificate at the given `index` from the certificate chain in the provided
+/// attestation result.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `data` must be [valid] for writes of `size` bytes, if size > 0.
+/// * `index` must be within the range of [0, number of certificates). The number of certificates
+///   can be obtained with `AVmAttestationResult_getCertificateCount`.
+/// * The region of memory beginning at `data` with `size` bytes must not overlap with the
+///  region of memory `res` points to.
+///
+/// [valid]: ptr#safety
+#[no_mangle]
+pub unsafe extern "C" fn AVmAttestationResult_getCertificateAt(
+    res: &AttestationResult,
+    index: usize,
+    data: *mut u8,
+    size: usize,
+) -> usize {
+    let certificate =
+        &res.certificateChain.get(index).expect("The index is out of bounds.").encodedCertificate;
+    if size != 0 {
+        let data = NonNull::new(data).expect("data must not be null when size > 0");
+        // SAFETY: See the requirements on `data` above. The number of bytes copied doesn't exceed
+        // the length of either buffer, and the caller ensures that `certificate` cannot overlap
+        // `data`. We allow data to be null, which is never valid, but only if size == 0
+        // which is checked above.
+        unsafe {
+            ptr::copy_nonoverlapping(
+                certificate.as_ptr(),
+                data.as_ptr(),
+                std::cmp::min(certificate.len(), size),
+            )
+        };
+    }
+    certificate.len()
+}
+
+/// Frees all the data owned by given attestation result and result itself.
+///
+/// # Safety
+///
+/// Behavior is undefined if any of the following conditions are violated:
+///
+/// * `res` must point to a valid `AttestationResult` and has not been freed before.
+#[no_mangle]
+pub unsafe extern "C" fn AVmAttestationResult_free(res: *mut AttestationResult) {
+    if !res.is_null() {
+        // SAFETY: The result is only freed once is ensured by the caller.
+        let res = unsafe { Box::from_raw(res) };
+        drop(res)
+    }
+}
+
+/// Gets the path to the APK contents.
+#[no_mangle]
+pub extern "C" fn AVmPayload_getApkContentsPath() -> *const c_char {
+    VM_APK_CONTENTS_PATH_C.as_ptr()
+}
+
+/// Gets the path to the VM's encrypted storage.
+#[no_mangle]
+pub extern "C" fn AVmPayload_getEncryptedStoragePath() -> *const c_char {
+    if Path::new(ENCRYPTEDSTORE_MOUNTPOINT).exists() {
+        VM_ENCRYPTED_STORAGE_PATH_C.as_ptr()
+    } else {
+        ptr::null()
+    }
+}
diff --git a/vmbase/Android.bp b/vmbase/Android.bp
index 5ed436c..e682773 100644
--- a/vmbase/Android.bp
+++ b/vmbase/Android.bp
@@ -2,11 +2,29 @@
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
+// The hierarchy of Soong modules to produce a vmbase-based binary is
+//
+// 0. rlibs may be used to provide high-level code (see "vmbase_rlib_defaults");
+// 1. rust_ffi_static packages low-level Rust code and any rlib into a static
+//    library (see "vmbase_ffi_defaults") that cc_binary supports;
+// 2. cc_library_static may be used for extra C code (see "vmbase_cc_defaults");
+// 3. cc_binary produces an ELF from the (single) Rust-wrapping static library,
+//    optional extra C libraries, and linker script (see "vmbase_elf_defaults");
+// 4. raw_binary strips the ELF into an image that can be loaded to memory;
+
+// Used by intermediate rust_library_rlib for vmbase-based binaries.
 rust_defaults {
-    name: "vmbase_rust_defaults",
+    name: "vmbase_rlib_defaults",
+    defaults: ["avf_build_flags_rust"],
     edition: "2021",
+    prefer_rlib: true,
     host_supported: false,
     enabled: false,
+    no_stdlibs: true,
+    stdlibs: [
+        "libcompiler_builtins.rust_sysroot",
+        "libcore.rust_sysroot",
+    ],
     target: {
         android_arm64: {
             enabled: true,
@@ -14,19 +32,17 @@
     },
 }
 
+// Used by the "top-level" rust_ffi_static of vmbase-based binaries.
 rust_defaults {
     name: "vmbase_ffi_defaults",
-    defaults: ["vmbase_rust_defaults"],
-    no_stdlibs: true,
-    stdlibs: [
-        "libcompiler_builtins.rust_sysroot",
-        "libcore.rust_sysroot",
-    ],
+    defaults: ["vmbase_rlib_defaults"],
 }
 
+// Used by extra cc_library_static linked into the final ELF.
 cc_defaults {
     name: "vmbase_cc_defaults",
     nocrt: true,
+    no_libcrt: true,
     system_shared_libs: [],
     stl: "none",
     installable: false,
@@ -39,8 +55,10 @@
     sanitize: {
         hwaddress: false,
     },
+    native_coverage: false,
 }
 
+// Used by cc_binary when producing the ELF of a vmbase-based binary.
 cc_defaults {
     name: "vmbase_elf_defaults",
     defaults: ["vmbase_cc_defaults"],
@@ -48,29 +66,35 @@
     static_libs: [
         "libvmbase_entry",
     ],
-    installable: false,
-    enabled: false,
-    target: {
-        android_arm64: {
-            enabled: true,
-        },
-    },
 }
 
 rust_library_rlib {
     name: "libvmbase",
-    defaults: ["vmbase_rust_defaults"],
+    defaults: ["vmbase_rlib_defaults"],
     crate_name: "vmbase",
     srcs: ["src/lib.rs"],
     rustlibs: [
+        "libaarch64_paging",
+        "libbuddy_system_allocator",
+        "libcstr",
+        "libfdtpci",
+        "libhyp",
+        "liblibfdt",
         "liblog_rust_nostd",
-        "libpsci",
+        "libonce_cell_nostd",
+        "libsmccc",
         "libspin_nostd",
+        "libtinyvec_nostd",
+        "libvirtio_drivers",
+        "libzerocopy_nostd",
+        "libzeroize_nostd",
     ],
     whole_static_libs: [
         "librust_baremetal",
     ],
-    apex_available: ["com.android.virt"],
+    features: [
+        "cpu_feat_hafdbs",
+    ],
 }
 
 cc_library_static {
@@ -81,8 +105,6 @@
         "exceptions.S",
         "exceptions_panic.S",
     ],
-    no_libcrt: true,
-    apex_available: ["com.android.virt"],
 }
 
 filegroup {
diff --git a/vmbase/README.md b/vmbase/README.md
index 7f621fb..280d7e1 100644
--- a/vmbase/README.md
+++ b/vmbase/README.md
@@ -6,7 +6,7 @@
 
 In particular it provides:
 
-- An [entry point](entry.S) that initialises the MMU with a hard-coded identity mapping, enables the
+- An [entry point](entry.S) that initializes the MMU with a hard-coded identity mapping, enables the
   cache, prepares the image and allocates a stack.
 - An [exception vector](exceptions.S) to call your exception handlers.
 - A UART driver and `println!` macro for early console logging.
@@ -62,7 +62,7 @@
 }
 ```
 
-vmbase adds a wrapper around your main function to initialise the console driver first (with the
+vmbase adds a wrapper around your main function to initialize the console driver first (with the
 UART at base address `0x3f8`, the first UART allocated by crosvm), and make a PSCI `SYSTEM_OFF` call
 to shutdown the VM if your main function ever returns.
 
@@ -93,7 +93,7 @@
 
 The `println!` macro shouldn't be used in exception handlers, because it relies on a global instance
 of the UART driver which might be locked when the exception happens, which would result in deadlock.
-Instead you can use `emergency_write_str` and `eprintln!`, which will re-initialise the UART every
+Instead you can use `emergency_write_str` and `eprintln!`, which will re-initialize the UART every
 time to ensure that it can be used. This should still be used with care, as it may interfere with
 whatever the rest of the program is doing with the UART.
 
diff --git a/vmbase/TEST_MAPPING b/vmbase/TEST_MAPPING
index c315b4a..192a7c6 100644
--- a/vmbase/TEST_MAPPING
+++ b/vmbase/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit": [
     {
diff --git a/vmbase/entry.S b/vmbase/entry.S
index 9f6993a..9177a4a 100644
--- a/vmbase/entry.S
+++ b/vmbase/entry.S
@@ -63,72 +63,6 @@
 .set .Lsctlrval, .L_SCTLR_ELx_M | .L_SCTLR_ELx_C | .L_SCTLR_ELx_SA | .L_SCTLR_EL1_ITD | .L_SCTLR_EL1_SED
 .set .Lsctlrval, .Lsctlrval | .L_SCTLR_ELx_I | .L_SCTLR_EL1_SPAN | .L_SCTLR_EL1_RES1 | .L_SCTLR_EL1_WXN
 
-/* SMC function IDs */
-.set .L_SMCCC_VERSION_ID, 0x80000000
-.set .L_SMCCC_TRNG_VERSION_ID, 0x84000050
-.set .L_SMCCC_TRNG_FEATURES_ID, 0x84000051
-.set .L_SMCCC_TRNG_RND64_ID, 0xc4000053
-
-/* SMC function versions */
-.set .L_SMCCC_VERSION_1_1, 0x0101
-.set .L_SMCCC_TRNG_VERSION_1_0, 0x0100
-
-/* Bionic-compatible stack protector */
-.section .data.stack_protector, "aw"
-__bionic_tls:
-	.zero	40
-.global __stack_chk_guard
-__stack_chk_guard:
-	.quad	0
-
-/**
- * This macro stores a random value into a register.
- * If a TRNG backed is not present or if an error occurs, the value remains unchanged.
- */
-.macro rnd_reg reg:req
-	mov x20, x0
-	mov x21, x1
-	mov x22, x2
-	mov x23, x3
-
-	/* Verify SMCCC version >=1.1 */
-	hvc_call .L_SMCCC_VERSION_ID
-	cmp w0, 0
-	b.lt 100f
-	cmp w0, .L_SMCCC_VERSION_1_1
-	b.lt 100f
-
-	/* Verify TRNG ABI version 1.x */
-	hvc_call .L_SMCCC_TRNG_VERSION_ID
-	cmp w0, 0
-	b.lt 100f
-	cmp w0, .L_SMCCC_TRNG_VERSION_1_0
-	b.lt 100f
-
-	/* Call TRNG_FEATURES, ensure TRNG_RND is implemented */
-	mov_i x1, .L_SMCCC_TRNG_RND64_ID
-	hvc_call .L_SMCCC_TRNG_FEATURES_ID
-	cmp w0, 0
-	b.lt 100f
-
-	/* Call TRNG_RND, request 64 bits of entropy */
-	mov x1, #64
-	hvc_call .L_SMCCC_TRNG_RND64_ID
-	cmp x0, 0
-	b.lt 100f
-
-	mov \reg, x3
-	b 101f
-
-100:
-	reset_or_hang
-101:
-	mov x0, x20
-	mov x1, x21
-	mov x2, x22
-	mov x3, x23
-.endm
-
 /**
  * This is a generic entry point for an image. It carries out the operations required to prepare the
  * loaded image to be run. Specifically, it zeroes the bss section using registers x25 and above,
@@ -222,18 +156,17 @@
 	adr x30, vector_table_el1
 	msr vbar_el1, x30
 
-	/* Set up Bionic-compatible thread-local storage. */
+	/*
+	 * Set up Bionic-compatible thread-local storage.
+	 *
+	 * Note that TPIDR_EL0 can't be configured from rust_entry because the
+	 * compiler will dereference it during function entry to access
+	 * __stack_chk_guard and Rust doesn't support LLVM's
+	 * __attribute__((no_stack_protector)).
+	 */
 	adr_l x30, __bionic_tls
 	msr tpidr_el0, x30
 
-	/* Randomize stack protector. */
-	rnd_reg x29
-	adr_l x30, __stack_chk_guard
-	str x29, [x30]
-
-	/* Write a null byte to the top of the stack guard to act as a string terminator. */
-	strb wzr, [x30]
-
 	/* Call into Rust code. */
 	bl rust_entry
 
diff --git a/vmbase/example/Android.bp b/vmbase/example/Android.bp
index dc9a090..fe9de44 100644
--- a/vmbase/example/Android.bp
+++ b/vmbase/example/Android.bp
@@ -7,10 +7,9 @@
     defaults: ["vmbase_ffi_defaults"],
     crate_name: "vmbase_example",
     srcs: ["src/main.rs"],
-    edition: "2021",
     rustlibs: [
         "libaarch64_paging",
-        "libbuddy_system_allocator",
+        "libcstr",
         "libdiced_open_dice_nostd",
         "libfdtpci",
         "liblibfdt",
diff --git a/vmbase/example/src/exceptions.rs b/vmbase/example/src/exceptions.rs
index 0522013..5d7768a 100644
--- a/vmbase/example/src/exceptions.rs
+++ b/vmbase/example/src/exceptions.rs
@@ -14,8 +14,7 @@
 
 //! Exception handlers.
 
-use core::arch::asm;
-use vmbase::{eprintln, power::reboot};
+use vmbase::{eprintln, power::reboot, read_sysreg};
 
 #[no_mangle]
 extern "C" fn sync_exception_current(_elr: u64, _spsr: u64) {
@@ -71,9 +70,6 @@
 
 #[inline]
 fn print_esr() {
-    let mut esr: u64;
-    unsafe {
-        asm!("mrs {esr}, esr_el1", esr = out(reg) esr);
-    }
+    let esr = read_sysreg!("esr_el1");
     eprintln!("esr={:#08x}", esr);
 }
diff --git a/vmbase/example/src/layout.rs b/vmbase/example/src/layout.rs
index 2e9d27a..fc578bc 100644
--- a/vmbase/example/src/layout.rs
+++ b/vmbase/example/src/layout.rs
@@ -15,80 +15,36 @@
 //! Memory layout.
 
 use aarch64_paging::paging::{MemoryRegion, VirtualAddress};
-use core::arch::asm;
 use core::ops::Range;
 use log::info;
 use vmbase::layout;
-use vmbase::STACK_CHK_GUARD;
 
 /// The first 1 GiB of memory are used for MMIO.
 pub const DEVICE_REGION: MemoryRegion = MemoryRegion::new(0, 0x40000000);
 
-fn into_va_range(r: Range<usize>) -> Range<VirtualAddress> {
-    VirtualAddress(r.start)..VirtualAddress(r.end)
-}
-
-/// Memory reserved for the DTB.
-pub fn dtb_range() -> Range<VirtualAddress> {
-    into_va_range(layout::dtb_range())
-}
-
-/// Executable code.
-pub fn text_range() -> Range<VirtualAddress> {
-    into_va_range(layout::text_range())
-}
-
-/// Read-only data.
-pub fn rodata_range() -> Range<VirtualAddress> {
-    into_va_range(layout::rodata_range())
-}
-
-/// Initialised writable data.
-pub fn data_range() -> Range<VirtualAddress> {
-    into_va_range(layout::data_range())
-}
-
-/// Zero-initialised writable data.
-pub fn bss_range() -> Range<VirtualAddress> {
-    into_va_range(layout::bss_range())
-}
-
 /// Writable data region for the stack.
 pub fn boot_stack_range() -> Range<VirtualAddress> {
     const PAGE_SIZE: usize = 4 << 10;
-    into_va_range(layout::stack_range(40 * PAGE_SIZE))
-}
-
-/// Writable data region for allocations.
-pub fn scratch_range() -> Range<VirtualAddress> {
-    into_va_range(layout::scratch_range())
-}
-
-fn data_load_address() -> VirtualAddress {
-    VirtualAddress(layout::data_load_address())
-}
-
-fn binary_end() -> VirtualAddress {
-    VirtualAddress(layout::binary_end())
+    layout::stack_range(40 * PAGE_SIZE)
 }
 
 pub fn print_addresses() {
-    let dtb = dtb_range();
+    let dtb = layout::dtb_range();
     info!("dtb:        {}..{} ({} bytes)", dtb.start, dtb.end, dtb.end - dtb.start);
-    let text = text_range();
+    let text = layout::text_range();
     info!("text:       {}..{} ({} bytes)", text.start, text.end, text.end - text.start);
-    let rodata = rodata_range();
+    let rodata = layout::rodata_range();
     info!("rodata:     {}..{} ({} bytes)", rodata.start, rodata.end, rodata.end - rodata.start);
-    info!("binary end: {}", binary_end());
-    let data = data_range();
+    info!("binary end: {}", layout::binary_end());
+    let data = layout::data_range();
     info!(
         "data:       {}..{} ({} bytes, loaded at {})",
         data.start,
         data.end,
         data.end - data.start,
-        data_load_address(),
+        layout::data_load_address(),
     );
-    let bss = bss_range();
+    let bss = layout::bss_range();
     info!("bss:        {}..{} ({} bytes)", bss.start, bss.end, bss.end - bss.start);
     let boot_stack = boot_stack_range();
     info!(
@@ -98,18 +54,3 @@
         boot_stack.end - boot_stack.start
     );
 }
-
-/// Bionic-compatible thread-local storage entry, at the given offset from TPIDR_EL0.
-pub fn bionic_tls(off: usize) -> u64 {
-    let mut base: usize;
-    unsafe {
-        asm!("mrs {base}, tpidr_el0", base = out(reg) base);
-        let ptr = (base + off) as *const u64;
-        *ptr
-    }
-}
-
-/// Value of __stack_chk_guard.
-pub fn stack_chk_guard() -> u64 {
-    *STACK_CHK_GUARD
-}
diff --git a/vmbase/example/src/main.rs b/vmbase/example/src/main.rs
index 3bf850c..6f513ee 100644
--- a/vmbase/example/src/main.rs
+++ b/vmbase/example/src/main.rs
@@ -23,37 +23,54 @@
 
 extern crate alloc;
 
-use crate::layout::{
-    bionic_tls, boot_stack_range, dtb_range, print_addresses, rodata_range, scratch_range,
-    stack_chk_guard, text_range, DEVICE_REGION,
-};
+use crate::layout::{boot_stack_range, print_addresses, DEVICE_REGION};
 use crate::pci::{check_pci, get_bar_region};
-use aarch64_paging::{idmap::IdMap, paging::Attributes};
+use aarch64_paging::paging::MemoryRegion;
+use aarch64_paging::MapError;
 use alloc::{vec, vec::Vec};
-use buddy_system_allocator::LockedHeap;
-use core::ffi::CStr;
+use cstr::cstr;
 use fdtpci::PciInfo;
 use libfdt::Fdt;
 use log::{debug, error, info, trace, warn, LevelFilter};
-use vmbase::{logger, main};
+use vmbase::{
+    bionic, configure_heap,
+    layout::{dtb_range, rodata_range, scratch_range, text_range},
+    linker, logger, main,
+    memory::{PageTable, SIZE_64KB},
+};
 
 static INITIALISED_DATA: [u32; 4] = [1, 2, 3, 4];
 static mut ZEROED_DATA: [u32; 10] = [0; 10];
 static mut MUTABLE_DATA: [u32; 4] = [1, 2, 3, 4];
 
-const ASID: usize = 1;
-const ROOT_LEVEL: usize = 1;
-
-#[global_allocator]
-static HEAP_ALLOCATOR: LockedHeap<32> = LockedHeap::<32>::new();
-
-static mut HEAP: [u8; 65536] = [0; 65536];
-
 main!(main);
+configure_heap!(SIZE_64KB);
+
+fn init_page_table(pci_bar_range: &MemoryRegion) -> Result<(), MapError> {
+    let mut page_table = PageTable::default();
+
+    page_table.map_device(&DEVICE_REGION)?;
+    page_table.map_code(&text_range().into())?;
+    page_table.map_rodata(&rodata_range().into())?;
+    page_table.map_data(&scratch_range().into())?;
+    page_table.map_data(&boot_stack_range().into())?;
+    page_table.map_rodata(&dtb_range().into())?;
+    page_table.map_device(pci_bar_range)?;
+
+    info!("Activating IdMap...");
+    // SAFETY: page_table duplicates the static mappings for everything that the Rust code is
+    // aware of so activating it shouldn't have any visible effect.
+    unsafe {
+        page_table.activate();
+    }
+    info!("Activated.");
+
+    Ok(())
+}
 
 /// Entry point for VM bootloader.
 pub fn main(arg0: u64, arg1: u64, arg2: u64, arg3: u64) {
-    logger::init(LevelFilter::Debug).unwrap();
+    log::set_max_level(LevelFilter::Debug);
 
     info!("Hello world");
     info!("x0={:#018x}, x1={:#018x}, x2={:#018x}, x3={:#018x}", arg0, arg1, arg2, arg3);
@@ -64,8 +81,9 @@
 
     info!("Checking FDT...");
     let fdt = dtb_range();
-    let fdt =
-        unsafe { core::slice::from_raw_parts_mut(fdt.start.0 as *mut u8, fdt.end.0 - fdt.start.0) };
+    let fdt_size = fdt.end.0 - fdt.start.0;
+    // SAFETY: The DTB range is valid, writable memory, and we don't construct any aliases to it.
+    let fdt = unsafe { core::slice::from_raw_parts_mut(fdt.start.0 as *mut u8, fdt_size) };
     let fdt = Fdt::from_mut_slice(fdt).unwrap();
     info!("FDT passed verification.");
     check_fdt(fdt);
@@ -75,62 +93,14 @@
 
     modify_fdt(fdt);
 
-    unsafe {
-        HEAP_ALLOCATOR.lock().init(HEAP.as_mut_ptr() as usize, HEAP.len());
-    }
-
     check_alloc();
 
-    let mut idmap = IdMap::new(ASID, ROOT_LEVEL);
-    idmap.map_range(&DEVICE_REGION, Attributes::DEVICE_NGNRE | Attributes::EXECUTE_NEVER).unwrap();
-    idmap
-        .map_range(
-            &text_range().into(),
-            Attributes::NORMAL | Attributes::NON_GLOBAL | Attributes::READ_ONLY,
-        )
-        .unwrap();
-    idmap
-        .map_range(
-            &rodata_range().into(),
-            Attributes::NORMAL
-                | Attributes::NON_GLOBAL
-                | Attributes::READ_ONLY
-                | Attributes::EXECUTE_NEVER,
-        )
-        .unwrap();
-    idmap
-        .map_range(
-            &scratch_range().into(),
-            Attributes::NORMAL | Attributes::NON_GLOBAL | Attributes::EXECUTE_NEVER,
-        )
-        .unwrap();
-    idmap
-        .map_range(
-            &boot_stack_range().into(),
-            Attributes::NORMAL | Attributes::NON_GLOBAL | Attributes::EXECUTE_NEVER,
-        )
-        .unwrap();
-    idmap
-        .map_range(
-            &dtb_range().into(),
-            Attributes::NORMAL
-                | Attributes::NON_GLOBAL
-                | Attributes::READ_ONLY
-                | Attributes::EXECUTE_NEVER,
-        )
-        .unwrap();
-    idmap
-        .map_range(&get_bar_region(&pci_info), Attributes::DEVICE_NGNRE | Attributes::EXECUTE_NEVER)
-        .unwrap();
-
-    info!("Activating IdMap...");
-    trace!("{:?}", idmap);
-    idmap.activate();
-    info!("Activated.");
+    init_page_table(&get_bar_region(&pci_info)).unwrap();
 
     check_data();
     check_dice();
 
+    // SAFETY: This is the only place where `make_pci_root` is called.
     let mut pci_root = unsafe { pci_info.make_pci_root() };
     check_pci(&mut pci_root);
 
@@ -138,52 +108,67 @@
 }
 
 fn check_stack_guard() {
-    const BIONIC_TLS_STACK_GRD_OFF: usize = 40;
-
     info!("Testing stack guard");
-    assert_eq!(bionic_tls(BIONIC_TLS_STACK_GRD_OFF), stack_chk_guard());
+    // SAFETY: No concurrency issue should occur when running these tests.
+    let stack_guard = unsafe { bionic::TLS.stack_guard };
+    assert_ne!(stack_guard, 0);
+    // Check that a NULL-terminating value is added for C functions consuming strings from stack.
+    assert_eq!(stack_guard.to_ne_bytes().last(), Some(&0));
+    // Check that the TLS and guard are properly accessible from the dedicated register.
+    assert_eq!(stack_guard, bionic::__get_tls().stack_guard);
+    // Check that the LLVM __stack_chk_guard alias is also properly set up.
+    assert_eq!(
+        stack_guard,
+        // SAFETY: No concurrency issue should occur when running these tests.
+        unsafe { linker::__stack_chk_guard },
+    );
 }
 
 fn check_data() {
     info!("INITIALISED_DATA: {:?}", INITIALISED_DATA.as_ptr());
-    unsafe {
-        info!("ZEROED_DATA: {:?}", ZEROED_DATA.as_ptr());
-        info!("MUTABLE_DATA: {:?}", MUTABLE_DATA.as_ptr());
-        info!("HEAP: {:?}", HEAP.as_ptr());
-    }
+    // SAFETY: We only print the addresses of the static mutable variable, not actually access it.
+    info!("ZEROED_DATA: {:?}", unsafe { ZEROED_DATA.as_ptr() });
+    // SAFETY: We only print the addresses of the static mutable variable, not actually access it.
+    info!("MUTABLE_DATA: {:?}", unsafe { MUTABLE_DATA.as_ptr() });
 
     assert_eq!(INITIALISED_DATA[0], 1);
     assert_eq!(INITIALISED_DATA[1], 2);
     assert_eq!(INITIALISED_DATA[2], 3);
     assert_eq!(INITIALISED_DATA[3], 4);
 
-    unsafe {
-        for element in ZEROED_DATA.iter() {
-            assert_eq!(*element, 0);
-        }
-        ZEROED_DATA[0] = 13;
-        assert_eq!(ZEROED_DATA[0], 13);
-        ZEROED_DATA[0] = 0;
-        assert_eq!(ZEROED_DATA[0], 0);
+    // SAFETY: Nowhere else in the program accesses this static mutable variable, so there is no
+    // chance of concurrent access.
+    let zeroed_data = unsafe { &mut ZEROED_DATA };
+    // SAFETY: Nowhere else in the program accesses this static mutable variable, so there is no
+    // chance of concurrent access.
+    let mutable_data = unsafe { &mut MUTABLE_DATA };
 
-        assert_eq!(MUTABLE_DATA[0], 1);
-        assert_eq!(MUTABLE_DATA[1], 2);
-        assert_eq!(MUTABLE_DATA[2], 3);
-        assert_eq!(MUTABLE_DATA[3], 4);
-        MUTABLE_DATA[0] += 41;
-        assert_eq!(MUTABLE_DATA[0], 42);
-        MUTABLE_DATA[0] -= 41;
-        assert_eq!(MUTABLE_DATA[0], 1);
+    for element in zeroed_data.iter() {
+        assert_eq!(*element, 0);
     }
+    zeroed_data[0] = 13;
+    assert_eq!(zeroed_data[0], 13);
+    zeroed_data[0] = 0;
+    assert_eq!(zeroed_data[0], 0);
+
+    assert_eq!(mutable_data[0], 1);
+    assert_eq!(mutable_data[1], 2);
+    assert_eq!(mutable_data[2], 3);
+    assert_eq!(mutable_data[3], 4);
+    mutable_data[0] += 41;
+    assert_eq!(mutable_data[0], 42);
+    mutable_data[0] -= 41;
+    assert_eq!(mutable_data[0], 1);
+
     info!("Data looks good");
 }
 
 fn check_fdt(reader: &Fdt) {
-    for reg in reader.memory().unwrap().unwrap() {
+    for reg in reader.memory().unwrap() {
         info!("memory @ {reg:#x?}");
     }
 
-    let compatible = CStr::from_bytes_with_nul(b"ns16550a\0").unwrap();
+    let compatible = cstr!("ns16550a");
 
     for c in reader.compatible_nodes(compatible).unwrap() {
         let reg = c.reg().unwrap().unwrap().next().unwrap();
@@ -195,17 +180,17 @@
     writer.unpack().unwrap();
     info!("FDT successfully unpacked.");
 
-    let path = CStr::from_bytes_with_nul(b"/memory\0").unwrap();
+    let path = cstr!("/memory");
     let mut node = writer.node_mut(path).unwrap().unwrap();
-    let name = CStr::from_bytes_with_nul(b"child\0").unwrap();
+    let name = cstr!("child");
     let mut child = node.add_subnode(name).unwrap();
     info!("Created subnode '{}/{}'.", path.to_str().unwrap(), name.to_str().unwrap());
 
-    let name = CStr::from_bytes_with_nul(b"str-property\0").unwrap();
+    let name = cstr!("str-property");
     child.appendprop(name, b"property-value\0").unwrap();
     info!("Appended property '{}'.", name.to_str().unwrap());
 
-    let name = CStr::from_bytes_with_nul(b"pair-property\0").unwrap();
+    let name = cstr!("pair-property");
     let addr = 0x0123_4567u64;
     let size = 0x89ab_cdefu64;
     child.appendprop_addrrange(name, addr, size).unwrap();
diff --git a/vmbase/example/src/pci.rs b/vmbase/example/src/pci.rs
index 41a3ff4..b838539 100644
--- a/vmbase/example/src/pci.rs
+++ b/vmbase/example/src/pci.rs
@@ -15,18 +15,19 @@
 //! Functions to scan the PCI bus for VirtIO device.
 
 use aarch64_paging::paging::MemoryRegion;
-use alloc::alloc::{alloc, dealloc, handle_alloc_error, Layout};
+use alloc::alloc::{alloc_zeroed, dealloc, handle_alloc_error, Layout};
 use core::{mem::size_of, ptr::NonNull};
 use fdtpci::PciInfo;
 use log::{debug, info};
 use virtio_drivers::{
-    device::{blk::VirtIOBlk, console::VirtIOConsole},
+    device::console::VirtIOConsole,
     transport::{
-        pci::{bus::PciRoot, virtio_device_type, PciTransport},
+        pci::{bus::PciRoot, PciTransport},
         DeviceType, Transport,
     },
-    BufferDirection, Hal, PhysAddr, PAGE_SIZE,
+    BufferDirection, Error, Hal, PhysAddr, PAGE_SIZE,
 };
+use vmbase::virtio::pci::{self, PciTransportIterator};
 
 /// The standard sector size of a VirtIO block device, in bytes.
 const SECTOR_SIZE_BYTES: usize = 512;
@@ -36,61 +37,82 @@
 
 pub fn check_pci(pci_root: &mut PciRoot) {
     let mut checked_virtio_device_count = 0;
-    for (device_function, info) in pci_root.enumerate_bus(0) {
-        let (status, command) = pci_root.get_status_command(device_function);
-        info!("Found {} at {}, status {:?} command {:?}", info, device_function, status, command);
-        if let Some(virtio_type) = virtio_device_type(&info) {
-            info!("  VirtIO {:?}", virtio_type);
-            let mut transport = PciTransport::new::<HalImpl>(pci_root, device_function).unwrap();
-            info!(
-                "Detected virtio PCI device with device type {:?}, features {:#018x}",
-                transport.device_type(),
-                transport.read_device_features(),
-            );
-            if check_virtio_device(transport, virtio_type) {
+    let mut block_device_count = 0;
+    let mut socket_device_count = 0;
+    for mut transport in PciTransportIterator::<HalImpl>::new(pci_root) {
+        info!(
+            "Detected virtio PCI device with device type {:?}, features {:#018x}",
+            transport.device_type(),
+            transport.read_device_features(),
+        );
+        match transport.device_type() {
+            DeviceType::Block => {
+                check_virtio_block_device(transport, block_device_count);
+                block_device_count += 1;
                 checked_virtio_device_count += 1;
             }
+            DeviceType::Console => {
+                check_virtio_console_device(transport);
+                checked_virtio_device_count += 1;
+            }
+            DeviceType::Socket => {
+                check_virtio_socket_device(transport);
+                socket_device_count += 1;
+                checked_virtio_device_count += 1;
+            }
+            _ => {}
         }
     }
 
-    assert_eq!(checked_virtio_device_count, 4);
+    assert_eq!(checked_virtio_device_count, 6);
+    assert_eq!(block_device_count, 2);
+    assert_eq!(socket_device_count, 1);
 }
 
-/// Checks the given VirtIO device, if we know how to.
-///
-/// Returns true if the device was checked, or false if it was ignored.
-fn check_virtio_device(transport: impl Transport, device_type: DeviceType) -> bool {
-    match device_type {
-        DeviceType::Block => {
-            let mut blk =
-                VirtIOBlk::<HalImpl, _>::new(transport).expect("failed to create blk driver");
-            info!("Found {} KiB block device.", blk.capacity() * SECTOR_SIZE_BYTES as u64 / 1024);
+/// Checks the given VirtIO block device.
+fn check_virtio_block_device(transport: PciTransport, index: usize) {
+    let mut blk = pci::VirtIOBlk::<HalImpl>::new(transport).expect("failed to create blk driver");
+    info!("Found {} KiB block device.", blk.capacity() * SECTOR_SIZE_BYTES as u64 / 1024);
+    match index {
+        0 => {
             assert_eq!(blk.capacity(), EXPECTED_SECTOR_COUNT as u64);
             let mut data = [0; SECTOR_SIZE_BYTES * EXPECTED_SECTOR_COUNT];
             for i in 0..EXPECTED_SECTOR_COUNT {
-                blk.read_block(i, &mut data[i * SECTOR_SIZE_BYTES..(i + 1) * SECTOR_SIZE_BYTES])
+                blk.read_blocks(i, &mut data[i * SECTOR_SIZE_BYTES..(i + 1) * SECTOR_SIZE_BYTES])
                     .expect("Failed to read block device.");
             }
             for (i, chunk) in data.chunks(size_of::<u32>()).enumerate() {
                 assert_eq!(chunk, &(i as u32).to_le_bytes());
             }
             info!("Read expected data from block device.");
-            true
         }
-        DeviceType::Console => {
-            let mut console = VirtIOConsole::<HalImpl, _>::new(transport)
-                .expect("Failed to create VirtIO console driver");
-            info!("Found console device: {:?}", console.info());
-            for &c in b"Hello VirtIO console\n" {
-                console.send(c).expect("Failed to send character to VirtIO console device");
-            }
-            info!("Wrote to VirtIO console.");
-            true
+        1 => {
+            assert_eq!(blk.capacity(), 0);
+            let mut data = [0; SECTOR_SIZE_BYTES];
+            assert_eq!(blk.read_blocks(0, &mut data), Err(Error::IoError));
         }
-        _ => false,
+        _ => panic!("Unexpected VirtIO block device index {}.", index),
     }
 }
 
+/// Checks the given VirtIO socket device.
+fn check_virtio_socket_device(transport: PciTransport) {
+    let socket = pci::VirtIOSocket::<HalImpl>::new(transport)
+        .expect("Failed to create VirtIO socket driver");
+    info!("Found socket device: guest_cid={}", socket.guest_cid());
+}
+
+/// Checks the given VirtIO console device.
+fn check_virtio_console_device(transport: PciTransport) {
+    let mut console = VirtIOConsole::<HalImpl, PciTransport>::new(transport)
+        .expect("Failed to create VirtIO console driver");
+    info!("Found console device: {:?}", console.info());
+    for &c in b"Hello VirtIO console\n" {
+        console.send(c).expect("Failed to send character to VirtIO console device");
+    }
+    info!("Wrote to VirtIO console.");
+}
+
 /// Gets the memory region in which BARs are allocated.
 pub fn get_bar_region(pci_info: &PciInfo) -> MemoryRegion {
     MemoryRegion::new(pci_info.bar_range.start as usize, pci_info.bar_range.end as usize)
@@ -98,12 +120,22 @@
 
 struct HalImpl;
 
+/// SAFETY: See the 'Implementation Safety' comments on methods below for how they fulfill the
+/// safety requirements of the unsafe `Hal` trait.
 unsafe impl Hal for HalImpl {
+    /// # Implementation Safety
+    ///
+    /// `dma_alloc` ensures the returned DMA buffer is not aliased with any other allocation or
+    /// reference in the program until it is deallocated by `dma_dealloc` by allocating a unique
+    /// block of memory using `alloc_zeroed`, which is guaranteed to allocate valid, unique and
+    /// zeroed memory. We request an alignment of at least `PAGE_SIZE` from `alloc_zeroed`.
     fn dma_alloc(pages: usize, _direction: BufferDirection) -> (PhysAddr, NonNull<u8>) {
         debug!("dma_alloc: pages={}", pages);
-        let layout = Layout::from_size_align(pages * PAGE_SIZE, PAGE_SIZE).unwrap();
-        // Safe because the layout has a non-zero size.
-        let vaddr = unsafe { alloc(layout) };
+        let layout =
+            Layout::from_size_align(pages.checked_mul(PAGE_SIZE).unwrap(), PAGE_SIZE).unwrap();
+        assert_ne!(layout.size(), 0);
+        // SAFETY: We just checked that the layout has a non-zero size.
+        let vaddr = unsafe { alloc_zeroed(layout) };
         let vaddr =
             if let Some(vaddr) = NonNull::new(vaddr) { vaddr } else { handle_alloc_error(layout) };
         let paddr = virt_to_phys(vaddr);
@@ -113,14 +145,19 @@
     unsafe fn dma_dealloc(paddr: PhysAddr, vaddr: NonNull<u8>, pages: usize) -> i32 {
         debug!("dma_dealloc: paddr={:#x}, pages={}", paddr, pages);
         let layout = Layout::from_size_align(pages * PAGE_SIZE, PAGE_SIZE).unwrap();
-        // Safe because the memory was allocated by `dma_alloc` above using the same allocator, and
-        // the layout is the same as was used then.
+        // SAFETY: The memory was allocated by `dma_alloc` above using the same allocator, and the
+        // layout is the same as was used then.
         unsafe {
             dealloc(vaddr.as_ptr(), layout);
         }
         0
     }
 
+    /// # Implementation Safety
+    ///
+    /// The returned pointer must be valid because the `paddr` describes a valid MMIO region, and we
+    /// previously mapped the entire PCI MMIO range. It can't alias any other allocations because
+    /// the PCI MMIO range doesn't overlap with any other memory ranges.
     unsafe fn mmio_phys_to_virt(paddr: PhysAddr, _size: usize) -> NonNull<u8> {
         NonNull::new(paddr as _).unwrap()
     }
diff --git a/vmbase/example/tests/test.rs b/vmbase/example/tests/test.rs
index 9088f1a..2df5a80 100644
--- a/vmbase/example/tests/test.rs
+++ b/vmbase/example/tests/test.rs
@@ -35,12 +35,16 @@
 const VMBASE_EXAMPLE_PATH: &str =
     "/data/local/tmp/vmbase_example.integration_test/arm64/vmbase_example.bin";
 const TEST_DISK_IMAGE_PATH: &str = "/data/local/tmp/vmbase_example.integration_test/test_disk.img";
+const EMPTY_DISK_IMAGE_PATH: &str =
+    "/data/local/tmp/vmbase_example.integration_test/empty_disk.img";
 
 /// Runs the vmbase_example VM as an unprotected VM via VirtualizationService.
 #[test]
 fn test_run_example_vm() -> Result<(), Error> {
     android_logger::init_once(
-        android_logger::Config::default().with_tag("vmbase").with_min_level(log::Level::Debug),
+        android_logger::Config::default()
+            .with_tag("vmbase")
+            .with_max_level(log::LevelFilter::Debug),
     );
 
     // Redirect panic messages to logcat.
@@ -76,24 +80,43 @@
     let test_image = ParcelFileDescriptor::new(test_image);
     let disk_image = DiskImage { image: Some(test_image), writable: false, partitions: vec![] };
 
+    // Make file for empty test disk image.
+    let empty_image = File::options()
+        .create(true)
+        .read(true)
+        .write(true)
+        .truncate(true)
+        .open(EMPTY_DISK_IMAGE_PATH)
+        .with_context(|| format!("Failed to open empty disk image {}", EMPTY_DISK_IMAGE_PATH))?;
+    let empty_image = ParcelFileDescriptor::new(empty_image);
+    let empty_disk_image =
+        DiskImage { image: Some(empty_image), writable: false, partitions: vec![] };
+
     let config = VirtualMachineConfig::RawConfig(VirtualMachineRawConfig {
         name: String::from("VmBaseTest"),
         kernel: None,
         initrd: None,
         params: None,
         bootloader: Some(bootloader),
-        disks: vec![disk_image],
+        disks: vec![disk_image, empty_disk_image],
         protectedVm: false,
         memoryMib: 300,
         cpuTopology: CpuTopology::ONE_CPU,
         platformVersion: "~1.0".to_string(),
-        taskProfiles: vec![],
         gdbPort: 0, // no gdb
+        ..Default::default()
     });
     let (handle, console) = android_log_fd()?;
     let (mut log_reader, log_writer) = pipe()?;
-    let vm = VmInstance::create(service.as_ref(), &config, Some(console), Some(log_writer), None)
-        .context("Failed to create VM")?;
+    let vm = VmInstance::create(
+        service.as_ref(),
+        &config,
+        Some(console),
+        /* consoleIn */ None,
+        Some(log_writer),
+        None,
+    )
+    .context("Failed to create VM")?;
     vm.start().context("Failed to start VM")?;
     info!("Started example VM.");
 
@@ -122,6 +145,7 @@
 
     // SAFETY: These are new FDs with no previous owner.
     let reader = unsafe { File::from_raw_fd(reader_fd) };
+    // SAFETY: These are new FDs with no previous owner.
     let writer = unsafe { File::from_raw_fd(writer_fd) };
 
     Ok((reader, writer))
diff --git a/vmbase/sections.ld b/vmbase/sections.ld
index ce9b651..c7ef0ec 100644
--- a/vmbase/sections.ld
+++ b/vmbase/sections.ld
@@ -39,12 +39,10 @@
 	 * Collect together the code. This is page aligned so it can be mapped
 	 * as executable-only.
 	 */
-	.init : ALIGN(4096) {
+	.text : ALIGN(4096) {
 		text_begin = .;
 		*(.init.entry)
 		*(.init.*)
-	} >image
-	.text : {
 		*(.text.*)
 	} >image
 	text_end = .;
@@ -109,6 +107,9 @@
 		. = init_stack_pointer;
 	} >writable_data
 
+	/* Make our Bionic stack protector compatible with mainline LLVM */
+	__stack_chk_guard = __bionic_tls + 40;
+
 	/*
 	 * Remove unused sections from the image.
 	 */
diff --git a/vmbase/src/arch.rs b/vmbase/src/arch.rs
new file mode 100644
index 0000000..d8bb8b2
--- /dev/null
+++ b/vmbase/src/arch.rs
@@ -0,0 +1,93 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Wrappers of assembly calls.
+
+/// Reads a value from a system register.
+#[macro_export]
+macro_rules! read_sysreg {
+    ($sysreg:literal) => {{
+        let mut r: usize;
+        #[allow(unused_unsafe)] // In case the macro is used within an unsafe block.
+        // SAFETY: Reading a system register does not affect memory.
+        unsafe {
+            core::arch::asm!(
+                concat!("mrs {}, ", $sysreg),
+                out(reg) r,
+                options(nomem, nostack, preserves_flags),
+            )
+        }
+        r
+    }};
+}
+
+/// Writes a value to a system register.
+///
+/// # Safety
+///
+/// Callers must ensure that side effects of updating the system register are properly handled.
+#[macro_export]
+macro_rules! write_sysreg {
+    ($sysreg:literal, $val:expr) => {{
+        let value: usize = $val;
+        core::arch::asm!(
+            concat!("msr ", $sysreg, ", {}"),
+            in(reg) value,
+            options(nomem, nostack, preserves_flags),
+        )
+    }};
+}
+
+/// Executes an instruction synchronization barrier.
+#[macro_export]
+macro_rules! isb {
+    () => {{
+        #[allow(unused_unsafe)] // In case the macro is used within an unsafe block.
+        // SAFETY: memory barriers do not affect Rust's memory model.
+        unsafe {
+            core::arch::asm!("isb", options(nomem, nostack, preserves_flags));
+        }
+    }};
+}
+
+/// Executes a data synchronization barrier.
+#[macro_export]
+macro_rules! dsb {
+    ($option:literal) => {{
+        #[allow(unused_unsafe)] // In case the macro is used within an unsafe block.
+        // SAFETY: memory barriers do not affect Rust's memory model.
+        unsafe {
+            core::arch::asm!(concat!("dsb ", $option), options(nomem, nostack, preserves_flags));
+        }
+    }};
+}
+
+/// Invalidates cached leaf PTE entries by virtual address.
+#[macro_export]
+macro_rules! tlbi {
+    ($option:literal, $asid:expr, $addr:expr) => {{
+        let asid: usize = $asid;
+        let addr: usize = $addr;
+        #[allow(unused_unsafe)] // In case the macro is used within an unsafe block.
+        // SAFETY: Invalidating the TLB doesn't affect Rust. When the address matches a
+        // block entry larger than the page size, all translations for the block are invalidated.
+        unsafe {
+            core::arch::asm!(
+                concat!("tlbi ", $option, ", {x}"),
+                x = in(reg) (asid << 48) | (addr >> 12),
+                options(nomem, nostack, preserves_flags)
+            );
+        }
+    }};
+}
diff --git a/vmbase/src/bionic.rs b/vmbase/src/bionic.rs
index 69da521..a049616 100644
--- a/vmbase/src/bionic.rs
+++ b/vmbase/src/bionic.rs
@@ -23,12 +23,39 @@
 
 use crate::console;
 use crate::eprintln;
-use crate::linker;
+use crate::rand::fill_with_entropy;
+use crate::read_sysreg;
+
+use cstr::cstr;
 
 const EOF: c_int = -1;
+const EIO: c_int = 5;
 
-/// Reference to __stack_chk_guard.
-pub static STACK_CHK_GUARD: &u64 = unsafe { &linker::__stack_chk_guard };
+/// Bionic thread-local storage.
+#[repr(C)]
+pub struct Tls {
+    /// Unused.
+    _unused: [u8; 40],
+    /// Use by the compiler as stack canary value.
+    pub stack_guard: u64,
+}
+
+/// Bionic TLS.
+///
+/// Provides the TLS used by Bionic code. This is unique as vmbase only supports one thread.
+///
+/// Note that the linker script re-exports __bionic_tls.stack_guard as __stack_chk_guard for
+/// compatibility with non-Bionic LLVM.
+#[link_section = ".data.stack_protector"]
+#[export_name = "__bionic_tls"]
+pub static mut TLS: Tls = Tls { _unused: [0; 40], stack_guard: 0 };
+
+/// Gets a reference to the TLS from the dedicated system register.
+pub fn __get_tls() -> &'static mut Tls {
+    let tpidr = read_sysreg!("tpidr_el0");
+    // SAFETY: The register is currently only written to once, from entry.S, with a valid value.
+    unsafe { &mut *(tpidr as *mut Tls) }
+}
 
 #[no_mangle]
 extern "C" fn __stack_chk_fail() -> ! {
@@ -46,27 +73,49 @@
 
 #[no_mangle]
 unsafe extern "C" fn __errno() -> *mut c_int {
-    &mut ERRNO as *mut _
+    // SAFETY: C functions which call this are only called from the main thread, not from exception
+    // handlers.
+    unsafe { &mut ERRNO as *mut _ }
 }
 
 fn set_errno(value: c_int) {
-    // SAFETY - vmbase is currently single-threaded.
+    // SAFETY: vmbase is currently single-threaded.
     unsafe { ERRNO = value };
 }
 
+fn get_errno() -> c_int {
+    // SAFETY: vmbase is currently single-threaded.
+    unsafe { ERRNO }
+}
+
+#[no_mangle]
+extern "C" fn getentropy(buffer: *mut c_void, length: usize) -> c_int {
+    if length > 256 {
+        // The maximum permitted value for the length argument is 256.
+        set_errno(EIO);
+        return -1;
+    }
+
+    // SAFETY: Just like libc, we need to assume that `ptr` is valid.
+    let buffer = unsafe { slice::from_raw_parts_mut(buffer.cast::<u8>(), length) };
+    fill_with_entropy(buffer).unwrap();
+
+    0
+}
+
 /// Reports a fatal error detected by Bionic.
 ///
 /// # Safety
 ///
-/// Input strings `prefix` and `format` must be properly NULL-terminated.
+/// Input strings `prefix` and `format` must be valid and properly NUL-terminated.
 ///
 /// # Note
 ///
 /// This Rust functions is missing the last argument of its C/C++ counterpart, a va_list.
 #[no_mangle]
 unsafe extern "C" fn async_safe_fatal_va_list(prefix: *const c_char, format: *const c_char) {
-    let prefix = CStr::from_ptr(prefix);
-    let format = CStr::from_ptr(format);
+    // SAFETY: The caller guaranteed that both strings were valid and NUL-terminated.
+    let (prefix, format) = unsafe { (CStr::from_ptr(prefix), CStr::from_ptr(format)) };
 
     if let (Ok(prefix), Ok(format)) = (prefix.to_str(), format.to_str()) {
         // We don't bother with printf formatting.
@@ -100,7 +149,7 @@
 
 #[no_mangle]
 extern "C" fn fputs(c_str: *const c_char, stream: usize) -> c_int {
-    // SAFETY - Just like libc, we need to assume that `s` is a valid NULL-terminated string.
+    // SAFETY: Just like libc, we need to assume that `s` is a valid NULL-terminated string.
     let c_str = unsafe { CStr::from_ptr(c_str) };
 
     if let (Ok(s), Ok(_)) = (c_str.to_str(), File::try_from(stream)) {
@@ -116,7 +165,7 @@
 extern "C" fn fwrite(ptr: *const c_void, size: usize, nmemb: usize, stream: usize) -> usize {
     let length = size.saturating_mul(nmemb);
 
-    // SAFETY - Just like libc, we need to assume that `ptr` is valid.
+    // SAFETY: Just like libc, we need to assume that `ptr` is valid.
     let bytes = unsafe { slice::from_raw_parts(ptr as *const u8, length) };
 
     if let (Ok(s), Ok(_)) = (str::from_utf8(bytes), File::try_from(stream)) {
@@ -129,142 +178,168 @@
 
 #[no_mangle]
 extern "C" fn strerror(n: c_int) -> *mut c_char {
-    // Messages taken from errno(1).
-    let s = match n {
-        0 => "Success",
-        1 => "Operation not permitted",
-        2 => "No such file or directory",
-        3 => "No such process",
-        4 => "Interrupted system call",
-        5 => "Input/output error",
-        6 => "No such device or address",
-        7 => "Argument list too long",
-        8 => "Exec format error",
-        9 => "Bad file descriptor",
-        10 => "No child processes",
-        11 => "Resource temporarily unavailable",
-        12 => "Cannot allocate memory",
-        13 => "Permission denied",
-        14 => "Bad address",
-        15 => "Block device required",
-        16 => "Device or resource busy",
-        17 => "File exists",
-        18 => "Invalid cross-device link",
-        19 => "No such device",
-        20 => "Not a directory",
-        21 => "Is a directory",
-        22 => "Invalid argument",
-        23 => "Too many open files in system",
-        24 => "Too many open files",
-        25 => "Inappropriate ioctl for device",
-        26 => "Text file busy",
-        27 => "File too large",
-        28 => "No space left on device",
-        29 => "Illegal seek",
-        30 => "Read-only file system",
-        31 => "Too many links",
-        32 => "Broken pipe",
-        33 => "Numerical argument out of domain",
-        34 => "Numerical result out of range",
-        35 => "Resource deadlock avoided",
-        36 => "File name too long",
-        37 => "No locks available",
-        38 => "Function not implemented",
-        39 => "Directory not empty",
-        40 => "Too many levels of symbolic links",
-        42 => "No message of desired type",
-        43 => "Identifier removed",
-        44 => "Channel number out of range",
-        45 => "Level 2 not synchronized",
-        46 => "Level 3 halted",
-        47 => "Level 3 reset",
-        48 => "Link number out of range",
-        49 => "Protocol driver not attached",
-        50 => "No CSI structure available",
-        51 => "Level 2 halted",
-        52 => "Invalid exchange",
-        53 => "Invalid request descriptor",
-        54 => "Exchange full",
-        55 => "No anode",
-        56 => "Invalid request code",
-        57 => "Invalid slot",
-        59 => "Bad font file format",
-        60 => "Device not a stream",
-        61 => "No data available",
-        62 => "Timer expired",
-        63 => "Out of streams resources",
-        64 => "Machine is not on the network",
-        65 => "Package not installed",
-        66 => "Object is remote",
-        67 => "Link has been severed",
-        68 => "Advertise error",
-        69 => "Srmount error",
-        70 => "Communication error on send",
-        71 => "Protocol error",
-        72 => "Multihop attempted",
-        73 => "RFS specific error",
-        74 => "Bad message",
-        75 => "Value too large for defined data type",
-        76 => "Name not unique on network",
-        77 => "File descriptor in bad state",
-        78 => "Remote address changed",
-        79 => "Can not access a needed shared library",
-        80 => "Accessing a corrupted shared library",
-        81 => ".lib section in a.out corrupted",
-        82 => "Attempting to link in too many shared libraries",
-        83 => "Cannot exec a shared library directly",
-        84 => "Invalid or incomplete multibyte or wide character",
-        85 => "Interrupted system call should be restarted",
-        86 => "Streams pipe error",
-        87 => "Too many users",
-        88 => "Socket operation on non-socket",
-        89 => "Destination address required",
-        90 => "Message too long",
-        91 => "Protocol wrong type for socket",
-        92 => "Protocol not available",
-        93 => "Protocol not supported",
-        94 => "Socket type not supported",
-        95 => "Operation not supported",
-        96 => "Protocol family not supported",
-        97 => "Address family not supported by protocol",
-        98 => "Address already in use",
-        99 => "Cannot assign requested address",
-        100 => "Network is down",
-        101 => "Network is unreachable",
-        102 => "Network dropped connection on reset",
-        103 => "Software caused connection abort",
-        104 => "Connection reset by peer",
-        105 => "No buffer space available",
-        106 => "Transport endpoint is already connected",
-        107 => "Transport endpoint is not connected",
-        108 => "Cannot send after transport endpoint shutdown",
-        109 => "Too many references: cannot splice",
-        110 => "Connection timed out",
-        111 => "Connection refused",
-        112 => "Host is down",
-        113 => "No route to host",
-        114 => "Operation already in progress",
-        115 => "Operation now in progress",
-        116 => "Stale file handle",
-        117 => "Structure needs cleaning",
-        118 => "Not a XENIX named type file",
-        119 => "No XENIX semaphores available",
-        120 => "Is a named type file",
-        121 => "Remote I/O error",
-        122 => "Disk quota exceeded",
-        123 => "No medium found",
-        124 => "Wrong medium type",
-        125 => "Operation canceled",
-        126 => "Required key not available",
-        127 => "Key has expired",
-        128 => "Key has been revoked",
-        129 => "Key was rejected by service",
-        130 => "Owner died",
-        131 => "State not recoverable",
-        132 => "Operation not possible due to RF-kill",
-        133 => "Memory page has hardware error",
-        _ => "Unknown errno value",
+    cstr_error(n).as_ptr().cast_mut().cast()
+}
+
+#[no_mangle]
+extern "C" fn perror(s: *const c_char) {
+    let prefix = if s.is_null() {
+        None
+    } else {
+        // SAFETY: Just like libc, we need to assume that `s` is a valid NULL-terminated string.
+        let c_str = unsafe { CStr::from_ptr(s) };
+        // TODO(Rust 1.71): if c_str.is_empty() {
+        if c_str.to_bytes().is_empty() {
+            None
+        } else {
+            Some(c_str.to_str().unwrap())
+        }
     };
 
-    s.as_ptr().cast_mut().cast()
+    let error = cstr_error(get_errno()).to_str().unwrap();
+
+    if let Some(prefix) = prefix {
+        eprintln!("{prefix}: {error}");
+    } else {
+        eprintln!("{error}");
+    }
+}
+
+fn cstr_error(n: c_int) -> &'static CStr {
+    // Messages taken from errno(1).
+    match n {
+        0 => cstr!("Success"),
+        1 => cstr!("Operation not permitted"),
+        2 => cstr!("No such file or directory"),
+        3 => cstr!("No such process"),
+        4 => cstr!("Interrupted system call"),
+        5 => cstr!("Input/output error"),
+        6 => cstr!("No such device or address"),
+        7 => cstr!("Argument list too long"),
+        8 => cstr!("Exec format error"),
+        9 => cstr!("Bad file descriptor"),
+        10 => cstr!("No child processes"),
+        11 => cstr!("Resource temporarily unavailable"),
+        12 => cstr!("Cannot allocate memory"),
+        13 => cstr!("Permission denied"),
+        14 => cstr!("Bad address"),
+        15 => cstr!("Block device required"),
+        16 => cstr!("Device or resource busy"),
+        17 => cstr!("File exists"),
+        18 => cstr!("Invalid cross-device link"),
+        19 => cstr!("No such device"),
+        20 => cstr!("Not a directory"),
+        21 => cstr!("Is a directory"),
+        22 => cstr!("Invalid argument"),
+        23 => cstr!("Too many open files in system"),
+        24 => cstr!("Too many open files"),
+        25 => cstr!("Inappropriate ioctl for device"),
+        26 => cstr!("Text file busy"),
+        27 => cstr!("File too large"),
+        28 => cstr!("No space left on device"),
+        29 => cstr!("Illegal seek"),
+        30 => cstr!("Read-only file system"),
+        31 => cstr!("Too many links"),
+        32 => cstr!("Broken pipe"),
+        33 => cstr!("Numerical argument out of domain"),
+        34 => cstr!("Numerical result out of range"),
+        35 => cstr!("Resource deadlock avoided"),
+        36 => cstr!("File name too long"),
+        37 => cstr!("No locks available"),
+        38 => cstr!("Function not implemented"),
+        39 => cstr!("Directory not empty"),
+        40 => cstr!("Too many levels of symbolic links"),
+        42 => cstr!("No message of desired type"),
+        43 => cstr!("Identifier removed"),
+        44 => cstr!("Channel number out of range"),
+        45 => cstr!("Level 2 not synchronized"),
+        46 => cstr!("Level 3 halted"),
+        47 => cstr!("Level 3 reset"),
+        48 => cstr!("Link number out of range"),
+        49 => cstr!("Protocol driver not attached"),
+        50 => cstr!("No CSI structure available"),
+        51 => cstr!("Level 2 halted"),
+        52 => cstr!("Invalid exchange"),
+        53 => cstr!("Invalid request descriptor"),
+        54 => cstr!("Exchange full"),
+        55 => cstr!("No anode"),
+        56 => cstr!("Invalid request code"),
+        57 => cstr!("Invalid slot"),
+        59 => cstr!("Bad font file format"),
+        60 => cstr!("Device not a stream"),
+        61 => cstr!("No data available"),
+        62 => cstr!("Timer expired"),
+        63 => cstr!("Out of streams resources"),
+        64 => cstr!("Machine is not on the network"),
+        65 => cstr!("Package not installed"),
+        66 => cstr!("Object is remote"),
+        67 => cstr!("Link has been severed"),
+        68 => cstr!("Advertise error"),
+        69 => cstr!("Srmount error"),
+        70 => cstr!("Communication error on send"),
+        71 => cstr!("Protocol error"),
+        72 => cstr!("Multihop attempted"),
+        73 => cstr!("RFS specific error"),
+        74 => cstr!("Bad message"),
+        75 => cstr!("Value too large for defined data type"),
+        76 => cstr!("Name not unique on network"),
+        77 => cstr!("File descriptor in bad state"),
+        78 => cstr!("Remote address changed"),
+        79 => cstr!("Can not access a needed shared library"),
+        80 => cstr!("Accessing a corrupted shared library"),
+        81 => cstr!(".lib section in a.out corrupted"),
+        82 => cstr!("Attempting to link in too many shared libraries"),
+        83 => cstr!("Cannot exec a shared library directly"),
+        84 => cstr!("Invalid or incomplete multibyte or wide character"),
+        85 => cstr!("Interrupted system call should be restarted"),
+        86 => cstr!("Streams pipe error"),
+        87 => cstr!("Too many users"),
+        88 => cstr!("Socket operation on non-socket"),
+        89 => cstr!("Destination address required"),
+        90 => cstr!("Message too long"),
+        91 => cstr!("Protocol wrong type for socket"),
+        92 => cstr!("Protocol not available"),
+        93 => cstr!("Protocol not supported"),
+        94 => cstr!("Socket type not supported"),
+        95 => cstr!("Operation not supported"),
+        96 => cstr!("Protocol family not supported"),
+        97 => cstr!("Address family not supported by protocol"),
+        98 => cstr!("Address already in use"),
+        99 => cstr!("Cannot assign requested address"),
+        100 => cstr!("Network is down"),
+        101 => cstr!("Network is unreachable"),
+        102 => cstr!("Network dropped connection on reset"),
+        103 => cstr!("Software caused connection abort"),
+        104 => cstr!("Connection reset by peer"),
+        105 => cstr!("No buffer space available"),
+        106 => cstr!("Transport endpoint is already connected"),
+        107 => cstr!("Transport endpoint is not connected"),
+        108 => cstr!("Cannot send after transport endpoint shutdown"),
+        109 => cstr!("Too many references: cannot splice"),
+        110 => cstr!("Connection timed out"),
+        111 => cstr!("Connection refused"),
+        112 => cstr!("Host is down"),
+        113 => cstr!("No route to host"),
+        114 => cstr!("Operation already in progress"),
+        115 => cstr!("Operation now in progress"),
+        116 => cstr!("Stale file handle"),
+        117 => cstr!("Structure needs cleaning"),
+        118 => cstr!("Not a XENIX named type file"),
+        119 => cstr!("No XENIX semaphores available"),
+        120 => cstr!("Is a named type file"),
+        121 => cstr!("Remote I/O error"),
+        122 => cstr!("Disk quota exceeded"),
+        123 => cstr!("No medium found"),
+        124 => cstr!("Wrong medium type"),
+        125 => cstr!("Operation canceled"),
+        126 => cstr!("Required key not available"),
+        127 => cstr!("Key has expired"),
+        128 => cstr!("Key has been revoked"),
+        129 => cstr!("Key was rejected by service"),
+        130 => cstr!("Owner died"),
+        131 => cstr!("State not recoverable"),
+        132 => cstr!("Operation not possible due to RF-kill"),
+        133 => cstr!("Memory page has hardware error"),
+        _ => cstr!("Unknown errno value"),
+    }
 }
diff --git a/vmbase/src/console.rs b/vmbase/src/console.rs
index 7c8ddf6..a7d37b4 100644
--- a/vmbase/src/console.rs
+++ b/vmbase/src/console.rs
@@ -25,7 +25,7 @@
 
 /// Initialises a new instance of the UART driver and returns it.
 fn create() -> Uart {
-    // Safe because BASE_ADDRESS is the base of the MMIO region for a UART and is mapped as device
+    // SAFETY: BASE_ADDRESS is the base of the MMIO region for a UART and is mapped as device
     // memory.
     unsafe { Uart::new(BASE_ADDRESS) }
 }
@@ -51,7 +51,7 @@
     write(CONSOLE.lock().as_mut().unwrap(), format_args).unwrap();
 }
 
-/// Reinitialises the UART driver and writes a string to it.
+/// Reinitializes the UART driver and writes a string to it.
 ///
 /// This is intended for use in situations where the UART may be in an unknown state or the global
 /// instance may be locked, such as in an exception handler or panic handler.
@@ -60,7 +60,7 @@
     let _ = uart.write_str(s);
 }
 
-/// Reinitialises the UART driver and writes a formatted string to it.
+/// Reinitializes the UART driver and writes a formatted string to it.
 ///
 /// This is intended for use in situations where the UART may be in an unknown state or the global
 /// instance may be locked, such as in an exception handler or panic handler.
@@ -71,7 +71,7 @@
 
 /// Prints the given formatted string to the console, followed by a newline.
 ///
-/// Panics if the console has not yet been initialised. May hang if used in an exception context;
+/// Panics if the console has not yet been initialized. May hang if used in an exception context;
 /// use `eprintln!` instead.
 macro_rules! println {
     () => ($crate::console::write_str("\n"));
diff --git a/vmbase/src/entry.rs b/vmbase/src/entry.rs
index 8cdfe77..b19efce 100644
--- a/vmbase/src/entry.rs
+++ b/vmbase/src/entry.rs
@@ -14,12 +14,60 @@
 
 //! Rust entry point.
 
-use crate::{console, power::shutdown};
+use crate::{
+    bionic, console, heap, logger,
+    power::{reboot, shutdown},
+    rand,
+};
+use core::mem::size_of;
+use hyp::{self, get_mmio_guard};
+
+fn try_console_init() -> Result<(), hyp::Error> {
+    console::init();
+
+    if let Some(mmio_guard) = get_mmio_guard() {
+        mmio_guard.enroll()?;
+        mmio_guard.validate_granule()?;
+        mmio_guard.map(console::BASE_ADDRESS)?;
+    }
+
+    Ok(())
+}
 
 /// This is the entry point to the Rust code, called from the binary entry point in `entry.S`.
 #[no_mangle]
 extern "C" fn rust_entry(x0: u64, x1: u64, x2: u64, x3: u64) -> ! {
-    console::init();
+    // SAFETY: Only called once, from here, and inaccessible to client code.
+    unsafe { heap::init() };
+
+    if try_console_init().is_err() {
+        // Don't panic (or log) here to avoid accessing the console.
+        reboot()
+    }
+
+    logger::init().expect("Failed to initialize the logger");
+    // We initialize the logger to Off (like the log crate) and clients should log::set_max_level.
+
+    const SIZE_OF_STACK_GUARD: usize = size_of::<u64>();
+    let mut stack_guard = [0u8; SIZE_OF_STACK_GUARD];
+    // We keep a null byte at the top of the stack guard to act as a string terminator.
+    let random_guard = &mut stack_guard[..(SIZE_OF_STACK_GUARD - 1)];
+
+    if let Err(e) = rand::init() {
+        panic!("Failed to initialize a source of entropy: {e}");
+    }
+
+    if let Err(e) = rand::fill_with_entropy(random_guard) {
+        panic!("Failed to get stack canary entropy: {e}");
+    }
+
+    bionic::__get_tls().stack_guard = u64::from_ne_bytes(stack_guard);
+
+    // Note: If rust_entry ever returned (which it shouldn't by being -> !), the compiler-injected
+    // stack guard comparison would detect a mismatch and call __stack_chk_fail.
+
+    // SAFETY: `main` is provided by the application using the `main!` macro, and we make sure it
+    // has the right type.
     unsafe {
         main(x0, x1, x2, x3);
     }
@@ -33,16 +81,21 @@
 
 /// Marks the main function of the binary.
 ///
+/// Once main is entered, it can assume that:
+/// - The panic_handler has been configured and panic!() and friends are available;
+/// - The global_allocator has been configured and heap memory is available;
+/// - The logger has been configured and the log::{info, warn, error, ...} macros are available.
+///
 /// Example:
 ///
 /// ```rust
-/// use vmbase::{logger, main};
+/// use vmbase::main;
 /// use log::{info, LevelFilter};
 ///
 /// main!(my_main);
 ///
 /// fn my_main() {
-///     logger::init(LevelFilter::Info).unwrap();
+///     log::set_max_level(LevelFilter::Info);
 ///     info!("Hello world");
 /// }
 /// ```
diff --git a/vmbase/src/exceptions.rs b/vmbase/src/exceptions.rs
new file mode 100644
index 0000000..7833334
--- /dev/null
+++ b/vmbase/src/exceptions.rs
@@ -0,0 +1,139 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Helper functions and structs for exception handlers.
+
+use crate::{
+    console, eprintln,
+    memory::{page_4kb_of, MemoryTrackerError},
+    read_sysreg,
+};
+use aarch64_paging::paging::VirtualAddress;
+use core::fmt;
+
+const UART_PAGE: usize = page_4kb_of(console::BASE_ADDRESS);
+
+/// Represents an error that can occur while handling an exception.
+#[derive(Debug)]
+pub enum HandleExceptionError {
+    /// The page table is unavailable.
+    PageTableUnavailable,
+    /// The page table has not been initialized.
+    PageTableNotInitialized,
+    /// An internal error occurred in the memory tracker.
+    InternalError(MemoryTrackerError),
+    /// An unknown exception occurred.
+    UnknownException,
+}
+
+impl From<MemoryTrackerError> for HandleExceptionError {
+    fn from(other: MemoryTrackerError) -> Self {
+        Self::InternalError(other)
+    }
+}
+
+impl fmt::Display for HandleExceptionError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::PageTableUnavailable => write!(f, "Page table is not available."),
+            Self::PageTableNotInitialized => write!(f, "Page table is not initialized."),
+            Self::InternalError(e) => write!(f, "Error while updating page table: {e}"),
+            Self::UnknownException => write!(f, "An unknown exception occurred, not handled."),
+        }
+    }
+}
+
+/// Represents the possible types of exception syndrome register (ESR) values.
+#[derive(Debug, PartialEq, Copy, Clone)]
+pub enum Esr {
+    /// Data abort due to translation fault.
+    DataAbortTranslationFault,
+    /// Data abort due to permission fault.
+    DataAbortPermissionFault,
+    /// Data abort due to a synchronous external abort.
+    DataAbortSyncExternalAbort,
+    /// An unknown ESR value.
+    Unknown(usize),
+}
+
+impl Esr {
+    const EXT_DABT_32BIT: usize = 0x96000010;
+    const TRANSL_FAULT_BASE_32BIT: usize = 0x96000004;
+    const TRANSL_FAULT_ISS_MASK_32BIT: usize = !0x143;
+    const PERM_FAULT_BASE_32BIT: usize = 0x9600004C;
+    const PERM_FAULT_ISS_MASK_32BIT: usize = !0x103;
+}
+
+impl From<usize> for Esr {
+    fn from(esr: usize) -> Self {
+        if esr == Self::EXT_DABT_32BIT {
+            Self::DataAbortSyncExternalAbort
+        } else if esr & Self::TRANSL_FAULT_ISS_MASK_32BIT == Self::TRANSL_FAULT_BASE_32BIT {
+            Self::DataAbortTranslationFault
+        } else if esr & Self::PERM_FAULT_ISS_MASK_32BIT == Self::PERM_FAULT_BASE_32BIT {
+            Self::DataAbortPermissionFault
+        } else {
+            Self::Unknown(esr)
+        }
+    }
+}
+
+impl fmt::Display for Esr {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::DataAbortSyncExternalAbort => write!(f, "Synchronous external abort"),
+            Self::DataAbortTranslationFault => write!(f, "Translation fault"),
+            Self::DataAbortPermissionFault => write!(f, "Permission fault"),
+            Self::Unknown(v) => write!(f, "Unknown exception esr={v:#08x}"),
+        }
+    }
+}
+/// A struct representing an Armv8 exception.
+pub struct ArmException {
+    /// The value of the exception syndrome register.
+    pub esr: Esr,
+    /// The faulting virtual address read from the fault address register.
+    pub far: VirtualAddress,
+}
+
+impl fmt::Display for ArmException {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "ArmException: esr={}, far={}", self.esr, self.far)
+    }
+}
+
+impl ArmException {
+    /// Reads the values of the EL1 exception syndrome register (`esr_el1`)
+    /// and fault address register (`far_el1`) and returns a new instance of
+    /// `ArmException` with these values.
+    pub fn from_el1_regs() -> Self {
+        let esr: Esr = read_sysreg!("esr_el1").into();
+        let far = read_sysreg!("far_el1");
+        Self { esr, far: VirtualAddress(far) }
+    }
+
+    /// Prints the details of an obj and the exception, excluding UART exceptions.
+    pub fn print<T: fmt::Display>(&self, exception_name: &str, obj: T, elr: u64) {
+        // Don't print to the UART if we are handling an exception it could raise.
+        if !self.is_uart_exception() {
+            eprintln!("{exception_name}");
+            eprintln!("{obj}");
+            eprintln!("{}, elr={:#08x}", self, elr);
+        }
+    }
+
+    fn is_uart_exception(&self) -> bool {
+        self.esr == Esr::DataAbortSyncExternalAbort && page_4kb_of(self.far.0) == UART_PAGE
+    }
+}
diff --git a/vmbase/src/fdt.rs b/vmbase/src/fdt.rs
new file mode 100644
index 0000000..4101f7e
--- /dev/null
+++ b/vmbase/src/fdt.rs
@@ -0,0 +1,54 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! High-level FDT functions.
+
+use core::ops::Range;
+use cstr::cstr;
+use libfdt::{self, Fdt, FdtError};
+
+/// Represents information about a SWIOTLB buffer.
+#[derive(Debug)]
+pub struct SwiotlbInfo {
+    /// The address of the SWIOTLB buffer, if available.
+    pub addr: Option<usize>,
+    /// The size of the SWIOTLB buffer.
+    pub size: usize,
+    /// The alignment of the SWIOTLB buffer, if available.
+    pub align: Option<usize>,
+}
+
+impl SwiotlbInfo {
+    /// Creates a `SwiotlbInfo` struct from the given device tree.
+    pub fn new_from_fdt(fdt: &Fdt) -> libfdt::Result<SwiotlbInfo> {
+        let node =
+            fdt.compatible_nodes(cstr!("restricted-dma-pool"))?.next().ok_or(FdtError::NotFound)?;
+
+        let (addr, size, align) = if let Some(mut reg) = node.reg()? {
+            let reg = reg.next().ok_or(FdtError::NotFound)?;
+            let size = reg.size.ok_or(FdtError::NotFound)?;
+            (Some(reg.addr.try_into().unwrap()), size.try_into().unwrap(), None)
+        } else {
+            let size = node.getprop_u64(cstr!("size"))?.ok_or(FdtError::NotFound)?;
+            let align = node.getprop_u64(cstr!("alignment"))?.ok_or(FdtError::NotFound)?;
+            (None, size.try_into().unwrap(), Some(align.try_into().unwrap()))
+        };
+        Ok(Self { addr, size, align })
+    }
+
+    /// Returns the fixed range of memory mapped by the SWIOTLB buffer, if available.
+    pub fn fixed_range(&self) -> Option<Range<usize>> {
+        self.addr.map(|addr| addr..addr + self.size)
+    }
+}
diff --git a/pvmfw/src/heap.rs b/vmbase/src/heap.rs
similarity index 78%
rename from pvmfw/src/heap.rs
rename to vmbase/src/heap.rs
index 151049e..99c06aa 100644
--- a/pvmfw/src/heap.rs
+++ b/vmbase/src/heap.rs
@@ -27,15 +27,31 @@
 
 use buddy_system_allocator::LockedHeap;
 
-/// 128 KiB
-const HEAP_SIZE: usize = 0x20000;
-static mut HEAP: [u8; HEAP_SIZE] = [0; HEAP_SIZE];
+/// Configures the size of the global allocator.
+#[macro_export]
+macro_rules! configure_heap {
+    ($len:expr) => {
+        static mut __HEAP_ARRAY: [u8; $len] = [0; $len];
+        #[export_name = "HEAP"]
+        // SAFETY: HEAP will only be accessed once as mut, from init().
+        static mut __HEAP: &'static mut [u8] = unsafe { &mut __HEAP_ARRAY };
+    };
+}
+
+extern "Rust" {
+    /// Slice used by the global allocator, configured using configure_heap!().
+    static mut HEAP: &'static mut [u8];
+}
 
 #[global_allocator]
 static HEAP_ALLOCATOR: LockedHeap<32> = LockedHeap::<32>::new();
 
-/// SAFETY: Must be called no more than once.
-pub unsafe fn init() {
+/// Initialize the global allocator.
+///
+/// # Safety
+///
+/// Must be called no more than once.
+pub(crate) unsafe fn init() {
     // SAFETY: Nothing else accesses this memory, and we hand it over to the heap to manage and
     // never touch it again. The heap is locked, so there cannot be any races.
     let (start, size) = unsafe { (HEAP.as_mut_ptr() as usize, HEAP.len()) };
@@ -49,12 +65,12 @@
 pub fn aligned_boxed_slice(size: usize, align: usize) -> Option<Box<[u8]>> {
     let size = NonZeroUsize::new(size)?.get();
     let layout = Layout::from_size_align(size, align).ok()?;
-    // SAFETY - We verify that `size` and the returned `ptr` are non-null.
+    // SAFETY: We verify that `size` and the returned `ptr` are non-null.
     let ptr = unsafe { alloc(layout) };
     let ptr = NonNull::new(ptr)?.as_ptr();
     let slice_ptr = ptr::slice_from_raw_parts_mut(ptr, size);
 
-    // SAFETY - The memory was allocated using the proper layout by our global_allocator.
+    // SAFETY: The memory was allocated using the proper layout by our global_allocator.
     Some(unsafe { Box::from_raw(slice_ptr) })
 }
 
@@ -65,13 +81,26 @@
 
 #[no_mangle]
 unsafe extern "C" fn calloc(nmemb: usize, size: usize) -> *mut c_void {
-    let Some(size) = nmemb.checked_mul(size) else {
-        return ptr::null_mut()
-    };
+    let Some(size) = nmemb.checked_mul(size) else { return ptr::null_mut() };
     allocate(size, true).map_or(ptr::null_mut(), |p| p.cast::<c_void>().as_ptr())
 }
 
 #[no_mangle]
+unsafe extern "C" fn __memset_chk(
+    dest: *mut c_void,
+    val: u8,
+    len: usize,
+    destlen: usize,
+) -> *mut c_void {
+    assert!(len <= destlen, "memset buffer overflow detected");
+    // SAFETY: `dest` is valid for writes of `len` bytes.
+    unsafe {
+        ptr::write_bytes(dest, val, len);
+    }
+    dest
+}
+
+#[no_mangle]
 /// SAFETY: ptr must be null or point to a currently-allocated block returned by allocate (either
 /// directly or via malloc or calloc). Note that this function is called directly from C, so we have
 /// to trust that the C code is doing the right thing; there are checks below which will catch some
@@ -84,9 +113,9 @@
         heap_range.contains(&(ptr.as_ptr() as *const u8)),
         "free() called on a pointer that is not part of the HEAP: {ptr:?}"
     );
+    // SAFETY: ptr is non-null and was allocated by allocate, which prepends a correctly aligned
+    // usize.
     let (ptr, size) = unsafe {
-        // SAFETY: ptr is non-null and was allocated by allocate, which prepends a correctly aligned
-        // usize.
         let ptr = ptr.cast::<usize>().as_ptr().offset(-1);
         (ptr, *ptr)
     };
diff --git a/pvmfw/src/hvc.rs b/vmbase/src/hvc.rs
similarity index 76%
rename from pvmfw/src/hvc.rs
rename to vmbase/src/hvc.rs
index 1e2bca2..1197143 100644
--- a/pvmfw/src/hvc.rs
+++ b/vmbase/src/hvc.rs
@@ -16,30 +16,28 @@
 
 pub mod trng;
 use self::trng::Error;
-use psci::smccc::{
+use smccc::{
     error::{positive_or_error_64, success_or_error_64},
     hvc64,
 };
 
-// TODO(b/272226230): Move all the trng functions to trng module
 const ARM_SMCCC_TRNG_VERSION: u32 = 0x8400_0050;
-#[allow(dead_code)]
 const ARM_SMCCC_TRNG_FEATURES: u32 = 0x8400_0051;
 #[allow(dead_code)]
 const ARM_SMCCC_TRNG_GET_UUID: u32 = 0x8400_0052;
 #[allow(dead_code)]
 const ARM_SMCCC_TRNG_RND32: u32 = 0x8400_0053;
-const ARM_SMCCC_TRNG_RND64: u32 = 0xc400_0053;
+pub const ARM_SMCCC_TRNG_RND64: u32 = 0xc400_0053;
 
 /// Returns the (major, minor) version tuple, as defined by the SMCCC TRNG.
-pub fn trng_version() -> trng::Result<(u16, u16)> {
+pub fn trng_version() -> trng::Result<trng::Version> {
     let args = [0u64; 17];
 
     let version = positive_or_error_64::<Error>(hvc64(ARM_SMCCC_TRNG_VERSION, args)[0])?;
-    Ok(((version >> 16) as u16, version as u16))
+    (version as u32 as i32).try_into()
 }
 
-pub type TrngRng64Entropy = (u64, u64, u64);
+pub type TrngRng64Entropy = [u64; 3];
 
 pub fn trng_rnd64(nbits: u64) -> trng::Result<TrngRng64Entropy> {
     let mut args = [0u64; 17];
@@ -48,5 +46,12 @@
     let regs = hvc64(ARM_SMCCC_TRNG_RND64, args);
     success_or_error_64::<Error>(regs[0])?;
 
-    Ok((regs[1], regs[2], regs[3]))
+    Ok([regs[1], regs[2], regs[3]])
+}
+
+pub fn trng_features(fid: u32) -> trng::Result<u64> {
+    let mut args = [0u64; 17];
+    args[0] = fid as u64;
+
+    positive_or_error_64::<Error>(hvc64(ARM_SMCCC_TRNG_FEATURES, args)[0])
 }
diff --git a/pvmfw/src/hvc/trng.rs b/vmbase/src/hvc/trng.rs
similarity index 68%
rename from pvmfw/src/hvc/trng.rs
rename to vmbase/src/hvc/trng.rs
index 6331d66..efb86f6 100644
--- a/pvmfw/src/hvc/trng.rs
+++ b/vmbase/src/hvc/trng.rs
@@ -16,7 +16,7 @@
 use core::result;
 
 /// Standard SMCCC TRNG error values as described in DEN 0098 1.0 REL0.
-#[derive(Debug, Clone)]
+#[derive(Debug, Clone, PartialEq)]
 pub enum Error {
     /// The call is not supported by the implementation.
     NotSupported,
@@ -55,3 +55,40 @@
 }
 
 pub type Result<T> = result::Result<T, Error>;
+
+/// A version of the SMCCC TRNG interface.
+#[derive(Copy, Clone, Eq, Ord, PartialEq, PartialOrd)]
+pub struct Version {
+    pub major: u16,
+    pub minor: u16,
+}
+
+impl fmt::Display for Version {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "{}.{}", self.major, self.minor)
+    }
+}
+
+impl fmt::Debug for Version {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        fmt::Display::fmt(self, f)
+    }
+}
+
+impl TryFrom<i32> for Version {
+    type Error = Error;
+
+    fn try_from(value: i32) -> core::result::Result<Self, Error> {
+        if value < 0 {
+            Err((value as i64).into())
+        } else {
+            Ok(Self { major: (value >> 16) as u16, minor: value as u16 })
+        }
+    }
+}
+
+impl From<Version> for u32 {
+    fn from(version: Version) -> Self {
+        (u32::from(version.major) << 16) | u32::from(version.minor)
+    }
+}
diff --git a/vmbase/src/layout.rs b/vmbase/src/layout.rs
index ead4f8e..f7e8170 100644
--- a/vmbase/src/layout.rs
+++ b/vmbase/src/layout.rs
@@ -14,18 +14,29 @@
 
 //! Memory layout.
 
+pub mod crosvm;
+
+use crate::console::BASE_ADDRESS;
+use crate::linker::__stack_chk_guard;
+use aarch64_paging::paging::VirtualAddress;
 use core::ops::Range;
 use core::ptr::addr_of;
 
+/// First address that can't be translated by a level 1 TTBR0_EL1.
+pub const MAX_VIRT_ADDR: usize = 1 << 40;
+
 /// Get an address from a linker-defined symbol.
 #[macro_export]
 macro_rules! linker_addr {
     ($symbol:ident) => {{
-        unsafe { addr_of!($crate::linker::$symbol) as usize }
+        // SAFETY: We're just getting the address of an extern static symbol provided by the linker,
+        // not dereferencing it.
+        let addr = unsafe { addr_of!($crate::linker::$symbol) as usize };
+        VirtualAddress(addr)
     }};
 }
 
-/// Get the address range between a pair of linker-defined symbols.
+/// Gets the virtual address range between a pair of linker-defined symbols.
 #[macro_export]
 macro_rules! linker_region {
     ($begin:ident,$end:ident) => {{
@@ -37,50 +48,65 @@
 }
 
 /// Memory reserved for the DTB.
-pub fn dtb_range() -> Range<usize> {
+pub fn dtb_range() -> Range<VirtualAddress> {
     linker_region!(dtb_begin, dtb_end)
 }
 
 /// Executable code.
-pub fn text_range() -> Range<usize> {
+pub fn text_range() -> Range<VirtualAddress> {
     linker_region!(text_begin, text_end)
 }
 
 /// Read-only data.
-pub fn rodata_range() -> Range<usize> {
+pub fn rodata_range() -> Range<VirtualAddress> {
     linker_region!(rodata_begin, rodata_end)
 }
 
 /// Initialised writable data.
-pub fn data_range() -> Range<usize> {
+pub fn data_range() -> Range<VirtualAddress> {
     linker_region!(data_begin, data_end)
 }
 
-/// Zero-initialised writable data.
-pub fn bss_range() -> Range<usize> {
+/// Zero-initialized writable data.
+pub fn bss_range() -> Range<VirtualAddress> {
     linker_region!(bss_begin, bss_end)
 }
 
 /// Writable data region for the stack.
-pub fn stack_range(stack_size: usize) -> Range<usize> {
+pub fn stack_range(stack_size: usize) -> Range<VirtualAddress> {
     let end = linker_addr!(init_stack_pointer);
-    let start = end.checked_sub(stack_size).unwrap();
+    let start = VirtualAddress(end.0.checked_sub(stack_size).unwrap());
     assert!(start >= linker_addr!(stack_limit));
 
     start..end
 }
 
 /// All writable sections, excluding the stack.
-pub fn scratch_range() -> Range<usize> {
+pub fn scratch_range() -> Range<VirtualAddress> {
     linker_region!(eh_stack_limit, bss_end)
 }
 
+/// UART console range.
+pub fn console_uart_range() -> Range<VirtualAddress> {
+    const CONSOLE_LEN: usize = 1; // `uart::Uart` only uses one u8 register.
+
+    VirtualAddress(BASE_ADDRESS)..VirtualAddress(BASE_ADDRESS + CONSOLE_LEN)
+}
+
 /// Read-write data (original).
-pub fn data_load_address() -> usize {
+pub fn data_load_address() -> VirtualAddress {
     linker_addr!(data_lma)
 }
 
 /// End of the binary image.
-pub fn binary_end() -> usize {
+pub fn binary_end() -> VirtualAddress {
     linker_addr!(bin_end)
 }
+
+/// Value of __stack_chk_guard.
+pub fn stack_chk_guard() -> u64 {
+    // SAFETY: __stack_chk_guard shouldn't have any mutable aliases unless the stack overflows. If
+    // it does, then there could be undefined behaviour all over the program, but we want to at
+    // least have a chance at catching it.
+    unsafe { addr_of!(__stack_chk_guard).read_volatile() }
+}
diff --git a/vmbase/src/layout/crosvm.rs b/vmbase/src/layout/crosvm.rs
new file mode 100644
index 0000000..d859b20
--- /dev/null
+++ b/vmbase/src/layout/crosvm.rs
@@ -0,0 +1,32 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Memory layout for crosvm for aarch64 architecture.
+//!
+//! https://crosvm.dev/book/appendix/memory_layout.html#common-layout
+
+use core::ops::Range;
+
+/// The start address of MMIO space.
+pub const MMIO_START: usize = 0x0;
+/// The end address of MMIO space.
+pub const MMIO_END: usize = 0x4000_0000;
+/// MMIO range.
+pub const MMIO_RANGE: Range<usize> = MMIO_START..MMIO_END;
+
+/// The start of the system's contiguous "main" memory.
+pub const MEM_START: usize = 0x8000_0000;
+
+/// Size of the FDT region as defined by crosvm, both in kernel and BIOS modes.
+pub const FDT_MAX_SIZE: usize = 2 << 20;
diff --git a/vmbase/src/lib.rs b/vmbase/src/lib.rs
index d577802..431e899 100644
--- a/vmbase/src/lib.rs
+++ b/vmbase/src/lib.rs
@@ -16,16 +16,25 @@
 
 #![no_std]
 
-mod bionic;
+extern crate alloc;
+
+pub mod arch;
+pub mod bionic;
 pub mod console;
 mod entry;
+pub mod exceptions;
+pub mod fdt;
+pub mod heap;
+mod hvc;
 pub mod layout;
-mod linker;
+pub mod linker;
 pub mod logger;
+pub mod memory;
 pub mod power;
+pub mod rand;
 pub mod uart;
-
-pub use bionic::STACK_CHK_GUARD;
+pub mod util;
+pub mod virtio;
 
 use core::panic::PanicInfo;
 use power::reboot;
diff --git a/vmbase/src/logger.rs b/vmbase/src/logger.rs
index 94dc880..9130918 100644
--- a/vmbase/src/logger.rs
+++ b/vmbase/src/logger.rs
@@ -18,23 +18,22 @@
 //! Note: may not work if the VM is in an inconsistent state. Exception handlers
 //! should avoid using this logger and instead print with eprintln!.
 
-extern crate log;
-
 use crate::console::println;
 use core::sync::atomic::{AtomicBool, Ordering};
-use log::{LevelFilter, Log, Metadata, Record, SetLoggerError};
+use log::{Log, Metadata, Record, SetLoggerError};
 
 struct Logger {
     is_enabled: AtomicBool,
 }
-static mut LOGGER: Logger = Logger::new();
+
+static LOGGER: Logger = Logger::new();
 
 impl Logger {
     const fn new() -> Self {
         Self { is_enabled: AtomicBool::new(true) }
     }
 
-    fn swap_enabled(&mut self, enabled: bool) -> bool {
+    fn swap_enabled(&self, enabled: bool) -> bool {
         self.is_enabled.swap(enabled, Ordering::Relaxed)
     }
 }
@@ -60,27 +59,19 @@
 
 impl SuppressGuard {
     fn new() -> Self {
-        // Safe because it modifies an atomic.
-        unsafe { Self { old_enabled: LOGGER.swap_enabled(false) } }
+        Self { old_enabled: LOGGER.swap_enabled(false) }
     }
 }
 
 impl Drop for SuppressGuard {
     fn drop(&mut self) {
-        // Safe because it modifies an atomic.
-        unsafe {
-            LOGGER.swap_enabled(self.old_enabled);
-        }
+        LOGGER.swap_enabled(self.old_enabled);
     }
 }
 
 /// Initialize vmbase logger with a given max logging level.
-pub fn init(max_level: LevelFilter) -> Result<(), SetLoggerError> {
-    // Safe because it only sets the global logger.
-    unsafe {
-        log::set_logger(&LOGGER)?;
-    }
-    log::set_max_level(max_level);
+pub(crate) fn init() -> Result<(), SetLoggerError> {
+    log::set_logger(&LOGGER)?;
     Ok(())
 }
 
diff --git a/vmbase/src/memory.rs b/vmbase/src/memory.rs
new file mode 100644
index 0000000..2f72fc4
--- /dev/null
+++ b/vmbase/src/memory.rs
@@ -0,0 +1,34 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Memory management.
+
+mod dbm;
+mod error;
+mod page_table;
+mod shared;
+mod util;
+
+pub use error::MemoryTrackerError;
+pub use page_table::PageTable;
+pub use shared::{
+    handle_permission_fault, handle_translation_fault, MemoryRange, MemoryTracker, MEMORY,
+};
+pub use util::{
+    flush, flushed_zeroize, min_dcache_line_size, page_4kb_of, PAGE_SIZE, SIZE_128KB, SIZE_2MB,
+    SIZE_4KB, SIZE_4MB, SIZE_64KB,
+};
+
+pub(crate) use shared::{alloc_shared, dealloc_shared};
+pub(crate) use util::{phys_to_virt, virt_to_phys};
diff --git a/vmbase/src/memory/dbm.rs b/vmbase/src/memory/dbm.rs
new file mode 100644
index 0000000..108cd5d
--- /dev/null
+++ b/vmbase/src/memory/dbm.rs
@@ -0,0 +1,88 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Hardware management of the access flag and dirty state.
+
+use super::page_table::PageTable;
+use super::util::flush_region;
+use crate::{dsb, isb, read_sysreg, tlbi, write_sysreg};
+use aarch64_paging::paging::{Attributes, Descriptor, MemoryRegion};
+
+/// Sets whether the hardware management of access and dirty state is enabled with
+/// the given boolean.
+pub(super) fn set_dbm_enabled(enabled: bool) {
+    if !dbm_available() {
+        return;
+    }
+    // TCR_EL1.{HA,HD} bits controlling hardware management of access and dirty state
+    const TCR_EL1_HA_HD_BITS: usize = 3 << 39;
+
+    let mut tcr = read_sysreg!("tcr_el1");
+    if enabled {
+        tcr |= TCR_EL1_HA_HD_BITS
+    } else {
+        tcr &= !TCR_EL1_HA_HD_BITS
+    };
+    // SAFETY: Changing this bit in TCR doesn't affect Rust's view of memory.
+    unsafe { write_sysreg!("tcr_el1", tcr) }
+    isb!();
+}
+
+/// Returns `true` if hardware dirty state management is available.
+fn dbm_available() -> bool {
+    if !cfg!(feature = "cpu_feat_hafdbs") {
+        return false;
+    }
+    // Hardware dirty bit management available flag (ID_AA64MMFR1_EL1.HAFDBS[1])
+    const DBM_AVAILABLE: usize = 1 << 1;
+    read_sysreg!("id_aa64mmfr1_el1") & DBM_AVAILABLE != 0
+}
+
+/// Flushes a memory range the descriptor refers to, if the descriptor is in writable-dirty state.
+pub(super) fn flush_dirty_range(
+    va_range: &MemoryRegion,
+    desc: &Descriptor,
+    _level: usize,
+) -> Result<(), ()> {
+    let flags = desc.flags().ok_or(())?;
+    if !flags.contains(Attributes::READ_ONLY) {
+        flush_region(va_range.start().0, va_range.len());
+    }
+    Ok(())
+}
+
+/// Clears read-only flag on a PTE, making it writable-dirty. Used when dirty state is managed
+/// in software to handle permission faults on read-only descriptors.
+pub(super) fn mark_dirty_block(
+    va_range: &MemoryRegion,
+    desc: &mut Descriptor,
+    _level: usize,
+) -> Result<(), ()> {
+    let flags = desc.flags().ok_or(())?;
+    if flags.contains(Attributes::DBM) {
+        assert!(flags.contains(Attributes::READ_ONLY), "unexpected PTE writable state");
+        desc.modify_flags(Attributes::empty(), Attributes::READ_ONLY);
+        // Updating the read-only bit of a PTE requires TLB invalidation.
+        // A TLB maintenance instruction is only guaranteed to be complete after a DSB instruction.
+        // An ISB instruction is required to ensure the effects of completed TLB maintenance
+        // instructions are visible to instructions fetched afterwards.
+        // See ARM ARM E2.3.10, and G5.9.
+        tlbi!("vale1", PageTable::ASID, va_range.start().0);
+        dsb!("ish");
+        isb!();
+        Ok(())
+    } else {
+        Err(())
+    }
+}
diff --git a/vmbase/src/memory/error.rs b/vmbase/src/memory/error.rs
new file mode 100644
index 0000000..273db56
--- /dev/null
+++ b/vmbase/src/memory/error.rs
@@ -0,0 +1,77 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Error relating to memory management.
+
+use core::fmt;
+
+/// Errors for MemoryTracker operations.
+#[derive(Debug, Clone)]
+pub enum MemoryTrackerError {
+    /// Tried to modify the memory base address.
+    DifferentBaseAddress,
+    /// Tried to shrink to a larger memory size.
+    SizeTooLarge,
+    /// Tracked regions would not fit in memory size.
+    SizeTooSmall,
+    /// Reached limit number of tracked regions.
+    Full,
+    /// Region is out of the tracked memory address space.
+    OutOfRange,
+    /// New region overlaps with tracked regions.
+    Overlaps,
+    /// Region couldn't be mapped.
+    FailedToMap,
+    /// Region couldn't be unmapped.
+    FailedToUnmap,
+    /// Error from the interaction with the hypervisor.
+    Hypervisor(hyp::Error),
+    /// Failure to set `SHARED_MEMORY`.
+    SharedMemorySetFailure,
+    /// Failure to set `SHARED_POOL`.
+    SharedPoolSetFailure,
+    /// Invalid page table entry.
+    InvalidPte,
+    /// Failed to flush memory region.
+    FlushRegionFailed,
+    /// Failed to set PTE dirty state.
+    SetPteDirtyFailed,
+}
+
+impl fmt::Display for MemoryTrackerError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::DifferentBaseAddress => write!(f, "Received different base address"),
+            Self::SizeTooLarge => write!(f, "Tried to shrink to a larger memory size"),
+            Self::SizeTooSmall => write!(f, "Tracked regions would not fit in memory size"),
+            Self::Full => write!(f, "Reached limit number of tracked regions"),
+            Self::OutOfRange => write!(f, "Region is out of the tracked memory address space"),
+            Self::Overlaps => write!(f, "New region overlaps with tracked regions"),
+            Self::FailedToMap => write!(f, "Failed to map the new region"),
+            Self::FailedToUnmap => write!(f, "Failed to unmap the new region"),
+            Self::Hypervisor(e) => e.fmt(f),
+            Self::SharedMemorySetFailure => write!(f, "Failed to set SHARED_MEMORY"),
+            Self::SharedPoolSetFailure => write!(f, "Failed to set SHARED_POOL"),
+            Self::InvalidPte => write!(f, "Page table entry is not valid"),
+            Self::FlushRegionFailed => write!(f, "Failed to flush memory region"),
+            Self::SetPteDirtyFailed => write!(f, "Failed to set PTE dirty state"),
+        }
+    }
+}
+
+impl From<hyp::Error> for MemoryTrackerError {
+    fn from(e: hyp::Error) -> Self {
+        Self::Hypervisor(e)
+    }
+}
diff --git a/vmbase/src/memory/page_table.rs b/vmbase/src/memory/page_table.rs
new file mode 100644
index 0000000..dc346e7
--- /dev/null
+++ b/vmbase/src/memory/page_table.rs
@@ -0,0 +1,153 @@
+// Copyright 2022, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Page table management.
+
+use crate::read_sysreg;
+use aarch64_paging::idmap::IdMap;
+use aarch64_paging::paging::{Attributes, Constraints, Descriptor, MemoryRegion};
+use aarch64_paging::MapError;
+use core::result;
+
+/// Software bit used to indicate a device that should be lazily mapped.
+pub(super) const MMIO_LAZY_MAP_FLAG: Attributes = Attributes::SWFLAG_0;
+
+// We assume that:
+// - MAIR_EL1.Attr0 = "Device-nGnRE memory" (0b0000_0100)
+// - MAIR_EL1.Attr1 = "Normal memory, Outer & Inner WB Non-transient, R/W-Allocate" (0b1111_1111)
+const MEMORY: Attributes =
+    Attributes::VALID.union(Attributes::NORMAL).union(Attributes::NON_GLOBAL);
+const DEVICE_LAZY: Attributes =
+    MMIO_LAZY_MAP_FLAG.union(Attributes::DEVICE_NGNRE).union(Attributes::EXECUTE_NEVER);
+const DEVICE: Attributes = DEVICE_LAZY.union(Attributes::VALID);
+const CODE: Attributes = MEMORY.union(Attributes::READ_ONLY);
+const DATA: Attributes = MEMORY.union(Attributes::EXECUTE_NEVER);
+const RODATA: Attributes = DATA.union(Attributes::READ_ONLY);
+const DATA_DBM: Attributes = RODATA.union(Attributes::DBM);
+
+type Result<T> = result::Result<T, MapError>;
+
+/// High-level API for managing MMU mappings.
+pub struct PageTable {
+    idmap: IdMap,
+}
+
+impl From<IdMap> for PageTable {
+    fn from(idmap: IdMap) -> Self {
+        Self { idmap }
+    }
+}
+
+impl Default for PageTable {
+    fn default() -> Self {
+        const TCR_EL1_TG0_MASK: usize = 0x3;
+        const TCR_EL1_TG0_SHIFT: u32 = 14;
+        const TCR_EL1_TG0_SIZE_4KB: usize = 0b00;
+
+        const TCR_EL1_T0SZ_MASK: usize = 0x3f;
+        const TCR_EL1_T0SZ_SHIFT: u32 = 0;
+        const TCR_EL1_T0SZ_39_VA_BITS: usize = 64 - 39;
+
+        // Ensure that entry.S wasn't changed without updating the assumptions about TCR_EL1 here.
+        let tcr_el1 = read_sysreg!("tcr_el1");
+        assert_eq!((tcr_el1 >> TCR_EL1_TG0_SHIFT) & TCR_EL1_TG0_MASK, TCR_EL1_TG0_SIZE_4KB);
+        assert_eq!((tcr_el1 >> TCR_EL1_T0SZ_SHIFT) & TCR_EL1_T0SZ_MASK, TCR_EL1_T0SZ_39_VA_BITS);
+
+        IdMap::new(Self::ASID, Self::ROOT_LEVEL).into()
+    }
+}
+
+impl PageTable {
+    /// ASID used for the underlying page table.
+    pub const ASID: usize = 1;
+
+    /// Level of the underlying page table's root page.
+    const ROOT_LEVEL: usize = 1;
+
+    /// Activates the page table.
+    ///
+    /// # Safety
+    ///
+    /// The caller must ensure that the PageTable instance has valid and identical mappings for the
+    /// code being currently executed. Otherwise, the Rust execution model (on which the borrow
+    /// checker relies) would be violated.
+    pub unsafe fn activate(&mut self) {
+        // SAFETY: the caller of this unsafe function asserts that switching to a different
+        // translation is safe
+        unsafe { self.idmap.activate() }
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as lazily mapped
+    /// nGnRE device memory.
+    pub fn map_device_lazy(&mut self, range: &MemoryRegion) -> Result<()> {
+        self.idmap.map_range(range, DEVICE_LAZY)
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as valid device
+    /// nGnRE device memory.
+    pub fn map_device(&mut self, range: &MemoryRegion) -> Result<()> {
+        self.idmap.map_range(range, DEVICE)
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as non-executable
+    /// and writable normal memory.
+    pub fn map_data(&mut self, range: &MemoryRegion) -> Result<()> {
+        self.idmap.map_range(range, DATA)
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as non-executable,
+    /// read-only and writable-clean normal memory.
+    pub fn map_data_dbm(&mut self, range: &MemoryRegion) -> Result<()> {
+        // Map the region down to pages to minimize the size of the regions that will be marked
+        // dirty once a store hits them, but also to ensure that we can clear the read-only
+        // attribute while the mapping is live without causing break-before-make (BBM) violations.
+        // The latter implies that we must avoid the use of the contiguous hint as well.
+        self.idmap.map_range_with_constraints(
+            range,
+            DATA_DBM,
+            Constraints::NO_BLOCK_MAPPINGS | Constraints::NO_CONTIGUOUS_HINT,
+        )
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as read-only
+    /// normal memory.
+    pub fn map_code(&mut self, range: &MemoryRegion) -> Result<()> {
+        self.idmap.map_range(range, CODE)
+    }
+
+    /// Maps the given range of virtual addresses to the physical addresses as non-executable
+    /// and read-only normal memory.
+    pub fn map_rodata(&mut self, range: &MemoryRegion) -> Result<()> {
+        self.idmap.map_range(range, RODATA)
+    }
+
+    /// Applies the provided updater function to a number of PTEs corresponding to a given memory
+    /// range.
+    pub fn modify_range<F>(&mut self, range: &MemoryRegion, f: &F) -> Result<()>
+    where
+        F: Fn(&MemoryRegion, &mut Descriptor, usize) -> result::Result<(), ()>,
+    {
+        self.idmap.modify_range(range, f)
+    }
+
+    /// Applies the provided callback function to a number of PTEs corresponding to a given memory
+    /// range.
+    pub fn walk_range<F>(&self, range: &MemoryRegion, f: &F) -> Result<()>
+    where
+        F: Fn(&MemoryRegion, &Descriptor, usize) -> result::Result<(), ()>,
+    {
+        let mut callback = |mr: &MemoryRegion, d: &Descriptor, l: usize| f(mr, d, l);
+        self.idmap.walk_range(range, &mut callback)
+    }
+}
diff --git a/vmbase/src/memory/shared.rs b/vmbase/src/memory/shared.rs
new file mode 100644
index 0000000..dd433d4
--- /dev/null
+++ b/vmbase/src/memory/shared.rs
@@ -0,0 +1,531 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Shared memory management.
+
+use super::dbm::{flush_dirty_range, mark_dirty_block, set_dbm_enabled};
+use super::error::MemoryTrackerError;
+use super::page_table::{PageTable, MMIO_LAZY_MAP_FLAG};
+use super::util::{page_4kb_of, virt_to_phys};
+use crate::dsb;
+use crate::exceptions::HandleExceptionError;
+use crate::util::RangeExt as _;
+use aarch64_paging::paging::{
+    Attributes, Descriptor, MemoryRegion as VaRange, VirtualAddress, BITS_PER_LEVEL, PAGE_SIZE,
+};
+use alloc::alloc::{alloc_zeroed, dealloc, handle_alloc_error};
+use alloc::boxed::Box;
+use alloc::vec::Vec;
+use buddy_system_allocator::{FrameAllocator, LockedFrameAllocator};
+use core::alloc::Layout;
+use core::cmp::max;
+use core::mem::size_of;
+use core::num::NonZeroUsize;
+use core::ops::Range;
+use core::ptr::NonNull;
+use core::result;
+use hyp::{get_mem_sharer, get_mmio_guard, MMIO_GUARD_GRANULE_SIZE};
+use log::{debug, error, trace};
+use once_cell::race::OnceBox;
+use spin::mutex::SpinMutex;
+use tinyvec::ArrayVec;
+
+/// A global static variable representing the system memory tracker, protected by a spin mutex.
+pub static MEMORY: SpinMutex<Option<MemoryTracker>> = SpinMutex::new(None);
+
+static SHARED_POOL: OnceBox<LockedFrameAllocator<32>> = OnceBox::new();
+static SHARED_MEMORY: SpinMutex<Option<MemorySharer>> = SpinMutex::new(None);
+
+/// Memory range.
+pub type MemoryRange = Range<usize>;
+
+fn get_va_range(range: &MemoryRange) -> VaRange {
+    VaRange::new(range.start, range.end)
+}
+
+type Result<T> = result::Result<T, MemoryTrackerError>;
+
+#[derive(Clone, Copy, Debug, Default, PartialEq)]
+enum MemoryType {
+    #[default]
+    ReadOnly,
+    ReadWrite,
+}
+
+#[derive(Clone, Debug, Default)]
+struct MemoryRegion {
+    range: MemoryRange,
+    mem_type: MemoryType,
+}
+
+/// Tracks non-overlapping slices of main memory.
+pub struct MemoryTracker {
+    total: MemoryRange,
+    page_table: PageTable,
+    regions: ArrayVec<[MemoryRegion; MemoryTracker::CAPACITY]>,
+    mmio_regions: ArrayVec<[MemoryRange; MemoryTracker::MMIO_CAPACITY]>,
+    mmio_range: MemoryRange,
+    payload_range: Option<MemoryRange>,
+}
+
+impl MemoryTracker {
+    const CAPACITY: usize = 5;
+    const MMIO_CAPACITY: usize = 5;
+
+    /// Creates a new instance from an active page table, covering the maximum RAM size.
+    pub fn new(
+        mut page_table: PageTable,
+        total: MemoryRange,
+        mmio_range: MemoryRange,
+        payload_range: Option<Range<VirtualAddress>>,
+    ) -> Self {
+        assert!(
+            !total.overlaps(&mmio_range),
+            "MMIO space should not overlap with the main memory region."
+        );
+
+        // Activate dirty state management first, otherwise we may get permission faults immediately
+        // after activating the new page table. This has no effect before the new page table is
+        // activated because none of the entries in the initial idmap have the DBM flag.
+        set_dbm_enabled(true);
+
+        debug!("Activating dynamic page table...");
+        // SAFETY: page_table duplicates the static mappings for everything that the Rust code is
+        // aware of so activating it shouldn't have any visible effect.
+        unsafe { page_table.activate() }
+        debug!("... Success!");
+
+        Self {
+            total,
+            page_table,
+            regions: ArrayVec::new(),
+            mmio_regions: ArrayVec::new(),
+            mmio_range,
+            payload_range: payload_range.map(|r| r.start.0..r.end.0),
+        }
+    }
+
+    /// Resize the total RAM size.
+    ///
+    /// This function fails if it contains regions that are not included within the new size.
+    pub fn shrink(&mut self, range: &MemoryRange) -> Result<()> {
+        if range.start != self.total.start {
+            return Err(MemoryTrackerError::DifferentBaseAddress);
+        }
+        if self.total.end < range.end {
+            return Err(MemoryTrackerError::SizeTooLarge);
+        }
+        if !self.regions.iter().all(|r| r.range.is_within(range)) {
+            return Err(MemoryTrackerError::SizeTooSmall);
+        }
+
+        self.total = range.clone();
+        Ok(())
+    }
+
+    /// Allocate the address range for a const slice; returns None if failed.
+    pub fn alloc_range(&mut self, range: &MemoryRange) -> Result<MemoryRange> {
+        let region = MemoryRegion { range: range.clone(), mem_type: MemoryType::ReadOnly };
+        self.check_allocatable(&region)?;
+        self.page_table.map_rodata(&get_va_range(range)).map_err(|e| {
+            error!("Error during range allocation: {e}");
+            MemoryTrackerError::FailedToMap
+        })?;
+        self.add(region)
+    }
+
+    /// Allocates the address range for a const slice.
+    ///
+    /// # Safety
+    ///
+    /// Callers of this method need to ensure that the `range` is valid for mapping as read-only
+    /// data.
+    pub unsafe fn alloc_range_outside_main_memory(
+        &mut self,
+        range: &MemoryRange,
+    ) -> Result<MemoryRange> {
+        let region = MemoryRegion { range: range.clone(), mem_type: MemoryType::ReadOnly };
+        self.check_no_overlap(&region)?;
+        self.page_table.map_rodata(&get_va_range(range)).map_err(|e| {
+            error!("Error during range allocation: {e}");
+            MemoryTrackerError::FailedToMap
+        })?;
+        self.add(region)
+    }
+
+    /// Allocate the address range for a mutable slice; returns None if failed.
+    pub fn alloc_range_mut(&mut self, range: &MemoryRange) -> Result<MemoryRange> {
+        let region = MemoryRegion { range: range.clone(), mem_type: MemoryType::ReadWrite };
+        self.check_allocatable(&region)?;
+        self.page_table.map_data_dbm(&get_va_range(range)).map_err(|e| {
+            error!("Error during mutable range allocation: {e}");
+            MemoryTrackerError::FailedToMap
+        })?;
+        self.add(region)
+    }
+
+    /// Allocate the address range for a const slice; returns None if failed.
+    pub fn alloc(&mut self, base: usize, size: NonZeroUsize) -> Result<MemoryRange> {
+        self.alloc_range(&(base..(base + size.get())))
+    }
+
+    /// Allocate the address range for a mutable slice; returns None if failed.
+    pub fn alloc_mut(&mut self, base: usize, size: NonZeroUsize) -> Result<MemoryRange> {
+        self.alloc_range_mut(&(base..(base + size.get())))
+    }
+
+    /// Checks that the given range of addresses is within the MMIO region, and then maps it
+    /// appropriately.
+    pub fn map_mmio_range(&mut self, range: MemoryRange) -> Result<()> {
+        if !range.is_within(&self.mmio_range) {
+            return Err(MemoryTrackerError::OutOfRange);
+        }
+        if self.mmio_regions.iter().any(|r| range.overlaps(r)) {
+            return Err(MemoryTrackerError::Overlaps);
+        }
+        if self.mmio_regions.len() == self.mmio_regions.capacity() {
+            return Err(MemoryTrackerError::Full);
+        }
+
+        if get_mmio_guard().is_some() {
+            self.page_table.map_device_lazy(&get_va_range(&range)).map_err(|e| {
+                error!("Error during lazy MMIO device mapping: {e}");
+                MemoryTrackerError::FailedToMap
+            })?;
+        } else {
+            self.page_table.map_device(&get_va_range(&range)).map_err(|e| {
+                error!("Error during MMIO device mapping: {e}");
+                MemoryTrackerError::FailedToMap
+            })?;
+        }
+
+        if self.mmio_regions.try_push(range).is_some() {
+            return Err(MemoryTrackerError::Full);
+        }
+
+        Ok(())
+    }
+
+    /// Checks that the memory region meets the following criteria:
+    /// - It is within the range of the `MemoryTracker`.
+    /// - It does not overlap with any previously allocated regions.
+    /// - The `regions` ArrayVec has sufficient capacity to add it.
+    fn check_allocatable(&self, region: &MemoryRegion) -> Result<()> {
+        if !region.range.is_within(&self.total) {
+            return Err(MemoryTrackerError::OutOfRange);
+        }
+        self.check_no_overlap(region)
+    }
+
+    /// Checks that the given region doesn't overlap with any other previously allocated regions,
+    /// and that the regions ArrayVec has capacity to add it.
+    fn check_no_overlap(&self, region: &MemoryRegion) -> Result<()> {
+        if self.regions.iter().any(|r| region.range.overlaps(&r.range)) {
+            return Err(MemoryTrackerError::Overlaps);
+        }
+        if self.regions.len() == self.regions.capacity() {
+            return Err(MemoryTrackerError::Full);
+        }
+        Ok(())
+    }
+
+    fn add(&mut self, region: MemoryRegion) -> Result<MemoryRange> {
+        if self.regions.try_push(region).is_some() {
+            return Err(MemoryTrackerError::Full);
+        }
+
+        Ok(self.regions.last().unwrap().range.clone())
+    }
+
+    /// Unmaps all tracked MMIO regions from the MMIO guard.
+    ///
+    /// Note that they are not unmapped from the page table.
+    pub fn mmio_unmap_all(&mut self) -> Result<()> {
+        if get_mmio_guard().is_some() {
+            for range in &self.mmio_regions {
+                self.page_table
+                    .walk_range(&get_va_range(range), &mmio_guard_unmap_page)
+                    .map_err(|_| MemoryTrackerError::FailedToUnmap)?;
+            }
+        }
+        Ok(())
+    }
+
+    /// Initialize the shared heap to dynamically share memory from the global allocator.
+    pub fn init_dynamic_shared_pool(&mut self, granule: usize) -> Result<()> {
+        const INIT_CAP: usize = 10;
+
+        let previous = SHARED_MEMORY.lock().replace(MemorySharer::new(granule, INIT_CAP));
+        if previous.is_some() {
+            return Err(MemoryTrackerError::SharedMemorySetFailure);
+        }
+
+        SHARED_POOL
+            .set(Box::new(LockedFrameAllocator::new()))
+            .map_err(|_| MemoryTrackerError::SharedPoolSetFailure)?;
+
+        Ok(())
+    }
+
+    /// Initialize the shared heap from a static region of memory.
+    ///
+    /// Some hypervisors such as Gunyah do not support a MemShare API for guest
+    /// to share its memory with host. Instead they allow host to designate part
+    /// of guest memory as "shared" ahead of guest starting its execution. The
+    /// shared memory region is indicated in swiotlb node. On such platforms use
+    /// a separate heap to allocate buffers that can be shared with host.
+    pub fn init_static_shared_pool(&mut self, range: Range<usize>) -> Result<()> {
+        let size = NonZeroUsize::new(range.len()).unwrap();
+        let range = self.alloc_mut(range.start, size)?;
+        let shared_pool = LockedFrameAllocator::<32>::new();
+
+        shared_pool.lock().insert(range);
+
+        SHARED_POOL
+            .set(Box::new(shared_pool))
+            .map_err(|_| MemoryTrackerError::SharedPoolSetFailure)?;
+
+        Ok(())
+    }
+
+    /// Initialize the shared heap to use heap memory directly.
+    ///
+    /// When running on "non-protected" hypervisors which permit host direct accesses to guest
+    /// memory, there is no need to perform any memory sharing and/or allocate buffers from a
+    /// dedicated region so this function instructs the shared pool to use the global allocator.
+    pub fn init_heap_shared_pool(&mut self) -> Result<()> {
+        // As MemorySharer only calls MEM_SHARE methods if the hypervisor supports them, internally
+        // using init_dynamic_shared_pool() on a non-protected platform will make use of the heap
+        // without any actual "dynamic memory sharing" taking place and, as such, the granule may
+        // be set to the one of the global_allocator i.e. a byte.
+        self.init_dynamic_shared_pool(size_of::<u8>())
+    }
+
+    /// Unshares any memory that may have been shared.
+    pub fn unshare_all_memory(&mut self) {
+        drop(SHARED_MEMORY.lock().take());
+    }
+
+    /// Handles translation fault for blocks flagged for lazy MMIO mapping by enabling the page
+    /// table entry and MMIO guard mapping the block. Breaks apart a block entry if required.
+    fn handle_mmio_fault(&mut self, addr: VirtualAddress) -> Result<()> {
+        let page_start = VirtualAddress(page_4kb_of(addr.0));
+        assert_eq!(page_start.0 % MMIO_GUARD_GRANULE_SIZE, 0);
+        let page_range: VaRange = (page_start..page_start + MMIO_GUARD_GRANULE_SIZE).into();
+        let mmio_guard = get_mmio_guard().unwrap();
+        // This must be safe and free from break-before-make (BBM) violations, given that the
+        // initial lazy mapping has the valid bit cleared, and each newly created valid descriptor
+        // created inside the mapping has the same size and alignment.
+        self.page_table
+            .modify_range(&page_range, &|_: &VaRange, desc: &mut Descriptor, _: usize| {
+                let flags = desc.flags().expect("Unsupported PTE flags set");
+                if flags.contains(MMIO_LAZY_MAP_FLAG) && !flags.contains(Attributes::VALID) {
+                    desc.modify_flags(Attributes::VALID, Attributes::empty());
+                    Ok(())
+                } else {
+                    Err(())
+                }
+            })
+            .map_err(|_| MemoryTrackerError::InvalidPte)?;
+        Ok(mmio_guard.map(page_start.0)?)
+    }
+
+    /// Flush all memory regions marked as writable-dirty.
+    fn flush_dirty_pages(&mut self) -> Result<()> {
+        // Collect memory ranges for which dirty state is tracked.
+        let writable_regions =
+            self.regions.iter().filter(|r| r.mem_type == MemoryType::ReadWrite).map(|r| &r.range);
+        // Execute a barrier instruction to ensure all hardware updates to the page table have been
+        // observed before reading PTE flags to determine dirty state.
+        dsb!("ish");
+        // Now flush writable-dirty pages in those regions.
+        for range in writable_regions.chain(self.payload_range.as_ref().into_iter()) {
+            self.page_table
+                .walk_range(&get_va_range(range), &flush_dirty_range)
+                .map_err(|_| MemoryTrackerError::FlushRegionFailed)?;
+        }
+        Ok(())
+    }
+
+    /// Handles permission fault for read-only blocks by setting writable-dirty state.
+    /// In general, this should be called from the exception handler when hardware dirty
+    /// state management is disabled or unavailable.
+    fn handle_permission_fault(&mut self, addr: VirtualAddress) -> Result<()> {
+        self.page_table
+            .modify_range(&(addr..addr + 1).into(), &mark_dirty_block)
+            .map_err(|_| MemoryTrackerError::SetPteDirtyFailed)
+    }
+}
+
+impl Drop for MemoryTracker {
+    fn drop(&mut self) {
+        set_dbm_enabled(false);
+        self.flush_dirty_pages().unwrap();
+        self.unshare_all_memory();
+    }
+}
+
+/// Allocates a memory range of at least the given size and alignment that is shared with the host.
+/// Returns a pointer to the buffer.
+pub(crate) fn alloc_shared(layout: Layout) -> hyp::Result<NonNull<u8>> {
+    assert_ne!(layout.size(), 0);
+    let Some(buffer) = try_shared_alloc(layout) else {
+        handle_alloc_error(layout);
+    };
+
+    trace!("Allocated shared buffer at {buffer:?} with {layout:?}");
+    Ok(buffer)
+}
+
+fn try_shared_alloc(layout: Layout) -> Option<NonNull<u8>> {
+    let mut shared_pool = SHARED_POOL.get().unwrap().lock();
+
+    if let Some(buffer) = shared_pool.alloc_aligned(layout) {
+        Some(NonNull::new(buffer as _).unwrap())
+    } else if let Some(shared_memory) = SHARED_MEMORY.lock().as_mut() {
+        // Adjusts the layout size to the max of the next power of two and the alignment,
+        // as this is the actual size of the memory allocated in `alloc_aligned()`.
+        let size = max(layout.size().next_power_of_two(), layout.align());
+        let refill_layout = Layout::from_size_align(size, layout.align()).unwrap();
+        shared_memory.refill(&mut shared_pool, refill_layout);
+        shared_pool.alloc_aligned(layout).map(|buffer| NonNull::new(buffer as _).unwrap())
+    } else {
+        None
+    }
+}
+
+/// Unshares and deallocates a memory range which was previously allocated by `alloc_shared`.
+///
+/// The layout passed in must be the same layout passed to the original `alloc_shared` call.
+///
+/// # Safety
+///
+/// The memory must have been allocated by `alloc_shared` with the same layout, and not yet
+/// deallocated.
+pub(crate) unsafe fn dealloc_shared(vaddr: NonNull<u8>, layout: Layout) -> hyp::Result<()> {
+    SHARED_POOL.get().unwrap().lock().dealloc_aligned(vaddr.as_ptr() as usize, layout);
+
+    trace!("Deallocated shared buffer at {vaddr:?} with {layout:?}");
+    Ok(())
+}
+
+/// Allocates memory on the heap and shares it with the host.
+///
+/// Unshares all pages when dropped.
+struct MemorySharer {
+    granule: usize,
+    frames: Vec<(usize, Layout)>,
+}
+
+impl MemorySharer {
+    /// Constructs a new `MemorySharer` instance with the specified granule size and capacity.
+    /// `granule` must be a power of 2.
+    fn new(granule: usize, capacity: usize) -> Self {
+        assert!(granule.is_power_of_two());
+        Self { granule, frames: Vec::with_capacity(capacity) }
+    }
+
+    /// Gets from the global allocator a granule-aligned region that suits `hint` and share it.
+    fn refill(&mut self, pool: &mut FrameAllocator<32>, hint: Layout) {
+        let layout = hint.align_to(self.granule).unwrap().pad_to_align();
+        assert_ne!(layout.size(), 0);
+        // SAFETY: layout has non-zero size.
+        let Some(shared) = NonNull::new(unsafe { alloc_zeroed(layout) }) else {
+            handle_alloc_error(layout);
+        };
+
+        let base = shared.as_ptr() as usize;
+        let end = base.checked_add(layout.size()).unwrap();
+
+        if let Some(mem_sharer) = get_mem_sharer() {
+            trace!("Sharing memory region {:#x?}", base..end);
+            for vaddr in (base..end).step_by(self.granule) {
+                let vaddr = NonNull::new(vaddr as *mut _).unwrap();
+                mem_sharer.share(virt_to_phys(vaddr).try_into().unwrap()).unwrap();
+            }
+        }
+
+        self.frames.push((base, layout));
+        pool.add_frame(base, end);
+    }
+}
+
+impl Drop for MemorySharer {
+    fn drop(&mut self) {
+        while let Some((base, layout)) = self.frames.pop() {
+            if let Some(mem_sharer) = get_mem_sharer() {
+                let end = base.checked_add(layout.size()).unwrap();
+                trace!("Unsharing memory region {:#x?}", base..end);
+                for vaddr in (base..end).step_by(self.granule) {
+                    let vaddr = NonNull::new(vaddr as *mut _).unwrap();
+                    mem_sharer.unshare(virt_to_phys(vaddr).try_into().unwrap()).unwrap();
+                }
+            }
+
+            // SAFETY: The region was obtained from alloc_zeroed() with the recorded layout.
+            unsafe { dealloc(base as *mut _, layout) };
+        }
+    }
+}
+
+/// MMIO guard unmaps page
+fn mmio_guard_unmap_page(
+    va_range: &VaRange,
+    desc: &Descriptor,
+    level: usize,
+) -> result::Result<(), ()> {
+    let flags = desc.flags().expect("Unsupported PTE flags set");
+    // This function will be called on an address range that corresponds to a device. Only if a
+    // page has been accessed (written to or read from), will it contain the VALID flag and be MMIO
+    // guard mapped. Therefore, we can skip unmapping invalid pages, they were never MMIO guard
+    // mapped anyway.
+    if flags.contains(Attributes::VALID) {
+        assert!(
+            flags.contains(MMIO_LAZY_MAP_FLAG),
+            "Attempting MMIO guard unmap for non-device pages"
+        );
+        const MMIO_GUARD_GRANULE_SHIFT: u32 = MMIO_GUARD_GRANULE_SIZE.ilog2() - PAGE_SIZE.ilog2();
+        const MMIO_GUARD_GRANULE_LEVEL: usize =
+            3 - (MMIO_GUARD_GRANULE_SHIFT as usize / BITS_PER_LEVEL);
+        assert_eq!(
+            level, MMIO_GUARD_GRANULE_LEVEL,
+            "Failed to break down block mapping before MMIO guard mapping"
+        );
+        let page_base = va_range.start().0;
+        assert_eq!(page_base % MMIO_GUARD_GRANULE_SIZE, 0);
+        // Since mmio_guard_map takes IPAs, if pvmfw moves non-ID address mapping, page_base
+        // should be converted to IPA. However, since 0x0 is a valid MMIO address, we don't use
+        // virt_to_phys here, and just pass page_base instead.
+        get_mmio_guard().unwrap().unmap(page_base).map_err(|e| {
+            error!("Error MMIO guard unmapping: {e}");
+        })?;
+    }
+    Ok(())
+}
+
+/// Handles a translation fault with the given fault address register (FAR).
+#[inline]
+pub fn handle_translation_fault(far: VirtualAddress) -> result::Result<(), HandleExceptionError> {
+    let mut guard = MEMORY.try_lock().ok_or(HandleExceptionError::PageTableUnavailable)?;
+    let memory = guard.as_mut().ok_or(HandleExceptionError::PageTableNotInitialized)?;
+    Ok(memory.handle_mmio_fault(far)?)
+}
+
+/// Handles a permission fault with the given fault address register (FAR).
+#[inline]
+pub fn handle_permission_fault(far: VirtualAddress) -> result::Result<(), HandleExceptionError> {
+    let mut guard = MEMORY.try_lock().ok_or(HandleExceptionError::PageTableUnavailable)?;
+    let memory = guard.as_mut().ok_or(HandleExceptionError::PageTableNotInitialized)?;
+    Ok(memory.handle_permission_fault(far)?)
+}
diff --git a/vmbase/src/memory/util.rs b/vmbase/src/memory/util.rs
new file mode 100644
index 0000000..2b75414
--- /dev/null
+++ b/vmbase/src/memory/util.rs
@@ -0,0 +1,101 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Utility functions for memory management.
+
+use crate::read_sysreg;
+use crate::util::unchecked_align_down;
+use core::arch::asm;
+use core::ptr::NonNull;
+use zeroize::Zeroize;
+
+/// The size of a 4KB memory in bytes.
+pub const SIZE_4KB: usize = 4 << 10;
+/// The size of a 64KB memory in bytes.
+pub const SIZE_64KB: usize = 64 << 10;
+/// The size of a 128KB memory in bytes.
+pub const SIZE_128KB: usize = 128 << 10;
+/// The size of a 2MB memory in bytes.
+pub const SIZE_2MB: usize = 2 << 20;
+/// The size of a 4MB memory in bytes.
+pub const SIZE_4MB: usize = 4 << 20;
+
+/// The page size in bytes assumed by vmbase - 4 KiB.
+pub const PAGE_SIZE: usize = SIZE_4KB;
+
+/// Reads the number of words in the smallest cache line of all the data caches and unified caches.
+#[inline]
+pub fn min_dcache_line_size() -> usize {
+    const DMINLINE_SHIFT: usize = 16;
+    const DMINLINE_MASK: usize = 0xf;
+    let ctr_el0 = read_sysreg!("ctr_el0");
+
+    // DminLine: log2 of the number of words in the smallest cache line of all the data caches.
+    let dminline = (ctr_el0 >> DMINLINE_SHIFT) & DMINLINE_MASK;
+
+    1 << dminline
+}
+
+/// Flush `size` bytes of data cache by virtual address.
+#[inline]
+pub(super) fn flush_region(start: usize, size: usize) {
+    let line_size = min_dcache_line_size();
+    let end = start + size;
+    let start = unchecked_align_down(start, line_size);
+
+    for line in (start..end).step_by(line_size) {
+        // SAFETY: Clearing cache lines shouldn't have Rust-visible side effects.
+        unsafe {
+            asm!(
+                "dc cvau, {x}",
+                x = in(reg) line,
+                options(nomem, nostack, preserves_flags),
+            )
+        }
+    }
+}
+
+/// Flushes the slice to the point of unification.
+#[inline]
+pub fn flush(reg: &[u8]) {
+    flush_region(reg.as_ptr() as usize, reg.len())
+}
+
+/// Overwrites the slice with zeroes, to the point of unification.
+#[inline]
+pub fn flushed_zeroize(reg: &mut [u8]) {
+    reg.zeroize();
+    flush(reg)
+}
+
+/// Computes the address of the 4KiB page containing a given address.
+pub const fn page_4kb_of(addr: usize) -> usize {
+    unchecked_align_down(addr, SIZE_4KB)
+}
+
+/// Returns the intermediate physical address corresponding to the given virtual address.
+///
+/// As we use identity mapping for everything, this is just a cast, but it's useful to use it to be
+/// explicit about where we are converting from virtual to physical address.
+pub(crate) fn virt_to_phys(vaddr: NonNull<u8>) -> usize {
+    vaddr.as_ptr() as _
+}
+
+/// Returns a pointer for the virtual address corresponding to the given non-zero intermediate
+/// physical address.
+///
+/// Panics if `paddr` is 0.
+pub(crate) fn phys_to_virt(paddr: usize) -> NonNull<u8> {
+    NonNull::new(paddr as _).unwrap()
+}
diff --git a/vmbase/src/power.rs b/vmbase/src/power.rs
index 10a5e5d..9240acf 100644
--- a/vmbase/src/power.rs
+++ b/vmbase/src/power.rs
@@ -14,13 +14,16 @@
 
 //! Functions for shutting down the VM.
 
-use psci::{system_off, system_reset};
+use smccc::{
+    psci::{system_off, system_reset},
+    Hvc,
+};
 
 /// Makes a `PSCI_SYSTEM_OFF` call to shutdown the VM.
 ///
 /// Panics if it returns an error.
 pub fn shutdown() -> ! {
-    system_off().unwrap();
+    system_off::<Hvc>().unwrap();
     #[allow(clippy::empty_loop)]
     loop {}
 }
@@ -29,7 +32,7 @@
 ///
 /// Panics if it returns an error.
 pub fn reboot() -> ! {
-    system_reset().unwrap();
+    system_reset::<Hvc>().unwrap();
     #[allow(clippy::empty_loop)]
     loop {}
 }
diff --git a/vmbase/src/rand.rs b/vmbase/src/rand.rs
new file mode 100644
index 0000000..b31bd4b
--- /dev/null
+++ b/vmbase/src/rand.rs
@@ -0,0 +1,155 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Functions and drivers for obtaining true entropy.
+
+use crate::hvc;
+use core::fmt;
+use core::mem::size_of;
+use smccc::{self, Hvc};
+use zerocopy::AsBytes as _;
+
+type Entropy = [u8; size_of::<u64>() * 3];
+
+/// Error type for rand operations.
+pub enum Error {
+    /// No source of entropy found.
+    NoEntropySource,
+    /// Error during architectural SMCCC call.
+    Smccc(smccc::arch::Error),
+    /// Error during SMCCC TRNG call.
+    Trng(hvc::trng::Error),
+    /// Unsupported SMCCC version.
+    UnsupportedSmcccVersion(smccc::arch::Version),
+    /// Unsupported SMCCC TRNG version.
+    UnsupportedTrngVersion(hvc::trng::Version),
+}
+
+impl From<smccc::arch::Error> for Error {
+    fn from(e: smccc::arch::Error) -> Self {
+        Self::Smccc(e)
+    }
+}
+
+impl From<hvc::trng::Error> for Error {
+    fn from(e: hvc::trng::Error) -> Self {
+        Self::Trng(e)
+    }
+}
+
+/// Result type for rand operations.
+pub type Result<T> = core::result::Result<T, Error>;
+
+impl fmt::Display for Error {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::NoEntropySource => write!(f, "No source of entropy available"),
+            Self::Smccc(e) => write!(f, "Architectural SMCCC error: {e}"),
+            Self::Trng(e) => write!(f, "SMCCC TRNG error: {e}"),
+            Self::UnsupportedSmcccVersion(v) => write!(f, "Unsupported SMCCC version {v}"),
+            Self::UnsupportedTrngVersion(v) => write!(f, "Unsupported SMCCC TRNG version {v}"),
+        }
+    }
+}
+
+impl fmt::Debug for Error {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        write!(f, "{self}")
+    }
+}
+
+/// Configure the source of entropy.
+pub(crate) fn init() -> Result<()> {
+    // SMCCC TRNG requires SMCCC v1.1.
+    match smccc::arch::version::<Hvc>()? {
+        smccc::arch::Version { major: 1, minor } if minor >= 1 => (),
+        version => return Err(Error::UnsupportedSmcccVersion(version)),
+    }
+
+    // TRNG_RND requires SMCCC TRNG v1.0.
+    match hvc::trng_version()? {
+        hvc::trng::Version { major: 1, minor: _ } => (),
+        version => return Err(Error::UnsupportedTrngVersion(version)),
+    }
+
+    // TRNG_RND64 doesn't define any special capabilities so ignore the successful result.
+    let _ = hvc::trng_features(hvc::ARM_SMCCC_TRNG_RND64).map_err(|e| {
+        if e == hvc::trng::Error::NotSupported {
+            // SMCCC TRNG is currently our only source of entropy.
+            Error::NoEntropySource
+        } else {
+            e.into()
+        }
+    })?;
+
+    Ok(())
+}
+
+/// Fills a slice of bytes with true entropy.
+pub fn fill_with_entropy(s: &mut [u8]) -> Result<()> {
+    const MAX_BYTES_PER_CALL: usize = size_of::<Entropy>();
+
+    for chunk in s.chunks_mut(MAX_BYTES_PER_CALL) {
+        let entropy = repeat_trng_rnd(chunk.len())?;
+        chunk.clone_from_slice(&entropy[..chunk.len()]);
+    }
+
+    Ok(())
+}
+
+/// Returns an array where the first `n_bytes` bytes hold entropy.
+///
+/// The rest of the array should be ignored.
+fn repeat_trng_rnd(n_bytes: usize) -> Result<Entropy> {
+    loop {
+        if let Some(entropy) = rnd64(n_bytes)? {
+            return Ok(entropy);
+        }
+    }
+}
+
+/// Returns an array where the first `n_bytes` bytes hold entropy, if available.
+///
+/// The rest of the array should be ignored.
+fn rnd64(n_bytes: usize) -> Result<Option<Entropy>> {
+    let bits = usize::try_from(u8::BITS).unwrap();
+    let result = hvc::trng_rnd64((n_bytes * bits).try_into().unwrap());
+    let entropy = if matches!(result, Err(hvc::trng::Error::NoEntropy)) {
+        None
+    } else {
+        let r = result?;
+        // From the SMCCC TRNG:
+        //
+        //     A MAX_BITS-bits wide value (Entropy) is returned across X1 to X3.
+        //     The requested conditioned entropy is returned in Entropy[N-1:0].
+        //
+        //             X1     Entropy[191:128]
+        //             X2     Entropy[127:64]
+        //             X3     Entropy[63:0]
+        //
+        //     The bits in Entropy[MAX_BITS-1:N] are 0.
+        let reordered = [r[2].to_le(), r[1].to_le(), r[0].to_le()];
+
+        Some(reordered.as_bytes().try_into().unwrap())
+    };
+
+    Ok(entropy)
+}
+
+/// Generate an array of fixed-size initialized with true-random bytes.
+pub fn random_array<const N: usize>() -> Result<[u8; N]> {
+    let mut arr = [0; N];
+    fill_with_entropy(&mut arr)?;
+    Ok(arr)
+}
diff --git a/vmbase/src/uart.rs b/vmbase/src/uart.rs
index 0fc2494..09d747f 100644
--- a/vmbase/src/uart.rs
+++ b/vmbase/src/uart.rs
@@ -38,8 +38,8 @@
 
     /// Writes a single byte to the UART.
     pub fn write_byte(&self, byte: u8) {
-        // Safe because we know that the base address points to the control registers of an UART
-        // device which is appropriately mapped.
+        // SAFETY: We know that the base address points to the control registers of a UART device
+        // which is appropriately mapped.
         unsafe {
             write_volatile(self.base_address, byte);
         }
@@ -55,5 +55,5 @@
     }
 }
 
-// Safe because it just contains a pointer to device memory, which can be accessed from any context.
+// SAFETY: `Uart` just contains a pointer to device memory, which can be accessed from any context.
 unsafe impl Send for Uart {}
diff --git a/vmbase/src/util.rs b/vmbase/src/util.rs
new file mode 100644
index 0000000..8c230a1
--- /dev/null
+++ b/vmbase/src/util.rs
@@ -0,0 +1,93 @@
+// Copyright 2023, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Utility functions.
+
+use core::ops::Range;
+
+/// Flatten [[T; N]] into &[T]
+/// TODO: use slice::flatten when it graduates from experimental
+pub fn flatten<T, const N: usize>(original: &[[T; N]]) -> &[T] {
+    // SAFETY: no overflow because original (whose size is len()*N) is already in memory
+    let len = original.len() * N;
+    // SAFETY: [T] has the same layout as [T;N]
+    unsafe { core::slice::from_raw_parts(original.as_ptr().cast(), len) }
+}
+
+/// Computes the largest multiple of the provided alignment smaller or equal to the address.
+///
+/// Note: the result is undefined if alignment isn't a power of two.
+pub const fn unchecked_align_down(addr: usize, alignment: usize) -> usize {
+    addr & !(alignment - 1)
+}
+
+/// Computes the smallest multiple of the provided alignment larger or equal to the address.
+///
+/// Note: the result is undefined if alignment isn't a power of two and may wrap to 0.
+pub const fn unchecked_align_up(addr: usize, alignment: usize) -> usize {
+    unchecked_align_down(addr + alignment - 1, alignment)
+}
+
+/// Safe wrapper around unchecked_align_up() that validates its assumptions and doesn't wrap.
+pub const fn align_up(addr: usize, alignment: usize) -> Option<usize> {
+    if !alignment.is_power_of_two() {
+        None
+    } else if let Some(s) = addr.checked_add(alignment - 1) {
+        Some(unchecked_align_down(s, alignment))
+    } else {
+        None
+    }
+}
+
+/// Aligns the given address to the given alignment, if it is a power of two.
+///
+/// Returns `None` if the alignment isn't a power of two.
+#[allow(dead_code)] // Currently unused but might be needed again.
+const fn align_down(addr: usize, alignment: usize) -> Option<usize> {
+    if !alignment.is_power_of_two() {
+        None
+    } else {
+        Some(unchecked_align_down(addr, alignment))
+    }
+}
+
+/// Performs an integer division rounding up.
+///
+/// Note: Returns None if den isn't a power of two.
+pub const fn ceiling_div(num: usize, den: usize) -> Option<usize> {
+    let Some(r) = align_up(num, den) else {
+        return None;
+    };
+
+    r.checked_div(den)
+}
+
+/// Trait to check containment of one range within another.
+pub trait RangeExt {
+    /// Returns true if `self` is contained within the `other` range.
+    fn is_within(&self, other: &Self) -> bool;
+
+    /// Returns true if `self` overlaps with the `other` range.
+    fn overlaps(&self, other: &Self) -> bool;
+}
+
+impl<T: PartialOrd> RangeExt for Range<T> {
+    fn is_within(&self, other: &Self) -> bool {
+        self.start >= other.start && self.end <= other.end
+    }
+
+    fn overlaps(&self, other: &Self) -> bool {
+        self.start < other.end && other.start < self.end
+    }
+}
diff --git a/pvmfw/src/virtio.rs b/vmbase/src/virtio.rs
similarity index 96%
rename from pvmfw/src/virtio.rs
rename to vmbase/src/virtio.rs
index df916bc..fbe41e3 100644
--- a/pvmfw/src/virtio.rs
+++ b/vmbase/src/virtio.rs
@@ -16,3 +16,5 @@
 
 mod hal;
 pub mod pci;
+
+pub use hal::HalImpl;
diff --git a/pvmfw/src/virtio/hal.rs b/vmbase/src/virtio/hal.rs
similarity index 63%
rename from pvmfw/src/virtio/hal.rs
rename to vmbase/src/virtio/hal.rs
index 51567cd..0d3f445 100644
--- a/pvmfw/src/virtio/hal.rs
+++ b/vmbase/src/virtio/hal.rs
@@ -15,56 +15,58 @@
 //! HAL for the virtio_drivers crate.
 
 use super::pci::PCI_INFO;
-use crate::helpers::RangeExt as _;
 use crate::memory::{alloc_shared, dealloc_shared, phys_to_virt, virt_to_phys};
+use crate::util::RangeExt as _;
 use core::alloc::Layout;
 use core::mem::size_of;
 use core::ptr::{copy_nonoverlapping, NonNull};
 use log::trace;
 use virtio_drivers::{BufferDirection, Hal, PhysAddr, PAGE_SIZE};
 
+/// The alignment to use for the temporary buffers allocated by `HalImpl::share`. There doesn't seem
+/// to be any particular alignment required by VirtIO for these, so 16 bytes should be enough to
+/// allow appropriate alignment for whatever fields are accessed. `alloc_shared` will increase the
+/// alignment to the memory sharing granule size anyway.
+const SHARED_BUFFER_ALIGNMENT: usize = size_of::<u128>();
+
+/// HAL implementation for the virtio_drivers crate.
 pub struct HalImpl;
 
-/// Implements the `Hal` trait for `HalImpl`.
-///
-/// # Safety
-///
-/// Callers of this implementatation must follow the safety requirements documented in the `Hal`
-/// trait for the unsafe methods.
+/// SAFETY: See the 'Implementation Safety' comments on methods below for how they fulfill the
+/// safety requirements of the unsafe `Hal` trait.
 unsafe impl Hal for HalImpl {
-    /// Allocates the given number of contiguous physical pages of DMA memory for VirtIO use.
-    ///
     /// # Implementation Safety
     ///
     /// `dma_alloc` ensures the returned DMA buffer is not aliased with any other allocation or
-    ///  reference in the program until it is deallocated by `dma_dealloc` by allocating a unique
-    ///  block of memory using `alloc_shared` and returning a non-null pointer to it that is
-    ///  aligned to `PAGE_SIZE`.
+    /// reference in the program until it is deallocated by `dma_dealloc` by allocating a unique
+    /// block of memory using `alloc_shared`, which is guaranteed to allocate valid and unique
+    /// memory. We request an alignment of at least `PAGE_SIZE` from `alloc_shared`. We zero the
+    /// buffer before returning it.
     fn dma_alloc(pages: usize, _direction: BufferDirection) -> (PhysAddr, NonNull<u8>) {
-        let vaddr = alloc_shared(dma_layout(pages))
-            .expect("Failed to allocate and share VirtIO DMA range with host");
-        // TODO(ptosi): Move this zeroing to virtio_drivers, if it silently wants a zeroed region.
-        // SAFETY - vaddr points to a region allocated for the caller so is safe to access.
-        unsafe { core::ptr::write_bytes(vaddr.as_ptr(), 0, dma_layout(pages).size()) };
+        let layout = dma_layout(pages);
+        let vaddr =
+            alloc_shared(layout).expect("Failed to allocate and share VirtIO DMA range with host");
+        // SAFETY: vaddr points to a region allocated for the caller so is safe to access.
+        unsafe { core::ptr::write_bytes(vaddr.as_ptr(), 0, layout.size()) };
         let paddr = virt_to_phys(vaddr);
         (paddr, vaddr)
     }
 
     unsafe fn dma_dealloc(_paddr: PhysAddr, vaddr: NonNull<u8>, pages: usize) -> i32 {
-        // SAFETY - Memory was allocated by `dma_alloc` using `alloc_shared` with the same size.
+        // SAFETY: Memory was allocated by `dma_alloc` using `alloc_shared` with the same layout.
         unsafe { dealloc_shared(vaddr, dma_layout(pages)) }
             .expect("Failed to unshare VirtIO DMA range with host");
         0
     }
 
-    /// Converts a physical address used for MMIO to a virtual address which the driver can access.
-    ///
     /// # Implementation Safety
     ///
-    /// `mmio_phys_to_virt` satisfies the requirement by checking that the mapped memory region
-    /// is within the PCI MMIO range.
+    /// The returned pointer must be valid because the `paddr` describes a valid MMIO region, we
+    /// check that it is within the PCI MMIO range, and we previously mapped the entire PCI MMIO
+    /// range. It can't alias any other allocations because we previously validated in
+    /// `map_mmio_range` that the PCI MMIO range didn't overlap with any other memory ranges.
     unsafe fn mmio_phys_to_virt(paddr: PhysAddr, size: usize) -> NonNull<u8> {
-        let pci_info = PCI_INFO.get().expect("VirtIO HAL used before PCI_INFO was initialised");
+        let pci_info = PCI_INFO.get().expect("VirtIO HAL used before PCI_INFO was initialized");
         let bar_range = {
             let start = pci_info.bar_range.start.try_into().unwrap();
             let end = pci_info.bar_range.end.try_into().unwrap();
@@ -92,7 +94,7 @@
         if direction == BufferDirection::DriverToDevice {
             let src = buffer.cast::<u8>().as_ptr().cast_const();
             trace!("VirtIO bounce buffer at {bounce:?} (PA:{paddr:#x}) initialized from {src:?}");
-            // SAFETY - Both regions are valid, properly aligned, and don't overlap.
+            // SAFETY: Both regions are valid, properly aligned, and don't overlap.
             unsafe { copy_nonoverlapping(src, bounce.as_ptr(), size) };
         }
 
@@ -105,11 +107,11 @@
         if direction == BufferDirection::DeviceToDriver {
             let dest = buffer.cast::<u8>().as_ptr();
             trace!("VirtIO bounce buffer at {bounce:?} (PA:{paddr:#x}) copied back to {dest:?}");
-            // SAFETY - Both regions are valid, properly aligned, and don't overlap.
+            // SAFETY: Both regions are valid, properly aligned, and don't overlap.
             unsafe { copy_nonoverlapping(bounce.as_ptr(), dest, size) };
         }
 
-        // SAFETY - Memory was allocated by `share` using `alloc_shared` with the same size.
+        // SAFETY: Memory was allocated by `share` using `alloc_shared` with the same layout.
         unsafe { dealloc_shared(bounce, bb_layout(size)) }
             .expect("Failed to unshare and deallocate VirtIO bounce buffer");
     }
@@ -121,7 +123,5 @@
 }
 
 fn bb_layout(size: usize) -> Layout {
-    // In theory, it would be legal to align to 1-byte but use a larger alignment for good measure.
-    const VIRTIO_BOUNCE_BUFFER_ALIGN: usize = size_of::<u128>();
-    Layout::from_size_align(size, VIRTIO_BOUNCE_BUFFER_ALIGN).unwrap()
+    Layout::from_size_align(size, SHARED_BUFFER_ALIGNMENT).unwrap()
 }
diff --git a/vmbase/src/virtio/pci.rs b/vmbase/src/virtio/pci.rs
new file mode 100644
index 0000000..1d05c18
--- /dev/null
+++ b/vmbase/src/virtio/pci.rs
@@ -0,0 +1,122 @@
+// Copyright 2022, The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+//! Functions to scan the PCI bus for VirtIO devices.
+
+use crate::memory::{MemoryTracker, MemoryTrackerError};
+use alloc::boxed::Box;
+use core::fmt;
+use core::marker::PhantomData;
+use fdtpci::PciInfo;
+use log::debug;
+use once_cell::race::OnceBox;
+use virtio_drivers::{
+    device::{blk, socket},
+    transport::pci::{
+        bus::{BusDeviceIterator, PciRoot},
+        virtio_device_type, PciTransport,
+    },
+    Hal,
+};
+
+pub(super) static PCI_INFO: OnceBox<PciInfo> = OnceBox::new();
+
+/// PCI errors.
+#[derive(Debug, Clone)]
+pub enum PciError {
+    /// Attempted to initialize the PCI more than once.
+    DuplicateInitialization,
+    /// Failed to map PCI CAM.
+    CamMapFailed(MemoryTrackerError),
+    /// Failed to map PCI BAR.
+    BarMapFailed(MemoryTrackerError),
+}
+
+impl fmt::Display for PciError {
+    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+        match self {
+            Self::DuplicateInitialization => {
+                write!(f, "Attempted to initialize the PCI more than once.")
+            }
+            Self::CamMapFailed(e) => write!(f, "Failed to map PCI CAM: {e}"),
+            Self::BarMapFailed(e) => write!(f, "Failed to map PCI BAR: {e}"),
+        }
+    }
+}
+
+/// Prepares to use VirtIO PCI devices.
+///
+/// In particular:
+///
+/// 1. Maps the PCI CAM and BAR range in the page table and MMIO guard.
+/// 2. Stores the `PciInfo` for the VirtIO HAL to use later.
+/// 3. Creates and returns a `PciRoot`.
+///
+/// This must only be called once; it will panic if it is called a second time.
+pub fn initialize(pci_info: PciInfo, memory: &mut MemoryTracker) -> Result<PciRoot, PciError> {
+    PCI_INFO.set(Box::new(pci_info.clone())).map_err(|_| PciError::DuplicateInitialization)?;
+
+    memory.map_mmio_range(pci_info.cam_range.clone()).map_err(PciError::CamMapFailed)?;
+    let bar_range = pci_info.bar_range.start as usize..pci_info.bar_range.end as usize;
+    memory.map_mmio_range(bar_range).map_err(PciError::BarMapFailed)?;
+
+    // Safety: This is the only place where we call make_pci_root, and `PCI_INFO.set` above will
+    // panic if it is called a second time.
+    Ok(unsafe { pci_info.make_pci_root() })
+}
+
+/// Virtio Block device.
+pub type VirtIOBlk<T> = blk::VirtIOBlk<T, PciTransport>;
+
+/// Virtio Socket device.
+///
+/// Spec: https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html 5.10
+pub type VirtIOSocket<T> = socket::VirtIOSocket<T, PciTransport>;
+
+/// An iterator that iterates over the PCI transport for each device.
+pub struct PciTransportIterator<'a, T: Hal> {
+    pci_root: &'a mut PciRoot,
+    bus: BusDeviceIterator,
+    _hal: PhantomData<T>,
+}
+
+impl<'a, T: Hal> PciTransportIterator<'a, T> {
+    /// Creates a new iterator.
+    pub fn new(pci_root: &'a mut PciRoot) -> Self {
+        let bus = pci_root.enumerate_bus(0);
+        Self { pci_root, bus, _hal: PhantomData }
+    }
+}
+
+impl<'a, T: Hal> Iterator for PciTransportIterator<'a, T> {
+    type Item = PciTransport;
+
+    fn next(&mut self) -> Option<Self::Item> {
+        loop {
+            let (device_function, info) = self.bus.next()?;
+            let (status, command) = self.pci_root.get_status_command(device_function);
+            debug!(
+                "Found PCI device {} at {}, status {:?} command {:?}",
+                info, device_function, status, command
+            );
+
+            let Some(virtio_type) = virtio_device_type(&info) else {
+                continue;
+            };
+            debug!("  VirtIO {:?}", virtio_type);
+
+            return PciTransport::new::<T>(self.pci_root, device_function).ok();
+        }
+    }
+}
diff --git a/vmclient/Android.bp b/vmclient/Android.bp
index 8517c88..96fe667 100644
--- a/vmclient/Android.bp
+++ b/vmclient/Android.bp
@@ -5,6 +5,7 @@
 rust_library {
     name: "libvmclient",
     crate_name: "vmclient",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/lib.rs"],
     edition: "2021",
     rustlibs: [
diff --git a/vmclient/src/error_code.rs b/vmclient/src/error_code.rs
index a7c442f..59b25a0 100644
--- a/vmclient/src/error_code.rs
+++ b/vmclient/src/error_code.rs
@@ -20,15 +20,15 @@
     /// Error code for all other errors not listed below.
     Unknown,
 
-    /// Error code indicating that the payload can't be verified due to various reasons (e.g invalid
-    /// merkle tree, invalid formats, etc).
+    /// Error code indicating that the payload can't be verified due to various reasons (e.g
+    /// invalid merkle tree, invalid formats, etc).
     PayloadVerificationFailed,
 
     /// Error code indicating that the payload is verified, but has changed since the last boot.
     PayloadChanged,
 
     /// Error code indicating that the payload config is invalid.
-    PayloadConfigInvalid,
+    PayloadInvalidConfig,
 
     /// Payload sent a death reason which was not recognised by the client library.
     Unrecognised(AidlErrorCode),
@@ -40,7 +40,7 @@
             AidlErrorCode::UNKNOWN => Self::Unknown,
             AidlErrorCode::PAYLOAD_VERIFICATION_FAILED => Self::PayloadVerificationFailed,
             AidlErrorCode::PAYLOAD_CHANGED => Self::PayloadChanged,
-            AidlErrorCode::PAYLOAD_CONFIG_INVALID => Self::PayloadConfigInvalid,
+            AidlErrorCode::PAYLOAD_INVALID_CONFIG => Self::PayloadInvalidConfig,
             _ => Self::Unrecognised(error_code),
         }
     }
diff --git a/vmclient/src/lib.rs b/vmclient/src/lib.rs
index d67d87e..a2a88d8 100644
--- a/vmclient/src/lib.rs
+++ b/vmclient/src/lib.rs
@@ -35,8 +35,8 @@
         VirtualMachineState::VirtualMachineState,
     },
     binder::{
-        wait_for_interface, BinderFeatures, DeathRecipient, FromIBinder, IBinder, Interface,
-        ParcelFileDescriptor, Result as BinderResult, StatusCode, Strong,
+        BinderFeatures, DeathRecipient, FromIBinder, IBinder, Interface, ParcelFileDescriptor,
+        Result as BinderResult, StatusCode, Strong,
     },
 };
 use command_fds::CommandFdExt;
@@ -53,9 +53,6 @@
     time::Duration,
 };
 
-const VIRTUALIZATION_SERVICE_BINDER_SERVICE_IDENTIFIER: &str =
-    "android.system.virtualizationservice";
-
 const VIRTMGR_PATH: &str = "/apex/com.android.virt/bin/virtmgr";
 const VIRTMGR_THREADS: usize = 2;
 
@@ -67,7 +64,7 @@
     // file descriptors (expected by SharedChild).
     let (raw1, raw2) = pipe2(OFlag::O_CLOEXEC)?;
 
-    // SAFETY - Taking ownership of brand new FDs.
+    // SAFETY: Taking ownership of brand new FDs.
     unsafe { Ok((OwnedFd::from_raw_fd(raw1), OwnedFd::from_raw_fd(raw2))) }
 }
 
@@ -77,11 +74,7 @@
     // Create new POSIX socketpair, suitable for use with RpcBinder UDS bootstrap
     // transport. Make it O_CLOEXEC to align with how Rust creates file
     // descriptors (expected by SharedChild).
-    let (raw1, raw2) =
-        socketpair(AddressFamily::Unix, SockType::Stream, None, SockFlag::SOCK_CLOEXEC)?;
-
-    // SAFETY - Taking ownership of brand new FDs.
-    unsafe { Ok((OwnedFd::from_raw_fd(raw1), OwnedFd::from_raw_fd(raw2))) }
+    Ok(socketpair(AddressFamily::Unix, SockType::Stream, None, SockFlag::SOCK_CLOEXEC)?)
 }
 
 /// A running instance of virtmgr which is hosting a VirtualizationService
@@ -112,7 +105,7 @@
 
         // Wait for the child to signal that the RpcBinder server is ready
         // by closing its end of the pipe.
-        let _ = File::from(wait_fd).read(&mut [0]);
+        let _ignored = File::from(wait_fd).read(&mut [0]);
 
         Ok(VirtualizationService { client_fd })
     }
@@ -128,11 +121,6 @@
     }
 }
 
-/// Connects to the VirtualizationService AIDL service.
-pub fn connect() -> Result<Strong<dyn IVirtualizationService>, StatusCode> {
-    wait_for_interface(VIRTUALIZATION_SERVICE_BINDER_SERVICE_IDENTIFIER)
-}
-
 /// A virtual machine which has been started by the VirtualizationService.
 pub struct VmInstance {
     /// The `IVirtualMachine` Binder object representing the VM.
@@ -175,14 +163,17 @@
     pub fn create(
         service: &dyn IVirtualizationService,
         config: &VirtualMachineConfig,
-        console: Option<File>,
+        console_out: Option<File>,
+        console_in: Option<File>,
         log: Option<File>,
         callback: Option<Box<dyn VmCallback + Send + Sync>>,
     ) -> BinderResult<Self> {
-        let console = console.map(ParcelFileDescriptor::new);
+        let console_out = console_out.map(ParcelFileDescriptor::new);
+        let console_in = console_in.map(ParcelFileDescriptor::new);
         let log = log.map(ParcelFileDescriptor::new);
 
-        let vm = service.createVm(config, console.as_ref(), log.as_ref())?;
+        let vm =
+            service.createVm(config, console_out.as_ref(), console_in.as_ref(), log.as_ref())?;
 
         let cid = vm.getCid()?;
 
diff --git a/zipfuse/Android.bp b/zipfuse/Android.bp
index 1bdc5fe..7ee0ef1 100644
--- a/zipfuse/Android.bp
+++ b/zipfuse/Android.bp
@@ -1,10 +1,12 @@
 package {
+    default_team: "trendy_team_virtualization",
     default_applicable_licenses: ["Android-Apache-2.0"],
 }
 
 rust_defaults {
     name: "zipfuse.defaults",
     crate_name: "zipfuse",
+    defaults: ["avf_build_flags_rust"],
     srcs: ["src/main.rs"],
     edition: "2021",
     prefer_rlib: true,
diff --git a/zipfuse/TEST_MAPPING b/zipfuse/TEST_MAPPING
index 13055f0..8ee4d7f 100644
--- a/zipfuse/TEST_MAPPING
+++ b/zipfuse/TEST_MAPPING
@@ -1,3 +1,5 @@
+// When adding or removing tests here, don't forget to amend _all_modules list in
+// wireless/android/busytown/ath_config/configs/prod/avf/tests.gcl
 {
   "avf-presubmit" : [
     {
diff --git a/zipfuse/src/inode.rs b/zipfuse/src/inode.rs
index ea63422..1f74f64 100644
--- a/zipfuse/src/inode.rs
+++ b/zipfuse/src/inode.rs
@@ -31,10 +31,21 @@
 const INVALID: Inode = 0;
 const ROOT: Inode = 1;
 
-const DEFAULT_DIR_MODE: u32 = libc::S_IRUSR | libc::S_IXUSR;
+#[cfg(multi_tenant)]
+const READ_MODE: u32 = libc::S_IRUSR | libc::S_IRGRP;
+#[cfg(multi_tenant)]
+const EXECUTE_MODE: u32 = libc::S_IXUSR | libc::S_IXGRP;
+
+#[cfg(not(multi_tenant))]
+const READ_MODE: u32 = libc::S_IRUSR;
+#[cfg(not(multi_tenant))]
+const EXECUTE_MODE: u32 = libc::S_IXUSR;
+
+const DEFAULT_DIR_MODE: u32 = READ_MODE | EXECUTE_MODE;
 // b/264668376 some files in APK don't have unix permissions specified. Default to 400
 // otherwise those files won't be readable even by the owner.
-const DEFAULT_FILE_MODE: u32 = libc::S_IRUSR;
+const DEFAULT_FILE_MODE: u32 = READ_MODE;
+const EXECUTABLE_FILE_MODE: u32 = DEFAULT_FILE_MODE | EXECUTE_MODE;
 
 /// `InodeData` represents an inode which has metadata about a file or a directory
 #[derive(Debug)]
@@ -191,7 +202,7 @@
                 // additional binaries that they might want to execute.
                 // An example of such binary is measure_io one used in the authfs performance tests.
                 // More context available at b/265261525 and b/270955654.
-                file_mode |= libc::S_IXUSR;
+                file_mode = EXECUTABLE_FILE_MODE;
             }
 
             while let Some(name) = iter.next() {
@@ -210,7 +221,7 @@
                     parent = found;
                     // Update the mode if this is a directory leaf.
                     if !is_file && is_leaf {
-                        let mut inode = table.get_mut(parent).unwrap();
+                        let inode = table.get_mut(parent).unwrap();
                         inode.mode = file.unix_mode().unwrap_or(DEFAULT_DIR_MODE);
                     }
                     continue;
diff --git a/zipfuse/src/main.rs b/zipfuse/src/main.rs
index 20d6fd6..e8be42c 100644
--- a/zipfuse/src/main.rs
+++ b/zipfuse/src/main.rs
@@ -31,7 +31,7 @@
 use std::fs::{File, OpenOptions};
 use std::io;
 use std::io::Read;
-use std::mem::size_of;
+use std::mem::{size_of, MaybeUninit};
 use std::os::unix::io::AsRawFd;
 use std::path::Path;
 use std::path::PathBuf;
@@ -192,7 +192,8 @@
     #[allow(clippy::useless_conversion)]
     fn stat_from(&self, inode: Inode) -> io::Result<libc::stat64> {
         let inode_data = self.find_inode(inode)?;
-        let mut st = unsafe { std::mem::MaybeUninit::<libc::stat64>::zeroed().assume_init() };
+        // SAFETY: All fields of stat64 are valid for zero byte patterns.
+        let mut st = unsafe { MaybeUninit::<libc::stat64>::zeroed().assume_init() };
         st.st_dev = 0;
         st.st_nlink = if let Some(directory) = inode_data.get_directory() {
             (2 + directory.len() as libc::nlink_t).into()